[
  {
    "path": ".bingo/.gitignore",
    "content": "\n# Ignore everything\n*\n\n# But not these files:\n!.gitignore\n!*.mod\n!README.md\n!Variables.mk\n!variables.env\n\n*tmp.mod\n"
  },
  {
    "path": ".bingo/README.md",
    "content": "# Project Development Dependencies.\n\nThis is directory which stores Go modules with pinned buildable package that is used within this repository, managed by https://github.com/bwplotka/bingo.\n\n* Run `bingo get` to install all tools having each own module file in this directory.\n* Run `bingo get <tool>` to install <tool> that have own module file in this directory.\n* For Makefile: Make sure to put `include .bingo/Variables.mk` in your Makefile, then use $(<upper case tool name>) variable where <tool> is the .bingo/<tool>.mod.\n* For shell: Run `source .bingo/variables.env` to source all environment variable for each tool.\n* For go: Import `.bingo/variables.go` to for variable names.\n* See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies.\n\n## Requirements\n\n* Go 1.14+\n"
  },
  {
    "path": ".bingo/Variables.mk",
    "content": "# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.5.1. DO NOT EDIT.\n# All tools are designed to be build inside $GOBIN.\nBINGO_DIR := $(dir $(lastword $(MAKEFILE_LIST)))\nGOPATH ?= $(shell go env GOPATH)\nGOBIN  ?= $(firstword $(subst :, ,${GOPATH}))/bin\nGO     ?= $(shell which go)\n\n# Below generated variables ensure that every time a tool under each variable is invoked, the correct version\n# will be used; reinstalling only if needed.\n# For example for bingo variable:\n#\n# In your main Makefile (for non array binaries):\n#\n#include .bingo/Variables.mk # Assuming -dir was set to .bingo .\n#\n#command: $(BINGO)\n#\t@echo \"Running bingo\"\n#\t@$(BINGO) <flags/args..>\n#\nBINGO := $(GOBIN)/bingo-v0.5.1\n$(BINGO): $(BINGO_DIR)/bingo.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/bingo-v0.5.1\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.5.1 \"github.com/bwplotka/bingo\"\n\nBUF := $(GOBIN)/buf-v0.46.0\n$(BUF): $(BINGO_DIR)/buf.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/buf-v0.46.0\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=buf.mod -o=$(GOBIN)/buf-v0.46.0 \"github.com/bufbuild/buf/cmd/buf\"\n\nGOMPLATE := $(GOBIN)/gomplate-v3.8.0\n$(GOMPLATE): $(BINGO_DIR)/gomplate.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/gomplate-v3.8.0\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=gomplate.mod -o=$(GOBIN)/gomplate-v3.8.0 \"github.com/hairyhenderson/gomplate/v3/cmd/gomplate\"\n\nGOVVV := $(GOBIN)/govvv-v0.3.0\n$(GOVVV): $(BINGO_DIR)/govvv.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/govvv-v0.3.0\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=govvv.mod -o=$(GOBIN)/govvv-v0.3.0 \"github.com/ahmetb/govvv\"\n\nGOX := $(GOBIN)/gox-v1.0.1\n$(GOX): $(BINGO_DIR)/gox.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/gox-v1.0.1\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=gox.mod -o=$(GOBIN)/gox-v1.0.1 \"github.com/mitchellh/gox\"\n\nPROTOC_GEN_BUF_BREAKING := $(GOBIN)/protoc-gen-buf-breaking-v0.46.0\n$(PROTOC_GEN_BUF_BREAKING): $(BINGO_DIR)/protoc-gen-buf-breaking.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/protoc-gen-buf-breaking-v0.46.0\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-buf-breaking.mod -o=$(GOBIN)/protoc-gen-buf-breaking-v0.46.0 \"github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking\"\n\nPROTOC_GEN_BUF_LINT := $(GOBIN)/protoc-gen-buf-lint-v0.46.0\n$(PROTOC_GEN_BUF_LINT): $(BINGO_DIR)/protoc-gen-buf-lint.mod\n\t@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.\n\t@echo \"(re)installing $(GOBIN)/protoc-gen-buf-lint-v0.46.0\"\n\t@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-buf-lint.mod -o=$(GOBIN)/protoc-gen-buf-lint-v0.46.0 \"github.com/bufbuild/buf/cmd/protoc-gen-buf-lint\"\n\n"
  },
  {
    "path": ".bingo/bingo.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.16\n\nrequire github.com/bwplotka/bingo v0.5.1\n"
  },
  {
    "path": ".bingo/buf.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.15\n\nrequire github.com/bufbuild/buf v0.46.0 // cmd/buf\n"
  },
  {
    "path": ".bingo/go.mod",
    "content": "module _ // Fake go.mod auto-created by 'bingo' for go -moddir compatibility with non-Go projects. Commit this file, together with other .mod files."
  },
  {
    "path": ".bingo/gomplate.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.15\n\nrequire github.com/hairyhenderson/gomplate/v3 v3.8.0 // cmd/gomplate\n"
  },
  {
    "path": ".bingo/govvv.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.15\n\nrequire github.com/ahmetb/govvv v0.3.0\n"
  },
  {
    "path": ".bingo/gox.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.15\n\nrequire github.com/mitchellh/gox v1.0.1\n"
  },
  {
    "path": ".bingo/protoc-gen-buf-breaking.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.16\n\nrequire github.com/bufbuild/buf v0.46.0 // cmd/protoc-gen-buf-breaking\n"
  },
  {
    "path": ".bingo/protoc-gen-buf-lint.mod",
    "content": "module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT\n\ngo 1.16\n\nrequire github.com/bufbuild/buf v0.46.0 // cmd/protoc-gen-buf-lint\n"
  },
  {
    "path": ".bingo/variables.env",
    "content": "# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.5.1. DO NOT EDIT.\n# All tools are designed to be build inside $GOBIN.\n# Those variables will work only until 'bingo get' was invoked, or if tools were installed via Makefile's Variables.mk.\nGOBIN=${GOBIN:=$(go env GOBIN)}\n\nif [ -z \"$GOBIN\" ]; then\n\tGOBIN=\"$(go env GOPATH)/bin\"\nfi\n\n\nBINGO=\"${GOBIN}/bingo-v0.5.1\"\n\nBUF=\"${GOBIN}/buf-v0.46.0\"\n\nGOMPLATE=\"${GOBIN}/gomplate-v3.8.0\"\n\nGOVVV=\"${GOBIN}/govvv-v0.3.0\"\n\nGOX=\"${GOBIN}/gox-v1.0.1\"\n\nPROTOC_GEN_BUF_BREAKING=\"${GOBIN}/protoc-gen-buf-breaking-v0.46.0\"\n\nPROTOC_GEN_BUF_LINT=\"${GOBIN}/protoc-gen-buf-lint-v0.46.0\"\n\n"
  },
  {
    "path": ".github/workflows/build.yml",
    "content": "name: Build\non:\n  push:\n    branches:\n      - master\n  pull_request:\n    branches:\n      - master\njobs:\n  buf:\n    name: Buf\n    runs-on: ubuntu-latest\n    steps:\n      - name: Set up Go\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n        with:\n          ref: master\n      - name: checkout-master\n        run: git checkout master\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: make local\n        run: make buf-local\n  buck:\n    name: Buck CLI\n    runs-on: ubuntu-latest\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: build\n        run: make build-buck\n  hub:\n    name: Hub CLI\n    runs-on: ubuntu-latest\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: build\n        run: make build-hub\n  buckd:\n    name: Buck Daemon\n    runs-on: ubuntu-latest\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: build\n        run: make build-buckd\n  billingd:\n    name: Billing Daemon\n    runs-on: ubuntu-latest\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: build\n        run: make build-billingd\n  hubd:\n    name: Hub Daemon\n    runs-on: ubuntu-latest\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: build\n        run: make build-hubd\n"
  },
  {
    "path": ".github/workflows/docker.yml",
    "content": "name: Docker image master branch\non:\n  push:\n    branches:\n      - master\njobs:\n  docker-build-push:\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        imageRepo:\n          - textile/hub\n          - textile/billing\n          - textile/buckets\n          - textile/mindexd\n        include:\n          - imageRepo: textile/hub\n            dockerFile: cmd/hubd/Dockerfile\n          - imageRepo: textile/billing\n            dockerFile: api/billingd/Dockerfile\n          - imageRepo: textile/buckets\n            dockerFile: cmd/buckd/Dockerfile\n          - imageRepo: textile/mindexd\n            dockerFile: api/mindexd/Dockerfile\n    steps:\n      - uses: actions/checkout@v2\n      - name: Get git sha\n        id: git_sha\n        run: echo \"::set-output name=sha_short::$(git rev-parse --short HEAD)\"\n      - name: Check outputs\n        run: echo ${{ steps.git_sha.outputs.sha_short }}\n      - name: Fail if no git sha\n        run: exit 1\n        if: ${{ steps.git_sha.outputs.sha_short == 0 }}\n      - name: Set up Docker Buildx\n        uses: docker/setup-buildx-action@v1\n      - name: Login to DockerHub\n        uses: docker/login-action@v1 \n        with:\n          username: ${{ secrets.DOCKER_USERNAME }}\n          password: ${{ secrets.DOCKER_PASSWORD }}    \n      - name: Build and push\n        id: docker_build\n        uses: docker/build-push-action@v2\n        with:\n          push: true\n          file: ${{ matrix.dockerFile }}\n          tags: ${{ matrix.imageRepo }}:latest,${{ matrix.imageRepo }}:sha-${{ steps.git_sha.outputs.sha_short }}\n"
  },
  {
    "path": ".github/workflows/publish-js-libs.yml",
    "content": "name: Publish JS Libs\non:\n  release:\n    types: [published]\njobs:\n  publish_js_libs:\n    name: Publish JS libs\n    runs-on: ubuntu-latest\n    steps:\n      - name: Check out code\n        uses: actions/checkout@v1\n      - name: Install build tools\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y build-essential\n      - name: Set up Go\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: Setup env\n        env:\n          ACTIONS_ALLOW_UNSECURE_COMMANDS: true\n        run: |\n          echo \"::set-env name=GOPATH::$(go env GOPATH)\"\n          echo \"::add-path::$(go env GOPATH)/bin\"\n      - name: Set up Node\n        uses: actions/setup-node@v1\n        with:\n          node-version: \"14.x\"\n          registry-url: \"https://registry.npmjs.org\"\n      - name: Generate JS libs\n        run: |\n          make js-protos\n      - name: Publish JS libs\n        run: |\n          ./scripts/publish_js_protos.bash -v ${{ github.event.release.tag_name }} -t ${{ secrets.NPM_AUTH_TOKEN }} -p ${{ github.event.release.prerelease }}\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Release\non:\n  release:\n    types: [created]\njobs:\n  release-platform-builds:\n    name: Release Builds\n    runs-on: ubuntu-latest\n    steps:\n      - name: Set up Go\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: Check out code\n        uses: actions/checkout@v1\n      - name: Cache dependencies\n        id: cache-dependencies\n        uses: actions/cache@v1\n        with:\n          path: ~/go/pkg/mod\n          key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}\n          restore-keys: |\n            ${{ runner.os }}-go-\n      - name: Get dependencies\n        if: steps.cache-dependencies.outputs.cache-hit != 'true'\n        run: |\n          export PATH=${PATH}:`go env GOPATH`/bin\n          go get -v -t -d ./...\n      - name: Build release artifacts\n        run: |\n          TXTL_VERSION=${{ github.event.release.tag_name }} make build-releases\n          echo $(ls ./build/dist/)\n      - name: Upload multiple assets to release\n        uses: AButler/upload-release-assets@v2.0\n        with:\n          files: \"build/dist/*\"\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: Test\non:\n  push:\n    branches:\n      - master\n  pull_request:\n    branches:\n      - master\njobs:\n  api:\n    name: API\n    runs-on: [self-hosted, hub1]\n    services:\n      mongodb:\n        image: mongo:latest\n        ports:\n          - 127.0.0.1:27018:27017\n      ipfs:\n        image: ipfs/go-ipfs:v0.8.0\n        env:\n          IPFS_PROFILE: test\n        ports:\n          - 127.0.0.1:5012:5001\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: test\n        env:\n          SKIP_SERVICES: true\n          MONGO_URI: mongodb://127.0.0.1:27018\n          IPFS_API_ADDR: /ip4/127.0.0.1/tcp/5012\n          STRIPE_API_KEY: ${{ secrets.STRIPE_API_KEY }}\n        run: go test -timeout 60m -race ./core/... ./api/... ./mongodb/...\n  buckets:\n    name: Buckets\n    runs-on: [self-hosted, hub2]\n    services:\n      mongodb:\n        image: mongo:latest\n        ports:\n          - 127.0.0.1:27019:27017\n      ipfs:\n        image: ipfs/go-ipfs:v0.8.0\n        env:\n          IPFS_PROFILE: test\n        ports:\n          - 127.0.0.1:5013:5001\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: test\n        env:\n          SKIP_SERVICES: true\n          MONGO_URI: mongodb://127.0.0.1:27019\n          IPFS_API_ADDR: /ip4/127.0.0.1/tcp/5013\n        run: go test -v -timeout 60m -race ./buckets/...\n  archives:\n    name: Archives\n    runs-on: [self-hosted, hub3]\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: test\n        run: go test -v -timeout 60m -race ./integrationtest/...\n  mail:\n    name: Mail\n    runs-on: [self-hosted, hub4]\n    services:\n      mongodb:\n        image: mongo:latest\n        ports:\n          - 127.0.0.1:27020:27017\n      ipfs:\n        image: ipfs/go-ipfs:v0.8.0\n        env:\n          IPFS_PROFILE: test\n        ports:\n          - 127.0.0.1:5014:5001\n    steps:\n      - name: setup\n        uses: actions/setup-go@v1\n        with:\n          go-version: 1.16\n      - name: checkout\n        uses: actions/checkout@v1\n      - name: test\n        env:\n          SKIP_SERVICES: true\n          MONGO_URI: mongodb://127.0.0.1:27020\n          IPFS_API_ADDR: /ip4/127.0.0.1/tcp/5014\n        run: go test -v -timeout 60m -race ./mail/...\n"
  },
  {
    "path": ".gitignore",
    "content": "# Binaries for programs and plugins\n*.exe\n*.exe~\n*.dll\n*.so\n*.dylib\n\n# Test binary, built with `go test -c`\n*.test\n\n# Output of the go coverage tool, specifically when used with LiteIDE\n*.out\n\n# Dependency directories (remove the comment below to include it)\nvendor/\n\n# JS\nnode_modules/\n\n# IDEs\n.idea/\n.vscode/\n\n# Textile\n.textile/\n.hubd/\n.buckd/\n.env\n.DS_Store\nbuildtools/protoc\nbuildtools/protoc-gen-go\nbuild/\n**/javascript/api\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to make participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n  advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n  address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies within all project spaces, and it also applies when\nan individual is representing the project or its community in public spaces.\nExamples of representing a project or community include using an official\nproject e-mail address, posting via an official social media account, or acting\nas an appointed representative at an online or offline event. Representation of\na project may be further defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at [INSERT EMAIL ADDRESS]. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2018-2020 textile.io\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Makefile",
    "content": "include .bingo/Variables.mk\n\n.DEFAULT_GOAL=build\n\nTXTL_BUILD_FLAGS?=CGO_ENABLED=0\nTXTL_VERSION?=\"git\"\nGOVVV_FLAGS=$(shell $(GOVVV) -flags -version $(TXTL_VERSION) -pkg $(shell go list ./buildinfo))\n\nbuild: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./...\n.PHONY: build\n\nbuild-hub: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./cmd/hub\n.PHONY: build-hub\n\nbuild-hubd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./cmd/hubd\n.PHONY: build-hubd\n\nbuild-buck: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./cmd/buck\n.PHONY: build-buck\n\nbuild-buckd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./cmd/buckd\n.PHONY: build-buckd\n\nbuild-billingd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./api/billingd\n.PHONY: build-billingd\n\nbuild-mindexd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go build -ldflags=\"${GOVVV_FLAGS}\" ./api/mindexd\n.PHONY: build-mindexd\n\ninstall: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./...\n.PHONY: install\n\ninstall-hub: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./cmd/hub\n.PHONY: install-hub\n\ninstall-hubd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./cmd/hubd\n.PHONY: install-hubd\n\ninstall-buck: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./cmd/buck\n.PHONY: install-buck\n\ninstall-buckd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./cmd/buckd\n.PHONY: install-buckd\n\ninstall-billingd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./api/billingd\n.PHONY: install-billingd\n\ninstall-mindexd: $(GOVVV)\n\t$(TXTL_BUILD_FLAGS) go install -ldflags=\"${GOVVV_FLAGS}\" ./api/mindexd\n.PHONY: install-mindexd\n\n\n\ndefine gen_release_files\n\t$(GOX) -osarch=$(3) -output=\"build/$(2)/$(2)_${TXTL_VERSION}_{{.OS}}-{{.Arch}}/$(2)\" -ldflags=\"${GOVVV_FLAGS}\" $(1)\n\tmkdir -p build/dist; \\\n\tcd build/$(2); \\\n\tfor release in *; do \\\n\t\tcp ../../LICENSE ../../README.md $${release}/; \\\n\t\tif [ $${release} != *\"windows\"* ]; then \\\n  \t\tTXTL_FILE=$(2) $(GOMPLATE) -f ../../dist/install.tmpl -o \"$${release}/install\"; \\\n\t\t\ttar -czvf ../dist/$${release}.tar.gz $${release}; \\\n\t\telse \\\n\t\t\tzip -r ../dist/$${release}.zip $${release}; \\\n\t\tfi; \\\n\tdone\nendef\n\nbuild-hub-release: $(GOX) $(GOVVV) $(GOMPLATE)\n\t$(call gen_release_files,./cmd/hub,hub,\"linux/amd64 linux/386 linux/arm darwin/amd64 darwin/arm64 windows/amd64\")\n.PHONY: build-hub-release\n\nbuild-hubd-release: $(GOX) $(GOVVV) $(GOMPLATE)\n\t$(call gen_release_files,./cmd/hubd,hubd,\"linux/amd64 linux/386 linux/arm darwin/amd64 darwin/arm64 windows/amd64\")\n.PHONY: build-hubd-release\n\nbuild-buck-release: $(GOX) $(GOVVV) $(GOMPLATE)\n\t$(call gen_release_files,./cmd/buck,buck,\"linux/amd64 linux/386 linux/arm darwin/amd64 darwin/arm64 windows/amd64\")\n.PHONY: build-buck-release\n\nbuild-buckd-release: $(GOX) $(GOVVV) $(GOMPLATE)\n\t$(call gen_release_files,./cmd/buckd,buckd,\"linux/amd64 linux/386 linux/arm darwin/amd64 darwin/arm64 windows/amd64\")\n.PHONY: build-buckd-release\n\nbuild-billingd-release: $(GOX) $(GOVVV) $(GOMPLATE)\n\t$(call gen_release_files,./api/billingd,billingd,\"linux/amd64 linux/386 linux/arm darwin/amd64 darwin/arm64 windows/amd64\")\n.PHONY: build-billingd-release\n\nbuild-releases: build-hub-release build-hubd-release build-buck-release build-buckd-release build-billingd-release\n.PHONY: build-releases\n\nhub-up:\n\tdocker-compose -f cmd/hubd/docker-compose-dev.yml up --build\n\nhub-stop:\n\tdocker-compose -f cmd/hubd/docker-compose-dev.yml stop\n\nhub-clean:\n\tdocker-compose -f cmd/hubd/docker-compose-dev.yml down -v --remove-orphans\n\nbuck-up:\n\tdocker-compose -f cmd/buckd/docker-compose-dev.yml up --build\n\nbuck-stop:\n\tdocker-compose -f cmd/buckd/docker-compose-dev.yml stop\n\nbuck-clean:\n\tdocker-compose -f cmd/buckd/docker-compose-dev.yml down -v --remove-orphans\n\ntest:\n\tgo test -race -timeout 45m ./...\n.PHONY: test\n\nclean-protos:\n\tfind . -type f -name '*.pb.go' -delete\n\tfind . -type f -name '*pb_test.go' -delete\n.PHONY: clean-protos\n\nclean-js-protos:\n\tfind . -type f -name '*pb.js' ! -path \"*/node_modules/*\" -delete\n\tfind . -type f -name '*pb.d.ts' ! -path \"*/node_modules/*\" -delete\n\tfind . -type f -name '*pb_service.js' ! -path \"*/node_modules/*\" -delete\n\tfind . -type f -name '*pb_service.d.ts' ! -path \"*/node_modules/*\" -delete\n.PHONY: clean-js-protos\n\ninstall-protoc:\n\tcd buildtools && ./install_protoc.bash\n\nPROTOCGENGO=$(shell pwd)/buildtools/protoc-gen-go\nprotos: install-protoc clean-protos\n\tPATH=$(PROTOCGENGO):$(PATH) ./scripts/protoc_gen_plugin.bash \\\n\t--proto_path=. \\\n\t--plugin_name=go \\\n\t--plugin_out=. \\\n\t--plugin_opt=plugins=grpc,paths=source_relative\n.PHONY: protos\n\njs-protos: install-protoc clean-js-protos\n\t./scripts/gen_js_protos.bash\n\n# local is what we run when testing locally.\n# This does breaking change detection against our local git repository.\n.PHONY: buf-local\nbuf-local: $(BUF)\n\t$(BUF) lint\n\t# $(BUF) breaking --against-input '.git#branch=master'\n\n# https is what we run when testing in most CI providers.\n# This does breaking change detection against our remote HTTPS git repository.\n.PHONY: buf-https\nbuf-https: $(BUF)\n\t$(BUF) lint\n\t# $(BUF) breaking --against-input \"$(HTTPS_GIT)#branch=master\"\n\n# ssh is what we run when testing in CI providers that provide ssh public key authentication.\n# This does breaking change detection against our remote HTTPS ssh repository.\n# This is especially useful for private repositories.\n.PHONY: buf-ssh\nbuf-ssh: $(BUF)\n\t$(BUF) lint\n\t# $(BUF) breaking --against-input \"$(SSH_GIT)#branch=master\"\n\n\nMINDEXDPB=$(shell pwd)/api/mindexd\nPROTOC=$(shell pwd)/buildtools/protoc/bin\n.PHONY: mindex-rest\nmindex-rest:\n\tgo install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@latest github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2@latest\n\tPATH=$(PROTOC):$(PATH) protoc -I . --grpc-gateway_out . --grpc-gateway_opt logtostderr=true --grpc-gateway_opt paths=source_relative --grpc-gateway_opt generate_unbound_methods=true --openapiv2_out . --openapiv2_opt generate_unbound_methods=true  --openapiv2_opt logtostderr=true  api/mindexd/pb/mindexd.proto\n"
  },
  {
    "path": "README.md",
    "content": "## DEPRECATION NOTICE: Textile's _hosted_ Hub infrastructure will be taken off-line on January 9th, 2023. At this time, all ThreadDB and Bucket data will no longer be available, and will subsequently be removed. See https://github.com/textileio/textile/issues/578 for further details.\n\n# textile\n\n[![Made by Textile](https://img.shields.io/badge/made%20by-Textile-informational.svg?style=popout-square)](https://textile.io)\n[![Chat on Slack](https://img.shields.io/badge/slack-slack.textile.io-informational.svg?style=popout-square)](https://slack.textile.io)\n[![GitHub license](https://img.shields.io/github/license/textileio/textile.svg?style=popout-square)](./LICENSE)\n[![GitHub action](https://github.com/textileio/textile/workflows/Tests/badge.svg?style=popout-square)](https://github.com/textileio/textile/actions)\n[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=popout-square)](https://github.com/RichardLitt/standard-readme)\n\n> Textile hub services and buckets lib\n\nTextile connects and extends [Libp2p](https://libp2p.io/), [IPFS](https://ipfs.io/), and [Filecoin](https://filecoin.io/). Three interoperable technologies makeup Textile:\n\n* [**ThreadDB**](https://github.com/textileio/go-threads): A server-less p2p database built on Libp2p\n* [**Powergate**](https://github.com/textileio/powergate): File storage built on Filecoin and IPFS\n* [**Buckets**](https://github.com/textileio/textile/tree/master/buckets): File and dynamic directory storage built on ThreadDB, Powergate, and [UnixFS](https://github.com/ipfs/go-unixfs).\n\nJoin us on our [public Slack channel](https://slack.textile.io/) for news, discussions, and status updates. [Check out our blog](https://medium.com/textileio) for the latest posts and announcements.\n\n## Table of Contents\n\n- [textile](#textile)\n  - [Security](#security)\n  - [Background](#background)\n  - [Install](#install)\n    - [The Hub](#the-hub)\n      - [`hubd`](#hubd)\n      - [`hub`](#hub)\n    - [Buckets](#buckets)\n      - [`buckd`](#buckd)\n      - [`buck`](#buck)\n    - [The Buckets Library](#the-buckets-library)\n  - [Getting Started](#getting-started)\n    - [The Hub](#the-hub-1)\n    - [Running Buckets](#running-buckets)\n    - [Creating a bucket](#creating-a-bucket)\n    - [Creating a private bucket](#creating-a-private-bucket)\n    - [Adding files and folders to a bucket](#adding-files-and-folders-to-a-bucket)\n    - [Recreating an existing bucket](#recreating-an-existing-bucket)\n    - [Creating a bucket from an existing Cid](#creating-a-bucket-from-an-existing-cid)\n    - [Exploring bucket contents](#exploring-bucket-contents)\n    - [Resetting bucket contents](#resetting-bucket-contents)\n    - [Watching a bucket for changes](#watching-a-bucket-for-changes)\n    - [Protecting a file with a password](#protecting-a-file-with-a-password)\n    - [Sharing bucket files and folders](#sharing-bucket-files-and-folders)\n    - [Creating a Filecoin bucket archive](#creating-a-filecoin-bucket-archive)\n    - [Multi-writer buckets](#multi-writer-buckets)\n    - [Deleting a bucket](#deleting-a-bucket)\n    - [Using the Buckets Library](#using-the-buckets-library)\n      - [Creating a bucket](#creating-a-bucket-1)\n      - [Getting an existing bucket](#getting-an-existing-bucket)\n      - [Pushing local files](#pushing-local-files)\n      - [Pulling remote changes](#pulling-remote-changes)\n    - [Using the Mail Library](#using-the-mail-library)\n      - [Creating a mailbox](#creating-a-mailbox)\n      - [Getting an existing mailbox](#getting-an-existing-mailbox)\n      - [Sending a message](#sending-a-message)\n      - [Watching for new messages](#watching-for-new-messages)\n  - [Developing](#developing)\n  - [Contributing](#contributing)\n  - [Changelog](#changelog)\n  - [License](#license)\n\n## Security\n\nTextile is still under heavy development and no part of it should be used before a thorough review of the underlying code and an understanding APIs and protocols may change rapidly. There may be coding mistakes, and the underlying protocols may contain design flaws. Please [let us know](mailto:contact@textile.io) immediately if you have discovered a security vulnerability.\n\nPlease also read the [security note](https://github.com/ipfs/go-ipfs#security-issues) for [go-ipfs](https://github.com/ipfs/go-ipfs).\n\n## Background\n\nGo to [the docs](https://docs.textile.io/) for more about the motivations behind Textile.\n\n## Install\n\nThis repo contains two service daemons with CLIs and a Buckets Library for building local-first apps and services.\n\n### The Hub\n\n#### `hubd`\n\n-   **Prebuilt package**: See [release assets](https://github.com/textileio/textile/releases/latest)\n-   **Docker image**: See the `latest` tag on [Docker Hub](https://hub.docker.com/r/textile/textile/tags)\n-   **Build from the source**:\n\n```\ngit clone https://github.com/textileio/textile\ncd textile\ngo get ./cmd/hubd\n```\n\n#### `hub`\n\n-   **Prebuilt package**: See [release assets](https://github.com/textileio/textile/releases/latest)\n-   **Build from the source**: \n\n```\ngit clone https://github.com/textileio/textile\ncd textile\ngo get ./cmd/hub\n```\n\n**Note**: `hub` _includes_ `buck` as a subcommand: `hub buck`. This is because `hubd` hosts `buckd`, along with other services.\n\n`hub` is built in part on the [gRPC client](https://pkg.go.dev/github.com/textileio/textile/v2/api/hub/client), which can be imported to an existing project:\n\n```\nimport \"github.com/textileio/textile/v2/api/hub/client\"\n```\n\n### Buckets\n\n#### `buckd`\n\n-   **Prebuilt package**: See [release assets](https://github.com/textileio/textile/releases/latest)\n-   **Docker image**: See the `buckets` tag on [Docker Hub](https://hub.docker.com/r/textile/textile/tags)\n-   **Build from the source**: \n\n```\ngit clone https://github.com/textileio/textile\ncd textile\ngo get ./cmd/buckd\n```\n\n#### `buck`\n\n-   **Prebuilt package**: See [release assets](https://github.com/textileio/textile/releases/latest)\n-   **Build from the source**: \n\n```\ngit clone https://github.com/textileio/textile\ncd textile\ngo get ./cmd/buck\n```\n\n`buck` is built in part on the [gRPC client](https://pkg.go.dev/github.com/textileio/textile/v2/api/buckets/client), which can be imported in an existing project:\n\n```\nimport \"github.com/textileio/textile/v2/api/buckets/client\"\n```\n\n### The Buckets Library\n\n```\nimport \"github.com/textileio/textile/v2/buckets/local\"\n```\n\nThe full spec is available [here](https://pkg.go.dev/github.com/textileio/textile/v2/buckets/local).\n\n## Getting Started\n\n### The Hub\n\nThe Hub daemon (`hubd`), a.k.a. _The Hub_, is a hosted wrapper around other Textile services that includes developer accounts for individuals and organizations. You are encouraged to run your own, and we strongly discourage the use of the hosted [Textile Hub](https://docs.textile.io/hub/) as it will soon be shutting down.\n\nThe layout of the `hub` client CLI mirrors the services wrapped by `hubd`:\n\n-   `hub threads` provides limited access to ThreadDB.\n-   `hub buck` provides access to Buckets (`buckd`) by wrapping the standalone `buck` CLI.\n-   `hub buck archive` provides limited access to The Hub's hosted Powergate instance, and the Filecoin network.\n\nTry `hub --help` for more usage.\n\n```\nThe Hub Client.\n\nUsage:\n  hub [command]\n\nAvailable Commands:\n  billing     Billing management\n  buck        Manage an object storage bucket\n  destroy     Destroy your account\n  fil         Interact with Filecoin related commands.\n  help        Help about any command\n  init        Initialize account\n  keys        API key management\n  login       Login\n  logout      Logout\n  orgs        Org management\n  threads     Thread management\n  update      Update the hub CLI\n  version     Show current version\n  whoami      Show current user\n\nFlags:\n      --api string        API target (default \"api.hub.textile.io:443\")\n  -h, --help              help for hub\n      --identity string   User identity\n      --key string        User API key\n      --newIdentity       Generate a new user identity\n  -o, --org string        Org username\n      --secret string     User API secret\n  -s, --session string    User session token\n      --token string      User identity token\n\nUse \"hub [command] --help\" for more information about a command.\n```\n\nRead more about The Hub, including how to [create an account](https://docs.textile.io/hub/accounts/#account-setup), in the [docs](https://docs.textile.io/hub/).\n\n### Running Buckets\n\nMuch like [`threadsd`](https://github.com/textileio/go-threads/tree/master/threadsd), the `buckd` daemon can be run as a server or alongside desktop apps or command-line tools. The easiest way to run `buckd` is by using the provided Docker Compose files. If you're new to Docker and/or Docker Compose, get started [here](https://docs.docker.com/compose/gettingstarted/). Once you are setup, you should have `docker-compose` in your `PATH`.\n\nCreate an `.env` file and add the following values:  \n\n```\nREPO_PATH=~/myrepo\nBUCK_LOG_DEBUG=true\n```\n\nCopy [this compose file](https://github.com/textileio/textile/blob/master/cmd/buckd/docker-compose.yml) and run it with the following command.\n\n```\ndocker-compose -f docker-compose.yml up\n```\n\nCongrats! Now you have Buckets running locally.\n\nThe Docker Compose file starts an IPFS node, which is used to pin bucket files and folders. You could point `buckd` to a different (possibly remote) IPFS node by setting the `BUCK_ADDR_IPFS_API` variable to a different multiaddress.  \n\nBy default, this approach does not start [Powergate](https://github.com/textileio/powergate). If you do, be sure to set the `BUCK_ADDR_POWERGATE_API` variable to the multiaddress of your Powergate. `buckd` must be configured with Powergate to enable Filecoin archiving with `buck archive`.\n\n### Creating a bucket\n\nSince `hub buck` and `buck` are functionally identical, this section will focus on `buck` and the Buckets Library using a locally running `buckd`.\n\nFirst off, take a look at `buck --help`.\n\n```\nThe Bucket Client.\n\nManages files and folders in an object storage bucket.\n\nUsage:\n  buck [command]\n\nAvailable Commands:\n  add         Add a UnixFs DAG locally at path\n  archive     Create a Filecoin archive\n  cat         Cat bucket objects at path\n  decrypt     Decrypt bucket objects at path with password\n  destroy     Destroy bucket and all objects\n  encrypt     Encrypt file with a password\n  help        Help about any command\n  init        Initialize a new or existing bucket\n  links       Show links to where this bucket can be accessed\n  ls          List top-level or nested bucket objects\n  pull        Pull bucket object changes\n  push        Push bucket object changes\n  root        Show bucket root CIDs\n  status      Show bucket object changes\n  watch       Watch auto-pushes local changes to the remote\n\nFlags:\n      --api string   API target (default \"127.0.0.1:3006\")\n  -h, --help         help for buck\n\nUse \"buck [command] --help\" for more information about a command.\n```\n\nA Textile bucket functions a bit like an S3 bucket. It's a virtual filesystem where you can push, pull, list, and cat files. You can share them via web links or render the whole thing as a website or web app. They also function a bit like a Git repository. The point of entry is from a folder on your local machine that is synced to a _remote_.\n\nTo get started, initialize a new bucket.\n\n```\nmkdir mybucket && cd mybucket\nbuck init\n```\n\nWhen prompted, give your bucket a name and either opt-in or decline bucket encyption (see [Creating a private bucket](#creating-a-private-bucket) for more about bucket encryption).\n\nYou should now see two links for the new bucket on the locally running gateway.\n\n```\n> http://127.0.0.1:8006/thread/bafkq3ocmdkrljadlgybtvocytpdw4hbnzygxecxehdp7pfj32lxp34a/buckets/bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi Thread link\n> http://127.0.0.1:8006/ipns/bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi IPNS link (propagation can be slow)\n> Success! Initialized /path/to/mybucket as a new empty bucket\n```\n\nThe first URL is the link to the ThreadDB instance. Internally, a collection named `buckets` is created. Each new instance in this collection amounts to a new bucket. However, when you visit this link, you'll notice a custom file browser. This is because the gateway considers the built-in `buckets` collection a special case. You can still view the raw ThreadDB instance by appending `?json=true` to the URL.\n\nThe second URL is the bucket's unique IPNS address, which is auto-updated when you add, modify, or delete files.\n\nIf you have configured the daemon with DNS settings, you will see a third URL that links to the bucket's WWW address, where it is rendered as a static website / client-side application. See `buckd --help` for more info.\n\n**Important**: If your bucket is private (encrypted), an access token (JWT) will be appended to these links. This token represents your _identity_ across ***all buckets*** and should not be shared without caution.\n\n`buck init` created a configuration folder in `mybucket` called `.textile`. This folder is somewhat like a `.git` folder, as it contains information about the bucket's remote address and local state.\n\n`.textile/config.yml` will look something like,\n\n```\nkey: bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi\nthread: bafkq3ocmdkrljadlgybtvocytpdw4hbnzygxecxehdp7pfj32lxp34a\n```\n\nWhere `key` is the bucket's unique key, and `thread` is it's ThreadDB ID.\n\nAdditionally, `.textile/repo` contains a repository describing the current file structure, which is used to stage changes against the remote.\n\n### Creating a private bucket\n\nBucket encryption (AES-CTR + AES-512 HMAC) happens entirely within the `buckd`, meaning your data gets encrypted on the way in, and decrypted on the way out. This type of encryption has two goals:\n\n- Obfuscate bucket data / files (the normal goal of encryption)\n- Obfuscate directory structure, which amounts to encrypting [IPLD](https://ipld.io/) nodes and their links.\n\nAs a result of these goals, we refer to encrypted buckets as _private buckets_. Read more about bucket encryption [here](https://docs.textile.io/buckets/#encryption).\n\nTo create a new private bucket, use the `--private` flag with `buck` init or respond `y` when prompted.\n\nIn addition to bucket-level encryption, you can also [protect a file with a password](#protecting-a-file-with-a-password).\n\n### Adding files and folders to a bucket\n\nBucket files and folders are content-addressed by Cids. Check out [the spec](https://github.com/multiformats/cid) if you're unfamiliar with Cids.\n\n`buck` stages new files as additions:\n\n```\necho \"hello world\" > hello.txt\nbuck status\n> new file:  hello.txt\n```\n\n`buck status` is powered by DAG-based diffing. Much like `git`, this allows buck to only push and pull _changes_. Read more about bucket diffing in the [docs](https://docs.textile.io/buckets/#diffing-and-synching), or check out this [in-depth blog post](https://blog.textile.io/buckets-diffing-syncing-archiving/).\n\nUse `push` to sync the change.\n\n```\nbuck push\n+ hello.txt: bafkreifjjcie6lypi6ny7amxnfftagclbuxndqonfipmb64f2km2devei4\n> bafybeihm4zrnrsdroazwsvk3i65ooqzdftaugdkjiedr6ocq65u3ap4wni\n```\n\nThe output shows the Cid of the added file and the bucket's new root Cid.\n\n`push` will sync all types of file changes: _Additions, modifications, and deletions_.\n\n### Recreating an existing bucket\n\nIt's often useful to recreate a bucket from the remote. This is somewhat like re-cloning a Git repo. This can be done in a different location on the same machine, or, if `buckd` has a public IP address, from a completely different machine.\n\nLet's recreate the bucket from the previous step in a new directory outside of the original bucket.\n\n```\nmkdir mybucket2 && cd mybucket2\nbuck init --existing\n```\n\nThe `--existing` flag allows for interactively selecting an existing bucket to initialize from.\n\n```\n? Which exiting bucket do you want to init from?:\n  ▸ MyBucket bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi\n```\n\nAt this point, there's only one bucket to choose from. \n\n**Note**: If `buckd` was running inside The Hub (`hubd`), you would be able to choose from buckets belonging to your Organizations and well as your individual Developer account by using the `--org` flag. Read more about Hub Accounts and Organizations [here](https://docs.textile.io/hub/accounts/).\n\n```\n> Selected bucket MyBucket\n+ hello.txt: bafkreifjjcie6lypi6ny7amxnfftagclbuxndqonfipmb64f2km2devei4\n+ .textileseed: bafkreifbdzttoqsch5j66hfmcbsic6qvwrikibgzfbg3tn7rc3j63ukk3u\n> Your bucket links:\n> http://127.0.0.1:8006/thread/bafkq3ocmdkrljadlgybtvocytpdw4hbnzygxecxehdp7pfj32lxp34a/buckets/bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi Thread link\n> http://127.0.0.1:8006/ipns/bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi IPNS link (propagation can be slow)\n> Success! Initialized /path/to/mybucket2 from an existing bucket\n```\n\nJust as before, the output shows the bucket's remote links. However, in this case `init` also pulled down the content.\n\n**Note**: `.textileseed` is used to randomize a bucket's top level Cid and cannot be modified.\n\nThe `--existing` flag is really just a helper that sets the `--thread` and `--key` flags, which match the config values we saw earlier. We could have used those flags directly to achieve the same result.\n\n```\nbuck init --thread bafkq3ocmdkrljadlgybtvocytpdw4hbnzygxecxehdp7pfj32lxp34a --key bafzbeifyzfm3kosie25s5qthvvcjrr42ivd7doqhwvu5m4ks7uqv4j5lyi\n```\n\nLastly, we could have just copied `.textile/config.yml` to a new directory and used `buck pull` to pull down the existing content.\n\n### Creating a bucket from an existing Cid\n\nSometimes it's useful to create a bucket from a [UnixFS](https://github.com/ipfs/go-unixfs) directory that is already on the IPFS network.\n\nWe can simulate this scenario by adding a local folder to IPFS and then using its root Cid to create a bucket with the `--cid` flag. Here's a local directory.\n\n```\n.\n├── a\n│   ├── bar.txt\n│   ├── foo.txt\n│   └── one\n│       ├── baz.txt\n│       ├── buz.txt\n│       └── two\n│           ├── boo.txt\n│           └── fuz.txt\n├── b\n│   ├── foo.txt\n│   └── one\n│       ├── baz.txt\n│       ├── muz.txt\n│       ├── three\n│       │   └── far.txt\n│       └── two\n│           └── fuz.txt\n└── c\n    ├── one.jpg\n    └── two.jpg\n```\n\nUse the recursvie flag `-r` with `ipfs add`.\n\n```\nipfs add -r .\nadded QmcDkcMJXZsNnExehsE1Yh6SRWucHa9ruVT82gpL83431W mydir/a/bar.txt\nadded QmYiUq2U6euWnKag23wFppG12hon4EBDswdoe4MwrKzDBn mydir/a/foo.txt\nadded QmXrd35ja3kknnmgj5kyDM74jfG8GLJJQGtRpEQpXCLTR3 mydir/a/one/baz.txt\nadded QmSWJvCzotB3CbdxVu8mBvmLqpSuEQgUoJHTFy1azRfwhT mydir/a/one/buz.txt\nadded QmT6h1eaBV74Sh75upE7ugFLkBnmyGr3WsQ8w8yx5NjgPV mydir/a/one/two/boo.txt\nadded QmTdg1b5eWEx4zJtrgvew1inkkZ29fp9mbQ4uHyKurW8Ub mydir/a/one/two/fuz.txt\nadded QmYiQAk1seXrmuQkpGE83AxJyNZDK1RNSaLyp3Z4r1zsrB mydir/b/foo.txt\nadded QmXrd35ja3kknnmgj5kyDM74jfG8GLJJQGtRpEQpXCLTR3 mydir/b/one/baz.txt\nadded QmSWJvCzotB3CbdxVu8mBvmLqpSuEQgUoJHTFy1azRfwhT mydir/b/one/muz.txt\nadded QmYs12A3CGSTHX4QrsvBe2AvLHEThrapXoTFQpyh8AzpFa mydir/b/one/three/far.txt\nadded QmTdg1b5eWEx4zJtrgvew1inkkZ29fp9mbQ4uHyKurW8Ub mydir/b/one/two/fuz.txt\nadded QmaLpwNPwftSQY3w4ZtMfZ8k38D5EgK2bcDuU4UwzREJpi mydir/c/one.jpg\nadded QmYLiWv2WXQd1m8YyHx4dMoj8B3Kuiuu7pCCoYibkqKyVj mydir/c/two.jpg\nadded QmT5YXeCfbMuVjanbHjQhECUQSACJLecfmjRBZHvmu5FDU mydir/a/one/two\nadded QmWh2Wx9Lec4wbEvFbsq4HmYjFmgUFtxNJ8wEVwXjhJ2uk mydir/a/one\nadded QmSujVHvG8Y3Jv21AbMFNQPphjyqNamh6cvdyXSD1jAtSZ mydir/a\nadded QmUGSorWDy2JiKYvQuJzEb4TnYDuDNLcdFyR6NhMwnwdvy mydir/b/one/three\nadded QmWvX7UVexbjXJtxKMyMSgGpPesFQD7teNTqUcDsP2mzW6 mydir/b/one/two\nadded QmPyMD67EgSZS1WpvgudHkxbA5zgjqmse8srPpFb9sVefT mydir/b/one\nadded QmQdAtg5NkwkvLtTbka3eci58UGj3m9AehC2sbksGSbjPZ mydir/b\nadded QmcjtVAF9PQfMKTc57vcvZeBrzww3TLxPcQfUQW7cXXLJL mydir/c\nadded QmcvkGF2t8Z94UqhdtdFRokGoqypbGyKkzRPVF4owmjVrE mydir\n```\n\nAfter adding the entire directory, we see the root Cid is `QmcvkGF2t8Z94UqhdtdFRokGoqypbGyKkzRPVF4owmjVrE`. Let's create the bucket using this Cid.\n\n```\nbuck init --cid QmcvkGF2t8Z94UqhdtdFRokGoqypbGyKkzRPVF4owmjVrE\n```\n\nThe files behind the Cid will be pulled into the new bucket.\n\n```\n+ a/bar.txt: QmcDkcMJXZsNnExehsE1Yh6SRWucHa9ruVT82gpL83431W\n+ a/foo.txt: QmYiUq2U6euWnKag23wFppG12hon4EBDswdoe4MwrKzDBn\n+ a/one/two/fuz.txt: QmTdg1b5eWEx4zJtrgvew1inkkZ29fp9mbQ4uHyKurW8Ub\n+ a/one/baz.txt: QmXrd35ja3kknnmgj5kyDM74jfG8GLJJQGtRpEQpXCLTR3\n+ c/two.jpg: QmYLiWv2WXQd1m8YyHx4dMoj8B3Kuiuu7pCCoYibkqKyVj\n+ b/foo.txt: QmYiQAk1seXrmuQkpGE83AxJyNZDK1RNSaLyp3Z4r1zsrB\n+ a/one/buz.txt: QmSWJvCzotB3CbdxVu8mBvmLqpSuEQgUoJHTFy1azRfwhT\n+ a/one/two/boo.txt: QmT6h1eaBV74Sh75upE7ugFLkBnmyGr3WsQ8w8yx5NjgPV\n+ b/one/muz.txt: QmSWJvCzotB3CbdxVu8mBvmLqpSuEQgUoJHTFy1azRfwhT\n+ b/one/three/far.txt: QmYs12A3CGSTHX4QrsvBe2AvLHEThrapXoTFQpyh8AzpFa\n+ b/one/baz.txt: QmXrd35ja3kknnmgj5kyDM74jfG8GLJJQGtRpEQpXCLTR3\n+ b/one/two/fuz.txt: QmTdg1b5eWEx4zJtrgvew1inkkZ29fp9mbQ4uHyKurW8Ub\n+ c/one.jpg: QmaLpwNPwftSQY3w4ZtMfZ8k38D5EgK2bcDuU4UwzREJpi\n> Your bucket links:\n> http://127.0.0.1:8006/thread/bafk3k3itq2rsybcvhf6wuvumruw3j6cw7ixhrtx4ek45qgvp3e7u2xa/buckets/bafzbeiawo6ghgsqjlorii4wghdl4tzz54x2kiwtcgtaq7b3h5gta2yok2i Thread link\n> http://127.0.0.1:8006/ipns/bafzbeiawo6ghgsqjlorii4wghdl4tzz54x2kiwtcgtaq7b3h5gta2yok2i IPNS link (propagation can be slow)\n> Success! Initialized /path/to/mybucket3 as a new bootstrapped bucket\n```\n\nCurrently, UnixFS in `go-ipfs` uses Cid version 0, which is why we see all these old-style Cids started with `Qm`. Of course, you can also use UnixFS directories that use Cid version 1.\n\nSimilar to initializing a new bucket from an existing Cid, `buck add` allows you to _add_ and/or _merge in_ an existing UnixFS directory to an _existing bucket_. Like adding new files locally, this works by pulling down the UnixFS content from the IPFS network into the local bucket. Sync the changes with `buck push` as normal.\n\nPulling an existing UnixFS directory into a new or existing private bucket is also possible. Just opt-in to encryption during initialization as normal. `buckd` will recursively encrypt (without duplicating) the Cid's IPLD file and directory nodes as they are pulled into the new bucket.\n\n### Exploring bucket contents\n\nUse `buck ls [path]` to explore bucket contents. Omitting `[path]` will list the top-level directory.\n\n```\nbuck ls\n\n  NAME          SIZE     DIR    OBJECTS  CID\n  .textileseed  32       false  n/a      bafkreiezexkrnk7yew6glm6sulhur66bbecc2aeaitf7uz4ymmp442lepu\n  a             3726     true   3        QmSujVHvG8Y3Jv21AbMFNQPphjyqNamh6cvdyXSD1jAtSZ\n  b             3191     true   2        QmQdAtg5NkwkvLtTbka3eci58UGj3m9AehC2sbksGSbjPZ\n  c             1537626  true   2        QmcjtVAF9PQfMKTc57vcvZeBrzww3TLxPcQfUQW7cXXLJL\n```\n\nUse `[path]` to drill into directories, e.g.,\n\n```\nbuck ls a\n\n  NAME     SIZE  DIR    OBJECTS  CID\n  bar.txt  517   false  n/a      QmcDkcMJXZsNnExehsE1Yh6SRWucHa9ruVT82gpL83431W\n  foo.txt  557   false  n/a      QmYiUq2U6euWnKag23wFppG12hon4EBDswdoe4MwrKzDBn\n  one      2502  true   3        QmWh2Wx9Lec4wbEvFbsq4HmYjFmgUFtxNJ8wEVwXjhJ2uk\n```\n\n`buck cat` functions a lot like `ls`, but cats file contents to stdout.\n\n### Resetting bucket contents\n\nSimilar to a `git reset --hard`, you can use `buck pull --hard` to discard local changes that have not been pushed.\n\nContinuing with the bucket above, add, modify, and/or delete some files. `buck status` should show your staged changes.\n\n```\nbuck status\n> modified:  a/bar.txt\n> deleted:   a/one/baz.txt\n> new file:  b/one/three/car.txt\n> deleted:   b/foo.txt\n```\n\nNormally, `buck pull` will move your local changes to temporary `.buckpatch` files, apply the remote / upstream changes, then reapply your local changes. However, the `--hard` flag will prune all local changes, resetting the local bucket contents to match the remote exactly.\n\n```\nbuck pull --hard\n+ a/one/baz.txt: QmXrd35ja3kknnmgj5kyDM74jfG8GLJJQGtRpEQpXCLTR3\n+ b/foo.txt: QmYiQAk1seXrmuQkpGE83AxJyNZDK1RNSaLyp3Z4r1zsrB\n+ a/bar.txt: QmcDkcMJXZsNnExehsE1Yh6SRWucHa9ruVT82gpL83431W\n- b/one/three/car.txt\n> QmTz6HoC18QQqAEtYhfLc4Fse3LPbSCKV8vouvE88MKjFj\n```\n\nNow `buck status` will report `> Everything up-to-date`.\n\nTry `buck pull --help` for more options when pulling the remote.\n\n### Watching a bucket for changes\n\nSo far we've seen how a bucket can change locally, but the remote can also change. This could happen for a couple reasons:\n\n* Changes are pushed from a different bucket copy against the same `buckd`.\n* Changes are pushed from a different `buckd` at the ThreadDB layer. This is known as a multi-writer scenario. See [Multi-writer buckets](#multi-writer-buckets) for more.\n\nIn either case, it is possible to listen for and apply the remote changes using `buck watch`. This will also watch for local changes and auto-push them to the remote. In this way, multiple copies of the same bucket can be kept in sync.\n\n`watch` will block until it's cancelled with a Ctrl-C.\n\n```\nbuck watch\n> Success! Watching /path/to/mybucket for changes...\n```\n\n`watch` will survive network interruptions, reconnecting when possible.\n\n```\n> Not connected. Trying to connect...\n> Not connected. Trying to connect...\n> Not connected. Trying to connect...\n> Success! Watching /path/to/mybucket for changes...\n```\n\nWhile `watch` is active, file and folders dropped into the bucket will be automatically pushed.\n\n### Protecting a file with a password\n\nPrivate buckets handle encryption entirely within `buckd`, but you can use an additional client-side encryption layer with `buck encrypt` to password protect files. This encryption is also AES-CTR + AES-512 HMAC, which means you can efficiently encrypt large file streams. However, unlike bucket-wide encryption in private buckets, client-side encryption is only available for files, not IPLD directory nodes.\n\nLet's create an encrypted version of the `hello.txt` file.\n\n```\nbuck encrypt hello.txt supersecret > secret.txt\n```\n\n`encrypt` writes to stdout. So, here we redirect the output to a new file called `secret.txt`. [scrypt](https://pkg.go.dev/golang.org/x/crypto/scrypt?tab=doc) is used to derive the AES and HMAC keys from a password. This carries the normal tradeoff: _The encryption is only as good as the password_. Also, as with all client-side encryption, you must also store or otherwise remember the password!\n\n`encrypt` only works on local files. You'll have to use `push` to sync the new file to the remote.\n\n```\nbuck push --yes\n+ secret.txt: bafkreiayymufgaut3wrfbzfdxiacxn64mxijj54g2osyk7qnco54iftovi\n> bafybeidhffwg5ucwktn7iwyvnkhxpz7b2yrh643bo74cjvsbquzpdgpcd4\n```\n\n`decrypt`, on the other hand, works on remote files. So, after pushing `secret.txt`, we can decrypt it (if we can remember the password) and write the plaintext to stdout.\n\n```\nbuck decrypt secret.txt supersecret\nhello world\n```\n\nLooks like it worked!\n\n### Sharing bucket files and folders\n\nBucket contents can be shared with other Hub accounts and users using the `buck roles` command. Each file and folder in a bucket maintains a set of public-key based access roles: `None`, `Reader`, `Writer`, and `Admin`. Only the `Admin` role can add and remove files and folders from a shared path. See `hub buck roles grant --help` for more about each role. For most applications, access roles only makes sense in the context of the Hub.\n\nBy default, public buckets have two roles located at the top-level path:\n\n```\nhub buck roles ls\n\n  IDENTITY                                                     ROLE\n  *                                                            Reader\n  bbaareibzpb44ahd7oieqevvlqajidd4jajcvx2vdvti6bpw5wkqolwwerm  Admin\n\n> Found 2 access roles\n```\n\nSince access roles are inherited down a bucket path, the single admin role grants the owner full access to all current and future files and folders. The default (`*`) `Read` role indicates that the entire bucket is open to the world. This is merely a reflection of the fact that the underlying UnixFS directory behind public (non-encrypted) buckets are discoverable on the IPFS Network.\n\nPrivate buckets are not open to the world and are created with only the single admin role. However, we can still grant default (`*`) `Read` access to individual files, folders, or the entire bucket posteriori.\n\n```\nhub buck roles grant \"*\" myfolder\nUse the arrow keys to navigate: ↓ ↑ → ←\n? Select a role:\n  None\n  ▸ Reader\n  Writer\n  Admin\n```\n\nWe can now see a new role added to `myfolder`.\n\n```\n hub buck roles ls myfolder\n\n  IDENTITY  ROLE\n  *         Reader\n\n> Found 1 access roles\n```\n\nSimilarly, grant the `None` role to revoke access.\n\nManipulating access roles for a single Hub account or user (public key) can be cumbersome with the `buck` CLI. Applications in need of this level of granular access control should do so programmatically using the [Go client](https://pkg.go.dev/github.com/textileio/textile/v2/api/buckets/client), [JavaScript client](https://textileio.github.io/js-hub/docs/hub.buckets).\n\n### Creating a Filecoin bucket archive\n\nBucket archiving requires a Powergate to be running in `buckd`. If you're curious how to do this, take a look at [this Docker Compose file](https://github.com/textileio/textile/blob/master/integrationtest/pg/docker-compose.yml).\n\nLet's try archiving the bucket from the [Creating a bucket](#creating-a-bucket) section.\n\n```\nbuck archive\n> Warning! Archives are Filecoin Mainnet. Use with caution.\n? Proceed? [y/N]\n```\n\nPlease take note of the warning. Archiving should be considered experimental since Filecoin `mainnet` has not yet launched, and Powergate will either be running a `localnet` or `mainnet`.\n\nYou should see a success message if you proceed.\n\n```\n> Success! Archive queued successfully\n```\n\nThis means that archiving has been initiated. It may take some time to complete...\n\n```\nbuck archive status\n> Archive is currently executing, grab a coffee and be patient...\n```\n\nUse the `archive status` command with `-w` to watch the progress of your archive as it moves through the Filecoin market deal stages.\n\n```\nbuck archive status -w\n> Archive is currently executing, grab a coffee and be patient...\n>    Pushing new configuration...\n>    Configuration saved successfully\n>    Executing job 1006707f-efa8-48c2-98af-a1b320a59780...\n>    Ensuring Hot-Storage satisfies the configuration...\n>    No actions needed in Hot Storage.\n>    Hot-Storage execution ran successfully.\n>    Ensuring Cold-Storage satisfies the configuration...\n>    Current replication factor is lower than desired, making 10 new deals...\n>    Calculating piece size...\n>    Estimated piece size is 256 bytes.\n>    Proposing deal to miner t01459 with 0 fil per epoch...\n>    Proposing deal to miner t0117734 with 500000000 fil per epoch...\n>    Proposing deal to miner t0120993 with 500000000 fil per epoch...\n>    Proposing deal to miner t0120642 with 500000000 fil per epoch...\n>    Proposing deal to miner t0121477 with 500000000 fil per epoch...\n>    Proposing deal to miner t0119390 with 500000000 fil per epoch...\n>    Proposing deal to miner t0101180 with 10000000 fil per epoch...\n>    Proposing deal to miner t0117803 with 500000000 fil per epoch...\n>    Proposing deal to miner t0121852 with 500000000 fil per epoch...\n>    Proposing deal to miner t0119822 with 500000000 fil per epoch...\n>    Watching deals unfold...\n>    Deal with miner t0117803 changed state to StorageDealClientFunding\n>    Deal with miner t0121852 changed state to StorageDealClientFunding\n>    Deal with miner t0121477 changed state to StorageDealClientFunding\n>    Deal with miner t0101180 changed state to StorageDealClientFunding\n>    Deal with miner t0119822 changed state to StorageDealClientFunding\n>    Deal with miner t0119390 changed state to StorageDealClientFunding\n>    Deal with miner t0120642 changed state to StorageDealClientFunding\n>    Deal with miner t0117734 changed state to StorageDealClientFunding\n>    Deal with miner t01459 changed state to StorageDealClientFunding\n>    Deal with miner t0120993 changed state to StorageDealClientFunding\n>    Deal with miner t0121477 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0119822 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0117734 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0121852 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t01459 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0120642 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0120993 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0117803 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0101180 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t0119390 changed state to StorageDealWaitingForDataRequest\n>    Deal with miner t01459 changed state to StorageDealProposalAccepted\n>    Deal with miner t01459 changed state to StorageDealSealing\n```\n\nThe output will look something like the above. With a little luck, you will start seeing some successful storage deals.\n\nBucket archiving allows you to leverage the purely decentralized nature of Filecoin in your buckets. Check out [this video](https://www.youtube.com/watch?v=jiBUxIi1zko&feature=emb_title) from a [blog post](https://blog.textile.io/buckets-diffing-syncing-archiving/) demonstrating Filecoin bucket recovery using the [Lotus client](https://github.com/filecoin-project/lotus).\n\n### Multi-writer buckets\n\nMulti-writer buckets leverage the distributed nature of ThreadDB by allowing multiple identities to write to the same bucket hosted by different Libp2p hosts. Since buckets are ThreadDB collection _instances_, this is no different than normal ThreadDB peer collaboration.\n\nTo-do: Demonstrate joining a bucket from a ThreadDB invite.\n\n### Deleting a bucket\n\nDeleting a bucket is easy... and permanent! `buck destroy` will delete your local bucket as well as the remote, making it unrecoverable with `buck init --existing`.\n\n### Using the Buckets Library\n\nThe `buckets/local` library powers both the `buck` and `hub buck` CLIs. Everything possible in `buck`, from bucket diffing, pushing, pulling, watching, archiving, etc., is available to you in existing projects by importing the Buckets Library.\n\n```\ngo get github.com/textileio/textile/v2/buckets/local\n```\n\nVisit the [GoDoc](https://pkg.go.dev/github.com/textileio/textile/v2/buckets/local) for a complete list of methods and more usage descriptions.\n\n#### Creating a bucket\n\nCreate a new bucket by constructing a configuration object. Only `Path` is required.\n\n```\n// Setup the buckets lib\nbuckets := local.NewBuckets(cmd.NewClients(\"api.textile.io:443\", false), local.DefaultConfConfig())\n\n// Create a new bucket with config\nmybuck, err := buckets.NewBucket(context.Background(), local.Config{\n    Path: \"path/to/bucket/folder\"\n})\n\n// Check current status\ndiff, err := mybuck.DiffLocal() // diff contains staged changes\n```\n\n`buckets.NewBucket` will write a local config file and data repo.\n\nSee `local.WithName`, `local.WithStrategy`, `local.WithPrivate`, `local.WithCid`, `local.WithInitPathEvents` for more options when creating buckets.\n\nTo create a bucket from an existing remote, use its thread ID and instance ID (bucket `key`) in the config.\n\n#### Getting an existing bucket\n\n`GetLocalBucket` returns the bucket at path.\n\n```\nmybuck, err := buckets.GetLocalBucket(context.Background(), \"path/to/bucket/folder\")\n```\n\n#### Pushing local files\n\n`PushLocal` pushes all staged changes to the remote and returns the new local and remote root Cids. These roots will only be different if the bucket is private (the remote is encrypted).\n\n```\nnewRoots, err := mybuck.PushLocal()\n```\n\nSee `local.PathOption` for more options when pushing.\n\n#### Pulling remote changes\n\n`PullRemote` pulls all remote changes locally and returns the new root Cids.\n\n```\nnewRoots, err := mybuck.PullRemote()\n```\n\nSee `local.PathOption` for more options when pulling.\n\n### Using the Mail Library\n\nThe `mail/local` library provides mechanisms for sending and receiving messages between Hub users. Mailboxes are built on ThreadDB.\n\n```\ngo get github.com/textileio/textile/v2/mail/local\n```\n\nVisit the [GoDoc](https://pkg.go.dev/github.com/textileio/textile/v2/mail/local) for a complete list of methods and more usage descriptions.\n\n#### Creating a mailbox\n\nLike creating a bucket, create a new mailbox by constructing a configuration object. All fields are required.\n\n```\n// Setup the mail lib\nmail := local.NewMail(cmd.NewClients(\"api.textile.io:443\", true), local.DefaultConfConfig())\n\n// Create a libp2p identity (this can be any thread.Identity)\nprivKey, _, err := crypto.GenerateEd25519Key(rand.Reader)\nid := thread.NewLibp2pIdentity(privKey)\n\n// Create a new mailbox with config\nmailbox, err := mail.NewMailbox(context.Background(), local.Config{\n    Path: \"path/to/mail/folder\", // Usually a global location like ~/.textile/mail\n    Identity: id,\n    APIKey: <API_SECRET>,\n    APISecret: <API_KEY>,\n})\n```\n\n`APIKey` and `APISecret` are User Group API Keys. Read more about [creating API Keys](https://docs.textile.io/hub/app-apis/#creating-user-group-keys).\n\nTo recreate a user's mailbox, specify the same identity and API Key in the config.\n\n#### Getting an existing mailbox\n\n`GetLocalMailbox` returns the mailbox at path.\n\n```\nmailbox, err := mail.GetLocalMailbox(context.Background(), \"path/to/mailbox/folder\")\n```\n\n#### Sending a message\n\nWhen a mailbox sends a message to another mailbox, the message is encrypted for the recipient's inbox _and_ for the senders sentbox. This allows both parties to control the message's lifecycle.\n\n```\n// Create two mailboxes (for most applications, this would not happen on the same machine)\nbox1, err := mail.NewMailbox(context.Background(), local.Config{...})\nbox2, err := mail.NewMailbox(context.Background(), local.Config{...})\n\n// Send a message from the first mailbox to the second\nmessage, err := box1.SendMessage(context.Background(), box2.Identity().GetPublic(), []byte(\"howdy\"))\n\n// List the recipient's inbox\ninbox, err := box2.ListInboxMessages(context.Background())\n\n// Open decrypts the message body\nbody, err := inbox[0].Open(context.Background(), box2.Identity())\n\n// Mark the message as read\nerr = box2.ReadInboxMessage(context.Background(), inbox[0].ID)\n```\n\n#### Watching for new messages\n\nApplications may watch for mailbox events in the inbox and/or sentbox.\n\n```\n// Handle mailbox events as they arrive\nevents := make(chan MailboxEvent)\ndefer close(events)\ngo func() {\n    for e := range events {\n        switch e.Type {\n        case NewMessage:\n            // handle new message\n        case MessageRead:\n            // handle message read (inbox only)\n        case MessageDeleted:\n            // handle message deleted\n        }\n    }\n}()\n\n// Start watching (the third param indicates we want to keep watching when offline)\nstate, err := mailbox.WatchInbox(context.Background(), events, true)\nfor s := range state {\n    // handle connectivity state\n}\n```\n\nSimilarly, use `WatchSentbox` to watch a sentbox.\n\n## Developing\n\nThe easiest way to develop against `hubd` or `buckd` is to use the Docker Compose files found in `cmd`. The `-dev` flavored files do not persist repos via Docker Volumes, which may be desirable in some cases.\n\n## Contributing\n\nPull requests and bug reports are very welcome ❤️\n\nThis repository falls under the Textile [Code of Conduct](./CODE_OF_CONDUCT.md).\n\nFeel free to get in touch by:\n-   [Opening an issue](https://github.com/textileio/textile/issues/new)\n-   Joining the [public Slack channel](https://slack.textile.io/)\n-   Sending an email to contact@textile.io\n\n## Changelog\n\nA changelog is published along with each [release](https://github.com/textileio/textile/releases).\n\n## License\n\n[MIT](LICENSE)\n"
  },
  {
    "path": "api/apitest/apitest.go",
    "content": "package apitest\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path\"\n\t\"runtime\"\n\t\"strings\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\thttpapi \"github.com/ipfs/go-ipfs-http-client\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\t\"github.com/phayes/freeport\"\n\t\"github.com/stretchr/testify/require\"\n\tbilling \"github.com/textileio/textile/v2/api/billingd/service\"\n\t\"github.com/textileio/textile/v2/api/hubd/client\"\n\tpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nconst SessionSecret = \"hubsession\"\n\nfunc MakeTextile(t *testing.T) core.Config {\n\tconf := DefaultTextileConfig(t)\n\tMakeTextileWithConfig(t, conf)\n\treturn conf\n}\n\nfunc DefaultTextileConfig(t util.TestingTWithCleanup) core.Config {\n\tapiPort, err := freeport.GetFreePort()\n\trequire.NoError(t, err)\n\tgatewayPort, err := freeport.GetFreePort()\n\trequire.NoError(t, err)\n\n\treturn core.Config{\n\t\tHub:                       true,\n\t\tDebug:                     true,\n\t\tAddrAPI:                   util.MustParseAddr(fmt.Sprintf(\"/ip4/127.0.0.1/tcp/%d\", apiPort)),\n\t\tAddrAPIProxy:              util.MustParseAddr(\"/ip4/0.0.0.0/tcp/0\"),\n\t\tAddrMongoURI:              GetMongoUri(),\n\t\tAddrMongoName:             util.MakeToken(12),\n\t\tAddrThreadsHost:           util.MustParseAddr(\"/ip4/0.0.0.0/tcp/0\"),\n\t\tAddrIPFSAPI:               GetIPFSApiAddr(),\n\t\tAddrGatewayHost:           util.MustParseAddr(fmt.Sprintf(\"/ip4/127.0.0.1/tcp/%d\", gatewayPort)),\n\t\tAddrGatewayURL:            fmt.Sprintf(\"http://127.0.0.1:%d\", gatewayPort),\n\t\tIPNSRepublishSchedule:     \"0 1 * * *\",\n\t\tIPNSRepublishConcurrency:  5,\n\t\tCustomerioAPIKey:          os.Getenv(\"CUSTOMERIO_API_KEY\"),\n\t\tCustomerioConfirmTmpl:     os.Getenv(\"CUSTOMERIO_CONFIRM_TMPL\"),\n\t\tCustomerioInviteTmpl:      os.Getenv(\"CUSTOMERIO_INVITE_TMPL\"),\n\t\tEmailSessionSecret:        SessionSecret,\n\t\tMaxBucketArchiveRepFactor: 4,\n\t}\n}\n\ntype Options struct {\n\tRepoPath       string\n\tNoAutoShutdown bool\n}\n\ntype Option func(*Options)\n\nfunc WithRepoPath(repoPath string) Option {\n\treturn func(o *Options) {\n\t\to.RepoPath = repoPath\n\t}\n}\n\nfunc WithoutAutoShutdown() Option {\n\treturn func(o *Options) {\n\t\to.NoAutoShutdown = true\n\t}\n}\n\nfunc MakeTextileWithConfig(t util.TestingTWithCleanup, conf core.Config, opts ...Option) func() {\n\tvar args Options\n\tfor _, opt := range opts {\n\t\topt(&args)\n\t}\n\tif args.RepoPath == \"\" {\n\t\targs.RepoPath = t.TempDir()\n\t}\n\ttextile, err := core.NewTextile(context.Background(), conf, core.WithBadgerThreadsPersistence(args.RepoPath))\n\trequire.NoError(t, err)\n\ttime.Sleep(5 * time.Second) // Give the api a chance to get ready\n\tdone := func() {\n\t\ttime.Sleep(time.Second) // Give threads a chance to finish work\n\t\terr := textile.Close()\n\t\trequire.NoError(t, err)\n\t}\n\tif !args.NoAutoShutdown {\n\t\tt.Cleanup(done)\n\t}\n\treturn done\n}\n\nfunc DefaultBillingConfig(t util.TestingTWithCleanup) billing.Config {\n\tapiPort, err := freeport.GetFreePort()\n\trequire.NoError(t, err)\n\tgatewayPort, err := freeport.GetFreePort()\n\trequire.NoError(t, err)\n\n\treturn billing.Config{\n\t\tListenAddr:             util.MustParseAddr(fmt.Sprintf(\"/ip4/127.0.0.1/tcp/%d\", apiPort)),\n\t\tStripeAPIURL:           \"https://api.stripe.com\",\n\t\tStripeAPIKey:           os.Getenv(\"STRIPE_API_KEY\"),\n\t\tStripeSessionReturnURL: \"http://127.0.0.1:8006/dashboard\",\n\t\tSegmentAPIKey:          os.Getenv(\"SEGMENT_API_KEY\"),\n\t\tSegmentPrefix:          \"test_\",\n\t\tDBURI:                  GetMongoUri(),\n\t\tDBName:                 util.MakeToken(8),\n\t\tGatewayHostAddr:        util.MustParseAddr(fmt.Sprintf(\"/ip4/127.0.0.1/tcp/%d\", gatewayPort)),\n\t\tDebug:                  true,\n\t}\n}\n\nfunc MakeBillingWithConfig(t util.TestingTWithCleanup, conf billing.Config) {\n\tapi, err := billing.NewService(context.Background(), conf)\n\trequire.NoError(t, err)\n\terr = api.Start()\n\trequire.NoError(t, err)\n\tt.Cleanup(func() {\n\t\terr := api.Stop()\n\t\trequire.NoError(t, err)\n\t})\n}\n\nfunc NewUsername() string {\n\treturn strings.ToLower(util.MakeToken(12))\n}\n\nfunc NewEmail() string {\n\treturn fmt.Sprintf(\"%s@test.com\", NewUsername())\n}\n\nfunc Signup(t util.TestingTWithCleanup, client *client.Client, conf core.Config, username, email string) *pb.SignupResponse {\n\tvar err error\n\tvar res *pb.SignupResponse\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tres, err = client.Signup(context.Background(), username, email)\n\t\trequire.NoError(t, err)\n\t}()\n\tConfirmEmail(t, conf.AddrGatewayURL, SessionSecret)\n\twg.Wait()\n\trequire.NotNil(t, res)\n\trequire.NotEmpty(t, res.Session)\n\treturn res\n}\n\nfunc Signin(t *testing.T, client *client.Client, conf core.Config, usernameOrEmail string) *pb.SigninResponse {\n\tvar err error\n\tvar res *pb.SigninResponse\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tres, err = client.Signin(context.Background(), usernameOrEmail)\n\t\trequire.NoError(t, err)\n\t}()\n\tConfirmEmail(t, conf.AddrGatewayURL, SessionSecret)\n\twg.Wait()\n\trequire.NotNil(t, res)\n\trequire.NotEmpty(t, res.Session)\n\treturn res\n}\n\nfunc ConfirmEmail(t util.TestingTWithCleanup, gurl string, secret string) {\n\ttime.Sleep(time.Second)\n\turl := fmt.Sprintf(\"%s/confirm/%s\", gurl, secret)\n\t_, err := http.Get(url)\n\trequire.NoError(t, err)\n\ttime.Sleep(time.Second)\n}\n\n// GetMongoUri returns env value or default.\nfunc GetMongoUri() string {\n\tenv := os.Getenv(\"MONGO_URI\")\n\tif env != \"\" {\n\t\treturn env\n\t}\n\treturn \"mongodb://127.0.0.1:27017\"\n}\n\n// GetIPFSApiAddr returns env value or default.\nfunc GetIPFSApiAddr() ma.Multiaddr {\n\tenv := os.Getenv(\"IPFS_API_ADDR\")\n\tif env != \"\" {\n\t\treturn util.MustParseAddr(env)\n\t}\n\treturn util.MustParseAddr(\"/ip4/127.0.0.1/tcp/5011\")\n}\n\n// StartServices starts local mongodb and ipfs services.\nfunc StartServices() (cleanup func()) {\n\t_, currentFilePath, _, _ := runtime.Caller(0)\n\tdirpath := path.Dir(currentFilePath)\n\n\tmakeDown := func() {\n\t\tcmd := exec.Command(\n\t\t\t\"docker-compose\",\n\t\t\t\"-f\",\n\t\t\tfmt.Sprintf(\"%s/docker-compose.yml\", dirpath),\n\t\t\t\"down\",\n\t\t\t\"-v\",\n\t\t\t\"--remove-orphans\",\n\t\t)\n\t\tcmd.Stdout = os.Stdout\n\t\tcmd.Stderr = os.Stderr\n\t\tif err := cmd.Run(); err != nil {\n\t\t\tlog.Fatalf(\"docker-compose down: %s\", err)\n\t\t}\n\t}\n\tmakeDown()\n\n\tcmd := exec.Command(\n\t\t\"docker-compose\",\n\t\t\"-f\",\n\t\tfmt.Sprintf(\"%s/docker-compose.yml\", dirpath),\n\t\t\"build\",\n\t)\n\tcmd.Stdout = os.Stdout\n\tcmd.Stderr = os.Stderr\n\tif err := cmd.Run(); err != nil {\n\t\tlog.Fatalf(\"docker-compose build: %s\", err)\n\t}\n\tcmd = exec.Command(\n\t\t\"docker-compose\",\n\t\t\"-f\",\n\t\tfmt.Sprintf(\"%s/docker-compose.yml\", dirpath),\n\t\t\"up\",\n\t\t\"-V\",\n\t)\n\t//cmd.Stdout = os.Stdout\n\t//cmd.Stderr = os.Stderr\n\tif err := cmd.Start(); err != nil {\n\t\tlog.Fatalf(\"running docker-compose: %s\", err)\n\t}\n\n\tlimit := 5\n\tretries := 0\n\tvar err error\n\tfor retries < limit {\n\t\terr = checkServices()\n\t\tif err == nil {\n\t\t\tbreak\n\t\t}\n\t\ttime.Sleep(time.Second)\n\t\tretries++\n\t}\n\tif retries == limit {\n\t\tmakeDown()\n\t\tif err != nil {\n\t\t\tlog.Fatalf(\"connecting to services: %s\", err)\n\t\t}\n\t\tlog.Fatalf(\"max retries exhausted connecting to services\")\n\t}\n\treturn makeDown\n}\n\nfunc checkServices() error {\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second*3)\n\tdefer cancel()\n\tmc, err := mongo.Connect(ctx, options.Client().ApplyURI(GetMongoUri()))\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err = mc.Ping(ctx, nil); err != nil {\n\t\treturn err\n\t}\n\tic, err := httpapi.NewApi(GetIPFSApiAddr())\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, err = ic.Key().Self(ctx); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "api/apitest/docker-compose.yml",
    "content": "version: \"3\"\nservices:\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n    environment:\n      - IPFS_PROFILE=test\n    ports:\n      - \"127.0.0.1:5011:5001\"\n  mongo:\n    image: mongo:latest\n    ports:\n      - \"127.0.0.1:27017:27017\"\n    command:\n      - /bin/bash\n      - -c\n      - |\n        /usr/bin/mongod --fork --logpath /var/log/mongod.log --bind_ip_all --replSet rs0\n        mongo --eval 'rs.initiate({_id: \"rs0\", version: 1, members: [{ _id: 0, host: \"127.0.0.1:27017\" }]})'\n        tail -f /var/log/mongod.log"
  },
  {
    "path": "api/billingd/Dockerfile",
    "content": "FROM golang:1.16.0-buster\nMAINTAINER Textile <contact@textile.io>\n\n# This is (in large part) copied (with love) from\n# https://hub.docker.com/r/ipfs/go-ipfs/dockerfile\n\n# Install deps\nRUN apt-get update && apt-get install -y \\\n  libssl-dev \\\n  ca-certificates\n\nENV SRC_DIR /textile\n\n# Download packages first so they can be cached.\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\n# Build the thing.\nRUN cd $SRC_DIR \\\n  && TXTL_BUILD_FLAGS=\"CGO_ENABLED=0 GOOS=linux\" make build-billingd\n\n# Get su-exec, a very minimal tool for dropping privileges,\n# and tini, a very minimal init daemon for containers\nENV SUEXEC_VERSION v0.2\nENV TINI_VERSION v0.19.0\nRUN set -eux; \\\n    dpkgArch=\"$(dpkg --print-architecture)\"; \\\n    case \"${dpkgArch##*-}\" in \\\n        \"amd64\" | \"armhf\" | \"arm64\") tiniArch=\"tini-static-$dpkgArch\" ;;\\\n        *) echo >&2 \"unsupported architecture: ${dpkgArch}\"; exit 1 ;; \\\n    esac; \\\n  cd /tmp \\\n  && git clone https://github.com/ncopa/su-exec.git \\\n  && cd su-exec \\\n  && git checkout -q $SUEXEC_VERSION \\\n  && make su-exec-static \\\n  && cd /tmp \\\n  && wget -q -O tini https://github.com/krallin/tini/releases/download/$TINI_VERSION/$tiniArch \\\n  && chmod +x tini\n\n# Now comes the actual target image, which aims to be as small as possible.\nFROM busybox:1.31.1-glibc\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\n# Get the textile binary, entrypoint script, and TLS CAs from the build container.\nENV SRC_DIR /textile\nCOPY --from=0 $SRC_DIR/billingd /usr/local/bin/billingd\nCOPY --from=0 /tmp/su-exec/su-exec-static /sbin/su-exec\nCOPY --from=0 /tmp/tini /sbin/tini\nCOPY --from=0 /etc/ssl/certs /etc/ssl/certs\n\n# This shared lib (part of glibc) doesn't seem to be included with busybox.\nCOPY --from=0 /lib/*-linux-gnu*/libdl.so.2 /lib/\n\n# Copy over SSL libraries.\nCOPY --from=0 /usr/lib/*-linux-gnu*/libssl.so* /usr/lib/\nCOPY --from=0 /usr/lib/*-linux-gnu*/libcrypto.so* /usr/lib/\n\n# addrApi; can be exposed to the public\nEXPOSE 10006\n# addrGatewayHost; can be exposed to the public.\nEXPOSE 8010\n\n# Create the repo directory.\nENV BILLING_PATH /data/billing\nRUN mkdir -p $BILLING_PATH \\\n  && adduser -D -h $BILLING_PATH -u 1000 -G users billing \\\n  && chown billing:users $BILLING_PATH\n\n# Switch to a non-privileged user.\nUSER billing\n\nENTRYPOINT [\"/sbin/tini\", \"--\", \"billingd\"]\n"
  },
  {
    "path": "api/billingd/Dockerfile.dev",
    "content": "FROM golang:1.16.0-buster\n\nRUN apt-get update && apt-get install -y \\\n  libssl-dev \\\n  ca-certificates\n\nRUN go get github.com/go-delve/delve/cmd/dlv\n\nENV SRC_DIR /textile\n\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\nRUN cd $SRC_DIR \\\n  && CGO_ENABLED=0 GOOS=linux go build -gcflags \"all=-N -l\" -o billingd api/billingd/main.go\n\nFROM debian:buster\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\nENV SRC_DIR /textile\nCOPY --from=0 /go/bin/dlv /usr/local/bin/dlv\nCOPY --from=0 /etc/ssl/certs /etc/ssl/certs\nCOPY --from=0 $SRC_DIR/billingd /usr/local/bin/billingd\n\nEXPOSE 10006\nEXPOSE 8010\nEXPOSE 40000\n\nENV BILLING_PATH /data/billing\nRUN adduser --home $BILLING_PATH --disabled-login --gecos \"\" --ingroup users billing\n\nUSER billing\n\nENTRYPOINT [\"dlv\", \"--listen=0.0.0.0:40000\", \"--headless=true\", \"--accept-multiclient\", \"--continue\", \"--api-version=2\", \"exec\", \"/usr/local/bin/billingd\"]\n"
  },
  {
    "path": "api/billingd/analytics/analytics.go",
    "content": "package analytics\n\nimport (\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/textileio/go-threads/util\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\tsegment \"gopkg.in/segmentio/analytics-go.v3\"\n)\n\nvar (\n\tlog = logging.Logger(\"analytics\")\n)\n\n// Client uses segment to trigger life-cycle emails (quota, billing, etc).\ntype Client struct {\n\tapi    segment.Client\n\tprefix string\n}\n\n// NewClient return a segment client.\nfunc NewClient(segmentAPIKey, prefix string, debug bool) (*Client, error) {\n\tif debug {\n\t\tif err := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"analytics\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tvar api segment.Client\n\tif segmentAPIKey != \"\" {\n\t\tconfig := segment.Config{\n\t\t\tVerbose: debug,\n\t\t}\n\t\tvar err error\n\t\tapi, err = segment.NewWithConfig(segmentAPIKey, config)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\treturn &Client{\n\t\tapi:    api,\n\t\tprefix: prefix,\n\t}, nil\n}\n\n// Identify creates or updates the user traits\nfunc (c *Client) Identify(key string, accountType mdb.AccountType, active bool, email string, properties map[string]interface{}) {\n\tif c.api != nil && accountType != mdb.User {\n\t\ttraits := segment.NewTraits()\n\t\ttraits.Set(\"account_type\", accountType)\n\t\ttraits.Set(c.prefix+\"signup\", \"true\")\n\t\tif email != \"\" {\n\t\t\ttraits.SetEmail(email)\n\t\t}\n\t\tfor key, value := range properties {\n\t\t\ttraits.Set(key, value)\n\t\t}\n\t\tif err := c.api.Enqueue(segment.Identify{\n\t\t\tUserId: key,\n\t\t\tTraits: traits,\n\t\t\tContext: &segment.Context{\n\t\t\t\tExtra: map[string]interface{}{\n\t\t\t\t\t\"active\": active,\n\t\t\t\t},\n\t\t\t},\n\t\t}); err != nil {\n\t\t\tlog.Errorf(\"identifying user: %v\", err)\n\t\t}\n\t}\n}\n\n// TrackEvent logs a new event\nfunc (c *Client) TrackEvent(key string, accountType mdb.AccountType, active bool, event Event, properties map[string]string) {\n\tif c.api != nil && accountType != mdb.User {\n\t\tprops := segment.NewProperties()\n\t\tfor key, value := range properties {\n\t\t\tprops.Set(key, value)\n\t\t}\n\n\t\tif err := c.api.Enqueue(segment.Track{\n\t\t\tUserId:     key,\n\t\t\tEvent:      event.String(),\n\t\t\tProperties: props,\n\t\t\tContext: &segment.Context{\n\t\t\t\tExtra: map[string]interface{}{\n\t\t\t\t\t\"active\": active,\n\t\t\t\t},\n\t\t\t},\n\t\t}); err != nil {\n\t\t\tlog.Errorf(\"tracking event: %v\", err)\n\t\t}\n\t}\n}\n\n// FormatUnix converts seconds to string in same format for all analytics requests\nfunc (c *Client) FormatUnix(seconds int64) string {\n\treturn time.Unix(seconds, 0).Format(time.RFC3339)\n}\n"
  },
  {
    "path": "api/billingd/analytics/events.go",
    "content": "package analytics\n\nimport (\n\t\"fmt\"\n)\n\n// Event is a type of usage event\ntype Event int\n\nconst (\n\tSignIn Event = iota\n\tAccountDestroyed\n\tKeyAccountCreated\n\tKeyUserCreated\n\tOrgCreated\n\tOrgLeave\n\tOrgDestroyed\n\tOrgInviteCreated\n\tGracePeriodStart\n\tGracePeriodEnd\n\tBillingSetup\n\tBucketCreated\n\tBucketArchiveCreated\n\tMailboxCreated\n\tThreadDbCreated\n)\n\nfunc (e Event) String() string {\n\tswitch e {\n\tcase SignIn:\n\t\treturn \"signin\"\n\tcase AccountDestroyed:\n\t\treturn \"account_destroyed\"\n\tcase KeyAccountCreated:\n\t\treturn \"key_account_created\"\n\tcase KeyUserCreated:\n\t\treturn \"key_user_created\"\n\tcase OrgCreated:\n\t\treturn \"org_created\"\n\tcase OrgLeave:\n\t\treturn \"org_leave\"\n\tcase OrgDestroyed:\n\t\treturn \"org_destroyed\"\n\tcase OrgInviteCreated:\n\t\treturn \"org_invite_created\"\n\tcase GracePeriodStart:\n\t\treturn \"grace_period_start\"\n\tcase GracePeriodEnd:\n\t\treturn \"grace_period_end\"\n\tcase BillingSetup:\n\t\treturn \"billing_setup\"\n\tcase BucketCreated:\n\t\treturn \"bucket_created\"\n\tcase BucketArchiveCreated:\n\t\treturn \"bucket_archive_created\"\n\tcase MailboxCreated:\n\t\treturn \"mailbox_created\"\n\tcase ThreadDbCreated:\n\t\treturn \"threaddb_created\"\n\tdefault:\n\t\treturn fmt.Sprintf(\"%d\", int(e))\n\t}\n}\n"
  },
  {
    "path": "api/billingd/client/client.go",
    "content": "package client\n\nimport (\n\t\"context\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tstripe \"github.com/stripe/stripe-go/v72\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/billingd/analytics\"\n\tpb \"github.com/textileio/textile/v2/api/billingd/pb\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"google.golang.org/grpc\"\n)\n\nvar log = logging.Logger(\"billing.client\")\n\n// Client provides the client api.\ntype Client struct {\n\tc    pb.APIServiceClient\n\tconn *grpc.ClientConn\n}\n\n// NewClient starts the client.\nfunc NewClient(target string, opts ...grpc.DialOption) (*Client, error) {\n\tconn, err := grpc.Dial(target, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Client{\n\t\tc:    pb.NewAPIServiceClient(conn),\n\t\tconn: conn,\n\t}, nil\n}\n\n// Close closes the client's grpc connection and cancels any active requests.\nfunc (c *Client) Close() error {\n\treturn c.conn.Close()\n}\n\nfunc (c *Client) CheckHealth(ctx context.Context) error {\n\t_, err := c.c.CheckHealth(ctx, &pb.CheckHealthRequest{})\n\treturn err\n}\n\nfunc (c *Client) CreateCustomer(\n\tctx context.Context,\n\tkey thread.PubKey,\n\temail string,\n\tusername string,\n\taccountType mdb.AccountType,\n\topts ...Option,\n) (string, error) {\n\targs := &options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tvar parent *pb.CreateCustomerRequest_Params\n\tif args.parentKey != nil {\n\t\tparent = &pb.CreateCustomerRequest_Params{\n\t\t\tKey:         args.parentKey.String(),\n\t\t\tEmail:       args.parentEmail,\n\t\t\tAccountType: int32(args.parentAccountType),\n\t\t}\n\t}\n\tres, err := c.c.CreateCustomer(ctx, &pb.CreateCustomerRequest{\n\t\tCustomer: &pb.CreateCustomerRequest_Params{\n\t\t\tKey:         key.String(),\n\t\t\tEmail:       email,\n\t\t\tAccountType: int32(accountType),\n\t\t\tUsername:    username,\n\t\t},\n\t\tParent: parent,\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn res.CustomerId, nil\n}\n\nfunc (c *Client) GetCustomer(ctx context.Context, key thread.PubKey) (*pb.GetCustomerResponse, error) {\n\treturn c.c.GetCustomer(ctx, &pb.GetCustomerRequest{\n\t\tKey: key.String(),\n\t})\n}\n\nfunc (c *Client) GetCustomerSession(ctx context.Context, key thread.PubKey) (*pb.GetCustomerSessionResponse, error) {\n\treturn c.c.GetCustomerSession(ctx, &pb.GetCustomerSessionRequest{\n\t\tKey: key.String(),\n\t})\n}\n\nfunc (c *Client) ListDependentCustomers(ctx context.Context, key thread.PubKey, opts ...ListOption) (\n\t*pb.ListDependentCustomersResponse, error) {\n\targs := &listOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\treturn c.c.ListDependentCustomers(ctx, &pb.ListDependentCustomersRequest{\n\t\tKey:    key.String(),\n\t\tOffset: args.offset,\n\t\tLimit:  args.limit,\n\t})\n}\n\nfunc (c *Client) UpdateCustomer(\n\tctx context.Context,\n\tcustomerID string,\n\tbalance int64,\n\tbillable,\n\tdelinquent bool,\n) error {\n\t_, err := c.c.UpdateCustomer(ctx, &pb.UpdateCustomerRequest{\n\t\tCustomerId: customerID,\n\t\tBalance:    balance,\n\t\tBillable:   billable,\n\t\tDelinquent: delinquent,\n\t})\n\treturn err\n}\n\nfunc (c *Client) UpdateCustomerSubscription(\n\tctx context.Context,\n\tcustomerID string,\n\tstatus stripe.SubscriptionStatus,\n\tperiodStart, periodEnd int64,\n) error {\n\t_, err := c.c.UpdateCustomerSubscription(ctx, &pb.UpdateCustomerSubscriptionRequest{\n\t\tCustomerId: customerID,\n\t\tStatus:     string(status),\n\t\tInvoicePeriod: &pb.Period{\n\t\t\tUnixStart: periodStart,\n\t\t\tUnixEnd:   periodEnd,\n\t\t},\n\t})\n\treturn err\n}\n\nfunc (c *Client) RecreateCustomerSubscription(ctx context.Context, key thread.PubKey) error {\n\t_, err := c.c.RecreateCustomerSubscription(ctx, &pb.RecreateCustomerSubscriptionRequest{\n\t\tKey: key.String(),\n\t})\n\treturn err\n}\n\nfunc (c *Client) DeleteCustomer(ctx context.Context, key thread.PubKey) error {\n\t_, err := c.c.DeleteCustomer(ctx, &pb.DeleteCustomerRequest{\n\t\tKey: key.String(),\n\t})\n\treturn err\n}\n\nfunc (c *Client) GetCustomerUsage(ctx context.Context, key thread.PubKey) (*pb.GetCustomerUsageResponse, error) {\n\treturn c.c.GetCustomerUsage(ctx, &pb.GetCustomerUsageRequest{\n\t\tKey: key.String(),\n\t})\n}\n\nfunc (c *Client) IncCustomerUsage(\n\tctx context.Context,\n\tkey thread.PubKey,\n\tproductUsage map[string]int64,\n) (*pb.IncCustomerUsageResponse, error) {\n\treturn c.c.IncCustomerUsage(ctx, &pb.IncCustomerUsageRequest{\n\t\tKey:          key.String(),\n\t\tProductUsage: productUsage,\n\t})\n}\n\nfunc (c *Client) ReportCustomerUsage(ctx context.Context, key thread.PubKey) error {\n\t_, err := c.c.ReportCustomerUsage(ctx, &pb.ReportCustomerUsageRequest{\n\t\tKey: key.String(),\n\t})\n\treturn err\n}\n\n// Identify creates or updates the user traits\nfunc (c *Client) Identify(\n\tctx context.Context,\n\tkey thread.PubKey,\n\taccountType mdb.AccountType,\n\tactive bool,\n\temail string,\n\tproperties map[string]string,\n) {\n\tif _, err := c.c.Identify(ctx, &pb.IdentifyRequest{\n\t\tKey:         key.String(),\n\t\tAccountType: int32(accountType),\n\t\tActive:      active,\n\t\tEmail:       email,\n\t\tProperties:  properties,\n\t}); err != nil {\n\t\tlog.Error(err)\n\t}\n}\n\n// TrackEvent records a new event\nfunc (c *Client) TrackEvent(\n\tctx context.Context,\n\tkey thread.PubKey,\n\taccountType mdb.AccountType,\n\tactive bool,\n\tevent analytics.Event,\n\tproperties map[string]string,\n) {\n\tif _, err := c.c.TrackEvent(ctx, &pb.TrackEventRequest{\n\t\tKey:         key.String(),\n\t\tAccountType: int32(accountType),\n\t\tActive:      active,\n\t\tEvent:       int32(event),\n\t\tProperties:  properties,\n\t}); err != nil {\n\t\tlog.Error(err)\n\t}\n}\n"
  },
  {
    "path": "api/billingd/client/client_test.go",
    "content": "package client_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"math\"\n\t\"os\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\tstripe \"github.com/stripe/stripe-go/v72\"\n\t\"github.com/textileio/go-ds-mongo/test\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\t\"github.com/textileio/textile/v2/api/billingd/client\"\n\t\"github.com/textileio/textile/v2/api/billingd/service\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"google.golang.org/grpc\"\n)\n\nconst (\n\tmib = 1024 * 1024\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = test.StartMongoDB()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc TestClient_CheckHealth(t *testing.T) {\n\tc := setup(t)\n\terr := c.CheckHealth(context.Background())\n\trequire.NoError(t, err)\n}\n\nfunc TestClient_CreateCustomer(t *testing.T) {\n\tc := setup(t)\n\n\tkey := newKey(t)\n\temail := apitest.NewEmail()\n\tusername := apitest.NewUsername()\n\t_, err := c.CreateCustomer(context.Background(), key, email, username, mdb.Dev)\n\trequire.NoError(t, err)\n\n\t_, err = c.CreateCustomer(context.Background(), key, email, username, mdb.Dev)\n\trequire.Error(t, err)\n\n\t_, err = c.CreateCustomer(\n\t\tcontext.Background(),\n\t\tnewKey(t),\n\t\tapitest.NewEmail(),\n\t\tapitest.NewUsername(),\n\t\tmdb.User,\n\t\tclient.WithParent(key, email, mdb.Dev),\n\t)\n\trequire.NoError(t, err)\n\n\tnonExistentParentKey := newKey(t)\n\t_, err = c.CreateCustomer(\n\t\tcontext.Background(),\n\t\tnewKey(t),\n\t\tapitest.NewEmail(),\n\t\tapitest.NewUsername(),\n\t\tmdb.User,\n\t\tclient.WithParent(nonExistentParentKey, apitest.NewEmail(), mdb.Dev),\n\t)\n\trequire.NoError(t, err)\n\n\tnewParent, err := c.GetCustomer(context.Background(), nonExistentParentKey)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, newParent)\n\tassert.Equal(t, int64(1), newParent.Dependents)\n}\n\nfunc TestClient_GetCustomer(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\t_, err := c.CreateCustomer(context.Background(), key, apitest.NewEmail(), apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\tcus, err := c.GetCustomer(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, cus.AccountStatus)\n\tassert.NotEmpty(t, cus.SubscriptionStatus)\n\tassert.Equal(t, 0, int(cus.Balance))\n\tassert.False(t, cus.Billable)\n\tassert.False(t, cus.Delinquent)\n\tassert.NotEmpty(t, cus.DailyUsage)\n}\n\nfunc TestClient_GetCustomerSession(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\t_, err := c.CreateCustomer(context.Background(), key, apitest.NewEmail(), apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\tsession, err := c.GetCustomerSession(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, session.Url)\n}\n\nfunc TestClient_ListDependentCustomers(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\temail := apitest.NewEmail()\n\tusername := apitest.NewUsername()\n\t_, err := c.CreateCustomer(context.Background(), key, email, username, mdb.Org)\n\trequire.NoError(t, err)\n\n\tfor i := 0; i < 30; i++ {\n\t\t_, err = c.CreateCustomer(\n\t\t\tcontext.Background(),\n\t\t\tnewKey(t),\n\t\t\tapitest.NewEmail(),\n\t\t\tapitest.NewUsername(),\n\t\t\tmdb.User,\n\t\t\tclient.WithParent(key, email, mdb.Org),\n\t\t)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(time.Second)\n\t}\n\n\tres, err := c.ListDependentCustomers(context.Background(), key, client.WithLimit(30))\n\trequire.NoError(t, err)\n\tassert.Len(t, res.Customers, 30)\n\n\tres, err = c.ListDependentCustomers(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.Len(t, res.Customers, 25)\n\n\tres, err = c.ListDependentCustomers(context.Background(), key, client.WithLimit(5))\n\trequire.NoError(t, err)\n\tassert.Len(t, res.Customers, 5)\n\n\tres, err = c.ListDependentCustomers(context.Background(), key, client.WithOffset(res.NextOffset))\n\trequire.NoError(t, err)\n\tassert.Len(t, res.Customers, 25)\n\n\tres, err = c.ListDependentCustomers(context.Background(), key, client.WithOffset(res.NextOffset))\n\trequire.NoError(t, err)\n\tassert.Len(t, res.Customers, 0)\n}\n\nfunc TestClient_UpdateCustomer(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\temail := apitest.NewEmail()\n\tid, err := c.CreateCustomer(context.Background(), key, email, apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\tchildKey := newKey(t)\n\tchildId, err := c.CreateCustomer(\n\t\tcontext.Background(),\n\t\tchildKey,\n\t\tapitest.NewEmail(),\n\t\tapitest.NewUsername(),\n\t\tmdb.User,\n\t\tclient.WithParent(key, email, mdb.Dev),\n\t)\n\trequire.NoError(t, err)\n\n\terr = c.UpdateCustomer(context.Background(), id, 100, true, true)\n\trequire.NoError(t, err)\n\n\tcus, err := c.GetCustomer(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, 100, int(cus.Balance))\n\tassert.True(t, cus.Billable)\n\tassert.True(t, cus.Delinquent)\n\n\t// Child cannot be billable\n\terr = c.UpdateCustomer(context.Background(), childId, 0, true, false)\n\trequire.Error(t, err)\n}\n\nfunc TestClient_UpdateCustomerSubscription(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\tid, err := c.CreateCustomer(context.Background(), key, apitest.NewEmail(), apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\tstart := time.Now().Add(-time.Hour).Unix()\n\tend := time.Now().Add(time.Hour).Unix()\n\terr = c.UpdateCustomerSubscription(context.Background(), id, stripe.SubscriptionStatusCanceled, start, end)\n\trequire.NoError(t, err)\n\n\tcus, err := c.GetCustomer(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, string(stripe.SubscriptionStatusCanceled), cus.SubscriptionStatus)\n}\n\nfunc TestClient_RecreateCustomerSubscription(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\tid, err := c.CreateCustomer(context.Background(), key, apitest.NewEmail(), apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\terr = c.RecreateCustomerSubscription(context.Background(), key)\n\trequire.Error(t, err)\n\n\tstart := time.Now().Add(-time.Hour).Unix()\n\tend := time.Now().Add(time.Hour).Unix()\n\terr = c.UpdateCustomerSubscription(context.Background(), id, stripe.SubscriptionStatusCanceled, start, end)\n\trequire.NoError(t, err)\n\n\terr = c.RecreateCustomerSubscription(context.Background(), key)\n\trequire.NoError(t, err)\n\n\tcus, err := c.GetCustomer(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, string(stripe.SubscriptionStatusActive), cus.SubscriptionStatus)\n}\n\nfunc TestClient_DeleteCustomer(t *testing.T) {\n\tc := setup(t)\n\tkey := newKey(t)\n\t_, err := c.CreateCustomer(context.Background(), key, apitest.NewEmail(), apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\terr = c.DeleteCustomer(context.Background(), key)\n\trequire.NoError(t, err)\n}\n\ntype usageTest struct {\n\tkey            string\n\tinitialIncSize int64\n\tunitPrice      float64\n}\n\nfunc TestClient_GetCustomerUsage(t *testing.T) {\n\ttests := []usageTest{\n\t\t{\"stored_data\", mib, 0.000007705471},\n\t\t{\"network_egress\", mib, 0.000025684903},\n\t\t{\"instance_reads\", 1, 0.000099999999},\n\t\t{\"instance_writes\", 1, 0.000199999999},\n\t}\n\tfor _, tt := range tests {\n\t\tgetCustomerUsage(t, tt)\n\t}\n}\n\nfunc getCustomerUsage(t *testing.T, test usageTest) {\n\tc := setup(t)\n\tkey := newKey(t)\n\tid, err := c.CreateCustomer(context.Background(), key, apitest.NewEmail(), apitest.NewUsername(), mdb.Dev)\n\trequire.NoError(t, err)\n\n\tproduct := getProduct(t, test.key)\n\tvar inc, sizeTotal, unitsTotal int64\n\n\terr = c.UpdateCustomer(context.Background(), id, 0, true, false)\n\trequire.NoError(t, err)\n\n\tinc = product.FreeQuotaSize * 2\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\t_, err = c.IncCustomerUsage(context.Background(), key, map[string]int64{test.key: inc})\n\trequire.NoError(t, err)\n\n\terr = c.ReportCustomerUsage(context.Background(), key)\n\trequire.NoError(t, err)\n\n\tres, err := c.GetCustomerUsage(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, res.Usage)\n\tassert.Equal(t, sizeTotal, res.Usage[test.key].Total)\n\tassert.Equal(t, unitsTotal, res.Usage[test.key].Units)\n\tassert.Equal(t, getCost(unitsTotal, product, test.unitPrice), res.Usage[test.key].Cost)\n}\n\nfunc TestClient_IncCustomerUsage(t *testing.T) {\n\ttests := []usageTest{\n\t\t{\"stored_data\", mib, 0.000007705471},\n\t\t{\"network_egress\", mib, 0.000025684903},\n\t\t{\"instance_reads\", 1, 0.000099999999},\n\t\t{\"instance_writes\", 1, 0.000199999999},\n\t}\n\tfor _, tt := range tests {\n\t\tincCustomerUsage(t, tt)\n\t}\n}\n\nfunc incCustomerUsage(t *testing.T, test usageTest) {\n\tc := setup(t)\n\tkey := newKey(t)\n\temail := apitest.NewEmail()\n\tusername := apitest.NewUsername()\n\tid, err := c.CreateCustomer(context.Background(), key, email, username, mdb.Dev)\n\trequire.NoError(t, err)\n\n\tchildKey := newKey(t)\n\t_, err = c.CreateCustomer(\n\t\tcontext.Background(),\n\t\tchildKey,\n\t\tapitest.NewEmail(),\n\t\tapitest.NewUsername(),\n\t\tmdb.User,\n\t\tclient.WithParent(key, email, mdb.Dev),\n\t)\n\trequire.NoError(t, err)\n\n\tproduct := getProduct(t, test.key)\n\tvar inc, sizeTotal, unitsTotal int64\n\n\t// Add some under unit size\n\tinc = test.initialIncSize\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err := c.IncCustomerUsage(context.Background(), key, map[string]int64{test.key: inc})\n\trequire.NoError(t, err)\n\tassert.Equal(t, sizeTotal, res.DailyUsage[test.key].Total)\n\tassert.Equal(t, unitsTotal, res.DailyUsage[test.key].Units)\n\tassert.Equal(t, getCost(unitsTotal, product, test.unitPrice), res.DailyUsage[test.key].Cost)\n\n\t// Add more to reach unit size\n\tinc = product.UnitSize - test.initialIncSize\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err = c.IncCustomerUsage(context.Background(), key, map[string]int64{test.key: inc})\n\trequire.NoError(t, err)\n\tassert.Equal(t, sizeTotal, res.DailyUsage[test.key].Total)\n\tassert.Equal(t, unitsTotal, res.DailyUsage[test.key].Units)\n\tassert.Equal(t, getCost(unitsTotal, product, test.unitPrice), res.DailyUsage[test.key].Cost)\n\n\t// Add a bunch of units above free quota (should error)\n\tinc = product.FreeQuotaSize\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err = c.IncCustomerUsage(context.Background(), key, map[string]int64{test.key: inc})\n\trequire.Error(t, err)\n\n\t// Add some more as a child (should error since parent is above free quota)\n\t// Child should only see their usage, but it should also be accrued on the parent\n\tchildInc := product.UnitSize\n\tchildSizeTotal := childInc\n\tchildUnitsTotal := getUnits(childInc, product)\n\tinc = childInc\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err = c.IncCustomerUsage(context.Background(), childKey, map[string]int64{test.key: childInc})\n\trequire.Error(t, err)\n\n\t// Flag parent as billable to remove the free quota limit\n\terr = c.UpdateCustomer(context.Background(), id, 0, true, false)\n\trequire.NoError(t, err)\n\n\t// Try again\n\tinc = product.FreeQuotaSize\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err = c.IncCustomerUsage(context.Background(), key, map[string]int64{test.key: inc})\n\trequire.NoError(t, err)\n\tassert.Equal(t, sizeTotal, res.DailyUsage[test.key].Total)\n\tassert.Equal(t, unitsTotal, res.DailyUsage[test.key].Units)\n\tassert.Equal(t, getCost(unitsTotal, product, test.unitPrice), res.DailyUsage[test.key].Cost)\n\n\t// Try again as a child\n\tchildInc = product.UnitSize\n\tchildSizeTotal += childInc\n\tchildUnitsTotal += getUnits(childInc, product)\n\tinc = childInc\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err = c.IncCustomerUsage(context.Background(), childKey, map[string]int64{test.key: childInc})\n\trequire.NoError(t, err)\n\tassert.Equal(t, childSizeTotal, res.DailyUsage[test.key].Total)\n\tassert.Equal(t, childUnitsTotal, res.DailyUsage[test.key].Units)\n\tassert.Equal(t, getCost(childUnitsTotal, product, test.unitPrice), res.DailyUsage[test.key].Cost)\n\n\t// Bump child to over _their_ free quota limit, since parent is billing, they should not see an error\n\tchildInc = product.FreeQuotaSize\n\tchildSizeTotal += childInc\n\tchildUnitsTotal += getUnits(childInc, product)\n\tinc = childInc\n\tsizeTotal += inc\n\tunitsTotal += getUnits(inc, product)\n\tres, err = c.IncCustomerUsage(context.Background(), childKey, map[string]int64{test.key: childInc})\n\trequire.NoError(t, err)\n\tassert.Equal(t, childSizeTotal, res.DailyUsage[test.key].Total)\n\tassert.Equal(t, childUnitsTotal, res.DailyUsage[test.key].Units)\n\tassert.Equal(t, getCost(childUnitsTotal, product, test.unitPrice), res.DailyUsage[test.key].Cost)\n\n\t// Check total usage\n\tcus, err := c.GetCustomer(context.Background(), key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, sizeTotal, cus.DailyUsage[test.key].Total)\n\tassert.Equal(t, unitsTotal, cus.DailyUsage[test.key].Units)\n\tassert.Equal(t, getCost(unitsTotal, product, test.unitPrice), cus.DailyUsage[test.key].Cost)\n}\n\nfunc getProduct(t *testing.T, key string) *service.Product {\n\tfor _, p := range service.Products {\n\t\tif p.Key == key {\n\t\t\treturn &p\n\t\t}\n\t}\n\tt.Fatalf(\"could not find product with key %s\", key)\n\treturn nil\n}\n\nfunc getUnits(size int64, product *service.Product) int64 {\n\treturn int64(math.Round(float64(size) / float64(product.UnitSize)))\n}\n\nfunc getCost(units int64, product *service.Product, price float64) float64 {\n\tpaidUnits := units - getUnits(product.FreeQuotaSize, product)\n\tif paidUnits < 0 {\n\t\treturn 0\n\t}\n\treturn float64(paidUnits) * price\n}\n\nfunc setup(t *testing.T) *client.Client {\n\tbconf := apitest.DefaultBillingConfig(t)\n\tbconf.FreeQuotaGracePeriod = 0\n\tbconf.DBURI = test.GetMongoUri()\n\tapitest.MakeBillingWithConfig(t, bconf)\n\n\tbillingApi, err := tutil.TCPAddrFromMultiAddr(bconf.ListenAddr)\n\trequire.NoError(t, err)\n\tc, err := client.NewClient(billingApi, grpc.WithInsecure())\n\trequire.NoError(t, err)\n\n\tt.Cleanup(func() {\n\t\terr := c.Close()\n\t\trequire.NoError(t, err)\n\t})\n\treturn c\n}\n\nfunc newKey(t *testing.T) thread.PubKey {\n\t_, key, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\treturn thread.NewLibp2pPubKey(key)\n}\n"
  },
  {
    "path": "api/billingd/client/options.go",
    "content": "package client\n\nimport (\n\t\"github.com/textileio/go-threads/core/thread\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n)\n\ntype options struct {\n\tparentKey         thread.PubKey\n\tparentEmail       string\n\tparentAccountType mdb.AccountType\n}\n\ntype Option func(*options)\n\n// WithParent is used to create a billing hierarchy between two customers.\nfunc WithParent(key thread.PubKey, email string, accountType mdb.AccountType) Option {\n\treturn func(args *options) {\n\t\targs.parentKey = key\n\t\targs.parentEmail = email\n\t\targs.parentAccountType = accountType\n\t}\n}\n\ntype listOptions struct {\n\toffset int64\n\tlimit  int64\n}\n\ntype ListOption func(*listOptions)\n\n// WithOffset is used to fetch the next page when paginating.\nfunc WithOffset(offset int64) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.offset = offset\n\t}\n}\n\n// WithLimit is used to set a page size when paginating.\nfunc WithLimit(limit int64) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.limit = limit\n\t}\n}\n"
  },
  {
    "path": "api/billingd/common/common.go",
    "content": "package common\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\tstripe \"github.com/stripe/stripe-go/v72\"\n)\n\nvar (\n\t// ErrExceedsFreeQuota indicates the requested operation exceeds the free quota.\n\tErrExceedsFreeQuota = errors.New(\"request exceeds free quota\")\n\n\t// ErrSubscriptionExists indicates the subscription already exists and has a healthy status.\n\tErrSubscriptionExists = errors.New(\"subscription exists\")\n\n\t// ErrSubscriptionCanceled indicates the subscription was canceled by the user or as a result of failed payment.\n\tErrSubscriptionCanceled = errors.New(\"subscription canceled\")\n\n\t// ErrSubscriptionPaymentRequired indicates the subscription is in a terminal status as a result of failed payment.\n\tErrSubscriptionPaymentRequired = errors.New(\"subscription payment required\")\n)\n\n// StatusCheck returns a non-nil error if the subscription status is considered healthy.\nfunc StatusCheck(status string) error {\n\tswitch stripe.SubscriptionStatus(status) {\n\tcase stripe.SubscriptionStatusActive,\n\t\tstripe.SubscriptionStatusIncomplete:\n\t\treturn nil\n\tcase stripe.SubscriptionStatusCanceled:\n\t\treturn ErrSubscriptionCanceled\n\tcase stripe.SubscriptionStatusIncompleteExpired,\n\t\tstripe.SubscriptionStatusPastDue,\n\t\tstripe.SubscriptionStatusUnpaid:\n\t\treturn ErrSubscriptionPaymentRequired\n\tdefault:\n\t\treturn fmt.Errorf(\"unhandled subscription status: %s\", status)\n\t}\n}\n"
  },
  {
    "path": "api/billingd/gateway/gateway.go",
    "content": "package gateway\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/gin-contrib/pprof\"\n\t\"github.com/gin-gonic/gin\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\tstripe \"github.com/stripe/stripe-go/v72\"\n\t\"github.com/stripe/stripe-go/v72/webhook\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\tbilling \"github.com/textileio/textile/v2/api/billingd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"google.golang.org/grpc\"\n)\n\nvar log = logging.Logger(\"billing.gateway\")\n\nconst handlerTimeout = time.Minute\n\nfunc init() {\n\tgin.SetMode(gin.ReleaseMode)\n}\n\n// Gateway provides an endpoint for Stripe webhooks.\ntype Gateway struct {\n\taddr                ma.Multiaddr\n\tserver              *http.Server\n\tclient              *billing.Client\n\tstripeWebhookSecret string\n}\n\n// Config defines the gateway configuration.\ntype Config struct {\n\tAddr                ma.Multiaddr\n\tAPIAddr             ma.Multiaddr\n\tStripeWebhookSecret string\n\tSegmentAPIKey       string\n\tDebug               bool\n}\n\n// NewGateway returns a new gateway.\nfunc NewGateway(conf Config) (*Gateway, error) {\n\tif conf.Debug {\n\t\tif err := tutil.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"billing.gateway\": logging.LevelDebug,\n\t\t\t\"billing.client\":  logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tapiTarget, err := tutil.TCPAddrFromMultiAddr(conf.APIAddr)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tclient, err := billing.NewClient(\n\t\tapiTarget,\n\t\tgrpc.WithInsecure(),\n\t\tgrpc.WithPerRPCCredentials(common.Credentials{}),\n\t)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Gateway{\n\t\taddr:                conf.Addr,\n\t\tclient:              client,\n\t\tstripeWebhookSecret: conf.StripeWebhookSecret,\n\t}, nil\n}\n\n// Start the gateway.\nfunc (g *Gateway) Start() {\n\taddr, err := tutil.TCPAddrFromMultiAddr(g.addr)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\trouter := gin.Default()\n\tpprof.Register(router)\n\trouter.GET(\"/health\", func(c *gin.Context) {\n\t\tc.Writer.WriteHeader(http.StatusOK)\n\t})\n\trouter.POST(\"/webhooks\", g.webhookHandler)\n\n\tg.server = &http.Server{\n\t\tAddr:    addr,\n\t\tHandler: router,\n\t}\n\tgo func() {\n\t\tif err := g.server.ListenAndServe(); err != nil && err != http.ErrServerClosed {\n\t\t\tlog.Fatalf(\"gateway error: %s\", err)\n\t\t}\n\t\tlog.Info(\"gateway was shutdown\")\n\t}()\n\tlog.Infof(\"gateway listening at %s\", g.server.Addr)\n}\n\n// Addr returns the gateway's address.\nfunc (g *Gateway) Addr() string {\n\treturn g.server.Addr\n}\n\n// Stop the gateway.\nfunc (g *Gateway) Stop() error {\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second)\n\tdefer cancel()\n\tif err := g.server.Shutdown(ctx); err != nil {\n\t\treturn err\n\t}\n\tif err := g.client.Close(); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nconst webhookMaxBodyBytes = int64(65536) // 64 KiB\n\n// webhookHandler handles stripe webhook events\nfunc (g *Gateway) webhookHandler(c *gin.Context) {\n\tc.Request.Body = http.MaxBytesReader(c.Writer, c.Request.Body, webhookMaxBodyBytes)\n\tpayload, err := ioutil.ReadAll(c.Request.Body)\n\tif err != nil {\n\t\tlog.Errorf(\"reading request body: %v\", err)\n\t\tc.Status(http.StatusBadRequest)\n\t\treturn\n\t}\n\n\tevent := stripe.Event{}\n\tif g.stripeWebhookSecret != \"\" {\n\t\tevent, err = webhook.ConstructEvent(payload, c.Request.Header.Get(\"Stripe-Signature\"), g.stripeWebhookSecret)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"verifying webhook signature: %v\", err)\n\t\t\tc.Status(http.StatusBadRequest)\n\t\t\treturn\n\t\t}\n\t}\n\n\tlog.Debugf(\"received event type: %s\", event.Type)\n\tswitch event.Type {\n\tcase \"customer.updated\":\n\t\tvar cus stripe.Customer\n\t\tif err := json.Unmarshal(event.Data.Raw, &cus); err != nil {\n\t\t\tlog.Errorf(\"parsing webhook JSON: %v\", err)\n\t\t\tc.Status(http.StatusBadRequest)\n\t\t\treturn\n\t\t}\n\t\tvar billable bool\n\t\tif !cus.Deleted {\n\t\t\tif cus.InvoiceSettings.DefaultPaymentMethod != nil {\n\t\t\t\tbillable = true\n\t\t\t} else if cus.DefaultSource != nil && !cus.DefaultSource.Deleted {\n\t\t\t\tbillable = true\n\t\t\t}\n\t\t}\n\t\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\t\tdefer cancel()\n\t\tif err := g.client.UpdateCustomer(ctx, cus.ID, cus.Balance, billable, cus.Delinquent); err != nil {\n\t\t\t// This webhook receives events from all deployments (production and staging),\n\t\t\t// which leads to a lot of \"customer not found\" errors.\n\t\t\t// To avoid this, we'll need a Stripe account for each deployment.\n\t\t\t// See https://github.com/textileio/textile/issues/523.\n\t\t\tif !strings.Contains(err.Error(), mongo.ErrNoDocuments.Error()) {\n\t\t\t\tlog.Errorf(\"updating customer: %v\", err)\n\t\t\t}\n\t\t\tc.Status(http.StatusOK)\n\t\t\treturn\n\t\t}\n\t\tlog.Debugf(\"%s was updated\", cus.ID)\n\tcase \"customer.deleted\":\n\t\t// @todo: Does this need to be handled?\n\tcase \"customer.subscription.updated\",\n\t\t\"customer.subscription.deleted\":\n\t\tvar sub stripe.Subscription\n\t\terr := json.Unmarshal(event.Data.Raw, &sub)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"parsing webhook JSON: %v\", err)\n\t\t\tc.Status(http.StatusBadRequest)\n\t\t\treturn\n\t\t}\n\t\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\t\tdefer cancel()\n\t\tif err := g.client.UpdateCustomerSubscription(\n\t\t\tctx,\n\t\t\tsub.Customer.ID,\n\t\t\tsub.Status,\n\t\t\tsub.CurrentPeriodStart,\n\t\t\tsub.CurrentPeriodEnd,\n\t\t); err != nil {\n\t\t\t// This webhook receives events from all deployments (production and staging),\n\t\t\t// which leads to a lot of \"customer not found\" errors.\n\t\t\t// To avoid this, we'll need a Stripe account for each deployment.\n\t\t\t// See https://github.com/textileio/textile/issues/523.\n\t\t\tif !strings.Contains(err.Error(), mongo.ErrNoDocuments.Error()) {\n\t\t\t\tlog.Errorf(\"updating customer subscription: %v\", err)\n\t\t\t}\n\t\t\tc.Status(http.StatusOK)\n\t\t\treturn\n\t\t}\n\t\tlog.Debugf(\"%s subscription was updated\", sub.ID)\n\t}\n\n\tc.Status(http.StatusOK)\n}\n"
  },
  {
    "path": "api/billingd/main.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n\t\"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/billingd/service\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nconst daemonName = \"billingd\"\n\nvar (\n\tlog = logging.Logger(daemonName)\n\n\tconfig = &cmd.Config{\n\t\tViper: viper.New(),\n\t\tDir:   \".\" + daemonName,\n\t\tName:  \"config\",\n\t\tFlags: map[string]cmd.Flag{\n\t\t\t\"debug\": {\n\t\t\t\tKey:      \"log.debug\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"logFile\": {\n\t\t\t\tKey:      \"log.file\",\n\t\t\t\tDefValue: \"\", // no log file\n\t\t\t},\n\t\t\t\"addrApi\": {\n\t\t\t\tKey:      \"addr.api\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/10006\",\n\t\t\t},\n\t\t\t\"addrMongoUri\": {\n\t\t\t\tKey:      \"addr.mongo_uri\",\n\t\t\t\tDefValue: \"mongodb://127.0.0.1:27017\",\n\t\t\t},\n\t\t\t\"addrMongoName\": {\n\t\t\t\tKey:      \"addr.mongo_name\",\n\t\t\t\tDefValue: \"textile_billing\",\n\t\t\t},\n\t\t\t\"addrGatewayHost\": {\n\t\t\t\tKey:      \"addr.gateway.host\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/8010\",\n\t\t\t},\n\t\t\t\"stripeApiUrl\": {\n\t\t\t\tKey:      \"stripe.api_url\",\n\t\t\t\tDefValue: \"https://api.stripe.com\",\n\t\t\t},\n\t\t\t\"stripeApiKey\": {\n\t\t\t\tKey:      \"stripe.api_key\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"stripeSessionReturnUrl\": {\n\t\t\t\tKey:      \"stripe.session_return_url\",\n\t\t\t\tDefValue: \"http://127.0.0.1:8006/dashboard\",\n\t\t\t},\n\t\t\t\"stripeWebhookSecret\": {\n\t\t\t\tKey:      \"stripe.webhook_secret\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"segmentApiKey\": {\n\t\t\t\tKey:      \"segment.api_key\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"segmentPrefix\": {\n\t\t\t\tKey:      \"segment.prefix\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"freeQuotaGracePeriod\": {\n\t\t\t\tKey:      \"free_quota_grace_period\",\n\t\t\t\tDefValue: time.Hour * 24 * 7,\n\t\t\t},\n\t\t},\n\t\tEnvPre: \"BILLING\",\n\t\tGlobal: true,\n\t}\n)\n\nfunc init() {\n\tcobra.OnInitialize(cmd.InitConfig(config))\n\tcmd.InitConfigCmd(rootCmd, config.Viper, config.Dir)\n\n\trootCmd.PersistentFlags().StringVar(\n\t\t&config.File,\n\t\t\"config\",\n\t\t\"\",\n\t\t\"Config file (default ${HOME}/\"+config.Dir+\"/\"+config.Name+\".yml)\")\n\trootCmd.PersistentFlags().BoolP(\n\t\t\"debug\",\n\t\t\"d\",\n\t\tconfig.Flags[\"debug\"].DefValue.(bool),\n\t\t\"Enable debug logging\")\n\trootCmd.PersistentFlags().String(\n\t\t\"logFile\",\n\t\tconfig.Flags[\"logFile\"].DefValue.(string),\n\t\t\"Write logs to file\")\n\n\t// Address settings\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApi\",\n\t\tconfig.Flags[\"addrApi\"].DefValue.(string),\n\t\t\"Hub API listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoUri\",\n\t\tconfig.Flags[\"addrMongoUri\"].DefValue.(string),\n\t\t\"MongoDB connection URI\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoName\",\n\t\tconfig.Flags[\"addrMongoName\"].DefValue.(string),\n\t\t\"MongoDB database name\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrGatewayHost\",\n\t\tconfig.Flags[\"addrGatewayHost\"].DefValue.(string),\n\t\t\"Local gateway host address\")\n\n\t// Stripe settings\n\trootCmd.PersistentFlags().String(\n\t\t\"stripeApiUrl\",\n\t\tconfig.Flags[\"stripeApiUrl\"].DefValue.(string),\n\t\t\"Stripe API URL\")\n\trootCmd.PersistentFlags().String(\n\t\t\"stripeApiKey\",\n\t\tconfig.Flags[\"stripeApiKey\"].DefValue.(string),\n\t\t\"Stripe API secret key\")\n\trootCmd.PersistentFlags().String(\n\t\t\"stripeSessionReturnUrl\",\n\t\tconfig.Flags[\"stripeSessionReturnUrl\"].DefValue.(string),\n\t\t\"Stripe portal session return URL\")\n\trootCmd.PersistentFlags().String(\n\t\t\"stripeWebhookSecret\",\n\t\tconfig.Flags[\"stripeWebhookSecret\"].DefValue.(string),\n\t\t\"Stripe webhook endpoint secret\")\n\n\trootCmd.PersistentFlags().Duration(\n\t\t\"freeQuotaGracePeriod\",\n\t\tconfig.Flags[\"freeQuotaGracePeriod\"].DefValue.(time.Duration),\n\t\t\"Grace period before blocking usage after free quota is exhausted\")\n\n\t// Segment settings\n\trootCmd.PersistentFlags().String(\n\t\t\"segmentApiKey\",\n\t\tconfig.Flags[\"segmentApiKey\"].DefValue.(string),\n\t\t\"Segment API key\")\n\trootCmd.PersistentFlags().String(\n\t\t\"segmentPrefix\",\n\t\tconfig.Flags[\"segmentPrefix\"].DefValue.(string),\n\t\t\"Segment trait source prefix\")\n\n\terr := cmd.BindFlags(config.Viper, rootCmd, config.Flags)\n\tcmd.ErrCheck(err)\n}\n\nfunc main() {\n\tcmd.ErrCheck(rootCmd.Execute())\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   daemonName,\n\tShort: \"Billing daemon\",\n\tLong:  `Textile's billing daemon.`,\n\tPersistentPreRun: func(c *cobra.Command, args []string) {\n\t\tconfig.Viper.SetConfigType(\"yaml\")\n\t\tcmd.ExpandConfigVars(config.Viper, config.Flags)\n\n\t\tif config.Viper.GetBool(\"log.debug\") {\n\t\t\terr := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\tdaemonName: logging.LevelDebug,\n\t\t\t})\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\t},\n\tRun: func(c *cobra.Command, args []string) {\n\t\tsettings, err := json.MarshalIndent(config.Viper.AllSettings(), \"\", \"  \")\n\t\tcmd.ErrCheck(err)\n\t\tlog.Debugf(\"loaded config: %s\", string(settings))\n\n\t\taddrApi := cmd.AddrFromStr(config.Viper.GetString(\"addr.api\"))\n\t\taddrMongoUri := config.Viper.GetString(\"addr.mongo_uri\")\n\t\taddrMongoName := config.Viper.GetString(\"addr.mongo_name\")\n\n\t\taddrGatewayHost := cmd.AddrFromStr(config.Viper.GetString(\"addr.gateway.host\"))\n\n\t\tstripeApiUrl := config.Viper.GetString(\"stripe.api_url\")\n\t\tstripeApiKey := config.Viper.GetString(\"stripe.api_key\")\n\t\tstripeSessionReturnUrl := config.Viper.GetString(\"stripe.session_return_url\")\n\t\tstripeWebhookSecret := config.Viper.GetString(\"stripe.webhook_secret\")\n\n\t\tfreeQuotaGracePeriod := config.Viper.GetDuration(\"free_quota_grace_period\")\n\n\t\tsegmentApiKey := config.Viper.GetString(\"segment.api_key\")\n\t\tsegmentPrefix := config.Viper.GetString(\"segment.prefix\")\n\n\t\tlogFile := config.Viper.GetString(\"log.file\")\n\t\terr = cmd.SetupDefaultLoggingConfig(logFile)\n\t\tcmd.ErrCheck(err)\n\n\t\tctx, cancel := context.WithCancel(context.Background())\n\t\tdefer cancel()\n\t\tapi, err := service.NewService(ctx, service.Config{\n\t\t\tListenAddr:             addrApi,\n\t\t\tStripeAPIURL:           stripeApiUrl,\n\t\t\tStripeAPIKey:           stripeApiKey,\n\t\t\tStripeSessionReturnURL: stripeSessionReturnUrl,\n\t\t\tStripeWebhookSecret:    stripeWebhookSecret,\n\t\t\tSegmentAPIKey:          segmentApiKey,\n\t\t\tSegmentPrefix:          segmentPrefix,\n\t\t\tDBURI:                  addrMongoUri,\n\t\t\tDBName:                 addrMongoName,\n\t\t\tGatewayHostAddr:        addrGatewayHost,\n\t\t\tFreeQuotaGracePeriod:   freeQuotaGracePeriod,\n\t\t\tDebug:                  config.Viper.GetBool(\"log.debug\"),\n\t\t})\n\t\tcmd.ErrCheck(err)\n\n\t\terr = api.Start()\n\t\tcmd.ErrCheck(err)\n\n\t\tfmt.Println(\"Welcome to Hub Billing!\")\n\n\t\tcmd.HandleInterrupt(func() {\n\t\t\tif err := api.Stop(); err != nil {\n\t\t\t\tfmt.Println(err.Error())\n\t\t\t}\n\t\t})\n\t},\n}\n"
  },
  {
    "path": "api/billingd/migrations/migrations.go",
    "content": "package migrations\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tmigrate \"github.com/xakep666/mongo-migrate\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nvar (\n\tlog            = logging.Logger(\"migrations\")\n\tmigrateTimeout = time.Hour\n)\n\nvar m001 = migrate.Migration{\n\tVersion:     1,\n\tDescription: \"make customer_id index sparse\",\n\tUp: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 001 up\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tcount, err := db.Collection(\"customers\").CountDocuments(ctx, bson.M{})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif count == 0 {\n\t\t\treturn nil // namespace doesn't exist\n\t\t}\n\t\t_, err = db.Collection(\"customers\").Indexes().DropOne(ctx, \"customer_id_1\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = db.Collection(\"customers\").Indexes().CreateOne(ctx, mongo.IndexModel{\n\t\t\tKeys:    bson.D{{\"customer_id\", 1}},\n\t\t\tOptions: options.Index().SetUnique(true).SetSparse(true),\n\t\t})\n\t\treturn err\n\t},\n\tDown: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 001 down\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tcount, err := db.Collection(\"customers\").CountDocuments(ctx, bson.M{})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif count == 0 {\n\t\t\treturn nil // namespace doesn't exist\n\t\t}\n\t\t_, err = db.Collection(\"customers\").Indexes().DropOne(ctx, \"customer_id_1\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = db.Collection(\"customers\").Indexes().CreateOne(ctx, mongo.IndexModel{\n\t\t\tKeys:    bson.D{{\"customer_id\", 1}},\n\t\t\tOptions: options.Index().SetUnique(true),\n\t\t})\n\t\treturn err\n\t},\n}\n\nfunc Migrate(db *mongo.Database) error {\n\tm := migrate.NewMigrate(\n\t\tdb,\n\t\tm001,\n\t)\n\treturn m.Up(migrate.AllAvailable)\n}\n"
  },
  {
    "path": "api/billingd/migrations/migrations_test.go",
    "content": "package migrations\n\nimport (\n\t\"context\"\n\t\"os\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-ds-mongo/test\"\n\tmigrate \"github.com/xakep666/mongo-migrate\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = test.StartMongoDB()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\n// Test make customer_id index sparse\nfunc TestMigrations_m001(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\t// Preload collection\n\t_, err := db.Collection(\"customers\").Indexes().CreateOne(ctx, mongo.IndexModel{\n\t\tKeys:    bson.D{{\"customer_id\", 1}},\n\t\tOptions: options.Index().SetUnique(true),\n\t})\n\trequire.NoError(t, err)\n\t_, err = db.Collection(\"customers\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\"customer_id\": \"one\"},\n\t\tbson.M{\"customer_id\": \"two\"},\n\t\tbson.M{\"customer_id\": \"three\"},\n\t})\n\trequire.NoError(t, err)\n\n\t// Test that nil customer_id causes duplicate key error\n\tdocs := []interface{}{\n\t\tbson.M{\"foo\": 1}, // nil customer_id\n\t\tbson.M{\"bar\": 1}, // nil customer_id\n\t}\n\t_, err = db.Collection(\"customers\").InsertMany(ctx, docs)\n\trequire.Error(t, err) // Duplicate key error\n\n\t// Run up\n\terr = migrate.NewMigrate(db, m001).Up(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\t// No duplicate key error this time\n\t_, err = db.Collection(\"customers\").InsertMany(ctx, docs)\n\trequire.NoError(t, err)\n\n\t// Clean up\n\t_, err = db.Collection(\"customers\").DeleteMany(ctx, bson.M{})\n\trequire.NoError(t, err)\n\n\t// Run down\n\terr = migrate.NewMigrate(db, m001).Down(migrate.AllAvailable)\n\trequire.NoError(t, err)\n}\n\nfunc setup(t *testing.T, ctx context.Context) *mongo.Database {\n\tclient, err := mongo.Connect(ctx, options.Client().ApplyURI(test.GetMongoUri()))\n\trequire.NoError(t, err)\n\tdb := client.Database(\"test_billing_migrations\")\n\tt.Cleanup(func() {\n\t\terr := db.Drop(ctx)\n\t\trequire.NoError(t, err)\n\t})\n\treturn db\n}\n"
  },
  {
    "path": "api/billingd/pb/billingd.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.23.0\n// \tprotoc        v3.13.0\n// source: api/billingd/pb/billingd.proto\n\npackage pb\n\nimport (\n\tcontext \"context\"\n\tproto \"github.com/golang/protobuf/proto\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\n// This is a compile-time assertion that a sufficiently up-to-date version\n// of the legacy proto package is being used.\nconst _ = proto.ProtoPackageIsVersion4\n\ntype Period struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUnixStart int64 `protobuf:\"varint,1,opt,name=unix_start,json=unixStart,proto3\" json:\"unix_start,omitempty\"`\n\tUnixEnd   int64 `protobuf:\"varint,2,opt,name=unix_end,json=unixEnd,proto3\" json:\"unix_end,omitempty\"`\n}\n\nfunc (x *Period) Reset() {\n\t*x = Period{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Period) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Period) ProtoMessage() {}\n\nfunc (x *Period) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Period.ProtoReflect.Descriptor instead.\nfunc (*Period) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *Period) GetUnixStart() int64 {\n\tif x != nil {\n\t\treturn x.UnixStart\n\t}\n\treturn 0\n}\n\nfunc (x *Period) GetUnixEnd() int64 {\n\tif x != nil {\n\t\treturn x.UnixEnd\n\t}\n\treturn 0\n}\n\ntype Usage struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tDescription string  `protobuf:\"bytes,1,opt,name=description,proto3\" json:\"description,omitempty\"`\n\tUnits       int64   `protobuf:\"varint,2,opt,name=units,proto3\" json:\"units,omitempty\"`\n\tTotal       int64   `protobuf:\"varint,3,opt,name=total,proto3\" json:\"total,omitempty\"`\n\tFree        int64   `protobuf:\"varint,4,opt,name=free,proto3\" json:\"free,omitempty\"`\n\tGrace       int64   `protobuf:\"varint,5,opt,name=grace,proto3\" json:\"grace,omitempty\"`\n\tCost        float64 `protobuf:\"fixed64,6,opt,name=cost,proto3\" json:\"cost,omitempty\"`\n\tPeriod      *Period `protobuf:\"bytes,7,opt,name=period,proto3\" json:\"period,omitempty\"`\n}\n\nfunc (x *Usage) Reset() {\n\t*x = Usage{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Usage) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Usage) ProtoMessage() {}\n\nfunc (x *Usage) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Usage.ProtoReflect.Descriptor instead.\nfunc (*Usage) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *Usage) GetDescription() string {\n\tif x != nil {\n\t\treturn x.Description\n\t}\n\treturn \"\"\n}\n\nfunc (x *Usage) GetUnits() int64 {\n\tif x != nil {\n\t\treturn x.Units\n\t}\n\treturn 0\n}\n\nfunc (x *Usage) GetTotal() int64 {\n\tif x != nil {\n\t\treturn x.Total\n\t}\n\treturn 0\n}\n\nfunc (x *Usage) GetFree() int64 {\n\tif x != nil {\n\t\treturn x.Free\n\t}\n\treturn 0\n}\n\nfunc (x *Usage) GetGrace() int64 {\n\tif x != nil {\n\t\treturn x.Grace\n\t}\n\treturn 0\n}\n\nfunc (x *Usage) GetCost() float64 {\n\tif x != nil {\n\t\treturn x.Cost\n\t}\n\treturn 0\n}\n\nfunc (x *Usage) GetPeriod() *Period {\n\tif x != nil {\n\t\treturn x.Period\n\t}\n\treturn nil\n}\n\ntype CheckHealthRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *CheckHealthRequest) Reset() {\n\t*x = CheckHealthRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CheckHealthRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CheckHealthRequest) ProtoMessage() {}\n\nfunc (x *CheckHealthRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CheckHealthRequest.ProtoReflect.Descriptor instead.\nfunc (*CheckHealthRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{2}\n}\n\ntype CheckHealthResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *CheckHealthResponse) Reset() {\n\t*x = CheckHealthResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CheckHealthResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CheckHealthResponse) ProtoMessage() {}\n\nfunc (x *CheckHealthResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CheckHealthResponse.ProtoReflect.Descriptor instead.\nfunc (*CheckHealthResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{3}\n}\n\ntype CreateCustomerRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCustomer *CreateCustomerRequest_Params `protobuf:\"bytes,1,opt,name=customer,proto3\" json:\"customer,omitempty\"`\n\tParent   *CreateCustomerRequest_Params `protobuf:\"bytes,2,opt,name=parent,proto3\" json:\"parent,omitempty\"`\n}\n\nfunc (x *CreateCustomerRequest) Reset() {\n\t*x = CreateCustomerRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateCustomerRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateCustomerRequest) ProtoMessage() {}\n\nfunc (x *CreateCustomerRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateCustomerRequest.ProtoReflect.Descriptor instead.\nfunc (*CreateCustomerRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *CreateCustomerRequest) GetCustomer() *CreateCustomerRequest_Params {\n\tif x != nil {\n\t\treturn x.Customer\n\t}\n\treturn nil\n}\n\nfunc (x *CreateCustomerRequest) GetParent() *CreateCustomerRequest_Params {\n\tif x != nil {\n\t\treturn x.Parent\n\t}\n\treturn nil\n}\n\ntype CreateCustomerResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCustomerId string `protobuf:\"bytes,1,opt,name=customer_id,json=customerId,proto3\" json:\"customer_id,omitempty\"`\n}\n\nfunc (x *CreateCustomerResponse) Reset() {\n\t*x = CreateCustomerResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateCustomerResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateCustomerResponse) ProtoMessage() {}\n\nfunc (x *CreateCustomerResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateCustomerResponse.ProtoReflect.Descriptor instead.\nfunc (*CreateCustomerResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *CreateCustomerResponse) GetCustomerId() string {\n\tif x != nil {\n\t\treturn x.CustomerId\n\t}\n\treturn \"\"\n}\n\ntype GetCustomerRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *GetCustomerRequest) Reset() {\n\t*x = GetCustomerRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetCustomerRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetCustomerRequest) ProtoMessage() {}\n\nfunc (x *GetCustomerRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetCustomerRequest.ProtoReflect.Descriptor instead.\nfunc (*GetCustomerRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *GetCustomerRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype GetCustomerResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey                string            `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tCustomerId         string            `protobuf:\"bytes,2,opt,name=customer_id,json=customerId,proto3\" json:\"customer_id,omitempty\"`\n\tParentKey          string            `protobuf:\"bytes,3,opt,name=parent_key,json=parentKey,proto3\" json:\"parent_key,omitempty\"`\n\tEmail              string            `protobuf:\"bytes,4,opt,name=email,proto3\" json:\"email,omitempty\"`\n\tAccountType        int32             `protobuf:\"varint,5,opt,name=account_type,json=accountType,proto3\" json:\"account_type,omitempty\"`\n\tAccountStatus      string            `protobuf:\"bytes,6,opt,name=account_status,json=accountStatus,proto3\" json:\"account_status,omitempty\"`\n\tSubscriptionStatus string            `protobuf:\"bytes,7,opt,name=subscription_status,json=subscriptionStatus,proto3\" json:\"subscription_status,omitempty\"`\n\tBalance            int64             `protobuf:\"varint,8,opt,name=balance,proto3\" json:\"balance,omitempty\"`\n\tBillable           bool              `protobuf:\"varint,9,opt,name=billable,proto3\" json:\"billable,omitempty\"`\n\tDelinquent         bool              `protobuf:\"varint,10,opt,name=delinquent,proto3\" json:\"delinquent,omitempty\"`\n\tCreatedAt          int64             `protobuf:\"varint,11,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n\tGracePeriodEnd     int64             `protobuf:\"varint,12,opt,name=grace_period_end,json=gracePeriodEnd,proto3\" json:\"grace_period_end,omitempty\"`\n\tInvoicePeriod      *Period           `protobuf:\"bytes,13,opt,name=invoice_period,json=invoicePeriod,proto3\" json:\"invoice_period,omitempty\"`\n\tDailyUsage         map[string]*Usage `protobuf:\"bytes,14,rep,name=daily_usage,json=dailyUsage,proto3\" json:\"daily_usage,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tDependents         int64             `protobuf:\"varint,15,opt,name=dependents,proto3\" json:\"dependents,omitempty\"`\n}\n\nfunc (x *GetCustomerResponse) Reset() {\n\t*x = GetCustomerResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetCustomerResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetCustomerResponse) ProtoMessage() {}\n\nfunc (x *GetCustomerResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetCustomerResponse.ProtoReflect.Descriptor instead.\nfunc (*GetCustomerResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{7}\n}\n\nfunc (x *GetCustomerResponse) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetCustomerResponse) GetCustomerId() string {\n\tif x != nil {\n\t\treturn x.CustomerId\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetCustomerResponse) GetParentKey() string {\n\tif x != nil {\n\t\treturn x.ParentKey\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetCustomerResponse) GetEmail() string {\n\tif x != nil {\n\t\treturn x.Email\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetCustomerResponse) GetAccountType() int32 {\n\tif x != nil {\n\t\treturn x.AccountType\n\t}\n\treturn 0\n}\n\nfunc (x *GetCustomerResponse) GetAccountStatus() string {\n\tif x != nil {\n\t\treturn x.AccountStatus\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetCustomerResponse) GetSubscriptionStatus() string {\n\tif x != nil {\n\t\treturn x.SubscriptionStatus\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetCustomerResponse) GetBalance() int64 {\n\tif x != nil {\n\t\treturn x.Balance\n\t}\n\treturn 0\n}\n\nfunc (x *GetCustomerResponse) GetBillable() bool {\n\tif x != nil {\n\t\treturn x.Billable\n\t}\n\treturn false\n}\n\nfunc (x *GetCustomerResponse) GetDelinquent() bool {\n\tif x != nil {\n\t\treturn x.Delinquent\n\t}\n\treturn false\n}\n\nfunc (x *GetCustomerResponse) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\nfunc (x *GetCustomerResponse) GetGracePeriodEnd() int64 {\n\tif x != nil {\n\t\treturn x.GracePeriodEnd\n\t}\n\treturn 0\n}\n\nfunc (x *GetCustomerResponse) GetInvoicePeriod() *Period {\n\tif x != nil {\n\t\treturn x.InvoicePeriod\n\t}\n\treturn nil\n}\n\nfunc (x *GetCustomerResponse) GetDailyUsage() map[string]*Usage {\n\tif x != nil {\n\t\treturn x.DailyUsage\n\t}\n\treturn nil\n}\n\nfunc (x *GetCustomerResponse) GetDependents() int64 {\n\tif x != nil {\n\t\treturn x.Dependents\n\t}\n\treturn 0\n}\n\ntype ListDependentCustomersRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey    string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tOffset int64  `protobuf:\"varint,2,opt,name=offset,proto3\" json:\"offset,omitempty\"`\n\tLimit  int64  `protobuf:\"varint,3,opt,name=limit,proto3\" json:\"limit,omitempty\"`\n}\n\nfunc (x *ListDependentCustomersRequest) Reset() {\n\t*x = ListDependentCustomersRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListDependentCustomersRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListDependentCustomersRequest) ProtoMessage() {}\n\nfunc (x *ListDependentCustomersRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListDependentCustomersRequest.ProtoReflect.Descriptor instead.\nfunc (*ListDependentCustomersRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{8}\n}\n\nfunc (x *ListDependentCustomersRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *ListDependentCustomersRequest) GetOffset() int64 {\n\tif x != nil {\n\t\treturn x.Offset\n\t}\n\treturn 0\n}\n\nfunc (x *ListDependentCustomersRequest) GetLimit() int64 {\n\tif x != nil {\n\t\treturn x.Limit\n\t}\n\treturn 0\n}\n\ntype ListDependentCustomersResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCustomers  []*GetCustomerResponse `protobuf:\"bytes,1,rep,name=customers,proto3\" json:\"customers,omitempty\"`\n\tNextOffset int64                  `protobuf:\"varint,2,opt,name=next_offset,json=nextOffset,proto3\" json:\"next_offset,omitempty\"`\n}\n\nfunc (x *ListDependentCustomersResponse) Reset() {\n\t*x = ListDependentCustomersResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListDependentCustomersResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListDependentCustomersResponse) ProtoMessage() {}\n\nfunc (x *ListDependentCustomersResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListDependentCustomersResponse.ProtoReflect.Descriptor instead.\nfunc (*ListDependentCustomersResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *ListDependentCustomersResponse) GetCustomers() []*GetCustomerResponse {\n\tif x != nil {\n\t\treturn x.Customers\n\t}\n\treturn nil\n}\n\nfunc (x *ListDependentCustomersResponse) GetNextOffset() int64 {\n\tif x != nil {\n\t\treturn x.NextOffset\n\t}\n\treturn 0\n}\n\ntype GetCustomerSessionRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *GetCustomerSessionRequest) Reset() {\n\t*x = GetCustomerSessionRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetCustomerSessionRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetCustomerSessionRequest) ProtoMessage() {}\n\nfunc (x *GetCustomerSessionRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetCustomerSessionRequest.ProtoReflect.Descriptor instead.\nfunc (*GetCustomerSessionRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{10}\n}\n\nfunc (x *GetCustomerSessionRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype GetCustomerSessionResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUrl string `protobuf:\"bytes,1,opt,name=url,proto3\" json:\"url,omitempty\"`\n}\n\nfunc (x *GetCustomerSessionResponse) Reset() {\n\t*x = GetCustomerSessionResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetCustomerSessionResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetCustomerSessionResponse) ProtoMessage() {}\n\nfunc (x *GetCustomerSessionResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetCustomerSessionResponse.ProtoReflect.Descriptor instead.\nfunc (*GetCustomerSessionResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *GetCustomerSessionResponse) GetUrl() string {\n\tif x != nil {\n\t\treturn x.Url\n\t}\n\treturn \"\"\n}\n\ntype UpdateCustomerRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCustomerId string `protobuf:\"bytes,1,opt,name=customer_id,json=customerId,proto3\" json:\"customer_id,omitempty\"`\n\tBalance    int64  `protobuf:\"varint,2,opt,name=balance,proto3\" json:\"balance,omitempty\"`\n\tBillable   bool   `protobuf:\"varint,3,opt,name=billable,proto3\" json:\"billable,omitempty\"`\n\tDelinquent bool   `protobuf:\"varint,4,opt,name=delinquent,proto3\" json:\"delinquent,omitempty\"`\n}\n\nfunc (x *UpdateCustomerRequest) Reset() {\n\t*x = UpdateCustomerRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *UpdateCustomerRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*UpdateCustomerRequest) ProtoMessage() {}\n\nfunc (x *UpdateCustomerRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use UpdateCustomerRequest.ProtoReflect.Descriptor instead.\nfunc (*UpdateCustomerRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{12}\n}\n\nfunc (x *UpdateCustomerRequest) GetCustomerId() string {\n\tif x != nil {\n\t\treturn x.CustomerId\n\t}\n\treturn \"\"\n}\n\nfunc (x *UpdateCustomerRequest) GetBalance() int64 {\n\tif x != nil {\n\t\treturn x.Balance\n\t}\n\treturn 0\n}\n\nfunc (x *UpdateCustomerRequest) GetBillable() bool {\n\tif x != nil {\n\t\treturn x.Billable\n\t}\n\treturn false\n}\n\nfunc (x *UpdateCustomerRequest) GetDelinquent() bool {\n\tif x != nil {\n\t\treturn x.Delinquent\n\t}\n\treturn false\n}\n\ntype UpdateCustomerResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *UpdateCustomerResponse) Reset() {\n\t*x = UpdateCustomerResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *UpdateCustomerResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*UpdateCustomerResponse) ProtoMessage() {}\n\nfunc (x *UpdateCustomerResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use UpdateCustomerResponse.ProtoReflect.Descriptor instead.\nfunc (*UpdateCustomerResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{13}\n}\n\ntype UpdateCustomerSubscriptionRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCustomerId    string  `protobuf:\"bytes,1,opt,name=customer_id,json=customerId,proto3\" json:\"customer_id,omitempty\"`\n\tStatus        string  `protobuf:\"bytes,2,opt,name=status,proto3\" json:\"status,omitempty\"`\n\tInvoicePeriod *Period `protobuf:\"bytes,3,opt,name=invoice_period,json=invoicePeriod,proto3\" json:\"invoice_period,omitempty\"`\n}\n\nfunc (x *UpdateCustomerSubscriptionRequest) Reset() {\n\t*x = UpdateCustomerSubscriptionRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[14]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *UpdateCustomerSubscriptionRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*UpdateCustomerSubscriptionRequest) ProtoMessage() {}\n\nfunc (x *UpdateCustomerSubscriptionRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[14]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use UpdateCustomerSubscriptionRequest.ProtoReflect.Descriptor instead.\nfunc (*UpdateCustomerSubscriptionRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{14}\n}\n\nfunc (x *UpdateCustomerSubscriptionRequest) GetCustomerId() string {\n\tif x != nil {\n\t\treturn x.CustomerId\n\t}\n\treturn \"\"\n}\n\nfunc (x *UpdateCustomerSubscriptionRequest) GetStatus() string {\n\tif x != nil {\n\t\treturn x.Status\n\t}\n\treturn \"\"\n}\n\nfunc (x *UpdateCustomerSubscriptionRequest) GetInvoicePeriod() *Period {\n\tif x != nil {\n\t\treturn x.InvoicePeriod\n\t}\n\treturn nil\n}\n\ntype UpdateCustomerSubscriptionResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *UpdateCustomerSubscriptionResponse) Reset() {\n\t*x = UpdateCustomerSubscriptionResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[15]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *UpdateCustomerSubscriptionResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*UpdateCustomerSubscriptionResponse) ProtoMessage() {}\n\nfunc (x *UpdateCustomerSubscriptionResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[15]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use UpdateCustomerSubscriptionResponse.ProtoReflect.Descriptor instead.\nfunc (*UpdateCustomerSubscriptionResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{15}\n}\n\ntype RecreateCustomerSubscriptionRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *RecreateCustomerSubscriptionRequest) Reset() {\n\t*x = RecreateCustomerSubscriptionRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[16]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RecreateCustomerSubscriptionRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RecreateCustomerSubscriptionRequest) ProtoMessage() {}\n\nfunc (x *RecreateCustomerSubscriptionRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[16]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RecreateCustomerSubscriptionRequest.ProtoReflect.Descriptor instead.\nfunc (*RecreateCustomerSubscriptionRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{16}\n}\n\nfunc (x *RecreateCustomerSubscriptionRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype RecreateCustomerSubscriptionResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *RecreateCustomerSubscriptionResponse) Reset() {\n\t*x = RecreateCustomerSubscriptionResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[17]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RecreateCustomerSubscriptionResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RecreateCustomerSubscriptionResponse) ProtoMessage() {}\n\nfunc (x *RecreateCustomerSubscriptionResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[17]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RecreateCustomerSubscriptionResponse.ProtoReflect.Descriptor instead.\nfunc (*RecreateCustomerSubscriptionResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{17}\n}\n\ntype DeleteCustomerRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *DeleteCustomerRequest) Reset() {\n\t*x = DeleteCustomerRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[18]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DeleteCustomerRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DeleteCustomerRequest) ProtoMessage() {}\n\nfunc (x *DeleteCustomerRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[18]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DeleteCustomerRequest.ProtoReflect.Descriptor instead.\nfunc (*DeleteCustomerRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{18}\n}\n\nfunc (x *DeleteCustomerRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype DeleteCustomerResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *DeleteCustomerResponse) Reset() {\n\t*x = DeleteCustomerResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[19]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DeleteCustomerResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DeleteCustomerResponse) ProtoMessage() {}\n\nfunc (x *DeleteCustomerResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[19]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DeleteCustomerResponse.ProtoReflect.Descriptor instead.\nfunc (*DeleteCustomerResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{19}\n}\n\ntype GetCustomerUsageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *GetCustomerUsageRequest) Reset() {\n\t*x = GetCustomerUsageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[20]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetCustomerUsageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetCustomerUsageRequest) ProtoMessage() {}\n\nfunc (x *GetCustomerUsageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[20]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetCustomerUsageRequest.ProtoReflect.Descriptor instead.\nfunc (*GetCustomerUsageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{20}\n}\n\nfunc (x *GetCustomerUsageRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype GetCustomerUsageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUsage map[string]*Usage `protobuf:\"bytes,1,rep,name=usage,proto3\" json:\"usage,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n}\n\nfunc (x *GetCustomerUsageResponse) Reset() {\n\t*x = GetCustomerUsageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[21]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetCustomerUsageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetCustomerUsageResponse) ProtoMessage() {}\n\nfunc (x *GetCustomerUsageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[21]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetCustomerUsageResponse.ProtoReflect.Descriptor instead.\nfunc (*GetCustomerUsageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{21}\n}\n\nfunc (x *GetCustomerUsageResponse) GetUsage() map[string]*Usage {\n\tif x != nil {\n\t\treturn x.Usage\n\t}\n\treturn nil\n}\n\ntype IncCustomerUsageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey          string           `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tProductUsage map[string]int64 `protobuf:\"bytes,2,rep,name=product_usage,json=productUsage,proto3\" json:\"product_usage,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"varint,2,opt,name=value,proto3\"`\n}\n\nfunc (x *IncCustomerUsageRequest) Reset() {\n\t*x = IncCustomerUsageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[22]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IncCustomerUsageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IncCustomerUsageRequest) ProtoMessage() {}\n\nfunc (x *IncCustomerUsageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[22]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IncCustomerUsageRequest.ProtoReflect.Descriptor instead.\nfunc (*IncCustomerUsageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{22}\n}\n\nfunc (x *IncCustomerUsageRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *IncCustomerUsageRequest) GetProductUsage() map[string]int64 {\n\tif x != nil {\n\t\treturn x.ProductUsage\n\t}\n\treturn nil\n}\n\ntype IncCustomerUsageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tDailyUsage map[string]*Usage `protobuf:\"bytes,1,rep,name=daily_usage,json=dailyUsage,proto3\" json:\"daily_usage,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n}\n\nfunc (x *IncCustomerUsageResponse) Reset() {\n\t*x = IncCustomerUsageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[23]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IncCustomerUsageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IncCustomerUsageResponse) ProtoMessage() {}\n\nfunc (x *IncCustomerUsageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[23]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IncCustomerUsageResponse.ProtoReflect.Descriptor instead.\nfunc (*IncCustomerUsageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{23}\n}\n\nfunc (x *IncCustomerUsageResponse) GetDailyUsage() map[string]*Usage {\n\tif x != nil {\n\t\treturn x.DailyUsage\n\t}\n\treturn nil\n}\n\ntype ReportCustomerUsageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *ReportCustomerUsageRequest) Reset() {\n\t*x = ReportCustomerUsageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[24]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ReportCustomerUsageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ReportCustomerUsageRequest) ProtoMessage() {}\n\nfunc (x *ReportCustomerUsageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[24]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ReportCustomerUsageRequest.ProtoReflect.Descriptor instead.\nfunc (*ReportCustomerUsageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{24}\n}\n\nfunc (x *ReportCustomerUsageRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype ReportCustomerUsageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ReportCustomerUsageResponse) Reset() {\n\t*x = ReportCustomerUsageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[25]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ReportCustomerUsageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ReportCustomerUsageResponse) ProtoMessage() {}\n\nfunc (x *ReportCustomerUsageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[25]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ReportCustomerUsageResponse.ProtoReflect.Descriptor instead.\nfunc (*ReportCustomerUsageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{25}\n}\n\ntype IdentifyRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey         string            `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tAccountType int32             `protobuf:\"varint,2,opt,name=account_type,json=accountType,proto3\" json:\"account_type,omitempty\"`\n\tActive      bool              `protobuf:\"varint,3,opt,name=active,proto3\" json:\"active,omitempty\"`\n\tEmail       string            `protobuf:\"bytes,4,opt,name=email,proto3\" json:\"email,omitempty\"`\n\tProperties  map[string]string `protobuf:\"bytes,5,rep,name=properties,proto3\" json:\"properties,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n}\n\nfunc (x *IdentifyRequest) Reset() {\n\t*x = IdentifyRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[26]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IdentifyRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IdentifyRequest) ProtoMessage() {}\n\nfunc (x *IdentifyRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[26]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IdentifyRequest.ProtoReflect.Descriptor instead.\nfunc (*IdentifyRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{26}\n}\n\nfunc (x *IdentifyRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *IdentifyRequest) GetAccountType() int32 {\n\tif x != nil {\n\t\treturn x.AccountType\n\t}\n\treturn 0\n}\n\nfunc (x *IdentifyRequest) GetActive() bool {\n\tif x != nil {\n\t\treturn x.Active\n\t}\n\treturn false\n}\n\nfunc (x *IdentifyRequest) GetEmail() string {\n\tif x != nil {\n\t\treturn x.Email\n\t}\n\treturn \"\"\n}\n\nfunc (x *IdentifyRequest) GetProperties() map[string]string {\n\tif x != nil {\n\t\treturn x.Properties\n\t}\n\treturn nil\n}\n\ntype IdentifyResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *IdentifyResponse) Reset() {\n\t*x = IdentifyResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[27]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IdentifyResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IdentifyResponse) ProtoMessage() {}\n\nfunc (x *IdentifyResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[27]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IdentifyResponse.ProtoReflect.Descriptor instead.\nfunc (*IdentifyResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{27}\n}\n\ntype TrackEventRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey         string            `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tAccountType int32             `protobuf:\"varint,2,opt,name=account_type,json=accountType,proto3\" json:\"account_type,omitempty\"`\n\tActive      bool              `protobuf:\"varint,3,opt,name=active,proto3\" json:\"active,omitempty\"`\n\tEvent       int32             `protobuf:\"varint,4,opt,name=event,proto3\" json:\"event,omitempty\"`\n\tProperties  map[string]string `protobuf:\"bytes,5,rep,name=properties,proto3\" json:\"properties,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n}\n\nfunc (x *TrackEventRequest) Reset() {\n\t*x = TrackEventRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[28]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TrackEventRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TrackEventRequest) ProtoMessage() {}\n\nfunc (x *TrackEventRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[28]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TrackEventRequest.ProtoReflect.Descriptor instead.\nfunc (*TrackEventRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{28}\n}\n\nfunc (x *TrackEventRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *TrackEventRequest) GetAccountType() int32 {\n\tif x != nil {\n\t\treturn x.AccountType\n\t}\n\treturn 0\n}\n\nfunc (x *TrackEventRequest) GetActive() bool {\n\tif x != nil {\n\t\treturn x.Active\n\t}\n\treturn false\n}\n\nfunc (x *TrackEventRequest) GetEvent() int32 {\n\tif x != nil {\n\t\treturn x.Event\n\t}\n\treturn 0\n}\n\nfunc (x *TrackEventRequest) GetProperties() map[string]string {\n\tif x != nil {\n\t\treturn x.Properties\n\t}\n\treturn nil\n}\n\ntype TrackEventResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *TrackEventResponse) Reset() {\n\t*x = TrackEventResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[29]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TrackEventResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TrackEventResponse) ProtoMessage() {}\n\nfunc (x *TrackEventResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[29]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TrackEventResponse.ProtoReflect.Descriptor instead.\nfunc (*TrackEventResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{29}\n}\n\ntype CreateCustomerRequest_Params struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey         string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tEmail       string `protobuf:\"bytes,2,opt,name=email,proto3\" json:\"email,omitempty\"`\n\tAccountType int32  `protobuf:\"varint,3,opt,name=account_type,json=accountType,proto3\" json:\"account_type,omitempty\"`\n\tUsername    string `protobuf:\"bytes,4,opt,name=username,proto3\" json:\"username,omitempty\"`\n}\n\nfunc (x *CreateCustomerRequest_Params) Reset() {\n\t*x = CreateCustomerRequest_Params{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[30]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateCustomerRequest_Params) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateCustomerRequest_Params) ProtoMessage() {}\n\nfunc (x *CreateCustomerRequest_Params) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_billingd_pb_billingd_proto_msgTypes[30]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateCustomerRequest_Params.ProtoReflect.Descriptor instead.\nfunc (*CreateCustomerRequest_Params) Descriptor() ([]byte, []int) {\n\treturn file_api_billingd_pb_billingd_proto_rawDescGZIP(), []int{4, 0}\n}\n\nfunc (x *CreateCustomerRequest_Params) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateCustomerRequest_Params) GetEmail() string {\n\tif x != nil {\n\t\treturn x.Email\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateCustomerRequest_Params) GetAccountType() int32 {\n\tif x != nil {\n\t\treturn x.AccountType\n\t}\n\treturn 0\n}\n\nfunc (x *CreateCustomerRequest_Params) GetUsername() string {\n\tif x != nil {\n\t\treturn x.Username\n\t}\n\treturn \"\"\n}\n\nvar File_api_billingd_pb_billingd_proto protoreflect.FileDescriptor\n\nvar file_api_billingd_pb_billingd_proto_rawDesc = []byte{\n\t0x0a, 0x1e, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2f, 0x70,\n\t0x62, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,\n\t0x12, 0x0f, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70,\n\t0x62, 0x22, 0x42, 0x0a, 0x06, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x75,\n\t0x6e, 0x69, 0x78, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,\n\t0x09, 0x75, 0x6e, 0x69, 0x78, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x6e,\n\t0x69, 0x78, 0x5f, 0x65, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x75, 0x6e,\n\t0x69, 0x78, 0x45, 0x6e, 0x64, 0x22, 0xc4, 0x01, 0x0a, 0x05, 0x55, 0x73, 0x61, 0x67, 0x65, 0x12,\n\t0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,\n\t0x6e, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x05, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,\n\t0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x12, 0x0a,\n\t0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x66, 0x72, 0x65,\n\t0x65, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x72, 0x61, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x05, 0x67, 0x72, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x73, 0x74, 0x18,\n\t0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x63, 0x6f, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x06, 0x70,\n\t0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65,\n\t0x72, 0x69, 0x6f, 0x64, 0x52, 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x22, 0x14, 0x0a, 0x12,\n\t0x43, 0x68, 0x65, 0x63, 0x6b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x22, 0x15, 0x0a, 0x13, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x48, 0x65, 0x61, 0x6c, 0x74,\n\t0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9a, 0x02, 0x0a, 0x15, 0x43, 0x72,\n\t0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x49, 0x0a, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c,\n\t0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x61,\n\t0x72, 0x61, 0x6d, 0x73, 0x52, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x45,\n\t0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x06, 0x70,\n\t0x61, 0x72, 0x65, 0x6e, 0x74, 0x1a, 0x6f, 0x0a, 0x06, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12,\n\t0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,\n\t0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x63, 0x6f, 0x75,\n\t0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x61,\n\t0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,\n\t0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,\n\t0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x39, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,\n\t0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49,\n\t0x64, 0x22, 0x26, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0xa5, 0x05, 0x0a, 0x13, 0x47, 0x65,\n\t0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,\n\t0x6b, 0x65, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f,\n\t0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,\n\t0x65, 0x72, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6b,\n\t0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,\n\t0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x63,\n\t0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52,\n\t0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x0e,\n\t0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x74, 0x61,\n\t0x74, 0x75, 0x73, 0x12, 0x2f, 0x0a, 0x13, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,\n\t0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x12, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,\n\t0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18,\n\t0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x1a,\n\t0x0a, 0x08, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08,\n\t0x52, 0x08, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65,\n\t0x6c, 0x69, 0x6e, 0x71, 0x75, 0x65, 0x6e, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,\n\t0x64, 0x65, 0x6c, 0x69, 0x6e, 0x71, 0x75, 0x65, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72,\n\t0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,\n\t0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x67, 0x72, 0x61,\n\t0x63, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x5f, 0x65, 0x6e, 0x64, 0x18, 0x0c, 0x20,\n\t0x01, 0x28, 0x03, 0x52, 0x0e, 0x67, 0x72, 0x61, 0x63, 0x65, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64,\n\t0x45, 0x6e, 0x64, 0x12, 0x3e, 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x70,\n\t0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65,\n\t0x72, 0x69, 0x6f, 0x64, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x65, 0x72,\n\t0x69, 0x6f, 0x64, 0x12, 0x55, 0x0a, 0x0b, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x5f, 0x75, 0x73, 0x61,\n\t0x67, 0x65, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44,\n\t0x61, 0x69, 0x6c, 0x79, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a,\n\t0x64, 0x61, 0x69, 0x6c, 0x79, 0x55, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65,\n\t0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,\n\t0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x73, 0x1a, 0x55, 0x0a, 0x0f, 0x44, 0x61,\n\t0x69, 0x6c, 0x79, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,\n\t0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,\n\t0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,\n\t0x01, 0x22, 0x5f, 0x0a, 0x1d, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65,\n\t0x6e, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05,\n\t0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d,\n\t0x69, 0x74, 0x22, 0x85, 0x01, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x70, 0x65, 0x6e,\n\t0x64, 0x65, 0x6e, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x09, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x09,\n\t0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78,\n\t0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,\n\t0x6e, 0x65, 0x78, 0x74, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x2d, 0x0a, 0x19, 0x47, 0x65,\n\t0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x2e, 0x0a, 0x1a, 0x47, 0x65, 0x74,\n\t0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x8e, 0x01, 0x0a, 0x15, 0x55, 0x70,\n\t0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f,\n\t0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,\n\t0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18,\n\t0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x1a,\n\t0x0a, 0x08, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,\n\t0x52, 0x08, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65,\n\t0x6c, 0x69, 0x6e, 0x71, 0x75, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,\n\t0x64, 0x65, 0x6c, 0x69, 0x6e, 0x71, 0x75, 0x65, 0x6e, 0x74, 0x22, 0x18, 0x0a, 0x16, 0x55, 0x70,\n\t0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9c, 0x01, 0x0a, 0x21, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,\n\t0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73,\n\t0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61,\n\t0x74, 0x75, 0x73, 0x12, 0x3e, 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x70,\n\t0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65,\n\t0x72, 0x69, 0x6f, 0x64, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x65, 0x72,\n\t0x69, 0x6f, 0x64, 0x22, 0x24, 0x0a, 0x22, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73,\n\t0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,\n\t0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x37, 0x0a, 0x23, 0x52, 0x65, 0x63,\n\t0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62,\n\t0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,\n\t0x65, 0x79, 0x22, 0x26, 0x0a, 0x24, 0x52, 0x65, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,\n\t0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x29, 0x0a, 0x15, 0x44, 0x65,\n\t0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,\n\t0x2b, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73,\n\t0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,\n\t0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0xb8, 0x01, 0x0a,\n\t0x18, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67,\n\t0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4a, 0x0a, 0x05, 0x75, 0x73, 0x61,\n\t0x67, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x2e, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05,\n\t0x75, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x50, 0x0a, 0x0a, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69,\n\t0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76, 0x61,\n\t0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xcd, 0x01, 0x0a, 0x17, 0x49, 0x6e, 0x63, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x5f, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,\n\t0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49,\n\t0x6e, 0x63, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x55, 0x73,\n\t0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,\n\t0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x3f, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,\n\t0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,\n\t0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,\n\t0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61,\n\t0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xcd, 0x01, 0x0a, 0x18, 0x49, 0x6e, 0x63, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x0b, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x5f, 0x75, 0x73,\n\t0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e, 0x63, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45,\n\t0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x55, 0x73, 0x61, 0x67, 0x65,\n\t0x1a, 0x55, 0x0a, 0x0f, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x55, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69,\n\t0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76, 0x61,\n\t0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x2e, 0x0a, 0x1a, 0x52, 0x65, 0x70, 0x6f, 0x72,\n\t0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x1d, 0x0a, 0x1b, 0x52, 0x65, 0x70, 0x6f, 0x72,\n\t0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x85, 0x02, 0x0a, 0x0f, 0x49, 0x64, 0x65, 0x6e, 0x74,\n\t0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,\n\t0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c,\n\t0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x05, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,\n\t0x16, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,\n\t0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,\n\t0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x50, 0x0a,\n\t0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,\n\t0x0b, 0x32, 0x30, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x1a,\n\t0x3d, 0x0a, 0x0f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x45, 0x6e, 0x74,\n\t0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x12,\n\t0x0a, 0x10, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x22, 0x89, 0x02, 0x0a, 0x11, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e,\n\t0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63,\n\t0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,\n\t0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,\n\t0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x61,\n\t0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x04,\n\t0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x52, 0x0a, 0x0a, 0x70,\n\t0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32,\n\t0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x1a,\n\t0x3d, 0x0a, 0x0f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x45, 0x6e, 0x74,\n\t0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x14,\n\t0x0a, 0x12, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x32, 0xf1, 0x0b, 0x0a, 0x0a, 0x41, 0x50, 0x49, 0x53, 0x65, 0x72, 0x76,\n\t0x69, 0x63, 0x65, 0x12, 0x5a, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x48, 0x65, 0x61, 0x6c,\n\t0x74, 0x68, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69,\n\t0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x48,\n\t0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,\n\t0x63, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,\n\t0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61,\n\t0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f,\n\t0x6d, 0x65, 0x72, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e,\n\t0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,\n\t0x12, 0x7b, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e,\n\t0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73,\n\t0x74, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,\n\t0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73,\n\t0x74, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,\n\t0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a,\n\t0x12, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73,\n\t0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e,\n\t0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x65, 0x73,\n\t0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63,\n\t0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,\n\t0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,\n\t0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x00, 0x12, 0x87, 0x01, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,\n\t0x6f, 0x6e, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f,\n\t0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c,\n\t0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,\n\t0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8d, 0x01,\n\t0x0a, 0x1c, 0x52, 0x65, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,\n\t0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x34,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x52, 0x65, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69,\n\t0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43,\n\t0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,\n\t0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a,\n\t0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12,\n\t0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69,\n\t0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,\n\t0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x22, 0x00, 0x12, 0x69, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c,\n\t0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74,\n\t0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x1a, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73,\n\t0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a,\n\t0x10, 0x49, 0x6e, 0x63, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67,\n\t0x65, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e, 0x63, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55,\n\t0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e,\n\t0x63, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x13, 0x52, 0x65, 0x70, 0x6f,\n\t0x72, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x12,\n\t0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,\n\t0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52,\n\t0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61,\n\t0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x08,\n\t0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74,\n\t0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x64, 0x65,\n\t0x6e, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,\n\t0x57, 0x0a, 0x0a, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x22, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x54, 0x72, 0x61, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x31, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x68,\n\t0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x69, 0x6f,\n\t0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f,\n\t0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,\n\t0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_api_billingd_pb_billingd_proto_rawDescOnce sync.Once\n\tfile_api_billingd_pb_billingd_proto_rawDescData = file_api_billingd_pb_billingd_proto_rawDesc\n)\n\nfunc file_api_billingd_pb_billingd_proto_rawDescGZIP() []byte {\n\tfile_api_billingd_pb_billingd_proto_rawDescOnce.Do(func() {\n\t\tfile_api_billingd_pb_billingd_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_billingd_pb_billingd_proto_rawDescData)\n\t})\n\treturn file_api_billingd_pb_billingd_proto_rawDescData\n}\n\nvar file_api_billingd_pb_billingd_proto_msgTypes = make([]protoimpl.MessageInfo, 37)\nvar file_api_billingd_pb_billingd_proto_goTypes = []interface{}{\n\t(*Period)(nil),                               // 0: api.billingd.pb.Period\n\t(*Usage)(nil),                                // 1: api.billingd.pb.Usage\n\t(*CheckHealthRequest)(nil),                   // 2: api.billingd.pb.CheckHealthRequest\n\t(*CheckHealthResponse)(nil),                  // 3: api.billingd.pb.CheckHealthResponse\n\t(*CreateCustomerRequest)(nil),                // 4: api.billingd.pb.CreateCustomerRequest\n\t(*CreateCustomerResponse)(nil),               // 5: api.billingd.pb.CreateCustomerResponse\n\t(*GetCustomerRequest)(nil),                   // 6: api.billingd.pb.GetCustomerRequest\n\t(*GetCustomerResponse)(nil),                  // 7: api.billingd.pb.GetCustomerResponse\n\t(*ListDependentCustomersRequest)(nil),        // 8: api.billingd.pb.ListDependentCustomersRequest\n\t(*ListDependentCustomersResponse)(nil),       // 9: api.billingd.pb.ListDependentCustomersResponse\n\t(*GetCustomerSessionRequest)(nil),            // 10: api.billingd.pb.GetCustomerSessionRequest\n\t(*GetCustomerSessionResponse)(nil),           // 11: api.billingd.pb.GetCustomerSessionResponse\n\t(*UpdateCustomerRequest)(nil),                // 12: api.billingd.pb.UpdateCustomerRequest\n\t(*UpdateCustomerResponse)(nil),               // 13: api.billingd.pb.UpdateCustomerResponse\n\t(*UpdateCustomerSubscriptionRequest)(nil),    // 14: api.billingd.pb.UpdateCustomerSubscriptionRequest\n\t(*UpdateCustomerSubscriptionResponse)(nil),   // 15: api.billingd.pb.UpdateCustomerSubscriptionResponse\n\t(*RecreateCustomerSubscriptionRequest)(nil),  // 16: api.billingd.pb.RecreateCustomerSubscriptionRequest\n\t(*RecreateCustomerSubscriptionResponse)(nil), // 17: api.billingd.pb.RecreateCustomerSubscriptionResponse\n\t(*DeleteCustomerRequest)(nil),                // 18: api.billingd.pb.DeleteCustomerRequest\n\t(*DeleteCustomerResponse)(nil),               // 19: api.billingd.pb.DeleteCustomerResponse\n\t(*GetCustomerUsageRequest)(nil),              // 20: api.billingd.pb.GetCustomerUsageRequest\n\t(*GetCustomerUsageResponse)(nil),             // 21: api.billingd.pb.GetCustomerUsageResponse\n\t(*IncCustomerUsageRequest)(nil),              // 22: api.billingd.pb.IncCustomerUsageRequest\n\t(*IncCustomerUsageResponse)(nil),             // 23: api.billingd.pb.IncCustomerUsageResponse\n\t(*ReportCustomerUsageRequest)(nil),           // 24: api.billingd.pb.ReportCustomerUsageRequest\n\t(*ReportCustomerUsageResponse)(nil),          // 25: api.billingd.pb.ReportCustomerUsageResponse\n\t(*IdentifyRequest)(nil),                      // 26: api.billingd.pb.IdentifyRequest\n\t(*IdentifyResponse)(nil),                     // 27: api.billingd.pb.IdentifyResponse\n\t(*TrackEventRequest)(nil),                    // 28: api.billingd.pb.TrackEventRequest\n\t(*TrackEventResponse)(nil),                   // 29: api.billingd.pb.TrackEventResponse\n\t(*CreateCustomerRequest_Params)(nil),         // 30: api.billingd.pb.CreateCustomerRequest.Params\n\tnil,                                          // 31: api.billingd.pb.GetCustomerResponse.DailyUsageEntry\n\tnil,                                          // 32: api.billingd.pb.GetCustomerUsageResponse.UsageEntry\n\tnil,                                          // 33: api.billingd.pb.IncCustomerUsageRequest.ProductUsageEntry\n\tnil,                                          // 34: api.billingd.pb.IncCustomerUsageResponse.DailyUsageEntry\n\tnil,                                          // 35: api.billingd.pb.IdentifyRequest.PropertiesEntry\n\tnil,                                          // 36: api.billingd.pb.TrackEventRequest.PropertiesEntry\n}\nvar file_api_billingd_pb_billingd_proto_depIdxs = []int32{\n\t0,  // 0: api.billingd.pb.Usage.period:type_name -> api.billingd.pb.Period\n\t30, // 1: api.billingd.pb.CreateCustomerRequest.customer:type_name -> api.billingd.pb.CreateCustomerRequest.Params\n\t30, // 2: api.billingd.pb.CreateCustomerRequest.parent:type_name -> api.billingd.pb.CreateCustomerRequest.Params\n\t0,  // 3: api.billingd.pb.GetCustomerResponse.invoice_period:type_name -> api.billingd.pb.Period\n\t31, // 4: api.billingd.pb.GetCustomerResponse.daily_usage:type_name -> api.billingd.pb.GetCustomerResponse.DailyUsageEntry\n\t7,  // 5: api.billingd.pb.ListDependentCustomersResponse.customers:type_name -> api.billingd.pb.GetCustomerResponse\n\t0,  // 6: api.billingd.pb.UpdateCustomerSubscriptionRequest.invoice_period:type_name -> api.billingd.pb.Period\n\t32, // 7: api.billingd.pb.GetCustomerUsageResponse.usage:type_name -> api.billingd.pb.GetCustomerUsageResponse.UsageEntry\n\t33, // 8: api.billingd.pb.IncCustomerUsageRequest.product_usage:type_name -> api.billingd.pb.IncCustomerUsageRequest.ProductUsageEntry\n\t34, // 9: api.billingd.pb.IncCustomerUsageResponse.daily_usage:type_name -> api.billingd.pb.IncCustomerUsageResponse.DailyUsageEntry\n\t35, // 10: api.billingd.pb.IdentifyRequest.properties:type_name -> api.billingd.pb.IdentifyRequest.PropertiesEntry\n\t36, // 11: api.billingd.pb.TrackEventRequest.properties:type_name -> api.billingd.pb.TrackEventRequest.PropertiesEntry\n\t1,  // 12: api.billingd.pb.GetCustomerResponse.DailyUsageEntry.value:type_name -> api.billingd.pb.Usage\n\t1,  // 13: api.billingd.pb.GetCustomerUsageResponse.UsageEntry.value:type_name -> api.billingd.pb.Usage\n\t1,  // 14: api.billingd.pb.IncCustomerUsageResponse.DailyUsageEntry.value:type_name -> api.billingd.pb.Usage\n\t2,  // 15: api.billingd.pb.APIService.CheckHealth:input_type -> api.billingd.pb.CheckHealthRequest\n\t4,  // 16: api.billingd.pb.APIService.CreateCustomer:input_type -> api.billingd.pb.CreateCustomerRequest\n\t6,  // 17: api.billingd.pb.APIService.GetCustomer:input_type -> api.billingd.pb.GetCustomerRequest\n\t8,  // 18: api.billingd.pb.APIService.ListDependentCustomers:input_type -> api.billingd.pb.ListDependentCustomersRequest\n\t10, // 19: api.billingd.pb.APIService.GetCustomerSession:input_type -> api.billingd.pb.GetCustomerSessionRequest\n\t12, // 20: api.billingd.pb.APIService.UpdateCustomer:input_type -> api.billingd.pb.UpdateCustomerRequest\n\t14, // 21: api.billingd.pb.APIService.UpdateCustomerSubscription:input_type -> api.billingd.pb.UpdateCustomerSubscriptionRequest\n\t16, // 22: api.billingd.pb.APIService.RecreateCustomerSubscription:input_type -> api.billingd.pb.RecreateCustomerSubscriptionRequest\n\t18, // 23: api.billingd.pb.APIService.DeleteCustomer:input_type -> api.billingd.pb.DeleteCustomerRequest\n\t20, // 24: api.billingd.pb.APIService.GetCustomerUsage:input_type -> api.billingd.pb.GetCustomerUsageRequest\n\t22, // 25: api.billingd.pb.APIService.IncCustomerUsage:input_type -> api.billingd.pb.IncCustomerUsageRequest\n\t24, // 26: api.billingd.pb.APIService.ReportCustomerUsage:input_type -> api.billingd.pb.ReportCustomerUsageRequest\n\t26, // 27: api.billingd.pb.APIService.Identify:input_type -> api.billingd.pb.IdentifyRequest\n\t28, // 28: api.billingd.pb.APIService.TrackEvent:input_type -> api.billingd.pb.TrackEventRequest\n\t3,  // 29: api.billingd.pb.APIService.CheckHealth:output_type -> api.billingd.pb.CheckHealthResponse\n\t5,  // 30: api.billingd.pb.APIService.CreateCustomer:output_type -> api.billingd.pb.CreateCustomerResponse\n\t7,  // 31: api.billingd.pb.APIService.GetCustomer:output_type -> api.billingd.pb.GetCustomerResponse\n\t9,  // 32: api.billingd.pb.APIService.ListDependentCustomers:output_type -> api.billingd.pb.ListDependentCustomersResponse\n\t11, // 33: api.billingd.pb.APIService.GetCustomerSession:output_type -> api.billingd.pb.GetCustomerSessionResponse\n\t13, // 34: api.billingd.pb.APIService.UpdateCustomer:output_type -> api.billingd.pb.UpdateCustomerResponse\n\t15, // 35: api.billingd.pb.APIService.UpdateCustomerSubscription:output_type -> api.billingd.pb.UpdateCustomerSubscriptionResponse\n\t17, // 36: api.billingd.pb.APIService.RecreateCustomerSubscription:output_type -> api.billingd.pb.RecreateCustomerSubscriptionResponse\n\t19, // 37: api.billingd.pb.APIService.DeleteCustomer:output_type -> api.billingd.pb.DeleteCustomerResponse\n\t21, // 38: api.billingd.pb.APIService.GetCustomerUsage:output_type -> api.billingd.pb.GetCustomerUsageResponse\n\t23, // 39: api.billingd.pb.APIService.IncCustomerUsage:output_type -> api.billingd.pb.IncCustomerUsageResponse\n\t25, // 40: api.billingd.pb.APIService.ReportCustomerUsage:output_type -> api.billingd.pb.ReportCustomerUsageResponse\n\t27, // 41: api.billingd.pb.APIService.Identify:output_type -> api.billingd.pb.IdentifyResponse\n\t29, // 42: api.billingd.pb.APIService.TrackEvent:output_type -> api.billingd.pb.TrackEventResponse\n\t29, // [29:43] is the sub-list for method output_type\n\t15, // [15:29] is the sub-list for method input_type\n\t15, // [15:15] is the sub-list for extension type_name\n\t15, // [15:15] is the sub-list for extension extendee\n\t0,  // [0:15] is the sub-list for field type_name\n}\n\nfunc init() { file_api_billingd_pb_billingd_proto_init() }\nfunc file_api_billingd_pb_billingd_proto_init() {\n\tif File_api_billingd_pb_billingd_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Period); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Usage); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CheckHealthRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CheckHealthResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateCustomerRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateCustomerResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetCustomerRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetCustomerResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListDependentCustomersRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListDependentCustomersResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetCustomerSessionRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetCustomerSessionResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*UpdateCustomerRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*UpdateCustomerResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*UpdateCustomerSubscriptionRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*UpdateCustomerSubscriptionResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RecreateCustomerSubscriptionRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RecreateCustomerSubscriptionResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DeleteCustomerRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DeleteCustomerResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetCustomerUsageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetCustomerUsageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IncCustomerUsageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IncCustomerUsageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ReportCustomerUsageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ReportCustomerUsageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IdentifyRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IdentifyResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TrackEventRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TrackEventResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_billingd_pb_billingd_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateCustomerRequest_Params); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_api_billingd_pb_billingd_proto_rawDesc,\n\t\t\tNumEnums:      0,\n\t\t\tNumMessages:   37,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_api_billingd_pb_billingd_proto_goTypes,\n\t\tDependencyIndexes: file_api_billingd_pb_billingd_proto_depIdxs,\n\t\tMessageInfos:      file_api_billingd_pb_billingd_proto_msgTypes,\n\t}.Build()\n\tFile_api_billingd_pb_billingd_proto = out.File\n\tfile_api_billingd_pb_billingd_proto_rawDesc = nil\n\tfile_api_billingd_pb_billingd_proto_goTypes = nil\n\tfile_api_billingd_pb_billingd_proto_depIdxs = nil\n}\n\n// Reference imports to suppress errors if they are not otherwise used.\nvar _ context.Context\nvar _ grpc.ClientConnInterface\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\nconst _ = grpc.SupportPackageIsVersion6\n\n// APIServiceClient is the client API for APIService service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.\ntype APIServiceClient interface {\n\tCheckHealth(ctx context.Context, in *CheckHealthRequest, opts ...grpc.CallOption) (*CheckHealthResponse, error)\n\tCreateCustomer(ctx context.Context, in *CreateCustomerRequest, opts ...grpc.CallOption) (*CreateCustomerResponse, error)\n\tGetCustomer(ctx context.Context, in *GetCustomerRequest, opts ...grpc.CallOption) (*GetCustomerResponse, error)\n\tListDependentCustomers(ctx context.Context, in *ListDependentCustomersRequest, opts ...grpc.CallOption) (*ListDependentCustomersResponse, error)\n\tGetCustomerSession(ctx context.Context, in *GetCustomerSessionRequest, opts ...grpc.CallOption) (*GetCustomerSessionResponse, error)\n\tUpdateCustomer(ctx context.Context, in *UpdateCustomerRequest, opts ...grpc.CallOption) (*UpdateCustomerResponse, error)\n\tUpdateCustomerSubscription(ctx context.Context, in *UpdateCustomerSubscriptionRequest, opts ...grpc.CallOption) (*UpdateCustomerSubscriptionResponse, error)\n\tRecreateCustomerSubscription(ctx context.Context, in *RecreateCustomerSubscriptionRequest, opts ...grpc.CallOption) (*RecreateCustomerSubscriptionResponse, error)\n\tDeleteCustomer(ctx context.Context, in *DeleteCustomerRequest, opts ...grpc.CallOption) (*DeleteCustomerResponse, error)\n\tGetCustomerUsage(ctx context.Context, in *GetCustomerUsageRequest, opts ...grpc.CallOption) (*GetCustomerUsageResponse, error)\n\tIncCustomerUsage(ctx context.Context, in *IncCustomerUsageRequest, opts ...grpc.CallOption) (*IncCustomerUsageResponse, error)\n\tReportCustomerUsage(ctx context.Context, in *ReportCustomerUsageRequest, opts ...grpc.CallOption) (*ReportCustomerUsageResponse, error)\n\tIdentify(ctx context.Context, in *IdentifyRequest, opts ...grpc.CallOption) (*IdentifyResponse, error)\n\tTrackEvent(ctx context.Context, in *TrackEventRequest, opts ...grpc.CallOption) (*TrackEventResponse, error)\n}\n\ntype aPIServiceClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient {\n\treturn &aPIServiceClient{cc}\n}\n\nfunc (c *aPIServiceClient) CheckHealth(ctx context.Context, in *CheckHealthRequest, opts ...grpc.CallOption) (*CheckHealthResponse, error) {\n\tout := new(CheckHealthResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/CheckHealth\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) CreateCustomer(ctx context.Context, in *CreateCustomerRequest, opts ...grpc.CallOption) (*CreateCustomerResponse, error) {\n\tout := new(CreateCustomerResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/CreateCustomer\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetCustomer(ctx context.Context, in *GetCustomerRequest, opts ...grpc.CallOption) (*GetCustomerResponse, error) {\n\tout := new(GetCustomerResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/GetCustomer\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListDependentCustomers(ctx context.Context, in *ListDependentCustomersRequest, opts ...grpc.CallOption) (*ListDependentCustomersResponse, error) {\n\tout := new(ListDependentCustomersResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/ListDependentCustomers\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetCustomerSession(ctx context.Context, in *GetCustomerSessionRequest, opts ...grpc.CallOption) (*GetCustomerSessionResponse, error) {\n\tout := new(GetCustomerSessionResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/GetCustomerSession\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) UpdateCustomer(ctx context.Context, in *UpdateCustomerRequest, opts ...grpc.CallOption) (*UpdateCustomerResponse, error) {\n\tout := new(UpdateCustomerResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/UpdateCustomer\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) UpdateCustomerSubscription(ctx context.Context, in *UpdateCustomerSubscriptionRequest, opts ...grpc.CallOption) (*UpdateCustomerSubscriptionResponse, error) {\n\tout := new(UpdateCustomerSubscriptionResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/UpdateCustomerSubscription\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) RecreateCustomerSubscription(ctx context.Context, in *RecreateCustomerSubscriptionRequest, opts ...grpc.CallOption) (*RecreateCustomerSubscriptionResponse, error) {\n\tout := new(RecreateCustomerSubscriptionResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/RecreateCustomerSubscription\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) DeleteCustomer(ctx context.Context, in *DeleteCustomerRequest, opts ...grpc.CallOption) (*DeleteCustomerResponse, error) {\n\tout := new(DeleteCustomerResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/DeleteCustomer\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetCustomerUsage(ctx context.Context, in *GetCustomerUsageRequest, opts ...grpc.CallOption) (*GetCustomerUsageResponse, error) {\n\tout := new(GetCustomerUsageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/GetCustomerUsage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) IncCustomerUsage(ctx context.Context, in *IncCustomerUsageRequest, opts ...grpc.CallOption) (*IncCustomerUsageResponse, error) {\n\tout := new(IncCustomerUsageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/IncCustomerUsage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ReportCustomerUsage(ctx context.Context, in *ReportCustomerUsageRequest, opts ...grpc.CallOption) (*ReportCustomerUsageResponse, error) {\n\tout := new(ReportCustomerUsageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/ReportCustomerUsage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Identify(ctx context.Context, in *IdentifyRequest, opts ...grpc.CallOption) (*IdentifyResponse, error) {\n\tout := new(IdentifyResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/Identify\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) TrackEvent(ctx context.Context, in *TrackEventRequest, opts ...grpc.CallOption) (*TrackEventResponse, error) {\n\tout := new(TrackEventResponse)\n\terr := c.cc.Invoke(ctx, \"/api.billingd.pb.APIService/TrackEvent\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\n// APIServiceServer is the server API for APIService service.\ntype APIServiceServer interface {\n\tCheckHealth(context.Context, *CheckHealthRequest) (*CheckHealthResponse, error)\n\tCreateCustomer(context.Context, *CreateCustomerRequest) (*CreateCustomerResponse, error)\n\tGetCustomer(context.Context, *GetCustomerRequest) (*GetCustomerResponse, error)\n\tListDependentCustomers(context.Context, *ListDependentCustomersRequest) (*ListDependentCustomersResponse, error)\n\tGetCustomerSession(context.Context, *GetCustomerSessionRequest) (*GetCustomerSessionResponse, error)\n\tUpdateCustomer(context.Context, *UpdateCustomerRequest) (*UpdateCustomerResponse, error)\n\tUpdateCustomerSubscription(context.Context, *UpdateCustomerSubscriptionRequest) (*UpdateCustomerSubscriptionResponse, error)\n\tRecreateCustomerSubscription(context.Context, *RecreateCustomerSubscriptionRequest) (*RecreateCustomerSubscriptionResponse, error)\n\tDeleteCustomer(context.Context, *DeleteCustomerRequest) (*DeleteCustomerResponse, error)\n\tGetCustomerUsage(context.Context, *GetCustomerUsageRequest) (*GetCustomerUsageResponse, error)\n\tIncCustomerUsage(context.Context, *IncCustomerUsageRequest) (*IncCustomerUsageResponse, error)\n\tReportCustomerUsage(context.Context, *ReportCustomerUsageRequest) (*ReportCustomerUsageResponse, error)\n\tIdentify(context.Context, *IdentifyRequest) (*IdentifyResponse, error)\n\tTrackEvent(context.Context, *TrackEventRequest) (*TrackEventResponse, error)\n}\n\n// UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.\ntype UnimplementedAPIServiceServer struct {\n}\n\nfunc (*UnimplementedAPIServiceServer) CheckHealth(context.Context, *CheckHealthRequest) (*CheckHealthResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method CheckHealth not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) CreateCustomer(context.Context, *CreateCustomerRequest) (*CreateCustomerResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method CreateCustomer not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetCustomer(context.Context, *GetCustomerRequest) (*GetCustomerResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetCustomer not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListDependentCustomers(context.Context, *ListDependentCustomersRequest) (*ListDependentCustomersResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListDependentCustomers not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetCustomerSession(context.Context, *GetCustomerSessionRequest) (*GetCustomerSessionResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetCustomerSession not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) UpdateCustomer(context.Context, *UpdateCustomerRequest) (*UpdateCustomerResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method UpdateCustomer not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) UpdateCustomerSubscription(context.Context, *UpdateCustomerSubscriptionRequest) (*UpdateCustomerSubscriptionResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method UpdateCustomerSubscription not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) RecreateCustomerSubscription(context.Context, *RecreateCustomerSubscriptionRequest) (*RecreateCustomerSubscriptionResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method RecreateCustomerSubscription not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) DeleteCustomer(context.Context, *DeleteCustomerRequest) (*DeleteCustomerResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method DeleteCustomer not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetCustomerUsage(context.Context, *GetCustomerUsageRequest) (*GetCustomerUsageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetCustomerUsage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) IncCustomerUsage(context.Context, *IncCustomerUsageRequest) (*IncCustomerUsageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method IncCustomerUsage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ReportCustomerUsage(context.Context, *ReportCustomerUsageRequest) (*ReportCustomerUsageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ReportCustomerUsage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Identify(context.Context, *IdentifyRequest) (*IdentifyResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Identify not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) TrackEvent(context.Context, *TrackEventRequest) (*TrackEventResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method TrackEvent not implemented\")\n}\n\nfunc RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer) {\n\ts.RegisterService(&_APIService_serviceDesc, srv)\n}\n\nfunc _APIService_CheckHealth_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CheckHealthRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).CheckHealth(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/CheckHealth\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).CheckHealth(ctx, req.(*CheckHealthRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_CreateCustomer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CreateCustomerRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).CreateCustomer(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/CreateCustomer\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).CreateCustomer(ctx, req.(*CreateCustomerRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetCustomer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetCustomerRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetCustomer(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/GetCustomer\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetCustomer(ctx, req.(*GetCustomerRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListDependentCustomers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListDependentCustomersRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListDependentCustomers(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/ListDependentCustomers\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListDependentCustomers(ctx, req.(*ListDependentCustomersRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetCustomerSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetCustomerSessionRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetCustomerSession(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/GetCustomerSession\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetCustomerSession(ctx, req.(*GetCustomerSessionRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_UpdateCustomer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(UpdateCustomerRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).UpdateCustomer(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/UpdateCustomer\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).UpdateCustomer(ctx, req.(*UpdateCustomerRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_UpdateCustomerSubscription_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(UpdateCustomerSubscriptionRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).UpdateCustomerSubscription(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/UpdateCustomerSubscription\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).UpdateCustomerSubscription(ctx, req.(*UpdateCustomerSubscriptionRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_RecreateCustomerSubscription_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(RecreateCustomerSubscriptionRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).RecreateCustomerSubscription(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/RecreateCustomerSubscription\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).RecreateCustomerSubscription(ctx, req.(*RecreateCustomerSubscriptionRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_DeleteCustomer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(DeleteCustomerRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).DeleteCustomer(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/DeleteCustomer\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).DeleteCustomer(ctx, req.(*DeleteCustomerRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetCustomerUsage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetCustomerUsageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetCustomerUsage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/GetCustomerUsage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetCustomerUsage(ctx, req.(*GetCustomerUsageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_IncCustomerUsage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(IncCustomerUsageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).IncCustomerUsage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/IncCustomerUsage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).IncCustomerUsage(ctx, req.(*IncCustomerUsageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ReportCustomerUsage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ReportCustomerUsageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ReportCustomerUsage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/ReportCustomerUsage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ReportCustomerUsage(ctx, req.(*ReportCustomerUsageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Identify_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(IdentifyRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Identify(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/Identify\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Identify(ctx, req.(*IdentifyRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_TrackEvent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(TrackEventRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).TrackEvent(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.billingd.pb.APIService/TrackEvent\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).TrackEvent(ctx, req.(*TrackEventRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nvar _APIService_serviceDesc = grpc.ServiceDesc{\n\tServiceName: \"api.billingd.pb.APIService\",\n\tHandlerType: (*APIServiceServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"CheckHealth\",\n\t\t\tHandler:    _APIService_CheckHealth_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"CreateCustomer\",\n\t\t\tHandler:    _APIService_CreateCustomer_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetCustomer\",\n\t\t\tHandler:    _APIService_GetCustomer_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListDependentCustomers\",\n\t\t\tHandler:    _APIService_ListDependentCustomers_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetCustomerSession\",\n\t\t\tHandler:    _APIService_GetCustomerSession_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"UpdateCustomer\",\n\t\t\tHandler:    _APIService_UpdateCustomer_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"UpdateCustomerSubscription\",\n\t\t\tHandler:    _APIService_UpdateCustomerSubscription_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"RecreateCustomerSubscription\",\n\t\t\tHandler:    _APIService_RecreateCustomerSubscription_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"DeleteCustomer\",\n\t\t\tHandler:    _APIService_DeleteCustomer_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetCustomerUsage\",\n\t\t\tHandler:    _APIService_GetCustomerUsage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"IncCustomerUsage\",\n\t\t\tHandler:    _APIService_IncCustomerUsage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ReportCustomerUsage\",\n\t\t\tHandler:    _APIService_ReportCustomerUsage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Identify\",\n\t\t\tHandler:    _APIService_Identify_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"TrackEvent\",\n\t\t\tHandler:    _APIService_TrackEvent_Handler,\n\t\t},\n\t},\n\tStreams:  []grpc.StreamDesc{},\n\tMetadata: \"api/billingd/pb/billingd.proto\",\n}\n"
  },
  {
    "path": "api/billingd/pb/billingd.proto",
    "content": "syntax = \"proto3\";\npackage api.billingd.pb;\noption go_package = \"github.com/textileio/textile/v2/api/billingd/pb\";\n\nmessage Period {\n    int64 unix_start = 1;\n    int64 unix_end = 2;\n}\n\nmessage Usage {\n    string description = 1;\n    int64 units = 2;\n    int64 total = 3;\n    int64 free = 4;\n    int64 grace = 5;\n    double cost = 6;\n    Period period = 7;\n}\n\nmessage CheckHealthRequest {}\n\nmessage CheckHealthResponse {}\n\nmessage CreateCustomerRequest {\n    Params customer = 1;\n    Params parent = 2;\n\n    message Params {\n        string key = 1;\n        string email = 2;\n        int32 account_type = 3;\n        string username = 4;\n    }\n}\n\nmessage CreateCustomerResponse {\n    string customer_id = 1;\n}\n\nmessage GetCustomerRequest {\n    string key = 1;\n}\n\nmessage GetCustomerResponse {\n    string key = 1;\n    string customer_id = 2;\n    string parent_key = 3;\n    string email = 4;\n    int32 account_type = 5;\n    string account_status = 6;\n    string subscription_status = 7;\n    int64 balance = 8;\n    bool billable = 9;\n    bool delinquent = 10;\n    int64 created_at = 11;\n    int64 grace_period_end = 12;\n\n    Period invoice_period = 13;\n\n    map<string, Usage> daily_usage = 14;\n\n    int64 dependents = 15;\n}\n\nmessage ListDependentCustomersRequest {\n    string key = 1;\n    int64 offset = 2;\n    int64 limit = 3;\n}\n\nmessage ListDependentCustomersResponse {\n    repeated GetCustomerResponse customers = 1;\n    int64 next_offset = 2;\n}\n\nmessage GetCustomerSessionRequest {\n    string key = 1;\n}\n\nmessage GetCustomerSessionResponse {\n    string url = 1;\n}\n\nmessage UpdateCustomerRequest {\n    string customer_id = 1;\n    int64 balance = 2;\n    bool billable = 3;\n    bool delinquent = 4;\n}\n\nmessage UpdateCustomerResponse {}\n\nmessage UpdateCustomerSubscriptionRequest {\n    string customer_id = 1;\n    string status = 2;\n    Period invoice_period = 3;\n}\n\nmessage UpdateCustomerSubscriptionResponse {}\n\nmessage RecreateCustomerSubscriptionRequest {\n    string key = 1;\n}\n\nmessage RecreateCustomerSubscriptionResponse {}\n\nmessage DeleteCustomerRequest {\n    string key = 1;\n}\n\nmessage DeleteCustomerResponse {}\n\nmessage GetCustomerUsageRequest {\n    string key = 1;\n}\n\nmessage GetCustomerUsageResponse {\n    map<string, Usage> usage = 1;\n}\n\nmessage IncCustomerUsageRequest {\n    string key = 1;\n    map<string, int64> product_usage = 2;\n}\n\nmessage IncCustomerUsageResponse {\n    map<string, Usage> daily_usage = 1;\n}\n\nmessage ReportCustomerUsageRequest {\n    string key = 1;\n}\n\nmessage ReportCustomerUsageResponse {}\n\n\nmessage IdentifyRequest {\n    string key = 1;\n    int32 account_type = 2;\n    bool active = 3;\n    string email = 4;\n    map<string, string> properties = 5;\n}\n\nmessage IdentifyResponse {}\n\nmessage TrackEventRequest {\n    string key = 1;\n    int32 account_type = 2;\n    bool active = 3;\n    int32 event = 4;\n    map<string, string> properties = 5;\n}\n\nmessage TrackEventResponse {}\n\nservice APIService {\n    rpc CheckHealth(CheckHealthRequest) returns (CheckHealthResponse) {}\n    rpc CreateCustomer(CreateCustomerRequest) returns (CreateCustomerResponse) {}\n    rpc GetCustomer(GetCustomerRequest) returns (GetCustomerResponse) {}\n    rpc ListDependentCustomers(ListDependentCustomersRequest) returns (ListDependentCustomersResponse) {}\n    rpc GetCustomerSession(GetCustomerSessionRequest) returns (GetCustomerSessionResponse) {}\n    rpc UpdateCustomer(UpdateCustomerRequest) returns (UpdateCustomerResponse) {}\n    rpc UpdateCustomerSubscription(UpdateCustomerSubscriptionRequest) returns (UpdateCustomerSubscriptionResponse) {}\n    rpc RecreateCustomerSubscription(RecreateCustomerSubscriptionRequest) returns (RecreateCustomerSubscriptionResponse) {}\n    rpc DeleteCustomer(DeleteCustomerRequest) returns (DeleteCustomerResponse) {}\n    rpc GetCustomerUsage(GetCustomerUsageRequest) returns (GetCustomerUsageResponse) {}\n    rpc IncCustomerUsage(IncCustomerUsageRequest) returns (IncCustomerUsageResponse) {}\n    rpc ReportCustomerUsage(ReportCustomerUsageRequest) returns (ReportCustomerUsageResponse) {}\n    rpc Identify(IdentifyRequest) returns (IdentifyResponse) {}\n    rpc TrackEvent(TrackEventRequest) returns (TrackEventResponse) {}\n}\n"
  },
  {
    "path": "api/billingd/service/service.go",
    "content": "package service\n\nimport (\n\t\"context\"\n\t\"crypto/tls\"\n\t\"errors\"\n\t\"fmt\"\n\t\"math\"\n\t\"net\"\n\t\"net/http\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/hashicorp/go-multierror\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\tcron \"github.com/robfig/cron/v3\"\n\tstripe \"github.com/stripe/stripe-go/v72\"\n\tstripec \"github.com/stripe/stripe-go/v72/client\"\n\tnutil \"github.com/textileio/go-threads/net/util\"\n\t\"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/billingd/analytics\"\n\t\"github.com/textileio/textile/v2/api/billingd/common\"\n\t\"github.com/textileio/textile/v2/api/billingd/gateway\"\n\t\"github.com/textileio/textile/v2/api/billingd/migrations\"\n\tpb \"github.com/textileio/textile/v2/api/billingd/pb\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n\t\"golang.org/x/net/http2\"\n\t\"google.golang.org/grpc\"\n)\n\nconst (\n\tnumDaysPerMonth    = 30.4167\n\tunitPricePrecision = 1e12\n\n\treporterTimeout = time.Hour\n\n\tdefaultPageSize = 25\n\tmaxPageSize     = 1000\n\n\tmib = 1024 * 1024\n\tgib = 1024 * mib\n\n\tduplicateKeyMsg = \"E11000 duplicate key error\"\n)\n\nvar (\n\tlog = logging.Logger(\"billing\")\n\n\t// ErrCustomerExists indicates a customer already exists.\n\tErrCustomerExists = errors.New(\"customer already exists\")\n)\n\ntype Product struct {\n\tKey                      string            `bson:\"_id\"`\n\tName                     string            `bson:\"name\"`\n\tPrice                    float64           `bson:\"price\"`\n\tPriceType                PriceType         `bson:\"price_type\"`\n\tFreeQuotaSize            int64             `bson:\"free_quota_size\"`\n\tFreeQuotaGracePeriodSize int64             `bson:\"free_quota_grace_period_size\"`\n\tFreeQuotaInterval        FreeQuotaInterval `bson:\"free_quota_interval\"`\n\n\tUnits    string `bson:\"units\"`\n\tUnitSize int64  `bson:\"unit_size\"`\n\n\tFreePriceID string `bson:\"free_price_id\"`\n\tPaidPriceID string `bson:\"paid_price_id\"`\n}\n\ntype PriceType string\n\nconst (\n\tPriceTypeTemporal    PriceType = \"temporal\"\n\tPriceTypeIncremental           = \"incremental\"\n)\n\ntype FreeQuotaInterval string\n\nconst (\n\tFreeQuotaMonthly FreeQuotaInterval = \"monthly\"\n\tFreeQuotaDaily                     = \"daily\"\n)\n\nvar Products = []Product{\n\t{\n\t\tKey:                      \"stored_data\",\n\t\tName:                     \"Stored data\",\n\t\tPrice:                    0.03 / gib,\n\t\tPriceType:                PriceTypeTemporal,\n\t\tFreeQuotaSize:            5 * gib,\n\t\tFreeQuotaGracePeriodSize: 1000 * gib,\n\t\tFreeQuotaInterval:        FreeQuotaMonthly,\n\t\tUnits:                    \"bytes\",\n\t\tUnitSize:                 8 * mib,\n\t},\n\t{\n\t\tKey:                      \"network_egress\",\n\t\tName:                     \"Network egress\",\n\t\tPrice:                    0.1 / gib,\n\t\tPriceType:                PriceTypeIncremental,\n\t\tFreeQuotaSize:            10 * gib,\n\t\tFreeQuotaGracePeriodSize: 1000 * gib,\n\t\tFreeQuotaInterval:        FreeQuotaMonthly,\n\t\tUnits:                    \"bytes\",\n\t\tUnitSize:                 8 * mib,\n\t},\n\t{\n\t\tKey:                      \"instance_reads\",\n\t\tName:                     \"ThreadDB reads\",\n\t\tPrice:                    0.1 / 100000,\n\t\tPriceType:                PriceTypeIncremental,\n\t\tFreeQuotaSize:            50000,\n\t\tFreeQuotaGracePeriodSize: 1000000,\n\t\tFreeQuotaInterval:        FreeQuotaDaily,\n\t\tUnitSize:                 100,\n\t},\n\t{\n\t\tKey:                      \"instance_writes\",\n\t\tName:                     \"ThreadDB writes\",\n\t\tPrice:                    0.2 / 100000,\n\t\tPriceType:                PriceTypeIncremental,\n\t\tFreeQuotaSize:            20000,\n\t\tFreeQuotaGracePeriodSize: 1000000,\n\t\tFreeQuotaInterval:        FreeQuotaDaily,\n\t\tUnitSize:                 100,\n\t},\n}\n\ntype Customer struct {\n\tKey                string          `bson:\"_id\"`\n\tCustomerID         string          `bson:\"customer_id\"`\n\tParentKey          string          `bson:\"parent_key\"`\n\tEmail              string          `bson:\"email\"`\n\tAccountType        mdb.AccountType `bson:\"account_type\"`\n\tSubscriptionStatus string          `bson:\"subscription_status\"`\n\tBalance            int64           `bson:\"balance\"`\n\tBillable           bool            `bson:\"billable\"`\n\tDelinquent         bool            `bson:\"delinquent\"`\n\tCreatedAt          int64           `bson:\"created_at\"`\n\tGracePeriodStart   int64           `bson:\"grace_period_start\"`\n\n\tInvoicePeriod Period `bson:\"invoice_period\"`\n\n\tDailyUsage map[string]Usage `bson:\"daily_usage\"`\n}\n\ntype Period struct {\n\tUnixStart int64 `bson:\"unix_start\"`\n\tUnixEnd   int64 `bson:\"unix_end\"`\n}\n\ntype Usage struct {\n\tTotal int64 `bson:\"total\"`\n\n\tFreeItemID string `bson:\"free_item_id\"`\n\tPaidItemID string `bson:\"paid_item_id\"`\n}\n\nfunc (c *Customer) AccountStatus() string {\n\tif c.ParentKey != \"\" {\n\t\treturn \"dependent\"\n\t} else if c.Delinquent {\n\t\treturn \"delinquent\"\n\t} else if c.Billable {\n\t\treturn \"pay-as-you-go\"\n\t} else {\n\t\treturn \"free-quota-only\"\n\t}\n}\n\ntype Service struct {\n\tconfig     Config\n\tanalytics  *analytics.Client\n\tserver     *grpc.Server\n\tstripe     *stripec.API\n\tgateway    *gateway.Gateway\n\treporter   *cron.Cron\n\tsemaphores *nutil.SemaphorePool\n\n\tpdb *mongo.Collection\n\tcdb *mongo.Collection\n\n\tproducts map[string]Product\n}\n\nvar _ pb.APIServiceServer = (*Service)(nil)\n\nvar _ nutil.SemaphoreKey = (*customerLock)(nil)\n\ntype customerLock string\n\nfunc (l customerLock) Key() string {\n\treturn string(l)\n}\n\ntype Config struct {\n\tListenAddr ma.Multiaddr\n\n\tStripeAPIURL           string\n\tStripeAPIKey           string\n\tStripeSessionReturnURL string\n\tStripeWebhookSecret    string\n\n\tSegmentAPIKey string\n\tSegmentPrefix string\n\n\tDBURI  string\n\tDBName string\n\n\tGatewayHostAddr ma.Multiaddr\n\n\tFreeQuotaGracePeriod time.Duration\n\n\tDebug bool\n}\n\nfunc NewService(ctx context.Context, config Config) (*Service, error) {\n\tif config.Debug {\n\t\tif err := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"billing\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tsc, err := newStripeClient(config.StripeAPIURL, config.StripeAPIKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Configure analytics client\n\tac, err := analytics.NewClient(config.SegmentAPIKey, config.SegmentPrefix, config.Debug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tclient, err := mongo.Connect(ctx, options.Client().ApplyURI(config.DBURI))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdb := client.Database(config.DBName)\n\tif err = migrations.Migrate(db); err != nil {\n\t\treturn nil, err\n\t}\n\n\tpdb := db.Collection(\"products\")\n\tcdb := db.Collection(\"customers\")\n\tindexes, err := cdb.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys:    bson.D{{\"customer_id\", 1}},\n\t\t\tOptions: options.Index().SetUnique(true).SetSparse(true),\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{{\"parent_key\", 1}, {\"created_at\", 1}},\n\t\t},\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfor _, index := range indexes {\n\t\tlog.Infof(\"created index: %s\", index)\n\t}\n\n\ts := &Service{\n\t\tconfig:    config,\n\t\tstripe:    sc,\n\t\tanalytics: ac,\n\t\treporter:  cron.New(),\n\t\tpdb:       pdb,\n\t\tcdb:       cdb,\n\t\tproducts:  make(map[string]Product),\n\t}\n\ts.gateway, err = gateway.NewGateway(gateway.Config{\n\t\tAddr:                config.GatewayHostAddr,\n\t\tAPIAddr:             config.ListenAddr,\n\t\tStripeWebhookSecret: config.StripeWebhookSecret,\n\t\tDebug:               config.Debug,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif _, err := s.reporter.AddFunc(\"@daily\", func() {\n\t\tif err := s.reportUsage(); err != nil {\n\t\t\tlog.Errorf(\"reporting usage: %v\", err)\n\t\t}\n\t}); err != nil {\n\t\treturn nil, err\n\t}\n\n\tfor _, product := range Products {\n\t\tvar doc Product\n\t\tif _, err := pdb.InsertOne(ctx, product); err != nil && strings.Contains(err.Error(), duplicateKeyMsg) {\n\t\t\tr := pdb.FindOne(ctx, bson.M{\"_id\": product.Key})\n\t\t\tif r.Err() != nil {\n\t\t\t\treturn nil, r.Err()\n\t\t\t}\n\t\t\tif err := r.Decode(&doc); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t} else if err == nil {\n\t\t\tdoc = product\n\t\t\tdoc.FreePriceID, err = s.createPrice(sc, doc.Name+\" (free quota)\", 0)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tup := getUnitPrice(doc)\n\t\t\tdoc.PaidPriceID, err = s.createPrice(sc, doc.Name, up)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif _, err = pdb.UpdateOne(ctx, bson.M{\"_id\": doc.Key}, bson.M{\"$set\": doc}); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t} else {\n\t\t\treturn nil, err\n\t\t}\n\t\ts.products[product.Key] = doc\n\t}\n\treturn s, nil\n}\n\nfunc getUnitPrice(product Product) float64 {\n\tvar unitPrice float64\n\tswitch product.FreeQuotaInterval {\n\tcase FreeQuotaMonthly:\n\t\tunitPrice = product.Price * float64(product.UnitSize) / numDaysPerMonth\n\tcase FreeQuotaDaily:\n\t\tunitPrice = product.Price * float64(product.UnitSize)\n\t}\n\treturn math.Floor(unitPrice*unitPricePrecision) / unitPricePrecision\n}\n\nfunc newStripeClient(url, key string) (*stripec.API, error) {\n\ttransport := &http.Transport{\n\t\tTLSClientConfig: &tls.Config{\n\t\t\tInsecureSkipVerify: true,\n\t\t},\n\t}\n\tif err := http2.ConfigureTransport(transport); err != nil {\n\t\treturn nil, err\n\t}\n\tclient := &stripec.API{}\n\tclient.Init(key, &stripe.Backends{\n\t\tAPI: stripe.GetBackendWithConfig(\n\t\t\tstripe.APIBackend,\n\t\t\t&stripe.BackendConfig{\n\t\t\t\tURL: stripe.String(url),\n\t\t\t\tHTTPClient: &http.Client{\n\t\t\t\t\tTransport: transport,\n\t\t\t\t},\n\t\t\t\tLeveledLogger: stripe.DefaultLeveledLogger,\n\t\t\t},\n\t\t),\n\t})\n\treturn client, nil\n}\n\nfunc (s *Service) createPrice(client *stripec.API, productName string, unitPrice float64) (string, error) {\n\tproduct, err := client.Products.New(&stripe.ProductParams{\n\t\tName: stripe.String(productName),\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tprice, err := client.Prices.New(&stripe.PriceParams{\n\t\tCurrency: stripe.String(string(stripe.CurrencyUSD)),\n\t\tProduct:  stripe.String(product.ID),\n\t\tRecurring: &stripe.PriceRecurringParams{\n\t\t\tAggregateUsage: stripe.String(string(stripe.PriceRecurringAggregateUsageSum)),\n\t\t\tInterval:       stripe.String(string(stripe.PriceRecurringIntervalMonth)),\n\t\t\tIntervalCount:  stripe.Int64(1),\n\t\t\tUsageType:      stripe.String(string(stripe.PriceRecurringUsageTypeMetered)),\n\t\t},\n\t\tTiers: []*stripe.PriceTierParams{\n\t\t\t{\n\t\t\t\tUpToInf:           stripe.Bool(true),\n\t\t\t\tUnitAmountDecimal: stripe.Float64(unitPrice),\n\t\t\t},\n\t\t},\n\t\tTiersMode:     stripe.String(string(stripe.PriceTiersModeGraduated)),\n\t\tBillingScheme: stripe.String(string(stripe.PriceBillingSchemeTiered)),\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn price.ID, nil\n}\n\nfunc (s *Service) Start() error {\n\ts.server = grpc.NewServer()\n\ttarget, err := util.TCPAddrFromMultiAddr(s.config.ListenAddr)\n\tif err != nil {\n\t\treturn err\n\t}\n\tlistener, err := net.Listen(\"tcp\", target)\n\tif err != nil {\n\t\treturn err\n\t}\n\ts.semaphores = nutil.NewSemaphorePool(1)\n\tgo func() {\n\t\tpb.RegisterAPIServiceServer(s.server, s)\n\t\tif err := s.server.Serve(listener); err != nil && !errors.Is(err, grpc.ErrServerStopped) {\n\t\t\tlog.Errorf(\"serve error: %v\", err)\n\t\t}\n\t}()\n\ts.gateway.Start()\n\ts.reporter.Start()\n\treturn nil\n}\n\nfunc (s *Service) Stop() error {\n\trctx := s.reporter.Stop()\n\t<-rctx.Done()\n\tlog.Info(\"reporter was shutdown\")\n\n\ts.semaphores.Stop()\n\tlog.Info(\"locking customers\")\n\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second*5)\n\tdefer cancel()\n\tif err := s.gateway.Stop(); err != nil {\n\t\treturn err\n\t}\n\n\tstopped := make(chan struct{})\n\tgo func() {\n\t\ts.server.GracefulStop()\n\t\tclose(stopped)\n\t}()\n\ttimer := time.NewTimer(10 * time.Second)\n\tselect {\n\tcase <-timer.C:\n\t\ts.server.Stop()\n\tcase <-stopped:\n\t\ttimer.Stop()\n\t}\n\tlog.Info(\"gRPC was shutdown\")\n\n\treturn s.cdb.Database().Client().Disconnect(ctx)\n}\n\nfunc (s *Service) CheckHealth(_ context.Context, _ *pb.CheckHealthRequest) (*pb.CheckHealthResponse, error) {\n\tlog.Debugf(\"health check okay\")\n\treturn &pb.CheckHealthResponse{}, nil\n}\n\nfunc (s *Service) CreateCustomer(ctx context.Context, req *pb.CreateCustomerRequest) (\n\t*pb.CreateCustomerResponse, error) {\n\tvar parentKey string\n\tif req.Parent != nil {\n\t\tif _, err := s.createCustomer(ctx, req.Parent, \"\"); err != nil &&\n\t\t\t!errors.Is(err, ErrCustomerExists) {\n\t\t\treturn nil, err\n\t\t}\n\t\tparentKey = req.Parent.Key\n\t}\n\tcus, err := s.createCustomer(ctx, req.Customer, parentKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.CreateCustomerResponse{\n\t\tCustomerId: cus.CustomerID,\n\t}, nil\n}\n\nfunc (s *Service) createCustomer(\n\tctx context.Context,\n\tparams *pb.CreateCustomerRequest_Params,\n\tparentKey string,\n) (*Customer, error) {\n\tlck := s.semaphores.Get(customerLock(params.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tdoc, err := s.getCustomer(ctx, \"_id\", params.Key)\n\tif err != nil && !errors.Is(err, mongo.ErrNoDocuments) {\n\t\treturn nil, err\n\t} else if err == nil {\n\t\treturn nil, ErrCustomerExists\n\t}\n\n\tcustomer, err := s.stripe.Customers.New(&stripe.CustomerParams{\n\t\tEmail: stripe.String(params.Email),\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tdoc = &Customer{\n\t\tKey:         params.Key,\n\t\tCustomerID:  customer.ID,\n\t\tParentKey:   parentKey,\n\t\tEmail:       params.Email,\n\t\tAccountType: mdb.AccountType(params.AccountType),\n\t\tCreatedAt:   time.Now().Unix(),\n\t}\n\tif err := s.createSubscription(doc); err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := s.cdb.InsertOne(ctx, doc); err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"created customer %s with id %s\", doc.Key, doc.CustomerID)\n\n\ts.analytics.Identify(doc.Key, doc.AccountType, false, doc.Email, map[string]interface{}{\n\t\t\"parent_key\":  doc.ParentKey,\n\t\t\"customer_id\": doc.CustomerID,\n\t\t\"username\":    params.Username,\n\t})\n\n\treturn doc, nil\n}\n\nfunc (s *Service) getCustomer(ctx context.Context, key, val string) (*Customer, error) {\n\tr := s.cdb.FindOne(ctx, bson.M{key: val})\n\tif r.Err() != nil {\n\t\treturn nil, r.Err()\n\t}\n\tvar doc Customer\n\treturn &doc, r.Decode(&doc)\n}\n\nfunc (s *Service) createSubscription(cus *Customer) error {\n\tvar prices []*stripe.SubscriptionItemsParams\n\tfor _, p := range s.products {\n\t\tprices = append(prices,\n\t\t\t&stripe.SubscriptionItemsParams{\n\t\t\t\tPrice: stripe.String(p.FreePriceID),\n\t\t\t},\n\t\t\t&stripe.SubscriptionItemsParams{\n\t\t\t\tPrice: stripe.String(p.PaidPriceID),\n\t\t\t},\n\t\t)\n\t}\n\tsub, err := s.stripe.Subscriptions.New(&stripe.SubscriptionParams{\n\t\tCustomer: stripe.String(cus.CustomerID),\n\t\tItems:    prices,\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\tcus.SubscriptionStatus = string(sub.Status)\n\tcus.InvoicePeriod = Period{\n\t\tUnixStart: sub.CurrentPeriodStart,\n\t\tUnixEnd:   sub.CurrentPeriodEnd,\n\t}\n\tif cus.DailyUsage == nil {\n\t\tcus.DailyUsage = make(map[string]Usage)\n\t}\n\tfor _, item := range sub.Items.Data {\n\t\tfor k, p := range s.products {\n\t\t\tvar u Usage\n\t\t\tif _, ok := cus.DailyUsage[k]; ok {\n\t\t\t\tu = cus.DailyUsage[k]\n\t\t\t}\n\t\t\tswitch item.Price.ID {\n\t\t\tcase p.FreePriceID:\n\t\t\t\tu.FreeItemID = item.ID\n\t\t\tcase p.PaidPriceID:\n\t\t\t\tu.PaidItemID = item.ID\n\t\t\tdefault:\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tcus.DailyUsage[k] = u\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (s *Service) GetCustomer(ctx context.Context, req *pb.GetCustomerRequest) (*pb.GetCustomerResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"got customer %s\", doc.Key)\n\treturn s.customerToPb(ctx, doc)\n}\n\nfunc periodToPb(period Period) *pb.Period {\n\treturn &pb.Period{\n\t\tUnixStart: period.UnixStart,\n\t\tUnixEnd:   period.UnixEnd,\n\t}\n}\n\nfunc (s *Service) dailyUsageToPb(usage map[string]Usage) map[string]*pb.Usage {\n\tstart, end := getCurrentDayBounds()\n\tres := make(map[string]*pb.Usage)\n\tfor k, u := range usage {\n\t\tif product, ok := s.products[k]; ok {\n\t\t\tres[k] = getUsage(product, u.Total, Period{UnixStart: start, UnixEnd: end})\n\t\t}\n\t}\n\treturn res\n}\n\nfunc getCurrentDayBounds() (int64, int64) {\n\tnow := time.Now()\n\tstart := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local)\n\tend := time.Date(now.Year(), now.Month(), now.Day(), 24, 0, 0, 0, time.Local)\n\treturn start.Unix(), end.Unix()\n}\n\nfunc getCost(product Product, paidUnits int64) float64 {\n\tif paidUnits > 0 {\n\t\treturn float64(paidUnits) * getUnitPrice(product)\n\t}\n\treturn 0\n}\n\nfunc getUsage(product Product, total int64, period Period) *pb.Usage {\n\tvar (\n\t\tfreeUnits, paidUnits = getUnits(product, total)\n\t\tfree                 = product.FreeQuotaSize - total\n\t\tgrace                = product.FreeQuotaGracePeriodSize - total\n\t)\n\tif free < 0 {\n\t\tfree = 0\n\t}\n\tif grace < 0 {\n\t\tgrace = 0\n\t}\n\treturn &pb.Usage{\n\t\tDescription: product.Name,\n\t\tUnits:       freeUnits + paidUnits,\n\t\tTotal:       total,\n\t\tFree:        free,\n\t\tGrace:       grace,\n\t\tCost:        getCost(product, paidUnits),\n\t\tPeriod:      periodToPb(period),\n\t}\n}\n\nfunc getUnits(product Product, total int64) (freeUnits, paidUnits int64) {\n\tvar freeSize, paidSize int64\n\tif total > product.FreeQuotaSize {\n\t\tfreeSize = product.FreeQuotaSize\n\t\tpaidSize = total - product.FreeQuotaSize\n\t} else {\n\t\tfreeSize = total\n\t}\n\tfreeUnits = int64(math.Round(float64(freeSize) / float64(product.UnitSize)))\n\tpaidUnits = int64(math.Round(float64(paidSize) / float64(product.UnitSize)))\n\treturn\n}\n\nfunc addProductToSummary(summary map[string]interface{}, product Product, total int64) {\n\t_, paidUnits := getUnits(product, total)\n\tcost := getCost(product, paidUnits)\n\tsummary[product.Key+\"_name\"] = product.Name\n\tif product.Units != \"\" {\n\t\tsummary[product.Key+\"_units\"] = product.Units\n\t}\n\tsummary[product.Key+\"_free_quota_size\"] = product.FreeQuotaSize\n\tsummary[product.Key+\"_total\"] = total\n\tsummary[product.Key+\"_cost\"] = cost\n}\n\nfunc (s *Service) getSummary(cus *Customer, deps int64) map[string]interface{} {\n\tsummary := map[string]interface{}{\n\t\t\"account_status\":       cus.AccountStatus(),\n\t\t\"billable\":             cus.Billable,\n\t\t\"delinquent\":           cus.Delinquent,\n\t\t\"grace_period_start\":   s.analytics.FormatUnix(cus.GracePeriodStart),\n\t\t\"invoice_period_end\":   s.analytics.FormatUnix(cus.InvoicePeriod.UnixEnd),\n\t\t\"invoice_period_start\": s.analytics.FormatUnix(cus.InvoicePeriod.UnixStart),\n\t\t\"subscription_status\":  cus.SubscriptionStatus,\n\t}\n\tif cus.GracePeriodStart > 0 {\n\t\tsummary[\"grace_period_end\"] = s.analytics.FormatUnix(cus.GracePeriodStart + int64(s.config.FreeQuotaGracePeriod.Seconds()))\n\t}\n\tif deps > 0 {\n\t\tsummary[\"dependents\"] = deps\n\t}\n\treturn summary\n}\n\nfunc (s *Service) customerToPb(ctx context.Context, doc *Customer) (*pb.GetCustomerResponse, error) {\n\tvar (\n\t\tdeps   int64\n\t\tparent *Customer\n\t\terr    error\n\t)\n\tif doc.ParentKey != \"\" {\n\t\tparent, err = s.getCustomer(ctx, \"_id\", doc.ParentKey)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t} else {\n\t\tdeps, err = s.cdb.CountDocuments(ctx, bson.M{\"parent_key\": doc.Key})\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tvar (\n\t\tgracePeriodStart   int64\n\t\tsubscriptionStatus string\n\t\tbillable           bool\n\t\tdelinquent         bool\n\t\tdailyUsage         map[string]*pb.Usage\n\t)\n\tif parent != nil {\n\t\tgracePeriodStart = parent.GracePeriodStart\n\t\tsubscriptionStatus = parent.SubscriptionStatus\n\t\tbillable = parent.Billable\n\t\tdelinquent = parent.Delinquent\n\t\tdailyUsage = s.dailyUsageToPb(parent.DailyUsage)\n\t} else {\n\t\tgracePeriodStart = doc.GracePeriodStart\n\t\tsubscriptionStatus = doc.SubscriptionStatus\n\t\tbillable = doc.Billable\n\t\tdelinquent = doc.Delinquent\n\t\tdailyUsage = s.dailyUsageToPb(doc.DailyUsage)\n\t}\n\n\tvar gracePeriodEnd int64\n\tif gracePeriodStart > 0 {\n\t\tgracePeriodEnd = gracePeriodStart + int64(s.config.FreeQuotaGracePeriod.Seconds())\n\t}\n\treturn &pb.GetCustomerResponse{\n\t\tKey:                doc.Key,\n\t\tCustomerId:         doc.CustomerID,\n\t\tParentKey:          doc.ParentKey,\n\t\tEmail:              doc.Email,\n\t\tAccountType:        int32(doc.AccountType),\n\t\tAccountStatus:      doc.AccountStatus(),\n\t\tSubscriptionStatus: subscriptionStatus,\n\t\tBalance:            doc.Balance,\n\t\tBillable:           billable,\n\t\tDelinquent:         delinquent,\n\t\tCreatedAt:          doc.CreatedAt,\n\t\tGracePeriodEnd:     gracePeriodEnd,\n\t\tInvoicePeriod:      periodToPb(doc.InvoicePeriod),\n\t\tDailyUsage:         dailyUsage,\n\t\tDependents:         deps,\n\t}, nil\n}\n\nfunc (s *Service) GetCustomerSession(ctx context.Context, req *pb.GetCustomerSessionRequest) (\n\t*pb.GetCustomerSessionResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif doc.ParentKey != \"\" {\n\t\treturn nil, fmt.Errorf(\"customer %s is a dependent; billing not permitted\", doc.CustomerID)\n\t}\n\n\tsession, err := s.stripe.BillingPortalSessions.New(&stripe.BillingPortalSessionParams{\n\t\tCustomer:  stripe.String(doc.CustomerID),\n\t\tReturnURL: stripe.String(s.config.StripeSessionReturnURL),\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.GetCustomerSessionResponse{\n\t\tUrl: session.URL,\n\t}, nil\n}\n\nfunc (s *Service) ListDependentCustomers(ctx context.Context, req *pb.ListDependentCustomersRequest) (\n\t*pb.ListDependentCustomersResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfilter := bson.M{\"parent_key\": doc.Key}\n\tif req.Offset > 0 {\n\t\tfilter[\"created_at\"] = bson.M{\"$gt\": req.Offset}\n\t}\n\topts := &options.FindOptions{}\n\tif req.Limit > 0 {\n\t\tif req.Limit > maxPageSize {\n\t\t\treturn nil, fmt.Errorf(\"maximum limit is %d\", maxPageSize)\n\t\t}\n\t\topts.SetLimit(req.Limit)\n\t} else {\n\t\topts.SetLimit(defaultPageSize)\n\t}\n\tcursor, err := s.cdb.Find(ctx, filter, opts)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar list []*pb.GetCustomerResponse\n\tfor cursor.Next(ctx) {\n\t\tvar doc Customer\n\t\tif err := cursor.Decode(&doc); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tcus, err := s.customerToPb(ctx, &doc)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tlist = append(list, cus)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\tvar next int64\n\tif len(list) > 0 {\n\t\tnext = list[len(list)-1].CreatedAt\n\t}\n\tlog.Debugf(\"listed %d customers\", len(list))\n\treturn &pb.ListDependentCustomersResponse{\n\t\tCustomers:  list,\n\t\tNextOffset: next,\n\t}, nil\n}\n\nfunc (s *Service) UpdateCustomer(ctx context.Context, req *pb.UpdateCustomerRequest) (\n\t*pb.UpdateCustomerResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"customer_id\", req.CustomerId)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif doc.ParentKey != \"\" && req.Billable == true {\n\t\treturn nil, fmt.Errorf(\"customer %s is a dependent; billing not permitted\", doc.CustomerID)\n\t}\n\n\tlck := s.semaphores.Get(customerLock(doc.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tif _, err := s.cdb.UpdateOne(ctx, bson.M{\"_id\": doc.Key}, bson.M{\n\t\t\"$set\": bson.M{\"balance\": req.Balance, \"billable\": req.Billable, \"delinquent\": req.Delinquent},\n\t}); err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"updated customer %s\", doc.Key)\n\treturn &pb.UpdateCustomerResponse{}, nil\n}\n\nfunc (s *Service) UpdateCustomerSubscription(ctx context.Context, req *pb.UpdateCustomerSubscriptionRequest) (\n\t*pb.UpdateCustomerSubscriptionResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"customer_id\", req.CustomerId)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlck := s.semaphores.Get(customerLock(doc.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tupdate := bson.M{\n\t\t\"subscription_status\":       req.Status,\n\t\t\"invoice_period.unix_start\": req.InvoicePeriod.UnixStart,\n\t\t\"invoice_period.unix_end\":   req.InvoicePeriod.UnixEnd,\n\t}\n\tif doc.InvoicePeriod.UnixEnd < req.InvoicePeriod.UnixEnd {\n\t\tfor k := range doc.DailyUsage {\n\t\t\tif product, ok := s.products[k]; ok {\n\t\t\t\tif product.FreeQuotaInterval == FreeQuotaMonthly &&\n\t\t\t\t\tproduct.PriceType == PriceTypeIncremental {\n\t\t\t\t\tupdate[\"daily_usage.\"+k+\".total\"] = 0\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tif _, err := s.cdb.UpdateOne(ctx, bson.M{\"_id\": doc.Key}, bson.M{\"$set\": update}); err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"updated subscription with status '%s' for %s\", req.Status, doc.Key)\n\treturn &pb.UpdateCustomerSubscriptionResponse{}, nil\n}\n\nfunc (s *Service) RecreateCustomerSubscription(ctx context.Context, req *pb.RecreateCustomerSubscriptionRequest) (\n\t*pb.RecreateCustomerSubscriptionResponse, error) {\n\tlck := s.semaphores.Get(customerLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif err := common.StatusCheck(doc.SubscriptionStatus); err == nil {\n\t\treturn nil, common.ErrSubscriptionExists\n\t} else if !errors.Is(err, common.ErrSubscriptionCanceled) {\n\t\treturn nil, err\n\t}\n\tif err := s.createSubscription(doc); err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := s.cdb.UpdateOne(ctx, bson.M{\"_id\": req.Key}, bson.M{\n\t\t\"$set\": bson.M{\n\t\t\t\"subscription_status\": doc.SubscriptionStatus,\n\t\t\t\"invoice_period\":      doc.InvoicePeriod,\n\t\t\t\"daily_usage\":         doc.DailyUsage,\n\t\t}}); err != nil {\n\t\treturn nil, err\n\t}\n\n\tlog.Debugf(\"recreated subscription for %s\", req.Key)\n\treturn &pb.RecreateCustomerSubscriptionResponse{}, nil\n}\n\nfunc (s *Service) DeleteCustomer(ctx context.Context, req *pb.DeleteCustomerRequest) (\n\t*pb.DeleteCustomerResponse, error) {\n\tlck := s.semaphores.Get(customerLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := s.stripe.Customers.Del(doc.CustomerID, nil); err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := s.cdb.DeleteOne(ctx, bson.M{\"_id\": req.Key}); err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"deleted customer %s\", req.Key)\n\treturn &pb.DeleteCustomerResponse{}, nil\n}\n\nfunc (s *Service) GetCustomerUsage(\n\tctx context.Context,\n\treq *pb.GetCustomerUsageRequest,\n) (*pb.GetCustomerUsageResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tusage := make(map[string]*pb.Usage)\n\tfor k, u := range doc.DailyUsage {\n\t\tif product, ok := s.products[k]; ok {\n\t\t\t// Add current day unreported usage\n\t\t\ttotal := u.Total\n\t\t\t// Get reported usage over the current invoice period\n\t\t\tif product.FreeQuotaInterval == FreeQuotaDaily &&\n\t\t\t\tproduct.PriceType == PriceTypeIncremental {\n\t\t\t\tfree, err := s.getPeriodUsageItem(u.FreeItemID)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tpaid, err := s.getPeriodUsageItem(u.PaidItemID)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\t// Hack: Stipe is recording reported units * 100, so divide here to compensate\n\t\t\t\ttotal += (free.TotalUsage/100 + paid.TotalUsage/100) * product.UnitSize\n\t\t\t}\n\t\t\tusage[k] = getUsage(product, total, doc.InvoicePeriod)\n\t\t}\n\t}\n\treturn &pb.GetCustomerUsageResponse{\n\t\tUsage: usage,\n\t}, nil\n}\n\nfunc (s *Service) getPeriodUsageItem(id string) (sum *stripe.UsageRecordSummary, err error) {\n\tparams := &stripe.UsageRecordSummaryListParams{\n\t\tSubscriptionItem: stripe.String(id),\n\t}\n\tparams.Filters.AddFilter(\"limit\", \"\", \"1\")\n\tparams.Single = true\n\ti := s.stripe.UsageRecordSummaries.List(params)\n\tfor i.Next() {\n\t\tsum = i.UsageRecordSummary()\n\t}\n\tif i.Err() != nil {\n\t\treturn nil, i.Err()\n\t}\n\tif sum != nil && sum.Period != nil {\n\t\treturn sum, nil\n\t}\n\treturn nil, fmt.Errorf(\"subscription item %s not found\", id)\n}\n\nfunc (s *Service) IncCustomerUsage(\n\tctx context.Context,\n\treq *pb.IncCustomerUsageRequest,\n) (*pb.IncCustomerUsageResponse, error) {\n\treturn s.handleCustomerUsage(ctx, req.Key, req)\n}\n\nfunc (s *Service) handleCustomerUsage(\n\tctx context.Context,\n\tkey string,\n\treq *pb.IncCustomerUsageRequest,\n) (*pb.IncCustomerUsageResponse, error) {\n\tlck := s.semaphores.Get(customerLock(key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tcus, err := s.getCustomer(ctx, \"_id\", key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar parentErr error\n\tif cus.ParentKey != \"\" {\n\t\t_, parentErr = s.handleCustomerUsage(ctx, cus.ParentKey, req)\n\t\t// Continue recording usage on the child, we'll return this error at the end\n\t} else {\n\t\tif err := common.StatusCheck(cus.SubscriptionStatus); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tres := &pb.IncCustomerUsageResponse{\n\t\tDailyUsage: make(map[string]*pb.Usage),\n\t}\n\tmerr := &multierror.Error{}\n\tfor k, inc := range req.ProductUsage {\n\t\tif product, ok := s.products[k]; ok && inc != 0 {\n\t\t\tusage, err := s.handleUsage(ctx, cus, product, inc)\n\t\t\tmerr = multierror.Append(merr, err)\n\t\t\tif usage != nil {\n\t\t\t\tlog.Debugf(\"%s %s: total=%d free=%d\", cus.Key, k, usage.Total, usage.Free)\n\t\t\t\tres.DailyUsage[k] = usage\n\t\t\t}\n\t\t}\n\t}\n\n\t// Response is still valid when err is not nil because we always track usage even\n\t// if it resulted in an overage. This is because usage is reported _after_ it's used.\n\tif err := merr.ErrorOrNil(); err != nil {\n\t\treturn res, err\n\t}\n\treturn res, parentErr\n}\n\nfunc (s *Service) handleUsage(ctx context.Context, cus *Customer, product Product, incSize int64) (*pb.Usage, error) {\n\tusage, ok := cus.DailyUsage[product.Key]\n\tif !ok {\n\t\treturn nil, nil\n\t}\n\ttotal := usage.Total + incSize\n\tif total < 0 {\n\t\tlog.Warnf(\"negative %s detected: total=%d inc=%d)\", product.Key, total, incSize)\n\t\ttotal = 0\n\t}\n\tupdate := bson.M{\"daily_usage.\" + product.Key + \".total\": total}\n\n\tvar err error\n\tif total > product.FreeQuotaSize && !cus.Billable && cus.ParentKey == \"\" {\n\t\tnow := time.Now().Unix()\n\t\tif cus.GracePeriodStart == 0 {\n\t\t\tcus.GracePeriodStart = now\n\t\t\tupdate[\"grace_period_start\"] = cus.GracePeriodStart\n\t\t\tsummary := s.getSummary(cus, 0)\n\t\t\taddProductToSummary(summary, product, total)\n\t\t\ts.analytics.TrackEvent(cus.Key, cus.AccountType, false, analytics.GracePeriodStart, nil)\n\t\t}\n\t\tdeadline := cus.GracePeriodStart + int64(s.config.FreeQuotaGracePeriod.Seconds())\n\t\tif now >= deadline {\n\t\t\tsummary := s.getSummary(cus, 0)\n\t\t\taddProductToSummary(summary, product, total)\n\t\t\ts.analytics.TrackEvent(cus.Key, cus.AccountType, false, analytics.GracePeriodEnd, nil)\n\t\t\terr = fmt.Errorf(\"%w for %s\", common.ErrExceedsFreeQuota, product.Key)\n\t\t}\n\t}\n\tif _, err := s.cdb.UpdateOne(ctx, bson.M{\"_id\": cus.Key}, bson.M{\"$set\": update}); err != nil {\n\t\treturn nil, err\n\t}\n\tstart, end := getCurrentDayBounds()\n\treturn getUsage(product, total, Period{UnixStart: start, UnixEnd: end}), err\n}\n\nfunc (s *Service) ReportCustomerUsage(\n\tctx context.Context,\n\treq *pb.ReportCustomerUsageRequest,\n) (*pb.ReportCustomerUsageResponse, error) {\n\tdoc, err := s.getCustomer(ctx, \"_id\", req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif err := s.reportCustomerUsage(ctx, doc); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.ReportCustomerUsageResponse{}, nil\n}\n\nfunc (s *Service) reportUsage() error {\n\tctx, cancel := context.WithTimeout(context.Background(), reporterTimeout)\n\tdefer cancel()\n\tcursor, err := s.cdb.Find(ctx, bson.M{})\n\tif err != nil {\n\t\treturn fmt.Errorf(\"finding customers: %v\", err)\n\t}\n\tdefer cursor.Close(ctx)\n\tfor cursor.Next(ctx) {\n\t\tvar doc Customer\n\t\tif err := cursor.Decode(&doc); err != nil {\n\t\t\treturn fmt.Errorf(\"decoding customer: %v\", err)\n\t\t}\n\t\tif err := s.reportCustomerUsage(ctx, &doc); err != nil {\n\t\t\treturn fmt.Errorf(\"reporting customer usage: %v\", err)\n\t\t}\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn fmt.Errorf(\"cursor error: %v\", err)\n\t}\n\treturn nil\n}\n\nfunc (s *Service) reportCustomerUsage(ctx context.Context, cus *Customer) error {\n\tdeps, err := s.cdb.CountDocuments(ctx, bson.M{\"parent_key\": cus.Key})\n\tif err != nil {\n\t\treturn err\n\t}\n\tsummary := s.getSummary(cus, deps)\n\n\tfor k, usage := range cus.DailyUsage {\n\t\tif product, ok := s.products[k]; ok {\n\t\t\tif err := s.reportUnits(product, usage, cus.ParentKey); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\taddProductToSummary(summary, product, usage.Total)\n\t\t\tlog.Debugf(\"reported usage for %s: %s=%d\", cus.Key, k, usage.Total)\n\t\t\tif product.FreeQuotaInterval == FreeQuotaDaily &&\n\t\t\t\tproduct.PriceType == PriceTypeIncremental {\n\t\t\t\tif _, err := s.cdb.UpdateOne(ctx, bson.M{\"_id\": cus.Key}, bson.M{\n\t\t\t\t\t\"$set\": bson.M{\"daily_usage.\" + k + \".total\": 0},\n\t\t\t\t}); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tlog.Warn(\"%s has invalid product key: %s\", cus.Key, k)\n\t\t}\n\t}\n\ts.analytics.Identify(cus.Key, cus.AccountType, false, \"\", summary)\n\treturn nil\n}\n\n// reportUnits sends daily product units to Stripe for aggregation and invoicing.\n// Hack fix: Report units * 100 since the immutable unit price used to calculate\n// unit price is in dollars, and the Stripe API expects cents.\nfunc (s *Service) reportUnits(product Product, usage Usage, parentKey string) error {\n\tfreeUnits, paidUnits := getUnits(product, usage.Total)\n\tif parentKey != \"\" {\n\t\tfreeUnits += paidUnits\n\t\tpaidUnits = 0\n\t}\n\tif freeUnits > 0 {\n\t\tif _, err := s.stripe.UsageRecords.New(&stripe.UsageRecordParams{\n\t\t\tSubscriptionItem: stripe.String(usage.FreeItemID),\n\t\t\tQuantity:         stripe.Int64(freeUnits * 100),\n\t\t\tTimestamp:        stripe.Int64(time.Now().Unix()),\n\t\t\tAction:           stripe.String(stripe.UsageRecordActionIncrement),\n\t\t}); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif paidUnits > 0 {\n\t\tif _, err := s.stripe.UsageRecords.New(&stripe.UsageRecordParams{\n\t\t\tSubscriptionItem: stripe.String(usage.PaidItemID),\n\t\t\tQuantity:         stripe.Int64(paidUnits * 100),\n\t\t\tTimestamp:        stripe.Int64(time.Now().Unix()),\n\t\t\tAction:           stripe.String(stripe.UsageRecordActionIncrement),\n\t\t}); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// Identify creates or updates the user traits\nfunc (s *Service) Identify(_ context.Context, req *pb.IdentifyRequest) (*pb.IdentifyResponse, error) {\n\tprops := map[string]interface{}{}\n\tfor k, v := range req.Properties {\n\t\tprops[k] = v\n\t}\n\ts.analytics.Identify(\n\t\treq.Key,\n\t\tmdb.AccountType(req.AccountType),\n\t\treq.Active,\n\t\treq.Email,\n\t\tprops,\n\t)\n\treturn &pb.IdentifyResponse{}, nil\n}\n\n// TrackEvent records a new event\nfunc (s *Service) TrackEvent(_ context.Context, req *pb.TrackEventRequest) (*pb.TrackEventResponse, error) {\n\ts.analytics.TrackEvent(\n\t\treq.Key,\n\t\tmdb.AccountType(req.AccountType),\n\t\treq.Active,\n\t\tanalytics.Event(req.Event),\n\t\treq.Properties,\n\t)\n\treturn &pb.TrackEventResponse{}, nil\n}\n"
  },
  {
    "path": "api/bucketsd/client/client.go",
    "content": "package client\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"sync\"\n\t\"sync/atomic\"\n\n\t\"github.com/gogo/status\"\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n)\n\nconst (\n\t// chunkSize for add file requests.\n\tchunkSize = 1024 * 32\n)\n\nvar (\n\t// ErrPushPathQueueClosed indicates the push path is or was closed.\n\tErrPushPathQueueClosed = errors.New(\"push path queue is closed\")\n)\n\n// Client provides the client api.\ntype Client struct {\n\tc    pb.APIServiceClient\n\tconn *grpc.ClientConn\n}\n\n// NewClient starts the client.\nfunc NewClient(target string, opts ...grpc.DialOption) (*Client, error) {\n\tconn, err := grpc.Dial(target, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Client{\n\t\tc:    pb.NewAPIServiceClient(conn),\n\t\tconn: conn,\n\t}, nil\n}\n\n// Close closes the client's grpc connection and cancels any active requests.\nfunc (c *Client) Close() error {\n\treturn c.conn.Close()\n}\n\n// Create initializes a new bucket.\n// The bucket name is only meant to help identify a bucket in a UI and is not unique.\nfunc (c *Client) Create(ctx context.Context, opts ...CreateOption) (*pb.CreateResponse, error) {\n\targs := &createOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tvar strCid string\n\tif args.fromCid.Defined() {\n\t\tstrCid = args.fromCid.String()\n\t}\n\treturn c.c.Create(ctx, &pb.CreateRequest{\n\t\tName:         args.name,\n\t\tPrivate:      args.private,\n\t\tBootstrapCid: strCid,\n\t\tUnfreeze:     args.unfreeze,\n\t})\n}\n\n// Root returns the bucket root.\nfunc (c *Client) Root(ctx context.Context, key string) (*pb.RootResponse, error) {\n\treturn c.c.Root(ctx, &pb.RootRequest{\n\t\tKey: key,\n\t})\n}\n\n// Links returns a list of bucket path URL links.\nfunc (c *Client) Links(ctx context.Context, key, pth string) (*pb.LinksResponse, error) {\n\treturn c.c.Links(ctx, &pb.LinksRequest{\n\t\tKey:  key,\n\t\tPath: filepath.ToSlash(pth),\n\t})\n}\n\n// List returns a list of all bucket roots.\nfunc (c *Client) List(ctx context.Context) (*pb.ListResponse, error) {\n\treturn c.c.List(ctx, &pb.ListRequest{})\n}\n\n// ListIpfsPath returns items at a particular path in a UnixFS path living in the IPFS network.\nfunc (c *Client) ListIpfsPath(ctx context.Context, pth path.Path) (*pb.ListIpfsPathResponse, error) {\n\treturn c.c.ListIpfsPath(ctx, &pb.ListIpfsPathRequest{Path: pth.String()})\n}\n\n// ListPath returns information about a bucket path.\nfunc (c *Client) ListPath(ctx context.Context, key, pth string) (*pb.ListPathResponse, error) {\n\treturn c.c.ListPath(ctx, &pb.ListPathRequest{\n\t\tKey:  key,\n\t\tPath: filepath.ToSlash(pth),\n\t})\n}\n\n// SetPath set a particular path to an existing IPFS UnixFS DAG.\nfunc (c *Client) SetPath(ctx context.Context, key, pth string, remoteCid cid.Cid) (*pb.SetPathResponse, error) {\n\treturn c.c.SetPath(ctx, &pb.SetPathRequest{\n\t\tKey:  key,\n\t\tPath: filepath.ToSlash(pth),\n\t\tCid:  remoteCid.String(),\n\t})\n}\n\n// MovePath moves a particular path to another path in the existing IPFS UnixFS DAG.\nfunc (c *Client) MovePath(ctx context.Context, key, pth string, dest string) error {\n\t_, err := c.c.MovePath(ctx, &pb.MovePathRequest{\n\t\tKey:      key,\n\t\tFromPath: filepath.ToSlash(pth),\n\t\tToPath:   filepath.ToSlash(dest),\n\t})\n\treturn err\n}\n\ntype pushPathResult struct {\n\tpath path.Resolved\n\troot path.Resolved\n\terr  error\n}\n\n// PushPath pushes a file to a bucket path.\n// This will return the resolved path and the bucket's new root path.\nfunc (c *Client) PushPath(\n\tctx context.Context,\n\tkey, pth string,\n\treader io.Reader,\n\topts ...Option,\n) (result path.Resolved, root path.Resolved, err error) {\n\targs := &options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tif args.progress != nil {\n\t\tdefer close(args.progress)\n\t}\n\n\tstream, err := c.c.PushPath(ctx)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\tvar xr string\n\tif args.root != nil {\n\t\txr = args.root.String()\n\t}\n\tif err = stream.Send(&pb.PushPathRequest{\n\t\tPayload: &pb.PushPathRequest_Header_{\n\t\t\tHeader: &pb.PushPathRequest_Header{\n\t\t\t\tKey:  key,\n\t\t\t\tPath: filepath.ToSlash(pth),\n\t\t\t\tRoot: xr,\n\t\t\t},\n\t\t},\n\t}); err != nil {\n\t\treturn nil, nil, err\n\t}\n\n\twaitCh := make(chan pushPathResult)\n\tgo func() {\n\t\tdefer close(waitCh)\n\t\tfor {\n\t\t\trep, err := stream.Recv()\n\t\t\tif err == io.EOF {\n\t\t\t\treturn\n\t\t\t} else if err != nil {\n\t\t\t\twaitCh <- pushPathResult{err: err}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif rep.Event.Path != \"\" {\n\t\t\t\tid, err := cid.Parse(rep.Event.Path)\n\t\t\t\tif err != nil {\n\t\t\t\t\twaitCh <- pushPathResult{err: err}\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tr, err := util.NewResolvedPath(rep.Event.Root.Path)\n\t\t\t\tif err != nil {\n\t\t\t\t\twaitCh <- pushPathResult{err: err}\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\twaitCh <- pushPathResult{\n\t\t\t\t\tpath: path.IpfsPath(id),\n\t\t\t\t\troot: r,\n\t\t\t\t}\n\t\t\t} else if args.progress != nil {\n\t\t\t\targs.progress <- rep.Event.Bytes\n\t\t\t}\n\t\t}\n\t}()\n\n\tend := func(err error) error {\n\t\tif err := stream.CloseSend(); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn err\n\t}\n\n\tbuf := make([]byte, chunkSize)\n\tfor {\n\t\tn, err := reader.Read(buf)\n\t\tif n > 0 {\n\t\t\tif err := stream.Send(&pb.PushPathRequest{\n\t\t\t\tPayload: &pb.PushPathRequest_Chunk{\n\t\t\t\t\tChunk: buf[:n],\n\t\t\t\t},\n\t\t\t}); err == io.EOF {\n\t\t\t\tbreak\n\t\t\t} else if err != nil {\n\t\t\t\treturn nil, nil, end(err)\n\t\t\t}\n\t\t} else if err == io.EOF {\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn nil, nil, end(err)\n\t\t}\n\t}\n\tif err := end(nil); err != nil {\n\t\treturn nil, nil, err\n\t}\n\tres := <-waitCh\n\treturn res.path, res.root, res.err\n}\n\n// PushPathsResult contains the result of a Push.\ntype PushPathsResult struct {\n\tPath   string\n\tCid    cid.Cid\n\tSize   int64\n\tPinned int64\n\tRoot   path.Resolved\n\n\terr error\n}\n\n// PushPathsQueue handles PushPath input and output.\ntype PushPathsQueue struct {\n\t// Current contains the current push result.\n\tCurrent PushPathsResult\n\n\tq           []pushPath\n\tlen         int\n\tstartCh     chan []string\n\tinCh        chan pushPath\n\tinWaitCh    chan struct{}\n\toutCh       chan PushPathsResult\n\tstarted     bool\n\tstopped     bool\n\tcloseFunc   func() error\n\tclosed      bool\n\tcloseWaitCh chan error\n\n\tsize     int64\n\tcomplete int64\n\n\tlk sync.Mutex\n\twg sync.WaitGroup\n}\n\ntype pushPath struct {\n\tpath string\n\tr    func() (io.ReadCloser, error)\n}\n\n// AddFile adds a file to the queue.\n// pth is the location relative to the bucket root at which to insert the file, e.g., \"/path/to/mybone.jpg\".\n// name is the location of the file on the local filesystem, e.g., \"/Users/clyde/Downloads/mybone.jpg\".\nfunc (c *PushPathsQueue) AddFile(pth, name string) error {\n\tc.lk.Lock()\n\tdefer c.lk.Unlock()\n\n\tif c.closed {\n\t\treturn ErrPushPathQueueClosed\n\t}\n\tif c.started {\n\t\treturn errors.New(\"cannot call AddFile after Next\")\n\t}\n\n\tf, err := os.Open(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tinfo, err := f.Stat()\n\tif err != nil {\n\t\tf.Close()\n\t\treturn err\n\t}\n\n\tatomic.AddInt64(&c.size, info.Size())\n\tf.Close()\n\tc.q = append(c.q, pushPath{\n\t\tpath: filepath.ToSlash(pth),\n\t\tr: func() (io.ReadCloser, error) {\n\t\t\treturn os.Open(name)\n\t\t},\n\t})\n\treturn nil\n}\n\n// AddReader adds a reader to the queue.\n// pth is the location relative to the bucket root at which to insert the file, e.g., \"/path/to/mybone.jpg\".\n// r is the reader to read from.\n// size is the size of the reader. Use of the WithProgress option is not recommended if the reader size is unknown.\nfunc (c *PushPathsQueue) AddReader(pth string, r io.Reader, size int64) error {\n\tc.lk.Lock()\n\tdefer c.lk.Unlock()\n\n\tif c.closed {\n\t\treturn ErrPushPathQueueClosed\n\t}\n\tif c.started {\n\t\treturn errors.New(\"cannot call AddReader after Next\")\n\t}\n\n\tatomic.AddInt64(&c.size, size)\n\tc.q = append(c.q, pushPath{\n\t\tpath: filepath.ToSlash(pth),\n\t\tr:    func() (io.ReadCloser, error) { return ioutil.NopCloser(r), nil },\n\t})\n\treturn nil\n}\n\n// Size returns the queue size in bytes.\nfunc (c *PushPathsQueue) Size() int64 {\n\treturn atomic.LoadInt64(&c.size)\n}\n\n// Complete returns the portion of the queue size that has been pushed.\nfunc (c *PushPathsQueue) Complete() int64 {\n\treturn atomic.LoadInt64(&c.complete)\n}\n\n// Next blocks while the queue is open, returning true when a result is ready.\n// Use Current to access the result.\nfunc (c *PushPathsQueue) Next() (ok bool) {\n\tc.lk.Lock()\n\tif c.closed {\n\t\tc.lk.Unlock()\n\t\treturn false\n\t}\n\n\tif !c.started {\n\t\tc.started = true\n\t\tc.len = len(c.q)\n\t\tc.start()\n\t}\n\tif c.len == 0 {\n\t\tc.lk.Unlock()\n\t\treturn false\n\t}\n\n\tc.lk.Unlock()\n\tselect {\n\tcase r, k := <-c.outCh:\n\t\tif !k {\n\t\t\treturn false\n\t\t}\n\t\tc.lk.Lock()\n\t\tc.len--\n\t\tc.Current = r\n\t\tc.lk.Unlock()\n\t\treturn true\n\t}\n}\n\nfunc (c *PushPathsQueue) start() {\n\tgo func() {\n\t\tdefer close(c.inWaitCh)\n\n\t\tvar paths []string\n\t\tc.lk.Lock()\n\t\tfor _, p := range c.q {\n\t\t\tpaths = append(paths, p.path)\n\t\t}\n\t\tc.lk.Unlock()\n\t\tc.startCh <- paths\n\n\t\tfor {\n\t\t\tc.lk.Lock()\n\t\t\tif c.closed {\n\t\t\t\tc.q = nil\n\t\t\t\tc.lk.Unlock()\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif len(c.q) == 0 {\n\t\t\t\tc.lk.Unlock()\n\t\t\t\treturn\n\t\t\t}\n\t\t\tvar p pushPath\n\t\t\tp, c.q = c.q[0], c.q[1:]\n\t\t\tc.lk.Unlock()\n\t\t\tc.inCh <- p\n\t\t}\n\t}()\n}\n\nfunc (c *PushPathsQueue) stop() {\n\tc.lk.Lock()\n\tdefer c.lk.Unlock()\n\tc.stopped = true\n}\n\n// Err returns the current queue error.\n// Call this method before checking the value of Current.\nfunc (c *PushPathsQueue) Err() error {\n\tc.lk.Lock()\n\tdefer c.lk.Unlock()\n\treturn c.Current.err\n}\n\n// Close the queue.\n// Failure to close may lead to unpredictable bucket state.\nfunc (c *PushPathsQueue) Close() error {\n\tc.lk.Lock()\n\tif c.closed {\n\t\tc.lk.Unlock()\n\t\treturn nil\n\t}\n\tc.closed = true\n\tc.lk.Unlock()\n\n\t<-c.inWaitCh\n\tclose(c.inCh)\n\n\tc.lk.Lock()\n\twait := !c.stopped\n\tc.lk.Unlock()\n\tif err := c.closeFunc(); err != nil {\n\t\treturn err\n\t}\n\tif wait {\n\t\treturn <-c.closeWaitCh\n\t}\n\treturn nil\n}\n\n// PushPaths returns a queue that can be used to push multiple files and readers to bucket paths.\n// See PushPathQueue.AddFile and PushPathsQueue.AddReader for more.\nfunc (c *Client) PushPaths(ctx context.Context, key string, opts ...Option) (*PushPathsQueue, error) {\n\targs := &options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\n\tstream, err := c.c.PushPaths(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar xr string\n\tif args.root != nil {\n\t\txr = args.root.String()\n\t}\n\n\tq := &PushPathsQueue{\n\t\tstartCh:  make(chan []string),\n\t\tinCh:     make(chan pushPath),\n\t\tinWaitCh: make(chan struct{}),\n\t\toutCh:    make(chan PushPathsResult),\n\t\tcloseFunc: func() error {\n\t\t\treturn stream.CloseSend()\n\t\t},\n\t\tcloseWaitCh: make(chan error, 1),\n\t}\n\n\tgo func() {\n\t\tdefer q.stop()\n\t\tfor {\n\t\t\trep, err := stream.Recv()\n\t\t\tif err == io.EOF {\n\t\t\t\tq.closeWaitCh <- nil\n\t\t\t\treturn\n\t\t\t} else if err != nil {\n\t\t\t\tif strings.Contains(err.Error(), \"STREAM_CLOSED\") {\n\t\t\t\t\terr = ErrPushPathQueueClosed\n\t\t\t\t}\n\t\t\t\tq.lk.Lock()\n\t\t\t\tclosed := q.closed\n\t\t\t\tq.lk.Unlock()\n\t\t\t\tif !closed {\n\t\t\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\t\t}\n\t\t\t\tq.closeWaitCh <- err\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tid, err := cid.Parse(rep.Cid)\n\t\t\tif err != nil {\n\t\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\t\treturn\n\t\t\t}\n\t\t\troot, err := util.NewResolvedPath(rep.Root.Path)\n\t\t\tif err != nil {\n\t\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tq.outCh <- PushPathsResult{\n\t\t\t\tPath:   rep.Path,\n\t\t\t\tCid:    id,\n\t\t\t\tSize:   rep.Size,\n\t\t\t\tPinned: rep.Pinned,\n\t\t\t\tRoot:   root,\n\t\t\t}\n\t\t}\n\t}()\n\n\tsendChunk := func(c *pb.PushPathsRequest_Chunk) bool {\n\t\tq.lk.Lock()\n\t\tif q.closed {\n\t\t\tq.lk.Unlock()\n\t\t\treturn false\n\t\t}\n\t\tq.lk.Unlock()\n\n\t\tif err := stream.Send(&pb.PushPathsRequest{\n\t\t\tPayload: &pb.PushPathsRequest_Chunk_{\n\t\t\t\tChunk: c,\n\t\t\t},\n\t\t}); err == io.EOF {\n\t\t\treturn false // error is waiting to be received with stream.Recv above\n\t\t} else if err != nil {\n\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\treturn false\n\t\t}\n\t\tatomic.AddInt64(&q.complete, int64(len(c.Data)))\n\n\t\tq.lk.Lock()\n\t\tif !q.closed && args.progress != nil {\n\t\t\targs.progress <- atomic.LoadInt64(&q.complete)\n\t\t}\n\t\tq.lk.Unlock()\n\t\treturn true\n\t}\n\n\tgo func() {\n\tloop:\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase paths := <-q.startCh:\n\t\t\t\tif len(paths) > 0 {\n\t\t\t\t\tif err := stream.Send(&pb.PushPathsRequest{\n\t\t\t\t\t\tPayload: &pb.PushPathsRequest_Header_{\n\t\t\t\t\t\t\tHeader: &pb.PushPathsRequest_Header{\n\t\t\t\t\t\t\t\tKey:   key,\n\t\t\t\t\t\t\t\tRoot:  xr,\n\t\t\t\t\t\t\t\tPaths: paths,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t}); err != nil {\n\t\t\t\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\t\t\t\tbreak loop\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tcase p, ok := <-q.inCh:\n\t\t\t\tif !ok {\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, err := p.r()\n\t\t\t\tif err != nil {\n\t\t\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tbuf := make([]byte, chunkSize)\n\t\t\t\tfor {\n\t\t\t\t\tn, err := r.Read(buf)\n\t\t\t\t\tc := &pb.PushPathsRequest_Chunk{\n\t\t\t\t\t\tPath: p.path,\n\t\t\t\t\t}\n\t\t\t\t\tif n > 0 {\n\t\t\t\t\t\tc.Data = make([]byte, n)\n\t\t\t\t\t\tcopy(c.Data, buf[:n])\n\t\t\t\t\t\tif ok := sendChunk(c); !ok {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if err == io.EOF {\n\t\t\t\t\t\tsendChunk(c)\n\t\t\t\t\t\tbreak\n\t\t\t\t\t} else if err != nil {\n\t\t\t\t\t\tq.outCh <- PushPathsResult{err: err}\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tr.Close()\n\t\t\t}\n\t\t}\n\t}()\n\n\treturn q, nil\n}\n\n// PullPath pulls the bucket path, writing it to writer if it's a file.\nfunc (c *Client) PullPath(ctx context.Context, key, pth string, writer io.Writer, opts ...Option) error {\n\targs := &options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\n\tpth = filepath.ToSlash(pth)\n\tstream, err := c.c.PullPath(ctx, &pb.PullPathRequest{\n\t\tKey:  key,\n\t\tPath: pth,\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tvar written int64\n\tfor {\n\t\trep, err := stream.Recv()\n\t\tif err == io.EOF {\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t\tn, err := writer.Write(rep.Chunk)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\twritten += int64(n)\n\t\tif args.progress != nil {\n\t\t\targs.progress <- written\n\t\t}\n\t}\n\treturn nil\n}\n\n// PullIpfsPath pulls the path from a remote UnixFS dag, writing it to writer if it's a file.\nfunc (c *Client) PullIpfsPath(ctx context.Context, pth path.Path, writer io.Writer, opts ...Option) error {\n\targs := &options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\n\tstream, err := c.c.PullIpfsPath(ctx, &pb.PullIpfsPathRequest{\n\t\tPath: pth.String(),\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tvar written int64\n\tfor {\n\t\trep, err := stream.Recv()\n\t\tif err == io.EOF {\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t\tn, err := writer.Write(rep.Chunk)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\twritten += int64(n)\n\t\tif args.progress != nil {\n\t\t\targs.progress <- written\n\t\t}\n\t}\n\treturn nil\n}\n\n// Remove removes an entire bucket.\n// Files and directories will be unpinned.\nfunc (c *Client) Remove(ctx context.Context, key string) error {\n\t_, err := c.c.Remove(ctx, &pb.RemoveRequest{\n\t\tKey: key,\n\t})\n\treturn err\n}\n\n// RemovePath removes the file or directory at path.\n// Files and directories will be unpinned.\nfunc (c *Client) RemovePath(ctx context.Context, key, pth string, opts ...Option) (path.Resolved, error) {\n\targs := &options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tvar xr string\n\tif args.root != nil {\n\t\txr = args.root.String()\n\t}\n\tres, err := c.c.RemovePath(ctx, &pb.RemovePathRequest{\n\t\tKey:  key,\n\t\tPath: filepath.ToSlash(pth),\n\t\tRoot: xr,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn util.NewResolvedPath(res.Root.Path)\n}\n\n// PushPathAccessRoles updates path access roles by merging the pushed roles with existing roles.\n// roles is a map of string marshaled public keys to path roles. A non-nil error is returned\n// if the map keys are not unmarshalable to public keys.\n// To delete a role for a public key, set its value to buckets.None.\nfunc (c *Client) PushPathAccessRoles(ctx context.Context, key, pth string, roles map[string]buckets.Role) error {\n\tpbroles, err := buckets.RolesToPb(roles)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = c.c.PushPathAccessRoles(ctx, &pb.PushPathAccessRolesRequest{\n\t\tKey:   key,\n\t\tPath:  filepath.ToSlash(pth),\n\t\tRoles: pbroles,\n\t})\n\treturn err\n}\n\n// PullPathAccessRoles returns access roles for a path.\nfunc (c *Client) PullPathAccessRoles(ctx context.Context, key, pth string) (map[string]buckets.Role, error) {\n\tres, err := c.c.PullPathAccessRoles(ctx, &pb.PullPathAccessRolesRequest{\n\t\tKey:  key,\n\t\tPath: filepath.ToSlash(pth),\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn buckets.RolesFromPb(res.Roles)\n}\n\n// DefaultArchiveConfig gets the default archive config for the specified Bucket.\nfunc (c *Client) DefaultArchiveConfig(ctx context.Context, key string) (*pb.ArchiveConfig, error) {\n\tres, err := c.c.DefaultArchiveConfig(ctx, &pb.DefaultArchiveConfigRequest{Key: key})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn res.ArchiveConfig, nil\n}\n\n// SetDefaultArchiveConfig sets the default archive config for the specified Bucket.\nfunc (c *Client) SetDefaultArchiveConfig(ctx context.Context, key string, config *pb.ArchiveConfig) error {\n\treq := &pb.SetDefaultArchiveConfigRequest{\n\t\tKey:           key,\n\t\tArchiveConfig: config,\n\t}\n\t_, err := c.c.SetDefaultArchiveConfig(ctx, req)\n\treturn err\n}\n\n// Archive creates a Filecoin bucket archive via Powergate.\nfunc (c *Client) Archive(ctx context.Context, key string, opts ...ArchiveOption) error {\n\treq := &pb.ArchiveRequest{\n\t\tKey: key,\n\t}\n\tfor _, opt := range opts {\n\t\topt(req)\n\t}\n\t_, err := c.c.Archive(ctx, req)\n\treturn err\n}\n\n// Archives returns information about current and historical archives.\nfunc (c *Client) Archives(ctx context.Context, key string) (*pb.ArchivesResponse, error) {\n\treturn c.c.Archives(ctx, &pb.ArchivesRequest{Key: key})\n}\n\n// ArchiveWatch watches status events from a Filecoin bucket archive.\nfunc (c *Client) ArchiveWatch(ctx context.Context, key string, ch chan<- string) error {\n\tctx, cancel := context.WithCancel(ctx)\n\tdefer cancel()\n\tstream, err := c.c.ArchiveWatch(ctx, &pb.ArchiveWatchRequest{Key: key})\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor {\n\t\treply, err := stream.Recv()\n\t\tif err == io.EOF || status.Code(err) == codes.Canceled {\n\t\t\tbreak\n\t\t}\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tch <- reply.Msg\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "api/bucketsd/client/client_test.go",
    "content": "package client_test\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"crypto/rand\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"sort\"\n\t\"strings\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\tipfsfiles \"github.com/ipfs/go-ipfs-files\"\n\thttpapi \"github.com/ipfs/go-ipfs-http-client\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\ttc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\tc \"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\thc \"github.com/textileio/textile/v2/api/hubd/client\"\n\thubpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\tbucks \"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = apitest.StartServices()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc TestClient_Create(t *testing.T) {\n\tctx, client := setup(t)\n\n\tbuck, err := client.Create(ctx, c.WithName(\"mybuck\"))\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, buck.Root)\n\tassert.NotEmpty(t, buck.Root.Key)\n\tassert.NotEmpty(t, buck.Root.Owner)\n\tassert.NotEmpty(t, buck.Root.Name)\n\tassert.NotEmpty(t, buck.Root.Version)\n\tassert.NotEmpty(t, buck.Root.Path)\n\tassert.NotEmpty(t, buck.Root.Metadata)\n\tassert.NotEmpty(t, buck.Root.CreatedAt)\n\tassert.NotEmpty(t, buck.Root.UpdatedAt)\n\tassert.NotEmpty(t, buck.Links)\n\tassert.NotEmpty(t, buck.Seed)\n\n\tpbuck, err := client.Create(ctx, c.WithName(\"myprivatebuck\"), c.WithPrivate(true))\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, pbuck.Root)\n\tassert.NotEmpty(t, pbuck.Root.Key)\n\tassert.NotEmpty(t, buck.Root.Owner)\n\tassert.NotEmpty(t, pbuck.Root.Name)\n\tassert.NotEmpty(t, buck.Root.Version)\n\tassert.NotEmpty(t, pbuck.Root.Path)\n\tassert.NotEmpty(t, buck.Root.Metadata)\n\tassert.NotEmpty(t, pbuck.Root.CreatedAt)\n\tassert.NotEmpty(t, pbuck.Root.UpdatedAt)\n\tassert.NotEmpty(t, pbuck.Links)\n\tassert.NotEmpty(t, pbuck.Seed)\n}\n\nfunc TestClient_CreateWithCid(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tcreateWithCid(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tcreateWithCid(t, ctx, client, true)\n\t})\n}\n\nfunc createWithCid(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tfile1, err := os.Open(\"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tdefer file1.Close()\n\tfile2, err := os.Open(\"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tdefer file2.Close()\n\n\tipfs, err := httpapi.NewApi(apitest.GetIPFSApiAddr())\n\trequire.NoError(t, err)\n\tp, err := ipfs.Unixfs().Add(\n\t\tctx,\n\t\tipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\"file1.jpg\": ipfsfiles.NewReaderFile(file1),\n\t\t\t\"folder1\": ipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\"file2.jpg\": ipfsfiles.NewReaderFile(file2),\n\t\t\t}),\n\t\t}),\n\t)\n\trequire.NoError(t, err)\n\tinitCid := p.Cid()\n\tbuck, err := client.Create(ctx, c.WithCid(initCid), c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\t// Assert top level bucket.\n\trep, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.True(t, rep.Item.IsDir)\n\ttopLevelNames := make([]string, 3)\n\tfor i, n := range rep.Item.Items {\n\t\ttopLevelNames[i] = n.Name\n\t}\n\tassert.Contains(t, topLevelNames, \"file1.jpg\")\n\tassert.Contains(t, topLevelNames, \"folder1\")\n\n\t// Assert inner directory.\n\trep, err = client.ListPath(ctx, buck.Root.Key, \"folder1\")\n\trequire.NoError(t, err)\n\tassert.True(t, rep.Item.IsDir)\n\tassert.Len(t, rep.Item.Items, 1)\n\tassert.Equal(t, rep.Item.Items[0].Name, \"file2.jpg\")\n}\n\nfunc TestClient_Root(t *testing.T) {\n\tctx, client := setup(t)\n\n\tbuck, err := client.Create(ctx)\n\trequire.NoError(t, err)\n\n\troot, err := client.Root(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, root.Root)\n\tassert.NotEmpty(t, root.Root.Key)\n\tassert.NotEmpty(t, root.Root.Owner)\n\tassert.NotEmpty(t, root.Root.Version)\n\tassert.NotEmpty(t, root.Root.Path)\n\tassert.NotEmpty(t, root.Root.Metadata)\n\tassert.NotEmpty(t, root.Root.CreatedAt)\n\tassert.NotEmpty(t, root.Root.UpdatedAt)\n}\n\nfunc TestClient_Links(t *testing.T) {\n\tctx, client := setup(t)\n\n\tbuck, err := client.Create(ctx)\n\trequire.NoError(t, err)\n\n\tlinks, err := client.Links(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, links.Url)\n\tassert.NotEmpty(t, links.Ipns)\n}\n\nfunc TestClient_List(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"empty\", func(t *testing.T) {\n\t\trep, err := client.List(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, rep.Roots, 0)\n\t})\n\n\tbuck, err := client.Create(ctx)\n\trequire.NoError(t, err)\n\n\tt.Run(\"not empty\", func(t *testing.T) {\n\t\trep, err := client.List(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, rep.Roots, 1)\n\t\tassert.Equal(t, buck.Root.Key, rep.Roots[0].Key)\n\t\tassert.Equal(t, buck.Root.Path, rep.Roots[0].Path)\n\t\tassert.Equal(t, buck.Root.CreatedAt, rep.Roots[0].CreatedAt)\n\t\tassert.Equal(t, buck.Root.UpdatedAt, rep.Roots[0].UpdatedAt)\n\t})\n}\n\nfunc TestClient_ListPath(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tlistPath(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tlistPath(t, ctx, client, true)\n\t})\n}\n\nfunc listPath(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tt.Run(\"empty\", func(t *testing.T) {\n\t\trep, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, rep.Root)\n\t\tassert.True(t, rep.Item.IsDir)\n\t\tassert.Len(t, rep.Item.Items, 1)\n\t})\n\n\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"dir1/file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"dir2/file2.jpg\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t}\n\tq.Close()\n\troot := q.Current.Root\n\n\tt.Run(\"root dir\", func(t *testing.T) {\n\t\trep, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.True(t, rep.Item.IsDir)\n\t\tassert.Len(t, rep.Item.Items, 3)\n\t\tdir1i := sort.Search(len(rep.Item.Items), func(i int) bool {\n\t\t\treturn rep.Item.Items[i].Name == \"dir1\"\n\t\t})\n\t\tassert.True(t, dir1i < len(rep.Item.Items))\n\t\tassert.True(t, rep.Item.Items[dir1i].IsDir)\n\t})\n\n\tt.Run(\"nested dir\", func(t *testing.T) {\n\t\trep, err := client.ListPath(ctx, buck.Root.Key, \"dir1\")\n\t\trequire.NoError(t, err)\n\t\tassert.True(t, rep.Item.IsDir)\n\t\tassert.Len(t, rep.Item.Items, 1)\n\t})\n\n\tt.Run(\"file\", func(t *testing.T) {\n\t\trep, err := client.ListPath(ctx, buck.Root.Key, \"dir1/file1.jpg\")\n\t\trequire.NoError(t, err)\n\t\tassert.True(t, strings.HasSuffix(rep.Item.Path, \"file1.jpg\"))\n\t\tassert.False(t, rep.Item.IsDir)\n\t\tassert.Equal(t, root.String(), rep.Root.Path)\n\t})\n}\n\nfunc TestClient_ListIpfsPath(t *testing.T) {\n\tctx, client := setup(t)\n\n\tfile1, err := os.Open(\"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tdefer file1.Close()\n\tfile2, err := os.Open(\"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tdefer file2.Close()\n\n\tipfs, err := httpapi.NewApi(apitest.GetIPFSApiAddr())\n\trequire.NoError(t, err)\n\tp, err := ipfs.Unixfs().Add(\n\t\tctx,\n\t\tipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\"file1.jpg\": ipfsfiles.NewReaderFile(file1),\n\t\t\t\"folder1\": ipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\"file2.jpg\": ipfsfiles.NewReaderFile(file2),\n\t\t\t}),\n\t\t}),\n\t)\n\trequire.NoError(t, err)\n\n\tr, err := client.ListIpfsPath(ctx, p)\n\trequire.NoError(t, err)\n\trequire.True(t, r.Item.IsDir)\n\trequire.Len(t, r.Item.Items, 2)\n}\n\nfunc TestClient_PushPath(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tpushPath(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tpushPath(t, ctx, client, true)\n\t})\n}\n\nfunc pushPath(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tfile1, err := os.Open(\"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tdefer file1.Close()\n\tprogress1 := make(chan int64)\n\tgo func() {\n\t\tfor p := range progress1 {\n\t\t\tfmt.Println(fmt.Sprintf(\"progress: %d\", p))\n\t\t}\n\t}()\n\tpth1, root1, err := client.PushPath(ctx, buck.Root.Key, \"file1.jpg\", file1, c.WithProgress(progress1))\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, pth1)\n\tassert.NotEmpty(t, root1)\n\n\tfile2, err := os.Open(\"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tdefer file2.Close()\n\tprogress2 := make(chan int64)\n\tgo func() {\n\t\tfor p := range progress2 {\n\t\t\tfmt.Println(fmt.Sprintf(\"progress: %d\", p))\n\t\t}\n\t}()\n\t_, _, err = client.PushPath(ctx, buck.Root.Key, \"path/to/file2.jpg\", file2, c.WithProgress(progress2))\n\trequire.NoError(t, err)\n\n\trep1, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep1.Item.Items, 3)\n\n\t// Try overwriting the path\n\t_, _, err = client.PushPath(ctx, buck.Root.Key, \"path/to/file2.jpg\", strings.NewReader(\"seeya!\"))\n\trequire.NoError(t, err)\n\n\trep2, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep2.Item.Items, 3)\n\n\t// Overwrite the path again, this time replacing a file link with a dir link\n\tfile3, err := os.Open(\"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tdefer file3.Close()\n\t_, _, err = client.PushPath(ctx, buck.Root.Key, \"path/to\", file3)\n\trequire.NoError(t, err)\n\n\trep3, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep3.Item.Items, 3)\n\n\t// Concurrent writes should result in one being rejected due to the fast-forward-only rule\n\troot, err := util.NewResolvedPath(rep3.Root.Path)\n\trequire.NoError(t, err)\n\tvar err1, err2 error\n\tvar wg sync.WaitGroup\n\twg.Add(2)\n\tgo func() {\n\t\t_, _, err1 = client.PushPath(\n\t\t\tctx,\n\t\t\tbuck.Root.Key,\n\t\t\t\"conflict\",\n\t\t\tstrings.NewReader(\"ready, set, go!\"),\n\t\t\tc.WithFastForwardOnly(root),\n\t\t)\n\t\twg.Done()\n\t}()\n\tgo func() {\n\t\t_, _, err2 = client.PushPath(\n\t\t\tctx,\n\t\t\tbuck.Root.Key,\n\t\t\t\"conflict\",\n\t\t\tstrings.NewReader(\"ready, set, go!\"),\n\t\t\tc.WithFastForwardOnly(root),\n\t\t)\n\t\twg.Done()\n\t}()\n\twg.Wait()\n\t// We should have one and only one error\n\tassert.False(t, (err1 != nil && err2 != nil) && (err1 == nil && err2 == nil))\n\tif err1 != nil {\n\t\tassert.True(t, strings.Contains(err1.Error(), \"update is non-fast-forward\"))\n\t} else if err2 != nil {\n\t\tassert.True(t, strings.Contains(err2.Error(), \"update is non-fast-forward\"))\n\t}\n}\n\nfunc TestClient_PushPaths(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tpushPaths(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tpushPaths(t, ctx, client, true)\n\t})\n}\n\nfunc pushPaths(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tprogress1 := make(chan int64)\n\tdefer close(progress1)\n\tgo func() {\n\t\tfor p := range progress1 {\n\t\t\tfmt.Println(fmt.Sprintf(\"progress: %d\", p))\n\t\t}\n\t}()\n\n\tq, err := client.PushPaths(ctx, buck.Root.Key, c.WithProgress(progress1))\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"path/to/file2.jpg\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t\tassert.NotEmpty(t, q.Current.Path)\n\t\tassert.NotEmpty(t, q.Current.Root)\n\t}\n\tq.Close()\n\n\trep1, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep1.Item.Items, 3)\n\n\t// Try overwriting the path\n\tq2, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\tr := strings.NewReader(\"seeya!\")\n\terr = q2.AddReader(\"path/to/file2.jpg\", r, r.Size())\n\trequire.NoError(t, err)\n\tfor q2.Next() {\n\t\trequire.NoError(t, q2.Err())\n\t}\n\tq2.Close()\n\n\trep2, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep2.Item.Items, 3)\n\n\t// Overwrite the path again, this time replacing a file link with a dir link\n\tq3, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q3.AddFile(\"path/to\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tfor q3.Next() {\n\t\trequire.NoError(t, q3.Err())\n\t}\n\tq3.Close()\n\n\trep3, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep3.Item.Items, 3)\n\n\t// Concurrent writes should result in one being rejected due to the fast-forward-only rule\n\troot, err := util.NewResolvedPath(rep3.Root.Path)\n\trequire.NoError(t, err)\n\tvar err1, err2 error\n\tvar wg sync.WaitGroup\n\twg.Add(2)\n\tgo func() {\n\t\tq, err := client.PushPaths(ctx, buck.Root.Key, c.WithFastForwardOnly(root))\n\t\trequire.NoError(t, err)\n\t\terr = q.AddReader(\"conflict\", strings.NewReader(\"ready, set, go!\"), 0)\n\t\trequire.NoError(t, err)\n\t\tfor q.Next() {\n\t\t\terr1 = q.Err()\n\t\t}\n\t\tq.Close()\n\t\twg.Done()\n\t}()\n\tgo func() {\n\t\tq, err := client.PushPaths(ctx, buck.Root.Key, c.WithFastForwardOnly(root))\n\t\trequire.NoError(t, err)\n\t\terr = q.AddReader(\"conflict\", strings.NewReader(\"ready, set, go!\"), 0)\n\t\trequire.NoError(t, err)\n\t\tfor q.Next() {\n\t\t\terr2 = q.Err()\n\t\t}\n\t\tq.Close()\n\t\twg.Done()\n\t}()\n\twg.Wait()\n\t// We should have one and only one error\n\tassert.False(t, (err1 != nil && err2 != nil) && (err1 == nil && err2 == nil))\n\tif err1 != nil {\n\t\tassert.True(t, strings.Contains(err1.Error(), \"update is non-fast-forward\"))\n\t} else if err2 != nil {\n\t\tassert.True(t, strings.Contains(err2.Error(), \"update is non-fast-forward\"))\n\t}\n}\n\nfunc TestClient_PullPath(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tpullPath(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tpullPath(t, ctx, client, true)\n\t})\n}\n\nfunc pullPath(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tfile, err := os.Open(\"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tdefer file.Close()\n\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t}\n\tq.Close()\n\n\ttmp, err := ioutil.TempFile(\"\", \"\")\n\trequire.NoError(t, err)\n\tdefer tmp.Close()\n\n\tprogress := make(chan int64)\n\tgo func() {\n\t\tfor p := range progress {\n\t\t\tfmt.Println(fmt.Sprintf(\"progress: %d\", p))\n\t\t}\n\t}()\n\terr = client.PullPath(ctx, buck.Root.Key, \"file1.jpg\", tmp, c.WithProgress(progress))\n\trequire.NoError(t, err)\n\tinfo, err := tmp.Stat()\n\trequire.NoError(t, err)\n\tfmt.Println(fmt.Sprintf(\"wrote file with size %d\", info.Size()))\n\n\tnote := \"baps!\"\n\tq2, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q2.AddReader(\"one/two/note.txt\", strings.NewReader(note), 0)\n\trequire.NoError(t, err)\n\tfor q2.Next() {\n\t\trequire.NoError(t, q2.Err())\n\t}\n\tq2.Close()\n\n\tvar buf bytes.Buffer\n\terr = client.PullPath(ctx, buck.Root.Key, \"one/two/note.txt\", &buf)\n\trequire.NoError(t, err)\n\tassert.Equal(t, note, buf.String())\n}\n\nfunc TestClient_PullIpfsPath(t *testing.T) {\n\tctx, client := setup(t)\n\n\tfile1, err := os.Open(\"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tdefer file1.Close()\n\tfile2, err := os.Open(\"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tdefer file2.Close()\n\n\tipfs, err := httpapi.NewApi(apitest.GetIPFSApiAddr())\n\trequire.NoError(t, err)\n\tp, err := ipfs.Unixfs().Add(\n\t\tctx,\n\t\tipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\"file1.jpg\": ipfsfiles.NewReaderFile(file1),\n\t\t\t\"folder1\": ipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\"file2.jpg\": ipfsfiles.NewReaderFile(file2),\n\t\t\t}),\n\t\t}),\n\t)\n\trequire.NoError(t, err)\n\n\ttmpFile, err := ioutil.TempFile(\"\", \"\")\n\trequire.NoError(t, err)\n\tdefer tmpFile.Close()\n\tdefer func() { _ = os.Remove(tmpFile.Name()) }()\n\ttmpName := tmpFile.Name()\n\n\terr = client.PullIpfsPath(ctx, path.Join(p, \"folder1/file2.jpg\"), tmpFile)\n\trequire.NoError(t, err)\n\ttmpFile.Close()\n\n\tfile2, err = os.Open(\"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tdefer file2.Close()\n\torigBytes, err := ioutil.ReadAll(file2)\n\trequire.NoError(t, err)\n\ttmpFile, err = os.Open(tmpName)\n\trequire.NoError(t, err)\n\tdefer tmpFile.Close()\n\ttmpBytes, err := ioutil.ReadAll(tmpFile)\n\trequire.NoError(t, err)\n\trequire.True(t, bytes.Equal(origBytes, tmpBytes))\n}\n\nfunc TestClient_SetPath(t *testing.T) {\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tsetPath(t, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tsetPath(t, true)\n\t})\n}\n\nfunc setPath(t *testing.T, private bool) {\n\tinnerPaths := []struct {\n\t\tName string\n\t\tPath string\n\t\t// How many files should be expected at the bucket root\n\t\t// in the first SetHead.\n\t\tNumFilesAtRootFirst int\n\t\t// How many files should be expected at the *imported* Cid\n\t\t// level.\n\t\tNumFilesAtImportedLevelFirst int\n\t\t// How many files should be expected at the bucket root\n\t\t// in the second SetHead.\n\t\tNumFilesAtRootSecond int\n\t\t// How many files should be expected at the *imported* Cid\n\t\t// level.\n\t\tNumFilesAtImportedLevelSecond int\n\t}{\n\t\t{\n\t\t\tName: \"nested\",\n\t\t\tPath: \"nested\",\n\t\t\t// At root level, .seed and nested dir.\n\t\t\tNumFilesAtRootFirst: 2,\n\t\t\t// The first SetHead has one file, and one dir.\n\t\t\tNumFilesAtImportedLevelFirst: 2,\n\t\t\tNumFilesAtRootSecond:         2,\n\t\t\t// The second SetHead only has one file.\n\t\t\tNumFilesAtImportedLevelSecond: 1,\n\t\t},\n\t\t// Edge case, Path is empty. So \"AtRoot\" or \"AtImportedLevel\"\n\t\t// is the same.\n\t\t{\n\t\t\tName:                         \"root\",\n\t\t\tPath:                         \"\",\n\t\t\tNumFilesAtRootFirst:          3,\n\t\t\tNumFilesAtImportedLevelFirst: 3,\n\t\t\t// In both below cases, the files are the .seed\n\t\t\t// and the fileVersion2.jpg.\n\t\t\tNumFilesAtRootSecond:          2,\n\t\t\tNumFilesAtImportedLevelSecond: 2,\n\t\t},\n\t}\n\n\tfor _, innerPath := range innerPaths {\n\t\tt.Run(innerPath.Name, func(t *testing.T) {\n\t\t\tctx, client := setup(t)\n\n\t\t\tfile1, err := os.Open(\"testdata/file1.jpg\")\n\t\t\trequire.NoError(t, err)\n\t\t\tdefer file1.Close()\n\t\t\tfile2, err := os.Open(\"testdata/file2.jpg\")\n\t\t\trequire.NoError(t, err)\n\t\t\tdefer file2.Close()\n\n\t\t\tipfs, err := httpapi.NewApi(apitest.GetIPFSApiAddr())\n\t\t\trequire.NoError(t, err)\n\t\t\tp, err := ipfs.Unixfs().Add(\n\t\t\t\tctx,\n\t\t\t\tipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\t\"file1.jpg\": ipfsfiles.NewReaderFile(file1),\n\t\t\t\t\t\"folder1\": ipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\t\t\"file2.jpg\": ipfsfiles.NewReaderFile(file2),\n\t\t\t\t\t}),\n\t\t\t\t}),\n\t\t\t)\n\t\t\trequire.NoError(t, err)\n\n\t\t\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\t\t\trequire.NoError(t, err)\n\n\t\t\t_, err = client.SetPath(ctx, buck.Root.Key, innerPath.Path, p.Cid())\n\t\t\trequire.NoError(t, err)\n\n\t\t\trep, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\t\t\trequire.NoError(t, err)\n\t\t\tassert.True(t, rep.Item.IsDir)\n\t\t\tassert.Len(t, rep.Item.Items, innerPath.NumFilesAtRootFirst)\n\n\t\t\trep, err = client.ListPath(ctx, buck.Root.Key, innerPath.Path)\n\t\t\trequire.NoError(t, err)\n\t\t\tassert.True(t, rep.Item.IsDir)\n\t\t\tassert.Len(t, rep.Item.Items, innerPath.NumFilesAtImportedLevelFirst)\n\n\t\t\t// SetPath again in the same path, but with a different dag.\n\t\t\t// Should replace what was already under that path.\n\t\t\tfile1, err = os.Open(\"testdata/file1.jpg\")\n\t\t\trequire.NoError(t, err)\n\t\t\tdefer file1.Close()\n\t\t\tp, err = ipfs.Unixfs().Add(\n\t\t\t\tctx,\n\t\t\t\tipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\t\"fileVersion2.jpg\": ipfsfiles.NewReaderFile(file1),\n\t\t\t\t}),\n\t\t\t)\n\t\t\trequire.NoError(t, err)\n\t\t\t_, err = client.SetPath(ctx, buck.Root.Key, innerPath.Path, p.Cid())\n\t\t\trequire.NoError(t, err)\n\n\t\t\trep, err = client.ListPath(ctx, buck.Root.Key, \"\")\n\t\t\trequire.NoError(t, err)\n\t\t\tassert.True(t, rep.Item.IsDir)\n\t\t\tassert.Len(t, rep.Item.Items, innerPath.NumFilesAtRootSecond)\n\n\t\t\trep, err = client.ListPath(ctx, buck.Root.Key, innerPath.Path)\n\t\t\trequire.NoError(t, err)\n\t\t\tassert.True(t, rep.Item.IsDir)\n\t\t\tassert.Len(t, rep.Item.Items, innerPath.NumFilesAtImportedLevelSecond)\n\t\t})\n\t}\n}\n\nfunc TestClient_Move(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tmove(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tmove(t, ctx, client, true)\n\t})\n}\n\nfunc move(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"root.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"a/b/c/file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"a/b/c/file2.jpg\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t}\n\tq.Close()\n\n\t// move a dir into a new path  => a/c\n\terr = client.MovePath(ctx, buck.Root.Key, \"a/b/c\", \"a/c\")\n\trequire.NoError(t, err)\n\t// check source files no longer exists\n\tli, err := client.ListPath(ctx, buck.Root.Key, \"a/b/c\")\n\trequire.Error(t, err)\n\n\t// check source parent remains untouched\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"a/b\")\n\trequire.NoError(t, err)\n\tassert.True(t, li.Item.IsDir)\n\tassert.Len(t, li.Item.Items, 0)\n\n\t// move a dir into an existing path => a/b/c\n\terr = client.MovePath(ctx, buck.Root.Key, \"a/c\", \"a/b\")\n\trequire.NoError(t, err)\n\t// check source dir no longer exists\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"a/c\")\n\trequire.Error(t, err)\n\n\t// check source parent contains all the right children\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"a\")\n\trequire.NoError(t, err)\n\tassert.True(t, li.Item.IsDir)\n\tassert.Len(t, li.Item.Items, 1)\n\n\t// check source parent contains all the right children\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"a/b/c\")\n\trequire.NoError(t, err)\n\tassert.True(t, li.Item.IsDir)\n\tassert.Len(t, li.Item.Items, 2)\n\n\t// move and rename file => a/b/c/file2.jpg + a/b/file3.jpg\n\terr = client.MovePath(ctx, buck.Root.Key, \"a/b/c/file1.jpg\", \"a/b/file3.jpg\")\n\trequire.NoError(t, err)\n\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"a/b/file3.jpg\")\n\trequire.NoError(t, err)\n\tassert.False(t, li.Item.IsDir)\n\tassert.Equal(t, li.Item.Name, \"file3.jpg\")\n\n\t// move a/b/c to root => c\n\terr = client.MovePath(ctx, buck.Root.Key, \"a/b/c\", \"\")\n\trequire.NoError(t, err)\n\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.True(t, li.Item.IsDir)\n\tassert.Len(t, li.Item.Items, 4)\n\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"root.jpg\")\n\trequire.NoError(t, err)\n\n\t// move root should fail\n\terr = client.MovePath(ctx, buck.Root.Key, \"\", \"a\")\n\trequire.Error(t, err, \"source is root directory\")\n\n\tli, err = client.ListPath(ctx, buck.Root.Key, \"a\")\n\trequire.NoError(t, err)\n\tassert.True(t, li.Item.IsDir)\n\tassert.Len(t, li.Item.Items, 1)\n\n\t// move non existant should fail\n\terr = client.MovePath(ctx, buck.Root.Key, \"x\", \"a\")\n\tif private {\n\t\tassert.True(t, strings.Contains(err.Error(), \"could not resolve path\"))\n\t} else {\n\t\tassert.True(t, strings.Contains(err.Error(), \"no link named\"))\n\t}\n}\n\nfunc TestClient_Remove(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tremove(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tremove(t, ctx, client, true)\n\t})\n}\n\nfunc remove(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"again/file2.jpg\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t}\n\tq.Close()\n\n\terr = client.Remove(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\n\t_, err = client.ListPath(ctx, buck.Root.Key, \"again/file2.jpg\")\n\trequire.Error(t, err)\n}\n\nfunc TestClient_RemovePath(t *testing.T) {\n\tctx, client := setup(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tremovePath(t, ctx, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tremovePath(t, ctx, client, true)\n\t})\n}\n\nfunc removePath(t *testing.T, ctx context.Context, client *c.Client, private bool) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"again/file2.jpg\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t}\n\tq.Close()\n\n\tpth, err := client.RemovePath(ctx, buck.Root.Key, \"again/file2.jpg\")\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, pth)\n\t_, err = client.ListPath(ctx, buck.Root.Key, \"again/file2.jpg\")\n\trequire.Error(t, err)\n\trep, err := client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep.Item.Items, 3)\n\n\t_, err = client.RemovePath(ctx, buck.Root.Key, \"again\")\n\trequire.NoError(t, err)\n\t_, err = client.ListPath(ctx, buck.Root.Key, \"again\")\n\trequire.Error(t, err)\n\trep, err = client.ListPath(ctx, buck.Root.Key, \"\")\n\trequire.NoError(t, err)\n\tassert.Len(t, rep.Item.Items, 2)\n}\n\nfunc TestClient_PushPathAccessRoles(t *testing.T) {\n\tctx, userctx, threadsclient, client := setupForUsers(t)\n\n\tt.Run(\"public\", func(t *testing.T) {\n\t\tpushPathAccessRoles(t, ctx, userctx, threadsclient, client, false)\n\t})\n\n\tt.Run(\"private\", func(t *testing.T) {\n\t\tpushPathAccessRoles(t, ctx, userctx, threadsclient, client, true)\n\t})\n}\n\nfunc pushPathAccessRoles(\n\tt *testing.T,\n\tctx context.Context,\n\tuserctx context.Context,\n\tthreadsclient *tc.Client,\n\tclient *c.Client,\n\tprivate bool,\n) {\n\tbuck, err := client.Create(ctx, c.WithPrivate(private))\n\trequire.NoError(t, err)\n\n\tt.Run(\"non-existent path\", func(t *testing.T) {\n\t\t_, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\t\trequire.NoError(t, err)\n\t\treader := thread.NewLibp2pPubKey(pk)\n\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"nothing/here\", map[string]bucks.Role{\n\t\t\treader.String(): bucks.Reader,\n\t\t})\n\t\trequire.Error(t, err)\n\t})\n\n\tt.Run(\"existent path\", func(t *testing.T) {\n\t\tuser1, user1ctx := newUser(t, userctx, threadsclient)\n\n\t\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\terr = q.AddFile(\"file\", \"testdata/file1.jpg\")\n\t\trequire.NoError(t, err)\n\t\tfor q.Next() {\n\t\t\trequire.NoError(t, q.Err())\n\t\t}\n\t\tq.Close()\n\n\t\t// Check initial access (none)\n\t\tcheck := accessCheck{\n\t\t\tKey:  buck.Root.Key,\n\t\t\tPath: \"file\",\n\t\t}\n\t\tcheck.Read = !private // public buckets readable by all\n\t\tcheckAccess(t, user1ctx, client, check)\n\n\t\t// Grant reader\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"file\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.Reader,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheck.Read = true\n\t\tcheckAccess(t, user1ctx, client, check)\n\n\t\t// Grant writer\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"file\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.Writer,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheck.Write = true\n\t\tcheckAccess(t, user1ctx, client, check)\n\n\t\t// Grant admin\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"file\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.Admin,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheck.Admin = true\n\t\tcheckAccess(t, user1ctx, client, check)\n\n\t\t// Ungrant\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"file\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.None,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheck.Read = !private\n\t\tcheck.Write = false\n\t\tcheck.Admin = false\n\t\tcheckAccess(t, user1ctx, client, check)\n\t})\n\n\tt.Run(\"overlapping paths\", func(t *testing.T) {\n\t\tuser1, user1ctx := newUser(t, userctx, threadsclient)\n\t\tuser2, user2ctx := newUser(t, userctx, threadsclient)\n\n\t\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\terr = q.AddFile(\"a/b/f1\", \"testdata/file1.jpg\")\n\t\trequire.NoError(t, err)\n\t\tfor q.Next() {\n\t\t\trequire.NoError(t, q.Err())\n\t\t}\n\t\tq.Close()\n\n\t\tq2, err := client.PushPaths(ctx, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\terr = q2.AddFile(\"a/f2\", \"testdata/file2.jpg\")\n\t\trequire.NoError(t, err)\n\t\tfor q2.Next() {\n\t\t\trequire.NoError(t, q2.Err())\n\t\t}\n\t\tq2.Close()\n\n\t\t// Grant nested tree\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"a/b\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.Writer,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheckAccess(t, user1ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"a/b/f1\",\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\n\t\t// Grant parent of nested tree\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"a\", map[string]bucks.Role{\n\t\t\tuser2.GetPublic().String(): bucks.Writer,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheckAccess(t, user2ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"a/b/f1\",\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\n\t\t// Re-check nested access for user1\n\t\tcheckAccess(t, user1ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"a/b/f1\",\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\n\t\t// Grant root\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"\", map[string]bucks.Role{\n\t\t\tuser2.GetPublic().String(): bucks.Reader,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheckAccess(t, user2ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"a/f2\",\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\n\t\t// Re-check nested access for user1\n\t\tcheckAccess(t, user1ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"a/b/f1\",\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\t})\n\n\tt.Run(\"moving path\", func(t *testing.T) {\n\t\tuser1, user1ctx := newUser(t, userctx, threadsclient)\n\n\t\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\terr = q.AddFile(\"moving/file\", \"testdata/file1.jpg\")\n\t\trequire.NoError(t, err)\n\t\tfor q.Next() {\n\t\t\trequire.NoError(t, q.Err())\n\t\t}\n\t\tq.Close()\n\n\t\t// Check initial access (none)\n\t\tcheck := accessCheck{\n\t\t\tKey:  buck.Root.Key,\n\t\t\tPath: \"moving/file\",\n\t\t}\n\t\tcheck.Read = !private // public buckets readable by all\n\t\tcheckAccess(t, user1ctx, client, check)\n\n\t\t// Grant reader\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"moving/file\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.Writer,\n\t\t})\n\t\trequire.NoError(t, err)\n\t\tcheck.Write = true\n\t\tcheck.Read = true\n\t\tcheckAccess(t, user1ctx, client, check)\n\n\t\t// move the shared file to a new path\n\t\terr = client.MovePath(ctx, buck.Root.Key, \"moving/file\", \"moving/file2\")\n\t\trequire.NoError(t, err)\n\t\tq, err = client.PushPaths(ctx, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\terr = q.AddFile(\"moving/file\", \"testdata/file1.jpg\")\n\t\trequire.NoError(t, err)\n\t\tfor q.Next() {\n\t\t\trequire.NoError(t, q.Err())\n\t\t}\n\t\tq.Close()\n\n\t\t// Permissions reset with move\n\t\tcheckAccess(t, user1ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"moving/file2\",\n\t\t\tAdmin: false,\n\t\t\tRead:  !private,\n\t\t\tWrite: false,\n\t\t})\n\n\t\t// Grant admin at root\n\t\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"moving\", map[string]bucks.Role{\n\t\t\tuser1.GetPublic().String(): bucks.Admin,\n\t\t})\n\t\trequire.NoError(t, err)\n\n\t\t// now user has access to new file again\n\t\tcheckAccess(t, user1ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"moving/file2\",\n\t\t\tAdmin: true,\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\n\t\t// Move file again\n\t\terr = client.MovePath(ctx, buck.Root.Key, \"moving/file2\", \"moving/file3\")\n\t\trequire.NoError(t, err)\n\n\t\t// User still has access to shared file after move\n\t\tcheckAccess(t, user1ctx, client, accessCheck{\n\t\t\tKey:   buck.Root.Key,\n\t\t\tPath:  \"moving/file3\",\n\t\t\tAdmin: true,\n\t\t\tRead:  true,\n\t\t\tWrite: true,\n\t\t})\n\t})\n}\n\ntype accessCheck struct {\n\tKey  string\n\tPath string\n\n\tRead  bool\n\tWrite bool\n\tAdmin bool\n}\n\nfunc checkAccess(t *testing.T, ctx context.Context, client *c.Client, check accessCheck) {\n\t// Check read access\n\tres, err := client.ListPath(ctx, check.Key, check.Path)\n\tif check.Read {\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, res.Item)\n\t} else {\n\t\trequire.Error(t, err)\n\t}\n\n\t// Check write access\n\ttmp, err := ioutil.TempFile(\"\", \"\")\n\trequire.NoError(t, err)\n\tdefer tmp.Close()\n\t_, err = io.CopyN(tmp, rand.Reader, 1024)\n\trequire.NoError(t, err)\n\tq, err := client.PushPaths(ctx, check.Key)\n\trequire.NoError(t, err)\n\terr = q.AddReader(check.Path, tmp, 0)\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\tif check.Write {\n\t\t\trequire.NoError(t, q.Err())\n\t\t} else {\n\t\t\trequire.Error(t, q.Err())\n\t\t}\n\t}\n\tq.Close()\n\n\t// Check admin access (role editing)\n\t_, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = client.PushPathAccessRoles(ctx, check.Key, check.Path, map[string]bucks.Role{\n\t\tthread.NewLibp2pPubKey(pk).String(): bucks.Reader,\n\t})\n\tif check.Admin {\n\t\trequire.NoError(t, err)\n\t} else {\n\t\trequire.Error(t, err)\n\t}\n}\n\nfunc TestClient_PullPathAccessRoles(t *testing.T) {\n\tctx, client := setup(t)\n\n\tbuck, err := client.Create(ctx)\n\trequire.NoError(t, err)\n\tq, err := client.PushPaths(ctx, buck.Root.Key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(\"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t}\n\tq.Close()\n\n\troles, err := client.PullPathAccessRoles(ctx, buck.Root.Key, \"file1.jpg\")\n\trequire.NoError(t, err)\n\tassert.Len(t, roles, 0)\n\n\t_, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\treader := thread.NewLibp2pPubKey(pk)\n\troles = map[string]bucks.Role{\n\t\treader.String(): bucks.Reader,\n\t}\n\terr = client.PushPathAccessRoles(ctx, buck.Root.Key, \"file1.jpg\", roles)\n\trequire.NoError(t, err)\n\n\troles, err = client.PullPathAccessRoles(ctx, buck.Root.Key, \"file1.jpg\")\n\trequire.NoError(t, err)\n\tassert.Len(t, roles, 1)\n}\n\nfunc TestClose(t *testing.T) {\n\tconf := apitest.MakeTextile(t)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\tclient, err := c.NewClient(target, grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{}))\n\trequire.NoError(t, err)\n\n\tt.Run(\"test close\", func(t *testing.T) {\n\t\terr := client.Close()\n\t\trequire.NoError(t, err)\n\t})\n}\n\nfunc setup(t *testing.T) (context.Context, *c.Client) {\n\tbconf := apitest.DefaultBillingConfig(t)\n\tapitest.MakeBillingWithConfig(t, bconf)\n\n\tconf := apitest.DefaultTextileConfig(t)\n\tbillingApi, err := tutil.TCPAddrFromMultiAddr(bconf.ListenAddr)\n\trequire.NoError(t, err)\n\tconf.AddrBillingAPI = billingApi\n\tctx, _, _, client := setupWithConf(t, conf)\n\treturn ctx, client\n}\n\nfunc setupForUsers(t *testing.T) (context.Context, context.Context, *tc.Client, *c.Client) {\n\tconf := apitest.DefaultTextileConfig(t)\n\tctx, hubclient, threadsclient, client := setupWithConf(t, conf)\n\n\tres, err := hubclient.CreateKey(ctx, hubpb.KeyType_KEY_TYPE_USER, true)\n\trequire.NoError(t, err)\n\tuserctx := common.NewAPIKeyContext(context.Background(), res.KeyInfo.Key)\n\tuserctx, err = common.CreateAPISigContext(userctx, time.Now().Add(time.Hour), res.KeyInfo.Secret)\n\trequire.NoError(t, err)\n\n\tid, ok := common.ThreadIDFromContext(ctx)\n\trequire.True(t, ok)\n\tuserctx = common.NewThreadIDContext(userctx, id)\n\n\treturn ctx, userctx, threadsclient, client\n}\n\nfunc setupWithConf(t *testing.T, conf core.Config) (context.Context, *hc.Client, *tc.Client, *c.Client) {\n\tapitest.MakeTextileWithConfig(t, conf)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\tclient, err := c.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\thubclient, err := hc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsclient, err := tc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\n\tuser := apitest.Signup(t, hubclient, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tid := thread.NewIDV1(thread.Raw, 32)\n\tctx = common.NewThreadNameContext(ctx, \"buckets\")\n\terr = threadsclient.NewDB(ctx, id)\n\trequire.NoError(t, err)\n\tctx = common.NewThreadIDContext(ctx, id)\n\n\tt.Cleanup(func() {\n\t\terr := client.Close()\n\t\trequire.NoError(t, err)\n\t})\n\treturn ctx, hubclient, threadsclient, client\n}\n\nfunc newUser(t *testing.T, ctx context.Context, threadsclient *tc.Client) (thread.Identity, context.Context) {\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tidentity := thread.NewLibp2pIdentity(sk)\n\ttok, err := threadsclient.GetToken(ctx, identity)\n\trequire.NoError(t, err)\n\treturn identity, thread.NewTokenContext(ctx, tok)\n}\n"
  },
  {
    "path": "api/bucketsd/client/options.go",
    "content": "package client\n\nimport (\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n)\n\ntype createOptions struct {\n\tname     string\n\tprivate  bool\n\tfromCid  cid.Cid\n\tunfreeze bool\n}\n\ntype CreateOption func(*createOptions)\n\n// WithName sets a name for the bucket.\nfunc WithName(name string) CreateOption {\n\treturn func(args *createOptions) {\n\t\targs.name = name\n\t}\n}\n\n// WithPrivate specifies that an encryption key will be used for the bucket.\nfunc WithPrivate(private bool) CreateOption {\n\treturn func(args *createOptions) {\n\t\targs.private = private\n\t}\n}\n\n// WithCid indicates that an inited bucket should be boostraped\n// with a particular UnixFS DAG.\nfunc WithCid(c cid.Cid) CreateOption {\n\treturn func(args *createOptions) {\n\t\targs.fromCid = c\n\t}\n}\n\n// WithUnfreeze indicates that an inited bucket should be boostraped\n// from an imported archive.\nfunc WithUnfreeze(enabled bool) CreateOption {\n\treturn func(args *createOptions) {\n\t\targs.unfreeze = enabled\n\t}\n}\n\ntype options struct {\n\troot     path.Resolved\n\tprogress chan<- int64\n}\n\ntype Option func(*options)\n\n// WithFastForwardOnly instructs the remote to reject non-fast-forward updates by comparing root with the remote.\nfunc WithFastForwardOnly(root path.Resolved) Option {\n\treturn func(args *options) {\n\t\targs.root = root\n\t}\n}\n\n// WithProgress writes progress updates to the given channel.\nfunc WithProgress(ch chan<- int64) Option {\n\treturn func(args *options) {\n\t\targs.progress = ch\n\t}\n}\n\ntype ArchiveOption func(*pb.ArchiveRequest)\n\n// WithArchiveConfig allows you to provide a custom ArchiveConfig for a single call to Archive.\nfunc WithArchiveConfig(config *pb.ArchiveConfig) ArchiveOption {\n\treturn func(req *pb.ArchiveRequest) {\n\t\treq.ArchiveConfig = config\n\t}\n}\n\n// WithSkipAutomaticVerifiedDeal allows to skip backend logic to automatically make\n// a verified deal for the archive.\nfunc WithSkipAutomaticVerifiedDeal(enabled bool) ArchiveOption {\n\treturn func(req *pb.ArchiveRequest) {\n\t\treq.SkipAutomaticVerifiedDeal = enabled\n\t}\n}\n"
  },
  {
    "path": "api/bucketsd/pb/bucketsd.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.23.0\n// \tprotoc        v3.13.0\n// source: api/bucketsd/pb/bucketsd.proto\n\npackage pb\n\nimport (\n\tcontext \"context\"\n\tproto \"github.com/golang/protobuf/proto\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\n// This is a compile-time assertion that a sufficiently up-to-date version\n// of the legacy proto package is being used.\nconst _ = proto.ProtoPackageIsVersion4\n\ntype PathAccessRole int32\n\nconst (\n\tPathAccessRole_PATH_ACCESS_ROLE_UNSPECIFIED PathAccessRole = 0\n\tPathAccessRole_PATH_ACCESS_ROLE_READER      PathAccessRole = 1\n\tPathAccessRole_PATH_ACCESS_ROLE_WRITER      PathAccessRole = 2\n\tPathAccessRole_PATH_ACCESS_ROLE_ADMIN       PathAccessRole = 3\n)\n\n// Enum value maps for PathAccessRole.\nvar (\n\tPathAccessRole_name = map[int32]string{\n\t\t0: \"PATH_ACCESS_ROLE_UNSPECIFIED\",\n\t\t1: \"PATH_ACCESS_ROLE_READER\",\n\t\t2: \"PATH_ACCESS_ROLE_WRITER\",\n\t\t3: \"PATH_ACCESS_ROLE_ADMIN\",\n\t}\n\tPathAccessRole_value = map[string]int32{\n\t\t\"PATH_ACCESS_ROLE_UNSPECIFIED\": 0,\n\t\t\"PATH_ACCESS_ROLE_READER\":      1,\n\t\t\"PATH_ACCESS_ROLE_WRITER\":      2,\n\t\t\"PATH_ACCESS_ROLE_ADMIN\":       3,\n\t}\n)\n\nfunc (x PathAccessRole) Enum() *PathAccessRole {\n\tp := new(PathAccessRole)\n\t*p = x\n\treturn p\n}\n\nfunc (x PathAccessRole) String() string {\n\treturn protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))\n}\n\nfunc (PathAccessRole) Descriptor() protoreflect.EnumDescriptor {\n\treturn file_api_bucketsd_pb_bucketsd_proto_enumTypes[0].Descriptor()\n}\n\nfunc (PathAccessRole) Type() protoreflect.EnumType {\n\treturn &file_api_bucketsd_pb_bucketsd_proto_enumTypes[0]\n}\n\nfunc (x PathAccessRole) Number() protoreflect.EnumNumber {\n\treturn protoreflect.EnumNumber(x)\n}\n\n// Deprecated: Use PathAccessRole.Descriptor instead.\nfunc (PathAccessRole) EnumDescriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{0}\n}\n\ntype ArchiveStatus int32\n\nconst (\n\tArchiveStatus_ARCHIVE_STATUS_UNSPECIFIED ArchiveStatus = 0\n\tArchiveStatus_ARCHIVE_STATUS_QUEUED      ArchiveStatus = 1\n\tArchiveStatus_ARCHIVE_STATUS_EXECUTING   ArchiveStatus = 2\n\tArchiveStatus_ARCHIVE_STATUS_FAILED      ArchiveStatus = 3\n\tArchiveStatus_ARCHIVE_STATUS_CANCELED    ArchiveStatus = 4\n\tArchiveStatus_ARCHIVE_STATUS_SUCCESS     ArchiveStatus = 5\n)\n\n// Enum value maps for ArchiveStatus.\nvar (\n\tArchiveStatus_name = map[int32]string{\n\t\t0: \"ARCHIVE_STATUS_UNSPECIFIED\",\n\t\t1: \"ARCHIVE_STATUS_QUEUED\",\n\t\t2: \"ARCHIVE_STATUS_EXECUTING\",\n\t\t3: \"ARCHIVE_STATUS_FAILED\",\n\t\t4: \"ARCHIVE_STATUS_CANCELED\",\n\t\t5: \"ARCHIVE_STATUS_SUCCESS\",\n\t}\n\tArchiveStatus_value = map[string]int32{\n\t\t\"ARCHIVE_STATUS_UNSPECIFIED\": 0,\n\t\t\"ARCHIVE_STATUS_QUEUED\":      1,\n\t\t\"ARCHIVE_STATUS_EXECUTING\":   2,\n\t\t\"ARCHIVE_STATUS_FAILED\":      3,\n\t\t\"ARCHIVE_STATUS_CANCELED\":    4,\n\t\t\"ARCHIVE_STATUS_SUCCESS\":     5,\n\t}\n)\n\nfunc (x ArchiveStatus) Enum() *ArchiveStatus {\n\tp := new(ArchiveStatus)\n\t*p = x\n\treturn p\n}\n\nfunc (x ArchiveStatus) String() string {\n\treturn protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))\n}\n\nfunc (ArchiveStatus) Descriptor() protoreflect.EnumDescriptor {\n\treturn file_api_bucketsd_pb_bucketsd_proto_enumTypes[1].Descriptor()\n}\n\nfunc (ArchiveStatus) Type() protoreflect.EnumType {\n\treturn &file_api_bucketsd_pb_bucketsd_proto_enumTypes[1]\n}\n\nfunc (x ArchiveStatus) Number() protoreflect.EnumNumber {\n\treturn protoreflect.EnumNumber(x)\n}\n\n// Deprecated: Use ArchiveStatus.Descriptor instead.\nfunc (ArchiveStatus) EnumDescriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{1}\n}\n\ntype Metadata struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRoles     map[string]PathAccessRole `protobuf:\"bytes,1,rep,name=roles,proto3\" json:\"roles,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"varint,2,opt,name=value,proto3,enum=api.bucketsd.pb.PathAccessRole\"`\n\tUpdatedAt int64                     `protobuf:\"varint,2,opt,name=updated_at,json=updatedAt,proto3\" json:\"updated_at,omitempty\"`\n\tKey       string                    `protobuf:\"bytes,3,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *Metadata) Reset() {\n\t*x = Metadata{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Metadata) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Metadata) ProtoMessage() {}\n\nfunc (x *Metadata) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Metadata.ProtoReflect.Descriptor instead.\nfunc (*Metadata) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *Metadata) GetRoles() map[string]PathAccessRole {\n\tif x != nil {\n\t\treturn x.Roles\n\t}\n\treturn nil\n}\n\nfunc (x *Metadata) GetUpdatedAt() int64 {\n\tif x != nil {\n\t\treturn x.UpdatedAt\n\t}\n\treturn 0\n}\n\nfunc (x *Metadata) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype Root struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey          string               `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tName         string               `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tPath         string               `protobuf:\"bytes,3,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tCreatedAt    int64                `protobuf:\"varint,4,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n\tUpdatedAt    int64                `protobuf:\"varint,5,opt,name=updated_at,json=updatedAt,proto3\" json:\"updated_at,omitempty\"`\n\tThread       string               `protobuf:\"bytes,6,opt,name=thread,proto3\" json:\"thread,omitempty\"`\n\tOwner        string               `protobuf:\"bytes,7,opt,name=owner,proto3\" json:\"owner,omitempty\"`\n\tVersion      int32                `protobuf:\"varint,8,opt,name=version,proto3\" json:\"version,omitempty\"`\n\tMetadata     *Metadata            `protobuf:\"bytes,9,opt,name=metadata,proto3\" json:\"metadata,omitempty\"`\n\tLinkKey      string               `protobuf:\"bytes,10,opt,name=link_key,json=linkKey,proto3\" json:\"link_key,omitempty\"`\n\tPathMetadata map[string]*Metadata `protobuf:\"bytes,11,rep,name=path_metadata,json=pathMetadata,proto3\" json:\"path_metadata,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tArchives     *Archives            `protobuf:\"bytes,12,opt,name=archives,proto3\" json:\"archives,omitempty\"`\n}\n\nfunc (x *Root) Reset() {\n\t*x = Root{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Root) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Root) ProtoMessage() {}\n\nfunc (x *Root) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Root.ProtoReflect.Descriptor instead.\nfunc (*Root) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *Root) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *Root) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Root) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *Root) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\nfunc (x *Root) GetUpdatedAt() int64 {\n\tif x != nil {\n\t\treturn x.UpdatedAt\n\t}\n\treturn 0\n}\n\nfunc (x *Root) GetThread() string {\n\tif x != nil {\n\t\treturn x.Thread\n\t}\n\treturn \"\"\n}\n\nfunc (x *Root) GetOwner() string {\n\tif x != nil {\n\t\treturn x.Owner\n\t}\n\treturn \"\"\n}\n\nfunc (x *Root) GetVersion() int32 {\n\tif x != nil {\n\t\treturn x.Version\n\t}\n\treturn 0\n}\n\nfunc (x *Root) GetMetadata() *Metadata {\n\tif x != nil {\n\t\treturn x.Metadata\n\t}\n\treturn nil\n}\n\nfunc (x *Root) GetLinkKey() string {\n\tif x != nil {\n\t\treturn x.LinkKey\n\t}\n\treturn \"\"\n}\n\nfunc (x *Root) GetPathMetadata() map[string]*Metadata {\n\tif x != nil {\n\t\treturn x.PathMetadata\n\t}\n\treturn nil\n}\n\nfunc (x *Root) GetArchives() *Archives {\n\tif x != nil {\n\t\treturn x.Archives\n\t}\n\treturn nil\n}\n\ntype ListRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ListRequest) Reset() {\n\t*x = ListRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListRequest) ProtoMessage() {}\n\nfunc (x *ListRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListRequest.ProtoReflect.Descriptor instead.\nfunc (*ListRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{2}\n}\n\ntype ListResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRoots []*Root `protobuf:\"bytes,1,rep,name=roots,proto3\" json:\"roots,omitempty\"`\n}\n\nfunc (x *ListResponse) Reset() {\n\t*x = ListResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListResponse) ProtoMessage() {}\n\nfunc (x *ListResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListResponse.ProtoReflect.Descriptor instead.\nfunc (*ListResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *ListResponse) GetRoots() []*Root {\n\tif x != nil {\n\t\treturn x.Roots\n\t}\n\treturn nil\n}\n\ntype CreateRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName         string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tBootstrapCid string `protobuf:\"bytes,2,opt,name=bootstrap_cid,json=bootstrapCid,proto3\" json:\"bootstrap_cid,omitempty\"`\n\tPrivate      bool   `protobuf:\"varint,3,opt,name=private,proto3\" json:\"private,omitempty\"`\n\tUnfreeze     bool   `protobuf:\"varint,4,opt,name=unfreeze,proto3\" json:\"unfreeze,omitempty\"`\n}\n\nfunc (x *CreateRequest) Reset() {\n\t*x = CreateRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateRequest) ProtoMessage() {}\n\nfunc (x *CreateRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead.\nfunc (*CreateRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *CreateRequest) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateRequest) GetBootstrapCid() string {\n\tif x != nil {\n\t\treturn x.BootstrapCid\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateRequest) GetPrivate() bool {\n\tif x != nil {\n\t\treturn x.Private\n\t}\n\treturn false\n}\n\nfunc (x *CreateRequest) GetUnfreeze() bool {\n\tif x != nil {\n\t\treturn x.Unfreeze\n\t}\n\treturn false\n}\n\ntype CreateResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRoot        *Root          `protobuf:\"bytes,1,opt,name=root,proto3\" json:\"root,omitempty\"`\n\tLinks       *LinksResponse `protobuf:\"bytes,2,opt,name=links,proto3\" json:\"links,omitempty\"`\n\tSeed        []byte         `protobuf:\"bytes,3,opt,name=seed,proto3\" json:\"seed,omitempty\"`\n\tSeedCid     string         `protobuf:\"bytes,4,opt,name=seed_cid,json=seedCid,proto3\" json:\"seed_cid,omitempty\"`\n\tPinned      int64          `protobuf:\"varint,5,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n\tRetrievalId string         `protobuf:\"bytes,6,opt,name=retrieval_id,json=retrievalId,proto3\" json:\"retrieval_id,omitempty\"`\n}\n\nfunc (x *CreateResponse) Reset() {\n\t*x = CreateResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateResponse) ProtoMessage() {}\n\nfunc (x *CreateResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead.\nfunc (*CreateResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *CreateResponse) GetRoot() *Root {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn nil\n}\n\nfunc (x *CreateResponse) GetLinks() *LinksResponse {\n\tif x != nil {\n\t\treturn x.Links\n\t}\n\treturn nil\n}\n\nfunc (x *CreateResponse) GetSeed() []byte {\n\tif x != nil {\n\t\treturn x.Seed\n\t}\n\treturn nil\n}\n\nfunc (x *CreateResponse) GetSeedCid() string {\n\tif x != nil {\n\t\treturn x.SeedCid\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateResponse) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\nfunc (x *CreateResponse) GetRetrievalId() string {\n\tif x != nil {\n\t\treturn x.RetrievalId\n\t}\n\treturn \"\"\n}\n\ntype RootRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *RootRequest) Reset() {\n\t*x = RootRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RootRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RootRequest) ProtoMessage() {}\n\nfunc (x *RootRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RootRequest.ProtoReflect.Descriptor instead.\nfunc (*RootRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *RootRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype RootResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRoot *Root `protobuf:\"bytes,1,opt,name=root,proto3\" json:\"root,omitempty\"`\n}\n\nfunc (x *RootResponse) Reset() {\n\t*x = RootResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RootResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RootResponse) ProtoMessage() {}\n\nfunc (x *RootResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RootResponse.ProtoReflect.Descriptor instead.\nfunc (*RootResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{7}\n}\n\nfunc (x *RootResponse) GetRoot() *Root {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn nil\n}\n\ntype LinksRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n}\n\nfunc (x *LinksRequest) Reset() {\n\t*x = LinksRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *LinksRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*LinksRequest) ProtoMessage() {}\n\nfunc (x *LinksRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use LinksRequest.ProtoReflect.Descriptor instead.\nfunc (*LinksRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{8}\n}\n\nfunc (x *LinksRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *LinksRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\ntype LinksResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUrl  string `protobuf:\"bytes,1,opt,name=url,proto3\" json:\"url,omitempty\"`\n\tWww  string `protobuf:\"bytes,2,opt,name=www,proto3\" json:\"www,omitempty\"`\n\tIpns string `protobuf:\"bytes,3,opt,name=ipns,proto3\" json:\"ipns,omitempty\"`\n}\n\nfunc (x *LinksResponse) Reset() {\n\t*x = LinksResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *LinksResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*LinksResponse) ProtoMessage() {}\n\nfunc (x *LinksResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use LinksResponse.ProtoReflect.Descriptor instead.\nfunc (*LinksResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *LinksResponse) GetUrl() string {\n\tif x != nil {\n\t\treturn x.Url\n\t}\n\treturn \"\"\n}\n\nfunc (x *LinksResponse) GetWww() string {\n\tif x != nil {\n\t\treturn x.Www\n\t}\n\treturn \"\"\n}\n\nfunc (x *LinksResponse) GetIpns() string {\n\tif x != nil {\n\t\treturn x.Ipns\n\t}\n\treturn \"\"\n}\n\ntype ListPathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n}\n\nfunc (x *ListPathRequest) Reset() {\n\t*x = ListPathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListPathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListPathRequest) ProtoMessage() {}\n\nfunc (x *ListPathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListPathRequest.ProtoReflect.Descriptor instead.\nfunc (*ListPathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{10}\n}\n\nfunc (x *ListPathRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *ListPathRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\ntype ListPathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tItem *PathItem `protobuf:\"bytes,1,opt,name=item,proto3\" json:\"item,omitempty\"`\n\tRoot *Root     `protobuf:\"bytes,2,opt,name=root,proto3\" json:\"root,omitempty\"`\n}\n\nfunc (x *ListPathResponse) Reset() {\n\t*x = ListPathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListPathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListPathResponse) ProtoMessage() {}\n\nfunc (x *ListPathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListPathResponse.ProtoReflect.Descriptor instead.\nfunc (*ListPathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *ListPathResponse) GetItem() *PathItem {\n\tif x != nil {\n\t\treturn x.Item\n\t}\n\treturn nil\n}\n\nfunc (x *ListPathResponse) GetRoot() *Root {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn nil\n}\n\ntype PathItem struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCid        string      `protobuf:\"bytes,1,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n\tName       string      `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tPath       string      `protobuf:\"bytes,3,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tSize       int64       `protobuf:\"varint,4,opt,name=size,proto3\" json:\"size,omitempty\"`\n\tIsDir      bool        `protobuf:\"varint,5,opt,name=is_dir,json=isDir,proto3\" json:\"is_dir,omitempty\"`\n\tItems      []*PathItem `protobuf:\"bytes,6,rep,name=items,proto3\" json:\"items,omitempty\"`\n\tItemsCount int32       `protobuf:\"varint,7,opt,name=items_count,json=itemsCount,proto3\" json:\"items_count,omitempty\"`\n\tMetadata   *Metadata   `protobuf:\"bytes,9,opt,name=metadata,proto3\" json:\"metadata,omitempty\"` // @todo: For v3, change this to 8.\n}\n\nfunc (x *PathItem) Reset() {\n\t*x = PathItem{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PathItem) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PathItem) ProtoMessage() {}\n\nfunc (x *PathItem) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PathItem.ProtoReflect.Descriptor instead.\nfunc (*PathItem) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{12}\n}\n\nfunc (x *PathItem) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\nfunc (x *PathItem) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *PathItem) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *PathItem) GetSize() int64 {\n\tif x != nil {\n\t\treturn x.Size\n\t}\n\treturn 0\n}\n\nfunc (x *PathItem) GetIsDir() bool {\n\tif x != nil {\n\t\treturn x.IsDir\n\t}\n\treturn false\n}\n\nfunc (x *PathItem) GetItems() []*PathItem {\n\tif x != nil {\n\t\treturn x.Items\n\t}\n\treturn nil\n}\n\nfunc (x *PathItem) GetItemsCount() int32 {\n\tif x != nil {\n\t\treturn x.ItemsCount\n\t}\n\treturn 0\n}\n\nfunc (x *PathItem) GetMetadata() *Metadata {\n\tif x != nil {\n\t\treturn x.Metadata\n\t}\n\treturn nil\n}\n\ntype ListIpfsPathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPath string `protobuf:\"bytes,1,opt,name=path,proto3\" json:\"path,omitempty\"`\n}\n\nfunc (x *ListIpfsPathRequest) Reset() {\n\t*x = ListIpfsPathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListIpfsPathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListIpfsPathRequest) ProtoMessage() {}\n\nfunc (x *ListIpfsPathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListIpfsPathRequest.ProtoReflect.Descriptor instead.\nfunc (*ListIpfsPathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{13}\n}\n\nfunc (x *ListIpfsPathRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\ntype ListIpfsPathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tItem *PathItem `protobuf:\"bytes,1,opt,name=item,proto3\" json:\"item,omitempty\"`\n}\n\nfunc (x *ListIpfsPathResponse) Reset() {\n\t*x = ListIpfsPathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[14]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListIpfsPathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListIpfsPathResponse) ProtoMessage() {}\n\nfunc (x *ListIpfsPathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[14]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListIpfsPathResponse.ProtoReflect.Descriptor instead.\nfunc (*ListIpfsPathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{14}\n}\n\nfunc (x *ListIpfsPathResponse) GetItem() *PathItem {\n\tif x != nil {\n\t\treturn x.Item\n\t}\n\treturn nil\n}\n\ntype PushPathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\t// Types that are assignable to Payload:\n\t//\t*PushPathRequest_Header_\n\t//\t*PushPathRequest_Chunk\n\tPayload isPushPathRequest_Payload `protobuf_oneof:\"payload\"`\n}\n\nfunc (x *PushPathRequest) Reset() {\n\t*x = PushPathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[15]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathRequest) ProtoMessage() {}\n\nfunc (x *PushPathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[15]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathRequest.ProtoReflect.Descriptor instead.\nfunc (*PushPathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{15}\n}\n\nfunc (m *PushPathRequest) GetPayload() isPushPathRequest_Payload {\n\tif m != nil {\n\t\treturn m.Payload\n\t}\n\treturn nil\n}\n\nfunc (x *PushPathRequest) GetHeader() *PushPathRequest_Header {\n\tif x, ok := x.GetPayload().(*PushPathRequest_Header_); ok {\n\t\treturn x.Header\n\t}\n\treturn nil\n}\n\nfunc (x *PushPathRequest) GetChunk() []byte {\n\tif x, ok := x.GetPayload().(*PushPathRequest_Chunk); ok {\n\t\treturn x.Chunk\n\t}\n\treturn nil\n}\n\ntype isPushPathRequest_Payload interface {\n\tisPushPathRequest_Payload()\n}\n\ntype PushPathRequest_Header_ struct {\n\tHeader *PushPathRequest_Header `protobuf:\"bytes,1,opt,name=header,proto3,oneof\"`\n}\n\ntype PushPathRequest_Chunk struct {\n\tChunk []byte `protobuf:\"bytes,2,opt,name=chunk,proto3,oneof\"`\n}\n\nfunc (*PushPathRequest_Header_) isPushPathRequest_Payload() {}\n\nfunc (*PushPathRequest_Chunk) isPushPathRequest_Payload() {}\n\ntype PushPathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tEvent *PushPathResponse_Event `protobuf:\"bytes,1,opt,name=event,proto3\" json:\"event,omitempty\"`\n}\n\nfunc (x *PushPathResponse) Reset() {\n\t*x = PushPathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[16]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathResponse) ProtoMessage() {}\n\nfunc (x *PushPathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[16]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathResponse.ProtoReflect.Descriptor instead.\nfunc (*PushPathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{16}\n}\n\nfunc (x *PushPathResponse) GetEvent() *PushPathResponse_Event {\n\tif x != nil {\n\t\treturn x.Event\n\t}\n\treturn nil\n}\n\ntype PushPathsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\t// Types that are assignable to Payload:\n\t//\t*PushPathsRequest_Header_\n\t//\t*PushPathsRequest_Chunk_\n\tPayload isPushPathsRequest_Payload `protobuf_oneof:\"payload\"`\n}\n\nfunc (x *PushPathsRequest) Reset() {\n\t*x = PushPathsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[17]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathsRequest) ProtoMessage() {}\n\nfunc (x *PushPathsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[17]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathsRequest.ProtoReflect.Descriptor instead.\nfunc (*PushPathsRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{17}\n}\n\nfunc (m *PushPathsRequest) GetPayload() isPushPathsRequest_Payload {\n\tif m != nil {\n\t\treturn m.Payload\n\t}\n\treturn nil\n}\n\nfunc (x *PushPathsRequest) GetHeader() *PushPathsRequest_Header {\n\tif x, ok := x.GetPayload().(*PushPathsRequest_Header_); ok {\n\t\treturn x.Header\n\t}\n\treturn nil\n}\n\nfunc (x *PushPathsRequest) GetChunk() *PushPathsRequest_Chunk {\n\tif x, ok := x.GetPayload().(*PushPathsRequest_Chunk_); ok {\n\t\treturn x.Chunk\n\t}\n\treturn nil\n}\n\ntype isPushPathsRequest_Payload interface {\n\tisPushPathsRequest_Payload()\n}\n\ntype PushPathsRequest_Header_ struct {\n\tHeader *PushPathsRequest_Header `protobuf:\"bytes,1,opt,name=header,proto3,oneof\"`\n}\n\ntype PushPathsRequest_Chunk_ struct {\n\tChunk *PushPathsRequest_Chunk `protobuf:\"bytes,2,opt,name=chunk,proto3,oneof\"`\n}\n\nfunc (*PushPathsRequest_Header_) isPushPathsRequest_Payload() {}\n\nfunc (*PushPathsRequest_Chunk_) isPushPathsRequest_Payload() {}\n\ntype PushPathsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPath   string `protobuf:\"bytes,1,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tCid    string `protobuf:\"bytes,2,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n\tSize   int64  `protobuf:\"varint,3,opt,name=size,proto3\" json:\"size,omitempty\"`\n\tPinned int64  `protobuf:\"varint,4,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n\tRoot   *Root  `protobuf:\"bytes,5,opt,name=root,proto3\" json:\"root,omitempty\"`\n}\n\nfunc (x *PushPathsResponse) Reset() {\n\t*x = PushPathsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[18]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathsResponse) ProtoMessage() {}\n\nfunc (x *PushPathsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[18]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathsResponse.ProtoReflect.Descriptor instead.\nfunc (*PushPathsResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{18}\n}\n\nfunc (x *PushPathsResponse) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathsResponse) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathsResponse) GetSize() int64 {\n\tif x != nil {\n\t\treturn x.Size\n\t}\n\treturn 0\n}\n\nfunc (x *PushPathsResponse) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\nfunc (x *PushPathsResponse) GetRoot() *Root {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn nil\n}\n\ntype PullPathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n}\n\nfunc (x *PullPathRequest) Reset() {\n\t*x = PullPathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[19]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PullPathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PullPathRequest) ProtoMessage() {}\n\nfunc (x *PullPathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[19]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PullPathRequest.ProtoReflect.Descriptor instead.\nfunc (*PullPathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{19}\n}\n\nfunc (x *PullPathRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *PullPathRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\ntype PullPathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tChunk []byte `protobuf:\"bytes,1,opt,name=chunk,proto3\" json:\"chunk,omitempty\"`\n}\n\nfunc (x *PullPathResponse) Reset() {\n\t*x = PullPathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[20]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PullPathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PullPathResponse) ProtoMessage() {}\n\nfunc (x *PullPathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[20]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PullPathResponse.ProtoReflect.Descriptor instead.\nfunc (*PullPathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{20}\n}\n\nfunc (x *PullPathResponse) GetChunk() []byte {\n\tif x != nil {\n\t\treturn x.Chunk\n\t}\n\treturn nil\n}\n\ntype PullIpfsPathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPath string `protobuf:\"bytes,1,opt,name=path,proto3\" json:\"path,omitempty\"`\n}\n\nfunc (x *PullIpfsPathRequest) Reset() {\n\t*x = PullIpfsPathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[21]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PullIpfsPathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PullIpfsPathRequest) ProtoMessage() {}\n\nfunc (x *PullIpfsPathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[21]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PullIpfsPathRequest.ProtoReflect.Descriptor instead.\nfunc (*PullIpfsPathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{21}\n}\n\nfunc (x *PullIpfsPathRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\ntype PullIpfsPathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tChunk []byte `protobuf:\"bytes,1,opt,name=chunk,proto3\" json:\"chunk,omitempty\"`\n}\n\nfunc (x *PullIpfsPathResponse) Reset() {\n\t*x = PullIpfsPathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[22]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PullIpfsPathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PullIpfsPathResponse) ProtoMessage() {}\n\nfunc (x *PullIpfsPathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[22]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PullIpfsPathResponse.ProtoReflect.Descriptor instead.\nfunc (*PullIpfsPathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{22}\n}\n\nfunc (x *PullIpfsPathResponse) GetChunk() []byte {\n\tif x != nil {\n\t\treturn x.Chunk\n\t}\n\treturn nil\n}\n\ntype SetPathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tCid  string `protobuf:\"bytes,3,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n}\n\nfunc (x *SetPathRequest) Reset() {\n\t*x = SetPathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[23]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetPathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetPathRequest) ProtoMessage() {}\n\nfunc (x *SetPathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[23]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetPathRequest.ProtoReflect.Descriptor instead.\nfunc (*SetPathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{23}\n}\n\nfunc (x *SetPathRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *SetPathRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *SetPathRequest) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\ntype SetPathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPinned int64 `protobuf:\"varint,1,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n}\n\nfunc (x *SetPathResponse) Reset() {\n\t*x = SetPathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[24]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetPathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetPathResponse) ProtoMessage() {}\n\nfunc (x *SetPathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[24]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetPathResponse.ProtoReflect.Descriptor instead.\nfunc (*SetPathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{24}\n}\n\nfunc (x *SetPathResponse) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\ntype MovePathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey      string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tFromPath string `protobuf:\"bytes,2,opt,name=from_path,json=fromPath,proto3\" json:\"from_path,omitempty\"`\n\tToPath   string `protobuf:\"bytes,3,opt,name=to_path,json=toPath,proto3\" json:\"to_path,omitempty\"`\n}\n\nfunc (x *MovePathRequest) Reset() {\n\t*x = MovePathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[25]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MovePathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MovePathRequest) ProtoMessage() {}\n\nfunc (x *MovePathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[25]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MovePathRequest.ProtoReflect.Descriptor instead.\nfunc (*MovePathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{25}\n}\n\nfunc (x *MovePathRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *MovePathRequest) GetFromPath() string {\n\tif x != nil {\n\t\treturn x.FromPath\n\t}\n\treturn \"\"\n}\n\nfunc (x *MovePathRequest) GetToPath() string {\n\tif x != nil {\n\t\treturn x.ToPath\n\t}\n\treturn \"\"\n}\n\ntype MovePathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *MovePathResponse) Reset() {\n\t*x = MovePathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[26]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MovePathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MovePathResponse) ProtoMessage() {}\n\nfunc (x *MovePathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[26]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MovePathResponse.ProtoReflect.Descriptor instead.\nfunc (*MovePathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{26}\n}\n\ntype RemoveRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *RemoveRequest) Reset() {\n\t*x = RemoveRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[27]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RemoveRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RemoveRequest) ProtoMessage() {}\n\nfunc (x *RemoveRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[27]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RemoveRequest.ProtoReflect.Descriptor instead.\nfunc (*RemoveRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{27}\n}\n\nfunc (x *RemoveRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype RemoveResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPinned int64 `protobuf:\"varint,1,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n}\n\nfunc (x *RemoveResponse) Reset() {\n\t*x = RemoveResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[28]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RemoveResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RemoveResponse) ProtoMessage() {}\n\nfunc (x *RemoveResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[28]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RemoveResponse.ProtoReflect.Descriptor instead.\nfunc (*RemoveResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{28}\n}\n\nfunc (x *RemoveResponse) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\ntype RemovePathRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tRoot string `protobuf:\"bytes,3,opt,name=root,proto3\" json:\"root,omitempty\"`\n}\n\nfunc (x *RemovePathRequest) Reset() {\n\t*x = RemovePathRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[29]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RemovePathRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RemovePathRequest) ProtoMessage() {}\n\nfunc (x *RemovePathRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[29]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RemovePathRequest.ProtoReflect.Descriptor instead.\nfunc (*RemovePathRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{29}\n}\n\nfunc (x *RemovePathRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *RemovePathRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *RemovePathRequest) GetRoot() string {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn \"\"\n}\n\ntype RemovePathResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRoot   *Root `protobuf:\"bytes,1,opt,name=root,proto3\" json:\"root,omitempty\"`\n\tPinned int64 `protobuf:\"varint,2,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n}\n\nfunc (x *RemovePathResponse) Reset() {\n\t*x = RemovePathResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[30]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RemovePathResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RemovePathResponse) ProtoMessage() {}\n\nfunc (x *RemovePathResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[30]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RemovePathResponse.ProtoReflect.Descriptor instead.\nfunc (*RemovePathResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{30}\n}\n\nfunc (x *RemovePathResponse) GetRoot() *Root {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn nil\n}\n\nfunc (x *RemovePathResponse) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\ntype PushPathAccessRolesRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey   string                    `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath  string                    `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tRoles map[string]PathAccessRole `protobuf:\"bytes,3,rep,name=roles,proto3\" json:\"roles,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"varint,2,opt,name=value,proto3,enum=api.bucketsd.pb.PathAccessRole\"`\n}\n\nfunc (x *PushPathAccessRolesRequest) Reset() {\n\t*x = PushPathAccessRolesRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[31]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathAccessRolesRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathAccessRolesRequest) ProtoMessage() {}\n\nfunc (x *PushPathAccessRolesRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[31]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathAccessRolesRequest.ProtoReflect.Descriptor instead.\nfunc (*PushPathAccessRolesRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{31}\n}\n\nfunc (x *PushPathAccessRolesRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathAccessRolesRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathAccessRolesRequest) GetRoles() map[string]PathAccessRole {\n\tif x != nil {\n\t\treturn x.Roles\n\t}\n\treturn nil\n}\n\ntype PushPathAccessRolesResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPinned int64 `protobuf:\"varint,1,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n}\n\nfunc (x *PushPathAccessRolesResponse) Reset() {\n\t*x = PushPathAccessRolesResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[32]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathAccessRolesResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathAccessRolesResponse) ProtoMessage() {}\n\nfunc (x *PushPathAccessRolesResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[32]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathAccessRolesResponse.ProtoReflect.Descriptor instead.\nfunc (*PushPathAccessRolesResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{32}\n}\n\nfunc (x *PushPathAccessRolesResponse) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\ntype PullPathAccessRolesRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n}\n\nfunc (x *PullPathAccessRolesRequest) Reset() {\n\t*x = PullPathAccessRolesRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[33]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PullPathAccessRolesRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PullPathAccessRolesRequest) ProtoMessage() {}\n\nfunc (x *PullPathAccessRolesRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[33]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PullPathAccessRolesRequest.ProtoReflect.Descriptor instead.\nfunc (*PullPathAccessRolesRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{33}\n}\n\nfunc (x *PullPathAccessRolesRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *PullPathAccessRolesRequest) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\ntype PullPathAccessRolesResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRoles map[string]PathAccessRole `protobuf:\"bytes,1,rep,name=roles,proto3\" json:\"roles,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"varint,2,opt,name=value,proto3,enum=api.bucketsd.pb.PathAccessRole\"`\n}\n\nfunc (x *PullPathAccessRolesResponse) Reset() {\n\t*x = PullPathAccessRolesResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[34]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PullPathAccessRolesResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PullPathAccessRolesResponse) ProtoMessage() {}\n\nfunc (x *PullPathAccessRolesResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[34]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PullPathAccessRolesResponse.ProtoReflect.Descriptor instead.\nfunc (*PullPathAccessRolesResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{34}\n}\n\nfunc (x *PullPathAccessRolesResponse) GetRoles() map[string]PathAccessRole {\n\tif x != nil {\n\t\treturn x.Roles\n\t}\n\treturn nil\n}\n\ntype ArchiveConfig struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRepFactor       int32         `protobuf:\"varint,1,opt,name=rep_factor,json=repFactor,proto3\" json:\"rep_factor,omitempty\"`\n\tDealMinDuration int64         `protobuf:\"varint,2,opt,name=deal_min_duration,json=dealMinDuration,proto3\" json:\"deal_min_duration,omitempty\"`\n\tExcludedMiners  []string      `protobuf:\"bytes,3,rep,name=excluded_miners,json=excludedMiners,proto3\" json:\"excluded_miners,omitempty\"`\n\tTrustedMiners   []string      `protobuf:\"bytes,4,rep,name=trusted_miners,json=trustedMiners,proto3\" json:\"trusted_miners,omitempty\"`\n\tCountryCodes    []string      `protobuf:\"bytes,5,rep,name=country_codes,json=countryCodes,proto3\" json:\"country_codes,omitempty\"`\n\tRenew           *ArchiveRenew `protobuf:\"bytes,6,opt,name=renew,proto3\" json:\"renew,omitempty\"`\n\tMaxPrice        uint64        `protobuf:\"varint,7,opt,name=max_price,json=maxPrice,proto3\" json:\"max_price,omitempty\"`\n\tFastRetrieval   bool          `protobuf:\"varint,8,opt,name=fast_retrieval,json=fastRetrieval,proto3\" json:\"fast_retrieval,omitempty\"`\n\tDealStartOffset int64         `protobuf:\"varint,9,opt,name=deal_start_offset,json=dealStartOffset,proto3\" json:\"deal_start_offset,omitempty\"`\n\tVerifiedDeal    bool          `protobuf:\"varint,10,opt,name=verified_deal,json=verifiedDeal,proto3\" json:\"verified_deal,omitempty\"`\n}\n\nfunc (x *ArchiveConfig) Reset() {\n\t*x = ArchiveConfig{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[35]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveConfig) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveConfig) ProtoMessage() {}\n\nfunc (x *ArchiveConfig) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[35]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveConfig.ProtoReflect.Descriptor instead.\nfunc (*ArchiveConfig) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{35}\n}\n\nfunc (x *ArchiveConfig) GetRepFactor() int32 {\n\tif x != nil {\n\t\treturn x.RepFactor\n\t}\n\treturn 0\n}\n\nfunc (x *ArchiveConfig) GetDealMinDuration() int64 {\n\tif x != nil {\n\t\treturn x.DealMinDuration\n\t}\n\treturn 0\n}\n\nfunc (x *ArchiveConfig) GetExcludedMiners() []string {\n\tif x != nil {\n\t\treturn x.ExcludedMiners\n\t}\n\treturn nil\n}\n\nfunc (x *ArchiveConfig) GetTrustedMiners() []string {\n\tif x != nil {\n\t\treturn x.TrustedMiners\n\t}\n\treturn nil\n}\n\nfunc (x *ArchiveConfig) GetCountryCodes() []string {\n\tif x != nil {\n\t\treturn x.CountryCodes\n\t}\n\treturn nil\n}\n\nfunc (x *ArchiveConfig) GetRenew() *ArchiveRenew {\n\tif x != nil {\n\t\treturn x.Renew\n\t}\n\treturn nil\n}\n\nfunc (x *ArchiveConfig) GetMaxPrice() uint64 {\n\tif x != nil {\n\t\treturn x.MaxPrice\n\t}\n\treturn 0\n}\n\nfunc (x *ArchiveConfig) GetFastRetrieval() bool {\n\tif x != nil {\n\t\treturn x.FastRetrieval\n\t}\n\treturn false\n}\n\nfunc (x *ArchiveConfig) GetDealStartOffset() int64 {\n\tif x != nil {\n\t\treturn x.DealStartOffset\n\t}\n\treturn 0\n}\n\nfunc (x *ArchiveConfig) GetVerifiedDeal() bool {\n\tif x != nil {\n\t\treturn x.VerifiedDeal\n\t}\n\treturn false\n}\n\ntype Archives struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCurrent *Archive   `protobuf:\"bytes,1,opt,name=current,proto3\" json:\"current,omitempty\"`\n\tHistory []*Archive `protobuf:\"bytes,2,rep,name=history,proto3\" json:\"history,omitempty\"`\n}\n\nfunc (x *Archives) Reset() {\n\t*x = Archives{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[36]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Archives) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Archives) ProtoMessage() {}\n\nfunc (x *Archives) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[36]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Archives.ProtoReflect.Descriptor instead.\nfunc (*Archives) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{36}\n}\n\nfunc (x *Archives) GetCurrent() *Archive {\n\tif x != nil {\n\t\treturn x.Current\n\t}\n\treturn nil\n}\n\nfunc (x *Archives) GetHistory() []*Archive {\n\tif x != nil {\n\t\treturn x.History\n\t}\n\treturn nil\n}\n\ntype Archive struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCid           string        `protobuf:\"bytes,1,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n\tJobId         string        `protobuf:\"bytes,2,opt,name=job_id,json=jobId,proto3\" json:\"job_id,omitempty\"`\n\tArchiveStatus ArchiveStatus `protobuf:\"varint,3,opt,name=archive_status,json=archiveStatus,proto3,enum=api.bucketsd.pb.ArchiveStatus\" json:\"archive_status,omitempty\"`\n\tAborted       bool          `protobuf:\"varint,4,opt,name=aborted,proto3\" json:\"aborted,omitempty\"`\n\tAbortedMsg    string        `protobuf:\"bytes,5,opt,name=aborted_msg,json=abortedMsg,proto3\" json:\"aborted_msg,omitempty\"`\n\tFailureMsg    string        `protobuf:\"bytes,6,opt,name=failure_msg,json=failureMsg,proto3\" json:\"failure_msg,omitempty\"`\n\tCreatedAt     int64         `protobuf:\"varint,7,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n\tDealInfo      []*DealInfo   `protobuf:\"bytes,8,rep,name=deal_info,json=dealInfo,proto3\" json:\"deal_info,omitempty\"`\n}\n\nfunc (x *Archive) Reset() {\n\t*x = Archive{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[37]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Archive) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Archive) ProtoMessage() {}\n\nfunc (x *Archive) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[37]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Archive.ProtoReflect.Descriptor instead.\nfunc (*Archive) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{37}\n}\n\nfunc (x *Archive) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\nfunc (x *Archive) GetJobId() string {\n\tif x != nil {\n\t\treturn x.JobId\n\t}\n\treturn \"\"\n}\n\nfunc (x *Archive) GetArchiveStatus() ArchiveStatus {\n\tif x != nil {\n\t\treturn x.ArchiveStatus\n\t}\n\treturn ArchiveStatus_ARCHIVE_STATUS_UNSPECIFIED\n}\n\nfunc (x *Archive) GetAborted() bool {\n\tif x != nil {\n\t\treturn x.Aborted\n\t}\n\treturn false\n}\n\nfunc (x *Archive) GetAbortedMsg() string {\n\tif x != nil {\n\t\treturn x.AbortedMsg\n\t}\n\treturn \"\"\n}\n\nfunc (x *Archive) GetFailureMsg() string {\n\tif x != nil {\n\t\treturn x.FailureMsg\n\t}\n\treturn \"\"\n}\n\nfunc (x *Archive) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\nfunc (x *Archive) GetDealInfo() []*DealInfo {\n\tif x != nil {\n\t\treturn x.DealInfo\n\t}\n\treturn nil\n}\n\ntype DealInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tProposalCid     string `protobuf:\"bytes,1,opt,name=proposal_cid,json=proposalCid,proto3\" json:\"proposal_cid,omitempty\"`\n\tStateId         uint64 `protobuf:\"varint,2,opt,name=state_id,json=stateId,proto3\" json:\"state_id,omitempty\"`\n\tStateName       string `protobuf:\"bytes,3,opt,name=state_name,json=stateName,proto3\" json:\"state_name,omitempty\"`\n\tMiner           string `protobuf:\"bytes,4,opt,name=miner,proto3\" json:\"miner,omitempty\"`\n\tPieceCid        string `protobuf:\"bytes,5,opt,name=piece_cid,json=pieceCid,proto3\" json:\"piece_cid,omitempty\"`\n\tSize            uint64 `protobuf:\"varint,6,opt,name=size,proto3\" json:\"size,omitempty\"`\n\tPricePerEpoch   uint64 `protobuf:\"varint,7,opt,name=price_per_epoch,json=pricePerEpoch,proto3\" json:\"price_per_epoch,omitempty\"`\n\tStartEpoch      uint64 `protobuf:\"varint,8,opt,name=start_epoch,json=startEpoch,proto3\" json:\"start_epoch,omitempty\"`\n\tDuration        uint64 `protobuf:\"varint,9,opt,name=duration,proto3\" json:\"duration,omitempty\"`\n\tDealId          uint64 `protobuf:\"varint,10,opt,name=deal_id,json=dealId,proto3\" json:\"deal_id,omitempty\"`\n\tActivationEpoch int64  `protobuf:\"varint,11,opt,name=activation_epoch,json=activationEpoch,proto3\" json:\"activation_epoch,omitempty\"`\n\tMessage         string `protobuf:\"bytes,12,opt,name=message,proto3\" json:\"message,omitempty\"`\n}\n\nfunc (x *DealInfo) Reset() {\n\t*x = DealInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[38]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DealInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DealInfo) ProtoMessage() {}\n\nfunc (x *DealInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[38]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DealInfo.ProtoReflect.Descriptor instead.\nfunc (*DealInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{38}\n}\n\nfunc (x *DealInfo) GetProposalCid() string {\n\tif x != nil {\n\t\treturn x.ProposalCid\n\t}\n\treturn \"\"\n}\n\nfunc (x *DealInfo) GetStateId() uint64 {\n\tif x != nil {\n\t\treturn x.StateId\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetStateName() string {\n\tif x != nil {\n\t\treturn x.StateName\n\t}\n\treturn \"\"\n}\n\nfunc (x *DealInfo) GetMiner() string {\n\tif x != nil {\n\t\treturn x.Miner\n\t}\n\treturn \"\"\n}\n\nfunc (x *DealInfo) GetPieceCid() string {\n\tif x != nil {\n\t\treturn x.PieceCid\n\t}\n\treturn \"\"\n}\n\nfunc (x *DealInfo) GetSize() uint64 {\n\tif x != nil {\n\t\treturn x.Size\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetPricePerEpoch() uint64 {\n\tif x != nil {\n\t\treturn x.PricePerEpoch\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetStartEpoch() uint64 {\n\tif x != nil {\n\t\treturn x.StartEpoch\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetDuration() uint64 {\n\tif x != nil {\n\t\treturn x.Duration\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetDealId() uint64 {\n\tif x != nil {\n\t\treturn x.DealId\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetActivationEpoch() int64 {\n\tif x != nil {\n\t\treturn x.ActivationEpoch\n\t}\n\treturn 0\n}\n\nfunc (x *DealInfo) GetMessage() string {\n\tif x != nil {\n\t\treturn x.Message\n\t}\n\treturn \"\"\n}\n\ntype ArchiveRenew struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tEnabled   bool  `protobuf:\"varint,1,opt,name=enabled,proto3\" json:\"enabled,omitempty\"`\n\tThreshold int32 `protobuf:\"varint,2,opt,name=threshold,proto3\" json:\"threshold,omitempty\"`\n}\n\nfunc (x *ArchiveRenew) Reset() {\n\t*x = ArchiveRenew{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[39]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRenew) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRenew) ProtoMessage() {}\n\nfunc (x *ArchiveRenew) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[39]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRenew.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRenew) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{39}\n}\n\nfunc (x *ArchiveRenew) GetEnabled() bool {\n\tif x != nil {\n\t\treturn x.Enabled\n\t}\n\treturn false\n}\n\nfunc (x *ArchiveRenew) GetThreshold() int32 {\n\tif x != nil {\n\t\treturn x.Threshold\n\t}\n\treturn 0\n}\n\ntype DefaultArchiveConfigRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *DefaultArchiveConfigRequest) Reset() {\n\t*x = DefaultArchiveConfigRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[40]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DefaultArchiveConfigRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DefaultArchiveConfigRequest) ProtoMessage() {}\n\nfunc (x *DefaultArchiveConfigRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[40]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DefaultArchiveConfigRequest.ProtoReflect.Descriptor instead.\nfunc (*DefaultArchiveConfigRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{40}\n}\n\nfunc (x *DefaultArchiveConfigRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype DefaultArchiveConfigResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tArchiveConfig *ArchiveConfig `protobuf:\"bytes,1,opt,name=archive_config,json=archiveConfig,proto3\" json:\"archive_config,omitempty\"`\n}\n\nfunc (x *DefaultArchiveConfigResponse) Reset() {\n\t*x = DefaultArchiveConfigResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[41]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DefaultArchiveConfigResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DefaultArchiveConfigResponse) ProtoMessage() {}\n\nfunc (x *DefaultArchiveConfigResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[41]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DefaultArchiveConfigResponse.ProtoReflect.Descriptor instead.\nfunc (*DefaultArchiveConfigResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{41}\n}\n\nfunc (x *DefaultArchiveConfigResponse) GetArchiveConfig() *ArchiveConfig {\n\tif x != nil {\n\t\treturn x.ArchiveConfig\n\t}\n\treturn nil\n}\n\ntype SetDefaultArchiveConfigRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey           string         `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tArchiveConfig *ArchiveConfig `protobuf:\"bytes,2,opt,name=archive_config,json=archiveConfig,proto3\" json:\"archive_config,omitempty\"`\n}\n\nfunc (x *SetDefaultArchiveConfigRequest) Reset() {\n\t*x = SetDefaultArchiveConfigRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[42]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetDefaultArchiveConfigRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetDefaultArchiveConfigRequest) ProtoMessage() {}\n\nfunc (x *SetDefaultArchiveConfigRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[42]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetDefaultArchiveConfigRequest.ProtoReflect.Descriptor instead.\nfunc (*SetDefaultArchiveConfigRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{42}\n}\n\nfunc (x *SetDefaultArchiveConfigRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *SetDefaultArchiveConfigRequest) GetArchiveConfig() *ArchiveConfig {\n\tif x != nil {\n\t\treturn x.ArchiveConfig\n\t}\n\treturn nil\n}\n\ntype SetDefaultArchiveConfigResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *SetDefaultArchiveConfigResponse) Reset() {\n\t*x = SetDefaultArchiveConfigResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[43]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetDefaultArchiveConfigResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetDefaultArchiveConfigResponse) ProtoMessage() {}\n\nfunc (x *SetDefaultArchiveConfigResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[43]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetDefaultArchiveConfigResponse.ProtoReflect.Descriptor instead.\nfunc (*SetDefaultArchiveConfigResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{43}\n}\n\ntype ArchiveRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey                       string         `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tArchiveConfig             *ArchiveConfig `protobuf:\"bytes,2,opt,name=archive_config,json=archiveConfig,proto3\" json:\"archive_config,omitempty\"`\n\tSkipAutomaticVerifiedDeal bool           `protobuf:\"varint,3,opt,name=skip_automatic_verified_deal,json=skipAutomaticVerifiedDeal,proto3\" json:\"skip_automatic_verified_deal,omitempty\"`\n}\n\nfunc (x *ArchiveRequest) Reset() {\n\t*x = ArchiveRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[44]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRequest) ProtoMessage() {}\n\nfunc (x *ArchiveRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[44]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{44}\n}\n\nfunc (x *ArchiveRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchiveRequest) GetArchiveConfig() *ArchiveConfig {\n\tif x != nil {\n\t\treturn x.ArchiveConfig\n\t}\n\treturn nil\n}\n\nfunc (x *ArchiveRequest) GetSkipAutomaticVerifiedDeal() bool {\n\tif x != nil {\n\t\treturn x.SkipAutomaticVerifiedDeal\n\t}\n\treturn false\n}\n\ntype ArchiveResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ArchiveResponse) Reset() {\n\t*x = ArchiveResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[45]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveResponse) ProtoMessage() {}\n\nfunc (x *ArchiveResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[45]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchiveResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{45}\n}\n\ntype ArchivesRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *ArchivesRequest) Reset() {\n\t*x = ArchivesRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[46]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchivesRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchivesRequest) ProtoMessage() {}\n\nfunc (x *ArchivesRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[46]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchivesRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchivesRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{46}\n}\n\nfunc (x *ArchivesRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\n// todo: For v3, change this to { Archives archives = 1; }\ntype ArchivesResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCurrent *Archive   `protobuf:\"bytes,1,opt,name=current,proto3\" json:\"current,omitempty\"`\n\tHistory []*Archive `protobuf:\"bytes,2,rep,name=history,proto3\" json:\"history,omitempty\"`\n}\n\nfunc (x *ArchivesResponse) Reset() {\n\t*x = ArchivesResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[47]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchivesResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchivesResponse) ProtoMessage() {}\n\nfunc (x *ArchivesResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[47]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchivesResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchivesResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{47}\n}\n\nfunc (x *ArchivesResponse) GetCurrent() *Archive {\n\tif x != nil {\n\t\treturn x.Current\n\t}\n\treturn nil\n}\n\nfunc (x *ArchivesResponse) GetHistory() []*Archive {\n\tif x != nil {\n\t\treturn x.History\n\t}\n\treturn nil\n}\n\ntype ArchiveWatchRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *ArchiveWatchRequest) Reset() {\n\t*x = ArchiveWatchRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[48]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveWatchRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveWatchRequest) ProtoMessage() {}\n\nfunc (x *ArchiveWatchRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[48]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveWatchRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchiveWatchRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{48}\n}\n\nfunc (x *ArchiveWatchRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype ArchiveWatchResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMsg string `protobuf:\"bytes,1,opt,name=msg,proto3\" json:\"msg,omitempty\"`\n}\n\nfunc (x *ArchiveWatchResponse) Reset() {\n\t*x = ArchiveWatchResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[49]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveWatchResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveWatchResponse) ProtoMessage() {}\n\nfunc (x *ArchiveWatchResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[49]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveWatchResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchiveWatchResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{49}\n}\n\nfunc (x *ArchiveWatchResponse) GetMsg() string {\n\tif x != nil {\n\t\treturn x.Msg\n\t}\n\treturn \"\"\n}\n\ntype PushPathRequest_Header struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey  string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tPath string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tRoot string `protobuf:\"bytes,3,opt,name=root,proto3\" json:\"root,omitempty\"`\n}\n\nfunc (x *PushPathRequest_Header) Reset() {\n\t*x = PushPathRequest_Header{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[52]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathRequest_Header) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathRequest_Header) ProtoMessage() {}\n\nfunc (x *PushPathRequest_Header) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[52]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathRequest_Header.ProtoReflect.Descriptor instead.\nfunc (*PushPathRequest_Header) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{15, 0}\n}\n\nfunc (x *PushPathRequest_Header) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathRequest_Header) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathRequest_Header) GetRoot() string {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn \"\"\n}\n\ntype PushPathResponse_Event struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName   string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tPath   string `protobuf:\"bytes,2,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tBytes  int64  `protobuf:\"varint,3,opt,name=bytes,proto3\" json:\"bytes,omitempty\"`\n\tSize   string `protobuf:\"bytes,4,opt,name=size,proto3\" json:\"size,omitempty\"`\n\tRoot   *Root  `protobuf:\"bytes,5,opt,name=root,proto3\" json:\"root,omitempty\"`\n\tPinned int64  `protobuf:\"varint,6,opt,name=pinned,proto3\" json:\"pinned,omitempty\"`\n}\n\nfunc (x *PushPathResponse_Event) Reset() {\n\t*x = PushPathResponse_Event{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[53]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathResponse_Event) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathResponse_Event) ProtoMessage() {}\n\nfunc (x *PushPathResponse_Event) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[53]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathResponse_Event.ProtoReflect.Descriptor instead.\nfunc (*PushPathResponse_Event) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{16, 0}\n}\n\nfunc (x *PushPathResponse_Event) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathResponse_Event) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathResponse_Event) GetBytes() int64 {\n\tif x != nil {\n\t\treturn x.Bytes\n\t}\n\treturn 0\n}\n\nfunc (x *PushPathResponse_Event) GetSize() string {\n\tif x != nil {\n\t\treturn x.Size\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathResponse_Event) GetRoot() *Root {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn nil\n}\n\nfunc (x *PushPathResponse_Event) GetPinned() int64 {\n\tif x != nil {\n\t\treturn x.Pinned\n\t}\n\treturn 0\n}\n\ntype PushPathsRequest_Header struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey   string   `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tRoot  string   `protobuf:\"bytes,2,opt,name=root,proto3\" json:\"root,omitempty\"`\n\tPaths []string `protobuf:\"bytes,3,rep,name=paths,proto3\" json:\"paths,omitempty\"`\n}\n\nfunc (x *PushPathsRequest_Header) Reset() {\n\t*x = PushPathsRequest_Header{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[54]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathsRequest_Header) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathsRequest_Header) ProtoMessage() {}\n\nfunc (x *PushPathsRequest_Header) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[54]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathsRequest_Header.ProtoReflect.Descriptor instead.\nfunc (*PushPathsRequest_Header) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{17, 0}\n}\n\nfunc (x *PushPathsRequest_Header) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathsRequest_Header) GetRoot() string {\n\tif x != nil {\n\t\treturn x.Root\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathsRequest_Header) GetPaths() []string {\n\tif x != nil {\n\t\treturn x.Paths\n\t}\n\treturn nil\n}\n\ntype PushPathsRequest_Chunk struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPath string `protobuf:\"bytes,1,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tData []byte `protobuf:\"bytes,2,opt,name=data,proto3\" json:\"data,omitempty\"`\n}\n\nfunc (x *PushPathsRequest_Chunk) Reset() {\n\t*x = PushPathsRequest_Chunk{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[55]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PushPathsRequest_Chunk) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PushPathsRequest_Chunk) ProtoMessage() {}\n\nfunc (x *PushPathsRequest_Chunk) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_bucketsd_pb_bucketsd_proto_msgTypes[55]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PushPathsRequest_Chunk.ProtoReflect.Descriptor instead.\nfunc (*PushPathsRequest_Chunk) Descriptor() ([]byte, []int) {\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP(), []int{17, 1}\n}\n\nfunc (x *PushPathsRequest_Chunk) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *PushPathsRequest_Chunk) GetData() []byte {\n\tif x != nil {\n\t\treturn x.Data\n\t}\n\treturn nil\n}\n\nvar File_api_bucketsd_pb_bucketsd_proto protoreflect.FileDescriptor\n\nvar file_api_bucketsd_pb_bucketsd_proto_rawDesc = []byte{\n\t0x0a, 0x1e, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2f, 0x70,\n\t0x62, 0x2f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,\n\t0x12, 0x0f, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x22, 0xd2, 0x01, 0x0a, 0x08, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x3a,\n\t0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x70,\n\t0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,\n\t0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,\n\t0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x1a, 0x59, 0x0a, 0x0a, 0x52,\n\t0x6f, 0x6c, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x35, 0x0a, 0x05, 0x76,\n\t0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x74,\n\t0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c,\n\t0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xf9, 0x03, 0x0a, 0x04, 0x52, 0x6f, 0x6f, 0x74, 0x12,\n\t0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,\n\t0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65,\n\t0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63,\n\t0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61,\n\t0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70,\n\t0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x68, 0x72, 0x65, 0x61,\n\t0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x12,\n\t0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,\n\t0x6f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,\n\t0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12,\n\t0x35, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x09, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65,\n\t0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x6b,\n\t0x65, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x69, 0x6e, 0x6b, 0x4b, 0x65,\n\t0x79, 0x12, 0x4c, 0x0a, 0x0d, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61,\n\t0x74, 0x61, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f, 0x6f, 0x74, 0x2e,\n\t0x50, 0x61, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72,\n\t0x79, 0x52, 0x0c, 0x70, 0x61, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12,\n\t0x35, 0x0a, 0x08, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x52, 0x08, 0x61, 0x72,\n\t0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x1a, 0x5a, 0x0a, 0x11, 0x50, 0x61, 0x74, 0x68, 0x4d, 0x65,\n\t0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,\n\t0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2f, 0x0a,\n\t0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d,\n\t0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,\n\t0x38, 0x01, 0x22, 0x0d, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x22, 0x3b, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x12, 0x2b, 0x0a, 0x05, 0x72, 0x6f, 0x6f, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x52, 0x6f, 0x6f, 0x74, 0x52, 0x05, 0x72, 0x6f, 0x6f, 0x74, 0x73, 0x22, 0x7e,\n\t0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,\n\t0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,\n\t0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x62, 0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, 0x70,\n\t0x5f, 0x63, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x62, 0x6f, 0x6f, 0x74,\n\t0x73, 0x74, 0x72, 0x61, 0x70, 0x43, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x69, 0x76,\n\t0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x72, 0x69, 0x76, 0x61,\n\t0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e, 0x66, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x18, 0x04,\n\t0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x75, 0x6e, 0x66, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x22, 0xdb,\n\t0x01, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x12, 0x29, 0x0a, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,\n\t0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x52, 0x6f, 0x6f, 0x74, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x12, 0x34, 0x0a, 0x05,\n\t0x6c, 0x69, 0x6e, 0x6b, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69,\n\t0x6e, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x6c, 0x69, 0x6e,\n\t0x6b, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c,\n\t0x52, 0x04, 0x73, 0x65, 0x65, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x65, 0x65, 0x64, 0x5f, 0x63,\n\t0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x65, 0x65, 0x64, 0x43, 0x69,\n\t0x64, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,\n\t0x03, 0x52, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x74,\n\t0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x0b, 0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x49, 0x64, 0x22, 0x1f, 0x0a, 0x0b,\n\t0x52, 0x6f, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b,\n\t0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x39, 0x0a,\n\t0x0c, 0x52, 0x6f, 0x6f, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a,\n\t0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f,\n\t0x6f, 0x74, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x22, 0x34, 0x0a, 0x0c, 0x4c, 0x69, 0x6e, 0x6b,\n\t0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61,\n\t0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x47,\n\t0x0a, 0x0d, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,\n\t0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72,\n\t0x6c, 0x12, 0x10, 0x0a, 0x03, 0x77, 0x77, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,\n\t0x77, 0x77, 0x77, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x70, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x04, 0x69, 0x70, 0x6e, 0x73, 0x22, 0x37, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x50,\n\t0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,\n\t0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04,\n\t0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68,\n\t0x22, 0x6c, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2d, 0x0a, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x74, 0x68, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x69,\n\t0x74, 0x65, 0x6d, 0x12, 0x29, 0x0a, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f, 0x6f, 0x74, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x22, 0xf8,\n\t0x01, 0x0a, 0x08, 0x50, 0x61, 0x74, 0x68, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x63,\n\t0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x12, 0x0a,\n\t0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,\n\t0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20,\n\t0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f,\n\t0x64, 0x69, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x44, 0x69, 0x72,\n\t0x12, 0x2f, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,\n\t0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x50, 0x61, 0x74, 0x68, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d,\n\t0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,\n\t0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x43, 0x6f, 0x75,\n\t0x6e, 0x74, 0x12, 0x35, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x09,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52,\n\t0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x29, 0x0a, 0x13, 0x4c, 0x69, 0x73,\n\t0x74, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,\n\t0x70, 0x61, 0x74, 0x68, 0x22, 0x45, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x70, 0x66, 0x73,\n\t0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2d, 0x0a, 0x04,\n\t0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x74,\n\t0x68, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x22, 0xbb, 0x01, 0x0a, 0x0f,\n\t0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,\n\t0x41, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,\n\t0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64,\n\t0x65, 0x72, 0x12, 0x16, 0x0a, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,\n\t0x0c, 0x48, 0x00, 0x52, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x1a, 0x42, 0x0a, 0x06, 0x48, 0x65,\n\t0x61, 0x64, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f,\n\t0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x42, 0x09,\n\t0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0xf0, 0x01, 0x0a, 0x10, 0x50, 0x75,\n\t0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3d,\n\t0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x1a, 0x9c, 0x01,\n\t0x0a, 0x05, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70,\n\t0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12,\n\t0x14, 0x0a, 0x05, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,\n\t0x62, 0x79, 0x74, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x29, 0x0a, 0x04, 0x72, 0x6f, 0x6f,\n\t0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75,\n\t0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f, 0x6f, 0x74, 0x52, 0x04,\n\t0x72, 0x6f, 0x6f, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x18, 0x06,\n\t0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x22, 0x99, 0x02, 0x0a,\n\t0x10, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x12, 0x42, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x73, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x48, 0x00, 0x52, 0x06, 0x68,\n\t0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x3f, 0x0a, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x73,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x48, 0x00, 0x52,\n\t0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x1a, 0x44, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,\n\t0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,\n\t0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x74, 0x68, 0x73, 0x18,\n\t0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x70, 0x61, 0x74, 0x68, 0x73, 0x1a, 0x2f, 0x0a, 0x05,\n\t0x43, 0x68, 0x75, 0x6e, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74,\n\t0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x42, 0x09, 0x0a,\n\t0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x90, 0x01, 0x0a, 0x11, 0x50, 0x75, 0x73,\n\t0x68, 0x50, 0x61, 0x74, 0x68, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,\n\t0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61,\n\t0x74, 0x68, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x03, 0x63, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01,\n\t0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x6e, 0x6e,\n\t0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64,\n\t0x12, 0x29, 0x0a, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x52, 0x6f, 0x6f, 0x74, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x22, 0x37, 0x0a, 0x0f, 0x50,\n\t0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10,\n\t0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,\n\t0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,\n\t0x70, 0x61, 0x74, 0x68, 0x22, 0x28, 0x0a, 0x10, 0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x68, 0x75, 0x6e,\n\t0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0x29,\n\t0x0a, 0x13, 0x50, 0x75, 0x6c, 0x6c, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x2c, 0x0a, 0x14, 0x50, 0x75, 0x6c,\n\t0x6c, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,\n\t0x52, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0x48, 0x0a, 0x0e, 0x53, 0x65, 0x74, 0x50, 0x61,\n\t0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x70,\n\t0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12,\n\t0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69,\n\t0x64, 0x22, 0x29, 0x0a, 0x0f, 0x53, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x22, 0x59, 0x0a, 0x0f,\n\t0x4d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,\n\t0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,\n\t0x79, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x50, 0x61, 0x74, 0x68, 0x12, 0x17,\n\t0x0a, 0x07, 0x74, 0x6f, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x06, 0x74, 0x6f, 0x50, 0x61, 0x74, 0x68, 0x22, 0x12, 0x0a, 0x10, 0x4d, 0x6f, 0x76, 0x65, 0x50,\n\t0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x21, 0x0a, 0x0d, 0x52,\n\t0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03,\n\t0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x28,\n\t0x0a, 0x0e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x22, 0x4d, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f,\n\t0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a,\n\t0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,\n\t0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70,\n\t0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x22, 0x57, 0x0a, 0x12, 0x52, 0x65, 0x6d, 0x6f, 0x76,\n\t0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a,\n\t0x04, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f,\n\t0x6f, 0x74, 0x52, 0x04, 0x72, 0x6f, 0x6f, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x6e, 0x6e,\n\t0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64,\n\t0x22, 0xeb, 0x01, 0x0a, 0x1a, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63,\n\t0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,\n\t0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,\n\t0x79, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x4c, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x03,\n\t0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x41,\n\t0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x72, 0x6f,\n\t0x6c, 0x65, 0x73, 0x1a, 0x59, 0x0a, 0x0a, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,\n\t0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,\n\t0x6b, 0x65, 0x79, 0x12, 0x35, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52,\n\t0x6f, 0x6c, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x35,\n\t0x0a, 0x1b, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,\n\t0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a,\n\t0x06, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70,\n\t0x69, 0x6e, 0x6e, 0x65, 0x64, 0x22, 0x42, 0x0a, 0x1a, 0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74,\n\t0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0xc7, 0x01, 0x0a, 0x1b, 0x50, 0x75,\n\t0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65,\n\t0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d, 0x0a, 0x05, 0x72, 0x6f, 0x6c,\n\t0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x50,\n\t0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,\n\t0x79, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x1a, 0x59, 0x0a, 0x0a, 0x52, 0x6f, 0x6c, 0x65,\n\t0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x35, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,\n\t0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75,\n\t0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63,\n\t0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,\n\t0x02, 0x38, 0x01, 0x22, 0x99, 0x03, 0x0a, 0x0d, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43,\n\t0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x5f, 0x66, 0x61, 0x63,\n\t0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x72, 0x65, 0x70, 0x46, 0x61,\n\t0x63, 0x74, 0x6f, 0x72, 0x12, 0x2a, 0x0a, 0x11, 0x64, 0x65, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e,\n\t0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,\n\t0x0f, 0x64, 0x65, 0x61, 0x6c, 0x4d, 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,\n\t0x12, 0x27, 0x0a, 0x0f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x6d, 0x69, 0x6e,\n\t0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75,\n\t0x64, 0x65, 0x64, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x72, 0x75,\n\t0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,\n\t0x09, 0x52, 0x0d, 0x74, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x73,\n\t0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65,\n\t0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,\n\t0x43, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x33, 0x0a, 0x05, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x18, 0x06,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65,\n\t0x6e, 0x65, 0x77, 0x52, 0x05, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61,\n\t0x78, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6d,\n\t0x61, 0x78, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x66, 0x61, 0x73, 0x74, 0x5f,\n\t0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52,\n\t0x0d, 0x66, 0x61, 0x73, 0x74, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x12, 0x2a,\n\t0x0a, 0x11, 0x64, 0x65, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x66,\n\t0x73, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x64, 0x65, 0x61, 0x6c, 0x53,\n\t0x74, 0x61, 0x72, 0x74, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x65,\n\t0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x61, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28,\n\t0x08, 0x52, 0x0c, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x44, 0x65, 0x61, 0x6c, 0x22,\n\t0x72, 0x0a, 0x08, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x07, 0x63,\n\t0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41,\n\t0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12,\n\t0x32, 0x0a, 0x07, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x07, 0x68, 0x69, 0x73, 0x74,\n\t0x6f, 0x72, 0x79, 0x22, 0xac, 0x02, 0x0a, 0x07, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x12,\n\t0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69,\n\t0x64, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x0e, 0x61, 0x72, 0x63, 0x68,\n\t0x69, 0x76, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e,\n\t0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,\n\t0x52, 0x0d, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,\n\t0x18, 0x0a, 0x07, 0x61, 0x62, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,\n\t0x52, 0x07, 0x61, 0x62, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x62, 0x6f,\n\t0x72, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,\n\t0x61, 0x62, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x61,\n\t0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x0a, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x63,\n\t0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,\n\t0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x36, 0x0a, 0x09, 0x64, 0x65,\n\t0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x44, 0x65, 0x61, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x64, 0x65, 0x61, 0x6c, 0x49, 0x6e,\n\t0x66, 0x6f, 0x22, 0xf1, 0x02, 0x0a, 0x08, 0x44, 0x65, 0x61, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12,\n\t0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x63, 0x69, 0x64, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x43,\n\t0x69, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x74, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a,\n\t0x0a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,\n\t0x6d, 0x69, 0x6e, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x69, 0x6e,\n\t0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x69, 0x65, 0x63, 0x65, 0x5f, 0x63, 0x69, 0x64, 0x18,\n\t0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x65, 0x63, 0x65, 0x43, 0x69, 0x64, 0x12,\n\t0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73,\n\t0x69, 0x7a, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x65, 0x72,\n\t0x5f, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x70, 0x72,\n\t0x69, 0x63, 0x65, 0x50, 0x65, 0x72, 0x45, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x1f, 0x0a, 0x0b, 0x73,\n\t0x74, 0x61, 0x72, 0x74, 0x5f, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04,\n\t0x52, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x45, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x1a, 0x0a, 0x08,\n\t0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,\n\t0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x65, 0x61, 0x6c,\n\t0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x64, 0x65, 0x61, 0x6c, 0x49,\n\t0x64, 0x12, 0x29, 0x0a, 0x10, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,\n\t0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x61, 0x63, 0x74,\n\t0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x18, 0x0a, 0x07,\n\t0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d,\n\t0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x46, 0x0a, 0x0c, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,\n\t0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,\n\t0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x05, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x22, 0x2f,\n\t0x0a, 0x1b, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65,\n\t0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a,\n\t0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22,\n\t0x65, 0x0a, 0x1c, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,\n\t0x45, 0x0a, 0x0e, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,\n\t0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75,\n\t0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0d, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65,\n\t0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x79, 0x0a, 0x1e, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66,\n\t0x61, 0x75, 0x6c, 0x74, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,\n\t0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x45, 0x0a, 0x0e, 0x61, 0x72,\n\t0x63, 0x68, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66,\n\t0x69, 0x67, 0x52, 0x0d, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,\n\t0x67, 0x22, 0x21, 0x0a, 0x1f, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x41,\n\t0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x22, 0xaa, 0x01, 0x0a, 0x0e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x45, 0x0a, 0x0e, 0x61, 0x72, 0x63,\n\t0x68, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,\n\t0x67, 0x52, 0x0d, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,\n\t0x12, 0x3f, 0x0a, 0x1c, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74,\n\t0x69, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x61, 0x6c,\n\t0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x19, 0x73, 0x6b, 0x69, 0x70, 0x41, 0x75, 0x74, 0x6f,\n\t0x6d, 0x61, 0x74, 0x69, 0x63, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x44, 0x65, 0x61,\n\t0x6c, 0x22, 0x11, 0x0a, 0x0f, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x22, 0x23, 0x0a, 0x0f, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x7a, 0x0a, 0x10, 0x41, 0x72, 0x63,\n\t0x68, 0x69, 0x76, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a,\n\t0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,\n\t0x74, 0x12, 0x32, 0x0a, 0x07, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x03,\n\t0x28, 0x0b, 0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x07, 0x68, 0x69,\n\t0x73, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x27, 0x0a, 0x13, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65,\n\t0x57, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03,\n\t0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x28,\n\t0x0a, 0x14, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x57, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x2a, 0x88, 0x01, 0x0a, 0x0e, 0x50, 0x61, 0x74,\n\t0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x1c, 0x50,\n\t0x41, 0x54, 0x48, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f,\n\t0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a,\n\t0x17, 0x50, 0x41, 0x54, 0x48, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x4c,\n\t0x45, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x45, 0x52, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x50, 0x41,\n\t0x54, 0x48, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x57,\n\t0x52, 0x49, 0x54, 0x45, 0x52, 0x10, 0x02, 0x12, 0x1a, 0x0a, 0x16, 0x50, 0x41, 0x54, 0x48, 0x5f,\n\t0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49,\n\t0x4e, 0x10, 0x03, 0x2a, 0xbc, 0x01, 0x0a, 0x0d, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x53,\n\t0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x1a, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45,\n\t0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,\n\t0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45,\n\t0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x51, 0x55, 0x45, 0x55, 0x45, 0x44, 0x10, 0x01,\n\t0x12, 0x1c, 0x0a, 0x18, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54,\n\t0x55, 0x53, 0x5f, 0x45, 0x58, 0x45, 0x43, 0x55, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x19,\n\t0x0a, 0x15, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53,\n\t0x5f, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x41, 0x52, 0x43,\n\t0x48, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x43, 0x41, 0x4e, 0x43,\n\t0x45, 0x4c, 0x45, 0x44, 0x10, 0x04, 0x12, 0x1a, 0x0a, 0x16, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56,\n\t0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53,\n\t0x10, 0x05, 0x32, 0xf6, 0x0e, 0x0a, 0x0a, 0x41, 0x50, 0x49, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,\n\t0x65, 0x12, 0x45, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75,\n\t0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61,\n\t0x74, 0x65, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x04, 0x52, 0x6f, 0x6f, 0x74, 0x12, 0x1c, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x52, 0x6f, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f,\n\t0x6f, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x05,\n\t0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b,\n\t0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,\n\t0x74, 0x68, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x0c, 0x4c, 0x69, 0x73,\n\t0x74, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74,\n\t0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x50, 0x75, 0x73, 0x68,\n\t0x50, 0x61, 0x74, 0x68, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63,\n\t0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74,\n\t0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x12,\n\t0x58, 0x0a, 0x09, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x73, 0x12, 0x21, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50,\n\t0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x12, 0x53, 0x0a, 0x08, 0x50, 0x75, 0x6c,\n\t0x6c, 0x50, 0x61, 0x74, 0x68, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b,\n\t0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75,\n\t0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61,\n\t0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x5f,\n\t0x0a, 0x0c, 0x50, 0x75, 0x6c, 0x6c, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x12, 0x24,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x49, 0x70, 0x66, 0x73, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x49, 0x70, 0x66, 0x73, 0x50,\n\t0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,\n\t0x4e, 0x0a, 0x07, 0x53, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x74,\n\t0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65,\n\t0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,\n\t0x51, 0x0a, 0x08, 0x4d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x20, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x6f,\n\t0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x4d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x22, 0x00, 0x12, 0x4b, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x1e, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52,\n\t0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52,\n\t0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,\n\t0x57, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x22, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x13, 0x50, 0x75, 0x73, 0x68,\n\t0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12,\n\t0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,\n\t0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50,\n\t0x75, 0x73, 0x68, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c,\n\t0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x13,\n\t0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f,\n\t0x6c, 0x65, 0x73, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74,\n\t0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63,\n\t0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x1a, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73,\n\t0x73, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,\n\t0x12, 0x75, 0x0a, 0x14, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,\n\t0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75,\n\t0x6c, 0x74, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63,\n\t0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,\n\t0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7e, 0x0a, 0x17, 0x53, 0x65, 0x74, 0x44, 0x65,\n\t0x66, 0x61, 0x75, 0x6c, 0x74, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66,\n\t0x69, 0x67, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x41,\n\t0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74,\n\t0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,\n\t0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x07, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74,\n\t0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x08, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x73, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74,\n\t0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b,\n\t0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x41, 0x72,\n\t0x63, 0x68, 0x69, 0x76, 0x65, 0x57, 0x61, 0x74, 0x63, 0x68, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63,\n\t0x68, 0x69, 0x76, 0x65, 0x57, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x57, 0x61, 0x74, 0x63, 0x68, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x42, 0x31, 0x5a, 0x2f, 0x67,\n\t0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c,\n\t0x65, 0x69, 0x6f, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x2f, 0x76, 0x32, 0x2f, 0x61,\n\t0x70, 0x69, 0x2f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x64, 0x2f, 0x70, 0x62, 0x62, 0x06,\n\t0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_api_bucketsd_pb_bucketsd_proto_rawDescOnce sync.Once\n\tfile_api_bucketsd_pb_bucketsd_proto_rawDescData = file_api_bucketsd_pb_bucketsd_proto_rawDesc\n)\n\nfunc file_api_bucketsd_pb_bucketsd_proto_rawDescGZIP() []byte {\n\tfile_api_bucketsd_pb_bucketsd_proto_rawDescOnce.Do(func() {\n\t\tfile_api_bucketsd_pb_bucketsd_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_bucketsd_pb_bucketsd_proto_rawDescData)\n\t})\n\treturn file_api_bucketsd_pb_bucketsd_proto_rawDescData\n}\n\nvar file_api_bucketsd_pb_bucketsd_proto_enumTypes = make([]protoimpl.EnumInfo, 2)\nvar file_api_bucketsd_pb_bucketsd_proto_msgTypes = make([]protoimpl.MessageInfo, 58)\nvar file_api_bucketsd_pb_bucketsd_proto_goTypes = []interface{}{\n\t(PathAccessRole)(0),                     // 0: api.bucketsd.pb.PathAccessRole\n\t(ArchiveStatus)(0),                      // 1: api.bucketsd.pb.ArchiveStatus\n\t(*Metadata)(nil),                        // 2: api.bucketsd.pb.Metadata\n\t(*Root)(nil),                            // 3: api.bucketsd.pb.Root\n\t(*ListRequest)(nil),                     // 4: api.bucketsd.pb.ListRequest\n\t(*ListResponse)(nil),                    // 5: api.bucketsd.pb.ListResponse\n\t(*CreateRequest)(nil),                   // 6: api.bucketsd.pb.CreateRequest\n\t(*CreateResponse)(nil),                  // 7: api.bucketsd.pb.CreateResponse\n\t(*RootRequest)(nil),                     // 8: api.bucketsd.pb.RootRequest\n\t(*RootResponse)(nil),                    // 9: api.bucketsd.pb.RootResponse\n\t(*LinksRequest)(nil),                    // 10: api.bucketsd.pb.LinksRequest\n\t(*LinksResponse)(nil),                   // 11: api.bucketsd.pb.LinksResponse\n\t(*ListPathRequest)(nil),                 // 12: api.bucketsd.pb.ListPathRequest\n\t(*ListPathResponse)(nil),                // 13: api.bucketsd.pb.ListPathResponse\n\t(*PathItem)(nil),                        // 14: api.bucketsd.pb.PathItem\n\t(*ListIpfsPathRequest)(nil),             // 15: api.bucketsd.pb.ListIpfsPathRequest\n\t(*ListIpfsPathResponse)(nil),            // 16: api.bucketsd.pb.ListIpfsPathResponse\n\t(*PushPathRequest)(nil),                 // 17: api.bucketsd.pb.PushPathRequest\n\t(*PushPathResponse)(nil),                // 18: api.bucketsd.pb.PushPathResponse\n\t(*PushPathsRequest)(nil),                // 19: api.bucketsd.pb.PushPathsRequest\n\t(*PushPathsResponse)(nil),               // 20: api.bucketsd.pb.PushPathsResponse\n\t(*PullPathRequest)(nil),                 // 21: api.bucketsd.pb.PullPathRequest\n\t(*PullPathResponse)(nil),                // 22: api.bucketsd.pb.PullPathResponse\n\t(*PullIpfsPathRequest)(nil),             // 23: api.bucketsd.pb.PullIpfsPathRequest\n\t(*PullIpfsPathResponse)(nil),            // 24: api.bucketsd.pb.PullIpfsPathResponse\n\t(*SetPathRequest)(nil),                  // 25: api.bucketsd.pb.SetPathRequest\n\t(*SetPathResponse)(nil),                 // 26: api.bucketsd.pb.SetPathResponse\n\t(*MovePathRequest)(nil),                 // 27: api.bucketsd.pb.MovePathRequest\n\t(*MovePathResponse)(nil),                // 28: api.bucketsd.pb.MovePathResponse\n\t(*RemoveRequest)(nil),                   // 29: api.bucketsd.pb.RemoveRequest\n\t(*RemoveResponse)(nil),                  // 30: api.bucketsd.pb.RemoveResponse\n\t(*RemovePathRequest)(nil),               // 31: api.bucketsd.pb.RemovePathRequest\n\t(*RemovePathResponse)(nil),              // 32: api.bucketsd.pb.RemovePathResponse\n\t(*PushPathAccessRolesRequest)(nil),      // 33: api.bucketsd.pb.PushPathAccessRolesRequest\n\t(*PushPathAccessRolesResponse)(nil),     // 34: api.bucketsd.pb.PushPathAccessRolesResponse\n\t(*PullPathAccessRolesRequest)(nil),      // 35: api.bucketsd.pb.PullPathAccessRolesRequest\n\t(*PullPathAccessRolesResponse)(nil),     // 36: api.bucketsd.pb.PullPathAccessRolesResponse\n\t(*ArchiveConfig)(nil),                   // 37: api.bucketsd.pb.ArchiveConfig\n\t(*Archives)(nil),                        // 38: api.bucketsd.pb.Archives\n\t(*Archive)(nil),                         // 39: api.bucketsd.pb.Archive\n\t(*DealInfo)(nil),                        // 40: api.bucketsd.pb.DealInfo\n\t(*ArchiveRenew)(nil),                    // 41: api.bucketsd.pb.ArchiveRenew\n\t(*DefaultArchiveConfigRequest)(nil),     // 42: api.bucketsd.pb.DefaultArchiveConfigRequest\n\t(*DefaultArchiveConfigResponse)(nil),    // 43: api.bucketsd.pb.DefaultArchiveConfigResponse\n\t(*SetDefaultArchiveConfigRequest)(nil),  // 44: api.bucketsd.pb.SetDefaultArchiveConfigRequest\n\t(*SetDefaultArchiveConfigResponse)(nil), // 45: api.bucketsd.pb.SetDefaultArchiveConfigResponse\n\t(*ArchiveRequest)(nil),                  // 46: api.bucketsd.pb.ArchiveRequest\n\t(*ArchiveResponse)(nil),                 // 47: api.bucketsd.pb.ArchiveResponse\n\t(*ArchivesRequest)(nil),                 // 48: api.bucketsd.pb.ArchivesRequest\n\t(*ArchivesResponse)(nil),                // 49: api.bucketsd.pb.ArchivesResponse\n\t(*ArchiveWatchRequest)(nil),             // 50: api.bucketsd.pb.ArchiveWatchRequest\n\t(*ArchiveWatchResponse)(nil),            // 51: api.bucketsd.pb.ArchiveWatchResponse\n\tnil,                                     // 52: api.bucketsd.pb.Metadata.RolesEntry\n\tnil,                                     // 53: api.bucketsd.pb.Root.PathMetadataEntry\n\t(*PushPathRequest_Header)(nil),          // 54: api.bucketsd.pb.PushPathRequest.Header\n\t(*PushPathResponse_Event)(nil),          // 55: api.bucketsd.pb.PushPathResponse.Event\n\t(*PushPathsRequest_Header)(nil),         // 56: api.bucketsd.pb.PushPathsRequest.Header\n\t(*PushPathsRequest_Chunk)(nil),          // 57: api.bucketsd.pb.PushPathsRequest.Chunk\n\tnil,                                     // 58: api.bucketsd.pb.PushPathAccessRolesRequest.RolesEntry\n\tnil,                                     // 59: api.bucketsd.pb.PullPathAccessRolesResponse.RolesEntry\n}\nvar file_api_bucketsd_pb_bucketsd_proto_depIdxs = []int32{\n\t52, // 0: api.bucketsd.pb.Metadata.roles:type_name -> api.bucketsd.pb.Metadata.RolesEntry\n\t2,  // 1: api.bucketsd.pb.Root.metadata:type_name -> api.bucketsd.pb.Metadata\n\t53, // 2: api.bucketsd.pb.Root.path_metadata:type_name -> api.bucketsd.pb.Root.PathMetadataEntry\n\t38, // 3: api.bucketsd.pb.Root.archives:type_name -> api.bucketsd.pb.Archives\n\t3,  // 4: api.bucketsd.pb.ListResponse.roots:type_name -> api.bucketsd.pb.Root\n\t3,  // 5: api.bucketsd.pb.CreateResponse.root:type_name -> api.bucketsd.pb.Root\n\t11, // 6: api.bucketsd.pb.CreateResponse.links:type_name -> api.bucketsd.pb.LinksResponse\n\t3,  // 7: api.bucketsd.pb.RootResponse.root:type_name -> api.bucketsd.pb.Root\n\t14, // 8: api.bucketsd.pb.ListPathResponse.item:type_name -> api.bucketsd.pb.PathItem\n\t3,  // 9: api.bucketsd.pb.ListPathResponse.root:type_name -> api.bucketsd.pb.Root\n\t14, // 10: api.bucketsd.pb.PathItem.items:type_name -> api.bucketsd.pb.PathItem\n\t2,  // 11: api.bucketsd.pb.PathItem.metadata:type_name -> api.bucketsd.pb.Metadata\n\t14, // 12: api.bucketsd.pb.ListIpfsPathResponse.item:type_name -> api.bucketsd.pb.PathItem\n\t54, // 13: api.bucketsd.pb.PushPathRequest.header:type_name -> api.bucketsd.pb.PushPathRequest.Header\n\t55, // 14: api.bucketsd.pb.PushPathResponse.event:type_name -> api.bucketsd.pb.PushPathResponse.Event\n\t56, // 15: api.bucketsd.pb.PushPathsRequest.header:type_name -> api.bucketsd.pb.PushPathsRequest.Header\n\t57, // 16: api.bucketsd.pb.PushPathsRequest.chunk:type_name -> api.bucketsd.pb.PushPathsRequest.Chunk\n\t3,  // 17: api.bucketsd.pb.PushPathsResponse.root:type_name -> api.bucketsd.pb.Root\n\t3,  // 18: api.bucketsd.pb.RemovePathResponse.root:type_name -> api.bucketsd.pb.Root\n\t58, // 19: api.bucketsd.pb.PushPathAccessRolesRequest.roles:type_name -> api.bucketsd.pb.PushPathAccessRolesRequest.RolesEntry\n\t59, // 20: api.bucketsd.pb.PullPathAccessRolesResponse.roles:type_name -> api.bucketsd.pb.PullPathAccessRolesResponse.RolesEntry\n\t41, // 21: api.bucketsd.pb.ArchiveConfig.renew:type_name -> api.bucketsd.pb.ArchiveRenew\n\t39, // 22: api.bucketsd.pb.Archives.current:type_name -> api.bucketsd.pb.Archive\n\t39, // 23: api.bucketsd.pb.Archives.history:type_name -> api.bucketsd.pb.Archive\n\t1,  // 24: api.bucketsd.pb.Archive.archive_status:type_name -> api.bucketsd.pb.ArchiveStatus\n\t40, // 25: api.bucketsd.pb.Archive.deal_info:type_name -> api.bucketsd.pb.DealInfo\n\t37, // 26: api.bucketsd.pb.DefaultArchiveConfigResponse.archive_config:type_name -> api.bucketsd.pb.ArchiveConfig\n\t37, // 27: api.bucketsd.pb.SetDefaultArchiveConfigRequest.archive_config:type_name -> api.bucketsd.pb.ArchiveConfig\n\t37, // 28: api.bucketsd.pb.ArchiveRequest.archive_config:type_name -> api.bucketsd.pb.ArchiveConfig\n\t39, // 29: api.bucketsd.pb.ArchivesResponse.current:type_name -> api.bucketsd.pb.Archive\n\t39, // 30: api.bucketsd.pb.ArchivesResponse.history:type_name -> api.bucketsd.pb.Archive\n\t0,  // 31: api.bucketsd.pb.Metadata.RolesEntry.value:type_name -> api.bucketsd.pb.PathAccessRole\n\t2,  // 32: api.bucketsd.pb.Root.PathMetadataEntry.value:type_name -> api.bucketsd.pb.Metadata\n\t3,  // 33: api.bucketsd.pb.PushPathResponse.Event.root:type_name -> api.bucketsd.pb.Root\n\t0,  // 34: api.bucketsd.pb.PushPathAccessRolesRequest.RolesEntry.value:type_name -> api.bucketsd.pb.PathAccessRole\n\t0,  // 35: api.bucketsd.pb.PullPathAccessRolesResponse.RolesEntry.value:type_name -> api.bucketsd.pb.PathAccessRole\n\t4,  // 36: api.bucketsd.pb.APIService.List:input_type -> api.bucketsd.pb.ListRequest\n\t6,  // 37: api.bucketsd.pb.APIService.Create:input_type -> api.bucketsd.pb.CreateRequest\n\t8,  // 38: api.bucketsd.pb.APIService.Root:input_type -> api.bucketsd.pb.RootRequest\n\t10, // 39: api.bucketsd.pb.APIService.Links:input_type -> api.bucketsd.pb.LinksRequest\n\t12, // 40: api.bucketsd.pb.APIService.ListPath:input_type -> api.bucketsd.pb.ListPathRequest\n\t15, // 41: api.bucketsd.pb.APIService.ListIpfsPath:input_type -> api.bucketsd.pb.ListIpfsPathRequest\n\t17, // 42: api.bucketsd.pb.APIService.PushPath:input_type -> api.bucketsd.pb.PushPathRequest\n\t19, // 43: api.bucketsd.pb.APIService.PushPaths:input_type -> api.bucketsd.pb.PushPathsRequest\n\t21, // 44: api.bucketsd.pb.APIService.PullPath:input_type -> api.bucketsd.pb.PullPathRequest\n\t23, // 45: api.bucketsd.pb.APIService.PullIpfsPath:input_type -> api.bucketsd.pb.PullIpfsPathRequest\n\t25, // 46: api.bucketsd.pb.APIService.SetPath:input_type -> api.bucketsd.pb.SetPathRequest\n\t27, // 47: api.bucketsd.pb.APIService.MovePath:input_type -> api.bucketsd.pb.MovePathRequest\n\t29, // 48: api.bucketsd.pb.APIService.Remove:input_type -> api.bucketsd.pb.RemoveRequest\n\t31, // 49: api.bucketsd.pb.APIService.RemovePath:input_type -> api.bucketsd.pb.RemovePathRequest\n\t33, // 50: api.bucketsd.pb.APIService.PushPathAccessRoles:input_type -> api.bucketsd.pb.PushPathAccessRolesRequest\n\t35, // 51: api.bucketsd.pb.APIService.PullPathAccessRoles:input_type -> api.bucketsd.pb.PullPathAccessRolesRequest\n\t42, // 52: api.bucketsd.pb.APIService.DefaultArchiveConfig:input_type -> api.bucketsd.pb.DefaultArchiveConfigRequest\n\t44, // 53: api.bucketsd.pb.APIService.SetDefaultArchiveConfig:input_type -> api.bucketsd.pb.SetDefaultArchiveConfigRequest\n\t46, // 54: api.bucketsd.pb.APIService.Archive:input_type -> api.bucketsd.pb.ArchiveRequest\n\t48, // 55: api.bucketsd.pb.APIService.Archives:input_type -> api.bucketsd.pb.ArchivesRequest\n\t50, // 56: api.bucketsd.pb.APIService.ArchiveWatch:input_type -> api.bucketsd.pb.ArchiveWatchRequest\n\t5,  // 57: api.bucketsd.pb.APIService.List:output_type -> api.bucketsd.pb.ListResponse\n\t7,  // 58: api.bucketsd.pb.APIService.Create:output_type -> api.bucketsd.pb.CreateResponse\n\t9,  // 59: api.bucketsd.pb.APIService.Root:output_type -> api.bucketsd.pb.RootResponse\n\t11, // 60: api.bucketsd.pb.APIService.Links:output_type -> api.bucketsd.pb.LinksResponse\n\t13, // 61: api.bucketsd.pb.APIService.ListPath:output_type -> api.bucketsd.pb.ListPathResponse\n\t16, // 62: api.bucketsd.pb.APIService.ListIpfsPath:output_type -> api.bucketsd.pb.ListIpfsPathResponse\n\t18, // 63: api.bucketsd.pb.APIService.PushPath:output_type -> api.bucketsd.pb.PushPathResponse\n\t20, // 64: api.bucketsd.pb.APIService.PushPaths:output_type -> api.bucketsd.pb.PushPathsResponse\n\t22, // 65: api.bucketsd.pb.APIService.PullPath:output_type -> api.bucketsd.pb.PullPathResponse\n\t24, // 66: api.bucketsd.pb.APIService.PullIpfsPath:output_type -> api.bucketsd.pb.PullIpfsPathResponse\n\t26, // 67: api.bucketsd.pb.APIService.SetPath:output_type -> api.bucketsd.pb.SetPathResponse\n\t28, // 68: api.bucketsd.pb.APIService.MovePath:output_type -> api.bucketsd.pb.MovePathResponse\n\t30, // 69: api.bucketsd.pb.APIService.Remove:output_type -> api.bucketsd.pb.RemoveResponse\n\t32, // 70: api.bucketsd.pb.APIService.RemovePath:output_type -> api.bucketsd.pb.RemovePathResponse\n\t34, // 71: api.bucketsd.pb.APIService.PushPathAccessRoles:output_type -> api.bucketsd.pb.PushPathAccessRolesResponse\n\t36, // 72: api.bucketsd.pb.APIService.PullPathAccessRoles:output_type -> api.bucketsd.pb.PullPathAccessRolesResponse\n\t43, // 73: api.bucketsd.pb.APIService.DefaultArchiveConfig:output_type -> api.bucketsd.pb.DefaultArchiveConfigResponse\n\t45, // 74: api.bucketsd.pb.APIService.SetDefaultArchiveConfig:output_type -> api.bucketsd.pb.SetDefaultArchiveConfigResponse\n\t47, // 75: api.bucketsd.pb.APIService.Archive:output_type -> api.bucketsd.pb.ArchiveResponse\n\t49, // 76: api.bucketsd.pb.APIService.Archives:output_type -> api.bucketsd.pb.ArchivesResponse\n\t51, // 77: api.bucketsd.pb.APIService.ArchiveWatch:output_type -> api.bucketsd.pb.ArchiveWatchResponse\n\t57, // [57:78] is the sub-list for method output_type\n\t36, // [36:57] is the sub-list for method input_type\n\t36, // [36:36] is the sub-list for extension type_name\n\t36, // [36:36] is the sub-list for extension extendee\n\t0,  // [0:36] is the sub-list for field type_name\n}\n\nfunc init() { file_api_bucketsd_pb_bucketsd_proto_init() }\nfunc file_api_bucketsd_pb_bucketsd_proto_init() {\n\tif File_api_bucketsd_pb_bucketsd_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Metadata); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Root); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RootRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RootResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*LinksRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*LinksResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListPathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListPathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PathItem); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListIpfsPathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListIpfsPathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PullPathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PullPathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PullIpfsPathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PullIpfsPathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetPathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetPathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MovePathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MovePathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RemoveRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RemoveResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RemovePathRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RemovePathResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathAccessRolesRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathAccessRolesResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PullPathAccessRolesRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PullPathAccessRolesResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveConfig); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Archives); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Archive); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DealInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRenew); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DefaultArchiveConfigRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DefaultArchiveConfigResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetDefaultArchiveConfigRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetDefaultArchiveConfigResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchivesRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchivesResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveWatchRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveWatchResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathRequest_Header); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathResponse_Event); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathsRequest_Header); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PushPathsRequest_Chunk); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[15].OneofWrappers = []interface{}{\n\t\t(*PushPathRequest_Header_)(nil),\n\t\t(*PushPathRequest_Chunk)(nil),\n\t}\n\tfile_api_bucketsd_pb_bucketsd_proto_msgTypes[17].OneofWrappers = []interface{}{\n\t\t(*PushPathsRequest_Header_)(nil),\n\t\t(*PushPathsRequest_Chunk_)(nil),\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_api_bucketsd_pb_bucketsd_proto_rawDesc,\n\t\t\tNumEnums:      2,\n\t\t\tNumMessages:   58,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_api_bucketsd_pb_bucketsd_proto_goTypes,\n\t\tDependencyIndexes: file_api_bucketsd_pb_bucketsd_proto_depIdxs,\n\t\tEnumInfos:         file_api_bucketsd_pb_bucketsd_proto_enumTypes,\n\t\tMessageInfos:      file_api_bucketsd_pb_bucketsd_proto_msgTypes,\n\t}.Build()\n\tFile_api_bucketsd_pb_bucketsd_proto = out.File\n\tfile_api_bucketsd_pb_bucketsd_proto_rawDesc = nil\n\tfile_api_bucketsd_pb_bucketsd_proto_goTypes = nil\n\tfile_api_bucketsd_pb_bucketsd_proto_depIdxs = nil\n}\n\n// Reference imports to suppress errors if they are not otherwise used.\nvar _ context.Context\nvar _ grpc.ClientConnInterface\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\nconst _ = grpc.SupportPackageIsVersion6\n\n// APIServiceClient is the client API for APIService service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.\ntype APIServiceClient interface {\n\tList(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error)\n\tCreate(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error)\n\tRoot(ctx context.Context, in *RootRequest, opts ...grpc.CallOption) (*RootResponse, error)\n\tLinks(ctx context.Context, in *LinksRequest, opts ...grpc.CallOption) (*LinksResponse, error)\n\tListPath(ctx context.Context, in *ListPathRequest, opts ...grpc.CallOption) (*ListPathResponse, error)\n\tListIpfsPath(ctx context.Context, in *ListIpfsPathRequest, opts ...grpc.CallOption) (*ListIpfsPathResponse, error)\n\tPushPath(ctx context.Context, opts ...grpc.CallOption) (APIService_PushPathClient, error)\n\tPushPaths(ctx context.Context, opts ...grpc.CallOption) (APIService_PushPathsClient, error)\n\tPullPath(ctx context.Context, in *PullPathRequest, opts ...grpc.CallOption) (APIService_PullPathClient, error)\n\tPullIpfsPath(ctx context.Context, in *PullIpfsPathRequest, opts ...grpc.CallOption) (APIService_PullIpfsPathClient, error)\n\tSetPath(ctx context.Context, in *SetPathRequest, opts ...grpc.CallOption) (*SetPathResponse, error)\n\tMovePath(ctx context.Context, in *MovePathRequest, opts ...grpc.CallOption) (*MovePathResponse, error)\n\tRemove(ctx context.Context, in *RemoveRequest, opts ...grpc.CallOption) (*RemoveResponse, error)\n\tRemovePath(ctx context.Context, in *RemovePathRequest, opts ...grpc.CallOption) (*RemovePathResponse, error)\n\tPushPathAccessRoles(ctx context.Context, in *PushPathAccessRolesRequest, opts ...grpc.CallOption) (*PushPathAccessRolesResponse, error)\n\tPullPathAccessRoles(ctx context.Context, in *PullPathAccessRolesRequest, opts ...grpc.CallOption) (*PullPathAccessRolesResponse, error)\n\t// Archive\n\tDefaultArchiveConfig(ctx context.Context, in *DefaultArchiveConfigRequest, opts ...grpc.CallOption) (*DefaultArchiveConfigResponse, error)\n\tSetDefaultArchiveConfig(ctx context.Context, in *SetDefaultArchiveConfigRequest, opts ...grpc.CallOption) (*SetDefaultArchiveConfigResponse, error)\n\tArchive(ctx context.Context, in *ArchiveRequest, opts ...grpc.CallOption) (*ArchiveResponse, error)\n\tArchives(ctx context.Context, in *ArchivesRequest, opts ...grpc.CallOption) (*ArchivesResponse, error)\n\tArchiveWatch(ctx context.Context, in *ArchiveWatchRequest, opts ...grpc.CallOption) (APIService_ArchiveWatchClient, error)\n}\n\ntype aPIServiceClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient {\n\treturn &aPIServiceClient{cc}\n}\n\nfunc (c *aPIServiceClient) List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error) {\n\tout := new(ListResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/List\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error) {\n\tout := new(CreateResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/Create\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Root(ctx context.Context, in *RootRequest, opts ...grpc.CallOption) (*RootResponse, error) {\n\tout := new(RootResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/Root\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Links(ctx context.Context, in *LinksRequest, opts ...grpc.CallOption) (*LinksResponse, error) {\n\tout := new(LinksResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/Links\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListPath(ctx context.Context, in *ListPathRequest, opts ...grpc.CallOption) (*ListPathResponse, error) {\n\tout := new(ListPathResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/ListPath\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListIpfsPath(ctx context.Context, in *ListIpfsPathRequest, opts ...grpc.CallOption) (*ListIpfsPathResponse, error) {\n\tout := new(ListIpfsPathResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/ListIpfsPath\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) PushPath(ctx context.Context, opts ...grpc.CallOption) (APIService_PushPathClient, error) {\n\tstream, err := c.cc.NewStream(ctx, &_APIService_serviceDesc.Streams[0], \"/api.bucketsd.pb.APIService/PushPath\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tx := &aPIServicePushPathClient{stream}\n\treturn x, nil\n}\n\ntype APIService_PushPathClient interface {\n\tSend(*PushPathRequest) error\n\tRecv() (*PushPathResponse, error)\n\tgrpc.ClientStream\n}\n\ntype aPIServicePushPathClient struct {\n\tgrpc.ClientStream\n}\n\nfunc (x *aPIServicePushPathClient) Send(m *PushPathRequest) error {\n\treturn x.ClientStream.SendMsg(m)\n}\n\nfunc (x *aPIServicePushPathClient) Recv() (*PushPathResponse, error) {\n\tm := new(PushPathResponse)\n\tif err := x.ClientStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\nfunc (c *aPIServiceClient) PushPaths(ctx context.Context, opts ...grpc.CallOption) (APIService_PushPathsClient, error) {\n\tstream, err := c.cc.NewStream(ctx, &_APIService_serviceDesc.Streams[1], \"/api.bucketsd.pb.APIService/PushPaths\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tx := &aPIServicePushPathsClient{stream}\n\treturn x, nil\n}\n\ntype APIService_PushPathsClient interface {\n\tSend(*PushPathsRequest) error\n\tRecv() (*PushPathsResponse, error)\n\tgrpc.ClientStream\n}\n\ntype aPIServicePushPathsClient struct {\n\tgrpc.ClientStream\n}\n\nfunc (x *aPIServicePushPathsClient) Send(m *PushPathsRequest) error {\n\treturn x.ClientStream.SendMsg(m)\n}\n\nfunc (x *aPIServicePushPathsClient) Recv() (*PushPathsResponse, error) {\n\tm := new(PushPathsResponse)\n\tif err := x.ClientStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\nfunc (c *aPIServiceClient) PullPath(ctx context.Context, in *PullPathRequest, opts ...grpc.CallOption) (APIService_PullPathClient, error) {\n\tstream, err := c.cc.NewStream(ctx, &_APIService_serviceDesc.Streams[2], \"/api.bucketsd.pb.APIService/PullPath\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tx := &aPIServicePullPathClient{stream}\n\tif err := x.ClientStream.SendMsg(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := x.ClientStream.CloseSend(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn x, nil\n}\n\ntype APIService_PullPathClient interface {\n\tRecv() (*PullPathResponse, error)\n\tgrpc.ClientStream\n}\n\ntype aPIServicePullPathClient struct {\n\tgrpc.ClientStream\n}\n\nfunc (x *aPIServicePullPathClient) Recv() (*PullPathResponse, error) {\n\tm := new(PullPathResponse)\n\tif err := x.ClientStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\nfunc (c *aPIServiceClient) PullIpfsPath(ctx context.Context, in *PullIpfsPathRequest, opts ...grpc.CallOption) (APIService_PullIpfsPathClient, error) {\n\tstream, err := c.cc.NewStream(ctx, &_APIService_serviceDesc.Streams[3], \"/api.bucketsd.pb.APIService/PullIpfsPath\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tx := &aPIServicePullIpfsPathClient{stream}\n\tif err := x.ClientStream.SendMsg(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := x.ClientStream.CloseSend(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn x, nil\n}\n\ntype APIService_PullIpfsPathClient interface {\n\tRecv() (*PullIpfsPathResponse, error)\n\tgrpc.ClientStream\n}\n\ntype aPIServicePullIpfsPathClient struct {\n\tgrpc.ClientStream\n}\n\nfunc (x *aPIServicePullIpfsPathClient) Recv() (*PullIpfsPathResponse, error) {\n\tm := new(PullIpfsPathResponse)\n\tif err := x.ClientStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\nfunc (c *aPIServiceClient) SetPath(ctx context.Context, in *SetPathRequest, opts ...grpc.CallOption) (*SetPathResponse, error) {\n\tout := new(SetPathResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/SetPath\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) MovePath(ctx context.Context, in *MovePathRequest, opts ...grpc.CallOption) (*MovePathResponse, error) {\n\tout := new(MovePathResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/MovePath\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Remove(ctx context.Context, in *RemoveRequest, opts ...grpc.CallOption) (*RemoveResponse, error) {\n\tout := new(RemoveResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/Remove\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) RemovePath(ctx context.Context, in *RemovePathRequest, opts ...grpc.CallOption) (*RemovePathResponse, error) {\n\tout := new(RemovePathResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/RemovePath\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) PushPathAccessRoles(ctx context.Context, in *PushPathAccessRolesRequest, opts ...grpc.CallOption) (*PushPathAccessRolesResponse, error) {\n\tout := new(PushPathAccessRolesResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/PushPathAccessRoles\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) PullPathAccessRoles(ctx context.Context, in *PullPathAccessRolesRequest, opts ...grpc.CallOption) (*PullPathAccessRolesResponse, error) {\n\tout := new(PullPathAccessRolesResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/PullPathAccessRoles\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) DefaultArchiveConfig(ctx context.Context, in *DefaultArchiveConfigRequest, opts ...grpc.CallOption) (*DefaultArchiveConfigResponse, error) {\n\tout := new(DefaultArchiveConfigResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/DefaultArchiveConfig\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) SetDefaultArchiveConfig(ctx context.Context, in *SetDefaultArchiveConfigRequest, opts ...grpc.CallOption) (*SetDefaultArchiveConfigResponse, error) {\n\tout := new(SetDefaultArchiveConfigResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/SetDefaultArchiveConfig\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Archive(ctx context.Context, in *ArchiveRequest, opts ...grpc.CallOption) (*ArchiveResponse, error) {\n\tout := new(ArchiveResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/Archive\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Archives(ctx context.Context, in *ArchivesRequest, opts ...grpc.CallOption) (*ArchivesResponse, error) {\n\tout := new(ArchivesResponse)\n\terr := c.cc.Invoke(ctx, \"/api.bucketsd.pb.APIService/Archives\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ArchiveWatch(ctx context.Context, in *ArchiveWatchRequest, opts ...grpc.CallOption) (APIService_ArchiveWatchClient, error) {\n\tstream, err := c.cc.NewStream(ctx, &_APIService_serviceDesc.Streams[4], \"/api.bucketsd.pb.APIService/ArchiveWatch\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tx := &aPIServiceArchiveWatchClient{stream}\n\tif err := x.ClientStream.SendMsg(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := x.ClientStream.CloseSend(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn x, nil\n}\n\ntype APIService_ArchiveWatchClient interface {\n\tRecv() (*ArchiveWatchResponse, error)\n\tgrpc.ClientStream\n}\n\ntype aPIServiceArchiveWatchClient struct {\n\tgrpc.ClientStream\n}\n\nfunc (x *aPIServiceArchiveWatchClient) Recv() (*ArchiveWatchResponse, error) {\n\tm := new(ArchiveWatchResponse)\n\tif err := x.ClientStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\n// APIServiceServer is the server API for APIService service.\ntype APIServiceServer interface {\n\tList(context.Context, *ListRequest) (*ListResponse, error)\n\tCreate(context.Context, *CreateRequest) (*CreateResponse, error)\n\tRoot(context.Context, *RootRequest) (*RootResponse, error)\n\tLinks(context.Context, *LinksRequest) (*LinksResponse, error)\n\tListPath(context.Context, *ListPathRequest) (*ListPathResponse, error)\n\tListIpfsPath(context.Context, *ListIpfsPathRequest) (*ListIpfsPathResponse, error)\n\tPushPath(APIService_PushPathServer) error\n\tPushPaths(APIService_PushPathsServer) error\n\tPullPath(*PullPathRequest, APIService_PullPathServer) error\n\tPullIpfsPath(*PullIpfsPathRequest, APIService_PullIpfsPathServer) error\n\tSetPath(context.Context, *SetPathRequest) (*SetPathResponse, error)\n\tMovePath(context.Context, *MovePathRequest) (*MovePathResponse, error)\n\tRemove(context.Context, *RemoveRequest) (*RemoveResponse, error)\n\tRemovePath(context.Context, *RemovePathRequest) (*RemovePathResponse, error)\n\tPushPathAccessRoles(context.Context, *PushPathAccessRolesRequest) (*PushPathAccessRolesResponse, error)\n\tPullPathAccessRoles(context.Context, *PullPathAccessRolesRequest) (*PullPathAccessRolesResponse, error)\n\t// Archive\n\tDefaultArchiveConfig(context.Context, *DefaultArchiveConfigRequest) (*DefaultArchiveConfigResponse, error)\n\tSetDefaultArchiveConfig(context.Context, *SetDefaultArchiveConfigRequest) (*SetDefaultArchiveConfigResponse, error)\n\tArchive(context.Context, *ArchiveRequest) (*ArchiveResponse, error)\n\tArchives(context.Context, *ArchivesRequest) (*ArchivesResponse, error)\n\tArchiveWatch(*ArchiveWatchRequest, APIService_ArchiveWatchServer) error\n}\n\n// UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.\ntype UnimplementedAPIServiceServer struct {\n}\n\nfunc (*UnimplementedAPIServiceServer) List(context.Context, *ListRequest) (*ListResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method List not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Create(context.Context, *CreateRequest) (*CreateResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Create not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Root(context.Context, *RootRequest) (*RootResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Root not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Links(context.Context, *LinksRequest) (*LinksResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Links not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListPath(context.Context, *ListPathRequest) (*ListPathResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListPath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListIpfsPath(context.Context, *ListIpfsPathRequest) (*ListIpfsPathResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListIpfsPath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) PushPath(APIService_PushPathServer) error {\n\treturn status.Errorf(codes.Unimplemented, \"method PushPath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) PushPaths(APIService_PushPathsServer) error {\n\treturn status.Errorf(codes.Unimplemented, \"method PushPaths not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) PullPath(*PullPathRequest, APIService_PullPathServer) error {\n\treturn status.Errorf(codes.Unimplemented, \"method PullPath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) PullIpfsPath(*PullIpfsPathRequest, APIService_PullIpfsPathServer) error {\n\treturn status.Errorf(codes.Unimplemented, \"method PullIpfsPath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) SetPath(context.Context, *SetPathRequest) (*SetPathResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method SetPath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) MovePath(context.Context, *MovePathRequest) (*MovePathResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method MovePath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Remove(context.Context, *RemoveRequest) (*RemoveResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Remove not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) RemovePath(context.Context, *RemovePathRequest) (*RemovePathResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method RemovePath not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) PushPathAccessRoles(context.Context, *PushPathAccessRolesRequest) (*PushPathAccessRolesResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method PushPathAccessRoles not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) PullPathAccessRoles(context.Context, *PullPathAccessRolesRequest) (*PullPathAccessRolesResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method PullPathAccessRoles not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) DefaultArchiveConfig(context.Context, *DefaultArchiveConfigRequest) (*DefaultArchiveConfigResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method DefaultArchiveConfig not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) SetDefaultArchiveConfig(context.Context, *SetDefaultArchiveConfigRequest) (*SetDefaultArchiveConfigResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method SetDefaultArchiveConfig not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Archive(context.Context, *ArchiveRequest) (*ArchiveResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Archive not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Archives(context.Context, *ArchivesRequest) (*ArchivesResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Archives not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ArchiveWatch(*ArchiveWatchRequest, APIService_ArchiveWatchServer) error {\n\treturn status.Errorf(codes.Unimplemented, \"method ArchiveWatch not implemented\")\n}\n\nfunc RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer) {\n\ts.RegisterService(&_APIService_serviceDesc, srv)\n}\n\nfunc _APIService_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).List(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/List\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).List(ctx, req.(*ListRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CreateRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Create(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/Create\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Create(ctx, req.(*CreateRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Root_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(RootRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Root(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/Root\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Root(ctx, req.(*RootRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Links_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(LinksRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Links(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/Links\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Links(ctx, req.(*LinksRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListPath_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListPathRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListPath(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/ListPath\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListPath(ctx, req.(*ListPathRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListIpfsPath_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListIpfsPathRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListIpfsPath(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/ListIpfsPath\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListIpfsPath(ctx, req.(*ListIpfsPathRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_PushPath_Handler(srv interface{}, stream grpc.ServerStream) error {\n\treturn srv.(APIServiceServer).PushPath(&aPIServicePushPathServer{stream})\n}\n\ntype APIService_PushPathServer interface {\n\tSend(*PushPathResponse) error\n\tRecv() (*PushPathRequest, error)\n\tgrpc.ServerStream\n}\n\ntype aPIServicePushPathServer struct {\n\tgrpc.ServerStream\n}\n\nfunc (x *aPIServicePushPathServer) Send(m *PushPathResponse) error {\n\treturn x.ServerStream.SendMsg(m)\n}\n\nfunc (x *aPIServicePushPathServer) Recv() (*PushPathRequest, error) {\n\tm := new(PushPathRequest)\n\tif err := x.ServerStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\nfunc _APIService_PushPaths_Handler(srv interface{}, stream grpc.ServerStream) error {\n\treturn srv.(APIServiceServer).PushPaths(&aPIServicePushPathsServer{stream})\n}\n\ntype APIService_PushPathsServer interface {\n\tSend(*PushPathsResponse) error\n\tRecv() (*PushPathsRequest, error)\n\tgrpc.ServerStream\n}\n\ntype aPIServicePushPathsServer struct {\n\tgrpc.ServerStream\n}\n\nfunc (x *aPIServicePushPathsServer) Send(m *PushPathsResponse) error {\n\treturn x.ServerStream.SendMsg(m)\n}\n\nfunc (x *aPIServicePushPathsServer) Recv() (*PushPathsRequest, error) {\n\tm := new(PushPathsRequest)\n\tif err := x.ServerStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\nfunc _APIService_PullPath_Handler(srv interface{}, stream grpc.ServerStream) error {\n\tm := new(PullPathRequest)\n\tif err := stream.RecvMsg(m); err != nil {\n\t\treturn err\n\t}\n\treturn srv.(APIServiceServer).PullPath(m, &aPIServicePullPathServer{stream})\n}\n\ntype APIService_PullPathServer interface {\n\tSend(*PullPathResponse) error\n\tgrpc.ServerStream\n}\n\ntype aPIServicePullPathServer struct {\n\tgrpc.ServerStream\n}\n\nfunc (x *aPIServicePullPathServer) Send(m *PullPathResponse) error {\n\treturn x.ServerStream.SendMsg(m)\n}\n\nfunc _APIService_PullIpfsPath_Handler(srv interface{}, stream grpc.ServerStream) error {\n\tm := new(PullIpfsPathRequest)\n\tif err := stream.RecvMsg(m); err != nil {\n\t\treturn err\n\t}\n\treturn srv.(APIServiceServer).PullIpfsPath(m, &aPIServicePullIpfsPathServer{stream})\n}\n\ntype APIService_PullIpfsPathServer interface {\n\tSend(*PullIpfsPathResponse) error\n\tgrpc.ServerStream\n}\n\ntype aPIServicePullIpfsPathServer struct {\n\tgrpc.ServerStream\n}\n\nfunc (x *aPIServicePullIpfsPathServer) Send(m *PullIpfsPathResponse) error {\n\treturn x.ServerStream.SendMsg(m)\n}\n\nfunc _APIService_SetPath_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SetPathRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).SetPath(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/SetPath\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).SetPath(ctx, req.(*SetPathRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_MovePath_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(MovePathRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).MovePath(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/MovePath\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).MovePath(ctx, req.(*MovePathRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Remove_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(RemoveRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Remove(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/Remove\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Remove(ctx, req.(*RemoveRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_RemovePath_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(RemovePathRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).RemovePath(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/RemovePath\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).RemovePath(ctx, req.(*RemovePathRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_PushPathAccessRoles_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(PushPathAccessRolesRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).PushPathAccessRoles(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/PushPathAccessRoles\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).PushPathAccessRoles(ctx, req.(*PushPathAccessRolesRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_PullPathAccessRoles_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(PullPathAccessRolesRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).PullPathAccessRoles(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/PullPathAccessRoles\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).PullPathAccessRoles(ctx, req.(*PullPathAccessRolesRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_DefaultArchiveConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(DefaultArchiveConfigRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).DefaultArchiveConfig(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/DefaultArchiveConfig\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).DefaultArchiveConfig(ctx, req.(*DefaultArchiveConfigRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_SetDefaultArchiveConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SetDefaultArchiveConfigRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).SetDefaultArchiveConfig(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/SetDefaultArchiveConfig\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).SetDefaultArchiveConfig(ctx, req.(*SetDefaultArchiveConfigRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Archive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ArchiveRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Archive(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/Archive\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Archive(ctx, req.(*ArchiveRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Archives_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ArchivesRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Archives(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.bucketsd.pb.APIService/Archives\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Archives(ctx, req.(*ArchivesRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ArchiveWatch_Handler(srv interface{}, stream grpc.ServerStream) error {\n\tm := new(ArchiveWatchRequest)\n\tif err := stream.RecvMsg(m); err != nil {\n\t\treturn err\n\t}\n\treturn srv.(APIServiceServer).ArchiveWatch(m, &aPIServiceArchiveWatchServer{stream})\n}\n\ntype APIService_ArchiveWatchServer interface {\n\tSend(*ArchiveWatchResponse) error\n\tgrpc.ServerStream\n}\n\ntype aPIServiceArchiveWatchServer struct {\n\tgrpc.ServerStream\n}\n\nfunc (x *aPIServiceArchiveWatchServer) Send(m *ArchiveWatchResponse) error {\n\treturn x.ServerStream.SendMsg(m)\n}\n\nvar _APIService_serviceDesc = grpc.ServiceDesc{\n\tServiceName: \"api.bucketsd.pb.APIService\",\n\tHandlerType: (*APIServiceServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"List\",\n\t\t\tHandler:    _APIService_List_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Create\",\n\t\t\tHandler:    _APIService_Create_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Root\",\n\t\t\tHandler:    _APIService_Root_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Links\",\n\t\t\tHandler:    _APIService_Links_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListPath\",\n\t\t\tHandler:    _APIService_ListPath_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListIpfsPath\",\n\t\t\tHandler:    _APIService_ListIpfsPath_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"SetPath\",\n\t\t\tHandler:    _APIService_SetPath_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"MovePath\",\n\t\t\tHandler:    _APIService_MovePath_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Remove\",\n\t\t\tHandler:    _APIService_Remove_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"RemovePath\",\n\t\t\tHandler:    _APIService_RemovePath_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"PushPathAccessRoles\",\n\t\t\tHandler:    _APIService_PushPathAccessRoles_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"PullPathAccessRoles\",\n\t\t\tHandler:    _APIService_PullPathAccessRoles_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"DefaultArchiveConfig\",\n\t\t\tHandler:    _APIService_DefaultArchiveConfig_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"SetDefaultArchiveConfig\",\n\t\t\tHandler:    _APIService_SetDefaultArchiveConfig_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Archive\",\n\t\t\tHandler:    _APIService_Archive_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Archives\",\n\t\t\tHandler:    _APIService_Archives_Handler,\n\t\t},\n\t},\n\tStreams: []grpc.StreamDesc{\n\t\t{\n\t\t\tStreamName:    \"PushPath\",\n\t\t\tHandler:       _APIService_PushPath_Handler,\n\t\t\tServerStreams: true,\n\t\t\tClientStreams: true,\n\t\t},\n\t\t{\n\t\t\tStreamName:    \"PushPaths\",\n\t\t\tHandler:       _APIService_PushPaths_Handler,\n\t\t\tServerStreams: true,\n\t\t\tClientStreams: true,\n\t\t},\n\t\t{\n\t\t\tStreamName:    \"PullPath\",\n\t\t\tHandler:       _APIService_PullPath_Handler,\n\t\t\tServerStreams: true,\n\t\t},\n\t\t{\n\t\t\tStreamName:    \"PullIpfsPath\",\n\t\t\tHandler:       _APIService_PullIpfsPath_Handler,\n\t\t\tServerStreams: true,\n\t\t},\n\t\t{\n\t\t\tStreamName:    \"ArchiveWatch\",\n\t\t\tHandler:       _APIService_ArchiveWatch_Handler,\n\t\t\tServerStreams: true,\n\t\t},\n\t},\n\tMetadata: \"api/bucketsd/pb/bucketsd.proto\",\n}\n"
  },
  {
    "path": "api/bucketsd/pb/bucketsd.proto",
    "content": "syntax = \"proto3\";\npackage api.bucketsd.pb;\noption go_package = \"github.com/textileio/textile/v2/api/bucketsd/pb\";\n\nmessage Metadata {\n    map<string, PathAccessRole> roles = 1;\n    int64 updated_at = 2;\n    string key = 3;\n\n    // @todo: For v3, change this to:\n    // string key = 1;\n    // map<string, PathAccessRole> roles = 2;\n    // int64 updated_at = 3;\n}\n\nmessage Root {\n    string key = 1;\n    string name = 2;\n    string path = 3;\n    int64 created_at = 4;\n    int64 updated_at = 5;\n    string thread = 6;\n    string owner = 7;\n    int32 version = 8;\n    Metadata metadata = 9;\n    string link_key = 10;\n    map<string, Metadata> path_metadata = 11;\n    Archives archives = 12;\n\n    // @todo: For v3, change this to:\n    // string thread = 1;\n    // string key = 2;\n    // string owner = 3;\n    // string name = 4;\n    // int32 version = 5;\n    // string link_key = 6;\n    // string path = 7;\n    // map<string, Metadata> metadata = 8;\n    // Archives archives = 9;\n    // int64 created_at = 10;\n    // int64 updated_at = 11;\n}\n\nmessage ListRequest {}\n\nmessage ListResponse {\n    repeated Root roots = 1;\n}\n\nmessage CreateRequest {\n    string name = 1;\n    string bootstrap_cid = 2;\n    bool private = 3;\n    bool unfreeze = 4;\n}\n\nmessage CreateResponse {\n    Root root = 1;\n    LinksResponse links = 2;\n    bytes seed = 3;\n    string seed_cid = 4;\n    int64 pinned = 5;\n    string retrieval_id = 6;\n}\n\nmessage RootRequest {\n    string key = 1;\n}\n\nmessage RootResponse {\n    Root root = 1;\n}\n\nmessage LinksRequest {\n    string key = 1;\n    string path = 2;\n}\n\nmessage LinksResponse {\n    string url = 1;\n    string www = 2;\n    string ipns = 3;\n}\n\nmessage ListPathRequest {\n    string key = 1;\n    string path = 2;\n}\n\nmessage ListPathResponse {\n    PathItem item = 1;\n    Root root = 2;\n}\n\nmessage PathItem {\n    string cid = 1;\n    string name = 2;\n    string path = 3;\n    int64 size = 4;\n    bool is_dir = 5;\n    repeated PathItem items = 6;\n    int32 items_count = 7;\n    Metadata metadata = 9; // @todo: For v3, change this to 8.\n}\n\nmessage ListIpfsPathRequest {\n    string path = 1;\n}\n\nmessage ListIpfsPathResponse {\n    PathItem item = 1;\n}\n\nmessage PushPathRequest {\n    oneof payload {\n        Header header = 1;\n        bytes chunk = 2;\n    }\n\n    message Header {\n        string key = 1;\n        string path = 2;\n        string root = 3;\n    }\n}\n\nmessage PushPathResponse {\n    Event event = 1;\n\n    message Event {\n        string name = 1;\n        string path = 2;\n        int64 bytes = 3;\n        string size = 4;\n        Root root = 5;\n        int64 pinned = 6;\n    }\n}\n\nmessage PushPathsRequest {\n    oneof payload {\n        Header header = 1;\n        Chunk chunk = 2;\n    }\n\n    message Header {\n        string key = 1;\n        string root = 2;\n        repeated string paths = 3;\n    }\n\n    message Chunk {\n        string path = 1;\n        bytes data = 2;\n    }\n}\n\nmessage PushPathsResponse {\n    string path = 1;\n    string cid = 2;\n    int64 size = 3;\n    int64 pinned = 4;\n    Root root = 5;\n}\n\nmessage PullPathRequest {\n    string key = 1;\n    string path = 2;\n}\n\nmessage PullPathResponse {\n    bytes chunk = 1;\n}\n\nmessage PullIpfsPathRequest {\n    string path = 1;\n}\n\nmessage PullIpfsPathResponse {\n    bytes chunk = 1;\n}\n\nmessage SetPathRequest {\n    string key = 1;\n    string path = 2;\n    string cid = 3;\n}\n\nmessage SetPathResponse {\n    int64 pinned = 1;\n}\n\nmessage MovePathRequest {\n    string key = 1;\n    string from_path = 2;\n    string to_path = 3;\n}\n\nmessage MovePathResponse {}\n\nmessage RemoveRequest {\n    string key = 1;\n}\n\nmessage RemoveResponse {\n    int64 pinned = 1;\n}\n\nmessage RemovePathRequest {\n    string key = 1;\n    string path = 2;\n    string root = 3;\n}\n\nmessage RemovePathResponse {\n    Root root = 1;\n    int64 pinned = 2;\n}\n\nenum PathAccessRole {\n    PATH_ACCESS_ROLE_UNSPECIFIED = 0;\n    PATH_ACCESS_ROLE_READER = 1;\n    PATH_ACCESS_ROLE_WRITER = 2;\n    PATH_ACCESS_ROLE_ADMIN = 3;\n}\n\nmessage PushPathAccessRolesRequest {\n    string key = 1;\n    string path = 2;\n    map<string, PathAccessRole> roles = 3;\n}\n\nmessage PushPathAccessRolesResponse {\n    int64 pinned = 1;\n}\n\nmessage PullPathAccessRolesRequest {\n    string key = 1;\n    string path = 2;\n}\n\nmessage PullPathAccessRolesResponse {\n    map<string, PathAccessRole> roles = 1;\n}\n\nmessage ArchiveConfig {\n    int32 rep_factor = 1;\n    int64 deal_min_duration = 2;\n    repeated string excluded_miners = 3;\n    repeated string trusted_miners = 4;\n    repeated string country_codes = 5;\n    ArchiveRenew renew = 6;\n    uint64 max_price = 7;\n    bool fast_retrieval = 8;\n    int64 deal_start_offset = 9;\n    bool verified_deal = 10;\n}\n\nmessage Archives {\n    Archive current = 1;\n    repeated Archive history = 2;\n}\n\nmessage Archive {\n    string cid = 1;\n    string job_id = 2;\n    ArchiveStatus archive_status = 3;\n    bool aborted = 4;\n    string aborted_msg = 5;\n    string failure_msg = 6;\n    int64 created_at = 7;\n    repeated DealInfo deal_info = 8;\n}\n\nenum ArchiveStatus {\n    ARCHIVE_STATUS_UNSPECIFIED = 0;\n    ARCHIVE_STATUS_QUEUED = 1;\n    ARCHIVE_STATUS_EXECUTING = 2;\n    ARCHIVE_STATUS_FAILED = 3;\n    ARCHIVE_STATUS_CANCELED = 4;\n    ARCHIVE_STATUS_SUCCESS = 5;\n}\n\nmessage DealInfo {\n    string proposal_cid = 1;\n    uint64 state_id = 2;\n    string state_name = 3;\n    string miner = 4;\n    string piece_cid = 5;\n    uint64 size = 6;\n    uint64 price_per_epoch  = 7;\n    uint64 start_epoch = 8;\n    uint64 duration = 9;\n    uint64 deal_id = 10;\n    int64 activation_epoch = 11;\n    string message = 12;\n}\n\nmessage ArchiveRenew {\n    bool enabled = 1;\n    int32 threshold = 2;\n}\n\nmessage DefaultArchiveConfigRequest {\n    string key = 1;\n}\n\nmessage DefaultArchiveConfigResponse {\n    ArchiveConfig archive_config = 1;\n}\n\nmessage SetDefaultArchiveConfigRequest {\n    string key = 1;\n    ArchiveConfig archive_config = 2;\n}\n\nmessage SetDefaultArchiveConfigResponse {}\n\nmessage ArchiveRequest {\n    string key = 1;\n    ArchiveConfig archive_config = 2;\n    bool skip_automatic_verified_deal = 3;\n}\n\nmessage ArchiveResponse {}\n\nmessage ArchivesRequest {\n    string key = 1;\n}\n\n// todo: For v3, change this to { Archives archives = 1; }\nmessage ArchivesResponse {\n    Archive current = 1;\n    repeated Archive history = 2;\n}\n\nmessage ArchiveWatchRequest {\n    string key = 1;\n}\n\nmessage ArchiveWatchResponse {\n    string msg = 1;\n}\n\nservice APIService {\n    rpc List(ListRequest) returns (ListResponse) {}\n    rpc Create(CreateRequest) returns (CreateResponse) {}\n    rpc Root(RootRequest) returns (RootResponse) {}\n    rpc Links(LinksRequest) returns (LinksResponse) {}\n    rpc ListPath(ListPathRequest) returns (ListPathResponse) {}\n    rpc ListIpfsPath(ListIpfsPathRequest) returns (ListIpfsPathResponse) {}\n    rpc PushPath(stream PushPathRequest) returns (stream PushPathResponse) {}\n    rpc PushPaths(stream PushPathsRequest) returns (stream PushPathsResponse) {}\n    rpc PullPath(PullPathRequest) returns (stream PullPathResponse) {}\n    rpc PullIpfsPath(PullIpfsPathRequest) returns (stream PullIpfsPathResponse) {}\n    rpc SetPath(SetPathRequest) returns (SetPathResponse) {}\n    rpc MovePath(MovePathRequest) returns (MovePathResponse) {}\n    rpc Remove(RemoveRequest) returns (RemoveResponse) {}\n    rpc RemovePath(RemovePathRequest) returns (RemovePathResponse) {}\n    rpc PushPathAccessRoles(PushPathAccessRolesRequest) returns (PushPathAccessRolesResponse) {}\n    rpc PullPathAccessRoles(PullPathAccessRolesRequest) returns (PullPathAccessRolesResponse) {}\n\n    // Archive\n    rpc DefaultArchiveConfig(DefaultArchiveConfigRequest) returns (DefaultArchiveConfigResponse) {}\n    rpc SetDefaultArchiveConfig(SetDefaultArchiveConfigRequest) returns (SetDefaultArchiveConfigResponse) {}\n    rpc Archive(ArchiveRequest) returns (ArchiveResponse) {}\n    rpc Archives(ArchivesRequest) returns (ArchivesResponse) {}\n    rpc ArchiveWatch(ArchiveWatchRequest) returns (stream ArchiveWatchResponse) {}\n}\n"
  },
  {
    "path": "api/bucketsd/pb/javascript/package.json",
    "content": "{\n  \"name\": \"@textile/buckets-grpc\",\n  \"version\": \"0.0.0\",\n  \"description\": \"A client for interacting with the Textile Buckets gRPC API.\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/textileio/textile.git\"\n  },\n  \"author\": \"Textile\",\n  \"license\": \"MIT\",\n  \"files\": [\n    \"api/bucketsd/pb/bucketsd_pb.js\",\n    \"api/bucketsd/pb/bucketsd_pb_service.js\",\n    \"api/bucketsd/pb/bucketsd_pb.d.ts\",\n    \"api/bucketsd/pb/bucketsd_pb_service.d.ts\"\n  ],\n  \"dependencies\": {\n    \"@improbable-eng/grpc-web\": \"^0.14.1\",\n    \"@types/google-protobuf\": \"^3.15.5\",\n    \"google-protobuf\": \"^3.19.4\"\n  },\n  \"devDependencies\": {\n    \"ts-protoc-gen\": \"^0.15.0\"\n  }\n}\n"
  },
  {
    "path": "api/bucketsd/service.go",
    "content": "package bucketsd\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"crypto/rand\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"math\"\n\t\"math/big\"\n\tgopath \"path\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/google/go-cmp/cmp\"\n\t\"github.com/ipfs/go-cid\"\n\tipfsfiles \"github.com/ipfs/go-ipfs-files\"\n\tipld \"github.com/ipfs/go-ipld-format\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tdag \"github.com/ipfs/go-merkledag\"\n\t\"github.com/ipfs/go-unixfs\"\n\tiface \"github.com/ipfs/interface-go-ipfs-core\"\n\t\"github.com/ipfs/interface-go-ipfs-core/options\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/textileio/dcrypto\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\tnutil \"github.com/textileio/go-threads/net/util\"\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\tpowUtil \"github.com/textileio/powergate/v2/util\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/buckets/archive/retrieval\"\n\t\"github.com/textileio/textile/v2/buckets/archive/tracker\"\n\t\"github.com/textileio/textile/v2/ipns\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\ttdb \"github.com/textileio/textile/v2/threaddb\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"golang.org/x/sync/errgroup\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\nconst (\n\t// chunkSize for get file requests.\n\tchunkSize = 1024 * 32 // 32 KiB\n\t// pinNotRecursiveMsg is used to match an IPFS \"recursively pinned already\" error.\n\tpinNotRecursiveMsg = \"'from' cid was not recursively pinned already\"\n\t// pinAlreadyRecursiveMsg is used to match an IPFS \"already recursively pinned\" error.\n\tpinAlreadyRecursiveMsg = \"'to' cid was already recursively pinned\"\n)\n\nvar (\n\tlog = logging.Logger(\"bucketsapi\")\n\n\t// ErrArchivingFeatureDisabled indicates an archive was requested with archiving disabled.\n\tErrArchivingFeatureDisabled = errors.New(\"archiving feature is disabled\")\n\n\t// ErrStorageQuotaExhausted indicates the requested operation exceeds the storage allowance.\n\tErrStorageQuotaExhausted = errors.New(\"storage quota exhausted\")\n\n\t// errInvalidNodeType indicates a node with type other than raw of proto was encountered.\n\terrInvalidNodeType = errors.New(\"invalid node type\")\n\n\t// errDBRequired indicates the request requires a thread ID.\n\terrDBRequired = errors.New(\"db required\")\n\n\t// baseArchiveStorageConfig is used to build the final StorageConfig after being\n\t// combined with information from the ArchiveConfig\n\tbaseArchiveStorageConfig = &userPb.StorageConfig{\n\t\tHot: &userPb.HotConfig{\n\t\t\tEnabled: false,\n\t\t\tIpfs: &userPb.IpfsConfig{\n\t\t\t\tAddTimeout: 15 * 60,\n\t\t\t},\n\t\t},\n\t\tCold: &userPb.ColdConfig{\n\t\t\tEnabled: true,\n\t\t},\n\t}\n\n\t// @todo: Export the default storage config from powergate so we can create this from it.\n\tdefaultDefaultArchiveConfig = mdb.ArchiveConfig{\n\t\tRepFactor:       1,\n\t\tDealMinDuration: powUtil.MinDealDuration,\n\t\tFastRetrieval:   true,\n\t\tDealStartOffset: 72 * 60 * 60 / powUtil.EpochDurationSeconds, // 72hs\n\t\tMaxPrice:        100_000_000_000,\n\t\tVerifiedDeal:    false,\n\t}\n)\n\ntype ctxKey string\n\n// Service is a gRPC service for buckets.\ntype Service struct {\n\tCollections               *mdb.Collections\n\tBuckets                   *tdb.Buckets\n\tGatewayURL                string\n\tGatewayBucketsHost        string\n\tIPFSClient                iface.CoreAPI\n\tIPNSManager               *ipns.Manager\n\tPowergateClient           *pow.Client\n\tPowergateAdminToken       string\n\tArchiveTracker            *tracker.Tracker\n\tFilRetrieval              *retrieval.FilRetrieval\n\tSemaphores                *nutil.SemaphorePool\n\tMaxBucketArchiveSize      int64\n\tMinBucketArchiveSize      int64\n\tMaxBucketArchiveRepFactor int\n}\n\nvar (\n\t_ nutil.SemaphoreKey = (*buckLock)(nil)\n)\n\ntype buckLock string\n\nfunc (l buckLock) Key() string {\n\treturn string(l)\n}\n\nfunc (s *Service) List(ctx context.Context, _ *pb.ListRequest) (*pb.ListResponse, error) {\n\tlog.Debugf(\"received list request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tlist, err := s.Buckets.List(ctx, dbID, &db.Query{}, &tdb.Bucket{}, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbucks := list.([]*tdb.Bucket)\n\troots := make([]*pb.Root, len(bucks))\n\tfor i, buck := range bucks {\n\t\troots[i], err = getPbRoot(dbID, buck)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &pb.ListResponse{Roots: roots}, nil\n}\n\nfunc getPbRoot(dbID thread.ID, buck *tdb.Bucket) (*pb.Root, error) {\n\tvar pmdOld *pb.Metadata\n\tmd, ok := buck.Metadata[\"\"]\n\tif ok {\n\t\tvar err error\n\t\tpmdOld, err = metadataToPb(md)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tpmd := make(map[string]*pb.Metadata)\n\tfor p, md := range buck.Metadata {\n\t\tm, err := metadataToPb(md)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tpmd[p] = m\n\t}\n\treturn &pb.Root{\n\t\tThread:       dbID.String(),\n\t\tKey:          buck.Key,\n\t\tOwner:        buck.Owner,\n\t\tName:         buck.Name,\n\t\tVersion:      int32(buck.Version),\n\t\tLinkKey:      buck.LinkKey,\n\t\tPath:         buck.Path,\n\t\tMetadata:     pmdOld, // @todo: For v3, remove this.\n\t\tPathMetadata: pmd,\n\t\tArchives:     archivesToPb(buck.Archives),\n\t\tCreatedAt:    buck.CreatedAt,\n\t\tUpdatedAt:    buck.UpdatedAt,\n\t}, nil\n}\n\nfunc metadataToPb(md tdb.Metadata) (*pb.Metadata, error) {\n\troles := make(map[string]pb.PathAccessRole)\n\tfor k, r := range md.Roles {\n\t\tvar pr pb.PathAccessRole\n\t\tswitch r {\n\t\tcase buckets.None:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_UNSPECIFIED\n\t\tcase buckets.Reader:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_READER\n\t\tcase buckets.Writer:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_WRITER\n\t\tcase buckets.Admin:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_ADMIN\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"unknown path access role %d\", r)\n\t\t}\n\t\troles[k] = pr\n\t}\n\treturn &pb.Metadata{\n\t\tKey:       md.Key,\n\t\tRoles:     roles,\n\t\tUpdatedAt: md.UpdatedAt,\n\t}, nil\n}\n\nfunc archivesToPb(archives tdb.Archives) *pb.Archives {\n\tpba := &pb.Archives{\n\t\tCurrent: &pb.Archive{\n\t\t\tCid:      archives.Current.Cid,\n\t\t\tDealInfo: dealsToPb(archives.Current.Deals),\n\t\t},\n\t\tHistory: make([]*pb.Archive, len(archives.History)),\n\t}\n\tfor i, a := range archives.History {\n\t\tpba.History[i] = &pb.Archive{\n\t\t\tCid:      a.Cid,\n\t\t\tDealInfo: dealsToPb(a.Deals),\n\t\t}\n\t}\n\treturn pba\n}\n\nfunc dealsToPb(deals []tdb.Deal) []*pb.DealInfo {\n\tpbd := make([]*pb.DealInfo, len(deals))\n\tfor i, d := range deals {\n\t\tpbd[i] = &pb.DealInfo{\n\t\t\tProposalCid: d.ProposalCid,\n\t\t\tMiner:       d.Miner,\n\t\t}\n\t}\n\treturn pbd\n}\n\nfunc (s *Service) Create(ctx context.Context, req *pb.CreateRequest) (*pb.CreateResponse, error) {\n\tlog.Debugf(\"received create request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tvar bootCid cid.Cid\n\tif req.BootstrapCid != \"\" {\n\t\tvar err error\n\t\tbootCid, err = cid.Decode(req.BootstrapCid)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"invalid bootstrap cid: %v\", err)\n\t\t}\n\t}\n\n\t// If the bucket is created from some imported archive,\n\t// create the retrieval request, and let all the process\n\t// happend async in the background.\n\tif req.Unfreeze {\n\t\taccount, _ := mdb.AccountFromContext(ctx)\n\t\towner := account.Owner()\n\t\taccKey := owner.Key.String()\n\t\tpowToken := owner.PowInfo.Token\n\n\t\trid, err := s.FilRetrieval.CreateForNewBucket(\n\t\t\tctx,\n\t\t\taccKey,\n\t\t\tdbID,\n\t\t\tdbToken,\n\t\t\treq.Name,\n\t\t\treq.Private,\n\t\t\tbootCid,\n\t\t\tpowToken,\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"creating retrieval: %s\", err)\n\t\t}\n\t\treturn &pb.CreateResponse{\n\t\t\tRetrievalId: rid,\n\t\t}, nil\n\t}\n\n\t// If not created with --unfreeze, just do the normal case.\n\tctx, buck, seed, err := s.createBucket(ctx, dbID, dbToken, req.Name, req.Private, bootCid)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar seedData []byte\n\tif buck.IsPrivate() {\n\t\tfileKey, err := buck.GetFileEncryptionKeyForPath(\"\")\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tseedData, err = decryptData(seed.RawData(), fileKey)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t} else {\n\t\tseedData = seed.RawData()\n\t}\n\n\troot, err := getPbRoot(dbID, buck)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlinks, err := s.createLinks(ctx, dbID, buck, \"\", dbToken)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.CreateResponse{\n\t\tRoot:    root,\n\t\tLinks:   links,\n\t\tSeed:    seedData,\n\t\tSeedCid: seed.Cid().String(),\n\t\tPinned:  s.getPinnedBytes(ctx),\n\t}, nil\n}\n\n// CreateBucket is a wrapper to enable creating a bucket from an internal method.\n// TODO(**): We should consider refactor createBucket code (and other related stuff) out of\n// `Service`, since this logic is useful for other cases than serving APIs.\nfunc (s *Service) CreateBucket(ctx context.Context,\n\tthreadID thread.ID,\n\tthreadToken thread.Token,\n\tbuckName string,\n\tbuckPrivate bool,\n\tdataCid cid.Cid) error {\n\t_, _, _, err := s.createBucket(ctx, threadID, threadToken, buckName, buckPrivate, dataCid)\n\treturn err\n}\n\n// createBucket returns a new bucket and seed node.\nfunc (s *Service) createBucket(\n\tctx context.Context,\n\tdbID thread.ID,\n\tdbToken thread.Token,\n\tname string,\n\tprivate bool,\n\tbootCid cid.Cid,\n) (nctx context.Context, buck *tdb.Bucket, seed ipld.Node, err error) {\n\tvar owner thread.PubKey\n\tif dbToken.Defined() {\n\t\towner, err = dbToken.PubKey()\n\t\tif err != nil {\n\t\t\treturn ctx, nil, nil, fmt.Errorf(\"creating bucket: invalid token public key\")\n\t\t}\n\t}\n\n\t// Create bucket keys if private\n\tvar linkKey, fileKey []byte\n\tif private {\n\t\tvar err error\n\t\tlinkKey, err = dcrypto.NewKey()\n\t\tif err != nil {\n\t\t\treturn ctx, nil, nil, err\n\t\t}\n\t\tfileKey, err = dcrypto.NewKey()\n\t\tif err != nil {\n\t\t\treturn ctx, nil, nil, err\n\t\t}\n\t}\n\n\t// Make a random seed, which ensures a bucket's uniqueness\n\tseed, err = makeSeed(fileKey)\n\tif err != nil {\n\t\treturn\n\t}\n\n\t// Create the bucket directory\n\tvar buckPath path.Resolved\n\tif bootCid.Defined() {\n\t\tctx, buckPath, err = s.createBootstrappedPath(ctx, \"\", seed, bootCid, linkKey, fileKey)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, nil, fmt.Errorf(\"creating prepared bucket: %v\", err)\n\t\t}\n\t} else {\n\t\tctx, buckPath, err = s.createPristinePath(ctx, seed, linkKey)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, nil, fmt.Errorf(\"creating pristine bucket: %v\", err)\n\t\t}\n\t}\n\n\t// Create top-level metadata\n\tnow := time.Now()\n\tmd := map[string]tdb.Metadata{\n\t\t\"\": tdb.NewDefaultMetadata(owner, fileKey, now),\n\t\tbuckets.SeedName: {\n\t\t\tRoles:     make(map[string]buckets.Role),\n\t\t\tUpdatedAt: now.UnixNano(),\n\t\t},\n\t}\n\n\t// Create a new IPNS key\n\tbuckKey, err := s.IPNSManager.CreateKey(ctx, dbID, buckPath)\n\tif err != nil {\n\t\treturn\n\t}\n\n\t// Create the bucket using the IPNS key as instance ID\n\tbuck, err = s.Buckets.New(\n\t\tctx,\n\t\tdbID,\n\t\tbuckKey,\n\t\tbuckPath,\n\t\tnow,\n\t\towner,\n\t\tmd,\n\t\ttdb.WithNewBucketName(name),\n\t\ttdb.WithNewBucketKey(linkKey),\n\t\ttdb.WithNewBucketToken(dbToken))\n\tif err != nil {\n\t\treturn\n\t}\n\n\t// Finally, publish the new bucket's address to the name system\n\tgo s.IPNSManager.Publish(buckPath, buck.Key)\n\treturn ctx, buck, seed, nil\n}\n\n// makeSeed returns a raw ipld node containing a random seed.\nfunc makeSeed(key []byte) (ipld.Node, error) {\n\tseed := make([]byte, 32)\n\tif _, err := rand.Read(seed); err != nil {\n\t\treturn nil, err\n\t}\n\t// Encrypt seed if key is set (treating the seed differently here would complicate bucket reading)\n\tif key != nil {\n\t\tvar err error\n\t\tseed, err = encryptData(seed, nil, key)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn dag.NewRawNode(seed), nil\n}\n\n// encryptData encrypts data with the new key, decrypting with current key if needed.\nfunc encryptData(data, currentKey, newKey []byte) ([]byte, error) {\n\tif currentKey != nil {\n\t\tvar err error\n\t\tdata, err = decryptData(data, currentKey)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tr, err := dcrypto.NewEncrypter(bytes.NewReader(data), newKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn ioutil.ReadAll(r)\n}\n\n// createPristinePath creates an IPFS path which only contains the seed file.\n// The returned path will be pinned.\nfunc (s *Service) createPristinePath(\n\tctx context.Context,\n\tseed ipld.Node,\n\tkey []byte,\n) (context.Context, path.Resolved, error) {\n\t// Create the initial bucket directory\n\tn, err := newDirWithNode(seed, buckets.SeedName, key)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tif err = s.IPFSClient.Dag().AddMany(ctx, []ipld.Node{n, seed}); err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tpins := []ipld.Node{n}\n\tif key != nil {\n\t\tpins = append(pins, seed)\n\t}\n\tctx, err = s.pinBlocks(ctx, pins)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\treturn ctx, path.IpfsPath(n.Cid()), nil\n}\n\n// pinBlocks pins blocks, accounting for sum bytes pinned for context.\nfunc (s *Service) pinBlocks(ctx context.Context, nodes []ipld.Node) (context.Context, error) {\n\tvar totalAddedSize int64\n\tfor _, n := range nodes {\n\t\ts, err := n.Stat()\n\t\tif err != nil {\n\t\t\treturn ctx, fmt.Errorf(\"getting size of node: %v\", err)\n\t\t}\n\t\ttotalAddedSize += int64(s.CumulativeSize)\n\t}\n\n\t// Check context owner's storage allowance\n\towner, ok := buckets.BucketOwnerFromContext(ctx)\n\tif ok {\n\t\tlog.Debugf(\"pinBlocks: storage: %d used, %d available, %d requested\",\n\t\t\towner.StorageUsed, owner.StorageAvailable, totalAddedSize)\n\t}\n\tif ok && totalAddedSize > 0 && totalAddedSize > owner.StorageAvailable {\n\t\treturn ctx, ErrStorageQuotaExhausted\n\t}\n\n\tif err := s.IPFSClient.Dag().Pinning().AddMany(ctx, nodes); err != nil {\n\t\treturn ctx, fmt.Errorf(\"pinning set of nodes: %v\", err)\n\t}\n\treturn s.addPinnedBytes(ctx, totalAddedSize), nil\n}\n\n// addPinnedBytes adds the provided delta to a running total for context.\nfunc (s *Service) addPinnedBytes(ctx context.Context, delta int64) context.Context {\n\ttotal, _ := ctx.Value(ctxKey(\"pinnedBytes\")).(int64)\n\tctx = context.WithValue(ctx, ctxKey(\"pinnedBytes\"), total+delta)\n\towner, ok := buckets.BucketOwnerFromContext(ctx)\n\tif ok {\n\t\towner.StorageUsed += delta\n\t\t// int64(math.MaxInt64) indicates that the user has no current cap so don't deduct\n\t\tif owner.StorageAvailable < int64(math.MaxInt64) {\n\t\t\towner.StorageAvailable -= delta\n\t\t}\n\t\towner.StorageDelta += delta\n\t\tctx = buckets.NewBucketOwnerContext(ctx, owner)\n\t}\n\treturn ctx\n}\n\n// getPinnedBytes returns the total pinned bytes for context.\nfunc (s *Service) getPinnedBytes(ctx context.Context) int64 {\n\tpinned, _ := ctx.Value(ctxKey(\"pinnedBytes\")).(int64)\n\treturn pinned\n}\n\n// createBootstrapedPath creates an IPFS path which is the bootCid UnixFS DAG,\n// with tdb.SeedName seed file added to the root of the DAG. The returned path will\n// be pinned.\nfunc (s *Service) createBootstrappedPath(\n\tctx context.Context,\n\tdestPath string,\n\tseed ipld.Node,\n\tbootCid cid.Cid,\n\tlinkKey,\n\tfileKey []byte,\n) (context.Context, path.Resolved, error) {\n\tpth := path.IpfsPath(bootCid)\n\tbootSize, err := s.dagSize(ctx, pth)\n\tif err != nil {\n\t\treturn ctx, nil, fmt.Errorf(\"resolving boot cid node: %v\", err)\n\t}\n\n\t// Check context owner's storage allowance\n\towner, ok := buckets.BucketOwnerFromContext(ctx)\n\tif ok {\n\t\tlog.Debugf(\"createBootstrappedPath: storage: %d used, %d available, %d requested\",\n\t\t\towner.StorageUsed, owner.StorageAvailable, bootSize)\n\t}\n\tif ok && bootSize > 0 && bootSize > owner.StorageAvailable {\n\t\treturn ctx, nil, ErrStorageQuotaExhausted\n\t}\n\n\t// Here we have to walk and possibly encrypt the boot path dag\n\tn, nodes, err := s.newDirFromExistingPath(ctx, pth, destPath, linkKey, fileKey, seed, buckets.SeedName)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tif err = s.IPFSClient.Dag().AddMany(ctx, nodes); err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tvar pins []ipld.Node\n\tif linkKey != nil {\n\t\tpins = nodes\n\t} else {\n\t\tpins = []ipld.Node{n}\n\t}\n\tctx, err = s.pinBlocks(ctx, pins)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\treturn ctx, path.IpfsPath(n.Cid()), nil\n}\n\n// newDirWithNode returns a new proto node directory wrapping the node,\n// which is encrypted if key is not nil.\nfunc newDirWithNode(n ipld.Node, name string, key []byte) (ipld.Node, error) {\n\tdir := unixfs.EmptyDirNode()\n\tdir.SetCidBuilder(dag.V1CidPrefix())\n\tif err := dir.AddNodeLink(name, n); err != nil {\n\t\treturn nil, err\n\t}\n\treturn encryptNode(dir, key)\n}\n\n// encryptNode returns the encrypted version of node if key is not nil.\nfunc encryptNode(n *dag.ProtoNode, key []byte) (*dag.ProtoNode, error) {\n\tif key == nil {\n\t\treturn n, nil\n\t}\n\tcipher, err := encryptData(n.RawData(), nil, key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ten := dag.NodeWithData(unixfs.FilePBData(cipher, uint64(len(cipher))))\n\ten.SetCidBuilder(dag.V1CidPrefix())\n\treturn en, nil\n}\n\n// newDirFromExistingPath returns a new dir based on path.\n// If keys are not nil, this method recursively walks the path, encrypting files and directories.\n// If add is not nil, it will be included in the resulting (possibly encrypted) node under a link named addName.\n// This method returns the root node and a list of all new nodes (which also includes the root).\nfunc (s *Service) newDirFromExistingPath(\n\tctx context.Context,\n\tpth path.Path,\n\tdestPath string,\n\tlinkKey,\n\tfileKey []byte,\n\tadd ipld.Node,\n\taddName string,\n) (ipld.Node, []ipld.Node, error) {\n\trn, err := s.IPFSClient.ResolveNode(ctx, pth)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\ttop, ok := rn.(*dag.ProtoNode)\n\tif !ok {\n\t\treturn nil, nil, dag.ErrNotProtobuf\n\t}\n\tif linkKey == nil && fileKey == nil {\n\t\tnodes := []ipld.Node{top}\n\t\tif add != nil {\n\t\t\tif err := top.AddNodeLink(addName, add); err != nil {\n\t\t\t\treturn nil, nil, err\n\t\t\t}\n\t\t\tnodes = append(nodes, add)\n\t\t}\n\t\treturn top, nodes, nil\n\t} else if linkKey == nil || fileKey == nil {\n\t\treturn nil, nil, fmt.Errorf(\"invalid link or file key\")\n\t}\n\n\t// Walk the node, encrypting the leaves and directories\n\tvar addNode *namedNode\n\tif add != nil {\n\t\taddNode = &namedNode{\n\t\t\tname: addName,\n\t\t\tnode: add,\n\t\t}\n\t}\n\tnmap, err := s.encryptDag(\n\t\tctx,\n\t\ttop,\n\t\tdestPath,\n\t\tlinkKey,\n\t\tnil,\n\t\tnil,\n\t\tfileKey,\n\t\taddNode,\n\t)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\n\t// Collect new nodes\n\tnodes := make([]ipld.Node, len(nmap))\n\ti := 0\n\tfor _, tn := range nmap {\n\t\tnodes[i] = tn.node\n\t\ti++\n\t}\n\treturn nmap[top.Cid()].node, nodes, nil\n}\n\ntype namedNode struct {\n\tname string\n\tpath string\n\tnode ipld.Node\n\tcid  cid.Cid\n}\n\ntype namedNodes struct {\n\tsync.RWMutex\n\tm map[cid.Cid]*namedNode\n}\n\nfunc newNamedNodes() *namedNodes {\n\treturn &namedNodes{\n\t\tm: make(map[cid.Cid]*namedNode),\n\t}\n}\n\nfunc (nn *namedNodes) Get(c cid.Cid) *namedNode {\n\tnn.RLock()\n\tdefer nn.RUnlock()\n\treturn nn.m[c]\n}\n\nfunc (nn *namedNodes) Store(c cid.Cid, n *namedNode) {\n\tnn.Lock()\n\tdefer nn.Unlock()\n\tnn.m[c] = n\n}\n\n// encryptDag creates an encrypted version of root that includes all child nodes.\n// Leaf nodes are encrypted and linked to parents, which are then encrypted and\n// linked to their parents, and so on up to root.\n// add will be added to the encrypted root node if not nil.\n// This method returns a map of all nodes keyed by their _original_ plaintext cid,\n// and a list of the root's direct links.\nfunc (s *Service) encryptDag(\n\tctx context.Context,\n\troot ipld.Node,\n\tdestPath string,\n\tlinkKey []byte,\n\tcurrentFileKeys,\n\tnewFileKeys map[string][]byte,\n\tnewFileKey []byte,\n\tadd *namedNode,\n) (map[cid.Cid]*namedNode, error) {\n\t// Step 1: Create a preordered list of joint and leaf nodes\n\tvar stack, joints []*namedNode\n\tvar cur *namedNode\n\tjmap := make(map[cid.Cid]*namedNode)\n\tlmap := make(map[cid.Cid]*namedNode)\n\tds := s.IPFSClient.Dag()\n\n\tstack = append(stack, &namedNode{node: root, path: destPath})\n\tfor len(stack) > 0 {\n\t\tn := len(stack) - 1\n\t\tcur = stack[n]\n\t\tstack = stack[:n]\n\n\t\tif _, ok := jmap[cur.node.Cid()]; ok {\n\t\t\tcontinue\n\t\t}\n\t\tif _, ok := lmap[cur.node.Cid()]; ok {\n\t\t\tcontinue\n\t\t}\n\n\ttypes:\n\t\tswitch cur.node.(type) {\n\t\tcase *dag.RawNode:\n\t\t\tlmap[cur.node.Cid()] = cur\n\t\tcase *dag.ProtoNode:\n\t\t\t// Add links to the stack\n\t\t\tcur.cid = cur.node.Cid()\n\t\t\tif currentFileKeys != nil {\n\t\t\t\tvar err error\n\t\t\t\tcur.node, _, err = decryptNode(cur.node, linkKey)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor _, l := range cur.node.Links() {\n\t\t\t\tif l.Name == \"\" {\n\t\t\t\t\t// We have discovered a raw file node wrapper\n\t\t\t\t\t// Use the original cur node because file node wrappers aren't encrypted\n\t\t\t\t\tlmap[cur.cid] = cur\n\t\t\t\t\tbreak types\n\t\t\t\t}\n\t\t\t\tln, err := l.GetNode(ctx, ds)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tstack = append(stack, &namedNode{\n\t\t\t\t\tname: l.Name,\n\t\t\t\t\tpath: gopath.Join(cur.path, l.Name),\n\t\t\t\t\tnode: ln,\n\t\t\t\t})\n\t\t\t}\n\t\t\tjoints = append(joints, cur)\n\t\t\tjmap[cur.cid] = cur\n\t\tdefault:\n\t\t\treturn nil, errInvalidNodeType\n\t\t}\n\t}\n\n\t// Step 2: Encrypt all leaf nodes in parallel\n\tnmap := newNamedNodes()\n\teg, gctx := errgroup.WithContext(ctx)\n\tfor _, l := range lmap {\n\t\tl := l\n\t\tcfk := getFileKey(nil, currentFileKeys, l.path)\n\t\tnfk := getFileKey(newFileKey, newFileKeys, l.path)\n\t\tif nfk == nil {\n\t\t\t// This shouldn't happen\n\t\t\treturn nil, fmt.Errorf(\"new file key not found for path %s\", l.path)\n\t\t}\n\t\teg.Go(func() error {\n\t\t\tif gctx.Err() != nil {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tvar cn ipld.Node\n\t\t\tswitch l.node.(type) {\n\t\t\tcase *dag.RawNode:\n\t\t\t\tdata, err := encryptData(l.node.RawData(), cfk, nfk)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tcn = dag.NewRawNode(data)\n\t\t\tcase *dag.ProtoNode:\n\t\t\t\tvar err error\n\t\t\t\tcn, err = s.encryptFileNode(gctx, l.node, cfk, nfk)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t\tnmap.Store(l.node.Cid(), &namedNode{\n\t\t\t\tname: l.name,\n\t\t\t\tnode: cn,\n\t\t\t})\n\t\t\treturn nil\n\t\t})\n\t}\n\tif err := eg.Wait(); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Step 3: Encrypt joint nodes in reverse, walking up to root\n\t// Note: In the case where we're re-encrypting a dag, joints will already be decrypted.\n\tfor i := len(joints) - 1; i >= 0; i-- {\n\t\tj := joints[i]\n\t\tjn := j.node.(*dag.ProtoNode)\n\t\tdir := unixfs.EmptyDirNode()\n\t\tdir.SetCidBuilder(dag.V1CidPrefix())\n\t\tfor _, l := range jn.Links() {\n\t\t\tln := nmap.Get(l.Cid)\n\t\t\tif ln == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"link node not found\")\n\t\t\t}\n\t\t\tif err := dir.AddNodeLink(ln.name, ln.node); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t\tif i == 0 && add != nil {\n\t\t\tif err := dir.AddNodeLink(add.name, add.node); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnmap.Store(add.node.Cid(), add)\n\t\t}\n\t\tcn, err := encryptNode(dir, linkKey)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tnmap.Store(j.cid, &namedNode{\n\t\t\tname: j.name,\n\t\t\tnode: cn,\n\t\t})\n\t}\n\treturn nmap.m, nil\n}\n\nfunc getFileKey(key []byte, pathKeys map[string][]byte, pth string) []byte {\n\tif pathKeys == nil {\n\t\treturn key\n\t}\n\tk, ok := pathKeys[pth]\n\tif ok {\n\t\treturn k\n\t}\n\treturn key\n}\n\n// encryptFileNode encrypts node with the new key, decrypting with current key if needed.\nfunc (s *Service) encryptFileNode(ctx context.Context, n ipld.Node, currentKey, newKey []byte) (ipld.Node, error) {\n\tfn, err := s.IPFSClient.Unixfs().Get(ctx, path.IpfsPath(n.Cid()))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer fn.Close()\n\tfile := ipfsfiles.ToFile(fn)\n\tif file == nil {\n\t\treturn nil, fmt.Errorf(\"node is a directory\")\n\t}\n\tvar r1 io.Reader\n\tif currentKey != nil {\n\t\tr1, err = dcrypto.NewDecrypter(file, currentKey)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t} else {\n\t\tr1 = file\n\t}\n\tr2, err := dcrypto.NewEncrypter(r1, newKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tpth, err := s.IPFSClient.Unixfs().Add(\n\t\tctx,\n\t\tipfsfiles.NewReaderFile(r2),\n\t\toptions.Unixfs.CidVersion(1),\n\t\toptions.Unixfs.Pin(false),\n\t)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn s.IPFSClient.ResolveNode(ctx, pth)\n}\n\nfunc (s *Service) Root(ctx context.Context, req *pb.RootRequest) (*pb.RootResponse, error) {\n\tlog.Debugf(\"received root request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbuck := &tdb.Bucket{}\n\terr := s.Buckets.GetSafe(ctx, dbID, req.Key, buck, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\troot, err := getPbRoot(dbID, buck)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.RootResponse{\n\t\tRoot: root,\n\t}, nil\n}\n\nfunc (s *Service) Links(ctx context.Context, req *pb.LinksRequest) (*pb.LinksResponse, error) {\n\tlog.Debugf(\"received lists request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbuck := &tdb.Bucket{}\n\terr := s.Buckets.GetSafe(ctx, dbID, req.Key, buck, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn s.createLinks(ctx, dbID, buck, cleanPath(req.Path), dbToken)\n}\n\nfunc (s *Service) createLinks(\n\tctx context.Context,\n\tdbID thread.ID,\n\tbuck *tdb.Bucket,\n\tpth string,\n\tdbToken thread.Token,\n) (*pb.LinksResponse, error) {\n\tvar threadLink, wwwLink, ipnsLink string\n\tthreadLink = fmt.Sprintf(\"%s/thread/%s/%s/%s\", s.GatewayURL, dbID, buckets.CollectionName, buck.Key)\n\tif s.GatewayBucketsHost != \"\" {\n\t\tparts := strings.Split(s.GatewayURL, \"://\")\n\t\tif len(parts) < 2 {\n\t\t\treturn nil, fmt.Errorf(\"failed to parse gateway URL: %s\", s.GatewayURL)\n\t\t}\n\t\twwwLink = fmt.Sprintf(\"%s://%s.%s\", parts[0], buck.Key, s.GatewayBucketsHost)\n\t}\n\tipnsLink = fmt.Sprintf(\"%s/ipns/%s\", s.GatewayURL, buck.Key)\n\n\tif _, _, ok := buck.GetMetadataForPath(pth, false); !ok {\n\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", pth)\n\t}\n\tif pth != \"\" {\n\t\tnpth, err := inflateFilePath(buck, pth)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tlinkKey := buck.GetLinkEncryptionKey()\n\t\tif _, err := s.getNodeAtPath(ctx, npth, linkKey); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tpth = \"/\" + pth\n\t\tthreadLink += pth\n\t\tif wwwLink != \"\" {\n\t\t\twwwLink += pth\n\t\t}\n\t\tipnsLink += pth\n\t}\n\tif buck.IsPrivate() {\n\t\tquery := \"?token=\" + string(dbToken)\n\t\tthreadLink += query\n\t\tif wwwLink != \"\" {\n\t\t\twwwLink += query\n\t\t}\n\t\tipnsLink += query\n\t}\n\treturn &pb.LinksResponse{\n\t\tUrl:  threadLink,\n\t\tWww:  wwwLink,\n\t\tIpns: ipnsLink,\n\t}, nil\n}\n\n// MovePath moves source path to destination path and cleans up afterward\nfunc (s *Service) MovePath(ctx context.Context, req *pb.MovePathRequest) (res *pb.MovePathResponse, err error) {\n\tlog.Debugf(\"received move path request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tfromPth, err := parsePath(req.FromPath)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\ttoPth, err := parsePath(req.ToPath)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// TODO: enable move of root directory\n\t// Can't move root directory\n\tif fromPth == \"\" {\n\t\treturn nil, fmt.Errorf(\"source is root directory\")\n\t}\n\n\t// Paths are the same, return\n\tif fromPth == toPth {\n\t\treturn &pb.MovePathResponse{}, nil\n\t}\n\n\t// Lock bucket for the rest of transformations\n\tlck := s.Semaphores.Get(buckLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck, pth, err := s.getBucketPath(ctx, dbID, req.Key, fromPth, dbToken)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting path: %v\", err)\n\t}\n\n\tbuck.UpdatedAt = time.Now().UnixNano()\n\tbuck.SetMetadataAtPath(toPth, tdb.Metadata{\n\t\tUpdatedAt: buck.UpdatedAt,\n\t})\n\tbuck.UnsetMetadataWithPrefix(fromPth + \"/\")\n\n\tif err = s.Buckets.Verify(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, fmt.Errorf(\"verifying bucket update: %v\", err)\n\t}\n\n\tfromNodePath, err := inflateFilePath(buck, fromPth)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfromItem, err := s.pathToItem(ctx, buck, fromNodePath, false)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\ttoNodePath, err := inflateFilePath(buck, toPth)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\ttoItem, err := s.pathToItem(ctx, buck, toNodePath, false)\n\tif err == nil {\n\t\tif fromItem.IsDir && !toItem.IsDir {\n\t\t\treturn nil, fmt.Errorf(\"not a directory\")\n\t\t}\n\t\tif toItem.IsDir {\n\t\t\t// from => to becomes cleanDst:\n\t\t\t// \"c\" => \"b\" becomes \"b/c\"\n\t\t\t// \"a.jpg\" => \"b\" becomes \"b/a.jpg\"\n\t\t\ttoPth = gopath.Join(toPth, fromItem.Name)\n\t\t}\n\t}\n\n\t// bucket node\n\tbuckNode, err := s.getNodeAtPath(ctx, pth, buck.GetLinkEncryptionKey())\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting node: %v\", err)\n\t}\n\n\tvar dirPath path.Resolved\n\t// Private buckets need to manage keys+encrypted nodes\n\tif buck.IsPrivate() {\n\t\tctx, dirPath, err = s.copyNode(ctx, buck, buckNode, fromPth, toPth)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"copying node: %v\", err)\n\t\t}\n\t} else {\n\t\tbuckPath := path.New(buck.Path)\n\t\tctx, dirPath, err = s.setPathFromExistingCid(\n\t\t\tctx,\n\t\t\tbuck,\n\t\t\tbuckPath,\n\t\t\ttoPth,\n\t\t\tbuckNode.Cid(),\n\t\t\tnil,\n\t\t\tnil,\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"copying path: %v\", err)\n\t\t}\n\t}\n\tbuck.Path = dirPath.String()\n\n\t// If \"a/b\" => \"a/\", cleanup only needed for priv\n\tif strings.HasPrefix(fromPth, toPth) {\n\t\tif buck.IsPrivate() {\n\t\t\tctx, dirPath, err = s.removePath(ctx, buck, fromPth)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"cleaning path: %v\", err)\n\t\t\t}\n\t\t\tbuck.Path = dirPath.String()\n\t\t}\n\n\t\tif err = s.saveAndPublish(ctx, dbID, dbToken, buck); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn &pb.MovePathResponse{}, nil\n\t}\n\n\tif strings.HasPrefix(toPth, fromPth) {\n\t\t// If \"a/\" => \"a/b\" cleanup each leaf in \"a\" that isn't \"b\" (skipping .textileseed)\n\t\tppth := path.Join(path.New(buck.Path), fromPth)\n\t\titem, err := s.listPath(ctx, dbID, buck, ppth)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"listing path: %v\", err)\n\t\t}\n\t\treg := regexp.MustCompile(\"/ipfs/([^/]+)/\")\n\t\tfor _, chld := range item.Item.Items {\n\t\t\tsp := cleanPath(reg.ReplaceAllString(chld.Path, \"\"))\n\t\t\tif strings.Compare(chld.Name, buckets.SeedName) == 0 || sp == toPth {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tspClean := cleanPath(sp)\n\t\t\tctx, dirPath, err = s.removePath(ctx, buck, spClean)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"cleaning path: %v\", err)\n\t\t\t}\n\t\t\tbuck.Path = dirPath.String()\n\t\t}\n\t} else {\n\t\t// if a/ => b/ remove a\n\t\tctx, dirPath, err = s.removePath(ctx, buck, fromPth)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"removing path: %v\", err)\n\t\t}\n\t\tbuck.Path = dirPath.String()\n\t}\n\n\tif err = s.saveAndPublish(ctx, dbID, dbToken, buck); err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn &pb.MovePathResponse{}, nil\n}\n\nfunc (s *Service) copyNode(\n\tctx context.Context,\n\tbuck *tdb.Bucket,\n\trootNode ipld.Node,\n\tfromPath string,\n\ttoPath string,\n) (context.Context, path.Resolved, error) {\n\tfileKey, err := buck.GetFileEncryptionKeyForPath(toPath)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\n\tcurrentFileKeys, err := buck.GetFileEncryptionKeysForPrefix(fromPath)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tnewFileKeys, err := buck.GetFileEncryptionKeysForPrefix(toPath)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tnmap, err := s.encryptDag(\n\t\tctx,\n\t\trootNode,\n\t\tfromPath,\n\t\tbuck.GetLinkEncryptionKey(),\n\t\tcurrentFileKeys,\n\t\tnewFileKeys,\n\t\tfileKey,\n\t\tnil,\n\t)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tnodes := make([]ipld.Node, len(nmap))\n\ti := 0\n\tfor _, tn := range nmap {\n\t\tnodes[i] = tn.node\n\t\ti++\n\t}\n\tpn := nmap[rootNode.Cid()].node\n\tctx, dirPath, err := s.insertNodeAtPath(\n\t\tctx,\n\t\tpn,\n\t\tpath.Join(path.New(buck.Path), toPath),\n\t\tbuck.GetLinkEncryptionKey(),\n\t)\n\tif err != nil {\n\t\treturn ctx, nil, fmt.Errorf(\"inserting at path: %v\", err)\n\t}\n\n\t// If updating root, add seedfile back to node.\n\tif toPath == \"\" {\n\t\tsn, err := makeSeed(fileKey)\n\t\tctx, dirPath, err = s.insertNodeAtPath(\n\t\t\tctx,\n\t\t\tsn,\n\t\t\tpath.Join(dirPath, buckets.SeedName),\n\t\t\tbuck.GetLinkEncryptionKey(),\n\t\t)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, fmt.Errorf(\"replacing seedfile: %v\", err)\n\t\t}\n\t\tnodes = append(nodes, sn)\n\t}\n\n\tctx, err = s.addAndPinNodes(ctx, nodes)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\n\treturn ctx, dirPath, nil\n}\n\nfunc (s *Service) saveAndPublish(ctx context.Context, dbID thread.ID, dbToken thread.Token, buck *tdb.Bucket) error {\n\tif err := s.Buckets.Save(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn fmt.Errorf(\"saving bucket: %v\", err)\n\t}\n\tgo s.IPNSManager.Publish(path.New(buck.Path), buck.Key)\n\treturn nil\n}\n\nfunc (s *Service) SetPath(ctx context.Context, req *pb.SetPathRequest) (res *pb.SetPathResponse, err error) {\n\tlog.Debugf(\"received set path request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tdestPath := cleanPath(req.Path)\n\tbootCid, err := cid.Decode(req.Cid)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"invalid remote cid: %v\", err)\n\t}\n\n\tlck := s.Semaphores.Get(buckLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck := &tdb.Bucket{}\n\tif err = s.Buckets.GetSafe(ctx, dbID, req.Key, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, fmt.Errorf(\"get bucket: %v\", err)\n\t}\n\n\tbuck.UpdatedAt = time.Now().UnixNano()\n\tbuck.SetMetadataAtPath(destPath, tdb.Metadata{\n\t\tUpdatedAt: buck.UpdatedAt,\n\t})\n\tbuck.UnsetMetadataWithPrefix(destPath + \"/\")\n\n\tif err = s.Buckets.Verify(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar linkKey, fileKey []byte\n\tif buck.IsPrivate() {\n\t\tlinkKey = buck.GetLinkEncryptionKey()\n\t\tfileKey, err = buck.GetFileEncryptionKeyForPath(destPath)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tbuckPath := path.New(buck.Path)\n\tctx, dirPath, err := s.setPathFromExistingCid(ctx, buck, buckPath, destPath, bootCid, linkKey, fileKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbuck.Path = dirPath.String()\n\tif err = s.Buckets.Save(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.SetPathResponse{\n\t\tPinned: s.getPinnedBytes(ctx),\n\t}, nil\n}\n\n// setPathFromExistingCid sets the path with a cid from the network, encrypting with file key if present.\nfunc (s *Service) setPathFromExistingCid(\n\tctx context.Context,\n\tbuck *tdb.Bucket,\n\tbuckPath path.Path,\n\tdestPath string,\n\tbootCid cid.Cid,\n\tlinkKey,\n\tfileKey []byte,\n) (context.Context, path.Resolved, error) {\n\tvar dirPath path.Resolved\n\tif destPath == \"\" {\n\t\tsn, err := makeSeed(fileKey)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, fmt.Errorf(\"generating new seed: %v\", err)\n\t\t}\n\t\tctx, dirPath, err = s.createBootstrappedPath(ctx, destPath, sn, bootCid, linkKey, fileKey)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, fmt.Errorf(\"generating bucket new root: %v\", err)\n\t\t}\n\t\tif buck.IsPrivate() {\n\t\t\tbuckPathResolved, err := s.IPFSClient.ResolvePath(ctx, buckPath)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"resolving path: %v\", err)\n\t\t\t}\n\t\t\tctx, err = s.unpinNodeAndBranch(ctx, buckPathResolved, linkKey)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"unpinning pinned root: %v\", err)\n\t\t\t}\n\t\t} else {\n\t\t\tctx, err = s.unpinPath(ctx, buckPath)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"updating pinned root: %v\", err)\n\t\t\t}\n\t\t}\n\t} else {\n\t\tbootPath := path.IpfsPath(bootCid)\n\t\tif buck.IsPrivate() {\n\t\t\tn, nodes, err := s.newDirFromExistingPath(ctx, bootPath, destPath, linkKey, fileKey, nil, \"\")\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"resolving remote path: %v\", err)\n\t\t\t}\n\t\t\tctx, dirPath, err = s.insertNodeAtPath(ctx, n, path.Join(buckPath, destPath), linkKey)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"updating pinned root: %v\", err)\n\t\t\t}\n\t\t\tctx, err = s.addAndPinNodes(ctx, nodes)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t} else {\n\t\t\tvar err error\n\t\t\tdirPath, err = s.IPFSClient.Object().AddLink(\n\t\t\t\tctx,\n\t\t\t\tbuckPath,\n\t\t\t\tdestPath,\n\t\t\t\tbootPath,\n\t\t\t\toptions.Object.Create(true),\n\t\t\t)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"adding folder: %v\", err)\n\t\t\t}\n\t\t\tctx, err = s.updateOrAddPin(ctx, buckPath, dirPath)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, fmt.Errorf(\"updating pinned root: %v\", err)\n\t\t\t}\n\t\t}\n\t}\n\treturn ctx, dirPath, nil\n}\n\n// unpinPath unpins path and accounts for sum bytes pinned for context.\nfunc (s *Service) unpinPath(ctx context.Context, path path.Path) (context.Context, error) {\n\tif err := s.IPFSClient.Pin().Rm(ctx, path); err != nil {\n\t\treturn ctx, err\n\t}\n\tsize, err := s.dagSize(ctx, path)\n\tif err != nil {\n\t\treturn ctx, fmt.Errorf(\"getting size of removed node: %v\", err)\n\t}\n\t// Check context owner's storage allowance\n\towner, ok := buckets.BucketOwnerFromContext(ctx)\n\tif ok {\n\t\tlog.Debugf(\"unpinPath: storage: %d used, %d available, %d requested\",\n\t\t\towner.StorageUsed, owner.StorageAvailable, -size)\n\t}\n\treturn s.addPinnedBytes(ctx, -size), nil\n}\n\n// addAndPinNodes adds and pins nodes, accounting for sum bytes pinned for context.\nfunc (s *Service) addAndPinNodes(ctx context.Context, nodes []ipld.Node) (context.Context, error) {\n\tif err := s.IPFSClient.Dag().AddMany(ctx, nodes); err != nil {\n\t\treturn ctx, err\n\t}\n\treturn s.pinBlocks(ctx, nodes)\n}\n\nfunc (s *Service) ListPath(ctx context.Context, req *pb.ListPathRequest) (*pb.ListPathResponse, error) {\n\tlog.Debugf(\"received list path request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\treqPath := cleanPath(req.Path)\n\tbuck, pth, err := s.getBucketPath(ctx, dbID, req.Key, reqPath, dbToken)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn s.listPath(ctx, dbID, buck, pth)\n}\n\nfunc (s *Service) listPath(\n\tctx context.Context,\n\tdbID thread.ID,\n\tbuck *tdb.Bucket,\n\tpth path.Path,\n) (*pb.ListPathResponse, error) {\n\trep, err := s.pathToPb(ctx, dbID, buck, pth, true)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif pth.String() == buck.Path {\n\t\trep.Item.Name = buck.Name\n\t}\n\treturn rep, nil\n}\n\nfunc (s *Service) ListIpfsPath(ctx context.Context, req *pb.ListIpfsPathRequest) (*pb.ListIpfsPathResponse, error) {\n\tlog.Debugf(\"received list ipfs path request\")\n\n\tpth := path.New(req.Path)\n\titem, err := s.pathToItem(ctx, nil, pth, true)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.ListIpfsPathResponse{Item: item}, nil\n}\n\n// pathToItem returns items at path, optionally including one level down of links.\n// If key is not nil, the items will be decrypted.\nfunc (s *Service) pathToItem(\n\tctx context.Context,\n\tbuck *tdb.Bucket,\n\tpth path.Path,\n\tincludeNextLevel bool,\n) (*pb.PathItem, error) {\n\tvar linkKey []byte\n\tif buck != nil {\n\t\tlinkKey = buck.GetLinkEncryptionKey()\n\t}\n\tn, err := s.getNodeAtPath(ctx, pth, linkKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn s.nodeToItem(ctx, buck, n, pth.String(), linkKey, false, includeNextLevel)\n}\n\n// getNodeAtPath returns the node at path by traversing and potentially decrypting parent nodes.\nfunc (s *Service) getNodeAtPath(ctx context.Context, pth path.Path, key []byte) (ipld.Node, error) {\n\tif key != nil {\n\t\trp, fp, err := util.ParsePath(pth)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tnp, _, r, err := s.getNodesToPath(ctx, rp, fp, key)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif r != \"\" {\n\t\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", pth)\n\t\t}\n\t\treturn np[len(np)-1].new, nil\n\t} else {\n\t\trp, err := s.IPFSClient.ResolvePath(ctx, pth)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn s.IPFSClient.Dag().Get(ctx, rp.Cid())\n\t}\n}\n\n// resolveNodeAtPath returns the decrypted node at path and whether or not it is a directory.\nfunc (s *Service) resolveNodeAtPath(ctx context.Context, pth path.Resolved, key []byte) (ipld.Node, bool, error) {\n\tcn, err := s.IPFSClient.ResolveNode(ctx, pth)\n\tif err != nil {\n\t\treturn nil, false, err\n\t}\n\treturn decryptNode(cn, key)\n}\n\n// decryptNode returns a decrypted version of node and whether or not it is a directory.\nfunc decryptNode(cn ipld.Node, key []byte) (ipld.Node, bool, error) {\n\tswitch cn := cn.(type) {\n\tcase *dag.RawNode:\n\t\treturn cn, false, nil // All raw nodes will be leaves\n\tcase *dag.ProtoNode:\n\t\tif key == nil {\n\t\t\treturn cn, false, nil // Could be a joint, but it's not important to know in the public case\n\t\t}\n\t\tfn, err := unixfs.FSNodeFromBytes(cn.Data())\n\t\tif err != nil {\n\t\t\treturn nil, false, err\n\t\t}\n\t\tif fn.Data() == nil {\n\t\t\treturn cn, false, nil // This node is a raw file wrapper\n\t\t}\n\t\tplain, err := decryptData(fn.Data(), key)\n\t\tif err != nil {\n\t\t\treturn nil, false, err\n\t\t}\n\t\tn, err := dag.DecodeProtobuf(plain)\n\t\tif err != nil {\n\t\t\treturn dag.NewRawNode(plain), false, nil\n\t\t}\n\t\tn.SetCidBuilder(dag.V1CidPrefix())\n\t\treturn n, true, nil\n\tdefault:\n\t\treturn nil, false, errInvalidNodeType\n\t}\n}\n\n// decryptData decrypts data with key.\nfunc decryptData(data, key []byte) ([]byte, error) {\n\tr, err := dcrypto.NewDecrypter(bytes.NewReader(data), key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer r.Close()\n\treturn ioutil.ReadAll(r)\n}\n\n// nodeToItem returns a path item from an IPLD node.\nfunc (s *Service) nodeToItem(\n\tctx context.Context,\n\tbuck *tdb.Bucket,\n\tnode ipld.Node,\n\tpth string,\n\tkey []byte,\n\tdecrypt,\n\tincludeNextLevel bool,\n) (*pb.PathItem, error) {\n\tif decrypt && key != nil {\n\t\tvar err error\n\t\tnode, _, err = decryptNode(node, key)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tvar pmd *pb.Metadata\n\tif buck != nil {\n\t\tname := cleanPath(strings.TrimPrefix(pth, buck.Path))\n\t\tmd, _, ok := buck.GetMetadataForPath(name, false)\n\t\tif !ok {\n\t\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", pth)\n\t\t}\n\t\tvar err error\n\t\tpmd, err = metadataToPb(md)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tstat, err := node.Stat()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\titem := &pb.PathItem{\n\t\tCid:      node.Cid().String(),\n\t\tName:     gopath.Base(pth),\n\t\tPath:     pth,\n\t\tSize:     int64(stat.CumulativeSize),\n\t\tMetadata: pmd,\n\t}\n\tif pn, ok := node.(*dag.ProtoNode); ok {\n\t\tfn, _ := unixfs.FSNodeFromBytes(pn.Data())\n\t\tif fn != nil && fn.IsDir() {\n\t\t\titem.IsDir = true\n\t\t}\n\t}\n\tif item.IsDir {\n\t\tfor _, l := range node.Links() {\n\t\t\tif l.Name == \"\" {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif includeNextLevel {\n\t\t\t\tp := gopath.Join(pth, l.Name)\n\t\t\t\tn, err := l.GetNode(ctx, s.IPFSClient.Dag())\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\ti, err := s.nodeToItem(ctx, buck, n, p, key, true, false)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\titem.Items = append(item.Items, i)\n\t\t\t}\n\t\t\titem.ItemsCount++\n\t\t}\n\t}\n\treturn item, nil\n}\n\nfunc parsePath(pth string) (fpth string, err error) {\n\tif strings.Contains(pth, buckets.SeedName) {\n\t\terr = fmt.Errorf(\"paths containing %s are not allowed\", buckets.SeedName)\n\t\treturn\n\t}\n\treturn cleanPath(pth), nil\n}\n\nfunc (s *Service) getBucketPath(\n\tctx context.Context,\n\tdbID thread.ID,\n\tkey, pth string,\n\ttoken thread.Token,\n) (*tdb.Bucket, path.Path, error) {\n\tbuck := &tdb.Bucket{}\n\terr := s.Buckets.GetSafe(ctx, dbID, key, buck, tdb.WithToken(token))\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\tnpth, err := inflateFilePath(buck, pth)\n\treturn buck, npth, err\n}\n\nfunc cleanPath(pth string) string {\n\treturn strings.TrimPrefix(pth, \"/\")\n}\n\nfunc inflateFilePath(buck *tdb.Bucket, filePath string) (path.Path, error) {\n\tnpth := path.New(gopath.Join(buck.Path, filePath))\n\tif err := npth.IsValid(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn npth, nil\n}\n\nfunc (s *Service) pathToPb(\n\tctx context.Context,\n\tid thread.ID,\n\tbuck *tdb.Bucket,\n\tpth path.Path,\n\tincludeNextLevel bool,\n) (*pb.ListPathResponse, error) {\n\titem, err := s.pathToItem(ctx, buck, pth, includeNextLevel)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\troot, err := getPbRoot(id, buck)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.ListPathResponse{\n\t\tItem: item,\n\t\tRoot: root,\n\t}, nil\n}\n\nfunc (s *Service) PushPath(server pb.APIService_PushPathServer) (err error) {\n\tlog.Debugf(\"received push path request\")\n\n\tdbID, ok := common.ThreadIDFromContext(server.Context())\n\tif !ok {\n\t\treturn errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(server.Context())\n\n\treq, err := server.Recv()\n\tif err == io.EOF {\n\t\treturn nil\n\t} else if err != nil {\n\t\treturn err\n\t}\n\tvar buckKey, headerPath, root string\n\tswitch payload := req.Payload.(type) {\n\tcase *pb.PushPathRequest_Header_:\n\t\tbuckKey = payload.Header.Key\n\t\theaderPath = payload.Header.Path\n\t\troot = payload.Header.Root\n\tdefault:\n\t\treturn fmt.Errorf(\"push bucket path header is required\")\n\t}\n\tfilePath, err := parsePath(headerPath)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tlck := s.Semaphores.Get(buckLock(buckKey))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck := &tdb.Bucket{}\n\terr = s.Buckets.GetSafe(server.Context(), dbID, buckKey, buck, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn err\n\t}\n\tif root != \"\" && root != buck.Path {\n\t\treturn status.Error(codes.FailedPrecondition, buckets.ErrNonFastForward.Error())\n\t}\n\n\tbuck.UpdatedAt = time.Now().UnixNano()\n\tbuck.SetMetadataAtPath(filePath, tdb.Metadata{\n\t\tUpdatedAt: buck.UpdatedAt,\n\t})\n\tbuck.UnsetMetadataWithPrefix(filePath + \"/\")\n\n\tif err = s.Buckets.Verify(server.Context(), dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn err\n\t}\n\n\tfileKey, err := buck.GetFileEncryptionKeyForPath(filePath)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treader, writer := io.Pipe()\n\tvar writerErr error\n\tassignErr := func(err error) {\n\t\twriterErr = err\n\t\t_ = writer.CloseWithError(err)\n\t}\n\tgo func() {\n\t\tfor {\n\t\t\treq, err := server.Recv()\n\t\t\tif err == io.EOF {\n\t\t\t\t_ = writer.Close()\n\t\t\t\treturn\n\t\t\t} else if err != nil {\n\t\t\t\tassignErr(fmt.Errorf(\"error on receive: %v\", err))\n\t\t\t\treturn\n\t\t\t}\n\t\t\tswitch payload := req.Payload.(type) {\n\t\t\tcase *pb.PushPathRequest_Chunk:\n\t\t\t\tif _, err := writer.Write(payload.Chunk); err != nil {\n\t\t\t\t\tassignErr(fmt.Errorf(\"error writing chunk: %v\", err))\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\tassignErr(fmt.Errorf(\"invalid request\"))\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}()\n\n\teventCh := make(chan interface{})\n\tdefer close(eventCh)\n\tchSize := make(chan string)\n\tgo func() {\n\t\tfor e := range eventCh {\n\t\t\tevent, ok := e.(*iface.AddEvent)\n\t\t\tif !ok {\n\t\t\t\tlog.Error(\"unexpected event type\")\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif event.Path == nil { // This is a progress event\n\t\t\t\tif err := server.Send(&pb.PushPathResponse{\n\t\t\t\t\tEvent: &pb.PushPathResponse_Event{\n\t\t\t\t\t\tName:  event.Name,\n\t\t\t\t\t\tBytes: event.Bytes,\n\t\t\t\t\t},\n\t\t\t\t}); err != nil {\n\t\t\t\t\tlog.Errorf(\"error sending event: %v\", err)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tchSize <- event.Size // Save size for use in the final response\n\t\t\t}\n\t\t}\n\t}()\n\n\tvar r io.Reader\n\tif fileKey != nil {\n\t\tr, err = dcrypto.NewEncrypter(reader, fileKey)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t} else {\n\t\tr = reader\n\t}\n\tnewPath, err := s.IPFSClient.Unixfs().Add(\n\t\tserver.Context(),\n\t\tipfsfiles.NewReaderFile(r),\n\t\toptions.Unixfs.CidVersion(1),\n\t\toptions.Unixfs.Pin(false),\n\t\toptions.Unixfs.Progress(true),\n\t\toptions.Unixfs.Events(eventCh),\n\t)\n\tif writerErr != nil {\n\t\treturn writerErr\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\tfn, err := s.IPFSClient.ResolveNode(server.Context(), newPath)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tctx := server.Context()\n\tbuckPath := path.New(buck.Path)\n\tvar dirPath path.Resolved\n\tif buck.IsPrivate() {\n\t\tctx, dirPath, err = s.insertNodeAtPath(ctx, fn, path.Join(buckPath, filePath), buck.GetLinkEncryptionKey())\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t} else {\n\t\tdirPath, err = s.IPFSClient.Object().AddLink(\n\t\t\tctx,\n\t\t\tbuckPath,\n\t\t\tfilePath,\n\t\t\tnewPath,\n\t\t\toptions.Object.Create(true),\n\t\t)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tctx, err = s.updateOrAddPin(ctx, buckPath, dirPath)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tbuck.Path = dirPath.String()\n\tif err = s.Buckets.Save(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn err\n\t}\n\n\tsize := <-chSize\n\tpbroot, err := getPbRoot(dbID, buck)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err = server.Send(&pb.PushPathResponse{\n\t\tEvent: &pb.PushPathResponse_Event{\n\t\t\tPath:   newPath.String(),\n\t\t\tSize:   size,\n\t\t\tRoot:   pbroot,\n\t\t\tPinned: s.getPinnedBytes(ctx),\n\t\t},\n\t}); err != nil {\n\t\treturn err\n\t}\n\n\tgo s.IPNSManager.Publish(dirPath, buck.Key)\n\n\tlog.Debugf(\"pushed %s to bucket: %s\", filePath, buck.Key)\n\treturn nil\n}\n\ntype fileAdder struct {\n\treader io.ReadCloser\n\twriter io.WriteCloser\n}\n\ntype addedFile struct {\n\tpath     string\n\tresolved path.Resolved\n\tsize     int64\n}\n\ntype fileQueue struct {\n\tq    map[string]*fileAdder\n\tlock sync.Mutex\n}\n\nfunc newFileQueue() *fileQueue {\n\treturn &fileQueue{q: make(map[string]*fileAdder)}\n}\n\nfunc (q *fileQueue) add(\n\tctx context.Context,\n\tufs iface.UnixfsAPI,\n\tpth string,\n\taddFunc func() ([]byte, error),\n\tdoneCh chan<- addedFile,\n\terrCh chan<- error,\n) (*fileAdder, error) {\n\tq.lock.Lock()\n\tdefer q.lock.Unlock()\n\n\tfa, ok := q.q[pth]\n\tif ok {\n\t\treturn fa, nil\n\t}\n\n\tkey, err := addFunc()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treader, writer := io.Pipe()\n\tfa = &fileAdder{\n\t\treader: reader,\n\t\twriter: writer,\n\t}\n\tq.q[pth] = fa\n\n\teventCh := make(chan interface{})\n\tchSize := make(chan string)\n\tgo func() {\n\t\tfor e := range eventCh {\n\t\t\tevent, ok := e.(*iface.AddEvent)\n\t\t\tif !ok {\n\t\t\t\tlog.Error(\"unexpected event type\")\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif event.Path != nil {\n\t\t\t\tchSize <- event.Size // Save size for use in the final response\n\t\t\t}\n\t\t}\n\t}()\n\n\tvar r io.Reader\n\tif key != nil {\n\t\tr, err = dcrypto.NewEncrypter(reader, key)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"creating decrypter: %v\", err)\n\t\t}\n\t} else {\n\t\tr = reader\n\t}\n\n\tgo func() {\n\t\tdefer close(eventCh)\n\t\tres, err := ufs.Add(\n\t\t\tctx,\n\t\t\tipfsfiles.NewReaderFile(r),\n\t\t\toptions.Unixfs.CidVersion(1),\n\t\t\toptions.Unixfs.Pin(false),\n\t\t\toptions.Unixfs.Progress(true),\n\t\t\toptions.Unixfs.Events(eventCh),\n\t\t)\n\t\tif err != nil {\n\t\t\terrCh <- fmt.Errorf(\"adding file: %v\", err)\n\t\t\treturn\n\t\t}\n\t\tsize := <-chSize\n\t\tadded, err := strconv.Atoi(size)\n\t\tif err != nil {\n\t\t\terrCh <- fmt.Errorf(\"getting file size: %v\", err)\n\t\t\treturn\n\t\t}\n\t\tdoneCh <- addedFile{path: pth, resolved: res, size: int64(added)}\n\t}()\n\n\treturn fa, nil\n}\n\nfunc (s *Service) PushPaths(server pb.APIService_PushPathsServer) error {\n\tlog.Debugf(\"received push paths request\")\n\n\tctx, cancel := context.WithCancel(server.Context())\n\tdefer cancel()\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\treq, err := server.Recv()\n\tif err == io.EOF {\n\t\treturn nil\n\t} else if err != nil {\n\t\treturn fmt.Errorf(\"on receive: %v\", err)\n\t}\n\tvar buckKey, buckRoot string\n\tvar buckPaths []string\n\tswitch payload := req.Payload.(type) {\n\tcase *pb.PushPathsRequest_Header_:\n\t\tbuckKey = payload.Header.Key\n\t\tbuckRoot = payload.Header.Root\n\t\tbuckPaths = payload.Header.Paths\n\tdefault:\n\t\treturn fmt.Errorf(\"push bucket path header is required\")\n\t}\n\n\tlck := s.Semaphores.Get(buckLock(buckKey))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck := &tdb.Bucket{}\n\tif err := s.Buckets.GetSafe(ctx, dbID, buckKey, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn fmt.Errorf(\"getting bucket: %v\", err)\n\t}\n\tif buckRoot != \"\" && buckRoot != buck.Path {\n\t\treturn status.Error(codes.FailedPrecondition, buckets.ErrNonFastForward.Error())\n\t}\n\n\treadOnlyBuck := buck.Copy()\n\tpreVerified := make(map[string]struct{})\n\tif len(buckPaths) > 0 {\n\t\treadOnlyBuck.UpdatedAt = time.Now().UnixNano()\n\t\tfor _, p := range buckPaths {\n\t\t\treadOnlyBuck.SetMetadataAtPath(p, tdb.Metadata{\n\t\t\t\tUpdatedAt: readOnlyBuck.UpdatedAt,\n\t\t\t})\n\t\t\treadOnlyBuck.UnsetMetadataWithPrefix(p + \"/\")\n\t\t\tpreVerified[p] = struct{}{}\n\t\t}\n\t\tif err := s.Buckets.Verify(ctx, dbID, readOnlyBuck, tdb.WithToken(dbToken)); err != nil {\n\t\t\treturn status.Error(codes.PermissionDenied, fmt.Sprintf(\"verifying bucket update: %v\", err))\n\t\t}\n\t}\n\n\tvar wg sync.WaitGroup\n\tvar ctxLock, verifiedLock sync.RWMutex\n\taddedCh := make(chan addedFile)\n\tdoneCh := make(chan struct{})\n\terrCh := make(chan error)\n\tgo func() {\n\t\tqueue := newFileQueue()\n\t\tfor {\n\t\t\treq, err := server.Recv()\n\t\t\tif err == io.EOF {\n\t\t\t\twg.Wait() // Request ended normally, wait for pending jobs\n\t\t\t\tclose(doneCh)\n\t\t\t\treturn\n\t\t\t} else if err != nil {\n\t\t\t\terrCh <- fmt.Errorf(\"on receive: %v\", err)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tswitch payload := req.Payload.(type) {\n\t\t\tcase *pb.PushPathsRequest_Chunk_:\n\t\t\t\tpth, err := parsePath(payload.Chunk.Path)\n\t\t\t\tif err != nil {\n\t\t\t\t\terrCh <- fmt.Errorf(\"parsing path: %v\", err)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tctxLock.RLock()\n\t\t\t\tctx := ctx\n\t\t\t\tctxLock.RUnlock()\n\t\t\t\tfa, err := queue.add(ctx, s.IPFSClient.Unixfs(), pth, func() ([]byte, error) {\n\t\t\t\t\twg.Add(1)\n\t\t\t\t\t// Support requests that don't send all paths for pre-verification (pre v2.6.11)\n\t\t\t\t\tverifiedLock.Lock()\n\t\t\t\t\t_, ok := preVerified[pth]\n\t\t\t\t\tverifiedLock.Unlock()\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\treadOnlyBuck.UpdatedAt = time.Now().UnixNano()\n\t\t\t\t\t\treadOnlyBuck.SetMetadataAtPath(pth, tdb.Metadata{\n\t\t\t\t\t\t\tUpdatedAt: readOnlyBuck.UpdatedAt,\n\t\t\t\t\t\t})\n\t\t\t\t\t\treadOnlyBuck.UnsetMetadataWithPrefix(pth + \"/\")\n\t\t\t\t\t\tif err = s.Buckets.Verify(ctx, dbID, readOnlyBuck, tdb.WithToken(dbToken)); err != nil {\n\t\t\t\t\t\t\treturn nil, fmt.Errorf(\"verifying bucket update: %v\", err)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tkey, err := readOnlyBuck.GetFileEncryptionKeyForPath(pth)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"getting bucket key: %v\", err)\n\t\t\t\t\t}\n\t\t\t\t\treturn key, nil\n\t\t\t\t}, addedCh, errCh)\n\t\t\t\tif err != nil {\n\t\t\t\t\terrCh <- fmt.Errorf(\"enqueueing file: %v\", err)\n\t\t\t\t\treturn\n\t\t\t\t}\n\n\t\t\t\tif len(payload.Chunk.Data) > 0 {\n\t\t\t\t\tif _, err := fa.writer.Write(payload.Chunk.Data); err != nil {\n\t\t\t\t\t\terrCh <- fmt.Errorf(\"writing chunk: %v\", err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif err := fa.writer.Close(); err != nil {\n\t\t\t\t\t\terrCh <- fmt.Errorf(\"closing writer: %v\", err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\terrCh <- fmt.Errorf(\"invalid request\")\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}()\n\n\tvar changed bool\n\tsctx := util.NewClonedContext(ctx)\n\tsaveWithErr := func(err error) error {\n\t\tcancel()\n\t\tif !changed {\n\t\t\treturn err\n\t\t}\n\t\tif serr := s.saveAndPublish(sctx, dbID, dbToken, buck); serr != nil {\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"bucket save error: %v\", serr)\n\t\t\t\treturn err\n\t\t\t}\n\t\t\treturn serr\n\t\t} else {\n\t\t\tlog.Debugf(\"saved bucket %s with path: %s\", buck.Key, buck.Path)\n\t\t}\n\t\treturn err\n\t}\n\n\tfor {\n\t\tselect {\n\t\tcase res := <-addedCh:\n\t\t\tctxLock.RLock()\n\t\t\tnewCtx := ctx\n\t\t\tctxLock.RUnlock()\n\n\t\t\tfn, err := s.IPFSClient.ResolveNode(newCtx, res.resolved)\n\t\t\tif err != nil {\n\t\t\t\treturn saveWithErr(fmt.Errorf(\"resolving added node: %v\", err))\n\t\t\t}\n\n\t\t\tvar dir path.Resolved\n\t\t\tif buck.IsPrivate() {\n\t\t\t\tnewCtx, dir, err = s.insertNodeAtPath(\n\t\t\t\t\tnewCtx,\n\t\t\t\t\tfn,\n\t\t\t\t\tpath.Join(path.New(buck.Path), res.path),\n\t\t\t\t\tbuck.GetLinkEncryptionKey(),\n\t\t\t\t)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn saveWithErr(fmt.Errorf(\"inserting added node: %v\", err))\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdir, err = s.IPFSClient.Object().AddLink(\n\t\t\t\t\tnewCtx,\n\t\t\t\t\tpath.New(buck.Path),\n\t\t\t\t\tres.path,\n\t\t\t\t\tres.resolved,\n\t\t\t\t\toptions.Object.Create(true),\n\t\t\t\t)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn saveWithErr(fmt.Errorf(\"adding bucket link: %v\", err))\n\t\t\t\t}\n\t\t\t\tnewCtx, err = s.updateOrAddPin(newCtx, path.New(buck.Path), dir)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn saveWithErr(fmt.Errorf(\"updating bucket pin: %v\", err))\n\t\t\t\t}\n\t\t\t}\n\t\t\tbuck.Path = dir.String()\n\t\t\tbuck.UpdatedAt = time.Now().UnixNano()\n\t\t\tbuck.SetMetadataAtPath(res.path, tdb.Metadata{\n\t\t\t\tUpdatedAt: buck.UpdatedAt,\n\t\t\t})\n\t\t\tbuck.UnsetMetadataWithPrefix(res.path + \"/\")\n\n\t\t\troot, err := getPbRoot(dbID, buck)\n\t\t\tif err != nil {\n\t\t\t\treturn saveWithErr(fmt.Errorf(\"preparing result: %v\", err))\n\t\t\t}\n\t\t\tif err := server.Send(&pb.PushPathsResponse{\n\t\t\t\tPath:   res.path,\n\t\t\t\tCid:    res.resolved.Cid().String(),\n\t\t\t\tSize:   res.size,\n\t\t\t\tPinned: s.getPinnedBytes(newCtx),\n\t\t\t\tRoot:   root,\n\t\t\t}); err != nil {\n\t\t\t\treturn saveWithErr(fmt.Errorf(\"sending event: %v\", err))\n\t\t\t}\n\n\t\t\tctxLock.Lock()\n\t\t\tctx = newCtx\n\t\t\tctxLock.Unlock()\n\n\t\t\tlog.Debugf(\"pushed %s to bucket: %s\", res.path, buck.Key)\n\n\t\t\tchanged = true // Save is needed\n\t\t\twg.Done()\n\n\t\tcase <-doneCh:\n\t\t\treturn saveWithErr(nil)\n\n\t\tcase err := <-errCh:\n\t\t\treturn saveWithErr(err)\n\t\t}\n\t}\n}\n\nfunc (s *Service) getBucketSize(ctx context.Context, buck *tdb.Bucket) (int64, error) {\n\tif !buck.IsPrivate() {\n\t\treturn s.dagSize(ctx, path.New(buck.Path))\n\t} else {\n\t\t// Walk the entire encrypted node using a stack\n\t\tvar size int64\n\t\tvar stack []*namedNode\n\t\tvar cur *namedNode\n\t\tjmap := make(map[cid.Cid]*namedNode)\n\t\tlmap := make(map[cid.Cid]*namedNode)\n\t\tlinkKey := buck.GetLinkEncryptionKey()\n\t\tds := s.IPFSClient.Dag()\n\n\t\troot, err := s.IPFSClient.ResolveNode(ctx, path.New(buck.Path))\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\n\t\tstack = append(stack, &namedNode{node: root})\n\t\tfor len(stack) > 0 {\n\t\t\tn := len(stack) - 1\n\t\t\tcur = stack[n]\n\t\t\tstack = stack[:n]\n\n\t\t\tif _, ok := jmap[cur.node.Cid()]; ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif _, ok := lmap[cur.node.Cid()]; ok {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\ttypes:\n\t\t\tswitch cur.node.(type) {\n\t\t\tcase *dag.RawNode:\n\t\t\t\tlmap[cur.node.Cid()] = cur\n\t\t\tcase *dag.ProtoNode:\n\t\t\t\t// Add links to the stack\n\t\t\t\tcur.cid = cur.node.Cid()\n\t\t\t\tvar err error\n\t\t\t\tcur.node, _, err = decryptNode(cur.node, linkKey)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn 0, err\n\t\t\t\t}\n\t\t\t\tfor _, l := range cur.node.Links() {\n\t\t\t\t\tif l.Name == \"\" {\n\t\t\t\t\t\t// We have discovered a raw file node wrapper\n\t\t\t\t\t\t// Use the original cur node because file node wrappers aren't encrypted\n\t\t\t\t\t\tlmap[cur.cid] = cur\n\t\t\t\t\t\ts, err := cur.node.Stat()\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn 0, err\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Include the size of all child nodes\n\t\t\t\t\t\tsize += int64(s.CumulativeSize)\n\t\t\t\t\t\tbreak types\n\t\t\t\t\t}\n\t\t\t\t\tln, err := l.GetNode(ctx, ds)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn 0, err\n\t\t\t\t\t}\n\t\t\t\t\tstack = append(stack, &namedNode{\n\t\t\t\t\t\tnode: ln,\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t\tjmap[cur.cid] = cur\n\t\t\t\ts, err := cur.node.Stat()\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn 0, err\n\t\t\t\t}\n\t\t\t\t// Just get the block size\n\t\t\t\tsize += int64(s.BlockSize)\n\t\t\tdefault:\n\t\t\t\treturn 0, errInvalidNodeType\n\t\t\t}\n\t\t}\n\t\treturn size, nil\n\t}\n}\n\n// insertNodeAtPath inserts a node at the location of path.\n// Key will be required if the path is encrypted.\nfunc (s *Service) insertNodeAtPath(\n\tctx context.Context,\n\tchild ipld.Node,\n\tpth path.Path,\n\tkey []byte,\n) (context.Context, path.Resolved, error) {\n\t// The first step here is find a resolvable list of nodes that point to path.\n\trp, fp, err := util.ParsePath(pth)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tfd, fn := gopath.Split(fp)\n\tfd = strings.TrimSuffix(fd, \"/\")\n\tnp, _, r, err := s.getNodesToPath(ctx, rp, fd, key)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tr = gopath.Join(r, fn)\n\n\t// If the remaining path segment is not empty, we need to create each one\n\t// starting at the other end and walking back up to the deepest node\n\t// in the node path.\n\tparts := strings.Split(r, \"/\")\n\tnews := make([]ipld.Node, len(parts)-1)\n\tcn := child\n\tfor i := len(parts) - 1; i > 0; i-- {\n\t\tn, err := newDirWithNode(cn, parts[i], key)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, err\n\t\t}\n\t\tnews[i-1] = cn\n\t\tcn = n\n\t}\n\tnp = append(np, pathNode{new: cn, name: parts[0], isJoint: true})\n\n\t// Now, we have a full list of nodes to the insert location,\n\t// but the existing nodes need to be updated and re-encrypted.\n\tchange := make([]ipld.Node, len(np))\n\tfor i := len(np) - 1; i >= 0; i-- {\n\t\tchange[i] = np[i].new\n\t\tif i > 0 {\n\t\t\tp, ok := np[i-1].new.(*dag.ProtoNode)\n\t\t\tif !ok {\n\t\t\t\treturn ctx, nil, dag.ErrNotProtobuf\n\t\t\t}\n\t\t\tif np[i].isJoint {\n\t\t\t\txn, err := p.GetLinkedNode(ctx, s.IPFSClient.Dag(), np[i].name)\n\t\t\t\tif err != nil && !errors.Is(err, dag.ErrLinkNotFound) {\n\t\t\t\t\treturn ctx, nil, err\n\t\t\t\t}\n\t\t\t\tif xn != nil {\n\t\t\t\t\tnp[i].old = path.IpfsPath(xn.Cid())\n\t\t\t\t\tif err := p.RemoveNodeLink(np[i].name); err != nil {\n\t\t\t\t\t\treturn ctx, nil, err\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\txl, err := p.GetNodeLink(np[i].name)\n\t\t\t\tif err != nil && !errors.Is(err, dag.ErrLinkNotFound) {\n\t\t\t\t\treturn ctx, nil, err\n\t\t\t\t}\n\t\t\t\tif xl != nil {\n\t\t\t\t\tif err := p.RemoveNodeLink(np[i].name); err != nil {\n\t\t\t\t\t\treturn ctx, nil, err\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif err := p.AddNodeLink(np[i].name, np[i].new); err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t\tnp[i-1].new, err = encryptNode(p, key)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Add all the _new_ nodes, which is the sum of the brand new ones\n\t// from the missing path segment, and the changed ones from\n\t// the existing path.\n\tallNews := append(news, change...)\n\tif err := s.IPFSClient.Dag().AddMany(ctx, allNews); err != nil {\n\t\treturn ctx, nil, err\n\t}\n\t// Pin brand new nodes\n\tctx, err = s.pinBlocks(ctx, news)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\n\t// Update changed node pins\n\tfor _, n := range np {\n\t\tif n.old != nil && n.isJoint {\n\t\t\tctx, err = s.unpinBranch(ctx, n.old, key)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t}\n\t\tctx, err = s.updateOrAddPin(ctx, n.old, path.IpfsPath(n.new.Cid()))\n\t\tif err != nil {\n\t\t\treturn ctx, nil, err\n\t\t}\n\t}\n\treturn ctx, path.IpfsPath(np[0].new.Cid()), nil\n}\n\n// unpinBranch walks a the node at path, decrypting (if needed) and unpinning all nodes\nfunc (s *Service) unpinBranch(ctx context.Context, p path.Resolved, key []byte) (context.Context, error) {\n\tn, _, err := s.resolveNodeAtPath(ctx, p, key)\n\tif err != nil {\n\t\treturn ctx, err\n\t}\n\tfor _, l := range n.Links() {\n\t\tif l.Name == \"\" {\n\t\t\tcontinue // Data nodes will never be pinned directly\n\t\t}\n\t\tlp := path.IpfsPath(l.Cid)\n\t\tctx, err = s.unpinPath(ctx, lp)\n\t\tif err != nil {\n\t\t\treturn ctx, err\n\t\t}\n\t\tctx, err = s.unpinBranch(ctx, lp, key)\n\t\tif err != nil {\n\t\t\treturn ctx, err\n\t\t}\n\t}\n\treturn ctx, nil\n}\n\ntype pathNode struct {\n\told     path.Resolved\n\tnew     ipld.Node\n\tname    string\n\tisJoint bool\n}\n\n// getNodesToPath returns a list of pathNodes that point to the path,\n// The remaining path segment that was not resolvable is also returned.\nfunc (s *Service) getNodesToPath(\n\tctx context.Context,\n\tbase path.Resolved,\n\tpth string,\n\tkey []byte,\n) (nodes []pathNode, isDir bool, remainder string, err error) {\n\ttop, dir, err := s.resolveNodeAtPath(ctx, base, key)\n\tif err != nil {\n\t\treturn\n\t}\n\tnodes = append(nodes, pathNode{old: base, new: top})\n\tremainder = pth\n\tif remainder == \"\" {\n\t\treturn\n\t}\n\tparts := strings.Split(pth, \"/\")\n\tfor i := 0; i < len(parts); i++ {\n\t\tl := getLink(top.Links(), parts[i])\n\t\tif l != nil {\n\t\t\tp := path.IpfsPath(l.Cid)\n\t\t\ttop, dir, err = s.resolveNodeAtPath(ctx, p, key)\n\t\t\tif err != nil {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tnodes = append(nodes, pathNode{old: p, new: top, name: parts[i]})\n\t\t} else {\n\t\t\tremainder = strings.Join(parts[i:], \"/\")\n\t\t\treturn nodes, dir, remainder, nil\n\t\t}\n\t}\n\treturn nodes, dir, \"\", nil\n}\n\nfunc getLink(lnks []*ipld.Link, name string) *ipld.Link {\n\tfor _, l := range lnks {\n\t\tif l.Name == name {\n\t\t\treturn l\n\t\t}\n\t}\n\treturn nil\n}\n\n// updateOrAddPin moves the pin at from to to.\n// If from is nil, a new pin as placed at to.\nfunc (s *Service) updateOrAddPin(ctx context.Context, from, to path.Path) (context.Context, error) {\n\ttoSize, err := s.dagSize(ctx, to)\n\tif err != nil {\n\t\treturn ctx, fmt.Errorf(\"getting size of destination dag: %v\", err)\n\t}\n\n\tfromSize, err := s.dagSize(ctx, from)\n\tif err != nil {\n\t\treturn ctx, fmt.Errorf(\"getting size of current dag: %v\", err)\n\t}\n\tdeltaSize := -fromSize + toSize\n\n\t// Check context owner's storage allowance\n\towner, ok := buckets.BucketOwnerFromContext(ctx)\n\tif ok {\n\t\tlog.Debugf(\"updateOrAddPin: storage: %d used, %d available, %d requested\",\n\t\t\towner.StorageUsed, owner.StorageAvailable, deltaSize)\n\t}\n\tif ok && deltaSize > 0 && deltaSize > owner.StorageAvailable {\n\t\treturn ctx, ErrStorageQuotaExhausted\n\t}\n\n\tif from == nil {\n\t\tif err := s.IPFSClient.Pin().Add(ctx, to); err != nil {\n\t\t\treturn ctx, err\n\t\t}\n\t} else {\n\t\tif err := s.IPFSClient.Pin().Update(ctx, from, to); err != nil {\n\t\t\tif err.Error() == pinNotRecursiveMsg {\n\t\t\t\treturn ctx, s.IPFSClient.Pin().Add(ctx, to)\n\t\t\t} else if err.Error() == pinAlreadyRecursiveMsg {\n\t\t\t\treturn ctx, s.IPFSClient.Pin().Rm(ctx, from)\n\t\t\t}\n\t\t\treturn ctx, err\n\t\t}\n\t}\n\treturn s.addPinnedBytes(ctx, deltaSize), nil\n}\n\n// dagSize returns the cummulative size of root. If root is nil, it returns 0.\nfunc (s *Service) dagSize(ctx context.Context, root path.Path) (int64, error) {\n\tif root == nil {\n\t\treturn 0, nil\n\t}\n\tstat, err := s.IPFSClient.Object().Stat(ctx, root)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"getting dag size: %v\", err)\n\t}\n\treturn int64(stat.CumulativeSize), nil\n}\n\nfunc (s *Service) PullPath(req *pb.PullPathRequest, server pb.APIService_PullPathServer) error {\n\tlog.Debugf(\"received pull path request\")\n\n\tdbID, ok := common.ThreadIDFromContext(server.Context())\n\tif !ok {\n\t\treturn errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(server.Context())\n\n\treq.Path = cleanPath(req.Path)\n\tbuck, pth, err := s.getBucketPath(server.Context(), dbID, req.Key, req.Path, dbToken)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfilePath, fileKey, err := s.getPathAndKey(server.Context(), req, buck, pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tnode, err := s.IPFSClient.Unixfs().Get(server.Context(), filePath)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer node.Close()\n\n\tfile := ipfsfiles.ToFile(node)\n\tif file == nil {\n\t\treturn fmt.Errorf(\"node is a directory\")\n\t}\n\tvar reader io.Reader\n\tif fileKey != nil {\n\t\tr, err := dcrypto.NewDecrypter(file, fileKey)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tdefer r.Close()\n\t\treader = r\n\t} else {\n\t\treader = file\n\t}\n\n\tbuf := make([]byte, chunkSize)\n\tfor {\n\t\tn, err := reader.Read(buf)\n\t\tif n > 0 {\n\t\t\tif err := server.Send(&pb.PullPathResponse{\n\t\t\t\tChunk: buf[:n],\n\t\t\t}); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tif err == io.EOF {\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// getPathAndKey takes a bucket path and returns a filepath and key (if private).\nfunc (s *Service) getPathAndKey(\n\tctx context.Context,\n\treq *pb.PullPathRequest,\n\tbuck *tdb.Bucket,\n\tpth path.Path,\n) (path.Resolved, []byte, error) {\n\tfileKey, err := buck.GetFileEncryptionKeyForPath(req.Path)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\n\tvar filePath path.Resolved\n\tif buck.IsPrivate() {\n\t\tbuckPath, err := util.NewResolvedPath(buck.Path)\n\t\tif err != nil {\n\t\t\treturn nil, nil, err\n\t\t}\n\t\tnp, isDir, r, err := s.getNodesToPath(ctx, buckPath, req.Path, buck.GetLinkEncryptionKey())\n\t\tif err != nil {\n\t\t\treturn nil, nil, err\n\t\t}\n\t\tif r != \"\" {\n\t\t\treturn nil, nil, fmt.Errorf(\"could not resolve path: %s\", pth)\n\t\t}\n\t\tif isDir {\n\t\t\treturn nil, nil, fmt.Errorf(\"node is a directory\")\n\t\t}\n\t\tfn := np[len(np)-1]\n\t\tfilePath = path.IpfsPath(fn.new.Cid())\n\t} else {\n\t\tfilePath, err = s.IPFSClient.ResolvePath(ctx, pth)\n\t\tif err != nil {\n\t\t\treturn nil, nil, err\n\t\t}\n\t}\n\treturn filePath, fileKey, nil\n}\n\nfunc (s *Service) PullIpfsPath(req *pb.PullIpfsPathRequest, server pb.APIService_PullIpfsPathServer) error {\n\tlog.Debugf(\"received ipfs pull path request\")\n\n\treqPath := path.New(req.Path)\n\tnode, err := s.IPFSClient.Unixfs().Get(server.Context(), reqPath)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer node.Close()\n\n\tfile := ipfsfiles.ToFile(node)\n\tif file == nil {\n\t\treturn fmt.Errorf(\"node is a directory\")\n\t}\n\tbuf := make([]byte, chunkSize)\n\tfor {\n\t\tn, err := file.Read(buf)\n\t\tif n > 0 {\n\t\t\tif err := server.Send(&pb.PullIpfsPathResponse{\n\t\t\t\tChunk: buf[:n],\n\t\t\t}); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tif err == io.EOF {\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (s *Service) Remove(ctx context.Context, req *pb.RemoveRequest) (*pb.RemoveResponse, error) {\n\tlog.Debugf(\"received remove request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tlck := s.Semaphores.Get(buckLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck := &tdb.Bucket{}\n\terr := s.Buckets.GetSafe(ctx, dbID, req.Key, buck, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif err = s.Buckets.Delete(ctx, dbID, buck.Key, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\n\tbuckPath, err := util.NewResolvedPath(buck.Path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlinkKey := buck.GetLinkEncryptionKey()\n\tif linkKey != nil {\n\t\tctx, err = s.unpinNodeAndBranch(ctx, buckPath, linkKey)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t} else {\n\t\tctx, err = s.unpinPath(ctx, buckPath)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif err = s.IPNSManager.RemoveKey(ctx, buck.Key); err != nil {\n\t\treturn nil, err\n\t}\n\n\tlog.Debugf(\"removed bucket: %s\", buck.Key)\n\treturn &pb.RemoveResponse{\n\t\tPinned: s.getPinnedBytes(ctx),\n\t}, nil\n}\n\n// unpinNodeAndBranch unpins a node and its entire branch, accounting for sum bytes pinned for context.\nfunc (s *Service) unpinNodeAndBranch(ctx context.Context, pth path.Resolved, key []byte) (context.Context, error) {\n\tctx, err := s.unpinBranch(ctx, pth, key)\n\tif err != nil {\n\t\treturn ctx, err\n\t}\n\treturn s.unpinPath(ctx, pth)\n}\n\nfunc (s *Service) RemovePath(ctx context.Context, req *pb.RemovePathRequest) (res *pb.RemovePathResponse, err error) {\n\tlog.Debugf(\"received remove path request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tfilePath, err := parsePath(req.Path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tlck := s.Semaphores.Get(buckLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck := &tdb.Bucket{}\n\tif err := s.Buckets.GetSafe(ctx, dbID, req.Key, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif req.Root != \"\" && req.Root != buck.Path {\n\t\treturn nil, status.Error(codes.FailedPrecondition, buckets.ErrNonFastForward.Error())\n\t}\n\n\tbuck.UpdatedAt = time.Now().UnixNano()\n\tbuck.UnsetMetadataWithPrefix(filePath)\n\n\tif err := s.Buckets.Verify(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\n\tctx, dirPath, err := s.removePath(ctx, buck, filePath)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tbuck.Path = dirPath.String()\n\tif err = s.saveAndPublish(ctx, dbID, dbToken, buck); err != nil {\n\t\treturn nil, err\n\t}\n\n\tlog.Debugf(\"removed %s from bucket: %s\", filePath, buck.Key)\n\troot, err := getPbRoot(dbID, buck)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.RemovePathResponse{\n\t\tRoot:   root,\n\t\tPinned: s.getPinnedBytes(ctx),\n\t}, nil\n}\n\nfunc (s *Service) removePath(\n\tctx context.Context,\n\tbuck *tdb.Bucket,\n\tfilePath string,\n) (context.Context, path.Resolved, error) {\n\tbuckPath := path.New(buck.Path)\n\tvar dirPath path.Resolved\n\tvar err error\n\tif buck.IsPrivate() {\n\t\tctx, dirPath, err = s.removeNodeAtPath(\n\t\t\tctx,\n\t\t\tpath.Join(buckPath, filePath),\n\t\t\tbuck.GetLinkEncryptionKey(),\n\t\t)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, fmt.Errorf(\"remove node failed: %v\", err)\n\t\t}\n\t} else {\n\t\tdirPath, err = s.IPFSClient.Object().RmLink(ctx, buckPath, filePath)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, err\n\t\t}\n\t\tctx, err = s.updateOrAddPin(ctx, buckPath, dirPath)\n\t\tif err != nil {\n\t\t\treturn ctx, nil, fmt.Errorf(\"update pin failed: %v\", err)\n\t\t}\n\t}\n\treturn ctx, dirPath, nil\n}\n\n// removeNodeAtPath removes node at the location of path.\n// Key will be required if the path is encrypted.\nfunc (s *Service) removeNodeAtPath(\n\tctx context.Context,\n\tpth path.Path,\n\tkey []byte,\n) (context.Context, path.Resolved, error) {\n\t// The first step here is find a resolvable list of nodes that point to path.\n\trp, fp, err := util.ParsePath(pth)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\tnp, _, r, err := s.getNodesToPath(ctx, rp, fp, key)\n\tif err != nil {\n\t\treturn ctx, nil, err\n\t}\n\t// If the remaining path segment is not empty, then we conclude that\n\t// the node cannot be resolved.\n\tif r != \"\" {\n\t\treturn ctx, nil, fmt.Errorf(\"could not resolve path: %s\", pth)\n\t}\n\tnp[len(np)-1].isJoint = true\n\n\t// Now, we have a full list of nodes to the insert location,\n\t// but the existing nodes need to be updated and re-encrypted.\n\tchange := make([]ipld.Node, len(np)-1)\n\tfor i := len(np) - 1; i >= 0; i-- {\n\t\tif i < len(np)-1 {\n\t\t\tchange[i] = np[i].new\n\t\t}\n\t\tif i > 0 {\n\t\t\tp, ok := np[i-1].new.(*dag.ProtoNode)\n\t\t\tif !ok {\n\t\t\t\treturn ctx, nil, dag.ErrNotProtobuf\n\t\t\t}\n\t\t\tif err := p.RemoveNodeLink(np[i].name); err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t\tif !np[i].isJoint {\n\t\t\t\tif err := p.AddNodeLink(np[i].name, np[i].new); err != nil {\n\t\t\t\t\treturn ctx, nil, err\n\t\t\t\t}\n\t\t\t}\n\t\t\tnp[i-1].new, err = encryptNode(p, key)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Add all the changed nodes\n\tif err := s.IPFSClient.Dag().AddMany(ctx, change); err != nil {\n\t\treturn ctx, nil, err\n\t}\n\t// Update / remove node pins\n\tfor _, n := range np {\n\t\tif n.isJoint {\n\t\t\tctx, err = s.unpinNodeAndBranch(ctx, n.old, key)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t} else {\n\t\t\tctx, err = s.updateOrAddPin(ctx, n.old, path.IpfsPath(n.new.Cid()))\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, nil, err\n\t\t\t}\n\t\t}\n\t}\n\treturn ctx, path.IpfsPath(np[0].new.Cid()), nil\n}\n\nfunc (s *Service) PushPathAccessRoles(\n\tctx context.Context,\n\treq *pb.PushPathAccessRolesRequest,\n) (res *pb.PushPathAccessRolesResponse, err error) {\n\tlog.Debugf(\"received push path access roles request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\treqPath, err := parsePath(req.Path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tlck := s.Semaphores.Get(buckLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck, pth, err := s.getBucketPath(ctx, dbID, req.Key, reqPath, dbToken)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlinkKey := buck.GetLinkEncryptionKey()\n\tpathNode, err := s.getNodeAtPath(ctx, pth, linkKey)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tmd, mdPath, ok := buck.GetMetadataForPath(reqPath, false)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", reqPath)\n\t}\n\tvar target tdb.Metadata\n\tif mdPath != reqPath { // If the metadata is inherited from a parent, create a new entry\n\t\ttarget = tdb.Metadata{\n\t\t\tRoles: make(map[string]buckets.Role),\n\t\t}\n\t} else {\n\t\ttarget = md\n\t}\n\tvar currentFileKeys map[string][]byte\n\tif buck.IsPrivate() {\n\t\tcurrentFileKeys, err = buck.GetFileEncryptionKeysForPrefix(reqPath)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tnewFileKey, err := dcrypto.NewKey()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttarget.SetFileEncryptionKey(newFileKey) // Create or refresh the file key\n\t}\n\n\tnewRoles, err := buckets.RolesFromPb(req.Roles)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar changed bool\n\tfor k, r := range newRoles {\n\t\tif x, ok := target.Roles[k]; ok && x == r {\n\t\t\tcontinue\n\t\t}\n\t\tif r > buckets.None {\n\t\t\ttarget.Roles[k] = r\n\t\t} else {\n\t\t\tdelete(target.Roles, k)\n\t\t}\n\t\tchanged = true\n\t}\n\tif changed {\n\t\tbuck.UpdatedAt = time.Now().UnixNano()\n\t\ttarget.UpdatedAt = buck.UpdatedAt\n\t\tbuck.Metadata[reqPath] = target\n\t\tif buck.IsPrivate() {\n\t\t\tif err := buck.RotateFileEncryptionKeysForPrefix(reqPath); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\tif err = s.Buckets.Verify(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tif buck.IsPrivate() {\n\t\t\tnewFileKeys, err := buck.GetFileEncryptionKeysForPrefix(reqPath)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnmap, err := s.encryptDag(\n\t\t\t\tctx,\n\t\t\t\tpathNode,\n\t\t\t\treqPath,\n\t\t\t\tlinkKey,\n\t\t\t\tcurrentFileKeys,\n\t\t\t\tnewFileKeys,\n\t\t\t\tnil,\n\t\t\t\tnil,\n\t\t\t)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnodes := make([]ipld.Node, len(nmap))\n\t\t\ti := 0\n\t\t\tfor _, tn := range nmap {\n\t\t\t\tnodes[i] = tn.node\n\t\t\t\ti++\n\t\t\t}\n\t\t\tpn := nmap[pathNode.Cid()].node\n\t\t\tvar dirPath path.Resolved\n\t\t\tctx, dirPath, err = s.insertNodeAtPath(ctx, pn, path.Join(path.New(buck.Path), reqPath), linkKey)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"updating pinned root: %v\", err)\n\t\t\t}\n\t\t\tctx, err = s.addAndPinNodes(ctx, nodes)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tbuck.Path = dirPath.String()\n\t\t}\n\n\t\tif err = s.Buckets.Save(ctx, dbID, buck, tdb.WithToken(dbToken)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &pb.PushPathAccessRolesResponse{\n\t\tPinned: s.getPinnedBytes(ctx),\n\t}, nil\n}\n\nfunc (s *Service) PullPathAccessRoles(\n\tctx context.Context,\n\treq *pb.PullPathAccessRolesRequest,\n) (*pb.PullPathAccessRolesResponse, error) {\n\tlog.Debugf(\"received pull path access roles request\")\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\treqPath, err := parsePath(req.Path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbuck, pth, err := s.getBucketPath(ctx, dbID, req.Key, reqPath, dbToken)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err = s.getNodeAtPath(ctx, pth, buck.GetLinkEncryptionKey()); err != nil {\n\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", reqPath)\n\t}\n\tmd, _, ok := buck.GetMetadataForPath(reqPath, false)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", reqPath)\n\t}\n\troles, err := buckets.RolesToPb(md.Roles)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.PullPathAccessRolesResponse{\n\t\tRoles: roles,\n\t}, nil\n}\n\nfunc (s *Service) DefaultArchiveConfig(\n\tctx context.Context,\n\treq *pb.DefaultArchiveConfigRequest,\n) (*pb.DefaultArchiveConfigResponse, error) {\n\tlog.Debug(\"received default archive config request\")\n\n\tif !s.Buckets.IsArchivingEnabled() {\n\t\treturn nil, ErrArchivingFeatureDisabled\n\t}\n\n\tba, err := s.Collections.BucketArchives.GetOrCreate(ctx, req.Key)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket archive data: %v\", err)\n\t}\n\tarchiveConfig := ba.DefaultArchiveConfig\n\tif archiveConfig == nil {\n\t\t// The queried BucketArchive was created before we added .DefaultArchiveConfig, so just return the default\n\t\tarchiveConfig = &defaultDefaultArchiveConfig\n\t}\n\treturn &pb.DefaultArchiveConfigResponse{\n\t\tArchiveConfig: toPbArchiveConfig(archiveConfig),\n\t}, nil\n}\n\nfunc (s *Service) SetDefaultArchiveConfig(\n\tctx context.Context,\n\treq *pb.SetDefaultArchiveConfigRequest,\n) (*pb.SetDefaultArchiveConfigResponse, error) {\n\tlog.Debug(\"received set default archive config request\")\n\n\tif !s.Buckets.IsArchivingEnabled() {\n\t\treturn nil, ErrArchivingFeatureDisabled\n\t}\n\n\tba, err := s.Collections.BucketArchives.GetOrCreate(ctx, req.Key)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket archive data: %v\", err)\n\t}\n\n\tc := fromPbArchiveConfig(req.ArchiveConfig)\n\tif err := s.validateArchiveConfig(c); err != nil {\n\t\treturn nil, fmt.Errorf(\"validating archive config: %v\", err)\n\t}\n\n\tba.DefaultArchiveConfig = c\n\terr = s.Collections.BucketArchives.Replace(ctx, ba)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"saving default archive config: %v\", err)\n\t}\n\treturn &pb.SetDefaultArchiveConfigResponse{}, nil\n}\n\nfunc (s *Service) Archive(ctx context.Context, req *pb.ArchiveRequest) (*pb.ArchiveResponse, error) {\n\tlog.Debug(\"received archive request\")\n\n\tif !s.Buckets.IsArchivingEnabled() {\n\t\treturn nil, ErrArchivingFeatureDisabled\n\t}\n\n\tdbID, ok := common.ThreadIDFromContext(ctx)\n\tif !ok {\n\t\treturn nil, errDBRequired\n\t}\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\taccount, _ := mdb.AccountFromContext(ctx)\n\n\tlck := s.Semaphores.Get(buckLock(req.Key))\n\tlck.Acquire()\n\tdefer lck.Release()\n\n\tbuck := &tdb.Bucket{}\n\terr := s.Buckets.GetSafe(ctx, dbID, req.Key, buck, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket: %v\", err)\n\t}\n\n\tbuckSize, err := s.getBucketSize(ctx, buck)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket size: %v\", err)\n\t}\n\tif buckSize > s.MaxBucketArchiveSize {\n\t\treturn nil, fmt.Errorf(\"archive size is too big, should be less than: %d GiB\", s.MaxBucketArchiveSize/1024/1024/1024)\n\t}\n\tif buckSize < s.MinBucketArchiveSize {\n\t\treturn nil, fmt.Errorf(\"archive size is too small, should be greater than: %d MiB\", s.MinBucketArchiveSize/1024/1024)\n\t}\n\n\tp, err := util.NewResolvedPath(buck.Path)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"parsing cid path: %v\", err)\n\t}\n\n\tcreateNewUser := func() error {\n\t\tctxAdmin := context.WithValue(ctx, pow.AdminKey, s.PowergateAdminToken)\n\t\tres, err := s.PowergateClient.Admin.Users.Create(ctxAdmin)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"creating new powergate integration: %v\", err)\n\t\t}\n\t\t_, err = s.Collections.Accounts.UpdatePowInfo(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\t&mdb.PowInfo{ID: res.User.Id, Token: res.User.Token},\n\t\t)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"updating user/account with new powergate information: %v\", err)\n\t\t}\n\t\treturn nil\n\t}\n\n\ttryAgain := fmt.Errorf(\n\t\t\"new powergate integration created, please try again in 30 seconds to allow time for wallet funding\")\n\n\t// Case where account/user was created before bucket archives were enabled.\n\t// create a user for them.\n\tif account.Owner().PowInfo == nil {\n\t\tif err := createNewUser(); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn nil, tryAgain\n\t}\n\n\tctxPow := context.WithValue(ctx, pow.AuthKey, account.Owner().PowInfo.Token)\n\tdefConfRes, err := s.PowergateClient.StorageConfig.Default(ctxPow)\n\tif err != nil {\n\t\tif !strings.Contains(err.Error(), \"auth token not found\") {\n\t\t\treturn nil, fmt.Errorf(\"getting powergate default StorageConfig: %v\", err)\n\t\t} else {\n\t\t\t// case where the user token is no longer valid because powergate was reset.\n\t\t\t// create a new user for them.\n\t\t\tif err := createNewUser(); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn nil, tryAgain\n\t\t}\n\t}\n\n\tba, err := s.Collections.BucketArchives.GetOrCreate(ctx, req.Key)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket archive data: %v\", err)\n\t}\n\n\tvar archiveConfig *mdb.ArchiveConfig\n\tif req.ArchiveConfig != nil {\n\t\tarchiveConfig = fromPbArchiveConfig(req.ArchiveConfig)\n\t} else if ba.DefaultArchiveConfig != nil {\n\t\tarchiveConfig = ba.DefaultArchiveConfig\n\t} else {\n\t\t// The queried BucketArchive was created before we added .DefaultArchiveConfig so just use the default default\n\t\t// and defer saving the default until the user calls DefaultArchiveConfig or SetDefaultArchiveConfig.\n\t\tarchiveConfig = &defaultDefaultArchiveConfig\n\t}\n\n\tif err := s.validateArchiveConfig(archiveConfig); err != nil {\n\t\treturn nil, fmt.Errorf(\"validating archive config: %v\", err)\n\t}\n\n\tstorageConfig := baseArchiveStorageConfig\n\tstorageConfig.Cold.Filecoin = toFilConfig(archiveConfig)\n\t// Get the address from the default storage config for this user.\n\tstorageConfig.Cold.Filecoin.Address = defConfRes.DefaultStorageConfig.Cold.Filecoin.Address\n\n\t// Check that user wallet addr balance is > 0, if not, fail fast.\n\taddrs, err := s.PowergateClient.Wallet.Addresses(ctxPow)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting powergate wallet addresses: %v\", err)\n\t}\n\tvar addrInfo *userPb.AddrInfo\n\tfor _, addr := range addrs.Addresses {\n\t\tif addr.Address == storageConfig.Cold.Filecoin.Address {\n\t\t\taddrInfo = addr\n\t\t\tbreak\n\t\t}\n\t}\n\tif addrInfo == nil {\n\t\treturn nil, fmt.Errorf(\"wallet address not found in account: %v\", err)\n\t}\n\tbal, ok := new(big.Int).SetString(addrInfo.Balance, 10)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"converting balance %s to big int\", addrInfo.Balance)\n\t}\n\tif bal.Cmp(big.NewInt(0)) == 0 {\n\t\treturn nil, buckets.ErrZeroBalance\n\t}\n\n\t// If we don't get an explicit instruction of avoiding automatic verified-deal\n\t// tunning, and the wallet address is verified, then automatically enable\n\t// verified deals in the storage-config used for the archive.\n\tif !req.SkipAutomaticVerifiedDeal {\n\t\tlog.Debugf(\"executing automatic verified deal logic\")\n\t\tif !storageConfig.Cold.Filecoin.VerifiedDeal && addrInfo.VerifiedClientInfo != nil {\n\t\t\tremainingDataCap, ok := big.NewInt(0).SetString(addrInfo.VerifiedClientInfo.RemainingDatacapBytes, 10)\n\t\t\tif !ok {\n\t\t\t\treturn nil, fmt.Errorf(\"parsing remaining datacap\")\n\t\t\t}\n\t\t\tif remainingDataCap.Cmp(big.NewInt(0)) == 0 {\n\t\t\t\treturn nil, fmt.Errorf(\"the remaining datacap is zero: %s\", err)\n\t\t\t}\n\t\t\tstorageConfig.Cold.Filecoin.VerifiedDeal = true\n\t\t\t// TODO(jsign): we'll soon add some more work here to\n\t\t\t// see if the archive fits into the remaining data-cap\n\t\t\t// and take a decision of what to do.\n\t\t} else if storageConfig.Cold.Filecoin.VerifiedDeal && addrInfo.VerifiedClientInfo == nil {\n\t\t\treturn nil, fmt.Errorf(\"storage-config has set verified deals but the client is unverified\")\n\t\t}\n\t}\n\tscjson, _ := json.Marshal(storageConfig)\n\tlog.Debugf(\"archiving with filecoin config: %s\", scjson)\n\n\t// Archive pushes the current root Cid to the corresponding user of the bucket.\n\t// The behaviour changes depending on different cases, depending on a previous archive.\n\t// 0. No previous archive or last one aborted: simply pushes the Cid to Powergate.\n\t// 1. Last archive exists with the same Cid:\n\t//   a. Last archive Successful: fails, there's nothing to do.\n\t//   b. Last archive Executing/Queued: fails, that work already starting and is in progress.\n\t//   c. Last archive Failed/Canceled: work to do, push again with override flag to try again.\n\t// 2. Archiving on new Cid: work to do, it will always call Replace(,).\n\tvar jid string\n\tfirstTimeArchive := ba.Archives.Current.JobID == \"\"\n\tif firstTimeArchive || ba.Archives.Current.Aborted { // Case 0.\n\t\t// On the first archive, we simply push the Cid with\n\t\t// the default CidConfig configured at bucket creation.\n\t\tres, err := s.PowergateClient.StorageConfig.Apply(\n\t\t\tctxPow,\n\t\t\tp.Cid().String(),\n\t\t\tpow.WithStorageConfig(storageConfig),\n\t\t\tpow.WithOverride(true),\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"pushing config: %v\", err)\n\t\t}\n\t\tjid = res.JobId\n\t} else {\n\t\toldCid, err := cid.Cast(ba.Archives.Current.Cid)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"parsing old Cid archive: %v\", err)\n\t\t}\n\n\t\tstatusName, found := userPb.JobStatus_name[int32(ba.Archives.Current.Status)]\n\t\tif !found {\n\t\t\treturn nil, fmt.Errorf(\"invalid job status %v\", ba.Archives.Current.Status)\n\t\t}\n\n\t\tst := userPb.JobStatus(ba.Archives.Current.Status)\n\n\t\tif oldCid.Equals(p.Cid()) { // Case 1.\n\t\t\tswitch st {\n\t\t\t// Case 1.a.\n\t\t\tcase userPb.JobStatus_JOB_STATUS_SUCCESS:\n\t\t\t\treturn nil, fmt.Errorf(\"the same bucket cid is already archived successfully\")\n\t\t\t// Case 1.b.\n\t\t\tcase userPb.JobStatus_JOB_STATUS_EXECUTING, userPb.JobStatus_JOB_STATUS_QUEUED:\n\t\t\t\treturn nil, fmt.Errorf(\"there is an in progress archive\")\n\t\t\t// Case 1.c.\n\t\t\tcase userPb.JobStatus_JOB_STATUS_FAILED, userPb.JobStatus_JOB_STATUS_CANCELED:\n\t\t\t\tres, err := s.PowergateClient.StorageConfig.Apply(\n\t\t\t\t\tctxPow,\n\t\t\t\t\tp.Cid().String(),\n\t\t\t\t\tpow.WithStorageConfig(storageConfig),\n\t\t\t\t\tpow.WithOverride(true),\n\t\t\t\t)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"pushing config: %v\", err)\n\t\t\t\t}\n\t\t\t\tjid = res.JobId\n\t\t\tdefault:\n\t\t\t\treturn nil, fmt.Errorf(\"unexpected current archive status: %s\", statusName)\n\t\t\t}\n\t\t} else { // Case 2.\n\t\t\tres, err := s.PowergateClient.Data.CidInfo(ctxPow, oldCid.String())\n\t\t\tisNotKnownToPowergate := err != nil && status.Convert(err).Code() == codes.NotFound\n\t\t\tif err != nil && !isNotKnownToPowergate {\n\t\t\t\treturn nil, fmt.Errorf(\"looking up old storage config: %v\", err)\n\t\t\t}\n\n\t\t\tif !isNotKnownToPowergate && cmp.Equal(&storageConfig, res.CidInfo.LatestPushedStorageConfig) {\n\t\t\t\t// Old storage config is the same as the new so use replace.\n\t\t\t\tres, err := s.PowergateClient.Data.ReplaceData(ctxPow, oldCid.String(), p.Cid().String())\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"replacing cid: %v\", err)\n\t\t\t\t}\n\t\t\t\tjid = res.JobId\n\t\t\t} else {\n\t\t\t\t// New storage config.\n\t\t\t\tif !isNotKnownToPowergate {\n\t\t\t\t\t// Remove previous storage config.\n\t\t\t\t\t_, err = s.PowergateClient.StorageConfig.Apply(\n\t\t\t\t\t\tctxPow,\n\t\t\t\t\t\toldCid.String(),\n\t\t\t\t\t\tpow.WithStorageConfig(&userPb.StorageConfig{}),\n\t\t\t\t\t\tpow.WithOverride(true),\n\t\t\t\t\t)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"pushing config to disable hot and cold storage: %v\", err)\n\t\t\t\t\t}\n\t\t\t\t\t_, err = s.PowergateClient.StorageConfig.Remove(ctxPow, oldCid.String())\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"removing old cid storage: %v\", err)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Push new storage config.\n\t\t\t\tres, err := s.PowergateClient.StorageConfig.Apply(\n\t\t\t\t\tctxPow,\n\t\t\t\t\tp.Cid().String(),\n\t\t\t\t\tpow.WithStorageConfig(storageConfig),\n\t\t\t\t\tpow.WithOverride(true),\n\t\t\t\t)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"pushing config: %v\", err)\n\t\t\t\t}\n\t\t\t\tjid = res.JobId\n\t\t\t}\n\t\t}\n\n\t\t// Include the existing archive in history,\n\t\t// since we're going to set a new _current_ archive.\n\t\tba.Archives.History = append(ba.Archives.History, ba.Archives.Current)\n\t}\n\tba.Archives.Current = mdb.Archive{\n\t\tCid:       p.Cid().Bytes(),\n\t\tCreatedAt: time.Now().Unix(),\n\t\tJobID:     jid,\n\t\tStatus:    int(userPb.JobStatus_JOB_STATUS_QUEUED),\n\t}\n\tif err := s.Collections.BucketArchives.Replace(ctx, ba); err != nil {\n\t\treturn nil, fmt.Errorf(\"updating bucket archives data: %v\", err)\n\t}\n\n\tif err := s.ArchiveTracker.TrackArchive(\n\t\tctx,\n\t\tdbID,\n\t\tdbToken,\n\t\treq.Key,\n\t\tjid,\n\t\tp.Cid(),\n\t\taccount.Owner().Key,\n\t); err != nil {\n\t\treturn nil, fmt.Errorf(\"scheduling archive tracking: %v\", err)\n\t}\n\n\tlog.Debug(\"archived bucket\")\n\treturn &pb.ArchiveResponse{}, nil\n}\n\nfunc (s *Service) Archives(ctx context.Context, req *pb.ArchivesRequest) (*pb.ArchivesResponse, error) {\n\tba, err := s.Collections.BucketArchives.GetOrCreate(ctx, req.Key)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket archive data: %v\", err)\n\t}\n\tres := &pb.ArchivesResponse{}\n\tif ba.Archives.Current.JobID != \"\" {\n\t\tarc, err := toPbArchive(ba.Archives.Current)\n\t\tif err != nil {\n\t\t\treturn nil, status.Errorf(codes.Internal, \"converting to pb archive: %v\", err)\n\t\t}\n\t\tres.Current = arc\n\t}\n\thistory := make([]*pb.Archive, len(ba.Archives.History))\n\tfor i, item := range ba.Archives.History {\n\t\tpbItem, err := toPbArchive(item)\n\t\tif err != nil {\n\t\t\treturn nil, status.Errorf(codes.Internal, \"converting to pb archive: %v\", err)\n\t\t}\n\t\thistory[i] = pbItem\n\t}\n\tres.History = history\n\treturn res, nil\n}\n\nfunc toPbArchive(archive mdb.Archive) (*pb.Archive, error) {\n\tc, err := cid.Cast(archive.Cid)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"casting cid: %v\", err)\n\t}\n\t_, ok := pb.ArchiveStatus_name[int32(archive.Status)]\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"unknown job status: %v\", archive.Status)\n\t}\n\tdealInfo := make([]*pb.DealInfo, len(archive.DealInfo))\n\tfor i, info := range archive.DealInfo {\n\t\tdealInfo[i] = &pb.DealInfo{\n\t\t\tActivationEpoch: info.ActivationEpoch,\n\t\t\tDealId:          info.DealID,\n\t\t\tDuration:        info.Duration,\n\t\t\tMessage:         info.Message,\n\t\t\tMiner:           info.Miner,\n\t\t\tPieceCid:        info.PieceCID,\n\t\t\tPricePerEpoch:   info.PricePerEpoch,\n\t\t\tProposalCid:     info.ProposalCid,\n\t\t\tSize:            info.Size,\n\t\t\tStartEpoch:      info.StartEpoch,\n\t\t\tStateId:         info.StateID,\n\t\t\tStateName:       info.StateName,\n\t\t}\n\t}\n\treturn &pb.Archive{\n\t\tAborted:       archive.Aborted,\n\t\tAbortedMsg:    archive.AbortedMsg,\n\t\tCid:           c.String(),\n\t\tCreatedAt:     archive.CreatedAt,\n\t\tDealInfo:      dealInfo,\n\t\tFailureMsg:    archive.FailureMsg,\n\t\tJobId:         archive.JobID,\n\t\tArchiveStatus: pb.ArchiveStatus(archive.Status),\n\t}, nil\n}\n\nfunc (s *Service) ArchiveWatch(req *pb.ArchiveWatchRequest, server pb.APIService_ArchiveWatchServer) error {\n\tlog.Debug(\"received archive watch\")\n\n\tif !s.Buckets.IsArchivingEnabled() {\n\t\treturn ErrArchivingFeatureDisabled\n\t}\n\n\taccount, _ := mdb.AccountFromContext(server.Context())\n\tif account.Owner().PowInfo == nil {\n\t\treturn fmt.Errorf(\"no powergate info associated with account\")\n\t}\n\n\tvar err error\n\tctx, cancel := context.WithCancel(server.Context())\n\tdefer cancel()\n\tch := make(chan string)\n\tgo func() {\n\t\terr = s.Buckets.ArchiveWatch(ctx, req.Key, account.Owner().PowInfo.Token, ch)\n\t\tclose(ch)\n\t}()\n\tfor s := range ch {\n\t\tif err := server.Send(&pb.ArchiveWatchResponse{Msg: s}); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif err != nil {\n\t\treturn fmt.Errorf(\"watching cid logs: %v\", err)\n\t}\n\treturn nil\n}\n\nfunc toPbArchiveConfig(config *mdb.ArchiveConfig) *pb.ArchiveConfig {\n\tvar pbConfig *pb.ArchiveConfig\n\tif config != nil {\n\t\tpbConfig = &pb.ArchiveConfig{\n\t\t\tRepFactor:       int32(config.RepFactor),\n\t\t\tDealMinDuration: config.DealMinDuration,\n\t\t\tExcludedMiners:  config.ExcludedMiners,\n\t\t\tTrustedMiners:   config.TrustedMiners,\n\t\t\tCountryCodes:    config.CountryCodes,\n\t\t\tRenew: &pb.ArchiveRenew{\n\t\t\t\tEnabled:   config.Renew.Enabled,\n\t\t\t\tThreshold: int32(config.Renew.Threshold),\n\t\t\t},\n\t\t\tMaxPrice:        config.MaxPrice,\n\t\t\tFastRetrieval:   config.FastRetrieval,\n\t\t\tDealStartOffset: config.DealStartOffset,\n\t\t\tVerifiedDeal:    config.VerifiedDeal,\n\t\t}\n\t}\n\treturn pbConfig\n}\n\nfunc fromPbArchiveConfig(pbConfig *pb.ArchiveConfig) *mdb.ArchiveConfig {\n\tvar config *mdb.ArchiveConfig\n\tif pbConfig != nil {\n\t\tconfig = &mdb.ArchiveConfig{\n\t\t\tRepFactor:       int(pbConfig.RepFactor),\n\t\t\tDealMinDuration: pbConfig.DealMinDuration,\n\t\t\tExcludedMiners:  pbConfig.ExcludedMiners,\n\t\t\tTrustedMiners:   pbConfig.TrustedMiners,\n\t\t\tCountryCodes:    pbConfig.CountryCodes,\n\t\t\tMaxPrice:        pbConfig.MaxPrice,\n\t\t\tFastRetrieval:   pbConfig.FastRetrieval,\n\t\t\tDealStartOffset: pbConfig.DealStartOffset,\n\t\t\tVerifiedDeal:    pbConfig.VerifiedDeal,\n\t\t}\n\t\tif pbConfig.Renew != nil {\n\t\t\tconfig.Renew = mdb.ArchiveRenew{\n\t\t\t\tEnabled:   pbConfig.Renew.Enabled,\n\t\t\t\tThreshold: int(pbConfig.Renew.Threshold),\n\t\t\t}\n\t\t}\n\t}\n\treturn config\n}\n\nfunc toFilConfig(config *mdb.ArchiveConfig) *userPb.FilConfig {\n\tif config == nil {\n\t\treturn nil\n\t}\n\treturn &userPb.FilConfig{\n\t\tReplicationFactor: int64(config.RepFactor),\n\t\tCountryCodes:      config.CountryCodes,\n\t\tDealMinDuration:   config.DealMinDuration,\n\t\tDealStartOffset:   config.DealStartOffset,\n\t\tExcludedMiners:    config.ExcludedMiners,\n\t\tFastRetrieval:     config.FastRetrieval,\n\t\tMaxPrice:          config.MaxPrice,\n\t\tRenew: &userPb.FilRenew{\n\t\t\tEnabled:   config.Renew.Enabled,\n\t\t\tThreshold: int64(config.Renew.Threshold),\n\t\t},\n\t\tTrustedMiners: config.TrustedMiners,\n\t\tVerifiedDeal:  config.VerifiedDeal,\n\t}\n}\n\nfunc (s *Service) validateArchiveConfig(c *mdb.ArchiveConfig) error {\n\tif c.RepFactor > s.MaxBucketArchiveRepFactor {\n\t\treturn fmt.Errorf(\n\t\t\t\"rep factor %d is greater than max allowed of %d\",\n\t\t\tc.RepFactor,\n\t\t\ts.MaxBucketArchiveRepFactor,\n\t\t)\n\t}\n\tif c.DealMinDuration < powUtil.MinDealDuration {\n\t\treturn fmt.Errorf(\n\t\t\t\"min deal duration %d is less than the allowed minimum of %d\",\n\t\t\tc.DealMinDuration,\n\t\t\tpowUtil.MinDealDuration,\n\t\t)\n\t}\n\tif c.DealStartOffset <= 0 {\n\t\treturn fmt.Errorf(\n\t\t\t\"deal start offset of %d is less than required minimum of 1, and really should be higher than 1\",\n\t\t\tc.DealStartOffset,\n\t\t)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "api/common/common.go",
    "content": "package common\n\nimport (\n\t\"context\"\n\t\"crypto/hmac\"\n\t\"crypto/sha256\"\n\t\"time\"\n\n\t\"github.com/grpc-ecosystem/go-grpc-middleware/util/metautils\"\n\tmbase \"github.com/multiformats/go-multibase\"\n\t\"github.com/textileio/go-threads/core/thread\"\n)\n\ntype ctxKey string\n\n// NewSessionContext adds a session to a context.\nfunc NewSessionContext(ctx context.Context, session string) context.Context {\n\tif session == \"\" {\n\t\treturn ctx\n\t}\n\treturn context.WithValue(ctx, ctxKey(\"session\"), session)\n}\n\n// SessionFromContext returns a session from a context.\nfunc SessionFromContext(ctx context.Context) (string, bool) {\n\tsession, ok := ctx.Value(ctxKey(\"session\")).(string)\n\treturn session, ok\n}\n\n// SessionFromMD returns a session from context metadata.\nfunc SessionFromMD(ctx context.Context) (session string, ok bool) {\n\tsession = metautils.ExtractIncoming(ctx).Get(\"x-textile-session\")\n\tif session != \"\" {\n\t\tok = true\n\t}\n\treturn\n}\n\n// NewOrgSlugContext adds an org name to a context.\nfunc NewOrgSlugContext(ctx context.Context, slug string) context.Context {\n\tif slug == \"\" {\n\t\treturn ctx\n\t}\n\treturn context.WithValue(ctx, ctxKey(\"orgSlug\"), slug)\n}\n\n// OrgSlugFromContext returns an org name from a context.\nfunc OrgSlugFromContext(ctx context.Context) (string, bool) {\n\tname, ok := ctx.Value(ctxKey(\"orgSlug\")).(string)\n\treturn name, ok\n}\n\n// OrgSlugFromMD returns an org name from context metadata.\nfunc OrgSlugFromMD(ctx context.Context) (slug string, ok bool) {\n\tslug = metautils.ExtractIncoming(ctx).Get(\"x-textile-org\")\n\tif slug != \"\" {\n\t\tok = true\n\t}\n\treturn\n}\n\n// NewAPIKeyContext adds an API key to a context.\nfunc NewAPIKeyContext(ctx context.Context, key string) context.Context {\n\tif key == \"\" {\n\t\treturn ctx\n\t}\n\treturn context.WithValue(ctx, ctxKey(\"apiKey\"), key)\n}\n\n// APIKeyFromContext returns an API key from a context.\nfunc APIKeyFromContext(ctx context.Context) (string, bool) {\n\tkey, ok := ctx.Value(ctxKey(\"apiKey\")).(string)\n\treturn key, ok\n}\n\n// APIKeyFromMD returns an API key from context metadata.\nfunc APIKeyFromMD(ctx context.Context) (key string, ok bool) {\n\tkey = metautils.ExtractIncoming(ctx).Get(\"x-textile-api-key\")\n\tif key != \"\" {\n\t\tok = true\n\t}\n\treturn\n}\n\n// CreateAPISigContext creates an HMAC signature and adds it to a context,\n// with secret as the key and SHA256 as the hash algorithm.\n// An RFC 3339 date string is used as the message.\n// Date must be sometime in the future. Dates closer to now are more secure.\nfunc CreateAPISigContext(ctx context.Context, date time.Time, secret string) (context.Context, error) {\n\t_, sec, err := mbase.Decode(secret)\n\tif err != nil {\n\t\treturn ctx, err\n\t}\n\thash := hmac.New(sha256.New, sec)\n\tmsg := date.Format(time.RFC3339)\n\t_, err = hash.Write([]byte(msg))\n\tif err != nil {\n\t\treturn ctx, err\n\t}\n\tctx = context.WithValue(ctx, ctxKey(\"apiSigMsg\"), msg)\n\tctx = context.WithValue(ctx, ctxKey(\"apiSig\"), hash.Sum(nil))\n\treturn ctx, nil\n}\n\n// NewAPISigContext adds an API key signature to a context.\nfunc NewAPISigContext(ctx context.Context, msg string, sig []byte) context.Context {\n\tif sig == nil {\n\t\treturn ctx\n\t}\n\tctx = context.WithValue(ctx, ctxKey(\"apiSigMsg\"), msg)\n\tctx = context.WithValue(ctx, ctxKey(\"apiSig\"), sig)\n\treturn ctx\n}\n\n// APISigFromContext returns a message and signature from a context.\nfunc APISigFromContext(ctx context.Context) (msg string, sig []byte, ok bool) {\n\tsig, ok = ctx.Value(ctxKey(\"apiSig\")).([]byte)\n\tif !ok {\n\t\treturn\n\t}\n\tmsg, ok = ctx.Value(ctxKey(\"apiSigMsg\")).(string)\n\tif !ok {\n\t\treturn\n\t}\n\treturn msg, sig, ok\n}\n\n// APISigFromMD returns a message and signature from context metadata.\nfunc APISigFromMD(ctx context.Context) (msg string, sig []byte, ok bool) {\n\tstr := metautils.ExtractIncoming(ctx).Get(\"x-textile-api-sig\")\n\tif str == \"\" {\n\t\treturn\n\t}\n\tvar err error\n\t_, sig, err = mbase.Decode(str)\n\tif err != nil {\n\t\treturn\n\t}\n\tmsg = metautils.ExtractIncoming(ctx).Get(\"x-textile-api-sig-msg\")\n\tif msg == \"\" {\n\t\treturn\n\t}\n\treturn msg, sig, true\n}\n\n// ValidateAPISigContext re-computes the hash from a context using secret as key.\n// This method returns true only if the hashes are equal and the message is a\n// valid RFC 3339 date string sometime in the future.\nfunc ValidateAPISigContext(ctx context.Context, secret string) bool {\n\tmsg, sig, ok := APISigFromContext(ctx)\n\tif !ok {\n\t\treturn false\n\t}\n\t_, sec, err := mbase.Decode(secret)\n\tif err != nil {\n\t\treturn false\n\t}\n\tdate, err := time.Parse(time.RFC3339, msg)\n\tif err != nil {\n\t\treturn false\n\t}\n\tif date.Before(time.Now()) {\n\t\treturn false\n\t}\n\thash := hmac.New(sha256.New, sec)\n\t_, err = hash.Write([]byte(msg))\n\tif err != nil {\n\t\treturn false\n\t}\n\treturn hmac.Equal(sig, hash.Sum(nil))\n}\n\n// NewThreadIDContext adds a thread ID to a context.\nfunc NewThreadIDContext(ctx context.Context, id thread.ID) context.Context {\n\tif !id.Defined() {\n\t\treturn ctx\n\t}\n\treturn context.WithValue(ctx, ctxKey(\"threadID\"), id)\n}\n\n// ThreadIDFromContext returns a thread ID from a context.\nfunc ThreadIDFromContext(ctx context.Context) (thread.ID, bool) {\n\tid, ok := ctx.Value(ctxKey(\"threadID\")).(thread.ID)\n\treturn id, ok\n}\n\n// ThreadIDFromMD returns a thread ID from context metadata.\nfunc ThreadIDFromMD(ctx context.Context) (id thread.ID, ok bool) {\n\tstr := metautils.ExtractIncoming(ctx).Get(\"x-textile-thread\")\n\tif str == \"\" {\n\t\treturn\n\t}\n\tvar err error\n\tid, err = thread.Decode(str)\n\tif err != nil {\n\t\treturn id, false\n\t}\n\treturn id, true\n}\n\n// NewThreadNameContext adds a thread name to a context,\n// which is used to name threads and dbs during creation.\n// Thread names may be useful for some app logic, but are not required.\nfunc NewThreadNameContext(ctx context.Context, name string) context.Context {\n\tif name == \"\" {\n\t\treturn ctx\n\t}\n\treturn context.WithValue(ctx, ctxKey(\"threadName\"), name)\n}\n\n// ThreadNameFromContext returns a thread name from a context.\nfunc ThreadNameFromContext(ctx context.Context) (string, bool) {\n\tname, ok := ctx.Value(ctxKey(\"threadName\")).(string)\n\treturn name, ok\n}\n\n// ThreadNameFromMD returns a thread name from context metadata.\nfunc ThreadNameFromMD(ctx context.Context) (name string, ok bool) {\n\tname = metautils.ExtractIncoming(ctx).Get(\"x-textile-thread-name\")\n\tif name != \"\" {\n\t\tok = true\n\t}\n\treturn\n}\n\n// Credentials implements grpc.PerRPCCredentials.\ntype Credentials struct {\n\tSecure bool\n}\n\nfunc (c Credentials) GetRequestMetadata(ctx context.Context, _ ...string) (map[string]string, error) {\n\tmd := map[string]string{}\n\tsession, ok := SessionFromContext(ctx)\n\tif ok {\n\t\tmd[\"x-textile-session\"] = session\n\t}\n\torgSlug, ok := OrgSlugFromContext(ctx)\n\tif ok {\n\t\tmd[\"x-textile-org\"] = orgSlug\n\t}\n\tapiKey, ok := APIKeyFromContext(ctx)\n\tif ok {\n\t\tmd[\"x-textile-api-key\"] = apiKey\n\t}\n\tapiSigMsg, apiSig, ok := APISigFromContext(ctx)\n\tif ok {\n\t\tvar err error\n\t\tmd[\"x-textile-api-sig\"], err = mbase.Encode(mbase.Base32, apiSig)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tmd[\"x-textile-api-sig-msg\"] = apiSigMsg\n\t}\n\tthreadID, ok := ThreadIDFromContext(ctx)\n\tif ok {\n\t\tmd[\"x-textile-thread\"] = threadID.String()\n\t}\n\tthreadName, ok := ThreadNameFromContext(ctx)\n\tif ok {\n\t\tmd[\"x-textile-thread-name\"] = threadName\n\t}\n\tthreadToken, ok := thread.TokenFromContext(ctx)\n\tif ok {\n\t\tmd[\"authorization\"] = \"bearer \" + string(threadToken)\n\t}\n\treturn md, nil\n}\n\nfunc (c Credentials) RequireTransportSecurity() bool {\n\treturn c.Secure\n}\n"
  },
  {
    "path": "api/filecoin/client/client.go",
    "content": "package client\n\nimport (\n\t\"context\"\n\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"google.golang.org/grpc\"\n)\n\n// Client provides the client api.\ntype Client struct {\n\tpowC userPb.UserServiceClient\n\tconn *grpc.ClientConn\n}\n\n// NewClient starts the client.\nfunc NewClient(target string, opts ...grpc.DialOption) (*Client, error) {\n\tconn, err := grpc.Dial(target, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Client{\n\t\tpowC: userPb.NewUserServiceClient(conn),\n\t\tconn: conn,\n\t}, nil\n}\n\nfunc (c *Client) Addresses(ctx context.Context) (*userPb.AddressesResponse, error) {\n\treturn c.powC.Addresses(ctx, &userPb.AddressesRequest{})\n}\n\nfunc (c *Client) Balance(ctx context.Context, addr string) (*userPb.BalanceResponse, error) {\n\treq := &userPb.BalanceRequest{\n\t\tAddress: addr,\n\t}\n\treturn c.powC.Balance(ctx, req)\n}\n\nfunc (c *Client) SignMessage(ctx context.Context, address string, message []byte) (*userPb.SignMessageResponse, error) {\n\treq := &userPb.SignMessageRequest{\n\t\tAddress: address,\n\t\tMessage: message,\n\t}\n\treturn c.powC.SignMessage(ctx, req)\n}\n\nfunc (c *Client) VerifyMessage(ctx context.Context, address string, message, signature []byte) (*userPb.VerifyMessageResponse, error) {\n\tr := &userPb.VerifyMessageRequest{Address: address, Message: message, Signature: signature}\n\treturn c.powC.VerifyMessage(ctx, r)\n}\n\nfunc (c *Client) CidInfo(ctx context.Context, cid string) (*userPb.CidInfoResponse, error) {\n\treq := &userPb.CidInfoRequest{Cid: cid}\n\treturn c.powC.CidInfo(ctx, req)\n}\n\nfunc (c *Client) StorageDealRecords(ctx context.Context, config *userPb.DealRecordsConfig) (*userPb.StorageDealRecordsResponse, error) {\n\treq := &userPb.StorageDealRecordsRequest{\n\t\tConfig: config,\n\t}\n\treturn c.powC.StorageDealRecords(ctx, req)\n}\n\nfunc (c *Client) RetrievalDealRecords(ctx context.Context, config *userPb.DealRecordsConfig) (*userPb.RetrievalDealRecordsResponse, error) {\n\treq := &userPb.RetrievalDealRecordsRequest{\n\t\tConfig: config,\n\t}\n\treturn c.powC.RetrievalDealRecords(ctx, req)\n}\n\n// Close closes the client's grpc connection and cancels any active requests.\nfunc (c *Client) Close() error {\n\treturn c.conn.Close()\n}\n"
  },
  {
    "path": "api/hubd/client/client.go",
    "content": "package client\n\nimport (\n\t\"context\"\n\n\tpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"google.golang.org/grpc\"\n)\n\n// Client provides the client api.\ntype Client struct {\n\tc    pb.APIServiceClient\n\tconn *grpc.ClientConn\n}\n\n// NewClient starts the client.\nfunc NewClient(target string, opts ...grpc.DialOption) (*Client, error) {\n\tconn, err := grpc.Dial(target, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Client{\n\t\tc:    pb.NewAPIServiceClient(conn),\n\t\tconn: conn,\n\t}, nil\n}\n\n// Close closes the client's grpc connection and cancels any active requests.\nfunc (c *Client) Close() error {\n\treturn c.conn.Close()\n}\n\n// BuildInfo provides API build information.\nfunc (c *Client) BuildInfo(ctx context.Context) (*pb.BuildInfoResponse, error) {\n\treturn c.c.BuildInfo(ctx, &pb.BuildInfoRequest{})\n}\n\n// Signup creates a new user and returns a session.\n// This method will block and wait for email-based verification.\nfunc (c *Client) Signup(ctx context.Context, username, email string) (*pb.SignupResponse, error) {\n\treturn c.c.Signup(ctx, &pb.SignupRequest{\n\t\tUsername: username,\n\t\tEmail:    email,\n\t})\n}\n\n// Signin returns a session for an existing username or email.\n// This method will block and wait for email-based verification.\nfunc (c *Client) Signin(ctx context.Context, usernameOrEmail string) (*pb.SigninResponse, error) {\n\treturn c.c.Signin(ctx, &pb.SigninRequest{\n\t\tUsernameOrEmail: usernameOrEmail,\n\t})\n}\n\n// Signout deletes a session.\nfunc (c *Client) Signout(ctx context.Context) error {\n\t_, err := c.c.Signout(ctx, &pb.SignoutRequest{})\n\treturn err\n}\n\n// GetSessionInfo returns session info.\nfunc (c *Client) GetSessionInfo(ctx context.Context) (*pb.GetSessionInfoResponse, error) {\n\treturn c.c.GetSessionInfo(ctx, &pb.GetSessionInfoRequest{})\n}\n\n// GetIdentity returns the identity of the current session.\nfunc (c *Client) GetIdentity(ctx context.Context) (*pb.GetIdentityResponse, error) {\n\treturn c.c.GetIdentity(ctx, &pb.GetIdentityRequest{})\n}\n\n// CreateKey creates a new key for the current session.\nfunc (c *Client) CreateKey(ctx context.Context, keyType pb.KeyType, secure bool) (*pb.CreateKeyResponse, error) {\n\treturn c.c.CreateKey(ctx, &pb.CreateKeyRequest{\n\t\tType:   keyType,\n\t\tSecure: secure,\n\t})\n}\n\n// InvalidateKey marks a key as invalid.\n// New threads cannot be created with an invalid key.\nfunc (c *Client) InvalidateKey(ctx context.Context, key string) error {\n\t_, err := c.c.InvalidateKey(ctx, &pb.InvalidateKeyRequest{Key: key})\n\treturn err\n}\n\n// ListKeys returns a list of keys for the current session.\nfunc (c *Client) ListKeys(ctx context.Context) (*pb.ListKeysResponse, error) {\n\treturn c.c.ListKeys(ctx, &pb.ListKeysRequest{})\n}\n\n// CreateOrg creates a new org by name.\nfunc (c *Client) CreateOrg(ctx context.Context, name string) (*pb.CreateOrgResponse, error) {\n\treturn c.c.CreateOrg(ctx, &pb.CreateOrgRequest{Name: name})\n}\n\n// GetOrg returns an org.\nfunc (c *Client) GetOrg(ctx context.Context) (*pb.GetOrgResponse, error) {\n\treturn c.c.GetOrg(ctx, &pb.GetOrgRequest{})\n}\n\n// ListOrgs returns a list of orgs for the current session.\nfunc (c *Client) ListOrgs(ctx context.Context) (*pb.ListOrgsResponse, error) {\n\treturn c.c.ListOrgs(ctx, &pb.ListOrgsRequest{})\n}\n\n// RemoveOrg removes an org.\nfunc (c *Client) RemoveOrg(ctx context.Context) error {\n\t_, err := c.c.RemoveOrg(ctx, &pb.RemoveOrgRequest{})\n\treturn err\n}\n\n// InviteToOrg invites the given email to an org.\nfunc (c *Client) InviteToOrg(ctx context.Context, email string) (*pb.InviteToOrgResponse, error) {\n\treturn c.c.InviteToOrg(ctx, &pb.InviteToOrgRequest{\n\t\tEmail: email,\n\t})\n}\n\n// LeaveOrg removes the current session dev from an org.\nfunc (c *Client) LeaveOrg(ctx context.Context) error {\n\t_, err := c.c.LeaveOrg(ctx, &pb.LeaveOrgRequest{})\n\treturn err\n}\n\n// SetupBilling (re-)enables billing for an account, enabling\n// usage beyond the free quotas.\nfunc (c *Client) SetupBilling(ctx context.Context) error {\n\t_, err := c.c.SetupBilling(ctx, &pb.SetupBillingRequest{})\n\treturn err\n}\n\n// GetBillingSession returns a billing portal session url.\nfunc (c *Client) GetBillingSession(ctx context.Context) (*pb.GetBillingSessionResponse, error) {\n\treturn c.c.GetBillingSession(ctx, &pb.GetBillingSessionRequest{})\n}\n\n// ListBillingUsers returns a list of users the account is responsible for.\nfunc (c *Client) ListBillingUsers(ctx context.Context, opts ...ListOption) (\n\t*pb.ListBillingUsersResponse, error) {\n\targs := &listOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\treturn c.c.ListBillingUsers(ctx, &pb.ListBillingUsersRequest{\n\t\tOffset: args.offset,\n\t\tLimit:  args.limit,\n\t})\n}\n\n// IsUsernameAvailable returns a nil error if the username is valid and available.\nfunc (c *Client) IsUsernameAvailable(ctx context.Context, username string) error {\n\t_, err := c.c.IsUsernameAvailable(ctx, &pb.IsUsernameAvailableRequest{\n\t\tUsername: username,\n\t})\n\treturn err\n}\n\n// IsOrgNameAvailable returns a nil error if the name is valid and available.\nfunc (c *Client) IsOrgNameAvailable(ctx context.Context, name string) (*pb.IsOrgNameAvailableResponse, error) {\n\treturn c.c.IsOrgNameAvailable(ctx, &pb.IsOrgNameAvailableRequest{\n\t\tName: name,\n\t})\n}\n\n// DestroyAccount completely deletes an account and all associated data.\nfunc (c *Client) DestroyAccount(ctx context.Context) error {\n\t_, err := c.c.DestroyAccount(ctx, &pb.DestroyAccountRequest{})\n\treturn err\n}\n"
  },
  {
    "path": "api/hubd/client/client_test.go",
    "content": "package client_test\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"net/http\"\n\t\"os\"\n\t\"strings\"\n\t\"sync\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\ttc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\tc \"github.com/textileio/textile/v2/api/hubd/client\"\n\tpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"google.golang.org/grpc\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = apitest.StartServices()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc TestClient_Signup(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tassert.NotEmpty(t, user.Key)\n\tassert.NotEmpty(t, user.Session)\n}\n\nfunc TestClient_Signin(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tusername := apitest.NewUsername()\n\temail := apitest.NewEmail()\n\tuser := apitest.Signup(t, client, conf, username, email)\n\terr := client.Signout(common.NewSessionContext(context.Background(), user.Session))\n\trequire.NoError(t, err)\n\n\tres := apitest.Signin(t, client, conf, username)\n\tassert.NotEmpty(t, res.Key)\n\tassert.NotEmpty(t, res.Session)\n\n\terr = client.Signout(common.NewSessionContext(context.Background(), res.Session))\n\trequire.NoError(t, err)\n\n\tres = apitest.Signin(t, client, conf, email)\n\tassert.NotEmpty(t, res.Key)\n\tassert.NotEmpty(t, res.Session)\n}\n\nfunc TestClient_Signout(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\terr := client.Signout(ctx)\n\t\trequire.Error(t, err)\n\t})\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\terr := client.Signout(common.NewSessionContext(ctx, user.Session))\n\t\trequire.NoError(t, err)\n\t})\n}\n\nfunc TestClient_GetSessionInfo(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\t_, err := client.GetSessionInfo(ctx)\n\t\trequire.Error(t, err)\n\t})\n\n\tusername := apitest.NewUsername()\n\temail := apitest.NewEmail()\n\tuser := apitest.Signup(t, client, conf, username, email)\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\tres, err := client.GetSessionInfo(common.NewSessionContext(ctx, user.Session))\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, user.Key, res.Key)\n\t\tassert.Equal(t, username, res.Username)\n\t\tassert.Equal(t, email, res.Email)\n\t})\n}\n\nfunc TestClient_GetIdentity(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\t_, err := client.GetIdentity(ctx)\n\t\trequire.Error(t, err)\n\t})\n\n\tusername := apitest.NewUsername()\n\temail := apitest.NewEmail()\n\tuser := apitest.Signup(t, client, conf, username, email)\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\tres, err := client.GetIdentity(common.NewSessionContext(ctx, user.Session))\n\t\trequire.NoError(t, err)\n\t\tid := &thread.Libp2pIdentity{}\n\t\terr = id.UnmarshalBinary(res.Identity)\n\t\trequire.NoError(t, err)\n\t\tkey := &thread.Libp2pPubKey{}\n\t\terr = key.UnmarshalBinary(user.Key)\n\t\trequire.NoError(t, err)\n\t\tassert.True(t, id.GetPublic().Equals(key))\n\t})\n}\n\nfunc TestClient_CreateKey(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\t_, err := client.CreateKey(ctx, pb.KeyType_KEY_TYPE_ACCOUNT, true)\n\t\trequire.Error(t, err)\n\t})\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\tres, err := client.CreateKey(common.NewSessionContext(ctx, user.Session), pb.KeyType_KEY_TYPE_ACCOUNT, true)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, res.KeyInfo.Key)\n\t\tassert.NotEmpty(t, res.KeyInfo.Secret)\n\t\tassert.Equal(t, pb.KeyType_KEY_TYPE_ACCOUNT, res.KeyInfo.Type)\n\t\tassert.True(t, res.KeyInfo.Secure)\n\t})\n}\n\nfunc TestClient_InvalidateKey(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := client.CreateKey(common.NewSessionContext(ctx, user.Session), pb.KeyType_KEY_TYPE_ACCOUNT, true)\n\trequire.NoError(t, err)\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\terr := client.InvalidateKey(ctx, res.KeyInfo.Key)\n\t\trequire.Error(t, err)\n\t})\n\n\tctx = common.NewSessionContext(ctx, user.Session)\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\terr := client.InvalidateKey(ctx, res.KeyInfo.Key)\n\t\trequire.NoError(t, err)\n\t\tkeys, err := client.ListKeys(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, 1, len(keys.List))\n\t\trequire.False(t, keys.List[0].Valid)\n\t})\n}\n\nfunc TestClient_ListKeys(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\n\tt.Run(\"empty\", func(t *testing.T) {\n\t\tkeys, err := client.ListKeys(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Empty(t, keys.List)\n\t})\n\n\t_, err := client.CreateKey(ctx, pb.KeyType_KEY_TYPE_ACCOUNT, true)\n\trequire.NoError(t, err)\n\t_, err = client.CreateKey(ctx, pb.KeyType_KEY_TYPE_USER, true)\n\trequire.NoError(t, err)\n\n\tt.Run(\"not empty\", func(t *testing.T) {\n\t\tkeys, err := client.ListKeys(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 2, len(keys.List))\n\t})\n}\n\nfunc TestClient_CreateOrg(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tname := apitest.NewUsername()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\t_, err := client.CreateOrg(ctx, name)\n\t\trequire.Error(t, err)\n\t})\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\tres, err := client.CreateOrg(common.NewSessionContext(ctx, user.Session), name)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, res.OrgInfo.Key)\n\t\tassert.Equal(t, name, res.OrgInfo.Name)\n\t})\n}\n\nfunc TestClient_GetOrg(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tname := apitest.NewUsername()\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tres, err := client.CreateOrg(ctx, name)\n\trequire.NoError(t, err)\n\n\tt.Run(\"bad org\", func(t *testing.T) {\n\t\t_, err := client.GetOrg(common.NewOrgSlugContext(ctx, \"bad\"))\n\t\trequire.Error(t, err)\n\t})\n\n\tt.Run(\"good org\", func(t *testing.T) {\n\t\tgot, err := client.GetOrg(common.NewOrgSlugContext(ctx, res.OrgInfo.Name))\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, res.OrgInfo.Key, got.OrgInfo.Key)\n\t})\n}\n\nfunc TestClient_ListOrgs(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\n\tt.Run(\"empty\", func(t *testing.T) {\n\t\torgs, err := client.ListOrgs(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Empty(t, orgs.List)\n\t})\n\n\t_, err := client.CreateOrg(ctx, \"My Org 1\")\n\trequire.NoError(t, err)\n\t_, err = client.CreateOrg(ctx, \"My Org 2\")\n\trequire.NoError(t, err)\n\n\tt.Run(\"not empty\", func(t *testing.T) {\n\t\torgs, err := client.ListOrgs(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 2, len(orgs.List))\n\t})\n}\n\nfunc TestClient_RemoveOrg(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tname := apitest.NewUsername()\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tres, err := client.CreateOrg(ctx, name)\n\trequire.NoError(t, err)\n\n\tt.Run(\"bad org\", func(t *testing.T) {\n\t\terr := client.RemoveOrg(common.NewOrgSlugContext(ctx, \"bad\"))\n\t\trequire.Error(t, err)\n\t})\n\n\tuser2 := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx2 := common.NewSessionContext(context.Background(), user2.Session)\n\n\tt.Run(\"bad session\", func(t *testing.T) {\n\t\terr := client.RemoveOrg(common.NewOrgSlugContext(ctx2, res.OrgInfo.Name))\n\t\trequire.Error(t, err)\n\t})\n\n\tt.Run(\"good org\", func(t *testing.T) {\n\t\toctx := common.NewOrgSlugContext(ctx, res.OrgInfo.Name)\n\t\terr := client.RemoveOrg(octx)\n\t\trequire.NoError(t, err)\n\t\t_, err = client.GetOrg(octx)\n\t\trequire.Error(t, err)\n\t})\n}\n\nfunc TestClient_InviteToOrg(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tname := apitest.NewUsername()\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tres, err := client.CreateOrg(ctx, name)\n\trequire.NoError(t, err)\n\tctx = common.NewOrgSlugContext(ctx, res.OrgInfo.Name)\n\n\tt.Run(\"bad email\", func(t *testing.T) {\n\t\t_, err := client.InviteToOrg(ctx, \"jane\")\n\t\trequire.Error(t, err)\n\t})\n\n\tt.Run(\"good email\", func(t *testing.T) {\n\t\tres, err := client.InviteToOrg(ctx, apitest.NewEmail())\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, res.Token)\n\t})\n}\n\nfunc TestClient_LeaveOrg(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tname := apitest.NewUsername()\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tres, err := client.CreateOrg(ctx, name)\n\trequire.NoError(t, err)\n\tctx = common.NewOrgSlugContext(ctx, res.OrgInfo.Name)\n\n\tt.Run(\"as owner\", func(t *testing.T) {\n\t\terr := client.LeaveOrg(ctx)\n\t\trequire.Error(t, err)\n\t})\n\n\tuser2Email := apitest.NewEmail()\n\tuser2 := apitest.Signup(t, client, conf, apitest.NewUsername(), user2Email)\n\tctx2 := common.NewSessionContext(ctx, user2.Session)\n\n\tt.Run(\"as non-member\", func(t *testing.T) {\n\t\terr := client.LeaveOrg(ctx2)\n\t\trequire.Error(t, err)\n\t})\n\n\tinvite, err := client.InviteToOrg(ctx, user2Email)\n\trequire.NoError(t, err)\n\t_, err = http.Get(fmt.Sprintf(\"%s/consent/%s\", conf.AddrGatewayURL, invite.Token))\n\trequire.NoError(t, err)\n\n\tt.Run(\"as member\", func(t *testing.T) {\n\t\terr := client.LeaveOrg(ctx2)\n\t\trequire.NoError(t, err)\n\t})\n}\n\nfunc TestClient_SetupBilling(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setupWithBilling(t)\n\tctx := context.Background()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\terr := client.SetupBilling(ctx)\n\t\trequire.Error(t, err)\n\t})\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\terr := client.SetupBilling(common.NewSessionContext(ctx, user.Session))\n\t\trequire.Error(t, err)\n\t\tassert.True(t, strings.Contains(err.Error(), \"subscription exists\"))\n\t\t// Note: There's no way API for canceling the subscription since users\n\t\t// will do that via the Stripe customer portal. So, for now we're not able\n\t\t// to have a test for re-enabling billing after they cancel.\n\t})\n}\n\nfunc TestClient_GetBillingSession(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setupWithBilling(t)\n\tctx := context.Background()\n\n\tt.Run(\"without session\", func(t *testing.T) {\n\t\t_, err := client.GetBillingSession(ctx)\n\t\trequire.Error(t, err)\n\t})\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"with session\", func(t *testing.T) {\n\t\tres, err := client.GetBillingSession(common.NewSessionContext(ctx, user.Session))\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, res.Url)\n\t})\n}\n\nfunc TestClient_IsUsernameAvailable(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tusername := apitest.NewUsername()\n\terr := client.IsUsernameAvailable(context.Background(), username)\n\trequire.NoError(t, err)\n\n\tapitest.Signup(t, client, conf, username, apitest.NewEmail())\n\n\terr = client.IsUsernameAvailable(context.Background(), username)\n\trequire.Error(t, err)\n}\n\nfunc TestClient_IsOrgNameAvailable(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tuser := apitest.Signup(t, client, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\n\tname := \"My awesome org!\"\n\tres, err := client.IsOrgNameAvailable(ctx, name)\n\trequire.NoError(t, err)\n\trequire.Equal(t, \"My-awesome-org\", res.Slug)\n\n\tres2, err := client.CreateOrg(ctx, name)\n\trequire.NoError(t, err)\n\trequire.Equal(t, res.Slug, res2.OrgInfo.Slug)\n\n\t_, err = client.IsOrgNameAvailable(ctx, name)\n\trequire.Error(t, err)\n}\n\nfunc TestClient_DestroyAccount(t *testing.T) {\n\tt.Parallel()\n\tconf, client, _ := setup(t, nil)\n\n\tusername := apitest.NewUsername()\n\tuser := apitest.Signup(t, client, conf, username, apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\n\terr := client.DestroyAccount(ctx)\n\trequire.NoError(t, err)\n\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\t_, err = client.Signin(context.Background(), username)\n\t}()\n\tapitest.ConfirmEmail(t, conf.AddrGatewayURL, apitest.SessionSecret)\n\twg.Wait()\n\trequire.Error(t, err)\n}\n\nfunc TestClose(t *testing.T) {\n\tt.Parallel()\n\tconf := apitest.MakeTextile(t)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\tclient, err := c.NewClient(target, grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{}))\n\trequire.NoError(t, err)\n\n\terr = client.Close()\n\trequire.NoError(t, err)\n}\n\nfunc setup(t *testing.T, conf *core.Config) (core.Config, *c.Client, *tc.Client) {\n\tif conf == nil {\n\t\ttmp := apitest.DefaultTextileConfig(t)\n\t\tconf = &tmp\n\t}\n\tapitest.MakeTextileWithConfig(t, *conf)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\tclient, err := c.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsclient, err := tc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\n\tt.Cleanup(func() {\n\t\terr := client.Close()\n\t\trequire.NoError(t, err)\n\t\terr = threadsclient.Close()\n\t\trequire.NoError(t, err)\n\t})\n\treturn *conf, client, threadsclient\n}\n\nfunc setupWithBilling(t *testing.T) (core.Config, *c.Client, *tc.Client) {\n\tbconf := apitest.DefaultBillingConfig(t)\n\tapitest.MakeBillingWithConfig(t, bconf)\n\n\tconf := apitest.DefaultTextileConfig(t)\n\tbillingApi, err := tutil.TCPAddrFromMultiAddr(bconf.ListenAddr)\n\trequire.NoError(t, err)\n\tconf.AddrBillingAPI = billingApi\n\treturn setup(t, &conf)\n}\n"
  },
  {
    "path": "api/hubd/client/options.go",
    "content": "package client\n\ntype listOptions struct {\n\toffset int64\n\tlimit  int64\n}\n\ntype ListOption func(*listOptions)\n\n// WithOffset is used to fetch the next page when paginating.\nfunc WithOffset(offset int64) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.offset = offset\n\t}\n}\n\n// WithLimit is used to set a page size when paginating.\nfunc WithLimit(limit int64) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.limit = limit\n\t}\n}\n"
  },
  {
    "path": "api/hubd/pb/hubd.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.23.0\n// \tprotoc        v3.13.0\n// source: api/hubd/pb/hubd.proto\n\npackage pb\n\nimport (\n\tcontext \"context\"\n\tproto \"github.com/golang/protobuf/proto\"\n\tpb \"github.com/textileio/textile/v2/api/billingd/pb\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\n// This is a compile-time assertion that a sufficiently up-to-date version\n// of the legacy proto package is being used.\nconst _ = proto.ProtoPackageIsVersion4\n\ntype KeyType int32\n\nconst (\n\tKeyType_KEY_TYPE_UNSPECIFIED KeyType = 0\n\tKeyType_KEY_TYPE_ACCOUNT     KeyType = 1\n\tKeyType_KEY_TYPE_USER        KeyType = 2\n)\n\n// Enum value maps for KeyType.\nvar (\n\tKeyType_name = map[int32]string{\n\t\t0: \"KEY_TYPE_UNSPECIFIED\",\n\t\t1: \"KEY_TYPE_ACCOUNT\",\n\t\t2: \"KEY_TYPE_USER\",\n\t}\n\tKeyType_value = map[string]int32{\n\t\t\"KEY_TYPE_UNSPECIFIED\": 0,\n\t\t\"KEY_TYPE_ACCOUNT\":     1,\n\t\t\"KEY_TYPE_USER\":        2,\n\t}\n)\n\nfunc (x KeyType) Enum() *KeyType {\n\tp := new(KeyType)\n\t*p = x\n\treturn p\n}\n\nfunc (x KeyType) String() string {\n\treturn protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))\n}\n\nfunc (KeyType) Descriptor() protoreflect.EnumDescriptor {\n\treturn file_api_hubd_pb_hubd_proto_enumTypes[0].Descriptor()\n}\n\nfunc (KeyType) Type() protoreflect.EnumType {\n\treturn &file_api_hubd_pb_hubd_proto_enumTypes[0]\n}\n\nfunc (x KeyType) Number() protoreflect.EnumNumber {\n\treturn protoreflect.EnumNumber(x)\n}\n\n// Deprecated: Use KeyType.Descriptor instead.\nfunc (KeyType) EnumDescriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{0}\n}\n\ntype BuildInfoRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *BuildInfoRequest) Reset() {\n\t*x = BuildInfoRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *BuildInfoRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*BuildInfoRequest) ProtoMessage() {}\n\nfunc (x *BuildInfoRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use BuildInfoRequest.ProtoReflect.Descriptor instead.\nfunc (*BuildInfoRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{0}\n}\n\ntype BuildInfoResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tGitCommit  string `protobuf:\"bytes,1,opt,name=git_commit,json=gitCommit,proto3\" json:\"git_commit,omitempty\"`\n\tGitBranch  string `protobuf:\"bytes,2,opt,name=git_branch,json=gitBranch,proto3\" json:\"git_branch,omitempty\"`\n\tGitState   string `protobuf:\"bytes,3,opt,name=git_state,json=gitState,proto3\" json:\"git_state,omitempty\"`\n\tGitSummary string `protobuf:\"bytes,4,opt,name=git_summary,json=gitSummary,proto3\" json:\"git_summary,omitempty\"`\n\tBuildDate  string `protobuf:\"bytes,5,opt,name=build_date,json=buildDate,proto3\" json:\"build_date,omitempty\"`\n\tVersion    string `protobuf:\"bytes,6,opt,name=version,proto3\" json:\"version,omitempty\"`\n}\n\nfunc (x *BuildInfoResponse) Reset() {\n\t*x = BuildInfoResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *BuildInfoResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*BuildInfoResponse) ProtoMessage() {}\n\nfunc (x *BuildInfoResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use BuildInfoResponse.ProtoReflect.Descriptor instead.\nfunc (*BuildInfoResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *BuildInfoResponse) GetGitCommit() string {\n\tif x != nil {\n\t\treturn x.GitCommit\n\t}\n\treturn \"\"\n}\n\nfunc (x *BuildInfoResponse) GetGitBranch() string {\n\tif x != nil {\n\t\treturn x.GitBranch\n\t}\n\treturn \"\"\n}\n\nfunc (x *BuildInfoResponse) GetGitState() string {\n\tif x != nil {\n\t\treturn x.GitState\n\t}\n\treturn \"\"\n}\n\nfunc (x *BuildInfoResponse) GetGitSummary() string {\n\tif x != nil {\n\t\treturn x.GitSummary\n\t}\n\treturn \"\"\n}\n\nfunc (x *BuildInfoResponse) GetBuildDate() string {\n\tif x != nil {\n\t\treturn x.BuildDate\n\t}\n\treturn \"\"\n}\n\nfunc (x *BuildInfoResponse) GetVersion() string {\n\tif x != nil {\n\t\treturn x.Version\n\t}\n\treturn \"\"\n}\n\ntype SignupRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUsername string `protobuf:\"bytes,1,opt,name=username,proto3\" json:\"username,omitempty\"`\n\tEmail    string `protobuf:\"bytes,2,opt,name=email,proto3\" json:\"email,omitempty\"`\n}\n\nfunc (x *SignupRequest) Reset() {\n\t*x = SignupRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SignupRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SignupRequest) ProtoMessage() {}\n\nfunc (x *SignupRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SignupRequest.ProtoReflect.Descriptor instead.\nfunc (*SignupRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *SignupRequest) GetUsername() string {\n\tif x != nil {\n\t\treturn x.Username\n\t}\n\treturn \"\"\n}\n\nfunc (x *SignupRequest) GetEmail() string {\n\tif x != nil {\n\t\treturn x.Email\n\t}\n\treturn \"\"\n}\n\ntype SignupResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey     []byte `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tSession string `protobuf:\"bytes,2,opt,name=session,proto3\" json:\"session,omitempty\"`\n}\n\nfunc (x *SignupResponse) Reset() {\n\t*x = SignupResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SignupResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SignupResponse) ProtoMessage() {}\n\nfunc (x *SignupResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SignupResponse.ProtoReflect.Descriptor instead.\nfunc (*SignupResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *SignupResponse) GetKey() []byte {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn nil\n}\n\nfunc (x *SignupResponse) GetSession() string {\n\tif x != nil {\n\t\treturn x.Session\n\t}\n\treturn \"\"\n}\n\ntype SigninRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUsernameOrEmail string `protobuf:\"bytes,1,opt,name=username_or_email,json=usernameOrEmail,proto3\" json:\"username_or_email,omitempty\"`\n}\n\nfunc (x *SigninRequest) Reset() {\n\t*x = SigninRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SigninRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SigninRequest) ProtoMessage() {}\n\nfunc (x *SigninRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SigninRequest.ProtoReflect.Descriptor instead.\nfunc (*SigninRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *SigninRequest) GetUsernameOrEmail() string {\n\tif x != nil {\n\t\treturn x.UsernameOrEmail\n\t}\n\treturn \"\"\n}\n\ntype SigninResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey     []byte `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tSession string `protobuf:\"bytes,2,opt,name=session,proto3\" json:\"session,omitempty\"`\n}\n\nfunc (x *SigninResponse) Reset() {\n\t*x = SigninResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SigninResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SigninResponse) ProtoMessage() {}\n\nfunc (x *SigninResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SigninResponse.ProtoReflect.Descriptor instead.\nfunc (*SigninResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *SigninResponse) GetKey() []byte {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn nil\n}\n\nfunc (x *SigninResponse) GetSession() string {\n\tif x != nil {\n\t\treturn x.Session\n\t}\n\treturn \"\"\n}\n\ntype SignoutRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *SignoutRequest) Reset() {\n\t*x = SignoutRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SignoutRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SignoutRequest) ProtoMessage() {}\n\nfunc (x *SignoutRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SignoutRequest.ProtoReflect.Descriptor instead.\nfunc (*SignoutRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{6}\n}\n\ntype SignoutResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *SignoutResponse) Reset() {\n\t*x = SignoutResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SignoutResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SignoutResponse) ProtoMessage() {}\n\nfunc (x *SignoutResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SignoutResponse.ProtoReflect.Descriptor instead.\nfunc (*SignoutResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{7}\n}\n\ntype GetSessionInfoRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *GetSessionInfoRequest) Reset() {\n\t*x = GetSessionInfoRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetSessionInfoRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetSessionInfoRequest) ProtoMessage() {}\n\nfunc (x *GetSessionInfoRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetSessionInfoRequest.ProtoReflect.Descriptor instead.\nfunc (*GetSessionInfoRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{8}\n}\n\ntype GetSessionInfoResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey      []byte `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tUsername string `protobuf:\"bytes,2,opt,name=username,proto3\" json:\"username,omitempty\"`\n\tEmail    string `protobuf:\"bytes,3,opt,name=email,proto3\" json:\"email,omitempty\"`\n}\n\nfunc (x *GetSessionInfoResponse) Reset() {\n\t*x = GetSessionInfoResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetSessionInfoResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetSessionInfoResponse) ProtoMessage() {}\n\nfunc (x *GetSessionInfoResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetSessionInfoResponse.ProtoReflect.Descriptor instead.\nfunc (*GetSessionInfoResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *GetSessionInfoResponse) GetKey() []byte {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn nil\n}\n\nfunc (x *GetSessionInfoResponse) GetUsername() string {\n\tif x != nil {\n\t\treturn x.Username\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetSessionInfoResponse) GetEmail() string {\n\tif x != nil {\n\t\treturn x.Email\n\t}\n\treturn \"\"\n}\n\ntype GetIdentityRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *GetIdentityRequest) Reset() {\n\t*x = GetIdentityRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetIdentityRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetIdentityRequest) ProtoMessage() {}\n\nfunc (x *GetIdentityRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetIdentityRequest.ProtoReflect.Descriptor instead.\nfunc (*GetIdentityRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{10}\n}\n\ntype GetIdentityResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tIdentity []byte `protobuf:\"bytes,1,opt,name=identity,proto3\" json:\"identity,omitempty\"`\n}\n\nfunc (x *GetIdentityResponse) Reset() {\n\t*x = GetIdentityResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetIdentityResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetIdentityResponse) ProtoMessage() {}\n\nfunc (x *GetIdentityResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetIdentityResponse.ProtoReflect.Descriptor instead.\nfunc (*GetIdentityResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *GetIdentityResponse) GetIdentity() []byte {\n\tif x != nil {\n\t\treturn x.Identity\n\t}\n\treturn nil\n}\n\ntype KeyInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey     string  `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tSecret  string  `protobuf:\"bytes,2,opt,name=secret,proto3\" json:\"secret,omitempty\"`\n\tType    KeyType `protobuf:\"varint,3,opt,name=type,proto3,enum=api.hubd.pb.KeyType\" json:\"type,omitempty\"`\n\tValid   bool    `protobuf:\"varint,4,opt,name=valid,proto3\" json:\"valid,omitempty\"`\n\tThreads int32   `protobuf:\"varint,5,opt,name=threads,proto3\" json:\"threads,omitempty\"`\n\tSecure  bool    `protobuf:\"varint,6,opt,name=secure,proto3\" json:\"secure,omitempty\"`\n}\n\nfunc (x *KeyInfo) Reset() {\n\t*x = KeyInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *KeyInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*KeyInfo) ProtoMessage() {}\n\nfunc (x *KeyInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use KeyInfo.ProtoReflect.Descriptor instead.\nfunc (*KeyInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{12}\n}\n\nfunc (x *KeyInfo) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *KeyInfo) GetSecret() string {\n\tif x != nil {\n\t\treturn x.Secret\n\t}\n\treturn \"\"\n}\n\nfunc (x *KeyInfo) GetType() KeyType {\n\tif x != nil {\n\t\treturn x.Type\n\t}\n\treturn KeyType_KEY_TYPE_UNSPECIFIED\n}\n\nfunc (x *KeyInfo) GetValid() bool {\n\tif x != nil {\n\t\treturn x.Valid\n\t}\n\treturn false\n}\n\nfunc (x *KeyInfo) GetThreads() int32 {\n\tif x != nil {\n\t\treturn x.Threads\n\t}\n\treturn 0\n}\n\nfunc (x *KeyInfo) GetSecure() bool {\n\tif x != nil {\n\t\treturn x.Secure\n\t}\n\treturn false\n}\n\ntype CreateKeyRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tType   KeyType `protobuf:\"varint,1,opt,name=type,proto3,enum=api.hubd.pb.KeyType\" json:\"type,omitempty\"`\n\tSecure bool    `protobuf:\"varint,2,opt,name=secure,proto3\" json:\"secure,omitempty\"`\n}\n\nfunc (x *CreateKeyRequest) Reset() {\n\t*x = CreateKeyRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateKeyRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateKeyRequest) ProtoMessage() {}\n\nfunc (x *CreateKeyRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateKeyRequest.ProtoReflect.Descriptor instead.\nfunc (*CreateKeyRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{13}\n}\n\nfunc (x *CreateKeyRequest) GetType() KeyType {\n\tif x != nil {\n\t\treturn x.Type\n\t}\n\treturn KeyType_KEY_TYPE_UNSPECIFIED\n}\n\nfunc (x *CreateKeyRequest) GetSecure() bool {\n\tif x != nil {\n\t\treturn x.Secure\n\t}\n\treturn false\n}\n\ntype CreateKeyResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKeyInfo *KeyInfo `protobuf:\"bytes,1,opt,name=key_info,json=keyInfo,proto3\" json:\"key_info,omitempty\"`\n}\n\nfunc (x *CreateKeyResponse) Reset() {\n\t*x = CreateKeyResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[14]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateKeyResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateKeyResponse) ProtoMessage() {}\n\nfunc (x *CreateKeyResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[14]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateKeyResponse.ProtoReflect.Descriptor instead.\nfunc (*CreateKeyResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{14}\n}\n\nfunc (x *CreateKeyResponse) GetKeyInfo() *KeyInfo {\n\tif x != nil {\n\t\treturn x.KeyInfo\n\t}\n\treturn nil\n}\n\ntype InvalidateKeyRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *InvalidateKeyRequest) Reset() {\n\t*x = InvalidateKeyRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[15]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *InvalidateKeyRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*InvalidateKeyRequest) ProtoMessage() {}\n\nfunc (x *InvalidateKeyRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[15]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use InvalidateKeyRequest.ProtoReflect.Descriptor instead.\nfunc (*InvalidateKeyRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{15}\n}\n\nfunc (x *InvalidateKeyRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype InvalidateKeyResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *InvalidateKeyResponse) Reset() {\n\t*x = InvalidateKeyResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[16]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *InvalidateKeyResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*InvalidateKeyResponse) ProtoMessage() {}\n\nfunc (x *InvalidateKeyResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[16]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use InvalidateKeyResponse.ProtoReflect.Descriptor instead.\nfunc (*InvalidateKeyResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{16}\n}\n\ntype ListKeysRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ListKeysRequest) Reset() {\n\t*x = ListKeysRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[17]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListKeysRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListKeysRequest) ProtoMessage() {}\n\nfunc (x *ListKeysRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[17]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListKeysRequest.ProtoReflect.Descriptor instead.\nfunc (*ListKeysRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{17}\n}\n\ntype ListKeysResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tList []*KeyInfo `protobuf:\"bytes,1,rep,name=list,proto3\" json:\"list,omitempty\"`\n}\n\nfunc (x *ListKeysResponse) Reset() {\n\t*x = ListKeysResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[18]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListKeysResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListKeysResponse) ProtoMessage() {}\n\nfunc (x *ListKeysResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[18]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListKeysResponse.ProtoReflect.Descriptor instead.\nfunc (*ListKeysResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{18}\n}\n\nfunc (x *ListKeysResponse) GetList() []*KeyInfo {\n\tif x != nil {\n\t\treturn x.List\n\t}\n\treturn nil\n}\n\ntype OrgInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey       []byte            `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tName      string            `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tSlug      string            `protobuf:\"bytes,3,opt,name=slug,proto3\" json:\"slug,omitempty\"`\n\tHost      string            `protobuf:\"bytes,4,opt,name=host,proto3\" json:\"host,omitempty\"`\n\tMembers   []*OrgInfo_Member `protobuf:\"bytes,5,rep,name=members,proto3\" json:\"members,omitempty\"`\n\tCreatedAt int64             `protobuf:\"varint,6,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n}\n\nfunc (x *OrgInfo) Reset() {\n\t*x = OrgInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[19]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *OrgInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*OrgInfo) ProtoMessage() {}\n\nfunc (x *OrgInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[19]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use OrgInfo.ProtoReflect.Descriptor instead.\nfunc (*OrgInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{19}\n}\n\nfunc (x *OrgInfo) GetKey() []byte {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn nil\n}\n\nfunc (x *OrgInfo) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *OrgInfo) GetSlug() string {\n\tif x != nil {\n\t\treturn x.Slug\n\t}\n\treturn \"\"\n}\n\nfunc (x *OrgInfo) GetHost() string {\n\tif x != nil {\n\t\treturn x.Host\n\t}\n\treturn \"\"\n}\n\nfunc (x *OrgInfo) GetMembers() []*OrgInfo_Member {\n\tif x != nil {\n\t\treturn x.Members\n\t}\n\treturn nil\n}\n\nfunc (x *OrgInfo) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\ntype CreateOrgRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n}\n\nfunc (x *CreateOrgRequest) Reset() {\n\t*x = CreateOrgRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[20]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateOrgRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateOrgRequest) ProtoMessage() {}\n\nfunc (x *CreateOrgRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[20]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateOrgRequest.ProtoReflect.Descriptor instead.\nfunc (*CreateOrgRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{20}\n}\n\nfunc (x *CreateOrgRequest) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\ntype CreateOrgResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tOrgInfo *OrgInfo `protobuf:\"bytes,1,opt,name=org_info,json=orgInfo,proto3\" json:\"org_info,omitempty\"`\n}\n\nfunc (x *CreateOrgResponse) Reset() {\n\t*x = CreateOrgResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[21]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateOrgResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateOrgResponse) ProtoMessage() {}\n\nfunc (x *CreateOrgResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[21]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateOrgResponse.ProtoReflect.Descriptor instead.\nfunc (*CreateOrgResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{21}\n}\n\nfunc (x *CreateOrgResponse) GetOrgInfo() *OrgInfo {\n\tif x != nil {\n\t\treturn x.OrgInfo\n\t}\n\treturn nil\n}\n\ntype GetOrgRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *GetOrgRequest) Reset() {\n\t*x = GetOrgRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[22]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetOrgRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetOrgRequest) ProtoMessage() {}\n\nfunc (x *GetOrgRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[22]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetOrgRequest.ProtoReflect.Descriptor instead.\nfunc (*GetOrgRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{22}\n}\n\ntype GetOrgResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tOrgInfo *OrgInfo `protobuf:\"bytes,1,opt,name=org_info,json=orgInfo,proto3\" json:\"org_info,omitempty\"`\n}\n\nfunc (x *GetOrgResponse) Reset() {\n\t*x = GetOrgResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[23]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetOrgResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetOrgResponse) ProtoMessage() {}\n\nfunc (x *GetOrgResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[23]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetOrgResponse.ProtoReflect.Descriptor instead.\nfunc (*GetOrgResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{23}\n}\n\nfunc (x *GetOrgResponse) GetOrgInfo() *OrgInfo {\n\tif x != nil {\n\t\treturn x.OrgInfo\n\t}\n\treturn nil\n}\n\ntype ListOrgsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ListOrgsRequest) Reset() {\n\t*x = ListOrgsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[24]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListOrgsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListOrgsRequest) ProtoMessage() {}\n\nfunc (x *ListOrgsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[24]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListOrgsRequest.ProtoReflect.Descriptor instead.\nfunc (*ListOrgsRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{24}\n}\n\ntype ListOrgsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tList []*OrgInfo `protobuf:\"bytes,1,rep,name=list,proto3\" json:\"list,omitempty\"`\n}\n\nfunc (x *ListOrgsResponse) Reset() {\n\t*x = ListOrgsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[25]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListOrgsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListOrgsResponse) ProtoMessage() {}\n\nfunc (x *ListOrgsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[25]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListOrgsResponse.ProtoReflect.Descriptor instead.\nfunc (*ListOrgsResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{25}\n}\n\nfunc (x *ListOrgsResponse) GetList() []*OrgInfo {\n\tif x != nil {\n\t\treturn x.List\n\t}\n\treturn nil\n}\n\ntype RemoveOrgRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *RemoveOrgRequest) Reset() {\n\t*x = RemoveOrgRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[26]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RemoveOrgRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RemoveOrgRequest) ProtoMessage() {}\n\nfunc (x *RemoveOrgRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[26]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RemoveOrgRequest.ProtoReflect.Descriptor instead.\nfunc (*RemoveOrgRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{26}\n}\n\ntype RemoveOrgResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *RemoveOrgResponse) Reset() {\n\t*x = RemoveOrgResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[27]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RemoveOrgResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RemoveOrgResponse) ProtoMessage() {}\n\nfunc (x *RemoveOrgResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[27]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RemoveOrgResponse.ProtoReflect.Descriptor instead.\nfunc (*RemoveOrgResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{27}\n}\n\ntype InviteToOrgRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tEmail string `protobuf:\"bytes,1,opt,name=email,proto3\" json:\"email,omitempty\"`\n}\n\nfunc (x *InviteToOrgRequest) Reset() {\n\t*x = InviteToOrgRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[28]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *InviteToOrgRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*InviteToOrgRequest) ProtoMessage() {}\n\nfunc (x *InviteToOrgRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[28]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use InviteToOrgRequest.ProtoReflect.Descriptor instead.\nfunc (*InviteToOrgRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{28}\n}\n\nfunc (x *InviteToOrgRequest) GetEmail() string {\n\tif x != nil {\n\t\treturn x.Email\n\t}\n\treturn \"\"\n}\n\ntype InviteToOrgResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tToken string `protobuf:\"bytes,1,opt,name=token,proto3\" json:\"token,omitempty\"`\n}\n\nfunc (x *InviteToOrgResponse) Reset() {\n\t*x = InviteToOrgResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[29]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *InviteToOrgResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*InviteToOrgResponse) ProtoMessage() {}\n\nfunc (x *InviteToOrgResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[29]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use InviteToOrgResponse.ProtoReflect.Descriptor instead.\nfunc (*InviteToOrgResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{29}\n}\n\nfunc (x *InviteToOrgResponse) GetToken() string {\n\tif x != nil {\n\t\treturn x.Token\n\t}\n\treturn \"\"\n}\n\ntype LeaveOrgRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *LeaveOrgRequest) Reset() {\n\t*x = LeaveOrgRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[30]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *LeaveOrgRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*LeaveOrgRequest) ProtoMessage() {}\n\nfunc (x *LeaveOrgRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[30]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use LeaveOrgRequest.ProtoReflect.Descriptor instead.\nfunc (*LeaveOrgRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{30}\n}\n\ntype LeaveOrgResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *LeaveOrgResponse) Reset() {\n\t*x = LeaveOrgResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[31]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *LeaveOrgResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*LeaveOrgResponse) ProtoMessage() {}\n\nfunc (x *LeaveOrgResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[31]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use LeaveOrgResponse.ProtoReflect.Descriptor instead.\nfunc (*LeaveOrgResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{31}\n}\n\ntype SetupBillingRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *SetupBillingRequest) Reset() {\n\t*x = SetupBillingRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[32]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetupBillingRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetupBillingRequest) ProtoMessage() {}\n\nfunc (x *SetupBillingRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[32]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetupBillingRequest.ProtoReflect.Descriptor instead.\nfunc (*SetupBillingRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{32}\n}\n\ntype SetupBillingResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *SetupBillingResponse) Reset() {\n\t*x = SetupBillingResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[33]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetupBillingResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetupBillingResponse) ProtoMessage() {}\n\nfunc (x *SetupBillingResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[33]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetupBillingResponse.ProtoReflect.Descriptor instead.\nfunc (*SetupBillingResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{33}\n}\n\ntype GetBillingSessionRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *GetBillingSessionRequest) Reset() {\n\t*x = GetBillingSessionRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[34]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetBillingSessionRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetBillingSessionRequest) ProtoMessage() {}\n\nfunc (x *GetBillingSessionRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[34]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetBillingSessionRequest.ProtoReflect.Descriptor instead.\nfunc (*GetBillingSessionRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{34}\n}\n\ntype GetBillingSessionResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUrl string `protobuf:\"bytes,1,opt,name=url,proto3\" json:\"url,omitempty\"`\n}\n\nfunc (x *GetBillingSessionResponse) Reset() {\n\t*x = GetBillingSessionResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[35]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetBillingSessionResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetBillingSessionResponse) ProtoMessage() {}\n\nfunc (x *GetBillingSessionResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[35]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetBillingSessionResponse.ProtoReflect.Descriptor instead.\nfunc (*GetBillingSessionResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{35}\n}\n\nfunc (x *GetBillingSessionResponse) GetUrl() string {\n\tif x != nil {\n\t\treturn x.Url\n\t}\n\treturn \"\"\n}\n\ntype ListBillingUsersRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tOffset int64 `protobuf:\"varint,1,opt,name=offset,proto3\" json:\"offset,omitempty\"`\n\tLimit  int64 `protobuf:\"varint,2,opt,name=limit,proto3\" json:\"limit,omitempty\"`\n}\n\nfunc (x *ListBillingUsersRequest) Reset() {\n\t*x = ListBillingUsersRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[36]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListBillingUsersRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListBillingUsersRequest) ProtoMessage() {}\n\nfunc (x *ListBillingUsersRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[36]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListBillingUsersRequest.ProtoReflect.Descriptor instead.\nfunc (*ListBillingUsersRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{36}\n}\n\nfunc (x *ListBillingUsersRequest) GetOffset() int64 {\n\tif x != nil {\n\t\treturn x.Offset\n\t}\n\treturn 0\n}\n\nfunc (x *ListBillingUsersRequest) GetLimit() int64 {\n\tif x != nil {\n\t\treturn x.Limit\n\t}\n\treturn 0\n}\n\ntype ListBillingUsersResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUsers      []*pb.GetCustomerResponse `protobuf:\"bytes,1,rep,name=users,proto3\" json:\"users,omitempty\"`\n\tNextOffset int64                     `protobuf:\"varint,2,opt,name=next_offset,json=nextOffset,proto3\" json:\"next_offset,omitempty\"`\n}\n\nfunc (x *ListBillingUsersResponse) Reset() {\n\t*x = ListBillingUsersResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[37]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListBillingUsersResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListBillingUsersResponse) ProtoMessage() {}\n\nfunc (x *ListBillingUsersResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[37]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListBillingUsersResponse.ProtoReflect.Descriptor instead.\nfunc (*ListBillingUsersResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{37}\n}\n\nfunc (x *ListBillingUsersResponse) GetUsers() []*pb.GetCustomerResponse {\n\tif x != nil {\n\t\treturn x.Users\n\t}\n\treturn nil\n}\n\nfunc (x *ListBillingUsersResponse) GetNextOffset() int64 {\n\tif x != nil {\n\t\treturn x.NextOffset\n\t}\n\treturn 0\n}\n\ntype IsUsernameAvailableRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUsername string `protobuf:\"bytes,1,opt,name=username,proto3\" json:\"username,omitempty\"`\n}\n\nfunc (x *IsUsernameAvailableRequest) Reset() {\n\t*x = IsUsernameAvailableRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[38]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IsUsernameAvailableRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IsUsernameAvailableRequest) ProtoMessage() {}\n\nfunc (x *IsUsernameAvailableRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[38]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IsUsernameAvailableRequest.ProtoReflect.Descriptor instead.\nfunc (*IsUsernameAvailableRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{38}\n}\n\nfunc (x *IsUsernameAvailableRequest) GetUsername() string {\n\tif x != nil {\n\t\treturn x.Username\n\t}\n\treturn \"\"\n}\n\ntype IsUsernameAvailableResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *IsUsernameAvailableResponse) Reset() {\n\t*x = IsUsernameAvailableResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[39]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IsUsernameAvailableResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IsUsernameAvailableResponse) ProtoMessage() {}\n\nfunc (x *IsUsernameAvailableResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[39]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IsUsernameAvailableResponse.ProtoReflect.Descriptor instead.\nfunc (*IsUsernameAvailableResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{39}\n}\n\ntype IsOrgNameAvailableRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n}\n\nfunc (x *IsOrgNameAvailableRequest) Reset() {\n\t*x = IsOrgNameAvailableRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[40]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IsOrgNameAvailableRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IsOrgNameAvailableRequest) ProtoMessage() {}\n\nfunc (x *IsOrgNameAvailableRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[40]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IsOrgNameAvailableRequest.ProtoReflect.Descriptor instead.\nfunc (*IsOrgNameAvailableRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{40}\n}\n\nfunc (x *IsOrgNameAvailableRequest) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\ntype IsOrgNameAvailableResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSlug string `protobuf:\"bytes,1,opt,name=slug,proto3\" json:\"slug,omitempty\"`\n\tHost string `protobuf:\"bytes,2,opt,name=host,proto3\" json:\"host,omitempty\"`\n}\n\nfunc (x *IsOrgNameAvailableResponse) Reset() {\n\t*x = IsOrgNameAvailableResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[41]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *IsOrgNameAvailableResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*IsOrgNameAvailableResponse) ProtoMessage() {}\n\nfunc (x *IsOrgNameAvailableResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[41]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use IsOrgNameAvailableResponse.ProtoReflect.Descriptor instead.\nfunc (*IsOrgNameAvailableResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{41}\n}\n\nfunc (x *IsOrgNameAvailableResponse) GetSlug() string {\n\tif x != nil {\n\t\treturn x.Slug\n\t}\n\treturn \"\"\n}\n\nfunc (x *IsOrgNameAvailableResponse) GetHost() string {\n\tif x != nil {\n\t\treturn x.Host\n\t}\n\treturn \"\"\n}\n\ntype DestroyAccountRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *DestroyAccountRequest) Reset() {\n\t*x = DestroyAccountRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[42]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DestroyAccountRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DestroyAccountRequest) ProtoMessage() {}\n\nfunc (x *DestroyAccountRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[42]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DestroyAccountRequest.ProtoReflect.Descriptor instead.\nfunc (*DestroyAccountRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{42}\n}\n\ntype DestroyAccountResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *DestroyAccountResponse) Reset() {\n\t*x = DestroyAccountResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[43]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DestroyAccountResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DestroyAccountResponse) ProtoMessage() {}\n\nfunc (x *DestroyAccountResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[43]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DestroyAccountResponse.ProtoReflect.Descriptor instead.\nfunc (*DestroyAccountResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{43}\n}\n\ntype OrgInfo_Member struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey      []byte `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tUsername string `protobuf:\"bytes,2,opt,name=username,proto3\" json:\"username,omitempty\"`\n\tRole     string `protobuf:\"bytes,3,opt,name=role,proto3\" json:\"role,omitempty\"`\n}\n\nfunc (x *OrgInfo_Member) Reset() {\n\t*x = OrgInfo_Member{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[44]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *OrgInfo_Member) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*OrgInfo_Member) ProtoMessage() {}\n\nfunc (x *OrgInfo_Member) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_hubd_pb_hubd_proto_msgTypes[44]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use OrgInfo_Member.ProtoReflect.Descriptor instead.\nfunc (*OrgInfo_Member) Descriptor() ([]byte, []int) {\n\treturn file_api_hubd_pb_hubd_proto_rawDescGZIP(), []int{19, 0}\n}\n\nfunc (x *OrgInfo_Member) GetKey() []byte {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn nil\n}\n\nfunc (x *OrgInfo_Member) GetUsername() string {\n\tif x != nil {\n\t\treturn x.Username\n\t}\n\treturn \"\"\n}\n\nfunc (x *OrgInfo_Member) GetRole() string {\n\tif x != nil {\n\t\treturn x.Role\n\t}\n\treturn \"\"\n}\n\nvar File_api_hubd_pb_hubd_proto protoreflect.FileDescriptor\n\nvar file_api_hubd_pb_hubd_proto_rawDesc = []byte{\n\t0x0a, 0x16, 0x61, 0x70, 0x69, 0x2f, 0x68, 0x75, 0x62, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x68, 0x75,\n\t0x62, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75,\n\t0x62, 0x64, 0x2e, 0x70, 0x62, 0x1a, 0x1e, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69,\n\t0x6e, 0x67, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e,\n\t0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x12, 0x0a, 0x10, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x6e,\n\t0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xc8, 0x01, 0x0a, 0x11, 0x42, 0x75,\n\t0x69, 0x6c, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,\n\t0x1d, 0x0a, 0x0a, 0x67, 0x69, 0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x69, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x1d,\n\t0x0a, 0x0a, 0x67, 0x69, 0x74, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x09, 0x67, 0x69, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x12, 0x1b, 0x0a,\n\t0x09, 0x67, 0x69, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x08, 0x67, 0x69, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x67, 0x69,\n\t0x74, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x0a, 0x67, 0x69, 0x74, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x62,\n\t0x75, 0x69, 0x6c, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x09, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65,\n\t0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72,\n\t0x73, 0x69, 0x6f, 0x6e, 0x22, 0x41, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x75, 0x70, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,\n\t0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,\n\t0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x3c, 0x0a, 0x0e, 0x53, 0x69, 0x67, 0x6e, 0x75,\n\t0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x73,\n\t0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x65,\n\t0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x3b, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61,\n\t0x6d, 0x65, 0x5f, 0x6f, 0x72, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x4f, 0x72, 0x45, 0x6d, 0x61,\n\t0x69, 0x6c, 0x22, 0x3c, 0x0a, 0x0e, 0x53, 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f,\n\t0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,\n\t0x22, 0x10, 0x0a, 0x0e, 0x53, 0x69, 0x67, 0x6e, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x22, 0x11, 0x0a, 0x0f, 0x53, 0x69, 0x67, 0x6e, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x17, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73,\n\t0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x5c,\n\t0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,\n\t0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,\n\t0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,\n\t0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x14, 0x0a, 0x12,\n\t0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x22, 0x31, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74,\n\t0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x64, 0x65,\n\t0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x69, 0x64, 0x65,\n\t0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0xa5, 0x01, 0x0a, 0x07, 0x4b, 0x65, 0x79, 0x49, 0x6e, 0x66,\n\t0x6f, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,\n\t0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x28, 0x0a, 0x04, 0x74,\n\t0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52,\n\t0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x18, 0x04,\n\t0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x74,\n\t0x68, 0x72, 0x65, 0x61, 0x64, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x68,\n\t0x72, 0x65, 0x61, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x75, 0x72, 0x65, 0x18,\n\t0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x65, 0x63, 0x75, 0x72, 0x65, 0x22, 0x54, 0x0a,\n\t0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x12, 0x28, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,\n\t0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4b, 0x65,\n\t0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73,\n\t0x65, 0x63, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x65, 0x63,\n\t0x75, 0x72, 0x65, 0x22, 0x44, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x5f,\n\t0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4b, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f,\n\t0x52, 0x07, 0x6b, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x28, 0x0a, 0x14, 0x49, 0x6e, 0x76,\n\t0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,\n\t0x6b, 0x65, 0x79, 0x22, 0x17, 0x0a, 0x15, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,\n\t0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x11, 0x0a, 0x0f,\n\t0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,\n\t0x3c, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,\n\t0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x4b, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xf9, 0x01,\n\t0x0a, 0x07, 0x4f, 0x72, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,\n\t0x12, 0x0a, 0x04, 0x73, 0x6c, 0x75, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73,\n\t0x6c, 0x75, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x35, 0x0a, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65,\n\t0x72, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68,\n\t0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x4d,\n\t0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x12, 0x1d,\n\t0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01,\n\t0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x1a, 0x4a, 0x0a,\n\t0x06, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,\n\t0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,\n\t0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x03, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x22, 0x26, 0x0a, 0x10, 0x43, 0x72, 0x65,\n\t0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,\n\t0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,\n\t0x65, 0x22, 0x44, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x6e,\n\t0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68,\n\t0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07,\n\t0x6f, 0x72, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x0f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x4f, 0x72,\n\t0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4f,\n\t0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6f, 0x72,\n\t0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x6e,\n\t0x66, 0x6f, 0x52, 0x07, 0x6f, 0x72, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x11, 0x0a, 0x0f, 0x4c,\n\t0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x3c,\n\t0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4f,\n\t0x72, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x12, 0x0a, 0x10,\n\t0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x22, 0x13, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x12, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x54,\n\t0x6f, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65,\n\t0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69,\n\t0x6c, 0x22, 0x2b, 0x0a, 0x13, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x54, 0x6f, 0x4f, 0x72, 0x67,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65,\n\t0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x11,\n\t0x0a, 0x0f, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x22, 0x12, 0x0a, 0x10, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x75, 0x70, 0x42, 0x69,\n\t0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x16, 0x0a, 0x14,\n\t0x53, 0x65, 0x74, 0x75, 0x70, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1a, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69,\n\t0x6e, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x22, 0x2d, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65,\n\t0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a,\n\t0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22,\n\t0x47, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x55, 0x73,\n\t0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,\n\t0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,\n\t0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,\n\t0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x77, 0x0a, 0x18, 0x4c, 0x69, 0x73, 0x74,\n\t0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20,\n\t0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e,\n\t0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,\n\t0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73,\n\t0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,\n\t0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x4f, 0x66, 0x66, 0x73, 0x65,\n\t0x74, 0x22, 0x38, 0x0a, 0x1a, 0x49, 0x73, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x41,\n\t0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,\n\t0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x1d, 0x0a, 0x1b, 0x49,\n\t0x73, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,\n\t0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2f, 0x0a, 0x19, 0x49, 0x73,\n\t0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x44, 0x0a, 0x1a, 0x49,\n\t0x73, 0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c,\n\t0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6c, 0x75,\n\t0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6c, 0x75, 0x67, 0x12, 0x12, 0x0a,\n\t0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73,\n\t0x74, 0x22, 0x17, 0x0a, 0x15, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x41, 0x63, 0x63, 0x6f,\n\t0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x18, 0x0a, 0x16, 0x44, 0x65,\n\t0x73, 0x74, 0x72, 0x6f, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x4c, 0x0a, 0x07, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12,\n\t0x18, 0x0a, 0x14, 0x4b, 0x45, 0x59, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50,\n\t0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x4b, 0x45, 0x59,\n\t0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x10, 0x01, 0x12,\n\t0x11, 0x0a, 0x0d, 0x4b, 0x45, 0x59, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52,\n\t0x10, 0x02, 0x32, 0xed, 0x0d, 0x0a, 0x0a, 0x41, 0x50, 0x49, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,\n\t0x65, 0x12, 0x4c, 0x0a, 0x09, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x75, 0x69,\n\t0x6c, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c,\n\t0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,\n\t0x43, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x75, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x75, 0x70, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x12, 0x1a,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x67,\n\t0x6e, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x07, 0x53, 0x69, 0x67,\n\t0x6e, 0x6f, 0x75, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x53, 0x69, 0x67, 0x6e, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,\n\t0x00, 0x12, 0x5b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49,\n\t0x6e, 0x66, 0x6f, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75,\n\t0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,\n\t0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x52,\n\t0x0a, 0x0b, 0x47, 0x65, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x49,\n\t0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74,\n\t0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x22, 0x00, 0x12, 0x4c, 0x0a, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x12,\n\t0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72,\n\t0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65,\n\t0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,\n\t0x12, 0x49, 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1c, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b,\n\t0x65, 0x79, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79,\n\t0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x0d, 0x49,\n\t0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x21, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e, 0x76, 0x61, 0x6c,\n\t0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e,\n\t0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f,\n\t0x72, 0x67, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x06, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x12, 0x1a, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x4f,\n\t0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74,\n\t0x4f, 0x72, 0x67, 0x73, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x09, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67,\n\t0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52,\n\t0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65,\n\t0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,\n\t0x00, 0x12, 0x52, 0x0a, 0x0b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x54, 0x6f, 0x4f, 0x72, 0x67,\n\t0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49,\n\t0x6e, 0x76, 0x69, 0x74, 0x65, 0x54, 0x6f, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x54, 0x6f, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x08, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x4f, 0x72,\n\t0x67, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x4c, 0x65, 0x61, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x65,\n\t0x61, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,\n\t0x12, 0x55, 0x0a, 0x0c, 0x53, 0x65, 0x74, 0x75, 0x70, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67,\n\t0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53,\n\t0x65, 0x74, 0x75, 0x70, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x53, 0x65, 0x74, 0x75, 0x70, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x42, 0x69,\n\t0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x69,\n\t0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x73, 0x73,\n\t0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x61, 0x0a,\n\t0x10, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72,\n\t0x73, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x4c, 0x69, 0x73, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72, 0x73,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75,\n\t0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e,\n\t0x67, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,\n\t0x12, 0x6a, 0x0a, 0x13, 0x49, 0x73, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x41, 0x76,\n\t0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75,\n\t0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x73, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,\n\t0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49,\n\t0x73, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,\n\t0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x12,\n\t0x49, 0x73, 0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,\n\t0x6c, 0x65, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x49, 0x73, 0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61,\n\t0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x73, 0x4f, 0x72, 0x67, 0x4e, 0x61,\n\t0x6d, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79,\n\t0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x68, 0x75,\n\t0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x41, 0x63, 0x63,\n\t0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x68, 0x75, 0x62, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f,\n\t0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x22, 0x00, 0x42, 0x2d, 0x5a, 0x2b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,\n\t0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x69, 0x6f, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69,\n\t0x6c, 0x65, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x68, 0x75, 0x62, 0x64, 0x2f, 0x70,\n\t0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_api_hubd_pb_hubd_proto_rawDescOnce sync.Once\n\tfile_api_hubd_pb_hubd_proto_rawDescData = file_api_hubd_pb_hubd_proto_rawDesc\n)\n\nfunc file_api_hubd_pb_hubd_proto_rawDescGZIP() []byte {\n\tfile_api_hubd_pb_hubd_proto_rawDescOnce.Do(func() {\n\t\tfile_api_hubd_pb_hubd_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_hubd_pb_hubd_proto_rawDescData)\n\t})\n\treturn file_api_hubd_pb_hubd_proto_rawDescData\n}\n\nvar file_api_hubd_pb_hubd_proto_enumTypes = make([]protoimpl.EnumInfo, 1)\nvar file_api_hubd_pb_hubd_proto_msgTypes = make([]protoimpl.MessageInfo, 45)\nvar file_api_hubd_pb_hubd_proto_goTypes = []interface{}{\n\t(KeyType)(0),                        // 0: api.hubd.pb.KeyType\n\t(*BuildInfoRequest)(nil),            // 1: api.hubd.pb.BuildInfoRequest\n\t(*BuildInfoResponse)(nil),           // 2: api.hubd.pb.BuildInfoResponse\n\t(*SignupRequest)(nil),               // 3: api.hubd.pb.SignupRequest\n\t(*SignupResponse)(nil),              // 4: api.hubd.pb.SignupResponse\n\t(*SigninRequest)(nil),               // 5: api.hubd.pb.SigninRequest\n\t(*SigninResponse)(nil),              // 6: api.hubd.pb.SigninResponse\n\t(*SignoutRequest)(nil),              // 7: api.hubd.pb.SignoutRequest\n\t(*SignoutResponse)(nil),             // 8: api.hubd.pb.SignoutResponse\n\t(*GetSessionInfoRequest)(nil),       // 9: api.hubd.pb.GetSessionInfoRequest\n\t(*GetSessionInfoResponse)(nil),      // 10: api.hubd.pb.GetSessionInfoResponse\n\t(*GetIdentityRequest)(nil),          // 11: api.hubd.pb.GetIdentityRequest\n\t(*GetIdentityResponse)(nil),         // 12: api.hubd.pb.GetIdentityResponse\n\t(*KeyInfo)(nil),                     // 13: api.hubd.pb.KeyInfo\n\t(*CreateKeyRequest)(nil),            // 14: api.hubd.pb.CreateKeyRequest\n\t(*CreateKeyResponse)(nil),           // 15: api.hubd.pb.CreateKeyResponse\n\t(*InvalidateKeyRequest)(nil),        // 16: api.hubd.pb.InvalidateKeyRequest\n\t(*InvalidateKeyResponse)(nil),       // 17: api.hubd.pb.InvalidateKeyResponse\n\t(*ListKeysRequest)(nil),             // 18: api.hubd.pb.ListKeysRequest\n\t(*ListKeysResponse)(nil),            // 19: api.hubd.pb.ListKeysResponse\n\t(*OrgInfo)(nil),                     // 20: api.hubd.pb.OrgInfo\n\t(*CreateOrgRequest)(nil),            // 21: api.hubd.pb.CreateOrgRequest\n\t(*CreateOrgResponse)(nil),           // 22: api.hubd.pb.CreateOrgResponse\n\t(*GetOrgRequest)(nil),               // 23: api.hubd.pb.GetOrgRequest\n\t(*GetOrgResponse)(nil),              // 24: api.hubd.pb.GetOrgResponse\n\t(*ListOrgsRequest)(nil),             // 25: api.hubd.pb.ListOrgsRequest\n\t(*ListOrgsResponse)(nil),            // 26: api.hubd.pb.ListOrgsResponse\n\t(*RemoveOrgRequest)(nil),            // 27: api.hubd.pb.RemoveOrgRequest\n\t(*RemoveOrgResponse)(nil),           // 28: api.hubd.pb.RemoveOrgResponse\n\t(*InviteToOrgRequest)(nil),          // 29: api.hubd.pb.InviteToOrgRequest\n\t(*InviteToOrgResponse)(nil),         // 30: api.hubd.pb.InviteToOrgResponse\n\t(*LeaveOrgRequest)(nil),             // 31: api.hubd.pb.LeaveOrgRequest\n\t(*LeaveOrgResponse)(nil),            // 32: api.hubd.pb.LeaveOrgResponse\n\t(*SetupBillingRequest)(nil),         // 33: api.hubd.pb.SetupBillingRequest\n\t(*SetupBillingResponse)(nil),        // 34: api.hubd.pb.SetupBillingResponse\n\t(*GetBillingSessionRequest)(nil),    // 35: api.hubd.pb.GetBillingSessionRequest\n\t(*GetBillingSessionResponse)(nil),   // 36: api.hubd.pb.GetBillingSessionResponse\n\t(*ListBillingUsersRequest)(nil),     // 37: api.hubd.pb.ListBillingUsersRequest\n\t(*ListBillingUsersResponse)(nil),    // 38: api.hubd.pb.ListBillingUsersResponse\n\t(*IsUsernameAvailableRequest)(nil),  // 39: api.hubd.pb.IsUsernameAvailableRequest\n\t(*IsUsernameAvailableResponse)(nil), // 40: api.hubd.pb.IsUsernameAvailableResponse\n\t(*IsOrgNameAvailableRequest)(nil),   // 41: api.hubd.pb.IsOrgNameAvailableRequest\n\t(*IsOrgNameAvailableResponse)(nil),  // 42: api.hubd.pb.IsOrgNameAvailableResponse\n\t(*DestroyAccountRequest)(nil),       // 43: api.hubd.pb.DestroyAccountRequest\n\t(*DestroyAccountResponse)(nil),      // 44: api.hubd.pb.DestroyAccountResponse\n\t(*OrgInfo_Member)(nil),              // 45: api.hubd.pb.OrgInfo.Member\n\t(*pb.GetCustomerResponse)(nil),      // 46: api.billingd.pb.GetCustomerResponse\n}\nvar file_api_hubd_pb_hubd_proto_depIdxs = []int32{\n\t0,  // 0: api.hubd.pb.KeyInfo.type:type_name -> api.hubd.pb.KeyType\n\t0,  // 1: api.hubd.pb.CreateKeyRequest.type:type_name -> api.hubd.pb.KeyType\n\t13, // 2: api.hubd.pb.CreateKeyResponse.key_info:type_name -> api.hubd.pb.KeyInfo\n\t13, // 3: api.hubd.pb.ListKeysResponse.list:type_name -> api.hubd.pb.KeyInfo\n\t45, // 4: api.hubd.pb.OrgInfo.members:type_name -> api.hubd.pb.OrgInfo.Member\n\t20, // 5: api.hubd.pb.CreateOrgResponse.org_info:type_name -> api.hubd.pb.OrgInfo\n\t20, // 6: api.hubd.pb.GetOrgResponse.org_info:type_name -> api.hubd.pb.OrgInfo\n\t20, // 7: api.hubd.pb.ListOrgsResponse.list:type_name -> api.hubd.pb.OrgInfo\n\t46, // 8: api.hubd.pb.ListBillingUsersResponse.users:type_name -> api.billingd.pb.GetCustomerResponse\n\t1,  // 9: api.hubd.pb.APIService.BuildInfo:input_type -> api.hubd.pb.BuildInfoRequest\n\t3,  // 10: api.hubd.pb.APIService.Signup:input_type -> api.hubd.pb.SignupRequest\n\t5,  // 11: api.hubd.pb.APIService.Signin:input_type -> api.hubd.pb.SigninRequest\n\t7,  // 12: api.hubd.pb.APIService.Signout:input_type -> api.hubd.pb.SignoutRequest\n\t9,  // 13: api.hubd.pb.APIService.GetSessionInfo:input_type -> api.hubd.pb.GetSessionInfoRequest\n\t11, // 14: api.hubd.pb.APIService.GetIdentity:input_type -> api.hubd.pb.GetIdentityRequest\n\t14, // 15: api.hubd.pb.APIService.CreateKey:input_type -> api.hubd.pb.CreateKeyRequest\n\t18, // 16: api.hubd.pb.APIService.ListKeys:input_type -> api.hubd.pb.ListKeysRequest\n\t16, // 17: api.hubd.pb.APIService.InvalidateKey:input_type -> api.hubd.pb.InvalidateKeyRequest\n\t21, // 18: api.hubd.pb.APIService.CreateOrg:input_type -> api.hubd.pb.CreateOrgRequest\n\t23, // 19: api.hubd.pb.APIService.GetOrg:input_type -> api.hubd.pb.GetOrgRequest\n\t25, // 20: api.hubd.pb.APIService.ListOrgs:input_type -> api.hubd.pb.ListOrgsRequest\n\t27, // 21: api.hubd.pb.APIService.RemoveOrg:input_type -> api.hubd.pb.RemoveOrgRequest\n\t29, // 22: api.hubd.pb.APIService.InviteToOrg:input_type -> api.hubd.pb.InviteToOrgRequest\n\t31, // 23: api.hubd.pb.APIService.LeaveOrg:input_type -> api.hubd.pb.LeaveOrgRequest\n\t33, // 24: api.hubd.pb.APIService.SetupBilling:input_type -> api.hubd.pb.SetupBillingRequest\n\t35, // 25: api.hubd.pb.APIService.GetBillingSession:input_type -> api.hubd.pb.GetBillingSessionRequest\n\t37, // 26: api.hubd.pb.APIService.ListBillingUsers:input_type -> api.hubd.pb.ListBillingUsersRequest\n\t39, // 27: api.hubd.pb.APIService.IsUsernameAvailable:input_type -> api.hubd.pb.IsUsernameAvailableRequest\n\t41, // 28: api.hubd.pb.APIService.IsOrgNameAvailable:input_type -> api.hubd.pb.IsOrgNameAvailableRequest\n\t43, // 29: api.hubd.pb.APIService.DestroyAccount:input_type -> api.hubd.pb.DestroyAccountRequest\n\t2,  // 30: api.hubd.pb.APIService.BuildInfo:output_type -> api.hubd.pb.BuildInfoResponse\n\t4,  // 31: api.hubd.pb.APIService.Signup:output_type -> api.hubd.pb.SignupResponse\n\t6,  // 32: api.hubd.pb.APIService.Signin:output_type -> api.hubd.pb.SigninResponse\n\t8,  // 33: api.hubd.pb.APIService.Signout:output_type -> api.hubd.pb.SignoutResponse\n\t10, // 34: api.hubd.pb.APIService.GetSessionInfo:output_type -> api.hubd.pb.GetSessionInfoResponse\n\t12, // 35: api.hubd.pb.APIService.GetIdentity:output_type -> api.hubd.pb.GetIdentityResponse\n\t15, // 36: api.hubd.pb.APIService.CreateKey:output_type -> api.hubd.pb.CreateKeyResponse\n\t19, // 37: api.hubd.pb.APIService.ListKeys:output_type -> api.hubd.pb.ListKeysResponse\n\t17, // 38: api.hubd.pb.APIService.InvalidateKey:output_type -> api.hubd.pb.InvalidateKeyResponse\n\t22, // 39: api.hubd.pb.APIService.CreateOrg:output_type -> api.hubd.pb.CreateOrgResponse\n\t24, // 40: api.hubd.pb.APIService.GetOrg:output_type -> api.hubd.pb.GetOrgResponse\n\t26, // 41: api.hubd.pb.APIService.ListOrgs:output_type -> api.hubd.pb.ListOrgsResponse\n\t28, // 42: api.hubd.pb.APIService.RemoveOrg:output_type -> api.hubd.pb.RemoveOrgResponse\n\t30, // 43: api.hubd.pb.APIService.InviteToOrg:output_type -> api.hubd.pb.InviteToOrgResponse\n\t32, // 44: api.hubd.pb.APIService.LeaveOrg:output_type -> api.hubd.pb.LeaveOrgResponse\n\t34, // 45: api.hubd.pb.APIService.SetupBilling:output_type -> api.hubd.pb.SetupBillingResponse\n\t36, // 46: api.hubd.pb.APIService.GetBillingSession:output_type -> api.hubd.pb.GetBillingSessionResponse\n\t38, // 47: api.hubd.pb.APIService.ListBillingUsers:output_type -> api.hubd.pb.ListBillingUsersResponse\n\t40, // 48: api.hubd.pb.APIService.IsUsernameAvailable:output_type -> api.hubd.pb.IsUsernameAvailableResponse\n\t42, // 49: api.hubd.pb.APIService.IsOrgNameAvailable:output_type -> api.hubd.pb.IsOrgNameAvailableResponse\n\t44, // 50: api.hubd.pb.APIService.DestroyAccount:output_type -> api.hubd.pb.DestroyAccountResponse\n\t30, // [30:51] is the sub-list for method output_type\n\t9,  // [9:30] is the sub-list for method input_type\n\t9,  // [9:9] is the sub-list for extension type_name\n\t9,  // [9:9] is the sub-list for extension extendee\n\t0,  // [0:9] is the sub-list for field type_name\n}\n\nfunc init() { file_api_hubd_pb_hubd_proto_init() }\nfunc file_api_hubd_pb_hubd_proto_init() {\n\tif File_api_hubd_pb_hubd_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*BuildInfoRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*BuildInfoResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SignupRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SignupResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SigninRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SigninResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SignoutRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SignoutResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetSessionInfoRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetSessionInfoResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetIdentityRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetIdentityResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*KeyInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateKeyRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateKeyResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*InvalidateKeyRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*InvalidateKeyResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListKeysRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListKeysResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*OrgInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateOrgRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateOrgResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetOrgRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetOrgResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListOrgsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListOrgsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RemoveOrgRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RemoveOrgResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*InviteToOrgRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*InviteToOrgResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*LeaveOrgRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*LeaveOrgResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetupBillingRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetupBillingResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetBillingSessionRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetBillingSessionResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListBillingUsersRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListBillingUsersResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IsUsernameAvailableRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IsUsernameAvailableResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IsOrgNameAvailableRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*IsOrgNameAvailableResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DestroyAccountRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DestroyAccountResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_hubd_pb_hubd_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*OrgInfo_Member); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_api_hubd_pb_hubd_proto_rawDesc,\n\t\t\tNumEnums:      1,\n\t\t\tNumMessages:   45,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_api_hubd_pb_hubd_proto_goTypes,\n\t\tDependencyIndexes: file_api_hubd_pb_hubd_proto_depIdxs,\n\t\tEnumInfos:         file_api_hubd_pb_hubd_proto_enumTypes,\n\t\tMessageInfos:      file_api_hubd_pb_hubd_proto_msgTypes,\n\t}.Build()\n\tFile_api_hubd_pb_hubd_proto = out.File\n\tfile_api_hubd_pb_hubd_proto_rawDesc = nil\n\tfile_api_hubd_pb_hubd_proto_goTypes = nil\n\tfile_api_hubd_pb_hubd_proto_depIdxs = nil\n}\n\n// Reference imports to suppress errors if they are not otherwise used.\nvar _ context.Context\nvar _ grpc.ClientConnInterface\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\nconst _ = grpc.SupportPackageIsVersion6\n\n// APIServiceClient is the client API for APIService service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.\ntype APIServiceClient interface {\n\tBuildInfo(ctx context.Context, in *BuildInfoRequest, opts ...grpc.CallOption) (*BuildInfoResponse, error)\n\tSignup(ctx context.Context, in *SignupRequest, opts ...grpc.CallOption) (*SignupResponse, error)\n\tSignin(ctx context.Context, in *SigninRequest, opts ...grpc.CallOption) (*SigninResponse, error)\n\tSignout(ctx context.Context, in *SignoutRequest, opts ...grpc.CallOption) (*SignoutResponse, error)\n\tGetSessionInfo(ctx context.Context, in *GetSessionInfoRequest, opts ...grpc.CallOption) (*GetSessionInfoResponse, error)\n\tGetIdentity(ctx context.Context, in *GetIdentityRequest, opts ...grpc.CallOption) (*GetIdentityResponse, error)\n\tCreateKey(ctx context.Context, in *CreateKeyRequest, opts ...grpc.CallOption) (*CreateKeyResponse, error)\n\tListKeys(ctx context.Context, in *ListKeysRequest, opts ...grpc.CallOption) (*ListKeysResponse, error)\n\tInvalidateKey(ctx context.Context, in *InvalidateKeyRequest, opts ...grpc.CallOption) (*InvalidateKeyResponse, error)\n\tCreateOrg(ctx context.Context, in *CreateOrgRequest, opts ...grpc.CallOption) (*CreateOrgResponse, error)\n\tGetOrg(ctx context.Context, in *GetOrgRequest, opts ...grpc.CallOption) (*GetOrgResponse, error)\n\tListOrgs(ctx context.Context, in *ListOrgsRequest, opts ...grpc.CallOption) (*ListOrgsResponse, error)\n\tRemoveOrg(ctx context.Context, in *RemoveOrgRequest, opts ...grpc.CallOption) (*RemoveOrgResponse, error)\n\tInviteToOrg(ctx context.Context, in *InviteToOrgRequest, opts ...grpc.CallOption) (*InviteToOrgResponse, error)\n\tLeaveOrg(ctx context.Context, in *LeaveOrgRequest, opts ...grpc.CallOption) (*LeaveOrgResponse, error)\n\tSetupBilling(ctx context.Context, in *SetupBillingRequest, opts ...grpc.CallOption) (*SetupBillingResponse, error)\n\tGetBillingSession(ctx context.Context, in *GetBillingSessionRequest, opts ...grpc.CallOption) (*GetBillingSessionResponse, error)\n\tListBillingUsers(ctx context.Context, in *ListBillingUsersRequest, opts ...grpc.CallOption) (*ListBillingUsersResponse, error)\n\tIsUsernameAvailable(ctx context.Context, in *IsUsernameAvailableRequest, opts ...grpc.CallOption) (*IsUsernameAvailableResponse, error)\n\tIsOrgNameAvailable(ctx context.Context, in *IsOrgNameAvailableRequest, opts ...grpc.CallOption) (*IsOrgNameAvailableResponse, error)\n\tDestroyAccount(ctx context.Context, in *DestroyAccountRequest, opts ...grpc.CallOption) (*DestroyAccountResponse, error)\n}\n\ntype aPIServiceClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient {\n\treturn &aPIServiceClient{cc}\n}\n\nfunc (c *aPIServiceClient) BuildInfo(ctx context.Context, in *BuildInfoRequest, opts ...grpc.CallOption) (*BuildInfoResponse, error) {\n\tout := new(BuildInfoResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/BuildInfo\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Signup(ctx context.Context, in *SignupRequest, opts ...grpc.CallOption) (*SignupResponse, error) {\n\tout := new(SignupResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/Signup\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Signin(ctx context.Context, in *SigninRequest, opts ...grpc.CallOption) (*SigninResponse, error) {\n\tout := new(SigninResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/Signin\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) Signout(ctx context.Context, in *SignoutRequest, opts ...grpc.CallOption) (*SignoutResponse, error) {\n\tout := new(SignoutResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/Signout\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetSessionInfo(ctx context.Context, in *GetSessionInfoRequest, opts ...grpc.CallOption) (*GetSessionInfoResponse, error) {\n\tout := new(GetSessionInfoResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/GetSessionInfo\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetIdentity(ctx context.Context, in *GetIdentityRequest, opts ...grpc.CallOption) (*GetIdentityResponse, error) {\n\tout := new(GetIdentityResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/GetIdentity\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) CreateKey(ctx context.Context, in *CreateKeyRequest, opts ...grpc.CallOption) (*CreateKeyResponse, error) {\n\tout := new(CreateKeyResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/CreateKey\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListKeys(ctx context.Context, in *ListKeysRequest, opts ...grpc.CallOption) (*ListKeysResponse, error) {\n\tout := new(ListKeysResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/ListKeys\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) InvalidateKey(ctx context.Context, in *InvalidateKeyRequest, opts ...grpc.CallOption) (*InvalidateKeyResponse, error) {\n\tout := new(InvalidateKeyResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/InvalidateKey\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) CreateOrg(ctx context.Context, in *CreateOrgRequest, opts ...grpc.CallOption) (*CreateOrgResponse, error) {\n\tout := new(CreateOrgResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/CreateOrg\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetOrg(ctx context.Context, in *GetOrgRequest, opts ...grpc.CallOption) (*GetOrgResponse, error) {\n\tout := new(GetOrgResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/GetOrg\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListOrgs(ctx context.Context, in *ListOrgsRequest, opts ...grpc.CallOption) (*ListOrgsResponse, error) {\n\tout := new(ListOrgsResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/ListOrgs\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) RemoveOrg(ctx context.Context, in *RemoveOrgRequest, opts ...grpc.CallOption) (*RemoveOrgResponse, error) {\n\tout := new(RemoveOrgResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/RemoveOrg\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) InviteToOrg(ctx context.Context, in *InviteToOrgRequest, opts ...grpc.CallOption) (*InviteToOrgResponse, error) {\n\tout := new(InviteToOrgResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/InviteToOrg\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) LeaveOrg(ctx context.Context, in *LeaveOrgRequest, opts ...grpc.CallOption) (*LeaveOrgResponse, error) {\n\tout := new(LeaveOrgResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/LeaveOrg\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) SetupBilling(ctx context.Context, in *SetupBillingRequest, opts ...grpc.CallOption) (*SetupBillingResponse, error) {\n\tout := new(SetupBillingResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/SetupBilling\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetBillingSession(ctx context.Context, in *GetBillingSessionRequest, opts ...grpc.CallOption) (*GetBillingSessionResponse, error) {\n\tout := new(GetBillingSessionResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/GetBillingSession\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListBillingUsers(ctx context.Context, in *ListBillingUsersRequest, opts ...grpc.CallOption) (*ListBillingUsersResponse, error) {\n\tout := new(ListBillingUsersResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/ListBillingUsers\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) IsUsernameAvailable(ctx context.Context, in *IsUsernameAvailableRequest, opts ...grpc.CallOption) (*IsUsernameAvailableResponse, error) {\n\tout := new(IsUsernameAvailableResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/IsUsernameAvailable\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) IsOrgNameAvailable(ctx context.Context, in *IsOrgNameAvailableRequest, opts ...grpc.CallOption) (*IsOrgNameAvailableResponse, error) {\n\tout := new(IsOrgNameAvailableResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/IsOrgNameAvailable\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) DestroyAccount(ctx context.Context, in *DestroyAccountRequest, opts ...grpc.CallOption) (*DestroyAccountResponse, error) {\n\tout := new(DestroyAccountResponse)\n\terr := c.cc.Invoke(ctx, \"/api.hubd.pb.APIService/DestroyAccount\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\n// APIServiceServer is the server API for APIService service.\ntype APIServiceServer interface {\n\tBuildInfo(context.Context, *BuildInfoRequest) (*BuildInfoResponse, error)\n\tSignup(context.Context, *SignupRequest) (*SignupResponse, error)\n\tSignin(context.Context, *SigninRequest) (*SigninResponse, error)\n\tSignout(context.Context, *SignoutRequest) (*SignoutResponse, error)\n\tGetSessionInfo(context.Context, *GetSessionInfoRequest) (*GetSessionInfoResponse, error)\n\tGetIdentity(context.Context, *GetIdentityRequest) (*GetIdentityResponse, error)\n\tCreateKey(context.Context, *CreateKeyRequest) (*CreateKeyResponse, error)\n\tListKeys(context.Context, *ListKeysRequest) (*ListKeysResponse, error)\n\tInvalidateKey(context.Context, *InvalidateKeyRequest) (*InvalidateKeyResponse, error)\n\tCreateOrg(context.Context, *CreateOrgRequest) (*CreateOrgResponse, error)\n\tGetOrg(context.Context, *GetOrgRequest) (*GetOrgResponse, error)\n\tListOrgs(context.Context, *ListOrgsRequest) (*ListOrgsResponse, error)\n\tRemoveOrg(context.Context, *RemoveOrgRequest) (*RemoveOrgResponse, error)\n\tInviteToOrg(context.Context, *InviteToOrgRequest) (*InviteToOrgResponse, error)\n\tLeaveOrg(context.Context, *LeaveOrgRequest) (*LeaveOrgResponse, error)\n\tSetupBilling(context.Context, *SetupBillingRequest) (*SetupBillingResponse, error)\n\tGetBillingSession(context.Context, *GetBillingSessionRequest) (*GetBillingSessionResponse, error)\n\tListBillingUsers(context.Context, *ListBillingUsersRequest) (*ListBillingUsersResponse, error)\n\tIsUsernameAvailable(context.Context, *IsUsernameAvailableRequest) (*IsUsernameAvailableResponse, error)\n\tIsOrgNameAvailable(context.Context, *IsOrgNameAvailableRequest) (*IsOrgNameAvailableResponse, error)\n\tDestroyAccount(context.Context, *DestroyAccountRequest) (*DestroyAccountResponse, error)\n}\n\n// UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.\ntype UnimplementedAPIServiceServer struct {\n}\n\nfunc (*UnimplementedAPIServiceServer) BuildInfo(context.Context, *BuildInfoRequest) (*BuildInfoResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method BuildInfo not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Signup(context.Context, *SignupRequest) (*SignupResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Signup not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Signin(context.Context, *SigninRequest) (*SigninResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Signin not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) Signout(context.Context, *SignoutRequest) (*SignoutResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Signout not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetSessionInfo(context.Context, *GetSessionInfoRequest) (*GetSessionInfoResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetSessionInfo not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetIdentity(context.Context, *GetIdentityRequest) (*GetIdentityResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetIdentity not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) CreateKey(context.Context, *CreateKeyRequest) (*CreateKeyResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method CreateKey not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListKeys(context.Context, *ListKeysRequest) (*ListKeysResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListKeys not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) InvalidateKey(context.Context, *InvalidateKeyRequest) (*InvalidateKeyResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method InvalidateKey not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) CreateOrg(context.Context, *CreateOrgRequest) (*CreateOrgResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method CreateOrg not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetOrg(context.Context, *GetOrgRequest) (*GetOrgResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetOrg not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListOrgs(context.Context, *ListOrgsRequest) (*ListOrgsResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListOrgs not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) RemoveOrg(context.Context, *RemoveOrgRequest) (*RemoveOrgResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method RemoveOrg not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) InviteToOrg(context.Context, *InviteToOrgRequest) (*InviteToOrgResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method InviteToOrg not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) LeaveOrg(context.Context, *LeaveOrgRequest) (*LeaveOrgResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method LeaveOrg not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) SetupBilling(context.Context, *SetupBillingRequest) (*SetupBillingResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method SetupBilling not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetBillingSession(context.Context, *GetBillingSessionRequest) (*GetBillingSessionResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetBillingSession not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListBillingUsers(context.Context, *ListBillingUsersRequest) (*ListBillingUsersResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListBillingUsers not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) IsUsernameAvailable(context.Context, *IsUsernameAvailableRequest) (*IsUsernameAvailableResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method IsUsernameAvailable not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) IsOrgNameAvailable(context.Context, *IsOrgNameAvailableRequest) (*IsOrgNameAvailableResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method IsOrgNameAvailable not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) DestroyAccount(context.Context, *DestroyAccountRequest) (*DestroyAccountResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method DestroyAccount not implemented\")\n}\n\nfunc RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer) {\n\ts.RegisterService(&_APIService_serviceDesc, srv)\n}\n\nfunc _APIService_BuildInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(BuildInfoRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).BuildInfo(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/BuildInfo\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).BuildInfo(ctx, req.(*BuildInfoRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Signup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SignupRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Signup(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/Signup\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Signup(ctx, req.(*SignupRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Signin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SigninRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Signin(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/Signin\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Signin(ctx, req.(*SigninRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_Signout_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SignoutRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).Signout(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/Signout\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).Signout(ctx, req.(*SignoutRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetSessionInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetSessionInfoRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetSessionInfo(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/GetSessionInfo\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetSessionInfo(ctx, req.(*GetSessionInfoRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetIdentity_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetIdentityRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetIdentity(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/GetIdentity\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetIdentity(ctx, req.(*GetIdentityRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_CreateKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CreateKeyRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).CreateKey(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/CreateKey\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).CreateKey(ctx, req.(*CreateKeyRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListKeys_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListKeysRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListKeys(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/ListKeys\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListKeys(ctx, req.(*ListKeysRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_InvalidateKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(InvalidateKeyRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).InvalidateKey(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/InvalidateKey\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).InvalidateKey(ctx, req.(*InvalidateKeyRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_CreateOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CreateOrgRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).CreateOrg(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/CreateOrg\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).CreateOrg(ctx, req.(*CreateOrgRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetOrgRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetOrg(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/GetOrg\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetOrg(ctx, req.(*GetOrgRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListOrgs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListOrgsRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListOrgs(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/ListOrgs\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListOrgs(ctx, req.(*ListOrgsRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_RemoveOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(RemoveOrgRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).RemoveOrg(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/RemoveOrg\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).RemoveOrg(ctx, req.(*RemoveOrgRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_InviteToOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(InviteToOrgRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).InviteToOrg(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/InviteToOrg\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).InviteToOrg(ctx, req.(*InviteToOrgRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_LeaveOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(LeaveOrgRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).LeaveOrg(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/LeaveOrg\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).LeaveOrg(ctx, req.(*LeaveOrgRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_SetupBilling_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SetupBillingRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).SetupBilling(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/SetupBilling\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).SetupBilling(ctx, req.(*SetupBillingRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetBillingSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetBillingSessionRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetBillingSession(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/GetBillingSession\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetBillingSession(ctx, req.(*GetBillingSessionRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListBillingUsers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListBillingUsersRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListBillingUsers(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/ListBillingUsers\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListBillingUsers(ctx, req.(*ListBillingUsersRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_IsUsernameAvailable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(IsUsernameAvailableRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).IsUsernameAvailable(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/IsUsernameAvailable\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).IsUsernameAvailable(ctx, req.(*IsUsernameAvailableRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_IsOrgNameAvailable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(IsOrgNameAvailableRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).IsOrgNameAvailable(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/IsOrgNameAvailable\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).IsOrgNameAvailable(ctx, req.(*IsOrgNameAvailableRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_DestroyAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(DestroyAccountRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).DestroyAccount(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.hubd.pb.APIService/DestroyAccount\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).DestroyAccount(ctx, req.(*DestroyAccountRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nvar _APIService_serviceDesc = grpc.ServiceDesc{\n\tServiceName: \"api.hubd.pb.APIService\",\n\tHandlerType: (*APIServiceServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"BuildInfo\",\n\t\t\tHandler:    _APIService_BuildInfo_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Signup\",\n\t\t\tHandler:    _APIService_Signup_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Signin\",\n\t\t\tHandler:    _APIService_Signin_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"Signout\",\n\t\t\tHandler:    _APIService_Signout_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetSessionInfo\",\n\t\t\tHandler:    _APIService_GetSessionInfo_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetIdentity\",\n\t\t\tHandler:    _APIService_GetIdentity_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"CreateKey\",\n\t\t\tHandler:    _APIService_CreateKey_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListKeys\",\n\t\t\tHandler:    _APIService_ListKeys_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"InvalidateKey\",\n\t\t\tHandler:    _APIService_InvalidateKey_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"CreateOrg\",\n\t\t\tHandler:    _APIService_CreateOrg_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetOrg\",\n\t\t\tHandler:    _APIService_GetOrg_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListOrgs\",\n\t\t\tHandler:    _APIService_ListOrgs_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"RemoveOrg\",\n\t\t\tHandler:    _APIService_RemoveOrg_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"InviteToOrg\",\n\t\t\tHandler:    _APIService_InviteToOrg_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"LeaveOrg\",\n\t\t\tHandler:    _APIService_LeaveOrg_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"SetupBilling\",\n\t\t\tHandler:    _APIService_SetupBilling_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetBillingSession\",\n\t\t\tHandler:    _APIService_GetBillingSession_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListBillingUsers\",\n\t\t\tHandler:    _APIService_ListBillingUsers_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"IsUsernameAvailable\",\n\t\t\tHandler:    _APIService_IsUsernameAvailable_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"IsOrgNameAvailable\",\n\t\t\tHandler:    _APIService_IsOrgNameAvailable_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"DestroyAccount\",\n\t\t\tHandler:    _APIService_DestroyAccount_Handler,\n\t\t},\n\t},\n\tStreams:  []grpc.StreamDesc{},\n\tMetadata: \"api/hubd/pb/hubd.proto\",\n}\n"
  },
  {
    "path": "api/hubd/pb/hubd.proto",
    "content": "syntax = \"proto3\";\npackage api.hubd.pb;\noption go_package = \"github.com/textileio/textile/v2/api/hubd/pb\";\n\nimport \"api/billingd/pb/billingd.proto\";\n\nmessage BuildInfoRequest {}\n\nmessage BuildInfoResponse {\n    string git_commit = 1;\n    string git_branch = 2;\n    string git_state = 3;\n    string git_summary = 4;\n    string build_date = 5;\n    string version = 6;\n}\n\nmessage SignupRequest {\n    string username = 1;\n    string email = 2;\n}\n\nmessage SignupResponse {\n    bytes key = 1;\n    string session = 2;\n}\n\nmessage SigninRequest {\n    string username_or_email = 1;\n}\n\nmessage SigninResponse {\n    bytes key = 1;\n    string session = 2;\n}\n\nmessage SignoutRequest {}\n\nmessage SignoutResponse {}\n\nmessage GetSessionInfoRequest {}\n\nmessage GetSessionInfoResponse {\n    bytes key = 1;\n    string username = 2;\n    string email = 3;\n}\n\nmessage GetIdentityRequest {}\n\nmessage GetIdentityResponse {\n    bytes identity = 1;\n}\n\nenum KeyType {\n    KEY_TYPE_UNSPECIFIED = 0;\n    KEY_TYPE_ACCOUNT = 1;\n    KEY_TYPE_USER = 2;\n}\n\nmessage KeyInfo {\n    string key = 1;\n    string secret = 2;\n    KeyType type = 3;\n    bool valid = 4;\n    int32 threads = 5;\n    bool secure = 6;\n}\n\nmessage CreateKeyRequest {\n    KeyType type = 1;\n    bool secure = 2;\n}\n\nmessage CreateKeyResponse {\n    KeyInfo key_info = 1;\n}\n\nmessage InvalidateKeyRequest {\n    string key = 1;\n}\n\nmessage InvalidateKeyResponse {}\n\nmessage ListKeysRequest {}\n\nmessage ListKeysResponse {\n    repeated KeyInfo list = 1;\n}\n\nmessage OrgInfo {\n    bytes key = 1;\n    string name = 2;\n    string slug = 3;\n    string host = 4;\n    repeated Member members = 5;\n    int64 created_at = 6;\n\n    message Member {\n        bytes key = 1;\n        string username = 2;\n        string role = 3;\n    }\n}\n\nmessage CreateOrgRequest {\n    string name = 1;\n}\n\nmessage CreateOrgResponse {\n    OrgInfo org_info = 1;\n}\n\nmessage GetOrgRequest {}\n\nmessage GetOrgResponse {\n    OrgInfo org_info = 1;\n}\n\nmessage ListOrgsRequest {}\n\nmessage ListOrgsResponse {\n    repeated OrgInfo list = 1;\n}\n\nmessage RemoveOrgRequest {}\n\nmessage RemoveOrgResponse {}\n\nmessage InviteToOrgRequest {\n    string email = 1;\n}\n\nmessage InviteToOrgResponse {\n    string token = 1;\n}\n\nmessage LeaveOrgRequest {}\n\nmessage LeaveOrgResponse {}\n\nmessage SetupBillingRequest {}\n\nmessage SetupBillingResponse {}\n\nmessage GetBillingSessionRequest {}\n\nmessage GetBillingSessionResponse {\n    string url = 1;\n}\n\nmessage ListBillingUsersRequest {\n    int64 offset = 1;\n    int64 limit = 2;\n}\n\nmessage ListBillingUsersResponse {\n    repeated api.billingd.pb.GetCustomerResponse users = 1;\n    int64 next_offset = 2;\n}\n\nmessage IsUsernameAvailableRequest {\n    string username = 1;\n}\n\nmessage IsUsernameAvailableResponse {}\n\nmessage IsOrgNameAvailableRequest {\n    string name = 1;\n}\n\nmessage IsOrgNameAvailableResponse {\n    string slug = 1;\n    string host = 2;\n}\n\nmessage DestroyAccountRequest {}\n\nmessage DestroyAccountResponse {}\n\nservice APIService {\n    rpc BuildInfo(BuildInfoRequest) returns (BuildInfoResponse) {}\n\n    rpc Signup(SignupRequest) returns (SignupResponse) {}\n    rpc Signin(SigninRequest) returns (SigninResponse) {}\n    rpc Signout(SignoutRequest) returns (SignoutResponse) {}\n\n    rpc GetSessionInfo(GetSessionInfoRequest) returns (GetSessionInfoResponse) {}\n    rpc GetIdentity(GetIdentityRequest) returns (GetIdentityResponse) {}\n\n    rpc CreateKey(CreateKeyRequest) returns (CreateKeyResponse) {}\n    rpc ListKeys(ListKeysRequest) returns (ListKeysResponse) {}\n    rpc InvalidateKey(InvalidateKeyRequest) returns (InvalidateKeyResponse) {}\n\n    rpc CreateOrg(CreateOrgRequest) returns (CreateOrgResponse) {}\n    rpc GetOrg(GetOrgRequest) returns (GetOrgResponse) {}\n    rpc ListOrgs(ListOrgsRequest) returns (ListOrgsResponse) {}\n    rpc RemoveOrg(RemoveOrgRequest) returns (RemoveOrgResponse) {}\n    rpc InviteToOrg(InviteToOrgRequest) returns (InviteToOrgResponse) {}\n    rpc LeaveOrg(LeaveOrgRequest) returns (LeaveOrgResponse) {}\n\n    rpc SetupBilling(SetupBillingRequest) returns (SetupBillingResponse) {}\n    rpc GetBillingSession(GetBillingSessionRequest) returns (GetBillingSessionResponse) {}\n    rpc ListBillingUsers(ListBillingUsersRequest) returns (ListBillingUsersResponse) {}\n\n    rpc IsUsernameAvailable(IsUsernameAvailableRequest) returns (IsUsernameAvailableResponse) {}\n    rpc IsOrgNameAvailable(IsOrgNameAvailableRequest) returns (IsOrgNameAvailableResponse) {}\n\n    rpc DestroyAccount(DestroyAccountRequest) returns (DestroyAccountResponse) {}\n}\n"
  },
  {
    "path": "api/hubd/pb/javascript/package.json",
    "content": "{\n  \"name\": \"@textile/hub-grpc\",\n  \"version\": \"0.0.0\",\n  \"description\": \"A client for interacting with the Textile Hub gRPC API.\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/textileio/textile.git\"\n  },\n  \"author\": \"Textile\",\n  \"license\": \"MIT\",\n  \"files\": [\n    \"api/hubd/pb/hubd_pb.js\",\n    \"api/hubd/pb/hubd_pb_service.js\",\n    \"api/hubd/pb/hubd_pb.d.ts\",\n    \"api/hubd/pb/hubd_pb_service.d.ts\",\n    \"api/billingd/pb/billingd_pb.js\",\n    \"api/billingd/pb/billingd_pb_service.js\",\n    \"api/billingd/pb/billingd_pb.d.ts\",\n    \"api/billingd/pb/billingd_pb_service.d.ts\"\n  ],\n  \"dependencies\": {\n    \"@improbable-eng/grpc-web\": \"^0.14.1\",\n    \"@types/google-protobuf\": \"^3.15.5\",\n    \"google-protobuf\": \"^3.19.4\"\n  },\n  \"devDependencies\": {\n    \"ts-protoc-gen\": \"^0.15.0\"\n  }\n}\n"
  },
  {
    "path": "api/hubd/service.go",
    "content": "package hubd\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"net/mail\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tiface \"github.com/ipfs/interface-go-ipfs-core\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\tthreads \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/broadcast\"\n\tnet \"github.com/textileio/go-threads/core/net\"\n\t\"github.com/textileio/go-threads/db\"\n\tnetclient \"github.com/textileio/go-threads/net/api/client\"\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\t\"github.com/textileio/textile/v2/api/billingd/analytics\"\n\tbilling \"github.com/textileio/textile/v2/api/billingd/client\"\n\tpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\tbi \"github.com/textileio/textile/v2/buildinfo\"\n\t\"github.com/textileio/textile/v2/email\"\n\t\"github.com/textileio/textile/v2/ipns\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\ttdb \"github.com/textileio/textile/v2/threaddb\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\nvar (\n\tlog = logging.Logger(\"hubapi\")\n\n\terrDevRequired = errors.New(\"developer account required\")\n\terrOrgRequired = errors.New(\"organization account required\")\n\n\tloginTimeout = time.Minute * 30\n\temailTimeout = time.Second * 10\n)\n\ntype Service struct {\n\tCollections         *mdb.Collections\n\tThreads             *threads.Client\n\tThreadsNet          *netclient.Client\n\tGatewayURL          string\n\tEmailClient         *email.Client\n\tEmailSessionBus     *broadcast.Broadcaster\n\tEmailSessionSecret  string\n\tIPFSClient          iface.CoreAPI\n\tIPNSManager         *ipns.Manager\n\tBillingClient       *billing.Client\n\tPowergateClient     *pow.Client\n\tPowergateAdminToken string\n}\n\n// BuildInfo provides the currently running API's build information\nfunc (s *Service) BuildInfo(_ context.Context, _ *pb.BuildInfoRequest) (*pb.BuildInfoResponse, error) {\n\treturn &pb.BuildInfoResponse{\n\t\tGitCommit:  bi.GitCommit,\n\t\tGitBranch:  bi.GitBranch,\n\t\tGitState:   bi.GitState,\n\t\tGitSummary: bi.GitSummary,\n\t\tBuildDate:  bi.BuildDate,\n\t\tVersion:    bi.Version,\n\t}, nil\n}\n\nfunc (s *Service) Signup(ctx context.Context, req *pb.SignupRequest) (*pb.SignupResponse, error) {\n\tlog.Debugf(\"received signup request\")\n\n\t// NOTICE: this is an ad-hoc change to disable signups due to the Hub shutdown.\n\treturn nil, fmt.Errorf(\"signups are disabled\")\n}\n\nfunc (s *Service) Signin(ctx context.Context, req *pb.SigninRequest) (*pb.SigninResponse, error) {\n\tlog.Debugf(\"received signin request\")\n\n\tdev, err := s.Collections.Accounts.GetByUsernameOrEmail(ctx, req.UsernameOrEmail)\n\tif err != nil {\n\t\treturn nil, status.Error(codes.NotFound, \"User not found\")\n\t}\n\n\tsecret := getSessionSecret(s.EmailSessionSecret)\n\tectx, cancel := context.WithTimeout(ctx, emailTimeout)\n\tdefer cancel()\n\tif err = s.EmailClient.ConfirmAddress(\n\t\tectx,\n\t\tdev.Key.String(),\n\t\tdev.Username,\n\t\tdev.Email,\n\t\ts.GatewayURL,\n\t\tsecret,\n\t); err != nil {\n\t\treturn nil, err\n\t}\n\tif !s.awaitVerification(secret) {\n\t\treturn nil, status.Error(codes.Unauthenticated, \"Could not verify email address\")\n\t}\n\n\tsession, err := s.Collections.Sessions.Create(ctx, dev.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tkey, err := dev.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif s.BillingClient != nil {\n\t\ts.BillingClient.TrackEvent(ctx, dev.Key, mdb.Dev, true, analytics.SignIn, nil)\n\t}\n\n\treturn &pb.SigninResponse{\n\t\tKey:     key,\n\t\tSession: session.ID,\n\t}, nil\n}\n\n// awaitVerification waits for a dev to verify their email via a sent email.\nfunc (s *Service) awaitVerification(secret string) bool {\n\tlisten := s.EmailSessionBus.Listen()\n\tch := make(chan struct{})\n\ttimer := time.NewTimer(loginTimeout)\n\tgo func() {\n\t\tfor i := range listen.Channel() {\n\t\t\tif r, ok := i.(string); ok && r == secret {\n\t\t\t\tch <- struct{}{}\n\t\t\t}\n\t\t}\n\t}()\n\tselect {\n\tcase <-ch:\n\t\tlisten.Discard()\n\t\ttimer.Stop()\n\t\treturn true\n\tcase <-timer.C:\n\t\tlisten.Discard()\n\t\treturn false\n\t}\n}\n\nfunc (s *Service) powergateAdminCtx(ctx context.Context) context.Context {\n\treturn context.WithValue(ctx, pow.AdminKey, s.PowergateAdminToken)\n}\n\n// getSessionSecret returns a random secret for use with email verification.\n// To cover tests that need to auto-verify, the API can be started with a static secret.\nfunc getSessionSecret(secret string) string {\n\tif secret != \"\" {\n\t\treturn secret\n\t}\n\treturn util.MakeToken(44)\n}\n\nfunc (s *Service) Signout(ctx context.Context, _ *pb.SignoutRequest) (*pb.SignoutResponse, error) {\n\tlog.Debugf(\"received signout request\")\n\n\tsession, ok := mdb.SessionFromContext(ctx)\n\tif !ok {\n\t\treturn nil, status.Errorf(codes.NotFound, \"session not found\")\n\t}\n\tif err := s.Collections.Sessions.Delete(ctx, session.ID); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.SignoutResponse{}, nil\n}\n\nfunc (s *Service) GetSessionInfo(ctx context.Context, _ *pb.GetSessionInfoRequest) (*pb.GetSessionInfoResponse, error) {\n\tlog.Debugf(\"received get session info request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\tkey, err := account.User.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.GetSessionInfoResponse{\n\t\tKey:      key,\n\t\tUsername: account.User.Username,\n\t\tEmail:    account.User.Email,\n\t}, nil\n}\n\nfunc (s *Service) GetIdentity(ctx context.Context, _ *pb.GetIdentityRequest) (*pb.GetIdentityResponse, error) {\n\tlog.Debugf(\"received get identity request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdata, err := account.Owner().Secret.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.GetIdentityResponse{\n\t\tIdentity: data,\n\t}, nil\n}\n\nfunc (s *Service) CreateKey(ctx context.Context, req *pb.CreateKeyRequest) (*pb.CreateKeyResponse, error) {\n\tlog.Debugf(\"received create key request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar keyType mdb.APIKeyType\n\tswitch req.Type {\n\tcase pb.KeyType_KEY_TYPE_ACCOUNT:\n\tcase pb.KeyType_KEY_TYPE_UNSPECIFIED:\n\t\tkeyType = mdb.AccountKey\n\tcase pb.KeyType_KEY_TYPE_USER:\n\t\tkeyType = mdb.UserKey\n\tdefault:\n\t\treturn nil, status.Errorf(codes.InvalidArgument, \"invalid key type: %v\", req.Type.String())\n\t}\n\tkey, err := s.Collections.APIKeys.Create(ctx, account.Owner().Key, keyType, req.Secure)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt, err := keyTypeToPb(key.Type)\n\tif err != nil {\n\t\treturn nil, status.Errorf(codes.Internal, \"mapping key type: %v\", key.Type)\n\t}\n\n\tvar event analytics.Event\n\tif keyType == mdb.AccountKey {\n\t\tevent = analytics.KeyAccountCreated\n\t} else {\n\t\tevent = analytics.KeyUserCreated\n\t}\n\tif s.BillingClient != nil {\n\t\tpayload := map[string]string{\n\t\t\t\"secure_key\": fmt.Sprintf(\"%t\", req.Secure),\n\t\t}\n\t\tif account.User != nil {\n\t\t\tpayload[\"member\"] = account.User.Key.String()\n\t\t\tpayload[\"member_username\"] = account.User.Username\n\t\t\tpayload[\"member_email\"] = account.User.Email\n\t\t}\n\t\t// Same \"member\" based payload for Dev or Org account types so that same\n\t\t// downstream logic/templating can be used.\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\taccount.Owner().Type,\n\t\t\ttrue,\n\t\t\tevent,\n\t\t\tpayload,\n\t\t)\n\t}\n\n\treturn &pb.CreateKeyResponse{\n\t\tKeyInfo: &pb.KeyInfo{\n\t\t\tKey:     key.Key,\n\t\t\tSecret:  key.Secret,\n\t\t\tType:    t,\n\t\t\tValid:   true,\n\t\t\tThreads: 0,\n\t\t\tSecure:  key.Secure,\n\t\t},\n\t}, nil\n}\n\nfunc (s *Service) InvalidateKey(ctx context.Context, req *pb.InvalidateKeyRequest) (*pb.InvalidateKeyResponse, error) {\n\tlog.Debugf(\"received invalidate key request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tkey, err := s.Collections.APIKeys.Get(ctx, req.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !account.Owner().Key.Equals(key.Owner) {\n\t\treturn nil, status.Error(codes.PermissionDenied, \"User does not own key\")\n\t}\n\tif err := s.Collections.APIKeys.Invalidate(ctx, req.Key); err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn &pb.InvalidateKeyResponse{}, nil\n}\n\nfunc (s *Service) ListKeys(ctx context.Context, _ *pb.ListKeysRequest) (*pb.ListKeysResponse, error) {\n\tlog.Debugf(\"received list keys request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tkeys, err := s.Collections.APIKeys.ListByOwner(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlist := make([]*pb.KeyInfo, len(keys))\n\tfor i, key := range keys {\n\t\tt, err := keyTypeToPb(key.Type)\n\t\tif err != nil {\n\t\t\treturn nil, status.Errorf(codes.Internal, \"mapping key type: %v\", key.Type)\n\t\t}\n\t\tts, err := s.Collections.Threads.ListByKey(ctx, key.Key)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tlist[i] = &pb.KeyInfo{\n\t\t\tKey:     key.Key,\n\t\t\tSecret:  key.Secret,\n\t\t\tType:    t,\n\t\t\tValid:   key.Valid,\n\t\t\tThreads: int32(len(ts)),\n\t\t\tSecure:  key.Secure,\n\t\t}\n\t}\n\treturn &pb.ListKeysResponse{List: list}, nil\n}\n\nfunc (s *Service) CreateOrg(ctx context.Context, req *pb.CreateOrgRequest) (*pb.CreateOrgResponse, error) {\n\tlog.Debugf(\"received create org request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\tvar powInfo *mdb.PowInfo\n\tif s.PowergateClient != nil {\n\t\tres, err := s.PowergateClient.Admin.Users.Create(s.powergateAdminCtx(ctx))\n\t\tif err != nil {\n\t\t\treturn nil, status.Errorf(codes.Internal, \"Unable to create user: %v\", err)\n\t\t}\n\t\tpowInfo = &mdb.PowInfo{ID: res.User.Id, Token: res.User.Token}\n\t}\n\torg, err := s.Collections.Accounts.CreateOrg(ctx, req.Name, []mdb.Member{{\n\t\tKey:      account.User.Key,\n\t\tUsername: account.User.Username,\n\t\tRole:     mdb.OrgOwner,\n\t}}, powInfo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ttok, err := s.Threads.GetToken(ctx, org.Secret)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif err := s.Collections.Accounts.SetToken(ctx, org.Key, tok); err != nil {\n\t\treturn nil, err\n\t}\n\n\torgInfo, err := s.orgToPbOrg(org)\n\tif err != nil {\n\t\treturn nil, status.Errorf(codes.Internal, \"Unable to encode OrgInfo: %v\", err)\n\t}\n\n\tif s.BillingClient != nil {\n\t\t// Identify the Org\n\t\ts.BillingClient.Identify(ctx, org.Key, org.Type, true, account.User.Email, map[string]string{\n\t\t\t\"username\":            org.Username,\n\t\t\t\"created_by\":          account.User.Key.String(),\n\t\t\t\"created_by_username\": account.User.Username,\n\t\t\t\"created_by_email\":    account.User.Email,\n\t\t})\n\t\t// Attribute event to Dev\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.User.Key,\n\t\t\taccount.User.Type,\n\t\t\ttrue,\n\t\t\tanalytics.OrgCreated,\n\t\t\tmap[string]string{\n\t\t\t\t\"org_name\": org.Name,\n\t\t\t\t\"org_key\":  org.Key.String(),\n\t\t\t},\n\t\t)\n\t}\n\n\treturn &pb.CreateOrgResponse{\n\t\tOrgInfo: orgInfo,\n\t}, nil\n}\n\nfunc (s *Service) GetOrg(ctx context.Context, _ *pb.GetOrgRequest) (*pb.GetOrgResponse, error) {\n\tlog.Debugf(\"received get org request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.Org == nil {\n\t\treturn nil, status.Errorf(codes.FailedPrecondition, errOrgRequired.Error())\n\t}\n\torgInfo, err := s.orgToPbOrg(account.Org)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"encoding org: %v\", err)\n\t}\n\treturn &pb.GetOrgResponse{\n\t\tOrgInfo: orgInfo,\n\t}, nil\n}\n\nfunc (s *Service) orgToPbOrg(org *mdb.Account) (*pb.OrgInfo, error) {\n\tmembers := make([]*pb.OrgInfo_Member, len(org.Members))\n\tfor i, m := range org.Members {\n\t\tkey, err := m.Key.MarshalBinary()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tmembers[i] = &pb.OrgInfo_Member{\n\t\t\tKey:      key,\n\t\t\tUsername: m.Username,\n\t\t\tRole:     m.Role.String(),\n\t\t}\n\t}\n\tkey, err := org.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.OrgInfo{\n\t\tKey:       key,\n\t\tName:      org.Name,\n\t\tSlug:      org.Username,\n\t\tHost:      s.GatewayURL,\n\t\tMembers:   members,\n\t\tCreatedAt: org.CreatedAt.Unix(),\n\t}, nil\n}\n\nfunc (s *Service) ListOrgs(ctx context.Context, _ *pb.ListOrgsRequest) (*pb.ListOrgsResponse, error) {\n\tlog.Debugf(\"received list orgs request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\torgs, err := s.Collections.Accounts.ListByMember(ctx, account.User.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlist := make([]*pb.OrgInfo, len(orgs))\n\tfor i, org := range orgs {\n\t\tlist[i], err = s.orgToPbOrg(&org)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &pb.ListOrgsResponse{List: list}, nil\n}\n\nfunc (s *Service) RemoveOrg(ctx context.Context, _ *pb.RemoveOrgRequest) (*pb.RemoveOrgResponse, error) {\n\tlog.Debugf(\"received remove org request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\tif account.Org == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errOrgRequired.Error())\n\t}\n\tisOwner, err := s.Collections.Accounts.IsOwner(ctx, account.Org.Username, account.User.Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !isOwner {\n\t\treturn nil, status.Error(codes.PermissionDenied, \"User must be an org owner\")\n\t}\n\n\tif err = s.destroyAccount(ctx, account.Org); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif s.BillingClient != nil {\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\taccount.Owner().Type,\n\t\t\ttrue,\n\t\t\tanalytics.OrgDestroyed,\n\t\t\tmap[string]string{\n\t\t\t\t\"member\":          account.User.Key.String(),\n\t\t\t\t\"member_username\": account.User.Username,\n\t\t\t\t\"member_email\":    account.User.Email,\n\t\t\t},\n\t\t)\n\t}\n\n\treturn &pb.RemoveOrgResponse{}, nil\n}\n\nfunc (s *Service) InviteToOrg(ctx context.Context, req *pb.InviteToOrgRequest) (*pb.InviteToOrgResponse, error) {\n\tlog.Debugf(\"received invite to org request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\tif account.Org == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errOrgRequired.Error())\n\t}\n\tif _, err := mail.ParseAddress(req.Email); err != nil {\n\t\treturn nil, status.Error(codes.FailedPrecondition, \"Email address in not valid\")\n\t}\n\tinvite, err := s.Collections.Invites.Create(ctx, account.User.Key, account.Org.Username, req.Email)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tectx, cancel := context.WithTimeout(ctx, emailTimeout)\n\tdefer cancel()\n\tif err = s.EmailClient.InviteAddress(\n\t\tectx,\n\t\taccount.User.Key.String(),\n\t\taccount.Org.Name,\n\t\taccount.User.Email,\n\t\treq.Email,\n\t\ts.GatewayURL,\n\t\tinvite.Token,\n\t); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif s.BillingClient != nil {\n\n\t\tpayload := map[string]string{\n\t\t\t\"invitee\": req.Email,\n\t\t}\n\t\tif account.User != nil {\n\t\t\tpayload[\"member\"] = account.User.Key.String()\n\t\t\tpayload[\"member_username\"] = account.User.Username\n\t\t\tpayload[\"member_email\"] = account.User.Email\n\t\t}\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\taccount.Owner().Type,\n\t\t\ttrue,\n\t\t\tanalytics.OrgInviteCreated,\n\t\t\tpayload,\n\t\t)\n\t}\n\n\treturn &pb.InviteToOrgResponse{Token: invite.Token}, nil\n}\n\nfunc (s *Service) LeaveOrg(ctx context.Context, _ *pb.LeaveOrgRequest) (*pb.LeaveOrgResponse, error) {\n\tlog.Debugf(\"received leave org request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\tif account.Org == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errOrgRequired.Error())\n\t}\n\tif err := s.Collections.Accounts.RemoveMember(ctx, account.Org.Username, account.User.Key); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := s.Collections.Invites.DeleteByFromAndOrg(ctx, account.User.Key, account.Org.Username); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif s.BillingClient != nil {\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\taccount.Owner().Type,\n\t\t\ttrue,\n\t\t\tanalytics.OrgLeave,\n\t\t\tmap[string]string{\n\t\t\t\t\"member\":          account.User.Key.String(),\n\t\t\t\t\"member_username\": account.User.Username,\n\t\t\t\t\"member_email\":    account.User.Email,\n\t\t\t},\n\t\t)\n\t}\n\n\treturn &pb.LeaveOrgResponse{}, nil\n}\n\nfunc (s *Service) SetupBilling(ctx context.Context, _ *pb.SetupBillingRequest) (*pb.SetupBillingResponse, error) {\n\tlog.Debugf(\"received setup billing request\")\n\n\tif s.BillingClient == nil {\n\t\treturn nil, fmt.Errorf(\"billing is not enabled\")\n\t}\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif err := s.BillingClient.RecreateCustomerSubscription(\n\t\tctx,\n\t\taccount.Owner().Key,\n\t); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif s.BillingClient != nil {\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\taccount.Owner().Type,\n\t\t\ttrue,\n\t\t\tanalytics.BillingSetup,\n\t\t\tmap[string]string{\n\t\t\t\t\"member\":          account.User.Key.String(),\n\t\t\t\t\"member_username\": account.User.Username,\n\t\t\t\t\"member_email\":    account.User.Email,\n\t\t\t},\n\t\t)\n\t}\n\n\treturn &pb.SetupBillingResponse{}, nil\n}\n\nfunc (s *Service) GetBillingSession(\n\tctx context.Context,\n\t_ *pb.GetBillingSessionRequest,\n) (*pb.GetBillingSessionResponse, error) {\n\tlog.Debugf(\"received get billing session request\")\n\n\tif s.BillingClient == nil {\n\t\treturn nil, fmt.Errorf(\"billing is not enabled\")\n\t}\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsession, err := s.BillingClient.GetCustomerSession(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.GetBillingSessionResponse{Url: session.Url}, nil\n}\n\nfunc (s *Service) ListBillingUsers(\n\tctx context.Context,\n\treq *pb.ListBillingUsersRequest,\n) (*pb.ListBillingUsersResponse, error) {\n\tlog.Debugf(\"received list billing users request\")\n\n\tif s.BillingClient == nil {\n\t\treturn nil, fmt.Errorf(\"billing is not enabled\")\n\t}\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tlist, err := s.BillingClient.ListDependentCustomers(\n\t\tctx,\n\t\taccount.Owner().Key,\n\t\tbilling.WithOffset(req.Offset),\n\t\tbilling.WithLimit(req.Limit),\n\t)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn &pb.ListBillingUsersResponse{\n\t\tUsers:      list.Customers,\n\t\tNextOffset: list.NextOffset,\n\t}, nil\n}\n\nfunc (s *Service) IsUsernameAvailable(\n\tctx context.Context,\n\treq *pb.IsUsernameAvailableRequest,\n) (*pb.IsUsernameAvailableResponse, error) {\n\tlog.Debugf(\"received is username available request\")\n\n\tif err := s.Collections.Accounts.IsUsernameAvailable(ctx, req.Username); err != nil {\n\t\treturn nil, status.Error(codes.FailedPrecondition, err.Error())\n\t}\n\treturn &pb.IsUsernameAvailableResponse{}, nil\n}\n\nfunc (s *Service) IsOrgNameAvailable(\n\tctx context.Context,\n\treq *pb.IsOrgNameAvailableRequest,\n) (*pb.IsOrgNameAvailableResponse, error) {\n\tlog.Debugf(\"received is org name available request\")\n\n\tslug, err := s.Collections.Accounts.IsNameAvailable(ctx, req.Name)\n\tif err != nil {\n\t\treturn nil, status.Error(codes.FailedPrecondition, err.Error())\n\t}\n\treturn &pb.IsOrgNameAvailableResponse{\n\t\tSlug: slug,\n\t\tHost: s.GatewayURL,\n\t}, nil\n}\n\nfunc (s *Service) DestroyAccount(ctx context.Context, _ *pb.DestroyAccountRequest) (*pb.DestroyAccountResponse, error) {\n\tlog.Debugf(\"received destroy account request\")\n\n\taccount, err := getAccount(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif account.User == nil {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, errDevRequired.Error())\n\t}\n\tif err := s.destroyAccount(ctx, account.User); err != nil {\n\t\treturn nil, err\n\t}\n\tif s.BillingClient != nil {\n\t\ts.BillingClient.TrackEvent(\n\t\t\tctx,\n\t\t\taccount.Owner().Key,\n\t\t\taccount.Owner().Type,\n\t\t\ttrue,\n\t\t\tanalytics.AccountDestroyed,\n\t\t\tnil,\n\t\t)\n\t}\n\n\treturn &pb.DestroyAccountResponse{}, nil\n}\n\nfunc (s *Service) destroyAccount(ctx context.Context, a *mdb.Account) error {\n\t// First, ensure that the account does not own any orgs\n\tif a.Type == mdb.Dev {\n\t\torgs, err := s.Collections.Accounts.ListByOwner(ctx, a.Key)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif len(orgs) > 0 {\n\t\t\treturn status.Error(codes.FailedPrecondition, \"Account not empty (delete orgs first)\")\n\t\t}\n\t}\n\n\t// Collect threads owned directly or via an API key\n\tts, err := s.Collections.Threads.ListByOwner(ctx, a.Key)\n\tif err != nil {\n\t\treturn err\n\t}\n\tkeys, err := s.Collections.APIKeys.ListByOwner(ctx, a.Key)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor _, k := range keys {\n\t\tkts, err := s.Collections.Threads.ListByKey(ctx, k.Key)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tts = append(ts, kts...)\n\t}\n\n\tfor _, t := range ts {\n\t\tif t.IsDB {\n\t\t\t// Clean up bucket pins, keys, and dns records.\n\t\t\tbres, err := s.Threads.Find(\n\t\t\t\tctx,\n\t\t\t\tt.ID,\n\t\t\t\tbuckets.CollectionName,\n\t\t\t\t&db.Query{},\n\t\t\t\t&tdb.Bucket{},\n\t\t\t\tdb.WithTxnToken(a.Token),\n\t\t\t)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tfor _, b := range bres.([]*tdb.Bucket) {\n\t\t\t\tif err = s.IPFSClient.Pin().Rm(ctx, path.New(b.Path)); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tif err = s.IPNSManager.RemoveKey(ctx, b.Key); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Delete the entire DB.\n\t\t\tif err := s.Threads.DeleteDB(ctx, t.ID, db.WithManagedToken(a.Token)); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t} else {\n\t\t\t// Delete the entire thread.\n\t\t\tif err := s.ThreadsNet.DeleteThread(ctx, t.ID, net.WithThreadToken(a.Token)); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\t// Stop tracking the deleted threads.\n\tif err = s.Collections.Threads.DeleteByOwner(ctx, a.Key); err != nil {\n\t\treturn err\n\t}\n\n\t// Clean up other associated objects.\n\tif err = s.Collections.APIKeys.DeleteByOwner(ctx, a.Key); err != nil {\n\t\treturn err\n\t}\n\tif err = s.Collections.Sessions.DeleteByOwner(ctx, a.Key); err != nil {\n\t\treturn err\n\t}\n\tif a.Type == mdb.Org {\n\t\tif err = s.Collections.Invites.DeleteByOrg(ctx, a.Username); err != nil {\n\t\t\treturn err\n\t\t}\n\t} else {\n\t\tif err = s.Collections.Invites.DeleteByFrom(ctx, a.Key); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Finally, delete the account.\n\treturn s.Collections.Accounts.Delete(ctx, a.Key)\n}\n\nfunc getAccount(ctx context.Context) (*mdb.AccountCtx, error) {\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tif account.Owner().Type == mdb.User {\n\t\treturn nil, status.Errorf(codes.InvalidArgument, \"account type not supported\")\n\t}\n\treturn account, nil\n}\n\nfunc keyTypeToPb(t mdb.APIKeyType) (pb.KeyType, error) {\n\tswitch t {\n\tcase mdb.AccountKey:\n\t\treturn pb.KeyType_KEY_TYPE_ACCOUNT, nil\n\tcase mdb.UserKey:\n\t\treturn pb.KeyType_KEY_TYPE_USER, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unknown key type: %v\", t)\n\t}\n}\n"
  },
  {
    "path": "api/mindexd/Dockerfile",
    "content": "FROM golang:1.16.0-buster\nMAINTAINER Textile <contact@textile.io>\n\n# This is (in large part) copied (with love) from\n# https://hub.docker.com/r/ipfs/go-ipfs/dockerfile\n\n# Install deps\nRUN apt-get update && apt-get install -y \\\n  libssl-dev \\\n  ca-certificates\n\nENV SRC_DIR /textile\n\n# Download packages first so they can be cached.\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\n# Build the thing.\nRUN cd $SRC_DIR \\\n  && TXTL_BUILD_FLAGS=\"CGO_ENABLED=0 GOOS=linux\" make build-mindexd\n\n# Get su-exec, a very minimal tool for dropping privileges,\n# and tini, a very minimal init daemon for containers\nENV SUEXEC_VERSION v0.2\nENV TINI_VERSION v0.19.0\nRUN set -eux; \\\n    dpkgArch=\"$(dpkg --print-architecture)\"; \\\n    case \"${dpkgArch##*-}\" in \\\n        \"amd64\" | \"armhf\" | \"arm64\") tiniArch=\"tini-static-$dpkgArch\" ;;\\\n        *) echo >&2 \"unsupported architecture: ${dpkgArch}\"; exit 1 ;; \\\n    esac; \\\n  cd /tmp \\\n  && git clone https://github.com/ncopa/su-exec.git \\\n  && cd su-exec \\\n  && git checkout -q $SUEXEC_VERSION \\\n  && make su-exec-static \\\n  && cd /tmp \\\n  && wget -q -O tini https://github.com/krallin/tini/releases/download/$TINI_VERSION/$tiniArch \\\n  && chmod +x tini\n\n# Now comes the actual target image, which aims to be as small as possible.\nFROM busybox:1.31.1-glibc\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\n# Get the textile binary, entrypoint script, and TLS CAs from the build container.\nENV SRC_DIR /textile\nCOPY --from=0 $SRC_DIR/mindexd /usr/local/bin/mindexd\nCOPY --from=0 /tmp/su-exec/su-exec-static /sbin/su-exec\nCOPY --from=0 /tmp/tini /sbin/tini\nCOPY --from=0 /etc/ssl/certs /etc/ssl/certs\n\n# This shared lib (part of glibc) doesn't seem to be included with busybox.\nCOPY --from=0 /lib/*-linux-gnu*/libdl.so.2 /lib/\n\n# Copy over SSL libraries.\nCOPY --from=0 /usr/lib/*-linux-gnu*/libssl.so* /usr/lib/\nCOPY --from=0 /usr/lib/*-linux-gnu*/libcrypto.so* /usr/lib/\n\n# addrApi; can be exposed to the public\nEXPOSE 5000\n# rest-api\nEXPOSE 8081\n\n# Create the repo directory.\nENV MINDEXD_PATH /data/mindexd\nRUN mkdir -p $MINDEXD_PATH \\\n  && adduser -D -h $MINDEXD_PATH -u 1000 -G users mindexd \\\n  && chown mindexd:users $MINDEXD_PATH\n\nCOPY --from=0 $SRC_DIR/api/mindexd/pb/mindexd.swagger.json /swagger.json\n\n# Switch to a non-privileged user.\nUSER mindexd\n\nENTRYPOINT [\"/sbin/tini\", \"--\", \"mindexd\"]\n"
  },
  {
    "path": "api/mindexd/Dockerfile.dev",
    "content": "FROM golang:1.16.0-buster\n\nRUN apt-get update && apt-get install -y \\\n  libssl-dev \\\n  ca-certificates\n\nRUN go get github.com/go-delve/delve/cmd/dlv\n\nENV SRC_DIR /textile\n\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\nRUN cd $SRC_DIR \\\n  && CGO_ENABLED=0 GOOS=linux go build -gcflags \"all=-N -l\" -o mindexd api/mindexd/main.go\n\nFROM debian:buster\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\nENV SRC_DIR /textile\nCOPY --from=0 /go/bin/dlv /usr/local/bin/dlv\nCOPY --from=0 /etc/ssl/certs /etc/ssl/certs\nCOPY --from=0 $SRC_DIR/mindexd /usr/local/bin/mindexd\n\nEXPOSE 5000\nEXPOSE 8081\nEXPOSE 40000\n\nENV MINDEXD_PATH /data/mindexd\nRUN adduser --home $MINDEXD_PATH --disabled-login --gecos \"\" --ingroup users mindexd\n\nUSER mindexd\n\nENTRYPOINT [\"dlv\", \"--listen=0.0.0.0:40000\", \"--headless=true\", \"--accept-multiclient\", \"--continue\", \"--api-version=2\", \"exec\", \"/usr/local/bin/mindexd\"]\n"
  },
  {
    "path": "api/mindexd/client/client.go",
    "content": "package client\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/pb\"\n\t\"google.golang.org/grpc\"\n)\n\n// Client provides the client api.\ntype Client struct {\n\tc    pb.APIServiceClient\n\tconn *grpc.ClientConn\n}\n\n// NewClient starts the client.\nfunc NewClient(target string, opts ...grpc.DialOption) (*Client, error) {\n\tconn, err := grpc.Dial(target, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Client{\n\t\tc:    pb.NewAPIServiceClient(conn),\n\t\tconn: conn,\n\t}, nil\n}\n\n// Close closes the client's grpc connection and cancels any active requests.\nfunc (c *Client) Close() error {\n\treturn c.conn.Close()\n}\n\n// GetMinerInfo returns miner's information from the index.\nfunc (c *Client) GetMinerInfo(ctx context.Context, minerAddr string) (*pb.GetMinerInfoResponse, error) {\n\treturn c.c.GetMinerInfo(ctx, &pb.GetMinerInfoRequest{\n\t\tMinerAddress: minerAddr,\n\t})\n}\n\n// CalcualteDealPrice calcualtes the deal price for the provided data for a list of miners.\nfunc (c *Client) CalculateDealPrice(ctx context.Context, minersAddr []string, dataSizeBytes int64, durationDays int64) (*pb.CalculateDealPriceResponse, error) {\n\tif len(minersAddr) == 0 {\n\t\treturn nil, fmt.Errorf(\"miner's list can't be empty\")\n\t}\n\treturn c.c.CalculateDealPrice(ctx, &pb.CalculateDealPriceRequest{\n\t\tDataSizeBytes:  dataSizeBytes,\n\t\tDurationDays:   durationDays,\n\t\tMinerAddresses: minersAddr,\n\t})\n}\n\nfunc (c *Client) QueryIndex(ctx context.Context, params *pb.QueryIndexRequest) (*pb.QueryIndexResponse, error) {\n\treturn c.c.QueryIndex(ctx, params)\n}\n"
  },
  {
    "path": "api/mindexd/collector/collector.go",
    "content": "package collector\n\nimport (\n\t\"context\"\n\t\"sync\"\n\t\"time\"\n\n\tlogger \"github.com/ipfs/go-log/v2\"\n\t\"github.com/textileio/textile/v2/api/mindexd/store\"\n)\n\nvar (\n\tlog = logger.Logger(\"collector\")\n)\n\n// Collector is responsible for fetching storage/retrieval records from\n// external Powergate instances, and merging them in a unified database.\ntype Collector struct {\n\tlock        sync.Mutex\n\tcfg         config\n\tstore       *store.Store\n\tsubscribers []chan<- struct{}\n\n\tdaemonCtx       context.Context\n\tdaemonCtxCancel context.CancelFunc\n\tdaemonClosed    chan (struct{})\n}\n\n// New returns a new Collector.\nfunc New(store *store.Store, opts ...Option) (*Collector, error) {\n\tconfig := defaultConfig\n\tfor _, o := range opts {\n\t\to(&config)\n\t}\n\n\tdaemonCtx, daemonCtxCancel := context.WithCancel(context.Background())\n\tc := &Collector{\n\t\tcfg:   config,\n\t\tstore: store,\n\n\t\tdaemonCtx:       daemonCtx,\n\t\tdaemonCtxCancel: daemonCtxCancel,\n\t\tdaemonClosed:    make(chan struct{}),\n\t}\n\n\tgo c.runDaemon()\n\n\treturn c, nil\n}\n\n// Subscribe returns a notification channel that will get\n// pushed signales whenever a new batch of records was imported.\n// This is useful for interested parties knowing about new\n// record's data might be available.\nfunc (c *Collector) Subscribe() <-chan struct{} {\n\tc.lock.Lock()\n\tdefer c.lock.Unlock()\n\n\tch := make(chan struct{}, 1)\n\tc.subscribers = append(c.subscribers, ch)\n\n\treturn ch\n}\n\n// Close closes the Collector.\nfunc (c *Collector) Close() error {\n\tc.lock.Lock()\n\tdefer c.lock.Unlock()\n\n\tc.daemonCtxCancel()\n\t<-c.daemonClosed\n\n\treturn nil\n}\n\n// runDaemon creates the background daemon that\n// will poll known Powergate targets to fetch\n// new records information.\nfunc (c *Collector) runDaemon() {\n\tdefer close(c.daemonClosed)\n\n\tcollect := make(chan struct{}, 1)\n\tif c.cfg.daemonRunOnStart {\n\t\tcollect <- struct{}{}\n\t}\n\n\tgo func() {\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase <-c.daemonCtx.Done():\n\t\t\t\treturn\n\t\t\tcase <-time.After(c.cfg.daemonFrequency):\n\t\t\t\tcollect <- struct{}{}\n\t\t\t}\n\t\t}\n\t}()\n\n\tfor {\n\t\tselect {\n\t\tcase <-c.daemonCtx.Done():\n\t\t\tlog.Infof(\"closing daemon\")\n\t\t\treturn\n\t\tcase <-collect:\n\t\t\ttotalImported := c.collectTargets(c.daemonCtx)\n\t\t\tif totalImported > 0 {\n\t\t\t\tc.notifySubscribers()\n\t\t\t}\n\t\t\tlog.Infof(\"daemon finished importing %d records\", totalImported)\n\t\t}\n\t}\n}\n\nfunc (c *Collector) notifySubscribers() {\n\tc.lock.Lock()\n\tdefer c.lock.Unlock()\n\n\tfor _, c := range c.subscribers {\n\t\tselect {\n\t\tcase c <- struct{}{}:\n\t\tdefault:\n\t\t\tlog.Warnf(\"slow subscriber, skipping\")\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "api/mindexd/collector/config.go",
    "content": "package collector\n\nimport (\n\t\"time\"\n)\n\nvar (\n\tdefaultConfig = config{\n\t\tdaemonRunOnStart: false,\n\t\tdaemonFrequency:  60 * time.Minute,\n\n\t\tfetchTimeout: time.Minute,\n\t\tfetchLimit:   50,\n\t}\n)\n\ntype config struct {\n\tdaemonRunOnStart bool\n\tdaemonFrequency  time.Duration\n\tfetchTimeout     time.Duration\n\tfetchLimit       int\n}\n\n// Option parametrizes a collector configuration.\ntype Option func(*config)\n\n// WithRunOnStart indicates if a collection should\n// be fired on start.\nfunc WithRunOnStart(enabled bool) Option {\n\treturn func(c *config) {\n\t\tc.daemonRunOnStart = enabled\n\t}\n}\n\n// WithFrequency indicates the frequency for the collector daemon.\nfunc WithFrequency(freq time.Duration) Option {\n\treturn func(c *config) {\n\t\tc.daemonFrequency = freq\n\t}\n}\n\n// WithFetchLimit indicates the maximum record batch\n// size to be fetched from targets.\nfunc WithFetchLimit(limit int) Option {\n\treturn func(c *config) {\n\t\tc.fetchLimit = limit\n\t}\n}\n\n// WithFetchTimeout indicates the maximum amount of time\n// that fetching from a target can take.\nfunc WithFetchTimeout(timeout time.Duration) Option {\n\treturn func(c *config) {\n\t\tc.fetchTimeout = timeout\n\t}\n}\n"
  },
  {
    "path": "api/mindexd/collector/daemon.go",
    "content": "package collector\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"sort\"\n\t\"sync\"\n\t\"time\"\n\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n)\n\nfunc (c *Collector) collectTargets(ctx context.Context) int {\n\ttargets, err := c.store.GetPowergateTargets(ctx)\n\tif err != nil {\n\t\tlog.Errorf(\"getting powergate targets: %s\", err)\n\t\treturn 0\n\t}\n\n\tvar lock sync.Mutex\n\tvar countImported int\n\tvar wg sync.WaitGroup\n\twg.Add(len(targets))\n\tfor _, source := range targets {\n\t\tgo func(source model.PowTarget) {\n\t\t\tdefer wg.Done()\n\n\t\t\tctx := context.WithValue(ctx, powc.AdminKey, source.AdminToken)\n\t\t\tclient, err := pow.NewClient(source.APIEndpoint)\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"creating powergate client for %s: %s\", source.Name, err)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tcountSDR, err := c.collectNewStorageDealRecords(ctx, client, source)\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"collecting new storage deal records from %s: %s\", source.Name, err)\n\t\t\t}\n\t\t\tlog.Infof(\"collected %d storage-deal records from %s\", countSDR, source.Name)\n\n\t\t\tcountRR, err := c.collectNewRetrievalRecords(ctx, client, source)\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"collecting new retrieval records from %s: %s\", source.Name, err)\n\t\t\t}\n\t\t\tlog.Infof(\"collected %d retrieval records from %s\", countRR, source.Name)\n\n\t\t\tlock.Lock()\n\t\t\tcountImported += countSDR + countRR\n\t\t\tlock.Unlock()\n\t\t}(source)\n\t}\n\n\twg.Wait()\n\n\treturn countImported\n}\n\nfunc (c *Collector) collectNewStorageDealRecords(ctx context.Context, pc *pow.Client, source model.PowTarget) (int, error) {\n\tlastUpdatedAt, err := c.store.GetLastStorageDealRecordUpdatedAt(ctx, source.Name)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"get last updated-at: %s\", err)\n\t}\n\n\tvar totalCount int\n\tfor {\n\t\tctx, cancel := context.WithTimeout(ctx, c.cfg.fetchTimeout)\n\t\tdefer cancel()\n\n\t\tres, err := pc.Admin.Records.GetUpdatedStorageDealRecordsSince(ctx, lastUpdatedAt, c.cfg.fetchLimit)\n\t\tif err != nil {\n\t\t\treturn 0, fmt.Errorf(\"get storage deal records: %s\", err)\n\t\t}\n\n\t\tif len(res.Records) == 0 {\n\t\t\tbreak\n\t\t}\n\t\ttotalCount += len(res.Records)\n\t\tlog.Debugf(\"%s collected a total of %d new/updated records, last %v\", source.Name, len(res.Records), res.Records[len(res.Records)-1].UpdatedAt)\n\n\t\trecords := toStorageDealRecords(res.Records)\n\t\tif err := c.store.PersistStorageDealRecords(ctx, source.Name, source.Region, records); err != nil {\n\t\t\treturn 0, fmt.Errorf(\"persist fetched records: %s\", err)\n\t\t}\n\n\t\tsort.Slice(res.Records, func(i, j int) bool {\n\t\t\treturn res.Records[i].UpdatedAt.AsTime().Before(res.Records[j].UpdatedAt.AsTime())\n\t\t})\n\t\tlastUpdatedAt = res.Records[len(res.Records)-1].UpdatedAt.AsTime()\n\n\t\t// If we fetched less than limit, then there're no\n\t\t// more records to fetch.\n\t\tif len(res.Records) < c.cfg.fetchLimit {\n\t\t\tbreak\n\t\t}\n\t}\n\n\treturn totalCount, nil\n}\n\nfunc (c *Collector) collectNewRetrievalRecords(ctx context.Context, pc *pow.Client, source model.PowTarget) (int, error) {\n\tlastUpdatedAt, err := c.store.GetLastRetrievalRecordUpdatedAt(ctx, source.Name)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"get last updated-at: %s\", err)\n\t}\n\n\tvar totalCount int\n\tfor {\n\t\tctx, cancel := context.WithTimeout(ctx, c.cfg.fetchTimeout)\n\t\tdefer cancel()\n\n\t\tres, err := pc.Admin.Records.GetUpdatedRetrievalRecordsSince(ctx, lastUpdatedAt.Add(time.Nanosecond), c.cfg.fetchLimit)\n\t\tif err != nil {\n\t\t\treturn 0, fmt.Errorf(\"get retrieval records: %s\", err)\n\t\t}\n\n\t\tif len(res.Records) == 0 {\n\t\t\tbreak\n\t\t}\n\t\ttotalCount += len(res.Records)\n\n\t\trecords := toRetrievalRecords(res.Records)\n\t\tif err := c.store.PersistRetrievalRecords(ctx, source.Name, source.Region, records); err != nil {\n\t\t\treturn 0, fmt.Errorf(\"persist fetched records: %s\", err)\n\t\t}\n\n\t\tlastUpdatedAt = res.Records[len(res.Records)-1].UpdatedAt.AsTime()\n\n\t\t// If we fetched less than limit, then there're no\n\t\t// more records to fetch.\n\t\tif len(res.Records) < c.cfg.fetchLimit {\n\t\t\tbreak\n\t\t}\n\t}\n\n\treturn totalCount, nil\n}\n\nfunc toStorageDealRecords(rs []*userPb.StorageDealRecord) []model.PowStorageDealRecord {\n\tret := make([]model.PowStorageDealRecord, len(rs))\n\tfor i, s := range rs {\n\t\tsr := model.PowStorageDealRecord{\n\t\t\tRootCid:           s.RootCid,\n\t\t\tAddress:           s.Address,\n\t\t\tPending:           s.Pending,\n\t\t\tTransferSize:      s.TransferSize,\n\t\t\tDataTransferStart: s.DataTransferStart.AsTime(),\n\t\t\tDataTransferEnd:   s.DataTransferEnd.AsTime(),\n\t\t\tSealingStart:      s.SealingStart.AsTime(),\n\t\t\tSealingEnd:        s.SealingEnd.AsTime(),\n\t\t\tFailed:            s.ErrMsg != \"\",\n\t\t\tErrMsg:            s.ErrMsg,\n\t\t\tCreatedAt:         s.Time,\n\t\t\tUpdatedAt:         s.UpdatedAt.AsTime(),\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid:     s.DealInfo.ProposalCid,\n\t\t\t\tStateId:         s.DealInfo.StateId,\n\t\t\t\tStateName:       s.DealInfo.StateName,\n\t\t\t\tMiner:           s.DealInfo.Miner,\n\t\t\t\tPieceCid:        s.DealInfo.PieceCid,\n\t\t\t\tSize:            s.DealInfo.Size,\n\t\t\t\tPricePerEpoch:   s.DealInfo.PricePerEpoch,\n\t\t\t\tStartEpoch:      s.DealInfo.StartEpoch,\n\t\t\t\tDuration:        s.DealInfo.Duration,\n\t\t\t\tDealId:          s.DealInfo.DealId,\n\t\t\t\tActivationEpoch: s.DealInfo.ActivationEpoch,\n\t\t\t\tMessage:         s.DealInfo.Message,\n\t\t\t},\n\t\t}\n\t\tret[i] = sr\n\t}\n\n\treturn ret\n}\n\nfunc toRetrievalRecords(rs []*userPb.RetrievalDealRecord) []model.PowRetrievalRecord {\n\tret := make([]model.PowRetrievalRecord, len(rs))\n\tfor i, r := range rs {\n\t\tpr := model.PowRetrievalRecord{\n\t\t\tID:                r.Id,\n\t\t\tAddress:           r.Address,\n\t\t\tDataTransferStart: r.DataTransferStart.AsTime(),\n\t\t\tDataTransferEnd:   r.DataTransferEnd.AsTime(),\n\t\t\tBytesReceived:     r.BytesReceived,\n\t\t\tFailed:            r.ErrMsg != \"\",\n\t\t\tErrMsg:            r.ErrMsg,\n\t\t\tCreatedAt:         r.Time,\n\t\t\tUpdatedAt:         r.UpdatedAt.AsTime(),\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner:    r.DealInfo.Miner,\n\t\t\t\tMinPrice: r.DealInfo.MinPrice,\n\t\t\t\tRootCid:  r.DealInfo.RootCid,\n\t\t\t\tSize:     r.DealInfo.Size,\n\t\t\t},\n\t\t}\n\t\tret[i] = pr\n\t}\n\n\treturn ret\n}\n"
  },
  {
    "path": "api/mindexd/indexer/config.go",
    "content": "package indexer\n\nimport (\n\t\"time\"\n)\n\nvar (\n\tdefaultConfig = config{\n\t\tdaemonRunOnStart: false,\n\t\tdaemonFrequency:  60 * time.Minute,\n\t}\n)\n\ntype config struct {\n\tdaemonRunOnStart     bool\n\tdaemonFrequency      time.Duration\n\tdaemonSnapshotMaxAge time.Duration\n}\n\n// Option allows to configure an indexer.\ntype Option func(*config)\n\n// WithRunOnStart indicates if the index must be generated\n// when the deamon is started.\nfunc WithRunOnStart(enabled bool) Option {\n\treturn func(c *config) {\n\t\tc.daemonRunOnStart = enabled\n\t}\n}\n\n// WithFrequency indicates the frequency\n// for the indexer daemon.\nfunc WithFrequency(freq time.Duration) Option {\n\treturn func(c *config) {\n\t\tc.daemonFrequency = freq\n\t}\n}\n\n// WithSnapshotMaxAge indicates the max-age of a snapshot,\n// indicating that a new one should be generated.\nfunc WithSnapshotMaxAge(age time.Duration) Option {\n\treturn func(c *config) {\n\t\tc.daemonSnapshotMaxAge = age\n\t}\n}\n"
  },
  {
    "path": "api/mindexd/indexer/daemon.go",
    "content": "package indexer\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"time\"\n\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\tpowAdmin \"github.com/textileio/powergate/v2/api/client/admin\"\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n)\n\nvar (\n\tminersBatchSize = 100\n)\n\nfunc (i *Indexer) generateIndex(ctx context.Context) error {\n\tlog.Debugf(\"starting updating textile miners info\")\n\tif err := i.updateTextileMinerInfo(ctx); err != nil {\n\t\tlog.Errorf(\"updating textile info: %s\", err)\n\t}\n\n\tlog.Debugf(\"getting miners with power\")\n\tminers, err := i.getActiveMiners(ctx)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"getting active miners: %s\", err)\n\t}\n\n\tlog.Debugf(\"importing on-chain miners data started\")\n\tfor start := 0; start < len(miners); start += minersBatchSize {\n\t\tlog.Debugf(\"importing on-chain batch number %d\", start)\n\t\tend := start + minersBatchSize\n\t\tif end > len(miners) {\n\t\t\tend = len(miners)\n\t\t}\n\n\t\tif err := i.updateOnChainMinersInfo(ctx, miners[start:end]); err != nil {\n\t\t\treturn fmt.Errorf(\"updating on-chain info for miners: %s\", err)\n\t\t}\n\t}\n\tlog.Debugf(\"importing on-chain miners data finished\")\n\n\treturn nil\n}\n\nfunc (i *Indexer) updateOnChainMinersInfo(ctx context.Context, miners []string) error {\n\tctxAdmin := context.WithValue(ctx, powc.AdminKey, i.powAdminToken)\n\tminfos, err := i.pow.Admin.Indices.GetMinerInfo(ctxAdmin, miners...)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"get miner on-chain info from powergate: %s\", err)\n\t}\n\tfor _, mi := range minfos.MinersInfo {\n\t\tonchain := model.FilecoinInfo{\n\t\t\tRelativePower:    mi.RelativePower,\n\t\t\tAskPrice:         mi.AskPrice,\n\t\t\tAskVerifiedPrice: mi.AskVerifiedPrice,\n\t\t\tMinPieceSize:     int64(mi.MinPieceSize),\n\t\t\tMaxPieceSize:     int64(mi.MaxPieceSize),\n\t\t\tSectorSize:       int64(mi.SectorSize),\n\t\t\tActiveSectors:    int64(mi.SectorsActive),\n\t\t\tFaultySectors:    int64(mi.SectorsFaulty),\n\t\t\tUpdatedAt:        time.Now(),\n\t\t}\n\n\t\tif err := i.store.PutFilecoinInfo(ctx, mi.Address, onchain); err != nil {\n\t\t\tlog.Errorf(\"put miner on-chain info in store: %s\", err)\n\t\t}\n\n\t\tif err := i.store.PutMetadataLocation(ctx, mi.Address, mi.Location); err != nil {\n\t\t\tlog.Errorf(\"put miner on-chain info in store: %s\", err)\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (i *Indexer) getActiveMiners(ctx context.Context) ([]string, error) {\n\tctxAdmin := context.WithValue(ctx, powc.AdminKey, i.powAdminToken)\n\tms, err := i.pow.Admin.Indices.GetMiners(ctxAdmin, powAdmin.WithPowerGreaterThanZero(true))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"get miners with power from powergate: %s\", err)\n\t}\n\n\tminers := make([]string, len(ms.Miners))\n\tfor i, m := range ms.Miners {\n\t\tminers[i] = m.Address\n\t}\n\n\treturn miners, nil\n}\n\nfunc (i *Indexer) updateTextileMinerInfo(ctx context.Context) error {\n\tif err := i.store.UpdateTextileDealsInfo(ctx); err != nil {\n\t\treturn fmt.Errorf(\"update textile miner deals info: %s\", err)\n\t}\n\n\tif err := i.store.UpdateTextileRetrievalsInfo(ctx); err != nil {\n\t\treturn fmt.Errorf(\"update textile retrievals info: %s\", err)\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "api/mindexd/indexer/indexer.go",
    "content": "package indexer\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\tlogger \"github.com/ipfs/go-log/v2\"\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\t\"github.com/textileio/textile/v2/api/mindexd/store\"\n)\n\nvar (\n\tlog = logger.Logger(\"indexer\")\n)\n\n// Indexer creates a miner's index with Filecoin and Textile data.\ntype Indexer struct {\n\tcfg           config\n\tstore         *store.Store\n\tpow           *pow.Client\n\tpowAdminToken string\n\n\tdaemonCtx       context.Context\n\tdaemonCtxCancel context.CancelFunc\n\tdaemonClosed    chan struct{}\n\tdaemonSub       <-chan struct{}\n}\n\n// New returns a new Indexer.\nfunc New(pow *pow.Client, sub <-chan struct{}, powAdminToken string, store *store.Store, opts ...Option) (*Indexer, error) {\n\tconfig := defaultConfig\n\tfor _, o := range opts {\n\t\to(&config)\n\t}\n\n\tdaemonCtx, daemonCtxCancel := context.WithCancel(context.Background())\n\ti := &Indexer{\n\t\tcfg:           config,\n\t\tstore:         store,\n\t\tpow:           pow,\n\t\tpowAdminToken: powAdminToken,\n\n\t\tdaemonCtx:       daemonCtx,\n\t\tdaemonCtxCancel: daemonCtxCancel,\n\t\tdaemonClosed:    make(chan struct{}),\n\t\tdaemonSub:       sub,\n\t}\n\n\tgo i.runDaemon()\n\n\treturn i, nil\n}\n\n// Close closes an Indexer.\nfunc (i *Indexer) Close() error {\n\ti.daemonCtxCancel()\n\t<-i.daemonClosed\n\n\treturn nil\n}\n\nfunc (i *Indexer) runDaemon() {\n\tdefer close(i.daemonClosed)\n\n\tcollect := make(chan struct{}, 1)\n\tif i.cfg.daemonRunOnStart {\n\t\tcollect <- struct{}{}\n\t}\n\n\tgo func() {\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase <-i.daemonCtx.Done():\n\t\t\t\tlog.Infof(\"daemon shutting down\")\n\t\t\t\treturn\n\t\t\tcase <-time.After(i.cfg.daemonFrequency):\n\t\t\t\tlog.Infof(\"daemon ticker fired\")\n\t\t\t\tcollect <- struct{}{}\n\t\t\tcase <-i.daemonSub:\n\t\t\t\tlog.Infof(\"received new records notification\")\n\t\t\t\tcollect <- struct{}{}\n\t\t\t}\n\t\t}\n\t}()\n\n\tgo func() {\n\t\tlastSnapshot, err := i.store.GetLastIndexSnapshotTime(i.daemonCtx)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"get last index snapshot: %s\", err)\n\t\t\treturn\n\t\t}\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase <-i.daemonCtx.Done():\n\t\t\t\tlog.Infof(\"daemon snapshot shutting down\")\n\t\t\t\treturn\n\t\t\tcase <-time.After(15 * time.Minute):\n\t\t\t\tif time.Now().Sub(lastSnapshot) > i.cfg.daemonSnapshotMaxAge {\n\t\t\t\t\tif err := i.store.GenerateMinerIndexSnapshot(i.daemonCtx); err != nil {\n\t\t\t\t\t\tlog.Errorf(\"generating index snapshot: %s\", err)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlastSnapshot = time.Now()\n\t\t\t}\n\t\t}\n\t}()\n\n\tfor {\n\t\tselect {\n\t\tcase <-i.daemonCtx.Done():\n\t\t\tlog.Infof(\"closing daemon\")\n\t\t\treturn\n\t\tcase <-collect:\n\t\t\tif err := i.generateIndex(i.daemonCtx); err != nil {\n\t\t\t\tlog.Errorf(\"generating index: %s\", err)\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "api/mindexd/main.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n\t\"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/mindexd/service\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nconst daemonName = \"mindexd\"\n\nvar (\n\tlog = logging.Logger(daemonName)\n\n\tconfig = &cmd.Config{\n\t\tViper: viper.New(),\n\t\tDir:   \".\" + daemonName,\n\t\tName:  \"config\",\n\t\tFlags: map[string]cmd.Flag{\n\t\t\t\"debug\": {\n\t\t\t\tKey:      \"log.debug\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"logFile\": {\n\t\t\t\tKey:      \"log.file\",\n\t\t\t\tDefValue: \"\", // no log file\n\t\t\t},\n\n\t\t\t// Addr config\n\t\t\t\"addrApi\": {\n\t\t\t\tKey:      \"addr.api\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/5000\",\n\t\t\t},\n\t\t\t\"addrApiRest\": {\n\t\t\t\tKey:      \"addr.api_rest\",\n\t\t\t\tDefValue: \":8081\",\n\t\t\t},\n\t\t\t\"addrMongoUri\": {\n\t\t\t\tKey:      \"addr.mongo_uri\",\n\t\t\t\tDefValue: \"mongodb://127.0.0.1:27017\",\n\t\t\t},\n\t\t\t\"addrMongoName\": {\n\t\t\t\tKey:      \"addr.mongo_name\",\n\t\t\t\tDefValue: \"textile_mindex\",\n\t\t\t},\n\n\t\t\t// Powergate config\n\t\t\t\"powAddrAPI\": {\n\t\t\t\tKey:      \"pow.addr_api\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"powAdminToken\": {\n\t\t\t\tKey:      \"pow.admin_token\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\n\t\t\t// Indexer config\n\t\t\t\"indexerRunOnStart\": {\n\t\t\t\tKey:      \"indexer.run_on_start\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"indexerFrequency\": {\n\t\t\t\tKey:      \"indexer.frequency\",\n\t\t\t\tDefValue: time.Minute * 120,\n\t\t\t},\n\t\t\t\"indexerSnapshotMaxAge\": {\n\t\t\t\tKey:      \"indexer.snapshot_max_age\",\n\t\t\t\tDefValue: time.Hour * 24,\n\t\t\t},\n\n\t\t\t// Collector config\n\t\t\t\"collectorRunOnStart\": {\n\t\t\t\tKey:      \"collector.run_on_start\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"collectorFrequency\": {\n\t\t\t\tKey:      \"collector.frequency\",\n\t\t\t\tDefValue: time.Minute * 60,\n\t\t\t},\n\t\t\t\"collectorFetchLimit\": {\n\t\t\t\tKey:      \"collector.fetch_limit\",\n\t\t\t\tDefValue: 50,\n\t\t\t},\n\t\t\t\"collectorFetchTimeout\": {\n\t\t\t\tKey:      \"collector.fetch_timeout\",\n\t\t\t\tDefValue: time.Minute,\n\t\t\t},\n\t\t},\n\t\tEnvPre: \"MINDEX\",\n\t\tGlobal: true,\n\t}\n)\n\nfunc init() {\n\tcobra.OnInitialize(cmd.InitConfig(config))\n\tcmd.InitConfigCmd(rootCmd, config.Viper, config.Dir)\n\n\trootCmd.PersistentFlags().StringVar(\n\t\t&config.File,\n\t\t\"config\",\n\t\t\"\",\n\t\t\"Config file (default ${HOME}/\"+config.Dir+\"/\"+config.Name+\".yml)\")\n\trootCmd.PersistentFlags().BoolP(\n\t\t\"debug\",\n\t\t\"d\",\n\t\tconfig.Flags[\"debug\"].DefValue.(bool),\n\t\t\"Enable debug logging\")\n\trootCmd.PersistentFlags().String(\n\t\t\"logFile\",\n\t\tconfig.Flags[\"logFile\"].DefValue.(string),\n\t\t\"Write logs to file\")\n\n\t// Address settings\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApi\",\n\t\tconfig.Flags[\"addrApi\"].DefValue.(string),\n\t\t\"Miner Index gRPC API listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApiRest\",\n\t\tconfig.Flags[\"addrApiRest\"].DefValue.(string),\n\t\t\"Miner Index REST API listen address\")\n\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoUri\",\n\t\tconfig.Flags[\"addrMongoUri\"].DefValue.(string),\n\t\t\"MongoDB connection URI\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoName\",\n\t\tconfig.Flags[\"addrMongoName\"].DefValue.(string),\n\t\t\"MongoDB database name\")\n\n\t// Powergate settings\n\trootCmd.PersistentFlags().String(\n\t\t\"powAddrAPI\",\n\t\tconfig.Flags[\"powAddrAPI\"].DefValue.(string),\n\t\t\"Powergate API address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"powAdminToken\",\n\t\tconfig.Flags[\"powAdminToken\"].DefValue.(string),\n\t\t\"Powergate API admin token\")\n\n\t// Indexer settings\n\trootCmd.PersistentFlags().Bool(\n\t\t\"indexerRunOnStart\",\n\t\tconfig.Flags[\"indexerRunOnStart\"].DefValue.(bool),\n\t\t\"Indexer run on start\")\n\trootCmd.PersistentFlags().Duration(\n\t\t\"indexerFrequency\",\n\t\tconfig.Flags[\"indexerFrequency\"].DefValue.(time.Duration),\n\t\t\"Indexer daemon frequency\")\n\trootCmd.PersistentFlags().Duration(\n\t\t\"indexerSnapshotMaxAge\",\n\t\tconfig.Flags[\"indexerSnapshotMaxAge\"].DefValue.(time.Duration),\n\t\t\"Indexer snapshot max-age to trigger a new one.\")\n\n\t// Collector settings\n\trootCmd.PersistentFlags().Bool(\n\t\t\"collectorRunOnStart\",\n\t\tconfig.Flags[\"collectorRunOnStart\"].DefValue.(bool),\n\t\t\"Collector run on start\")\n\trootCmd.PersistentFlags().Duration(\n\t\t\"collectorFrequency\",\n\t\tconfig.Flags[\"collectorFrequency\"].DefValue.(time.Duration),\n\t\t\"Collector daemon frequency\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"collectorFetchLimit\",\n\t\tconfig.Flags[\"collectorFetchLimit\"].DefValue.(int),\n\t\t\"Collector biggest batch size for fetching new records\")\n\trootCmd.PersistentFlags().Duration(\n\t\t\"collectorFetchTimeout\",\n\t\tconfig.Flags[\"collectorFetchTimeout\"].DefValue.(time.Duration),\n\t\t\"Collector timeout while fetching new records from a target\")\n\n\terr := cmd.BindFlags(config.Viper, rootCmd, config.Flags)\n\tcmd.ErrCheck(err)\n}\n\nfunc main() {\n\tcmd.ErrCheck(rootCmd.Execute())\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   daemonName,\n\tShort: \"Miner Index daemon\",\n\tLong:  `Textile's miner index daemon.`,\n\tPersistentPreRun: func(c *cobra.Command, args []string) {\n\t\tconfig.Viper.SetConfigType(\"yaml\")\n\t\tcmd.ExpandConfigVars(config.Viper, config.Flags)\n\n\t\tif config.Viper.GetBool(\"log.debug\") {\n\t\t\terr := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\tdaemonName: logging.LevelDebug,\n\t\t\t})\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\t},\n\tRun: func(c *cobra.Command, args []string) {\n\t\tsettings, err := json.MarshalIndent(config.Viper.AllSettings(), \"\", \"  \")\n\t\tcmd.ErrCheck(err)\n\t\tlog.Debugf(\"loaded config: %s\", string(settings))\n\n\t\tgrpcListenAddr := cmd.AddrFromStr(config.Viper.GetString(\"addr.api\"))\n\t\trestListenAddr := config.Viper.GetString(\"addr.api_rest\")\n\t\taddrMongoUri := config.Viper.GetString(\"addr.mongo_uri\")\n\t\taddrMongoName := config.Viper.GetString(\"addr.mongo_name\")\n\n\t\tlogFile := config.Viper.GetString(\"log.file\")\n\t\terr = cmd.SetupDefaultLoggingConfig(logFile)\n\t\tcmd.ErrCheck(err)\n\n\t\tpowAddrAPI := config.Viper.GetString(\"pow.addr_api\")\n\t\tpowAdminToken := config.Viper.GetString(\"pow.admin_token\")\n\n\t\tindexerRunOnStart := config.Viper.GetBool(\"indexer.run_on_start\")\n\t\tindexerFrequency := config.Viper.GetDuration(\"indexer.frequency\")\n\t\tindexerSnapshotMaxAge := config.Viper.GetDuration(\"indexer.snapshot_max_age\")\n\n\t\tcollectorRunOnStart := config.Viper.GetBool(\"collector.run_on_start\")\n\t\tcollectorFrequency := config.Viper.GetDuration(\"collector.frequency\")\n\t\tcollectorFetchLimit := config.Viper.GetInt(\"collector.fetch_limit\")\n\t\tcollectorFetchTimeout := config.Viper.GetDuration(\"collector.fetch_timeout\")\n\t\tcmd.ErrCheck(err)\n\n\t\tctx, cancel := context.WithCancel(context.Background())\n\t\tdefer cancel()\n\n\t\tapi, err := service.NewService(ctx, service.Config{\n\t\t\tListenAddrGRPC: grpcListenAddr,\n\t\t\tListenAddrREST: restListenAddr,\n\t\t\tDBURI:          addrMongoUri,\n\t\t\tDBName:         addrMongoName,\n\t\t\tDebug:          config.Viper.GetBool(\"log.debug\"),\n\n\t\t\tPowAddrAPI:    powAddrAPI,\n\t\t\tPowAdminToken: powAdminToken,\n\n\t\t\tCollectorRunOnStart:   collectorRunOnStart,\n\t\t\tCollectorFrequency:    collectorFrequency,\n\t\t\tCollectorFetchLimit:   collectorFetchLimit,\n\t\t\tCollectorFetchTimeout: collectorFetchTimeout,\n\n\t\t\tIndexerRunOnStart:     indexerRunOnStart,\n\t\t\tIndexerFrequency:      indexerFrequency,\n\t\t\tIndexerSnapshotMaxAge: indexerSnapshotMaxAge,\n\t\t})\n\t\tcmd.ErrCheck(err)\n\n\t\terr = api.Start()\n\t\tcmd.ErrCheck(err)\n\n\t\tlog.Info(\"Welcome to Hub Miner Index!\")\n\n\t\tcmd.HandleInterrupt(api.Stop)\n\t},\n}\n"
  },
  {
    "path": "api/mindexd/migrations/migrations.go",
    "content": "package migrations\n\nimport (\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tmigrate \"github.com/xakep666/mongo-migrate\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\nvar (\n\tlog            = logging.Logger(\"migrations\")\n\tmigrateTimeout = time.Hour\n)\n\nfunc Migrate(db *mongo.Database) error {\n\tm := migrate.NewMigrate(\n\t\tdb,\n\t)\n\treturn m.Up(migrate.AllAvailable)\n}\n"
  },
  {
    "path": "api/mindexd/model/index.go",
    "content": "package model\n\nimport \"time\"\n\ntype MinerInfoSnapshot struct {\n\tCreatedAt time.Time `bson:\"created_at\"`\n\tMinerInfo MinerInfo `bson:\"miner_info\"`\n}\n\ntype MinerInfo struct {\n\tMinerID   string       `bson:\"_id\"`\n\tMetadata  MetadataInfo `bson:\"metadata\"`\n\tFilecoin  FilecoinInfo `bson:\"filecoin\"`\n\tTextile   TextileInfo  `bson:\"textile\"`\n\tUpdatedAt time.Time    `bson:\"updated_at\"`\n}\n\ntype MetadataInfo struct {\n\tLocation  string    `bson:\"location\"`\n\tURL       string    `bson:\"url\"`\n\tEmail     string    `bson:\"email\"`\n\tTwitter   string    `bson:\"twitter\"`\n\tMinerX    bool      `bson:\"minerx\"`\n\tUpdatedAt time.Time `bson:\"updated_at\"`\n}\n\ntype FilecoinInfo struct {\n\tRelativePower    float64   `bson:\"relative_power\"`\n\tAskPrice         string    `bson:\"ask_price\"`\n\tAskVerifiedPrice string    `bson:\"ask_verified_price\"`\n\tMinPieceSize     int64     `bson:\"min_piece_size\"`\n\tMaxPieceSize     int64     `bson:\"max_piece_size\"`\n\tSectorSize       int64     `bson:\"sector_size\"`\n\tActiveSectors    int64     `bson:\"active_sectors\"`\n\tFaultySectors    int64     `bson:\"faulty_sectors\"`\n\tUpdatedAt        time.Time `bson:\"updated_at\"`\n}\n\ntype TextileInfo struct {\n\tRegions           map[string]TextileRegionInfo `bson:\"regions\"`\n\tDealsSummary      TextileDealsSummary          `bson:\"deals_summary\"`\n\tRetrievalsSummary TextileRetrievalSummary      `bson:\"retrievals_summary\"`\n\tUpdatedAt         time.Time                    `bson:\"updated_at\"`\n}\n\ntype TextileDealsSummary struct {\n\tTotal       int       `bson:\"total\"`\n\tLast        time.Time `bson:\"last\"`\n\tFailures    int       `bson:\"failures\"`\n\tLastFailure time.Time `bson:\"last_failure\"`\n}\n\ntype TextileRetrievalSummary struct {\n\tTotal       int       `bson:\"total\"`\n\tLast        time.Time `bson:\"last\"`\n\tFailures    int       `bson:\"failures\"`\n\tLastFailure time.Time `bson:\"last_failure\"`\n}\n\ntype TextileRegionInfo struct {\n\tDeals      TextileDealsInfo      `bson:\"deals\"`\n\tRetrievals TextileRetrievalsInfo `bson:\"retrievals\"`\n}\n\ntype TextileDealsInfo struct {\n\tTotal int       `bson:\"total\"`\n\tLast  time.Time `bson:\"last\"`\n\n\tFailures    int       `bson:\"failures\"`\n\tLastFailure time.Time `bson:\"last_failure\"`\n\n\tTailTransfers []TransferMiBPerSec  `bson:\"tail_transfers\"`\n\tTailSealed    []SealedDurationMins `bson:\"tail_sealed\"`\n}\n\ntype SealedDurationMins struct {\n\tSealedAt        time.Time `bson:\"sealed_at\"`\n\tDurationSeconds int       `bson:\"duration_mins\"`\n}\n\ntype TransferMiBPerSec struct {\n\tTransferedAt time.Time `bson:\"transfered_at\"`\n\tMiBPerSec    float64   `bson:\"mib_per_sec\"`\n}\n\ntype TextileRetrievalsInfo struct {\n\tTotal         int                 `bson:\"total\"`\n\tLast          time.Time           `bson:\"last\"`\n\tFailures      int                 `bson:\"failures\"`\n\tLastFailure   time.Time           `bson:\"last_failure\"`\n\tTailTransfers []TransferMiBPerSec `bson:\"tail_transfers\"`\n}\n"
  },
  {
    "path": "api/mindexd/model/record.go",
    "content": "package model\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\n// PowTarget describes a Powergate instance to\n// collect deal/retrieval records.\ntype PowTarget struct {\n\tName        string `bson:\"_id\"`\n\tRegion      string `bson:\"region\"`\n\tAPIEndpoint string `bson:\"api_endpoint\"`\n\tAdminToken  string `bson:\"admin_token\"`\n}\n\nfunc (pt *PowTarget) String() string {\n\treturn fmt.Sprintf(\"%s at %s\", pt.Name, pt.APIEndpoint)\n}\n\ntype StorageDealRecord struct {\n\tID                   string               `bson:\"_id,omitempty\"`\n\tPowName              string               `bson:\"pow_name\"`\n\tRegion               string               `bson:\"region\"`\n\tLastUpdatedAt        time.Time            `bson:\"last_updated_at\"`\n\tPowStorageDealRecord PowStorageDealRecord `bson:\"pow_storage_deal_record\"`\n}\n\ntype RetrievalRecord struct {\n\tID                 string             `bson:\"_id,omitempty\"`\n\tPowName            string             `bson:\"pow_name\"`\n\tRegion             string             `bson:\"region\"`\n\tLastUpdatedAt      time.Time          `bson:\"last_updated_at\"`\n\tPowRetrievalRecord PowRetrievalRecord `bson:\"pow_retrieval_record\"`\n}\n\ntype PowStorageDealRecord struct {\n\tRootCid           string                       `bson:\"root_cid\"`\n\tAddress           string                       `bson:\"address\"`\n\tPending           bool                         `bson:\"pending\"`\n\tDealInfo          PowStorageDealRecordDealInfo `bson:\"deal_info\"`\n\tTransferSize      int64                        `bson:\"transfer_size\"`\n\tDataTransferStart time.Time                    `bson:\"datatransfer_start\"`\n\tDataTransferEnd   time.Time                    `bson:\"datatransfer_end\"`\n\tSealingStart      time.Time                    `bson:\"sealing_start\"`\n\tSealingEnd        time.Time                    `bson:\"sealing_end\"`\n\tFailed            bool                         `bson:\"failed\"`\n\tErrMsg            string                       `bson:\"err_msg\"`\n\tCreatedAt         int64                        `bson:\"created_at\"`\n\tUpdatedAt         time.Time                    `bson:\"updated_at\"`\n}\n\ntype PowStorageDealRecordDealInfo struct {\n\tProposalCid     string `bson:\"proposal_cid\"`\n\tStateId         uint64 `bson:\"state_id\"`\n\tStateName       string `bson:\"state_name\"`\n\tMiner           string `bson:\"miner\"`\n\tPieceCid        string `bson:\"piece_cid\"`\n\tSize            uint64 `bson:\"size\"`\n\tPricePerEpoch   uint64 `bson:\"price_per_epoch\"`\n\tStartEpoch      uint64 `bson:\"start_epoch\"`\n\tDuration        uint64 `bson:\"duration\"`\n\tDealId          uint64 `bson:\"deal_id\"`\n\tActivationEpoch int64  `bson:\"activation_epoch\"`\n\tMessage         string `bson:\"message\"`\n}\n\ntype PowRetrievalRecord struct {\n\tID                string                     `bson:\"id\"`\n\tAddress           string                     `bson:\"address\"`\n\tDealInfo          PowRetrievalRecordDealInfo `bson:\"deal_info\"`\n\tDataTransferStart time.Time                  `bson:\"datatransfer_start\"`\n\tDataTransferEnd   time.Time                  `bson:\"datatransfer_end\"`\n\tBytesReceived     uint64                     `bson:\"bytes_received\"`\n\tFailed            bool                       `bson:\"failed\"`\n\tErrMsg            string                     `bson:\"err_msg\"`\n\tCreatedAt         int64                      `bson:\"created_at\"`\n\tUpdatedAt         time.Time                  `bson:\"updated_at\"`\n}\n\ntype PowRetrievalRecordDealInfo struct {\n\tRootCid  string `bson:\"root_cid\"`\n\tSize     uint64 `bson:\"size\"`\n\tMinPrice uint64 `bson:\"min_price\"`\n\tMiner    string `bson:\"miner\"`\n}\n"
  },
  {
    "path": "api/mindexd/pb/google/api/annotations.proto",
    "content": "// Copyright (c) 2015, Google Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.api;\n\nimport \"api/mindexd/pb/google/api/http.proto\";\nimport \"google/protobuf/descriptor.proto\";\n\noption go_package = \"google.golang.org/genproto/googleapis/api/annotations;annotations\";\noption java_multiple_files = true;\noption java_outer_classname = \"AnnotationsProto\";\noption java_package = \"com.google.api\";\noption objc_class_prefix = \"GAPI\";\n\nextend google.protobuf.MethodOptions {\n  // See `HttpRule`.\n  HttpRule http = 72295728;\n}\n"
  },
  {
    "path": "api/mindexd/pb/google/api/field_behavior.proto",
    "content": "// Copyright 2020 Google LLC\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.api;\n\nimport \"google/protobuf/descriptor.proto\";\n\noption go_package = \"google.golang.org/genproto/googleapis/api/annotations;annotations\";\noption java_multiple_files = true;\noption java_outer_classname = \"FieldBehaviorProto\";\noption java_package = \"com.google.api\";\noption objc_class_prefix = \"GAPI\";\n\nextend google.protobuf.FieldOptions {\n  // A designation of a specific field behavior (required, output only, etc.)\n  // in protobuf messages.\n  //\n  // Examples:\n  //\n  //   string name = 1 [(google.api.field_behavior) = REQUIRED];\n  //   State state = 1 [(google.api.field_behavior) = OUTPUT_ONLY];\n  //   google.protobuf.Duration ttl = 1\n  //     [(google.api.field_behavior) = INPUT_ONLY];\n  //   google.protobuf.Timestamp expire_time = 1\n  //     [(google.api.field_behavior) = OUTPUT_ONLY,\n  //      (google.api.field_behavior) = IMMUTABLE];\n  repeated google.api.FieldBehavior field_behavior = 1052;\n}\n\n// An indicator of the behavior of a given field (for example, that a field\n// is required in requests, or given as output but ignored as input).\n// This **does not** change the behavior in protocol buffers itself; it only\n// denotes the behavior and may affect how API tooling handles the field.\n//\n// Note: This enum **may** receive new values in the future.\nenum FieldBehavior {\n  // Conventional default for enums. Do not use this.\n  FIELD_BEHAVIOR_UNSPECIFIED = 0;\n\n  // Specifically denotes a field as optional.\n  // While all fields in protocol buffers are optional, this may be specified\n  // for emphasis if appropriate.\n  OPTIONAL = 1;\n\n  // Denotes a field as required.\n  // This indicates that the field **must** be provided as part of the request,\n  // and failure to do so will cause an error (usually `INVALID_ARGUMENT`).\n  REQUIRED = 2;\n\n  // Denotes a field as output only.\n  // This indicates that the field is provided in responses, but including the\n  // field in a request does nothing (the server *must* ignore it and\n  // *must not* throw an error as a result of the field's presence).\n  OUTPUT_ONLY = 3;\n\n  // Denotes a field as input only.\n  // This indicates that the field is provided in requests, and the\n  // corresponding field is not included in output.\n  INPUT_ONLY = 4;\n\n  // Denotes a field as immutable.\n  // This indicates that the field may be set once in a request to create a\n  // resource, but may not be changed thereafter.\n  IMMUTABLE = 5;\n\n  // Denotes that a (repeated) field is an unordered list.\n  // This indicates that the service may provide the elements of the list\n  // in any arbitrary  order, rather than the order the user originally\n  // provided. Additionally, the list's order may or may not be stable.\n  UNORDERED_LIST = 6;\n}\n"
  },
  {
    "path": "api/mindexd/pb/google/api/http.proto",
    "content": "// Copyright 2020 Google LLC\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.api;\n\noption cc_enable_arenas = true;\noption go_package = \"google.golang.org/genproto/googleapis/api/annotations;annotations\";\noption java_multiple_files = true;\noption java_outer_classname = \"HttpProto\";\noption java_package = \"com.google.api\";\noption objc_class_prefix = \"GAPI\";\n\n// Defines the HTTP configuration for an API service. It contains a list of\n// [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method\n// to one or more HTTP REST API methods.\nmessage Http {\n  // A list of HTTP configuration rules that apply to individual API methods.\n  //\n  // **NOTE:** All service configuration rules follow \"last one wins\" order.\n  repeated HttpRule rules = 1;\n\n  // When set to true, URL path parameters will be fully URI-decoded except in\n  // cases of single segment matches in reserved expansion, where \"%2F\" will be\n  // left encoded.\n  //\n  // The default behavior is to not decode RFC 6570 reserved characters in multi\n  // segment matches.\n  bool fully_decode_reserved_expansion = 2;\n}\n\n// # gRPC Transcoding\n//\n// gRPC Transcoding is a feature for mapping between a gRPC method and one or\n// more HTTP REST endpoints. It allows developers to build a single API service\n// that supports both gRPC APIs and REST APIs. Many systems, including [Google\n// APIs](https://github.com/googleapis/googleapis),\n// [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC\n// Gateway](https://github.com/grpc-ecosystem/grpc-gateway),\n// and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature\n// and use it for large scale production services.\n//\n// `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies\n// how different portions of the gRPC request message are mapped to the URL\n// path, URL query parameters, and HTTP request body. It also controls how the\n// gRPC response message is mapped to the HTTP response body. `HttpRule` is\n// typically specified as an `google.api.http` annotation on the gRPC method.\n//\n// Each mapping specifies a URL path template and an HTTP method. The path\n// template may refer to one or more fields in the gRPC request message, as long\n// as each field is a non-repeated field with a primitive (non-message) type.\n// The path template controls how fields of the request message are mapped to\n// the URL path.\n//\n// Example:\n//\n//     service Messaging {\n//       rpc GetMessage(GetMessageRequest) returns (Message) {\n//         option (google.api.http) = {\n//             get: \"/v1/{name=messages/*}\"\n//         };\n//       }\n//     }\n//     message GetMessageRequest {\n//       string name = 1; // Mapped to URL path.\n//     }\n//     message Message {\n//       string text = 1; // The resource content.\n//     }\n//\n// This enables an HTTP REST to gRPC mapping as below:\n//\n// HTTP | gRPC\n// -----|-----\n// `GET /v1/messages/123456`  | `GetMessage(name: \"messages/123456\")`\n//\n// Any fields in the request message which are not bound by the path template\n// automatically become HTTP query parameters if there is no HTTP request body.\n// For example:\n//\n//     service Messaging {\n//       rpc GetMessage(GetMessageRequest) returns (Message) {\n//         option (google.api.http) = {\n//             get:\"/v1/messages/{message_id}\"\n//         };\n//       }\n//     }\n//     message GetMessageRequest {\n//       message SubMessage {\n//         string subfield = 1;\n//       }\n//       string message_id = 1; // Mapped to URL path.\n//       int64 revision = 2;    // Mapped to URL query parameter `revision`.\n//       SubMessage sub = 3;    // Mapped to URL query parameter `sub.subfield`.\n//     }\n//\n// This enables a HTTP JSON to RPC mapping as below:\n//\n// HTTP | gRPC\n// -----|-----\n// `GET /v1/messages/123456?revision=2&sub.subfield=foo` |\n// `GetMessage(message_id: \"123456\" revision: 2 sub: SubMessage(subfield:\n// \"foo\"))`\n//\n// Note that fields which are mapped to URL query parameters must have a\n// primitive type or a repeated primitive type or a non-repeated message type.\n// In the case of a repeated type, the parameter can be repeated in the URL\n// as `...?param=A&param=B`. In the case of a message type, each field of the\n// message is mapped to a separate parameter, such as\n// `...?foo.a=A&foo.b=B&foo.c=C`.\n//\n// For HTTP methods that allow a request body, the `body` field\n// specifies the mapping. Consider a REST update method on the\n// message resource collection:\n//\n//     service Messaging {\n//       rpc UpdateMessage(UpdateMessageRequest) returns (Message) {\n//         option (google.api.http) = {\n//           patch: \"/v1/messages/{message_id}\"\n//           body: \"message\"\n//         };\n//       }\n//     }\n//     message UpdateMessageRequest {\n//       string message_id = 1; // mapped to the URL\n//       Message message = 2;   // mapped to the body\n//     }\n//\n// The following HTTP JSON to RPC mapping is enabled, where the\n// representation of the JSON in the request body is determined by\n// protos JSON encoding:\n//\n// HTTP | gRPC\n// -----|-----\n// `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n// \"123456\" message { text: \"Hi!\" })`\n//\n// The special name `*` can be used in the body mapping to define that\n// every field not bound by the path template should be mapped to the\n// request body.  This enables the following alternative definition of\n// the update method:\n//\n//     service Messaging {\n//       rpc UpdateMessage(Message) returns (Message) {\n//         option (google.api.http) = {\n//           patch: \"/v1/messages/{message_id}\"\n//           body: \"*\"\n//         };\n//       }\n//     }\n//     message Message {\n//       string message_id = 1;\n//       string text = 2;\n//     }\n//\n//\n// The following HTTP JSON to RPC mapping is enabled:\n//\n// HTTP | gRPC\n// -----|-----\n// `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n// \"123456\" text: \"Hi!\")`\n//\n// Note that when using `*` in the body mapping, it is not possible to\n// have HTTP parameters, as all fields not bound by the path end in\n// the body. This makes this option more rarely used in practice when\n// defining REST APIs. The common usage of `*` is in custom methods\n// which don't use the URL at all for transferring data.\n//\n// It is possible to define multiple HTTP methods for one RPC by using\n// the `additional_bindings` option. Example:\n//\n//     service Messaging {\n//       rpc GetMessage(GetMessageRequest) returns (Message) {\n//         option (google.api.http) = {\n//           get: \"/v1/messages/{message_id}\"\n//           additional_bindings {\n//             get: \"/v1/users/{user_id}/messages/{message_id}\"\n//           }\n//         };\n//       }\n//     }\n//     message GetMessageRequest {\n//       string message_id = 1;\n//       string user_id = 2;\n//     }\n//\n// This enables the following two alternative HTTP JSON to RPC mappings:\n//\n// HTTP | gRPC\n// -----|-----\n// `GET /v1/messages/123456` | `GetMessage(message_id: \"123456\")`\n// `GET /v1/users/me/messages/123456` | `GetMessage(user_id: \"me\" message_id:\n// \"123456\")`\n//\n// ## Rules for HTTP mapping\n//\n// 1. Leaf request fields (recursive expansion nested messages in the request\n//    message) are classified into three categories:\n//    - Fields referred by the path template. They are passed via the URL path.\n//    - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They are passed via the HTTP\n//      request body.\n//    - All other fields are passed via the URL query parameters, and the\n//      parameter name is the field path in the request message. A repeated\n//      field can be represented as multiple query parameters under the same\n//      name.\n//  2. If [HttpRule.body][google.api.HttpRule.body] is \"*\", there is no URL query parameter, all fields\n//     are passed via URL path and HTTP request body.\n//  3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP request body, all\n//     fields are passed via URL path and URL query parameters.\n//\n// ### Path template syntax\n//\n//     Template = \"/\" Segments [ Verb ] ;\n//     Segments = Segment { \"/\" Segment } ;\n//     Segment  = \"*\" | \"**\" | LITERAL | Variable ;\n//     Variable = \"{\" FieldPath [ \"=\" Segments ] \"}\" ;\n//     FieldPath = IDENT { \".\" IDENT } ;\n//     Verb     = \":\" LITERAL ;\n//\n// The syntax `*` matches a single URL path segment. The syntax `**` matches\n// zero or more URL path segments, which must be the last part of the URL path\n// except the `Verb`.\n//\n// The syntax `Variable` matches part of the URL path as specified by its\n// template. A variable template must not contain other variables. If a variable\n// matches a single path segment, its template may be omitted, e.g. `{var}`\n// is equivalent to `{var=*}`.\n//\n// The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`\n// contains any reserved character, such characters should be percent-encoded\n// before the matching.\n//\n// If a variable contains exactly one path segment, such as `\"{var}\"` or\n// `\"{var=*}\"`, when such a variable is expanded into a URL path on the client\n// side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The\n// server side does the reverse decoding. Such variables show up in the\n// [Discovery\n// Document](https://developers.google.com/discovery/v1/reference/apis) as\n// `{var}`.\n//\n// If a variable contains multiple path segments, such as `\"{var=foo/*}\"`\n// or `\"{var=**}\"`, when such a variable is expanded into a URL path on the\n// client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.\n// The server side does the reverse decoding, except \"%2F\" and \"%2f\" are left\n// unchanged. Such variables show up in the\n// [Discovery\n// Document](https://developers.google.com/discovery/v1/reference/apis) as\n// `{+var}`.\n//\n// ## Using gRPC API Service Configuration\n//\n// gRPC API Service Configuration (service config) is a configuration language\n// for configuring a gRPC service to become a user-facing product. The\n// service config is simply the YAML representation of the `google.api.Service`\n// proto message.\n//\n// As an alternative to annotating your proto file, you can configure gRPC\n// transcoding in your service config YAML files. You do this by specifying a\n// `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same\n// effect as the proto annotation. This can be particularly useful if you\n// have a proto that is reused in multiple services. Note that any transcoding\n// specified in the service config will override any matching transcoding\n// configuration in the proto.\n//\n// Example:\n//\n//     http:\n//       rules:\n//         # Selects a gRPC method and applies HttpRule to it.\n//         - selector: example.v1.Messaging.GetMessage\n//           get: /v1/messages/{message_id}/{sub.subfield}\n//\n// ## Special notes\n//\n// When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the\n// proto to JSON conversion must follow the [proto3\n// specification](https://developers.google.com/protocol-buffers/docs/proto3#json).\n//\n// While the single segment variable follows the semantics of\n// [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String\n// Expansion, the multi segment variable **does not** follow RFC 6570 Section\n// 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion\n// does not expand special characters like `?` and `#`, which would lead\n// to invalid URLs. As the result, gRPC Transcoding uses a custom encoding\n// for multi segment variables.\n//\n// The path variables **must not** refer to any repeated or mapped field,\n// because client libraries are not capable of handling such variable expansion.\n//\n// The path variables **must not** capture the leading \"/\" character. The reason\n// is that the most common use case \"{var}\" does not capture the leading \"/\"\n// character. For consistency, all path variables must share the same behavior.\n//\n// Repeated message fields must not be mapped to URL query parameters, because\n// no client library can support such complicated mapping.\n//\n// If an API needs to use a JSON array for request or response body, it can map\n// the request or response body to a repeated field. However, some gRPC\n// Transcoding implementations may not support this feature.\nmessage HttpRule {\n  // Selects a method to which this rule applies.\n  //\n  // Refer to [selector][google.api.DocumentationRule.selector] for syntax details.\n  string selector = 1;\n\n  // Determines the URL pattern is matched by this rules. This pattern can be\n  // used with any of the {get|put|post|delete|patch} methods. A custom method\n  // can be defined using the 'custom' field.\n  oneof pattern {\n    // Maps to HTTP GET. Used for listing and getting information about\n    // resources.\n    string get = 2;\n\n    // Maps to HTTP PUT. Used for replacing a resource.\n    string put = 3;\n\n    // Maps to HTTP POST. Used for creating a resource or performing an action.\n    string post = 4;\n\n    // Maps to HTTP DELETE. Used for deleting a resource.\n    string delete = 5;\n\n    // Maps to HTTP PATCH. Used for updating a resource.\n    string patch = 6;\n\n    // The custom pattern is used for specifying an HTTP method that is not\n    // included in the `pattern` field, such as HEAD, or \"*\" to leave the\n    // HTTP method unspecified for this rule. The wild-card rule is useful\n    // for services that provide content to Web (HTML) clients.\n    CustomHttpPattern custom = 8;\n  }\n\n  // The name of the request field whose value is mapped to the HTTP request\n  // body, or `*` for mapping all request fields not captured by the path\n  // pattern to the HTTP body, or omitted for not having any HTTP request body.\n  //\n  // NOTE: the referred field must be present at the top-level of the request\n  // message type.\n  string body = 7;\n\n  // Optional. The name of the response field whose value is mapped to the HTTP\n  // response body. When omitted, the entire response message will be used\n  // as the HTTP response body.\n  //\n  // NOTE: The referred field must be present at the top-level of the response\n  // message type.\n  string response_body = 12;\n\n  // Additional HTTP bindings for the selector. Nested bindings must\n  // not contain an `additional_bindings` field themselves (that is,\n  // the nesting may only be one level deep).\n  repeated HttpRule additional_bindings = 11;\n}\n\n// A custom pattern is used for defining custom HTTP verb.\nmessage CustomHttpPattern {\n  // The name of this custom HTTP verb.\n  string kind = 1;\n\n  // The path matched by this custom verb.\n  string path = 2;\n}\n"
  },
  {
    "path": "api/mindexd/pb/google/api/httpbody.proto",
    "content": "// Copyright 2020 Google LLC\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.api;\n\nimport \"google/protobuf/any.proto\";\n\noption cc_enable_arenas = true;\noption go_package = \"google.golang.org/genproto/googleapis/api/httpbody;httpbody\";\noption java_multiple_files = true;\noption java_outer_classname = \"HttpBodyProto\";\noption java_package = \"com.google.api\";\noption objc_class_prefix = \"GAPI\";\n\n// Message that represents an arbitrary HTTP body. It should only be used for\n// payload formats that can't be represented as JSON, such as raw binary or\n// an HTML page.\n//\n//\n// This message can be used both in streaming and non-streaming API methods in\n// the request as well as the response.\n//\n// It can be used as a top-level request field, which is convenient if one\n// wants to extract parameters from either the URL or HTTP template into the\n// request fields and also want access to the raw HTTP body.\n//\n// Example:\n//\n//     message GetResourceRequest {\n//       // A unique request id.\n//       string request_id = 1;\n//\n//       // The raw HTTP body is bound to this field.\n//       google.api.HttpBody http_body = 2;\n//     }\n//\n//     service ResourceService {\n//       rpc GetResource(GetResourceRequest) returns (google.api.HttpBody);\n//       rpc UpdateResource(google.api.HttpBody) returns\n//       (google.protobuf.Empty);\n//     }\n//\n// Example with streaming methods:\n//\n//     service CaldavService {\n//       rpc GetCalendar(stream google.api.HttpBody)\n//         returns (stream google.api.HttpBody);\n//       rpc UpdateCalendar(stream google.api.HttpBody)\n//         returns (stream google.api.HttpBody);\n//     }\n//\n// Use of this type only changes how the request and response bodies are\n// handled, all other features will continue to work unchanged.\nmessage HttpBody {\n  // The HTTP Content-Type header value specifying the content type of the body.\n  string content_type = 1;\n\n  // The HTTP request/response body as raw binary.\n  bytes data = 2;\n\n  // Application specific response metadata. Must be set in the first response\n  // for streaming APIs.\n  repeated google.protobuf.Any extensions = 3;\n}\n"
  },
  {
    "path": "api/mindexd/pb/mindexd.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.23.0\n// \tprotoc        v3.13.0\n// source: api/mindexd/pb/mindexd.proto\n\npackage pb\n\nimport (\n\tcontext \"context\"\n\tproto \"github.com/golang/protobuf/proto\"\n\ttimestamp \"github.com/golang/protobuf/ptypes/timestamp\"\n\t_ \"github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options\"\n\t_ \"google.golang.org/genproto/googleapis/api/annotations\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\n// This is a compile-time assertion that a sufficiently up-to-date version\n// of the legacy proto package is being used.\nconst _ = proto.ProtoPackageIsVersion4\n\ntype QueryIndexRequestSortField int32\n\nconst (\n\tQueryIndexRequestSortField_TEXTILE_DEALS_TOTAL_SUCCESSFUL      QueryIndexRequestSortField = 0\n\tQueryIndexRequestSortField_TEXTILE_DEALS_LAST_SUCCESSFUL       QueryIndexRequestSortField = 1\n\tQueryIndexRequestSortField_TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL QueryIndexRequestSortField = 2\n\tQueryIndexRequestSortField_TEXTILE_RETRIEVALS_LAST_SUCCESSFUL  QueryIndexRequestSortField = 3\n\tQueryIndexRequestSortField_ASK_PRICE                           QueryIndexRequestSortField = 4\n\tQueryIndexRequestSortField_VERIFIED_ASK_PRICE                  QueryIndexRequestSortField = 5\n\tQueryIndexRequestSortField_ACTIVE_SECTORS                      QueryIndexRequestSortField = 6\n)\n\n// Enum value maps for QueryIndexRequestSortField.\nvar (\n\tQueryIndexRequestSortField_name = map[int32]string{\n\t\t0: \"TEXTILE_DEALS_TOTAL_SUCCESSFUL\",\n\t\t1: \"TEXTILE_DEALS_LAST_SUCCESSFUL\",\n\t\t2: \"TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL\",\n\t\t3: \"TEXTILE_RETRIEVALS_LAST_SUCCESSFUL\",\n\t\t4: \"ASK_PRICE\",\n\t\t5: \"VERIFIED_ASK_PRICE\",\n\t\t6: \"ACTIVE_SECTORS\",\n\t}\n\tQueryIndexRequestSortField_value = map[string]int32{\n\t\t\"TEXTILE_DEALS_TOTAL_SUCCESSFUL\":      0,\n\t\t\"TEXTILE_DEALS_LAST_SUCCESSFUL\":       1,\n\t\t\"TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL\": 2,\n\t\t\"TEXTILE_RETRIEVALS_LAST_SUCCESSFUL\":  3,\n\t\t\"ASK_PRICE\":                           4,\n\t\t\"VERIFIED_ASK_PRICE\":                  5,\n\t\t\"ACTIVE_SECTORS\":                      6,\n\t}\n)\n\nfunc (x QueryIndexRequestSortField) Enum() *QueryIndexRequestSortField {\n\tp := new(QueryIndexRequestSortField)\n\t*p = x\n\treturn p\n}\n\nfunc (x QueryIndexRequestSortField) String() string {\n\treturn protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))\n}\n\nfunc (QueryIndexRequestSortField) Descriptor() protoreflect.EnumDescriptor {\n\treturn file_api_mindexd_pb_mindexd_proto_enumTypes[0].Descriptor()\n}\n\nfunc (QueryIndexRequestSortField) Type() protoreflect.EnumType {\n\treturn &file_api_mindexd_pb_mindexd_proto_enumTypes[0]\n}\n\nfunc (x QueryIndexRequestSortField) Number() protoreflect.EnumNumber {\n\treturn protoreflect.EnumNumber(x)\n}\n\n// Deprecated: Use QueryIndexRequestSortField.Descriptor instead.\nfunc (QueryIndexRequestSortField) EnumDescriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{0}\n}\n\n// Domain\ntype MinerIndexInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMinerAddr string               `protobuf:\"bytes,1,opt,name=miner_addr,json=minerAddr,proto3\" json:\"miner_addr,omitempty\"`\n\tMetadata  *MetadataInfo        `protobuf:\"bytes,2,opt,name=metadata,proto3\" json:\"metadata,omitempty\"`\n\tFilecoin  *FilecoinInfo        `protobuf:\"bytes,3,opt,name=filecoin,proto3\" json:\"filecoin,omitempty\"`\n\tTextile   *TextileInfo         `protobuf:\"bytes,4,opt,name=textile,proto3\" json:\"textile,omitempty\"`\n\tUpdatedAt *timestamp.Timestamp `protobuf:\"bytes,5,opt,name=updated_at,json=updatedAt,proto3\" json:\"updated_at,omitempty\"`\n}\n\nfunc (x *MinerIndexInfo) Reset() {\n\t*x = MinerIndexInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MinerIndexInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MinerIndexInfo) ProtoMessage() {}\n\nfunc (x *MinerIndexInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MinerIndexInfo.ProtoReflect.Descriptor instead.\nfunc (*MinerIndexInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *MinerIndexInfo) GetMinerAddr() string {\n\tif x != nil {\n\t\treturn x.MinerAddr\n\t}\n\treturn \"\"\n}\n\nfunc (x *MinerIndexInfo) GetMetadata() *MetadataInfo {\n\tif x != nil {\n\t\treturn x.Metadata\n\t}\n\treturn nil\n}\n\nfunc (x *MinerIndexInfo) GetFilecoin() *FilecoinInfo {\n\tif x != nil {\n\t\treturn x.Filecoin\n\t}\n\treturn nil\n}\n\nfunc (x *MinerIndexInfo) GetTextile() *TextileInfo {\n\tif x != nil {\n\t\treturn x.Textile\n\t}\n\treturn nil\n}\n\nfunc (x *MinerIndexInfo) GetUpdatedAt() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.UpdatedAt\n\t}\n\treturn nil\n}\n\ntype MetadataInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tLocation string `protobuf:\"bytes,1,opt,name=location,proto3\" json:\"location,omitempty\"`\n}\n\nfunc (x *MetadataInfo) Reset() {\n\t*x = MetadataInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MetadataInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MetadataInfo) ProtoMessage() {}\n\nfunc (x *MetadataInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MetadataInfo.ProtoReflect.Descriptor instead.\nfunc (*MetadataInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *MetadataInfo) GetLocation() string {\n\tif x != nil {\n\t\treturn x.Location\n\t}\n\treturn \"\"\n}\n\ntype FilecoinInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRelativePower    float64              `protobuf:\"fixed64,1,opt,name=relative_power,json=relativePower,proto3\" json:\"relative_power,omitempty\"`\n\tAskPrice         string               `protobuf:\"bytes,2,opt,name=ask_price,json=askPrice,proto3\" json:\"ask_price,omitempty\"`\n\tAskVerifiedPrice string               `protobuf:\"bytes,3,opt,name=ask_verified_price,json=askVerifiedPrice,proto3\" json:\"ask_verified_price,omitempty\"`\n\tMinPieceSize     int64                `protobuf:\"varint,4,opt,name=min_piece_size,json=minPieceSize,proto3\" json:\"min_piece_size,omitempty\"`\n\tMaxPieceSize     int64                `protobuf:\"varint,5,opt,name=max_piece_size,json=maxPieceSize,proto3\" json:\"max_piece_size,omitempty\"`\n\tSectorSize       int64                `protobuf:\"varint,6,opt,name=sector_size,json=sectorSize,proto3\" json:\"sector_size,omitempty\"`\n\tActiveSectors    int64                `protobuf:\"varint,7,opt,name=active_sectors,json=activeSectors,proto3\" json:\"active_sectors,omitempty\"`\n\tFaultySectors    int64                `protobuf:\"varint,8,opt,name=faulty_sectors,json=faultySectors,proto3\" json:\"faulty_sectors,omitempty\"`\n\tUpdatedAt        *timestamp.Timestamp `protobuf:\"bytes,9,opt,name=updated_at,json=updatedAt,proto3\" json:\"updated_at,omitempty\"`\n}\n\nfunc (x *FilecoinInfo) Reset() {\n\t*x = FilecoinInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *FilecoinInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*FilecoinInfo) ProtoMessage() {}\n\nfunc (x *FilecoinInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use FilecoinInfo.ProtoReflect.Descriptor instead.\nfunc (*FilecoinInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *FilecoinInfo) GetRelativePower() float64 {\n\tif x != nil {\n\t\treturn x.RelativePower\n\t}\n\treturn 0\n}\n\nfunc (x *FilecoinInfo) GetAskPrice() string {\n\tif x != nil {\n\t\treturn x.AskPrice\n\t}\n\treturn \"\"\n}\n\nfunc (x *FilecoinInfo) GetAskVerifiedPrice() string {\n\tif x != nil {\n\t\treturn x.AskVerifiedPrice\n\t}\n\treturn \"\"\n}\n\nfunc (x *FilecoinInfo) GetMinPieceSize() int64 {\n\tif x != nil {\n\t\treturn x.MinPieceSize\n\t}\n\treturn 0\n}\n\nfunc (x *FilecoinInfo) GetMaxPieceSize() int64 {\n\tif x != nil {\n\t\treturn x.MaxPieceSize\n\t}\n\treturn 0\n}\n\nfunc (x *FilecoinInfo) GetSectorSize() int64 {\n\tif x != nil {\n\t\treturn x.SectorSize\n\t}\n\treturn 0\n}\n\nfunc (x *FilecoinInfo) GetActiveSectors() int64 {\n\tif x != nil {\n\t\treturn x.ActiveSectors\n\t}\n\treturn 0\n}\n\nfunc (x *FilecoinInfo) GetFaultySectors() int64 {\n\tif x != nil {\n\t\treturn x.FaultySectors\n\t}\n\treturn 0\n}\n\nfunc (x *FilecoinInfo) GetUpdatedAt() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.UpdatedAt\n\t}\n\treturn nil\n}\n\ntype TextileInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRegions           map[string]*TextileRegionInfo `protobuf:\"bytes,1,rep,name=regions,proto3\" json:\"regions,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tDealsSummary      *DealsSummary                 `protobuf:\"bytes,2,opt,name=deals_summary,json=dealsSummary,proto3\" json:\"deals_summary,omitempty\"`\n\tRetrievalsSummary *RetrievalsSummary            `protobuf:\"bytes,3,opt,name=retrievals_summary,json=retrievalsSummary,proto3\" json:\"retrievals_summary,omitempty\"`\n\tUpdatedAt         *timestamp.Timestamp          `protobuf:\"bytes,4,opt,name=updated_at,json=updatedAt,proto3\" json:\"updated_at,omitempty\"`\n}\n\nfunc (x *TextileInfo) Reset() {\n\t*x = TextileInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TextileInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TextileInfo) ProtoMessage() {}\n\nfunc (x *TextileInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TextileInfo.ProtoReflect.Descriptor instead.\nfunc (*TextileInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *TextileInfo) GetRegions() map[string]*TextileRegionInfo {\n\tif x != nil {\n\t\treturn x.Regions\n\t}\n\treturn nil\n}\n\nfunc (x *TextileInfo) GetDealsSummary() *DealsSummary {\n\tif x != nil {\n\t\treturn x.DealsSummary\n\t}\n\treturn nil\n}\n\nfunc (x *TextileInfo) GetRetrievalsSummary() *RetrievalsSummary {\n\tif x != nil {\n\t\treturn x.RetrievalsSummary\n\t}\n\treturn nil\n}\n\nfunc (x *TextileInfo) GetUpdatedAt() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.UpdatedAt\n\t}\n\treturn nil\n}\n\ntype TextileRegionInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tDeals      *TextileDealsInfo      `protobuf:\"bytes,1,opt,name=deals,proto3\" json:\"deals,omitempty\"`\n\tRetrievals *TextileRetrievalsInfo `protobuf:\"bytes,2,opt,name=retrievals,proto3\" json:\"retrievals,omitempty\"`\n}\n\nfunc (x *TextileRegionInfo) Reset() {\n\t*x = TextileRegionInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TextileRegionInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TextileRegionInfo) ProtoMessage() {}\n\nfunc (x *TextileRegionInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TextileRegionInfo.ProtoReflect.Descriptor instead.\nfunc (*TextileRegionInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *TextileRegionInfo) GetDeals() *TextileDealsInfo {\n\tif x != nil {\n\t\treturn x.Deals\n\t}\n\treturn nil\n}\n\nfunc (x *TextileRegionInfo) GetRetrievals() *TextileRetrievalsInfo {\n\tif x != nil {\n\t\treturn x.Retrievals\n\t}\n\treturn nil\n}\n\ntype DealsSummary struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTotal       int64                `protobuf:\"varint,1,opt,name=total,proto3\" json:\"total,omitempty\"`\n\tLast        *timestamp.Timestamp `protobuf:\"bytes,2,opt,name=last,proto3\" json:\"last,omitempty\"`\n\tFailures    int64                `protobuf:\"varint,3,opt,name=failures,proto3\" json:\"failures,omitempty\"`\n\tLastFailure *timestamp.Timestamp `protobuf:\"bytes,4,opt,name=last_failure,json=lastFailure,proto3\" json:\"last_failure,omitempty\"`\n}\n\nfunc (x *DealsSummary) Reset() {\n\t*x = DealsSummary{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DealsSummary) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DealsSummary) ProtoMessage() {}\n\nfunc (x *DealsSummary) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DealsSummary.ProtoReflect.Descriptor instead.\nfunc (*DealsSummary) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *DealsSummary) GetTotal() int64 {\n\tif x != nil {\n\t\treturn x.Total\n\t}\n\treturn 0\n}\n\nfunc (x *DealsSummary) GetLast() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.Last\n\t}\n\treturn nil\n}\n\nfunc (x *DealsSummary) GetFailures() int64 {\n\tif x != nil {\n\t\treturn x.Failures\n\t}\n\treturn 0\n}\n\nfunc (x *DealsSummary) GetLastFailure() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.LastFailure\n\t}\n\treturn nil\n}\n\ntype RetrievalsSummary struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTotal       int64                `protobuf:\"varint,1,opt,name=total,proto3\" json:\"total,omitempty\"`\n\tLast        *timestamp.Timestamp `protobuf:\"bytes,2,opt,name=last,proto3\" json:\"last,omitempty\"`\n\tFailures    int64                `protobuf:\"varint,3,opt,name=failures,proto3\" json:\"failures,omitempty\"`\n\tLastFailure *timestamp.Timestamp `protobuf:\"bytes,4,opt,name=last_failure,json=lastFailure,proto3\" json:\"last_failure,omitempty\"`\n}\n\nfunc (x *RetrievalsSummary) Reset() {\n\t*x = RetrievalsSummary{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *RetrievalsSummary) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*RetrievalsSummary) ProtoMessage() {}\n\nfunc (x *RetrievalsSummary) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use RetrievalsSummary.ProtoReflect.Descriptor instead.\nfunc (*RetrievalsSummary) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *RetrievalsSummary) GetTotal() int64 {\n\tif x != nil {\n\t\treturn x.Total\n\t}\n\treturn 0\n}\n\nfunc (x *RetrievalsSummary) GetLast() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.Last\n\t}\n\treturn nil\n}\n\nfunc (x *RetrievalsSummary) GetFailures() int64 {\n\tif x != nil {\n\t\treturn x.Failures\n\t}\n\treturn 0\n}\n\nfunc (x *RetrievalsSummary) GetLastFailure() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.LastFailure\n\t}\n\treturn nil\n}\n\ntype TextileDealsInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTotal         int64                 `protobuf:\"varint,1,opt,name=total,proto3\" json:\"total,omitempty\"`\n\tLast          *timestamp.Timestamp  `protobuf:\"bytes,2,opt,name=last,proto3\" json:\"last,omitempty\"`\n\tFailures      int64                 `protobuf:\"varint,3,opt,name=failures,proto3\" json:\"failures,omitempty\"`\n\tLastFailure   *timestamp.Timestamp  `protobuf:\"bytes,4,opt,name=last_failure,json=lastFailure,proto3\" json:\"last_failure,omitempty\"`\n\tTailTransfers []*TransferMiBPerSec  `protobuf:\"bytes,5,rep,name=tail_transfers,json=tailTransfers,proto3\" json:\"tail_transfers,omitempty\"`\n\tTailSealed    []*SealedDurationMins `protobuf:\"bytes,6,rep,name=tail_sealed,json=tailSealed,proto3\" json:\"tail_sealed,omitempty\"`\n}\n\nfunc (x *TextileDealsInfo) Reset() {\n\t*x = TextileDealsInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TextileDealsInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TextileDealsInfo) ProtoMessage() {}\n\nfunc (x *TextileDealsInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TextileDealsInfo.ProtoReflect.Descriptor instead.\nfunc (*TextileDealsInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{7}\n}\n\nfunc (x *TextileDealsInfo) GetTotal() int64 {\n\tif x != nil {\n\t\treturn x.Total\n\t}\n\treturn 0\n}\n\nfunc (x *TextileDealsInfo) GetLast() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.Last\n\t}\n\treturn nil\n}\n\nfunc (x *TextileDealsInfo) GetFailures() int64 {\n\tif x != nil {\n\t\treturn x.Failures\n\t}\n\treturn 0\n}\n\nfunc (x *TextileDealsInfo) GetLastFailure() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.LastFailure\n\t}\n\treturn nil\n}\n\nfunc (x *TextileDealsInfo) GetTailTransfers() []*TransferMiBPerSec {\n\tif x != nil {\n\t\treturn x.TailTransfers\n\t}\n\treturn nil\n}\n\nfunc (x *TextileDealsInfo) GetTailSealed() []*SealedDurationMins {\n\tif x != nil {\n\t\treturn x.TailSealed\n\t}\n\treturn nil\n}\n\ntype TextileRetrievalsInfo struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTotal         int64                `protobuf:\"varint,1,opt,name=total,proto3\" json:\"total,omitempty\"`\n\tLast          *timestamp.Timestamp `protobuf:\"bytes,2,opt,name=last,proto3\" json:\"last,omitempty\"`\n\tFailures      int64                `protobuf:\"varint,3,opt,name=failures,proto3\" json:\"failures,omitempty\"`\n\tLastFailure   *timestamp.Timestamp `protobuf:\"bytes,4,opt,name=last_failure,json=lastFailure,proto3\" json:\"last_failure,omitempty\"`\n\tTailTransfers []*TransferMiBPerSec `protobuf:\"bytes,5,rep,name=tail_transfers,json=tailTransfers,proto3\" json:\"tail_transfers,omitempty\"`\n}\n\nfunc (x *TextileRetrievalsInfo) Reset() {\n\t*x = TextileRetrievalsInfo{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TextileRetrievalsInfo) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TextileRetrievalsInfo) ProtoMessage() {}\n\nfunc (x *TextileRetrievalsInfo) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TextileRetrievalsInfo.ProtoReflect.Descriptor instead.\nfunc (*TextileRetrievalsInfo) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{8}\n}\n\nfunc (x *TextileRetrievalsInfo) GetTotal() int64 {\n\tif x != nil {\n\t\treturn x.Total\n\t}\n\treturn 0\n}\n\nfunc (x *TextileRetrievalsInfo) GetLast() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.Last\n\t}\n\treturn nil\n}\n\nfunc (x *TextileRetrievalsInfo) GetFailures() int64 {\n\tif x != nil {\n\t\treturn x.Failures\n\t}\n\treturn 0\n}\n\nfunc (x *TextileRetrievalsInfo) GetLastFailure() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.LastFailure\n\t}\n\treturn nil\n}\n\nfunc (x *TextileRetrievalsInfo) GetTailTransfers() []*TransferMiBPerSec {\n\tif x != nil {\n\t\treturn x.TailTransfers\n\t}\n\treturn nil\n}\n\ntype TransferMiBPerSec struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTransferedAt *timestamp.Timestamp `protobuf:\"bytes,1,opt,name=transfered_at,json=transferedAt,proto3\" json:\"transfered_at,omitempty\"`\n\tMibPerSec    float64              `protobuf:\"fixed64,2,opt,name=mib_per_sec,json=mibPerSec,proto3\" json:\"mib_per_sec,omitempty\"`\n}\n\nfunc (x *TransferMiBPerSec) Reset() {\n\t*x = TransferMiBPerSec{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *TransferMiBPerSec) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*TransferMiBPerSec) ProtoMessage() {}\n\nfunc (x *TransferMiBPerSec) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use TransferMiBPerSec.ProtoReflect.Descriptor instead.\nfunc (*TransferMiBPerSec) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *TransferMiBPerSec) GetTransferedAt() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.TransferedAt\n\t}\n\treturn nil\n}\n\nfunc (x *TransferMiBPerSec) GetMibPerSec() float64 {\n\tif x != nil {\n\t\treturn x.MibPerSec\n\t}\n\treturn 0\n}\n\ntype SealedDurationMins struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSealedAt        *timestamp.Timestamp `protobuf:\"bytes,1,opt,name=sealed_at,json=sealedAt,proto3\" json:\"sealed_at,omitempty\"`\n\tDurationSeconds int64                `protobuf:\"varint,2,opt,name=duration_seconds,json=durationSeconds,proto3\" json:\"duration_seconds,omitempty\"`\n}\n\nfunc (x *SealedDurationMins) Reset() {\n\t*x = SealedDurationMins{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SealedDurationMins) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SealedDurationMins) ProtoMessage() {}\n\nfunc (x *SealedDurationMins) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SealedDurationMins.ProtoReflect.Descriptor instead.\nfunc (*SealedDurationMins) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{10}\n}\n\nfunc (x *SealedDurationMins) GetSealedAt() *timestamp.Timestamp {\n\tif x != nil {\n\t\treturn x.SealedAt\n\t}\n\treturn nil\n}\n\nfunc (x *SealedDurationMins) GetDurationSeconds() int64 {\n\tif x != nil {\n\t\treturn x.DurationSeconds\n\t}\n\treturn 0\n}\n\ntype GetMinersResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMinerAddress string `protobuf:\"bytes,1,opt,name=miner_address,json=minerAddress,proto3\" json:\"miner_address,omitempty\"`\n}\n\nfunc (x *GetMinersResponse) Reset() {\n\t*x = GetMinersResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetMinersResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetMinersResponse) ProtoMessage() {}\n\nfunc (x *GetMinersResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetMinersResponse.ProtoReflect.Descriptor instead.\nfunc (*GetMinersResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *GetMinersResponse) GetMinerAddress() string {\n\tif x != nil {\n\t\treturn x.MinerAddress\n\t}\n\treturn \"\"\n}\n\n// rpc QueryIndexDashboard\ntype QueryIndexRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tFilters *QueryIndexRequestFilters `protobuf:\"bytes,1,opt,name=filters,proto3\" json:\"filters,omitempty\"`\n\tSort    *QueryIndexRequestSort    `protobuf:\"bytes,2,opt,name=sort,proto3\" json:\"sort,omitempty\"`\n\tLimit   int32                     `protobuf:\"varint,3,opt,name=limit,proto3\" json:\"limit,omitempty\"`\n\tOffset  int64                     `protobuf:\"varint,4,opt,name=offset,proto3\" json:\"offset,omitempty\"`\n}\n\nfunc (x *QueryIndexRequest) Reset() {\n\t*x = QueryIndexRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *QueryIndexRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*QueryIndexRequest) ProtoMessage() {}\n\nfunc (x *QueryIndexRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use QueryIndexRequest.ProtoReflect.Descriptor instead.\nfunc (*QueryIndexRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{12}\n}\n\nfunc (x *QueryIndexRequest) GetFilters() *QueryIndexRequestFilters {\n\tif x != nil {\n\t\treturn x.Filters\n\t}\n\treturn nil\n}\n\nfunc (x *QueryIndexRequest) GetSort() *QueryIndexRequestSort {\n\tif x != nil {\n\t\treturn x.Sort\n\t}\n\treturn nil\n}\n\nfunc (x *QueryIndexRequest) GetLimit() int32 {\n\tif x != nil {\n\t\treturn x.Limit\n\t}\n\treturn 0\n}\n\nfunc (x *QueryIndexRequest) GetOffset() int64 {\n\tif x != nil {\n\t\treturn x.Offset\n\t}\n\treturn 0\n}\n\ntype QueryIndexRequestFilters struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMinerLocation string `protobuf:\"bytes,1,opt,name=miner_location,json=minerLocation,proto3\" json:\"miner_location,omitempty\"`\n}\n\nfunc (x *QueryIndexRequestFilters) Reset() {\n\t*x = QueryIndexRequestFilters{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *QueryIndexRequestFilters) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*QueryIndexRequestFilters) ProtoMessage() {}\n\nfunc (x *QueryIndexRequestFilters) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use QueryIndexRequestFilters.ProtoReflect.Descriptor instead.\nfunc (*QueryIndexRequestFilters) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{13}\n}\n\nfunc (x *QueryIndexRequestFilters) GetMinerLocation() string {\n\tif x != nil {\n\t\treturn x.MinerLocation\n\t}\n\treturn \"\"\n}\n\ntype QueryIndexRequestSort struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tAscending     bool                       `protobuf:\"varint,1,opt,name=ascending,proto3\" json:\"ascending,omitempty\"`\n\tTextileRegion string                     `protobuf:\"bytes,2,opt,name=textile_region,json=textileRegion,proto3\" json:\"textile_region,omitempty\"`\n\tField         QueryIndexRequestSortField `protobuf:\"varint,3,opt,name=field,proto3,enum=api.mindexd.pb.QueryIndexRequestSortField\" json:\"field,omitempty\"`\n}\n\nfunc (x *QueryIndexRequestSort) Reset() {\n\t*x = QueryIndexRequestSort{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[14]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *QueryIndexRequestSort) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*QueryIndexRequestSort) ProtoMessage() {}\n\nfunc (x *QueryIndexRequestSort) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[14]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use QueryIndexRequestSort.ProtoReflect.Descriptor instead.\nfunc (*QueryIndexRequestSort) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{14}\n}\n\nfunc (x *QueryIndexRequestSort) GetAscending() bool {\n\tif x != nil {\n\t\treturn x.Ascending\n\t}\n\treturn false\n}\n\nfunc (x *QueryIndexRequestSort) GetTextileRegion() string {\n\tif x != nil {\n\t\treturn x.TextileRegion\n\t}\n\treturn \"\"\n}\n\nfunc (x *QueryIndexRequestSort) GetField() QueryIndexRequestSortField {\n\tif x != nil {\n\t\treturn x.Field\n\t}\n\treturn QueryIndexRequestSortField_TEXTILE_DEALS_TOTAL_SUCCESSFUL\n}\n\ntype QueryIndexResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMiners []*QueryIndexResponseMiner `protobuf:\"bytes,1,rep,name=miners,proto3\" json:\"miners,omitempty\"`\n}\n\nfunc (x *QueryIndexResponse) Reset() {\n\t*x = QueryIndexResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[15]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *QueryIndexResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*QueryIndexResponse) ProtoMessage() {}\n\nfunc (x *QueryIndexResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[15]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use QueryIndexResponse.ProtoReflect.Descriptor instead.\nfunc (*QueryIndexResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{15}\n}\n\nfunc (x *QueryIndexResponse) GetMiners() []*QueryIndexResponseMiner {\n\tif x != nil {\n\t\treturn x.Miners\n\t}\n\treturn nil\n}\n\ntype QueryIndexResponseMiner struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMiner *MinerIndexInfo `protobuf:\"bytes,1,opt,name=miner,proto3\" json:\"miner,omitempty\"`\n}\n\nfunc (x *QueryIndexResponseMiner) Reset() {\n\t*x = QueryIndexResponseMiner{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[16]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *QueryIndexResponseMiner) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*QueryIndexResponseMiner) ProtoMessage() {}\n\nfunc (x *QueryIndexResponseMiner) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[16]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use QueryIndexResponseMiner.ProtoReflect.Descriptor instead.\nfunc (*QueryIndexResponseMiner) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{16}\n}\n\nfunc (x *QueryIndexResponseMiner) GetMiner() *MinerIndexInfo {\n\tif x != nil {\n\t\treturn x.Miner\n\t}\n\treturn nil\n}\n\n// rpc GetMinerInfo\ntype GetMinerInfoRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMinerAddress string `protobuf:\"bytes,1,opt,name=miner_address,json=minerAddress,proto3\" json:\"miner_address,omitempty\"`\n}\n\nfunc (x *GetMinerInfoRequest) Reset() {\n\t*x = GetMinerInfoRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[17]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetMinerInfoRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetMinerInfoRequest) ProtoMessage() {}\n\nfunc (x *GetMinerInfoRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[17]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetMinerInfoRequest.ProtoReflect.Descriptor instead.\nfunc (*GetMinerInfoRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{17}\n}\n\nfunc (x *GetMinerInfoRequest) GetMinerAddress() string {\n\tif x != nil {\n\t\treturn x.MinerAddress\n\t}\n\treturn \"\"\n}\n\ntype GetMinerInfoResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tInfo *MinerIndexInfo `protobuf:\"bytes,1,opt,name=info,proto3\" json:\"info,omitempty\"`\n}\n\nfunc (x *GetMinerInfoResponse) Reset() {\n\t*x = GetMinerInfoResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[18]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetMinerInfoResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetMinerInfoResponse) ProtoMessage() {}\n\nfunc (x *GetMinerInfoResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[18]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetMinerInfoResponse.ProtoReflect.Descriptor instead.\nfunc (*GetMinerInfoResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{18}\n}\n\nfunc (x *GetMinerInfoResponse) GetInfo() *MinerIndexInfo {\n\tif x != nil {\n\t\treturn x.Info\n\t}\n\treturn nil\n}\n\n// rpc CalculateDealPrice\ntype CalculateDealPriceRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMinerAddresses []string `protobuf:\"bytes,1,rep,name=miner_addresses,json=minerAddresses,proto3\" json:\"miner_addresses,omitempty\"`\n\tDataSizeBytes  int64    `protobuf:\"varint,2,opt,name=data_size_bytes,json=dataSizeBytes,proto3\" json:\"data_size_bytes,omitempty\"`\n\tDurationDays   int64    `protobuf:\"varint,3,opt,name=duration_days,json=durationDays,proto3\" json:\"duration_days,omitempty\"`\n}\n\nfunc (x *CalculateDealPriceRequest) Reset() {\n\t*x = CalculateDealPriceRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[19]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CalculateDealPriceRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CalculateDealPriceRequest) ProtoMessage() {}\n\nfunc (x *CalculateDealPriceRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[19]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CalculateDealPriceRequest.ProtoReflect.Descriptor instead.\nfunc (*CalculateDealPriceRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{19}\n}\n\nfunc (x *CalculateDealPriceRequest) GetMinerAddresses() []string {\n\tif x != nil {\n\t\treturn x.MinerAddresses\n\t}\n\treturn nil\n}\n\nfunc (x *CalculateDealPriceRequest) GetDataSizeBytes() int64 {\n\tif x != nil {\n\t\treturn x.DataSizeBytes\n\t}\n\treturn 0\n}\n\nfunc (x *CalculateDealPriceRequest) GetDurationDays() int64 {\n\tif x != nil {\n\t\treturn x.DurationDays\n\t}\n\treturn 0\n}\n\ntype CalculateDealPriceResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tResults        []*CalculateDealPriceMiner `protobuf:\"bytes,1,rep,name=results,proto3\" json:\"results,omitempty\"`\n\tPaddedSize     int64                      `protobuf:\"varint,2,opt,name=padded_size,json=paddedSize,proto3\" json:\"padded_size,omitempty\"`\n\tDurationEpochs int64                      `protobuf:\"varint,3,opt,name=duration_epochs,json=durationEpochs,proto3\" json:\"duration_epochs,omitempty\"`\n}\n\nfunc (x *CalculateDealPriceResponse) Reset() {\n\t*x = CalculateDealPriceResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[20]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CalculateDealPriceResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CalculateDealPriceResponse) ProtoMessage() {}\n\nfunc (x *CalculateDealPriceResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[20]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CalculateDealPriceResponse.ProtoReflect.Descriptor instead.\nfunc (*CalculateDealPriceResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{20}\n}\n\nfunc (x *CalculateDealPriceResponse) GetResults() []*CalculateDealPriceMiner {\n\tif x != nil {\n\t\treturn x.Results\n\t}\n\treturn nil\n}\n\nfunc (x *CalculateDealPriceResponse) GetPaddedSize() int64 {\n\tif x != nil {\n\t\treturn x.PaddedSize\n\t}\n\treturn 0\n}\n\nfunc (x *CalculateDealPriceResponse) GetDurationEpochs() int64 {\n\tif x != nil {\n\t\treturn x.DurationEpochs\n\t}\n\treturn 0\n}\n\ntype CalculateDealPriceMiner struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMiner             string `protobuf:\"bytes,1,opt,name=miner,proto3\" json:\"miner,omitempty\"`\n\tTotalCost         string `protobuf:\"bytes,2,opt,name=total_cost,json=totalCost,proto3\" json:\"total_cost,omitempty\"`\n\tVerifiedTotalCost string `protobuf:\"bytes,3,opt,name=verified_total_cost,json=verifiedTotalCost,proto3\" json:\"verified_total_cost,omitempty\"`\n\tPrice             string `protobuf:\"bytes,4,opt,name=price,proto3\" json:\"price,omitempty\"`\n\tVerifiedPrice     string `protobuf:\"bytes,5,opt,name=verified_price,json=verifiedPrice,proto3\" json:\"verified_price,omitempty\"`\n}\n\nfunc (x *CalculateDealPriceMiner) Reset() {\n\t*x = CalculateDealPriceMiner{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[21]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CalculateDealPriceMiner) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CalculateDealPriceMiner) ProtoMessage() {}\n\nfunc (x *CalculateDealPriceMiner) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_mindexd_pb_mindexd_proto_msgTypes[21]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CalculateDealPriceMiner.ProtoReflect.Descriptor instead.\nfunc (*CalculateDealPriceMiner) Descriptor() ([]byte, []int) {\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescGZIP(), []int{21}\n}\n\nfunc (x *CalculateDealPriceMiner) GetMiner() string {\n\tif x != nil {\n\t\treturn x.Miner\n\t}\n\treturn \"\"\n}\n\nfunc (x *CalculateDealPriceMiner) GetTotalCost() string {\n\tif x != nil {\n\t\treturn x.TotalCost\n\t}\n\treturn \"\"\n}\n\nfunc (x *CalculateDealPriceMiner) GetVerifiedTotalCost() string {\n\tif x != nil {\n\t\treturn x.VerifiedTotalCost\n\t}\n\treturn \"\"\n}\n\nfunc (x *CalculateDealPriceMiner) GetPrice() string {\n\tif x != nil {\n\t\treturn x.Price\n\t}\n\treturn \"\"\n}\n\nfunc (x *CalculateDealPriceMiner) GetVerifiedPrice() string {\n\tif x != nil {\n\t\treturn x.VerifiedPrice\n\t}\n\treturn \"\"\n}\n\nvar File_api_mindexd_pb_mindexd_proto protoreflect.FileDescriptor\n\nvar file_api_mindexd_pb_mindexd_proto_rawDesc = []byte{\n\t0x0a, 0x1c, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2f, 0x70, 0x62,\n\t0x2f, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e,\n\t0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x1a, 0x1f,\n\t0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,\n\t0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,\n\t0x2b, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2f, 0x70, 0x62, 0x2f,\n\t0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74,\n\t0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x61, 0x70,\n\t0x69, 0x2f, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x70, 0x72, 0x6f,\n\t0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76,\n\t0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61,\n\t0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x95, 0x02, 0x0a, 0x0e,\n\t0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d,\n\t0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x12, 0x38, 0x0a,\n\t0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,\n\t0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x6d,\n\t0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x38, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x63,\n\t0x6f, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x63,\n\t0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x63, 0x6f, 0x69,\n\t0x6e, 0x12, 0x35, 0x0a, 0x07, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01,\n\t0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,\n\t0x07, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x12, 0x39, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61,\n\t0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,\n\t0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,\n\t0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,\n\t0x64, 0x41, 0x74, 0x22, 0x2a, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x49,\n\t0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,\n\t0xf6, 0x02, 0x0a, 0x0c, 0x46, 0x69, 0x6c, 0x65, 0x63, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f,\n\t0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x6f, 0x77,\n\t0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69,\n\t0x76, 0x65, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x73, 0x6b, 0x5f, 0x70,\n\t0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x73, 0x6b, 0x50,\n\t0x72, 0x69, 0x63, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x61, 0x73, 0x6b, 0x5f, 0x76, 0x65, 0x72, 0x69,\n\t0x66, 0x69, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x10, 0x61, 0x73, 0x6b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x50, 0x72, 0x69,\n\t0x63, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x69, 0x6e, 0x5f, 0x70, 0x69, 0x65, 0x63, 0x65, 0x5f,\n\t0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x69, 0x6e, 0x50,\n\t0x69, 0x65, 0x63, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x61, 0x78, 0x5f,\n\t0x70, 0x69, 0x65, 0x63, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x0c, 0x6d, 0x61, 0x78, 0x50, 0x69, 0x65, 0x63, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1f,\n\t0x0a, 0x0b, 0x73, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20,\n\t0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x53, 0x69, 0x7a, 0x65, 0x12,\n\t0x25, 0x0a, 0x0e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x73, 0x65, 0x63, 0x74, 0x6f, 0x72,\n\t0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53,\n\t0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x79,\n\t0x5f, 0x73, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,\n\t0x66, 0x61, 0x75, 0x6c, 0x74, 0x79, 0x53, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x39, 0x0a,\n\t0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,\n\t0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x75,\n\t0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x80, 0x03, 0x0a, 0x0b, 0x54, 0x65, 0x78,\n\t0x74, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x42, 0x0a, 0x07, 0x72, 0x65, 0x67, 0x69,\n\t0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x69,\n\t0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x52, 0x07, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x41, 0x0a, 0x0d,\n\t0x64, 0x65, 0x61, 0x6c, 0x73, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x61, 0x6c, 0x73, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72,\n\t0x79, 0x52, 0x0c, 0x64, 0x65, 0x61, 0x6c, 0x73, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12,\n\t0x50, 0x0a, 0x12, 0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73, 0x5f, 0x73, 0x75,\n\t0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x74,\n\t0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x11,\n\t0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72,\n\t0x79, 0x12, 0x39, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18,\n\t0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,\n\t0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,\n\t0x70, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x1a, 0x5d, 0x0a, 0x0c,\n\t0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,\n\t0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x37,\n\t0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x54,\n\t0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,\n\t0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x92, 0x01, 0x0a, 0x11,\n\t0x54, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66,\n\t0x6f, 0x12, 0x36, 0x0a, 0x05, 0x64, 0x65, 0x61, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,\n\t0x32, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x73, 0x49, 0x6e,\n\t0x66, 0x6f, 0x52, 0x05, 0x64, 0x65, 0x61, 0x6c, 0x73, 0x12, 0x45, 0x0a, 0x0a, 0x72, 0x65, 0x74,\n\t0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x54,\n\t0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73,\n\t0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73,\n\t0x22, 0xaf, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x61, 0x6c, 0x73, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72,\n\t0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18,\n\t0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,\n\t0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,\n\t0x70, 0x52, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75,\n\t0x72, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75,\n\t0x72, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c,\n\t0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,\n\t0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,\n\t0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75,\n\t0x72, 0x65, 0x22, 0xb4, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c,\n\t0x73, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61,\n\t0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x2e,\n\t0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,\n\t0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,\n\t0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x12, 0x1a,\n\t0x0a, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61,\n\t0x73, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,\n\t0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,\n\t0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61,\n\t0x73, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x22, 0xc2, 0x02, 0x0a, 0x10, 0x54, 0x65,\n\t0x78, 0x74, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14,\n\t0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74,\n\t0x6f, 0x74, 0x61, 0x6c, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,\n\t0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04,\n\t0x6c, 0x61, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73,\n\t0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73,\n\t0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,\n\t0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,\n\t0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,\n\t0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12,\n\t0x48, 0x0a, 0x0e, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72,\n\t0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69,\n\t0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65,\n\t0x72, 0x4d, 0x69, 0x42, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x52, 0x0d, 0x74, 0x61, 0x69, 0x6c,\n\t0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x73, 0x12, 0x43, 0x0a, 0x0b, 0x74, 0x61, 0x69,\n\t0x6c, 0x5f, 0x73, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x53, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69,\n\t0x6e, 0x73, 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x22, 0x82,\n\t0x02, 0x0a, 0x15, 0x54, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65,\n\t0x76, 0x61, 0x6c, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61,\n\t0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x2e,\n\t0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,\n\t0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,\n\t0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x12, 0x1a,\n\t0x0a, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,\n\t0x52, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61,\n\t0x73, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,\n\t0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,\n\t0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61,\n\t0x73, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x48, 0x0a, 0x0e, 0x74, 0x61, 0x69,\n\t0x6c, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,\n\t0x0b, 0x32, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x4d, 0x69, 0x42, 0x50, 0x65,\n\t0x72, 0x53, 0x65, 0x63, 0x52, 0x0d, 0x74, 0x61, 0x69, 0x6c, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66,\n\t0x65, 0x72, 0x73, 0x22, 0x74, 0x0a, 0x11, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x4d,\n\t0x69, 0x42, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x12, 0x3f, 0x0a, 0x0d, 0x74, 0x72, 0x61, 0x6e,\n\t0x73, 0x66, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,\n\t0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,\n\t0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x74, 0x72, 0x61,\n\t0x6e, 0x73, 0x66, 0x65, 0x72, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1e, 0x0a, 0x0b, 0x6d, 0x69, 0x62,\n\t0x5f, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09,\n\t0x6d, 0x69, 0x62, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x22, 0x78, 0x0a, 0x12, 0x53, 0x65, 0x61,\n\t0x6c, 0x65, 0x64, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6e, 0x73, 0x12,\n\t0x37, 0x0a, 0x09, 0x73, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,\n\t0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x08,\n\t0x73, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x41, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x64, 0x75, 0x72, 0x61,\n\t0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x03, 0x52, 0x0f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x63, 0x6f,\n\t0x6e, 0x64, 0x73, 0x22, 0x38, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x73,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x69, 0x6e, 0x65,\n\t0x72, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x0c, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0xc0, 0x01,\n\t0x0a, 0x11, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x42, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65,\n\t0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x52, 0x07,\n\t0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x39, 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18,\n\t0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64,\n\t0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65,\n\t0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x52, 0x04, 0x73, 0x6f,\n\t0x72, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,\n\t0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,\n\t0x22, 0x41, 0x0a, 0x18, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x25, 0x0a, 0x0e,\n\t0x6d, 0x69, 0x6e, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74,\n\t0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x01, 0x0a, 0x15, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64,\n\t0x65, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x12, 0x1c, 0x0a,\n\t0x09, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,\n\t0x52, 0x09, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x74,\n\t0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x0d, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x67, 0x69,\n\t0x6f, 0x6e, 0x12, 0x40, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x0e, 0x32, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x05, 0x66,\n\t0x69, 0x65, 0x6c, 0x64, 0x22, 0x55, 0x0a, 0x12, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64,\n\t0x65, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x6d, 0x69,\n\t0x6e, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,\n\t0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x69,\n\t0x6e, 0x65, 0x72, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x73, 0x22, 0x4f, 0x0a, 0x17, 0x51,\n\t0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x05, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64,\n\t0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x64, 0x65,\n\t0x78, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x22, 0x72, 0x0a, 0x13,\n\t0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x5b, 0x0a, 0x0d, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x5f, 0x61, 0x64, 0x64,\n\t0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x36, 0x92, 0x41, 0x33, 0x32,\n\t0x31, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x66,\n\t0x72, 0x6f, 0x6d, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74,\n\t0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,\n\t0x6f, 0x6e, 0x52, 0x0c, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,\n\t0x22, 0x4a, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e,\n\t0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x64,\n\t0x65, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x9d, 0x02, 0x0a,\n\t0x19, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72,\n\t0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x5d, 0x0a, 0x0f, 0x6d, 0x69,\n\t0x6e, 0x65, 0x72, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20,\n\t0x03, 0x28, 0x09, 0x42, 0x34, 0x92, 0x41, 0x31, 0x32, 0x2f, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x6f,\n\t0x66, 0x20, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65,\n\t0x73, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x64,\n\t0x65, 0x61, 0x6c, 0x20, 0x63, 0x6f, 0x73, 0x74, 0x73, 0x52, 0x0e, 0x6d, 0x69, 0x6e, 0x65, 0x72,\n\t0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0f, 0x64, 0x61, 0x74,\n\t0x61, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x03, 0x42, 0x2c, 0x92, 0x41, 0x29, 0x32, 0x27, 0x44, 0x61, 0x74, 0x61, 0x20, 0x73, 0x69,\n\t0x7a, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x74,\n\t0x68, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65,\n\t0x52, 0x0d, 0x64, 0x61, 0x74, 0x61, 0x53, 0x69, 0x7a, 0x65, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12,\n\t0x4b, 0x0a, 0x0d, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73,\n\t0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x42, 0x26, 0x92, 0x41, 0x23, 0x32, 0x1c, 0x44, 0x75, 0x72,\n\t0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x64, 0x61, 0x79, 0x73, 0x20, 0x6f, 0x66,\n\t0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x65, 0x61, 0x6c, 0x3a, 0x03, 0x31, 0x38, 0x30, 0x52, 0x0c,\n\t0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x22, 0xa9, 0x01, 0x0a,\n\t0x1a, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72,\n\t0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x07, 0x72,\n\t0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x61,\n\t0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65,\n\t0x4d, 0x69, 0x6e, 0x65, 0x72, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x1f,\n\t0x0a, 0x0b, 0x70, 0x61, 0x64, 0x64, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x61, 0x64, 0x64, 0x65, 0x64, 0x53, 0x69, 0x7a, 0x65, 0x12,\n\t0x27, 0x0a, 0x0f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x70, 0x6f, 0x63,\n\t0x68, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69,\n\t0x6f, 0x6e, 0x45, 0x70, 0x6f, 0x63, 0x68, 0x73, 0x22, 0xf6, 0x03, 0x0a, 0x17, 0x43, 0x61, 0x6c,\n\t0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x4d,\n\t0x69, 0x6e, 0x65, 0x72, 0x12, 0x3e, 0x0a, 0x05, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x42, 0x28, 0x92, 0x41, 0x25, 0x32, 0x23, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x20,\n\t0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20,\n\t0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x52, 0x05, 0x6d,\n\t0x69, 0x6e, 0x65, 0x72, 0x12, 0x6d, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f,\n\t0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x4e, 0x92, 0x41, 0x4b, 0x32, 0x49, 0x54,\n\t0x6f, 0x74, 0x61, 0x6c, 0x20, 0x63, 0x6f, 0x73, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65,\n\t0x20, 0x64, 0x65, 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x75, 0x6e,\n\t0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x70, 0x72, 0x69, 0x63, 0x65, 0x20, 0x66,\n\t0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x64, 0x20,\n\t0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43,\n\t0x6f, 0x73, 0x74, 0x12, 0x79, 0x0a, 0x13, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f,\n\t0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,\n\t0x42, 0x49, 0x92, 0x41, 0x46, 0x32, 0x44, 0x54, 0x68, 0x65, 0x20, 0x76, 0x65, 0x72, 0x69, 0x66,\n\t0x69, 0x65, 0x64, 0x2d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c,\n\t0x20, 0x63, 0x6f, 0x73, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x65, 0x61,\n\t0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64,\n\t0x65, 0x64, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x76, 0x65, 0x72,\n\t0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x73, 0x74, 0x12, 0x50,\n\t0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x3a, 0x92,\n\t0x41, 0x37, 0x32, 0x35, 0x54, 0x68, 0x65, 0x20, 0x70, 0x72, 0x69, 0x63, 0x65, 0x20, 0x69, 0x6e,\n\t0x20, 0x61, 0x74, 0x74, 0x6f, 0x46, 0x49, 0x4c, 0x2f, 0x47, 0x69, 0x42, 0x2f, 0x65, 0x70, 0x6f,\n\t0x63, 0x68, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x75, 0x6e, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65,\n\t0x64, 0x20, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65,\n\t0x12, 0x5f, 0x0a, 0x0e, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x69,\n\t0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x38, 0x92, 0x41, 0x35, 0x32, 0x33, 0x54,\n\t0x68, 0x65, 0x20, 0x70, 0x72, 0x69, 0x63, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x74, 0x74, 0x6f,\n\t0x46, 0x49, 0x4c, 0x2f, 0x47, 0x69, 0x42, 0x2f, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x20, 0x66, 0x6f,\n\t0x72, 0x20, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x63, 0x6c, 0x69, 0x65, 0x6e,\n\t0x74, 0x73, 0x52, 0x0d, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x50, 0x72, 0x69, 0x63,\n\t0x65, 0x2a, 0xef, 0x01, 0x0a, 0x1a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64,\n\t0x12, 0x22, 0x0a, 0x1e, 0x54, 0x45, 0x58, 0x54, 0x49, 0x4c, 0x45, 0x5f, 0x44, 0x45, 0x41, 0x4c,\n\t0x53, 0x5f, 0x54, 0x4f, 0x54, 0x41, 0x4c, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53, 0x46,\n\t0x55, 0x4c, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x54, 0x45, 0x58, 0x54, 0x49, 0x4c, 0x45, 0x5f,\n\t0x44, 0x45, 0x41, 0x4c, 0x53, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45,\n\t0x53, 0x53, 0x46, 0x55, 0x4c, 0x10, 0x01, 0x12, 0x27, 0x0a, 0x23, 0x54, 0x45, 0x58, 0x54, 0x49,\n\t0x4c, 0x45, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x53, 0x5f, 0x54, 0x4f,\n\t0x54, 0x41, 0x4c, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53, 0x46, 0x55, 0x4c, 0x10, 0x02,\n\t0x12, 0x26, 0x0a, 0x22, 0x54, 0x45, 0x58, 0x54, 0x49, 0x4c, 0x45, 0x5f, 0x52, 0x45, 0x54, 0x52,\n\t0x49, 0x45, 0x56, 0x41, 0x4c, 0x53, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x53, 0x55, 0x43, 0x43,\n\t0x45, 0x53, 0x53, 0x46, 0x55, 0x4c, 0x10, 0x03, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x53, 0x4b, 0x5f,\n\t0x50, 0x52, 0x49, 0x43, 0x45, 0x10, 0x04, 0x12, 0x16, 0x0a, 0x12, 0x56, 0x45, 0x52, 0x49, 0x46,\n\t0x49, 0x45, 0x44, 0x5f, 0x41, 0x53, 0x4b, 0x5f, 0x50, 0x52, 0x49, 0x43, 0x45, 0x10, 0x05, 0x12,\n\t0x12, 0x0a, 0x0e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x45, 0x43, 0x54, 0x4f, 0x52,\n\t0x53, 0x10, 0x06, 0x32, 0x8f, 0x03, 0x0a, 0x0a, 0x41, 0x50, 0x49, 0x53, 0x65, 0x72, 0x76, 0x69,\n\t0x63, 0x65, 0x12, 0x6c, 0x0a, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78,\n\t0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x17, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x11, 0x12,\n\t0x0f, 0x2f, 0x76, 0x31, 0x2f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79,\n\t0x12, 0x82, 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66,\n\t0x6f, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e,\n\t0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e,\n\t0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x65, 0x72,\n\t0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x27, 0x82, 0xd3,\n\t0xe4, 0x93, 0x02, 0x21, 0x12, 0x1f, 0x2f, 0x76, 0x31, 0x2f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2f,\n\t0x6d, 0x69, 0x6e, 0x65, 0x72, 0x2f, 0x7b, 0x6d, 0x69, 0x6e, 0x65, 0x72, 0x5f, 0x61, 0x64, 0x64,\n\t0x72, 0x65, 0x73, 0x73, 0x7d, 0x12, 0x8d, 0x01, 0x0a, 0x12, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c,\n\t0x61, 0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x29, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x61,\n\t0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x6d, 0x69,\n\t0x6e, 0x64, 0x65, 0x78, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61,\n\t0x74, 0x65, 0x44, 0x65, 0x61, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x12, 0x18, 0x2f, 0x76, 0x31,\n\t0x2f, 0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x2f, 0x63, 0x61, 0x6c, 0x63,\n\t0x75, 0x6c, 0x61, 0x74, 0x65, 0x42, 0xf7, 0x01, 0x5a, 0x2e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,\n\t0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x69, 0x6f, 0x2f, 0x74,\n\t0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69,\n\t0x6e, 0x64, 0x65, 0x78, 0x64, 0x2f, 0x70, 0x62, 0x92, 0x41, 0xc3, 0x01, 0x12, 0x98, 0x01, 0x0a,\n\t0x13, 0x54, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x20, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x49,\n\t0x6e, 0x64, 0x65, 0x78, 0x22, 0x31, 0x0a, 0x07, 0x54, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x12,\n\t0x12, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65,\n\t0x2e, 0x69, 0x6f, 0x1a, 0x12, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x40, 0x74, 0x65, 0x78,\n\t0x74, 0x69, 0x6c, 0x65, 0x2e, 0x69, 0x6f, 0x2a, 0x49, 0x0a, 0x03, 0x4d, 0x49, 0x54, 0x12, 0x42,\n\t0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x61, 0x77, 0x2e, 0x67, 0x69, 0x74, 0x68,\n\t0x75, 0x62, 0x75, 0x73, 0x65, 0x72, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f,\n\t0x6d, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x69, 0x6f, 0x2f, 0x74, 0x65, 0x78, 0x74,\n\t0x69, 0x6c, 0x65, 0x2f, 0x6d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x4c, 0x49, 0x43, 0x45, 0x4e,\n\t0x53, 0x45, 0x32, 0x03, 0x31, 0x2e, 0x30, 0x2a, 0x02, 0x02, 0x01, 0x32, 0x10, 0x61, 0x70, 0x70,\n\t0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x3a, 0x10, 0x61,\n\t0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x62,\n\t0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_api_mindexd_pb_mindexd_proto_rawDescOnce sync.Once\n\tfile_api_mindexd_pb_mindexd_proto_rawDescData = file_api_mindexd_pb_mindexd_proto_rawDesc\n)\n\nfunc file_api_mindexd_pb_mindexd_proto_rawDescGZIP() []byte {\n\tfile_api_mindexd_pb_mindexd_proto_rawDescOnce.Do(func() {\n\t\tfile_api_mindexd_pb_mindexd_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_mindexd_pb_mindexd_proto_rawDescData)\n\t})\n\treturn file_api_mindexd_pb_mindexd_proto_rawDescData\n}\n\nvar file_api_mindexd_pb_mindexd_proto_enumTypes = make([]protoimpl.EnumInfo, 1)\nvar file_api_mindexd_pb_mindexd_proto_msgTypes = make([]protoimpl.MessageInfo, 23)\nvar file_api_mindexd_pb_mindexd_proto_goTypes = []interface{}{\n\t(QueryIndexRequestSortField)(0),    // 0: api.mindexd.pb.QueryIndexRequestSortField\n\t(*MinerIndexInfo)(nil),             // 1: api.mindexd.pb.MinerIndexInfo\n\t(*MetadataInfo)(nil),               // 2: api.mindexd.pb.MetadataInfo\n\t(*FilecoinInfo)(nil),               // 3: api.mindexd.pb.FilecoinInfo\n\t(*TextileInfo)(nil),                // 4: api.mindexd.pb.TextileInfo\n\t(*TextileRegionInfo)(nil),          // 5: api.mindexd.pb.TextileRegionInfo\n\t(*DealsSummary)(nil),               // 6: api.mindexd.pb.DealsSummary\n\t(*RetrievalsSummary)(nil),          // 7: api.mindexd.pb.RetrievalsSummary\n\t(*TextileDealsInfo)(nil),           // 8: api.mindexd.pb.TextileDealsInfo\n\t(*TextileRetrievalsInfo)(nil),      // 9: api.mindexd.pb.TextileRetrievalsInfo\n\t(*TransferMiBPerSec)(nil),          // 10: api.mindexd.pb.TransferMiBPerSec\n\t(*SealedDurationMins)(nil),         // 11: api.mindexd.pb.SealedDurationMins\n\t(*GetMinersResponse)(nil),          // 12: api.mindexd.pb.GetMinersResponse\n\t(*QueryIndexRequest)(nil),          // 13: api.mindexd.pb.QueryIndexRequest\n\t(*QueryIndexRequestFilters)(nil),   // 14: api.mindexd.pb.QueryIndexRequestFilters\n\t(*QueryIndexRequestSort)(nil),      // 15: api.mindexd.pb.QueryIndexRequestSort\n\t(*QueryIndexResponse)(nil),         // 16: api.mindexd.pb.QueryIndexResponse\n\t(*QueryIndexResponseMiner)(nil),    // 17: api.mindexd.pb.QueryIndexResponseMiner\n\t(*GetMinerInfoRequest)(nil),        // 18: api.mindexd.pb.GetMinerInfoRequest\n\t(*GetMinerInfoResponse)(nil),       // 19: api.mindexd.pb.GetMinerInfoResponse\n\t(*CalculateDealPriceRequest)(nil),  // 20: api.mindexd.pb.CalculateDealPriceRequest\n\t(*CalculateDealPriceResponse)(nil), // 21: api.mindexd.pb.CalculateDealPriceResponse\n\t(*CalculateDealPriceMiner)(nil),    // 22: api.mindexd.pb.CalculateDealPriceMiner\n\tnil,                                // 23: api.mindexd.pb.TextileInfo.RegionsEntry\n\t(*timestamp.Timestamp)(nil),        // 24: google.protobuf.Timestamp\n}\nvar file_api_mindexd_pb_mindexd_proto_depIdxs = []int32{\n\t2,  // 0: api.mindexd.pb.MinerIndexInfo.metadata:type_name -> api.mindexd.pb.MetadataInfo\n\t3,  // 1: api.mindexd.pb.MinerIndexInfo.filecoin:type_name -> api.mindexd.pb.FilecoinInfo\n\t4,  // 2: api.mindexd.pb.MinerIndexInfo.textile:type_name -> api.mindexd.pb.TextileInfo\n\t24, // 3: api.mindexd.pb.MinerIndexInfo.updated_at:type_name -> google.protobuf.Timestamp\n\t24, // 4: api.mindexd.pb.FilecoinInfo.updated_at:type_name -> google.protobuf.Timestamp\n\t23, // 5: api.mindexd.pb.TextileInfo.regions:type_name -> api.mindexd.pb.TextileInfo.RegionsEntry\n\t6,  // 6: api.mindexd.pb.TextileInfo.deals_summary:type_name -> api.mindexd.pb.DealsSummary\n\t7,  // 7: api.mindexd.pb.TextileInfo.retrievals_summary:type_name -> api.mindexd.pb.RetrievalsSummary\n\t24, // 8: api.mindexd.pb.TextileInfo.updated_at:type_name -> google.protobuf.Timestamp\n\t8,  // 9: api.mindexd.pb.TextileRegionInfo.deals:type_name -> api.mindexd.pb.TextileDealsInfo\n\t9,  // 10: api.mindexd.pb.TextileRegionInfo.retrievals:type_name -> api.mindexd.pb.TextileRetrievalsInfo\n\t24, // 11: api.mindexd.pb.DealsSummary.last:type_name -> google.protobuf.Timestamp\n\t24, // 12: api.mindexd.pb.DealsSummary.last_failure:type_name -> google.protobuf.Timestamp\n\t24, // 13: api.mindexd.pb.RetrievalsSummary.last:type_name -> google.protobuf.Timestamp\n\t24, // 14: api.mindexd.pb.RetrievalsSummary.last_failure:type_name -> google.protobuf.Timestamp\n\t24, // 15: api.mindexd.pb.TextileDealsInfo.last:type_name -> google.protobuf.Timestamp\n\t24, // 16: api.mindexd.pb.TextileDealsInfo.last_failure:type_name -> google.protobuf.Timestamp\n\t10, // 17: api.mindexd.pb.TextileDealsInfo.tail_transfers:type_name -> api.mindexd.pb.TransferMiBPerSec\n\t11, // 18: api.mindexd.pb.TextileDealsInfo.tail_sealed:type_name -> api.mindexd.pb.SealedDurationMins\n\t24, // 19: api.mindexd.pb.TextileRetrievalsInfo.last:type_name -> google.protobuf.Timestamp\n\t24, // 20: api.mindexd.pb.TextileRetrievalsInfo.last_failure:type_name -> google.protobuf.Timestamp\n\t10, // 21: api.mindexd.pb.TextileRetrievalsInfo.tail_transfers:type_name -> api.mindexd.pb.TransferMiBPerSec\n\t24, // 22: api.mindexd.pb.TransferMiBPerSec.transfered_at:type_name -> google.protobuf.Timestamp\n\t24, // 23: api.mindexd.pb.SealedDurationMins.sealed_at:type_name -> google.protobuf.Timestamp\n\t14, // 24: api.mindexd.pb.QueryIndexRequest.filters:type_name -> api.mindexd.pb.QueryIndexRequestFilters\n\t15, // 25: api.mindexd.pb.QueryIndexRequest.sort:type_name -> api.mindexd.pb.QueryIndexRequestSort\n\t0,  // 26: api.mindexd.pb.QueryIndexRequestSort.field:type_name -> api.mindexd.pb.QueryIndexRequestSortField\n\t17, // 27: api.mindexd.pb.QueryIndexResponse.miners:type_name -> api.mindexd.pb.QueryIndexResponseMiner\n\t1,  // 28: api.mindexd.pb.QueryIndexResponseMiner.miner:type_name -> api.mindexd.pb.MinerIndexInfo\n\t1,  // 29: api.mindexd.pb.GetMinerInfoResponse.info:type_name -> api.mindexd.pb.MinerIndexInfo\n\t22, // 30: api.mindexd.pb.CalculateDealPriceResponse.results:type_name -> api.mindexd.pb.CalculateDealPriceMiner\n\t5,  // 31: api.mindexd.pb.TextileInfo.RegionsEntry.value:type_name -> api.mindexd.pb.TextileRegionInfo\n\t13, // 32: api.mindexd.pb.APIService.QueryIndex:input_type -> api.mindexd.pb.QueryIndexRequest\n\t18, // 33: api.mindexd.pb.APIService.GetMinerInfo:input_type -> api.mindexd.pb.GetMinerInfoRequest\n\t20, // 34: api.mindexd.pb.APIService.CalculateDealPrice:input_type -> api.mindexd.pb.CalculateDealPriceRequest\n\t16, // 35: api.mindexd.pb.APIService.QueryIndex:output_type -> api.mindexd.pb.QueryIndexResponse\n\t19, // 36: api.mindexd.pb.APIService.GetMinerInfo:output_type -> api.mindexd.pb.GetMinerInfoResponse\n\t21, // 37: api.mindexd.pb.APIService.CalculateDealPrice:output_type -> api.mindexd.pb.CalculateDealPriceResponse\n\t35, // [35:38] is the sub-list for method output_type\n\t32, // [32:35] is the sub-list for method input_type\n\t32, // [32:32] is the sub-list for extension type_name\n\t32, // [32:32] is the sub-list for extension extendee\n\t0,  // [0:32] is the sub-list for field type_name\n}\n\nfunc init() { file_api_mindexd_pb_mindexd_proto_init() }\nfunc file_api_mindexd_pb_mindexd_proto_init() {\n\tif File_api_mindexd_pb_mindexd_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MinerIndexInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MetadataInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*FilecoinInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TextileInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TextileRegionInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DealsSummary); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*RetrievalsSummary); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TextileDealsInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TextileRetrievalsInfo); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*TransferMiBPerSec); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SealedDurationMins); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetMinersResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*QueryIndexRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*QueryIndexRequestFilters); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*QueryIndexRequestSort); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*QueryIndexResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*QueryIndexResponseMiner); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetMinerInfoRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetMinerInfoResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CalculateDealPriceRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CalculateDealPriceResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_mindexd_pb_mindexd_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CalculateDealPriceMiner); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_api_mindexd_pb_mindexd_proto_rawDesc,\n\t\t\tNumEnums:      1,\n\t\t\tNumMessages:   23,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_api_mindexd_pb_mindexd_proto_goTypes,\n\t\tDependencyIndexes: file_api_mindexd_pb_mindexd_proto_depIdxs,\n\t\tEnumInfos:         file_api_mindexd_pb_mindexd_proto_enumTypes,\n\t\tMessageInfos:      file_api_mindexd_pb_mindexd_proto_msgTypes,\n\t}.Build()\n\tFile_api_mindexd_pb_mindexd_proto = out.File\n\tfile_api_mindexd_pb_mindexd_proto_rawDesc = nil\n\tfile_api_mindexd_pb_mindexd_proto_goTypes = nil\n\tfile_api_mindexd_pb_mindexd_proto_depIdxs = nil\n}\n\n// Reference imports to suppress errors if they are not otherwise used.\nvar _ context.Context\nvar _ grpc.ClientConnInterface\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\nconst _ = grpc.SupportPackageIsVersion6\n\n// APIServiceClient is the client API for APIService service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.\ntype APIServiceClient interface {\n\tQueryIndex(ctx context.Context, in *QueryIndexRequest, opts ...grpc.CallOption) (*QueryIndexResponse, error)\n\tGetMinerInfo(ctx context.Context, in *GetMinerInfoRequest, opts ...grpc.CallOption) (*GetMinerInfoResponse, error)\n\tCalculateDealPrice(ctx context.Context, in *CalculateDealPriceRequest, opts ...grpc.CallOption) (*CalculateDealPriceResponse, error)\n}\n\ntype aPIServiceClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient {\n\treturn &aPIServiceClient{cc}\n}\n\nfunc (c *aPIServiceClient) QueryIndex(ctx context.Context, in *QueryIndexRequest, opts ...grpc.CallOption) (*QueryIndexResponse, error) {\n\tout := new(QueryIndexResponse)\n\terr := c.cc.Invoke(ctx, \"/api.mindexd.pb.APIService/QueryIndex\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetMinerInfo(ctx context.Context, in *GetMinerInfoRequest, opts ...grpc.CallOption) (*GetMinerInfoResponse, error) {\n\tout := new(GetMinerInfoResponse)\n\terr := c.cc.Invoke(ctx, \"/api.mindexd.pb.APIService/GetMinerInfo\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) CalculateDealPrice(ctx context.Context, in *CalculateDealPriceRequest, opts ...grpc.CallOption) (*CalculateDealPriceResponse, error) {\n\tout := new(CalculateDealPriceResponse)\n\terr := c.cc.Invoke(ctx, \"/api.mindexd.pb.APIService/CalculateDealPrice\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\n// APIServiceServer is the server API for APIService service.\ntype APIServiceServer interface {\n\tQueryIndex(context.Context, *QueryIndexRequest) (*QueryIndexResponse, error)\n\tGetMinerInfo(context.Context, *GetMinerInfoRequest) (*GetMinerInfoResponse, error)\n\tCalculateDealPrice(context.Context, *CalculateDealPriceRequest) (*CalculateDealPriceResponse, error)\n}\n\n// UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.\ntype UnimplementedAPIServiceServer struct {\n}\n\nfunc (*UnimplementedAPIServiceServer) QueryIndex(context.Context, *QueryIndexRequest) (*QueryIndexResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method QueryIndex not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetMinerInfo(context.Context, *GetMinerInfoRequest) (*GetMinerInfoResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetMinerInfo not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) CalculateDealPrice(context.Context, *CalculateDealPriceRequest) (*CalculateDealPriceResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method CalculateDealPrice not implemented\")\n}\n\nfunc RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer) {\n\ts.RegisterService(&_APIService_serviceDesc, srv)\n}\n\nfunc _APIService_QueryIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(QueryIndexRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).QueryIndex(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.mindexd.pb.APIService/QueryIndex\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).QueryIndex(ctx, req.(*QueryIndexRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetMinerInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetMinerInfoRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetMinerInfo(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.mindexd.pb.APIService/GetMinerInfo\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetMinerInfo(ctx, req.(*GetMinerInfoRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_CalculateDealPrice_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CalculateDealPriceRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).CalculateDealPrice(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.mindexd.pb.APIService/CalculateDealPrice\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).CalculateDealPrice(ctx, req.(*CalculateDealPriceRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nvar _APIService_serviceDesc = grpc.ServiceDesc{\n\tServiceName: \"api.mindexd.pb.APIService\",\n\tHandlerType: (*APIServiceServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"QueryIndex\",\n\t\t\tHandler:    _APIService_QueryIndex_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetMinerInfo\",\n\t\t\tHandler:    _APIService_GetMinerInfo_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"CalculateDealPrice\",\n\t\t\tHandler:    _APIService_CalculateDealPrice_Handler,\n\t\t},\n\t},\n\tStreams:  []grpc.StreamDesc{},\n\tMetadata: \"api/mindexd/pb/mindexd.proto\",\n}\n"
  },
  {
    "path": "api/mindexd/pb/mindexd.pb.gw.go",
    "content": "// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.\n// source: api/mindexd/pb/mindexd.proto\n\n/*\nPackage pb is a reverse proxy.\n\nIt translates gRPC into RESTful JSON APIs.\n*/\npackage pb\n\nimport (\n\t\"context\"\n\t\"io\"\n\t\"net/http\"\n\n\t\"github.com/grpc-ecosystem/grpc-gateway/v2/runtime\"\n\t\"github.com/grpc-ecosystem/grpc-gateway/v2/utilities\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/grpclog\"\n\t\"google.golang.org/grpc/metadata\"\n\t\"google.golang.org/grpc/status\"\n\t\"google.golang.org/protobuf/proto\"\n)\n\n// Suppress \"imported and not used\" errors\nvar _ codes.Code\nvar _ io.Reader\nvar _ status.Status\nvar _ = runtime.String\nvar _ = utilities.NewDoubleArray\nvar _ = metadata.Join\n\nvar (\n\tfilter_APIService_QueryIndex_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}\n)\n\nfunc request_APIService_QueryIndex_0(ctx context.Context, marshaler runtime.Marshaler, client APIServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {\n\tvar protoReq QueryIndexRequest\n\tvar metadata runtime.ServerMetadata\n\n\tif err := req.ParseForm(); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\tif err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_APIService_QueryIndex_0); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\n\tmsg, err := client.QueryIndex(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))\n\treturn msg, metadata, err\n\n}\n\nfunc local_request_APIService_QueryIndex_0(ctx context.Context, marshaler runtime.Marshaler, server APIServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {\n\tvar protoReq QueryIndexRequest\n\tvar metadata runtime.ServerMetadata\n\n\tif err := req.ParseForm(); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\tif err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_APIService_QueryIndex_0); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\n\tmsg, err := server.QueryIndex(ctx, &protoReq)\n\treturn msg, metadata, err\n\n}\n\nfunc request_APIService_GetMinerInfo_0(ctx context.Context, marshaler runtime.Marshaler, client APIServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {\n\tvar protoReq GetMinerInfoRequest\n\tvar metadata runtime.ServerMetadata\n\n\tvar (\n\t\tval string\n\t\tok  bool\n\t\terr error\n\t\t_   = err\n\t)\n\n\tval, ok = pathParams[\"miner_address\"]\n\tif !ok {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"missing parameter %s\", \"miner_address\")\n\t}\n\n\tprotoReq.MinerAddress, err = runtime.String(val)\n\tif err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"type mismatch, parameter: %s, error: %v\", \"miner_address\", err)\n\t}\n\n\tmsg, err := client.GetMinerInfo(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))\n\treturn msg, metadata, err\n\n}\n\nfunc local_request_APIService_GetMinerInfo_0(ctx context.Context, marshaler runtime.Marshaler, server APIServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {\n\tvar protoReq GetMinerInfoRequest\n\tvar metadata runtime.ServerMetadata\n\n\tvar (\n\t\tval string\n\t\tok  bool\n\t\terr error\n\t\t_   = err\n\t)\n\n\tval, ok = pathParams[\"miner_address\"]\n\tif !ok {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"missing parameter %s\", \"miner_address\")\n\t}\n\n\tprotoReq.MinerAddress, err = runtime.String(val)\n\tif err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"type mismatch, parameter: %s, error: %v\", \"miner_address\", err)\n\t}\n\n\tmsg, err := server.GetMinerInfo(ctx, &protoReq)\n\treturn msg, metadata, err\n\n}\n\nvar (\n\tfilter_APIService_CalculateDealPrice_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}\n)\n\nfunc request_APIService_CalculateDealPrice_0(ctx context.Context, marshaler runtime.Marshaler, client APIServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {\n\tvar protoReq CalculateDealPriceRequest\n\tvar metadata runtime.ServerMetadata\n\n\tif err := req.ParseForm(); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\tif err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_APIService_CalculateDealPrice_0); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\n\tmsg, err := client.CalculateDealPrice(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))\n\treturn msg, metadata, err\n\n}\n\nfunc local_request_APIService_CalculateDealPrice_0(ctx context.Context, marshaler runtime.Marshaler, server APIServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {\n\tvar protoReq CalculateDealPriceRequest\n\tvar metadata runtime.ServerMetadata\n\n\tif err := req.ParseForm(); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\tif err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_APIService_CalculateDealPrice_0); err != nil {\n\t\treturn nil, metadata, status.Errorf(codes.InvalidArgument, \"%v\", err)\n\t}\n\n\tmsg, err := server.CalculateDealPrice(ctx, &protoReq)\n\treturn msg, metadata, err\n\n}\n\n// RegisterAPIServiceHandlerServer registers the http handlers for service APIService to \"mux\".\n// UnaryRPC     :call APIServiceServer directly.\n// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.\n// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterAPIServiceHandlerFromEndpoint instead.\nfunc RegisterAPIServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server APIServiceServer) error {\n\n\tmux.Handle(\"GET\", pattern_APIService_QueryIndex_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {\n\t\tctx, cancel := context.WithCancel(req.Context())\n\t\tdefer cancel()\n\t\tvar stream runtime.ServerTransportStream\n\t\tctx = grpc.NewContextWithServerTransportStream(ctx, &stream)\n\t\tinboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)\n\t\trctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, \"/api.mindexd.pb.APIService/QueryIndex\")\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\t\tresp, md, err := local_request_APIService_QueryIndex_0(rctx, inboundMarshaler, server, req, pathParams)\n\t\tmd.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())\n\t\tctx = runtime.NewServerMetadataContext(ctx, md)\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\n\t\tforward_APIService_QueryIndex_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)\n\n\t})\n\n\tmux.Handle(\"GET\", pattern_APIService_GetMinerInfo_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {\n\t\tctx, cancel := context.WithCancel(req.Context())\n\t\tdefer cancel()\n\t\tvar stream runtime.ServerTransportStream\n\t\tctx = grpc.NewContextWithServerTransportStream(ctx, &stream)\n\t\tinboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)\n\t\trctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, \"/api.mindexd.pb.APIService/GetMinerInfo\")\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\t\tresp, md, err := local_request_APIService_GetMinerInfo_0(rctx, inboundMarshaler, server, req, pathParams)\n\t\tmd.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())\n\t\tctx = runtime.NewServerMetadataContext(ctx, md)\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\n\t\tforward_APIService_GetMinerInfo_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)\n\n\t})\n\n\tmux.Handle(\"GET\", pattern_APIService_CalculateDealPrice_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {\n\t\tctx, cancel := context.WithCancel(req.Context())\n\t\tdefer cancel()\n\t\tvar stream runtime.ServerTransportStream\n\t\tctx = grpc.NewContextWithServerTransportStream(ctx, &stream)\n\t\tinboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)\n\t\trctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, \"/api.mindexd.pb.APIService/CalculateDealPrice\")\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\t\tresp, md, err := local_request_APIService_CalculateDealPrice_0(rctx, inboundMarshaler, server, req, pathParams)\n\t\tmd.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())\n\t\tctx = runtime.NewServerMetadataContext(ctx, md)\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\n\t\tforward_APIService_CalculateDealPrice_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)\n\n\t})\n\n\treturn nil\n}\n\n// RegisterAPIServiceHandlerFromEndpoint is same as RegisterAPIServiceHandler but\n// automatically dials to \"endpoint\" and closes the connection when \"ctx\" gets done.\nfunc RegisterAPIServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {\n\tconn, err := grpc.Dial(endpoint, opts...)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer func() {\n\t\tif err != nil {\n\t\t\tif cerr := conn.Close(); cerr != nil {\n\t\t\t\tgrpclog.Infof(\"Failed to close conn to %s: %v\", endpoint, cerr)\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tgo func() {\n\t\t\t<-ctx.Done()\n\t\t\tif cerr := conn.Close(); cerr != nil {\n\t\t\t\tgrpclog.Infof(\"Failed to close conn to %s: %v\", endpoint, cerr)\n\t\t\t}\n\t\t}()\n\t}()\n\n\treturn RegisterAPIServiceHandler(ctx, mux, conn)\n}\n\n// RegisterAPIServiceHandler registers the http handlers for service APIService to \"mux\".\n// The handlers forward requests to the grpc endpoint over \"conn\".\nfunc RegisterAPIServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error {\n\treturn RegisterAPIServiceHandlerClient(ctx, mux, NewAPIServiceClient(conn))\n}\n\n// RegisterAPIServiceHandlerClient registers the http handlers for service APIService\n// to \"mux\". The handlers forward requests to the grpc endpoint over the given implementation of \"APIServiceClient\".\n// Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in \"APIServiceClient\"\n// doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in\n// \"APIServiceClient\" to call the correct interceptors.\nfunc RegisterAPIServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client APIServiceClient) error {\n\n\tmux.Handle(\"GET\", pattern_APIService_QueryIndex_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {\n\t\tctx, cancel := context.WithCancel(req.Context())\n\t\tdefer cancel()\n\t\tinboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)\n\t\trctx, err := runtime.AnnotateContext(ctx, mux, req, \"/api.mindexd.pb.APIService/QueryIndex\")\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\t\tresp, md, err := request_APIService_QueryIndex_0(rctx, inboundMarshaler, client, req, pathParams)\n\t\tctx = runtime.NewServerMetadataContext(ctx, md)\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\n\t\tforward_APIService_QueryIndex_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)\n\n\t})\n\n\tmux.Handle(\"GET\", pattern_APIService_GetMinerInfo_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {\n\t\tctx, cancel := context.WithCancel(req.Context())\n\t\tdefer cancel()\n\t\tinboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)\n\t\trctx, err := runtime.AnnotateContext(ctx, mux, req, \"/api.mindexd.pb.APIService/GetMinerInfo\")\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\t\tresp, md, err := request_APIService_GetMinerInfo_0(rctx, inboundMarshaler, client, req, pathParams)\n\t\tctx = runtime.NewServerMetadataContext(ctx, md)\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\n\t\tforward_APIService_GetMinerInfo_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)\n\n\t})\n\n\tmux.Handle(\"GET\", pattern_APIService_CalculateDealPrice_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {\n\t\tctx, cancel := context.WithCancel(req.Context())\n\t\tdefer cancel()\n\t\tinboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)\n\t\trctx, err := runtime.AnnotateContext(ctx, mux, req, \"/api.mindexd.pb.APIService/CalculateDealPrice\")\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\t\tresp, md, err := request_APIService_CalculateDealPrice_0(rctx, inboundMarshaler, client, req, pathParams)\n\t\tctx = runtime.NewServerMetadataContext(ctx, md)\n\t\tif err != nil {\n\t\t\truntime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)\n\t\t\treturn\n\t\t}\n\n\t\tforward_APIService_CalculateDealPrice_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)\n\n\t})\n\n\treturn nil\n}\n\nvar (\n\tpattern_APIService_QueryIndex_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{\"v1\", \"index\", \"query\"}, \"\"))\n\n\tpattern_APIService_GetMinerInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{\"v1\", \"index\", \"miner\", \"miner_address\"}, \"\"))\n\n\tpattern_APIService_CalculateDealPrice_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{\"v1\", \"calculator\", \"calculate\"}, \"\"))\n)\n\nvar (\n\tforward_APIService_QueryIndex_0 = runtime.ForwardResponseMessage\n\n\tforward_APIService_GetMinerInfo_0 = runtime.ForwardResponseMessage\n\n\tforward_APIService_CalculateDealPrice_0 = runtime.ForwardResponseMessage\n)\n"
  },
  {
    "path": "api/mindexd/pb/mindexd.proto",
    "content": "syntax = \"proto3\";\npackage api.mindexd.pb;\noption go_package = \"github.com/textileio/textile/v2/api/mindexd/pb\";\n\nimport \"google/protobuf/timestamp.proto\";\nimport \"api/mindexd/pb/google/api/annotations.proto\";\nimport \"api/mindexd/pb/protoc-gen-openapiv2/options/annotations.proto\";\n\n\n// Domain\nmessage MinerIndexInfo  {\n\tstring miner_addr = 1;\n\tMetadataInfo metadata = 2;\n\tFilecoinInfo filecoin = 3;\n\tTextileInfo textile = 4;\n\tgoogle.protobuf.Timestamp updated_at = 5;\n}\n\nmessage MetadataInfo {\n\tstring location = 1;\n}\n\nmessage FilecoinInfo {\n\tdouble relative_power = 1;\n\tstring ask_price = 2;\n\tstring ask_verified_price = 3;\n\tint64 min_piece_size = 4;\n\tint64 max_piece_size = 5;\n\tint64 sector_size = 6;\n\tint64 active_sectors = 7;\n\tint64 faulty_sectors = 8;\n\tgoogle.protobuf.Timestamp updated_at = 9;\n}\n\nmessage TextileInfo {\n\tmap<string, TextileRegionInfo> regions = 1;\n\tDealsSummary deals_summary = 2;\n\tRetrievalsSummary retrievals_summary = 3;\n\tgoogle.protobuf.Timestamp updated_at = 4;\n}\n\nmessage TextileRegionInfo {\n\tTextileDealsInfo deals = 1;\n\tTextileRetrievalsInfo retrievals = 2;\n}\n\nmessage DealsSummary {\n\tint64 total = 1;\n        google.protobuf.Timestamp last = 2;\n        int64 failures = 3;\n        google.protobuf.Timestamp last_failure = 4;\n}\n\nmessage RetrievalsSummary {\n\tint64 total = 1;\n        google.protobuf.Timestamp last = 2;\n        int64 failures = 3;\n        google.protobuf.Timestamp last_failure = 4;\n}\n\nmessage TextileDealsInfo {\n\tint64 total = 1;\n\tgoogle.protobuf.Timestamp last = 2;\n\n\tint64 failures = 3;\n\tgoogle.protobuf.Timestamp last_failure = 4;\n\n\trepeated TransferMiBPerSec tail_transfers = 5;\n\trepeated SealedDurationMins tail_sealed = 6;\n}\n\nmessage TextileRetrievalsInfo {\n\tint64 total = 1;\n\tgoogle.protobuf.Timestamp last = 2;\n\tint64 failures = 3;\n\tgoogle.protobuf.Timestamp last_failure = 4;\n\trepeated TransferMiBPerSec tail_transfers = 5;\n}\n\nmessage TransferMiBPerSec {\n\tgoogle.protobuf.Timestamp transfered_at = 1;\n\tdouble mib_per_sec = 2;\n}\n\nmessage SealedDurationMins {\n\tgoogle.protobuf.Timestamp sealed_at = 1;\n\tint64 duration_seconds = 2;\n}\n\nmessage GetMinersResponse {\n\tstring miner_address = 1;\n}\n\n// rpc QueryIndexDashboard\nmessage QueryIndexRequest {\n\tQueryIndexRequestFilters filters = 1;\n\tQueryIndexRequestSort sort = 2;\n\tint32 limit = 3;\n\tint64 offset = 4;\n}\n\nmessage QueryIndexRequestFilters {\n\tstring miner_location = 1;\n}\n\nmessage QueryIndexRequestSort {\n\tbool ascending = 1;\n        string textile_region = 2;\n\tQueryIndexRequestSortField field = 3;\n}\n\nenum QueryIndexRequestSortField {\n        TEXTILE_DEALS_TOTAL_SUCCESSFUL = 0;\n        TEXTILE_DEALS_LAST_SUCCESSFUL = 1;\n        TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL = 2;\n        TEXTILE_RETRIEVALS_LAST_SUCCESSFUL = 3;\n        ASK_PRICE = 4;\n        VERIFIED_ASK_PRICE = 5;\n        ACTIVE_SECTORS = 6;\n}\n\nmessage QueryIndexResponse {\n\trepeated QueryIndexResponseMiner miners = 1;\n}\n\nmessage QueryIndexResponseMiner {\n\tMinerIndexInfo miner = 1;\n}\n\n// rpc GetMinerInfo\nmessage GetMinerInfoRequest {\n\tstring miner_address = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"Miner address from which to get index information\",\n\t}];\n}\n\nmessage GetMinerInfoResponse {\n\tMinerIndexInfo info = 1;\n}\n\n// rpc CalculateDealPrice\nmessage CalculateDealPriceRequest {\n\trepeated string miner_addresses = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"List of miner addresses to calculate deal costs\",\n\t}];\n\tint64 data_size_bytes = 2 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"Data size in bytes of the data to store\",\n\t}];\n\tint64 duration_days = 3 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"Duration in days of the deal\",\n                default: \"180\",\n\t}];\n\n}\n\nmessage CalculateDealPriceResponse {\n\trepeated CalculateDealPriceMiner results = 1;\n        int64 padded_size = 2;\n\tint64 duration_epochs = 3; \n}\n\nmessage CalculateDealPriceMiner {\n\tstring miner = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"Miner address of this calculations.\",\n\t}];\n\tstring total_cost = 2 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"Total cost of the deal for the unverified price for the provided duration\",\n\t}];\n\n\tstring verified_total_cost = 3 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"The verified-client total cost of the deal for the provided duration\",\n\t}];\n\n\tstring price = 4 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"The price in attoFIL/GiB/epoch for unverified clients\", \n\t}];\n\n\tstring verified_price = 5 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n\t\tdescription: \"The price in attoFIL/GiB/epoch for verified clients\", \n\t}];\n\n}\n\nservice APIService {\n\trpc QueryIndex(QueryIndexRequest) returns (QueryIndexResponse) {\n            option (google.api.http) = {\n\t      get: \"/v1/index/query\"\n\t    };\n\t}\n\trpc GetMinerInfo(GetMinerInfoRequest) returns (GetMinerInfoResponse) {\n            option (google.api.http) = {\n\t      get: \"/v1/index/miner/{miner_address}\"\n\t    };\n\t}\n\trpc CalculateDealPrice(CalculateDealPriceRequest) returns (CalculateDealPriceResponse) {\n\t    option (google.api.http) = {\n\t      get: \"/v1/calculator/calculate\"\n\t    };\n\t}\n}\n\noption (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {\n\tinfo: {\n\t\ttitle: \"Textile Miner Index\";\n\t\tversion: \"1.0\";\n\t\tcontact: {\n\t\t\tname: \"Textile\";\n\t\t\turl: \"https://textile.io\";\n\t\t\temail: \"contact@textile.io\";\n\t\t};\n\t\tlicense: {\n\t\t\tname: \"MIT\";\n\t\t\turl: \"https://raw.githubusercontent.com/textileio/textile/master/LICENSE\";\n\t\t};\n\t};\n\tschemes: HTTPS;\n        schemes: HTTP;\n\tconsumes: \"application/json\";\n\tproduces: \"application/json\";\n};\n"
  },
  {
    "path": "api/mindexd/pb/mindexd.swagger.json",
    "content": "{\n  \"swagger\": \"2.0\",\n  \"info\": {\n    \"title\": \"Textile Miner Index\",\n    \"version\": \"1.0\",\n    \"contact\": {\n      \"name\": \"Textile\",\n      \"url\": \"https://textile.io\",\n      \"email\": \"contact@textile.io\"\n    },\n    \"license\": {\n      \"name\": \"MIT\",\n      \"url\": \"https://raw.githubusercontent.com/textileio/textile/master/LICENSE\"\n    }\n  },\n  \"tags\": [\n    {\n      \"name\": \"APIService\"\n    }\n  ],\n  \"schemes\": [\n    \"https\",\n    \"http\"\n  ],\n  \"consumes\": [\n    \"application/json\"\n  ],\n  \"produces\": [\n    \"application/json\"\n  ],\n  \"paths\": {\n    \"/v1/calculator/calculate\": {\n      \"get\": {\n        \"operationId\": \"APIService_CalculateDealPrice\",\n        \"responses\": {\n          \"200\": {\n            \"description\": \"A successful response.\",\n            \"schema\": {\n              \"$ref\": \"#/definitions/pbCalculateDealPriceResponse\"\n            }\n          },\n          \"default\": {\n            \"description\": \"An unexpected error response.\",\n            \"schema\": {\n              \"$ref\": \"#/definitions/rpcStatus\"\n            }\n          }\n        },\n        \"parameters\": [\n          {\n            \"name\": \"minerAddresses\",\n            \"description\": \"List of miner addresses to calculate deal costs\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\"\n            },\n            \"collectionFormat\": \"multi\"\n          },\n          {\n            \"name\": \"dataSizeBytes\",\n            \"description\": \"Data size in bytes of the data to store\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"string\",\n            \"format\": \"int64\"\n          },\n          {\n            \"name\": \"durationDays\",\n            \"description\": \"Duration in days of the deal\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"string\",\n            \"format\": \"int64\",\n            \"default\": \"180\"\n          }\n        ],\n        \"tags\": [\n          \"APIService\"\n        ]\n      }\n    },\n    \"/v1/index/miner/{minerAddress}\": {\n      \"get\": {\n        \"operationId\": \"APIService_GetMinerInfo\",\n        \"responses\": {\n          \"200\": {\n            \"description\": \"A successful response.\",\n            \"schema\": {\n              \"$ref\": \"#/definitions/pbGetMinerInfoResponse\"\n            }\n          },\n          \"default\": {\n            \"description\": \"An unexpected error response.\",\n            \"schema\": {\n              \"$ref\": \"#/definitions/rpcStatus\"\n            }\n          }\n        },\n        \"parameters\": [\n          {\n            \"name\": \"minerAddress\",\n            \"description\": \"Miner address from which to get index information\",\n            \"in\": \"path\",\n            \"required\": true,\n            \"type\": \"string\"\n          }\n        ],\n        \"tags\": [\n          \"APIService\"\n        ]\n      }\n    },\n    \"/v1/index/query\": {\n      \"get\": {\n        \"operationId\": \"APIService_QueryIndex\",\n        \"responses\": {\n          \"200\": {\n            \"description\": \"A successful response.\",\n            \"schema\": {\n              \"$ref\": \"#/definitions/pbQueryIndexResponse\"\n            }\n          },\n          \"default\": {\n            \"description\": \"An unexpected error response.\",\n            \"schema\": {\n              \"$ref\": \"#/definitions/rpcStatus\"\n            }\n          }\n        },\n        \"parameters\": [\n          {\n            \"name\": \"filters.minerLocation\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"string\"\n          },\n          {\n            \"name\": \"sort.ascending\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"boolean\"\n          },\n          {\n            \"name\": \"sort.textileRegion\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"string\"\n          },\n          {\n            \"name\": \"sort.field\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"string\",\n            \"enum\": [\n              \"TEXTILE_DEALS_TOTAL_SUCCESSFUL\",\n              \"TEXTILE_DEALS_LAST_SUCCESSFUL\",\n              \"TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL\",\n              \"TEXTILE_RETRIEVALS_LAST_SUCCESSFUL\",\n              \"ASK_PRICE\",\n              \"VERIFIED_ASK_PRICE\",\n              \"ACTIVE_SECTORS\"\n            ],\n            \"default\": \"TEXTILE_DEALS_TOTAL_SUCCESSFUL\"\n          },\n          {\n            \"name\": \"limit\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"integer\",\n            \"format\": \"int32\"\n          },\n          {\n            \"name\": \"offset\",\n            \"in\": \"query\",\n            \"required\": false,\n            \"type\": \"string\",\n            \"format\": \"int64\"\n          }\n        ],\n        \"tags\": [\n          \"APIService\"\n        ]\n      }\n    }\n  },\n  \"definitions\": {\n    \"pbCalculateDealPriceMiner\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"miner\": {\n          \"type\": \"string\",\n          \"description\": \"Miner address of this calculations.\"\n        },\n        \"totalCost\": {\n          \"type\": \"string\",\n          \"description\": \"Total cost of the deal for the unverified price for the provided duration\"\n        },\n        \"verifiedTotalCost\": {\n          \"type\": \"string\",\n          \"description\": \"The verified-client total cost of the deal for the provided duration\"\n        },\n        \"price\": {\n          \"type\": \"string\",\n          \"description\": \"The price in attoFIL/GiB/epoch for unverified clients\"\n        },\n        \"verifiedPrice\": {\n          \"type\": \"string\",\n          \"description\": \"The price in attoFIL/GiB/epoch for verified clients\"\n        }\n      }\n    },\n    \"pbCalculateDealPriceResponse\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"$ref\": \"#/definitions/pbCalculateDealPriceMiner\"\n          }\n        },\n        \"paddedSize\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"durationEpochs\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        }\n      }\n    },\n    \"pbDealsSummary\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"total\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"last\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"failures\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"lastFailure\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        }\n      }\n    },\n    \"pbFilecoinInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"relativePower\": {\n          \"type\": \"number\",\n          \"format\": \"double\"\n        },\n        \"askPrice\": {\n          \"type\": \"string\"\n        },\n        \"askVerifiedPrice\": {\n          \"type\": \"string\"\n        },\n        \"minPieceSize\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"maxPieceSize\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"sectorSize\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"activeSectors\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"faultySectors\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"updatedAt\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        }\n      }\n    },\n    \"pbGetMinerInfoResponse\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"info\": {\n          \"$ref\": \"#/definitions/pbMinerIndexInfo\"\n        }\n      }\n    },\n    \"pbMetadataInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"location\": {\n          \"type\": \"string\"\n        }\n      }\n    },\n    \"pbMinerIndexInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"minerAddr\": {\n          \"type\": \"string\"\n        },\n        \"metadata\": {\n          \"$ref\": \"#/definitions/pbMetadataInfo\"\n        },\n        \"filecoin\": {\n          \"$ref\": \"#/definitions/pbFilecoinInfo\"\n        },\n        \"textile\": {\n          \"$ref\": \"#/definitions/pbTextileInfo\"\n        },\n        \"updatedAt\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        }\n      },\n      \"title\": \"Domain\"\n    },\n    \"pbQueryIndexRequestFilters\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"minerLocation\": {\n          \"type\": \"string\"\n        }\n      }\n    },\n    \"pbQueryIndexRequestSort\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"ascending\": {\n          \"type\": \"boolean\"\n        },\n        \"textileRegion\": {\n          \"type\": \"string\"\n        },\n        \"field\": {\n          \"$ref\": \"#/definitions/pbQueryIndexRequestSortField\"\n        }\n      }\n    },\n    \"pbQueryIndexRequestSortField\": {\n      \"type\": \"string\",\n      \"enum\": [\n        \"TEXTILE_DEALS_TOTAL_SUCCESSFUL\",\n        \"TEXTILE_DEALS_LAST_SUCCESSFUL\",\n        \"TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL\",\n        \"TEXTILE_RETRIEVALS_LAST_SUCCESSFUL\",\n        \"ASK_PRICE\",\n        \"VERIFIED_ASK_PRICE\",\n        \"ACTIVE_SECTORS\"\n      ],\n      \"default\": \"TEXTILE_DEALS_TOTAL_SUCCESSFUL\"\n    },\n    \"pbQueryIndexResponse\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"miners\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"$ref\": \"#/definitions/pbQueryIndexResponseMiner\"\n          }\n        }\n      }\n    },\n    \"pbQueryIndexResponseMiner\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"miner\": {\n          \"$ref\": \"#/definitions/pbMinerIndexInfo\"\n        }\n      }\n    },\n    \"pbRetrievalsSummary\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"total\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"last\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"failures\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"lastFailure\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        }\n      }\n    },\n    \"pbSealedDurationMins\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"sealedAt\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"durationSeconds\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        }\n      }\n    },\n    \"pbTextileDealsInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"total\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"last\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"failures\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"lastFailure\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"tailTransfers\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"$ref\": \"#/definitions/pbTransferMiBPerSec\"\n          }\n        },\n        \"tailSealed\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"$ref\": \"#/definitions/pbSealedDurationMins\"\n          }\n        }\n      }\n    },\n    \"pbTextileInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"regions\": {\n          \"type\": \"object\",\n          \"additionalProperties\": {\n            \"$ref\": \"#/definitions/pbTextileRegionInfo\"\n          }\n        },\n        \"dealsSummary\": {\n          \"$ref\": \"#/definitions/pbDealsSummary\"\n        },\n        \"retrievalsSummary\": {\n          \"$ref\": \"#/definitions/pbRetrievalsSummary\"\n        },\n        \"updatedAt\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        }\n      }\n    },\n    \"pbTextileRegionInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"deals\": {\n          \"$ref\": \"#/definitions/pbTextileDealsInfo\"\n        },\n        \"retrievals\": {\n          \"$ref\": \"#/definitions/pbTextileRetrievalsInfo\"\n        }\n      }\n    },\n    \"pbTextileRetrievalsInfo\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"total\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"last\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"failures\": {\n          \"type\": \"string\",\n          \"format\": \"int64\"\n        },\n        \"lastFailure\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"tailTransfers\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"$ref\": \"#/definitions/pbTransferMiBPerSec\"\n          }\n        }\n      }\n    },\n    \"pbTransferMiBPerSec\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"transferedAt\": {\n          \"type\": \"string\",\n          \"format\": \"date-time\"\n        },\n        \"mibPerSec\": {\n          \"type\": \"number\",\n          \"format\": \"double\"\n        }\n      }\n    },\n    \"protobufAny\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"typeUrl\": {\n          \"type\": \"string\"\n        },\n        \"value\": {\n          \"type\": \"string\",\n          \"format\": \"byte\"\n        }\n      }\n    },\n    \"rpcStatus\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"code\": {\n          \"type\": \"integer\",\n          \"format\": \"int32\"\n        },\n        \"message\": {\n          \"type\": \"string\"\n        },\n        \"details\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"$ref\": \"#/definitions/protobufAny\"\n          }\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "api/mindexd/pb/protoc-gen-openapiv2/options/annotations.proto",
    "content": "syntax = \"proto3\";\n\npackage grpc.gateway.protoc_gen_openapiv2.options;\n\noption go_package = \"github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options\";\n\nimport \"google/protobuf/descriptor.proto\";\nimport \"api/mindexd/pb/protoc-gen-openapiv2/options/openapiv2.proto\";\n\nextend google.protobuf.FileOptions {\n  // ID assigned by protobuf-global-extension-registry@google.com for gRPC-Gateway project.\n  //\n  // All IDs are the same, as assigned. It is okay that they are the same, as they extend\n  // different descriptor messages.\n  Swagger openapiv2_swagger = 1042;\n}\nextend google.protobuf.MethodOptions {\n  // ID assigned by protobuf-global-extension-registry@google.com for gRPC-Gateway project.\n  //\n  // All IDs are the same, as assigned. It is okay that they are the same, as they extend\n  // different descriptor messages.\n  Operation openapiv2_operation = 1042;\n}\nextend google.protobuf.MessageOptions {\n  // ID assigned by protobuf-global-extension-registry@google.com for gRPC-Gateway project.\n  //\n  // All IDs are the same, as assigned. It is okay that they are the same, as they extend\n  // different descriptor messages.\n  Schema openapiv2_schema = 1042;\n}\nextend google.protobuf.ServiceOptions {\n  // ID assigned by protobuf-global-extension-registry@google.com for gRPC-Gateway project.\n  //\n  // All IDs are the same, as assigned. It is okay that they are the same, as they extend\n  // different descriptor messages.\n  Tag openapiv2_tag = 1042;\n}\nextend google.protobuf.FieldOptions {\n  // ID assigned by protobuf-global-extension-registry@google.com for gRPC-Gateway project.\n  //\n  // All IDs are the same, as assigned. It is okay that they are the same, as they extend\n  // different descriptor messages.\n  JSONSchema openapiv2_field = 1042;\n}\n"
  },
  {
    "path": "api/mindexd/pb/protoc-gen-openapiv2/options/openapiv2.proto",
    "content": "syntax = \"proto3\";\n\npackage grpc.gateway.protoc_gen_openapiv2.options;\n\noption go_package = \"github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options\";\n\nimport \"google/protobuf/struct.proto\";\n\n// Scheme describes the schemes supported by the OpenAPI Swagger\n// and Operation objects.\nenum Scheme {\n  UNKNOWN = 0;\n  HTTP = 1;\n  HTTPS = 2;\n  WS = 3;\n  WSS = 4;\n}\n\n// `Swagger` is a representation of OpenAPI v2 specification's Swagger object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#swaggerObject\n//\n// Example:\n//\n//  option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {\n//    info: {\n//      title: \"Echo API\";\n//      version: \"1.0\";\n//      description: \";\n//      contact: {\n//        name: \"gRPC-Gateway project\";\n//        url: \"https://github.com/grpc-ecosystem/grpc-gateway\";\n//        email: \"none@example.com\";\n//      };\n//      license: {\n//        name: \"BSD 3-Clause License\";\n//        url: \"https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt\";\n//      };\n//    };\n//    schemes: HTTPS;\n//    consumes: \"application/json\";\n//    produces: \"application/json\";\n//  };\n//\nmessage Swagger {\n  // Specifies the OpenAPI Specification version being used. It can be\n  // used by the OpenAPI UI and other clients to interpret the API listing. The \n  // value MUST be \"2.0\".\n  string swagger = 1;\n  // Provides metadata about the API. The metadata can be used by the \n  // clients if needed.\n  Info info = 2;\n  // The host (name or ip) serving the API. This MUST be the host only and does \n  // not include the scheme nor sub-paths. It MAY include a port. If the host is\n  // not included, the host serving the documentation is to be used (including\n  // the port). The host does not support path templating.\n  string host = 3;\n  // The base path on which the API is served, which is relative to the host. If\n  // it is not included, the API is served directly under the host. The value \n  // MUST start with a leading slash (/). The basePath does not support path\n  // templating.\n  // Note that using `base_path` does not change the endpoint paths that are \n  // generated in the resulting OpenAPI file. If you wish to use `base_path`\n  // with relatively generated OpenAPI paths, the `base_path` prefix must be \n  // manually removed from your `google.api.http` paths and your code changed to \n  // serve the API from the `base_path`.\n  string base_path = 4;\n  // The transfer protocol of the API. Values MUST be from the list: \"http\",\n  // \"https\", \"ws\", \"wss\". If the schemes is not included, the default scheme to\n  // be used is the one used to access the OpenAPI definition itself.\n  repeated Scheme schemes = 5;\n  // A list of MIME types the APIs can consume. This is global to all APIs but \n  // can be overridden on specific API calls. Value MUST be as described under\n  // Mime Types.\n  repeated string consumes = 6;\n  // A list of MIME types the APIs can produce. This is global to all APIs but\n  // can be overridden on specific API calls. Value MUST be as described under\n  // Mime Types.\n  repeated string produces = 7;\n  // field 8 is reserved for 'paths'.\n  reserved 8;\n  // field 9 is reserved for 'definitions', which at this time are already\n  // exposed as and customizable as proto messages.\n  reserved 9;\n  // An object to hold responses that can be used across operations. This\n  // property does not define global responses for all operations.\n  map<string, Response> responses = 10;\n  // Security scheme definitions that can be used across the specification.\n  SecurityDefinitions security_definitions = 11;\n  // A declaration of which security schemes are applied for the API as a whole.\n  // The list of values describes alternative security schemes that can be used \n  // (that is, there is a logical OR between the security requirements). \n  // Individual operations can override this definition.\n  repeated SecurityRequirement security = 12;\n  // field 13 is reserved for 'tags', which are supposed to be exposed as and\n  // customizable as proto services. TODO(ivucica): add processing of proto\n  // service objects into OpenAPI v2 Tag objects.\n  reserved 13;\n  // Additional external documentation.\n  ExternalDocumentation external_docs = 14;\n  map<string, google.protobuf.Value> extensions = 15;\n}\n\n// `Operation` is a representation of OpenAPI v2 specification's Operation object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#operationObject\n//\n// Example:\n//\n//  service EchoService {\n//    rpc Echo(SimpleMessage) returns (SimpleMessage) {\n//      option (google.api.http) = {\n//        get: \"/v1/example/echo/{id}\"\n//      };\n//\n//      option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {\n//        summary: \"Get a message.\";\n//        operation_id: \"getMessage\";\n//        tags: \"echo\";\n//        responses: {\n//          key: \"200\"\n//            value: {\n//            description: \"OK\";\n//          }\n//        }\n//      };\n//    }\n//  }\nmessage Operation {\n  // A list of tags for API documentation control. Tags can be used for logical\n  // grouping of operations by resources or any other qualifier.\n  repeated string tags = 1;\n  // A short summary of what the operation does. For maximum readability in the\n  // swagger-ui, this field SHOULD be less than 120 characters.\n  string summary = 2;\n  // A verbose explanation of the operation behavior. GFM syntax can be used for\n  // rich text representation.\n  string description = 3;\n  // Additional external documentation for this operation.\n  ExternalDocumentation external_docs = 4;\n  // Unique string used to identify the operation. The id MUST be unique among\n  // all operations described in the API. Tools and libraries MAY use the\n  // operationId to uniquely identify an operation, therefore, it is recommended\n  // to follow common programming naming conventions.\n  string operation_id = 5;\n  // A list of MIME types the operation can consume. This overrides the consumes\n  // definition at the OpenAPI Object. An empty value MAY be used to clear the\n  // global definition. Value MUST be as described under Mime Types.\n  repeated string consumes = 6;\n  // A list of MIME types the operation can produce. This overrides the produces\n  // definition at the OpenAPI Object. An empty value MAY be used to clear the\n  // global definition. Value MUST be as described under Mime Types.\n  repeated string produces = 7;\n  // field 8 is reserved for 'parameters'.\n  reserved 8;\n  // The list of possible responses as they are returned from executing this\n  // operation.\n  map<string, Response> responses = 9;\n  // The transfer protocol for the operation. Values MUST be from the list:\n  // \"http\", \"https\", \"ws\", \"wss\". The value overrides the OpenAPI Object\n  // schemes definition.\n  repeated Scheme schemes = 10;\n  // Declares this operation to be deprecated. Usage of the declared operation\n  // should be refrained. Default value is false.\n  bool deprecated = 11;\n  // A declaration of which security schemes are applied for this operation. The\n  // list of values describes alternative security schemes that can be used\n  // (that is, there is a logical OR between the security requirements). This\n  // definition overrides any declared top-level security. To remove a top-level\n  // security declaration, an empty array can be used.\n  repeated SecurityRequirement security = 12;\n  map<string, google.protobuf.Value> extensions = 13;\n}\n\n// `Header` is a representation of OpenAPI v2 specification's Header object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#headerObject\n//\nmessage Header {\n  // `Description` is a short description of the header.\n  string description = 1;\n  // The type of the object. The value MUST be one of \"string\", \"number\", \"integer\", or \"boolean\". The \"array\" type is not supported.\n  string type = 2;\n  // `Format` The extending format for the previously mentioned type.\n  string format = 3;\n  // field 4 is reserved for 'items', but in OpenAPI-specific way.\n  reserved 4;\n  // field 5 is reserved `Collection Format` Determines the format of the array if type array is used.\n  reserved 5;\n  // `Default` Declares the value of the header that the server will use if none is provided.\n  // See: https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-6.2.\n  // Unlike JSON Schema this value MUST conform to the defined type for the header.\n  string default = 6;\n  // field 7 is reserved for 'maximum'.\n  reserved 7;\n  // field 8 is reserved for 'exclusiveMaximum'.\n  reserved 8;\n  // field 9 is reserved for 'minimum'.\n  reserved 9;\n  // field 10 is reserved for 'exclusiveMinimum'.\n  reserved 10;\n  // field 11 is reserved for 'maxLength'.\n  reserved 11;\n  // field 12 is reserved for 'minLength'.\n  reserved 12;\n  // 'Pattern' See https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.2.3.\n  string pattern = 13;\n  // field 14 is reserved for 'maxItems'.\n  reserved 14;\n  // field 15 is reserved for 'minItems'.\n  reserved 15;\n  // field 16 is reserved for 'uniqueItems'.\n  reserved 16;\n  // field 17 is reserved for 'enum'.\n  reserved 17;\n  // field 18 is reserved for 'multipleOf'.\n  reserved 18;\n}\n\n// `Response` is a representation of OpenAPI v2 specification's Response object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#responseObject\n//\nmessage Response {\n  // `Description` is a short description of the response.\n  // GFM syntax can be used for rich text representation.\n  string description = 1;\n  // `Schema` optionally defines the structure of the response.\n  // If `Schema` is not provided, it means there is no content to the response.\n  Schema schema = 2;\n  // `Headers` A list of headers that are sent with the response.\n  // `Header` name is expected to be a string in the canonical format of the MIME header key\n  // See: https://golang.org/pkg/net/textproto/#CanonicalMIMEHeaderKey\n  map<string, Header> headers = 3;\n  // `Examples` gives per-mimetype response examples.\n  // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#example-object\n  map<string, string> examples = 4;\n  map<string, google.protobuf.Value> extensions = 5;\n}\n\n// `Info` is a representation of OpenAPI v2 specification's Info object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#infoObject\n//\n// Example:\n//\n//  option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {\n//    info: {\n//      title: \"Echo API\";\n//      version: \"1.0\";\n//      description: \";\n//      contact: {\n//        name: \"gRPC-Gateway project\";\n//        url: \"https://github.com/grpc-ecosystem/grpc-gateway\";\n//        email: \"none@example.com\";\n//      };\n//      license: {\n//        name: \"BSD 3-Clause License\";\n//        url: \"https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt\";\n//      };\n//    };\n//    ...\n//  };\n//\nmessage Info {\n  // The title of the application.\n  string title = 1;\n  // A short description of the application. GFM syntax can be used for rich\n  // text representation.\n  string description = 2;\n  // The Terms of Service for the API.\n  string terms_of_service = 3;\n  // The contact information for the exposed API.\n  Contact contact = 4;\n  // The license information for the exposed API.\n  License license = 5;\n  // Provides the version of the application API (not to be confused\n  // with the specification version).\n  string version = 6;\n  map<string, google.protobuf.Value> extensions = 7;\n}\n\n// `Contact` is a representation of OpenAPI v2 specification's Contact object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#contactObject\n//\n// Example:\n//\n//  option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {\n//    info: {\n//      ...\n//      contact: {\n//        name: \"gRPC-Gateway project\";\n//        url: \"https://github.com/grpc-ecosystem/grpc-gateway\";\n//        email: \"none@example.com\";\n//      };\n//      ...\n//    };\n//    ...\n//  };\n//\nmessage Contact {\n  // The identifying name of the contact person/organization.\n  string name = 1;\n  // The URL pointing to the contact information. MUST be in the format of a\n  // URL.\n  string url = 2;\n  // The email address of the contact person/organization. MUST be in the format\n  // of an email address.\n  string email = 3;\n}\n\n// `License` is a representation of OpenAPI v2 specification's License object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#licenseObject\n//\n// Example:\n//\n//  option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {\n//    info: {\n//      ...\n//      license: {\n//        name: \"BSD 3-Clause License\";\n//        url: \"https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt\";\n//      };\n//      ...\n//    };\n//    ...\n//  };\n//\nmessage License {\n  // The license name used for the API.\n  string name = 1;\n  // A URL to the license used for the API. MUST be in the format of a URL.\n  string url = 2;\n}\n\n// `ExternalDocumentation` is a representation of OpenAPI v2 specification's\n// ExternalDocumentation object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#externalDocumentationObject\n//\n// Example:\n//\n//  option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {\n//    ...\n//    external_docs: {\n//      description: \"More about gRPC-Gateway\";\n//      url: \"https://github.com/grpc-ecosystem/grpc-gateway\";\n//    }\n//    ...\n//  };\n//\nmessage ExternalDocumentation {\n  // A short description of the target documentation. GFM syntax can be used for\n  // rich text representation.\n  string description = 1;\n  // The URL for the target documentation. Value MUST be in the format\n  // of a URL.\n  string url = 2;\n}\n\n// `Schema` is a representation of OpenAPI v2 specification's Schema object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject\n//\nmessage Schema {\n  JSONSchema json_schema = 1;\n  // Adds support for polymorphism. The discriminator is the schema property\n  // name that is used to differentiate between other schema that inherit this\n  // schema. The property name used MUST be defined at this schema and it MUST\n  // be in the required property list. When used, the value MUST be the name of\n  // this schema or any schema that inherits it.\n  string discriminator = 2;\n  // Relevant only for Schema \"properties\" definitions. Declares the property as\n  // \"read only\". This means that it MAY be sent as part of a response but MUST\n  // NOT be sent as part of the request. Properties marked as readOnly being\n  // true SHOULD NOT be in the required list of the defined schema. Default\n  // value is false.\n  bool read_only = 3;\n  // field 4 is reserved for 'xml'.\n  reserved 4;\n  // Additional external documentation for this schema.\n  ExternalDocumentation external_docs = 5;\n  // A free-form property to include an example of an instance for this schema in JSON.\n  // This is copied verbatim to the output.\n  string example = 6;\n}\n\n// `JSONSchema` represents properties from JSON Schema taken, and as used, in\n// the OpenAPI v2 spec.\n//\n// This includes changes made by OpenAPI v2.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject\n//\n// See also: https://cswr.github.io/JsonSchema/spec/basic_types/,\n// https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json\n//\n// Example:\n//\n//  message SimpleMessage {\n//    option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {\n//      json_schema: {\n//        title: \"SimpleMessage\"\n//        description: \"A simple message.\"\n//        required: [\"id\"]\n//      }\n//    };\n//\n//    // Id represents the message identifier.\n//    string id = 1; [\n//        (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {\n//          {description: \"The unique identifier of the simple message.\"\n//        }];\n//  }\n//\nmessage JSONSchema {\n  // field 1 is reserved for '$id', omitted from OpenAPI v2.\n  reserved 1;\n  // field 2 is reserved for '$schema', omitted from OpenAPI v2.\n  reserved 2;\n  // Ref is used to define an external reference to include in the message.\n  // This could be a fully qualified proto message reference, and that type must\n  // be imported into the protofile. If no message is identified, the Ref will\n  // be used verbatim in the output.\n  // For example:\n  //  `ref: \".google.protobuf.Timestamp\"`.\n  string ref = 3;\n  // field 4 is reserved for '$comment', omitted from OpenAPI v2.\n  reserved 4;\n  // The title of the schema.\n  string title = 5;\n  // A short description of the schema.\n  string description = 6;\n  string default = 7;\n  bool read_only = 8;\n  // A free-form property to include a JSON example of this field. This is copied\n  // verbatim to the output swagger.json. Quotes must be escaped.\n  // This property is the same for 2.0 and 3.0.0 https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/3.0.0.md#schemaObject  https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject\n  string example = 9;\n  double multiple_of = 10;\n  // Maximum represents an inclusive upper limit for a numeric instance. The \n  // value of MUST be a number, \n  double maximum = 11;\n  bool exclusive_maximum = 12;\n  // minimum represents an inclusive lower limit for a numeric instance. The \n  // value of MUST be a number, \n  double minimum = 13;\n  bool exclusive_minimum = 14;\n  uint64 max_length = 15;\n  uint64 min_length = 16;\n  string pattern = 17;\n  // field 18 is reserved for 'additionalItems', omitted from OpenAPI v2.\n  reserved 18;\n  // field 19 is reserved for 'items', but in OpenAPI-specific way.\n  // TODO(ivucica): add 'items'?\n  reserved 19;\n  uint64 max_items = 20;\n  uint64 min_items = 21;\n  bool unique_items = 22;\n  // field 23 is reserved for 'contains', omitted from OpenAPI v2.\n  reserved 23;\n  uint64 max_properties = 24;\n  uint64 min_properties = 25;\n  repeated string required = 26;\n  // field 27 is reserved for 'additionalProperties', but in OpenAPI-specific\n  // way. TODO(ivucica): add 'additionalProperties'?\n  reserved 27;\n  // field 28 is reserved for 'definitions', omitted from OpenAPI v2.\n  reserved 28;\n  // field 29 is reserved for 'properties', but in OpenAPI-specific way.\n  // TODO(ivucica): add 'additionalProperties'?\n  reserved 29;\n  // following fields are reserved, as the properties have been omitted from\n  // OpenAPI v2:\n  // patternProperties, dependencies, propertyNames, const\n  reserved 30 to 33;\n  // Items in 'array' must be unique.\n  repeated string array = 34;\n\n  enum JSONSchemaSimpleTypes {\n    UNKNOWN = 0;\n    ARRAY = 1;\n    BOOLEAN = 2;\n    INTEGER = 3;\n    NULL = 4;\n    NUMBER = 5;\n    OBJECT = 6;\n    STRING = 7;\n  }\n\n  repeated JSONSchemaSimpleTypes type = 35;\n  // `Format`\n  string format = 36;\n  // following fields are reserved, as the properties have been omitted from \n  // OpenAPI v2: contentMediaType, contentEncoding, if, then, else\n  reserved 37 to 41;\n  // field 42 is reserved for 'allOf', but in OpenAPI-specific way.\n  // TODO(ivucica): add 'allOf'?\n  reserved 42;\n  // following fields are reserved, as the properties have been omitted from\n  // OpenAPI v2:\n  // anyOf, oneOf, not\n  reserved 43 to 45;\n  // Items in `enum` must be unique https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.5.1\n  repeated string enum = 46;\n}\n\n// `Tag` is a representation of OpenAPI v2 specification's Tag object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#tagObject\n//\nmessage Tag {\n  // field 1 is reserved for 'name'. In our generator, this is (to be) extracted\n  // from the name of proto service, and thus not exposed to the user, as\n  // changing tag object's name would break the link to the references to the\n  // tag in individual operation specifications.\n  //\n  // TODO(ivucica): Add 'name' property. Use it to allow override of the name of\n  // global Tag object, then use that name to reference the tag throughout the\n  // OpenAPI file.\n  reserved 1;\n  // A short description for the tag. GFM syntax can be used for rich text \n  // representation.\n  string description = 2;\n  // Additional external documentation for this tag.\n  ExternalDocumentation external_docs = 3;\n}\n\n// `SecurityDefinitions` is a representation of OpenAPI v2 specification's\n// Security Definitions object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securityDefinitionsObject\n//\n// A declaration of the security schemes available to be used in the\n// specification. This does not enforce the security schemes on the operations\n// and only serves to provide the relevant details for each scheme.\nmessage SecurityDefinitions {\n  // A single security scheme definition, mapping a \"name\" to the scheme it\n  // defines.\n  map<string, SecurityScheme> security = 1;\n}\n\n// `SecurityScheme` is a representation of OpenAPI v2 specification's\n// Security Scheme object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securitySchemeObject\n//\n// Allows the definition of a security scheme that can be used by the\n// operations. Supported schemes are basic authentication, an API key (either as\n// a header or as a query parameter) and OAuth2's common flows (implicit,\n// password, application and access code).\nmessage SecurityScheme {\n  // The type of the security scheme. Valid values are \"basic\",\n  // \"apiKey\" or \"oauth2\".\n  enum Type {\n    TYPE_INVALID = 0;\n    TYPE_BASIC = 1;\n    TYPE_API_KEY = 2;\n    TYPE_OAUTH2 = 3;\n  }\n\n  // The location of the API key. Valid values are \"query\" or \"header\".\n  enum In {\n    IN_INVALID = 0;\n    IN_QUERY = 1;\n    IN_HEADER = 2;\n  }\n\n  // The flow used by the OAuth2 security scheme. Valid values are\n  // \"implicit\", \"password\", \"application\" or \"accessCode\".\n  enum Flow {\n    FLOW_INVALID = 0;\n    FLOW_IMPLICIT = 1;\n    FLOW_PASSWORD = 2;\n    FLOW_APPLICATION = 3;\n    FLOW_ACCESS_CODE = 4;\n  }\n\n  // The type of the security scheme. Valid values are \"basic\",\n  // \"apiKey\" or \"oauth2\".\n  Type type = 1;\n  // A short description for security scheme.\n  string description = 2;\n  // The name of the header or query parameter to be used.\n  // Valid for apiKey.\n  string name = 3;\n  // The location of the API key. Valid values are \"query\" or\n  // \"header\".\n  // Valid for apiKey.\n  In in = 4;\n  // The flow used by the OAuth2 security scheme. Valid values are\n  // \"implicit\", \"password\", \"application\" or \"accessCode\".\n  // Valid for oauth2.\n  Flow flow = 5;\n  // The authorization URL to be used for this flow. This SHOULD be in\n  // the form of a URL.\n  // Valid for oauth2/implicit and oauth2/accessCode.\n  string authorization_url = 6;\n  // The token URL to be used for this flow. This SHOULD be in the\n  // form of a URL.\n  // Valid for oauth2/password, oauth2/application and oauth2/accessCode.\n  string token_url = 7;\n  // The available scopes for the OAuth2 security scheme.\n  // Valid for oauth2.\n  Scopes scopes = 8;\n  map<string, google.protobuf.Value> extensions = 9;\n}\n\n// `SecurityRequirement` is a representation of OpenAPI v2 specification's\n// Security Requirement object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securityRequirementObject\n//\n// Lists the required security schemes to execute this operation. The object can\n// have multiple security schemes declared in it which are all required (that\n// is, there is a logical AND between the schemes).\n//\n// The name used for each property MUST correspond to a security scheme\n// declared in the Security Definitions.\nmessage SecurityRequirement {\n  // If the security scheme is of type \"oauth2\", then the value is a list of\n  // scope names required for the execution. For other security scheme types,\n  // the array MUST be empty.\n  message SecurityRequirementValue {\n    repeated string scope = 1;\n  }\n  // Each name must correspond to a security scheme which is declared in\n  // the Security Definitions. If the security scheme is of type \"oauth2\",\n  // then the value is a list of scope names required for the execution.\n  // For other security scheme types, the array MUST be empty.\n  map<string, SecurityRequirementValue> security_requirement = 1;\n}\n\n// `Scopes` is a representation of OpenAPI v2 specification's Scopes object.\n//\n// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#scopesObject\n//\n// Lists the available scopes for an OAuth2 security scheme.\nmessage Scopes {\n  // Maps between a name of a scope to a short description of it (as the value\n  // of the property).\n  map<string, string> scope = 1;\n}\n"
  },
  {
    "path": "api/mindexd/service/cast.go",
    "content": "package service\n\nimport (\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"github.com/textileio/textile/v2/api/mindexd/pb\"\n\t\"github.com/textileio/textile/v2/api/mindexd/store\"\n\t\"google.golang.org/protobuf/types/known/timestamppb\"\n)\n\nfunc toPbMinerIndexInfo(mi model.MinerInfo) *pb.MinerIndexInfo {\n\treturn &pb.MinerIndexInfo{\n\t\tMinerAddr: mi.MinerID,\n\t\tMetadata: &pb.MetadataInfo{\n\t\t\tLocation: mi.Metadata.Location,\n\t\t},\n\t\tFilecoin: &pb.FilecoinInfo{\n\t\t\tAskPrice:         mi.Filecoin.AskPrice,\n\t\t\tAskVerifiedPrice: mi.Filecoin.AskVerifiedPrice,\n\t\t\tMaxPieceSize:     mi.Filecoin.MaxPieceSize,\n\t\t\tMinPieceSize:     mi.Filecoin.MinPieceSize,\n\t\t\tRelativePower:    mi.Filecoin.RelativePower,\n\t\t\tSectorSize:       mi.Filecoin.SectorSize,\n\t\t\tActiveSectors:    mi.Filecoin.ActiveSectors,\n\t\t\tFaultySectors:    mi.Filecoin.FaultySectors,\n\t\t\tUpdatedAt:        formatPbTime(mi.Filecoin.UpdatedAt),\n\t\t},\n\t\tTextile:   toPbTextileInfo(mi.Textile),\n\t\tUpdatedAt: formatPbTime(mi.UpdatedAt),\n\t}\n}\n\nfunc toPbTextileInfo(t model.TextileInfo) *pb.TextileInfo {\n\tti := &pb.TextileInfo{\n\t\tRegions: make(map[string]*pb.TextileRegionInfo, len(t.Regions)),\n\t\tDealsSummary: &pb.DealsSummary{\n\t\t\tTotal:       int64(t.DealsSummary.Total),\n\t\t\tLast:        formatPbTime(t.DealsSummary.Last),\n\t\t\tFailures:    int64(t.DealsSummary.Failures),\n\t\t\tLastFailure: formatPbTime(t.DealsSummary.LastFailure),\n\t\t},\n\t\tRetrievalsSummary: &pb.RetrievalsSummary{\n\t\t\tTotal:       int64(t.RetrievalsSummary.Total),\n\t\t\tLast:        formatPbTime(t.RetrievalsSummary.Last),\n\t\t\tFailures:    int64(t.RetrievalsSummary.Failures),\n\t\t\tLastFailure: formatPbTime(t.RetrievalsSummary.LastFailure),\n\t\t},\n\t\tUpdatedAt: formatPbTime(t.UpdatedAt),\n\t}\n\n\tfor region, info := range t.Regions {\n\t\tti.Regions[region] = &pb.TextileRegionInfo{\n\t\t\tDeals: &pb.TextileDealsInfo{\n\t\t\t\tTotal:         int64(info.Deals.Total),\n\t\t\t\tLast:          formatPbTime(info.Deals.Last),\n\t\t\t\tFailures:      int64(info.Deals.Failures),\n\t\t\t\tLastFailure:   formatPbTime(info.Deals.LastFailure),\n\t\t\t\tTailSealed:    toPbSealedDurationMins(info.Deals.TailSealed),\n\t\t\t\tTailTransfers: toPbTransferMiBPerSec(info.Deals.TailTransfers),\n\t\t\t},\n\t\t\tRetrievals: &pb.TextileRetrievalsInfo{\n\t\t\t\tTotal:         int64(info.Retrievals.Total),\n\t\t\t\tLast:          formatPbTime(info.Retrievals.Last),\n\t\t\t\tFailures:      int64(info.Retrievals.Failures),\n\t\t\t\tLastFailure:   formatPbTime(info.Retrievals.LastFailure),\n\t\t\t\tTailTransfers: toPbTransferMiBPerSec(info.Retrievals.TailTransfers),\n\t\t\t},\n\t\t}\n\t}\n\n\treturn ti\n}\n\nfunc toPbTransferMiBPerSec(ts []model.TransferMiBPerSec) []*pb.TransferMiBPerSec {\n\tret := make([]*pb.TransferMiBPerSec, len(ts))\n\n\tfor i, t := range ts {\n\t\tret[i] = &pb.TransferMiBPerSec{\n\t\t\tMibPerSec:    t.MiBPerSec,\n\t\t\tTransferedAt: formatPbTime(t.TransferedAt),\n\t\t}\n\t}\n\n\treturn ret\n}\n\nfunc toPbSealedDurationMins(ss []model.SealedDurationMins) []*pb.SealedDurationMins {\n\tret := make([]*pb.SealedDurationMins, len(ss))\n\n\tfor i, s := range ss {\n\t\tret[i] = &pb.SealedDurationMins{\n\t\t\tDurationSeconds: int64(s.DurationSeconds),\n\t\t\tSealedAt:        formatPbTime(s.SealedAt),\n\t\t}\n\t}\n\n\treturn ret\n}\n\nfunc fromPbQueryIndexRequestFilters(f *pb.QueryIndexRequestFilters) store.QueryIndexFilters {\n\tr := store.QueryIndexFilters{}\n\tif f != nil {\n\t\tr.MinerLocation = f.MinerLocation\n\t}\n\treturn r\n}\n\nfunc fromPbQueryIndexRequestSort(s *pb.QueryIndexRequestSort) (store.QueryIndexSort, error) {\n\tif s == nil {\n\t\treturn store.QueryIndexSort{}, nil\n\t}\n\tfield, err := fromPbQueryIndexRequestSortField(s.Field)\n\tif err != nil {\n\t\treturn store.QueryIndexSort{}, fmt.Errorf(\"parsing sort field: %s\", err)\n\t}\n\n\treturn store.QueryIndexSort{\n\t\tAscending:     s.Ascending,\n\t\tTextileRegion: s.TextileRegion,\n\t\tField:         field,\n\t}, nil\n}\n\nfunc fromPbQueryIndexRequestSortField(field pb.QueryIndexRequestSortField) (store.QueryIndexSortField, error) {\n\tswitch field {\n\tcase pb.QueryIndexRequestSortField_TEXTILE_DEALS_TOTAL_SUCCESSFUL:\n\t\treturn store.SortFieldTextileDealTotalSuccessful, nil\n\tcase pb.QueryIndexRequestSortField_TEXTILE_DEALS_LAST_SUCCESSFUL:\n\t\treturn store.SortFieldTextileDealLastSuccessful, nil\n\tcase pb.QueryIndexRequestSortField_TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL:\n\t\treturn store.SortFieldTextileRetrievalTotalSuccessful, nil\n\tcase pb.QueryIndexRequestSortField_TEXTILE_RETRIEVALS_LAST_SUCCESSFUL:\n\t\treturn store.SortFieldTextileRetrievalLastSuccessful, nil\n\tcase pb.QueryIndexRequestSortField_ASK_PRICE:\n\t\treturn store.SortFieldAskPrice, nil\n\tcase pb.QueryIndexRequestSortField_VERIFIED_ASK_PRICE:\n\t\treturn store.SortFieldVerifiedAskPrice, nil\n\tcase pb.QueryIndexRequestSortField_ACTIVE_SECTORS:\n\t\treturn store.SortFieldActiveSectors, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unkown sorting field %s\", pb.QueryIndexRequestSortField_name[int32(field)])\n\t}\n}\n\nfunc toPbQueryIndexResponse(ss []model.MinerInfo) *pb.QueryIndexResponse {\n\tres := &pb.QueryIndexResponse{\n\t\tMiners: make([]*pb.QueryIndexResponseMiner, len(ss)),\n\t}\n\tfor i, m := range ss {\n\t\tres.Miners[i] = &pb.QueryIndexResponseMiner{\n\t\t\tMiner: toPbMinerIndexInfo(m),\n\t\t}\n\t}\n\n\treturn res\n}\n\nfunc formatPbTime(t time.Time) *timestamppb.Timestamp {\n\tif t.IsZero() {\n\t\treturn nil\n\t}\n\treturn timestamppb.New(t)\n}\n"
  },
  {
    "path": "api/mindexd/service/service.go",
    "content": "package service\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"math\"\n\t\"math/big\"\n\t\"net\"\n\t\"net/http\"\n\t\"time\"\n\n\t\"github.com/gogo/status\"\n\t\"github.com/grpc-ecosystem/grpc-gateway/v2/runtime\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\t\"github.com/textileio/go-threads/util\"\n\tpowClient \"github.com/textileio/powergate/v2/api/client\"\n\tswagger \"github.com/textileio/swagger-ui\"\n\t\"github.com/textileio/textile/v2/api/mindexd/collector\"\n\t\"github.com/textileio/textile/v2/api/mindexd/indexer\"\n\t\"github.com/textileio/textile/v2/api/mindexd/migrations\"\n\t\"github.com/textileio/textile/v2/api/mindexd/pb\"\n\t\"github.com/textileio/textile/v2/api/mindexd/store\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n)\n\nconst (\n\t// Each epoch in the Filecoin network is ~30s.\n\tepochDurationSeconds = 30\n\tqueryMaxLimit        = 50\n)\n\nvar (\n\tlog = logging.Logger(\"mindexd\")\n)\n\ntype Service struct {\n\tconfig         Config\n\tserver         *grpc.Server\n\tgrpcRESTServer *http.Server\n\n\tdb        *mongo.Database\n\tcollector *collector.Collector\n\tindexer   *indexer.Indexer\n\tstore     *store.Store\n}\n\nvar _ pb.APIServiceServer = (*Service)(nil)\n\ntype Config struct {\n\tListenAddrGRPC ma.Multiaddr\n\tListenAddrREST string\n\tDebug          bool\n\n\tDBURI  string\n\tDBName string\n\n\tPowAddrAPI    string\n\tPowAdminToken string\n\n\tCollectorRunOnStart   bool\n\tCollectorFrequency    time.Duration\n\tCollectorFetchLimit   int\n\tCollectorFetchTimeout time.Duration\n\n\tIndexerRunOnStart     bool\n\tIndexerFrequency      time.Duration\n\tIndexerSnapshotMaxAge time.Duration\n}\n\nfunc NewService(ctx context.Context, config Config) (*Service, error) {\n\tif config.Debug {\n\t\tif err := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"mindexd\":   logging.LevelDebug,\n\t\t\t\"collector\": logging.LevelDebug,\n\t\t\t\"indexer\":   logging.LevelDebug,\n\t\t\t\"store\":     logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tclient, err := mongo.Connect(ctx, options.Client().ApplyURI(config.DBURI))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"connecting to mongo: %s\", err)\n\t}\n\tdb := client.Database(config.DBName)\n\tif err = migrations.Migrate(db); err != nil {\n\t\treturn nil, fmt.Errorf(\"executing migrations: %s\", err)\n\t}\n\n\tstore, err := store.New(db)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"creating store: %s\", err)\n\t}\n\n\tcollectorOpts := []collector.Option{\n\t\tcollector.WithRunOnStart(config.CollectorRunOnStart),\n\t\tcollector.WithFrequency(config.CollectorFrequency),\n\t\tcollector.WithFetchLimit(config.CollectorFetchLimit),\n\t\tcollector.WithFetchTimeout(config.CollectorFetchTimeout),\n\t}\n\tcollector, err := collector.New(store, collectorOpts...)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"creating collector: %s\", err)\n\t}\n\n\tindexerOpts := []indexer.Option{\n\t\tindexer.WithRunOnStart(config.IndexerRunOnStart),\n\t\tindexer.WithFrequency(config.IndexerFrequency),\n\t\tindexer.WithSnapshotMaxAge(config.IndexerSnapshotMaxAge),\n\t}\n\n\tpow, err := powClient.NewClient(config.PowAddrAPI)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"connecting to powergate: %s\", err)\n\t}\n\n\tsub := collector.Subscribe()\n\tindexer, err := indexer.New(pow, sub, config.PowAdminToken, store, indexerOpts...)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"creating indexer: %s\", err)\n\t}\n\n\ts := &Service{\n\t\tconfig:    config,\n\t\tdb:        db,\n\t\tcollector: collector,\n\t\tindexer:   indexer,\n\t\tstore:     store,\n\t}\n\treturn s, nil\n}\n\nfunc (s *Service) Start() error {\n\ts.server = grpc.NewServer()\n\ttarget, err := util.TCPAddrFromMultiAddr(s.config.ListenAddrGRPC)\n\tif err != nil {\n\t\treturn err\n\t}\n\tlistener, err := net.Listen(\"tcp\", target)\n\tif err != nil {\n\t\treturn err\n\t}\n\tgo func() {\n\t\tpb.RegisterAPIServiceServer(s.server, s)\n\t\tif err := s.server.Serve(listener); err != nil && !errors.Is(err, grpc.ErrServerStopped) {\n\t\t\tlog.Errorf(\"serve error: %v\", err)\n\t\t}\n\t}()\n\n\tgrpcMux := runtime.NewServeMux()\n\topts := []grpc.DialOption{grpc.WithInsecure()}\n\tif err := pb.RegisterAPIServiceHandlerFromEndpoint(context.Background(), grpcMux, \"localhost:5000\", opts); err != nil {\n\t\treturn fmt.Errorf(\"starting REST api server: %s\", err)\n\t}\n\n\tswaggerContent, err := ioutil.ReadFile(\"swagger.json\")\n\tif err != nil {\n\t\tlog.Warnf(\"opening swagger file: %s\", err)\n\t}\n\tif err := grpcMux.HandlePath(\"GET\", \"/docs\", func(w http.ResponseWriter, r *http.Request, pathParams map[string]string) {\n\t\thttp.Redirect(w, r, \"/docs/index.html\", 301)\n\n\t}); err != nil {\n\t\treturn fmt.Errorf(\"registering redirect docs path: %s\", err)\n\t}\n\tif err := grpcMux.HandlePath(\"GET\", \"/docs/*\", func(w http.ResponseWriter, r *http.Request, pathParams map[string]string) {\n\t\tswagger.Handler(func() ([]byte, error) {\n\t\t\treturn swaggerContent, nil\n\t\t}).ServeHTTP(w, r)\n\t}); err != nil {\n\t\treturn fmt.Errorf(\"registering docs handler: %s\", err)\n\t}\n\n\ts.grpcRESTServer = &http.Server{\n\t\tAddr:    s.config.ListenAddrREST,\n\t\tHandler: grpcMux,\n\t}\n\tgo func() {\n\t\tif err := s.grpcRESTServer.ListenAndServe(); err != nil && err != http.ErrServerClosed {\n\t\t\tlog.Errorf(\"gRPC REST API closed unexpectedly: %s\", err)\n\t\t}\n\t}()\n\n\treturn nil\n}\n\nfunc (s *Service) Stop() {\n\tctx, cls := context.WithTimeout(context.Background(), time.Second*10)\n\tdefer cls()\n\tif err := s.grpcRESTServer.Shutdown(ctx); err != nil {\n\t\tlog.Errorf(\"closing REST endpoint: %s\", err)\n\t}\n\tstopped := make(chan struct{})\n\tgo func() {\n\t\ts.server.GracefulStop()\n\t\tclose(stopped)\n\t}()\n\ttimer := time.NewTimer(10 * time.Second)\n\tselect {\n\tcase <-timer.C:\n\t\ts.server.Stop()\n\tcase <-stopped:\n\t\ttimer.Stop()\n\t}\n\tlog.Info(\"gRPC was shutdown\")\n\n\tif err := s.indexer.Close(); err != nil {\n\t\tlog.Errorf(\"closing indexer: %s\", err)\n\t}\n\n\tif err := s.collector.Close(); err != nil {\n\t\tlog.Errorf(\"closing collector: %s\", err)\n\t}\n\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second*15)\n\tdefer cancel()\n\tif err := s.db.Client().Disconnect(ctx); err != nil {\n\t\tlog.Errorf(\"disconnecting from mongo: %s\", err)\n\t}\n}\n\nfunc (s *Service) QueryIndex(ctx context.Context, req *pb.QueryIndexRequest) (*pb.QueryIndexResponse, error) {\n\tfilters := fromPbQueryIndexRequestFilters(req.Filters)\n\n\tsort, err := fromPbQueryIndexRequestSort(req.Sort)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"parsing sorting fields: %s\", err)\n\t}\n\n\tif req.Limit > queryMaxLimit {\n\t\treq.Limit = queryMaxLimit\n\t}\n\n\tres, err := s.store.QueryIndex(ctx, filters, sort, int(req.Limit), req.Offset)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"querying miners from index: %s\", err)\n\t}\n\n\treturn toPbQueryIndexResponse(res), nil\n}\n\n// GetMinerInfo returns miner's index information for a miner. If no information is\n// available, it returns a codes.NotFound status code.\nfunc (s *Service) GetMinerInfo(ctx context.Context, req *pb.GetMinerInfoRequest) (*pb.GetMinerInfoResponse, error) {\n\tmi, err := s.store.GetMinerInfo(ctx, req.MinerAddress)\n\tif err == store.ErrMinerNotExists {\n\t\treturn nil, status.Error(codes.NotFound, \"miner not found\")\n\t}\n\n\treturn &pb.GetMinerInfoResponse{\n\t\tInfo: toPbMinerIndexInfo(mi),\n\t}, nil\n}\n\n// CalculateDealPrice calculates deal price for a miner.\nfunc (s *Service) CalculateDealPrice(ctx context.Context, req *pb.CalculateDealPriceRequest) (*pb.CalculateDealPriceResponse, error) {\n\tdurationEpochs := req.DurationDays * 24 * 60 * 60 / epochDurationSeconds\n\n\tif req.DataSizeBytes <= 0 {\n\t\treturn nil, status.Error(codes.InvalidArgument, \"data size should be greater than zero\")\n\t}\n\n\tshifting := int(math.Ceil(math.Log2(math.Ceil(float64(req.DataSizeBytes) / 127))))\n\tif shifting < 0 {\n\t\tshifting = 0\n\t}\n\tpaddedSize := int64(128 << shifting)\n\n\tret := &pb.CalculateDealPriceResponse{\n\t\tDurationEpochs: durationEpochs,\n\t\tPaddedSize:     paddedSize,\n\t\tResults:        make([]*pb.CalculateDealPriceMiner, len(req.MinerAddresses)),\n\t}\n\n\tgibEpochs := big.NewInt(0).Mul(big.NewInt(paddedSize), big.NewInt(durationEpochs))\n\tgibEpochs = gibEpochs.Div(gibEpochs, big.NewInt(1<<30))\n\tfor i, minerAddr := range req.MinerAddresses {\n\t\tmi, err := s.store.GetMinerInfo(ctx, minerAddr)\n\t\tif err == store.ErrMinerNotExists {\n\t\t\treturn nil, status.Errorf(codes.NotFound, \"Miner %s not found\", minerAddr)\n\t\t}\n\t\tvar askPrice, askVerifiedPrice big.Int\n\t\tif _, ok := askPrice.SetString(mi.Filecoin.AskPrice, 10); !ok {\n\t\t\treturn nil, fmt.Errorf(\"parsing ask price: %s\", err)\n\t\t}\n\t\tif _, ok := askVerifiedPrice.SetString(mi.Filecoin.AskVerifiedPrice, 10); !ok {\n\t\t\treturn nil, fmt.Errorf(\"parsing ask verified price: %s\", err)\n\t\t}\n\n\t\tret.Results[i] = &pb.CalculateDealPriceMiner{\n\t\t\tMiner:             minerAddr,\n\t\t\tTotalCost:         big.NewInt(0).Mul(gibEpochs, &askPrice).String(),\n\t\t\tVerifiedTotalCost: big.NewInt(0).Mul(gibEpochs, &askVerifiedPrice).String(),\n\t\t\tPrice:             askPrice.String(),\n\t\t\tVerifiedPrice:     askVerifiedPrice.String(),\n\t\t}\n\t}\n\n\treturn ret, nil\n}\n"
  },
  {
    "path": "api/mindexd/store/gen.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nvar (\n\ttailLimit = 50\n)\n\ntype minerRegion struct {\n\tminer  string\n\tregion string\n}\n\nfunc (s *Store) UpdateTextileDealsInfo(ctx context.Context) error {\n\tminerRegions, err := s.regenerateTextileDealsTotalsAndLasts(ctx)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"regenerating textile deals totals and lasts: %s\", err)\n\t}\n\n\tfor _, mr := range minerRegions {\n\t\tif err := s.regenerateTextileDealsTailMetrics(ctx, mr); err != nil {\n\t\t\treturn fmt.Errorf(\"updating textile retrieval tail metrics: %s\", err)\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (s *Store) UpdateTextileRetrievalsInfo(ctx context.Context) error {\n\tminerRegions, err := s.regenerateTextileRetrievalsTotalsAndLasts(ctx)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"regenerating textile retrievals totals and lasts: %s\", err)\n\t}\n\n\tfor _, mr := range minerRegions {\n\t\tif err := s.regenerateTextileRetrievalsTailMetrics(ctx, mr); err != nil {\n\t\t\treturn fmt.Errorf(\"updating textile retrievals tail metrics: %s\", err)\n\t\t}\n\t}\n\n\treturn nil\n}\n\ntype regionalGeneralItem struct {\n\tID struct {\n\t\tRegion string `bson:\"region\"`\n\t\tMiner  string `bson:\"miner\"`\n\t\tFailed bool   `bson:\"failed\"`\n\t} `bson:\"_id\"`\n\tTotal int       `bson:\"total\"`\n\tLast  time.Time `bson:\"last\"`\n}\n\nfunc (s *Store) regenerateTextileDealsTailMetrics(ctx context.Context, mr minerRegion) error {\n\tfilter := bson.M{\n\t\t\"pow_storage_deal_record.deal_info.miner\": mr.miner,\n\t\t\"region\":                          mr.region,\n\t\t\"pow_storage_deal_record.pending\": false,\n\t\t\"pow_storage_deal_record.failed\":  false,\n\t}\n\tsort := bson.D{bson.E{Key: \"pow_storage_deal_record.updated_at\", Value: -1}}\n\tproj := bson.M{\n\t\t\"pow_storage_deal_record.transfer_size\":      1,\n\t\t\"pow_storage_deal_record.datatransfer_start\": 1,\n\t\t\"pow_storage_deal_record.datatransfer_end\":   1,\n\t\t\"pow_storage_deal_record.sealing_start\":      1,\n\t\t\"pow_storage_deal_record.sealing_end\":        1,\n\t\t\"pow_storage_deal_record.updated_at\":         1,\n\t}\n\topts := options.Find().SetSort(sort).SetProjection(proj).SetLimit(int64(tailLimit))\n\tc, err := s.sdrc.Find(ctx, filter, opts)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"finding miner-region records: %s\", err)\n\t}\n\tdefer c.Close(ctx)\n\n\tvar records []model.StorageDealRecord\n\tif err := c.All(ctx, &records); err != nil {\n\t\treturn fmt.Errorf(\"getting all results: %s\", err)\n\t}\n\n\ttailTransfers := make([]model.TransferMiBPerSec, 0, len(records))\n\ttailSealed := make([]model.SealedDurationMins, 0, len(records))\n\tfor _, record := range records {\n\t\tpsd := record.PowStorageDealRecord\n\n\t\tif psd.DataTransferEnd.Sub(psd.DataTransferStart) > 0 {\n\t\t\ttailTransfers = append(tailTransfers, model.TransferMiBPerSec{\n\t\t\t\tTransferedAt: psd.DataTransferEnd,\n\t\t\t\tMiBPerSec:    float64(psd.TransferSize) / psd.DataTransferEnd.Sub(psd.DataTransferStart).Seconds() / 1024 / 1024,\n\t\t\t})\n\t\t}\n\n\t\tif psd.SealingEnd.Sub(psd.SealingStart) > 0 {\n\t\t\ttailSealed = append(tailSealed, model.SealedDurationMins{\n\t\t\t\tSealedAt:        psd.SealingEnd,\n\t\t\t\tDurationSeconds: int(psd.SealingEnd.Sub(psd.SealingStart).Seconds()),\n\t\t\t})\n\t\t}\n\t}\n\n\tnow := time.Now()\n\tprefix := \"textile.regions.\" + mr.region\n\tfilter = bson.M{\"_id\": mr.miner}\n\tsetFields := bson.M{\n\t\tprefix + \".deals.tail_transfers\": tailTransfers,\n\t\tprefix + \".deals.tail_sealed\":    tailSealed,\n\t\t\"textile.updated_at\":             now,\n\t\t\"updated_at\":                     now,\n\t}\n\tif _, err := s.idxc.UpdateOne(ctx, filter, bson.M{\"$set\": setFields}); err != nil {\n\t\treturn fmt.Errorf(\"updating miner index tails: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc (s *Store) regenerateTextileDealsTotalsAndLasts(ctx context.Context) ([]minerRegion, error) {\n\tpipeline := bson.A{\n\t\tbson.M{\n\t\t\t\"$match\": bson.M{\n\t\t\t\t\"pow_storage_deal_record.pending\": false,\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"$group\": bson.M{\n\t\t\t\t\"_id\": bson.D{\n\t\t\t\t\t{Key: \"miner\", Value: \"$pow_storage_deal_record.deal_info.miner\"},\n\t\t\t\t\t{Key: \"region\", Value: \"$region\"},\n\t\t\t\t\t{Key: \"failed\", Value: \"$pow_storage_deal_record.failed\"},\n\t\t\t\t},\n\t\t\t\t\"total\": bson.M{\n\t\t\t\t\t\"$sum\": 1,\n\t\t\t\t},\n\t\t\t\t\"last\": bson.M{\n\t\t\t\t\t\"$max\": \"$pow_storage_deal_record.updated_at\",\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n\tc, err := s.sdrc.Aggregate(ctx, pipeline)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"aggregate in mongo: %s\", err)\n\t}\n\tdefer c.Close(ctx)\n\n\tmr, err := s.updateTextileRegionAndSummary(ctx, \"deals\", c)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"updating region: %s\", err)\n\t}\n\n\treturn mr, nil\n}\n\nfunc (s *Store) regenerateTextileRetrievalsTotalsAndLasts(ctx context.Context) ([]minerRegion, error) {\n\tpipeline := bson.A{\n\t\tbson.M{\n\t\t\t\"$group\": bson.M{\n\t\t\t\t\"_id\": bson.D{\n\t\t\t\t\t{Key: \"miner\", Value: \"$pow_retrieval_record.deal_info.miner\"},\n\t\t\t\t\t{Key: \"region\", Value: \"$region\"},\n\t\t\t\t\t{Key: \"failed\", Value: \"$pow_retrieval_record.failed\"},\n\t\t\t\t},\n\t\t\t\t\"total\": bson.M{\n\t\t\t\t\t\"$sum\": 1,\n\t\t\t\t},\n\t\t\t\t\"last\": bson.M{\n\t\t\t\t\t\"$max\": \"$pow_retrieval_record.updated_at\",\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n\tc, err := s.rrc.Aggregate(ctx, pipeline)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"aggregate in mongo: %s\", err)\n\t}\n\tdefer c.Close(ctx)\n\n\tmr, err := s.updateTextileRegionAndSummary(ctx, \"retrievals\", c)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"updating region: %s\", err)\n\t}\n\n\treturn mr, nil\n}\n\nfunc (s *Store) regenerateTextileRetrievalsTailMetrics(ctx context.Context, mr minerRegion) error {\n\tfilter := bson.M{\n\t\t\"pow_retrieval_record.deal_info.miner\": mr.miner,\n\t\t\"region\":                               mr.region,\n\t\t\"pow_retrieval_record.failed\":          false,\n\t}\n\tsort := bson.D{bson.E{Key: \"pow_storage_deal_record.updated_at\", Value: -1}}\n\tproj := bson.M{\n\t\t\"pow_retrieval_record.bytes_received\":     1,\n\t\t\"pow_retrieval_record.datatransfer_start\": 1,\n\t\t\"pow_retrieval_record.datatransfer_end\":   1,\n\t\t\"pow_storage_deal_record.updated_at\":      1,\n\t}\n\topts := options.Find().SetSort(sort).SetProjection(proj).SetLimit(int64(tailLimit))\n\tc, err := s.rrc.Find(ctx, filter, opts)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"finding miner-region records: %s\", err)\n\t}\n\tdefer c.Close(ctx)\n\n\tvar records []model.RetrievalRecord\n\tif err := c.All(ctx, &records); err != nil {\n\t\treturn fmt.Errorf(\"getting all results: %s\", err)\n\t}\n\n\ttailTransfers := make([]model.TransferMiBPerSec, 0, len(records))\n\tfor _, record := range records {\n\t\tpsd := record.PowRetrievalRecord\n\n\t\tif psd.DataTransferEnd.Sub(psd.DataTransferStart) > 0 {\n\t\t\ttailTransfers = append(tailTransfers, model.TransferMiBPerSec{\n\t\t\t\tTransferedAt: psd.DataTransferEnd,\n\t\t\t\tMiBPerSec:    float64(psd.BytesReceived) / psd.DataTransferEnd.Sub(psd.DataTransferStart).Seconds() / 1024 / 1024,\n\t\t\t})\n\t\t}\n\t}\n\n\tnow := time.Now()\n\tprefix := \"textile.regions.\" + mr.region\n\tfilter = bson.M{\"_id\": mr.miner}\n\tsetFields := bson.M{\n\t\tprefix + \".retrievals.tail_transfers\": tailTransfers,\n\t\t\"textile.updated_at\":                  now,\n\t\t\"updated_at\":                          now,\n\t}\n\tif _, err := s.idxc.UpdateOne(ctx, filter, bson.M{\"$set\": setFields}); err != nil {\n\t\treturn fmt.Errorf(\"updating miner index tails: %s\", err)\n\t}\n\n\treturn nil\n}\n\ntype minerSummary struct {\n\ttotal int\n\tlast  time.Time\n\n\tfailures    int\n\tlastFailure time.Time\n}\n\nfunc (s *Store) updateTextileRegionAndSummary(ctx context.Context, prefixSuffix string, c *mongo.Cursor) ([]minerRegion, error) {\n\tmsSummary := map[string]minerSummary{}\n\n\tmrm := map[minerRegion]struct{}{}\n\topt := options.Update().SetUpsert(true)\n\tfor c.Next(ctx) {\n\t\tvar i regionalGeneralItem\n\t\tif err := c.Decode(&i); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"decoding item result: %s\", err)\n\t\t}\n\t\tmrm[minerRegion{miner: i.ID.Miner, region: i.ID.Region}] = struct{}{}\n\n\t\tsetFields := bson.M{}\n\t\tfieldPrefix := \"textile.regions.\" + i.ID.Region + \".\" + prefixSuffix\n\n\t\tct := msSummary[i.ID.Miner]\n\t\tif i.ID.Failed {\n\t\t\tsetFields[fieldPrefix+\".failures\"] = i.Total\n\t\t\tsetFields[fieldPrefix+\".last_failure\"] = i.Last\n\t\t\tct.failures += i.Total\n\t\t\tif i.Last.After(ct.lastFailure) {\n\t\t\t\tct.lastFailure = i.Last\n\t\t\t}\n\t\t} else {\n\t\t\tsetFields[fieldPrefix+\".total\"] = i.Total\n\t\t\tsetFields[fieldPrefix+\".last\"] = i.Last\n\t\t\tct.total += i.Total\n\t\t\tif i.Last.After(ct.last) {\n\t\t\t\tct.last = i.Last\n\t\t\t}\n\t\t}\n\t\tmsSummary[i.ID.Miner] = ct\n\n\t\tfilter := bson.M{\"_id\": i.ID.Miner}\n\t\tupdate := bson.M{\n\t\t\t\"$set\":         setFields,\n\t\t\t\"$setOnInsert\": bson.M{\"_id\": i.ID.Miner},\n\t\t}\n\t\t_, err := s.idxc.UpdateOne(ctx, filter, update, opt)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"upserting total/last: %s\", err)\n\t\t}\n\n\t}\n\tif c.Err() != nil {\n\t\treturn nil, fmt.Errorf(\"cursor error: %s\", c.Err())\n\t}\n\n\t// Update region aggregations.\n\tfor minerID, summary := range msSummary {\n\t\tfieldPrefix := \"textile.\" + prefixSuffix + \"_summary\"\n\t\tsetFields := bson.M{\n\t\t\tfieldPrefix + \".total\":        summary.total,\n\t\t\tfieldPrefix + \".last\":         summary.last,\n\t\t\tfieldPrefix + \".failures\":     summary.failures,\n\t\t\tfieldPrefix + \".last_failure\": summary.lastFailure,\n\t\t}\n\n\t\tfilter := bson.M{\"_id\": minerID}\n\t\tupdate := bson.M{\n\t\t\t\"$set\":         setFields,\n\t\t\t\"$setOnInsert\": bson.M{\"_id\": minerID},\n\t\t}\n\t\t_, err := s.idxc.UpdateOne(ctx, filter, update, opt)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"upserting total/last: %s\", err)\n\t\t}\n\t}\n\n\tmr := make([]minerRegion, 0, len(mrm))\n\tfor k := range mrm {\n\t\tmr = append(mr, k)\n\t}\n\n\treturn mr, nil\n}\n"
  },
  {
    "path": "api/mindexd/store/gen_test.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n)\n\nfunc TestMinerIndexGeneration(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\t// Insert some deal-records.\n\terr = s.PersistStorageDealRecords(ctx, \"duke-1\", \"005\", testDealsSouthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-2\", \"003\", testDealsNorthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-3\", \"002\", testDealsAfrica)\n\trequire.NoError(t, err)\n\t// Insert some retrieval records.\n\terr = s.PersistRetrievalRecords(ctx, \"duke-1\", \"005\", testRetrievalsSouthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistRetrievalRecords(ctx, \"duke-2\", \"003\", testRetrievalsNorthAmerica)\n\trequire.NoError(t, err)\n\n\t// Regenerate indexes.\n\terr = s.UpdateTextileDealsInfo(ctx)\n\trequire.NoError(t, err)\n\terr = s.UpdateTextileRetrievalsInfo(ctx)\n\trequire.NoError(t, err)\n\n\t// Check we have 3 miners.\n\tall, err := s.GetAllMiners(ctx)\n\trequire.NoError(t, err)\n\trequire.Len(t, all, 2)\n\n\t// Check non-existant miner\n\t_, err = s.GetMinerInfo(ctx, \"i-dont-exist\")\n\trequire.Equal(t, ErrMinerNotExists, err)\n\n\t// Miner f0100\n\t{\n\t\tf0100, err := s.GetMinerInfo(ctx, \"f0100\")\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, \"f0100\", f0100.MinerID)\n\t\trequire.False(t, f0100.UpdatedAt.IsZero())\n\t\trequire.False(t, f0100.Textile.UpdatedAt.IsZero())\n\t\trequire.Len(t, f0100.Textile.Regions, 3)\n\t\trequire.Equal(t, 4, f0100.Textile.DealsSummary.Total)\n\t\trequire.Equal(t, int64(303), f0100.Textile.DealsSummary.Last.Unix())\n\t\trequire.Equal(t, 1, f0100.Textile.DealsSummary.Failures)\n\t\trequire.Equal(t, int64(304), f0100.Textile.DealsSummary.LastFailure.Unix())\n\t\trequire.Equal(t, 4, f0100.Textile.RetrievalsSummary.Total)\n\t\trequire.Equal(t, int64(1003), f0100.Textile.RetrievalsSummary.Last.Unix())\n\t\trequire.Equal(t, 2, f0100.Textile.RetrievalsSummary.Failures)\n\t\trequire.Equal(t, int64(1012), f0100.Textile.RetrievalsSummary.LastFailure.Unix())\n\n\t\t// <south-america>\n\t\tf0100_south_america := f0100.Textile.Regions[\"005\"]\n\t\t// !Deals\n\t\trequire.Equal(t, 2, f0100_south_america.Deals.Total)                       // Test 2 successes.\n\t\trequire.Equal(t, int64(301), f0100_south_america.Deals.Last.Unix())        // Max of successes.\n\t\trequire.Equal(t, 1, f0100_south_america.Deals.Failures)                    // Test single failure.\n\t\trequire.Equal(t, int64(304), f0100_south_america.Deals.LastFailure.Unix()) // Single failure date.\n\t\t// Transfer\n\t\trequire.Len(t, f0100_south_america.Deals.TailTransfers, 2)\n\t\trequire.Equal(t, float64(10), f0100_south_america.Deals.TailTransfers[1].MiBPerSec)\n\t\trequire.Equal(t, int64(10010), f0100_south_america.Deals.TailTransfers[1].TransferedAt.Unix())\n\t\trequire.Equal(t, float64(25), f0100_south_america.Deals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(10002), f0100_south_america.Deals.TailTransfers[0].TransferedAt.Unix())\n\t\t// Sealing\n\t\trequire.Len(t, f0100_south_america.Deals.TailSealed, 2)\n\t\trequire.Equal(t, 60*60, f0100_south_america.Deals.TailSealed[1].DurationSeconds)\n\t\trequire.Equal(t, int64(23600), f0100_south_america.Deals.TailSealed[1].SealedAt.Unix())\n\t\trequire.Equal(t, 600*60, f0100_south_america.Deals.TailSealed[0].DurationSeconds)\n\t\trequire.Equal(t, int64(56000), f0100_south_america.Deals.TailSealed[0].SealedAt.Unix())\n\n\t\t// !Retrievals\n\t\trequire.Equal(t, 2, f0100_south_america.Retrievals.Total)\n\t\trequire.Equal(t, 1, f0100_south_america.Retrievals.Failures)\n\t\trequire.Equal(t, int64(1002), f0100_south_america.Retrievals.Last.Unix())\n\t\trequire.Equal(t, int64(1011), f0100_south_america.Retrievals.LastFailure.Unix())\n\t\trequire.Len(t, f0100_south_america.Retrievals.TailTransfers, 2)\n\t\trequire.Equal(t, float64(10), f0100_south_america.Retrievals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(1010), f0100_south_america.Retrievals.TailTransfers[0].TransferedAt.Unix())\n\t\trequire.Equal(t, float64(50), f0100_south_america.Retrievals.TailTransfers[1].MiBPerSec)\n\t\trequire.Equal(t, int64(1020), f0100_south_america.Retrievals.TailTransfers[1].TransferedAt.Unix())\n\n\t\t// </south-america>\n\n\t\t// <north-america>\n\t\tf0100_north_america := f0100.Textile.Regions[\"003\"]\n\t\t// !Deals\n\t\trequire.Equal(t, 1, f0100_north_america.Deals.Total)\n\t\trequire.Equal(t, int64(302), f0100_north_america.Deals.Last.Unix())\n\t\trequire.Equal(t, 0, f0100_north_america.Deals.Failures)\n\t\trequire.True(t, f0100_north_america.Deals.LastFailure.IsZero())\n\t\t// Transfers\n\t\trequire.Len(t, f0100_north_america.Deals.TailTransfers, 1)\n\t\trequire.Equal(t, float64(1), f0100_north_america.Deals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(10010), f0100_north_america.Deals.TailTransfers[0].TransferedAt.Unix())\n\t\t// Sealing\n\t\trequire.Len(t, f0100_north_america.Deals.TailSealed, 1)\n\t\trequire.Equal(t, 300*60, f0100_north_america.Deals.TailSealed[0].DurationSeconds)\n\t\trequire.Equal(t, int64(38000), f0100_north_america.Deals.TailSealed[0].SealedAt.Unix())\n\n\t\t// !Retrievals\n\t\trequire.Equal(t, 2, f0100_north_america.Retrievals.Total)\n\t\trequire.Equal(t, 1, f0100_north_america.Retrievals.Failures)\n\t\trequire.Equal(t, int64(1003), f0100_north_america.Retrievals.Last.Unix())\n\t\trequire.Equal(t, int64(1012), f0100_north_america.Retrievals.LastFailure.Unix())\n\t\trequire.Len(t, f0100_north_america.Retrievals.TailTransfers, 1)\n\t\trequire.Equal(t, float64(6.25), f0100_north_america.Retrievals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(1016), f0100_north_america.Retrievals.TailTransfers[0].TransferedAt.Unix())\n\t\t// </north-america>\n\n\t\t// <africa>\n\t\tf0100_africa := f0100.Textile.Regions[\"002\"]\n\t\t// !Deals\n\t\trequire.Equal(t, 1, f0100_africa.Deals.Total)\n\t\trequire.Equal(t, int64(303), f0100_africa.Deals.Last.Unix())\n\t\trequire.Equal(t, 0, f0100_africa.Deals.Failures)\n\t\trequire.True(t, f0100_africa.Deals.LastFailure.IsZero())\n\t\t// Transfers\n\t\trequire.Len(t, f0100_africa.Deals.TailTransfers, 0) // Our record didn't have transfer data.\n\t\trequire.Len(t, f0100_africa.Deals.TailSealed, 1)    // But the record *had* sealing data.\n\t\t// Sealing\n\t\trequire.Equal(t, 150*60, f0100_africa.Deals.TailSealed[0].DurationSeconds)\n\t\trequire.Equal(t, int64(29000), f0100_africa.Deals.TailSealed[0].SealedAt.Unix())\n\n\t\t// !Retrievals\n\t\trequire.Len(t, f0100_africa.Retrievals.TailTransfers, 0)\n\n\t\t// <africa>\n\t}\n\n\t// Miner f0101\n\t{\n\t\tf0101, err := s.GetMinerInfo(ctx, \"f0101\")\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, \"f0101\", f0101.MinerID)\n\t\trequire.False(t, f0101.UpdatedAt.IsZero())\n\t\trequire.False(t, f0101.Textile.UpdatedAt.IsZero())\n\t\trequire.Len(t, f0101.Textile.Regions, 3)\n\t\trequire.Equal(t, 2, f0101.Textile.DealsSummary.Total)\n\t\trequire.Equal(t, int64(311), f0101.Textile.DealsSummary.Last.Unix())\n\t\trequire.Equal(t, 2, f0101.Textile.DealsSummary.Failures)\n\t\trequire.Equal(t, int64(311), f0101.Textile.DealsSummary.Last.Unix())\n\t\trequire.Equal(t, 1, f0101.Textile.RetrievalsSummary.Total)\n\t\trequire.Equal(t, int64(1050), f0101.Textile.RetrievalsSummary.Last.Unix())\n\t\trequire.Equal(t, 1, f0101.Textile.RetrievalsSummary.Failures)\n\t\trequire.Equal(t, int64(1042), f0101.Textile.RetrievalsSummary.LastFailure.Unix())\n\n\t\t// <south-america>\n\t\tf0101_south_america := f0101.Textile.Regions[\"005\"]\n\t\t// !Deals\n\t\trequire.Len(t, f0101_south_america.Deals.TailTransfers, 0)\n\t\trequire.Len(t, f0101_south_america.Deals.TailSealed, 0)\n\n\t\t// !Retrievals\n\t\trequire.Equal(t, 1, f0101_south_america.Retrievals.Total)\n\t\trequire.Equal(t, 0, f0101_south_america.Retrievals.Failures)\n\t\trequire.Equal(t, int64(1050), f0101_south_america.Retrievals.Last.Unix())\n\t\trequire.Equal(t, time.Time{}.Unix(), f0101_south_america.Retrievals.LastFailure.Unix())\n\t\trequire.Len(t, f0101_south_america.Retrievals.TailTransfers, 1)\n\t\trequire.Equal(t, float64(0.1), f0101_south_america.Retrievals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(1010), f0101_south_america.Retrievals.TailTransfers[0].TransferedAt.Unix())\n\t\t// </south-america>\n\n\t\t// <north-america>\n\t\tf0101_north_america := f0101.Textile.Regions[\"003\"]\n\t\t// !Deals\n\t\trequire.Equal(t, 1, f0101_north_america.Deals.Total)\n\t\trequire.Equal(t, int64(310), f0101_north_america.Deals.Last.Unix())\n\t\trequire.Equal(t, 0, f0101_north_america.Deals.Failures)\n\t\trequire.True(t, f0101_north_america.Deals.LastFailure.IsZero())\n\t\t// Transfers\n\t\trequire.Len(t, f0101_north_america.Deals.TailTransfers, 1)\n\t\trequire.Equal(t, float64(0.2), f0101_north_america.Deals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(10010), f0101_north_america.Deals.TailTransfers[0].TransferedAt.Unix())\n\t\t// Sealing\n\t\trequire.Len(t, f0101_north_america.Deals.TailSealed, 1)\n\t\trequire.Equal(t, 300*60, f0101_north_america.Deals.TailSealed[0].DurationSeconds)\n\t\trequire.Equal(t, int64(38000), f0101_north_america.Deals.TailSealed[0].SealedAt.Unix())\n\n\t\t// !Retrievals\n\t\trequire.Equal(t, 0, f0101_north_america.Retrievals.Total)\n\t\trequire.Equal(t, 1, f0101_north_america.Retrievals.Failures)\n\t\trequire.Equal(t, time.Time{}.Unix(), f0101_north_america.Retrievals.Last.Unix())\n\t\trequire.Equal(t, int64(1042), f0101_north_america.Retrievals.LastFailure.Unix())\n\n\t\trequire.Len(t, f0101_north_america.Retrievals.TailTransfers, 0)\n\t\t// </north-america>\n\n\t\t// <africa>\n\t\tf0101_africa := f0101.Textile.Regions[\"002\"]\n\t\t// !Deals\n\t\trequire.Equal(t, 1, f0101_africa.Deals.Total)\n\t\trequire.Equal(t, int64(311), f0101_africa.Deals.Last.Unix())\n\t\trequire.Equal(t, 2, f0101_africa.Deals.Failures)                    // Test 2 failures.\n\t\trequire.Equal(t, int64(313), f0101_africa.Deals.LastFailure.Unix()) // Max of 2 failures.\n\t\t// Transfers\n\t\trequire.Len(t, f0101_north_america.Deals.TailTransfers, 1)\n\t\trequire.Equal(t, float64(0.2), f0101_africa.Deals.TailTransfers[0].MiBPerSec)\n\t\trequire.Equal(t, int64(10010), f0101_africa.Deals.TailTransfers[0].TransferedAt.Unix())\n\t\t// Sealing\n\t\trequire.Len(t, f0101_africa.Deals.TailSealed, 0) // Our record didn't have sealing information.\n\t\t// !Retrievals\n\t\trequire.Len(t, f0101_africa.Retrievals.TailTransfers, 0)\n\t}\n\n\t// Get all testing\n\tall, err = s.GetAllMiners(ctx)\n\trequire.NoError(t, err)\n\trequire.Len(t, all, 2)\n}\n\nvar (\n\t// Deals\n\ttestDealsSouthAmerica = []model.PowStorageDealRecord{\n\t\t{\n\t\t\tPending:           false,\n\t\t\tDataTransferStart: time.Unix(10000, 0),\n\t\t\tDataTransferEnd:   time.Unix(10010, 0),\n\t\t\tTransferSize:      1024 * 1024 * 100, // 100MiB in 10 sec =  10MiB/s\n\t\t\tSealingStart:      time.Unix(20000, 0),\n\t\t\tSealingEnd:        time.Unix(23600, 0), // Sealing duration = 60min (1hr)\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"0_1\",\n\t\t\t\tMiner:       \"f0100\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(300, 0),\n\t\t},\n\t\t{\n\t\t\tPending:           false,\n\t\t\tDataTransferStart: time.Unix(10000, 0),\n\t\t\tDataTransferEnd:   time.Unix(10002, 0),\n\t\t\tTransferSize:      1024 * 1024 * 50, // 50MiB in 2 sec =  25MiB/s\n\t\t\tSealingStart:      time.Unix(20000, 0),\n\t\t\tSealingEnd:        time.Unix(56000, 0), // Sealing duration = 600 min (10hr)\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"0_2\",\n\t\t\t\tMiner:       \"f0100\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(301, 0),\n\t\t},\n\t\t{\n\t\t\tPending: false,\n\t\t\tFailed:  true,\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"0_5\",\n\t\t\t\tMiner:       \"f0100\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(304, 0),\n\t\t},\n\t\t{\n\t\t\tPending: true,\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"1_1\",\n\t\t\t\tMiner:       \"f0101\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(310, 0),\n\t\t},\n\t}\n\ttestDealsNorthAmerica = []model.PowStorageDealRecord{\n\t\t{\n\t\t\tPending:           false,\n\t\t\tDataTransferStart: time.Unix(10000, 0),\n\t\t\tDataTransferEnd:   time.Unix(10010, 0),\n\t\t\tTransferSize:      1024 * 1024 * 10, // 10MiB in 10 sec =  1MiB/s\n\t\t\tSealingStart:      time.Unix(20000, 0),\n\t\t\tSealingEnd:        time.Unix(38000, 0), // Sealing duration = 300 min (5hr)\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"0_3\",\n\t\t\t\tMiner:       \"f0100\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(302, 0),\n\t\t},\n\t\t{\n\t\t\tPending:           false,\n\t\t\tDataTransferStart: time.Unix(10000, 0),\n\t\t\tDataTransferEnd:   time.Unix(10010, 0),\n\t\t\tTransferSize:      1024 * 1024 * 2, // 2MiB in 10 sec =  0.2MiB/s\n\t\t\tSealingStart:      time.Unix(20000, 0),\n\t\t\tSealingEnd:        time.Unix(38000, 0), // Sealing duration = 300 min (5hr)\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"1_2\",\n\t\t\t\tMiner:       \"f0101\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(310, 0),\n\t\t},\n\t}\n\ttestDealsAfrica = []model.PowStorageDealRecord{\n\t\t{\n\t\t\tPending:           false,\n\t\t\tDataTransferStart: time.Time{},\n\t\t\tDataTransferEnd:   time.Time{}, // Simulate not having transfer times.\n\t\t\tTransferSize:      1024 * 1024 * 1,\n\t\t\tSealingStart:      time.Unix(20000, 0),\n\t\t\tSealingEnd:        time.Unix(29000, 0), // Sealing duration = 150 min (2.5hr)\n\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"0_4\",\n\t\t\t\tMiner:       \"f0100\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(303, 0),\n\t\t},\n\t\t{\n\t\t\tPending:           false,\n\t\t\tDataTransferStart: time.Unix(10000, 0),\n\t\t\tDataTransferEnd:   time.Unix(10010, 0),\n\t\t\tTransferSize:      1024 * 1024 * 2, // 2MiB in 10 sec =  0.2MiB/s\n\t\t\tSealingStart:      time.Time{},\n\t\t\tSealingEnd:        time.Time{}, // Simulate not having sealing times.\n\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"1_3\",\n\t\t\t\tMiner:       \"f0101\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(311, 0),\n\t\t},\n\t\t{\n\t\t\tPending: false,\n\t\t\tFailed:  true,\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"1_4\",\n\t\t\t\tMiner:       \"f0101\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(312, 0),\n\t\t},\n\t\t{\n\t\t\tPending: false,\n\t\t\tFailed:  true,\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid: \"1_5\",\n\t\t\t\tMiner:       \"f0101\",\n\t\t\t},\n\t\t\tUpdatedAt: time.Unix(313, 0),\n\t\t},\n\t}\n\n\t// Retrievals\n\ttestRetrievalsSouthAmerica = []model.PowRetrievalRecord{\n\t\t{\n\t\t\tID: \"0_1\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0100\",\n\t\t\t},\n\t\t\tDataTransferStart: time.Unix(1000, 0),\n\t\t\tDataTransferEnd:   time.Unix(1010, 0),\n\t\t\tBytesReceived:     1024 * 1024 * 100, // Rate = 10MiB/s\n\t\t\tUpdatedAt:         time.Unix(1002, 0),\n\t\t},\n\t\t{\n\t\t\tID: \"0_2\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0100\",\n\t\t\t},\n\t\t\tDataTransferStart: time.Unix(1000, 0),\n\t\t\tDataTransferEnd:   time.Unix(1020, 0),\n\t\t\tBytesReceived:     1024 * 1024 * 1000, // Rate = 50MiB/s\n\t\t\tUpdatedAt:         time.Unix(1001, 0),\n\t\t},\n\t\t{\n\t\t\tID: \"0_5\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0100\",\n\t\t\t},\n\t\t\tFailed:    true,\n\t\t\tUpdatedAt: time.Unix(1011, 0),\n\t\t},\n\t\t{\n\t\t\tID: \"1_1\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0101\",\n\t\t\t},\n\t\t\tDataTransferStart: time.Unix(1000, 0),\n\t\t\tDataTransferEnd:   time.Unix(1010, 0),\n\t\t\tBytesReceived:     1024 * 1024 * 1, // Rate = 0.1MiB/s\n\t\t\tUpdatedAt:         time.Unix(1050, 0),\n\t\t},\n\t}\n\ttestRetrievalsNorthAmerica = []model.PowRetrievalRecord{\n\t\t{\n\t\t\tID: \"0_3\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0100\",\n\t\t\t},\n\t\t\tDataTransferStart: time.Unix(1000, 0),\n\t\t\tDataTransferEnd:   time.Unix(1016, 0),\n\t\t\tBytesReceived:     1024 * 1024 * 100, // Rate = 6.25MiB/s\n\t\t\tUpdatedAt:         time.Unix(1003, 0),\n\t\t},\n\t\t{\n\t\t\tID: \"0_4\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0100\",\n\t\t\t},\n\t\t\tDataTransferStart: time.Time{},\n\t\t\tDataTransferEnd:   time.Time{}, // Simulate not having data.\n\t\t\tBytesReceived:     1024 * 1024 * 100,\n\t\t},\n\t\t{\n\t\t\tID: \"0_6\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0100\",\n\t\t\t},\n\t\t\tFailed:    true,\n\t\t\tUpdatedAt: time.Unix(1012, 0),\n\t\t},\n\t\t{\n\t\t\tID: \"1_2\",\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tMiner: \"f0101\",\n\t\t\t},\n\t\t\tFailed:    true, // Fail for f0101, so no data for this region.\n\t\t\tUpdatedAt: time.Unix(1042, 0),\n\t\t},\n\t}\n)\n"
  },
  {
    "path": "api/mindexd/store/index_snapshot.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nfunc (s *Store) GetLastIndexSnapshotTime(ctx context.Context) (time.Time, error) {\n\topts := options.FindOne()\n\topts = opts.SetSort(bson.D{bson.E{Key: \"created_at\", Value: -1}})\n\topts = opts.SetProjection(bson.M{\"created_at\": 1})\n\tsr := s.hidxc.FindOne(ctx, bson.M{}, opts)\n\tif sr.Err() == mongo.ErrNoDocuments {\n\t\t// No snapshots?, then return a very old date.\n\t\treturn time.Time{}, nil\n\t}\n\tif sr.Err() != nil {\n\t\treturn time.Time{}, fmt.Errorf(\"get last snapshot time: %s\", sr.Err())\n\t}\n\n\tvar lastSnapshot model.MinerInfoSnapshot\n\tif err := sr.Decode(&lastSnapshot); err != nil {\n\t\treturn time.Time{}, fmt.Errorf(\"decoding snapshot created-at field: %s\", err)\n\t}\n\n\treturn lastSnapshot.CreatedAt, nil\n}\n\nfunc (s *Store) GenerateMinerIndexSnapshot(ctx context.Context) error {\n\tpipeline := bson.A{\n\t\tbson.M{\n\t\t\t\"$project\": bson.M{\n\t\t\t\t\"_id\":        0,\n\t\t\t\t\"created_at\": \"$$NOW\",\n\t\t\t\t\"miner_info\": \"$$ROOT\",\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"$merge\": bson.M{\n\t\t\t\t\"into\": \"minerindexhistory\",\n\t\t\t\t\"on\":   \"_id\",\n\t\t\t},\n\t\t},\n\t}\n\n\tc, err := s.idxc.Aggregate(ctx, pipeline)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"executing pipeline: %s\", err)\n\t}\n\tc.Close(ctx)\n\n\treturn nil\n}\n"
  },
  {
    "path": "api/mindexd/store/index_snapshot_test.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/stretchr/testify/require\"\n)\n\nfunc TestIndexSnapshot(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\tlast, err := s.GetLastIndexSnapshotTime(ctx)\n\trequire.NoError(t, err)\n\trequire.Equal(t, time.Time{}, last)\n\n\t// Generate some data an create an index.\n\terr = s.PersistStorageDealRecords(ctx, \"duke-1\", \"005\", testDealsSouthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-2\", \"003\", testDealsNorthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-3\", \"002\", testDealsAfrica)\n\trequire.NoError(t, err)\n\terr = s.PersistRetrievalRecords(ctx, \"duke-1\", \"005\", testRetrievalsSouthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistRetrievalRecords(ctx, \"duke-2\", \"003\", testRetrievalsNorthAmerica)\n\trequire.NoError(t, err)\n\terr = s.UpdateTextileDealsInfo(ctx)\n\trequire.NoError(t, err)\n\terr = s.UpdateTextileRetrievalsInfo(ctx)\n\trequire.NoError(t, err)\n\n\t// Generate a snapshot of the index.\n\terr = s.GenerateMinerIndexSnapshot(ctx)\n\trequire.NoError(t, err)\n\n\tlast1, err := s.GetLastIndexSnapshotTime(ctx)\n\trequire.NoError(t, err)\n\trequire.True(t, time.Now().Add(-time.Minute).Before(last1))\n\n\t// Generate a snapshot again and check last is newer\n\t// than previous.\n\terr = s.GenerateMinerIndexSnapshot(ctx)\n\trequire.NoError(t, err)\n\n\tlast2, err := s.GetLastIndexSnapshotTime(ctx)\n\trequire.NoError(t, err)\n\trequire.True(t, last1.Before(last2))\n}\n"
  },
  {
    "path": "api/mindexd/store/onchain.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nfunc (s *Store) PutFilecoinInfo(ctx context.Context, miner string, info model.FilecoinInfo) error {\n\tinfo.UpdatedAt = time.Now()\n\tfilter := bson.M{\"_id\": miner}\n\tupdate := bson.M{\"$set\": bson.M{\"filecoin\": info}}\n\topts := options.Update().SetUpsert(true)\n\t_, err := s.idxc.UpdateOne(ctx, filter, update, opts)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"put filecoin-info in collection: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc (s *Store) PutMetadataLocation(ctx context.Context, miner string, location string) error {\n\tfilter := bson.M{\"_id\": miner}\n\tupdate := bson.M{\"$set\": bson.M{\"metadata.location\": location}}\n\topts := options.Update().SetUpsert(true)\n\t_, err := s.idxc.UpdateOne(ctx, filter, update, opts)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"put metadata location: %s\", err)\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "api/mindexd/store/onchain_test.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n)\n\nfunc TestPutFilecoinInfo(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\tf0100 := model.FilecoinInfo{\n\t\tRelativePower:    0.00002,\n\t\tAskPrice:         \"1000\",\n\t\tAskVerifiedPrice: \"501\",\n\t\tMaxPieceSize:     32000,\n\t\tMinPieceSize:     12000,\n\t\tSectorSize:       11111,\n\t}\n\tf0101 := model.FilecoinInfo{\n\t\tRelativePower:    100.00002,\n\t\tAskPrice:         \"1001000\",\n\t\tAskVerifiedPrice: \"100501\",\n\t\tMaxPieceSize:     10032000,\n\t\tMinPieceSize:     10012000,\n\t\tSectorSize:       10011111,\n\t}\n\n\terr = s.PutFilecoinInfo(ctx, \"f0100\", f0100)\n\trequire.NoError(t, err)\n\terr = s.PutFilecoinInfo(ctx, \"f0101\", f0101)\n\trequire.NoError(t, err)\n\n\tmif0100, err := s.GetMinerInfo(ctx, \"f0100\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, f0100.RelativePower, mif0100.Filecoin.RelativePower)\n\trequire.Equal(t, f0100.AskPrice, mif0100.Filecoin.AskPrice)\n\trequire.Equal(t, f0100.AskVerifiedPrice, mif0100.Filecoin.AskVerifiedPrice)\n\trequire.Equal(t, f0100.MaxPieceSize, mif0100.Filecoin.MaxPieceSize)\n\trequire.Equal(t, f0100.MinPieceSize, mif0100.Filecoin.MinPieceSize)\n\trequire.Equal(t, f0100.SectorSize, mif0100.Filecoin.SectorSize)\n\trequire.False(t, mif0100.Filecoin.UpdatedAt.IsZero())\n\n\tmif0101, err := s.GetMinerInfo(ctx, \"f0101\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, f0101.RelativePower, mif0101.Filecoin.RelativePower)\n\trequire.Equal(t, f0101.AskPrice, mif0101.Filecoin.AskPrice)\n\trequire.Equal(t, f0101.AskVerifiedPrice, mif0101.Filecoin.AskVerifiedPrice)\n\trequire.Equal(t, f0101.MaxPieceSize, mif0101.Filecoin.MaxPieceSize)\n\trequire.Equal(t, f0101.MinPieceSize, mif0101.Filecoin.MinPieceSize)\n\trequire.Equal(t, f0101.SectorSize, mif0101.Filecoin.SectorSize)\n\trequire.False(t, mif0101.Filecoin.UpdatedAt.IsZero())\n}\n"
  },
  {
    "path": "api/mindexd/store/query.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nvar (\n\tErrMinerNotExists = errors.New(\"miner doesn't exists\")\n)\n\ntype QueryIndexSortField int\n\nconst (\n\tSortFieldTextileDealTotalSuccessful QueryIndexSortField = iota\n\tSortFieldTextileDealLastSuccessful\n\tSortFieldTextileRetrievalTotalSuccessful\n\tSortFieldTextileRetrievalLastSuccessful\n\tSortFieldAskPrice\n\tSortFieldVerifiedAskPrice\n\tSortFieldActiveSectors\n)\n\ntype QueryIndexFilters struct {\n\tMinerLocation string\n}\n\ntype QueryIndexSort struct {\n\tAscending     bool\n\tTextileRegion string\n\tField         QueryIndexSortField\n}\n\nfunc (s *Store) GetMinerInfo(ctx context.Context, miner string) (model.MinerInfo, error) {\n\tfilter := bson.M{\"_id\": miner}\n\tr := s.idxc.FindOne(ctx, filter)\n\tif r.Err() == mongo.ErrNoDocuments {\n\t\treturn model.MinerInfo{}, ErrMinerNotExists\n\t}\n\n\tvar mi model.MinerInfo\n\tif err := r.Decode(&mi); err != nil {\n\t\treturn model.MinerInfo{}, fmt.Errorf(\"decoding miner info: %s\", err)\n\t}\n\n\treturn mi, nil\n}\n\nfunc (s *Store) GetAllMiners(ctx context.Context) ([]model.MinerInfo, error) {\n\tr, err := s.idxc.Find(ctx, bson.M{})\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"get all miners: %s\", err)\n\t}\n\tdefer r.Close(ctx)\n\n\tvar ms []model.MinerInfo\n\tif err := r.All(ctx, &ms); err != nil {\n\t\treturn nil, fmt.Errorf(\"decoding all results: %s\", err)\n\t}\n\n\treturn ms, nil\n}\n\nfunc (s *Store) QueryIndex(ctx context.Context, filters QueryIndexFilters, sort QueryIndexSort, limit int, offset int64) ([]model.MinerInfo, error) {\n\tif limit <= 0 {\n\t\treturn nil, fmt.Errorf(\"limit should be greater than zero\")\n\t}\n\n\tqFilters, qSort, err := buildMongoFiltersAndSort(filters, sort)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"building filters and sort: %s\", err)\n\t}\n\n\topts := options.Find()\n\topts = opts.SetSort(qSort).SetCollation(&options.Collation{Locale: \"en\", NumericOrdering: true})\n\topts = opts.SetLimit(int64(limit))\n\topts = opts.SetSkip(offset)\n\tc, err := s.idxc.Find(ctx, qFilters, opts)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"executing query: %s\", err)\n\t}\n\tdefer func() {\n\t\tif err := c.Close(ctx); err != nil {\n\t\t\tlog.Errorf(\"closing query index cursor: %s\", err)\n\t\t}\n\t}()\n\tvar ms []model.MinerInfo\n\tif err := c.All(ctx, &ms); err != nil {\n\t\treturn nil, fmt.Errorf(\"decoding all results: %s\", err)\n\t}\n\n\treturn ms, nil\n}\n\nfunc buildMongoFiltersAndSort(filters QueryIndexFilters, sort QueryIndexSort) (bson.M, bson.D, error) {\n\t// Filter\n\tf := bson.M{}\n\tif filters.MinerLocation != \"\" {\n\t\tf[\"metadata.location\"] = filters.MinerLocation\n\t}\n\n\t// Sort\n\ts := bson.E{}\n\tsortVal := 1\n\tif !sort.Ascending {\n\t\tsortVal = -1\n\t}\n\n\tswitch sort.Field {\n\tcase SortFieldTextileDealTotalSuccessful:\n\t\ts = bson.E{Key: \"textile.deals_summary.total\", Value: sortVal}\n\t\tif sort.TextileRegion != \"\" {\n\t\t\ts = bson.E{Key: \"textile.regions.\" + sort.TextileRegion + \".deals.total\", Value: sortVal}\n\t\t}\n\tcase SortFieldTextileDealLastSuccessful:\n\t\ts = bson.E{Key: \"textile.deals_summary.last\", Value: sortVal}\n\t\tif sort.TextileRegion != \"\" {\n\t\t\ts = bson.E{Key: \"textile.regions.\" + sort.TextileRegion + \".deals.last\", Value: sortVal}\n\t\t}\n\tcase SortFieldTextileRetrievalTotalSuccessful:\n\t\ts = bson.E{Key: \"textile.retrievals_summary.total\", Value: sortVal}\n\t\tif sort.TextileRegion != \"\" {\n\t\t\ts = bson.E{Key: \"textile.regions.\" + sort.TextileRegion + \".retrievals.total\", Value: sortVal}\n\t\t}\n\tcase SortFieldTextileRetrievalLastSuccessful:\n\t\ts = bson.E{Key: \"textile.retrievals_summary.last\", Value: sortVal}\n\t\tif sort.TextileRegion != \"\" {\n\t\t\ts = bson.E{Key: \"textile.regions.\" + sort.TextileRegion + \".retrievals.last\", Value: sortVal}\n\t\t}\n\tcase SortFieldAskPrice:\n\t\ts = bson.E{Key: \"filecoin.ask_price\", Value: sortVal}\n\tcase SortFieldVerifiedAskPrice:\n\t\ts = bson.E{Key: \"filecoin.ask_verified_price\", Value: sortVal}\n\tcase SortFieldActiveSectors:\n\t\ts = bson.E{Key: \"filecoin.active_sectors\", Value: sortVal}\n\tdefault:\n\t\treturn nil, nil, fmt.Errorf(\"unkown sort field\")\n\t}\n\n\treturn f, bson.D{s}, nil\n}\n"
  },
  {
    "path": "api/mindexd/store/query_test.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/require\"\n)\n\nfunc TestQuery(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\t// Insert some deal-records.\n\terr = s.PersistStorageDealRecords(ctx, \"duke-1\", \"005\", testDealsSouthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-2\", \"003\", testDealsNorthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-3\", \"002\", testDealsAfrica)\n\trequire.NoError(t, err)\n\t// Insert some retrieval records.\n\terr = s.PersistRetrievalRecords(ctx, \"duke-1\", \"005\", testRetrievalsSouthAmerica)\n\trequire.NoError(t, err)\n\terr = s.PersistRetrievalRecords(ctx, \"duke-2\", \"003\", testRetrievalsNorthAmerica)\n\trequire.NoError(t, err)\n\n\t// Regenerate indexes.\n\terr = s.UpdateTextileDealsInfo(ctx)\n\trequire.NoError(t, err)\n\terr = s.UpdateTextileRetrievalsInfo(ctx)\n\trequire.NoError(t, err)\n\n\tt.Run(\"paging\", testPaging(s))\n\tt.Run(\"sort\", testSort(s))\n\tt.Run(\"deals/LastSuccess\", testDealLastSuccess(s))\n\tt.Run(\"deals/TotalSuccess\", testDealTotalSuccess(s))\n}\n\nfunc testPaging(s *Store) func(t *testing.T) {\n\treturn func(t *testing.T) {\n\t\tt.Parallel()\n\t\tctx := context.Background()\n\n\t\t// Get all results\n\t\tres, err := s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{}, 2, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, res, 2)\n\n\t\t// Get one result less since offset is 1\n\t\tres2, err := s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{}, 2, 1)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, res2, 1)\n\n\t\t// Check that offested query is one-shifted from non offested.\n\t\trequire.Equal(t, res[1].MinerID, res2[0].MinerID)\n\n\t\t// Try smaller limit than all results.\n\t\tres, err = s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{}, 1, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, res, 1)\n\n\t\t// Try offset bigger than result, which should be empty.\n\t\tres, err = s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{}, 1, 3)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, res, 0)\n\n\t\t// Don't accept limit = 0.\n\t\tres, err = s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{}, 0, 0)\n\t\trequire.Error(t, err)\n\t}\n}\n\nfunc testSort(s *Store) func(t *testing.T) {\n\treturn func(t *testing.T) {\n\t\tt.Parallel()\n\t\tctx := context.Background()\n\n\t\tres, err := s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{}, 10, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, res, 2)\n\n\t\tres2, err := s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{Ascending: true}, 10, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, res, 2)\n\n\t\trequire.Equal(t, res[0].MinerID, res2[1].MinerID)\n\t\trequire.Equal(t, res[1].MinerID, res2[0].MinerID)\n\t}\n}\n\nfunc testDealLastSuccess(s *Store) func(t *testing.T) {\n\treturn func(t *testing.T) {\n\t\tt.Parallel()\n\t\tctx := context.Background()\n\n\t\tres, err := s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{Ascending: false, Field: SortFieldTextileDealLastSuccessful}, 2, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.True(t, res[0].Textile.DealsSummary.Last.After(res[1].Textile.DealsSummary.Last))\n\n\t\tres, err = s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{Ascending: true, Field: SortFieldTextileDealLastSuccessful}, 2, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.True(t, res[0].Textile.DealsSummary.Last.Before(res[1].Textile.DealsSummary.Last))\n\n\t}\n}\n\nfunc testDealTotalSuccess(s *Store) func(t *testing.T) {\n\treturn func(t *testing.T) {\n\t\tt.Parallel()\n\t\tctx := context.Background()\n\n\t\tres, err := s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{Ascending: false, Field: SortFieldTextileDealTotalSuccessful}, 2, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.Greater(t, res[0].Textile.DealsSummary.Total, res[1].Textile.DealsSummary.Total)\n\n\t\tres, err = s.QueryIndex(ctx, QueryIndexFilters{}, QueryIndexSort{Ascending: true, Field: SortFieldTextileDealTotalSuccessful}, 2, 0)\n\t\trequire.NoError(t, err)\n\t\trequire.Less(t, res[0].Textile.DealsSummary.Total, res[1].Textile.DealsSummary.Total)\n\t}\n}\n"
  },
  {
    "path": "api/mindexd/store/records.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n\t\"golang.org/x/text/language\"\n)\n\nvar (\n\terrRecordNotFound = errors.New(\"record not found\")\n)\n\n// GetPowergateTargets returns the external Powergates that will be\n// polled to import storage-deal and retrieval records.\nfunc (s *Store) GetPowergateTargets(ctx context.Context) ([]model.PowTarget, error) {\n\tc, err := s.ptc.Find(ctx, bson.M{})\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"cursor for powergate targets: %s\", err)\n\t}\n\tdefer c.Close(ctx)\n\n\tvar res []model.PowTarget\n\tif err := c.All(ctx, &res); err != nil {\n\t\treturn nil, fmt.Errorf(\"decoding powergate targets:  %s\", err)\n\t}\n\n\treturn res, nil\n}\n\n// GetLastStorageDealRecordUpdatedAt returns the latests updated-at timestamp of\n// a particular external Powergate. This might serve to ask the external powergate,\n// for newer records since this timestamp.\nfunc (s *Store) GetLastStorageDealRecordUpdatedAt(ctx context.Context, powName string) (time.Time, error) {\n\tfilter := bson.M{\"pow_name\": powName}\n\topts := options.Find()\n\topts = opts.SetSort(bson.D{{Key: \"pow_storage_deal_record.updated_at\", Value: -1}})\n\topts = opts.SetLimit(1)\n\topts = opts.SetProjection(bson.M{\"pow_storage_deal_record.updated_at\": 1})\n\tc, err := s.sdrc.Find(ctx, filter, opts)\n\tif err != nil {\n\t\treturn time.Time{}, fmt.Errorf(\"executing find: %s\", err)\n\t}\n\tdefer func() {\n\t\tif err := c.Close(ctx); err != nil {\n\t\t\tlog.Errorf(\"close last storage deal record updatedat cursor: %s\", err)\n\t\t}\n\t}()\n\n\tvar res []model.StorageDealRecord\n\tif err := c.All(ctx, &res); err != nil {\n\t\treturn time.Time{}, fmt.Errorf(\"fetching find result: %s\", err)\n\t}\n\tif len(res) == 0 {\n\t\t// If we don't have any records, just return a very old lastUpdatedAt\n\t\t// to let it start from the beginning.\n\t\treturn time.Time{}, nil\n\t}\n\n\treturn (res)[0].PowStorageDealRecord.UpdatedAt, nil\n}\n\n// GetLastRetrievalRecordUpdatedAt returns the latests updated-at timestamp of\n// a particular external Powergate. This might serve to ask the external powergate,\n// for newer records since this timestamp.\nfunc (s *Store) GetLastRetrievalRecordUpdatedAt(ctx context.Context, powName string) (time.Time, error) {\n\tfilter := bson.M{\"pow_name\": powName}\n\topts := options.Find()\n\topts = opts.SetSort(bson.D{{Key: \"pow_retrieval_record.updated_at\", Value: -1}})\n\topts = opts.SetLimit(1)\n\topts = opts.SetProjection(bson.M{\"pow_retrieval_record.updated_at\": 1})\n\tc, err := s.rrc.Find(ctx, filter, opts)\n\tif err != nil {\n\t\treturn time.Time{}, fmt.Errorf(\"executing find: %s\", err)\n\t}\n\tdefer func() {\n\t\tif err := c.Close(ctx); err != nil {\n\t\t\tlog.Errorf(\"close last retrieval record updatedat cursor: %s\", err)\n\t\t}\n\t}()\n\n\tres := make([]model.RetrievalRecord, 0, 1)\n\tif err := c.All(ctx, &res); err != nil {\n\t\treturn time.Time{}, fmt.Errorf(\"fetching find result: %s\", err)\n\t}\n\tif len(res) == 0 {\n\t\t// If we don't have any records, just return a very old lastUpdatedAt\n\t\t// to let it start from the beginning.\n\t\treturn time.Time{}, nil\n\t}\n\n\treturn (res)[0].PowRetrievalRecord.UpdatedAt, nil\n}\n\n// PersistStorageDealRecords merge a set of storage-deal records for an external powergate.\n// The action has upsert semantics, so if the record already exists, it's updated.\nfunc (s *Store) PersistStorageDealRecords(ctx context.Context, powName, region string, psrs []model.PowStorageDealRecord) error {\n\tif powName == \"\" {\n\t\treturn fmt.Errorf(\"powergate name is empty\")\n\t}\n\tif _, err := language.ParseRegion(region); err != nil {\n\t\treturn fmt.Errorf(\"region %s isn't a valid M49 code: %s\", region, err)\n\t}\n\n\tnow := time.Now()\n\twms := make([]mongo.WriteModel, len(psrs))\n\tfor i, psr := range psrs {\n\t\tsr := model.StorageDealRecord{\n\t\t\tLastUpdatedAt:        now,\n\t\t\tPowName:              powName,\n\t\t\tRegion:               region,\n\t\t\tPowStorageDealRecord: psr,\n\t\t}\n\t\tuwm := mongo.NewUpdateOneModel()\n\t\tuwm = uwm.SetFilter(bson.D{{Key: \"_id\", Value: psr.DealInfo.ProposalCid}})\n\t\tuwm = uwm.SetUpdate(bson.M{\"$setOnInsert\": bson.M{\"_id\": psr.DealInfo.ProposalCid}, \"$set\": sr})\n\t\tuwm = uwm.SetUpsert(true)\n\t\twms[i] = uwm\n\t}\n\n\tbr, err := s.sdrc.BulkWrite(ctx, wms, options.BulkWrite().SetOrdered(false))\n\tif err != nil {\n\t\treturn fmt.Errorf(\"doing bulk write: %s\", err)\n\t}\n\tif br.UpsertedCount+br.ModifiedCount != int64(len(psrs)) {\n\t\treturn fmt.Errorf(\"bulk write upserted %d and should be %d\", br.UpsertedCount, len(psrs))\n\t}\n\n\treturn nil\n}\n\n// PersistRetrievalRecords merge a set of retrieval records for an external powergate.\n// The action has upsert semantics, so if the record already exists, it's updated.\nfunc (s *Store) PersistRetrievalRecords(ctx context.Context, powName, region string, prrs []model.PowRetrievalRecord) error {\n\tif powName == \"\" {\n\t\treturn fmt.Errorf(\"powergate name is empty\")\n\t}\n\tif _, err := language.ParseRegion(region); err != nil {\n\t\treturn fmt.Errorf(\"region %s isn't a valid M49 code: %s\", region, err)\n\t}\n\n\tnow := time.Now()\n\twms := make([]mongo.WriteModel, len(prrs))\n\tfor i, prr := range prrs {\n\t\trr := model.RetrievalRecord{\n\t\t\tLastUpdatedAt:      now,\n\t\t\tPowName:            powName,\n\t\t\tRegion:             region,\n\t\t\tPowRetrievalRecord: prr,\n\t\t}\n\t\tuwm := mongo.NewUpdateOneModel()\n\t\tuwm = uwm.SetFilter(bson.D{{Key: \"_id\", Value: prr.ID}})\n\t\tuwm = uwm.SetUpdate(bson.M{\"$setOnInsert\": bson.M{\"_id\": prr.ID}, \"$set\": rr})\n\t\tuwm = uwm.SetUpsert(true)\n\t\twms[i] = uwm\n\t}\n\n\tbr, err := s.rrc.BulkWrite(ctx, wms, options.BulkWrite().SetOrdered(false))\n\tif err != nil {\n\t\treturn fmt.Errorf(\"doing bulk write: %s\", err)\n\t}\n\tif br.UpsertedCount+br.ModifiedCount != int64(len(prrs)) {\n\t\treturn fmt.Errorf(\"bulk write upserted %d and should be %d\", br.UpsertedCount, len(prrs))\n\t}\n\n\treturn nil\n}\n\nfunc (s *Store) getStorageDealRecord(ctx context.Context, ID string) (model.StorageDealRecord, error) {\n\tfilter := bson.M{\"_id\": ID}\n\tsr := s.sdrc.FindOne(ctx, filter)\n\tif sr.Err() == mongo.ErrNoDocuments {\n\t\treturn model.StorageDealRecord{}, errRecordNotFound\n\t}\n\tif sr.Err() != nil {\n\t\treturn model.StorageDealRecord{}, fmt.Errorf(\"get storage record: %s\", sr.Err())\n\t}\n\n\tvar sdr model.StorageDealRecord\n\tif err := sr.Decode(&sdr); err != nil {\n\t\treturn model.StorageDealRecord{}, fmt.Errorf(\"decoding storage record: %s\", err)\n\t}\n\n\treturn sdr, nil\n}\n\nfunc (s *Store) getRetrievalRecord(ctx context.Context, ID string) (model.RetrievalRecord, error) {\n\tfilter := bson.M{\"_id\": ID}\n\tsr := s.rrc.FindOne(ctx, filter)\n\tif sr.Err() == mongo.ErrNoDocuments {\n\t\treturn model.RetrievalRecord{}, errRecordNotFound\n\t}\n\tif sr.Err() != nil {\n\t\treturn model.RetrievalRecord{}, fmt.Errorf(\"get retrieval record: %s\", sr.Err())\n\t}\n\n\tvar rr model.RetrievalRecord\n\tif err := sr.Decode(&rr); err != nil {\n\t\treturn model.RetrievalRecord{}, fmt.Errorf(\"decoding retrieval record: %s\", err)\n\t}\n\n\treturn rr, nil\n}\n"
  },
  {
    "path": "api/mindexd/store/records_test.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"os\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-ds-mongo/test\"\n\t\"github.com/textileio/textile/v2/api/mindexd/model\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcls := test.StartMongoDB()\n\tret := m.Run()\n\tcls()\n\tos.Exit(ret)\n}\n\nfunc TestPersistStorageDealRecord(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\terr = s.PersistStorageDealRecords(ctx, \"duke-1\", \"005\", testStorageDealRecords)\n\trequire.NoError(t, err)\n\n\ttarget := testStorageDealRecords[0]\n\toriginal, err := s.getStorageDealRecord(ctx, target.DealInfo.ProposalCid)\n\trequire.NoError(t, err)\n\trequire.Equal(t, target.DealInfo.ProposalCid, original.ID)\n\trequire.Equal(t, \"duke-1\", original.PowName)\n\trequire.False(t, original.LastUpdatedAt.IsZero())\n\n\tsdr := target\n\tsdr.Address = \"Addr999\"\n\tsdr.DealInfo.StateId = 99\n\tsdr.UpdatedAt = time.Unix(99999, 0)\n\terr = s.PersistStorageDealRecords(ctx, \"duke-1\", \"005\", []model.PowStorageDealRecord{sdr})\n\trequire.NoError(t, err)\n\n\tmodified, err := s.getStorageDealRecord(ctx, sdr.DealInfo.ProposalCid)\n\trequire.NoError(t, err)\n\trequire.Equal(t, original.ID, modified.ID)\n\trequire.Equal(t, original.PowName, modified.PowName)\n\trequire.True(t, modified.LastUpdatedAt.After(original.LastUpdatedAt))\n\trequire.Equal(t, sdr.Address, modified.PowStorageDealRecord.Address)\n\trequire.Equal(t, sdr.DealInfo.StateId, modified.PowStorageDealRecord.DealInfo.StateId)\n\trequire.Equal(t, sdr.UpdatedAt.UTC(), modified.PowStorageDealRecord.UpdatedAt.UTC())\n}\n\nfunc TestPersistRetrievalRecord(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\terr = s.PersistRetrievalRecords(ctx, \"duke-1\", \"005\", testRetrievalRecords)\n\trequire.NoError(t, err)\n\n\ttarget := testRetrievalRecords[0]\n\toriginal, err := s.getRetrievalRecord(ctx, target.ID)\n\trequire.NoError(t, err)\n\trequire.Equal(t, target.ID, original.ID)\n\trequire.Equal(t, \"duke-1\", original.PowName)\n\trequire.False(t, original.LastUpdatedAt.IsZero())\n\n\trr := target\n\trr.ErrMsg = \"Err999\"\n\trr.DataTransferEnd = time.Unix(999, 0)\n\trr.DataTransferStart = time.Unix(888, 0)\n\trr.UpdatedAt = time.Unix(99999, 0)\n\terr = s.PersistRetrievalRecords(ctx, \"duke-1\", \"005\", []model.PowRetrievalRecord{rr})\n\trequire.NoError(t, err)\n\n\tmodified, err := s.getRetrievalRecord(ctx, target.ID)\n\trequire.NoError(t, err)\n\trequire.Equal(t, original.ID, modified.ID)\n\trequire.Equal(t, original.PowName, modified.PowName)\n\trequire.Equal(t, original.Region, modified.Region)\n\trequire.True(t, modified.LastUpdatedAt.After(original.LastUpdatedAt))\n\trequire.Equal(t, rr.ErrMsg, modified.PowRetrievalRecord.ErrMsg)\n\trequire.Equal(t, rr.DataTransferEnd.UTC(), modified.PowRetrievalRecord.DataTransferEnd.UTC())\n\trequire.Equal(t, rr.DataTransferStart.UTC(), modified.PowRetrievalRecord.DataTransferStart.UTC())\n\trequire.Equal(t, rr.UpdatedAt.UTC(), modified.PowRetrievalRecord.UpdatedAt.UTC())\n}\n\nfunc TestGetLastUpdatedAt(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\ts, err := New(db)\n\trequire.NoError(t, err)\n\n\t// Check non-existant last updated at behavior.\n\tuat, err := s.GetLastStorageDealRecordUpdatedAt(ctx, \"none\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, time.Time{}.UTC(), uat.UTC())\n\tuat, err = s.GetLastRetrievalRecordUpdatedAt(ctx, \"none\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, time.Time{}.UTC(), uat.UTC())\n\n\t// Insert some records.\n\terr = s.PersistStorageDealRecords(ctx, \"duke-1\", \"005\", testStorageDealRecords)\n\trequire.NoError(t, err)\n\terr = s.PersistRetrievalRecords(ctx, \"duke-1\", \"005\", testRetrievalRecords)\n\trequire.NoError(t, err)\n\n\t// Check non-existant last updated at behavior.\n\tuat, err = s.GetLastStorageDealRecordUpdatedAt(ctx, \"duke-1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, testStorageDealRecords[1].UpdatedAt.UTC(), uat.UTC())\n\tuat, err = s.GetLastRetrievalRecordUpdatedAt(ctx, \"duke-1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, testRetrievalRecords[1].UpdatedAt.UTC(), uat.UTC())\n}\n\nfunc setup(t *testing.T, ctx context.Context) *mongo.Database {\n\tclient, err := mongo.Connect(ctx, options.Client().ApplyURI(test.GetMongoUri()))\n\trequire.NoError(t, err)\n\tdb := client.Database(\"test_mindex\")\n\t_ = db.Drop(ctx)\n\tdb = client.Database(\"test_mindex\")\n\tt.Cleanup(func() {\n\t\terr := db.Drop(ctx)\n\t\trequire.NoError(t, err)\n\t})\n\treturn db\n}\n\nvar (\n\ttestStorageDealRecords = []model.PowStorageDealRecord{\n\t\t{\n\t\t\tRootCid: \"StorageRootCid1\",\n\t\t\tAddress: \"Addr1\",\n\t\t\tPending: true,\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid:     \"SD1\",\n\t\t\t\tStateId:         1,\n\t\t\t\tStateName:       \"StateName1\",\n\t\t\t\tMiner:           \"f0100\",\n\t\t\t\tPieceCid:        \"StoragePieceCid1\",\n\t\t\t\tSize:            1000,\n\t\t\t\tPricePerEpoch:   1001,\n\t\t\t\tStartEpoch:      3000,\n\t\t\t\tDuration:        23,\n\t\t\t\tDealId:          10001,\n\t\t\t\tActivationEpoch: 499,\n\t\t\t\tMessage:         \"msg\",\n\t\t\t},\n\t\t\tTransferSize:      1000,\n\t\t\tDataTransferStart: time.Unix(100, 0),\n\t\t\tDataTransferEnd:   time.Unix(102, 0),\n\t\t\tSealingStart:      time.Unix(200, 0),\n\t\t\tSealingEnd:        time.Unix(204, 0),\n\t\t\tErrMsg:            \"err msg\",\n\t\t\tCreatedAt:         80,\n\t\t\tUpdatedAt:         time.Unix(300, 0),\n\t\t},\n\t\t{\n\t\t\tRootCid: \"StorageRootCid2\",\n\t\t\tAddress: \"Addr2\",\n\t\t\tPending: true,\n\t\t\tDealInfo: model.PowStorageDealRecordDealInfo{\n\t\t\t\tProposalCid:     \"SD2\",\n\t\t\t\tStateId:         1,\n\t\t\t\tStateName:       \"StateName1\",\n\t\t\t\tMiner:           \"f0100\",\n\t\t\t\tPieceCid:        \"StoragePieceCid2\",\n\t\t\t\tSize:            1000,\n\t\t\t\tPricePerEpoch:   1001,\n\t\t\t\tStartEpoch:      3000,\n\t\t\t\tDuration:        23,\n\t\t\t\tDealId:          10001,\n\t\t\t\tActivationEpoch: 499,\n\t\t\t\tMessage:         \"msg\",\n\t\t\t},\n\t\t\tTransferSize:      1000,\n\t\t\tDataTransferStart: time.Unix(100, 0),\n\t\t\tDataTransferEnd:   time.Unix(102, 0),\n\t\t\tSealingStart:      time.Unix(200, 0),\n\t\t\tSealingEnd:        time.Unix(204, 0),\n\t\t\tErrMsg:            \"err msg\",\n\t\t\tCreatedAt:         81,\n\t\t\tUpdatedAt:         time.Unix(305, 0),\n\t\t},\n\t}\n\n\ttestRetrievalRecords = []model.PowRetrievalRecord{\n\t\t{\n\t\t\tID:                \"RID1\",\n\t\t\tAddress:           \"Addr1\",\n\t\t\tDataTransferStart: time.Unix(1003, 0),\n\t\t\tDataTransferEnd:   time.Unix(1004, 0),\n\t\t\tErrMsg:            \"err msg 2\",\n\t\t\tCreatedAt:         300,\n\t\t\tUpdatedAt:         time.Unix(502, 0),\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tRootCid:  \"RetrievalRootCid1\",\n\t\t\t\tSize:     3000,\n\t\t\t\tMinPrice: 329,\n\t\t\t\tMiner:    \"f01002\",\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tID:                \"RID2\",\n\t\t\tAddress:           \"Addr1\",\n\t\t\tDataTransferStart: time.Unix(1003, 0),\n\t\t\tDataTransferEnd:   time.Unix(1004, 0),\n\t\t\tErrMsg:            \"err msg 2\",\n\t\t\tCreatedAt:         303,\n\t\t\tUpdatedAt:         time.Unix(505, 0),\n\t\t\tDealInfo: model.PowRetrievalRecordDealInfo{\n\t\t\t\tRootCid:  \"RetrievalRootCid1\",\n\t\t\t\tSize:     3000,\n\t\t\t\tMinPrice: 329,\n\t\t\t\tMiner:    \"f01003\",\n\t\t\t},\n\t\t},\n\t}\n)\n"
  },
  {
    "path": "api/mindexd/store/store.go",
    "content": "package store\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"time\"\n\n\tlogger \"github.com/ipfs/go-log/v2\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\nvar (\n\tlog = logger.Logger(\"store\")\n)\n\ntype Store struct {\n\tsdrc  *mongo.Collection\n\trrc   *mongo.Collection\n\tidxc  *mongo.Collection\n\thidxc *mongo.Collection\n\tptc   *mongo.Collection\n}\n\nfunc New(db *mongo.Database) (*Store, error) {\n\ts := &Store{\n\t\tsdrc:  db.Collection(\"storagedealrecords\"),\n\t\trrc:   db.Collection(\"retrievalrecords\"),\n\t\tidxc:  db.Collection(\"minerindex\"),\n\t\thidxc: db.Collection(\"minerindexhistory\"),\n\t\tptc:   db.Collection(\"powtargets\"),\n\t}\n\tif err := s.ensureIndexes(); err != nil {\n\t\treturn nil, fmt.Errorf(\"ensuring mongodb indexes: %s\", err)\n\t}\n\n\treturn s, nil\n}\n\nfunc (s *Store) ensureIndexes() error {\n\t// StorageDealRecords indexes\n\tctx, cancel := context.WithTimeout(context.Background(), time.Minute)\n\tdefer cancel()\n\t_, err := s.sdrc.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{\n\t\t\t\tbson.E{Key: \"pow_name\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.updated_at\", Value: -1},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.deal_info.miner\", Value: 1},\n\t\t\t\tbson.E{Key: \"region\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.pending\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.failed\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.updated_at\", Value: -1},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.pending\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.deal_info.miner\", Value: 1},\n\t\t\t\tbson.E{Key: \"region\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.failed\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_storage_deal_record.updated_at\", Value: -1},\n\t\t\t},\n\t\t},\n\t})\n\tif err != nil {\n\t\treturn fmt.Errorf(\"creating storage-deal records index: %s\", err)\n\t}\n\n\t// RetrievalRecords indexes\n\t_, err = s.rrc.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{\n\t\t\t\tbson.E{Key: \"pow_name\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_retrieval_record.updated_at\", Value: -1},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{\n\t\t\t\tbson.E{Key: \"pow_retrieval_record.deal_info.miner\", Value: 1},\n\t\t\t\tbson.E{Key: \"region\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_retrieval_record.failed\", Value: 1},\n\t\t\t\tbson.E{Key: \"pow_retrieval_record.updated_at\", Value: -1},\n\t\t\t},\n\t\t},\n\t})\n\tif err != nil {\n\t\treturn fmt.Errorf(\"creating retrieval records index: %s\", err)\n\t}\n\n\t// Index indexes\n\t_, err = s.idxc.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"metadata.location\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"filecoin.ask_price\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"filecoin.ask_verified_price\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"filecoin.active_sectors\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.deals_summary.total\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.deals_summary.last\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.retrievals_summary.total\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.retrievals_summary.last\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.region.021.deals.total\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.region.021.deals.last\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.region.021.retrievals.total\", Value: -1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{bson.E{Key: \"textile.region.021.retrievals.last\", Value: -1}},\n\t\t},\n\t})\n\tif err != nil {\n\t\treturn fmt.Errorf(\"creating retrieval records index: %s\", err)\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "api/usersd/client/client.go",
    "content": "package client\n\nimport (\n\t\"context\"\n\t\"encoding/base64\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io\"\n\t\"time\"\n\n\t\"github.com/gogo/status\"\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tpb \"github.com/textileio/textile/v2/api/usersd/pb\"\n\t\"github.com/textileio/textile/v2/threaddb\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n)\n\n// Client provides the client api.\ntype Client struct {\n\tc    pb.APIServiceClient\n\tconn *grpc.ClientConn\n}\n\n// NewClient starts the client.\nfunc NewClient(target string, opts ...grpc.DialOption) (*Client, error) {\n\tconn, err := grpc.Dial(target, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Client{\n\t\tc:    pb.NewAPIServiceClient(conn),\n\t\tconn: conn,\n\t}, nil\n}\n\n// Close closes the client's grpc connection and cancels any active requests.\nfunc (c *Client) Close() error {\n\treturn c.conn.Close()\n}\n\n// GetThread returns a thread by name.\nfunc (c *Client) GetThread(ctx context.Context, name string) (*pb.GetThreadResponse, error) {\n\treturn c.c.GetThread(ctx, &pb.GetThreadRequest{\n\t\tName: name,\n\t})\n}\n\n// ListThreads returns a list of threads.\n// Threads can be created using the threads or threads network client.\nfunc (c *Client) ListThreads(ctx context.Context) (*pb.ListThreadsResponse, error) {\n\treturn c.c.ListThreads(ctx, &pb.ListThreadsRequest{})\n}\n\n// SetupMailbox creates inbox and sentbox threads needed user mail.\nfunc (c *Client) SetupMailbox(ctx context.Context) (mailbox thread.ID, err error) {\n\tres, err := c.c.SetupMailbox(ctx, &pb.SetupMailboxRequest{})\n\tif err != nil {\n\t\treturn\n\t}\n\treturn thread.Cast(res.MailboxId)\n}\n\n// Message is the client side representation of a mailbox message.\n// Signature corresponds to the encrypted body.\n// Use message.Open to get the plaintext body.\ntype Message struct {\n\tID        string        `json:\"_id\"`\n\tFrom      thread.PubKey `json:\"from\"`\n\tTo        thread.PubKey `json:\"to\"`\n\tBody      []byte        `json:\"body\"`\n\tSignature []byte        `json:\"signature\"`\n\tCreatedAt time.Time     `json:\"created_at\"`\n\tReadAt    time.Time     `json:\"read_at,omitempty\"`\n}\n\n// Open decrypts the message body with identity.\nfunc (m Message) Open(ctx context.Context, id thread.Identity) ([]byte, error) {\n\treturn id.Decrypt(ctx, m.Body)\n}\n\n// IsRead returns whether or not the message has been read.\nfunc (m Message) IsRead() bool {\n\treturn !m.ReadAt.IsZero()\n}\n\n// UnmarshalInstance unmarshals the message from its ThreadDB instance data.\n// This will return an error if the message signature fails verification.\nfunc (m Message) UnmarshalInstance(data []byte) error {\n\t// InboxMessage works for both inbox and sentbox messages (it contains a superset of SentboxMessage fields)\n\tvar tm threaddb.InboxMessage\n\tif err := json.Unmarshal(data, &tm); err != nil {\n\t\treturn err\n\t}\n\tbody, err := base64.StdEncoding.DecodeString(tm.Body)\n\tif err != nil {\n\t\treturn err\n\t}\n\tsig, err := base64.StdEncoding.DecodeString(tm.Signature)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfrom := &thread.Libp2pPubKey{}\n\tif err := from.UnmarshalString(tm.From); err != nil {\n\t\treturn fmt.Errorf(\"from public key is invalid\")\n\t}\n\tok, err := from.Verify(body, sig)\n\tif !ok || err != nil {\n\t\treturn fmt.Errorf(\"bad message signature\")\n\t}\n\tto := &thread.Libp2pPubKey{}\n\tif err := to.UnmarshalString(tm.To); err != nil {\n\t\treturn fmt.Errorf(\"to public key is invalid\")\n\t}\n\treadAt := time.Time{}\n\tif tm.ReadAt > 0 {\n\t\treadAt = time.Unix(0, tm.ReadAt)\n\t}\n\tm.ID = tm.ID\n\tm.From = from\n\tm.To = to\n\tm.Body = body\n\tm.Signature = sig\n\tm.CreatedAt = time.Unix(0, tm.CreatedAt)\n\tm.ReadAt = readAt\n\treturn nil\n}\n\n// SendMessage sends the message body to a recipient.\nfunc (c *Client) SendMessage(ctx context.Context, from thread.Identity, to thread.PubKey, body []byte) (msg Message, err error) {\n\tfromBody, err := from.GetPublic().Encrypt(body)\n\tif err != nil {\n\t\treturn msg, err\n\t}\n\tfromSig, err := from.Sign(ctx, fromBody)\n\tif err != nil {\n\t\treturn msg, err\n\t}\n\ttoBody, err := to.Encrypt(body)\n\tif err != nil {\n\t\treturn msg, err\n\t}\n\ttoSig, err := from.Sign(ctx, toBody)\n\tif err != nil {\n\t\treturn msg, err\n\t}\n\tres, err := c.c.SendMessage(ctx, &pb.SendMessageRequest{\n\t\tTo:            to.String(),\n\t\tToBody:        toBody,\n\t\tToSignature:   toSig,\n\t\tFromBody:      fromBody,\n\t\tFromSignature: fromSig,\n\t})\n\tif err != nil {\n\t\treturn msg, err\n\t}\n\treturn Message{\n\t\tID:        res.Id,\n\t\tFrom:      from.GetPublic(),\n\t\tTo:        to,\n\t\tBody:      fromBody,\n\t\tSignature: fromSig,\n\t\tCreatedAt: time.Unix(0, res.CreatedAt),\n\t}, nil\n}\n\n// ListInboxMessages lists messages from the inbox.\n// Use options to paginate with seek and limit and filter by read status.\nfunc (c *Client) ListInboxMessages(ctx context.Context, opts ...ListOption) ([]Message, error) {\n\targs := &listOptions{\n\t\tstatus: All,\n\t}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tvar s pb.ListInboxMessagesRequest_Status\n\tswitch args.status {\n\tcase All:\n\t\ts = pb.ListInboxMessagesRequest_STATUS_ALL\n\tcase Read:\n\t\ts = pb.ListInboxMessagesRequest_STATUS_READ\n\tcase Unread:\n\t\ts = pb.ListInboxMessagesRequest_STATUS_UNREAD\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unknown status: %v\", args.status)\n\t}\n\tres, err := c.c.ListInboxMessages(ctx, &pb.ListInboxMessagesRequest{\n\t\tSeek:      args.seek,\n\t\tLimit:     int64(args.limit),\n\t\tAscending: args.ascending,\n\t\tStatus:    s,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn handleMessageList(res.Messages)\n}\n\n// ListSentboxMessages lists messages from the sentbox.\n// Use options to paginate with seek and limit.\nfunc (c *Client) ListSentboxMessages(ctx context.Context, opts ...ListOption) ([]Message, error) {\n\targs := &listOptions{\n\t\tstatus: All,\n\t}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tres, err := c.c.ListSentboxMessages(ctx, &pb.ListSentboxMessagesRequest{\n\t\tSeek:  args.seek,\n\t\tLimit: int64(args.limit),\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn handleMessageList(res.Messages)\n}\n\nfunc handleMessageList(list []*pb.Message) ([]Message, error) {\n\tmsgs := make([]Message, len(list))\n\tvar err error\n\tfor i, m := range list {\n\t\tmsgs[i], err = messageFromPb(m)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn msgs, nil\n}\n\nfunc messageFromPb(m *pb.Message) (msg Message, err error) {\n\tfrom := &thread.Libp2pPubKey{}\n\tif err := from.UnmarshalString(m.From); err != nil {\n\t\treturn msg, fmt.Errorf(\"from public key is invalid\")\n\t}\n\tok, err := from.Verify(m.Body, m.Signature)\n\tif !ok || err != nil {\n\t\treturn msg, fmt.Errorf(\"bad message signature\")\n\t}\n\tto := &thread.Libp2pPubKey{}\n\tif err := to.UnmarshalString(m.To); err != nil {\n\t\treturn msg, fmt.Errorf(\"to public key is invalid\")\n\t}\n\treadAt := time.Time{}\n\tif m.ReadAt > 0 {\n\t\treadAt = time.Unix(0, m.ReadAt)\n\t}\n\treturn Message{\n\t\tID:        m.Id,\n\t\tFrom:      from,\n\t\tTo:        to,\n\t\tBody:      m.Body,\n\t\tSignature: m.Signature,\n\t\tCreatedAt: time.Unix(0, m.CreatedAt),\n\t\tReadAt:    readAt,\n\t}, nil\n}\n\n// ReadInboxMessage marks a message as read by ID.\nfunc (c *Client) ReadInboxMessage(ctx context.Context, id string) error {\n\t_, err := c.c.ReadInboxMessage(ctx, &pb.ReadInboxMessageRequest{\n\t\tId: id,\n\t})\n\treturn err\n}\n\n// DeleteInboxMessage deletes an inbox message by ID.\nfunc (c *Client) DeleteInboxMessage(ctx context.Context, id string) error {\n\t_, err := c.c.DeleteInboxMessage(ctx, &pb.DeleteInboxMessageRequest{\n\t\tId: id,\n\t})\n\treturn err\n}\n\n// DeleteSentboxMessage deletes a sent message by ID.\nfunc (c *Client) DeleteSentboxMessage(ctx context.Context, id string) error {\n\t_, err := c.c.DeleteSentboxMessage(ctx, &pb.DeleteSentboxMessageRequest{\n\t\tId: id,\n\t})\n\treturn err\n}\n\n// GetUsage returns current billing and usage information.\nfunc (c *Client) GetUsage(ctx context.Context, opts ...UsageOption) (*pb.GetUsageResponse, error) {\n\targs := &usageOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\treturn c.c.GetUsage(ctx, &pb.GetUsageRequest{\n\t\tKey: args.key,\n\t})\n}\n\n// ArchivesLs list all imported archives.\nfunc (c *Client) ArchivesLs(ctx context.Context) (*pb.ArchivesLsResponse, error) {\n\treq := &pb.ArchivesLsRequest{}\n\treturn c.c.ArchivesLs(ctx, req)\n}\n\n// ArchivesImport imports deals information for a Cid.\nfunc (c *Client) ArchivesImport(ctx context.Context, dataCid cid.Cid, dealIDs []uint64) error {\n\treq := &pb.ArchivesImportRequest{\n\t\tCid:     dataCid.String(),\n\t\tDealIds: dealIDs,\n\t}\n\t_, err := c.c.ArchivesImport(ctx, req)\n\treturn err\n}\n\n// ArchiveRetrievalLs lists existing retrievals.\nfunc (c *Client) ArchiveRetrievalLs(ctx context.Context) (*pb.ArchiveRetrievalLsResponse, error) {\n\treq := &pb.ArchiveRetrievalLsRequest{}\n\treturn c.c.ArchiveRetrievalLs(ctx, req)\n}\n\n// ArchiveRetrievalLogs returns the existing logs from the retrieval.\nfunc (c *Client) ArchiveRetrievalLogs(ctx context.Context, id string, ch chan<- string) error {\n\tctx, cancel := context.WithCancel(ctx)\n\tdefer cancel()\n\tstream, err := c.c.ArchiveRetrievalLogs(ctx, &pb.ArchiveRetrievalLogsRequest{Id: id})\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor {\n\t\treply, err := stream.Recv()\n\t\tif err == io.EOF || status.Code(err) == codes.Canceled {\n\t\t\tbreak\n\t\t}\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tch <- reply.Msg\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "api/usersd/client/client_test.go",
    "content": "package client_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"os\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\ttc \"github.com/textileio/go-threads/api/client\"\n\tcorenet \"github.com/textileio/go-threads/core/net\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tnc \"github.com/textileio/go-threads/net/api/client\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\tbc \"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\thc \"github.com/textileio/textile/v2/api/hubd/client\"\n\thubpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\tc \"github.com/textileio/textile/v2/api/usersd/client\"\n\tbucks \"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = apitest.StartServices()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc TestClient_GetThread(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"bad keys\", func(t *testing.T) {\n\t\t// No key\n\t\t_, err := client.GetThread(ctx, \"foo\")\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\n\t\t// No key signature\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_ACCOUNT, true)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\t\t_, err = client.GetThread(ctx, \"foo\")\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\n\t\t// Old key signature\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(-time.Minute), res.KeyInfo.Secret)\n\t\trequire.NoError(t, err)\n\t\t_, err = client.GetThread(ctx, \"foo\")\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\t})\n\n\tt.Run(\"account keys\", func(t *testing.T) {\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_ACCOUNT, true)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Minute), res.KeyInfo.Secret)\n\t\trequire.NoError(t, err)\n\n\t\t// Not found\n\t\t_, err = client.GetThread(ctx, \"foo\")\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.NotFound, status.Code(err))\n\n\t\t// All good\n\t\tctx = common.NewThreadNameContext(ctx, \"foo\")\n\t\terr = threads.NewDB(ctx, thread.NewIDV1(thread.Raw, 32))\n\t\trequire.NoError(t, err)\n\t\tres2, err := client.GetThread(ctx, \"foo\")\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, \"foo\", res2.Name)\n\t\tassert.True(t, res2.IsDb)\n\t})\n\n\tt.Run(\"users keys\", func(t *testing.T) {\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_USER, true)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Minute), res.KeyInfo.Secret)\n\t\trequire.NoError(t, err)\n\n\t\t// No token\n\t\t_, err = client.GetThread(ctx, \"foo\")\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\n\t\t// Not found\n\t\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\t\trequire.NoError(t, err)\n\t\ttok, err := threads.GetToken(ctx, thread.NewLibp2pIdentity(sk))\n\t\trequire.NoError(t, err)\n\t\tctx = thread.NewTokenContext(ctx, tok)\n\t\t_, err = client.GetThread(ctx, \"foo\")\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.NotFound, status.Code(err))\n\n\t\t// All good\n\t\tctx = common.NewThreadNameContext(ctx, \"foo\")\n\t\terr = threads.NewDB(ctx, thread.NewIDV1(thread.Raw, 32))\n\t\trequire.NoError(t, err)\n\t\tres2, err := client.GetThread(ctx, \"foo\")\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, \"foo\", res2.Name)\n\t\tassert.True(t, res2.IsDb)\n\t})\n\n\tt.Run(\"insecure keys\", func(t *testing.T) {\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_ACCOUNT, false)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\n\t\t// All good\n\t\tctx = common.NewThreadNameContext(ctx, \"foo2\")\n\t\terr = threads.NewDB(ctx, thread.NewIDV1(thread.Raw, 32))\n\t\trequire.NoError(t, err)\n\t\tres2, err := client.GetThread(ctx, \"foo2\")\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, \"foo2\", res2.Name)\n\t\tassert.True(t, res2.IsDb)\n\t})\n}\n\nfunc TestClient_ListThreads(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, net, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\n\tt.Run(\"bad keys\", func(t *testing.T) {\n\t\t// No key\n\t\t_, err := client.ListThreads(ctx)\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\n\t\t// No key signature\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_ACCOUNT, true)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\t\t_, err = client.ListThreads(ctx)\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\n\t\t// Old key signature\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(-time.Minute), res.KeyInfo.Secret)\n\t\trequire.NoError(t, err)\n\t\t_, err = client.ListThreads(ctx)\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\t})\n\n\tt.Run(\"account keys\", func(t *testing.T) {\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_ACCOUNT, true)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Minute), res.KeyInfo.Secret)\n\t\trequire.NoError(t, err)\n\n\t\t// Empty\n\t\tres2, err := client.ListThreads(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 0, len(res2.List))\n\n\t\t// Got one\n\t\t_, err = net.CreateThread(ctx, thread.NewIDV1(thread.Raw, 32))\n\t\trequire.NoError(t, err)\n\t\tres3, err := client.ListThreads(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1, len(res3.List))\n\t\tassert.False(t, res3.List[0].IsDb)\n\t})\n\n\tt.Run(\"users keys\", func(t *testing.T) {\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_USER, true)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Minute), res.KeyInfo.Secret)\n\t\trequire.NoError(t, err)\n\n\t\t// No token\n\t\t_, err = client.ListThreads(ctx)\n\t\trequire.Error(t, err)\n\t\tassert.Equal(t, codes.Unauthenticated, status.Code(err))\n\n\t\t// Empty\n\t\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\t\trequire.NoError(t, err)\n\t\ttok, err := threads.GetToken(ctx, thread.NewLibp2pIdentity(sk))\n\t\trequire.NoError(t, err)\n\t\tctx = thread.NewTokenContext(ctx, tok)\n\t\tres2, err := client.ListThreads(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 0, len(res2.List))\n\n\t\t// Got one\n\t\tctx = common.NewThreadNameContext(ctx, \"foo\")\n\t\terr = threads.NewDB(ctx, thread.NewIDV1(thread.Raw, 32))\n\t\trequire.NoError(t, err)\n\t\tres3, err := client.ListThreads(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1, len(res3.List))\n\t\tassert.Equal(t, \"foo\", res3.List[0].Name)\n\t\tassert.True(t, res3.List[0].IsDb)\n\t})\n\n\tt.Run(\"insecure keys\", func(t *testing.T) {\n\t\tres, err := hub.CreateKey(common.NewSessionContext(ctx, dev.Session), hubpb.KeyType_KEY_TYPE_ACCOUNT, false)\n\t\trequire.NoError(t, err)\n\t\tctx := common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\n\t\t// Got one\n\t\tres2, err := client.ListThreads(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1, len(res2.List))\n\n\t\t// Got two\n\t\t_, err = net.CreateThread(ctx, thread.NewIDV1(thread.Raw, 32))\n\t\trequire.NoError(t, err)\n\t\tres3, err := client.ListThreads(ctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 2, len(res3.List))\n\t\tassert.False(t, res3.List[1].IsDb)\n\t})\n}\n\nfunc TestClient_SetupMailbox(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tctx := common.NewAPIKeyContext(context.Background(), res.KeyInfo.Key)\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tfrom := thread.NewLibp2pIdentity(sk)\n\ttok, err := threads.GetToken(ctx, from)\n\trequire.NoError(t, err)\n\tctx = thread.NewTokenContext(ctx, tok)\n\n\tmailbox, err := client.SetupMailbox(ctx)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, mailbox)\n\n\t// should be idempotent\n\tmailbox2, err := client.SetupMailbox(ctx)\n\trequire.NoError(t, err)\n\tassert.Equal(t, mailbox, mailbox2)\n}\n\nfunc TestClient_SendMessage(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tfrom, fctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\tto, _ := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\n\tmsg, err := client.SendMessage(fctx, from, to.GetPublic(), []byte(\"howdy\"))\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, msg.ID)\n\tassert.NotEmpty(t, msg.CreatedAt)\n}\n\nfunc TestClient_ListInboxMessages(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tfrom, fctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\tto, tctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\n\tvar i int\n\tvar readID string\n\tfor i < 10 {\n\t\tres, err := client.SendMessage(fctx, from, to.GetPublic(), []byte(\"hi\"))\n\t\trequire.NoError(t, err)\n\t\tif i == 0 {\n\t\t\treadID = res.ID\n\t\t}\n\t\ti++\n\t}\n\n\tt.Run(\"check order\", func(t *testing.T) {\n\t\tlist, err := client.ListInboxMessages(tctx)\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list, 10)\n\t\tfor i := 0; i < len(list)-1; i++ {\n\t\t\tassert.True(t, list[i].CreatedAt.After(list[i+1].CreatedAt))\n\t\t}\n\t\tm, err := list[0].Open(context.Background(), to)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, \"hi\", string(m))\n\t})\n\n\tt.Run(\"with limit\", func(t *testing.T) {\n\t\tlist, err := client.ListInboxMessages(tctx, c.WithLimit(5))\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list, 5)\n\t})\n\n\tt.Run(\"with ascending\", func(t *testing.T) {\n\t\tlist, err := client.ListInboxMessages(tctx, c.WithLimit(5), c.WithAscending(true))\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list, 5)\n\t\tfor i := 0; i < len(list)-1; i++ {\n\t\t\tassert.True(t, list[i].CreatedAt.Before(list[i+1].CreatedAt))\n\t\t}\n\t})\n\n\tt.Run(\"with seek\", func(t *testing.T) {\n\t\tvar all []c.Message\n\t\tvar seek string\n\t\tpageSize := 2\n\t\tfor { // 5 pages\n\t\t\tlist, err := client.ListInboxMessages(tctx, c.WithLimit(pageSize+1), c.WithSeek(seek))\n\t\t\trequire.NoError(t, err)\n\t\t\tall = append(all, list[:pageSize]...)\n\t\t\tif len(list) < pageSize+1 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tseek = list[len(list)-1].ID\n\t\t}\n\t\tassert.Len(t, all, 10)\n\t\tfor i := 0; i < len(all)-1; i++ {\n\t\t\tassert.True(t, all[i].CreatedAt.After(all[i+1].CreatedAt))\n\t\t}\n\t})\n\n\tt.Run(\"with status\", func(t *testing.T) {\n\t\terr = client.ReadInboxMessage(tctx, readID)\n\t\trequire.NoError(t, err)\n\n\t\tlist1, err := client.ListInboxMessages(tctx, c.WithStatus(c.All))\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list1, 10)\n\t\tlist2, err := client.ListInboxMessages(tctx, c.WithStatus(c.Read))\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list2, 1)\n\t\tassert.False(t, list2[0].ReadAt.IsZero())\n\t\tlist3, err := client.ListInboxMessages(tctx, c.WithStatus(c.Unread))\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list3, 9)\n\t\tassert.True(t, list3[0].ReadAt.IsZero())\n\t})\n}\n\nfunc TestClient_ListSentboxMessages(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tfrom, fctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\tto, _ := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\n\t_, err = client.SendMessage(fctx, from, to.GetPublic(), []byte(\"one\"))\n\trequire.NoError(t, err)\n\t_, err = client.SendMessage(fctx, from, to.GetPublic(), []byte(\"two\"))\n\trequire.NoError(t, err)\n\n\tlist, err := client.ListSentboxMessages(fctx)\n\trequire.NoError(t, err)\n\tassert.Len(t, list, 2)\n\tm2, err := list[0].Open(context.Background(), from)\n\trequire.NoError(t, err)\n\tm1, err := list[1].Open(context.Background(), from)\n\trequire.NoError(t, err)\n\tassert.Equal(t, \"two\", string(m2))\n\tassert.Equal(t, \"one\", string(m1))\n}\n\nfunc TestClient_ReadInboxMessage(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tfrom, fctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\tto, tctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\n\tmsg, err := client.SendMessage(fctx, from, to.GetPublic(), []byte(\"howdy\"))\n\trequire.NoError(t, err)\n\n\terr = client.ReadInboxMessage(tctx, msg.ID)\n\trequire.NoError(t, err)\n\n\tlist, err := client.ListInboxMessages(tctx)\n\trequire.NoError(t, err)\n\tassert.False(t, list[0].ReadAt.IsZero())\n}\n\nfunc TestClient_DeleteInboxMessage(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tfrom, fctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\tto, tctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\n\tmsg, err := client.SendMessage(fctx, from, to.GetPublic(), []byte(\"howdy\"))\n\trequire.NoError(t, err)\n\n\terr = client.DeleteInboxMessage(tctx, msg.ID)\n\trequire.NoError(t, err)\n\n\tlist, err := client.ListInboxMessages(tctx)\n\trequire.NoError(t, err)\n\tassert.Len(t, list, 0)\n}\n\nfunc TestClient_DeleteSentboxMessage(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setup(t, nil)\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tfrom, fctx := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\tto, _ := setupUserMail(t, client, threads, res.KeyInfo.Key)\n\n\tmsg, err := client.SendMessage(fctx, from, to.GetPublic(), []byte(\"howdy\"))\n\trequire.NoError(t, err)\n\n\terr = client.DeleteSentboxMessage(fctx, msg.ID)\n\trequire.NoError(t, err)\n\n\tlist, err := client.ListSentboxMessages(fctx)\n\trequire.NoError(t, err)\n\tassert.Len(t, list, 0)\n}\n\nfunc TestClient_GetUsage(t *testing.T) {\n\tt.Parallel()\n\tconf, client, hub, threads, _, _ := setupWithBilling(t)\n\tctx := context.Background()\n\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := hub.CreateKey(common.NewSessionContext(context.Background(), dev.Session), hubpb.KeyType_KEY_TYPE_USER, false)\n\trequire.NoError(t, err)\n\n\tctx = common.NewAPIKeyContext(context.Background(), res.KeyInfo.Key)\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tid := thread.NewLibp2pIdentity(sk)\n\ttok, err := threads.GetToken(ctx, id)\n\trequire.NoError(t, err)\n\tctx = thread.NewTokenContext(ctx, tok)\n\n\tusage, err := client.GetUsage(ctx)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, usage.Usage)\n\n\tusage, err = client.GetUsage(ctx)\n\trequire.NoError(t, err)\n}\n\nfunc TestAccountBuckets(t *testing.T) {\n\tconf, users, hub, threads, _, buckets := setup(t, nil)\n\tctx := context.Background()\n\n\t// Signup, create an API key, and sign it for the requests\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tdevCtx := common.NewSessionContext(ctx, dev.Session)\n\tres, err := hub.CreateKey(devCtx, hubpb.KeyType_KEY_TYPE_ACCOUNT, true)\n\trequire.NoError(t, err)\n\tctx = common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Minute), res.KeyInfo.Secret)\n\trequire.NoError(t, err)\n\n\t// Create a db for the bucket\n\tctx = common.NewThreadNameContext(ctx, \"my-buckets\")\n\tdbID := thread.NewIDV1(thread.Raw, 32)\n\terr = threads.NewDB(ctx, dbID)\n\trequire.NoError(t, err)\n\n\t// Initialize a new bucket in the db\n\tctx = common.NewThreadIDContext(ctx, dbID)\n\tbuck, err := buckets.Create(ctx)\n\trequire.NoError(t, err)\n\n\t// Finally, push a file to the bucket.\n\tres2, err := pushPath(t, ctx, buckets, buck.Root.Key, \"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, res2.Root.String())\n\n\t// We should have a thread named \"my-buckets\"\n\tres3, err := users.GetThread(ctx, \"my-buckets\")\n\trequire.NoError(t, err)\n\tassert.Equal(t, dbID.Bytes(), res3.Id)\n}\n\nfunc TestUserBuckets(t *testing.T) {\n\tconf, users, hub, threads, net, buckets := setup(t, nil)\n\tctx := context.Background()\n\n\t// Signup, create an API key, and sign it for the requests\n\tdev := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tdevCtx := common.NewSessionContext(ctx, dev.Session)\n\tres, err := hub.CreateKey(devCtx, hubpb.KeyType_KEY_TYPE_USER, true)\n\trequire.NoError(t, err)\n\tctx = common.NewAPIKeyContext(ctx, res.KeyInfo.Key)\n\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Hour), res.KeyInfo.Secret)\n\trequire.NoError(t, err)\n\n\t// Generate a user identity and get a token for it\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\ttok, err := threads.GetToken(ctx, thread.NewLibp2pIdentity(sk))\n\trequire.NoError(t, err)\n\tctx = thread.NewTokenContext(ctx, tok)\n\n\t// Create a db for the bucket\n\tctx = common.NewThreadNameContext(ctx, \"my-buckets\")\n\tdbID := thread.NewIDV1(thread.Raw, 32)\n\terr = threads.NewDB(ctx, dbID)\n\trequire.NoError(t, err)\n\n\t// Initialize a new bucket in the db\n\tctx = common.NewThreadIDContext(ctx, dbID)\n\tbuck, err := buckets.Create(ctx, bc.WithPrivate(true))\n\trequire.NoError(t, err)\n\n\t// Finally, push a file to the bucket.\n\tres2, err := pushPath(t, ctx, buckets, buck.Root.Key, \"file1.jpg\", \"testdata/file1.jpg\")\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, res2.Root.String())\n\n\t// We should have a thread named \"my-buckets\"\n\tres3, err := users.GetThread(ctx, \"my-buckets\")\n\trequire.NoError(t, err)\n\tassert.Equal(t, dbID.Bytes(), res3.Id)\n\n\t// The dev should see that the key was used to create one thread\n\tkeys, err := hub.ListKeys(devCtx)\n\trequire.NoError(t, err)\n\tassert.Equal(t, 1, len(keys.List))\n\tassert.Equal(t, 1, int(keys.List[0].Threads))\n\n\t// Try interacting with the bucket as a different user\n\tsk2, pk2c, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\ttok2, err := threads.GetToken(ctx, thread.NewLibp2pIdentity(sk2))\n\trequire.NoError(t, err)\n\tctx = thread.NewTokenContext(ctx, tok2)\n\tpk2 := thread.NewLibp2pPubKey(pk2c).String()\n\n\t// Try to overwrite existing\n\t_, err = pushPath(t, ctx, buckets, buck.Root.Key, \"file1.jpg\", \"testdata/file2.jpg\")\n\trequire.Error(t, err) // no path write access\n\n\t// Try to add a new path\n\t_, err = pushPath(t, ctx, buckets, buck.Root.Key, \"file2.jpg\", \"testdata/file2.jpg\")\n\trequire.Error(t, err) // no new path write access\n\n\t// Try to get the path\n\t_, err = buckets.ListPath(ctx, buck.Root.Key, \"file1.jpg\")\n\trequire.Error(t, err) // no path read access\n\n\t// Grant path read access\n\tctx = thread.NewTokenContext(ctx, tok)\n\terr = buckets.PushPathAccessRoles(ctx, buck.Root.Key, \"file1.jpg\", map[string]bucks.Role{\n\t\tpk2: bucks.Reader,\n\t})\n\trequire.NoError(t, err)\n\n\t// Try to get the path again\n\tctx = thread.NewTokenContext(ctx, tok2)\n\t_, err = buckets.ListPath(ctx, buck.Root.Key, \"file1.jpg\")\n\trequire.NoError(t, err)\n\n\t// Grant path write access\n\tctx = thread.NewTokenContext(ctx, tok)\n\terr = buckets.PushPathAccessRoles(ctx, buck.Root.Key, \"file1.jpg\", map[string]bucks.Role{\n\t\tpk2: bucks.Writer,\n\t})\n\trequire.NoError(t, err)\n\n\t// Try to write to the path again\n\tctx = thread.NewTokenContext(ctx, tok2)\n\tres4, err := pushPath(t, ctx, buckets, buck.Root.Key, \"file1.jpg\", \"testdata/file2.jpg\")\n\trequire.NoError(t, err)\n\tassert.False(t, res4.Root.Cid().Equals(res2.Root.Cid()))\n\n\t// Check that we now have two logs in the bucket thread\n\ttime.Sleep(time.Second)\n\tinfo, err := net.GetThread(ctx, dbID, corenet.WithThreadToken(tok))\n\trequire.NoError(t, err)\n\tassert.Len(t, info.Logs, 2)\n}\n\nfunc setup(t *testing.T, conf *core.Config) (core.Config, *c.Client, *hc.Client, *tc.Client, *nc.Client, *bc.Client) {\n\tif conf == nil {\n\t\ttmp := apitest.DefaultTextileConfig(t)\n\t\tconf = &tmp\n\t}\n\treturn setupWithConf(t, *conf)\n}\n\nfunc setupWithConf(t *testing.T, conf core.Config) (core.Config, *c.Client, *hc.Client, *tc.Client, *nc.Client, *bc.Client) {\n\tapitest.MakeTextileWithConfig(t, conf)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\tclient, err := c.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\thubclient, err := hc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsclient, err := tc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsnetclient, err := nc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tbucketsclient, err := bc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\n\tt.Cleanup(func() {\n\t\terr := client.Close()\n\t\trequire.NoError(t, err)\n\t\terr = threadsclient.Close()\n\t\trequire.NoError(t, err)\n\t})\n\treturn conf, client, hubclient, threadsclient, threadsnetclient, bucketsclient\n}\n\nfunc setupWithBilling(t *testing.T) (core.Config, *c.Client, *hc.Client, *tc.Client, *nc.Client, *bc.Client) {\n\tbconf := apitest.DefaultBillingConfig(t)\n\tapitest.MakeBillingWithConfig(t, bconf)\n\n\tconf := apitest.DefaultTextileConfig(t)\n\tbillingApi, err := tutil.TCPAddrFromMultiAddr(bconf.ListenAddr)\n\trequire.NoError(t, err)\n\tconf.AddrBillingAPI = billingApi\n\treturn setup(t, &conf)\n}\n\nfunc setupUserMail(t *testing.T, client *c.Client, threads *tc.Client, key string) (thread.Identity, context.Context) {\n\tctx := common.NewAPIKeyContext(context.Background(), key)\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tid := thread.NewLibp2pIdentity(sk)\n\ttok, err := threads.GetToken(ctx, id)\n\trequire.NoError(t, err)\n\tctx = thread.NewTokenContext(ctx, tok)\n\t_, err = client.SetupMailbox(ctx)\n\trequire.NoError(t, err)\n\treturn id, ctx\n}\n\nfunc pushPath(t *testing.T, ctx context.Context, buckets *bc.Client, key, pth, name string) (bc.PushPathsResult, error) {\n\tq, err := buckets.PushPaths(ctx, key)\n\trequire.NoError(t, err)\n\terr = q.AddFile(pth, name)\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t}\n\tq.Close()\n\treturn q.Current, q.Err()\n}\n"
  },
  {
    "path": "api/usersd/client/options.go",
    "content": "package client\n\ntype listOptions struct {\n\tseek      string\n\tlimit     int\n\tascending bool\n\tstatus    Status\n}\n\ntype ListOption func(*listOptions)\n\n// WithSeek starts listing from the given ID.\nfunc WithSeek(id string) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.seek = id\n\t}\n}\n\n// WithLimit limits the number of list messages results.\nfunc WithLimit(limit int) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.limit = limit\n\t}\n}\n\n// WithAscending lists messages by ascending order.\nfunc WithAscending(asc bool) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.ascending = asc\n\t}\n}\n\n// Status indicates message read status.\ntype Status int\n\nconst (\n\t// All includes read and unread messages.\n\tAll Status = iota\n\t// Read is only read messages.\n\tRead\n\t// Unread is only unread messages.\n\tUnread\n)\n\n// WithStatus filters messages by read status.\n// Note: Only applies to inbox messages.\nfunc WithStatus(s Status) ListOption {\n\treturn func(args *listOptions) {\n\t\targs.status = s\n\t}\n}\n\ntype usageOptions struct {\n\tkey string\n}\n\ntype UsageOption func(*usageOptions)\n\n// WithPubKey returns usage info for the public key.\nfunc WithPubKey(key string) UsageOption {\n\treturn func(args *usageOptions) {\n\t\targs.key = key\n\t}\n}\n"
  },
  {
    "path": "api/usersd/pb/javascript/package.json",
    "content": "{\n  \"name\": \"@textile/users-grpc\",\n  \"version\": \"0.0.0\",\n  \"description\": \"A client for interacting with the Textile Users gRPC API.\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/textileio/textile.git\"\n  },\n  \"author\": \"Textile\",\n  \"license\": \"MIT\",\n  \"files\": [\n    \"api/usersd/pb/usersd_pb.js\",\n    \"api/usersd/pb/usersd_pb_service.js\",\n    \"api/usersd/pb/usersd_pb.d.ts\",\n    \"api/usersd/pb/usersd_pb_service.d.ts\",\n    \"api/billingd/pb/billingd_pb.js\",\n    \"api/billingd/pb/billingd_pb_service.js\",\n    \"api/billingd/pb/billingd_pb.d.ts\",\n    \"api/billingd/pb/billingd_pb_service.d.ts\"\n  ],\n  \"dependencies\": {\n    \"@improbable-eng/grpc-web\": \"^0.14.1\",\n    \"@types/google-protobuf\": \"^3.15.5\",\n    \"google-protobuf\": \"^3.19.4\"\n  },\n  \"devDependencies\": {\n    \"ts-protoc-gen\": \"^0.15.0\"\n  }\n}\n"
  },
  {
    "path": "api/usersd/pb/usersd.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.23.0\n// \tprotoc        v3.13.0\n// source: api/usersd/pb/usersd.proto\n\npackage pb\n\nimport (\n\tcontext \"context\"\n\tproto \"github.com/golang/protobuf/proto\"\n\tpb \"github.com/textileio/textile/v2/api/billingd/pb\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\n// This is a compile-time assertion that a sufficiently up-to-date version\n// of the legacy proto package is being used.\nconst _ = proto.ProtoPackageIsVersion4\n\ntype ArchiveRetrievalStatus int32\n\nconst (\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED  ArchiveRetrievalStatus = 0\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_QUEUED       ArchiveRetrievalStatus = 1\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_EXECUTING    ArchiveRetrievalStatus = 2\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_MOVETOBUCKET ArchiveRetrievalStatus = 3\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_FAILED       ArchiveRetrievalStatus = 4\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_CANCELED     ArchiveRetrievalStatus = 5\n\tArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_SUCCESS      ArchiveRetrievalStatus = 6\n)\n\n// Enum value maps for ArchiveRetrievalStatus.\nvar (\n\tArchiveRetrievalStatus_name = map[int32]string{\n\t\t0: \"ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED\",\n\t\t1: \"ARCHIVE_RETRIEVAL_STATUS_QUEUED\",\n\t\t2: \"ARCHIVE_RETRIEVAL_STATUS_EXECUTING\",\n\t\t3: \"ARCHIVE_RETRIEVAL_STATUS_MOVETOBUCKET\",\n\t\t4: \"ARCHIVE_RETRIEVAL_STATUS_FAILED\",\n\t\t5: \"ARCHIVE_RETRIEVAL_STATUS_CANCELED\",\n\t\t6: \"ARCHIVE_RETRIEVAL_STATUS_SUCCESS\",\n\t}\n\tArchiveRetrievalStatus_value = map[string]int32{\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED\":  0,\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_QUEUED\":       1,\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_EXECUTING\":    2,\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_MOVETOBUCKET\": 3,\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_FAILED\":       4,\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_CANCELED\":     5,\n\t\t\"ARCHIVE_RETRIEVAL_STATUS_SUCCESS\":      6,\n\t}\n)\n\nfunc (x ArchiveRetrievalStatus) Enum() *ArchiveRetrievalStatus {\n\tp := new(ArchiveRetrievalStatus)\n\t*p = x\n\treturn p\n}\n\nfunc (x ArchiveRetrievalStatus) String() string {\n\treturn protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))\n}\n\nfunc (ArchiveRetrievalStatus) Descriptor() protoreflect.EnumDescriptor {\n\treturn file_api_usersd_pb_usersd_proto_enumTypes[0].Descriptor()\n}\n\nfunc (ArchiveRetrievalStatus) Type() protoreflect.EnumType {\n\treturn &file_api_usersd_pb_usersd_proto_enumTypes[0]\n}\n\nfunc (x ArchiveRetrievalStatus) Number() protoreflect.EnumNumber {\n\treturn protoreflect.EnumNumber(x)\n}\n\n// Deprecated: Use ArchiveRetrievalStatus.Descriptor instead.\nfunc (ArchiveRetrievalStatus) EnumDescriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{0}\n}\n\ntype ListInboxMessagesRequest_Status int32\n\nconst (\n\tListInboxMessagesRequest_STATUS_UNSPECIFIED ListInboxMessagesRequest_Status = 0\n\tListInboxMessagesRequest_STATUS_ALL         ListInboxMessagesRequest_Status = 1\n\tListInboxMessagesRequest_STATUS_READ        ListInboxMessagesRequest_Status = 2\n\tListInboxMessagesRequest_STATUS_UNREAD      ListInboxMessagesRequest_Status = 3\n)\n\n// Enum value maps for ListInboxMessagesRequest_Status.\nvar (\n\tListInboxMessagesRequest_Status_name = map[int32]string{\n\t\t0: \"STATUS_UNSPECIFIED\",\n\t\t1: \"STATUS_ALL\",\n\t\t2: \"STATUS_READ\",\n\t\t3: \"STATUS_UNREAD\",\n\t}\n\tListInboxMessagesRequest_Status_value = map[string]int32{\n\t\t\"STATUS_UNSPECIFIED\": 0,\n\t\t\"STATUS_ALL\":         1,\n\t\t\"STATUS_READ\":        2,\n\t\t\"STATUS_UNREAD\":      3,\n\t}\n)\n\nfunc (x ListInboxMessagesRequest_Status) Enum() *ListInboxMessagesRequest_Status {\n\tp := new(ListInboxMessagesRequest_Status)\n\t*p = x\n\treturn p\n}\n\nfunc (x ListInboxMessagesRequest_Status) String() string {\n\treturn protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))\n}\n\nfunc (ListInboxMessagesRequest_Status) Descriptor() protoreflect.EnumDescriptor {\n\treturn file_api_usersd_pb_usersd_proto_enumTypes[1].Descriptor()\n}\n\nfunc (ListInboxMessagesRequest_Status) Type() protoreflect.EnumType {\n\treturn &file_api_usersd_pb_usersd_proto_enumTypes[1]\n}\n\nfunc (x ListInboxMessagesRequest_Status) Number() protoreflect.EnumNumber {\n\treturn protoreflect.EnumNumber(x)\n}\n\n// Deprecated: Use ListInboxMessagesRequest_Status.Descriptor instead.\nfunc (ListInboxMessagesRequest_Status) EnumDescriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{9, 0}\n}\n\ntype ListThreadsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ListThreadsRequest) Reset() {\n\t*x = ListThreadsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListThreadsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListThreadsRequest) ProtoMessage() {}\n\nfunc (x *ListThreadsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListThreadsRequest.ProtoReflect.Descriptor instead.\nfunc (*ListThreadsRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{0}\n}\n\ntype ListThreadsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tList []*GetThreadResponse `protobuf:\"bytes,1,rep,name=list,proto3\" json:\"list,omitempty\"`\n}\n\nfunc (x *ListThreadsResponse) Reset() {\n\t*x = ListThreadsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListThreadsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListThreadsResponse) ProtoMessage() {}\n\nfunc (x *ListThreadsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListThreadsResponse.ProtoReflect.Descriptor instead.\nfunc (*ListThreadsResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *ListThreadsResponse) GetList() []*GetThreadResponse {\n\tif x != nil {\n\t\treturn x.List\n\t}\n\treturn nil\n}\n\ntype GetThreadRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n}\n\nfunc (x *GetThreadRequest) Reset() {\n\t*x = GetThreadRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetThreadRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetThreadRequest) ProtoMessage() {}\n\nfunc (x *GetThreadRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetThreadRequest.ProtoReflect.Descriptor instead.\nfunc (*GetThreadRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *GetThreadRequest) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\ntype GetThreadResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId   []byte `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n\tName string `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tIsDb bool   `protobuf:\"varint,3,opt,name=is_db,json=isDb,proto3\" json:\"is_db,omitempty\"`\n}\n\nfunc (x *GetThreadResponse) Reset() {\n\t*x = GetThreadResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetThreadResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetThreadResponse) ProtoMessage() {}\n\nfunc (x *GetThreadResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetThreadResponse.ProtoReflect.Descriptor instead.\nfunc (*GetThreadResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *GetThreadResponse) GetId() []byte {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn nil\n}\n\nfunc (x *GetThreadResponse) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *GetThreadResponse) GetIsDb() bool {\n\tif x != nil {\n\t\treturn x.IsDb\n\t}\n\treturn false\n}\n\ntype SetupMailboxRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *SetupMailboxRequest) Reset() {\n\t*x = SetupMailboxRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetupMailboxRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetupMailboxRequest) ProtoMessage() {}\n\nfunc (x *SetupMailboxRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetupMailboxRequest.ProtoReflect.Descriptor instead.\nfunc (*SetupMailboxRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{4}\n}\n\ntype SetupMailboxResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMailboxId []byte `protobuf:\"bytes,1,opt,name=mailbox_id,json=mailboxId,proto3\" json:\"mailbox_id,omitempty\"`\n}\n\nfunc (x *SetupMailboxResponse) Reset() {\n\t*x = SetupMailboxResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SetupMailboxResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SetupMailboxResponse) ProtoMessage() {}\n\nfunc (x *SetupMailboxResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SetupMailboxResponse.ProtoReflect.Descriptor instead.\nfunc (*SetupMailboxResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *SetupMailboxResponse) GetMailboxId() []byte {\n\tif x != nil {\n\t\treturn x.MailboxId\n\t}\n\treturn nil\n}\n\ntype Message struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId        string `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n\tFrom      string `protobuf:\"bytes,2,opt,name=from,proto3\" json:\"from,omitempty\"`\n\tTo        string `protobuf:\"bytes,3,opt,name=to,proto3\" json:\"to,omitempty\"`\n\tBody      []byte `protobuf:\"bytes,4,opt,name=body,proto3\" json:\"body,omitempty\"`\n\tSignature []byte `protobuf:\"bytes,5,opt,name=signature,proto3\" json:\"signature,omitempty\"`\n\tCreatedAt int64  `protobuf:\"varint,6,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n\tReadAt    int64  `protobuf:\"varint,7,opt,name=read_at,json=readAt,proto3\" json:\"read_at,omitempty\"`\n}\n\nfunc (x *Message) Reset() {\n\t*x = Message{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Message) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Message) ProtoMessage() {}\n\nfunc (x *Message) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Message.ProtoReflect.Descriptor instead.\nfunc (*Message) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *Message) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\nfunc (x *Message) GetFrom() string {\n\tif x != nil {\n\t\treturn x.From\n\t}\n\treturn \"\"\n}\n\nfunc (x *Message) GetTo() string {\n\tif x != nil {\n\t\treturn x.To\n\t}\n\treturn \"\"\n}\n\nfunc (x *Message) GetBody() []byte {\n\tif x != nil {\n\t\treturn x.Body\n\t}\n\treturn nil\n}\n\nfunc (x *Message) GetSignature() []byte {\n\tif x != nil {\n\t\treturn x.Signature\n\t}\n\treturn nil\n}\n\nfunc (x *Message) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\nfunc (x *Message) GetReadAt() int64 {\n\tif x != nil {\n\t\treturn x.ReadAt\n\t}\n\treturn 0\n}\n\ntype SendMessageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTo            string `protobuf:\"bytes,1,opt,name=to,proto3\" json:\"to,omitempty\"`\n\tToBody        []byte `protobuf:\"bytes,2,opt,name=to_body,json=toBody,proto3\" json:\"to_body,omitempty\"`\n\tToSignature   []byte `protobuf:\"bytes,3,opt,name=to_signature,json=toSignature,proto3\" json:\"to_signature,omitempty\"`\n\tFromBody      []byte `protobuf:\"bytes,4,opt,name=from_body,json=fromBody,proto3\" json:\"from_body,omitempty\"`\n\tFromSignature []byte `protobuf:\"bytes,5,opt,name=from_signature,json=fromSignature,proto3\" json:\"from_signature,omitempty\"`\n}\n\nfunc (x *SendMessageRequest) Reset() {\n\t*x = SendMessageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SendMessageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SendMessageRequest) ProtoMessage() {}\n\nfunc (x *SendMessageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.\nfunc (*SendMessageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{7}\n}\n\nfunc (x *SendMessageRequest) GetTo() string {\n\tif x != nil {\n\t\treturn x.To\n\t}\n\treturn \"\"\n}\n\nfunc (x *SendMessageRequest) GetToBody() []byte {\n\tif x != nil {\n\t\treturn x.ToBody\n\t}\n\treturn nil\n}\n\nfunc (x *SendMessageRequest) GetToSignature() []byte {\n\tif x != nil {\n\t\treturn x.ToSignature\n\t}\n\treturn nil\n}\n\nfunc (x *SendMessageRequest) GetFromBody() []byte {\n\tif x != nil {\n\t\treturn x.FromBody\n\t}\n\treturn nil\n}\n\nfunc (x *SendMessageRequest) GetFromSignature() []byte {\n\tif x != nil {\n\t\treturn x.FromSignature\n\t}\n\treturn nil\n}\n\ntype SendMessageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId        string `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n\tCreatedAt int64  `protobuf:\"varint,2,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n}\n\nfunc (x *SendMessageResponse) Reset() {\n\t*x = SendMessageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *SendMessageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*SendMessageResponse) ProtoMessage() {}\n\nfunc (x *SendMessageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use SendMessageResponse.ProtoReflect.Descriptor instead.\nfunc (*SendMessageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{8}\n}\n\nfunc (x *SendMessageResponse) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\nfunc (x *SendMessageResponse) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\ntype ListInboxMessagesRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSeek      string                          `protobuf:\"bytes,1,opt,name=seek,proto3\" json:\"seek,omitempty\"`\n\tLimit     int64                           `protobuf:\"varint,2,opt,name=limit,proto3\" json:\"limit,omitempty\"`\n\tAscending bool                            `protobuf:\"varint,3,opt,name=ascending,proto3\" json:\"ascending,omitempty\"`\n\tStatus    ListInboxMessagesRequest_Status `protobuf:\"varint,4,opt,name=status,proto3,enum=api.usersd.pb.ListInboxMessagesRequest_Status\" json:\"status,omitempty\"`\n}\n\nfunc (x *ListInboxMessagesRequest) Reset() {\n\t*x = ListInboxMessagesRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListInboxMessagesRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListInboxMessagesRequest) ProtoMessage() {}\n\nfunc (x *ListInboxMessagesRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListInboxMessagesRequest.ProtoReflect.Descriptor instead.\nfunc (*ListInboxMessagesRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *ListInboxMessagesRequest) GetSeek() string {\n\tif x != nil {\n\t\treturn x.Seek\n\t}\n\treturn \"\"\n}\n\nfunc (x *ListInboxMessagesRequest) GetLimit() int64 {\n\tif x != nil {\n\t\treturn x.Limit\n\t}\n\treturn 0\n}\n\nfunc (x *ListInboxMessagesRequest) GetAscending() bool {\n\tif x != nil {\n\t\treturn x.Ascending\n\t}\n\treturn false\n}\n\nfunc (x *ListInboxMessagesRequest) GetStatus() ListInboxMessagesRequest_Status {\n\tif x != nil {\n\t\treturn x.Status\n\t}\n\treturn ListInboxMessagesRequest_STATUS_UNSPECIFIED\n}\n\ntype ListInboxMessagesResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMessages []*Message `protobuf:\"bytes,1,rep,name=messages,proto3\" json:\"messages,omitempty\"`\n}\n\nfunc (x *ListInboxMessagesResponse) Reset() {\n\t*x = ListInboxMessagesResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListInboxMessagesResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListInboxMessagesResponse) ProtoMessage() {}\n\nfunc (x *ListInboxMessagesResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListInboxMessagesResponse.ProtoReflect.Descriptor instead.\nfunc (*ListInboxMessagesResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{10}\n}\n\nfunc (x *ListInboxMessagesResponse) GetMessages() []*Message {\n\tif x != nil {\n\t\treturn x.Messages\n\t}\n\treturn nil\n}\n\ntype ListSentboxMessagesRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSeek      string `protobuf:\"bytes,1,opt,name=seek,proto3\" json:\"seek,omitempty\"`\n\tLimit     int64  `protobuf:\"varint,2,opt,name=limit,proto3\" json:\"limit,omitempty\"`\n\tAscending bool   `protobuf:\"varint,3,opt,name=ascending,proto3\" json:\"ascending,omitempty\"`\n}\n\nfunc (x *ListSentboxMessagesRequest) Reset() {\n\t*x = ListSentboxMessagesRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListSentboxMessagesRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListSentboxMessagesRequest) ProtoMessage() {}\n\nfunc (x *ListSentboxMessagesRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListSentboxMessagesRequest.ProtoReflect.Descriptor instead.\nfunc (*ListSentboxMessagesRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *ListSentboxMessagesRequest) GetSeek() string {\n\tif x != nil {\n\t\treturn x.Seek\n\t}\n\treturn \"\"\n}\n\nfunc (x *ListSentboxMessagesRequest) GetLimit() int64 {\n\tif x != nil {\n\t\treturn x.Limit\n\t}\n\treturn 0\n}\n\nfunc (x *ListSentboxMessagesRequest) GetAscending() bool {\n\tif x != nil {\n\t\treturn x.Ascending\n\t}\n\treturn false\n}\n\ntype ListSentboxMessagesResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMessages []*Message `protobuf:\"bytes,1,rep,name=messages,proto3\" json:\"messages,omitempty\"`\n}\n\nfunc (x *ListSentboxMessagesResponse) Reset() {\n\t*x = ListSentboxMessagesResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ListSentboxMessagesResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ListSentboxMessagesResponse) ProtoMessage() {}\n\nfunc (x *ListSentboxMessagesResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ListSentboxMessagesResponse.ProtoReflect.Descriptor instead.\nfunc (*ListSentboxMessagesResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{12}\n}\n\nfunc (x *ListSentboxMessagesResponse) GetMessages() []*Message {\n\tif x != nil {\n\t\treturn x.Messages\n\t}\n\treturn nil\n}\n\ntype ReadInboxMessageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId string `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n}\n\nfunc (x *ReadInboxMessageRequest) Reset() {\n\t*x = ReadInboxMessageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ReadInboxMessageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ReadInboxMessageRequest) ProtoMessage() {}\n\nfunc (x *ReadInboxMessageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ReadInboxMessageRequest.ProtoReflect.Descriptor instead.\nfunc (*ReadInboxMessageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{13}\n}\n\nfunc (x *ReadInboxMessageRequest) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\ntype ReadInboxMessageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tReadAt int64 `protobuf:\"varint,1,opt,name=read_at,json=readAt,proto3\" json:\"read_at,omitempty\"`\n}\n\nfunc (x *ReadInboxMessageResponse) Reset() {\n\t*x = ReadInboxMessageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[14]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ReadInboxMessageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ReadInboxMessageResponse) ProtoMessage() {}\n\nfunc (x *ReadInboxMessageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[14]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ReadInboxMessageResponse.ProtoReflect.Descriptor instead.\nfunc (*ReadInboxMessageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{14}\n}\n\nfunc (x *ReadInboxMessageResponse) GetReadAt() int64 {\n\tif x != nil {\n\t\treturn x.ReadAt\n\t}\n\treturn 0\n}\n\ntype DeleteInboxMessageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId string `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n}\n\nfunc (x *DeleteInboxMessageRequest) Reset() {\n\t*x = DeleteInboxMessageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[15]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DeleteInboxMessageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DeleteInboxMessageRequest) ProtoMessage() {}\n\nfunc (x *DeleteInboxMessageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[15]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DeleteInboxMessageRequest.ProtoReflect.Descriptor instead.\nfunc (*DeleteInboxMessageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{15}\n}\n\nfunc (x *DeleteInboxMessageRequest) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\ntype DeleteInboxMessageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *DeleteInboxMessageResponse) Reset() {\n\t*x = DeleteInboxMessageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[16]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DeleteInboxMessageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DeleteInboxMessageResponse) ProtoMessage() {}\n\nfunc (x *DeleteInboxMessageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[16]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DeleteInboxMessageResponse.ProtoReflect.Descriptor instead.\nfunc (*DeleteInboxMessageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{16}\n}\n\ntype DeleteSentboxMessageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId string `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n}\n\nfunc (x *DeleteSentboxMessageRequest) Reset() {\n\t*x = DeleteSentboxMessageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[17]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DeleteSentboxMessageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DeleteSentboxMessageRequest) ProtoMessage() {}\n\nfunc (x *DeleteSentboxMessageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[17]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DeleteSentboxMessageRequest.ProtoReflect.Descriptor instead.\nfunc (*DeleteSentboxMessageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{17}\n}\n\nfunc (x *DeleteSentboxMessageRequest) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\ntype DeleteSentboxMessageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *DeleteSentboxMessageResponse) Reset() {\n\t*x = DeleteSentboxMessageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[18]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DeleteSentboxMessageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DeleteSentboxMessageResponse) ProtoMessage() {}\n\nfunc (x *DeleteSentboxMessageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[18]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DeleteSentboxMessageResponse.ProtoReflect.Descriptor instead.\nfunc (*DeleteSentboxMessageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{18}\n}\n\ntype GetUsageRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tKey string `protobuf:\"bytes,1,opt,name=key,proto3\" json:\"key,omitempty\"`\n}\n\nfunc (x *GetUsageRequest) Reset() {\n\t*x = GetUsageRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[19]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetUsageRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetUsageRequest) ProtoMessage() {}\n\nfunc (x *GetUsageRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[19]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetUsageRequest.ProtoReflect.Descriptor instead.\nfunc (*GetUsageRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{19}\n}\n\nfunc (x *GetUsageRequest) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\ntype GetUsageResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCustomer *pb.GetCustomerResponse      `protobuf:\"bytes,1,opt,name=customer,proto3\" json:\"customer,omitempty\"`\n\tUsage    *pb.GetCustomerUsageResponse `protobuf:\"bytes,2,opt,name=usage,proto3\" json:\"usage,omitempty\"`\n}\n\nfunc (x *GetUsageResponse) Reset() {\n\t*x = GetUsageResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[20]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetUsageResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetUsageResponse) ProtoMessage() {}\n\nfunc (x *GetUsageResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[20]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetUsageResponse.ProtoReflect.Descriptor instead.\nfunc (*GetUsageResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{20}\n}\n\nfunc (x *GetUsageResponse) GetCustomer() *pb.GetCustomerResponse {\n\tif x != nil {\n\t\treturn x.Customer\n\t}\n\treturn nil\n}\n\nfunc (x *GetUsageResponse) GetUsage() *pb.GetCustomerUsageResponse {\n\tif x != nil {\n\t\treturn x.Usage\n\t}\n\treturn nil\n}\n\ntype ArchivesLsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ArchivesLsRequest) Reset() {\n\t*x = ArchivesLsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[21]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchivesLsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchivesLsRequest) ProtoMessage() {}\n\nfunc (x *ArchivesLsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[21]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchivesLsRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchivesLsRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{21}\n}\n\ntype ArchivesLsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tArchives []*ArchiveLsItem `protobuf:\"bytes,1,rep,name=archives,proto3\" json:\"archives,omitempty\"`\n}\n\nfunc (x *ArchivesLsResponse) Reset() {\n\t*x = ArchivesLsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[22]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchivesLsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchivesLsResponse) ProtoMessage() {}\n\nfunc (x *ArchivesLsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[22]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchivesLsResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchivesLsResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{22}\n}\n\nfunc (x *ArchivesLsResponse) GetArchives() []*ArchiveLsItem {\n\tif x != nil {\n\t\treturn x.Archives\n\t}\n\treturn nil\n}\n\ntype ArchiveLsItem struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCid  string                   `protobuf:\"bytes,1,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n\tInfo []*ArchiveLsItemMetadata `protobuf:\"bytes,2,rep,name=info,proto3\" json:\"info,omitempty\"`\n}\n\nfunc (x *ArchiveLsItem) Reset() {\n\t*x = ArchiveLsItem{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[23]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveLsItem) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveLsItem) ProtoMessage() {}\n\nfunc (x *ArchiveLsItem) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[23]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveLsItem.ProtoReflect.Descriptor instead.\nfunc (*ArchiveLsItem) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{23}\n}\n\nfunc (x *ArchiveLsItem) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchiveLsItem) GetInfo() []*ArchiveLsItemMetadata {\n\tif x != nil {\n\t\treturn x.Info\n\t}\n\treturn nil\n}\n\ntype ArchiveLsItemMetadata struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tDealId uint64 `protobuf:\"varint,1,opt,name=deal_id,json=dealId,proto3\" json:\"deal_id,omitempty\"`\n}\n\nfunc (x *ArchiveLsItemMetadata) Reset() {\n\t*x = ArchiveLsItemMetadata{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[24]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveLsItemMetadata) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveLsItemMetadata) ProtoMessage() {}\n\nfunc (x *ArchiveLsItemMetadata) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[24]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveLsItemMetadata.ProtoReflect.Descriptor instead.\nfunc (*ArchiveLsItemMetadata) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{24}\n}\n\nfunc (x *ArchiveLsItemMetadata) GetDealId() uint64 {\n\tif x != nil {\n\t\treturn x.DealId\n\t}\n\treturn 0\n}\n\ntype ArchivesImportRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCid     string   `protobuf:\"bytes,1,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n\tDealIds []uint64 `protobuf:\"varint,2,rep,packed,name=deal_ids,json=dealIds,proto3\" json:\"deal_ids,omitempty\"`\n}\n\nfunc (x *ArchivesImportRequest) Reset() {\n\t*x = ArchivesImportRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[25]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchivesImportRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchivesImportRequest) ProtoMessage() {}\n\nfunc (x *ArchivesImportRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[25]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchivesImportRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchivesImportRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{25}\n}\n\nfunc (x *ArchivesImportRequest) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchivesImportRequest) GetDealIds() []uint64 {\n\tif x != nil {\n\t\treturn x.DealIds\n\t}\n\treturn nil\n}\n\ntype ArchivesImportResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ArchivesImportResponse) Reset() {\n\t*x = ArchivesImportResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[26]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchivesImportResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchivesImportResponse) ProtoMessage() {}\n\nfunc (x *ArchivesImportResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[26]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchivesImportResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchivesImportResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{26}\n}\n\ntype ArchiveRetrievalLsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *ArchiveRetrievalLsRequest) Reset() {\n\t*x = ArchiveRetrievalLsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[27]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRetrievalLsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRetrievalLsRequest) ProtoMessage() {}\n\nfunc (x *ArchiveRetrievalLsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[27]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRetrievalLsRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRetrievalLsRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{27}\n}\n\ntype ArchiveRetrievalLsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRetrievals []*ArchiveRetrievalLsItem `protobuf:\"bytes,1,rep,name=retrievals,proto3\" json:\"retrievals,omitempty\"`\n}\n\nfunc (x *ArchiveRetrievalLsResponse) Reset() {\n\t*x = ArchiveRetrievalLsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[28]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRetrievalLsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRetrievalLsResponse) ProtoMessage() {}\n\nfunc (x *ArchiveRetrievalLsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[28]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRetrievalLsResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRetrievalLsResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{28}\n}\n\nfunc (x *ArchiveRetrievalLsResponse) GetRetrievals() []*ArchiveRetrievalLsItem {\n\tif x != nil {\n\t\treturn x.Retrievals\n\t}\n\treturn nil\n}\n\ntype ArchiveRetrievalLsItem struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId           string                 `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n\tCid          string                 `protobuf:\"bytes,2,opt,name=cid,proto3\" json:\"cid,omitempty\"`\n\tStatus       ArchiveRetrievalStatus `protobuf:\"varint,3,opt,name=status,proto3,enum=api.usersd.pb.ArchiveRetrievalStatus\" json:\"status,omitempty\"`\n\tFailureCause string                 `protobuf:\"bytes,4,opt,name=failure_cause,json=failureCause,proto3\" json:\"failure_cause,omitempty\"`\n\tCreatedAt    int64                  `protobuf:\"varint,5,opt,name=created_at,json=createdAt,proto3\" json:\"created_at,omitempty\"`\n\t// Types that are assignable to RetrievalType:\n\t//\t*ArchiveRetrievalLsItem_NewBucket\n\tRetrievalType isArchiveRetrievalLsItem_RetrievalType `protobuf_oneof:\"retrieval_type\"`\n}\n\nfunc (x *ArchiveRetrievalLsItem) Reset() {\n\t*x = ArchiveRetrievalLsItem{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[29]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRetrievalLsItem) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRetrievalLsItem) ProtoMessage() {}\n\nfunc (x *ArchiveRetrievalLsItem) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[29]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRetrievalLsItem.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRetrievalLsItem) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{29}\n}\n\nfunc (x *ArchiveRetrievalLsItem) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchiveRetrievalLsItem) GetCid() string {\n\tif x != nil {\n\t\treturn x.Cid\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchiveRetrievalLsItem) GetStatus() ArchiveRetrievalStatus {\n\tif x != nil {\n\t\treturn x.Status\n\t}\n\treturn ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED\n}\n\nfunc (x *ArchiveRetrievalLsItem) GetFailureCause() string {\n\tif x != nil {\n\t\treturn x.FailureCause\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchiveRetrievalLsItem) GetCreatedAt() int64 {\n\tif x != nil {\n\t\treturn x.CreatedAt\n\t}\n\treturn 0\n}\n\nfunc (m *ArchiveRetrievalLsItem) GetRetrievalType() isArchiveRetrievalLsItem_RetrievalType {\n\tif m != nil {\n\t\treturn m.RetrievalType\n\t}\n\treturn nil\n}\n\nfunc (x *ArchiveRetrievalLsItem) GetNewBucket() *ArchiveRetrievalLsItemNewBucket {\n\tif x, ok := x.GetRetrievalType().(*ArchiveRetrievalLsItem_NewBucket); ok {\n\t\treturn x.NewBucket\n\t}\n\treturn nil\n}\n\ntype isArchiveRetrievalLsItem_RetrievalType interface {\n\tisArchiveRetrievalLsItem_RetrievalType()\n}\n\ntype ArchiveRetrievalLsItem_NewBucket struct {\n\tNewBucket *ArchiveRetrievalLsItemNewBucket `protobuf:\"bytes,6,opt,name=new_bucket,json=newBucket,proto3,oneof\"`\n}\n\nfunc (*ArchiveRetrievalLsItem_NewBucket) isArchiveRetrievalLsItem_RetrievalType() {}\n\ntype ArchiveRetrievalLsItemNewBucket struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName    string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tPrivate bool   `protobuf:\"varint,2,opt,name=private,proto3\" json:\"private,omitempty\"`\n}\n\nfunc (x *ArchiveRetrievalLsItemNewBucket) Reset() {\n\t*x = ArchiveRetrievalLsItemNewBucket{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[30]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRetrievalLsItemNewBucket) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRetrievalLsItemNewBucket) ProtoMessage() {}\n\nfunc (x *ArchiveRetrievalLsItemNewBucket) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[30]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRetrievalLsItemNewBucket.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRetrievalLsItemNewBucket) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{30}\n}\n\nfunc (x *ArchiveRetrievalLsItemNewBucket) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *ArchiveRetrievalLsItemNewBucket) GetPrivate() bool {\n\tif x != nil {\n\t\treturn x.Private\n\t}\n\treturn false\n}\n\ntype ArchiveRetrievalLogsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tId string `protobuf:\"bytes,1,opt,name=id,proto3\" json:\"id,omitempty\"`\n}\n\nfunc (x *ArchiveRetrievalLogsRequest) Reset() {\n\t*x = ArchiveRetrievalLogsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[31]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRetrievalLogsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRetrievalLogsRequest) ProtoMessage() {}\n\nfunc (x *ArchiveRetrievalLogsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[31]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRetrievalLogsRequest.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRetrievalLogsRequest) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{31}\n}\n\nfunc (x *ArchiveRetrievalLogsRequest) GetId() string {\n\tif x != nil {\n\t\treturn x.Id\n\t}\n\treturn \"\"\n}\n\ntype ArchiveRetrievalLogsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tMsg string `protobuf:\"bytes,1,opt,name=msg,proto3\" json:\"msg,omitempty\"`\n}\n\nfunc (x *ArchiveRetrievalLogsResponse) Reset() {\n\t*x = ArchiveRetrievalLogsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[32]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *ArchiveRetrievalLogsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*ArchiveRetrievalLogsResponse) ProtoMessage() {}\n\nfunc (x *ArchiveRetrievalLogsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_api_usersd_pb_usersd_proto_msgTypes[32]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use ArchiveRetrievalLogsResponse.ProtoReflect.Descriptor instead.\nfunc (*ArchiveRetrievalLogsResponse) Descriptor() ([]byte, []int) {\n\treturn file_api_usersd_pb_usersd_proto_rawDescGZIP(), []int{32}\n}\n\nfunc (x *ArchiveRetrievalLogsResponse) GetMsg() string {\n\tif x != nil {\n\t\treturn x.Msg\n\t}\n\treturn \"\"\n}\n\nvar File_api_usersd_pb_usersd_proto protoreflect.FileDescriptor\n\nvar file_api_usersd_pb_usersd_proto_rawDesc = []byte{\n\t0x0a, 0x1a, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2f, 0x70, 0x62, 0x2f,\n\t0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0d, 0x61, 0x70,\n\t0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x1a, 0x1e, 0x61, 0x70, 0x69,\n\t0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x62, 0x69, 0x6c,\n\t0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x14, 0x0a, 0x12, 0x4c,\n\t0x69, 0x73, 0x74, 0x54, 0x68, 0x72, 0x65, 0x61, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x22, 0x4b, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x68, 0x72, 0x65, 0x61, 0x64, 0x73,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,\n\t0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,\n\t0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x65, 0x61, 0x64,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x26,\n\t0x0a, 0x10, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x4c, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72,\n\t0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,\n\t0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,\n\t0x13, 0x0a, 0x05, 0x69, 0x73, 0x5f, 0x64, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04,\n\t0x69, 0x73, 0x44, 0x62, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x75, 0x70, 0x4d, 0x61, 0x69,\n\t0x6c, 0x62, 0x6f, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x35, 0x0a, 0x14, 0x53,\n\t0x65, 0x74, 0x75, 0x70, 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78, 0x5f, 0x69,\n\t0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x6d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78,\n\t0x49, 0x64, 0x22, 0xa7, 0x01, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e,\n\t0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,\n\t0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x72,\n\t0x6f, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,\n\t0x74, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c,\n\t0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,\n\t0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,\n\t0x74, 0x75, 0x72, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,\n\t0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,\n\t0x64, 0x41, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07,\n\t0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x65, 0x61, 0x64, 0x41, 0x74, 0x22, 0xa4, 0x01, 0x0a,\n\t0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x02, 0x74, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6f, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x74, 0x6f, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x21, 0x0a, 0x0c,\n\t0x74, 0x6f, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01,\n\t0x28, 0x0c, 0x52, 0x0b, 0x74, 0x6f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,\n\t0x1b, 0x0a, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x04, 0x20, 0x01,\n\t0x28, 0x0c, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x25, 0x0a, 0x0e,\n\t0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x05,\n\t0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74,\n\t0x75, 0x72, 0x65, 0x22, 0x44, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,\n\t0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72,\n\t0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,\n\t0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x80, 0x02, 0x0a, 0x18, 0x4c, 0x69,\n\t0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x65, 0x6b, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x65, 0x65, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,\n\t0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,\n\t0x12, 0x1c, 0x0a, 0x09, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20,\n\t0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x46,\n\t0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c,\n\t0x69, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73,\n\t0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06,\n\t0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x54, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,\n\t0x12, 0x16, 0x0a, 0x12, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,\n\t0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x53, 0x54, 0x41, 0x54,\n\t0x55, 0x53, 0x5f, 0x41, 0x4c, 0x4c, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x54, 0x41, 0x54,\n\t0x55, 0x53, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x54, 0x41,\n\t0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x52, 0x45, 0x41, 0x44, 0x10, 0x03, 0x22, 0x4f, 0x0a, 0x19,\n\t0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,\n\t0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x6d, 0x65, 0x73,\n\t0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73,\n\t0x61, 0x67, 0x65, 0x52, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x22, 0x64, 0x0a,\n\t0x1a, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73,\n\t0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73,\n\t0x65, 0x65, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x65, 0x65, 0x6b, 0x12,\n\t0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,\n\t0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x69,\n\t0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x64,\n\t0x69, 0x6e, 0x67, 0x22, 0x51, 0x0a, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x62,\n\t0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01,\n\t0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x08, 0x6d, 0x65,\n\t0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x22, 0x29, 0x0a, 0x17, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e,\n\t0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,\n\t0x64, 0x22, 0x33, 0x0a, 0x18, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65,\n\t0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17, 0x0a,\n\t0x07, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,\n\t0x72, 0x65, 0x61, 0x64, 0x41, 0x74, 0x22, 0x2b, 0x0a, 0x19, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,\n\t0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x02, 0x69, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x62,\n\t0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x2d, 0x0a, 0x1b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6e, 0x74, 0x62,\n\t0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,\n\t0x22, 0x1e, 0x0a, 0x1c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6e, 0x74, 0x62, 0x6f,\n\t0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x22, 0x23, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x95, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61,\n\t0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x63, 0x75,\n\t0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x61,\n\t0x70, 0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47,\n\t0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x52, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x3f, 0x0a, 0x05,\n\t0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x61, 0x70,\n\t0x69, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65,\n\t0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x22, 0x13, 0x0a,\n\t0x11, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x4c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,\n\t0x73, 0x74, 0x22, 0x4e, 0x0a, 0x12, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x4c, 0x73,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x08, 0x61, 0x72, 0x63, 0x68,\n\t0x69, 0x76, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x4c, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x08, 0x61, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x73, 0x22, 0x5b, 0x0a, 0x0d, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x4c, 0x73, 0x49,\n\t0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x38, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20,\n\t0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x4c, 0x73, 0x49, 0x74, 0x65,\n\t0x6d, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22,\n\t0x30, 0x0a, 0x15, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x4c, 0x73, 0x49, 0x74, 0x65, 0x6d,\n\t0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x65, 0x61, 0x6c,\n\t0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x64, 0x65, 0x61, 0x6c, 0x49,\n\t0x64, 0x22, 0x44, 0x0a, 0x15, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x49, 0x6d, 0x70,\n\t0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69,\n\t0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08,\n\t0x64, 0x65, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x04, 0x52, 0x07,\n\t0x64, 0x65, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x73, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x1b, 0x0a, 0x19, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72,\n\t0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x63,\n\t0x0a, 0x1a, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76,\n\t0x61, 0x6c, 0x4c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x45, 0x0a, 0x0a,\n\t0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61,\n\t0x6c, 0x4c, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76,\n\t0x61, 0x6c, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x16, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52,\n\t0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x0e,\n\t0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10,\n\t0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69, 0x64,\n\t0x12, 0x3d, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e,\n\t0x32, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61,\n\t0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,\n\t0x23, 0x0a, 0x0d, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x61, 0x75, 0x73, 0x65,\n\t0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x43,\n\t0x61, 0x75, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,\n\t0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,\n\t0x64, 0x41, 0x74, 0x12, 0x4f, 0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65,\n\t0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,\n\t0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52,\n\t0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x65,\n\t0x77, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x42, 0x75,\n\t0x63, 0x6b, 0x65, 0x74, 0x42, 0x10, 0x0a, 0x0e, 0x72, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61,\n\t0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x4f, 0x0a, 0x1f, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x73, 0x49, 0x74, 0x65, 0x6d,\n\t0x4e, 0x65, 0x77, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,\n\t0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a,\n\t0x07, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,\n\t0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x22, 0x2d, 0x0a, 0x1b, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x6f, 0x67, 0x73, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x30, 0x0a, 0x1c, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x6f, 0x67, 0x73, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x2a, 0xac, 0x02, 0x0a, 0x16, 0x41, 0x72, 0x63,\n\t0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61,\n\t0x74, 0x75, 0x73, 0x12, 0x28, 0x0a, 0x24, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x52,\n\t0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f,\n\t0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x23, 0x0a,\n\t0x1f, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56,\n\t0x41, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x51, 0x55, 0x45, 0x55, 0x45, 0x44,\n\t0x10, 0x01, 0x12, 0x26, 0x0a, 0x22, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x52, 0x45,\n\t0x54, 0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x45,\n\t0x58, 0x45, 0x43, 0x55, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x29, 0x0a, 0x25, 0x41, 0x52,\n\t0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x5f,\n\t0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x54, 0x4f, 0x42, 0x55, 0x43,\n\t0x4b, 0x45, 0x54, 0x10, 0x03, 0x12, 0x23, 0x0a, 0x1f, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45,\n\t0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55,\n\t0x53, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x04, 0x12, 0x25, 0x0a, 0x21, 0x41, 0x52,\n\t0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x5f,\n\t0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x45, 0x44, 0x10,\n\t0x05, 0x12, 0x24, 0x0a, 0x20, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x5f, 0x52, 0x45, 0x54,\n\t0x52, 0x49, 0x45, 0x56, 0x41, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x53, 0x55,\n\t0x43, 0x43, 0x45, 0x53, 0x53, 0x10, 0x06, 0x32, 0xf1, 0x0a, 0x0a, 0x0a, 0x41, 0x50, 0x49, 0x53,\n\t0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72,\n\t0x65, 0x61, 0x64, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74,\n\t0x54, 0x68, 0x72, 0x65, 0x61, 0x64, 0x73, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,\n\t0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x68, 0x72, 0x65,\n\t0x61, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54,\n\t0x68, 0x72, 0x65, 0x61, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,\n\t0x12, 0x59, 0x0a, 0x0c, 0x53, 0x65, 0x74, 0x75, 0x70, 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78,\n\t0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x53, 0x65, 0x74, 0x75, 0x70, 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x74, 0x75, 0x70, 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f,\n\t0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x0b, 0x53,\n\t0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d,\n\t0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e,\n\t0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x65,\n\t0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x78,\n\t0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,\n\t0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x62,\n\t0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61,\n\t0x67, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a,\n\t0x13, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73,\n\t0x61, 0x67, 0x65, 0x73, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x62, 0x6f, 0x78,\n\t0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,\n\t0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61,\n\t0x67, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a,\n\t0x10, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,\n\t0x65, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61,\n\t0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e,\n\t0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e,\n\t0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,\n\t0x65, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73,\n\t0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x62, 0x6f, 0x78,\n\t0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,\n\t0x00, 0x12, 0x71, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6e, 0x74, 0x62,\n\t0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,\n\t0x53, 0x65, 0x6e, 0x74, 0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,\n\t0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6e, 0x74,\n\t0x62, 0x6f, 0x78, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,\n\t0x73, 0x65, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65,\n\t0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x0a, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x4c,\n\t0x73, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70,\n\t0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x4c, 0x73, 0x52, 0x65, 0x71, 0x75,\n\t0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64,\n\t0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x4c, 0x73, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0e, 0x41, 0x72, 0x63, 0x68,\n\t0x69, 0x76, 0x65, 0x73, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x73, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62,\n\t0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x73, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x12, 0x41, 0x72, 0x63,\n\t0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x73, 0x12,\n\t0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e,\n\t0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c,\n\t0x4c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e,\n\t0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x73, 0x52, 0x65, 0x73, 0x70,\n\t0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x73, 0x0a, 0x14, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76,\n\t0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x6f, 0x67, 0x73, 0x12, 0x2a,\n\t0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41,\n\t0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c,\n\t0x6f, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69,\n\t0x2e, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x52, 0x65, 0x74, 0x72, 0x69, 0x65, 0x76, 0x61, 0x6c, 0x4c, 0x6f, 0x67, 0x73, 0x52,\n\t0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x42, 0x2f, 0x5a, 0x2d, 0x67,\n\t0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c,\n\t0x65, 0x69, 0x6f, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x65, 0x2f, 0x76, 0x32, 0x2f, 0x61,\n\t0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x64, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72,\n\t0x6f, 0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_api_usersd_pb_usersd_proto_rawDescOnce sync.Once\n\tfile_api_usersd_pb_usersd_proto_rawDescData = file_api_usersd_pb_usersd_proto_rawDesc\n)\n\nfunc file_api_usersd_pb_usersd_proto_rawDescGZIP() []byte {\n\tfile_api_usersd_pb_usersd_proto_rawDescOnce.Do(func() {\n\t\tfile_api_usersd_pb_usersd_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_usersd_pb_usersd_proto_rawDescData)\n\t})\n\treturn file_api_usersd_pb_usersd_proto_rawDescData\n}\n\nvar file_api_usersd_pb_usersd_proto_enumTypes = make([]protoimpl.EnumInfo, 2)\nvar file_api_usersd_pb_usersd_proto_msgTypes = make([]protoimpl.MessageInfo, 33)\nvar file_api_usersd_pb_usersd_proto_goTypes = []interface{}{\n\t(ArchiveRetrievalStatus)(0),             // 0: api.usersd.pb.ArchiveRetrievalStatus\n\t(ListInboxMessagesRequest_Status)(0),    // 1: api.usersd.pb.ListInboxMessagesRequest.Status\n\t(*ListThreadsRequest)(nil),              // 2: api.usersd.pb.ListThreadsRequest\n\t(*ListThreadsResponse)(nil),             // 3: api.usersd.pb.ListThreadsResponse\n\t(*GetThreadRequest)(nil),                // 4: api.usersd.pb.GetThreadRequest\n\t(*GetThreadResponse)(nil),               // 5: api.usersd.pb.GetThreadResponse\n\t(*SetupMailboxRequest)(nil),             // 6: api.usersd.pb.SetupMailboxRequest\n\t(*SetupMailboxResponse)(nil),            // 7: api.usersd.pb.SetupMailboxResponse\n\t(*Message)(nil),                         // 8: api.usersd.pb.Message\n\t(*SendMessageRequest)(nil),              // 9: api.usersd.pb.SendMessageRequest\n\t(*SendMessageResponse)(nil),             // 10: api.usersd.pb.SendMessageResponse\n\t(*ListInboxMessagesRequest)(nil),        // 11: api.usersd.pb.ListInboxMessagesRequest\n\t(*ListInboxMessagesResponse)(nil),       // 12: api.usersd.pb.ListInboxMessagesResponse\n\t(*ListSentboxMessagesRequest)(nil),      // 13: api.usersd.pb.ListSentboxMessagesRequest\n\t(*ListSentboxMessagesResponse)(nil),     // 14: api.usersd.pb.ListSentboxMessagesResponse\n\t(*ReadInboxMessageRequest)(nil),         // 15: api.usersd.pb.ReadInboxMessageRequest\n\t(*ReadInboxMessageResponse)(nil),        // 16: api.usersd.pb.ReadInboxMessageResponse\n\t(*DeleteInboxMessageRequest)(nil),       // 17: api.usersd.pb.DeleteInboxMessageRequest\n\t(*DeleteInboxMessageResponse)(nil),      // 18: api.usersd.pb.DeleteInboxMessageResponse\n\t(*DeleteSentboxMessageRequest)(nil),     // 19: api.usersd.pb.DeleteSentboxMessageRequest\n\t(*DeleteSentboxMessageResponse)(nil),    // 20: api.usersd.pb.DeleteSentboxMessageResponse\n\t(*GetUsageRequest)(nil),                 // 21: api.usersd.pb.GetUsageRequest\n\t(*GetUsageResponse)(nil),                // 22: api.usersd.pb.GetUsageResponse\n\t(*ArchivesLsRequest)(nil),               // 23: api.usersd.pb.ArchivesLsRequest\n\t(*ArchivesLsResponse)(nil),              // 24: api.usersd.pb.ArchivesLsResponse\n\t(*ArchiveLsItem)(nil),                   // 25: api.usersd.pb.ArchiveLsItem\n\t(*ArchiveLsItemMetadata)(nil),           // 26: api.usersd.pb.ArchiveLsItemMetadata\n\t(*ArchivesImportRequest)(nil),           // 27: api.usersd.pb.ArchivesImportRequest\n\t(*ArchivesImportResponse)(nil),          // 28: api.usersd.pb.ArchivesImportResponse\n\t(*ArchiveRetrievalLsRequest)(nil),       // 29: api.usersd.pb.ArchiveRetrievalLsRequest\n\t(*ArchiveRetrievalLsResponse)(nil),      // 30: api.usersd.pb.ArchiveRetrievalLsResponse\n\t(*ArchiveRetrievalLsItem)(nil),          // 31: api.usersd.pb.ArchiveRetrievalLsItem\n\t(*ArchiveRetrievalLsItemNewBucket)(nil), // 32: api.usersd.pb.ArchiveRetrievalLsItemNewBucket\n\t(*ArchiveRetrievalLogsRequest)(nil),     // 33: api.usersd.pb.ArchiveRetrievalLogsRequest\n\t(*ArchiveRetrievalLogsResponse)(nil),    // 34: api.usersd.pb.ArchiveRetrievalLogsResponse\n\t(*pb.GetCustomerResponse)(nil),          // 35: api.billingd.pb.GetCustomerResponse\n\t(*pb.GetCustomerUsageResponse)(nil),     // 36: api.billingd.pb.GetCustomerUsageResponse\n}\nvar file_api_usersd_pb_usersd_proto_depIdxs = []int32{\n\t5,  // 0: api.usersd.pb.ListThreadsResponse.list:type_name -> api.usersd.pb.GetThreadResponse\n\t1,  // 1: api.usersd.pb.ListInboxMessagesRequest.status:type_name -> api.usersd.pb.ListInboxMessagesRequest.Status\n\t8,  // 2: api.usersd.pb.ListInboxMessagesResponse.messages:type_name -> api.usersd.pb.Message\n\t8,  // 3: api.usersd.pb.ListSentboxMessagesResponse.messages:type_name -> api.usersd.pb.Message\n\t35, // 4: api.usersd.pb.GetUsageResponse.customer:type_name -> api.billingd.pb.GetCustomerResponse\n\t36, // 5: api.usersd.pb.GetUsageResponse.usage:type_name -> api.billingd.pb.GetCustomerUsageResponse\n\t25, // 6: api.usersd.pb.ArchivesLsResponse.archives:type_name -> api.usersd.pb.ArchiveLsItem\n\t26, // 7: api.usersd.pb.ArchiveLsItem.info:type_name -> api.usersd.pb.ArchiveLsItemMetadata\n\t31, // 8: api.usersd.pb.ArchiveRetrievalLsResponse.retrievals:type_name -> api.usersd.pb.ArchiveRetrievalLsItem\n\t0,  // 9: api.usersd.pb.ArchiveRetrievalLsItem.status:type_name -> api.usersd.pb.ArchiveRetrievalStatus\n\t32, // 10: api.usersd.pb.ArchiveRetrievalLsItem.new_bucket:type_name -> api.usersd.pb.ArchiveRetrievalLsItemNewBucket\n\t4,  // 11: api.usersd.pb.APIService.GetThread:input_type -> api.usersd.pb.GetThreadRequest\n\t2,  // 12: api.usersd.pb.APIService.ListThreads:input_type -> api.usersd.pb.ListThreadsRequest\n\t6,  // 13: api.usersd.pb.APIService.SetupMailbox:input_type -> api.usersd.pb.SetupMailboxRequest\n\t9,  // 14: api.usersd.pb.APIService.SendMessage:input_type -> api.usersd.pb.SendMessageRequest\n\t11, // 15: api.usersd.pb.APIService.ListInboxMessages:input_type -> api.usersd.pb.ListInboxMessagesRequest\n\t13, // 16: api.usersd.pb.APIService.ListSentboxMessages:input_type -> api.usersd.pb.ListSentboxMessagesRequest\n\t15, // 17: api.usersd.pb.APIService.ReadInboxMessage:input_type -> api.usersd.pb.ReadInboxMessageRequest\n\t17, // 18: api.usersd.pb.APIService.DeleteInboxMessage:input_type -> api.usersd.pb.DeleteInboxMessageRequest\n\t19, // 19: api.usersd.pb.APIService.DeleteSentboxMessage:input_type -> api.usersd.pb.DeleteSentboxMessageRequest\n\t21, // 20: api.usersd.pb.APIService.GetUsage:input_type -> api.usersd.pb.GetUsageRequest\n\t23, // 21: api.usersd.pb.APIService.ArchivesLs:input_type -> api.usersd.pb.ArchivesLsRequest\n\t27, // 22: api.usersd.pb.APIService.ArchivesImport:input_type -> api.usersd.pb.ArchivesImportRequest\n\t29, // 23: api.usersd.pb.APIService.ArchiveRetrievalLs:input_type -> api.usersd.pb.ArchiveRetrievalLsRequest\n\t33, // 24: api.usersd.pb.APIService.ArchiveRetrievalLogs:input_type -> api.usersd.pb.ArchiveRetrievalLogsRequest\n\t5,  // 25: api.usersd.pb.APIService.GetThread:output_type -> api.usersd.pb.GetThreadResponse\n\t3,  // 26: api.usersd.pb.APIService.ListThreads:output_type -> api.usersd.pb.ListThreadsResponse\n\t7,  // 27: api.usersd.pb.APIService.SetupMailbox:output_type -> api.usersd.pb.SetupMailboxResponse\n\t10, // 28: api.usersd.pb.APIService.SendMessage:output_type -> api.usersd.pb.SendMessageResponse\n\t12, // 29: api.usersd.pb.APIService.ListInboxMessages:output_type -> api.usersd.pb.ListInboxMessagesResponse\n\t14, // 30: api.usersd.pb.APIService.ListSentboxMessages:output_type -> api.usersd.pb.ListSentboxMessagesResponse\n\t16, // 31: api.usersd.pb.APIService.ReadInboxMessage:output_type -> api.usersd.pb.ReadInboxMessageResponse\n\t18, // 32: api.usersd.pb.APIService.DeleteInboxMessage:output_type -> api.usersd.pb.DeleteInboxMessageResponse\n\t20, // 33: api.usersd.pb.APIService.DeleteSentboxMessage:output_type -> api.usersd.pb.DeleteSentboxMessageResponse\n\t22, // 34: api.usersd.pb.APIService.GetUsage:output_type -> api.usersd.pb.GetUsageResponse\n\t24, // 35: api.usersd.pb.APIService.ArchivesLs:output_type -> api.usersd.pb.ArchivesLsResponse\n\t28, // 36: api.usersd.pb.APIService.ArchivesImport:output_type -> api.usersd.pb.ArchivesImportResponse\n\t30, // 37: api.usersd.pb.APIService.ArchiveRetrievalLs:output_type -> api.usersd.pb.ArchiveRetrievalLsResponse\n\t34, // 38: api.usersd.pb.APIService.ArchiveRetrievalLogs:output_type -> api.usersd.pb.ArchiveRetrievalLogsResponse\n\t25, // [25:39] is the sub-list for method output_type\n\t11, // [11:25] is the sub-list for method input_type\n\t11, // [11:11] is the sub-list for extension type_name\n\t11, // [11:11] is the sub-list for extension extendee\n\t0,  // [0:11] is the sub-list for field type_name\n}\n\nfunc init() { file_api_usersd_pb_usersd_proto_init() }\nfunc file_api_usersd_pb_usersd_proto_init() {\n\tif File_api_usersd_pb_usersd_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListThreadsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListThreadsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetThreadRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetThreadResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetupMailboxRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SetupMailboxResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Message); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SendMessageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*SendMessageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListInboxMessagesRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListInboxMessagesResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListSentboxMessagesRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ListSentboxMessagesResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ReadInboxMessageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ReadInboxMessageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DeleteInboxMessageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DeleteInboxMessageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DeleteSentboxMessageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DeleteSentboxMessageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetUsageRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetUsageResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchivesLsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchivesLsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveLsItem); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveLsItemMetadata); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchivesImportRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchivesImportResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRetrievalLsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRetrievalLsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRetrievalLsItem); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRetrievalLsItemNewBucket); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRetrievalLogsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_api_usersd_pb_usersd_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*ArchiveRetrievalLogsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\tfile_api_usersd_pb_usersd_proto_msgTypes[29].OneofWrappers = []interface{}{\n\t\t(*ArchiveRetrievalLsItem_NewBucket)(nil),\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_api_usersd_pb_usersd_proto_rawDesc,\n\t\t\tNumEnums:      2,\n\t\t\tNumMessages:   33,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_api_usersd_pb_usersd_proto_goTypes,\n\t\tDependencyIndexes: file_api_usersd_pb_usersd_proto_depIdxs,\n\t\tEnumInfos:         file_api_usersd_pb_usersd_proto_enumTypes,\n\t\tMessageInfos:      file_api_usersd_pb_usersd_proto_msgTypes,\n\t}.Build()\n\tFile_api_usersd_pb_usersd_proto = out.File\n\tfile_api_usersd_pb_usersd_proto_rawDesc = nil\n\tfile_api_usersd_pb_usersd_proto_goTypes = nil\n\tfile_api_usersd_pb_usersd_proto_depIdxs = nil\n}\n\n// Reference imports to suppress errors if they are not otherwise used.\nvar _ context.Context\nvar _ grpc.ClientConnInterface\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\nconst _ = grpc.SupportPackageIsVersion6\n\n// APIServiceClient is the client API for APIService service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.\ntype APIServiceClient interface {\n\tGetThread(ctx context.Context, in *GetThreadRequest, opts ...grpc.CallOption) (*GetThreadResponse, error)\n\tListThreads(ctx context.Context, in *ListThreadsRequest, opts ...grpc.CallOption) (*ListThreadsResponse, error)\n\tSetupMailbox(ctx context.Context, in *SetupMailboxRequest, opts ...grpc.CallOption) (*SetupMailboxResponse, error)\n\tSendMessage(ctx context.Context, in *SendMessageRequest, opts ...grpc.CallOption) (*SendMessageResponse, error)\n\tListInboxMessages(ctx context.Context, in *ListInboxMessagesRequest, opts ...grpc.CallOption) (*ListInboxMessagesResponse, error)\n\tListSentboxMessages(ctx context.Context, in *ListSentboxMessagesRequest, opts ...grpc.CallOption) (*ListSentboxMessagesResponse, error)\n\tReadInboxMessage(ctx context.Context, in *ReadInboxMessageRequest, opts ...grpc.CallOption) (*ReadInboxMessageResponse, error)\n\tDeleteInboxMessage(ctx context.Context, in *DeleteInboxMessageRequest, opts ...grpc.CallOption) (*DeleteInboxMessageResponse, error)\n\tDeleteSentboxMessage(ctx context.Context, in *DeleteSentboxMessageRequest, opts ...grpc.CallOption) (*DeleteSentboxMessageResponse, error)\n\tGetUsage(ctx context.Context, in *GetUsageRequest, opts ...grpc.CallOption) (*GetUsageResponse, error)\n\t// Archives Import\n\tArchivesLs(ctx context.Context, in *ArchivesLsRequest, opts ...grpc.CallOption) (*ArchivesLsResponse, error)\n\tArchivesImport(ctx context.Context, in *ArchivesImportRequest, opts ...grpc.CallOption) (*ArchivesImportResponse, error)\n\t// Archive Retrieval\n\tArchiveRetrievalLs(ctx context.Context, in *ArchiveRetrievalLsRequest, opts ...grpc.CallOption) (*ArchiveRetrievalLsResponse, error)\n\tArchiveRetrievalLogs(ctx context.Context, in *ArchiveRetrievalLogsRequest, opts ...grpc.CallOption) (APIService_ArchiveRetrievalLogsClient, error)\n}\n\ntype aPIServiceClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient {\n\treturn &aPIServiceClient{cc}\n}\n\nfunc (c *aPIServiceClient) GetThread(ctx context.Context, in *GetThreadRequest, opts ...grpc.CallOption) (*GetThreadResponse, error) {\n\tout := new(GetThreadResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/GetThread\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListThreads(ctx context.Context, in *ListThreadsRequest, opts ...grpc.CallOption) (*ListThreadsResponse, error) {\n\tout := new(ListThreadsResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ListThreads\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) SetupMailbox(ctx context.Context, in *SetupMailboxRequest, opts ...grpc.CallOption) (*SetupMailboxResponse, error) {\n\tout := new(SetupMailboxResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/SetupMailbox\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) SendMessage(ctx context.Context, in *SendMessageRequest, opts ...grpc.CallOption) (*SendMessageResponse, error) {\n\tout := new(SendMessageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/SendMessage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListInboxMessages(ctx context.Context, in *ListInboxMessagesRequest, opts ...grpc.CallOption) (*ListInboxMessagesResponse, error) {\n\tout := new(ListInboxMessagesResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ListInboxMessages\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ListSentboxMessages(ctx context.Context, in *ListSentboxMessagesRequest, opts ...grpc.CallOption) (*ListSentboxMessagesResponse, error) {\n\tout := new(ListSentboxMessagesResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ListSentboxMessages\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ReadInboxMessage(ctx context.Context, in *ReadInboxMessageRequest, opts ...grpc.CallOption) (*ReadInboxMessageResponse, error) {\n\tout := new(ReadInboxMessageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ReadInboxMessage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) DeleteInboxMessage(ctx context.Context, in *DeleteInboxMessageRequest, opts ...grpc.CallOption) (*DeleteInboxMessageResponse, error) {\n\tout := new(DeleteInboxMessageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/DeleteInboxMessage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) DeleteSentboxMessage(ctx context.Context, in *DeleteSentboxMessageRequest, opts ...grpc.CallOption) (*DeleteSentboxMessageResponse, error) {\n\tout := new(DeleteSentboxMessageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/DeleteSentboxMessage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) GetUsage(ctx context.Context, in *GetUsageRequest, opts ...grpc.CallOption) (*GetUsageResponse, error) {\n\tout := new(GetUsageResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/GetUsage\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ArchivesLs(ctx context.Context, in *ArchivesLsRequest, opts ...grpc.CallOption) (*ArchivesLsResponse, error) {\n\tout := new(ArchivesLsResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ArchivesLs\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ArchivesImport(ctx context.Context, in *ArchivesImportRequest, opts ...grpc.CallOption) (*ArchivesImportResponse, error) {\n\tout := new(ArchivesImportResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ArchivesImport\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ArchiveRetrievalLs(ctx context.Context, in *ArchiveRetrievalLsRequest, opts ...grpc.CallOption) (*ArchiveRetrievalLsResponse, error) {\n\tout := new(ArchiveRetrievalLsResponse)\n\terr := c.cc.Invoke(ctx, \"/api.usersd.pb.APIService/ArchiveRetrievalLs\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *aPIServiceClient) ArchiveRetrievalLogs(ctx context.Context, in *ArchiveRetrievalLogsRequest, opts ...grpc.CallOption) (APIService_ArchiveRetrievalLogsClient, error) {\n\tstream, err := c.cc.NewStream(ctx, &_APIService_serviceDesc.Streams[0], \"/api.usersd.pb.APIService/ArchiveRetrievalLogs\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tx := &aPIServiceArchiveRetrievalLogsClient{stream}\n\tif err := x.ClientStream.SendMsg(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := x.ClientStream.CloseSend(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn x, nil\n}\n\ntype APIService_ArchiveRetrievalLogsClient interface {\n\tRecv() (*ArchiveRetrievalLogsResponse, error)\n\tgrpc.ClientStream\n}\n\ntype aPIServiceArchiveRetrievalLogsClient struct {\n\tgrpc.ClientStream\n}\n\nfunc (x *aPIServiceArchiveRetrievalLogsClient) Recv() (*ArchiveRetrievalLogsResponse, error) {\n\tm := new(ArchiveRetrievalLogsResponse)\n\tif err := x.ClientStream.RecvMsg(m); err != nil {\n\t\treturn nil, err\n\t}\n\treturn m, nil\n}\n\n// APIServiceServer is the server API for APIService service.\ntype APIServiceServer interface {\n\tGetThread(context.Context, *GetThreadRequest) (*GetThreadResponse, error)\n\tListThreads(context.Context, *ListThreadsRequest) (*ListThreadsResponse, error)\n\tSetupMailbox(context.Context, *SetupMailboxRequest) (*SetupMailboxResponse, error)\n\tSendMessage(context.Context, *SendMessageRequest) (*SendMessageResponse, error)\n\tListInboxMessages(context.Context, *ListInboxMessagesRequest) (*ListInboxMessagesResponse, error)\n\tListSentboxMessages(context.Context, *ListSentboxMessagesRequest) (*ListSentboxMessagesResponse, error)\n\tReadInboxMessage(context.Context, *ReadInboxMessageRequest) (*ReadInboxMessageResponse, error)\n\tDeleteInboxMessage(context.Context, *DeleteInboxMessageRequest) (*DeleteInboxMessageResponse, error)\n\tDeleteSentboxMessage(context.Context, *DeleteSentboxMessageRequest) (*DeleteSentboxMessageResponse, error)\n\tGetUsage(context.Context, *GetUsageRequest) (*GetUsageResponse, error)\n\t// Archives Import\n\tArchivesLs(context.Context, *ArchivesLsRequest) (*ArchivesLsResponse, error)\n\tArchivesImport(context.Context, *ArchivesImportRequest) (*ArchivesImportResponse, error)\n\t// Archive Retrieval\n\tArchiveRetrievalLs(context.Context, *ArchiveRetrievalLsRequest) (*ArchiveRetrievalLsResponse, error)\n\tArchiveRetrievalLogs(*ArchiveRetrievalLogsRequest, APIService_ArchiveRetrievalLogsServer) error\n}\n\n// UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.\ntype UnimplementedAPIServiceServer struct {\n}\n\nfunc (*UnimplementedAPIServiceServer) GetThread(context.Context, *GetThreadRequest) (*GetThreadResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetThread not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListThreads(context.Context, *ListThreadsRequest) (*ListThreadsResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListThreads not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) SetupMailbox(context.Context, *SetupMailboxRequest) (*SetupMailboxResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method SetupMailbox not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) SendMessage(context.Context, *SendMessageRequest) (*SendMessageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method SendMessage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListInboxMessages(context.Context, *ListInboxMessagesRequest) (*ListInboxMessagesResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListInboxMessages not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ListSentboxMessages(context.Context, *ListSentboxMessagesRequest) (*ListSentboxMessagesResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ListSentboxMessages not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ReadInboxMessage(context.Context, *ReadInboxMessageRequest) (*ReadInboxMessageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ReadInboxMessage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) DeleteInboxMessage(context.Context, *DeleteInboxMessageRequest) (*DeleteInboxMessageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method DeleteInboxMessage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) DeleteSentboxMessage(context.Context, *DeleteSentboxMessageRequest) (*DeleteSentboxMessageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method DeleteSentboxMessage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) GetUsage(context.Context, *GetUsageRequest) (*GetUsageResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetUsage not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ArchivesLs(context.Context, *ArchivesLsRequest) (*ArchivesLsResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ArchivesLs not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ArchivesImport(context.Context, *ArchivesImportRequest) (*ArchivesImportResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ArchivesImport not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ArchiveRetrievalLs(context.Context, *ArchiveRetrievalLsRequest) (*ArchiveRetrievalLsResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method ArchiveRetrievalLs not implemented\")\n}\nfunc (*UnimplementedAPIServiceServer) ArchiveRetrievalLogs(*ArchiveRetrievalLogsRequest, APIService_ArchiveRetrievalLogsServer) error {\n\treturn status.Errorf(codes.Unimplemented, \"method ArchiveRetrievalLogs not implemented\")\n}\n\nfunc RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer) {\n\ts.RegisterService(&_APIService_serviceDesc, srv)\n}\n\nfunc _APIService_GetThread_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetThreadRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetThread(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/GetThread\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetThread(ctx, req.(*GetThreadRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListThreads_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListThreadsRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListThreads(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ListThreads\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListThreads(ctx, req.(*ListThreadsRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_SetupMailbox_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SetupMailboxRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).SetupMailbox(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/SetupMailbox\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).SetupMailbox(ctx, req.(*SetupMailboxRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_SendMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(SendMessageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).SendMessage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/SendMessage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).SendMessage(ctx, req.(*SendMessageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListInboxMessages_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListInboxMessagesRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListInboxMessages(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ListInboxMessages\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListInboxMessages(ctx, req.(*ListInboxMessagesRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ListSentboxMessages_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ListSentboxMessagesRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ListSentboxMessages(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ListSentboxMessages\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ListSentboxMessages(ctx, req.(*ListSentboxMessagesRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ReadInboxMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ReadInboxMessageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ReadInboxMessage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ReadInboxMessage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ReadInboxMessage(ctx, req.(*ReadInboxMessageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_DeleteInboxMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(DeleteInboxMessageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).DeleteInboxMessage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/DeleteInboxMessage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).DeleteInboxMessage(ctx, req.(*DeleteInboxMessageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_DeleteSentboxMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(DeleteSentboxMessageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).DeleteSentboxMessage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/DeleteSentboxMessage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).DeleteSentboxMessage(ctx, req.(*DeleteSentboxMessageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_GetUsage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetUsageRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).GetUsage(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/GetUsage\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).GetUsage(ctx, req.(*GetUsageRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ArchivesLs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ArchivesLsRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ArchivesLs(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ArchivesLs\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ArchivesLs(ctx, req.(*ArchivesLsRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ArchivesImport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ArchivesImportRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ArchivesImport(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ArchivesImport\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ArchivesImport(ctx, req.(*ArchivesImportRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ArchiveRetrievalLs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(ArchiveRetrievalLsRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(APIServiceServer).ArchiveRetrievalLs(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/api.usersd.pb.APIService/ArchiveRetrievalLs\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(APIServiceServer).ArchiveRetrievalLs(ctx, req.(*ArchiveRetrievalLsRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _APIService_ArchiveRetrievalLogs_Handler(srv interface{}, stream grpc.ServerStream) error {\n\tm := new(ArchiveRetrievalLogsRequest)\n\tif err := stream.RecvMsg(m); err != nil {\n\t\treturn err\n\t}\n\treturn srv.(APIServiceServer).ArchiveRetrievalLogs(m, &aPIServiceArchiveRetrievalLogsServer{stream})\n}\n\ntype APIService_ArchiveRetrievalLogsServer interface {\n\tSend(*ArchiveRetrievalLogsResponse) error\n\tgrpc.ServerStream\n}\n\ntype aPIServiceArchiveRetrievalLogsServer struct {\n\tgrpc.ServerStream\n}\n\nfunc (x *aPIServiceArchiveRetrievalLogsServer) Send(m *ArchiveRetrievalLogsResponse) error {\n\treturn x.ServerStream.SendMsg(m)\n}\n\nvar _APIService_serviceDesc = grpc.ServiceDesc{\n\tServiceName: \"api.usersd.pb.APIService\",\n\tHandlerType: (*APIServiceServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"GetThread\",\n\t\t\tHandler:    _APIService_GetThread_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListThreads\",\n\t\t\tHandler:    _APIService_ListThreads_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"SetupMailbox\",\n\t\t\tHandler:    _APIService_SetupMailbox_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"SendMessage\",\n\t\t\tHandler:    _APIService_SendMessage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListInboxMessages\",\n\t\t\tHandler:    _APIService_ListInboxMessages_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ListSentboxMessages\",\n\t\t\tHandler:    _APIService_ListSentboxMessages_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ReadInboxMessage\",\n\t\t\tHandler:    _APIService_ReadInboxMessage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"DeleteInboxMessage\",\n\t\t\tHandler:    _APIService_DeleteInboxMessage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"DeleteSentboxMessage\",\n\t\t\tHandler:    _APIService_DeleteSentboxMessage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetUsage\",\n\t\t\tHandler:    _APIService_GetUsage_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ArchivesLs\",\n\t\t\tHandler:    _APIService_ArchivesLs_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ArchivesImport\",\n\t\t\tHandler:    _APIService_ArchivesImport_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"ArchiveRetrievalLs\",\n\t\t\tHandler:    _APIService_ArchiveRetrievalLs_Handler,\n\t\t},\n\t},\n\tStreams: []grpc.StreamDesc{\n\t\t{\n\t\t\tStreamName:    \"ArchiveRetrievalLogs\",\n\t\t\tHandler:       _APIService_ArchiveRetrievalLogs_Handler,\n\t\t\tServerStreams: true,\n\t\t},\n\t},\n\tMetadata: \"api/usersd/pb/usersd.proto\",\n}\n"
  },
  {
    "path": "api/usersd/pb/usersd.proto",
    "content": "syntax = \"proto3\";\npackage api.usersd.pb;\noption go_package = \"github.com/textileio/textile/v2/api/usersd/pb\";\n\nimport \"api/billingd/pb/billingd.proto\";\n\nmessage ListThreadsRequest {}\n\nmessage ListThreadsResponse {\n    repeated GetThreadResponse list = 1;\n}\n\nmessage GetThreadRequest {\n    string name = 1;\n}\n\nmessage GetThreadResponse {\n    bytes id = 1;\n    string name = 2;\n    bool is_db = 3;\n}\n\nmessage SetupMailboxRequest {}\n\nmessage SetupMailboxResponse {\n    bytes mailbox_id = 1;\n}\n\nmessage Message {\n    string id = 1;\n    string from = 2;\n    string to = 3;\n    bytes body = 4;\n    bytes signature = 5;\n    int64 created_at = 6;\n    int64 read_at = 7;\n}\n\nmessage SendMessageRequest {\n    string to = 1;\n    bytes to_body = 2;\n    bytes to_signature = 3;\n    bytes from_body = 4;\n    bytes from_signature = 5;\n}\n\nmessage SendMessageResponse {\n    string id = 1;\n    int64 created_at = 2;\n}\n\nmessage ListInboxMessagesRequest {\n    string seek = 1;\n    int64 limit = 2;\n    bool ascending = 3;\n    Status status = 4;\n\n    enum Status {\n        STATUS_UNSPECIFIED = 0;\n        STATUS_ALL = 1;\n        STATUS_READ = 2;\n        STATUS_UNREAD = 3;\n    }\n}\n\nmessage ListInboxMessagesResponse {\n    repeated Message messages = 1;\n}\n\nmessage ListSentboxMessagesRequest {\n    string seek = 1;\n    int64 limit = 2;\n    bool ascending = 3;\n}\n\nmessage ListSentboxMessagesResponse {\n    repeated Message messages = 1;\n}\n\nmessage ReadInboxMessageRequest {\n    string id = 1;\n}\n\nmessage ReadInboxMessageResponse {\n    int64 read_at = 1;\n}\n\nmessage DeleteInboxMessageRequest {\n    string id = 1;\n}\n\nmessage DeleteInboxMessageResponse {}\n\nmessage DeleteSentboxMessageRequest {\n    string id = 1;\n}\n\nmessage DeleteSentboxMessageResponse {}\n\nmessage GetUsageRequest {\n    string key = 1;\n}\n\nmessage GetUsageResponse {\n    api.billingd.pb.GetCustomerResponse customer = 1;\n    api.billingd.pb.GetCustomerUsageResponse usage = 2;\n}\n\nmessage ArchivesLsRequest {\n}\n\nmessage ArchivesLsResponse {\n    repeated ArchiveLsItem archives = 1;\n}\n\nmessage ArchiveLsItem {\n    string cid = 1;\n    repeated ArchiveLsItemMetadata info = 2;\n}\n\nmessage ArchiveLsItemMetadata {\n    uint64 deal_id = 1;\n}\n\nmessage ArchivesImportRequest {\n    string cid = 1;\n    repeated uint64 deal_ids = 2;\n}\n\nmessage ArchivesImportResponse {}\n\nmessage ArchiveRetrievalLsRequest {}\n\nmessage ArchiveRetrievalLsResponse {\n    repeated ArchiveRetrievalLsItem retrievals = 1;\n}\n\nmessage ArchiveRetrievalLsItem {\n\tstring id = 1;\n\tstring cid = 2;\n\tArchiveRetrievalStatus status = 3;\n\tstring failure_cause = 4;\n\tint64 created_at = 5;\n\n\toneof retrieval_type {\n\t\tArchiveRetrievalLsItemNewBucket new_bucket = 6;\n\t}\n}\n\nmessage ArchiveRetrievalLsItemNewBucket {\n\tstring name = 1;\n\tbool private = 2;\n}\n\nenum ArchiveRetrievalStatus {\n    ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED = 0;\n    ARCHIVE_RETRIEVAL_STATUS_QUEUED = 1;\n    ARCHIVE_RETRIEVAL_STATUS_EXECUTING = 2;\n    ARCHIVE_RETRIEVAL_STATUS_MOVETOBUCKET = 3;\n    ARCHIVE_RETRIEVAL_STATUS_FAILED = 4;\n    ARCHIVE_RETRIEVAL_STATUS_CANCELED = 5;\n    ARCHIVE_RETRIEVAL_STATUS_SUCCESS = 6;\n}\n\nmessage ArchiveRetrievalLogsRequest {\n    string id = 1;\n}\n\nmessage ArchiveRetrievalLogsResponse {\n    string msg = 1;\n}\n\nservice APIService {\n    rpc GetThread(GetThreadRequest) returns (GetThreadResponse) {}\n    rpc ListThreads(ListThreadsRequest) returns (ListThreadsResponse) {}\n\n    rpc SetupMailbox(SetupMailboxRequest) returns (SetupMailboxResponse) {}\n    rpc SendMessage(SendMessageRequest) returns (SendMessageResponse) {}\n    rpc ListInboxMessages(ListInboxMessagesRequest) returns (ListInboxMessagesResponse) {}\n    rpc ListSentboxMessages(ListSentboxMessagesRequest) returns (ListSentboxMessagesResponse) {}\n    rpc ReadInboxMessage(ReadInboxMessageRequest) returns (ReadInboxMessageResponse) {}\n    rpc DeleteInboxMessage(DeleteInboxMessageRequest) returns (DeleteInboxMessageResponse) {}\n    rpc DeleteSentboxMessage(DeleteSentboxMessageRequest) returns (DeleteSentboxMessageResponse) {}\n\n    rpc GetUsage(GetUsageRequest) returns (GetUsageResponse) {}\n\n    // Archives Import\n    rpc ArchivesLs(ArchivesLsRequest) returns (ArchivesLsResponse) {}\n    rpc ArchivesImport(ArchivesImportRequest) returns (ArchivesImportResponse) {}\n\n    // Archive Retrieval\n    rpc ArchiveRetrievalLs(ArchiveRetrievalLsRequest) returns (ArchiveRetrievalLsResponse){}\n    rpc ArchiveRetrievalLogs(ArchiveRetrievalLogsRequest) returns (stream ArchiveRetrievalLogsResponse) {}\n}\n"
  },
  {
    "path": "api/usersd/service.go",
    "content": "package usersd\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"encoding/base64\"\n\t\"errors\"\n\t\"fmt\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tulid \"github.com/oklog/ulid/v2\"\n\tcoredb \"github.com/textileio/go-threads/core/db\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\tbilling \"github.com/textileio/textile/v2/api/billingd/client\"\n\tpb \"github.com/textileio/textile/v2/api/usersd/pb\"\n\t\"github.com/textileio/textile/v2/buckets/archive/retrieval\"\n\t\"github.com/textileio/textile/v2/mail\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\ttdb \"github.com/textileio/textile/v2/threaddb\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\nvar log = logging.Logger(\"usersapi\")\n\ntype Service struct {\n\tCollections     *mdb.Collections\n\tMail            *tdb.Mail\n\tBillingClient   *billing.Client\n\tFilRetrieval    *retrieval.FilRetrieval\n\tPowergateClient *pow.Client\n}\n\nfunc (s *Service) GetThread(ctx context.Context, req *pb.GetThreadRequest) (*pb.GetThreadResponse, error) {\n\tlog.Debugf(\"received get thread request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tthrd, err := s.Collections.Threads.GetByName(ctx, req.Name, account.Owner().Key)\n\tif err != nil {\n\t\tif errors.Is(err, mongo.ErrNoDocuments) {\n\t\t\treturn nil, status.Error(codes.NotFound, \"Thread not found\")\n\t\t}\n\t\treturn nil, err\n\t}\n\treturn &pb.GetThreadResponse{\n\t\tId:   thrd.ID.Bytes(),\n\t\tName: thrd.Name,\n\t\tIsDb: thrd.IsDB,\n\t}, nil\n}\n\nfunc (s *Service) ListThreads(ctx context.Context, _ *pb.ListThreadsRequest) (*pb.ListThreadsResponse, error) {\n\tlog.Debugf(\"received list threads request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tlist, err := s.Collections.Threads.ListByOwner(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treply := &pb.ListThreadsResponse{\n\t\tList: make([]*pb.GetThreadResponse, len(list)),\n\t}\n\tfor i, t := range list {\n\t\treply.List[i] = &pb.GetThreadResponse{\n\t\t\tId:   t.ID.Bytes(),\n\t\t\tName: t.Name,\n\t\t\tIsDb: t.IsDB,\n\t\t}\n\t}\n\treturn reply, nil\n}\n\nconst (\n\tdefaultMessagePageSize = 100\n\tmaxMessagePageSize     = 10000\n\tminMessageReadAt       = float64(0)\n)\n\nvar (\n\t// ErrMailboxNotFound indicates that a mailbox has not been setup for a mail sender/receiver.\n\tErrMailboxNotFound = errors.New(\"mail not found\")\n)\n\nfunc (s *Service) SetupMailbox(ctx context.Context, _ *pb.SetupMailboxRequest) (*pb.SetupMailboxResponse, error) {\n\tlog.Debugf(\"received setup mailbox request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbox, err := s.getOrCreateMailbox(ctx, account.Owner().Key, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.SetupMailboxResponse{\n\t\tMailboxId: box.Bytes(),\n\t}, nil\n}\n\nfunc (s *Service) SendMessage(ctx context.Context, req *pb.SendMessageRequest) (*pb.SendMessageResponse, error) {\n\tlog.Debugf(\"received send message request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tok, err := account.Owner().Key.Verify(req.ToBody, req.ToSignature)\n\tif !ok || err != nil {\n\t\treturn nil, status.Error(codes.Unauthenticated, \"Bad message signature\")\n\t}\n\tok, err = account.Owner().Key.Verify(req.FromBody, req.FromSignature)\n\tif !ok || err != nil {\n\t\treturn nil, status.Error(codes.Unauthenticated, \"Bad message signature\")\n\t}\n\n\tto := &thread.Libp2pPubKey{}\n\tif err := to.UnmarshalString(req.To); err != nil {\n\t\treturn nil, status.Error(codes.FailedPrecondition, \"Invalid public key\")\n\t}\n\tinbox, err := s.getMailbox(ctx, to)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsentbox, err := s.getMailbox(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tmsgID := coredb.NewInstanceID().String()\n\tnow := time.Now().UnixNano()\n\tfrom := account.Owner().Key\n\ttoMsg := tdb.InboxMessage{\n\t\tID:        msgID,\n\t\tFrom:      from.String(),\n\t\tTo:        to.String(),\n\t\tBody:      base64.StdEncoding.EncodeToString(req.ToBody),\n\t\tSignature: base64.StdEncoding.EncodeToString(req.ToSignature),\n\t\tCreatedAt: now,\n\t}\n\tif _, err := s.Mail.Inbox.Create(ctx, inbox, toMsg, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\tfromMsg := tdb.SentboxMessage{\n\t\tID:        msgID,\n\t\tFrom:      from.String(),\n\t\tTo:        to.String(),\n\t\tBody:      base64.StdEncoding.EncodeToString(req.FromBody),\n\t\tSignature: base64.StdEncoding.EncodeToString(req.FromSignature),\n\t\tCreatedAt: now,\n\t}\n\tif _, err := s.Mail.Sentbox.Create(ctx, sentbox, fromMsg, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.SendMessageResponse{\n\t\tId:        msgID,\n\t\tCreatedAt: now,\n\t}, nil\n}\n\nfunc (s *Service) ListInboxMessages(ctx context.Context, req *pb.ListInboxMessagesRequest) (*pb.ListInboxMessagesResponse, error) {\n\tlog.Debugf(\"received list inbox messages request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbox, err := s.getMailbox(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tquery, err := getMailboxQuery(req.Seek, req.Limit, req.Ascending, req.Status)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tres, err := s.Mail.Inbox.List(ctx, box, query, &tdb.InboxMessage{}, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlist := res.([]*tdb.InboxMessage)\n\tpblist := make([]*pb.Message, len(list))\n\tfor i, m := range list {\n\t\tpblist[i], err = inboxMessageToPb(m)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &pb.ListInboxMessagesResponse{Messages: pblist}, nil\n}\n\nfunc (s *Service) ListSentboxMessages(ctx context.Context, req *pb.ListSentboxMessagesRequest) (*pb.ListSentboxMessagesResponse, error) {\n\tlog.Debugf(\"received list sentbox messages request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbox, err := s.getMailbox(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tquery, err := getMailboxQuery(req.Seek, req.Limit, req.Ascending, pb.ListInboxMessagesRequest_STATUS_ALL)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tres, err := s.Mail.Sentbox.List(ctx, box, query, &tdb.SentboxMessage{}, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlist := res.([]*tdb.SentboxMessage)\n\tpblist := make([]*pb.Message, len(list))\n\tfor i, m := range list {\n\t\tpblist[i], err = sentboxMessageToPb(m)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &pb.ListSentboxMessagesResponse{Messages: pblist}, nil\n}\n\nfunc inboxMessageToPb(m *tdb.InboxMessage) (*pb.Message, error) {\n\tbody, err := base64.StdEncoding.DecodeString(m.Body)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsig, err := base64.StdEncoding.DecodeString(m.Signature)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.Message{\n\t\tId:        m.ID,\n\t\tFrom:      m.From,\n\t\tTo:        m.To,\n\t\tBody:      body,\n\t\tSignature: sig,\n\t\tCreatedAt: m.CreatedAt,\n\t\tReadAt:    m.ReadAt,\n\t}, nil\n}\n\nfunc sentboxMessageToPb(m *tdb.SentboxMessage) (*pb.Message, error) {\n\tbody, err := base64.StdEncoding.DecodeString(m.Body)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsig, err := base64.StdEncoding.DecodeString(m.Signature)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.Message{\n\t\tId:        m.ID,\n\t\tFrom:      m.From,\n\t\tTo:        m.To,\n\t\tBody:      body,\n\t\tSignature: sig,\n\t\tCreatedAt: m.CreatedAt,\n\t}, nil\n}\n\nfunc getMailboxQuery(seek string, limit int64, asc bool, stat pb.ListInboxMessagesRequest_Status) (q *db.Query, err error) {\n\tif asc {\n\t\tq = db.OrderByID()\n\t\tif seek != \"\" {\n\t\t\tq.SeekID(coredb.InstanceID(seek))\n\t\t}\n\t} else {\n\t\tq = db.OrderByIDDesc()\n\t\tif seek == \"\" {\n\t\t\tseek = ulid.MustNew(ulid.MaxTime(), rand.Reader).String()\n\t\t}\n\t\tq.SeekID(coredb.InstanceID(seek))\n\t}\n\tif limit == 0 {\n\t\tlimit = defaultMessagePageSize\n\t} else if limit > maxMessagePageSize {\n\t\tlimit = maxMessagePageSize\n\t}\n\tq.LimitTo(int(limit))\n\tswitch stat {\n\tcase pb.ListInboxMessagesRequest_STATUS_ALL:\n\tcase pb.ListInboxMessagesRequest_STATUS_UNSPECIFIED:\n\t\tbreak\n\tcase pb.ListInboxMessagesRequest_STATUS_READ:\n\t\tq.And(\"read_at\").Gt(minMessageReadAt)\n\tcase pb.ListInboxMessagesRequest_STATUS_UNREAD:\n\t\tq.And(\"read_at\").Eq(minMessageReadAt)\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unknown message status: %v\", stat.String())\n\t}\n\treturn q, nil\n}\n\nfunc (s *Service) ReadInboxMessage(ctx context.Context, req *pb.ReadInboxMessageRequest) (*pb.ReadInboxMessageResponse, error) {\n\tlog.Debugf(\"received read inbox message request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbox, err := s.getMailbox(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tmsg := &tdb.InboxMessage{}\n\terr = s.Mail.Inbox.Get(ctx, box, req.Id, msg, tdb.WithToken(dbToken))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tmsg.ReadAt = time.Now().UnixNano()\n\tif err := s.Mail.Inbox.Save(ctx, box, msg, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.ReadInboxMessageResponse{\n\t\tReadAt: msg.ReadAt,\n\t}, nil\n}\n\nfunc (s *Service) DeleteInboxMessage(ctx context.Context, req *pb.DeleteInboxMessageRequest) (*pb.DeleteInboxMessageResponse, error) {\n\tlog.Debugf(\"received delete inbox message request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbox, err := s.getMailbox(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif err := s.Mail.Inbox.Delete(ctx, box, req.Id, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.DeleteInboxMessageResponse{}, nil\n}\n\nfunc (s *Service) DeleteSentboxMessage(ctx context.Context, req *pb.DeleteSentboxMessageRequest) (*pb.DeleteSentboxMessageResponse, error) {\n\tlog.Debugf(\"received delete sentbox message request\")\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tdbToken, _ := thread.TokenFromContext(ctx)\n\n\tbox, err := s.getMailbox(ctx, account.Owner().Key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif err := s.Mail.Sentbox.Delete(ctx, box, req.Id, tdb.WithToken(dbToken)); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.DeleteSentboxMessageResponse{}, nil\n}\n\nfunc (s *Service) GetUsage(ctx context.Context, req *pb.GetUsageRequest) (*pb.GetUsageResponse, error) {\n\tlog.Debugf(\"received get usage request\")\n\n\tif s.BillingClient == nil {\n\t\treturn nil, fmt.Errorf(\"billing is not enabled\")\n\t}\n\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tvar key, parentKey thread.PubKey\n\tif req.Key != \"\" {\n\t\tk := &thread.Libp2pPubKey{}\n\t\tif err := k.UnmarshalString(req.Key); err != nil {\n\t\t\treturn nil, status.Error(codes.FailedPrecondition, \"Invalid public key\")\n\t\t}\n\t\tkey = k\n\t\tparentKey = account.Owner().Key\n\t} else {\n\t\tkey = account.Owner().Key\n\t}\n\tcus, err := s.BillingClient.GetCustomer(ctx, key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif parentKey != nil && cus.ParentKey != parentKey.String() {\n\t\treturn nil, status.Error(codes.NotFound, \"User not found\")\n\t}\n\tusage, err := s.BillingClient.GetCustomerUsage(ctx, key)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.GetUsageResponse{\n\t\tCustomer: cus,\n\t\tUsage:    usage,\n\t}, nil\n}\n\nfunc (s *Service) getMailbox(ctx context.Context, key thread.PubKey) (thread.ID, error) {\n\tthrd, err := s.Collections.Threads.GetByName(ctx, mail.ThreadName, key)\n\tif err != nil {\n\t\tif errors.Is(err, mongo.ErrNoDocuments) {\n\t\t\treturn thread.Undef, status.Error(codes.FailedPrecondition, ErrMailboxNotFound.Error())\n\t\t}\n\t\treturn thread.Undef, err\n\t}\n\treturn thrd.ID, nil\n}\n\nfunc (s *Service) getOrCreateMailbox(ctx context.Context, key thread.PubKey, opts ...tdb.Option) (thread.ID, error) {\n\tid, err := s.Mail.NewMailbox(ctx, opts...)\n\tif errors.Is(err, tdb.ErrMailboxExists) {\n\t\tthrd, err := s.Collections.Threads.GetByName(ctx, mail.ThreadName, key)\n\t\tif err != nil {\n\t\t\treturn thread.Undef, err\n\t\t}\n\t\treturn thrd.ID, nil\n\t} else if err != nil {\n\t\treturn thread.Undef, err\n\t}\n\treturn id, nil\n}\n\n// ArchiveRetrievalLs lists existing retrievals for the account.\nfunc (s *Service) ArchiveRetrievalLs(ctx context.Context, _ *pb.ArchiveRetrievalLsRequest) (*pb.ArchiveRetrievalLsResponse, error) {\n\taccount, _ := mdb.AccountFromContext(ctx)\n\towner := account.Owner().Key\n\n\trs, err := s.FilRetrieval.GetAllByAccount(owner.String())\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"listing retrievals: %s\", err)\n\t}\n\n\tres := &pb.ArchiveRetrievalLsResponse{\n\t\tRetrievals: make([]*pb.ArchiveRetrievalLsItem, len(rs)),\n\t}\n\tfor i, r := range rs {\n\t\tres.Retrievals[i] = &pb.ArchiveRetrievalLsItem{\n\t\t\tId:           r.JobID,\n\t\t\tCid:          r.Cid.String(),\n\t\t\tStatus:       toPbRetrievalStatus(r.Status),\n\t\t\tFailureCause: r.FailureCause,\n\t\t\tCreatedAt:    r.CreatedAt,\n\t\t}\n\t\tswitch r.Type {\n\t\tcase retrieval.TypeNewBucket:\n\t\t\trt := &pb.ArchiveRetrievalLsItem_NewBucket{\n\t\t\t\tNewBucket: &pb.ArchiveRetrievalLsItemNewBucket{\n\t\t\t\t\tName:    r.Name,\n\t\t\t\t\tPrivate: r.Private,\n\t\t\t\t},\n\t\t\t}\n\t\t\tres.Retrievals[i].RetrievalType = rt\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"unkown retrieval type\")\n\t\t}\n\t}\n\n\treturn res, nil\n}\n\n// ArchivesLs lists all known archives for an account.\nfunc (s *Service) ArchivesLs(ctx context.Context, _ *pb.ArchivesLsRequest) (*pb.ArchivesLsResponse, error) {\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tif account.Owner().PowInfo == nil {\n\t\treturn nil, fmt.Errorf(\"no powergate info associated with account\")\n\t}\n\n\tctx = context.WithValue(ctx, pow.AuthKey, account.Owner().PowInfo.Token)\n\tr, err := s.PowergateClient.Data.CidSummary(ctx)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting archived cids: %s\", err)\n\t}\n\n\tres := &pb.ArchivesLsResponse{\n\t\tArchives: make([]*pb.ArchiveLsItem, len(r.CidSummary)),\n\t}\n\tfor i, cs := range r.CidSummary {\n\t\tci, err := s.PowergateClient.Data.CidInfo(ctx, cs.Cid)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"getting cid info: %s\", err)\n\t\t}\n\t\tif ci.CidInfo.CurrentStorageInfo == nil {\n\t\t\tcontinue\n\t\t}\n\t\tprops := ci.CidInfo.CurrentStorageInfo.Cold.Filecoin.Proposals\n\t\tali := &pb.ArchiveLsItem{\n\t\t\tCid:  cs.Cid,\n\t\t\tInfo: make([]*pb.ArchiveLsItemMetadata, len(props)),\n\t\t}\n\t\tres.Archives[i] = ali\n\n\t\tfor j, p := range props {\n\t\t\tali.Info[j] = &pb.ArchiveLsItemMetadata{\n\t\t\t\tDealId: uint64(p.DealId),\n\t\t\t}\n\t\t}\n\t}\n\n\treturn res, nil\n}\n\n// ArchivesImport imports Filecoin deals information for a Cid to the account.\nfunc (s *Service) ArchivesImport(ctx context.Context, req *pb.ArchivesImportRequest) (*pb.ArchivesImportResponse, error) {\n\taccount, _ := mdb.AccountFromContext(ctx)\n\tif account.Owner().PowInfo == nil {\n\t\treturn nil, fmt.Errorf(\"no powergate info associated with account\")\n\t}\n\n\tvar scfg *userPb.StorageConfig\n\n\tctx = context.WithValue(ctx, pow.AuthKey, account.Owner().PowInfo.Token)\n\tci, err := s.PowergateClient.Data.CidInfo(ctx, req.Cid)\n\tvar notFound bool\n\tif err != nil {\n\t\tsc, ok := status.FromError(err)\n\t\tif !ok || sc.Code() != codes.NotFound {\n\t\t\treturn nil, fmt.Errorf(\"getting current storage information: %s\", err)\n\t\t}\n\t\tnotFound = true\n\t}\n\n\t// If deal import is for a new Cid, just use the default Storage Config\n\t// with both storages disabled and without running any jobs: only deal importing.\n\tif notFound {\n\t\tdefConfRes, err := s.PowergateClient.StorageConfig.Default(ctx)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"getting default storage-config: %s\", err)\n\t\t}\n\t\tscfg = defConfRes.DefaultStorageConfig\n\t\tscfg.Cold.Enabled = false\n\t\tscfg.Hot.Enabled = false\n\n\t} else {\n\t\t// If deal import is to augment an existing Cid, just use the latest storage config.\n\t\t// A Job won't run anyway, so it would only import the deals.\n\t\tscfg = ci.CidInfo.LatestPushedStorageConfig\n\t}\n\n\tif _, err = s.PowergateClient.StorageConfig.Apply(\n\t\tctx,\n\t\treq.Cid,\n\t\tpow.WithStorageConfig(scfg),\n\t\tpow.WithOverride(true),\n\t\tpow.WithImportDealIDs(req.DealIds),\n\t\tpow.WithNoExec(true),\n\t); err != nil {\n\t\treturn nil, fmt.Errorf(\"importing deals: %s\", err)\n\t}\n\n\treturn &pb.ArchivesImportResponse{}, nil\n}\n\n// ArchiveRetrievalLogs prints the logs of a retrieval.\nfunc (s *Service) ArchiveRetrievalLogs(req *pb.ArchiveRetrievalLogsRequest, server pb.APIService_ArchiveRetrievalLogsServer) error {\n\taccount, _ := mdb.AccountFromContext(server.Context())\n\towner := account.Owner()\n\taccKey := owner.Key.String()\n\tpowToken := owner.PowInfo.Token\n\n\tvar err error\n\tctx, cancel := context.WithCancel(server.Context())\n\tdefer cancel()\n\tch := make(chan string)\n\tgo func() {\n\t\terr = s.FilRetrieval.Logs(ctx, accKey, req.Id, powToken, ch)\n\t\tclose(ch)\n\t}()\n\tfor s := range ch {\n\t\tif err := server.Send(&pb.ArchiveRetrievalLogsResponse{Msg: s}); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif err != nil {\n\t\treturn fmt.Errorf(\"watching retrieval logs: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc toPbRetrievalStatus(s retrieval.Status) pb.ArchiveRetrievalStatus {\n\tswitch s {\n\tcase retrieval.StatusQueued:\n\t\treturn pb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_QUEUED\n\tcase retrieval.StatusExecuting:\n\t\treturn pb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_EXECUTING\n\tcase retrieval.StatusMoveToBucket:\n\t\treturn pb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_MOVETOBUCKET\n\tcase retrieval.StatusSuccess:\n\t\treturn pb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_SUCCESS\n\tcase retrieval.StatusFailed:\n\t\treturn pb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_FAILED\n\tdefault:\n\t\treturn pb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED\n\t}\n}\n"
  },
  {
    "path": "buckets/archive/events.go",
    "content": "package archive\n\ntype TrackedJobType int\n\nconst (\n\tTrackedJobTypeArchive TrackedJobType = iota\n\tTrackedJobTypeRetrieval\n)\n\ntype TrackedJobStatus int\n\nconst (\n\tTrackedJobStatusQueued TrackedJobStatus = iota\n\tTrackedJobStatusExecuting\n\tTrackedJobStatusSuccess\n\tTrackedJobStatusFailed\n)\n\ntype JobEvent struct {\n\tJobID  string\n\tType   TrackedJobType\n\tStatus TrackedJobStatus\n\tAccKey string\n\n\t// Only set if Status=Failed\n\tFailureCause string\n}\n"
  },
  {
    "path": "buckets/archive/retrieval/retrieval.go",
    "content": "package retrieval\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"strconv\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/gogo/status\"\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/go-datastore\"\n\t\"github.com/ipfs/go-datastore/query\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets/archive\"\n\t\"google.golang.org/grpc/codes\"\n)\n\nconst (\n\tipfsAddTimeoutDefault       = 500 // seconds\n\tbuckCreationTimeout         = time.Minute * 30\n\tmaxConcurrentBucketCreation = 10\n)\n\nvar (\n\tlog = logging.Logger(\"fil-retrieval\")\n\n\tCITest = false\n)\n\n// BucketCreator provides creating bucket functionality.\ntype BucketCreator interface {\n\t// CreateBucket creates a bucket with the provided information.\n\tCreateBucket(ctx context.Context,\n\t\tthreadID thread.ID,\n\t\tthreadToken thread.Token,\n\t\tbuckName string,\n\t\tbuckPrivate bool,\n\t\tdataCid cid.Cid) error\n}\n\n// TrackerRegistrator manages retrieval Job tracking.\ntype TrackerRetrievalRegistrator interface {\n\t// TrackRetrieval tracks JobID job.\n\tTrackRetrieval(ctx context.Context, accKey, jobID, powToken string) error\n}\n\ntype Status int\n\nconst (\n\tStatusQueued Status = iota\n\tStatusExecuting\n\tStatusMoveToBucket\n\tStatusSuccess\n\tStatusFailed\n)\n\ntype Type int\n\nconst (\n\tTypeNewBucket Type = iota\n\tTypeExistingBucket\n)\n\ntype Retrieval struct {\n\tType         Type\n\tAccountKey   string\n\tPowToken     string\n\tJobID        string\n\tCid          cid.Cid\n\tSelector     string\n\tStatus       Status\n\tFailureCause string\n\tCreatedAt    int64\n\n\t// If Type == RetrievalTypeNewBucket\n\tDbID    thread.ID\n\tDbToken thread.Token\n\tName    string\n\tPrivate bool\n\n\t// If Type == RetrievalTypeExistingBucket\n\tBuckKey  string\n\tBuckPath string\n}\n\n// FilRetrieval manages Retrievals from Accounts in\n// go-datastore.\ntype FilRetrieval struct {\n\tds              datastore.TxnDatastore\n\tbc              BucketCreator\n\ttrr             TrackerRetrievalRegistrator\n\tpgc             *powc.Client\n\tjfe             <-chan archive.JobEvent\n\tinternalSession string\n\n\t// daemon vars\n\tlock       sync.Mutex\n\tstarted    bool\n\tdaemonWork chan struct{}\n\tctx        context.Context\n\tcancel     context.CancelFunc\n\tclosedChan chan struct{}\n\tclosed     bool\n}\n\nfunc NewFilRetrieval(\n\tds datastore.TxnDatastore,\n\tpgc *powc.Client,\n\ttrr TrackerRetrievalRegistrator,\n\tjfe <-chan archive.JobEvent,\n\tis string,\n) (*FilRetrieval, error) {\n\tctx, cancel := context.WithCancel(context.Background())\n\tfr := &FilRetrieval{\n\t\tds:  ds,\n\t\tpgc: pgc,\n\t\ttrr: trr,\n\t\tjfe: jfe,\n\n\t\tinternalSession: is,\n\n\t\tctx:        ctx,\n\t\tcancel:     cancel,\n\t\tclosedChan: make(chan struct{}),\n\t\tdaemonWork: make(chan struct{}, 1),\n\t}\n\n\treturn fr, nil\n}\n\nfunc (fr *FilRetrieval) SetBucketCreator(bc BucketCreator) {\n\tfr.lock.Lock()\n\tdefer fr.lock.Unlock()\n\n\tfr.bc = bc\n}\n\nfunc (fr *FilRetrieval) RunDaemon() {\n\tfr.lock.Lock()\n\tdefer fr.lock.Unlock()\n\n\tif !fr.started {\n\t\tgo fr.daemon()\n\t\tfr.started = true\n\t}\n}\n\n// CreateForNewBucket creates a queued Retrieval to bootstrap a new bucket\n// with the provided information, only if the retrieval succeeds.\nfunc (fr *FilRetrieval) CreateForNewBucket(\n\tctx context.Context,\n\taccKey string,\n\tdbID thread.ID,\n\tdbToken thread.Token,\n\tbuckName string,\n\tbuckPrivate bool,\n\tdataCid cid.Cid,\n\tpowToken string,\n) (string, error) {\n\tif powToken == \"\" {\n\t\treturn \"\", fmt.Errorf(\"powergate token can't be empty\")\n\t}\n\tif accKey == \"\" {\n\t\treturn \"\", fmt.Errorf(\"account key can't be empty\")\n\t}\n\n\tjobID, err := fr.createRetrieval(ctx, dataCid, accKey, powToken)\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"creating retrieval in Powergate: %s\", err)\n\t}\n\tr := Retrieval{\n\t\tType:       TypeNewBucket,\n\t\tAccountKey: accKey,\n\t\tPowToken:   powToken,\n\t\tJobID:      jobID,\n\t\tCid:        dataCid,\n\t\tSelector:   \"\",\n\t\tStatus:     StatusQueued,\n\t\tCreatedAt:  time.Now().Unix(),\n\n\t\tDbID:    dbID,\n\t\tDbToken: dbToken,\n\t\tName:    buckName,\n\t\tPrivate: buckPrivate,\n\t}\n\n\tif err := fr.save(nil, r); err != nil {\n\t\treturn \"\", fmt.Errorf(\"saving retrieval request: %s\", err)\n\t}\n\n\treturn jobID, nil\n}\n\nfunc (fr *FilRetrieval) createRetrieval(ctx context.Context, c cid.Cid, accKey, powToken string) (string, error) {\n\t// # Step 1.\n\t// Check that we have imported DealIDs for that Cid. Fail fast mechanism.\n\tctx = context.WithValue(ctx, pow.AuthKey, powToken)\n\tr, err := fr.pgc.StorageInfo.List(ctx, c.String())\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"getting archived cids: %s\", err)\n\t}\n\tif len(r.StorageInfo) == 0 {\n\t\treturn \"\", fmt.Errorf(\"no data is available for this cid\")\n\t}\n\tif len(r.StorageInfo[0].Cold.Filecoin.Proposals) == 0 {\n\t\treturn \"\", fmt.Errorf(\"there aren't known deals to retrieve from Filecoin\")\n\t}\n\n\t// # Step 2.\n\t// Check that hot-storage is disabled. If it's enabled, then this data\n\t// is already hot in Powergate. No need to do a Filecoin retrieval, we can\n\t// directly jump to the bucket creation. The data is already available in\n\t// go-ipfs from Powergate, which is connected with go-ipfs from Hub.\n\t// It can be considered that the data is in the ipfs network, so\n\t// a user can do `hub buck init --cid` (without --unfreeze).\n\t// In the future, we can think if make sense to let this case behave as an\n\t// automatic call to the above CLI command.\n\t//\n\t// Note (07/01/21): This is just for future coverage. In the current use-case\n\t// this situation shouldn't happen, since after unfreezing from Filecoin we\n\t// disable the Cid from hot-storage (so can be GCed). But if in a future use-case\n\t// we enable the user to keep that unfreezed data hot (for whatever reason),\n\t// then already leverage that future feature.\n\tif r.StorageInfo[0].Hot.Enabled {\n\t\treturn \"\", fmt.Errorf(\"no need to unfreeze, the cid is already in the IPFS network\")\n\t}\n\n\t// # Step 3.\n\t// At this point we're sure we have imported DealIDs and the data isn't\n\t// in hot-storage. We proceed to pushing the current StorageConfig with\n\t// hot-storage enabled. This will signal attempting a retrieval.\n\n\t// Get the base storage-config to modify.\n\tvar notFound bool\n\tci, err := fr.pgc.Data.CidInfo(ctx, c.String())\n\tif err != nil {\n\t\tsc, ok := status.FromError(err)\n\t\tif !ok || sc.Code() != codes.NotFound {\n\t\t\treturn \"\", fmt.Errorf(\"getting latest storage-config: %s\", err)\n\t\t}\n\t\tnotFound = true\n\t}\n\n\tvar sc *userPb.StorageConfig\n\tif notFound {\n\t\t// If no storage-config exist for this Cid, then the user\n\t\t// had Remove or Replace the storage-config.\n\t\t// We ne need a storage-config to do the retrieval, so we\n\t\t// use the default one but with cold-storage disabled as\n\t\t// to avoid any other cold-storage work that might be\n\t\t// enabled as default.\n\t\tdfsc, err := fr.pgc.StorageConfig.Default(ctx)\n\t\tif err != nil {\n\t\t\treturn \"\", fmt.Errorf(\"no storage-config, getting default: %s\", err)\n\t\t}\n\t\tsc := dfsc.DefaultStorageConfig\n\t\tsc.Cold.Enabled = false\n\t} else {\n\t\tsc = ci.CidInfo.LatestPushedStorageConfig\n\n\t\t// Cover some bad configuration.\n\t\tif sc.Hot.Ipfs.AddTimeout == 0 {\n\t\t\tsc.Hot.Ipfs.AddTimeout = ipfsAddTimeoutDefault\n\t\t}\n\t}\n\t// Flag only used for tests, to speed-up Filecoin unfreezing\n\t// behaviour. Under normal circumstances, this timeout would be\n\t// in the order of minutes to give a good chance of finding the\n\t// data in the IPFS network.\n\tif CITest { // Flag only used in CI test.\n\t\tsc.Hot.Ipfs.AddTimeout = 3\n\t}\n\tsc.Hot.Enabled = true\n\tsc.Hot.AllowUnfreeze = true\n\topts := []pow.ApplyOption{pow.WithStorageConfig(sc), pow.WithOverride(true)}\n\ta, err := fr.pgc.StorageConfig.Apply(ctx, c.String(), opts...)\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"applying new storage-config: %s\", err)\n\t}\n\tcreatedJobID := a.JobId\n\n\t// # Step 4.\n\t// Powergate is doing it's retrieval work. Register this JobID to track the\n\t// status in Tracker. When Tracker updates the Job status, it will signal in\n\t// fr.jfe channel, so the retrieval process can continue with further phases.\n\tif err := fr.trr.TrackRetrieval(ctx, accKey, createdJobID, powToken); err != nil {\n\t\treturn \"\", fmt.Errorf(\"tracking retrieval job: %s\", err)\n\t}\n\n\treturn createdJobID, nil\n}\n\n// Close closes gracefully all background work that\n// is being executed.\nfunc (fr *FilRetrieval) Close() error {\n\tif fr.closed {\n\t\treturn nil\n\t}\n\tfr.cancel()\n\t<-fr.closedChan\n\n\treturn nil\n}\n\nfunc (fr *FilRetrieval) daemon() {\n\tdefer func() { close(fr.closedChan) }()\n\n\tfr.daemonWork <- struct{}{} // Force first run.\n\tfor {\n\t\tselect {\n\t\tcase <-fr.ctx.Done():\n\t\t\treturn\n\t\tcase <-fr.daemonWork:\n\t\t\tfr.processQueuedMoveToBucket()\n\t\tcase ju := <-fr.jfe:\n\t\t\tif ju.Type != archive.TrackedJobTypeRetrieval {\n\t\t\t\tlog.Debugf(\"ignoring non-retrieval job status update\")\n\t\t\t\t// We're not interested in other jobs type events.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tlog.Debugf(\"processing retrieval job status update: %#v\", ju)\n\t\t\tfr.updateRetrievalStatus(ju)\n\t\t}\n\t}\n}\n\n// updateRetrievalStatus updates the status and continues with the process.\n// If `successful` is true, its status is changed to RetrievalStatusMoveToBucket,\n// and it continues with the process of copying the data to the bucket.\n// If `successful` is false, its status is changed to RetrievalStatusFailed and the\n// FailureCause is set to `failureCause`.\nfunc (fr *FilRetrieval) updateRetrievalStatus(ju archive.JobEvent) {\n\tr, err := fr.GetByAccountAndID(ju.AccKey, ju.JobID)\n\tif err != nil {\n\t\t// go-datastore is unavailable, which is a very rare-case.\n\t\t// keep a log fo what should have happened in case we wan't to recover this\n\t\t// case manually.\n\t\tlog.Errorf(\"getting retrieval from store (accKey:%s, jobID:%s, status:%d, failureCause: %s): %s\", ju.AccKey, ju.JobID, ju.Status, ju.FailureCause, err)\n\t\treturn\n\t}\n\n\tswitch ju.Status {\n\tcase archive.TrackedJobStatusFailed:\n\t\tr.Status = StatusFailed\n\t\tr.FailureCause = ju.FailureCause\n\tcase archive.TrackedJobStatusExecuting:\n\t\tr.Status = StatusExecuting\n\tcase archive.TrackedJobStatusSuccess:\n\t\tr.Status = StatusMoveToBucket\n\tdefault:\n\t\tlog.Errorf(\"unknown job event status: %d\", ju.Status)\n\t\treturn\n\t}\n\n\ttxn, err := fr.ds.NewTransaction(false)\n\tif err != nil {\n\t\tlog.Errorf(\"creating txn (accKey:%s, jobID:%s, status:%d, failureCause: %s): %s\", ju.AccKey, ju.JobID, ju.Status, ju.FailureCause, err)\n\t\treturn\n\t}\n\tdefer txn.Discard()\n\n\t// Save Retrieval with new status *and* insert this retrieval\n\t// in the special MoveToBucket stage, to jump into next phase\n\t// handeled by the daemon().\n\tif err := fr.save(txn, r); err != nil {\n\t\tlog.Errorf(\"saving to datastore (accKey:%s, jobID:%s, status:%d, failureCause: %s): %s\", ju.AccKey, ju.JobID, ju.Type, ju.FailureCause, err)\n\t\treturn\n\t}\n\n\t// If the retrieval switched to executing, or failed we're done.\n\tif ju.Status == archive.TrackedJobStatusSuccess {\n\t\t// We know the Cid data is available (Success), move to next phase to move the data\n\t\t// to the bucket. We do it in phases as to avoid failing all the retrieval if the process\n\t\t// crashes, or shutdowns. When is spinned up again, we can recover the process to move the data\n\t\t// to the bucket without having retrievals stuck or forcing the user to create a new retrieval\n\t\t// starting from zero.\n\t\t//\n\t\t// The daemon() will take these retrievals, and continue with the process. After it finishes,\n\t\t// it will be removed from the pending list (reached final status).\n\t\tkey := dsMoveToBucketQueueKey(ju.AccKey, ju.JobID)\n\t\tif err := txn.Put(key, []byte{}); err != nil {\n\t\t\tlog.Errorf(\"inserting into move-to-bucket queue (accKey:%s, jobID:%s, status:%d, failureCause: %s): %s\", ju.AccKey, ju.JobID, ju.Status, ju.FailureCause, err)\n\t\t\treturn\n\t\t}\n\t}\n\n\tif err := txn.Commit(); err != nil {\n\t\tlog.Errorf(\"commiting txn (accKey:%s, jobID:%s, type:%s, failureCause: %s): %s\", ju.AccKey, ju.JobID, ju.Type, ju.FailureCause, err)\n\t\treturn\n\t}\n\n\t// Signal daemon that new work exist.\n\tselect {\n\tcase fr.daemonWork <- struct{}{}:\n\tdefault:\n\t}\n}\n\nfunc (fr *FilRetrieval) processQueuedMoveToBucket() {\n\tprefixKey := dsMoveToBucketQueueBaseKey()\n\tq := query.Query{Prefix: prefixKey.String()}\n\tqr, err := fr.ds.Query(q)\n\tif err != nil {\n\t\tlog.Errorf(\"querying datastore for pending move-to-bucket: %s\", err)\n\t\treturn\n\t}\n\tdefer qr.Close()\n\n\tlim := make(chan struct{}, maxConcurrentBucketCreation)\n\tfor item := range qr.Next() {\n\t\tif item.Error != nil {\n\t\t\tlog.Errorf(\"getting next item result: %s\", err)\n\t\t\tbreak\n\t\t}\n\t\tlim <- struct{}{}\n\t\titem := item\n\t\tgo func() {\n\t\t\tdefer func() { <-lim }()\n\n\t\t\tkey := datastore.NewKey(item.Key)\n\t\t\taccKey := key.Namespaces()[2]\n\t\t\tjobID := key.Namespaces()[3]\n\n\t\t\tr, err := fr.GetByAccountAndID(accKey, jobID)\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"get move-to-bucket retrieval: %s\", err)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tif err := fr.processMoveToBucket(r); err != nil {\n\t\t\t\tlog.Errorf(\"processing move-to-bucket: %s\", err)\n\t\t\t\tr.Status = StatusFailed\n\t\t\t\tr.FailureCause = err.Error()\n\t\t\t} else {\n\t\t\t\tr.Status = StatusSuccess\n\t\t\t}\n\n\t\t\ttxn, err := fr.ds.NewTransaction(false)\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"creating txn: %s\", err)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tif err := fr.save(txn, r); err != nil {\n\t\t\t\ttxn.Discard()\n\t\t\t\tlog.Errorf(\"saving finalized status: %s\", err)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tif err := txn.Delete(key); err != nil {\n\t\t\t\ttxn.Discard()\n\t\t\t\tlog.Errorf(\"deleting from move-to-bucket queue: %s\", err)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tif err := txn.Commit(); err != nil {\n\t\t\t\ttxn.Discard()\n\t\t\t\tlog.Errorf(\"committing transaction: %s\", err)\n\t\t\t}\n\t\t}()\n\t}\n\n\tfor i := 0; i < maxConcurrentBucketCreation; i++ {\n\t\tlim <- struct{}{}\n\t}\n}\n\nfunc (fr *FilRetrieval) processMoveToBucket(r Retrieval) error {\n\tswitch r.Type {\n\tcase TypeNewBucket:\n\t\t// # Step 1.\n\t\t// Create the bucket.\n\t\tctx, cancel := context.WithTimeout(context.Background(), buckCreationTimeout)\n\t\tdefer cancel()\n\t\tctx = common.NewSessionContext(ctx, fr.internalSession)\n\t\tif err := fr.bc.CreateBucket(ctx, r.DbID, r.DbToken, r.Name, r.Private, r.Cid); err != nil {\n\t\t\treturn fmt.Errorf(\"creating bucket: %s\", err)\n\t\t}\n\n\t\t// # Step 2.\n\t\t// Now that the bucket was bootstraped, we're ready to push a new StorageConfig\n\t\t// disabling hot-storage. We don't need to hold the data in Powergate anymore.\n\t\tctx = context.WithValue(ctx, pow.AuthKey, r.PowToken)\n\t\tci, err := fr.pgc.Data.CidInfo(ctx, r.Cid.String())\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"getting latest storage-config: %s\", err)\n\t\t}\n\t\tsc := ci.CidInfo.LatestPushedStorageConfig\n\t\tsc.Hot.Enabled = false\n\t\tsc.Hot.AllowUnfreeze = false\n\t\topts := []pow.ApplyOption{pow.WithStorageConfig(sc), pow.WithOverride(true)}\n\t\t_, err = fr.pgc.StorageConfig.Apply(ctx, r.Cid.String(), opts...)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"applying new storage-config: %s\", err)\n\t\t}\n\n\t\t// Note: Notice that we're ignoring the JobID or error for Apply().\n\t\t// At this point the bucket was created, and all is fine for the user.\n\t\t//\n\t\t// Disabling hot-storage is rather uninteresting. It's a change that\n\t\t// will most probably be executed correctly since it's only unpinning from go-ipfs.\n\t\t// Even if this failed for whatever reason its kind of independant of\n\t\t// the retrieval success; since the bucket got created correctly and\n\t\t// all is ready now for the user.\n\t\t//\n\t\t// If we think this should require attention, we can create some\n\t\t// process thatkeeps track of that job in the background but completely\n\t\t// unattached from the retrieval use-case. This sounds more like something\n\t\t// that an external daemon should do.\n\tdefault:\n\t\treturn fmt.Errorf(\"retrieval type %d not implemented\", r.Type)\n\t}\n\n\treturn nil\n}\n\nfunc (fr *FilRetrieval) save(txn datastore.Txn, r Retrieval) error {\n\tif len(r.AccountKey) == 0 || len(r.JobID) == 0 {\n\t\treturn fmt.Errorf(\"account key and job-id can't be empty\")\n\t}\n\n\tkey := dsAccountAndIDKey(r.AccountKey, r.JobID)\n\tbuf, err := json.Marshal(r)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"mashaling retrieval: %s\", err)\n\t}\n\n\tdsWriter := datastore.Write(fr.ds)\n\tif txn != nil {\n\t\tdsWriter = txn\n\t}\n\n\tif err := dsWriter.Put(key, buf); err != nil {\n\t\treturn fmt.Errorf(\"saving in datastore: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc (fr *FilRetrieval) GetAllByAccount(accKey string) ([]Retrieval, error) {\n\tq := query.Query{\n\t\tPrefix: dsAccountKey(accKey).String(),\n\t}\n\tres, err := fr.ds.Query(q)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"initiating query: %s\", err)\n\t}\n\tdefer res.Close()\n\n\tvar ret []Retrieval\n\tfor it := range res.Next() {\n\t\tif it.Error != nil {\n\t\t\treturn nil, fmt.Errorf(\"fetching query item: %s\", it.Error)\n\t\t}\n\n\t\tr := Retrieval{}\n\t\tif err := json.Unmarshal(it.Entry.Value, &r); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"unmarshaling retrieval: %s\", err)\n\t\t}\n\n\t\tret = append(ret, r)\n\t}\n\n\treturn ret, nil\n}\n\nfunc (fr *FilRetrieval) GetByAccountAndID(accKey string, jobID string) (Retrieval, error) {\n\tkey := dsAccountAndIDKey(accKey, jobID)\n\n\tb, err := fr.ds.Get(key)\n\tif err != nil {\n\t\treturn Retrieval{}, fmt.Errorf(\"get retrieval: %s\", err)\n\t}\n\tr := Retrieval{}\n\tif err := json.Unmarshal(b, &r); err != nil {\n\t\treturn Retrieval{}, fmt.Errorf(\"unmarshaling retrieval: %s\", err)\n\t}\n\n\treturn r, nil\n}\n\nfunc (fr *FilRetrieval) Logs(ctx context.Context, accKey string, jobID string, powToken string, ch chan<- string) error {\n\tr, err := fr.GetByAccountAndID(accKey, jobID)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"get retrieval for logs: %s\", err)\n\t}\n\n\t// This should never happen. All retrievals are created with a JobID\n\t// value. Paranoid check.\n\tif len(r.JobID) == 0 {\n\t\treturn fmt.Errorf(\"job-id is empty\")\n\t}\n\n\tctx = context.WithValue(ctx, powc.AuthKey, powToken)\n\tctx, cancel := context.WithCancel(ctx)\n\tdefer cancel()\n\tlogsCh := make(chan powc.WatchLogsEvent)\n\tif err := fr.pgc.Data.WatchLogs(\n\t\tctx,\n\t\tlogsCh,\n\t\tr.Cid.String(),\n\t\tpowc.WithJobIDFilter(r.JobID),\n\t\tpowc.WithHistory(true),\n\t); err != nil {\n\t\treturn fmt.Errorf(\"start watching job logs: %s\", err)\n\t}\n\tfor le := range logsCh {\n\t\tif le.Err != nil {\n\t\t\treturn le.Err\n\t\t}\n\t\ttimestamp := time.Unix(le.Res.LogEntry.Time, 0)\n\t\tch <- fmt.Sprintf(\"%s: %s\", timestamp.Format(\"2006-01-02 15:04:05\"), le.Res.LogEntry.Message)\n\t}\n\treturn nil\n}\n\n// Datastore keys\n// Requests: /retrievals/<account-key>/<job-id> -> json(Request)\n// MoveToBucketQueue: /movetobucket/<timestamp>/<account-key>/<job-id> -> Empty\nfunc dsAccountKey(accKey string) datastore.Key {\n\treturn datastore.NewKey(\"retrieval\").ChildString(accKey)\n}\n\nfunc dsAccountAndIDKey(accKey, jobID string) datastore.Key {\n\treturn dsAccountKey(accKey).ChildString(jobID)\n}\n\nfunc dsMoveToBucketQueueBaseKey() datastore.Key {\n\tkey := datastore.NewKey(\"movetobucket\")\n\treturn key\n}\n\nfunc dsMoveToBucketQueueKey(accKey, jobID string) datastore.Key {\n\tkey := dsMoveToBucketQueueBaseKey()\n\tkey = key.ChildString(strconv.FormatInt(time.Now().Unix(), 10))\n\tkey = key.ChildString(accKey)\n\tkey = key.ChildString(jobID)\n\treturn key\n}\n"
  },
  {
    "path": "buckets/archive/tracker/tracker.go",
    "content": "package tracker\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/filecoin-project/go-fil-markets/storagemarket\"\n\t\"github.com/ipfs/go-cid\"\n\tlogger \"github.com/ipfs/go-log/v2\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets/archive\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\ttdb \"github.com/textileio/textile/v2/threaddb\"\n)\n\nconst (\n\t// maxConcurrent is the maximum amount of concurrent\n\t// tracked jobs that are processed in parallel.\n\tmaxConcurrent = 20\n)\n\nvar (\n\t// CheckInterval is the frequency in which new ready-to-check\n\t// tracked jobs are queried.\n\tCheckInterval = time.Second * 15\n\n\tlog = logger.Logger(\"job-tracker\")\n)\n\n// Tracker tracks Powergate jobs to their final status.\n// Tracked jobs corresponds to Archives or Retrievals. Depending\n// of the case, is what logic is applied when the Job reach a final\n// status.\ntype Tracker struct {\n\tlock   sync.Mutex\n\tctx    context.Context\n\tcancel context.CancelFunc\n\tclosed chan struct{}\n\n\tinternalSession string\n\tcolls           *mdb.Collections\n\tbuckets         *tdb.Buckets\n\tpgClient        *powc.Client\n\tjfe             chan<- archive.JobEvent\n\n\tjobPollIntervalSlow time.Duration\n\tjobPollIntervalFast time.Duration\n}\n\n// New returns a *Tracker.\nfunc New(\n\tcolls *mdb.Collections,\n\tbuckets *tdb.Buckets,\n\tpgClient *powc.Client,\n\tinternalSession string,\n\tjobPollIntervalSlow time.Duration,\n\tjobPollIntervalFast time.Duration,\n\tjfe chan<- archive.JobEvent,\n) (*Tracker, error) {\n\tctx, cancel := context.WithCancel(context.Background())\n\tt := &Tracker{\n\t\tctx:    ctx,\n\t\tcancel: cancel,\n\t\tclosed: make(chan struct{}),\n\n\t\tinternalSession: internalSession,\n\t\tcolls:           colls,\n\t\tbuckets:         buckets,\n\t\tpgClient:        pgClient,\n\t\tjfe:             jfe,\n\n\t\tjobPollIntervalSlow: jobPollIntervalSlow,\n\t\tjobPollIntervalFast: jobPollIntervalFast,\n\t}\n\tgo t.run()\n\n\treturn t, nil\n}\n\n// TrackArchive registers a new tracking for a Job, which corresponds\n// to an bucket Archive action.\nfunc (t *Tracker) TrackArchive(\n\tctx context.Context,\n\tdbID thread.ID,\n\tdbToken thread.Token,\n\tbucketKey string,\n\tjid string,\n\tbucketRoot cid.Cid,\n\towner thread.PubKey,\n) error {\n\tif err := t.colls.ArchiveTracking.CreateArchive(ctx, dbID, dbToken, bucketKey, jid, bucketRoot, owner); err != nil {\n\t\treturn fmt.Errorf(\"saving tracking archive information: %s\", err)\n\t}\n\treturn nil\n}\n\n// TrackRetrieval registers a new tracking for a Job, which corresponds\n// to a Retrieval.\nfunc (t *Tracker) TrackRetrieval(ctx context.Context, accKey, jobID, powToken string) error {\n\tif err := t.colls.ArchiveTracking.CreateRetrieval(ctx, accKey, jobID, powToken); err != nil {\n\t\treturn fmt.Errorf(\"saving tracking retrieval information: %s\", err)\n\t}\n\treturn nil\n}\n\n// Close closes the module gracefully.\nfunc (t *Tracker) Close() error {\n\tt.cancel()\n\t<-t.closed\n\n\treturn nil\n}\n\n// run is the main daemon logic. It checks on a defined interval\n// all non-finalized tracked jobs.\nfunc (t *Tracker) run() {\n\tdefer close(t.closed)\n\tfor {\n\t\tselect {\n\t\tcase <-t.ctx.Done():\n\t\t\tlog.Info(\"shutting down archive tracker daemon\")\n\t\t\treturn\n\t\tcase <-time.After(CheckInterval):\n\t\t\tt.checkPendingTrackings()\n\t\t}\n\t}\n}\n\n// checkPendingTrackings scans for pending trackings in `maxConcurrent`\n// batches until all are handeled.\nfunc (t *Tracker) checkPendingTrackings() {\n\tfor {\n\t\tarchives, err := t.colls.ArchiveTracking.GetReadyToCheck(t.ctx, maxConcurrent)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"getting tracked archives: %s\", err)\n\t\t\tbreak\n\t\t}\n\t\tlog.Debugf(\"got %d ready archives to check\", len(archives))\n\t\tif len(archives) == 0 {\n\t\t\tbreak\n\t\t}\n\t\tvar wg sync.WaitGroup\n\t\twg.Add(len(archives))\n\t\tfor _, a := range archives {\n\t\t\tgo func(a *mdb.TrackedJob) {\n\t\t\t\tdefer wg.Done()\n\n\t\t\t\tif err := t.processTrackedJob(a); err != nil {\n\t\t\t\t\tlog.Errorf(\"processing tracked archive: %s\", err)\n\t\t\t\t}\n\t\t\t}(a)\n\t\t}\n\t\twg.Wait()\n\t}\n}\n\n// processTrackedJob checks the status of the Job in Powergate, which\n// corresponds to bucket Archive action.\n//   - If Job was successful: change its status as to not be tracked anymore,\n//     and call corresponding logic depending if was created for an Archive or Retrieval.\n//   - If Job failed: change its status to not being tracked anymore.\n//   - If encountered a transient error: It will reschedule the tracked job to\n//     be evaluated in a further iteration.\nfunc (t *Tracker) processTrackedJob(a *mdb.TrackedJob) error {\n\tctx, cancel := context.WithTimeout(t.ctx, time.Second*10)\n\tdefer cancel()\n\n\tvar rescheduleDuration time.Duration\n\tvar finCause string\n\tvar err error\n\tswitch a.Type {\n\tcase archive.TrackedJobTypeArchive:\n\t\t// TODO: Unfortunately, we can't use a.PowToken to avoid\n\t\t// this `t.colls.Accounts` boilerplate to get it. Mostly\n\t\t// because a.PowToken was a field created when we implemented\n\t\t// Retrievals; so *most of existing mdb.TrackedJob* of type\n\t\t// TrackedJobTypeArchive have that value empty, but have\n\t\t// set `a.Owner`.\n\t\t//\n\t\t// Whenever we do the migration to go-datastore, we could include\n\t\t// populating all a.PowToken with using this below logic,\n\t\t// and after we know all `mdb.TrackedJob` have a.PowToken set,\n\t\t// we can delete this `t.cools.Accounts.Get` and just use\n\t\t// `a.PowToken` (as is used in `case mdb.TrackedJobTypeRetrieval`.\n\t\t// We should also change `Tracker.TrackArchive` to receive\n\t\t// a `PowToken string` instead of `owner thread.PublicKey`, and\n\t\t// just save `PowToken` to make `a.PowToken` available from that\n\t\t// moment forward.\n\t\taccount, err := t.colls.Accounts.Get(ctx, a.Owner)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"getting account: %s\", err)\n\t\t}\n\t\tif account.PowInfo == nil {\n\t\t\terr := t.colls.ArchiveTracking.Finalize(ctx, a.JID, \"no powergate info found\")\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"finalizing errored/rescheduled job tracking: %s\", err)\n\t\t\t}\n\t\t}\n\n\t\tctx = context.WithValue(ctx, powc.AuthKey, account.PowInfo.Token)\n\t\trescheduleDuration, finCause, err = t.trackArchiveProgress(\n\t\t\tctx,\n\t\t\ta.BucketKey,\n\t\t\ta.DbID,\n\t\t\ta.DbToken,\n\t\t\ta.JID,\n\t\t\ta.BucketRoot,\n\t\t)\n\tcase archive.TrackedJobTypeRetrieval:\n\t\tctx = context.WithValue(ctx, powc.AuthKey, a.PowToken)\n\t\trescheduleDuration, finCause, err = t.trackRetrievalProgress(ctx, a.AccKey, a.JID)\n\tdefault:\n\t\treturn fmt.Errorf(\"unkown tracked job type %d\", a.Type)\n\t}\n\n\tif err != nil || rescheduleDuration == 0 {\n\t\tif err != nil {\n\t\t\tfinCause = err.Error()\n\t\t}\n\t\tlog.Infof(\"tracking archive finalized with cause: %s\", finCause)\n\t\tif err := t.colls.ArchiveTracking.Finalize(ctx, a.JID, finCause); err != nil {\n\t\t\treturn fmt.Errorf(\"finalizing errored/rescheduled archive tracking: %s\", err)\n\t\t}\n\t}\n\tlog.Infof(\"rescheduling tracking archive with job %s, cause %s\", a.JID, finCause)\n\terr = t.colls.ArchiveTracking.Reschedule(ctx, a.JID, rescheduleDuration, finCause)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"rescheduling tracked archive: %s\", err)\n\t}\n\n\treturn nil\n}\n\n// trackRetrievalProgress queries the current archive status.\n// The return values have the same semantics as `trackArchiveProgress`\nfunc (t *Tracker) trackRetrievalProgress(ctx context.Context, accKey, jid string) (time.Duration, string, error) {\n\tlog.Debugf(\"querying archive status of job %s\", jid)\n\tdefer log.Debugf(\"finished querying retrieval status of job %s\", jid)\n\n\t// Step 1: Get the Job status.\n\tres, err := t.pgClient.StorageJobs.Get(ctx, jid)\n\tif err != nil {\n\t\t// if error specifies that the auth token isn't found, powergate must have been reset.\n\t\t// return the error as fatal so the archive will be untracked\n\t\tif strings.Contains(err.Error(), \"auth token not found\") {\n\t\t\treturn 0, \"\", err\n\t\t}\n\t\treturn t.jobPollIntervalSlow, fmt.Sprintf(\"getting current job %s for retrieval: %s\", jid, err), nil\n\t}\n\n\t// Step 2: Notify `JobEvent` listeners about job changing status.\n\tvar (\n\t\trescheduleDuration time.Duration\n\t\tmessage            string\n\t\tstatus             archive.TrackedJobStatus\n\t)\n\tswitch res.StorageJob.Status {\n\tcase userPb.JobStatus_JOB_STATUS_SUCCESS:\n\t\trescheduleDuration = 0\n\t\tmessage = \"success\"\n\t\tstatus = archive.TrackedJobStatusSuccess\n\tcase userPb.JobStatus_JOB_STATUS_CANCELED:\n\t\trescheduleDuration = 0\n\t\tmessage = \"canceled\"\n\t\tstatus = archive.TrackedJobStatusFailed\n\tcase userPb.JobStatus_JOB_STATUS_FAILED:\n\t\trescheduleDuration = 0\n\t\tmessage = \"job failed\"\n\t\tstatus = archive.TrackedJobStatusFailed\n\tcase userPb.JobStatus_JOB_STATUS_EXECUTING:\n\t\trescheduleDuration = t.jobPollIntervalFast\n\t\tmessage = \"non-final status\"\n\t\tstatus = archive.TrackedJobStatusExecuting\n\tdefault:\n\t\treturn 0, \"\", fmt.Errorf(\"unknown storage-job status: %d\", res.StorageJob.Status)\n\t}\n\n\tt.jfe <- archive.JobEvent{\n\t\tJobID:        jid,\n\t\tType:         archive.TrackedJobTypeRetrieval,\n\t\tStatus:       status,\n\t\tAccKey:       accKey,\n\t\tFailureCause: message,\n\t}\n\n\treturn rescheduleDuration, message, nil\n}\n\n// trackArchiveProgress queries the current archive status.\n// If a fatal error in tracking happens, it will return an error, which indicates the archive should be untracked.\n// If the archive didn't reach a final status yet, or a possibly recoverable error (by retrying) happens,\n// it will return (duration > 0, \"retry cause\", nil) and the archive query should be rescheduled for duration in the future.\n// If the archive reach final status, it will return (duration == 0, \"\", nil) and the tracking can be considered done.\nfunc (t *Tracker) trackArchiveProgress(\n\tctx context.Context,\n\tbuckKey string,\n\tdbID thread.ID,\n\tdbToken thread.Token,\n\tjid string,\n\tbucketRoot cid.Cid,\n) (time.Duration, string, error) {\n\tlog.Debugf(\"querying archive status of job %s\", jid)\n\tdefer log.Debugf(\"finished querying archive status of job %s\", jid)\n\n\t// Step 1: Get the Job status.\n\tres, err := t.pgClient.StorageJobs.Get(ctx, jid)\n\tif err != nil {\n\t\t// if error specifies that the auth token isn't found, powergate must have been reset.\n\t\t// return the error as fatal so the archive will be untracked\n\t\tif strings.Contains(err.Error(), \"auth token not found\") {\n\t\t\treturn 0, \"\", err\n\t\t}\n\t\treturn t.jobPollIntervalSlow, fmt.Sprintf(\"getting current job %s for bucket %s: %s\", jid, buckKey, err), nil\n\t}\n\n\t// Step 2: On job success, save Deal data in the underlying Bucket thread. On\n\t// failure save the error message.\n\tif res.StorageJob.Status == userPb.JobStatus_JOB_STATUS_SUCCESS {\n\t\tif err := t.saveDealsInBucket(ctx, buckKey, dbID, dbToken, bucketRoot); err != nil {\n\t\t\treturn t.jobPollIntervalSlow, fmt.Sprintf(\"saving deal data in archive: %s\", err), nil\n\t\t}\n\t}\n\t// Step 3: Update status on Mongo for the archive.\n\tif err := t.updateArchiveStatus(ctx, buckKey, res.StorageJob, false, \"\"); err != nil {\n\t\treturn t.jobPollIntervalSlow, fmt.Sprintf(\"updating archive status: %s\", err), nil\n\t}\n\n\trescheduleDuration := t.jobPollIntervalFast\n\tmessage := \"non-final status\"\n\tif isJobStatusFinal(res.StorageJob.Status) {\n\t\tmessage = \"reached final status\"\n\t\trescheduleDuration = 0 // Finalize tracking.\n\t}\n\n\tif rescheduleDuration > 0 {\n\t\tfor _, dealInfo := range res.StorageJob.DealInfo {\n\t\t\tif dealInfo.StateId == storagemarket.StorageDealSealing {\n\t\t\t\trescheduleDuration = t.jobPollIntervalSlow\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\treturn rescheduleDuration, message, nil\n}\n\n// updateArchiveStatus save the last known job status. It also receives an\n// _abort_ flag which indicates that the provided newJobStatus might not be\n// final. For example, if tracking the Job status changes errored by some network\n// condition, we have only the last known Job status. Powergate would continue doing\n// its work until a final status is reached; it only means we aren't sure how this\n// archive really finished.\n// To track for this situation, we use the _aborted_ and _abortMsg_ parameters.\n// An archive with _aborted_ true should eventually be re-queried to understand\n// how it finished (if wanted).\nfunc (t *Tracker) updateArchiveStatus(\n\tctx context.Context,\n\tbuckKey string,\n\tjob *userPb.StorageJob,\n\taborted bool,\n\tabortMsg string,\n) error {\n\tt.lock.Lock()\n\tdefer t.lock.Unlock()\n\tba, err := t.colls.BucketArchives.GetOrCreate(ctx, buckKey)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"getting BucketArchive data: %s\", err)\n\t}\n\n\tarchiveToUpdate := &ba.Archives.Current\n\tif archiveToUpdate.JobID != job.Id {\n\t\tfor i := range ba.Archives.History {\n\t\t\tif ba.Archives.History[i].JobID == job.Id {\n\t\t\t\tarchiveToUpdate = &ba.Archives.History[i]\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\tarchiveToUpdate.Status = int(job.Status)\n\tarchiveToUpdate.Aborted = aborted\n\tarchiveToUpdate.AbortedMsg = abortMsg\n\tarchiveToUpdate.FailureMsg = prepareFailureMsg(job)\n\n\tdealInfo := make([]mdb.DealInfo, len(job.DealInfo))\n\tfor i, info := range job.DealInfo {\n\t\tdealInfo[i] = mdb.DealInfo{\n\t\t\tProposalCid:     info.ProposalCid,\n\t\t\tStateID:         info.StateId,\n\t\t\tStateName:       info.StateName,\n\t\t\tMiner:           info.Miner,\n\t\t\tPieceCID:        info.PieceCid,\n\t\t\tSize:            info.Size,\n\t\t\tPricePerEpoch:   info.PricePerEpoch,\n\t\t\tStartEpoch:      info.StartEpoch,\n\t\t\tDuration:        info.Duration,\n\t\t\tDealID:          info.DealId,\n\t\t\tActivationEpoch: info.ActivationEpoch,\n\t\t\tMessage:         info.Message,\n\t\t}\n\t}\n\tarchiveToUpdate.DealInfo = dealInfo\n\tif err := t.colls.BucketArchives.Replace(ctx, ba); err != nil {\n\t\treturn fmt.Errorf(\"updating bucket archives status: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc (t *Tracker) saveDealsInBucket(\n\tctx context.Context,\n\tbuckKey string,\n\tdbID thread.ID,\n\tdbToken thread.Token,\n\tc cid.Cid,\n) error {\n\topts := tdb.WithToken(dbToken)\n\tctx = common.NewSessionContext(ctx, t.internalSession)\n\tbuck := &tdb.Bucket{}\n\tif err := t.buckets.Get(ctx, dbID, buckKey, &buck, opts); err != nil {\n\t\treturn fmt.Errorf(\"getting bucket for save deals: %s\", err)\n\t}\n\tres, err := t.pgClient.Data.CidInfo(ctx, c.String())\n\tif err != nil {\n\t\treturn fmt.Errorf(\"getting cid info: %s\", err)\n\t}\n\n\tproposals := res.CidInfo.CurrentStorageInfo.Cold.Filecoin.Proposals\n\n\tdeals := make([]tdb.Deal, len(proposals))\n\tfor i, p := range proposals {\n\t\tdeals[i] = tdb.Deal{\n\t\t\tMiner: p.Miner,\n\t\t}\n\t}\n\tbuck.Archives.Current = tdb.Archive{\n\t\tCid:   c.String(),\n\t\tDeals: deals,\n\t}\n\tbuck.UpdatedAt = time.Now().UnixNano()\n\tif err = t.buckets.Save(ctx, dbID, buck, opts); err != nil {\n\t\treturn fmt.Errorf(\"saving deals in thread: %s\", err)\n\t}\n\treturn nil\n}\n\nfunc prepareFailureMsg(job *userPb.StorageJob) string {\n\tif job.ErrorCause == \"\" {\n\t\treturn \"\"\n\t}\n\tvar b strings.Builder\n\t_, _ = b.WriteString(job.ErrorCause)\n\tfor i, de := range job.DealErrors {\n\t\t_, _ = b.WriteString(fmt.Sprintf(\n\t\t\t\"\\nDeal error %d: Proposal %s with miner %s, %s\", i, de.ProposalCid, de.Miner, de.Message))\n\t}\n\treturn b.String()\n}\n\nfunc isJobStatusFinal(js userPb.JobStatus) bool {\n\treturn js == userPb.JobStatus_JOB_STATUS_SUCCESS ||\n\t\tjs == userPb.JobStatus_JOB_STATUS_CANCELED ||\n\t\tjs == userPb.JobStatus_JOB_STATUS_FAILED\n}\n"
  },
  {
    "path": "buckets/buckets.go",
    "content": "package buckets\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n)\n\nconst (\n\t// CollectionName is the name of the threaddb collection used for buckets.\n\tCollectionName = \"buckets\"\n\t// SeedName is the file name reserved for a random bucket seed.\n\tSeedName = \".textileseed\"\n)\n\nvar (\n\t// ErrNonFastForward is returned when an update in non-fast-forward.\n\tErrNonFastForward = fmt.Errorf(\"update is non-fast-forward\")\n\n\t// ErrNoCurrentArchive is returned when not status about the last archive\n\t// can be retrieved, since the bucket was never archived.\n\tErrNoCurrentArchive = fmt.Errorf(\"the bucket was never archived\")\n\n\t// ErrZeroBalance is returned when archiving a bucket which\n\t// underlying Account Powergate user balance is zero.\n\tErrZeroBalance = errors.New(\"wallet FIL balance is zero, if recently created wait 30s\")\n)\n\ntype ctxKey string\n\n// BucketOwner provides owner context to the bucket service.\ntype BucketOwner struct {\n\tStorageUsed      int64\n\tStorageAvailable int64\n\tStorageDelta     int64\n}\n\nfunc NewBucketOwnerContext(ctx context.Context, owner *BucketOwner) context.Context {\n\treturn context.WithValue(ctx, ctxKey(\"bucketOwner\"), owner)\n}\n\nfunc BucketOwnerFromContext(ctx context.Context) (*BucketOwner, bool) {\n\towner, ok := ctx.Value(ctxKey(\"bucketOwner\")).(*BucketOwner)\n\treturn owner, ok\n}\n\n// Role describes an access role for a bucket item.\ntype Role int\n\nconst (\n\tNone Role = iota\n\tReader\n\tWriter\n\tAdmin\n)\n\n// NewRoleFromString returns the role associated with the given string.\nfunc NewRoleFromString(s string) (Role, error) {\n\tswitch strings.ToLower(s) {\n\tcase \"none\":\n\t\treturn None, nil\n\tcase \"reader\":\n\t\treturn Reader, nil\n\tcase \"writer\":\n\t\treturn Writer, nil\n\tcase \"admin\":\n\t\treturn Admin, nil\n\tdefault:\n\t\treturn None, fmt.Errorf(\"invalid role: %s\", s)\n\t}\n}\n\n// String returns the string representation of the role.\nfunc (r Role) String() string {\n\tswitch r {\n\tcase None:\n\t\treturn \"None\"\n\tcase Reader:\n\t\treturn \"Reader\"\n\tcase Writer:\n\t\treturn \"Writer\"\n\tcase Admin:\n\t\treturn \"Admin\"\n\tdefault:\n\t\treturn \"Invalid\"\n\t}\n}\n\n// RolesToPb maps native type roles to protobuf type roles.\nfunc RolesToPb(in map[string]Role) (map[string]pb.PathAccessRole, error) {\n\troles := make(map[string]pb.PathAccessRole)\n\tfor k, r := range in {\n\t\tvar pr pb.PathAccessRole\n\t\tswitch r {\n\t\tcase None:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_UNSPECIFIED\n\t\tcase Reader:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_READER\n\t\tcase Writer:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_WRITER\n\t\tcase Admin:\n\t\t\tpr = pb.PathAccessRole_PATH_ACCESS_ROLE_ADMIN\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"unknown path access role %d\", r)\n\t\t}\n\t\troles[k] = pr\n\t}\n\treturn roles, nil\n}\n\n// RolesFromPb maps protobuf type roles to native type roles.\nfunc RolesFromPb(in map[string]pb.PathAccessRole) (map[string]Role, error) {\n\troles := make(map[string]Role)\n\tfor k, pr := range in {\n\t\tif k != \"*\" {\n\t\t\tpk := &thread.Libp2pPubKey{}\n\t\t\tif err := pk.UnmarshalString(k); err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"unmarshaling role public key: %s\", err)\n\t\t\t}\n\t\t}\n\t\tvar r Role\n\t\tswitch pr {\n\t\tcase pb.PathAccessRole_PATH_ACCESS_ROLE_UNSPECIFIED:\n\t\t\tr = None\n\t\tcase pb.PathAccessRole_PATH_ACCESS_ROLE_READER:\n\t\t\tr = Reader\n\t\tcase pb.PathAccessRole_PATH_ACCESS_ROLE_WRITER:\n\t\t\tr = Writer\n\t\tcase pb.PathAccessRole_PATH_ACCESS_ROLE_ADMIN:\n\t\t\tr = Admin\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"unknown path access role %d\", pr)\n\t\t}\n\t\troles[k] = r\n\t}\n\treturn roles, nil\n}\n"
  },
  {
    "path": "buckets/local/access.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"fmt\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/buckets\"\n)\n\n// PushPathAccessRoles updates path access roles by merging the pushed roles with existing roles\n// and returns the merged roles.\n// roles is a map of string marshaled public keys to path roles. A non-nil error is returned\n// if the map keys are not unmarshalable to public keys.\n// To delete a role for a public key, set its value to buckets.None.\nfunc (b *Bucket) PushPathAccessRoles(\n\tctx context.Context,\n\tpth string,\n\troles map[string]buckets.Role,\n) (merged map[string]buckets.Role, err error) {\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\terr = b.clients.Buckets.PushPathAccessRoles(ctx, b.Key(), pth, roles)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn b.clients.Buckets.PullPathAccessRoles(ctx, b.Key(), pth)\n}\n\n// PullPathAccessRoles returns access roles for a path.\nfunc (b *Bucket) PullPathAccessRoles(ctx context.Context, pth string) (roles map[string]buckets.Role, err error) {\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn b.clients.Buckets.PullPathAccessRoles(ctx, b.Key(), pth)\n}\n\n// PathInvite wraps information needed to collaborate on a bucket path.\ntype PathInvite struct {\n\tThread string `json:\"thread\"`\n\tKey    string `json:\"key\"`\n\tPath   string `json:\"path\"`\n}\n\n// SendPathInvite sends a message containing a bucket key and path,\n// which can be used to access a shared file / folder.\nfunc (b *Bucket) SendPathInvite(ctx context.Context, from thread.Identity, to thread.PubKey, pth string) error {\n\tif b.clients.Users == nil {\n\t\treturn fmt.Errorf(\"hub is required to send invites\")\n\t}\n\tthrd, err := b.Thread()\n\tif err != nil {\n\t\treturn err\n\t}\n\tmsg, err := json.Marshal(&PathInvite{\n\t\tThread: thrd.String(),\n\t\tKey:    b.Key(),\n\t\tPath:   pth,\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = b.clients.Users.SendMessage(ctx, from, to, msg)\n\treturn err\n}\n"
  },
  {
    "path": "buckets/local/add.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"golang.org/x/sync/errgroup\"\n)\n\n// AddRemoteCid stages the Unixfs dag at cid in the local bucket,\n// optionally allowing the caller to select a merge strategy.\nfunc (b *Bucket) AddRemoteCid(ctx context.Context, c cid.Cid, dest string, opts ...AddOption) error {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\targs := &addOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\treturn b.mergeIpfsPath(ctx, path.IpfsPath(c), dest, args.merge, args.events)\n}\n\nfunc (b *Bucket) mergeIpfsPath(\n\tctx context.Context,\n\tipfsBasePth path.Path,\n\tdest string,\n\tmerge SelectMergeFunc,\n\tevents chan<- Event,\n) error {\n\tok, err := b.containsPath(dest)\n\tif err != nil {\n\t\treturn err\n\t} else if !ok {\n\t\treturn fmt.Errorf(\"destination %s is not in bucket path\", dest)\n\t}\n\n\tfolderReplace, toAdd, err := b.listMergePath(ctx, ipfsBasePth, \"\", dest, merge)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Remove all the folders that were decided to be replaced.\n\tfor _, fr := range folderReplace {\n\t\tif err := os.RemoveAll(fr); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Add files that are missing, or were decided to be overwritten.\n\tif len(toAdd) > 0 {\n\t\tprogress := handleAllPullProgress(toAdd, events)\n\t\tdefer close(progress)\n\n\t\teg, gctx := errgroup.WithContext(ctx)\n\t\tfor _, o := range toAdd {\n\t\t\to := o\n\t\t\teg.Go(func() error {\n\t\t\t\tif gctx.Err() != nil {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\tif err := os.Remove(o.path); err != nil && !os.IsNotExist(err) {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\ttrimmedDest := strings.TrimPrefix(o.path, dest)\n\t\t\t\treturn b.getIpfsFile(\n\t\t\t\t\tgctx,\n\t\t\t\t\tpath.Join(ipfsBasePth, trimmedDest),\n\t\t\t\t\to.path,\n\t\t\t\t\to.size,\n\t\t\t\t\to.cid,\n\t\t\t\t\tevents,\n\t\t\t\t\tprogress,\n\t\t\t\t)\n\t\t\t})\n\t\t}\n\t\tif err := eg.Wait(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// listMergePath walks the local bucket and the remote IPFS UnixFS DAG asking\n// the client if wants to (replace, merge, ignore) matching folders, and if wants\n// to (overwrite, ignore) matching files. Any non-matching files or folders in the\n// IPFS UnixFS DAG will be added locally.\n// The first return value is a slice of paths of folders that were decided to be\n// replaced completely (not merged). The second return value are a list of files\n// that should be added locally. If one of them exist, can be understood that should\n// be overwritten.\nfunc (b *Bucket) listMergePath(\n\tctx context.Context,\n\tipfsBasePth path.Path,\n\tipfsRelPath, dest string,\n\tmerge SelectMergeFunc,\n) ([]string, []object, error) {\n\t// List remote IPFS UnixFS path level\n\trep, err := b.clients.Buckets.ListIpfsPath(ctx, path.Join(ipfsBasePth, ipfsRelPath))\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\n\t// If its a dir, ask if should be ignored, replaced, or merged.\n\tif rep.Item.IsDir {\n\t\tvar replacedFolders []string\n\t\tvar toAdd []object\n\n\t\tvar folderExists bool\n\n\t\tlocalFolderPath := filepath.Join(dest, ipfsRelPath)\n\t\tif _, err := os.Stat(localFolderPath); err == nil {\n\t\t\tfolderExists = true\n\t\t}\n\n\t\tif folderExists && merge != nil {\n\t\t\tms, err := merge(fmt.Sprintf(\"Merge strategy for  %s\", localFolderPath), true)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, nil, err\n\t\t\t}\n\t\t\tswitch ms {\n\t\t\tcase Skip:\n\t\t\t\treturn nil, nil, nil\n\t\t\tcase Merge:\n\t\t\t\tbreak\n\t\t\tcase Replace:\n\t\t\t\treplacedFolders = append(replacedFolders, localFolderPath)\n\t\t\t\tmerge = nil\n\t\t\t}\n\t\t}\n\t\tfor _, i := range rep.Item.Items {\n\t\t\tnestFolderReplace, nestAdd, err := b.listMergePath(\n\t\t\t\tctx,\n\t\t\t\tipfsBasePth,\n\t\t\t\tfilepath.Join(ipfsRelPath, i.Name),\n\t\t\t\tdest,\n\t\t\t\tmerge,\n\t\t\t)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, nil, err\n\t\t\t}\n\t\t\treplacedFolders = append(replacedFolders, nestFolderReplace...)\n\t\t\ttoAdd = append(toAdd, nestAdd...)\n\t\t}\n\t\treturn replacedFolders, toAdd, nil\n\t}\n\n\t// If it's a file and it exists, confirm whether or not it should be overwritten.\n\tpth := filepath.Join(dest, ipfsRelPath)\n\tif _, err := os.Stat(pth); err == nil && merge != nil {\n\t\tms, err := merge(fmt.Sprintf(\"Overwrite  %s\", pth), false)\n\t\tif err != nil {\n\t\t\treturn nil, nil, err\n\t\t}\n\t\tswitch ms {\n\t\tcase Skip:\n\t\t\treturn nil, nil, nil\n\t\tcase Merge:\n\t\t\treturn nil, nil, fmt.Errorf(\"cannot merge files\")\n\t\tcase Replace:\n\t\t\tbreak\n\t\t}\n\t} else if err != nil && !os.IsNotExist(err) {\n\t\treturn nil, nil, err\n\t}\n\n\tc, err := cid.Decode(rep.Item.Cid)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\to := object{path: pth, name: rep.Item.Name, size: rep.Item.Size, cid: c}\n\treturn nil, []object{o}, nil\n}\n\nfunc (b *Bucket) getIpfsFile(\n\tctx context.Context,\n\tipfsPath path.Path,\n\tfilePath string,\n\tsize int64,\n\tc cid.Cid,\n\tevents chan<- Event,\n\tprogress chan<- int64,\n) error {\n\tif err := os.MkdirAll(filepath.Dir(filePath), os.ModePerm); err != nil {\n\t\treturn err\n\t}\n\tfile, err := os.Create(filePath)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer file.Close()\n\n\tprog, finish := handlePullProgress(progress, size)\n\tdefer finish()\n\tif err := b.clients.Buckets.PullIpfsPath(ctx, ipfsPath, file, client.WithProgress(prog)); err != nil {\n\t\treturn err\n\t}\n\n\tif events != nil {\n\t\tevents <- Event{\n\t\t\tType:     EventFileComplete,\n\t\t\tPath:     filePath,\n\t\t\tCid:      c,\n\t\t\tSize:     size,\n\t\t\tComplete: size,\n\t\t}\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "buckets/local/archive.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"strings\"\n\n\tpowPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/api/bucketsd/client\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n)\n\n// ArchiveConfig is the desired state of a Cid in the Filecoin network.\ntype ArchiveConfig struct {\n\t// RepFactor (ignored in Filecoin mainnet) indicates the desired amount of active deals\n\t// with different miners to store the data. While making deals\n\t// the other attributes of FilConfig are considered for miner selection.\n\tRepFactor int `json:\"repFactor\"`\n\t// DealMinDuration indicates the duration to be used when making new deals.\n\tDealMinDuration int64 `json:\"dealMinDuration\"`\n\t// ExcludedMiners (ignored in Filecoin mainnet) is a set of miner addresses won't be ever be selected\n\t// when making new deals, even if they comply to other filters.\n\tExcludedMiners []string `json:\"excludedMiners\"`\n\t// TrustedMiners (ignored in Filecoin mainnet) is a set of miner addresses which will be forcibly used\n\t// when making new deals. An empty/nil list disables this feature.\n\tTrustedMiners []string `json:\"trustedMiners\"`\n\t// CountryCodes (ignored in Filecoin mainnet) indicates that new deals should select miners on specific\n\t// countries.\n\tCountryCodes []string `json:\"countryCodes\"`\n\t// Renew indicates deal-renewal configuration.\n\tRenew ArchiveRenew `json:\"renew\"`\n\t// MaxPrice is the maximum price that will be spent to store the data\n\tMaxPrice uint64 `json:\"maxPrice\"`\n\t// FastRetrieval indicates that created deals should enable the\n\t// fast retrieval feature.\n\tFastRetrieval bool `json:\"fastRetrieval\"`\n\t// DealStartOffset indicates how many epochs in the future impose a\n\t// deadline to new deals being active on-chain. This value might influence\n\t// if miners accept deals, since they should seal fast enough to satisfy\n\t// this constraint.\n\tDealStartOffset int64 `json:\"dealStartOffset\"`\n\t// verifiedDeal indicates that new deals will be verified-deals, using\n\t// available data-cap from the wallet address.\n\tVerifiedDeal bool `json:\"verifiedDeal\"`\n}\n\n// ArchiveRenew contains renew configuration for a ArchiveConfig.\ntype ArchiveRenew struct {\n\t// Enabled indicates that deal-renewal is enabled for this Cid.\n\tEnabled bool `json:\"enabled\"`\n\t// Threshold indicates how many epochs before expiring should trigger\n\t// deal renewal. e.g: 100 epoch before expiring.\n\tThreshold int `json:\"threshold\"`\n}\n\n// DefaultArchiveConfig gets the default archive config for the specified Bucket.\nfunc (b *Bucket) DefaultArchiveConfig(ctx context.Context) (config ArchiveConfig, err error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\tpbConfig, err := b.clients.Buckets.DefaultArchiveConfig(ctx, b.Key())\n\tif err != nil {\n\t\treturn\n\t}\n\tif pbConfig == nil {\n\t\treturn config, fmt.Errorf(\"no archive config in response\")\n\t}\n\tconfig = fromPbArchiveConfig(pbConfig)\n\treturn\n}\n\n// Addresses returns information about the Filecoin address associated with the account.\nfunc (b *Bucket) Addresses(ctx context.Context) (*powPb.AddressesResponse, error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting context: %s\", err)\n\t}\n\tar, err := b.clients.Filecoin.Addresses(ctx)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"getting addresses: %s\", err)\n\t}\n\treturn ar, nil\n}\n\nfunc fromPbArchiveConfig(pbConfig *pb.ArchiveConfig) ArchiveConfig {\n\tconfig := ArchiveConfig{\n\t\tRepFactor:       int(pbConfig.RepFactor),\n\t\tDealMinDuration: pbConfig.DealMinDuration,\n\t\tExcludedMiners:  pbConfig.ExcludedMiners,\n\t\tTrustedMiners:   pbConfig.TrustedMiners,\n\t\tCountryCodes:    pbConfig.CountryCodes,\n\t\tMaxPrice:        pbConfig.MaxPrice,\n\t\tFastRetrieval:   pbConfig.FastRetrieval,\n\t\tDealStartOffset: pbConfig.DealStartOffset,\n\t\tVerifiedDeal:    pbConfig.VerifiedDeal,\n\t}\n\tif pbConfig.Renew != nil {\n\t\tconfig.Renew = ArchiveRenew{\n\t\t\tEnabled:   pbConfig.Renew.Enabled,\n\t\t\tThreshold: int(pbConfig.Renew.Threshold),\n\t\t}\n\t}\n\treturn config\n}\n\n// SetDefaultArchiveConfig sets the default archive config for the specified Bucket.\nfunc (b *Bucket) SetDefaultArchiveConfig(ctx context.Context, config ArchiveConfig) (err error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\terr = b.clients.Buckets.SetDefaultArchiveConfig(ctx, b.Key(), toPbArchiveConfig(config))\n\treturn\n}\n\nfunc toPbArchiveConfig(config ArchiveConfig) *pb.ArchiveConfig {\n\treturn &pb.ArchiveConfig{\n\t\tRepFactor:       int32(config.RepFactor),\n\t\tDealMinDuration: config.DealMinDuration,\n\t\tExcludedMiners:  config.ExcludedMiners,\n\t\tTrustedMiners:   config.TrustedMiners,\n\t\tCountryCodes:    config.CountryCodes,\n\t\tRenew: &pb.ArchiveRenew{\n\t\t\tEnabled:   config.Renew.Enabled,\n\t\t\tThreshold: int32(config.Renew.Threshold),\n\t\t},\n\t\tMaxPrice:        config.MaxPrice,\n\t\tFastRetrieval:   config.FastRetrieval,\n\t\tDealStartOffset: config.DealStartOffset,\n\t\tVerifiedDeal:    config.VerifiedDeal,\n\t}\n}\n\ntype archiveRemoteOptions struct {\n\tarchiveConfig             *ArchiveConfig\n\tskipAutomaticVerifiedDeal bool\n}\n\ntype ArchiveRemoteOption func(*archiveRemoteOptions)\n\n// WithArchiveConfig allows you to provide a custom ArchiveConfig for a single call to ArchiveRemote.\nfunc WithArchiveConfig(config ArchiveConfig) ArchiveRemoteOption {\n\treturn func(opts *archiveRemoteOptions) {\n\t\topts.archiveConfig = &config\n\t}\n}\n\n// WithSkipAutomaticVerifiedDeal allows to skip backend logic to automatically set\n// the verified deal flag for making the archive.\nfunc WithSkipAutomaticVerifiedDeal(enabled bool) ArchiveRemoteOption {\n\treturn func(opts *archiveRemoteOptions) {\n\t\topts.skipAutomaticVerifiedDeal = enabled\n\t}\n}\n\n// ArchiveRemote requests an archive of the current remote bucket.\nfunc (b *Bucket) ArchiveRemote(ctx context.Context, opts ...ArchiveRemoteOption) error {\n\tb.Lock()\n\tdefer b.Unlock()\n\n\toptions := &archiveRemoteOptions{}\n\tfor _, opt := range opts {\n\t\topt(options)\n\t}\n\n\tvar clientOpts []client.ArchiveOption\n\tif options.archiveConfig != nil {\n\t\tclientOpts = append(clientOpts, client.WithArchiveConfig(toPbArchiveConfig(*options.archiveConfig)))\n\t}\n\tif options.skipAutomaticVerifiedDeal {\n\t\tclientOpts = append(clientOpts, client.WithSkipAutomaticVerifiedDeal(true))\n\t}\n\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn b.clients.Buckets.Archive(ctx, b.Key(), clientOpts...)\n}\n\n// ArchiveStatusMessage is used to wrap an archive status message.\ntype ArchiveStatusMessage struct {\n\tType            ArchiveMessageType\n\tMessage         string\n\tError           error\n\tInactivityClose bool\n}\n\n// ArchiveMessageType is the type of status message.\ntype ArchiveMessageType int\n\nconst (\n\t// ArchiveMessage accompanies an informational message.\n\tArchiveMessage ArchiveMessageType = iota\n\t// ArchiveError accompanies an error state.\n\tArchiveError\n)\n\n// Archives returns information about current and historical archives.\nfunc (b *Bucket) Archives(ctx context.Context) (*pb.ArchivesResponse, error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tkey := b.Key()\n\treturn b.clients.Buckets.Archives(ctx, key)\n}\n\n// ArchiveWatch delivers messages about the archive status.\nfunc (b *Bucket) ArchiveWatch(ctx context.Context) (<-chan ArchiveStatusMessage, error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tkey := b.Key()\n\tmsgs := make(chan ArchiveStatusMessage)\n\tgo func() {\n\t\tdefer close(msgs)\n\t\tch := make(chan string)\n\t\twCtx, cancel := context.WithCancel(ctx)\n\t\tdefer cancel()\n\t\tvar err error\n\t\tgo func() {\n\t\t\terr = b.clients.Buckets.ArchiveWatch(wCtx, key, ch)\n\t\t\tclose(ch)\n\t\t}()\n\t\tfor msg := range ch {\n\t\t\tmsgs <- ArchiveStatusMessage{Type: ArchiveMessage, Message: \"\\t \" + msg}\n\t\t}\n\t\tif err != nil {\n\t\t\tif strings.Contains(err.Error(), \"RST_STREAM\") {\n\t\t\t\tmsgs <- ArchiveStatusMessage{Type: ArchiveError, InactivityClose: true}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tmsgs <- ArchiveStatusMessage{Type: ArchiveError, Error: err}\n\t\t}\n\t}()\n\treturn msgs, nil\n}\n"
  },
  {
    "path": "buckets/local/bucket.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/interface-go-ipfs-core/options\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\nvar (\n\t// ErrUpToDate indicates there are no locally staged changes.\n\tErrUpToDate = errors.New(\"everything up-to-date\")\n\t// ErrAborted indicates the caller aborted the operation via a confirm function.\n\tErrAborted = errors.New(\"operation aborted by caller\")\n)\n\n// Event describes a path event that occurred.\n// These events can be used to display live info during path uploads/downloads.\ntype Event struct {\n\t// Type of event.\n\tType EventType\n\t// Path relative to the bucket's cwd.\n\tPath string\n\t// Cid of associated Path.\n\tCid cid.Cid\n\t// Size of the total operation or completed file.\n\tSize int64\n\t// Complete is the amount of Size that is complete (useful for upload/download progress).\n\tComplete int64\n}\n\n// EventType is the type of path event.\ntype EventType int\n\nconst (\n\t// EventProgress indicates a file has made some progress uploading/downloading.\n\tEventProgress EventType = iota\n\t// EventFileComplete indicates a file has completed uploading/downloading.\n\tEventFileComplete\n\t// EventFileRemoved indicates a file has been removed.\n\tEventFileRemoved\n)\n\n// Bucket is a local-first object storage and synchronization model built\n// on ThreadDB, IPFS, and Filecoin.\n// A bucket represents a dynamic Unixfs directory with auto-updating\n// IPNS resolution, website rendering, and Filecoin archivng.\n//\n// Private buckets are fully encrypted using AES-CTR + AES-512 HMAC (see https://github.com/textileio/dcrypto for more).\n// Both Unixfs node metadata (size, links, etc.) and node data (files) are obfuscated by encryption.\n// The AES and HMAC keys used for bucket encryption are stored in the ThreadDB collection instance.\n// This setup allows for bucket access to inherit from thread ACL rules.\n//\n// Additionally, files can be further protected by password-based encryption before they are added to the bucket.\n// See EncryptLocalPath and DecryptLocalPath for more.\ntype Bucket struct {\n\tcwd     string\n\tconf    *cmd.Config\n\tclients *cmd.Clients\n\tauth    AuthFunc\n\trepo    *Repo\n\tlinks   *Links\n\tretrID  string\n\n\tpushBlock chan struct{}\n\tsync.Mutex\n}\n\n// Key returns the bucket's unique key identifier, which is also an IPNS public key.\nfunc (b *Bucket) Key() string {\n\treturn b.conf.Viper.GetString(\"key\")\n}\n\n// Thread returns the bucket's thread ID.\nfunc (b *Bucket) Thread() (id thread.ID, err error) {\n\tids := b.conf.Viper.GetString(\"thread\")\n\tif ids == \"\" {\n\t\treturn thread.Undef, nil\n\t}\n\treturn thread.Decode(ids)\n}\n\n// Path returns the bucket's top-level local filesystem path.\nfunc (b *Bucket) Path() (string, error) {\n\tconf := b.conf.Viper.ConfigFileUsed()\n\tif conf == \"\" {\n\t\treturn b.cwd, nil\n\t}\n\treturn filepath.Dir(filepath.Dir(conf)), nil\n}\n\n// Cwd returns the bucket's local current working directory.\nfunc (b *Bucket) Cwd() string {\n\treturn b.cwd\n}\n\n// ConfDir returns the bucket's local configuration directory path.\nfunc (b *Bucket) ConfDir() string {\n\treturn b.conf.Dir\n}\n\n// Context returns an authorized context for the bucket.\nfunc (b *Bucket) Context(ctx context.Context) (context.Context, error) {\n\tid, err := b.Thread()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tctx = common.NewThreadIDContext(ctx, id)\n\tif b.auth != nil {\n\t\tctx = b.auth(ctx)\n\t}\n\treturn ctx, nil\n}\n\n// LocalSize returns the cumalative size of the bucket's local files.\nfunc (b *Bucket) LocalSize() (int64, error) {\n\tif b.repo == nil {\n\t\treturn 0, nil\n\t}\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tig, err := IgnoreFile(bp)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tvar size int64\n\terr = filepath.Walk(bp, func(n string, info os.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"getting fileinfo of %s: %s\", n, err)\n\t\t}\n\t\tif !info.IsDir() {\n\t\t\tf := strings.TrimPrefix(n, bp+string(os.PathSeparator))\n\t\t\tif Ignore(n, ig) || (strings.HasPrefix(f, b.conf.Dir) && f != buckets.SeedName) {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tsize += info.Size()\n\t\t}\n\t\treturn err\n\t})\n\treturn size, err\n}\n\n// RetrievalID returns the retrieval-id if the bucket creation\n// was bootstrapped from a Filecoin archive. It only has a non-empty\n// value in this use-case.\nfunc (b *Bucket) RetrievalID() string {\n\treturn b.retrID\n}\n\n// Info wraps info about a bucket.\ntype Info struct {\n\tThread    thread.ID           `json:\"thread\"`\n\tKey       string              `json:\"key\"`\n\tOwner     string              `json:\"owner,omitempty\"`\n\tName      string              `json:\"name,omitempty\"`\n\tVersion   int                 `json:\"version\"`\n\tLinkKey   string              `json:\"link_key,omitempty\"`\n\tPath      Path                `json:\"path\"`\n\tMetadata  map[string]Metadata `json:\"metadata,omitempty\"`\n\tArchives  *Archives           `json:\"archives,omitempty\"`\n\tCreatedAt time.Time           `json:\"created_at\"`\n\tUpdatedAt time.Time           `json:\"updated_at\"`\n}\n\n// Path wraps path.Resolved so it can be JSON-marshalable.\ntype Path struct {\n\tpath.Resolved\n}\n\nfunc (p Path) MarshalJSON() ([]byte, error) {\n\treturn []byte(\"\\\"\" + p.String() + \"\\\"\"), nil\n}\n\n// Metadata wraps metadata about a bucket item.\ntype Metadata struct {\n\tKey       string                  `json:\"key,omitempty\"`\n\tRoles     map[string]buckets.Role `json:\"roles,omitempty\"`\n\tUpdatedAt time.Time               `json:\"updated_at\"`\n}\n\n// Archives contains info about bucket Filecoin archives.\ntype Archives struct {\n\tCurrent Archive   `json:\"current\"`\n\tHistory []Archive `json:\"history,omitempty\"`\n}\n\n// Archive is a single Filecoin archive containing a list of deals.\ntype Archive struct {\n\tCid   string `json:\"cid\"`\n\tDeals []Deal `json:\"deals\"`\n}\n\n// Deal contains info about an archive's Filecoin deal.\ntype Deal struct {\n\tProposalCid string `json:\"proposal_cid\"`\n\tMiner       string `json:\"miner\"`\n}\n\n// Info returns info about a bucket from the remote.\nfunc (b *Bucket) Info(ctx context.Context) (info Info, err error) {\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\trep, err := b.clients.Buckets.Root(ctx, b.Key())\n\tif err != nil {\n\t\treturn\n\t}\n\treturn pbRootToInfo(rep.Root)\n}\n\nfunc pbRootToInfo(r *pb.Root) (info Info, err error) {\n\tname := \"unnamed\"\n\tif r.Name != \"\" {\n\t\tname = r.Name\n\t}\n\tid, err := thread.Decode(r.Thread)\n\tif err != nil {\n\t\treturn\n\t}\n\tpth, err := util.NewResolvedPath(r.Path)\n\tif err != nil {\n\t\treturn\n\t}\n\tmd, err := pbMetadataToInfo(r.PathMetadata)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn Info{\n\t\tThread:    id,\n\t\tKey:       r.Key,\n\t\tOwner:     r.Owner,\n\t\tName:      name,\n\t\tVersion:   int(r.Version),\n\t\tLinkKey:   r.LinkKey,\n\t\tPath:      Path{pth},\n\t\tMetadata:  md,\n\t\tArchives:  pbArchivesToInfo(r.Archives),\n\t\tCreatedAt: time.Unix(0, r.CreatedAt),\n\t\tUpdatedAt: time.Unix(0, r.UpdatedAt),\n\t}, nil\n}\n\nfunc pbMetadataToInfo(pbm map[string]*pb.Metadata) (map[string]Metadata, error) {\n\tif pbm == nil {\n\t\treturn nil, nil\n\t}\n\tmd := make(map[string]Metadata)\n\tfor p, m := range pbm {\n\t\troles, err := buckets.RolesFromPb(m.Roles)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tmd[p] = Metadata{\n\t\t\tKey:       m.Key,\n\t\t\tRoles:     roles,\n\t\t\tUpdatedAt: time.Unix(0, m.UpdatedAt),\n\t\t}\n\t}\n\treturn md, nil\n}\n\nfunc pbArchivesToInfo(pba *pb.Archives) *Archives {\n\tif pba == nil || pba.Current.Cid == \"\" {\n\t\treturn nil\n\t}\n\tarchives := &Archives{\n\t\tCurrent: Archive{\n\t\t\tCid:   pba.Current.Cid,\n\t\t\tDeals: pbDealsToInfo(pba.Current.DealInfo),\n\t\t},\n\t}\n\tif len(pba.History) == 0 {\n\t\treturn archives\n\t}\n\tarchives.History = make([]Archive, len(pba.History))\n\tfor i, a := range pba.History {\n\t\tarchives.History[i] = Archive{\n\t\t\tCid:   a.Cid,\n\t\t\tDeals: pbDealsToInfo(a.DealInfo),\n\t\t}\n\t}\n\treturn archives\n}\n\nfunc pbDealsToInfo(pbd []*pb.DealInfo) []Deal {\n\tdeals := make([]Deal, len(pbd))\n\tfor i, d := range pbd {\n\t\tdeals[i] = Deal{\n\t\t\tProposalCid: d.ProposalCid,\n\t\t\tMiner:       d.Miner,\n\t\t}\n\t}\n\treturn deals\n}\n\n// Roots wraps local and remote root cids.\n// If the bucket is not private (encrypted), these will be the same.\ntype Roots struct {\n\tLocal  cid.Cid `json:\"local\"`\n\tRemote cid.Cid `json:\"remote\"`\n}\n\n// Roots returns the bucket's current local and remote root cids.\nfunc (b *Bucket) Roots(ctx context.Context) (roots Roots, err error) {\n\tvar lc, rc cid.Cid\n\tif b.repo != nil {\n\t\tlc, rc, err = b.repo.Root()\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\tif !rc.Defined() {\n\t\trc, err = b.getRemoteRoot(ctx)\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\treturn Roots{Local: lc, Remote: rc}, nil\n}\n\n// Links wraps remote link info for a bucket.\ntype Links struct {\n\t// URL is the thread URL, which maps to a ThreadDB collection instance.\n\tURL string `json:\"url\"`\n\t// WWW is the URL at which the bucket will be rendered as a website (requires remote DNS configuration).\n\tWWW string `json:\"www\"`\n\t// IPNS is the bucket IPNS address.\n\tIPNS string `json:\"ipns\"`\n}\n\n// RemoteLinks returns the remote links for the bucket.\nfunc (b *Bucket) RemoteLinks(ctx context.Context, pth string) (links Links, err error) {\n\tif b.links != nil {\n\t\treturn *b.links, nil\n\t}\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\tres, err := b.clients.Buckets.Links(ctx, b.Key(), pth)\n\tif err != nil {\n\t\treturn\n\t}\n\tlinks = Links{URL: res.Url, WWW: res.Www, IPNS: res.Ipns}\n\tb.links = &links\n\treturn links, err\n}\n\n// DBInfo returns info about the bucket's ThreadDB.\n// This info can be used to add replicas or additional peers to the bucket.\nfunc (b *Bucket) DBInfo(ctx context.Context) (info db.Info, cc db.CollectionConfig, err error) {\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\tid, err := b.Thread()\n\tif err != nil {\n\t\treturn\n\t}\n\tinfo, err = b.clients.Threads.GetDBInfo(ctx, id)\n\tif err != nil {\n\t\treturn\n\t}\n\tcc, err = b.clients.Threads.GetCollectionInfo(ctx, id, buckets.CollectionName)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn info, cc, nil\n}\n\n// CatRemotePath writes the content of the remote path to writer.\nfunc (b *Bucket) CatRemotePath(ctx context.Context, pth string, w io.Writer) error {\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn b.clients.Buckets.PullPath(ctx, b.Key(), pth, w)\n}\n\n// Destroy completely deletes the local and remote bucket.\nfunc (b *Bucket) Destroy(ctx context.Context) error {\n\tb.Lock()\n\tdefer b.Unlock()\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn err\n\t}\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err := b.clients.Buckets.Remove(ctx, b.Key()); err != nil {\n\t\tcmd.Fatal(err)\n\t}\n\t_ = os.RemoveAll(filepath.Join(bp, buckets.SeedName))\n\t_ = os.RemoveAll(filepath.Join(bp, b.conf.Dir))\n\treturn nil\n}\n\nfunc (b *Bucket) loadLocalRepo(ctx context.Context, pth, name string, setCidVersion bool) error {\n\tr, err := NewRepo(pth, name, options.BalancedLayout)\n\tif err != nil {\n\t\treturn err\n\t}\n\tb.repo = r\n\tif setCidVersion {\n\t\tif err = b.setRepoCidVersion(ctx); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (b *Bucket) setRepoCidVersion(ctx context.Context) error {\n\tif b.repo == nil {\n\t\treturn nil\n\t}\n\tr, err := b.Roots(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\tb.repo.SetCidVersion(int(r.Remote.Version()))\n\treturn nil\n}\n\nfunc (b *Bucket) containsPath(pth string) (c bool, err error) {\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn\n\t}\n\tar, err := filepath.Abs(bp)\n\tif err != nil {\n\t\treturn\n\t}\n\tap, err := filepath.Abs(pth)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn strings.HasPrefix(ap, ar), nil\n}\n\nfunc (b *Bucket) getRemoteRoot(ctx context.Context) (cid.Cid, error) {\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn cid.Undef, err\n\t}\n\trr, err := b.clients.Buckets.Root(ctx, b.Key())\n\tif err != nil {\n\t\treturn cid.Undef, err\n\t}\n\trp, err := util.NewResolvedPath(rr.Root.Path)\n\tif err != nil {\n\t\treturn cid.Undef, err\n\t}\n\treturn rp.Cid(), nil\n}\n"
  },
  {
    "path": "buckets/local/bucket_test.go",
    "content": "package local_test\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"crypto/rand\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/dcrypto\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\tbucks \"github.com/textileio/textile/v2/buckets\"\n\t. \"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nfunc TestBucket(t *testing.T) {\n\tbuckets := setup(t)\n\tconf := getConf(t, buckets)\n\tbuck, err := buckets.NewBucket(context.Background(), conf, WithName(\"bucky\"))\n\trequire.NoError(t, err)\n\n\tt.Run(\"Key\", func(t *testing.T) {\n\t\tassert.NotEmpty(t, buck.Key())\n\t})\n\n\tt.Run(\"Thread\", func(t *testing.T) {\n\t\ttid, err := buck.Thread()\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, conf.Thread, tid)\n\t})\n\n\tt.Run(\"Path\", func(t *testing.T) {\n\t\tbp, err := buck.Path()\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, conf.Path, bp)\n\t})\n\n\tt.Run(\"LocalSize\", func(t *testing.T) {\n\t\taddRandomFile(t, buck, \"file\", 256)\n\t\taddRandomFile(t, buck, \"dir/file\", 256)\n\t\tsize, err := buck.LocalSize()\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 512+32, int(size)) // Account for seed size\n\t})\n\n\tt.Run(\"Info\", func(t *testing.T) {\n\t\tinfo, err := buck.Info(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, info.Key)\n\t\tassert.Equal(t, info.Name, \"bucky\")\n\t\tassert.NotEmpty(t, info.Path)\n\t\tassert.Equal(t, info.Thread, conf.Thread)\n\t\tassert.NotEmpty(t, info.CreatedAt)\n\t\tassert.NotEmpty(t, info.UpdatedAt)\n\t})\n\n\tt.Run(\"Roots\", func(t *testing.T) {\n\t\troots, err := buck.Roots(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.True(t, roots.Local.Defined())\n\t\tassert.True(t, roots.Remote.Defined())\n\t})\n\n\tt.Run(\"RemoteLinks\", func(t *testing.T) {\n\t\tlinks, err := buck.RemoteLinks(context.Background(), \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, links.URL)\n\t\tassert.NotEmpty(t, links.IPNS)\n\t})\n\n\tt.Run(\"DBInfo\", func(t *testing.T) {\n\t\tdbinfo, cc, err := buck.DBInfo(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.True(t, dbinfo.Key.Defined())\n\t\tassert.NotEmpty(t, dbinfo.Addrs)\n\t\tassert.NotEmpty(t, cc.Name)\n\t\tassert.NotEmpty(t, cc.Schema)\n\t\tassert.NotEmpty(t, cc.WriteValidator)\n\t\tassert.NotEmpty(t, cc.ReadFilter)\n\t\tassert.NotEmpty(t, cc.Indexes)\n\t})\n\n\tt.Run(\"Destroy\", func(t *testing.T) {\n\t\terr = buck.Destroy(context.Background())\n\t\trequire.NoError(t, err)\n\t\t// Ensure the local bucket was removed\n\t\t_, err = buckets.GetLocalBucket(context.Background(), conf)\n\t\trequire.Error(t, err)\n\t\t// Ensure the remote bucket was removed\n\t\tlist, err := buckets.RemoteBuckets(context.Background(), thread.Undef)\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list, 0)\n\t})\n\n\tt.Run(\"EncryptLocalPath\", func(t *testing.T) {\n\t\tfpth := addRandomFile(t, buck, \"plaintext\", 1024)\n\t\tkey, err := dcrypto.NewKey()\n\t\trequire.NoError(t, err)\n\t\tvar buf bytes.Buffer\n\t\terr = buck.EncryptLocalPath(fpth, key, &buf)\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"DecryptLocalPath\", func(t *testing.T) {\n\t\tfpth := addRandomFile(t, buck, \"plaintext\", 1024)\n\t\tcipher := filepath.Join(filepath.Dir(fpth), \"ciphertext\")\n\t\tf, err := os.Create(cipher)\n\t\trequire.NoError(t, err)\n\t\tkey, err := dcrypto.NewKey()\n\t\trequire.NoError(t, err)\n\t\terr = buck.EncryptLocalPath(fpth, key, f)\n\t\trequire.NoError(t, err)\n\t\tf.Close()\n\t\tvar buf bytes.Buffer\n\t\terr = buck.DecryptLocalPath(cipher, []byte(\"badpass\"), &buf)\n\t\trequire.Error(t, err)\n\t\terr = buck.DecryptLocalPath(cipher, key, &buf)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1024, buf.Len())\n\t})\n\n\tt.Run(\"EncryptLocalPathWithPassword\", func(t *testing.T) {\n\t\tfpth := addRandomFile(t, buck, \"plaintext\", 1024)\n\t\tvar buf bytes.Buffer\n\t\terr = buck.EncryptLocalPathWithPassword(fpth, \"shhhhh!\", &buf)\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"DecryptLocalPathWithPassword\", func(t *testing.T) {\n\t\tfpth := addRandomFile(t, buck, \"plaintext\", 1024)\n\t\tcipher := filepath.Join(filepath.Dir(fpth), \"ciphertext\")\n\t\tf, err := os.Create(cipher)\n\t\trequire.NoError(t, err)\n\t\terr = buck.EncryptLocalPathWithPassword(fpth, \"shhhhh!\", f)\n\t\trequire.NoError(t, err)\n\t\tf.Close()\n\t\tvar buf bytes.Buffer\n\t\terr = buck.DecryptLocalPathWithPassword(cipher, \"badpass\", &buf)\n\t\trequire.Error(t, err)\n\t\terr = buck.DecryptLocalPathWithPassword(cipher, \"shhhhh!\", &buf)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1024, buf.Len())\n\t})\n}\n\nfunc TestBucket_PushLocal(t *testing.T) {\n\tbuckets := setup(t)\n\tbuck, err := buckets.NewBucket(context.Background(), getConf(t, buckets))\n\trequire.NoError(t, err)\n\n\t_, err = buck.PushLocal(context.Background())\n\trequire.Error(t, err)\n\tassert.True(t, errors.Is(err, ErrUpToDate))\n\n\taddRandomFile(t, buck, \"file\", 1024)\n\n\troots, err := buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\tassert.True(t, roots.Local.Defined())\n\tassert.True(t, roots.Remote.Defined())\n\n\t_, err = buck.PushLocal(context.Background())\n\trequire.Error(t, err)\n\tassert.True(t, errors.Is(err, ErrUpToDate))\n}\n\nfunc TestBucket_PullRemote(t *testing.T) {\n\tbuckets := setup(t)\n\tbuck, err := buckets.NewBucket(context.Background(), getConf(t, buckets))\n\trequire.NoError(t, err)\n\n\t_, err = buck.PullRemote(context.Background())\n\trequire.Error(t, err)\n\tassert.True(t, errors.Is(err, ErrUpToDate))\n\n\tfpth := addRandomFile(t, buck, \"dir/file\", 1024)\n\t_, err = buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\t// Delete the file locally\n\terr = os.RemoveAll(fpth)\n\trequire.NoError(t, err)\n\n\troots, err := buck.PullRemote(context.Background())\n\trequire.NoError(t, err)\n\tassert.True(t, roots.Local.Defined())\n\tassert.True(t, roots.Remote.Defined())\n\n\t// The local removal should be maintained\n\tdiff, err := buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 1)\n\tif len(diff) > 0 {\n\t\tassert.Equal(t, diff[0].Type, du.Remove)\n\t}\n\n\t// Pulling hard should reset the local to the exact state of the remote\n\t_, err = buck.PullRemote(context.Background(), WithHard(true))\n\trequire.NoError(t, err)\n\n\t_, err = buck.PullRemote(context.Background())\n\trequire.Error(t, err)\n\tassert.True(t, errors.Is(err, ErrUpToDate))\n\n\t// Create another bucket to test an edge case where,\n\t// 1. A file is removed from the remote via local bucket 1\n\t// 2. The same file is modified in local bucket 2\n\t// 3. Local bucket 2 pulls hard on the remote\n\t// 4. The bucket should only report 1 removal event, not one from the remote\n\t//    and one from the removal of the local change.\n\tconf2 := Config{Path: newDir(t)}\n\tconf2.Key = buck.Key()\n\tconf2.Thread, err = buck.Thread()\n\trequire.NoError(t, err)\n\t_, err = buckets.NewBucket(context.Background(), conf2)\n\trequire.NoError(t, err)\n\n\t// Use a bucket from a nested folder to test if the relative path matching is working\n\tbuck2, err := buckets.GetLocalBucket(context.Background(), Config{Path: filepath.Join(conf2.Path, \"dir\")})\n\trequire.NoError(t, err)\n\n\t// Delete the file locally from the first bucket\n\terr = os.RemoveAll(fpth)\n\trequire.NoError(t, err)\n\t_, err = buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\t// Stage a modification to the same file in the second bucket\n\taddRandomFile(t, buck2, \"dir/file\", 1024)\n\n\t// Pull the remote, the local change should be cleared\n\t// with only one remove event\n\tevents := make(chan Event)\n\tdefer close(events)\n\tec := &eventCollector{}\n\tgo ec.collect(events)\n\t_, err = buck2.PullRemote(context.Background(), WithHard(true), WithEvents(events))\n\trequire.NoError(t, err)\n\tec.check(t, 0, 1)\n}\n\nfunc TestBucket_AddRemoteCid(t *testing.T) {\n\tbuckets := setup(t)\n\tconf := getConf(t, buckets)\n\tbuck, err := buckets.NewBucket(context.Background(), conf)\n\trequire.NoError(t, err)\n\n\tpth := createIpfsFolder(t)\n\terr = buck.AddRemoteCid(context.Background(), pth.Cid(), conf.Path)\n\trequire.NoError(t, err)\n\n\tbp, err := buck.Path()\n\trequire.NoError(t, err)\n\t_, err = os.Stat(filepath.Join(bp, \"file1.txt\"))\n\trequire.NoError(t, err)\n\t_, err = os.Stat(filepath.Join(bp, \"folder1\", \"file2.txt\"))\n\trequire.NoError(t, err)\n}\n\nfunc TestBucket_RemotePaths(t *testing.T) {\n\tbuckets := setup(t)\n\tbuck, err := buckets.NewBucket(context.Background(), getConf(t, buckets))\n\trequire.NoError(t, err)\n\n\tt.Run(\"ListRemotePath\", func(t *testing.T) {\n\t\titems, err := buck.ListRemotePath(context.Background(), \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, items, 1)\n\n\t\taddRandomFile(t, buck, \"dir/file\", 1024)\n\t\t_, err = buck.PushLocal(context.Background())\n\t\trequire.NoError(t, err)\n\n\t\titems, err = buck.ListRemotePath(context.Background(), \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, items, 2)\n\n\t\titems, err = buck.ListRemotePath(context.Background(), \"dir\")\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, items, 1)\n\t})\n\n\tt.Run(\"CatRemotePath\", func(t *testing.T) {\n\t\tvar buf bytes.Buffer\n\t\terr = buck.CatRemotePath(context.Background(), \"dir/file\", &buf)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1024, buf.Len())\n\t})\n\n\tt.Run(\"DecryptRemotePath\", func(t *testing.T) {\n\t\tfpth := addRandomFile(t, buck, \"plaintext\", 1024)\n\t\tcipher := filepath.Join(filepath.Dir(fpth), \"ciphertext\")\n\t\tf, err := os.Create(cipher)\n\t\trequire.NoError(t, err)\n\t\tdefer f.Close()\n\t\tkey, err := dcrypto.NewKey()\n\t\trequire.NoError(t, err)\n\t\terr = buck.EncryptLocalPath(fpth, key, f)\n\t\trequire.NoError(t, err)\n\t\terr = os.RemoveAll(fpth)\n\t\trequire.NoError(t, err)\n\t\t_, err = buck.PushLocal(context.Background())\n\t\trequire.NoError(t, err)\n\n\t\tvar buf2 bytes.Buffer\n\t\terr = buck.DecryptRemotePath(context.Background(), \"ciphertext\", []byte(\"badpass\"), &buf2)\n\t\trequire.Error(t, err)\n\t\terr = buck.DecryptRemotePath(context.Background(), \"ciphertext\", key, &buf2)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1024, buf2.Len())\n\t})\n\n\tt.Run(\"DecryptRemotePathWithPassword\", func(t *testing.T) {\n\t\tfpth := addRandomFile(t, buck, \"plaintext\", 1024)\n\t\tcipher := filepath.Join(filepath.Dir(fpth), \"ciphertext\")\n\t\tf, err := os.Create(cipher)\n\t\trequire.NoError(t, err)\n\t\tdefer f.Close()\n\t\terr = buck.EncryptLocalPathWithPassword(fpth, \"shhhhh!\", f)\n\t\trequire.NoError(t, err)\n\t\terr = os.RemoveAll(fpth)\n\t\trequire.NoError(t, err)\n\t\t_, err = buck.PushLocal(context.Background())\n\t\trequire.NoError(t, err)\n\n\t\tvar buf2 bytes.Buffer\n\t\terr = buck.DecryptRemotePathWithPassword(context.Background(), \"ciphertext\", \"badpass\", &buf2)\n\t\trequire.Error(t, err)\n\t\terr = buck.DecryptRemotePathWithPassword(context.Background(), \"ciphertext\", \"shhhhh!\", &buf2)\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, 1024, buf2.Len())\n\t})\n}\n\nfunc TestBucket_DiffLocal(t *testing.T) {\n\tbuckets := setup(t)\n\tconf := getConf(t, buckets)\n\tbuck, err := buckets.NewBucket(context.Background(), conf)\n\trequire.NoError(t, err)\n\n\taddRandomFile(t, buck, \"file1\", 256)\n\tfpth := addRandomFile(t, buck, \"folder/file2\", 256)\n\tdiff, err := buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 2)\n\tassert.Equal(t, diff[0].Type, du.Add)\n\n\t// Test diff from a nested folder\n\tbuck2, err := buckets.GetLocalBucket(context.Background(), Config{Path: filepath.Join(conf.Path, \"folder\")})\n\trequire.NoError(t, err)\n\tdiff, err = buck2.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 2)\n\tassert.Equal(t, diff[0].Type, du.Add)\n\n\t_, err = buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\tdiff, err = buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 0)\n\n\taddRandomFile(t, buck, \"file1\", 256)\n\tdiff, err = buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 1)\n\tassert.Equal(t, diff[0].Type, du.Mod)\n\n\t_, err = buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\tdiff, err = buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 0)\n\n\terr = os.RemoveAll(fpth)\n\trequire.NoError(t, err)\n\tdiff, err = buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 1)\n\tassert.Equal(t, diff[0].Type, du.Remove)\n\n\t_, err = buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\tdiff, err = buck.DiffLocal()\n\trequire.NoError(t, err)\n\tassert.Len(t, diff, 0)\n}\n\nfunc TestBucket_Watch(t *testing.T) {\n\ttconf := apitest.DefaultTextileConfig(t)\n\ttconf.Hub = false\n\tstopTextile1 := apitest.MakeTextileWithConfig(t, tconf, apitest.WithoutAutoShutdown())\n\ttarget, err := tutil.TCPAddrFromMultiAddr(tconf.AddrAPI)\n\trequire.NoError(t, err)\n\tclients := cmd.NewClients(target, false, \"\")\n\tbuckets1 := NewBuckets(clients, DefaultConfConfig())\n\tdefer clients.Close()\n\n\tconf := getConf(t, buckets1)\n\tbuck1, err := buckets1.NewBucket(context.Background(), conf)\n\trequire.NoError(t, err)\n\n\tevents := make(chan Event)\n\tdefer close(events)\n\tec := &eventCollector{}\n\tgo ec.collect(events)\n\tctx, cancel := context.WithCancel(context.Background())\n\tdefer cancel()\n\tvar onlineStateCount, offlineStateCount int\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tstate, err := buck1.Watch(ctx, WithWatchEvents(events), WithOffline(true))\n\t\trequire.NoError(t, err)\n\t\tfor s := range state {\n\t\t\tfmt.Println(fmt.Sprintf(\"received watch state: %s\", s.State))\n\t\t\tswitch s.State {\n\t\t\tcase cmd.Online:\n\t\t\t\tonlineStateCount++\n\t\t\tcase cmd.Offline:\n\t\t\t\tofflineStateCount++\n\t\t\t}\n\t\t}\n\t}()\n\n\t// Add a file to the first bucket\n\taddRandomFile(t, buck1, \"file1\", 512)\n\n\t// Wait a sec while the watcher kicks off a watch cycle\n\ttime.Sleep(time.Second * 5)\n\t// Watch should have handled the diff\n\t_, err = buck1.PushLocal(context.Background())\n\trequire.Error(t, err)\n\tassert.True(t, errors.Is(err, ErrUpToDate))\n\n\t// Create the same bucket from a different daemon\n\tbuckets2 := setup(t)\n\ttid, err := buck1.Thread()\n\trequire.NoError(t, err)\n\tdbinfo, err := buckets1.Clients().Threads.GetDBInfo(context.Background(), tid)\n\trequire.NoError(t, err)\n\tcc, err := buckets1.Clients().Threads.GetCollectionInfo(context.Background(), tid, bucks.CollectionName)\n\trequire.NoError(t, err)\n\n\terr = buckets2.Clients().Threads.NewDBFromAddr(\n\t\tcontext.Background(),\n\t\tdbinfo.Addrs[0],\n\t\tdbinfo.Key,\n\t\tdb.WithNewManagedName(dbinfo.Name),\n\t\tdb.WithNewManagedCollections(cc),\n\t\tdb.WithNewManagedBackfillBlock(true))\n\trequire.NoError(t, err)\n\n\t// Wait a sec while the bucket is backfilled\n\ttime.Sleep(time.Second * 5)\n\tbuck2, err := buckets2.NewBucket(context.Background(), Config{\n\t\tPath:   newDir(t),\n\t\tKey:    buck1.Key(),\n\t\tThread: tid,\n\t})\n\trequire.NoError(t, err)\n\n\t// Add another file to the second bucket\n\taddRandomFile(t, buck2, \"file2\", 512)\n\t_, err = buck2.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\t// Wait a sec while the remote event is handled\n\ttime.Sleep(time.Second * 5)\n\t// Watch should have handled the remote diff\n\t_, err = buck1.PullRemote(context.Background())\n\trequire.Error(t, err)\n\tassert.True(t, errors.Is(err, ErrUpToDate))\n\n\tbp, err := buck1.Path()\n\trequire.NoError(t, err)\n\t_, err = os.Stat(filepath.Join(bp, \"file2\"))\n\trequire.NoError(t, err)\n\n\tec.check(t, 2, 0)\n\n\t// Stop and restart the first bucket's remote\n\tstopTextile1()\n\tstopTextile1Again := apitest.MakeTextileWithConfig(t, tconf, apitest.WithoutAutoShutdown())\n\ttime.Sleep(time.Second * 10) // Wait a sec for good measure\n\tstopTextile1Again()\n\tcancel() // Stop watching\n\twg.Wait()\n\tassert.Equal(t, 2, onlineStateCount)    // 1 for the initial start, 1 for the restart\n\tassert.Greater(t, offlineStateCount, 0) // At least one, but could be more as watch retries\n}\n\nfunc TestBucket_AccessRoles(t *testing.T) {\n\tbuckets := setup(t)\n\tbuck, err := buckets.NewBucket(context.Background(), getConf(t, buckets))\n\trequire.NoError(t, err)\n\n\taddRandomFile(t, buck, \"file\", 1024)\n\n\t_, err = buck.PushLocal(context.Background())\n\trequire.NoError(t, err)\n\n\troles, err := buck.PullPathAccessRoles(context.Background(), \"file\")\n\trequire.NoError(t, err)\n\tassert.Len(t, roles, 0)\n\n\t_, rpk, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\treader := thread.NewLibp2pPubKey(rpk).String()\n\t_, wpk, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\twriter := thread.NewLibp2pPubKey(wpk).String()\n\tall, err := buck.PushPathAccessRoles(context.Background(), \"file\", map[string]bucks.Role{\n\t\treader: bucks.Reader,\n\t\twriter: bucks.Writer,\n\t})\n\trequire.NoError(t, err)\n\tassert.Len(t, all, 2)\n\tassert.Equal(t, bucks.Reader, all[reader])\n\tassert.Equal(t, bucks.Writer, all[writer])\n\n\tall, err = buck.PushPathAccessRoles(context.Background(), \"file\", map[string]bucks.Role{\n\t\treader: bucks.None,\n\t})\n\trequire.NoError(t, err)\n\tassert.Len(t, all, 1)\n\t_, ok := all[reader]\n\tassert.False(t, ok)\n}\n\nfunc addRandomFile(t *testing.T, buck *Bucket, pth string, size int64) string {\n\tbp, err := buck.Path()\n\trequire.NoError(t, err)\n\tname := filepath.Join(bp, pth)\n\terr = os.MkdirAll(filepath.Dir(name), os.ModePerm)\n\trequire.NoError(t, err)\n\tfa, err := os.Create(filepath.Join(bp, pth))\n\trequire.NoError(t, err)\n\tdefer fa.Close()\n\t_, err = io.CopyN(fa, rand.Reader, size)\n\trequire.NoError(t, err)\n\treturn name\n}\n"
  },
  {
    "path": "buckets/local/buckets.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"os\"\n\t\"path/filepath\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\nvar (\n\t// ErrNotABucket indicates the given path is not within a bucket.\n\tErrNotABucket = errors.New(\"not a bucket (or any of the parent directories): .textile\")\n\t// ErrBucketExists is used during initialization to indicate the path already contains a bucket.\n\tErrBucketExists = errors.New(\"bucket is already initialized\")\n\t// ErrThreadRequired indicates the operation requires a thread ID but none was given.\n\tErrThreadRequired = errors.New(\"thread ID is required\")\n\n\tflags = map[string]cmd.Flag{\n\t\t\"key\":    {Key: \"key\", DefValue: \"\"},\n\t\t\"thread\": {Key: \"thread\", DefValue: \"\"},\n\t}\n)\n\n// DefaultConfConfig returns the default ConfConfig.\nfunc DefaultConfConfig() cmd.ConfConfig {\n\treturn cmd.ConfConfig{\n\t\tDir:       \".textile\",\n\t\tName:      \"config\",\n\t\tType:      \"yaml\",\n\t\tEnvPrefix: \"BUCK\",\n\t}\n}\n\n// Buckets is used to create new individual buckets based on the provided clients and config.\ntype Buckets struct {\n\tconfig  cmd.ConfConfig\n\tclients *cmd.Clients\n\tauth    AuthFunc\n}\n\n// NewBuckets creates Buckets from clients and config.\nfunc NewBuckets(clients *cmd.Clients, config cmd.ConfConfig) *Buckets {\n\treturn &Buckets{clients: clients, config: config}\n}\n\n// AuthFunc is a function that's used to add additional context information\n// to the outgoing API requests.\ntype AuthFunc func(context.Context) context.Context\n\n// NewBucketsWithAuth creates Buckets from clients and config and auth.\nfunc NewBucketsWithAuth(clients *cmd.Clients, config cmd.ConfConfig, auth AuthFunc) *Buckets {\n\treturn &Buckets{clients: clients, config: config, auth: auth}\n}\n\n// Context gets a context wrapped with auth if it exists.\nfunc (b *Buckets) Context(ctx context.Context) context.Context {\n\tif b.auth != nil {\n\t\tctx = b.auth(ctx)\n\t}\n\treturn ctx\n}\n\n// Clients returns the underlying clients object.\nfunc (b *Buckets) Clients() *cmd.Clients {\n\treturn b.clients\n}\n\n// Config contains details for a new local bucket.\ntype Config struct {\n\t// Path is the path in which the new bucket should be created (required).\n\tPath string\n\t// Key is a key of an existing bucket (optional).\n\t// It's value may be inflated from a --key flag or {EnvPrefix}_KEY env variable.\n\tKey string\n\t// Thread is the thread ID of the target thread (required).\n\t// It's value may be inflated from a --thread flag or {EnvPrefix}_THREAD env variable.\n\tThread thread.ID\n}\n\n// NewConfigFromCmd returns a config by inflating values from the given cobra command and path.\n// First, flags for \"key\" and \"thread\" are used if they exist.\n// If still unset, the env vars {EnvPrefix}_KEY and {EnvPrefix}_THREAD are used.\nfunc (b *Buckets) NewConfigFromCmd(c *cobra.Command, pth string) (conf Config, err error) {\n\tconf.Path = pth\n\tconf.Key = cmd.GetFlagOrEnvValue(c, \"key\", b.config.EnvPrefix)\n\tid := cmd.GetFlagOrEnvValue(c, \"thread\", b.config.EnvPrefix)\n\tif id != \"\" {\n\t\tconf.Thread, err = thread.Decode(id)\n\t\tif err != nil {\n\t\t\treturn conf, err\n\t\t}\n\t}\n\tif conf.Key != \"\" && !conf.Thread.Defined() {\n\t\treturn conf, ErrThreadRequired\n\t}\n\treturn conf, nil\n}\n\n// NewBucket initializes a new bucket from the config.\n// A local blockstore is created that's used to sync local changes with the remote.\n// By default, this will be an unencrypted, unnamed, empty bucket.\n// The remote bucket will also be created if it doesn't already exist.\n// See NewOption for more info.\n// If the Unfreeze flag is set, the bucket gets created async thus `*Bucket` return\n// value will nil (i.e: the method return will be (nil, nil))\nfunc (b *Buckets) NewBucket(ctx context.Context, conf Config, opts ...NewOption) (buck *Bucket, err error) {\n\targs := &newOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\n\t// Ensure we're not going to overwrite an existing local config\n\tcwd, err := filepath.Abs(conf.Path)\n\tif err != nil {\n\t\treturn\n\t}\n\tbc, found, err := b.config.NewConfig(cwd, flags, false)\n\tif err != nil {\n\t\treturn\n\t}\n\tif found {\n\t\treturn nil, ErrBucketExists\n\t}\n\n\t// Check config values\n\tif !conf.Thread.Defined() {\n\t\treturn nil, ErrThreadRequired\n\t}\n\tbc.Viper.Set(\"thread\", conf.Thread.String())\n\tbc.Viper.Set(\"key\", conf.Key)\n\n\tbuck = &Bucket{\n\t\tcwd:       cwd,\n\t\tconf:      bc,\n\t\tclients:   b.clients,\n\t\tauth:      b.auth,\n\t\tpushBlock: make(chan struct{}, 1),\n\t}\n\tctx, err = buck.Context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinitRemote := conf.Key == \"\"\n\tif initRemote {\n\t\trep, err := b.clients.Buckets.Create(\n\t\t\tctx,\n\t\t\tclient.WithName(args.name),\n\t\t\tclient.WithPrivate(args.private),\n\t\t\tclient.WithCid(args.fromCid),\n\t\t\tclient.WithUnfreeze(args.unfreeze))\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\t// If we're unfreezing, we simply return since the\n\t\t// bucket will get created async if the Filecoin retrieval\n\t\t// is successful. The user will `[hub] buck init -e` in the future\n\t\t// to pull the new bucket.\n\t\tif args.unfreeze {\n\t\t\tbuck.retrID = rep.RetrievalId\n\t\t\treturn buck, nil\n\t\t}\n\t\tbuck.conf.Viper.Set(\"key\", rep.Root.Key)\n\n\t\tseed := filepath.Join(cwd, buckets.SeedName)\n\t\tfile, err := os.Create(seed)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\t_, err = file.Write(rep.Seed)\n\t\tif err != nil {\n\t\t\tfile.Close()\n\t\t\treturn nil, err\n\t\t}\n\t\tfile.Close()\n\n\t\tif err = buck.loadLocalRepo(ctx, cwd, b.repoName(), false); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err = buck.repo.SaveFile(ctx, seed, buckets.SeedName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tsc, err := cid.Decode(rep.SeedCid)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err = buck.repo.SetRemotePath(buckets.SeedName, sc); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\trp, err := util.NewResolvedPath(rep.Root.Path)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err = buck.repo.SetRemotePath(\"\", rp.Cid()); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tbuck.links = &Links{URL: rep.Links.Url, WWW: rep.Links.Www, IPNS: rep.Links.Ipns}\n\t} else {\n\t\tif err := buck.loadLocalRepo(ctx, cwd, b.repoName(), true); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tr, err := buck.Roots(ctx)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err = buck.repo.SetRemotePath(\"\", r.Remote); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tif _, err = buck.RemoteLinks(ctx, \"\"); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\t// Write the local config to disk\n\tdir := filepath.Join(cwd, buck.conf.Dir)\n\tif err = os.MkdirAll(dir, os.ModePerm); err != nil {\n\t\treturn\n\t}\n\tconfig := filepath.Join(dir, buck.conf.Name+\".yml\")\n\tif err = buck.conf.Viper.WriteConfigAs(config); err != nil {\n\t\treturn\n\t}\n\tcfile, err := filepath.Abs(config)\n\tif err != nil {\n\t\treturn\n\t}\n\tbuck.conf.Viper.SetConfigFile(cfile)\n\n\t// Pull remote bucket contents\n\tif !initRemote || args.fromCid.Defined() {\n\t\tif err := buck.repo.Save(ctx); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tswitch args.strategy {\n\t\tcase Soft, Hybrid:\n\t\t\tdiff, missing, remove, err := buck.diffPath(ctx, \"\", cwd, args.strategy == Hybrid)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif err = stashChanges(diff); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif _, err = buck.handleChanges(ctx, missing, remove, args.events); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif err := buck.repo.Save(ctx); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif err = applyChanges(diff); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\tcase Hard:\n\t\t\tif _, err := buck.getPath(ctx, \"\", cwd, nil, false, args.events); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif err := buck.repo.Save(ctx); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t}\n\treturn buck, nil\n}\n\nfunc (b *Buckets) repoName() string {\n\treturn filepath.Join(b.config.Dir, \"repo\")\n}\n\n// GetLocalBucket loads and returns the bucket at path if it exists.\nfunc (b *Buckets) GetLocalBucket(ctx context.Context, conf Config) (*Bucket, error) {\n\tcwd, err := filepath.Abs(conf.Path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbc, found, err := b.config.NewConfig(cwd, flags, false)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif conf.Thread.Defined() {\n\t\tbc.Viper.Set(\"thread\", conf.Thread.String())\n\t}\n\tif conf.Key != \"\" {\n\t\tbc.Viper.Set(\"key\", conf.Key)\n\t}\n\tif bc.Viper.Get(\"thread\") == nil || bc.Viper.Get(\"key\") == nil {\n\t\treturn nil, ErrNotABucket\n\t}\n\tcmd.ExpandConfigVars(bc.Viper, bc.Flags)\n\tbuck := &Bucket{\n\t\tcwd:       cwd,\n\t\tconf:      bc,\n\t\tclients:   b.clients,\n\t\tauth:      b.auth,\n\t\tpushBlock: make(chan struct{}, 1),\n\t}\n\tif found {\n\t\tbp, err := buck.Path()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err = buck.loadLocalRepo(ctx, bp, b.repoName(), true); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn buck, nil\n}\n\n// RemoteBuckets lists all existing remote buckets in the thread.\n// If id is not defined, this will return buckets from all threads.\n// In a hub context, this will only list buckets that the context\n// has access to.\nfunc (b *Buckets) RemoteBuckets(ctx context.Context, id thread.ID) (list []Info, err error) {\n\tctx = b.Context(ctx)\n\tvar threads []cmd.Thread\n\tif id.Defined() {\n\t\tthreads = []cmd.Thread{{ID: id}}\n\t} else {\n\t\tthreads = b.clients.ListThreads(ctx, true)\n\t}\n\tfor _, t := range threads {\n\t\tctx = common.NewThreadIDContext(ctx, t.ID)\n\t\tres, err := b.clients.Buckets.List(ctx)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tfor _, root := range res.Roots {\n\t\t\tinfo, err := pbRootToInfo(root)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tlist = append(list, info)\n\t\t}\n\t}\n\treturn list, nil\n}\n"
  },
  {
    "path": "buckets/local/buckets_test.go",
    "content": "package local_test\n\nimport (\n\t\"context\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\tipfsfiles \"github.com/ipfs/go-ipfs-files\"\n\thttpapi \"github.com/ipfs/go-ipfs-http-client\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\t. \"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = apitest.StartServices()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc TestBuckets_NewBucket(t *testing.T) {\n\tbuckets := setup(t)\n\n\tt.Run(\"new bucket\", func(t *testing.T) {\n\t\tconf := getConf(t, buckets)\n\t\tbuck, err := buckets.NewBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, buck)\n\n\t\tinfo, err := buck.Info(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, info)\n\n\t\treloaded, err := buckets.GetLocalBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, reloaded)\n\t})\n\n\tt.Run(\"new named bucket\", func(t *testing.T) {\n\t\tconf := getConf(t, buckets)\n\t\tbuck, err := buckets.NewBucket(context.Background(), conf, WithName(\"bucky\"))\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, buck)\n\n\t\tinfo, err := buck.Info(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.Equal(t, \"bucky\", info.Name)\n\n\t\treloaded, err := buckets.GetLocalBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, reloaded)\n\t})\n\n\tt.Run(\"new private bucket\", func(t *testing.T) {\n\t\tconf := getConf(t, buckets)\n\t\tbuck, err := buckets.NewBucket(context.Background(), conf, WithPrivate(true))\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, buck)\n\n\t\tinfo, err := buck.Info(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, info)\n\n\t\treloaded, err := buckets.GetLocalBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, reloaded)\n\t})\n\n\tt.Run(\"new bootstrapped bucket\", func(t *testing.T) {\n\t\tconf := getConf(t, buckets)\n\t\tpth := createIpfsFolder(t)\n\t\tevents := make(chan Event)\n\t\tdefer close(events)\n\t\tec := &eventCollector{}\n\t\tgo ec.collect(events)\n\t\tbuck, err := buckets.NewBucket(context.Background(), conf, WithCid(pth.Cid()), WithInitEvents(events))\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, buck)\n\t\tec.check(t, 2, 0)\n\n\t\tinfo, err := buck.Info(context.Background())\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, info)\n\n\t\titems, err := buck.ListRemotePath(context.Background(), \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, items, 3)\n\n\t\tbp, err := buck.Path()\n\t\trequire.NoError(t, err)\n\t\t_, err = os.Stat(filepath.Join(bp, \"file1.txt\"))\n\t\trequire.NoError(t, err)\n\t\t_, err = os.Stat(filepath.Join(bp, \"folder1\", \"file2.txt\"))\n\t\trequire.NoError(t, err)\n\n\t\treloaded, err := buckets.GetLocalBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, reloaded)\n\t})\n\n\tt.Run(\"new bucket from existing\", func(t *testing.T) {\n\t\tconf := getConf(t, buckets)\n\t\tbuck, err := buckets.NewBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, buck)\n\n\t\taddRandomFile(t, buck, \"file1\", 256)\n\t\taddRandomFile(t, buck, \"folder/file2\", 256)\n\t\t_, err = buck.PushLocal(context.Background())\n\t\trequire.NoError(t, err)\n\n\t\tconf2 := Config{Path: newDir(t)}\n\t\tconf2.Key = buck.Key()\n\t\tconf2.Thread, err = buck.Thread()\n\t\trequire.NoError(t, err)\n\t\tbuck2, err := buckets.NewBucket(context.Background(), conf2)\n\t\trequire.NoError(t, err)\n\t\trequire.NotEmpty(t, buck2)\n\n\t\titems, err := buck2.ListRemotePath(context.Background(), \"\")\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, items, 3)\n\n\t\tbp, err := buck.Path()\n\t\trequire.NoError(t, err)\n\t\t_, err = os.Stat(filepath.Join(bp, \"file1\"))\n\t\trequire.NoError(t, err)\n\t\t_, err = os.Stat(filepath.Join(bp, \"folder\", \"file2\"))\n\t\trequire.NoError(t, err)\n\n\t\treloaded, err := buckets.GetLocalBucket(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, reloaded)\n\t})\n\n\tt.Run(\"list remote buckets\", func(t *testing.T) {\n\t\tlist, err := buckets.RemoteBuckets(context.Background(), thread.Undef)\n\t\trequire.NoError(t, err)\n\t\tassert.Len(t, list, 5)\n\t})\n}\n\nfunc TestBuckets_NewConfigFromCmd(t *testing.T) {\n\tbuckets := setup(t)\n\n\tt.Run(\"no flags\", func(t *testing.T) {\n\t\tc := initCmd(t, buckets, \"\", thread.Undef, false, false)\n\t\terr := c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with flags and no values\", func(t *testing.T) {\n\t\tc := initCmd(t, buckets, \"\", thread.Undef, true, false)\n\t\terr := c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with flags and default values\", func(t *testing.T) {\n\t\tkey := \"mykey\"\n\t\ttid := thread.NewIDV1(thread.Raw, 32)\n\t\tc := initCmd(t, buckets, key, tid, true, true)\n\t\terr := c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with flags and set values\", func(t *testing.T) {\n\t\tkey := \"mykey\"\n\t\ttid := thread.NewIDV1(thread.Raw, 32)\n\t\tc := initCmd(t, buckets, key, tid, true, false)\n\t\terr := c.PersistentFlags().Set(\"key\", key)\n\t\trequire.NoError(t, err)\n\t\terr = c.PersistentFlags().Set(\"thread\", tid.String())\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"no flags and env values\", func(t *testing.T) {\n\t\tkey := \"mykey\"\n\t\ttid := thread.NewIDV1(thread.Raw, 32)\n\t\tc := initCmd(t, buckets, key, tid, false, false)\n\t\terr := os.Setenv(\"BUCK_KEY\", key)\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"BUCK_THREAD\", tid.String())\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with flags and env values\", func(t *testing.T) {\n\t\tkey := \"mykey\"\n\t\ttid := thread.NewIDV1(thread.Raw, 32)\n\t\tc := initCmd(t, buckets, key, tid, true, false)\n\t\terr := os.Setenv(\"BUCK_KEY\", key)\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"BUCK_THREAD\", tid.String())\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with key and no thread\", func(t *testing.T) {\n\t\tdir := newDir(t)\n\t\tc := &cobra.Command{\n\t\t\tUse: \"init\",\n\t\t\tRun: func(c *cobra.Command, args []string) {\n\t\t\t\t_, err := buckets.NewConfigFromCmd(c, dir)\n\t\t\t\trequire.Error(t, err)\n\t\t\t\tassert.Equal(t, ErrThreadRequired, err)\n\t\t\t},\n\t\t}\n\t\terr := os.Setenv(\"BUCK_KEY\", \"mykey\")\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"BUCK_THREAD\", \"\")\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n}\n\nfunc initCmd(t *testing.T, buckets *Buckets, key string, tid thread.ID, addFlags, setDefaults bool) *cobra.Command {\n\tdir := newDir(t)\n\tc := &cobra.Command{\n\t\tUse: \"init\",\n\t\tRun: func(c *cobra.Command, args []string) {\n\t\t\tconf, err := buckets.NewConfigFromCmd(c, dir)\n\t\t\trequire.NoError(t, err)\n\t\t\tassert.Equal(t, dir, conf.Path)\n\t\t\tassert.Equal(t, key, conf.Key)\n\t\t\tif tid.Defined() {\n\t\t\t\tassert.Equal(t, tid, conf.Thread)\n\t\t\t} else {\n\t\t\t\tassert.Equal(t, thread.Undef, conf.Thread)\n\t\t\t}\n\t\t},\n\t}\n\tvar dkey, dtid string\n\tif setDefaults {\n\t\tdkey = key\n\t\tdtid = tid.String()\n\t}\n\tif addFlags {\n\t\tc.PersistentFlags().String(\"key\", dkey, \"\")\n\t\tc.PersistentFlags().String(\"thread\", dtid, \"\")\n\t}\n\treturn c\n}\n\nfunc setup(t *testing.T) *Buckets {\n\tconf := apitest.DefaultTextileConfig(t)\n\tconf.Hub = false\n\tapitest.MakeTextileWithConfig(t, conf)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\tclients := cmd.NewClients(target, false, \"\")\n\tt.Cleanup(func() {\n\t\tclients.Close()\n\t})\n\treturn NewBuckets(clients, DefaultConfConfig())\n}\n\nfunc getConf(t *testing.T, bucks *Buckets) Config {\n\tid := thread.NewIDV1(thread.Raw, 32)\n\terr := bucks.Clients().Threads.NewDB(context.Background(), id)\n\trequire.NoError(t, err)\n\n\treturn Config{\n\t\tPath:   newDir(t),\n\t\tThread: id,\n\t}\n}\n\nfunc newDir(t *testing.T) string {\n\tdir, err := ioutil.TempDir(\"\", \"\")\n\trequire.NoError(t, err)\n\tt.Cleanup(func() {\n\t\t_ = os.RemoveAll(dir)\n\t})\n\treturn dir\n}\n\nfunc createIpfsFolder(t *testing.T) (pth path.Resolved) {\n\tipfs, err := httpapi.NewApi(apitest.GetIPFSApiAddr())\n\trequire.NoError(t, err)\n\tpth, err = ipfs.Unixfs().Add(\n\t\tcontext.Background(),\n\t\tipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\"file1.txt\": ipfsfiles.NewBytesFile(util.GenerateRandomBytes(1024)),\n\t\t\t\"folder1\": ipfsfiles.NewMapDirectory(map[string]ipfsfiles.Node{\n\t\t\t\t\"file2.txt\": ipfsfiles.NewBytesFile(util.GenerateRandomBytes(512)),\n\t\t\t}),\n\t\t}),\n\t)\n\trequire.NoError(t, err)\n\treturn pth\n}\n\ntype eventCollector struct {\n\tfileCompletes int\n\tfileRemoves   int\n\tsync.Mutex\n}\n\nfunc (c *eventCollector) collect(events chan Event) {\n\tfor e := range events {\n\t\tc.Lock()\n\t\tswitch e.Type {\n\t\tcase EventFileComplete:\n\t\t\tc.fileCompletes++\n\t\tcase EventFileRemoved:\n\t\t\tc.fileRemoves++\n\t\t}\n\t\tc.Unlock()\n\t}\n}\n\nfunc (c *eventCollector) check(t *testing.T, numFilesAdded, numFilesRemoved int) {\n\ttime.Sleep(5 * time.Second)\n\tc.Lock()\n\tdefer c.Unlock()\n\tassert.Equal(t, numFilesAdded, c.fileCompletes)\n\tassert.Equal(t, numFilesRemoved, c.fileRemoves)\n}\n"
  },
  {
    "path": "buckets/local/crypto.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\n\t\"github.com/textileio/dcrypto\"\n)\n\n// EncryptLocalPath encrypts the file at path with key, writing the result to the writer.\n// Encryption is AES-CTR + AES-512 HMAC.\nfunc (b *Bucket) EncryptLocalPath(pth string, key []byte, w io.Writer) error {\n\treturn encryptLocalPath(pth, key, dcrypto.NewEncrypter, w)\n}\n\n// DecryptLocalPath decrypts the file at path with key, writing the result to the writer.\n// Encryption is AES-CTR + AES-512 HMAC.\nfunc (b *Bucket) DecryptLocalPath(pth string, key []byte, w io.Writer) error {\n\treturn decryptLocalPath(pth, key, dcrypto.NewDecrypter, w)\n}\n\n// EncryptLocalPathWithPassword encrypts the file at path with password, writing the result to the writer.\n// Encryption is AES-CTR + AES-512 HMAC.\n// https://godoc.org/golang.org/x/crypto/scrypt is used to derive the keys from the password.\nfunc (b *Bucket) EncryptLocalPathWithPassword(pth, password string, w io.Writer) error {\n\treturn encryptLocalPath(pth, []byte(password), dcrypto.NewEncrypterWithPassword, w)\n}\n\n// DecryptLocalPathWithPassword decrypts the file at path with password, writing the result to the writer.\n// Encryption is AES-CTR + AES-512 HMAC.\n// https://godoc.org/golang.org/x/crypto/scrypt is used to derive the keys from the password.\nfunc (b *Bucket) DecryptLocalPathWithPassword(pth, password string, w io.Writer) error {\n\treturn decryptLocalPath(pth, []byte(password), dcrypto.NewDecrypterWithPassword, w)\n}\n\ntype encryptFunc func(io.Reader, []byte) (io.Reader, error)\ntype decryptFunc func(io.Reader, []byte) (io.ReadCloser, error)\n\nfunc encryptLocalPath(pth string, keyOrPassword []byte, fn encryptFunc, w io.Writer) error {\n\tfile, err := os.Open(pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer file.Close()\n\tinfo, err := file.Stat()\n\tif err != nil {\n\t\treturn err\n\t}\n\tif info.IsDir() {\n\t\treturn fmt.Errorf(\"path %s is not a file\", pth)\n\t}\n\n\tr, err := fn(file, keyOrPassword)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, err := io.Copy(w, r); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc decryptLocalPath(pth string, keyOrPassword []byte, fn decryptFunc, w io.Writer) error {\n\tfile, err := os.Open(pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer file.Close()\n\tinfo, err := file.Stat()\n\tif err != nil {\n\t\treturn err\n\t}\n\tif info.IsDir() {\n\t\treturn fmt.Errorf(\"path %s is not a file\", pth)\n\t}\n\tr, err := fn(file, keyOrPassword)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, err := io.Copy(w, r); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// DecryptRemotePath decrypts the file at the remote path with password, writing the result to the writer.\n// Encryption is AES-CTR + AES-512 HMAC.\nfunc (b *Bucket) DecryptRemotePath(ctx context.Context, pth string, key []byte, w io.Writer) error {\n\treturn b.decryptRemotePath(ctx, pth, key, dcrypto.NewDecrypter, w)\n}\n\n// DecryptRemotePathWithPassword decrypts the file at the remote path with password, writing the result to the writer.\n// Encryption is AES-CTR + AES-512 HMAC.\n// https://godoc.org/golang.org/x/crypto/scrypt is used to derive the keys from the password.\nfunc (b *Bucket) DecryptRemotePathWithPassword(ctx context.Context, pth, password string, w io.Writer) error {\n\treturn b.decryptRemotePath(ctx, pth, []byte(password), dcrypto.NewDecrypterWithPassword, w)\n}\n\nfunc (b *Bucket) decryptRemotePath(\n\tctx context.Context,\n\tpth string,\n\tkeyOrPassword []byte,\n\tfn decryptFunc,\n\tw io.Writer,\n) error {\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\terrs := make(chan error)\n\treader, writer := io.Pipe()\n\tgo func() {\n\t\tdefer writer.Close()\n\t\tif err := b.clients.Buckets.PullPath(ctx, b.Key(), pth, writer); err != nil {\n\t\t\terrs <- err\n\t\t}\n\t}()\n\tgo func() {\n\t\tdefer close(errs)\n\t\tr, err := fn(reader, keyOrPassword)\n\t\tif err != nil {\n\t\t\terrs <- err\n\t\t\treturn\n\t\t}\n\t\tdefer r.Close()\n\t\tif _, err := io.Copy(w, r); err != nil {\n\t\t\terrs <- err\n\t\t\treturn\n\t\t}\n\t}()\n\treturn <-errs\n}\n"
  },
  {
    "path": "buckets/local/diff.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\taurora2 \"github.com/logrusorgru/aurora\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar aurora = aurora2.NewAurora(runtime.GOOS != \"windows\")\n\n// Change describes a local bucket change.\ntype Change struct {\n\tType du.ChangeType\n\tName string // Absolute file name\n\tPath string // File name relative to the bucket root\n\tRel  string // File name relative to the bucket current working directory\n}\n\n// ChangeType returns a string representation of a change type.\nfunc ChangeType(t du.ChangeType) string {\n\tswitch t {\n\tcase du.Mod:\n\t\treturn \"modified:\"\n\tcase du.Add:\n\t\treturn \"new file:\"\n\tcase du.Remove:\n\t\treturn \"deleted: \"\n\tdefault:\n\t\treturn \"\"\n\t}\n}\n\n// ChangeColor returns an appropriate color for the given change type.\nfunc ChangeColor(t du.ChangeType) func(arg interface{}) aurora2.Value {\n\tswitch t {\n\tcase du.Mod:\n\t\treturn aurora.Yellow\n\tcase du.Add:\n\t\treturn aurora.Green\n\tcase du.Remove:\n\t\treturn aurora.Red\n\tdefault:\n\t\treturn nil\n\t}\n}\n\n// DiffLocal returns a list of locally staged bucket file changes.\nfunc (b *Bucket) DiffLocal() ([]Change, error) {\n\tif b.repo == nil {\n\t\treturn nil, ErrNotABucket\n\t}\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\tdefer cancel()\n\tdiff, err := b.repo.Diff(ctx, bp)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar all []Change\n\tif len(diff) == 0 {\n\t\treturn all, nil\n\t}\n\tfor _, c := range diff {\n\t\tfp := filepath.Join(bp, c.Path)\n\t\tswitch c.Type {\n\t\tcase du.Mod, du.Add:\n\t\t\tnames, err := b.walkPath(fp)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfor _, n := range names {\n\t\t\t\tp := strings.TrimPrefix(n, bp+string(os.PathSeparator))\n\t\t\t\tr, err := filepath.Rel(b.cwd, n)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tall = append(all, Change{Type: c.Type, Name: n, Path: p, Rel: r})\n\t\t\t}\n\t\tcase du.Remove:\n\t\t\tr, err := filepath.Rel(b.cwd, fp)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tall = append(all, Change{Type: c.Type, Name: fp, Path: c.Path, Rel: r})\n\t\t}\n\t}\n\treturn all, nil\n}\n\nfunc (b *Bucket) walkPath(pth string) (names []string, err error) {\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn\n\t}\n\tig, err := IgnoreFile(bp)\n\tif err != nil {\n\t\treturn\n\t}\n\terr = filepath.Walk(pth, func(n string, info os.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif !info.IsDir() {\n\t\t\tf := strings.TrimPrefix(n, pth+string(os.PathSeparator))\n\t\t\tif Ignore(n, ig) ||\n\t\t\t\tf == buckets.SeedName ||\n\t\t\t\tstrings.HasPrefix(f, b.conf.Dir) ||\n\t\t\t\tstrings.HasSuffix(f, PatchExt) {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tnames = append(names, n)\n\t\t}\n\t\treturn nil\n\t})\n\tif err != nil {\n\t\treturn\n\t}\n\treturn names, nil\n}\n"
  },
  {
    "path": "buckets/local/list.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"path/filepath\"\n\n\t\"github.com/ipfs/go-cid\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n)\n\nvar errEmptyItem = fmt.Errorf(\"item is empty\")\n\n// BucketItem describes an item (file/directory) in a bucket.\ntype BucketItem struct {\n\tCid        cid.Cid      `json:\"cid\"`\n\tName       string       `json:\"name\"`\n\tPath       string       `json:\"path\"`\n\tSize       int64        `json:\"size\"`\n\tIsDir      bool         `json:\"is_dir\"`\n\tItems      []BucketItem `json:\"items\"`\n\tItemsCount int          `json:\"items_count\"`\n}\n\n// ListRemotePath returns a list of all bucket items under path.\nfunc (b *Bucket) ListRemotePath(ctx context.Context, pth string) (items []BucketItem, err error) {\n\tpth = filepath.ToSlash(pth)\n\tif pth == \".\" || pth == \"/\" || pth == \"./\" {\n\t\tpth = \"\"\n\t}\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\trep, err := b.clients.Buckets.ListPath(ctx, b.Key(), pth)\n\tif err != nil {\n\t\treturn\n\t}\n\tif len(rep.Item.Items) > 0 {\n\t\titems = make([]BucketItem, len(rep.Item.Items))\n\t\tfor j, k := range rep.Item.Items {\n\t\t\tii, err := pbItemToItem(k)\n\t\t\tif err != nil {\n\t\t\t\treturn items, err\n\t\t\t}\n\t\t\titems[j] = ii\n\t\t}\n\t} else if !rep.Item.IsDir {\n\t\titems = make([]BucketItem, 1)\n\t\titem, err := pbItemToItem(rep.Item)\n\t\tif err != nil {\n\t\t\treturn items, err\n\t\t}\n\t\titems[0] = item\n\t}\n\treturn items, nil\n}\n\nfunc pbItemToItem(pi *pb.PathItem) (item BucketItem, err error) {\n\tif pi.Cid == \"\" {\n\t\treturn item, errEmptyItem\n\t}\n\tc, err := cid.Decode(pi.Cid)\n\tif err != nil {\n\t\treturn\n\t}\n\titems := make([]BucketItem, len(pi.Items))\n\tfor j, k := range pi.Items {\n\t\tii, err := pbItemToItem(k)\n\t\tif errors.Is(err, errEmptyItem) {\n\t\t\titems = nil\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn item, err\n\t\t}\n\t\titems[j] = ii\n\t}\n\treturn BucketItem{\n\t\tCid:        c,\n\t\tName:       pi.Name,\n\t\tPath:       pi.Path,\n\t\tSize:       pi.Size,\n\t\tIsDir:      pi.IsDir,\n\t\tItems:      items,\n\t\tItemsCount: int(pi.ItemsCount),\n\t}, nil\n}\n"
  },
  {
    "path": "buckets/local/options.go",
    "content": "package local\n\nimport (\n\tcid \"github.com/ipfs/go-cid\"\n)\n\ntype newOptions struct {\n\tname     string\n\tprivate  bool\n\tfromCid  cid.Cid\n\tstrategy InitStrategy\n\tevents   chan<- Event\n\tunfreeze bool\n}\n\n// NewOption is used when creating a new bucket.\ntype NewOption func(*newOptions)\n\n// WithName sets a name for the bucket.\nfunc WithName(name string) NewOption {\n\treturn func(args *newOptions) {\n\t\targs.name = name\n\t}\n}\n\n// WithPrivate specifies that an encryption key will be used for the bucket.\nfunc WithPrivate(private bool) NewOption {\n\treturn func(args *newOptions) {\n\t\targs.private = private\n\t}\n}\n\n// WithCid indicates an inited bucket should be boostraped with a particular UnixFS DAG.\nfunc WithCid(c cid.Cid) NewOption {\n\treturn func(args *newOptions) {\n\t\targs.fromCid = c\n\t}\n}\n\n// WithUnfreeze indicates that the bucket should be bootstrapped from Filecoin.\nfunc WithUnfreeze(enabled bool) NewOption {\n\treturn func(args *newOptions) {\n\t\targs.unfreeze = enabled\n\t}\n}\n\n// InitStrategy describes the type of init strategy.\ntype InitStrategy int\n\nconst (\n\t// Hybrid indicates locally staged changes should be accepted, excluding deletions.\n\tHybrid InitStrategy = iota\n\t// Soft indicates locally staged changes should be accepted, including deletions.\n\tSoft\n\t// Hard indicates locally staged changes should be discarded.\n\tHard\n)\n\n// WithStrategy allows for selecting the init strategy. Hybrid is the default.\nfunc WithStrategy(strategy InitStrategy) NewOption {\n\treturn func(args *newOptions) {\n\t\targs.strategy = strategy\n\t}\n}\n\n// WithInitEvents allows the caller to receive events when pulling\n// files from an existing bucket on initialization.\nfunc WithInitEvents(ch chan<- Event) NewOption {\n\treturn func(args *newOptions) {\n\t\targs.events = ch\n\t}\n}\n\ntype pathOptions struct {\n\tconfirm ConfirmDiffFunc\n\tforce   bool\n\thard    bool\n\tevents  chan<- Event\n}\n\n// PathOption is used when pushing or pulling bucket paths.\ntype PathOption func(*pathOptions)\n\n// ConfirmDiffFunc is a caller-provided function which presents a list of bucket changes.\ntype ConfirmDiffFunc func([]Change) bool\n\n// WithConfirm allows the caller to confirm a list of bucket changes.\nfunc WithConfirm(f ConfirmDiffFunc) PathOption {\n\treturn func(args *pathOptions) {\n\t\targs.confirm = f\n\t}\n}\n\n// WithForce indicates all remote files should be pulled even if they already exist.\nfunc WithForce(b bool) PathOption {\n\treturn func(args *pathOptions) {\n\t\targs.force = b\n\t}\n}\n\n// WithHard indicates locally staged changes should be discarded.\nfunc WithHard(b bool) PathOption {\n\treturn func(args *pathOptions) {\n\t\targs.hard = b\n\t}\n}\n\n// WithEvents allows the caller to receive events when pushing or pulling files.\nfunc WithEvents(ch chan<- Event) PathOption {\n\treturn func(args *pathOptions) {\n\t\targs.events = ch\n\t}\n}\n\ntype addOptions struct {\n\tmerge  SelectMergeFunc\n\tevents chan<- Event\n}\n\n// SelectMergeFunc is a caller-provided function which is used to select a merge strategy.\ntype SelectMergeFunc func(description string, isDir bool) (MergeStrategy, error)\n\n// MergeStrategy describes the type of path merge strategy.\ntype MergeStrategy string\n\nconst (\n\t// Skip skips the path merge.\n\tSkip MergeStrategy = \"Skip\"\n\t// Merge attempts to merge the paths (directories only).\n\tMerge = \"Merge\"\n\t// Replace replaces the old path with the new path.\n\tReplace = \"Replace\"\n)\n\n// AddOption is used when staging a remote Unixfs dag cid in a local bucket.\ntype AddOption func(*addOptions)\n\n// WithSelectMerge allows the caller to select the path merge strategy.\nfunc WithSelectMerge(f SelectMergeFunc) AddOption {\n\treturn func(args *addOptions) {\n\t\targs.merge = f\n\t}\n}\n\n// WithAddEvents allows the caller to receive events when staging files from a remote Unixfs dag.\nfunc WithAddEvents(ch chan<- Event) AddOption {\n\treturn func(args *addOptions) {\n\t\targs.events = ch\n\t}\n}\n\ntype watchOptions struct {\n\toffline bool\n\tevents  chan<- Event\n}\n\n// WatchOption is used when watching a bucket for changes.\ntype WatchOption func(*watchOptions)\n\n// WithOffline will keep watching for bucket changes while the local network is offline.\nfunc WithOffline(offline bool) WatchOption {\n\treturn func(args *watchOptions) {\n\t\targs.offline = offline\n\t}\n}\n\n// WithWatchEvents allows the caller to receive events when watching a bucket for changes.\nfunc WithWatchEvents(ch chan<- Event) WatchOption {\n\treturn func(args *watchOptions) {\n\t\targs.events = ch\n\t}\n}\n"
  },
  {
    "path": "buckets/local/pull.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"sync\"\n\n\tcid \"github.com/ipfs/go-cid\"\n\tds \"github.com/ipfs/go-datastore\"\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\t\"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"golang.org/x/sync/errgroup\"\n)\n\n// MaxPullConcurrency is the maximum number of files that can be pulled concurrently.\nvar MaxPullConcurrency = 10\n\n// PullRemote pulls remote files.\n// By default, only missing files are pulled. See PathOption for more info.\nfunc (b *Bucket) PullRemote(ctx context.Context, opts ...PathOption) (roots Roots, err error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\targs := &pathOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\n\tdiff, err := b.DiffLocal()\n\tif errors.Is(err, ErrNotABucket) {\n\t\targs.force = true\n\t} else if err != nil {\n\t\treturn\n\t}\n\tif args.confirm != nil && args.hard && len(diff) > 0 {\n\t\tif ok := args.confirm(diff); !ok {\n\t\t\treturn roots, ErrAborted\n\t\t}\n\t}\n\n\t// Stash local modifications and additions if not pulling hard\n\tif !args.hard {\n\t\tif err := stashChanges(diff); err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t}\n\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn\n\t}\n\tchanges, err := b.getPath(ctx, \"\", bp, diff, args.force, args.events)\n\tif err != nil {\n\t\treturn\n\t}\n\tif changes == 0 {\n\t\treturn roots, ErrUpToDate\n\t}\n\n\tif b.repo != nil {\n\t\tif err := b.repo.Save(ctx); err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t\trc, err := b.getRemoteRoot(ctx)\n\t\tif err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t\tif err := b.repo.SetRemotePath(\"\", rc); err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t}\n\n\t// Re-apply local changes if not pulling hard\n\tif !args.hard {\n\t\tif err := applyChanges(diff); err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t}\n\treturn b.Roots(ctx)\n}\n\nfunc (b *Bucket) getPath(\n\tctx context.Context,\n\tpth, dest string,\n\tdiff []Change,\n\tforce bool,\n\tevents chan<- Event,\n) (changes int, err error) {\n\tall, missing, err := b.listPath(ctx, pth, dest, force)\n\tif err != nil {\n\t\treturn\n\t}\n\tremove := make(map[string]string)\n\tlist, err := b.walkPath(dest)\n\tif err != nil {\n\t\treturn\n\t}\nloop:\n\tfor _, n := range list {\n\t\tfor _, r := range all {\n\t\t\tif r.name == n {\n\t\t\t\tcontinue loop\n\t\t\t}\n\t\t}\n\t\tp := strings.TrimPrefix(n, dest+string(os.PathSeparator))\n\t\tremove[p] = n\n\t}\nlooop:\n\tfor _, l := range diff {\n\t\tfor _, r := range all {\n\t\t\tif strings.HasPrefix(r.path, l.Path) {\n\t\t\t\tcontinue looop\n\t\t\t}\n\t\t}\n\t\tif _, ok := remove[l.Path]; !ok {\n\t\t\tremove[l.Path] = l.Name\n\t\t}\n\t}\n\n\treturn b.handleChanges(ctx, missing, remove, events)\n}\n\nfunc (b *Bucket) handleChanges(\n\tctx context.Context,\n\tmissing []object,\n\tremove map[string]string,\n\tevents chan<- Event,\n) (count int, err error) {\n\tcount = len(missing)\n\tcount += len(remove)\n\tif count == 0 {\n\t\treturn\n\t}\n\n\tif len(missing) > 0 {\n\t\tprogress := handleAllPullProgress(missing, events)\n\t\tdefer close(progress)\n\n\t\teg, gctx := errgroup.WithContext(context.Background())\n\t\tlim := make(chan struct{}, MaxPullConcurrency)\n\t\tfor _, o := range missing {\n\t\t\tlim <- struct{}{}\n\t\t\to := o\n\t\t\teg.Go(func() error {\n\t\t\t\tdefer func() { <-lim }()\n\t\t\t\tif gctx.Err() != nil {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\treturn b.getFile(ctx, b.Key(), o, events, progress)\n\t\t\t})\n\t\t}\n\t\tfor i := 0; i < cap(lim); i++ {\n\t\t\tlim <- struct{}{}\n\t\t}\n\t\tif err := eg.Wait(); err != nil {\n\t\t\treturn count, err\n\t\t}\n\t}\n\tif len(remove) > 0 {\n\t\tfor p, n := range remove {\n\t\t\t// The file may have been modified locally, in which case it will have been moved to a patch.\n\t\t\t// So, we just ignore the error here.\n\t\t\t_ = os.RemoveAll(n)\n\t\t\tif events != nil {\n\t\t\t\trel, err := filepath.Rel(b.cwd, n)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn count, err\n\t\t\t\t}\n\t\t\t\tevents <- Event{\n\t\t\t\t\tType: EventFileRemoved,\n\t\t\t\t\tPath: rel,\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif b.repo != nil {\n\t\t\t\tif err := b.repo.RemovePath(ctx, p); err != nil {\n\t\t\t\t\treturn count, err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn count, nil\n}\n\nfunc (b *Bucket) diffPath(\n\tctx context.Context,\n\tpth, dest string,\n\tignoreDeletions bool,\n) (diff []Change, missing []object, remove map[string]string, err error) {\n\tall, missing, err := b.listPath(ctx, pth, dest, false)\n\tif err != nil {\n\t\treturn\n\t}\n\tremove = make(map[string]string)\n\tlist, err := b.walkPath(dest)\n\tif err != nil {\n\t\treturn\n\t}\nloop:\n\tfor _, n := range list {\n\t\tfor _, r := range all {\n\t\t\tif r.name == n {\n\t\t\t\tcontinue loop\n\t\t\t}\n\t\t}\n\t\tp := strings.TrimPrefix(n, dest+string(os.PathSeparator))\n\t\tr, err := filepath.Rel(b.cwd, n)\n\t\tif err != nil {\n\t\t\treturn nil, nil, nil, err\n\t\t}\n\t\tdiff = append(diff, Change{Type: du.Add, Name: n, Path: p, Rel: r})\n\t\tremove[p] = n\n\t}\n\tfor _, o := range missing {\n\t\tif o.path == buckets.SeedName {\n\t\t\tcontinue\n\t\t}\n\t\tvar ct du.ChangeType\n\t\tif _, err = os.Stat(o.name); err == nil {\n\t\t\tct = du.Mod\n\t\t} else if os.IsNotExist(err) {\n\t\t\tif ignoreDeletions {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tct = du.Remove\n\t\t} else {\n\t\t\treturn\n\t\t}\n\t\tr, err := filepath.Rel(b.cwd, o.name)\n\t\tif err != nil {\n\t\t\treturn nil, nil, nil, err\n\t\t}\n\t\tdiff = append(diff, Change{Type: ct, Name: o.name, Path: o.path, Rel: r})\n\t}\n\treturn diff, missing, remove, nil\n}\n\ntype object struct {\n\tpath string\n\tname string\n\tcid  cid.Cid\n\tsize int64\n}\n\nfunc (b *Bucket) listPath(\n\tctx context.Context,\n\tpth, dest string,\n\tforce bool,\n) (all, missing []object, err error) {\n\trep, err := b.clients.Buckets.ListPath(ctx, b.Key(), pth)\n\tif err != nil {\n\t\treturn\n\t}\n\tif rep.Item.IsDir {\n\t\tfor _, i := range rep.Item.Items {\n\t\t\ta, m, err := b.listPath(ctx, filepath.Join(pth, filepath.Base(i.Path)), dest, force)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, nil, err\n\t\t\t}\n\t\t\tall = append(all, a...)\n\t\t\tmissing = append(missing, m...)\n\t\t}\n\t} else {\n\t\tname := filepath.Join(dest, pth)\n\t\tc, err := cid.Decode(rep.Item.Cid)\n\t\tif err != nil {\n\t\t\treturn nil, nil, err\n\t\t}\n\t\to := object{path: pth, name: name, size: rep.Item.Size, cid: c}\n\t\tall = append(all, o)\n\t\tif !force && b.repo != nil {\n\t\t\tc, err := cid.Decode(rep.Item.Cid)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, nil, err\n\t\t\t}\n\t\t\tlc, err := b.repo.HashFile(name)\n\t\t\tif err == nil && lc.Equals(c) { // File exists, skip it\n\t\t\t\treturn all, missing, nil\n\t\t\t} else {\n\t\t\t\tmatch, err := b.repo.MatchPath(pth, lc, c)\n\t\t\t\tif err != nil {\n\t\t\t\t\tif !errors.Is(err, ds.ErrNotFound) {\n\t\t\t\t\t\treturn nil, nil, err\n\t\t\t\t\t}\n\t\t\t\t} else if match { // File exists, skip it\n\t\t\t\t\treturn all, missing, nil\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tmissing = append(missing, o)\n\t}\n\treturn all, missing, nil\n}\n\nfunc (b *Bucket) getFile(ctx context.Context, key string, o object, events chan<- Event, progress chan<- int64) error {\n\tif err := os.MkdirAll(filepath.Dir(o.name), os.ModePerm); err != nil {\n\t\treturn err\n\t}\n\tfile, err := os.Create(o.name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer file.Close()\n\n\trel, err := filepath.Rel(b.cwd, o.name)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tprog, finish := handlePullProgress(progress, o.size)\n\tdefer finish()\n\tif err := b.clients.Buckets.PullPath(ctx, key, o.path, file, client.WithProgress(prog)); err != nil {\n\t\treturn err\n\t}\n\n\tif b.repo != nil {\n\t\tif err := b.repo.SetRemotePath(o.path, o.cid); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tif events != nil {\n\t\tevents <- Event{\n\t\t\tType: EventFileComplete,\n\t\t\tPath: rel,\n\t\t\tCid:  o.cid,\n\t\t\tSize: o.size,\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc handlePullProgress(global chan<- int64, fsize int64) (chan<- int64, func()) {\n\tprogress := make(chan int64)\n\tvar current int64\n\tvar done bool\n\tvar lk sync.Mutex\n\tgo func() {\n\t\tfor p := range progress {\n\t\t\tlk.Lock()\n\t\t\tif !done {\n\t\t\t\tdiff := p - current\n\t\t\t\tglobal <- diff\n\t\t\t\tcurrent = p\n\t\t\t}\n\t\t\tlk.Unlock()\n\t\t}\n\t}()\n\tdoneFn := func() {\n\t\tlk.Lock()\n\t\tglobal <- fsize - current\n\t\tdone = true\n\t\tclose(progress)\n\t\tlk.Unlock()\n\t}\n\treturn progress, doneFn\n}\n\nfunc handleAllPullProgress(os []object, events chan<- Event) chan<- int64 {\n\tvar total int64\n\tfor _, o := range os {\n\t\ttotal += o.size\n\t}\n\tprogress := make(chan int64)\n\tgo func() {\n\t\tvar complete int64\n\t\tfor p := range progress {\n\t\t\tcomplete += p\n\t\t\tif events != nil {\n\t\t\t\tevents <- Event{\n\t\t\t\t\tType:     EventProgress,\n\t\t\t\t\tSize:     total,\n\t\t\t\t\tComplete: complete,\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}()\n\treturn progress\n}\n"
  },
  {
    "path": "buckets/local/push.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/textileio/textile/v2/api/bucketsd/client\"\n)\n\n// PushLocal pushes local files.\n// By default, only staged changes are pushed. See PathOption for more info.\nfunc (b *Bucket) PushLocal(ctx context.Context, opts ...PathOption) (roots Roots, err error) {\n\tb.Lock()\n\tdefer b.Unlock()\n\tctx, err = b.Context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\targs := &pathOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\n\tdiff, err := b.DiffLocal()\n\tif errors.Is(err, ErrNotABucket) {\n\t\targs.force = true\n\t} else if err != nil {\n\t\treturn\n\t}\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn roots, err\n\t}\n\tif args.force { // Reset the diff to show all files as additions\n\t\tvar reset []Change\n\t\tnames, err := b.walkPath(bp)\n\t\tif err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t\tfor _, n := range names {\n\t\t\tr, err := filepath.Rel(b.cwd, n)\n\t\t\tif err != nil {\n\t\t\t\treturn roots, err\n\t\t\t}\n\t\t\tp := strings.TrimPrefix(n, bp+string(os.PathSeparator))\n\t\t\treset = append(reset, Change{Type: du.Add, Name: n, Path: p, Rel: r})\n\t\t}\n\t\t// Add unique additions\n\tloop:\n\t\tfor _, c := range reset {\n\t\t\tfor _, x := range diff {\n\t\t\t\tif c.Path == x.Path {\n\t\t\t\t\tcontinue loop\n\t\t\t\t}\n\t\t\t}\n\t\t\tdiff = append(diff, c)\n\t\t}\n\t}\n\tif len(diff) == 0 {\n\t\treturn roots, ErrUpToDate\n\t}\n\tif args.confirm != nil {\n\t\tif ok := args.confirm(diff); !ok {\n\t\t\treturn roots, ErrAborted\n\t\t}\n\t}\n\n\tr, err := b.Roots(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\txr := path.IpfsPath(r.Remote)\n\tvar rm, add []Change\n\tkey := b.Key()\n\tfor _, c := range diff {\n\t\tswitch c.Type {\n\t\tcase du.Mod, du.Add:\n\t\t\tadd = append(add, c)\n\t\tcase du.Remove:\n\t\t\trm = append(rm, c)\n\t\t}\n\t}\n\txr, err = b.AddRemoteFiles(ctx, key, xr, add, args.force, args.events)\n\tif err != nil {\n\t\treturn roots, err\n\t}\n\tif len(rm) > 0 {\n\t\tfor _, c := range rm {\n\t\t\tvar err error\n\t\t\txr, err = b.RemoveRemoteFile(ctx, key, xr, c, args.force, args.events)\n\t\t\tif err != nil {\n\t\t\t\treturn roots, err\n\t\t\t}\n\t\t}\n\t}\n\n\tif b.repo != nil {\n\t\tif err := b.repo.Save(ctx); err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t\trc, err := b.getRemoteRoot(ctx)\n\t\tif err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t\tif err := b.repo.SetRemotePath(\"\", rc); err != nil {\n\t\t\treturn roots, err\n\t\t}\n\t}\n\treturn b.Roots(ctx)\n}\n\ntype pendingFile struct {\n\tpath string\n\trel  string\n}\n\n// AddRemoteFiles applies \"add\" and \"modify\" changes to a remote bucket.\n// See PathOption for more info.\nfunc (b *Bucket) AddRemoteFiles(\n\tctx context.Context,\n\tkey string,\n\txroot path.Resolved,\n\tchanges []Change,\n\tforce bool,\n\tevents chan<- Event,\n) (root path.Resolved, err error) {\n\tprogress := make(chan int64)\n\tdefer close(progress)\n\tfiles := make(map[string]pendingFile)\n\n\topts := []client.Option{client.WithProgress(progress)}\n\tif !force {\n\t\topts = append(opts, client.WithFastForwardOnly(xroot))\n\t}\n\tq, err := b.clients.Buckets.PushPaths(ctx, key, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer func() {\n\t\tif cerr := q.Close(); cerr != nil && err == nil {\n\t\t\terr = cerr\n\t\t}\n\t}()\n\n\tfor _, c := range changes {\n\t\tfile := pendingFile{\n\t\t\tpath: c.Path,\n\t\t\trel:  c.Rel,\n\t\t}\n\t\tpth := filepath.ToSlash(c.Path)\n\t\tfiles[pth] = file\n\t\tif err := q.AddFile(file.path, c.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tsize := q.Size()\n\tgo func() {\n\t\tfor p := range progress {\n\t\t\tvar u int64\n\t\t\tif p > size {\n\t\t\t\tu = size\n\t\t\t} else {\n\t\t\t\tu = p\n\t\t\t}\n\t\t\tif events != nil {\n\t\t\t\tevents <- Event{\n\t\t\t\t\tType:     EventProgress,\n\t\t\t\t\tSize:     size,\n\t\t\t\t\tComplete: u,\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}()\n\n\tfor q.Next() {\n\t\tif q.Err() != nil {\n\t\t\treturn nil, q.Err()\n\t\t}\n\t\tfile := files[q.Current.Path]\n\t\troot = q.Current.Root\n\n\t\tif b.repo != nil {\n\t\t\tif err := b.repo.SetRemotePath(file.path, q.Current.Cid); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\tif events != nil {\n\t\t\tevents <- Event{\n\t\t\t\tType: EventFileComplete,\n\t\t\t\tPath: file.rel,\n\t\t\t\tCid:  q.Current.Cid,\n\t\t\t\tSize: q.Current.Size,\n\t\t\t}\n\t\t}\n\t}\n\treturn root, nil\n}\n\n// RemoveRemoteFile applies a \"remove\" change to a remote bucket.\n// See PathOption for more info.\nfunc (b *Bucket) RemoveRemoteFile(\n\tctx context.Context,\n\tkey string,\n\txroot path.Resolved,\n\tc Change,\n\tforce bool,\n\tevents chan<- Event,\n) (path.Resolved, error) {\n\tvar opts []client.Option\n\tif !force {\n\t\topts = append(opts, client.WithFastForwardOnly(xroot))\n\t}\n\troot, err := b.clients.Buckets.RemovePath(ctx, key, c.Path, opts...)\n\tif err != nil {\n\t\tif !strings.HasSuffix(err.Error(), \"no link by that name\") {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tif b.repo != nil {\n\t\tif err := b.repo.RemovePath(ctx, c.Path); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tif events != nil {\n\t\tevents <- Event{\n\t\t\tType: EventFileRemoved,\n\t\t\tPath: c.Rel,\n\t\t}\n\t}\n\treturn root, nil\n}\n"
  },
  {
    "path": "buckets/local/repo.go",
    "content": "package local\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"encoding/gob\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\tbserv \"github.com/ipfs/go-blockservice\"\n\t\"github.com/ipfs/go-cid\"\n\tds \"github.com/ipfs/go-datastore\"\n\tflatfs \"github.com/ipfs/go-ds-flatfs\"\n\tbstore \"github.com/ipfs/go-ipfs-blockstore\"\n\tchunker \"github.com/ipfs/go-ipfs-chunker\"\n\tdshelp \"github.com/ipfs/go-ipfs-ds-help\"\n\toffline \"github.com/ipfs/go-ipfs-exchange-offline\"\n\tcbor \"github.com/ipfs/go-ipld-cbor\"\n\tipld \"github.com/ipfs/go-ipld-format\"\n\tmd \"github.com/ipfs/go-merkledag\"\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\t\"github.com/ipfs/go-unixfs\"\n\t\"github.com/ipfs/go-unixfs/importer/balanced\"\n\t\"github.com/ipfs/go-unixfs/importer/helpers\"\n\t\"github.com/ipfs/go-unixfs/importer/trickle\"\n\toptions \"github.com/ipfs/interface-go-ipfs-core/options\"\n\tmh \"github.com/multiformats/go-multihash\"\n\tignore \"github.com/sabhiram/go-gitignore\"\n)\n\nfunc init() {\n\tbstore.BlockPrefix = ds.NewKey(\"\")\n\tipld.Register(cid.DagProtobuf, md.DecodeProtobufBlock)\n\tipld.Register(cid.Raw, md.DecodeRawBlock)\n\tipld.Register(cid.DagCBOR, cbor.DecodeBlock)\n\tgob.Register(pathMap{})\n}\n\nvar (\n\t// PatchExt is used to ignore tmp files during a pull.\n\tPatchExt = \".buckpatch\"\n\n\t// ignoredFilenames is a list of default ignored file names.\n\tignoredFilenames = []string{\n\t\t\".DS_Store\",\n\t}\n)\n\n// pathMap hold details about a local path map.\ntype pathMap struct {\n\tLocal  cid.Cid\n\tRemote cid.Cid\n}\n\n// Repo tracks a local bucket tree structure.\ntype Repo struct {\n\tpath   string\n\tname   string\n\tds     ds.Batching\n\tbsrv   bserv.BlockService\n\tdag    ipld.DAGService\n\tlayout options.Layout\n\tcidver int\n}\n\n// NewRepo creates a new bucket with the given path.\nfunc NewRepo(pth, name string, layout options.Layout) (*Repo, error) {\n\trepo := filepath.Join(pth, name)\n\tif err := os.MkdirAll(repo, os.ModePerm); err != nil {\n\t\treturn nil, err\n\t}\n\tbd, err := flatfs.CreateOrOpen(repo, flatfs.NextToLast(2), true)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbs := bstore.NewBlockstore(bd)\n\tbsrv := bserv.New(bs, offline.Exchange(bs))\n\treturn &Repo{\n\t\tpath:   pth,\n\t\tname:   name,\n\t\tds:     bd,\n\t\tbsrv:   bsrv,\n\t\tdag:    md.NewDAGService(bsrv),\n\t\tlayout: layout,\n\t\tcidver: 1,\n\t}, nil\n}\n\n// Path returns the repo path.\nfunc (b *Repo) Path() string {\n\treturn filepath.Join(b.path, b.name)\n}\n\n// Root returns the local and remote root cids.\nfunc (b *Repo) Root() (local, remote cid.Cid, err error) {\n\tk, err := getPathKey(\"\")\n\tif err != nil {\n\t\treturn\n\t}\n\tpm, err := b.getPathMap(k)\n\tif errors.Is(err, ds.ErrNotFound) {\n\t\treturn local, remote, nil\n\t} else if err != nil {\n\t\treturn\n\t}\n\treturn pm.Local, pm.Remote, nil\n}\n\n// getPathKey returns a flatfs safe hash of a file path.\nfunc getPathKey(pth string) (key ds.Key, err error) {\n\thash, err := mh.Encode([]byte(filepath.Clean(pth)), mh.SHA2_256)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn dshelp.MultihashToDsKey(hash), nil\n}\n\n// GetPathMap returns details about a local path.\nfunc (b *Repo) GetPathMap(pth string) (local, remote cid.Cid, err error) {\n\tk, err := getPathKey(pth)\n\tif err != nil {\n\t\treturn\n\t}\n\tpm, err := b.getPathMap(k)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn pm.Local, pm.Remote, nil\n}\n\n// getPathMap returns details about a local path by key.\nfunc (b *Repo) getPathMap(k ds.Key) (m pathMap, err error) {\n\tv, err := b.ds.Get(k)\n\tif err != nil {\n\t\treturn\n\t}\n\tdec := gob.NewDecoder(bytes.NewReader(v))\n\tvar pm pathMap\n\tif err = dec.Decode(&pm); err != nil {\n\t\treturn\n\t}\n\treturn pm, nil\n}\n\n// CidVersion gets the repo cid version (0 or 1).\nfunc (b *Repo) CidVersion() int {\n\treturn b.cidver\n}\n\n// SetCidVersion set the repo cid version (0 or 1).\n// The default version is 1.\nfunc (b *Repo) SetCidVersion(v int) {\n\tb.cidver = v\n}\n\n// Save saves the bucket as a node describing the file tree at the current path.\nfunc (b *Repo) Save(ctx context.Context) error {\n\t_, maps, err := b.recursiveAddPath(ctx, b.path, b.dag)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor p, c := range maps {\n\t\tif err := b.setLocalPath(p, c); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// setLocalPath sets the local cid for an existing path map.\nfunc (b *Repo) setLocalPath(pth string, local cid.Cid) error {\n\tk, err := getPathKey(pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\txm, err := b.getPathMap(k)\n\tif errors.Is(err, ds.ErrNotFound) {\n\t\treturn b.putPathMap(k, pathMap{Local: local})\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\txm.Local = local\n\treturn b.putPathMap(k, xm)\n}\n\n// putPathMap saves a path map under key.\nfunc (b *Repo) putPathMap(k ds.Key, pm pathMap) error {\n\tvar buf bytes.Buffer\n\tenc := gob.NewEncoder(&buf)\n\tif err := enc.Encode(pm); err != nil {\n\t\treturn err\n\t}\n\treturn b.ds.Put(k, buf.Bytes())\n}\n\n// recursiveAddPath walks path and adds files to the dag service.\n// This method returns the resulting root node and a list of path maps.\nfunc (b *Repo) recursiveAddPath(\n\tctx context.Context,\n\tpth string,\n\tdag ipld.DAGService,\n) (ipld.Node, map[string]cid.Cid, error) {\n\troot := unixfs.EmptyDirNode()\n\tprefix, err := md.PrefixForCidVersion(b.cidver)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\troot.SetCidBuilder(prefix)\n\teditor := du.NewDagEditor(root, dag)\n\tmaps := make(map[string]cid.Cid)\n\tabs, err := filepath.Abs(pth)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\tig, err := IgnoreFile(b.path)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\tif err = filepath.Walk(abs, func(n string, info os.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif !info.IsDir() {\n\t\t\tif Ignore(n, ig) {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tp := n\n\t\t\tn = strings.TrimPrefix(n, abs+string(os.PathSeparator))\n\t\t\tif strings.HasPrefix(n, filepath.Dir(b.name)+string(os.PathSeparator)) || strings.HasSuffix(n, PatchExt) {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tfile, err := os.Open(p)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer file.Close()\n\t\t\tnd, err := addFile(editor.GetDagService(), b.layout, prefix, file)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif err = editor.InsertNodeAtPath(ctx, n, nd, unixfs.EmptyDirNode); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tmaps[strings.TrimPrefix(p, abs+string(os.PathSeparator))] = nd.Cid()\n\t\t}\n\t\treturn nil\n\t}); err != nil {\n\t\treturn nil, nil, err\n\t}\n\ten := editor.GetNode()\n\tif err := copyLinks(ctx, en, editor.GetDagService(), dag); err != nil {\n\t\treturn nil, nil, err\n\t}\n\tmaps[strings.TrimPrefix(pth, b.path)] = en.Cid()\n\treturn en, maps, nil\n}\n\n// copyLinks recursively adds all link nodes in node to the dag service.\n// Data-nodes are ignored.\n// Modified from https://github.com/ipfs/go-merkledag/blob/master/dagutils/utils.go#L210\nfunc copyLinks(ctx context.Context, nd ipld.Node, from, to ipld.DAGService) error {\n\terr := to.Add(ctx, nd)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor _, lnk := range nd.Links() {\n\t\tif lnk.Name == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tchild, err := lnk.GetNode(ctx, from)\n\t\tif err != nil {\n\t\t\tif err == ipld.ErrNotFound {\n\t\t\t\t// not found means we didnt modify it, and it should\n\t\t\t\t// already be in the target datastore\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\t\terr = copyLinks(ctx, child, from, to)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// SaveFile saves the file at path to the repo.\nfunc (b *Repo) SaveFile(ctx context.Context, pth string, name string) error {\n\tr, err := os.Open(pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer r.Close()\n\troot := unixfs.EmptyDirNode()\n\tprefix, err := md.PrefixForCidVersion(b.cidver)\n\tif err != nil {\n\t\treturn err\n\t}\n\troot.SetCidBuilder(prefix)\n\teditor := du.NewDagEditor(root, b.dag)\n\tf, err := addFile(editor.GetDagService(), b.layout, prefix, r)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err = editor.InsertNodeAtPath(ctx, name, f, unixfs.EmptyDirNode); err != nil {\n\t\treturn err\n\t}\n\tn := editor.GetNode()\n\tif err := copyLinks(ctx, n, editor.GetDagService(), b.dag); err != nil {\n\t\treturn err\n\t}\n\tif err := b.setLocalPath(pth, n.Cid()); err != nil {\n\t\treturn err\n\t}\n\treturn b.setLocalPath(\"\", n.Cid())\n}\n\n// HashFile returns the cid of the file at path.\n// This method does not alter the bucket.\nfunc (b *Repo) HashFile(pth string) (cid.Cid, error) {\n\tr, err := os.Open(pth)\n\tif err != nil {\n\t\treturn cid.Undef, err\n\t}\n\tdefer r.Close()\n\tprefix, err := md.PrefixForCidVersion(b.cidver)\n\tif err != nil {\n\t\treturn cid.Undef, err\n\t}\n\tn, err := addFile(du.NewMemoryDagService(), b.layout, prefix, r)\n\tif err != nil {\n\t\treturn cid.Undef, err\n\t}\n\treturn n.Cid(), nil\n}\n\n// GetNode returns the node at cid from the bucket.\nfunc (b *Repo) GetNode(ctx context.Context, c cid.Cid) (ipld.Node, error) {\n\treturn b.dag.Get(ctx, c)\n}\n\n// Diff returns a list of changes that are present in path compared to the bucket.\nfunc (b *Repo) Diff(ctx context.Context, pth string) (diff []*du.Change, err error) {\n\ttmp := du.NewMemoryDagService()\n\tvar an ipld.Node\n\tlc, _, err := b.Root()\n\tif err != nil {\n\t\treturn\n\t}\n\tif lc.Defined() {\n\t\tan, err = b.dag.Get(ctx, lc)\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t} else {\n\t\tan = unixfs.EmptyDirNode()\n\t}\n\tif err = copyLinks(ctx, an, b.dag, tmp); err != nil {\n\t\treturn\n\t}\n\tif err = tmp.Add(ctx, an); err != nil {\n\t\treturn\n\t}\n\tbn, _, err := b.recursiveAddPath(ctx, pth, tmp)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn Diff(ctx, tmp, an, bn)\n}\n\n// SetRemotePath sets or creates a mapping from a local path to a remote cid.\nfunc (b *Repo) SetRemotePath(pth string, remote cid.Cid) error {\n\tk, err := getPathKey(pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\txm, err := b.getPathMap(k)\n\tif errors.Is(err, ds.ErrNotFound) {\n\t\treturn b.putPathMap(k, pathMap{Remote: remote})\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\txm.Remote = remote\n\treturn b.putPathMap(k, xm)\n}\n\n// MatchPath returns whether or not the path exists and has matching local and remote cids.\nfunc (b *Repo) MatchPath(pth string, local, remote cid.Cid) (bool, error) {\n\tk, err := getPathKey(pth)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tm, err := b.getPathMap(k)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tif m.Local.Defined() && m.Local.Equals(local) && m.Remote.Equals(remote) {\n\t\treturn true, nil\n\t}\n\treturn false, nil\n}\n\n// RemovePath removes a local path map from the store.\nfunc (b *Repo) RemovePath(ctx context.Context, pth string) error {\n\tk, err := getPathKey(pth)\n\tif err != nil {\n\t\treturn err\n\t}\n\tpm, err := b.getPathMap(k)\n\tif errors.Is(err, ds.ErrNotFound) {\n\t\treturn nil\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err := b.dag.Remove(ctx, pm.Local); err != nil {\n\t\tif !errors.Is(err, ipld.ErrNotFound) {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn b.ds.Delete(k)\n}\n\n// Close closes the store and blocks service.\nfunc (b *Repo) Close() error {\n\tif err := b.ds.Close(); err != nil {\n\t\treturn err\n\t}\n\tif err := b.bsrv.Close(); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// Ignore returns true if the path contains an ignored file.\nfunc Ignore(pth string, ig *ignore.GitIgnore) bool {\n\tfor _, n := range ignoredFilenames {\n\t\tif strings.HasSuffix(pth, n) {\n\t\t\treturn true\n\t\t}\n\t}\n\tif ig != nil {\n\t\treturn ig.MatchesPath(pth)\n\t}\n\treturn false\n}\n\n// IgnoreFile returns the ignore file at path if it exists\nfunc IgnoreFile(pth string) (*ignore.GitIgnore, error) {\n\tig, err := ignore.CompileIgnoreFile(filepath.Join(pth, \".buckignore\"))\n\tif errors.Is(err, os.ErrNotExist) {\n\t\treturn nil, nil\n\t} else if err != nil {\n\t\treturn nil, err\n\t}\n\treturn ig, nil\n}\n\n// addFile chunks reader with layout and adds blocks to the dag service.\n// SHA2-256 is used as the hash function and CidV1 as the cid version.\nfunc addFile(dag ipld.DAGService, layout options.Layout, prefix cid.Prefix, r io.Reader) (ipld.Node, error) {\n\tdbp := helpers.DagBuilderParams{\n\t\tDagserv:    dag,\n\t\tRawLeaves:  true,\n\t\tMaxlinks:   helpers.DefaultLinksPerBlock,\n\t\tNoCopy:     false,\n\t\tCidBuilder: prefix,\n\t}\n\tchnk, err := chunker.FromString(r, \"default\")\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdbh, err := dbp.New(chnk)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar n ipld.Node\n\tswitch layout {\n\tcase options.TrickleLayout:\n\t\tn, err = trickle.Layout(dbh)\n\tcase options.BalancedLayout:\n\t\tn, err = balanced.Layout(dbh)\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"invalid layout\")\n\t}\n\treturn n, err\n}\n\n// Diff returns a set of changes that transform node 'a' into node 'b'.\n// Modified from https://github.com/ipfs/go-merkledag/blob/master/dagutils/diff.go#L104\n// It only traverses links in the following cases:\n// 1. two node's links number are greater than 0.\n// 2. both of two nodes are ProtoNode.\n// 3. neither of the nodes is a file node, which contains only unnamed raw blocks\n// Otherwise, it compares the cid and emits a Mod change object.\nfunc Diff(ctx context.Context, ds ipld.DAGService, a, b ipld.Node) ([]*du.Change, error) {\n\t// Base case where both nodes are leaves, just compare\n\t// their CIDs.\n\tif len(a.Links()) == 0 && len(b.Links()) == 0 {\n\t\treturn getChange(a, b)\n\t}\n\n\tvar out []*du.Change\n\tcleanA, okA := a.Copy().(*md.ProtoNode)\n\tcleanB, okB := b.Copy().(*md.ProtoNode)\n\tif !okA || !okB {\n\t\treturn getChange(a, b)\n\t}\n\n\tif isFileNode(cleanA) || isFileNode(cleanB) {\n\t\treturn []*du.Change{\n\t\t\t{\n\t\t\t\tType:   du.Mod,\n\t\t\t\tBefore: a.Cid(),\n\t\t\t\tAfter:  b.Cid(),\n\t\t\t},\n\t\t}, nil\n\t}\n\n\t// strip out unchanged stuff\n\tfor _, lnk := range a.Links() {\n\t\tl, _, err := b.ResolveLink([]string{lnk.Name})\n\t\tif err == nil {\n\t\t\tif l.Cid.Equals(lnk.Cid) {\n\t\t\t\t// no change... ignore it\n\t\t\t} else {\n\t\t\t\tanode, err := lnk.GetNode(ctx, ds)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tbnode, err := l.GetNode(ctx, ds)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tsub, err := Diff(ctx, ds, anode, bnode)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tfor _, subc := range sub {\n\t\t\t\t\tsubc.Path = path.Join(lnk.Name, subc.Path)\n\t\t\t\t\tout = append(out, subc)\n\t\t\t\t}\n\t\t\t}\n\t\t\t_ = cleanA.RemoveNodeLink(l.Name)\n\t\t\t_ = cleanB.RemoveNodeLink(l.Name)\n\t\t}\n\t}\n\n\tfor _, lnk := range cleanA.Links() {\n\t\tout = append(out, &du.Change{\n\t\t\tType:   du.Remove,\n\t\t\tPath:   lnk.Name,\n\t\t\tBefore: lnk.Cid,\n\t\t})\n\t}\n\tfor _, lnk := range cleanB.Links() {\n\t\tout = append(out, &du.Change{\n\t\t\tType:  du.Add,\n\t\t\tPath:  lnk.Name,\n\t\t\tAfter: lnk.Cid,\n\t\t})\n\t}\n\n\treturn out, nil\n}\n\n// getChange copied from https://github.com/ipfs/go-merkledag/blob/master/dagutils/diff.go#L203\nfunc getChange(a, b ipld.Node) ([]*du.Change, error) {\n\tif a.Cid().Equals(b.Cid()) {\n\t\treturn []*du.Change{}, nil\n\t}\n\treturn []*du.Change{\n\t\t{\n\t\t\tType:   du.Mod,\n\t\t\tBefore: a.Cid(),\n\t\t\tAfter:  b.Cid(),\n\t\t},\n\t}, nil\n}\n\nfunc isFileNode(n ipld.Node) bool {\n\tfor _, l := range n.Links() {\n\t\tif l.Name == \"\" {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc stashChanges(diff []Change) error {\n\tfor _, c := range diff {\n\t\tswitch c.Type {\n\t\tcase du.Mod, du.Add:\n\t\t\tif err := os.Rename(c.Name, c.Name+PatchExt); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc applyChanges(diff []Change) error {\n\tfor _, c := range diff {\n\t\tswitch c.Type {\n\t\tcase du.Mod, du.Add:\n\t\t\tif err := os.Rename(c.Name+PatchExt, c.Name); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tcase du.Remove:\n\t\t\t// If the file was also deleted on the remote,\n\t\t\t// the local deletion will already have been handled by getPath.\n\t\t\t// So, we just ignore the error here.\n\t\t\t_ = os.RemoveAll(c.Name)\n\t\t}\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "buckets/local/repo_test.go",
    "content": "package local_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\n\t\"github.com/ipfs/go-cid\"\n\tipld \"github.com/ipfs/go-ipld-format\"\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\t\"github.com/ipfs/interface-go-ipfs-core/options\"\n\tmh \"github.com/multiformats/go-multihash\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t. \"github.com/textileio/textile/v2/buckets/local\"\n)\n\nfunc TestNewRepo(t *testing.T) {\n\tmakeRepo(t, \"testdata/a\", options.BalancedLayout)\n}\n\nfunc TestRepo_SetCidVersion(t *testing.T) {\n\trepo0 := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\trepo0.SetCidVersion(0)\n\terr := repo0.Save(context.Background())\n\trequire.NoError(t, err)\n\tlc0, _, err := repo0.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc0.Defined())\n\tassert.Equal(t, 0, repo0.CidVersion())\n\tassert.Equal(t, 0, int(lc0.Version()))\n\trepo0.Close()\n\n\trepo1 := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\tdefer repo1.Close()\n\trepo1.SetCidVersion(1)\n\terr = repo1.Save(context.Background())\n\trequire.NoError(t, err)\n\tlc1, _, err := repo1.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc1.Defined())\n\tassert.Equal(t, 1, repo1.CidVersion())\n\tassert.Equal(t, 1, int(lc1.Version()))\n}\n\nfunc TestRepo_Save(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\n\terr := repo.Save(context.Background())\n\trequire.NoError(t, err)\n\tlc, _, err := repo.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc.Defined())\n\trepo.Close()\n\n\trepo2 := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\tdefer repo2.Close()\n\tn, err := repo2.GetNode(context.Background(), lc)\n\trequire.NoError(t, err)\n\tcheckLinks(t, repo2, n)\n\n\tdiff, err := repo2.Diff(context.Background(), \"testdata/a\")\n\trequire.NoError(t, err)\n\trequire.Empty(t, diff)\n}\n\nfunc TestRepo_SaveFile(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/c\", options.BalancedLayout)\n\n\terr := repo.SaveFile(context.Background(), \"testdata/c/one.jpg\", \"one.jpg\")\n\trequire.NoError(t, err)\n\tlc, _, err := repo.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc.Defined())\n\trepo.Close()\n\n\trepo2 := makeRepo(t, \"testdata/c\", options.BalancedLayout)\n\tdefer repo2.Close()\n\tn, err := repo2.GetNode(context.Background(), lc)\n\trequire.NoError(t, err)\n\tcheckLinks(t, repo2, n)\n\n\tdiff, err := repo2.Diff(context.Background(), \"testdata/c\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, 1, len(diff))\n}\n\nfunc checkLinks(t *testing.T, repo *Repo, n ipld.Node) {\n\tfor _, l := range n.Links() {\n\t\tln, err := repo.GetNode(context.Background(), l.Cid)\n\t\tif l.Name == \"\" { // Data node should not have been saved\n\t\t\trequire.Error(t, err)\n\t\t} else {\n\t\t\trequire.NoError(t, err)\n\t\t\tcheckLinks(t, repo, ln)\n\t\t}\n\t}\n}\n\nfunc TestRepo_HashFile(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/c\", options.BalancedLayout)\n\tdefer repo.Close()\n\n\tc, err := repo.HashFile(\"testdata/c/one.jpg\")\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, c)\n}\n\nfunc TestRepo_Diff(t *testing.T) {\n\tt.Run(\"raw files\", func(t *testing.T) {\n\t\trepo := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\t\tdefer repo.Close()\n\n\t\terr := repo.Save(context.Background())\n\t\trequire.NoError(t, err)\n\n\t\tdiffa, err := repo.Diff(context.Background(), \"testdata/a\")\n\t\trequire.NoError(t, err)\n\t\tassert.Empty(t, diffa)\n\n\t\tdiffb, err := repo.Diff(context.Background(), \"testdata/b\")\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, diffb)\n\t\tassert.Equal(t, 6, len(diffb))\n\n\t\tchanges := []*du.Change{\n\t\t\t{Path: \"foo.txt\", Type: du.Mod},\n\t\t\t{Path: \"one/two/boo.txt\", Type: du.Remove},\n\t\t\t{Path: \"one/buz.txt\", Type: du.Remove},\n\t\t\t{Path: \"one/muz.txt\", Type: du.Add},\n\t\t\t{Path: \"one/three\", Type: du.Add},\n\t\t\t{Path: \"bar.txt\", Type: du.Remove},\n\t\t}\n\t\tfor i, c := range diffb {\n\t\t\tassert.Equal(t, changes[i].Path, c.Path)\n\t\t\tassert.Equal(t, changes[i].Type, c.Type)\n\t\t}\n\t})\n\n\tt.Run(\"proto files\", func(t *testing.T) {\n\t\tvar dirs []string\n\t\tt.Cleanup(func() {\n\t\t\tfor _, d := range dirs {\n\t\t\t\t_ = os.RemoveAll(d)\n\t\t\t}\n\t\t})\n\n\t\tdira, err := ioutil.TempDir(\"\", \"\")\n\t\trequire.NoError(t, err)\n\t\tdirs = append(dirs, dira)\n\n\t\trepo := makeRepo(t, dira, options.BalancedLayout)\n\t\tdefer repo.Close()\n\n\t\t// Add a file large enough to have multiple raw node chunks\n\t\tfa, err := os.Create(filepath.Join(dira, \"file\"))\n\t\trequire.NoError(t, err)\n\t\tdefer fa.Close()\n\t\t_, err = io.CopyN(fa, rand.Reader, 1000*1024)\n\t\trequire.NoError(t, err)\n\n\t\terr = repo.Save(context.Background())\n\t\trequire.NoError(t, err)\n\n\t\tdiffa, err := repo.Diff(context.Background(), dira)\n\t\trequire.NoError(t, err)\n\t\tassert.Empty(t, diffa)\n\n\t\t// Create another dir with a file of the same name.\n\t\t// We should see the file as modified in the diff.\n\t\tdirb, err := ioutil.TempDir(\"\", \"\")\n\t\trequire.NoError(t, err)\n\t\tdirs = append(dirs, dirb)\n\t\tfb, err := os.Create(filepath.Join(dirb, \"file\"))\n\t\trequire.NoError(t, err)\n\t\tdefer fb.Close()\n\t\t_, err = io.CopyN(fb, rand.Reader, 1000*1024)\n\t\trequire.NoError(t, err)\n\n\t\tdiffb, err := repo.Diff(context.Background(), dirb)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, diffb)\n\t\tassert.Equal(t, 1, len(diffb))\n\t\tchanges := []*du.Change{\n\t\t\t{Path: filepath.Base(fa.Name()), Type: du.Mod},\n\t\t}\n\t\tfor i, c := range diffb {\n\t\t\tassert.Equal(t, changes[i].Path, c.Path)\n\t\t\tassert.Equal(t, changes[i].Type, c.Type)\n\t\t}\n\n\t\t// Create another dir with a nested dir of the same name as the original file.\n\t\t// We should see the file as modified in the diff.\n\t\tdirc, err := ioutil.TempDir(\"\", \"\")\n\t\trequire.NoError(t, err)\n\t\tdirs = append(dirs, dirc)\n\t\terr = os.MkdirAll(filepath.Join(dirc, \"file\"), os.ModePerm)\n\t\trequire.NoError(t, err)\n\t\tfc, err := os.Create(filepath.Join(dirc, \"file\", \"file\"))\n\t\trequire.NoError(t, err)\n\t\tdefer fc.Close()\n\t\t_, err = io.CopyN(fb, rand.Reader, 1000*1024)\n\t\trequire.NoError(t, err)\n\n\t\tdiffc, err := repo.Diff(context.Background(), dirc)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, diffc)\n\t\tassert.Equal(t, 1, len(diffc))\n\t\tfor i, c := range diffc {\n\t\t\tassert.Equal(t, changes[i].Path, c.Path)\n\t\t\tassert.Equal(t, changes[i].Type, c.Type)\n\t\t}\n\t})\n}\n\nfunc TestRepo_Get(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\tdefer repo.Close()\n\n\terr := repo.Save(context.Background())\n\trequire.NoError(t, err)\n\n\tlc, _, err := repo.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc.Defined())\n\tn, err := repo.GetNode(context.Background(), lc)\n\trequire.NoError(t, err)\n\tassert.Equal(t, lc, n.Cid())\n}\n\nfunc TestRepo_SetRemotePath(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\tdefer repo.Close()\n\n\terr := repo.Save(context.Background())\n\trequire.NoError(t, err)\n\tlc, _, err := repo.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc.Defined())\n\n\terr = repo.SetRemotePath(\"\", lc)\n\trequire.NoError(t, err)\n}\n\nfunc TestRepo_MatchPath(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\tdefer repo.Close()\n\n\terr := repo.Save(context.Background())\n\trequire.NoError(t, err)\n\tlc, _, err := repo.Root()\n\trequire.NoError(t, err)\n\tassert.True(t, lc.Defined())\n\n\trc := makeCid(t, \"remote\")\n\terr = repo.SetRemotePath(\"\", rc)\n\trequire.NoError(t, err)\n\n\tmatch, err := repo.MatchPath(\"\", lc, rc)\n\trequire.NoError(t, err)\n\tassert.True(t, match)\n}\n\nfunc TestRepo_RemovePath(t *testing.T) {\n\trepo := makeRepo(t, \"testdata/a\", options.BalancedLayout)\n\tdefer repo.Close()\n\n\terr := repo.SetRemotePath(\"path/to/file\", makeCid(t, \"remote\"))\n\trequire.NoError(t, err)\n\terr = repo.RemovePath(context.Background(), \"path/to/file\")\n\trequire.NoError(t, err)\n\n\t_, _, err = repo.GetPathMap(\"path/to/file\")\n\trequire.Error(t, err)\n}\n\nfunc makeRepo(t *testing.T, root string, layout options.Layout) *Repo {\n\trepo, err := NewRepo(root, \".textile/repo\", layout)\n\trequire.NoError(t, err)\n\n\tt.Cleanup(func() {\n\t\terr := os.RemoveAll(repo.Path())\n\t\trequire.NoError(t, err)\n\t})\n\treturn repo\n}\n\nfunc makeCid(t *testing.T, s string) cid.Cid {\n\th1, err := mh.Sum([]byte(s), mh.SHA2_256, -1)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\treturn cid.NewCidV1(0x55, h1)\n}\n"
  },
  {
    "path": "buckets/local/testdata/a/bar.txt",
    "content": "Astonishment across the centuries the sky calls to us with pretty stories for which there's little good evidence courage of our questions billions upon billions? Another world great turbulent clouds a still more glorious dawn awaits courage of our questions Tunguska event how far away. Two ghostly white figures in coveralls and helmets are soflty dancing ship of the imagination star stuff harvesting star light from which we spring citizens of distant epochs something incredible is waiting to be known."
  },
  {
    "path": "buckets/local/testdata/a/foo.txt",
    "content": "Radio telescope with pretty stories for which there's little good evidence the sky calls to us something incredible is waiting to be known Rig Veda science. From which we spring the only home we've ever known concept of the number one the carbon in our apple pies Orion's sword extraordinary claims require extraordinary evidence. The ash of stellar alchemy encyclopaedia galactica across the centuries with pretty stories for which there's little good evidence a very small stage in a vast cosmic arena a very small stage in a vast cosmic arena?"
  },
  {
    "path": "buckets/local/testdata/a/one/baz.txt",
    "content": "Orion's sword great turbulent clouds brain is the seed of intelligence made in the interiors of collapsing stars cosmos white dwarf. Rig Veda ship of the imagination shores of the cosmic ocean rich in heavy atoms shores of the cosmic ocean courage of our questions. Kindling the energy hidden in matter permanence of the stars the only home we've ever known how far away citizens of distant epochs shores of the cosmic ocean."
  },
  {
    "path": "buckets/local/testdata/a/one/buz.txt",
    "content": "Extraplanetary as a patch of light encyclopaedia galactica cosmos the ash of stellar alchemy quasar. Intelligent beings vanquish the impossible hundreds of thousands gathered by gravity permanence of the stars Rig Veda? Extraordinary claims require extraordinary evidence courage of our questions invent the universe the only home we've ever known a very small stage in a vast cosmic arena made in the interiors of collapsing stars. Dream of the mind's eye two ghostly white figures in coveralls and helmets are soflty dancing a mote of dust suspended in a sunbeam the carbon in our apple pies the sky calls to us a still more glorious dawn awaits?"
  },
  {
    "path": "buckets/local/testdata/a/one/two/boo.txt",
    "content": "Billions upon billions something incredible is waiting to be known star stuff harvesting star light Sea of Tranquility of brilliant syntheses billions upon billions. The carbon in our apple pies are creatures of the cosmos tendrils of gossamer clouds vanquish the impossible rich in mystery a mote of dust suspended in a sunbeam. The ash of stellar alchemy a still more glorious dawn awaits how far away a very small stage in a vast cosmic arena invent the universe bits of moving fluff and billions upon billions upon billions upon billions upon billions upon billions upon billions."
  },
  {
    "path": "buckets/local/testdata/a/one/two/fuz.txt",
    "content": "Shores of the cosmic ocean extraordinary claims require extraordinary evidence cosmic ocean as a patch of light the only home we've ever known courage of our questions. Hydrogen atoms rings of Uranus a very small stage in a vast cosmic arena with pretty stories for which there's little good evidence great turbulent clouds permanence of the stars. With pretty stories for which there's little good evidence a mote of dust suspended in a sunbeam a mote of dust suspended in a sunbeam hearts of the stars from which we spring globular star cluster."
  },
  {
    "path": "buckets/local/testdata/b/foo.txt",
    "content": "Laws of physics prime number the carbon in our apple pies dream of the mind's eye emerged into consciousness finite but unbounded. Encyclopaedia galactica globular star cluster a very small stage in a vast cosmic arena Orion's sword something incredible is waiting to be known astonishment. Bits of moving fluff gathered by gravity tendrils of gossamer clouds birth two ghostly white figures in coveralls and helmets are soflty dancing citizens of distant epochs and billions upon billions upon billions upon billions upon billions upon billions upon billions."
  },
  {
    "path": "buckets/local/testdata/b/one/baz.txt",
    "content": "Orion's sword great turbulent clouds brain is the seed of intelligence made in the interiors of collapsing stars cosmos white dwarf. Rig Veda ship of the imagination shores of the cosmic ocean rich in heavy atoms shores of the cosmic ocean courage of our questions. Kindling the energy hidden in matter permanence of the stars the only home we've ever known how far away citizens of distant epochs shores of the cosmic ocean."
  },
  {
    "path": "buckets/local/testdata/b/one/muz.txt",
    "content": "Extraplanetary as a patch of light encyclopaedia galactica cosmos the ash of stellar alchemy quasar. Intelligent beings vanquish the impossible hundreds of thousands gathered by gravity permanence of the stars Rig Veda? Extraordinary claims require extraordinary evidence courage of our questions invent the universe the only home we've ever known a very small stage in a vast cosmic arena made in the interiors of collapsing stars. Dream of the mind's eye two ghostly white figures in coveralls and helmets are soflty dancing a mote of dust suspended in a sunbeam the carbon in our apple pies the sky calls to us a still more glorious dawn awaits?"
  },
  {
    "path": "buckets/local/testdata/b/one/three/far.txt",
    "content": "Decipherment take root and flourish white dwarf Hypatia something incredible is waiting to be known concept of the number one. Two ghostly white figures in coveralls and helmets are soflty dancing prime number courage of our questions the sky calls to us vanquish the impossible across the centuries. Descended from astronomers the sky calls to us rich in heavy atoms a still more glorious dawn awaits dream of the mind's eye descended from astronomers and billions upon billions upon billions upon billions upon billions upon billions upon billions."
  },
  {
    "path": "buckets/local/testdata/b/one/two/fuz.txt",
    "content": "Shores of the cosmic ocean extraordinary claims require extraordinary evidence cosmic ocean as a patch of light the only home we've ever known courage of our questions. Hydrogen atoms rings of Uranus a very small stage in a vast cosmic arena with pretty stories for which there's little good evidence great turbulent clouds permanence of the stars. With pretty stories for which there's little good evidence a mote of dust suspended in a sunbeam a mote of dust suspended in a sunbeam hearts of the stars from which we spring globular star cluster."
  },
  {
    "path": "buckets/local/watch.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"time\"\n\n\t\"github.com/radovskyb/watcher\"\n\t\"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nconst (\n\tfileSystemWatchInterval = time.Millisecond * 100\n\treconnectInterval       = time.Second * 5\n)\n\n// Watch watches for and auto-pushes local bucket changes at an interval,\n// and listens for and auto-pulls remote changes as they arrive.\n// Use the WithOffline option to keep watching during network interruptions.\n// Returns a channel of watch connectivity states.\n// Cancel context to stop watching.\nfunc (b *Bucket) Watch(ctx context.Context, opts ...WatchOption) (<-chan cmd.WatchState, error) {\n\tctx, err := b.Context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\targs := &watchOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tif !args.offline {\n\t\treturn b.watchWhileConnected(ctx, args.events)\n\t}\n\treturn cmd.Watch(ctx, func(ctx context.Context) (<-chan cmd.WatchState, error) {\n\t\treturn b.watchWhileConnected(ctx, args.events)\n\t}, reconnectInterval)\n}\n\n// watchWhileConnected will watch until context is canceled or an error occurs.\nfunc (b *Bucket) watchWhileConnected(ctx context.Context, pevents chan<- Event) (<-chan cmd.WatchState, error) {\n\tid, err := b.Thread()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbp, err := b.Path()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tstate := make(chan cmd.WatchState)\n\tgo func() {\n\t\tdefer close(state)\n\t\tw := watcher.New()\n\t\tdefer w.Close()\n\t\tw.SetMaxEvents(1)\n\t\tif err := w.AddRecursive(bp); err != nil {\n\t\t\tstate <- cmd.WatchState{Err: err, Aborted: true}\n\t\t\treturn\n\t\t}\n\n\t\t// Start listening for remote changes\n\t\tevents, err := b.clients.Threads.Listen(ctx, id, []client.ListenOption{{\n\t\t\tType:       client.ListenAll,\n\t\t\tInstanceID: b.Key(),\n\t\t}})\n\t\tif err != nil {\n\t\t\tstate <- cmd.WatchState{Err: err, Aborted: !cmd.IsConnectionError(err)}\n\t\t\treturn\n\t\t}\n\t\terrs := make(chan error)\n\t\tgo func() {\n\t\t\tfor e := range events {\n\t\t\t\tif e.Err != nil {\n\t\t\t\t\terrs <- e.Err // events will close on error\n\t\t\t\t} else if err := b.watchPull(ctx, pevents); err != nil {\n\t\t\t\t\terrs <- err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t}()\n\n\t\t// Start listening for local changes\n\t\tgo func() {\n\t\t\tif err := w.Start(fileSystemWatchInterval); err != nil {\n\t\t\t\terrs <- err\n\t\t\t}\n\t\t}()\n\t\tgo func() {\n\t\t\tfor {\n\t\t\t\tselect {\n\t\t\t\tcase <-w.Event:\n\t\t\t\t\tif err := b.watchPush(ctx, pevents); err != nil {\n\t\t\t\t\t\terrs <- err\n\t\t\t\t\t}\n\t\t\t\tcase err := <-w.Error:\n\t\t\t\t\terrs <- err\n\t\t\t\tcase <-w.Closed:\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t}()\n\n\t\t// Manually sync once on startup\n\t\tif err := b.watchPush(ctx, pevents); err != nil {\n\t\t\tstate <- cmd.WatchState{Err: err, Aborted: !cmd.IsConnectionError(err)}\n\t\t\treturn\n\t\t}\n\n\t\t// If we made it here, we must be online\n\t\tstate <- cmd.WatchState{State: cmd.Online}\n\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase err := <-errs:\n\t\t\t\tstate <- cmd.WatchState{Err: err, Aborted: !cmd.IsConnectionError(err)}\n\t\t\t\treturn\n\t\t\tcase <-ctx.Done():\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}()\n\treturn state, nil\n}\n\nfunc (b *Bucket) watchPush(ctx context.Context, events chan<- Event) error {\n\tb.pushBlock <- struct{}{}\n\tdefer func() {\n\t\t<-b.pushBlock\n\t}()\n\tif _, err := b.PushLocal(ctx, WithEvents(events)); errors.Is(err, ErrUpToDate) {\n\t\treturn nil\n\t} else if errors.Is(err, buckets.ErrNonFastForward) {\n\t\t// Pull remote changes\n\t\tif _, err = b.PullRemote(ctx, WithEvents(events)); err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// Now try pushing again\n\t\tif _, err = b.PushLocal(ctx, WithEvents(events)); err != nil {\n\t\t\treturn err\n\t\t}\n\t} else if err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc (b *Bucket) watchPull(ctx context.Context, events chan<- Event) error {\n\tselect {\n\tcase b.pushBlock <- struct{}{}:\n\t\tif _, err := b.PullRemote(ctx, WithEvents(events)); !errors.Is(err, ErrUpToDate) {\n\t\t\t<-b.pushBlock\n\t\t\treturn err\n\t\t}\n\t\t<-b.pushBlock\n\tdefault:\n\t\t// Ignore if there's a push in progress\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "buf.yaml",
    "content": "version: v1beta1\nbuild:\n  roots:\n    - .\n  excludes:\n    - api/bucketsd/pb/javascript\n    - api/hubd/pb/javascript\n    - api/usersd/pb/javascript\nlint:\n  use:\n    - DEFAULT\n  except:\n    - PACKAGE_VERSION_SUFFIX\n  ignore_only:\n    ENUM_ZERO_VALUE_SUFFIX:\n      - api/mindexd/pb/mindexd.proto\n    ENUM_VALUE_PREFIX:\n      - api/mindexd/pb/mindexd.proto\n  ignore:\n    - api/mindexd/pb/google\n    - api/mindexd/pb/protoc-gen-openapiv2\n\nbreaking:\n  use:\n    - FILE\n"
  },
  {
    "path": "buildinfo/buildinfo.go",
    "content": "package buildinfo\n\nimport \"fmt\"\n\nvar (\n\t// GitCommit is set by govvv at build time.\n\tGitCommit = \"\"\n\t// GitBranch  is set by govvv at build time.\n\tGitBranch = \"\"\n\t// GitState  is set by govvv at build time.\n\tGitState = \"\"\n\t// GitSummary is set by govvv at build time.\n\tGitSummary = \"\"\n\t// BuildDate  is set by govvv at build time.\n\tBuildDate = \"\"\n\t// Version  is set by govvv at build time.\n\tVersion = \"git\"\n)\n\n// Summary prints a summary of all build info.\nfunc Summary() string {\n\treturn fmt.Sprintf(\n\t\t\"\\tversion:\\t%s\\n\\tbuild date:\\t%s\\n\\tgit summary:\\t%s\\n\\tgit branch:\\t%s\\n\\tgit commit:\\t%s\\n\\tgit state:\\t%s\",\n\t\tVersion,\n\t\tBuildDate,\n\t\tGitSummary,\n\t\tGitBranch,\n\t\tGitCommit,\n\t\tGitState,\n\t)\n}\n"
  },
  {
    "path": "buildtools/install_protoc.bash",
    "content": "#!/bin/bash\nset -eo pipefail\n\nif [ ! -d ./protoc ]; then\n\tOS=$(uname)\n\tif [ $OS = \"Darwin\" ]; then\n\t\tOS=\"osx\"\n\tfi\n\tVERSION=3.13.0\n\tZIPNAME=protoc-$VERSION-$OS-x86_64\n\tDOWNLOADLINK=https://github.com/protocolbuffers/protobuf/releases/download/v$VERSION/$ZIPNAME.zip\n\tcurl -LO $DOWNLOADLINK\n\tunzip $ZIPNAME.zip -d protoc\n\trm $ZIPNAME.zip\nfi\n\nif [ ! -d ./protoc-gen-go ]; then\n\tgit clone --single-branch --depth 1 --branch \"v1.4.3\" https://github.com/golang/protobuf.git\n\tcd protobuf \n\tgo build -o ../protoc-gen-go/protoc-gen-go ./protoc-gen-go \n\tcd ..\n\trm -rf protobuf\nfi\n"
  },
  {
    "path": "cmd/buck/cli/add.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar addCmd = &cobra.Command{\n\tUse:   \"add [cid] [path]\",\n\tShort: \"Adds a UnixFs DAG locally at path\",\n\tLong:  `Adds a UnixFs DAG locally at path, merging with existing content.`,\n\tArgs:  cobra.ExactArgs(2),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tyes, err := c.Flags().GetBool(\"yes\")\n\t\tcmd.ErrCheck(err)\n\t\ttarget, err := cid.Decode(args[0])\n\t\tcmd.ErrCheck(err)\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PushTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tevents := make(chan local.Event)\n\t\tdefer close(events)\n\t\tgo handleEvents(events)\n\t\terr = buck.AddRemoteCid(\n\t\t\tctx,\n\t\t\ttarget,\n\t\t\targs[1],\n\t\t\tlocal.WithSelectMerge(getSelectMergeStrategy(yes)),\n\t\t\tlocal.WithAddEvents(events),\n\t\t)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"Merged %s with %s\", target, args[1])\n\t},\n}\n\nfunc getSelectMergeStrategy(auto bool) local.SelectMergeFunc {\n\treturn func(desc string, isDir bool) (s local.MergeStrategy, err error) {\n\t\tif isDir {\n\t\t\tif auto {\n\t\t\t\treturn local.Merge, nil\n\t\t\t}\n\t\t\tprompt := promptui.Select{\n\t\t\t\tLabel: desc,\n\t\t\t\tItems: []local.MergeStrategy{local.Skip, local.Merge, local.Replace},\n\t\t\t}\n\t\t\t_, res, err := prompt.Run()\n\t\t\tif err != nil {\n\t\t\t\treturn s, err\n\t\t\t}\n\t\t\treturn local.MergeStrategy(res), nil\n\t\t} else {\n\t\t\tif auto {\n\t\t\t\treturn local.Replace, nil\n\t\t\t}\n\t\t\tprompt := promptui.Prompt{\n\t\t\t\tLabel:     desc,\n\t\t\t\tIsConfirm: true,\n\t\t\t}\n\t\t\tif _, err := prompt.Run(); err != nil {\n\t\t\t\treturn local.Skip, nil\n\t\t\t}\n\t\t\treturn local.Replace, nil\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "cmd/buck/cli/archive.go",
    "content": "package cli\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io\"\n\t\"math/big\"\n\t\"os\"\n\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"google.golang.org/protobuf/encoding/protojson\"\n)\n\nvar defaultArchiveConfigCmd = &cobra.Command{\n\tUse:   \"default-config\",\n\tShort: \"Print the default archive storage configuration for the specified Bucket.\",\n\tLong:  `Print the default archive storage configuration for the specified Bucket.`,\n\tArgs:  cobra.NoArgs,\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tconfig, err := buck.DefaultArchiveConfig(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tbytes, err := json.MarshalIndent(config, \"\", \"  \")\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Message(\"%s\", string(bytes))\n\t},\n}\n\nvar setDefaultArchiveConfigCmd = &cobra.Command{\n\tUse:   \"set-default-config [(optional)file]\",\n\tShort: \"Set the default archive storage configuration for the specified Bucket.\",\n\tLong: `Set the default archive storage configuration for the specified Bucket from a file, stdin, or flags.\n\nIf flags are specified, this command updates the current default storage-config with the *explicitly set* flags. \nFlags that aren't explicitly set won't set the default value, and thus keep the original value in the storage-config.\n\nIf a file or stdin is used, the storage-config will be completely overridden by the provided one.`,\n\tExample: \"hub buck archive set-default-config --rep-factor=3 --fast-retrieval --verified-deal --trusted-miners=f08240,f023467,f09848\",\n\tArgs:    cobra.RangeArgs(0, 1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tvar config local.ArchiveConfig\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\n\t\tstdIn, err := c.Flags().GetBool(\"stdin\")\n\t\tcmd.ErrCheck(err)\n\t\tif stdIn {\n\t\t\t// Read config json from stdin\n\t\t\treader := c.InOrStdin()\n\t\t\tbuf := new(bytes.Buffer)\n\t\t\t_, err := buf.ReadFrom(reader)\n\t\t\tcmd.ErrCheck(err)\n\n\t\t\tcmd.ErrCheck(json.Unmarshal(buf.Bytes(), &config))\n\t\t} else if len(args) > 0 {\n\t\t\t// Read config json from path\n\t\t\tfile, err := os.Open(args[0])\n\t\t\tdefer func() {\n\t\t\t\terr := file.Close()\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t}()\n\t\t\treader := file\n\t\t\tcmd.ErrCheck(err)\n\t\t\tbuf := new(bytes.Buffer)\n\t\t\t_, err = buf.ReadFrom(reader)\n\t\t\tcmd.ErrCheck(err)\n\n\t\t\tcmd.ErrCheck(json.Unmarshal(buf.Bytes(), &config))\n\t\t} else {\n\t\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\t\tdefer cancel()\n\t\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tconfig, err = buck.DefaultArchiveConfig(ctx)\n\t\t\tcmd.ErrCheck(err)\n\n\t\t\tif c.Flags().Changed(\"rep-factor\") {\n\t\t\t\trepFactor, err := c.Flags().GetInt(\"rep-factor\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.RepFactor = repFactor\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"deal-min-duration\") {\n\t\t\t\tdealMinDuration, err := c.Flags().GetInt64(\"deal-min-duration\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.DealMinDuration = dealMinDuration\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"max-price\") {\n\t\t\t\tmaxPrice, err := c.Flags().GetUint64(\"max-price\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.MaxPrice = maxPrice\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"excluded-miners\") {\n\t\t\t\texcludedMiners, err := c.Flags().GetStringSlice(\"excluded-miners\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.ExcludedMiners = excludedMiners\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"trusted-miners\") {\n\t\t\t\ttrustedMiners, err := c.Flags().GetStringSlice(\"trusted-miners\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.TrustedMiners = trustedMiners\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"country-codes\") {\n\t\t\t\tcountryCodes, err := c.Flags().GetStringSlice(\"country-codes\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.CountryCodes = countryCodes\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"fast-retrieval\") {\n\t\t\t\tfastRetrieval, err := c.Flags().GetBool(\"fast-retrieval\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.FastRetrieval = fastRetrieval\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"verified-deal\") {\n\t\t\t\tverifiedDeal, err := c.Flags().GetBool(\"verified-deal\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.VerifiedDeal = verifiedDeal\n\t\t\t}\n\n\t\t\tif c.Flags().Changed(\"deal-start-offset\") {\n\t\t\t\tdealStartOffset, err := c.Flags().GetInt64(\"deal-start-offset\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tconfig.DealStartOffset = dealStartOffset\n\t\t\t}\n\t\t}\n\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\terr = buck.SetDefaultArchiveConfig(ctx, config)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"Bucket default archive config updated\")\n\t},\n}\n\nvar archiveCmd = &cobra.Command{\n\tUse:   \"archive\",\n\tShort: \"Create a Filecoin archive\",\n\tLong:  `Creates a Filecoin archive from the remote bucket root. Pass in a custom archive storage config via the --file flag or stdin to override the default archive storage configuration.`,\n\tArgs:  cobra.NoArgs,\n\tRun: func(c *cobra.Command, args []string) {\n\t\tyes, err := c.Flags().GetBool(\"yes\")\n\t\tcmd.ErrCheck(err)\n\t\tif !yes {\n\t\t\tcmd.Warn(\"The archive will be done in the Filecoin Mainnet. Use with caution.\")\n\t\t\tprompt := promptui.Prompt{\n\t\t\t\tLabel:     \"Proceed\",\n\t\t\t\tIsConfirm: true,\n\t\t\t}\n\t\t\tif _, err := prompt.Run(); err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\tfmt.Println(\"\")\n\t\t}\n\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\n\t\tdiff, err := buck.DiffLocal()\n\t\tcmd.ErrCheck(err)\n\t\tif len(diff) != 0 && !yes {\n\t\t\tcmd.Warn(\"You have unpushed local changes. Are you sure you want to archive the last pushed bucket?\")\n\t\t\tprompt := promptui.Prompt{\n\t\t\t\tLabel:     \"Proceed\",\n\t\t\t\tIsConfirm: true,\n\t\t\t}\n\t\t\tif _, err := prompt.Run(); err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\tfmt.Println(\"\")\n\t\t}\n\n\t\tvar reader io.Reader\n\t\tif c.Flags().Changed(\"file\") {\n\t\t\tconfigPath, err := c.Flags().GetString(\"file\")\n\t\t\tcmd.ErrCheck(err)\n\t\t\tfile, err := os.Open(configPath)\n\t\t\tdefer func() {\n\t\t\t\terr := file.Close()\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t}()\n\t\t\tcmd.ErrCheck(err)\n\t\t\treader = file\n\t\t} else {\n\t\t\tstat, _ := os.Stdin.Stat()\n\t\t\t// stdin is being piped in (not being read from terminal)\n\t\t\tif (stat.Mode() & os.ModeCharDevice) == 0 {\n\t\t\t\treader = c.InOrStdin()\n\t\t\t}\n\t\t}\n\n\t\topts := []local.ArchiveRemoteOption{local.WithSkipAutomaticVerifiedDeal(true)}\n\n\t\tconfig := local.ArchiveConfig{}\n\t\tif reader != nil {\n\t\t\tbuf := new(bytes.Buffer)\n\t\t\t_, err := buf.ReadFrom(reader)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tcmd.ErrCheck(json.Unmarshal(buf.Bytes(), &config))\n\t\t} else {\n\t\t\tconfig, err = buck.DefaultArchiveConfig(ctx)\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\n\t\taddrs, err := buck.Addresses(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tif len(addrs.Addresses) != 1 {\n\t\t\tcmd.Fatal(fmt.Errorf(\"There should be exactly one wallet address but there are %d\", len(addrs.Addresses)))\n\t\t}\n\n\t\taddrInfo := addrs.Addresses[0]\n\t\tbalance, ok := big.NewInt(0).SetString(addrInfo.Balance, 10)\n\t\tif !ok {\n\t\t\tcmd.Fatal(fmt.Errorf(\"parsing current balance\"))\n\t\t}\n\t\tif balance.Cmp(big.NewInt(0)) == 0 {\n\t\t\tcmd.Warn(\"The wallet address balance is zero, you may need to add some funds!\")\n\t\t}\n\n\t\tskipVerifiedDealOverride, err := c.Flags().GetBool(\"skip-verified-deal-override\")\n\t\tcmd.ErrCheck(err)\n\t\tif !skipVerifiedDealOverride {\n\t\t\tif !config.VerifiedDeal && addrInfo.VerifiedClientInfo != nil {\n\t\t\t\tremainingDataCap, ok := big.NewInt(0).SetString(addrInfo.VerifiedClientInfo.RemainingDatacapBytes, 10)\n\t\t\t\tif !ok {\n\t\t\t\t\tcmd.Fatal(fmt.Errorf(\"Parsing remaining datacap\"))\n\t\t\t\t}\n\t\t\t\tif remainingDataCap.Cmp(big.NewInt(0)) > 0 {\n\t\t\t\t\t// If the default storage-config is !verified-deal, but the client\n\t\t\t\t\t// is verified, then help him set this value automatically.\n\t\t\t\t\tcmd.Message(\"The Filecoin wallet is verified, enabling verified deals automatically.\")\n\t\t\t\t\tconfig.VerifiedDeal = true\n\t\t\t\t} else {\n\t\t\t\t\tcmd.Message(\"The Filecoin wallet is verified, but the remaining data-cap is zero.\")\n\t\t\t\t}\n\t\t\t} else if !config.VerifiedDeal && addrInfo.VerifiedClientInfo == nil {\n\t\t\t\t// If the client isn't verified, we can't tune its storage-config\n\t\t\t\t// to get a verified deal. Explain how to get automatically verified.\n\t\t\t\tcmd.Warn(\"The Filecoin wallet address isn't verified, which can potentially lead to paying high-prices for storage.\")\n\t\t\t\tcmd.Message(\"You can get verified automatically using your GitHub account at https://verify.glif.io\")\n\t\t\t} else if config.VerifiedDeal && addrInfo.VerifiedClientInfo == nil {\n\t\t\t\t// Explain to the user that despite she has set the verifiedDeal\n\t\t\t\t// attribute in it's storage config, it needs to get verified first.\n\t\t\t\tcmd.Warn(\"Despite the storage-config has verified-deals enabled, the Filecoin wallet address isn't verified.\")\n\t\t\t\tcmd.Message(\"You can get verified automatically using your GitHub account at https://verify.glif.io\")\n\t\t\t}\n\t\t}\n\n\t\tif !config.VerifiedDeal && !yes {\n\t\t\tcmd.Warn(\"Are you sure you want to archive with an unverified deal?\")\n\t\t\tprompt := promptui.Prompt{\n\t\t\t\tLabel:     \"Proceed\",\n\t\t\t\tIsConfirm: true,\n\t\t\t}\n\t\t\tif _, err := prompt.Run(); err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\tfmt.Println(\"\")\n\t\t}\n\t\tif len(config.TrustedMiners) == 0 && !yes {\n\t\t\tcmd.Message(\"The storage-config trusted miners list is empty, which can lead to unreliable and high-cost Filecoin deal making.\")\n\t\t\tcmd.Message(\"You can discover reliable miners by exploring: `hub fil query` and `hub fil calculate`.\")\n\t\t\tcmd.Warn(\"Are you sure want to use potentially unreliable miners?\")\n\t\t\tprompt := promptui.Prompt{\n\t\t\t\tLabel:     \"Proceed\",\n\t\t\t\tIsConfirm: true,\n\t\t\t}\n\t\t\tif _, err := prompt.Run(); err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\tfmt.Println(\"\")\n\t\t}\n\n\t\tif config.MaxPrice == 0 && !yes {\n\t\t\tcmd.Warn(\"The storage-config doesn't specify a limit to pay for storage price\")\n\t\t\tcmd.Message(\"You can set a limit with `hub buck set-storage-config --set-max-price`\")\n\t\t\tcmd.Warn(\"Are you sure you want to make a deal without a max-price limit?\")\n\t\t\tprompt := promptui.Prompt{\n\t\t\t\tLabel:     \"Proceed\",\n\t\t\t\tIsConfirm: true,\n\t\t\t}\n\t\t\tif _, err := prompt.Run(); err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\tfmt.Println(\"\")\n\t\t}\n\n\t\topts = append(opts, local.WithArchiveConfig(config))\n\t\terr = buck.ArchiveRemote(ctx, opts...)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Success(\"Archive queued successfully\")\n\t},\n}\n\nvar archiveLsCmd = &cobra.Command{\n\tUse:   \"list\",\n\tShort: \"Shows information about current and historical archives.\",\n\tLong:  `Shows information about current and historical archives.`,\n\tArgs:  cobra.NoArgs,\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tres, err := buck.Archives(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t},\n}\n\nvar archiveWatchCmd = &cobra.Command{\n\tUse:   \"watch\",\n\tShort: \"Watch the status of the most recent bucket archive.\",\n\tLong:  `Watch the status of the most recent bucket archive.`,\n\tArgs:  cobra.NoArgs,\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.ArchiveWatchTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tmsgs, err := buck.ArchiveWatch(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tfor m := range msgs {\n\t\t\tswitch m.Type {\n\t\t\tcase local.ArchiveMessage:\n\t\t\t\tcmd.Message(m.Message)\n\t\t\tcase local.ArchiveError:\n\t\t\t\tif m.InactivityClose {\n\t\t\t\t\tcmd.Warn(\"No news from this job for a long-time. Re-run the command if you're still interested!\")\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tcmd.Fatal(m.Error)\n\t\t\t}\n\t\t}\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/cli.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"os\"\n\t\"runtime\"\n\t\"strconv\"\n\n\taurora2 \"github.com/logrusorgru/aurora\"\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nconst Name = \"buck\"\n\nvar bucks *local.Buckets\n\nvar aurora = aurora2.NewAurora(runtime.GOOS != \"windows\")\n\ntype Format string\n\nconst (\n\tDefaultFormat Format = \"default\"\n\tJSONFormat           = \"json\"\n)\n\nfunc Init(baseCmd *cobra.Command) {\n\tbaseCmd.AddCommand(\n\t\tinitCmd,\n\t\tgetCmd,\n\t\texistingCmd,\n\t\tlinksCmd,\n\t\trootCmd,\n\t\tstatusCmd,\n\t\tlsCmd,\n\t\tpushCmd,\n\t\tpullCmd,\n\t\taddCmd,\n\t\twatchCmd,\n\t\tcatCmd,\n\t\tdestroyCmd,\n\t\tencryptCmd,\n\t\tdecryptCmd,\n\t\tarchiveCmd,\n\t\trolesCmd,\n\t\tremoteCmd,\n\t)\n\tarchiveCmd.AddCommand(defaultArchiveConfigCmd, setDefaultArchiveConfigCmd, archiveWatchCmd, archiveLsCmd)\n\trolesCmd.AddCommand(rolesGrantCmd, rolesLsCmd)\n\n\tbaseCmd.PersistentFlags().String(\"key\", \"\", \"Bucket key\")\n\tbaseCmd.PersistentFlags().String(\"thread\", \"\", \"Thread ID\")\n\n\tinitCmd.Flags().StringP(\"name\", \"n\", \"\", \"Bucket name\")\n\tinitCmd.Flags().BoolP(\"private\", \"p\", false, \"Obfuscates files and folders with encryption\")\n\tinitCmd.Flags().String(\"cid\", \"\", \"Bootstrap the bucket with a UnixFS Cid from the IPFS network\")\n\tinitCmd.Flags().BoolP(\"existing\", \"e\", false, \"Interactively select an existing remote bucket if true\")\n\tinitCmd.Flags().Bool(\"soft\", false, \"Accepts all local changes, including deletions, if true\")\n\tinitCmd.Flags().Bool(\"hard\", false, \"Discards all local changes if true\")\n\tinitCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips the confirmation prompt if true\")\n\tinitCmd.Flags().BoolP(\"quiet\", \"q\", false, \"Write minimal output\")\n\tinitCmd.Flags().Bool(\"unfreeze\", false, \"Unfreeze --cid from a known or imported deals in Filecoin.\")\n\n\tpushCmd.Flags().BoolP(\"force\", \"f\", false, \"Allows non-fast-forward updates if true\")\n\tpushCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips the confirmation prompt if true\")\n\tpushCmd.Flags().BoolP(\"quiet\", \"q\", false, \"Write minimal output\")\n\n\tpullCmd.Flags().BoolP(\"force\", \"f\", false, \"Force pull all remote files if true\")\n\tpullCmd.Flags().Bool(\"hard\", false, \"Discards local changes if true\")\n\tpullCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips the confirmation prompt if true\")\n\tpullCmd.Flags().BoolP(\"quiet\", \"q\", false, \"Write minimal output\")\n\n\taddCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips confirmations prompts to always overwrite files and merge folders\")\n\n\tencryptCmd.Flags().StringP(\"password\", \"p\", \"\", \"Encryption password\")\n\tdecryptCmd.Flags().StringP(\"password\", \"p\", \"\", \"Decryption password\")\n\n\tarchiveCmd.Flags().StringP(\"file\", \"f\", \"\", \"Optional path to a file containing archive config json that will override the default\")\n\tarchiveCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips the confirmation prompt if true\")\n\tarchiveCmd.Flags().Bool(\"skip-verified-deal-override\", false, \"Skips automatic set of verified-deal in storage-config\")\n\n\tsetDefaultArchiveConfigCmd.Flags().IntP(\"rep-factor\", \"r\", 1, \"Target number of active deals\")\n\tsetDefaultArchiveConfigCmd.Flags().Int64P(\"deal-min-duration\", \"d\", 0, \"Minimum duration for the deal\")\n\tsetDefaultArchiveConfigCmd.Flags().StringSliceP(\"excluded-miners\", \"x\", nil, \"Miner addresses that should not be used\")\n\tsetDefaultArchiveConfigCmd.Flags().StringSliceP(\"trusted-miners\", \"t\", nil, \"Miner addresses that must be used\")\n\tsetDefaultArchiveConfigCmd.Flags().StringSliceP(\"country-codes\", \"c\", nil, \"Select miners with specific countries\")\n\tsetDefaultArchiveConfigCmd.Flags().Uint64P(\"max-price\", \"p\", 0, \"Maximum price that will be spent per RepFactor in AttoFIL/GiB per Epoch\")\n\tsetDefaultArchiveConfigCmd.Flags().BoolP(\"fast-retrieval\", \"f\", true, \"Created deals should enable the fast retrieval feature\")\n\tsetDefaultArchiveConfigCmd.Flags().BoolP(\"verified-deal\", \"v\", false, \"Deal is originating from a verified client with DataCap\")\n\tsetDefaultArchiveConfigCmd.Flags().Int64P(\"deal-start-offset\", \"e\", 0, \"Epochs in the future impose a deadline for deals to be on-chain\")\n\tsetDefaultArchiveConfigCmd.Flags().BoolP(\"stdin\", \"i\", false, \"Set config from stdin JSON\")\n\n\trolesGrantCmd.Flags().StringP(\"role\", \"r\", \"\", \"Access role: none, reader, writer, admin\")\n\n\tlinksCmd.Flags().String(\"format\", \"default\", \"Display URL links in the provided format. Options: [default,json]\")\n\n\tremoteCmd.AddCommand(remoteAddCmd)\n\tremoteCmd.AddCommand(remoteRemoveCmd)\n\n\tremoteAddCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips the confirmation prompt if true\")\n\tremoteAddCmd.Flags().BoolP(\"quiet\", \"q\", false, \"Write minimal output\")\n\n\tremoteRemoveCmd.Flags().BoolP(\"yes\", \"y\", false, \"Skips the confirmation prompt if true\")\n\tremoteRemoveCmd.Flags().BoolP(\"quiet\", \"q\", false, \"Write minimal output\")\n}\n\nfunc SetBucks(b *local.Buckets) {\n\tbucks = b\n}\n\nvar getCmd = &cobra.Command{\n\tUse:   \"get\",\n\tShort: \"Get a bucket\",\n\tLong:  `Gets bucket metadata.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tinfo, err := buck.Info(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.JSON(info)\n\t},\n}\n\nvar existingCmd = &cobra.Command{\n\tUse:   \"existing\",\n\tShort: \"List buckets\",\n\tLong:  `Lists all buckets.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tlist, err := bucks.RemoteBuckets(ctx, conf.Thread)\n\t\tcmd.ErrCheck(err)\n\t\tvar data [][]string\n\t\tif len(list) > 0 {\n\t\t\tfor _, item := range list {\n\t\t\t\tdata = append(data, []string{\n\t\t\t\t\titem.Name,\n\t\t\t\t\titem.Thread.String(),\n\t\t\t\t\titem.Key,\n\t\t\t\t\titem.Path.Cid().String(),\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t\tif len(data) > 0 {\n\t\t\tcmd.RenderTable([]string{\"name\", \"thread\", \"key\", \"root\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d buckets\", aurora.White(len(data)).Bold())\n\t},\n}\n\nvar statusCmd = &cobra.Command{\n\tUse: \"status\",\n\tAliases: []string{\n\t\t\"st\",\n\t},\n\tShort: \"Show bucket object changes\",\n\tLong:  `Displays paths that have been added to and paths that have been removed or differ from the local bucket root.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tdiff, err := buck.DiffLocal()\n\t\tcmd.ErrCheck(err)\n\t\tif len(diff) == 0 {\n\t\t\tcmd.End(\"Everything up-to-date\")\n\t\t}\n\t\tfor _, c := range diff {\n\t\t\tcf := local.ChangeColor(c.Type)\n\t\t\tcmd.Message(\"%s  %s\", cf(local.ChangeType(c.Type)), cf(c.Rel))\n\t\t}\n\t},\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   \"root\",\n\tShort: \"Show bucket root CIDs\",\n\tLong:  `Shows the local and remote bucket root CIDs (these will differ if the bucket is encrypted).`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tr, err := buck.Roots(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tif r.Local.Defined() {\n\t\t\tcmd.Message(\"%s (local)\", aurora.White(r.Local).Bold())\n\t\t}\n\t\tcmd.Message(\"%s (remote)\", aurora.White(r.Remote).Bold())\n\t},\n}\n\nvar linksCmd = &cobra.Command{\n\tUse: \"links [path]\",\n\tAliases: []string{\n\t\t\"link\",\n\t},\n\tShort: \"Display URL links to a bucket object.\",\n\tLong:  `Displays a thread, IPNS, and website link to a bucket object. Omit path to display the top-level links.`,\n\tArgs:  cobra.MaximumNArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tvar pth string\n\t\tif len(args) > 0 {\n\t\t\tpth = args[0]\n\t\t}\n\t\tlinks, err := buck.RemoteLinks(ctx, pth)\n\t\tcmd.ErrCheck(err)\n\n\t\tformat, err := c.Flags().GetString(\"format\")\n\t\tcmd.ErrCheck(err)\n\n\t\tprintLinks(links, Format(format))\n\t},\n}\n\nfunc printLinks(reply local.Links, format Format) {\n\tswitch format {\n\tcase JSONFormat:\n\t\tcmd.JSON(reply)\n\tdefault:\n\t\tcmd.Message(\"Your bucket links:\")\n\t\tcmd.Message(\"%s Thread link\", aurora.White(reply.URL).Bold())\n\t\tcmd.Message(\"%s IPNS link (propagation can be slow)\", aurora.White(reply.IPNS).Bold())\n\t\tif reply.WWW != \"\" {\n\t\t\tcmd.Message(\"%s Bucket website\", aurora.White(reply.WWW).Bold())\n\t\t}\n\t}\n}\n\nvar lsCmd = &cobra.Command{\n\tUse: \"ls [path]\",\n\tAliases: []string{\n\t\t\"list\",\n\t},\n\tShort: \"List top-level or nested bucket objects\",\n\tLong:  `Lists top-level or nested bucket objects.`,\n\tArgs:  cobra.MaximumNArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tvar pth string\n\t\tif len(args) > 0 {\n\t\t\tpth = args[0]\n\t\t}\n\t\titems, err := buck.ListRemotePath(ctx, pth)\n\t\tcmd.ErrCheck(err)\n\t\tvar data [][]string\n\t\tif len(items) > 0 {\n\t\t\tfor _, item := range items {\n\t\t\t\tvar links string\n\t\t\t\tif item.IsDir {\n\t\t\t\t\tlinks = strconv.Itoa(item.ItemsCount)\n\t\t\t\t} else {\n\t\t\t\t\tlinks = \"n/a\"\n\t\t\t\t}\n\t\t\t\tdata = append(data, []string{\n\t\t\t\t\titem.Name,\n\t\t\t\t\tformatBytes(item.Size, false),\n\t\t\t\t\tstrconv.FormatBool(item.IsDir),\n\t\t\t\t\tlinks,\n\t\t\t\t\titem.Cid.String(),\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t\tif len(data) > 0 {\n\t\t\tcmd.RenderTable([]string{\"name\", \"size\", \"dir\", \"objects\", \"cid\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d objects\", aurora.White(len(data)).Bold())\n\t},\n}\n\nvar catCmd = &cobra.Command{\n\tUse:   \"cat [path]\",\n\tShort: \"Cat bucket objects at path\",\n\tLong:  `Cats bucket objects at path.`,\n\tArgs:  cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PullTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\terr = buck.CatRemotePath(ctx, args[0], os.Stdout)\n\t\tcmd.ErrCheck(err)\n\t},\n}\n\nvar encryptCmd = &cobra.Command{\n\tUse:   \"encrypt [file] [password]\",\n\tShort: \"Encrypt file with a password\",\n\tLong:  `Encrypts file with a password (WARNING: Password is not recoverable).`,\n\tArgs:  cobra.ExactArgs(2),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\terr = buck.EncryptLocalPathWithPassword(args[0], args[1], os.Stdout)\n\t\tcmd.ErrCheck(err)\n\t},\n}\n\nvar decryptCmd = &cobra.Command{\n\tUse:   \"decrypt [path] [password]\",\n\tShort: \"Decrypt bucket objects at path with password\",\n\tLong:  `Decrypts bucket objects at path with the given password and writes to stdout.`,\n\tArgs:  cobra.ExactArgs(2),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PullTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\terr = buck.DecryptRemotePathWithPassword(ctx, args[0], args[1], os.Stdout)\n\t\tcmd.ErrCheck(err)\n\t},\n}\n\nvar destroyCmd = &cobra.Command{\n\tUse:   \"destroy\",\n\tShort: \"Destroy bucket and all objects\",\n\tLong:  `Destroys the bucket and all objects.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Warn(\"%s\",\n\t\t\taurora.Red(\n\t\t\t\t\"This action cannot be undone. The bucket and all associated data will be permanently deleted.\"))\n\t\tprompt := promptui.Prompt{\n\t\t\tLabel:     \"Are you absolutely sure\",\n\t\t\tIsConfirm: true,\n\t\t}\n\t\tif _, err = prompt.Run(); err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\t\terr = buck.Destroy(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"Your bucket has been deleted\")\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/init.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\n\tcid \"github.com/ipfs/go-cid\"\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar initCmd = &cobra.Command{\n\tUse:   \"init\",\n\tShort: \"Initialize a new or existing bucket\",\n\tLong: `Initializes a new or existing bucket.\n\nA .textile config directory and a seed file will be created in the current working directory.\nExisting configs will not be overwritten.\n\nUse the '--existing' flag to interactively select an existing remote bucket.\nUse the '--cid' flag to initialize from an existing UnixFS DAG.\nUse the '--unfreeze' flag to retrieve '--cid' from known or imported deals.\n\nBy default, if the remote bucket exists, remote objects are pulled and merged with local changes.\nUse the '--soft' flag to accept all local changes, including deletions.\nUse the '--hard' flag to discard all local changes.\n`,\n\tArgs: cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\n\t\tquiet, err := c.Flags().GetBool(\"quiet\")\n\t\tcmd.ErrCheck(err)\n\n\t\texisting := conf.Thread.Defined() && conf.Key != \"\"\n\t\tchooseExisting, err := c.Flags().GetBool(\"existing\")\n\t\tcmd.ErrCheck(err)\n\t\tif existing && chooseExisting {\n\t\t\tchooseExisting = false // Nothing left to choose\n\t\t}\n\n\t\tvar strategy local.InitStrategy\n\t\tsoft, err := c.Flags().GetBool(\"soft\")\n\t\tcmd.ErrCheck(err)\n\t\thard, err := c.Flags().GetBool(\"hard\")\n\t\tcmd.ErrCheck(err)\n\t\tif soft && hard {\n\t\t\tcmd.Fatal(errors.New(\"--soft and --hard cannot by used together\"))\n\t\t}\n\t\tif soft {\n\t\t\tstrategy = local.Soft\n\t\t} else if hard {\n\t\t\tstrategy = local.Hard\n\t\t} else {\n\t\t\tstrategy = local.Hybrid\n\t\t}\n\n\t\tvar xcid cid.Cid\n\t\txcids, err := c.Flags().GetString(\"cid\")\n\t\tcmd.ErrCheck(err)\n\t\tif xcids != \"\" {\n\t\t\txcid, err = cid.Decode(xcids)\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\t\tif (existing || chooseExisting) && xcid.Defined() {\n\t\t\tcmd.Fatal(errors.New(\"--cid cannot be used with an existing bucket\"))\n\t\t}\n\n\t\tunfreeze, err := c.Flags().GetBool(\"unfreeze\")\n\t\tcmd.ErrCheck(err)\n\t\tif unfreeze && xcid == cid.Undef {\n\t\t\tcmd.Fatal(errors.New(\"--unfreeze requires specifying --cid\"))\n\t\t}\n\n\t\tvar name string\n\t\tvar private bool\n\t\tif !existing && !chooseExisting {\n\t\t\tif c.Flags().Changed(\"name\") {\n\t\t\t\tname, err = c.Flags().GetString(\"name\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t} else {\n\t\t\t\tnamep := promptui.Prompt{\n\t\t\t\t\tLabel: \"Enter a name for your new bucket (optional)\",\n\t\t\t\t}\n\t\t\t\tname, err = namep.Run()\n\t\t\t\tif err != nil {\n\t\t\t\t\tcmd.End(\"\")\n\t\t\t\t}\n\t\t\t}\n\t\t\tif c.Flags().Changed(\"private\") {\n\t\t\t\tprivate, err = c.Flags().GetBool(\"private\")\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t} else {\n\t\t\t\tprivp := promptui.Prompt{\n\t\t\t\t\tLabel:     \"Encrypt bucket contents\",\n\t\t\t\t\tIsConfirm: true,\n\t\t\t\t}\n\t\t\t\tif _, err = privp.Run(); err == nil {\n\t\t\t\t\tprivate = true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif chooseExisting {\n\t\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\t\tdefer cancel()\n\t\t\tlist, err := bucks.RemoteBuckets(ctx, conf.Thread)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tif len(list) == 0 {\n\t\t\t\tcmd.Fatal(fmt.Errorf(\"no existing buckets found\"))\n\t\t\t}\n\t\t\tprompt := promptui.Select{\n\t\t\t\tLabel: \"Which existing bucket do you want to init from?\",\n\t\t\t\tItems: list,\n\t\t\t\tTemplates: &promptui.SelectTemplates{\n\t\t\t\t\tActive: fmt.Sprintf(`{{ \"%s\" | cyan }} {{ .Name | bold }} {{ .Key | faint | bold }}`,\n\t\t\t\t\t\tpromptui.IconSelect),\n\t\t\t\t\tInactive: `{{ .Name | faint }} {{ .Key | faint | bold }}`,\n\t\t\t\t\tSelected: aurora.Sprintf(aurora.BrightBlack(\"> Selected bucket {{ .Name | white | bold }}\")),\n\t\t\t\t},\n\t\t\t}\n\t\t\tindex, _, err := prompt.Run()\n\t\t\tif err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\tselected := list[index]\n\t\t\tname = selected.Name\n\t\t\tconf.Thread = selected.Thread\n\t\t\tconf.Key = selected.Key\n\t\t\texisting = true\n\t\t}\n\n\t\tif !conf.Thread.Defined() {\n\t\t\tctx, cancel := context.WithTimeout(bucks.Context(context.Background()), cmd.Timeout)\n\t\t\tdefer cancel()\n\t\t\tselected := bucks.Clients().SelectThread(\n\t\t\t\tctx,\n\t\t\t\t\"Buckets are written to a threadDB. Select or create a new one\",\n\t\t\t\taurora.Sprintf(aurora.BrightBlack(\"> Selected threadDB {{ .Label | white | bold }}\")),\n\t\t\t\ttrue)\n\t\t\tif selected.Label == \"Create new\" {\n\t\t\t\tif selected.Name == \"\" {\n\t\t\t\t\tprompt := promptui.Prompt{\n\t\t\t\t\t\tLabel: \"Enter a name for your new threadDB (optional)\",\n\t\t\t\t\t}\n\t\t\t\t\tselected.Name, err = prompt.Run()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tcmd.End(\"\")\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tctx = common.NewThreadNameContext(ctx, selected.Name)\n\t\t\t\tconf.Thread = thread.NewIDV1(thread.Raw, 32)\n\t\t\t\terr = bucks.Clients().Threads.NewDB(ctx, conf.Thread, db.WithNewManagedName(selected.Name))\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t} else {\n\t\t\t\tconf.Thread = selected.ID\n\t\t\t}\n\t\t}\n\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tvar events chan local.Event\n\t\tif !quiet {\n\t\t\tevents = make(chan local.Event)\n\t\t\tdefer close(events)\n\t\t\tgo handleEvents(events)\n\t\t}\n\t\tbuck, err := bucks.NewBucket(\n\t\t\tctx,\n\t\t\tconf,\n\t\t\tlocal.WithName(name),\n\t\t\tlocal.WithPrivate(private),\n\t\t\tlocal.WithCid(xcid),\n\t\t\tlocal.WithUnfreeze(unfreeze),\n\t\t\tlocal.WithStrategy(strategy),\n\t\t\tlocal.WithInitEvents(events))\n\t\tcmd.ErrCheck(err)\n\n\t\tif unfreeze {\n\t\t\tcmd.Message(\"The retrieval-id is: %s\", buck.RetrievalID())\n\t\t\tcmd.Message(\"The bucket will be automatically created if the Filecoin retrieval succeeds.\")\n\t\t\tcmd.Message(\"Track progress using `hub retrievals [ls | logs]`.\")\n\t\t\treturn\n\t\t}\n\n\t\tlinks, err := buck.RemoteLinks(ctx, \"\")\n\t\tcmd.ErrCheck(err)\n\t\tprintLinks(links, DefaultFormat)\n\n\t\tvar msg string\n\t\tif !existing {\n\t\t\tmsg = \"Initialized %s as a new empty bucket\"\n\t\t\tif xcid.Defined() {\n\t\t\t\tmsg = \"Initialized %s as a new bootstrapped bucket\"\n\t\t\t}\n\t\t} else {\n\t\t\tmsg = \"Initialized %s from an existing bucket\"\n\t\t}\n\n\t\tbp, err := buck.Path()\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(msg, aurora.White(bp).Bold())\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/pull.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar pullCmd = &cobra.Command{\n\tUse:   \"pull\",\n\tShort: \"Pull bucket object changes\",\n\tLong: `Pulls paths that have been added to and paths that have been removed or differ from the remote bucket root.\n\nUse the '--hard' flag to discard all local changes.\nUse the '--force' flag to pull all remote objects, even if they already exist locally.\n`,\n\tArgs: cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tforce, err := c.Flags().GetBool(\"force\")\n\t\tcmd.ErrCheck(err)\n\t\thard, err := c.Flags().GetBool(\"hard\")\n\t\tcmd.ErrCheck(err)\n\t\tyes, err := c.Flags().GetBool(\"yes\")\n\t\tcmd.ErrCheck(err)\n\t\tquiet, err := c.Flags().GetBool(\"quiet\")\n\t\tcmd.ErrCheck(err)\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PullTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tvar events chan local.Event\n\t\tif !quiet {\n\t\t\tevents = make(chan local.Event)\n\t\t\tdefer close(events)\n\t\t\tgo handleEvents(events)\n\t\t}\n\t\troots, err := buck.PullRemote(\n\t\t\tctx,\n\t\t\tlocal.WithConfirm(getConfirm(\"Discard %d local changes\", yes)),\n\t\t\tlocal.WithForce(force),\n\t\t\tlocal.WithHard(hard),\n\t\t\tlocal.WithEvents(events))\n\t\tif errors.Is(err, local.ErrAborted) {\n\t\t\tcmd.End(\"\")\n\t\t} else if errors.Is(err, local.ErrUpToDate) {\n\t\t\tcmd.End(\"Everything up-to-date\")\n\t\t} else if err != nil {\n\t\t\tcmd.Fatal(err)\n\t\t}\n\t\tcmd.Message(\"%s\", aurora.White(roots.Remote).Bold())\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/push.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"strings\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nconst nonFastForwardMsg = \"the root of your bucket is behind (try `%s` before pushing again)\"\n\nvar pushCmd = &cobra.Command{\n\tUse:   \"push\",\n\tShort: \"Push bucket object changes\",\n\tLong: `Pushes paths that have been added to and paths that have been removed or differ from the local bucket root.\n\nUse the '--force' flag to allow a non-fast-forward update.\n`,\n\tArgs: cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tforce, err := c.Flags().GetBool(\"force\")\n\t\tcmd.ErrCheck(err)\n\t\tyes, err := c.Flags().GetBool(\"yes\")\n\t\tcmd.ErrCheck(err)\n\t\tquiet, err := c.Flags().GetBool(\"quiet\")\n\t\tcmd.ErrCheck(err)\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PushTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\n\t\tvar events chan local.Event\n\t\tif !quiet {\n\t\t\tevents = make(chan local.Event)\n\t\t\tdefer close(events)\n\t\t\tgo handleEvents(events)\n\t\t}\n\t\troots, err := buck.PushLocal(\n\t\t\tctx,\n\t\t\tlocal.WithConfirm(getConfirm(\"Push %d changes\", yes)),\n\t\t\tlocal.WithForce(force),\n\t\t\tlocal.WithEvents(events),\n\t\t)\n\t\tif errors.Is(err, local.ErrAborted) {\n\t\t\tcmd.End(\"\")\n\t\t} else if errors.Is(err, local.ErrUpToDate) {\n\t\t\tcmd.End(\"Everything up-to-date\")\n\t\t} else if err != nil && strings.Contains(err.Error(), buckets.ErrNonFastForward.Error()) {\n\t\t\tcmd.Fatal(errors.New(nonFastForwardMsg), aurora.Cyan(\"buck pull\"))\n\t\t} else if err != nil {\n\t\t\tcmd.Fatal(err)\n\t\t}\n\t\tcmd.Message(\"%s\", aurora.White(roots.Remote).Bold())\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/remote.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"os\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\tdu \"github.com/ipfs/go-merkledag/dagutils\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar remoteCmd = &cobra.Command{\n\tUse:   \"remote\",\n\tShort: \"Manage a remote bucket without effecting the local filesystem\",\n\tLong:  `Manages a remote bucket without effecting the local filesystem.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar remoteAddCmd = &cobra.Command{\n\tUse:   \"add [file/folder] [path]\",\n\tShort: \"Add a file or folder to a remote bucket path\",\n\tLong: `Adds a file or folder to a remote bucket path.\n`,\n\tArgs: cobra.ExactArgs(2),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tyes, err := c.Flags().GetBool(\"yes\")\n\t\tcmd.ErrCheck(err)\n\t\tquiet, err := c.Flags().GetBool(\"quiet\")\n\t\tcmd.ErrCheck(err)\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PushTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tbp, err := buck.Path()\n\t\tcmd.ErrCheck(err)\n\t\tig, err := local.IgnoreFile(bp)\n\t\tcmd.ErrCheck(err)\n\n\t\tvar events chan local.Event\n\t\tif !quiet {\n\t\t\tevents = make(chan local.Event)\n\t\t\tdefer close(events)\n\t\t\tgo handleEvents(events)\n\t\t}\n\n\t\tsrc, err := filepath.Abs(args[0])\n\t\tcmd.ErrCheck(err)\n\n\t\tvar (\n\t\t\tpth   = filepath.ToSlash(filepath.Clean(args[1]))\n\t\t\tnames []string\n\t\t\tdiff  []local.Change\n\t\t)\n\n\t\terr = filepath.Walk(src, func(n string, info os.FileInfo, err error) error {\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif !info.IsDir() {\n\t\t\t\tf := strings.TrimPrefix(n, pth+string(os.PathSeparator))\n\t\t\t\tif local.Ignore(n, ig) ||\n\t\t\t\t\tstrings.Contains(f, buckets.SeedName) ||\n\t\t\t\t\tstrings.Contains(f, buck.ConfDir()) ||\n\t\t\t\t\tstrings.HasSuffix(f, local.PatchExt) {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\tnames = append(names, n)\n\t\t\t}\n\t\t\treturn nil\n\t\t})\n\t\tcmd.ErrCheck(err)\n\n\t\tfor _, n := range names {\n\t\t\tr, err := filepath.Rel(buck.Cwd(), n)\n\t\t\tif err != nil {\n\t\t\t\tr = n\n\t\t\t}\n\t\t\tp := path.Join(pth, strings.TrimPrefix(filepath.ToSlash(n), filepath.ToSlash(filepath.Dir(src))))\n\t\t\tdiff = append(diff, local.Change{Type: du.Add, Name: n, Path: p, Rel: r})\n\t\t}\n\n\t\tconfirm := getConfirm(\"Push %d changes\", yes)\n\t\tif confirm != nil {\n\t\t\tif ok := confirm(diff); !ok {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t}\n\n\t\tctx, err = buck.Context(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tr, err := buck.AddRemoteFiles(ctx, buck.Key(), nil, diff, true, events)\n\t\tif errors.Is(err, local.ErrAborted) {\n\t\t\tcmd.End(\"\")\n\t\t} else if err != nil {\n\t\t\tcmd.Fatal(err)\n\t\t}\n\t\tcmd.Message(\"%s\", aurora.White(r.Cid()).Bold())\n\t},\n}\n\nvar remoteRemoveCmd = &cobra.Command{\n\tUse: \"rm [path]\",\n\tAliases: []string{\n\t\t\"remove\",\n\t},\n\tShort: \"Remove a path from a remote bucket\",\n\tLong: `Removes a path from a remote bucket.\n`,\n\tArgs: cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tyes, err := c.Flags().GetBool(\"yes\")\n\t\tcmd.ErrCheck(err)\n\t\tquiet, err := c.Flags().GetBool(\"quiet\")\n\t\tcmd.ErrCheck(err)\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PushTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\n\t\tvar events chan local.Event\n\t\tif !quiet {\n\t\t\tevents = make(chan local.Event)\n\t\t\tdefer close(events)\n\t\t\tgo handleEvents(events)\n\t\t}\n\n\t\tpth := filepath.Clean(args[0])\n\t\tchange := local.Change{\n\t\t\tType: du.Remove,\n\t\t\tName: pth,\n\t\t\tPath: pth,\n\t\t\tRel:  pth,\n\t\t}\n\n\t\tconfirm := getConfirm(\"Push %d changes\", yes)\n\t\tif confirm != nil {\n\t\t\tif ok := confirm([]local.Change{change}); !ok {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t}\n\n\t\tctx, err = buck.Context(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tr, err := buck.RemoveRemoteFile(ctx, buck.Key(), nil, change, true, events)\n\t\tif errors.Is(err, local.ErrAborted) {\n\t\t\tcmd.End(\"\")\n\t\t} else if err != nil {\n\t\t\tcmd.Fatal(err)\n\t\t}\n\t\tif r != nil {\n\t\t\tcmd.Message(\"%s\", aurora.White(r.Cid()).Bold())\n\t\t}\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/roles.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar rolesCmd = &cobra.Command{\n\tUse: \"roles\",\n\tAliases: []string{\n\t\t\"role\",\n\t},\n\tShort: \"Object access role management\",\n\tLong:  `Manages remote bucket object access roles.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar rolesGrantCmd = &cobra.Command{\n\tUse:   \"grant [identity] [path]\",\n\tShort: \"Grant remote object access roles\",\n\tLong: `Grants remote object access roles to an identity.\n\nIdentity must be a multibase encoded public key. A \"*\" value will set the default access role for an object.\n\nAccess roles:\n\"none\": Revokes all access.\n\"reader\": Grants read-only access.\n\"writer\": Grants read and write access.\n\"admin\": Grants read, write, delete and role editing access.\n`,\n\tArgs: cobra.RangeArgs(1, 2),\n\tRun: func(c *cobra.Command, args []string) {\n\t\troleStr, err := c.Flags().GetString(\"role\")\n\t\tcmd.ErrCheck(err)\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PullTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tif roleStr == \"\" {\n\t\t\troles := []string{\"None\", \"Reader\", \"Writer\", \"Admin\"}\n\t\t\tprompt := promptui.Select{\n\t\t\t\tLabel: \"Select a role\",\n\t\t\t\tItems: roles,\n\t\t\t\tTemplates: &promptui.SelectTemplates{\n\t\t\t\t\tActive:   fmt.Sprintf(`{{ \"%s\" | cyan }} {{ . | bold }}`, promptui.IconSelect),\n\t\t\t\t\tInactive: `{{ . | faint }}`,\n\t\t\t\t\tSelected: aurora.Sprintf(aurora.BrightBlack(\"> Selected role {{ . | white | bold }}\")),\n\t\t\t\t},\n\t\t\t}\n\t\t\tindex, _, err := prompt.Run()\n\t\t\tif err != nil {\n\t\t\t\tcmd.End(\"\")\n\t\t\t}\n\t\t\troleStr = roles[index]\n\t\t}\n\t\trole, err := buckets.NewRoleFromString(roleStr)\n\t\tif err != nil {\n\t\t\tcmd.Fatal(fmt.Errorf(\"access role must be one of: none, reader, writer, or admin\"))\n\t\t}\n\t\tvar pth string\n\t\tif len(args) > 1 {\n\t\t\tpth = args[1]\n\t\t}\n\t\tres, err := buck.PushPathAccessRoles(ctx, pth, map[string]buckets.Role{args[0]: role})\n\t\tcmd.ErrCheck(err)\n\t\tvar data [][]string\n\t\tif len(res) > 0 {\n\t\t\tfor i, r := range res {\n\t\t\t\tdata = append(data, []string{i, r.String()})\n\t\t\t}\n\t\t}\n\t\tif len(data) > 0 {\n\t\t\tcmd.RenderTable([]string{\"identity\", \"role\"}, data)\n\t\t}\n\t\tcmd.Success(\"Updated access roles for path %s\", aurora.White(pth).Bold())\n\t},\n}\n\nvar rolesLsCmd = &cobra.Command{\n\tUse: \"ls [path]\",\n\tAliases: []string{\n\t\t\"list\",\n\t},\n\tShort: \"List top-level or nested bucket object access roles\",\n\tLong:  `Lists top-level or nested bucket object access roles.`,\n\tArgs:  cobra.MaximumNArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.PullTimeout)\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tvar pth string\n\t\tif len(args) > 0 {\n\t\t\tpth = args[0]\n\t\t}\n\t\tres, err := buck.PullPathAccessRoles(ctx, pth)\n\t\tcmd.ErrCheck(err)\n\t\tvar data [][]string\n\t\tif len(res) > 0 {\n\t\t\tfor i, r := range res {\n\t\t\t\tdata = append(data, []string{i, r.String()})\n\t\t\t}\n\t\t}\n\t\tif len(data) > 0 {\n\t\t\tcmd.RenderTable([]string{\"identity\", \"role\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d access roles\", aurora.White(len(data)).Bold())\n\t},\n}\n"
  },
  {
    "path": "cmd/buck/cli/util.go",
    "content": "package cli\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"runtime\"\n\n\tpb \"github.com/cheggaaa/pb/v3\"\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nfunc getConfirm(label string, auto bool) local.ConfirmDiffFunc {\n\treturn func(diff []local.Change) bool {\n\t\tif auto {\n\t\t\treturn true\n\t\t}\n\t\tfor _, c := range diff {\n\t\t\tcf := local.ChangeColor(c.Type)\n\t\t\tcmd.Message(\"%s  %s\", cf(local.ChangeType(c.Type)), cf(c.Rel))\n\t\t}\n\t\tprompt := promptui.Prompt{\n\t\t\tLabel:     fmt.Sprintf(label, len(diff)),\n\t\t\tIsConfirm: true,\n\t\t}\n\t\tif _, err := prompt.Run(); err != nil {\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t}\n}\n\nfunc handleEvents(events chan local.Event) {\n\tvar bar *pb.ProgressBar\n\tif runtime.GOOS != \"windows\" {\n\t\tbar = pb.New(0)\n\t\tbar.Set(pb.Bytes, true)\n\t\ttmp := `{{string . \"prefix\"}}{{counters . }} {{bar . \"[\" \"=\" \">\" \"-\" \"]\"}} {{percent . }} {{etime . }}{{string . \"suffix\"}}`\n\t\tbar.SetTemplate(pb.ProgressBarTemplate(tmp))\n\t}\n\n\tclear := func() {\n\t\tif bar != nil {\n\t\t\t_, _ = fmt.Fprintf(os.Stderr, \"\\033[2K\\r\")\n\t\t}\n\t}\n\n\tfor e := range events {\n\t\tswitch e.Type {\n\t\tcase local.EventProgress:\n\t\t\tif bar == nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tbar.SetTotal(e.Size)\n\t\t\tbar.SetCurrent(e.Complete)\n\t\t\tif !bar.IsStarted() {\n\t\t\t\tbar.Start()\n\t\t\t}\n\t\t\tbar.Write()\n\t\tcase local.EventFileComplete:\n\t\t\tclear()\n\t\t\t_, _ = fmt.Fprintf(os.Stdout,\n\t\t\t\t\"+ %s %s %s\\n\",\n\t\t\t\te.Cid,\n\t\t\t\te.Path,\n\t\t\t\tformatBytes(e.Size, false),\n\t\t\t)\n\t\t\tif bar != nil && bar.IsStarted() {\n\t\t\t\tbar.Write()\n\t\t\t}\n\t\tcase local.EventFileRemoved:\n\t\t\tclear()\n\t\t\t_, _ = fmt.Fprintf(os.Stdout, \"- %s\\n\", e.Path)\n\t\t\tif bar != nil && bar.IsStarted() {\n\t\t\t\tbar.Write()\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Copied from https://github.com/cheggaaa/pb/blob/master/v3/util.go\nconst (\n\t_KiB = 1024\n\t_MiB = 1048576\n\t_GiB = 1073741824\n\t_TiB = 1099511627776\n\n\t_kB = 1e3\n\t_MB = 1e6\n\t_GB = 1e9\n\t_TB = 1e12\n)\n\n// Copied from https://github.com/cheggaaa/pb/blob/master/v3/util.go\nfunc formatBytes(i int64, useSIPrefix bool) (result string) {\n\tif !useSIPrefix {\n\t\tswitch {\n\t\tcase i >= _TiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f TiB\", float64(i)/_TiB)\n\t\tcase i >= _GiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f GiB\", float64(i)/_GiB)\n\t\tcase i >= _MiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f MiB\", float64(i)/_MiB)\n\t\tcase i >= _KiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f KiB\", float64(i)/_KiB)\n\t\tdefault:\n\t\t\tresult = fmt.Sprintf(\"%d B\", i)\n\t\t}\n\t} else {\n\t\tswitch {\n\t\tcase i >= _TB:\n\t\t\tresult = fmt.Sprintf(\"%.02f TB\", float64(i)/_TB)\n\t\tcase i >= _GB:\n\t\t\tresult = fmt.Sprintf(\"%.02f GB\", float64(i)/_GB)\n\t\tcase i >= _MB:\n\t\t\tresult = fmt.Sprintf(\"%.02f MB\", float64(i)/_MB)\n\t\tcase i >= _kB:\n\t\t\tresult = fmt.Sprintf(\"%.02f kB\", float64(i)/_kB)\n\t\tdefault:\n\t\t\tresult = fmt.Sprintf(\"%d B\", i)\n\t\t}\n\t}\n\treturn\n}\n"
  },
  {
    "path": "cmd/buck/cli/watch.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar watchCmd = &cobra.Command{\n\tUse:   \"watch\",\n\tShort: \"Watch auto-pushes local changes to the remote\",\n\tLong:  `Watch auto-pushes local changes to the remote.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tconf, err := bucks.NewConfigFromCmd(c, \".\")\n\t\tcmd.ErrCheck(err)\n\t\tctx, cancel := context.WithCancel(context.Background())\n\t\tdefer cancel()\n\t\tbuck, err := bucks.GetLocalBucket(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tbp, err := buck.Path()\n\t\tcmd.ErrCheck(err)\n\t\tevents := make(chan local.Event)\n\t\tdefer close(events)\n\t\tgo handleWatchEvents(events)\n\t\tstate, err := buck.Watch(ctx, local.WithWatchEvents(events), local.WithOffline(true))\n\t\tcmd.ErrCheck(err)\n\t\tfor s := range state {\n\t\t\tswitch s.State {\n\t\t\tcase cmd.Online:\n\t\t\t\tcmd.Success(\"Watching %s for changes...\", aurora.White(bp).Bold())\n\t\t\tcase cmd.Offline:\n\t\t\t\tif s.Aborted {\n\t\t\t\t\tcmd.Fatal(s.Err)\n\t\t\t\t} else {\n\t\t\t\t\tcmd.Message(\"Not connected. Trying to connect...\")\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n}\n\nfunc handleWatchEvents(events chan local.Event) {\n\tfor e := range events {\n\t\tswitch e.Type {\n\t\tcase local.EventFileComplete:\n\t\t\t_, _ = fmt.Fprintf(os.Stdout,\n\t\t\t\t\"+ %s %s %s\\n\",\n\t\t\t\te.Cid,\n\t\t\t\te.Path,\n\t\t\t\tformatBytes(e.Size, false),\n\t\t\t)\n\t\tcase local.EventFileRemoved:\n\t\t\t_, _ = fmt.Fprintf(os.Stdout, \"- %s\\n\", e.Path)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "cmd/buck/main.go",
    "content": "package main\n\nimport (\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\tbuck \"github.com/textileio/textile/v2/cmd/buck/cli\"\n)\n\nconst defaultTarget = \"127.0.0.1:3006\"\n\nvar clients *cmd.Clients\n\nfunc init() {\n\tbuck.Init(rootCmd)\n\n\trootCmd.PersistentFlags().String(\"api\", defaultTarget, \"API target\")\n}\n\nfunc main() {\n\tcmd.ErrCheck(rootCmd.Execute())\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   buck.Name,\n\tShort: \"Bucket Client\",\n\tLong: `The Bucket Client.\n\nManages files and folders in an object storage bucket.`,\n\tPersistentPreRun: func(c *cobra.Command, args []string) {\n\t\tconfig := local.DefaultConfConfig()\n\t\thubTarget := cmd.GetFlagOrEnvValue(c, \"api\", config.EnvPrefix)\n\t\tminerIndexTarget := cmd.GetFlagOrEnvValue(c, \"apimindex\", config.EnvPrefix)\n\n\t\tclients = cmd.NewClients(hubTarget, false, minerIndexTarget)\n\t\tbuck.SetBucks(local.NewBuckets(clients, config))\n\t},\n\tPersistentPostRun: func(c *cobra.Command, args []string) {\n\t\tclients.Close()\n\t},\n\tArgs: cobra.ExactArgs(0),\n}\n"
  },
  {
    "path": "cmd/buckd/Dockerfile",
    "content": "FROM golang:1.16.0-buster\nMAINTAINER Textile <contact@textile.io>\n\n# This is (in large part) copied (with love) from\n# https://hub.docker.com/r/ipfs/go-ipfs/dockerfile\n\n# Install deps\nRUN apt-get update && apt-get install -y \\\n  libssl-dev \\\n  ca-certificates\n\nENV SRC_DIR /textile\n\n# Download packages first so they can be cached.\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\n# Build the thing.\nRUN cd $SRC_DIR \\\n  && TXTL_BUILD_FLAGS=\"CGO_ENABLED=0 GOOS=linux\" make build-buckd\n\n# Get su-exec, a very minimal tool for dropping privileges,\n# and tini, a very minimal init daemon for containers\nENV SUEXEC_VERSION v0.2\nENV TINI_VERSION v0.19.0\nRUN set -eux; \\\n    dpkgArch=\"$(dpkg --print-architecture)\"; \\\n    case \"${dpkgArch##*-}\" in \\\n        \"amd64\" | \"armhf\" | \"arm64\") tiniArch=\"tini-static-$dpkgArch\" ;;\\\n        *) echo >&2 \"unsupported architecture: ${dpkgArch}\"; exit 1 ;; \\\n    esac; \\\n  cd /tmp \\\n  && git clone https://github.com/ncopa/su-exec.git \\\n  && cd su-exec \\\n  && git checkout -q $SUEXEC_VERSION \\\n  && make su-exec-static \\\n  && cd /tmp \\\n  && wget -q -O tini https://github.com/krallin/tini/releases/download/$TINI_VERSION/$tiniArch \\\n  && chmod +x tini\n\n# Now comes the actual target image, which aims to be as small as possible.\nFROM busybox:1.31.1-glibc\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\n# Get the textile binary, entrypoint script, and TLS CAs from the build container.\nENV SRC_DIR /textile\nCOPY --from=0 $SRC_DIR/buckd /usr/local/bin/buckd\nCOPY --from=0 /tmp/su-exec/su-exec-static /sbin/su-exec\nCOPY --from=0 /tmp/tini /sbin/tini\nCOPY --from=0 /etc/ssl/certs /etc/ssl/certs\n\n# This shared lib (part of glibc) doesn't seem to be included with busybox.\nCOPY --from=0 /lib/*-linux-gnu*/libdl.so.2 /lib/\n\n# Copy over SSL libraries.\nCOPY --from=0 /usr/lib/*-linux-gnu*/libssl.so* /usr/lib/\nCOPY --from=0 /usr/lib/*-linux-gnu*/libcrypto.so* /usr/lib/\n\n# addrApi; can be exposed to the public.\nEXPOSE 3006\n# addrApiProxy; can be exposed to the public.\nEXPOSE 3007\n# addrThreadsHost; must be exposed to the public.\nEXPOSE 4006\n# addrGatewayHost; can be exposed to the public.\nEXPOSE 8006\n\n# Create the repo directory.\nENV BUCKETS_PATH /data/buckets\nRUN mkdir -p $BUCKETS_PATH \\\n  && adduser -D -h $BUCKETS_PATH -u 1000 -G users buckets \\\n  && chown buckets:users $BUCKETS_PATH\n\n# Switch to a non-privileged user.\nUSER buckets\n\n# Expose the repo as a volume.\n# Important this happens after the USER directive so permission are correct.\nVOLUME $BUCKETS_PATH\n\nENTRYPOINT [\"/sbin/tini\", \"--\", \"buckd\"]\n\nCMD [\"--repo=/data/buckets\"]\n"
  },
  {
    "path": "cmd/buckd/Dockerfile.dev",
    "content": "FROM golang:1.16.0-buster\n\nRUN apt-get update\n\nRUN go get github.com/go-delve/delve/cmd/dlv\n\nENV SRC_DIR /textile\n\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\nRUN cd $SRC_DIR \\\n  && CGO_ENABLED=0 GOOS=linux go build -gcflags \"all=-N -l\" -o buckd cmd/buckd/main.go\n\nFROM debian:buster\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\nENV SRC_DIR /textile\nCOPY --from=0 /go/bin/dlv /usr/local/bin/dlv\nCOPY --from=0 $SRC_DIR/buckd /usr/local/bin/buckd\n\nEXPOSE 3006\nEXPOSE 3007\nEXPOSE 4006\nEXPOSE 8006\nEXPOSE 40000\n\nENV BUCKETS_PATH /data/buckets\nRUN adduser --home $BUCKETS_PATH --disabled-login --gecos \"\" --ingroup users buckets\n\nUSER buckets\n\nVOLUME $BUCKETS_PATH\n\nENTRYPOINT [\"dlv\", \"--listen=0.0.0.0:40000\", \"--headless=true\", \"--accept-multiclient\", \"--continue\", \"--api-version=2\", \"exec\", \"/usr/local/bin/buckd\"]\n\nCMD [\"--\", \"--repo=/data/buckets\"]\n"
  },
  {
    "path": "cmd/buckd/docker-compose-dev.yml",
    "content": "version: \"3\"\nservices:\n  buckets:\n    build:\n      context: ../../\n      dockerfile: ./cmd/buckd/Dockerfile.dev\n    volumes:\n      - \"${REPO_PATH}/buckets:/data/buckets\"\n    environment:\n      - BUCK_LOG_DEBUG=true\n      - BUCK_ADDR_API=/ip4/0.0.0.0/tcp/3006\n      - BUCK_ADDR_API_PROXY=/ip4/0.0.0.0/tcp/3007\n      - BUCK_ADDR_MONGO_URI=mongodb://mongo:27017\n      - BUCK_ADDR_MONGO_NAME=buckets\n      - BUCK_ADDR_THREADS_HOST=/ip4/0.0.0.0/tcp/4006\n      - BUCK_ADDR_THREADS_MONGO_URI=mongodb://mongo:27017\n      - BUCK_ADDR_THREADS_MONGO_NAME=buckets_threads\n      - BUCK_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8006\n      - BUCK_ADDR_GATEWAY_URL\n      - BUCK_ADDR_IPFS_API=/dns4/ipfs/tcp/5001\n      - BUCK_ADDR_POWERGATE_API\n      - BUCK_GATEWAY_SUBDOMAINS\n      - BUCK_DNS_DOMAIN\n    ports:\n      - \"127.0.0.1:3006:3006\"\n      - \"127.0.0.1:3007:3007\"\n      - \"4006:4006\"\n      - \"127.0.0.1:8006:8006\"\n      - \"127.0.0.1:40000:40000\"\n    security_opt:\n      - \"seccomp:unconfined\"\n    cap_add:\n      - SYS_PTRACE\n    depends_on:\n      - mongo\n  mongo:\n    image: mongo:latest\n    volumes:\n      - \"${REPO_PATH}/mongo:/data/db\"\n    ports:\n      - \"127.0.0.1:27017:27017\"\n    command:\n      - /bin/bash\n      - -c\n      - |\n        /usr/bin/mongod --fork --logpath /var/log/mongod.log --bind_ip_all --replSet rs0\n        mongo --eval 'rs.initiate({_id: \"rs0\", version: 1, members: [{ _id: 0, host: \"mongo:27017\" }]})'\n        tail -f /var/log/mongod.log\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n    volumes:\n      - \"${REPO_PATH}/ipfs:/data/ipfs\"\n    environment:\n      - IPFS_PROFILE=test\n    ports:\n      - \"4001:4001\"\n      - \"4001:4001/udp\"\n      - \"127.0.0.1:5001:5001\"\n      - \"127.0.0.1:8080:8080\"\n"
  },
  {
    "path": "cmd/buckd/docker-compose.yml",
    "content": "version: \"3\"\nservices:\n  buckets:\n    image: textile/textile:buckets\n    restart: always\n    volumes:\n      - \"${REPO_PATH}/buckets:/data/buckets\"\n    environment:\n      - BUCK_LOG_DEBUG\n      - BUCK_ADDR_API=/ip4/0.0.0.0/tcp/3006\n      - BUCK_ADDR_API_PROXY=/ip4/0.0.0.0/tcp/3007\n      - BUCK_ADDR_MONGO_URI=mongodb://mongo:27017\n      - BUCK_ADDR_MONGO_NAME\n      - BUCK_ADDR_THREADS_HOST=/ip4/0.0.0.0/tcp/4006\n      - BUCK_ADDR_THREADS_MONGO_URI\n      - BUCK_ADDR_THREADS_MONGO_NAME\n      - BUCK_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8006\n      - BUCK_ADDR_GATEWAY_URL\n      - BUCK_ADDR_IPFS_API=/dns4/ipfs/tcp/5001\n      - BUCK_ADDR_POWERGATE_API\n      - BUCK_GATEWAY_SUBDOMAINS\n      - BUCK_DNS_DOMAIN\n      - BUCK_DNS_ZONE_ID\n      - BUCK_DNS_TOKEN\n    ports:\n      - \"3006:3006\"\n      - \"3007:3007\"\n      - \"4006:4006\"\n      - \"8006:8006\"\n    depends_on:\n      - mongo\n  mongo:\n    image: mongo:latest\n    restart: always\n    volumes:\n      - \"${REPO_PATH}/mongo:/data/db\"\n    ports:\n      - \"127.0.0.1:27017:27017\"\n    command:\n      - /bin/bash\n      - -c\n      - |\n        /usr/bin/mongod --fork --logpath /var/log/mongod.log --bind_ip_all --replSet rs0\n        mongo --eval 'rs.initiate({_id: \"rs0\", version: 1, members: [{ _id: 0, host: \"mongo:27017\" }]})'\n        tail -f /var/log/mongod.log\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n    restart: always\n    volumes:\n      - \"${REPO_PATH}/ipfs:/data/ipfs\"\n    ports:\n      - \"4001:4001\"\n      - \"4001:4001/udp\"\n      - \"127.0.0.1:5001:5001\"\n      - \"8080:8080\"\n"
  },
  {
    "path": "cmd/buckd/main.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n\t\"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/core\"\n)\n\nconst daemonName = \"buckd\"\n\nvar (\n\tlog = logging.Logger(daemonName)\n\n\tconfig = &cmd.Config{\n\t\tViper: viper.New(),\n\t\tDir:   \".\" + daemonName,\n\t\tName:  \"config\",\n\t\tFlags: map[string]cmd.Flag{\n\t\t\t\"repo\": {\n\t\t\t\tKey:      \"repo\",\n\t\t\t\tDefValue: \"${HOME}/.\" + daemonName + \"/repo\",\n\t\t\t},\n\t\t\t\"debug\": {\n\t\t\t\tKey:      \"log.debug\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"logFile\": {\n\t\t\t\tKey:      \"log.file\",\n\t\t\t\tDefValue: \"\", // no log file\n\t\t\t},\n\n\t\t\t// Addresses\n\t\t\t\"addrApi\": {\n\t\t\t\tKey:      \"addr.api\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/3006\",\n\t\t\t},\n\t\t\t\"addrApiProxy\": {\n\t\t\t\tKey:      \"addr.api_proxy\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/3007\",\n\t\t\t},\n\t\t\t\"addrMongoUri\": {\n\t\t\t\tKey:      \"addr.mongo_uri\",\n\t\t\t\tDefValue: \"mongodb://127.0.0.1:27017\",\n\t\t\t},\n\t\t\t\"addrMongoName\": {\n\t\t\t\tKey:      \"addr.mongo_name\",\n\t\t\t\tDefValue: \"buckets\",\n\t\t\t},\n\t\t\t\"addrThreadsHost\": {\n\t\t\t\tKey:      \"addr.threads.host\",\n\t\t\t\tDefValue: \"/ip4/0.0.0.0/tcp/4006\",\n\t\t\t},\n\t\t\t\"addrThreadsMongoUri\": {\n\t\t\t\tKey:      \"addr.threads.mongo_uri\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"addrThreadsMongoName\": {\n\t\t\t\tKey:      \"addr.threads.mongo_name\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"addrGatewayHost\": {\n\t\t\t\tKey:      \"addr.gateway.host\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/8006\",\n\t\t\t},\n\t\t\t\"addrGatewayUrl\": {\n\t\t\t\tKey:      \"addr.gateway.url\",\n\t\t\t\tDefValue: \"http://127.0.0.1:8006\",\n\t\t\t},\n\t\t\t\"addrIpfsApi\": {\n\t\t\t\tKey:      \"addr.ipfs.api\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/5001\",\n\t\t\t},\n\t\t\t\"addrPowergateApi\": {\n\t\t\t\tKey:      \"addr.powergate.api\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\n\t\t\t// IPNS\n\t\t\t\"ipnsRepublishSchedule\": {\n\t\t\t\tKey:      \"ipns.republish_schedule\",\n\t\t\t\tDefValue: \"0 1 * * *\",\n\t\t\t},\n\t\t\t\"ipnsRepublishConcurrency\": {\n\t\t\t\tKey:      \"ipns.republish_concurrency\",\n\t\t\t\tDefValue: 100,\n\t\t\t},\n\n\t\t\t// Gateway\n\t\t\t\"gatewaySubdomains\": {\n\t\t\t\tKey:      \"gateway.subdomains\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"gatewayMaxEventsPerSec\": {\n\t\t\t\tKey:      \"gateway.max_events_per_sec\",\n\t\t\t\tDefValue: 1000,\n\t\t\t},\n\t\t\t\"gatewayMaxBurstSize\": {\n\t\t\t\tKey:      \"gateway.max_burst_size\",\n\t\t\t\tDefValue: 20,\n\t\t\t},\n\n\t\t\t// Cloudflare\n\t\t\t// @todo: Change these to cloudflareDnsDomain, etc.\n\t\t\t\"dnsDomain\": {\n\t\t\t\tKey:      \"dns.domain\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"dnsZoneID\": {\n\t\t\t\tKey:      \"dns.zone_id\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"dnsToken\": {\n\t\t\t\tKey:      \"dns.token\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t},\n\t\tEnvPre: \"BUCK\",\n\t\tGlobal: true,\n\t}\n)\n\nfunc init() {\n\tcobra.OnInitialize(cmd.InitConfig(config))\n\tcmd.InitConfigCmd(rootCmd, config.Viper, config.Dir)\n\n\trootCmd.PersistentFlags().StringVar(\n\t\t&config.File,\n\t\t\"config\",\n\t\t\"\",\n\t\t\"Config file (default ${HOME}/\"+config.Dir+\"/\"+config.Name+\".yml)\")\n\trootCmd.PersistentFlags().StringP(\n\t\t\"repo\",\n\t\t\"r\",\n\t\tconfig.Flags[\"repo\"].DefValue.(string),\n\t\t\"Path to repository\")\n\trootCmd.PersistentFlags().BoolP(\n\t\t\"debug\",\n\t\t\"d\",\n\t\tconfig.Flags[\"debug\"].DefValue.(bool),\n\t\t\"Enable debug logging\")\n\trootCmd.PersistentFlags().String(\n\t\t\"logFile\",\n\t\tconfig.Flags[\"logFile\"].DefValue.(string),\n\t\t\"Write logs to file\")\n\n\t// Addresses\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApi\",\n\t\tconfig.Flags[\"addrApi\"].DefValue.(string),\n\t\t\"Hub API listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApiProxy\",\n\t\tconfig.Flags[\"addrApiProxy\"].DefValue.(string),\n\t\t\"Hub API proxy listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoUri\",\n\t\tconfig.Flags[\"addrMongoUri\"].DefValue.(string),\n\t\t\"MongoDB connection URI\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoName\",\n\t\tconfig.Flags[\"addrMongoName\"].DefValue.(string),\n\t\t\"MongoDB database name\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrThreadsHost\",\n\t\tconfig.Flags[\"addrThreadsHost\"].DefValue.(string),\n\t\t\"Threads peer host listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrThreadsMongoUri\",\n\t\tconfig.Flags[\"addrThreadsMongoUri\"].DefValue.(string),\n\t\t\"Threads MongoDB connection URI\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrThreadsMongoName\",\n\t\tconfig.Flags[\"addrThreadsMongoName\"].DefValue.(string),\n\t\t\"Threads MongoDB database name\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrGatewayHost\",\n\t\tconfig.Flags[\"addrGatewayHost\"].DefValue.(string),\n\t\t\"Local gateway host address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrGatewayUrl\",\n\t\tconfig.Flags[\"addrGatewayUrl\"].DefValue.(string),\n\t\t\"Public gateway address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrIpfsApi\",\n\t\tconfig.Flags[\"addrIpfsApi\"].DefValue.(string),\n\t\t\"IPFS API address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrPowergateApi\",\n\t\tconfig.Flags[\"addrPowergateApi\"].DefValue.(string),\n\t\t\"Powergate API address\")\n\n\t// IPNS\n\trootCmd.PersistentFlags().String(\n\t\t\"ipnsRepublishSchedule\",\n\t\tconfig.Flags[\"ipnsRepublishSchedule\"].DefValue.(string),\n\t\t\"IPNS republishing cron schedule\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"ipnsRepublishConcurrency\",\n\t\tconfig.Flags[\"ipnsRepublishConcurrency\"].DefValue.(int),\n\t\t\"IPNS republishing batch size\")\n\n\t// Gateway\n\trootCmd.PersistentFlags().Bool(\n\t\t\"gatewaySubdomains\",\n\t\tconfig.Flags[\"gatewaySubdomains\"].DefValue.(bool),\n\t\t\"Enable gateway namespace redirects to subdomains\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"gatewayMaxEventsPerSec\",\n\t\tconfig.Flags[\"gatewayMaxEventsPerSec\"].DefValue.(int),\n\t\t\"Gateway max events per second\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"gatewayMaxBurstSize\",\n\t\tconfig.Flags[\"gatewayMaxBurstSize\"].DefValue.(int),\n\t\t\"Gateway gateway max burst size\")\n\n\t// Cloudflare\n\trootCmd.PersistentFlags().String(\n\t\t\"dnsDomain\",\n\t\tconfig.Flags[\"dnsDomain\"].DefValue.(string),\n\t\t\"Root domain for bucket subdomains\")\n\trootCmd.PersistentFlags().String(\n\t\t\"dnsZoneID\",\n\t\tconfig.Flags[\"dnsZoneID\"].DefValue.(string),\n\t\t\"Cloudflare ZoneID for dnsDomain\")\n\trootCmd.PersistentFlags().String(\n\t\t\"dnsToken\",\n\t\tconfig.Flags[\"dnsToken\"].DefValue.(string),\n\t\t\"Cloudflare API Token for dnsDomain\")\n\n\terr := cmd.BindFlags(config.Viper, rootCmd, config.Flags)\n\tcmd.ErrCheck(err)\n}\n\nfunc main() {\n\tcmd.ErrCheck(rootCmd.Execute())\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   daemonName,\n\tShort: \"Buckets daemon\",\n\tLong:  `The Buckets daemon.`,\n\tPersistentPreRun: func(c *cobra.Command, args []string) {\n\t\tconfig.Viper.SetConfigType(\"yaml\")\n\t\tcmd.ExpandConfigVars(config.Viper, config.Flags)\n\n\t\tif config.Viper.GetBool(\"log.debug\") {\n\t\t\terr := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\tdaemonName: logging.LevelDebug,\n\t\t\t})\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\t},\n\tRun: func(c *cobra.Command, args []string) {\n\t\tsettings, err := json.MarshalIndent(config.Viper.AllSettings(), \"\", \"  \")\n\t\tcmd.ErrCheck(err)\n\t\tlog.Debugf(\"loaded config: %s\", string(settings))\n\n\t\tdebug := config.Viper.GetBool(\"log.debug\")\n\t\tlogFile := config.Viper.GetString(\"log.file\")\n\t\terr = cmd.SetupDefaultLoggingConfig(logFile)\n\t\tcmd.ErrCheck(err)\n\n\t\taddrApi := cmd.AddrFromStr(config.Viper.GetString(\"addr.api\"))\n\t\taddrApiProxy := cmd.AddrFromStr(config.Viper.GetString(\"addr.api_proxy\"))\n\t\taddrMongoUri := config.Viper.GetString(\"addr.mongo_uri\")\n\t\taddrMongoName := config.Viper.GetString(\"addr.mongo_name\")\n\t\taddrThreadsHost := cmd.AddrFromStr(config.Viper.GetString(\"addr.threads.host\"))\n\t\taddrThreadsMongoUri := config.Viper.GetString(\"addr.threads.mongo_uri\")\n\t\taddrThreadsMongoName := config.Viper.GetString(\"addr.threads.mongo_name\")\n\t\tipnsRepublishSchedule := config.Viper.GetString(\"ipns.republish_schedule\")\n\t\tipnsRepublishConcurrency := config.Viper.GetInt(\"ipns.republish_concurrency\")\n\t\taddrGatewayHost := cmd.AddrFromStr(config.Viper.GetString(\"addr.gateway.host\"))\n\t\taddrGatewayUrl := config.Viper.GetString(\"addr.gateway.url\")\n\t\taddrIpfsApi := cmd.AddrFromStr(config.Viper.GetString(\"addr.ipfs.api\"))\n\t\taddrPowergateApi := config.Viper.GetString(\"addr.powergate.api\")\n\n\t\tgatewaySubdomains := config.Viper.GetBool(\"gateway.subdomains\")\n\t\tgatewayMaxEventsPerSec := config.Viper.GetInt(\"gateway.max_events_per_sec\")\n\t\tgatewayMaxBurstSize := config.Viper.GetInt(\"gateway.max_burst_size\")\n\n\t\tdnsDomain := config.Viper.GetString(\"dns.domain\")\n\t\tdnsZoneID := config.Viper.GetString(\"dns.zone_id\")\n\t\tdnsToken := config.Viper.GetString(\"dns.token\")\n\n\t\tvar opts []core.Option\n\t\tif addrThreadsMongoUri != \"\" {\n\t\t\tif addrThreadsMongoName == \"\" {\n\t\t\t\tcmd.Fatal(errors.New(\"addr.threads.mongo_name is required with addr.threads.mongo_uri\"))\n\t\t\t}\n\t\t\topts = append(opts, core.WithMongoThreadsPersistence(addrThreadsMongoUri, addrThreadsMongoName))\n\t\t} else {\n\t\t\topts = append(opts, core.WithBadgerThreadsPersistence(config.Viper.GetString(\"repo\")))\n\t\t}\n\n\t\tctx, cancel := context.WithCancel(context.Background())\n\t\tdefer cancel()\n\t\ttextile, err := core.NewTextile(ctx, core.Config{\n\t\t\tDebug: debug,\n\n\t\t\tAddrAPI:                  addrApi,\n\t\t\tAddrAPIProxy:             addrApiProxy,\n\t\t\tAddrMongoURI:             addrMongoUri,\n\t\t\tAddrMongoName:            addrMongoName,\n\t\t\tAddrThreadsHost:          addrThreadsHost,\n\t\t\tAddrGatewayHost:          addrGatewayHost,\n\t\t\tAddrGatewayURL:           addrGatewayUrl,\n\t\t\tAddrIPFSAPI:              addrIpfsApi,\n\t\t\tAddrPowergateAPI:         addrPowergateApi,\n\t\t\tIPNSRepublishSchedule:    ipnsRepublishSchedule,\n\t\t\tIPNSRepublishConcurrency: ipnsRepublishConcurrency,\n\t\t\tUseSubdomains:            gatewaySubdomains,\n\t\t\tMaxEventsPerSec:          gatewayMaxEventsPerSec,\n\t\t\tMaxBurstSize:             gatewayMaxBurstSize,\n\n\t\t\tDNSDomain: dnsDomain,\n\t\t\tDNSZoneID: dnsZoneID,\n\t\t\tDNSToken:  dnsToken,\n\t\t}, opts...)\n\t\tcmd.ErrCheck(err)\n\t\ttextile.Bootstrap()\n\n\t\tfmt.Println(\"Welcome to Buckets!\")\n\t\tfmt.Println(\"Your peer ID is \" + textile.HostID().String())\n\n\t\tcmd.HandleInterrupt(func() {\n\t\t\tif err := textile.Close(); err != nil {\n\t\t\t\tfmt.Println(err.Error())\n\t\t\t}\n\t\t})\n\t},\n}\n"
  },
  {
    "path": "cmd/cmd.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"crypto/tls\"\n\t\"fmt\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/viper\"\n\ttc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tbc \"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\tfc \"github.com/textileio/textile/v2/api/filecoin/client\"\n\thc \"github.com/textileio/textile/v2/api/hubd/client\"\n\tmi \"github.com/textileio/textile/v2/api/mindexd/client\"\n\tuc \"github.com/textileio/textile/v2/api/usersd/client\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/credentials\"\n\t\"google.golang.org/grpc/keepalive\"\n)\n\nvar (\n\t// Timeout is the default timeout used for most commands.\n\tTimeout = time.Minute * 10\n\t// PushTimeout is the command timeout used when pushing bucket changes.\n\tPushTimeout = time.Hour * 24\n\t// PullTimeout is the command timeout used when pulling bucket changes.\n\tPullTimeout = time.Hour * 24\n\t// ArchiveWatchTimeout is the command timeout used when watching archive status messages.\n\tArchiveWatchTimeout = time.Hour * 12\n\n\t// Bold is a styler used to make the output text bold.\n\tBold = promptui.Styler(promptui.FGBold)\n\n\t// Repo organization/repo where client releases are published\n\tRepo = \"textileio/textile\"\n)\n\n// Flag describes a command flag.\ntype Flag struct {\n\tKey      string\n\tDefValue interface{}\n}\n\n// Config describes a command config params and file info.\ntype Config struct {\n\tViper  *viper.Viper\n\tFile   string\n\tDir    string\n\tName   string\n\tFlags  map[string]Flag\n\tEnvPre string\n\tGlobal bool\n}\n\n// ConfConfig is used to generate new messages configs.\ntype ConfConfig struct {\n\tDir       string // Config directory base name\n\tName      string // Name of the mailbox config file\n\tType      string // Type is the type of config file (yaml/json)\n\tEnvPrefix string // A prefix that will be expected on env vars\n}\n\n// NewConfig uses values from ConfConfig to contruct a new config.\nfunc (cc ConfConfig) NewConfig(pth string, flags map[string]Flag, global bool) (c *Config, fileExists bool, err error) {\n\tv := viper.New()\n\tv.SetConfigType(cc.Type)\n\tc = &Config{\n\t\tViper:  v,\n\t\tDir:    cc.Dir,\n\t\tName:   cc.Name,\n\t\tFlags:  flags,\n\t\tEnvPre: cc.EnvPrefix,\n\t\tGlobal: global,\n\t}\n\tfileExists = FindConfigFile(c, pth)\n\treturn c, fileExists, nil\n}\n\n// Clients wraps all the possible hubd/buckd clients.\ntype Clients struct {\n\tBuckets    *bc.Client\n\tThreads    *tc.Client\n\tHub        *hc.Client\n\tUsers      *uc.Client\n\tFilecoin   *fc.Client\n\tMinerIndex *mi.Client\n}\n\n// NewClients returns a new clients object pointing to the target address.\n// If isHub is true, the hub's admin and user clients are also created.\nfunc NewClients(hubTarget string, isHub bool, minerIndexTarget string) *Clients {\n\tvar hubOpts []grpc.DialOption\n\tauth := common.Credentials{}\n\tif strings.Contains(hubTarget, \"443\") {\n\t\tcreds := credentials.NewTLS(&tls.Config{})\n\t\thubOpts = append(hubOpts, grpc.WithTransportCredentials(creds))\n\t\tauth.Secure = true\n\t} else {\n\t\thubOpts = append(hubOpts, grpc.WithInsecure())\n\t}\n\thubOpts = append(hubOpts, grpc.WithPerRPCCredentials(auth))\n\thubOpts = append(hubOpts, grpc.WithKeepaliveParams(keepalive.ClientParameters{\n\t\tTime:                time.Second * 20,\n\t\tTimeout:             time.Second * 10,\n\t\tPermitWithoutStream: true,\n\t}))\n\n\tc := &Clients{}\n\tvar err error\n\tc.Threads, err = tc.NewClient(hubTarget, hubOpts...)\n\tif err != nil {\n\t\tFatal(err)\n\t}\n\tc.Buckets, err = bc.NewClient(hubTarget, hubOpts...)\n\tif err != nil {\n\t\tFatal(err)\n\t}\n\tif isHub {\n\t\tc.Hub, err = hc.NewClient(hubTarget, hubOpts...)\n\t\tif err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t\tc.Users, err = uc.NewClient(hubTarget, hubOpts...)\n\t\tif err != nil {\n\t\t\tFatal(err)\n\t\t}\n\n\t\tvar minerIndexOpts []grpc.DialOption\n\t\tif strings.Contains(minerIndexTarget, \"443\") {\n\t\t\tcreds := credentials.NewTLS(&tls.Config{})\n\t\t\tminerIndexOpts = append(minerIndexOpts, grpc.WithTransportCredentials(creds))\n\t\t} else {\n\t\t\tminerIndexOpts = append(minerIndexOpts, grpc.WithInsecure())\n\t\t}\n\n\t\tc.MinerIndex, err = mi.NewClient(minerIndexTarget, minerIndexOpts...)\n\t\tif err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t}\n\tc.Filecoin, err = fc.NewClient(hubTarget, hubOpts...)\n\tif err != nil {\n\t\tFatal(err)\n\t}\n\treturn c\n}\n\n// Close closes all the clients.\nfunc (c *Clients) Close() {\n\tif c.Threads != nil {\n\t\tif err := c.Threads.Close(); err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t}\n\tif c.Buckets != nil {\n\t\tif err := c.Buckets.Close(); err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t}\n\tif c.Hub != nil {\n\t\tif err := c.Hub.Close(); err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t}\n\tif c.Users != nil {\n\t\tif err := c.Users.Close(); err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t}\n}\n\n// Thread wraps details about a thread.\ntype Thread struct {\n\tID    thread.ID `json:\"id\"`\n\tLabel string    `json:\"label\"`\n\tName  string    `json:\"name\"`\n\tType  string    `json:\"type\"`\n}\n\n// ListThreads returns a list of threads for the context.\n// In a hub context, this will only list threads that the context\n// has access to.\n// dbsOnly filters threads that do not belong to a database.\nfunc (c *Clients) ListThreads(ctx context.Context, dbsOnly bool) []Thread {\n\tvar threads []Thread\n\tif c.Users != nil {\n\t\tlist, err := c.Users.ListThreads(ctx)\n\t\tif err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t\tfor _, t := range list.List {\n\t\t\tif dbsOnly && !t.IsDb {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tid, err := thread.Cast(t.Id)\n\t\t\tif err != nil {\n\t\t\t\tFatal(err)\n\t\t\t}\n\t\t\tif t.Name == \"\" {\n\t\t\t\tt.Name = \"unnamed\"\n\t\t\t}\n\t\t\tthreads = append(threads, Thread{\n\t\t\t\tID:    id,\n\t\t\t\tLabel: id.String(),\n\t\t\t\tName:  t.Name,\n\t\t\t\tType:  GetThreadType(t.IsDb),\n\t\t\t})\n\t\t}\n\t} else {\n\t\tlist, err := c.Threads.ListDBs(ctx)\n\t\tif err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t\tfor id, t := range list {\n\t\t\tif t.Name == \"\" {\n\t\t\t\tt.Name = \"unnamed\"\n\t\t\t}\n\t\t\tthreads = append(threads, Thread{\n\t\t\t\tID:    id,\n\t\t\t\tLabel: id.String(),\n\t\t\t\tName:  t.Name,\n\t\t\t\tType:  \"db\",\n\t\t\t})\n\t\t}\n\t}\n\treturn threads\n}\n\n// GetThreadType returns a string representation of the type of a thread.\nfunc GetThreadType(isDB bool) string {\n\tif isDB {\n\t\treturn \"db\"\n\t} else {\n\t\treturn \"log\"\n\t}\n}\n\n// SelectThread presents the caller with a choice of threads.\nfunc (c *Clients) SelectThread(ctx context.Context, label, successMsg string, dbsOnly bool) Thread {\n\tthreads := c.ListThreads(ctx, dbsOnly)\n\tvar name string\n\tif len(threads) == 0 {\n\t\tname = \"default\"\n\t}\n\tthreads = append(threads, Thread{Label: \"Create new\", Name: name, Type: \"db\"})\n\tprompt := promptui.Select{\n\t\tLabel: label,\n\t\tItems: threads,\n\t\tTemplates: &promptui.SelectTemplates{\n\t\t\tActive:   fmt.Sprintf(`{{ \"%s\" | cyan }} {{ .Label | bold }} {{ .Name | faint | bold }}`, promptui.IconSelect),\n\t\t\tInactive: `{{ .Label | faint }} {{ .Name | faint | bold }}`,\n\t\t\tDetails:  `{{ \"(Type:\" | faint }} {{ .Type | faint }}{{ \")\" | faint }}`,\n\t\t\tSelected: successMsg,\n\t\t},\n\t}\n\tindex, _, err := prompt.Run()\n\tif err != nil {\n\t\tEnd(\"\")\n\t}\n\treturn threads[index]\n}\n"
  },
  {
    "path": "cmd/config.go",
    "content": "package cmd\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/mitchellh/go-homedir\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n)\n\n// InitConfigCmd adds a config generator command to the root command.\n// The command will write the config file to dir.\nfunc InitConfigCmd(rootCmd *cobra.Command, v *viper.Viper, dir string) {\n\tconfigCmd := &cobra.Command{\n\t\tUse:   \"config\",\n\t\tShort: \"Config utils\",\n\t\tLong:  `Config file utilities.`,\n\t}\n\trootCmd.AddCommand(configCmd)\n\tcreateCmd := &cobra.Command{\n\t\tUse:   \"create\",\n\t\tShort: \"Create config\",\n\t\tLong:  `Create a config file.`,\n\t\tRun: func(c *cobra.Command, args []string) {\n\t\t\tWriteConfig(c, v, dir)\n\t\t},\n\t}\n\tconfigCmd.AddCommand(createCmd)\n\tcreateCmd.Flags().String(\n\t\t\"dir\",\n\t\t\"\",\n\t\t\"Directory to write config (default ${HOME}/\"+dir+\")\")\n}\n\nconst maxSearchHeight = 50\n\n// InitConfig returns a function that can be used to search for and load a config file.\nfunc InitConfig(conf *Config) func() {\n\treturn func() {\n\t\tFindConfigFile(conf, \".\")\n\t}\n}\n\n// FindConfigFile searches up the path for a config file.\n// True is returned is a config file was found and successfully loaded.\nfunc FindConfigFile(conf *Config, pth string) bool {\n\tfound := false\n\th := 1\n\tfor h <= maxSearchHeight && !found {\n\t\tfound = initConfig(conf.Viper, conf.File, pth, conf.Dir, conf.Name, conf.EnvPre, conf.Global)\n\t\tnpth := filepath.Dir(pth)\n\t\tif npth == string(os.PathSeparator) && pth == string(os.PathSeparator) {\n\t\t\treturn found\n\t\t}\n\t\tpth = npth\n\t\th++\n\t}\n\treturn found\n}\n\nfunc initConfig(v *viper.Viper, file, pre, cdir, name, envPre string, global bool) bool {\n\tif file != \"\" {\n\t\tv.SetConfigFile(file)\n\t} else {\n\t\tv.AddConfigPath(filepath.Join(pre, cdir)) // local config takes priority\n\t\tif global {\n\t\t\thome, err := homedir.Dir()\n\t\t\tif err != nil {\n\t\t\t\tpanic(err)\n\t\t\t}\n\t\t\tv.AddConfigPath(filepath.Join(home, cdir))\n\t\t}\n\t\tv.SetConfigName(name)\n\t}\n\n\tv.SetEnvPrefix(envPre)\n\tv.SetEnvKeyReplacer(strings.NewReplacer(\".\", \"_\"))\n\tv.AutomaticEnv()\n\tif err := v.ReadInConfig(); err != nil && strings.Contains(err.Error(), \"Not Found\") {\n\t\treturn false\n\t}\n\treturn true\n}\n\n// WriteConfig writes the viper config based on the command.\nfunc WriteConfig(c *cobra.Command, v *viper.Viper, name string) {\n\tvar dir string\n\tif !c.Flag(\"dir\").Changed {\n\t\thome, err := homedir.Dir()\n\t\tif err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t\tdir = filepath.Join(home, name)\n\t\tif err = os.MkdirAll(dir, os.ModePerm); err != nil {\n\t\t\tFatal(err)\n\t\t}\n\t} else {\n\t\tdir = c.Flag(\"dir\").Value.String()\n\t}\n\n\tfilename := filepath.Join(dir, \"config.yml\")\n\tif _, err := os.Stat(filename); err == nil {\n\t\tFatal(fmt.Errorf(\"%s already exists\", filename))\n\t}\n\tif err := v.WriteConfigAs(filename); err != nil {\n\t\tFatal(err)\n\t}\n}\n\n// WriteConfigToHome writes config to the home directory.\nfunc WriteConfigToHome(config *Config) {\n\thome, err := homedir.Dir()\n\tErrCheck(err)\n\tdir := filepath.Join(home, config.Dir)\n\terr = os.MkdirAll(dir, os.ModePerm)\n\tErrCheck(err)\n\tfilename := filepath.Join(dir, config.Name+\".yml\")\n\terr = config.Viper.WriteConfigAs(filename)\n\tErrCheck(err)\n}\n\n// BindFlags binds the flags to the viper config values.\nfunc BindFlags(v *viper.Viper, root *cobra.Command, flags map[string]Flag) error {\n\tfor n, f := range flags {\n\t\tif err := v.BindPFlag(f.Key, root.PersistentFlags().Lookup(n)); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tv.SetDefault(f.Key, f.DefValue)\n\t}\n\treturn nil\n}\n\n// GetFlagOrEnvValue first load a value for the key from the command flags.\n// If no value was found, the value for the corresponding env variable is returned.\nfunc GetFlagOrEnvValue(c *cobra.Command, k, envPre string) (v string) {\n\tchanged := c.Flags().Changed(k)\n\tv, err := c.Flags().GetString(k)\n\tif err == nil && changed {\n\t\treturn\n\t}\n\tenv := os.Getenv(fmt.Sprintf(\"%s_%s\", envPre, strings.ToUpper(k)))\n\tif env != \"\" {\n\t\treturn env\n\t}\n\treturn v\n}\n\n// ExpandConfigVars evaluates the viper config file's expressions.\nfunc ExpandConfigVars(v *viper.Viper, flags map[string]Flag) {\n\tfor _, f := range flags {\n\t\tif f.Key != \"\" {\n\t\t\tif str, ok := v.Get(f.Key).(string); ok {\n\t\t\t\tv.Set(f.Key, os.ExpandEnv(str))\n\t\t\t}\n\t\t}\n\t}\n}\n\n// AddrFromStr returns a multiaddress from the string.\nfunc AddrFromStr(str string) ma.Multiaddr {\n\taddr, err := ma.NewMultiaddr(str)\n\tif err != nil {\n\t\tFatal(err)\n\t}\n\treturn addr\n}\n"
  },
  {
    "path": "cmd/hub/cli/archives.go",
    "content": "package cli\n\nimport (\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar archivesCmd = &cobra.Command{\n\tUse:   \"archives\",\n\tShort: \"Manages account-wide Filecoin archives.\",\n\tLong:  `Manages account-wide Filecoin archives.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar archivesLsCmd = &cobra.Command{\n\tUse:   \"ls\",\n\tShort: \"Lists all known archived data in the Filecoin network.\",\n\tLong:  `List all known archive data in the Filecoin network. This includes made bucket archives, or imported deals.`,\n\tArgs:  cobra.NoArgs,\n\tRun: func(c *cobra.Command, args []string) {\n\t\tas, err := clients.Users.ArchivesLs(Auth(c.Context()))\n\t\tcmd.ErrCheck(err)\n\n\t\tif len(as.Archives) > 0 {\n\t\t\tdata := make([][]string, len(as.Archives))\n\t\t\tfor i, a := range as.Archives {\n\t\t\t\tdealIDsStr := make([]string, len(a.Info))\n\t\t\t\tfor i, inf := range a.Info {\n\t\t\t\t\tdealIDsStr[i] = strconv.FormatUint(inf.DealId, 10)\n\t\t\t\t}\n\t\t\t\tdata[i] = []string{\n\t\t\t\t\ta.Cid,\n\t\t\t\t\tstrings.Join(dealIDsStr, \",\"),\n\t\t\t\t}\n\t\t\t}\n\t\t\tcmd.RenderTable([]string{\"Cid\", \"Deal IDs\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d account archives\", aurora.White(len(as.Archives)).Bold())\n\t},\n}\n\nvar archivesImportCmd = &cobra.Command{\n\tUse:   \"import cid [deal-id ...]\",\n\tShort: \"Imports a list of active deal-ids from the Filecoin network for a Cid.\",\n\tLong:  \"Imports a list of active deal-ids from the Filecoin network for a Cid. At least one deal-id must be provided. Cids must be UnixFS DAGs.\",\n\tArgs:  cobra.MinimumNArgs(2),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tdataCid, err := cid.Decode(args[0])\n\t\tcmd.ErrCheck(err)\n\n\t\tdealIDs := make([]uint64, len(args)-1)\n\t\tfor i := 0; i < len(args)-1; i++ {\n\t\t\tdealIDs[i], err = strconv.ParseUint(args[i+1], 10, 64)\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\n\t\terr = clients.Users.ArchivesImport(Auth(c.Context()), dataCid, dealIDs)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Success(\"Deals imported successfully\")\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/billing.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"math\"\n\t\"sort\"\n\t\"strconv\"\n\t\"time\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/api/billingd/pb\"\n\thub \"github.com/textileio/textile/v2/api/hubd/client\"\n\tusers \"github.com/textileio/textile/v2/api/usersd/client\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\nvar billingCmd = &cobra.Command{\n\tUse:   \"billing\",\n\tShort: \"Billing management\",\n\tLong:  `Manages your billing preferences.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar billingSetupCmd = &cobra.Command{\n\tUse:   \"setup\",\n\tShort: \"Setup usage billing\",\n\tLong:  `Sets up metered usage billing.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\terr := clients.Hub.SetupBilling(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Success(\"You have setup metered usage billing. \"+\n\t\t\t\"Use `%s` to manage your subscripton and payment methods.\", aurora.Cyan(\"hub billing portal\"))\n\t},\n}\n\nvar billingPortalCmd = &cobra.Command{\n\tUse:   \"portal\",\n\tShort: \"Open billing web portal\",\n\tLong:  `Opens a web portal for managing billing preferences.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tsession, err := clients.Hub.GetBillingSession(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Message(\"Please visit the following URL to manage usage billing:\")\n\t\tcmd.Message(\"%s\", aurora.White(session.Url).Bold())\n\t},\n}\n\nvar billingUsageCmd = &cobra.Command{\n\tUse:   \"usage\",\n\tShort: \"Show usage and billing info\",\n\tLong: `Shows usage and billing information\n\nUsage is evaluated daily and invoiced monthly.\n\nUse the --user flag to get usage for a dependent user.`,\n\tArgs: cobra.MaximumNArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tuser, err := c.Flags().GetString(\"user\")\n\t\tcmd.ErrCheck(err)\n\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tinfo, err := clients.Users.GetUsage(ctx, users.WithPubKey(user))\n\t\tcmd.ErrCheck(err)\n\t\tcus := info.Customer\n\n\t\tcmd.Message(\"Account status: %s\", aurora.White(cus.AccountStatus).Bold())\n\t\tif cus.ParentKey == \"\" {\n\t\t\tbalance := float64(cus.Balance) / 100\n\t\t\tcmd.Message(\"Account balance: %s%.2f\", aurora.White(\"$\").Bold(), aurora.White(balance).Bold())\n\t\t}\n\t\tcmd.Message(\"Subscription status: %s\", aurora.White(cus.SubscriptionStatus).Bold())\n\t\tif cus.Dependents > 0 {\n\t\t\tcmd.Message(\"Contributing users: %d\", aurora.White(cus.Dependents).Bold())\n\t\t}\n\t\theader := []string{\"\", \"usage\", \"free quota\", \"daily cost\", \"start\", \"end\"}\n\t\tvar rows [][]string\n\t\tproducts := make([]string, len(info.Usage.Usage))\n\t\ti := 0\n\t\tfor k := range info.Usage.Usage {\n\t\t\tproducts[i] = k\n\t\t\ti++\n\t\t}\n\t\tsort.Strings(products)\n\t\tfor _, k := range products {\n\t\t\trows = append(rows, getUsageRow(info.Usage.Usage[k]))\n\t\t}\n\t\tcmd.RenderTable(header, rows)\n\t\tif !cus.Billable && cus.GracePeriodEnd > 0 {\n\t\t\tif cus.GracePeriodEnd > time.Now().Unix() {\n\t\t\t\tends := time.Unix(cus.GracePeriodEnd, 0).Format(\"Mon Jan _2 15:04:05 MST\")\n\t\t\t\tcmd.Warn(\n\t\t\t\t\t\"Grace period ending soon. Please add a payment method with `%s` before %s.\",\n\t\t\t\t\taurora.Cyan(\"hub billing portal\"),\n\t\t\t\t\taurora.Bold(ends))\n\t\t\t} else {\n\t\t\t\tcmd.Warn(\n\t\t\t\t\t\"Grace period ended. Please add a payment method with `%s` to continue using your account.\",\n\t\t\t\t\taurora.Cyan(\"hub billing portal\"))\n\t\t\t}\n\t\t}\n\t},\n}\n\nfunc getUsageRow(usage *pb.Usage) []string {\n\tvar total, free string\n\tswitch usage.Description {\n\tcase \"ThreadDB reads\", \"ThreadDB writes\":\n\t\ttotal = strconv.Itoa(int(usage.Total))\n\t\tfree = strconv.Itoa(int(usage.Free))\n\tcase \"Stored data\", \"Network egress\":\n\t\ttotal = util.ByteCountDecimal(usage.Total)\n\t\tif usage.Free < 0 {\n\t\t\tfree = util.ByteCountDecimal(-usage.Free)\n\t\t\tfree = \"-\" + free\n\t\t} else {\n\t\t\tfree = util.ByteCountDecimal(usage.Free)\n\t\t}\n\t}\n\treturn []string{\n\t\tusage.Description,\n\t\ttotal,\n\t\tfmt.Sprintf(\n\t\t\t\"%s (%d%%)\",\n\t\t\tfree,\n\t\t\tint(math.Round(100*float64(usage.Free)/float64(usage.Total+usage.Free)))),\n\t\tfmt.Sprintf(\"$%.4f\", usage.Cost),\n\t\ttime.Unix(usage.Period.UnixStart, 0).Format(\"02-Jan-06\"),\n\t\ttime.Unix(usage.Period.UnixEnd, 0).Format(\"02-Jan-06\"),\n\t}\n}\n\nvar billingUsersCmd = &cobra.Command{\n\tUse:   \"users\",\n\tShort: \"list contributing users\",\n\tLong:  `Lists users contributing to billing usage.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tlimit, err := c.Flags().GetInt64(\"limit\")\n\t\tcmd.ErrCheck(err)\n\t\toffset, err := c.Flags().GetInt64(\"offset\")\n\t\tcmd.ErrCheck(err)\n\t\tlistUsers(limit, offset)\n\t},\n}\n\nfunc listUsers(limit, offset int64) {\n\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\tdefer cancel()\n\tlist, err := clients.Hub.ListBillingUsers(ctx, hub.WithLimit(limit), hub.WithOffset(offset))\n\tcmd.ErrCheck(err)\n\n\tif len(list.Users) > 0 {\n\t\tdata := make([][]string, len(list.Users))\n\t\tfor i, u := range list.Users {\n\t\t\tkeys := make([]string, 0, len(u.DailyUsage))\n\t\t\tfor k := range u.DailyUsage {\n\t\t\t\tkeys = append(keys, k)\n\t\t\t}\n\t\t\tsort.Strings(keys)\n\t\t\tvar usage string\n\t\t\tfor i, k := range keys {\n\t\t\t\tusage += k + \"=\" + strconv.Itoa(int(u.DailyUsage[k].Total))\n\t\t\t\tif i != len(keys)-1 {\n\t\t\t\t\tusage += \" \"\n\t\t\t\t}\n\t\t\t}\n\t\t\tdata[i] = []string{u.Key, usage}\n\t\t}\n\t\tcmd.RenderTable([]string{\"user\", \"usage\"}, data)\n\n\t\tcmd.Message(\"Next offset: %d\", aurora.White(list.NextOffset).Bold())\n\t\tcmd.Message(\"Press 'Enter' to show more...\")\n\t\t_, _ = fmt.Scanln()\n\t\tlistUsers(limit, list.NextOffset)\n\t} else {\n\t\tcmd.Message(\"Found %d users\", aurora.White(0).Bold())\n\t}\n}\n"
  },
  {
    "path": "cmd/hub/cli/buck.go",
    "content": "package cli\n\nimport (\n\t\"github.com/spf13/cobra\"\n)\n\nvar bucketCmd = &cobra.Command{\n\tUse: \"buck\",\n\tAliases: []string{\n\t\t\"bucket\",\n\t},\n\tShort: \"Manage an object storage bucket\",\n\tLong:  `Manages files and folders in an object storage bucket.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n"
  },
  {
    "path": "cmd/hub/cli/cli.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"runtime\"\n\t\"strings\"\n\t\"time\"\n\n\taurora2 \"github.com/logrusorgru/aurora\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\tbuck \"github.com/textileio/textile/v2/cmd/buck/cli\"\n)\n\nconst Name = \"hub\"\n\nvar aurora = aurora2.NewAurora(runtime.GOOS != \"windows\")\n\nvar (\n\tconfig = &cmd.Config{\n\t\tViper: viper.New(),\n\t\tDir:   \".textile\",\n\t\tName:  \"auth\",\n\t\tFlags: map[string]cmd.Flag{\n\t\t\t\"api\": {\n\t\t\t\tKey:      \"api\",\n\t\t\t\tDefValue: \"api.hub.textile.io:443\",\n\t\t\t},\n\t\t\t\"apiMinerIndex\": {\n\t\t\t\tKey:      \"apiMinerIndex\",\n\t\t\t\tDefValue: \"api.minerindex.hub.textile.io:443\",\n\t\t\t},\n\t\t\t\"session\": {\n\t\t\t\tKey:      \"session\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"org\": {\n\t\t\t\tKey:      \"org\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"apiKey\": {\n\t\t\t\tKey:      \"apiKey\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"apiSecret\": {\n\t\t\t\tKey:      \"apiSecret\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"token\": {\n\t\t\t\tKey:      \"token\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"identity\": {\n\t\t\t\tKey:      \"identity\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t},\n\t\tEnvPre: strings.ToUpper(Name),\n\t\tGlobal: true,\n\t}\n\n\tclients *cmd.Clients\n\n\tconfirmTimeout = time.Hour\n)\n\nfunc Init(rootCmd *cobra.Command) {\n\tconfig.Viper.SetConfigType(\"yaml\")\n\n\trootCmd.AddCommand(\n\t\tinitCmd,\n\t\tloginCmd,\n\t\tlogoutCmd,\n\t\twhoamiCmd,\n\t\tdestroyCmd,\n\t\tupdateCmd,\n\t\tversionCmd,\n\t\torgsCmd,\n\t\tkeysCmd,\n\t\tthreadsCmd,\n\t\tfilCmd,\n\t\tbillingCmd,\n\t\tarchivesCmd,\n\t\tretrievalsCmd,\n\t)\n\torgsCmd.AddCommand(orgsCreateCmd, orgsLsCmd, orgsMembersCmd, orgsInviteCmd, orgsLeaveCmd, orgsDestroyCmd)\n\tkeysCmd.AddCommand(keysCreateCmd, keysInvalidateCmd, keysLsCmd)\n\tthreadsCmd.AddCommand(threadsLsCmd)\n\tfilCmd.AddCommand(filAddrsCmd, filBalanceCmd, filSignCmd, filVerifyCmd, filInfoCmd, filStorageCmd, filRetrievalsCmd, filIndexCmd)\n\tfilIndexCmd.AddCommand(filCalculateDealPrice, filGetMinerInfo, filQueryMiners)\n\tbillingCmd.AddCommand(billingSetupCmd, billingPortalCmd, billingUsageCmd, billingUsersCmd)\n\trootCmd.AddCommand(bucketCmd)\n\tbuck.Init(bucketCmd)\n\n\trootCmd.PersistentFlags().String(\"api\", config.Flags[\"api\"].DefValue.(string), \"API Hub target\")\n\trootCmd.PersistentFlags().String(\"apiMinerIndex\", config.Flags[\"apiMinerIndex\"].DefValue.(string), \"API MinerIndex target\")\n\trootCmd.PersistentFlags().StringP(\"session\", \"s\", config.Flags[\"session\"].DefValue.(string), \"User session token\")\n\trootCmd.PersistentFlags().StringP(\"org\", \"o\", config.Flags[\"org\"].DefValue.(string), \"Org username\")\n\trootCmd.PersistentFlags().String(\"apiKey\", config.Flags[\"apiKey\"].DefValue.(string), \"User API key\")\n\trootCmd.PersistentFlags().String(\"apiSecret\", config.Flags[\"apiSecret\"].DefValue.(string), \"User API secret\")\n\trootCmd.PersistentFlags().String(\"token\", config.Flags[\"token\"].DefValue.(string), \"User identity token\")\n\trootCmd.PersistentFlags().String(\"identity\", config.Flags[\"identity\"].DefValue.(string), \"User identity\")\n\n\trootCmd.PersistentFlags().Bool(\"newIdentity\", false, \"Generate a new user identity\")\n\n\tbillingUsageCmd.Flags().StringP(\"user\", \"u\", \"\", \"User multibase encoded public key\")\n\n\tbillingUsersCmd.Flags().Int64(\"limit\", 25, \"Page size (max 1000)\")\n\tbillingUsersCmd.Flags().Int64(\"offset\", 0, \"Page offset (returned by each request)\")\n\n\tarchivesCmd.AddCommand(archivesLsCmd, archivesImportCmd)\n\n\tretrievalsCmd.AddCommand(retrievalsLsCmd, retrievalsLogsCmd)\n\n\terr := cmd.BindFlags(config.Viper, rootCmd, config.Flags)\n\tcmd.ErrCheck(err)\n}\n\nfunc Config() *cmd.Config {\n\treturn config\n}\n\nfunc SetClients(c *cmd.Clients) {\n\tclients = c\n}\n\nfunc Auth(ctx context.Context) context.Context {\n\tif config.Viper.GetString(\"apiKey\") != \"\" {\n\t\tctx = common.NewAPIKeyContext(ctx, config.Viper.GetString(\"apiKey\"))\n\t\tif config.Viper.GetString(\"apiSecret\") != \"\" {\n\t\t\tvar err error\n\t\t\tctx, err = common.CreateAPISigContext(\n\t\t\t\tctx,\n\t\t\t\ttime.Now().Add(time.Hour),\n\t\t\t\tconfig.Viper.GetString(\"apiSecret\"),\n\t\t\t)\n\t\t\tif err != nil {\n\t\t\t\tcmd.Fatal(fmt.Errorf(\"invalid secret: %w\", err))\n\t\t\t}\n\t\t}\n\t\tctx = thread.NewTokenContext(ctx, thread.Token(config.Viper.GetString(\"token\")))\n\t} else {\n\t\tctx = common.NewSessionContext(ctx, config.Viper.GetString(\"session\"))\n\t\tctx = common.NewOrgSlugContext(ctx, config.Viper.GetString(\"org\"))\n\t}\n\treturn ctx\n}\n"
  },
  {
    "path": "cmd/hub/cli/destroy.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar destroyCmd = &cobra.Command{\n\tUse:   \"destroy\",\n\tShort: \"Destroy your account\",\n\tLong:  `Destroys your Hub account and all associated data.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\twho, err := clients.Hub.GetSessionInfo(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Warn(\"%s\", aurora.Red(\"Are you absolutely sure? This action cannot be undone.\"))\n\t\tcmd.Warn(\"%s\", aurora.Red(\"Your account and all associated data will be permanently deleted.\"))\n\t\tprompt := promptui.Prompt{\n\t\t\tLabel: fmt.Sprintf(\"Please type '%s' to confirm\", who.Username),\n\t\t\tValidate: func(s string) error {\n\t\t\t\tif s != who.Username {\n\t\t\t\t\treturn fmt.Errorf(\"\")\n\t\t\t\t}\n\t\t\t\treturn nil\n\t\t\t},\n\t\t}\n\t\tif _, err := prompt.Run(); err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\terr = clients.Hub.DestroyAccount(ctx)\n\t\tcmd.ErrCheck(err)\n\t\t_ = os.RemoveAll(config.Viper.ConfigFileUsed())\n\t\tcmd.Success(\"Your account has been deleted\")\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/fil.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"encoding/hex\"\n\n\t\"github.com/spf13/cobra\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"google.golang.org/protobuf/encoding/protojson\"\n)\n\nfunc init() {\n\tfilStorageCmd.Flags().BoolP(\"ascending\", \"a\", false, \"sort records ascending, default is sort descending\")\n\tfilStorageCmd.Flags().StringSlice(\"cids\", []string{}, \"limit the records to deals for the specified data cids, treated as and AND operation if --addrs is also provided\")\n\tfilStorageCmd.Flags().StringSlice(\"addrs\", []string{}, \"limit the records to deals initiated from  the specified wallet addresses, treated as and AND operation if --cids is also provided\")\n\tfilStorageCmd.Flags().BoolP(\"include-pending\", \"p\", false, \"include pending deals\")\n\tfilStorageCmd.Flags().BoolP(\"include-final\", \"f\", true, \"include final deals\")\n\n\tfilRetrievalsCmd.Flags().BoolP(\"ascending\", \"a\", false, \"sort records ascending, default is sort descending\")\n\tfilRetrievalsCmd.Flags().StringSlice(\"cids\", []string{}, \"limit the records to deals for the specified data cids, treated as and AND operation if --addrs is also provided\")\n\tfilRetrievalsCmd.Flags().StringSlice(\"addrs\", []string{}, \"limit the records to deals initiated from  the specified wallet addresses, treated as and AND operation if --cids is also provided\")\n}\n\nconst addrsWarning = \"Funds in this wallet are for network and storage fees only; they cannot be transferred or sold.\"\nconst addrsGetVerified = \"Get your address verified on https://plus.fil.org/landing.\"\n\nvar filCmd = &cobra.Command{\n\tUse:     \"fil\",\n\tAliases: []string{\"filecoin\", \"pow\"},\n\tShort:   \"Interact with Filecoin related commands.\",\n\tLong:    `Interact with Filecoin related commands.`,\n\tArgs:    cobra.ExactArgs(0),\n}\n\nvar filAddrsCmd = &cobra.Command{\n\tUse:   \"addrs\",\n\tShort: \"List Filecoin wallet addresses associated with the current account or org\",\n\tLong:  `List Filecoin wallet addresses associated with the current account or org.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tres, err := clients.Filecoin.Addresses(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t\tcmd.Message(addrsWarning)\n\t\t// provide link for verification\n\t\tshowVerificationInfo := true\n\t\tfor _, addr := range res.Addresses {\n\t\t\tif addr.VerifiedClientInfo != nil {\n\t\t\t\tshowVerificationInfo = false\n\t\t\t}\n\t\t}\n\t\tif showVerificationInfo {\n\t\t\tcmd.Message(addrsGetVerified)\n\t\t}\n\t},\n}\n\nvar filBalanceCmd = &cobra.Command{\n\tUse:   \"balance [addr]\",\n\tShort: \"Display the FIL balance of a wallet address\",\n\tLong:  `Display the FIL balance of a wallet address.`,\n\tArgs:  cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tres, err := clients.Filecoin.Balance(ctx, args[0])\n\t\tcmd.ErrCheck(err)\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t\tcmd.Message(addrsWarning)\n\t},\n}\n\nvar filSignCmd = &cobra.Command{\n\tUse:   \"sign [hex-encoded-message]\",\n\tShort: \"Signs a message with user wallet addresses.\",\n\tLong:  \"Signs a message using all wallet addresses associated with the user\",\n\tArgs:  cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tb, err := hex.DecodeString(args[0])\n\t\tcmd.ErrCheck(err)\n\n\t\tres, err := clients.Filecoin.Addresses(ctx)\n\t\tcmd.ErrCheck(err)\n\n\t\tdata := make([][]string, len(res.Addresses))\n\t\tfor i, a := range res.Addresses {\n\t\t\tsignRes, err := clients.Filecoin.SignMessage(ctx, a.Address, b)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tdata[i] = []string{a.Address, hex.EncodeToString(signRes.Signature)}\n\t\t}\n\n\t\tcmd.RenderTable([]string{\"address\", \"signature\"}, data)\n\t},\n}\n\nvar filVerifyCmd = &cobra.Command{\n\tUse:   \"verify [addr] [hex-encoded-message] [hex-encoded-signature]\",\n\tShort: \"Verifies the signature of a message signed with a user wallet address.\",\n\tLong:  \"Verifies the signature of a message signed with a user wallet address.\",\n\tArgs:  cobra.ExactArgs(3),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tmb, err := hex.DecodeString(args[1])\n\t\tcmd.ErrCheck(err)\n\t\tsb, err := hex.DecodeString(args[2])\n\t\tcmd.ErrCheck(err)\n\n\t\tres, err := clients.Filecoin.VerifyMessage(ctx, args[0], mb, sb)\n\t\tcmd.ErrCheck(err)\n\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t},\n}\n\nvar filInfoCmd = &cobra.Command{\n\tUse:   \"info cid\",\n\tShort: \"Get information about the current storage state of a cid\",\n\tLong:  `Get information about the current storage state of a cid`,\n\tArgs:  cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tcid := args[0]\n\t\tres, err := clients.Filecoin.CidInfo(ctx, cid)\n\t\tcmd.ErrCheck(err)\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t},\n}\n\nvar filStorageCmd = &cobra.Command{\n\tUse:   \"storage\",\n\tShort: \"List Filecoin storage deal records associated with the current account or org\",\n\tLong:  `List Filecoin storage deal records associated with the current account or org.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tascending, err := c.Flags().GetBool(\"ascending\")\n\t\tcmd.ErrCheck(err)\n\t\tcids, err := c.Flags().GetStringSlice(\"cids\")\n\t\tcmd.ErrCheck(err)\n\t\taddrs, err := c.Flags().GetStringSlice(\"addrs\")\n\t\tcmd.ErrCheck(err)\n\t\tpending, err := c.Flags().GetBool(\"include-pending\")\n\t\tcmd.ErrCheck(err)\n\t\tfinal, err := c.Flags().GetBool(\"include-final\")\n\t\tcmd.ErrCheck(err)\n\t\tconf := &userPb.DealRecordsConfig{\n\t\t\tAscending:      ascending,\n\t\t\tDataCids:       cids,\n\t\t\tFromAddrs:      addrs,\n\t\t\tIncludeFinal:   final,\n\t\t\tIncludePending: pending,\n\t\t}\n\t\tres, err := clients.Filecoin.StorageDealRecords(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t},\n}\n\nvar filRetrievalsCmd = &cobra.Command{\n\tUse:   \"retrievals\",\n\tShort: \"List Filecoin retrieval deal records associated with the current account or org\",\n\tLong:  `List Filecoin retrieval deal records associated with the current account or org.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tascending, err := c.Flags().GetBool(\"ascending\")\n\t\tcmd.ErrCheck(err)\n\t\tcids, err := c.Flags().GetStringSlice(\"cids\")\n\t\tcmd.ErrCheck(err)\n\t\taddrs, err := c.Flags().GetStringSlice(\"addrs\")\n\t\tcmd.ErrCheck(err)\n\t\tconf := &userPb.DealRecordsConfig{\n\t\t\tAscending: ascending,\n\t\t\tDataCids:  cids,\n\t\t\tFromAddrs: addrs,\n\t\t}\n\t\tres, err := clients.Filecoin.RetrievalDealRecords(ctx, conf)\n\t\tcmd.ErrCheck(err)\n\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"\\n%v\", string(json))\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/fil_index.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"math/big\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/dustin/go-humanize\"\n\tccodes \"github.com/launchdarkly/go-country-codes\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/api/mindexd/pb\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"google.golang.org/protobuf/encoding/protojson\"\n\t\"google.golang.org/protobuf/types/known/timestamppb\"\n)\n\nfunc init() {\n\tfilQueryMiners.Flags().Bool(\"ascending\", false, \"sort results ascending, default is sort descending\")\n\tfilQueryMiners.Flags().Int64(\"limit\", 10, \"maximum results per page\")\n\tfilQueryMiners.Flags().Int64(\"offset\", 0, \"number of results to skip\")\n\tfilQueryMiners.Flags().String(\"sort-field\", \"textile-deals-last-successful\", \"sort field\")\n\tfilQueryMiners.Flags().String(\"sort-textile-region\", \"\", \"make the sorting criteria in a specified region\")\n\tfilQueryMiners.Flags().String(\"filter-miner-location\", \"\", \"filter by miner's location\")\n\tfilQueryMiners.Flags().Bool(\"show-full-details\", false, \"indicates that the results will contain extended data about miners\")\n\tfilQueryMiners.Flags().Bool(\"json\", false, \"indicates that the output should be printed in JSON\")\n\n\tfilGetMinerInfo.Flags().Bool(\"json\", false, \"indicates that output should be printed in JSON\")\n}\n\nvar m49Table = map[string]string{\n\t\"021\": \"North America\",\n}\n\nvar filIndexCmd = &cobra.Command{\n\tUse:     \"index\",\n\tAliases: []string{\"index\", \"idx\"},\n\tShort:   \"Interact with the Miner Index.\",\n\tLong:    `Interact with the Miner Index.`,\n\tArgs:    cobra.ExactArgs(0),\n}\n\nvar filQueryMiners = &cobra.Command{\n\tUse:   \"query\",\n\tShort: \"Query miners in the index\",\n\tLong: `Query miners in the index.\n\tThe API allows to handle paging with filters and sorting.\n\tThe sort-field flag can take the following values:\n\t- \"textile-deals-total-successful\": Total successful deals in Textile.\n\t- \"textile-deals-last-successful\": Last successful deal in Textile.\n\t- \"textile-retrievals-total-successful\": Total successful retrievals in Textile.\n\t- \"textile-retrievals-last-successful\": Last successful retrievals in Textile.\n\t- \"ask-price\": Raw ask-price.\n\t- \"verified-ask-price\": Verified ask-price.\n\t- \"active-sectors\": Total active sectors in the network.\n\n\tThe default sorting field is \"textile-deals-last-successful\".\n\tThe sort-textile-region allows to apply textile-deals-* flags to a specific \n\ttextile region. An empty value would be interpreted to the aggregate of all\n\tregions (default).\n\n\tIf the flag --show-full-details is set, an extra set of columns with more details\n\tis printed.\n\n\tIf the flag --json is set, the output will be printed in JSON and it always contains\n\tfull details.\n\t`,\n\tArgs: cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tascending, err := c.Flags().GetBool(\"ascending\")\n\t\tcmd.ErrCheck(err)\n\t\tlimit, err := c.Flags().GetInt64(\"limit\")\n\t\tcmd.ErrCheck(err)\n\t\toffset, err := c.Flags().GetInt64(\"offset\")\n\t\tcmd.ErrCheck(err)\n\t\tsortField, err := c.Flags().GetString(\"sort-field\")\n\t\tcmd.ErrCheck(err)\n\t\tsortTextileRegion, err := c.Flags().GetString(\"sort-textile-region\")\n\t\tcmd.ErrCheck(err)\n\t\tfilterMinerLocation, err := c.Flags().GetString(\"filter-miner-location\")\n\t\tcmd.ErrCheck(err)\n\n\t\treq := &pb.QueryIndexRequest{\n\t\t\tFilters: &pb.QueryIndexRequestFilters{\n\t\t\t\tMinerLocation: filterMinerLocation,\n\t\t\t},\n\t\t\tSort: &pb.QueryIndexRequestSort{\n\t\t\t\tAscending:     ascending,\n\t\t\t\tTextileRegion: sortTextileRegion,\n\t\t\t\tField:         mapSortField(sortField),\n\t\t\t},\n\t\t\tLimit:  int32(limit),\n\t\t\tOffset: offset,\n\t\t}\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tres, err := clients.MinerIndex.QueryIndex(ctx, req)\n\t\tcmd.ErrCheck(err)\n\n\t\trawJSON, err := c.Flags().GetBool(\"json\")\n\t\tcmd.ErrCheck(err)\n\t\tif rawJSON {\n\t\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tfmt.Println(string(json))\n\t\t\treturn\n\t\t}\n\n\t\tshowFullDetails, err := c.Flags().GetBool(\"show-full-details\")\n\t\tcmd.ErrCheck(err)\n\t\tfmt.Printf(\"%s\\n\", aurora.Bold(aurora.Green(\"-- Results --\")))\n\t\tdata := make([][]string, len(res.Miners))\n\t\tfor i, m := range res.Miners {\n\t\t\tif showFullDetails {\n\t\t\t\tdata[i] = []string{\n\t\t\t\t\tm.Miner.MinerAddr,\n\t\t\t\t\tfmt.Sprintf(\"%s%%\", humanize.FtoaWithDigits(m.Miner.Filecoin.RelativePower, 5)),\n\t\t\t\t\tfmt.Sprintf(\"%s | %s\", attoFilToFil(m.Miner.Filecoin.AskPrice), attoFilToFil(m.Miner.Filecoin.AskVerifiedPrice)),\n\t\t\t\t\tfmt.Sprintf(\"%s | %s\", humanize.IBytes(uint64(m.Miner.Filecoin.MinPieceSize)), humanize.IBytes(uint64(m.Miner.Filecoin.MaxPieceSize))),\n\t\t\t\t\tfmt.Sprintf(\"%s\", humanize.IBytes(uint64(m.Miner.Filecoin.SectorSize))),\n\t\t\t\t\tfmt.Sprintf(\"%d | %d\", m.Miner.Filecoin.ActiveSectors, m.Miner.Filecoin.FaultySectors),\n\t\t\t\t\tisoLocationToCountryName(m.Miner.Metadata.Location),\n\t\t\t\t\tfmt.Sprintf(\"%d | %d\", m.Miner.Textile.DealsSummary.Total, m.Miner.Textile.DealsSummary.Failures),\n\t\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(m.Miner.Textile.DealsSummary.Last)),\n\t\t\t\t\tfmt.Sprintf(\"%s\", peekAndFormatDealsTransferTimes(m.Miner.Textile)),\n\t\t\t\t\tfmt.Sprintf(\"%s\", peekAndFormatSealingTimes(m.Miner.Textile)),\n\t\t\t\t\tfmt.Sprintf(\"%s\", peekAndFormatRetrievalsTransferTimes(m.Miner.Textile)),\n\t\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(m.Miner.Textile.RetrievalsSummary.Last)),\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tdata[i] = []string{\n\t\t\t\tm.Miner.MinerAddr,\n\t\t\t\tfmt.Sprintf(\"%s\", attoFilToFil(m.Miner.Filecoin.AskPrice)),\n\t\t\t\tfmt.Sprintf(\"%s\", attoFilToFil(m.Miner.Filecoin.AskVerifiedPrice)),\n\t\t\t\tisoLocationToCountryName(m.Miner.Metadata.Location),\n\t\t\t\tfmt.Sprintf(\"%s\", humanize.IBytes(uint64(m.Miner.Filecoin.MinPieceSize))),\n\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(m.Miner.Textile.DealsSummary.Last)),\n\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(m.Miner.Textile.RetrievalsSummary.Last)),\n\t\t\t}\n\t\t}\n\t\tif showFullDetails {\n\t\t\tcmd.RenderTable([]string{\"miner\", \"relative power\", \"raw/verified ask price\", \"min/max piece size\", \"sector size\", \"active/faulty sectors\", \"location\", \"textile total/failed deals\", \"last successful deal\", \"last deal data-transfer\", \"last deal sealing-time\", \"last successful retrieval\", \"retrieval last data-transfer\"}, data)\n\t\t} else {\n\t\t\tcmd.RenderTable([]string{\"miner\", \"ask-price (FIL/GiB/epoch)\", \"verified ask-price (FIL/GiB/epoch)\", \"location\", \"min-piece-size\", \"textile-last-deal\", \"textile-last-retrieval\"}, data)\n\t\t}\n\t},\n}\n\nfunc peekAndFormatDealsTransferTimes(ti *pb.TextileInfo) string {\n\tvar last *time.Time\n\tvar lastThroughput *float64\n\tfor _, r := range ti.Regions {\n\t\tif len(r.Deals.TailTransfers) > 0 {\n\t\t\tif last == nil || last.Before(r.Deals.TailTransfers[0].TransferedAt.AsTime()) {\n\t\t\t\tlastThroughput = &r.Deals.TailTransfers[0].MibPerSec\n\t\t\t\tt := r.Deals.TailTransfers[0].TransferedAt.AsTime()\n\t\t\t\tlast = &t\n\t\t\t}\n\t\t}\n\t}\n\n\tif last == nil {\n\t\treturn \"\"\n\t}\n\n\treturn fmt.Sprintf(\"~%.02f MiB/s (%s)\", *lastThroughput, humanize.Time(*last))\n}\n\nfunc peekAndFormatRetrievalsTransferTimes(ti *pb.TextileInfo) string {\n\tvar last *time.Time\n\tvar lastThroughput *float64\n\tfor _, r := range ti.Regions {\n\t\tif len(r.Retrievals.TailTransfers) > 0 {\n\t\t\tif last == nil || last.Before(r.Retrievals.TailTransfers[0].TransferedAt.AsTime()) {\n\t\t\t\tlastThroughput = &r.Retrievals.TailTransfers[0].MibPerSec\n\t\t\t\tt := r.Retrievals.TailTransfers[0].TransferedAt.AsTime()\n\t\t\t\tlast = &t\n\t\t\t}\n\t\t}\n\t}\n\n\tif last == nil {\n\t\treturn \"\"\n\t}\n\n\treturn fmt.Sprintf(\"~%.02f MiB/s (%s)\", *lastThroughput, humanize.Time(*last))\n}\n\nfunc peekAndFormatSealingTimes(ti *pb.TextileInfo) string {\n\tvar last *time.Time\n\tvar lastDuration *float64\n\tfor _, r := range ti.Regions {\n\t\tif len(r.Deals.TailSealed) > 0 {\n\t\t\tif last == nil || last.Before(r.Deals.TailSealed[0].SealedAt.AsTime()) {\n\t\t\t\tdurationHours := time.Duration(time.Second * time.Duration(r.Deals.TailSealed[0].DurationSeconds)).Hours()\n\t\t\t\tt := r.Deals.TailSealed[0].SealedAt.AsTime()\n\t\t\t\tlastDuration = &durationHours\n\t\t\t\tlast = &t\n\t\t\t}\n\t\t}\n\t}\n\n\tif last == nil {\n\t\treturn \"\"\n\t}\n\n\treturn fmt.Sprintf(\"~%.0f hours (%s)\", *lastDuration, humanize.Time(*last))\n}\n\nvar filGetMinerInfo = &cobra.Command{\n\tUse:   \"get [minerAddr]\",\n\tShort: \"Get miner information\",\n\tLong:  `Get miner information`,\n\tArgs:  cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tminerAddr := args[0]\n\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tres, err := clients.MinerIndex.GetMinerInfo(ctx, minerAddr)\n\t\tcmd.ErrCheck(err)\n\n\t\trawJSON, err := c.Flags().GetBool(\"json\")\n\t\tcmd.ErrCheck(err)\n\t\tif rawJSON {\n\t\t\tjson, err := protojson.MarshalOptions{Multiline: true, Indent: \"  \", EmitUnpopulated: true}.Marshal(res)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tfmt.Println(string(json))\n\t\t\treturn\n\t\t}\n\n\t\tfmt.Printf(\"%s\\n\\n\", aurora.Bold(\"Miner \"+res.Info.MinerAddr))\n\n\t\tfmt.Printf(\"%s\\n\", aurora.Bold(aurora.Green(\"-- Filecoin --\")))\n\t\tcmd.Message(\"Relative Power: %s%%\", humanize.FtoaWithDigits(res.Info.Filecoin.RelativePower, 5))\n\t\tcmd.Message(\"Location: %s\", isoLocationToCountryName(res.Info.Metadata.Location))\n\t\tcmd.Message(\"Sector size   : %s\", humanize.IBytes(uint64(res.Info.Filecoin.SectorSize)))\n\t\tcmd.Message(\"Active sectors: %d\", res.Info.Filecoin.ActiveSectors)\n\t\tcmd.Message(\"Faulty sectors: %d\\n\", res.Info.Filecoin.FaultySectors)\n\n\t\tcmd.Message(\"Unverified Price: %s FIL/GiB/epoch\", attoFilToFil(res.Info.Filecoin.AskPrice))\n\t\tcmd.Message(\"Verified Price  : %s FIL/GiB/epoch\\n\", attoFilToFil(res.Info.Filecoin.AskPrice))\n\t\tcmd.Message(\"Minimum Piece Size: %s\", humanize.IBytes(uint64(res.Info.Filecoin.MinPieceSize)))\n\t\tcmd.Message(\"Maximum Piece Size: %s\\n\", humanize.IBytes(uint64(res.Info.Filecoin.MaxPieceSize)))\n\n\t\tfmt.Printf(\"%s\\n\", aurora.Bold(aurora.Green(\"-- Textile --\")))\n\t\tcmd.Message(\"Total successful deals: %d\", res.Info.Textile.DealsSummary.Total)\n\t\tcmd.Message(\"Last successful deal  : %s\", prettyFormatPbTime(res.Info.Textile.DealsSummary.Last))\n\t\tcmd.Message(\"Total failed deals: %d\", res.Info.Textile.DealsSummary.Failures)\n\t\tcmd.Message(\"Last failed deal  : %s\\n\", prettyFormatPbTime(res.Info.Textile.DealsSummary.LastFailure))\n\n\t\tfor m49Code, regionData := range res.Info.Textile.Regions {\n\t\t\t// Deals\n\t\t\tvar dataTransfers [][]string\n\t\t\tfor _, t := range regionData.Deals.TailTransfers {\n\t\t\t\tdataTransfers = append(dataTransfers, []string{\n\t\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(t.TransferedAt)),\n\t\t\t\t\tfmt.Sprintf(\"~%.02f MiB/s\", t.MibPerSec),\n\t\t\t\t})\n\t\t\t}\n\t\t\tvar sealingDuration [][]string\n\t\t\tfor _, s := range regionData.Deals.TailSealed {\n\t\t\t\tsealingDuration = append(sealingDuration, []string{\n\t\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(s.SealedAt)),\n\t\t\t\t\tfmt.Sprintf(\"~%.0f hours\", (time.Second * time.Duration(s.DurationSeconds)).Hours()),\n\t\t\t\t})\n\t\t\t}\n\n\t\t\tfmt.Print(aurora.Brown(fmt.Sprintf(\"%s deals telemetry:\\n\", m49Table[m49Code])))\n\t\t\tcmd.Message(\"Total successful: %d\", regionData.Deals.Total)\n\t\t\tcmd.Message(\"Last successful : %s\", prettyFormatPbTime(regionData.Deals.Last))\n\t\t\tcmd.Message(\"Total failed    : %d\", regionData.Deals.Failures)\n\t\t\tcmd.Message(\"Last failed     : %s\\n\", prettyFormatPbTime(regionData.Deals.LastFailure))\n\n\t\t\tif len(dataTransfers) > 0 {\n\t\t\t\tcmd.RenderTableWithoutNewLines([]string{\"date\", \"datatransfer-speed\"}, dataTransfers)\n\t\t\t\tfmt.Println()\n\t\t\t}\n\t\t\tif len(sealingDuration) > 0 {\n\t\t\t\tcmd.RenderTableWithoutNewLines([]string{\"date\", \"sealing-duration\"}, sealingDuration)\n\t\t\t}\n\n\t\t\tfmt.Println()\n\t\t\t// Retrievals\n\t\t\tvar retrTransfers [][]string\n\t\t\tfor _, t := range regionData.Retrievals.TailTransfers {\n\t\t\t\tretrTransfers = append(retrTransfers, []string{\n\t\t\t\t\tfmt.Sprintf(\"%s\", prettyFormatPbTime(t.TransferedAt)),\n\t\t\t\t\tfmt.Sprintf(\"~%.02f MiB/s\", t.MibPerSec),\n\t\t\t\t})\n\t\t\t}\n\n\t\t\tfmt.Print(aurora.Brown(fmt.Sprintf(\"%s retrievals telemetry:\\n\", m49Table[m49Code])))\n\t\t\tcmd.Message(\"Total successful: %d\", regionData.Retrievals.Total)\n\t\t\tcmd.Message(\"Last successful : %s\", prettyFormatPbTime(regionData.Retrievals.Last))\n\t\t\tcmd.Message(\"Total failed    : %d\", regionData.Retrievals.Failures)\n\t\t\tcmd.Message(\"Last failed     : %s\\n\", prettyFormatPbTime(regionData.Retrievals.LastFailure))\n\t\t\tif len(retrTransfers) > 0 {\n\t\t\t\tcmd.RenderTableWithoutNewLines([]string{\"date\", \"transfer-speed\"}, retrTransfers)\n\t\t\t}\n\t\t}\n\t},\n}\n\nvar filCalculateDealPrice = &cobra.Command{\n\tUse:   \"calculate [dataSizeBytes] [durationDays] [minerAddr...]\",\n\tShort: \"Calculate deal prices for a list of miners.\",\n\tLong:  `Calculate deal prices for a list of miners.`,\n\tArgs:  cobra.MinimumNArgs(3),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tdataSizeBytes, err := humanize.ParseBytes(args[0])\n\t\tcmd.ErrCheck(err)\n\t\tdurationDays, err := strconv.ParseInt(args[1], 10, 64)\n\t\tcmd.ErrCheck(err)\n\n\t\tminersAddr := make([]string, len(args)-2)\n\t\tfor i := 2; i < len(args); i++ {\n\t\t\tminersAddr[i-2] = args[i]\n\t\t}\n\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\tres, err := clients.MinerIndex.CalculateDealPrice(ctx, minersAddr, int64(dataSizeBytes), durationDays)\n\t\tcmd.ErrCheck(err)\n\n\t\tfmt.Printf(\"%s\\n\", aurora.Bold(aurora.Green(\"-- Calculated prices --\")))\n\t\tdata := make([][]string, len(res.Results))\n\t\tfor i, p := range res.Results {\n\t\t\tdata[i] = []string{\n\t\t\t\tp.Miner,\n\t\t\t\tfmt.Sprintf(\"%s (%s FIL/GiB/epoch)\", attoFilToFil(p.TotalCost), attoFilToFil(p.Price)),\n\t\t\t\tfmt.Sprintf(\"%s (%s FIL/GiB/epoch)\", attoFilToFil(p.VerifiedTotalCost), attoFilToFil(p.VerifiedPrice)),\n\t\t\t}\n\t\t}\n\t\tcmd.Message(\"Padded size: %s\", humanize.IBytes(uint64(res.PaddedSize)))\n\t\tcmd.Message(\"Duration in epochs: %d\", res.DurationEpochs)\n\t\tcmd.RenderTable([]string{\"miner\", \"cost\", \"verified-client cost\"}, data)\n\n\t\tfmt.Printf(\"%s\\n\", aurora.Bold(aurora.Green(\"-- Buckets --\")))\n\t\tfor _, p := range res.Results {\n\t\t\tcmd.Message(\"hub buck archive set-default-config --fast-retrieval --trusted-miners %s\", p.Miner)\n\t\t\tcmd.Message(\"hub buck archive set-default-config --fast-retrieval --verified-deal --trusted-miners %s\", p.Miner)\n\t\t\tfmt.Println()\n\t\t}\n\n\t\tfmt.Printf(\"\\n%s\\n\", aurora.Bold(aurora.Green(\"-- Lotus CLI --\")))\n\t\tfor _, p := range res.Results {\n\t\t\tcmd.Message(\"lotus client deal --fast-retrieval <data-cid> %s %s %d\", p.Miner, p.TotalCost, res.DurationEpochs)\n\t\t\tcmd.Message(\"lotus client deal --fast-retrieval --verified-deal <data-cid> %s %s %d\", p.Miner, p.VerifiedTotalCost, res.DurationEpochs)\n\t\t\tfmt.Println()\n\t\t}\n\t\tcmd.Message(\"Remember that to make verified deals, your wallet address should be verified: https://plus.fil.org/\")\n\t},\n}\n\nfunc attoFilToFil(attoFil string) string {\n\tif attoFil == \"\" {\n\t\treturn \"<none>\"\n\t}\n\tattoBig, _ := big.NewInt(0).SetString(attoFil, 10)\n\tr := new(big.Rat).SetFrac(attoBig, big.NewInt(1_000_000_000_000_000_000))\n\tif r.Sign() == 0 {\n\t\treturn \"0 FIL\" // Note(jsign): do we need to be conservative here about free-cost?\n\t}\n\treturn strings.TrimRight(strings.TrimRight(r.FloatString(18), \"0\"), \".\") + \" FIL\"\n}\n\nfunc prettyFormatPbTime(t *timestamppb.Timestamp) string {\n\tif t == nil {\n\t\treturn \"<none>\"\n\t}\n\n\tti := t.AsTime()\n\treturn prettyFormatTime(&ti)\n}\n\nfunc prettyFormatTime(t *time.Time) string {\n\tif t == nil {\n\t\treturn \"<none>\"\n\t}\n\n\treturn fmt.Sprintf(\"%s (%s)\", t.Format(\"2006-01-02 15:04:05\"), humanize.Time(*t))\n}\n\nfunc mapSortField(field string) pb.QueryIndexRequestSortField {\n\tswitch field {\n\tcase \"textile-deals-total-successful\":\n\t\treturn pb.QueryIndexRequestSortField_TEXTILE_DEALS_TOTAL_SUCCESSFUL\n\tcase \"textile-deals-last-successful\":\n\t\treturn pb.QueryIndexRequestSortField_TEXTILE_DEALS_LAST_SUCCESSFUL\n\tcase \"textile-retrievals-total-successful\":\n\t\treturn pb.QueryIndexRequestSortField_TEXTILE_RETRIEVALS_TOTAL_SUCCESSFUL\n\tcase \"textile-retrievals-last-successful\":\n\t\treturn pb.QueryIndexRequestSortField_TEXTILE_RETRIEVALS_LAST_SUCCESSFUL\n\tcase \"ask-price\":\n\t\treturn pb.QueryIndexRequestSortField_ASK_PRICE\n\tcase \"verified-ask-price\":\n\t\treturn pb.QueryIndexRequestSortField_VERIFIED_ASK_PRICE\n\tcase \"active-sectors\":\n\t\treturn pb.QueryIndexRequestSortField_ACTIVE_SECTORS\n\tdefault:\n\t\treturn pb.QueryIndexRequestSortField_TEXTILE_DEALS_LAST_SUCCESSFUL\n\t}\n}\n\nfunc isoLocationToCountryName(isoCode string) string {\n\tc, ok := ccodes.GetByAlpha2(isoCode)\n\tif !ok {\n\t\treturn isoCode\n\t}\n\n\treturn c.Name\n}\n"
  },
  {
    "path": "cmd/hub/cli/init.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"net/mail\"\n\t\"strings\"\n\n\t\"github.com/caarlos0/spin\"\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar initCmd = &cobra.Command{\n\tUse:   \"init\",\n\tShort: \"Initialize account\",\n\tLong:  `Initializes a new Hub account.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tusernamePrompt := promptui.Prompt{\n\t\t\tLabel: \"Choose a username\",\n\t\t\tTemplates: &promptui.PromptTemplates{\n\t\t\t\tValid: fmt.Sprintf(\"%s {{ . | bold }}%s \", cmd.Bold(promptui.IconInitial), cmd.Bold(\":\")),\n\t\t\t},\n\t\t}\n\t\tusername, err := usernamePrompt.Run()\n\t\tif err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\tdefer cancel()\n\t\terr = clients.Hub.IsUsernameAvailable(ctx, username)\n\t\tcmd.ErrCheck(err)\n\n\t\temailPrompt := promptui.Prompt{\n\t\t\tLabel: \"Enter your email\",\n\t\t\tValidate: func(email string) error {\n\t\t\t\t_, err := mail.ParseAddress(email)\n\t\t\t\treturn err\n\t\t\t},\n\t\t}\n\t\temail, err := emailPrompt.Run()\n\t\tif err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\tcmd.Message(\"We sent an email to %s. Please follow the steps provided inside it.\",\n\t\t\taurora.White(email).Bold())\n\t\ts := spin.New(\"%s Waiting for your confirmation\")\n\t\ts.Start()\n\n\t\tcctx, ccancel := context.WithTimeout(context.Background(), confirmTimeout)\n\t\tdefer ccancel()\n\t\tres, err := clients.Hub.Signup(cctx, username, email)\n\t\ts.Stop()\n\t\tif err != nil {\n\t\t\tif strings.Contains(err.Error(), \"Account exists\") {\n\t\t\t\tcmd.Fatal(fmt.Errorf(\"an account with email %s already exists, use `%s login` instead\", email, Name))\n\t\t\t} else {\n\t\t\t\tcmd.Fatal(err)\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tconfig.Viper.Set(\"session\", res.Session)\n\n\t\tcmd.WriteConfigToHome(config)\n\n\t\tfmt.Println(aurora.Sprintf(\"%s Email confirmed\", aurora.Green(\"✔\")))\n\t\tcmd.Success(\"Welcome to the Hub. Initialize a new bucket with `%s`.\", aurora.Cyan(Name+\" buck init\"))\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/keys.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"strconv\"\n\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\tpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar keysCmd = &cobra.Command{\n\tUse: \"keys\",\n\tAliases: []string{\n\t\t\"key\",\n\t},\n\tShort: \"API key management\",\n\tLong:  `Manages your API keys.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar keysCreateCmd = &cobra.Command{\n\tUse:   \"create\",\n\tShort: \"Create an API key and secret\",\n\tLong: `Creates a new API key and secret. Keys are used by apps and services that leverage buckets or threads.\n\nUsing the '--org' flag will create a new key under the Organization's account.\n\nThere are two types of API keys:\n1. 'Account' keys provide direct access to developer/org account buckets and threads.\n2. 'User Group' keys provide existing non-admin identities (e.g. app users) access to their own buckets and threads, using the resources of the parent account (i.e. the developer or organization).\n\nAPI secrets are used for Signature Authentication, which is a security measure that can prevent outsiders from using your API key. API secrets should be kept safely on a backend server, not in publicly readable client code.\n\nHowever, for development purposes, you may opt-out of Signature Authentication during key creation. \n`,\n\tArgs: cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tprompt := promptui.Select{\n\t\t\tLabel: \"Select API key type\",\n\t\t\tItems: []string{\"account\", \"user group\"},\n\t\t\tTemplates: &promptui.SelectTemplates{\n\t\t\t\tActive:   fmt.Sprintf(`{{ \"%s\" | cyan }} {{ . | bold }}`, promptui.IconSelect),\n\t\t\t\tInactive: `{{ . | faint }}`,\n\t\t\t},\n\t\t}\n\t\tindex, keyTypeDesc, err := prompt.Run()\n\t\tif err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\tvar secure bool\n\t\tpromptSecure := promptui.Prompt{\n\t\t\tLabel:     \"Require Signature Authentication (recommended)\",\n\t\t\tIsConfirm: true,\n\t\t}\n\t\tif _, err := promptSecure.Run(); err == nil {\n\t\t\tsecure = true\n\t\t}\n\n\t\tkeyType := pb.KeyType_KEY_TYPE_ACCOUNT\n\t\tif index > 0 {\n\t\t\tkeyType = pb.KeyType_KEY_TYPE_USER\n\t\t}\n\n\t\tres, err := clients.Hub.CreateKey(ctx, keyType, secure)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.RenderTable([]string{\n\t\t\t\"key\",\n\t\t\t\"secret\",\n\t\t\t\"type\",\n\t\t\t\"secure\"},\n\t\t\t[][]string{{res.KeyInfo.Key, res.KeyInfo.Secret, keyTypeDesc, strconv.FormatBool(secure)}},\n\t\t)\n\t\tcmd.Success(\"Created new API key and secret\")\n\t},\n}\n\nvar keysInvalidateCmd = &cobra.Command{\n\tUse:   \"invalidate\",\n\tShort: \"Invalidate an API key\",\n\tLong:  `Invalidates an API key. Invalidated keys cannot be used to create new threads.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tselected := selectKey(ctx, \"Invalidate key\", aurora.Sprintf(\n\t\t\taurora.BrightBlack(\"> Invalidating key {{ .Key | white | bold }}\")))\n\n\t\terr := clients.Hub.InvalidateKey(ctx, selected.Key)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"Invalidated key %s\", aurora.White(selected.Key).Bold())\n\t},\n}\n\nvar keysLsCmd = &cobra.Command{\n\tUse: \"ls\",\n\tAliases: []string{\n\t\t\"list\",\n\t},\n\tShort: \"List your API keys\",\n\tLong:  `Lists all of your API keys.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tlist, err := clients.Hub.ListKeys(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tif len(list.List) > 0 {\n\t\t\tdata := make([][]string, len(list.List))\n\t\t\tfor i, k := range list.List {\n\t\t\t\tsecure := strconv.FormatBool(k.Secure)\n\t\t\t\tdata[i] = []string{\n\t\t\t\t\tk.Key,\n\t\t\t\t\tk.Secret,\n\t\t\t\t\tkeyTypeToString(k.Type),\n\t\t\t\t\tsecure,\n\t\t\t\t\tstrconv.FormatBool(k.Valid),\n\t\t\t\t\tstrconv.Itoa(int(k.Threads)),\n\t\t\t\t}\n\t\t\t}\n\t\t\tcmd.RenderTable([]string{\"key\", \"secret\", \"type\", \"secure\", \"valid\", \"threads\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d keys\", aurora.White(len(list.List)).Bold())\n\t},\n}\n\ntype keyItem struct {\n\tKey     string\n\tType    string\n\tThreads int\n}\n\nfunc selectKey(ctx context.Context, label, successMsg string) *keyItem {\n\tlist, err := clients.Hub.ListKeys(ctx)\n\tcmd.ErrCheck(err)\n\n\titems := make([]*keyItem, 0)\n\tfor _, k := range list.List {\n\t\tif k.Valid {\n\t\t\titems = append(items, &keyItem{Key: k.Key, Type: keyTypeToString(k.Type), Threads: int(k.Threads)})\n\t\t}\n\t}\n\tif len(items) == 0 {\n\t\tcmd.End(\"You don't have any valid keys!\")\n\t}\n\n\tprompt := promptui.Select{\n\t\tLabel: label,\n\t\tItems: items,\n\t\tTemplates: &promptui.SelectTemplates{\n\t\t\tActive: fmt.Sprintf(`{{ \"%s\" | cyan }} {{ .Key | bold }} {{ .Type | faint }}`,\n\t\t\t\tpromptui.IconSelect),\n\t\t\tInactive: `{{ .Key | faint }} {{ .Type | faint }}`,\n\t\t\tDetails:  `{{ \"(Threads:\" | faint }} {{ .Threads | faint }}{{ \")\" | faint }}`,\n\t\t\tSelected: successMsg,\n\t\t},\n\t}\n\tindex, _, err := prompt.Run()\n\tif err != nil {\n\t\tcmd.End(\"\")\n\t}\n\treturn items[index]\n}\n\nfunc keyTypeToString(t pb.KeyType) (s string) {\n\tswitch t {\n\tcase pb.KeyType_KEY_TYPE_ACCOUNT:\n\t\treturn \"account\"\n\tcase pb.KeyType_KEY_TYPE_USER:\n\t\treturn \"user group\"\n\t}\n\treturn\n}\n"
  },
  {
    "path": "cmd/hub/cli/login.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/caarlos0/spin\"\n\t\"github.com/manifoldco/promptui\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar loginCmd = &cobra.Command{\n\tUse:   \"login\",\n\tShort: \"Login\",\n\tLong:  `Handles login to a Hub account.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tprompt := promptui.Prompt{\n\t\t\tLabel: \"Enter your username or email\",\n\t\t}\n\t\tusernameOrEmail, err := prompt.Run()\n\t\tif err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\tcmd.Message(\"We sent an email to the account address. Please follow the steps provided inside it.\")\n\t\ts := spin.New(\"%s Waiting for your confirmation\")\n\t\ts.Start()\n\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), confirmTimeout)\n\t\tdefer cancel()\n\t\tres, err := clients.Hub.Signin(ctx, usernameOrEmail)\n\t\ts.Stop()\n\t\tcmd.ErrCheck(err)\n\t\tconfig.Viper.Set(\"session\", res.Session)\n\n\t\tcmd.WriteConfigToHome(config)\n\n\t\tfmt.Println(aurora.Sprintf(\"%s Email confirmed\", aurora.Green(\"✔\")))\n\t\tcmd.Success(\"You are now logged in. Initialize a new bucket with `%s`.\", aurora.Cyan(Name+\" buck init\"))\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/logout.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"os\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar logoutCmd = &cobra.Command{\n\tUse:   \"logout\",\n\tShort: \"Logout\",\n\tLong:  `Handles logout of a Hub account.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\terr := clients.Hub.Signout(ctx)\n\t\tcmd.ErrCheck(err)\n\t\t_ = os.RemoveAll(config.Viper.ConfigFileUsed())\n\t\tcmd.Success(\"Bye :)\")\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/orgs.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"net/mail\"\n\t\"strconv\"\n\n\t\"github.com/manifoldco/promptui\"\n\tmbase \"github.com/multiformats/go-multibase\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar orgsCmd = &cobra.Command{\n\tUse: \"orgs\",\n\tAliases: []string{\n\t\t\"org\",\n\t},\n\tShort: \"Org management\",\n\tLong:  `Manages your organizations.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar orgsCreateCmd = &cobra.Command{\n\tUse:   \"create\",\n\tShort: \"Create an org\",\n\tLong:  `Creates a new organization.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tnamePrompt := promptui.Prompt{\n\t\t\tLabel: \"Choose an org name\",\n\t\t\tTemplates: &promptui.PromptTemplates{\n\t\t\t\tValid: fmt.Sprintf(\"%s {{ . | bold }}%s \", cmd.Bold(promptui.IconInitial), cmd.Bold(\":\")),\n\t\t\t},\n\t\t}\n\t\tname, err := namePrompt.Run()\n\t\tif err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\t_, err = clients.Hub.IsOrgNameAvailable(ctx, name)\n\t\tcmd.ErrCheck(err)\n\t\t//url := fmt.Sprintf(\"%s/%s\", res.Host, res.Slug)\n\n\t\tcmd.Message(\"The name of your Hub account will be %s\", aurora.White(name).Bold())\n\t\t// @todo: Uncomment when dashboard's are live\n\t\t//cmd.Message(\"Your URL will be %s\", aurora.White(url).Bold())\n\n\t\tconfirmPrompt := promptui.Prompt{\n\t\t\tLabel:     \"Please confirm\",\n\t\t\tIsConfirm: true,\n\t\t}\n\t\tif _, err = confirmPrompt.Run(); err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\tres, err := clients.Hub.CreateOrg(ctx, name)\n\t\tcmd.ErrCheck(err)\n\t\t//url = fmt.Sprintf(\"%s/%s\", org.Host, org.Slug)\n\t\t// @todo: Uncomment when dashboard's are live\n\t\t//cmd.Success(\"Created new org %s with URL %s\", aurora.White(org.Name).Bold(), aurora.Underline(url))\n\t\tcmd.Success(\"Created new org %s\", aurora.White(res.OrgInfo.Name).Bold())\n\t},\n}\n\nvar orgsLsCmd = &cobra.Command{\n\tUse: \"ls\",\n\tAliases: []string{\n\t\t\"list\",\n\t},\n\tShort: \"List orgs you're a member of\",\n\tLong:  `Lists all the organizations that you're a member of.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\torgs, err := clients.Hub.ListOrgs(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tif len(orgs.List) > 0 {\n\t\t\tdata := make([][]string, len(orgs.List))\n\t\t\tfor i, o := range orgs.List {\n\t\t\t\tkey, err := mbase.Encode(mbase.Base32, o.Key)\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\turl := fmt.Sprintf(\"%s/%s\", o.Host, o.Slug)\n\t\t\t\tdata[i] = []string{o.Name, url, key, strconv.Itoa(len(o.Members))}\n\t\t\t}\n\t\t\tcmd.RenderTable([]string{\"name\", \"url\", \"key\", \"members\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d orgs\", aurora.White(len(orgs.List)).Bold())\n\t},\n}\n\nvar orgsMembersCmd = &cobra.Command{\n\tUse:   \"members\",\n\tShort: \"List org members\",\n\tLong:  `Lists current organization members.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tselected := selectOrg(ctx, \"Select org\", aurora.Sprintf(\n\t\t\taurora.BrightBlack(\"> Selected org {{ .Name | white | bold }}\")))\n\t\tctx = common.NewOrgSlugContext(ctx, selected.Slug)\n\n\t\tres, err := clients.Hub.GetOrg(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tif len(res.OrgInfo.Members) > 0 {\n\t\t\tdata := make([][]string, len(res.OrgInfo.Members))\n\t\t\tfor i, m := range res.OrgInfo.Members {\n\t\t\t\tkey, err := mbase.Encode(mbase.Base32, m.Key)\n\t\t\t\tcmd.ErrCheck(err)\n\t\t\t\tdata[i] = []string{m.Username, key}\n\t\t\t}\n\t\t\tcmd.RenderTable([]string{\"username\", \"key\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d members\", aurora.White(len(res.OrgInfo.Members)).Bold())\n\t},\n}\n\nvar orgsInviteCmd = &cobra.Command{\n\tUse:   \"invite\",\n\tShort: \"Invite members to an org\",\n\tLong:  `Invites a new member to an organization.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tselected := selectOrg(ctx, \"Select org\", aurora.Sprintf(\n\t\t\taurora.BrightBlack(\"> Selected org {{ .Name | white | bold }}\")))\n\t\tctx = common.NewOrgSlugContext(ctx, selected.Slug)\n\n\t\tprompt := promptui.Prompt{\n\t\t\tLabel: \"Enter email to invite\",\n\t\t\tValidate: func(email string) error {\n\t\t\t\t_, err := mail.ParseAddress(email)\n\t\t\t\treturn err\n\t\t\t},\n\t\t}\n\t\temail, err := prompt.Run()\n\t\tif err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\t_, err = clients.Hub.InviteToOrg(ctx, email)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"We sent %s an invitation to the %s org\", aurora.White(email).Bold(),\n\t\t\taurora.White(selected.Name).Bold())\n\t},\n}\n\nvar orgsLeaveCmd = &cobra.Command{\n\tUse:   \"leave\",\n\tShort: \"Leave an org\",\n\tLong:  `Leaves an organization.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tselected := selectOrg(ctx, \"Leave org\", aurora.Sprintf(\n\t\t\taurora.BrightBlack(\"> Leaving org {{ .Name | white | bold }}\")))\n\t\tctx = common.NewOrgSlugContext(ctx, selected.Slug)\n\n\t\terr := clients.Hub.LeaveOrg(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"Left org %s\", aurora.White(selected.Name).Bold())\n\t},\n}\n\nvar orgsDestroyCmd = &cobra.Command{\n\tUse:   \"destroy\",\n\tShort: \"Destroy an org\",\n\tLong:  `Destroys an organization and all associated data. You must be the org owner.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\tselected := selectOrg(ctx, \"Destroy org\", aurora.Sprintf(\n\t\t\taurora.BrightBlack(\"> Destroying org {{ .Name | white | bold }}\")))\n\t\tctx = common.NewOrgSlugContext(ctx, selected.Slug)\n\n\t\tcmd.Warn(\"%s\", aurora.Red(\"Are you absolutely sure? This action cannot be undone.\"))\n\t\tcmd.Warn(\"%s\", aurora.Red(\"The org and all associated data will be permanently deleted.\"))\n\t\tprompt := promptui.Prompt{\n\t\t\tLabel: fmt.Sprintf(\"Please type '%s' to confirm\", selected.Name),\n\t\t\tValidate: func(s string) error {\n\t\t\t\tif s != selected.Name {\n\t\t\t\t\treturn fmt.Errorf(\"\")\n\t\t\t\t}\n\t\t\t\treturn nil\n\t\t\t},\n\t\t}\n\t\tif _, err := prompt.Run(); err != nil {\n\t\t\tcmd.End(\"\")\n\t\t}\n\n\t\terr := clients.Hub.RemoveOrg(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Success(\"Org %s has been deleted\", aurora.White(selected.Name).Bold())\n\t},\n}\n\ntype orgItem struct {\n\tName    string\n\tSlug    string\n\tMembers string\n}\n\nfunc selectOrg(ctx context.Context, label, successMsg string) *orgItem {\n\torgs, err := clients.Hub.ListOrgs(ctx)\n\tcmd.ErrCheck(err)\n\n\titems := make([]*orgItem, len(orgs.List))\n\tfor i, o := range orgs.List {\n\t\titems[i] = &orgItem{Name: o.Name, Slug: o.Slug, Members: strconv.Itoa(len(o.Members))}\n\t}\n\tif len(items) == 0 {\n\t\tcmd.End(\"You're not a member of any orgs!\")\n\t}\n\n\tprompt := promptui.Select{\n\t\tLabel: label,\n\t\tItems: items,\n\t\tTemplates: &promptui.SelectTemplates{\n\t\t\tActive:   fmt.Sprintf(`{{ \"%s\" | cyan }} {{ .Name | bold }} {{ .Slug | faint | bold }}`, promptui.IconSelect),\n\t\t\tInactive: `{{ .Name | faint }} {{ .Slug | faint | bold }}`,\n\t\t\tDetails:  `{{ \"(Members:\" | faint }} {{ .Members | faint }}{{ \")\" | faint }}`,\n\t\t\tSelected: successMsg,\n\t\t},\n\t}\n\tindex, _, err := prompt.Run()\n\tif err != nil {\n\t\tcmd.End(\"\")\n\t}\n\treturn items[index]\n}\n"
  },
  {
    "path": "cmd/hub/cli/retrievals.go",
    "content": "package cli\n\nimport (\n\t\"sort\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/api/usersd/pb\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar retrievalsStatusPrettyName = map[pb.ArchiveRetrievalStatus]string{\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_UNSPECIFIED:  \"Unspecified\",\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_QUEUED:       \"Queued\",\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_EXECUTING:    \"Executing\",\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_MOVETOBUCKET: \"Moving to bucket\",\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_FAILED:       \"Failed\",\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_CANCELED:     \"Canceled\",\n\tpb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_SUCCESS:      \"Success\",\n}\n\nvar retrievalsCmd = &cobra.Command{\n\tUse:   \"retrievals\",\n\tShort: \"Manages Filecoin retrievals.\",\n\tLong:  `Manages Filecoin retrievals.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar retrievalsLsCmd = &cobra.Command{\n\tUse:   \"ls\",\n\tShort: \"List all created Filecoin retrievals.\",\n\tLong:  `List all created Filecoin retrievals.`,\n\tArgs:  cobra.NoArgs,\n\tRun: func(c *cobra.Command, args []string) {\n\t\trs, err := clients.Users.ArchiveRetrievalLs(Auth(c.Context()))\n\t\tcmd.ErrCheck(err)\n\n\t\tif len(rs.Retrievals) > 0 {\n\t\t\tsort.Slice(rs.Retrievals, func(i, j int) bool {\n\t\t\t\treturn rs.Retrievals[i].CreatedAt > rs.Retrievals[j].CreatedAt\n\t\t\t})\n\t\t\tdata := make([][]string, len(rs.Retrievals))\n\t\t\tfor i, r := range rs.Retrievals {\n\t\t\t\tdata[i] = []string{\n\t\t\t\t\tr.Id,\n\t\t\t\t\tr.Cid,\n\t\t\t\t\tretrievalsStatusPrettyName[r.Status],\n\t\t\t\t\ttime.Unix(r.CreatedAt, 0).Format(\"02-Jan-06 15:04 -0700\"),\n\t\t\t\t\tr.FailureCause,\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcmd.RenderTable([]string{\"Id\", \"Cid\", \"Status\", \"Created\", \"Failure cause\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d retrievals\", aurora.White(len(rs.Retrievals)).Bold())\n\t},\n}\n\nvar retrievalsLogsCmd = &cobra.Command{\n\tUse:   \"logs id\",\n\tShort: \"Show the logs of a retrieval.\",\n\tLong:  `Show the logs of a retrieval.`,\n\tArgs:  cobra.ExactArgs(1),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tid := args[0]\n\n\t\tmsgs := make(chan string)\n\t\tvar err error\n\t\tgo func() {\n\t\t\terr = clients.Users.ArchiveRetrievalLogs(Auth(c.Context()), id, msgs)\n\t\t\tclose(msgs)\n\t\t}()\n\n\t\tfor msg := range msgs {\n\t\t\tcmd.Message(msg)\n\t\t}\n\n\t\tif err != nil {\n\t\t\t// Any stream-based API closes after a perioid\n\t\t\t// or inacitvity. Show a nice message if that's the case.\n\t\t\tif strings.Contains(err.Error(), \"RST_STREAM\") {\n\t\t\t\tcmd.Warn(\"No news from this retrieval for a long-time. Re-run the command if you're still interested!\")\n\t\t\t\treturn\n\t\t\t}\n\t\t\tcmd.Fatal(err)\n\t\t}\n\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/threads.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar threadsCmd = &cobra.Command{\n\tUse: \"threads\",\n\tAliases: []string{\n\t\t\"thread\",\n\t},\n\tShort: \"Thread management\",\n\tLong:  `Manages your threads.`,\n\tArgs:  cobra.ExactArgs(0),\n}\n\nvar threadsLsCmd = &cobra.Command{\n\tUse: \"ls\",\n\tAliases: []string{\n\t\t\"list\",\n\t},\n\tShort: \"List your threads\",\n\tLong:  `Lists all of your threads.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\n\t\tthreads := clients.ListThreads(ctx, false)\n\t\tif len(threads) > 0 {\n\t\t\tdata := make([][]string, len(threads))\n\t\t\tfor i, t := range threads {\n\t\t\t\tdata[i] = []string{t.ID.String(), t.Name, t.Type}\n\t\t\t}\n\t\t\tcmd.RenderTable([]string{\"id\", \"name\", \"type\"}, data)\n\t\t}\n\t\tcmd.Message(\"Found %d threads\", aurora.White(len(threads)).Bold())\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/update.go",
    "content": "package cli\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/blang/semver\"\n\t\"github.com/caarlos0/spin\"\n\tsu \"github.com/rhysd/go-github-selfupdate/selfupdate\"\n\t\"github.com/spf13/cobra\"\n\tbi \"github.com/textileio/textile/v2/buildinfo\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nfunc install(assetURL string) error {\n\ts := spin.New(\"%s Downloading release\")\n\ts.Start()\n\tdefer s.Stop()\n\texe, err := os.Executable()\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err := su.UpdateTo(assetURL, exe); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nvar updateCmd = &cobra.Command{\n\tUse:   \"update\",\n\tShort: \"Update hub\",\n\tLong:  `Update hub to the latest version.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tlatestRelease, err := getLatestRelease()\n\t\tif err != nil {\n\t\t\tcmd.Fatal(fmt.Errorf(\"unable to get latest version: %v\", err))\n\t\t}\n\t\tlatest := \"v\" + latestRelease.Version.String()\n\n\t\tcurrent, err := semver.ParseTolerant(bi.Version)\n\t\tif err != nil {\n\t\t\t// Overwrite local build\n\t\t\tif err := install(latestRelease.AssetURL); err != nil {\n\t\t\t\tcmd.Fatal(fmt.Errorf(\"install failed: %v\", err))\n\t\t\t} else {\n\t\t\t\tcmd.Success(\"hub updated to %s\", aurora.Green(latest))\n\t\t\t}\n\t\t} else {\n\t\t\t// Install if not up-to-date\n\t\t\tif current.LT(latestRelease.Version) {\n\t\t\t\tif err = install(latestRelease.AssetURL); err != nil {\n\t\t\t\t\tcmd.Fatal(fmt.Errorf(\"install failed: %v\", err))\n\t\t\t\t} else {\n\t\t\t\t\tcmd.Success(\"hub updated to %s\", aurora.Green(latest))\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcmd.Message(\"Already up-to-date.\")\n\t\t\t}\n\t\t}\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/version.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"runtime\"\n\n\t\"github.com/blang/semver\"\n\t\"github.com/caarlos0/spin\"\n\tsu \"github.com/rhysd/go-github-selfupdate/selfupdate\"\n\t\"github.com/spf13/cobra\"\n\tbi \"github.com/textileio/textile/v2/buildinfo\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nfunc getLatestRelease() (*su.Release, error) {\n\ts := spin.New(\"%s Checking for new Hub CLI version\")\n\ts.Start()\n\tdefer s.Stop()\n\tconfig := su.Config{\n\t\tFilters: []string{\n\t\t\t\"hub_v\",\n\t\t},\n\t}\n\tupdater, err := su.NewUpdater(config)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tlatest, found, err := updater.DetectLatest(cmd.Repo)\n\tif err != nil {\n\t\treturn nil, err\n\t} else if !found {\n\t\treturn nil, fmt.Errorf(\"%s_%s build not found\", runtime.GOOS, runtime.GOARCH)\n\t}\n\n\treturn latest, nil\n}\n\nfunc getAPIVersion() (string, error) {\n\ts := spin.New(\"%s Checking Hub API version\")\n\ts.Start()\n\tdefer s.Stop()\n\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\tdefer cancel()\n\tres, err := clients.Hub.BuildInfo(ctx)\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"getting API build info: %v\", err)\n\t}\n\tif res.GitSummary == \"\" {\n\t\tres.GitSummary = \"git\"\n\t}\n\treturn res.GitSummary, nil\n}\n\nvar versionCmd = &cobra.Command{\n\tUse:   \"version\",\n\tShort: \"Show version info\",\n\tLong:  `Shows version info.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tisGovvvBuild := bi.GitSummary != \"\"\n\t\tisReleaseBuild := bi.Version != \"git\"\n\n\t\tdisplayVersion := bi.Version\n\t\tif !isReleaseBuild && isGovvvBuild {\n\t\t\tdisplayVersion = bi.GitSummary\n\t\t}\n\t\tcmd.Message(\"%s\", aurora.Green(displayVersion))\n\n\t\tapiVersion, err := getAPIVersion()\n\t\tif err != nil {\n\t\t\tcmd.Warn(\"Unable to get Hub API version: %v\", err)\n\t\t} else {\n\t\t\tcmd.Message(\"Hub API: %s\", apiVersion)\n\t\t}\n\n\t\tlatestRelease, err := getLatestRelease()\n\t\tif err != nil {\n\t\t\tcmd.Warn(\"Unable to get latest version: %v\", err)\n\t\t} else {\n\t\t\tlatest := \"v\" + latestRelease.Version.String()\n\t\t\tcurrent, err := semver.ParseTolerant(bi.Version)\n\t\t\tif err != nil || current.LT(latestRelease.Version) {\n\t\t\t\t// Display message if outdated of we're running a custom build\n\t\t\t\tcmd.Message(\"New version of hub available! %s -> %s. Run %s to update.\",\n\t\t\t\t\taurora.Red(displayVersion),\n\t\t\t\t\taurora.Cyan(latest),\n\t\t\t\t\taurora.White(\"hub update\").Bold())\n\t\t\t}\n\t\t}\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/cli/whoami.go",
    "content": "package cli\n\nimport (\n\t\"context\"\n\n\tmbase \"github.com/multiformats/go-multibase\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar whoamiCmd = &cobra.Command{\n\tUse:   \"whoami\",\n\tShort: \"Show current user\",\n\tLong:  `Shows the user for the current session.`,\n\tArgs:  cobra.ExactArgs(0),\n\tRun: func(c *cobra.Command, args []string) {\n\t\tctx, cancel := context.WithTimeout(Auth(context.Background()), cmd.Timeout)\n\t\tdefer cancel()\n\t\twho, err := clients.Hub.GetSessionInfo(ctx)\n\t\tcmd.ErrCheck(err)\n\t\tkey, err := mbase.Encode(mbase.Base32, who.Key)\n\t\tcmd.ErrCheck(err)\n\t\tcmd.Message(\"You are %s\", aurora.White(who.Username).Bold())\n\t\tcmd.Message(\"Your key is %s\", aurora.White(key).Bold())\n\t},\n}\n"
  },
  {
    "path": "cmd/hub/main.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/logrusorgru/aurora\"\n\tmbase \"github.com/multiformats/go-multibase\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/buckets/local\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\tbuck \"github.com/textileio/textile/v2/cmd/buck/cli\"\n\thub \"github.com/textileio/textile/v2/cmd/hub/cli\"\n)\n\nvar clients *cmd.Clients\n\nfunc init() {\n\tcobra.OnInitialize(cmd.InitConfig(hub.Config()))\n\thub.Init(rootCmd)\n}\n\nfunc main() {\n\tcmd.ErrCheck(rootCmd.Execute())\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   hub.Name,\n\tShort: \"Hub Client\",\n\tLong:  `The Hub Client.`,\n\tPersistentPreRun: func(c *cobra.Command, args []string) {\n\t\tcmd.ExpandConfigVars(hub.Config().Viper, hub.Config().Flags)\n\n\t\thubTarget := hub.Config().Viper.GetString(\"api\")\n\t\tminerIndexTarget := hub.Config().Viper.GetString(\"apiMinerIndex\")\n\t\tclients = cmd.NewClients(hubTarget, true, minerIndexTarget)\n\t\thub.SetClients(clients)\n\n\t\tconfig := local.DefaultConfConfig()\n\t\tconfig.EnvPrefix = fmt.Sprintf(\"%s_%s\", strings.ToUpper(hub.Name), strings.ToUpper(buck.Name))\n\t\tbuck.SetBucks(local.NewBucketsWithAuth(clients, config, hub.Auth))\n\n\t\tnewIdentity, err := c.Flags().GetBool(\"newIdentity\")\n\t\tcmd.ErrCheck(err)\n\t\tif newIdentity {\n\t\t\tsk, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tskb, err := crypto.MarshalPrivateKey(sk)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tpkb, err := crypto.MarshalPublicKey(pk)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tsks, err := mbase.Encode(mbase.Base32, skb)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tpks, err := mbase.Encode(mbase.Base32, pkb)\n\t\t\tcmd.ErrCheck(err)\n\t\t\thub.Config().Viper.Set(\"identity\", sks)\n\t\t\thub.Config().Viper.Set(\"token\", \"\")\n\t\t\tcmd.WriteConfigToHome(hub.Config())\n\t\t\tcmd.Message(\"Generated new identity with public key %s\", aurora.White(pks).Bold())\n\t\t}\n\n\t\tif hub.Config().Viper.GetString(\"identity\") != \"\" &&\n\t\t\thub.Config().Viper.GetString(\"token\") == \"\" {\n\t\t\t_, id, err := mbase.Decode(hub.Config().Viper.GetString(\"identity\"))\n\t\t\tif err != nil {\n\t\t\t\tcmd.Fatal(fmt.Errorf(\"invalid identity: %w\", err))\n\t\t\t}\n\t\t\tsk, err := crypto.UnmarshalPrivateKey(id)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tpkb, err := crypto.MarshalPublicKey(sk.GetPublic())\n\t\t\tcmd.ErrCheck(err)\n\t\t\tpks, err := mbase.Encode(mbase.Base32, pkb)\n\t\t\tcmd.ErrCheck(err)\n\t\t\tctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)\n\t\t\tdefer cancel()\n\t\t\ttok, err := clients.Threads.GetToken(hub.Auth(ctx), thread.NewLibp2pIdentity(sk))\n\t\t\tif err != nil {\n\t\t\t\tcmd.Fatal(fmt.Errorf(\"getting identity token: %w\", err))\n\t\t\t}\n\t\t\thub.Config().Viper.Set(\"token\", string(tok))\n\t\t\tcmd.WriteConfigToHome(hub.Config())\n\t\t\tcmd.Message(\"Fetched new identity token for public key %s\", aurora.White(pks).Bold())\n\t\t}\n\n\t\tif hub.Config().Viper.GetString(\"session\") == \"\" &&\n\t\t\thub.Config().Viper.GetString(\"apiKey\") == \"\" &&\n\t\t\tc.Use != \"init\" &&\n\t\t\tc.Use != \"login\" &&\n\t\t\tc.Use != \"version\" &&\n\t\t\tc.Use != \"update\" &&\n\t\t\tc.Parent().Use != \"index\" {\n\t\t\tmsg := \"unauthorized! run `%s` or use `%s` to authorize\"\n\t\t\tcmd.Fatal(errors.New(msg), aurora.Cyan(hub.Name+\" init|login\"), aurora.Cyan(\"--session\"))\n\t\t}\n\t},\n\tPersistentPostRun: func(c *cobra.Command, args []string) {\n\t\tclients.Close()\n\t},\n\tArgs: cobra.ExactArgs(0),\n}\n"
  },
  {
    "path": "cmd/hubd/Dockerfile",
    "content": "FROM golang:1.16.0-buster\nMAINTAINER Textile <contact@textile.io>\n\n# This is (in large part) copied (with love) from\n# https://hub.docker.com/r/ipfs/go-ipfs/dockerfile\n\n# Install deps\nRUN apt-get update && apt-get install -y \\\n  libssl-dev \\\n  ca-certificates\n\nENV SRC_DIR /textile\n\n# Download packages first so they can be cached.\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\n# Build the thing.\nRUN cd $SRC_DIR \\\n  && TXTL_BUILD_FLAGS=\"CGO_ENABLED=0 GOOS=linux\" make build-hubd\n\n# Get su-exec, a very minimal tool for dropping privileges,\n# and tini, a very minimal init daemon for containers\nENV SUEXEC_VERSION v0.2\nENV TINI_VERSION v0.19.0\nRUN set -eux; \\\n    dpkgArch=\"$(dpkg --print-architecture)\"; \\\n    case \"${dpkgArch##*-}\" in \\\n        \"amd64\" | \"armhf\" | \"arm64\") tiniArch=\"tini-static-$dpkgArch\" ;;\\\n        *) echo >&2 \"unsupported architecture: ${dpkgArch}\"; exit 1 ;; \\\n    esac; \\\n  cd /tmp \\\n  && git clone https://github.com/ncopa/su-exec.git \\\n  && cd su-exec \\\n  && git checkout -q $SUEXEC_VERSION \\\n  && make su-exec-static \\\n  && cd /tmp \\\n  && wget -q -O tini https://github.com/krallin/tini/releases/download/$TINI_VERSION/$tiniArch \\\n  && chmod +x tini\n\n# Now comes the actual target image, which aims to be as small as possible.\nFROM busybox:1.31.1-glibc\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\n# Get the textile binary, entrypoint script, and TLS CAs from the build container.\nENV SRC_DIR /textile\nCOPY --from=0 $SRC_DIR/hubd /usr/local/bin/hubd\nCOPY --from=0 /tmp/su-exec/su-exec-static /sbin/su-exec\nCOPY --from=0 /tmp/tini /sbin/tini\nCOPY --from=0 /etc/ssl/certs /etc/ssl/certs\n\n# This shared lib (part of glibc) doesn't seem to be included with busybox.\nCOPY --from=0 /lib/*-linux-gnu*/libdl.so.2 /lib/\n\n# Copy over SSL libraries.\nCOPY --from=0 /usr/lib/*-linux-gnu*/libssl.so* /usr/lib/\nCOPY --from=0 /usr/lib/*-linux-gnu*/libcrypto.so* /usr/lib/\n\n# addrApi; can be exposed to the public.\nEXPOSE 3006\n# addrApiProxy; can be exposed to the public.\nEXPOSE 3007\n# addrThreadsHost; must be exposed to the public.\nEXPOSE 4006\n# addrGatewayHost; can be exposed to the public.\nEXPOSE 8006\n\n# Create the repo directory.\nENV TEXTILE_PATH /data/textile\nRUN mkdir -p $TEXTILE_PATH \\\n  && adduser -D -h $TEXTILE_PATH -u 1000 -G users textile \\\n  && chown textile:users $TEXTILE_PATH\n\n# Switch to a non-privileged user.\nUSER textile\n\n# Expose the repo as a volume.\n# Important this happens after the USER directive so permission are correct.\nVOLUME $TEXTILE_PATH\n\nENTRYPOINT [\"/sbin/tini\", \"--\", \"hubd\"]\n\nCMD [\"--repo=/data/textile\"]\n"
  },
  {
    "path": "cmd/hubd/Dockerfile.dev",
    "content": "FROM golang:1.16.0-buster\n\nRUN apt-get update\n\nRUN go get github.com/go-delve/delve/cmd/dlv\n\nENV SRC_DIR /textile\n\nCOPY go.mod go.sum $SRC_DIR/\nRUN cd $SRC_DIR \\\n  && go mod download\n\nCOPY . $SRC_DIR\n\nRUN cd $SRC_DIR \\\n  && CGO_ENABLED=0 GOOS=linux go build -gcflags \"all=-N -l\" -o hubd cmd/hubd/main.go\n\nFROM debian:buster\nLABEL maintainer=\"Textile <contact@textile.io>\"\n\nENV SRC_DIR /textile\nCOPY --from=0 /go/bin/dlv /usr/local/bin/dlv\nCOPY --from=0 $SRC_DIR/hubd /usr/local/bin/hubd\n\nEXPOSE 3006\nEXPOSE 3007\nEXPOSE 4006\nEXPOSE 8006\nEXPOSE 40000\n\nENV TEXTILE_PATH /data/textile\nRUN adduser --home $TEXTILE_PATH --disabled-login --gecos \"\" --ingroup users textile\n\nUSER textile\n\nVOLUME $TEXTILE_PATH\n\nENTRYPOINT [\"dlv\", \"--listen=0.0.0.0:40000\", \"--headless=true\", \"--accept-multiclient\", \"--continue\", \"--api-version=2\", \"exec\", \"/usr/local/bin/hubd\"]\n\nCMD [\"--\", \"--repo=/data/textile\"]\n"
  },
  {
    "path": "cmd/hubd/docker-compose-dev.yml",
    "content": "version: \"3\"\nservices:\n  textile:\n    build:\n      context: ../../\n      dockerfile: ./cmd/hubd/Dockerfile.dev\n    volumes:\n      - \"${REPO_PATH}/textile:/data/textile\"\n    environment:\n      - HUB_LOG_DEBUG=true\n      - HUB_ADDR_API=/ip4/0.0.0.0/tcp/3006\n      - HUB_ADDR_API_PROXY=/ip4/0.0.0.0/tcp/3007\n      - HUB_ADDR_MONGO_URI=mongodb://mongo:27017\n      - HUB_ADDR_MONGO_NAME=textile\n      - HUB_ADDR_THREADS_HOST=/ip4/0.0.0.0/tcp/4006\n      - HUB_ADDR_THREADS_MONGO_URI=mongodb://mongo:27017\n      - HUB_ADDR_THREADS_MONGO_NAME=textile_threads\n      - HUB_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8006\n      - HUB_ADDR_GATEWAY_URL\n      - HUB_ADDR_IPFS_API=/dns4/ipfs/tcp/5001\n      - HUB_ADDR_BILLING_API=billing:10006\n      - HUB_ADDR_POWERGATE_API\n      - HUB_BUCKETS_MAX_SIZE\n      - HUB_THREADS_MAX_NUMBER_PER_OWNER\n      - HUB_IPNS_REPUBLISH_SCHEDULE\n      - HUB_IPNS_REPUBLISH_CONCURRENCY\n      - HUB_GATEWAY_SUBDOMAINS\n      - HUB_CUSTOMERIO_API_KEY\n      - HUB_EMAIL_SESSION_SECRET=hubsession\n    ports:\n      - \"127.0.0.1:3006:3006\"\n      - \"127.0.0.1:3007:3007\"\n      - \"4006:4006\"\n      - \"127.0.0.1:8006:8006\"\n      - \"127.0.0.1:40000:40000\"\n    security_opt:\n      - \"seccomp:unconfined\"\n    cap_add:\n      - SYS_PTRACE\n    depends_on:\n      - mongo\n  billing:\n    build:\n      context: ../../\n      dockerfile: ./api/billingd/Dockerfile.dev\n    environment:\n      - BILLING_LOG_DEBUG=true\n      - BILLING_ADDR_API=/ip4/0.0.0.0/tcp/10006\n      - BILLING_ADDR_MONGO_URI=mongodb://mongo:27017\n      - BILLING_ADDR_MONGO_NAME=textile_billing\n      - BILLING_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8010\n      - BILLING_ADDR_GATEWAY_URL\n      - BILLING_STRIPE_API_KEY\n      - BILLING_STRIPE_WEBHOOK_SECRET\n      - BILLING_SEGMENT_API_KEY\n      - BILLING_SEGMENT_PREFIX\n    ports:\n      - \"127.0.0.1:10006:10006\"\n      - \"127.0.0.1:8010:8010\"\n      - \"127.0.0.1:40001:40000\"\n    security_opt:\n      - \"seccomp:unconfined\"\n    cap_add:\n      - SYS_PTRACE\n    depends_on:\n      - mongo\n  mongo:\n    image: mongo:latest\n    volumes:\n      - \"${REPO_PATH}/mongo:/data/db\"\n    ports:\n      - \"127.0.0.1:27017:27017\"\n    command:\n      - /bin/bash\n      - -c\n      - |\n        /usr/bin/mongod --fork --logpath /var/log/mongod.log --bind_ip_all --replSet rs0\n        mongo --eval 'rs.initiate({_id: \"rs0\", version: 1, members: [{ _id: 0, host: \"mongo:27017\" }]})'\n        tail -f /var/log/mongod.log\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n    volumes:\n      - \"${REPO_PATH}/ipfs:/data/ipfs\"\n    environment:\n      - IPFS_PROFILE=test\n    ports:\n      - \"4001:4001\"\n      - \"4001:4001/udp\"\n      - \"127.0.0.1:5001:5001\"\n      - \"127.0.0.1:8080:8080\"\n"
  },
  {
    "path": "cmd/hubd/docker-compose.yml",
    "content": "version: \"3\"\nservices:\n  textile:\n    image: textile/textile:latest\n    restart: always\n    volumes:\n      - \"${REPO_PATH}/textile:/data/textile\"\n    environment:\n      - HUB_LOG_DEBUG\n      - HUB_ADDR_API=/ip4/0.0.0.0/tcp/3006\n      - HUB_ADDR_API_PROXY=/ip4/0.0.0.0/tcp/3007\n      - HUB_ADDR_MONGO_URI=mongodb://mongo:27017\n      - HUB_ADDR_MONGO_NAME\n      - HUB_ADDR_THREADS_HOST=/ip4/0.0.0.0/tcp/4006\n      - HUB_ADDR_THREADS_MONGO_URI\n      - HUB_ADDR_THREADS_MONGO_NAME\n      - HUB_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8006\n      - HUB_ADDR_GATEWAY_URL\n      - HUB_ADDR_IPFS_API=/dns4/ipfs/tcp/5001\n      - HUB_ADDR_BILLING_API=billing:10006\n      - HUB_ADDR_POWERGATE_API\n      - HUB_BUCKETS_MAX_SIZE\n      - HUB_THREADS_MAX_NUMBER_PER_OWNER\n      - HUB_IPNS_REPUBLISH_SCHEDULE\n      - HUB_IPNS_REPUBLISH_CONCURRENCY\n      - HUB_GATEWAY_SUBDOMAINS\n      - HUB_DNS_DOMAIN\n      - HUB_DNS_ZONE_ID\n      - HUB_DNS_TOKEN\n      - HUB_CUSTOMERIO_API_KEY\n    ports:\n      - \"3006:3006\"\n      - \"3007:3007\"\n      - \"4006:4006\"\n      - \"8006:8006\"\n    depends_on:\n      - mongo\n  billing:\n    image: textile/textile:billing\n    restart: always\n    environment:\n      - BILLING_LOG_DEBUG\n      - BILLING_ADDR_API=/ip4/0.0.0.0/tcp/10006\n      - BILLING_ADDR_MONGO_URI=mongodb://mongo:27017\n      - BILLING_ADDR_MONGO_NAME\n      - BILLING_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8010\n      - BILLING_ADDR_GATEWAY_URL\n      - BILLING_STRIPE_API_KEY\n      - BILLING_STRIPE_WEBHOOK_SECRET\n      - BILLING_SEGMENT_API_KEY\n      - BILLING_SEGMENT_PREFIX\n    ports:\n      - \"10006:10006\"\n      - \"8010:8010\"\n    depends_on:\n      - mongo\n  mongo:\n    image: mongo:latest\n    restart: always\n    volumes:\n      - \"${REPO_PATH}/mongo:/data/db\"\n    ports:\n      - \"127.0.0.1:27017:27017\"\n    command:\n      - /bin/bash\n      - -c\n      - |\n        /usr/bin/mongod --fork --logpath /var/log/mongod.log --bind_ip_all --replSet rs0\n        mongo --eval 'rs.initiate({_id: \"rs0\", version: 1, members: [{ _id: 0, host: \"mongo:27017\" }]})'\n        tail -f /var/log/mongod.log\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n    restart: always\n    volumes:\n      - \"${REPO_PATH}/ipfs:/data/ipfs\"\n    ports:\n      - \"4001:4001\"\n      - \"4001:4001/udp\"\n      - \"127.0.0.1:5001:5001\"\n      - \"8080:8080\"\n"
  },
  {
    "path": "cmd/hubd/main.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n\t\"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/core\"\n)\n\nconst (\n\tdaemonName = \"hubd\"\n\n\tmib = 1024 * 1024\n\tgib = 1024 * mib\n)\n\nvar (\n\tlog = logging.Logger(daemonName)\n\n\tconfig = &cmd.Config{\n\t\tViper: viper.New(),\n\t\tDir:   \".\" + daemonName,\n\t\tName:  \"config\",\n\t\tFlags: map[string]cmd.Flag{\n\t\t\t\"repo\": {\n\t\t\t\tKey:      \"repo\",\n\t\t\t\tDefValue: \"${HOME}/.\" + daemonName + \"/repo\",\n\t\t\t},\n\t\t\t\"debug\": {\n\t\t\t\tKey:      \"log.debug\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"logFile\": {\n\t\t\t\tKey:      \"log.file\",\n\t\t\t\tDefValue: \"\", // no log file\n\t\t\t},\n\n\t\t\t// Addresses\n\t\t\t\"addrApi\": {\n\t\t\t\tKey:      \"addr.api\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/3006\",\n\t\t\t},\n\t\t\t\"addrApiProxy\": {\n\t\t\t\tKey:      \"addr.api_proxy\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/3007\",\n\t\t\t},\n\t\t\t\"addrMongoUri\": {\n\t\t\t\tKey:      \"addr.mongo_uri\",\n\t\t\t\tDefValue: \"mongodb://127.0.0.1:27017\",\n\t\t\t},\n\t\t\t\"addrMongoName\": {\n\t\t\t\tKey:      \"addr.mongo_name\",\n\t\t\t\tDefValue: \"textile\",\n\t\t\t},\n\t\t\t\"addrThreadsHost\": {\n\t\t\t\tKey:      \"addr.threads.host\",\n\t\t\t\tDefValue: \"/ip4/0.0.0.0/tcp/4006\",\n\t\t\t},\n\t\t\t\"addrThreadsMongoUri\": {\n\t\t\t\tKey:      \"addr.threads.mongo_uri\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"addrThreadsMongoName\": {\n\t\t\t\tKey:      \"addr.threads.mongo_name\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"addrGatewayHost\": {\n\t\t\t\tKey:      \"addr.gateway.host\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/8006\",\n\t\t\t},\n\t\t\t\"addrGatewayUrl\": {\n\t\t\t\tKey:      \"addr.gateway.url\",\n\t\t\t\tDefValue: \"http://127.0.0.1:8006\",\n\t\t\t},\n\t\t\t\"addrIpfsApi\": {\n\t\t\t\tKey:      \"addr.ipfs.api\",\n\t\t\t\tDefValue: \"/ip4/127.0.0.1/tcp/5001\",\n\t\t\t},\n\t\t\t\"addrBillingApi\": {\n\t\t\t\tKey:      \"addr.billing.api\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"addrPowergateApi\": {\n\t\t\t\tKey:      \"addr.powergate.api\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\n\t\t\t// Buckets\n\t\t\t\"bucketsArchiveMaxRepFactor\": {\n\t\t\t\tKey:      \"buckets.archive_max_rep_factor\",\n\t\t\t\tDefValue: 4,\n\t\t\t},\n\t\t\t\"bucketsArchiveMaxSize\": {\n\t\t\t\tKey:      \"buckets.archive_max_size\",\n\t\t\t\tDefValue: int64(32 * gib),\n\t\t\t},\n\t\t\t\"bucketsArchiveMinSize\": {\n\t\t\t\tKey:      \"buckets.archive_min_size\",\n\t\t\t\tDefValue: int64(64 * mib),\n\t\t\t},\n\n\t\t\t// Threads\n\t\t\t\"threadsMaxNumberPerOwner\": {\n\t\t\t\tKey:      \"threads.max_number_per_owner\",\n\t\t\t\tDefValue: 100,\n\t\t\t},\n\n\t\t\t// Powergate\n\t\t\t\"powergateAdminToken\": {\n\t\t\t\tKey:      \"powergate.admin_token\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\n\t\t\t// Archives\n\t\t\t\"archivesJobPollIntervalSlow\": {\n\t\t\t\tKey:      \"archives.job_poll_interval_slow\",\n\t\t\t\tDefValue: time.Minute * 30,\n\t\t\t},\n\t\t\t\"archivesJobPollIntervalFast\": {\n\t\t\t\tKey:      \"archives.job_poll_interval_fast\",\n\t\t\t\tDefValue: time.Minute * 5,\n\t\t\t},\n\n\t\t\t// IPNS\n\t\t\t\"ipnsRepublishSchedule\": {\n\t\t\t\tKey:      \"ipns.republish_schedule\",\n\t\t\t\tDefValue: \"0 1 * * *\",\n\t\t\t},\n\t\t\t\"ipnsRepublishConcurrency\": {\n\t\t\t\tKey:      \"ipns.republish_concurrency\",\n\t\t\t\tDefValue: 100,\n\t\t\t},\n\n\t\t\t// Gateway\n\t\t\t\"gatewaySubdomains\": {\n\t\t\t\tKey:      \"gateway.subdomains\",\n\t\t\t\tDefValue: false,\n\t\t\t},\n\t\t\t\"gatewayMaxEventsPerSec\": {\n\t\t\t\tKey:      \"gateway.max_events_per_sec\",\n\t\t\t\tDefValue: 1000,\n\t\t\t},\n\t\t\t\"gatewayMaxBurstSize\": {\n\t\t\t\tKey:      \"gateway.max_burst_size\",\n\t\t\t\tDefValue: 20,\n\t\t\t},\n\n\t\t\t// Cloudflare\n\t\t\t\"dnsDomain\": {\n\t\t\t\tKey:      \"dns.domain\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"dnsZoneID\": {\n\t\t\t\tKey:      \"dns.zone_id\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"dnsToken\": {\n\t\t\t\tKey:      \"dns.token\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\n\t\t\t// Customer.io\n\t\t\t\"customerioApiKey\": {\n\t\t\t\tKey:      \"customerio.api_key\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t\t\"customerioInviteTmpl\": {\n\t\t\t\tKey:      \"customerio.invite_template\",\n\t\t\t\tDefValue: \"2\",\n\t\t\t},\n\t\t\t\"customerioConfirmTmpl\": {\n\t\t\t\tKey:      \"customerio.confirm_template\",\n\t\t\t\tDefValue: \"3\",\n\t\t\t},\n\t\t\t\"emailSessionSecret\": {\n\t\t\t\tKey:      \"email.session_secret\",\n\t\t\t\tDefValue: \"\",\n\t\t\t},\n\t\t},\n\t\tEnvPre: \"HUB\",\n\t\tGlobal: true,\n\t}\n)\n\nfunc init() {\n\tcobra.OnInitialize(cmd.InitConfig(config))\n\tcmd.InitConfigCmd(rootCmd, config.Viper, config.Dir)\n\n\trootCmd.PersistentFlags().StringVar(\n\t\t&config.File,\n\t\t\"config\",\n\t\t\"\",\n\t\t\"Config file (default ${HOME}/\"+config.Dir+\"/\"+config.Name+\".yml)\")\n\trootCmd.PersistentFlags().StringP(\n\t\t\"repo\",\n\t\t\"r\",\n\t\tconfig.Flags[\"repo\"].DefValue.(string),\n\t\t\"Path to repository\")\n\trootCmd.PersistentFlags().BoolP(\n\t\t\"debug\",\n\t\t\"d\",\n\t\tconfig.Flags[\"debug\"].DefValue.(bool),\n\t\t\"Enable debug logging\")\n\trootCmd.PersistentFlags().String(\n\t\t\"logFile\",\n\t\tconfig.Flags[\"logFile\"].DefValue.(string),\n\t\t\"Write logs to file\")\n\n\t// Addresses\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApi\",\n\t\tconfig.Flags[\"addrApi\"].DefValue.(string),\n\t\t\"Hub API listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrApiProxy\",\n\t\tconfig.Flags[\"addrApiProxy\"].DefValue.(string),\n\t\t\"Hub API proxy listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoUri\",\n\t\tconfig.Flags[\"addrMongoUri\"].DefValue.(string),\n\t\t\"MongoDB connection URI\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrMongoName\",\n\t\tconfig.Flags[\"addrMongoName\"].DefValue.(string),\n\t\t\"MongoDB database name\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrThreadsHost\",\n\t\tconfig.Flags[\"addrThreadsHost\"].DefValue.(string),\n\t\t\"Threads peer host listen address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrThreadsMongoUri\",\n\t\tconfig.Flags[\"addrThreadsMongoUri\"].DefValue.(string),\n\t\t\"Threads MongoDB connection URI\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrThreadsMongoName\",\n\t\tconfig.Flags[\"addrThreadsMongoName\"].DefValue.(string),\n\t\t\"Threads MongoDB database name\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrGatewayHost\",\n\t\tconfig.Flags[\"addrGatewayHost\"].DefValue.(string),\n\t\t\"Local gateway host address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrGatewayUrl\",\n\t\tconfig.Flags[\"addrGatewayUrl\"].DefValue.(string),\n\t\t\"Public gateway address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrIpfsApi\",\n\t\tconfig.Flags[\"addrIpfsApi\"].DefValue.(string),\n\t\t\"IPFS API address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrBillingApi\",\n\t\tconfig.Flags[\"addrBillingApi\"].DefValue.(string),\n\t\t\"Billing API address\")\n\trootCmd.PersistentFlags().String(\n\t\t\"addrPowergateApi\",\n\t\tconfig.Flags[\"addrPowergateApi\"].DefValue.(string),\n\t\t\"Powergate API address\")\n\n\t// Buckets\n\trootCmd.PersistentFlags().Int(\n\t\t\"bucketsArchiveMaxRepFactor\",\n\t\tconfig.Flags[\"bucketsArchiveMaxRepFactor\"].DefValue.(int),\n\t\t\"Bucket archive max replication factor\")\n\trootCmd.PersistentFlags().Int64(\n\t\t\"bucketsArchiveMaxSize\",\n\t\tconfig.Flags[\"bucketsArchiveMaxSize\"].DefValue.(int64),\n\t\t\"Bucket archive max size\")\n\trootCmd.PersistentFlags().Int64(\n\t\t\"bucketsArchiveMinSize\",\n\t\tconfig.Flags[\"bucketsArchiveMinSize\"].DefValue.(int64),\n\t\t\"Bucket archive min size\")\n\n\t// Threads\n\trootCmd.PersistentFlags().Int(\n\t\t\"threadsMaxNumberPerOwner\",\n\t\tconfig.Flags[\"threadsMaxNumberPerOwner\"].DefValue.(int),\n\t\t\"Max number threads per owner\")\n\n\t// Powergate\n\trootCmd.PersistentFlags().String(\n\t\t\"powergateAdminToken\",\n\t\tconfig.Flags[\"powergateAdminToken\"].DefValue.(string),\n\t\t\"Auth token for Powergate admin APIs\")\n\n\t// Archives\n\t// @todo: Move these under the powergate namespace\n\trootCmd.PersistentFlags().Duration(\n\t\t\"archivesJobPollIntervalSlow\",\n\t\tconfig.Flags[\"archivesJobPollIntervalSlow\"].DefValue.(time.Duration),\n\t\t\"How frequently to check archive job status for arcives with deals in the sealing state\")\n\trootCmd.PersistentFlags().Duration(\n\t\t\"archivesJobPollIntervalFast\",\n\t\tconfig.Flags[\"archivesJobPollIntervalFast\"].DefValue.(time.Duration),\n\t\t\"How frequently to check archive job status for arcives with deals in non-sealing states\")\n\n\t// IPNS\n\trootCmd.PersistentFlags().String(\n\t\t\"ipnsRepublishSchedule\",\n\t\tconfig.Flags[\"ipnsRepublishSchedule\"].DefValue.(string),\n\t\t\"IPNS republishing cron schedule\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"ipnsRepublishConcurrency\",\n\t\tconfig.Flags[\"ipnsRepublishConcurrency\"].DefValue.(int),\n\t\t\"IPNS republishing batch size\")\n\n\t// Gateway\n\trootCmd.PersistentFlags().Bool(\n\t\t\"gatewaySubdomains\",\n\t\tconfig.Flags[\"gatewaySubdomains\"].DefValue.(bool),\n\t\t\"Enable gateway namespace redirects to subdomains\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"gatewayMaxEventsPerSec\",\n\t\tconfig.Flags[\"gatewayMaxEventsPerSec\"].DefValue.(int),\n\t\t\"Gateway max events per second\")\n\trootCmd.PersistentFlags().Int(\n\t\t\"gatewayMaxBurstSize\",\n\t\tconfig.Flags[\"gatewayMaxBurstSize\"].DefValue.(int),\n\t\t\"Gateway gateway max burst size\")\n\n\t// Cloudflare\n\t// @todo: Change these to cloudflareDnsDomain, etc.\n\trootCmd.PersistentFlags().String(\n\t\t\"dnsDomain\",\n\t\tconfig.Flags[\"dnsDomain\"].DefValue.(string),\n\t\t\"Root domain for bucket subdomains\")\n\trootCmd.PersistentFlags().String(\n\t\t\"dnsZoneID\",\n\t\tconfig.Flags[\"dnsZoneID\"].DefValue.(string),\n\t\t\"Cloudflare ZoneID for dnsDomain\")\n\trootCmd.PersistentFlags().String(\n\t\t\"dnsToken\",\n\t\tconfig.Flags[\"dnsToken\"].DefValue.(string),\n\t\t\"Cloudflare API Token for dnsDomain\")\n\n\t// Customer.io\n\trootCmd.PersistentFlags().String(\n\t\t\"customerioApiKey\",\n\t\tconfig.Flags[\"customerioApiKey\"].DefValue.(string),\n\t\t\"Customer.io API key for sending emails\")\n\trootCmd.PersistentFlags().String(\n\t\t\"customerioConfirmTmpl\",\n\t\tconfig.Flags[\"customerioConfirmTmpl\"].DefValue.(string),\n\t\t\"Template ID for confirmation emails\")\n\trootCmd.PersistentFlags().String(\n\t\t\"customerioInviteTmpl\",\n\t\tconfig.Flags[\"customerioInviteTmpl\"].DefValue.(string),\n\t\t\"Template ID for invite emails\")\n\t// @todo: Change this to the customerio namespace\n\trootCmd.PersistentFlags().String(\n\t\t\"emailSessionSecret\",\n\t\tconfig.Flags[\"emailSessionSecret\"].DefValue.(string),\n\t\t\"Session secret to use when testing email APIs\")\n\n\terr := cmd.BindFlags(config.Viper, rootCmd, config.Flags)\n\tcmd.ErrCheck(err)\n}\n\nfunc main() {\n\tcmd.ErrCheck(rootCmd.Execute())\n}\n\nvar rootCmd = &cobra.Command{\n\tUse:   daemonName,\n\tShort: \"Hub daemon\",\n\tLong:  `The Hub daemon.`,\n\tPersistentPreRun: func(c *cobra.Command, args []string) {\n\t\tconfig.Viper.SetConfigType(\"yaml\")\n\t\tcmd.ExpandConfigVars(config.Viper, config.Flags)\n\n\t\tif config.Viper.GetBool(\"log.debug\") {\n\t\t\terr := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\tdaemonName: logging.LevelDebug,\n\t\t\t})\n\t\t\tcmd.ErrCheck(err)\n\t\t}\n\t},\n\tRun: func(c *cobra.Command, args []string) {\n\t\tsettings, err := json.MarshalIndent(config.Viper.AllSettings(), \"\", \"  \")\n\t\tcmd.ErrCheck(err)\n\t\tlog.Debugf(\"loaded config: %s\", string(settings))\n\n\t\tdebug := config.Viper.GetBool(\"log.debug\")\n\t\tlogFile := config.Viper.GetString(\"log.file\")\n\t\terr = cmd.SetupDefaultLoggingConfig(logFile)\n\t\tcmd.ErrCheck(err)\n\n\t\t// Addresses\n\t\taddrApi := cmd.AddrFromStr(config.Viper.GetString(\"addr.api\"))\n\t\taddrApiProxy := cmd.AddrFromStr(config.Viper.GetString(\"addr.api_proxy\"))\n\t\taddrMongoUri := config.Viper.GetString(\"addr.mongo_uri\")\n\t\taddrMongoName := config.Viper.GetString(\"addr.mongo_name\")\n\t\taddrThreadsHost := cmd.AddrFromStr(config.Viper.GetString(\"addr.threads.host\"))\n\t\taddrThreadsMongoUri := config.Viper.GetString(\"addr.threads.mongo_uri\")\n\t\taddrThreadsMongoName := config.Viper.GetString(\"addr.threads.mongo_name\")\n\t\taddrGatewayHost := cmd.AddrFromStr(config.Viper.GetString(\"addr.gateway.host\"))\n\t\taddrGatewayUrl := config.Viper.GetString(\"addr.gateway.url\")\n\t\taddrIpfsApi := cmd.AddrFromStr(config.Viper.GetString(\"addr.ipfs.api\"))\n\t\taddrBillingApi := config.Viper.GetString(\"addr.billing.api\")\n\t\taddrPowergateApi := config.Viper.GetString(\"addr.powergate.api\")\n\n\t\t// Buckets\n\t\tbucketsArchiveMaxRepFactor := config.Viper.GetInt(\"buckets.archive_max_rep_factor\")\n\t\tbucketsArchiveMaxSize := config.Viper.GetInt64(\"buckets.archive_max_size\")\n\t\tbucketsArchiveMinSize := config.Viper.GetInt64(\"buckets.archive_min_size\")\n\n\t\t// Threads\n\t\tthreadsMaxNumberPerOwner := config.Viper.GetInt(\"threads.max_number_per_owner\")\n\n\t\t// Powergate\n\t\tpowergateAdminToken := config.Viper.GetString(\"powergate.admin_token\")\n\n\t\t// Archives\n\t\tarchivesJobPollIntervalSlow := config.Viper.GetDuration(\"archives.job_poll_interval_slow\")\n\t\tarchivesJobPollIntervalFast := config.Viper.GetDuration(\"archives.job_poll_interval_fast\")\n\n\t\t// IPNS\n\t\tipnsRepublishSchedule := config.Viper.GetString(\"ipns.republish_schedule\")\n\t\tipnsRepublishConcurrency := config.Viper.GetInt(\"ipns.republish_concurrency\")\n\n\t\t// Gateway\n\t\tgatewaySubdomains := config.Viper.GetBool(\"gateway.subdomains\")\n\t\tgatewayMaxEventsPerSec := config.Viper.GetInt(\"gateway.max_events_per_sec\")\n\t\tgatewayMaxBurstSize := config.Viper.GetInt(\"gateway.max_burst_size\")\n\n\t\t// Cloudflare\n\t\tdnsDomain := config.Viper.GetString(\"dns.domain\")\n\t\tdnsZoneID := config.Viper.GetString(\"dns.zone_id\")\n\t\tdnsToken := config.Viper.GetString(\"dns.token\")\n\n\t\t// Customer.io\n\t\tcustomerioApiKey := config.Viper.GetString(\"customerio.api_key\")\n\t\tcustomerioConfirmTmpl := config.Viper.GetString(\"customerio.confirm_template\")\n\t\tcustomerioInviteTmpl := config.Viper.GetString(\"customerio.invite_template\")\n\t\temailSessionSecret := config.Viper.GetString(\"email.session_secret\")\n\n\t\tvar opts []core.Option\n\t\tif addrThreadsMongoUri != \"\" {\n\t\t\tif addrThreadsMongoName == \"\" {\n\t\t\t\tcmd.Fatal(errors.New(\"addr.threads.mongo_name is required with addr.threads.mongo_uri\"))\n\t\t\t}\n\t\t\topts = append(opts, core.WithMongoThreadsPersistence(addrThreadsMongoUri, addrThreadsMongoName))\n\t\t} else {\n\t\t\topts = append(opts, core.WithBadgerThreadsPersistence(config.Viper.GetString(\"repo\")))\n\t\t}\n\n\t\tctx, cancel := context.WithCancel(context.Background())\n\t\tdefer cancel()\n\t\ttextile, err := core.NewTextile(ctx, core.Config{\n\t\t\tHub:   true,\n\t\t\tDebug: debug,\n\t\t\t// Addresses\n\t\t\tAddrAPI:          addrApi,\n\t\t\tAddrAPIProxy:     addrApiProxy,\n\t\t\tAddrMongoURI:     addrMongoUri,\n\t\t\tAddrMongoName:    addrMongoName,\n\t\t\tAddrThreadsHost:  addrThreadsHost,\n\t\t\tAddrGatewayHost:  addrGatewayHost,\n\t\t\tAddrGatewayURL:   addrGatewayUrl,\n\t\t\tAddrIPFSAPI:      addrIpfsApi,\n\t\t\tAddrBillingAPI:   addrBillingApi,\n\t\t\tAddrPowergateAPI: addrPowergateApi,\n\t\t\t// Buckets\n\t\t\tMaxBucketArchiveRepFactor: bucketsArchiveMaxRepFactor,\n\t\t\tMaxBucketArchiveSize:      bucketsArchiveMaxSize,\n\t\t\tMinBucketArchiveSize:      bucketsArchiveMinSize,\n\t\t\t// Threads\n\t\t\tMaxNumberThreadsPerOwner: threadsMaxNumberPerOwner,\n\t\t\t// Powergate\n\t\t\tPowergateAdminToken: powergateAdminToken,\n\t\t\t// Archives\n\t\t\tArchiveJobPollIntervalSlow: archivesJobPollIntervalSlow,\n\t\t\tArchiveJobPollIntervalFast: archivesJobPollIntervalFast,\n\t\t\t// IPNS\n\t\t\tIPNSRepublishSchedule:    ipnsRepublishSchedule,\n\t\t\tIPNSRepublishConcurrency: ipnsRepublishConcurrency,\n\t\t\t// Gateway\n\t\t\tUseSubdomains:   gatewaySubdomains,\n\t\t\tMaxEventsPerSec: gatewayMaxEventsPerSec,\n\t\t\tMaxBurstSize:    gatewayMaxBurstSize,\n\t\t\t// Cloudflare\n\t\t\tDNSDomain: dnsDomain,\n\t\t\tDNSZoneID: dnsZoneID,\n\t\t\tDNSToken:  dnsToken,\n\t\t\t// Customer.io\n\t\t\tCustomerioConfirmTmpl: customerioConfirmTmpl,\n\t\t\tCustomerioInviteTmpl:  customerioInviteTmpl,\n\t\t\tCustomerioAPIKey:      customerioApiKey,\n\t\t\tEmailSessionSecret:    emailSessionSecret,\n\t\t}, opts...)\n\t\tcmd.ErrCheck(err)\n\t\ttextile.Bootstrap()\n\n\t\tfmt.Println(\"Welcome to the Hub!\")\n\t\tfmt.Println(\"Your peer ID is \" + textile.HostID().String())\n\n\t\tcmd.HandleInterrupt(func() {\n\t\t\tif err := textile.Close(); err != nil {\n\t\t\t\tfmt.Println(err.Error())\n\t\t\t}\n\t\t})\n\t},\n}\n"
  },
  {
    "path": "cmd/output.go",
    "content": "package cmd\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"os\"\n\t\"os/signal\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\taurora2 \"github.com/logrusorgru/aurora\"\n\t\"github.com/olekukonko/tablewriter\"\n\t\"github.com/textileio/textile/v2/api/billingd/common\"\n\t\"github.com/textileio/textile/v2/api/bucketsd\"\n\t\"google.golang.org/grpc/status\"\n)\n\nvar aurora = aurora2.NewAurora(runtime.GOOS != \"windows\")\n\nfunc Message(format string, args ...interface{}) {\n\tif format == \"\" {\n\t\treturn\n\t}\n\tfmt.Println(aurora.Sprintf(aurora.BrightBlack(\"> \"+format), args...))\n}\n\nfunc Warn(format string, args ...interface{}) {\n\tif format == \"\" {\n\t\treturn\n\t}\n\tfmt.Println(aurora.Sprintf(aurora.Yellow(\"> Warning! %s\"),\n\t\taurora.Sprintf(aurora.BrightBlack(format), args...)))\n}\n\nfunc Success(format string, args ...interface{}) {\n\tfmt.Println(aurora.Sprintf(aurora.Cyan(\"> Success! %s\"),\n\t\taurora.Sprintf(aurora.BrightBlack(format), args...)))\n}\n\nfunc JSON(data interface{}) {\n\tbytes, err := json.MarshalIndent(data, \"\", \"  \")\n\tErrCheck(err)\n\tfmt.Println(aurora.BrightBlack(string(bytes)))\n}\n\nfunc End(format string, args ...interface{}) {\n\tMessage(format, args...)\n\tos.Exit(0)\n}\n\nfunc Error(err error, args ...interface{}) {\n\tvar msg string\n\tstat, ok := status.FromError(err)\n\tif ok {\n\t\tmsg = stat.Message()\n\t} else {\n\t\tmsg = err.Error()\n\t}\n\twords := strings.SplitN(msg, \" \", 2)\n\twords[0] = strings.Title(words[0])\n\tmsg = strings.Join(words, \" \")\n\n\t// @todo: Clean this up somehow?\n\tif strings.Contains(strings.ToLower(msg), common.ErrExceedsFreeQuota.Error()) ||\n\t\tstrings.Contains(strings.ToLower(msg), bucketsd.ErrStorageQuotaExhausted.Error()) {\n\t\tfmt.Println(aurora.Sprintf(aurora.Red(\"> Error! %s %s\"),\n\t\t\taurora.Sprintf(aurora.BrightBlack(msg), args...),\n\t\t\taurora.Sprintf(aurora.BrightBlack(\"(use `%s` to add a payment method)\"),\n\t\t\t\taurora.Cyan(\"hub billing portal\"))))\n\t} else if strings.Contains(strings.ToLower(msg), common.ErrSubscriptionCanceled.Error()) {\n\t\tfmt.Println(aurora.Sprintf(aurora.Red(\"> Error! %s %s\"),\n\t\t\taurora.Sprintf(aurora.BrightBlack(msg), args...),\n\t\t\taurora.Sprintf(aurora.BrightBlack(\"(use `%s` to re-enable billing)\"),\n\t\t\t\taurora.Cyan(\"hub billing setup\"))))\n\t} else if strings.Contains(strings.ToLower(msg), common.ErrSubscriptionPaymentRequired.Error()) {\n\t\tfmt.Println(aurora.Sprintf(aurora.Red(\"> Error! %s %s\"),\n\t\t\taurora.Sprintf(aurora.BrightBlack(msg), args...),\n\t\t\taurora.Sprintf(aurora.BrightBlack(\"(use `%s` to make a payment)\"),\n\t\t\t\taurora.Cyan(\"hub billing portal\"))))\n\t} else {\n\t\tfmt.Println(aurora.Sprintf(aurora.Red(\"> Error! %s\"),\n\t\t\taurora.Sprintf(aurora.BrightBlack(msg), args...)))\n\t}\n}\n\nfunc Fatal(err error, args ...interface{}) {\n\tError(err, args...)\n\tos.Exit(1)\n}\n\nfunc ErrCheck(err error, args ...interface{}) {\n\tif err != nil {\n\t\tFatal(err, args...)\n\t}\n}\n\nfunc RenderTable(header []string, data [][]string) {\n\tfmt.Println()\n\tRenderTableWithoutNewLines(header, data)\n\tfmt.Println()\n}\n\nfunc RenderTableWithoutNewLines(header []string, data [][]string) {\n\ttable := tablewriter.NewWriter(os.Stdout)\n\ttable.SetHeader(header)\n\ttable.SetAutoWrapText(false)\n\ttable.SetAutoFormatHeaders(true)\n\ttable.SetHeaderAlignment(tablewriter.ALIGN_LEFT)\n\ttable.SetAlignment(tablewriter.ALIGN_LEFT)\n\ttable.SetCenterSeparator(\"\")\n\ttable.SetColumnSeparator(\"\")\n\ttable.SetRowSeparator(\"\")\n\ttable.SetHeaderLine(false)\n\ttable.SetBorder(false)\n\ttable.SetTablePadding(\"\\t\")\n\ttable.SetNoWhiteSpace(false)\n\theadersColors := make([]tablewriter.Colors, len(header))\n\tfor i := range headersColors {\n\t\theadersColors[i] = tablewriter.Colors{tablewriter.FgHiBlackColor}\n\t}\n\ttable.SetHeaderColor(headersColors...)\n\ttable.AppendBulk(data)\n\ttable.Render()\n}\n\nfunc HandleInterrupt(stop func()) {\n\tquit := make(chan os.Signal)\n\tsignal.Notify(quit, os.Interrupt)\n\t<-quit\n\tfmt.Println(\"Gracefully stopping... (press Ctrl+C again to force)\")\n\tstop()\n\tos.Exit(1)\n}\n\nfunc SetupDefaultLoggingConfig(file string) error {\n\tif file != \"\" {\n\t\tif err := os.MkdirAll(filepath.Dir(file), os.ModePerm); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tc := logging.Config{\n\t\tFormat: logging.ColorizedOutput,\n\t\tStderr: true,\n\t\tFile:   file,\n\t\tLevel:  logging.LevelError,\n\t}\n\tlogging.SetupLogging(c)\n\treturn nil\n}\n"
  },
  {
    "path": "cmd/watch.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"strings\"\n\t\"time\"\n\n\tbackoff \"github.com/cenkalti/backoff/v4\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\n// WatchState is used to inform Watch callers about the connection state.\ntype WatchState struct {\n\t// State of the watch connection (online/offline).\n\tState ConnectionState\n\t// Err returned by the watch operation.\n\tErr error\n\t// Aborted indicates whether or not the associated error aborted the watch.\n\t// (Connectivity related errors do not abort the watch.)\n\tAborted bool\n}\n\n// ConnectionState indicates an online/offline state.\ntype ConnectionState int\n\nconst (\n\t// Offline indicates the remote is currently not reachable.\n\tOffline ConnectionState = iota\n\t// Online indicates a connection with the remote has been established.\n\tOnline\n)\n\nfunc (cs ConnectionState) String() string {\n\tswitch cs {\n\tcase Online:\n\t\treturn \"online\"\n\tcase Offline:\n\t\treturn \"offline\"\n\tdefault:\n\t\treturn \"unknown state\"\n\t}\n}\n\n// WatchFunc is a function wrapper for a function used by Watch.\ntype WatchFunc func(context.Context) (<-chan WatchState, error)\n\n// Watch calls watchFunc until it returns an error.\n// Normally, watchFunc would block while doing work that can fail,\n// e.g., the local network goes offline.\n// If watchFunc return an error, it will be called\n// again at the given interval so long as the returned error is non-fatal.\n// Returns a channel of watch connectivity states.\n// Cancel context to stop watching.\nfunc Watch(ctx context.Context, watchFunc WatchFunc, reconnectInterval time.Duration) (<-chan WatchState, error) {\n\tbc := backoff.NewConstantBackOff(reconnectInterval)\n\touterState := make(chan WatchState)\n\tgo func() {\n\t\tdefer close(outerState)\n\t\terr := backoff.Retry(func() error {\n\t\t\tstate, err := watchFunc(ctx)\n\t\t\tif err != nil {\n\t\t\t\touterState <- WatchState{Err: err, Aborted: true}\n\t\t\t\treturn nil // Stop retrying\n\t\t\t}\n\t\t\tfor s := range state {\n\t\t\t\touterState <- s\n\t\t\t\tif s.Err != nil {\n\t\t\t\t\tif s.Aborted {\n\t\t\t\t\t\treturn nil // Stop retrying\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn s.Err // Connection error, keep trying\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn nil\n\t\t}, bc)\n\t\tif err != nil {\n\t\t\touterState <- WatchState{Err: err, Aborted: true}\n\t\t}\n\t}()\n\treturn outerState, nil\n}\n\n// IsConnectionError returns true if the error is related to a dropped connection.\nfunc IsConnectionError(err error) bool {\n\treturn status.Code(err) == codes.Unavailable || strings.Contains(err.Error(), \"RST_STREAM\")\n}\n"
  },
  {
    "path": "core/auth_interceptor.go",
    "content": "package core\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"time\"\n\n\t\"github.com/golang-jwt/jwt\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\n// authFunc is used by hubd's authentication interceptor.\nfunc (t *Textile) authFunc(ctx context.Context) (context.Context, error) {\n\tmethod, _ := grpc.Method(ctx)\n\tfor _, ignored := range authIgnoredMethods {\n\t\tif method == ignored {\n\t\t\treturn ctx, nil\n\t\t}\n\t}\n\tfor _, block := range blockMethods {\n\t\tif method == block {\n\t\t\treturn nil, status.Error(codes.PermissionDenied, \"Method is not accessible\")\n\t\t}\n\t}\n\n\tif threadID, ok := common.ThreadIDFromMD(ctx); ok {\n\t\tctx = common.NewThreadIDContext(ctx, threadID)\n\t}\n\tif threadName, ok := common.ThreadNameFromMD(ctx); ok {\n\t\tctx = common.NewThreadNameContext(ctx, threadName)\n\t}\n\tif token, err := thread.NewTokenFromMD(ctx); err != nil {\n\t\treturn nil, err\n\t} else {\n\t\tctx = thread.NewTokenContext(ctx, token)\n\t}\n\n\treturn t.newAuthCtx(ctx, method, true)\n}\n\n// noAuthFunc is used by buckd's auth interceptor.\nfunc (t *Textile) noAuthFunc(ctx context.Context) (context.Context, error) {\n\tif threadID, ok := common.ThreadIDFromMD(ctx); ok {\n\t\tctx = common.NewThreadIDContext(ctx, threadID)\n\t}\n\tif threadToken, err := thread.NewTokenFromMD(ctx); err != nil {\n\t\treturn nil, err\n\t} else {\n\t\tctx = thread.NewTokenContext(ctx, threadToken)\n\t}\n\treturn ctx, nil\n}\n\n// authFunc ensures requests are authorized and attaches account\n// information for downstream handlers.\nfunc (t *Textile) newAuthCtx(ctx context.Context, method string, touchSession bool) (context.Context, error) {\n\tsid, ok := common.SessionFromMD(ctx)\n\tif ok {\n\t\tctx = common.NewSessionContext(ctx, sid)\n\t\tif sid == t.internalHubSession {\n\t\t\treturn ctx, nil\n\t\t}\n\t\tsession, err := t.collections.Sessions.Get(ctx, sid)\n\t\tif err != nil {\n\t\t\treturn ctx, status.Error(codes.Unauthenticated, \"Invalid session\")\n\t\t}\n\t\tif time.Now().After(session.ExpiresAt) {\n\t\t\treturn ctx, status.Error(codes.Unauthenticated, \"Expired session\")\n\t\t}\n\t\tif touchSession {\n\t\t\tif err := t.collections.Sessions.Touch(ctx, session.ID); err != nil {\n\t\t\t\treturn ctx, err\n\t\t\t}\n\t\t}\n\t\tctx = mdb.NewSessionContext(ctx, session)\n\n\t\tdev, err := t.collections.Accounts.Get(ctx, session.Owner)\n\t\tif err != nil {\n\t\t\treturn ctx, status.Error(codes.NotFound, \"User not found\")\n\t\t}\n\n\t\tvar org *mdb.Account\n\t\torgSlug, ok := common.OrgSlugFromMD(ctx)\n\t\tif ok {\n\t\t\tisMember, err := t.collections.Accounts.IsMember(ctx, orgSlug, dev.Key)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, err\n\t\t\t}\n\t\t\tif !isMember {\n\t\t\t\treturn ctx, status.Error(codes.PermissionDenied, \"User is not an org member\")\n\t\t\t} else {\n\t\t\t\tvar err error\n\t\t\t\torg, err = t.collections.Accounts.GetByUsername(ctx, orgSlug)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn ctx, status.Error(codes.NotFound, \"Org not found\")\n\t\t\t\t}\n\t\t\t\tctx = common.NewOrgSlugContext(ctx, orgSlug)\n\t\t\t\tctx = thread.NewTokenContext(ctx, org.Token)\n\t\t\t}\n\t\t} else {\n\t\t\tctx = thread.NewTokenContext(ctx, dev.Token)\n\t\t}\n\t\tctx = mdb.NewAccountContext(ctx, dev, org)\n\t} else if k, ok := common.APIKeyFromMD(ctx); ok {\n\t\tkey, err := t.collections.APIKeys.Get(ctx, k)\n\t\tif err != nil || !key.Valid {\n\t\t\treturn ctx, status.Error(codes.NotFound, \"API key not found or is invalid\")\n\t\t}\n\t\tctx = common.NewAPIKeyContext(ctx, k)\n\t\tif key.Secure {\n\t\t\tmsg, sig, ok := common.APISigFromMD(ctx)\n\t\t\tif !ok {\n\t\t\t\treturn ctx, status.Error(codes.Unauthenticated, \"API key signature required\")\n\t\t\t} else {\n\t\t\t\tctx = common.NewAPISigContext(ctx, msg, sig)\n\t\t\t\tif !common.ValidateAPISigContext(ctx, key.Secret) {\n\t\t\t\t\treturn ctx, status.Error(codes.Unauthenticated, \"Bad API key signature\")\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tswitch key.Type {\n\t\tcase mdb.AccountKey:\n\t\t\tacc, err := t.collections.Accounts.Get(ctx, key.Owner)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, status.Error(codes.NotFound, \"Account not found\")\n\t\t\t}\n\t\t\tswitch acc.Type {\n\t\t\tcase mdb.Dev:\n\t\t\t\tctx = mdb.NewAccountContext(ctx, acc, nil)\n\t\t\tcase mdb.Org:\n\t\t\t\tctx = mdb.NewAccountContext(ctx, nil, acc)\n\t\t\t}\n\t\t\tctx = thread.NewTokenContext(ctx, acc.Token)\n\t\tcase mdb.UserKey:\n\t\t\ttoken, ok := thread.TokenFromContext(ctx)\n\t\t\tif ok {\n\t\t\t\tvar claims jwt.StandardClaims\n\t\t\t\tif _, _, err = new(jwt.Parser).ParseUnverified(string(token), &claims); err != nil {\n\t\t\t\t\treturn ctx, status.Error(codes.PermissionDenied, \"Bad authorization\")\n\t\t\t\t}\n\t\t\t\tukey := &thread.Libp2pPubKey{}\n\t\t\t\tif err = ukey.UnmarshalString(claims.Subject); err != nil {\n\t\t\t\t\treturn ctx, err\n\t\t\t\t}\n\t\t\t\tuser, err := t.collections.Accounts.Get(ctx, ukey)\n\t\t\t\tif err != nil && !errors.Is(err, mongo.ErrNoDocuments) {\n\t\t\t\t\treturn ctx, err\n\t\t\t\t}\n\t\t\t\tif user == nil {\n\t\t\t\t\t// Attach a temp user context that will be accessible in the next interceptor.\n\t\t\t\t\tuser = &mdb.Account{Key: ukey, Type: mdb.User}\n\t\t\t\t}\n\t\t\t\tctx = mdb.NewAccountContext(ctx, user, nil)\n\t\t\t} else if method != \"/threads.pb.API/GetToken\" && method != \"/threads.net.pb.API/GetToken\" {\n\t\t\t\treturn ctx, status.Error(codes.Unauthenticated, \"Token required\")\n\t\t\t}\n\t\t}\n\t\tctx = mdb.NewAPIKeyContext(ctx, key)\n\t} else {\n\t\treturn ctx, status.Error(codes.Unauthenticated, \"Session or API key required\")\n\t}\n\treturn ctx, nil\n}\n"
  },
  {
    "path": "core/core.go",
    "content": "package core\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"net\"\n\t\"net/http\"\n\t\"time\"\n\n\tgrpcm \"github.com/grpc-ecosystem/go-grpc-middleware\"\n\tauth \"github.com/grpc-ecosystem/go-grpc-middleware/auth\"\n\t\"github.com/improbable-eng/grpc-web/go/grpcweb\"\n\t\"github.com/ipfs/go-datastore\"\n\tktipfs \"github.com/ipfs/go-datastore/keytransform\"\n\thttpapi \"github.com/ipfs/go-ipfs-http-client\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tcaopts \"github.com/ipfs/interface-go-ipfs-core/options\"\n\t\"github.com/jhump/protoreflect/desc\"\n\t\"github.com/jhump/protoreflect/dynamic/grpcdynamic\"\n\tconnmgr \"github.com/libp2p/go-libp2p-core/connmgr\"\n\t\"github.com/libp2p/go-libp2p-core/peer\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\tmongods \"github.com/textileio/go-ds-mongo\"\n\tdbapi \"github.com/textileio/go-threads/api\"\n\tthreads \"github.com/textileio/go-threads/api/client\"\n\tdbpb \"github.com/textileio/go-threads/api/pb\"\n\t\"github.com/textileio/go-threads/broadcast\"\n\ttc \"github.com/textileio/go-threads/common\"\n\tkt \"github.com/textileio/go-threads/db/keytransform\"\n\tnetapi \"github.com/textileio/go-threads/net/api\"\n\tnetclient \"github.com/textileio/go-threads/net/api/client\"\n\tnetpb \"github.com/textileio/go-threads/net/api/pb\"\n\tnutil \"github.com/textileio/go-threads/net/util\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\tpow \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\tbilling \"github.com/textileio/textile/v2/api/billingd/client\"\n\t\"github.com/textileio/textile/v2/api/bucketsd\"\n\tbpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/api/hubd\"\n\thpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"github.com/textileio/textile/v2/api/usersd\"\n\tupb \"github.com/textileio/textile/v2/api/usersd/pb\"\n\t\"github.com/textileio/textile/v2/buckets/archive\"\n\t\"github.com/textileio/textile/v2/buckets/archive/retrieval\"\n\t\"github.com/textileio/textile/v2/buckets/archive/tracker\"\n\t\"github.com/textileio/textile/v2/dns\"\n\t\"github.com/textileio/textile/v2/email\"\n\t\"github.com/textileio/textile/v2/gateway\"\n\t\"github.com/textileio/textile/v2/ipns\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\ttdb \"github.com/textileio/textile/v2/threaddb\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/health\"\n\thealthpb \"google.golang.org/grpc/health/grpc_health_v1\"\n\t\"google.golang.org/grpc/keepalive\"\n)\n\nvar (\n\t// ErrTooManyThreadsPerOwner indicates that the maximum amount of threads\n\t// are created for an owner.\n\tErrTooManyThreadsPerOwner = errors.New(\"number of threads per owner exceeds quota\")\n\n\tlog = logging.Logger(\"core\")\n\n\t// authIgnoredMethods are not intercepted by the auth interceptor.\n\tauthIgnoredMethods = []string{\n\t\t\"/api.hubd.pb.APIService/Signup\",\n\t\t\"/api.hubd.pb.APIService/Signin\",\n\t\t\"/api.hubd.pb.APIService/IsUsernameAvailable\",\n\t\t\"/grpc.health.v1.Health/Check\",\n\t}\n\n\t// usageIgnoredMethods are not intercepted by the usage interceptor.\n\tusageIgnoredMethods = []string{\n\t\t\"/api.hubd.pb.APIService/Signout\",\n\t\t\"/api.hubd.pb.APIService/DestroyAccount\",\n\t\t\"/api.hubd.pb.APIService/SetupBilling\",\n\t\t\"/api.hubd.pb.APIService/GetBillingSession\",\n\t}\n\n\t// blockMethods are always blocked by auth.\n\tblockMethods = []string{\n\t\t\"/threads.pb.API/ListDBs\",       // we don't want anyone to list all dbs\n\t\t\"/threads.net.pb.API/Subscribe\", // there is no way to limit this API to thread owners\n\t}\n\n\tpowergateServiceName = \"powergate.user.v1.UserService\"\n\n\t// ToDo: Add support for streaming methods and double check the list for completeness.\n\n\t// allowedPowMethods are methods allowed to be directly proxied through to powergate service.\n\tallowedPowMethods = map[string][]string{\n\t\tpowergateServiceName: {\n\t\t\t\"Addresses\",\n\t\t\t\"Balance\",\n\t\t\t\"SignMessage\",\n\t\t\t\"VerifyMessage\",\n\t\t\t\"CidInfo\",\n\t\t\t\"StorageDealRecords\",\n\t\t\t\"RetrievalDealRecords\",\n\t\t},\n\t}\n\n\t// allowedCrossUserMethods are methods allowed to be called by users who do not own the target thread.\n\tallowedCrossUserMethods = []string{\n\t\t\"/threads.pb.API/Create\",\n\t\t\"/threads.pb.API/Verify\",\n\t\t\"/threads.pb.API/Save\",\n\t\t\"/threads.pb.API/Delete\",\n\t\t\"/threads.pb.API/Has\",\n\t\t\"/threads.pb.API/Find\",\n\t\t\"/threads.pb.API/FindByID\",\n\t\t\"/threads.pb.API/ReadTransaction\",\n\t\t\"/threads.pb.API/WriteTransaction\",\n\t\t\"/threads.pb.API/Listen\",\n\t\t\"/api.bucketsd.pb.APIService/Root\",\n\t\t\"/api.bucketsd.pb.APIService/Links\",\n\t\t\"/api.bucketsd.pb.APIService/ListPath\",\n\t\t\"/api.bucketsd.pb.APIService/PushPath\",\n\t\t\"/api.bucketsd.pb.APIService/PullPath\",\n\t\t\"/api.bucketsd.pb.APIService/SetPath\",\n\t\t\"/api.bucketsd.pb.APIService/MovePath\",\n\t\t\"/api.bucketsd.pb.APIService/RemovePath\",\n\t\t\"/api.bucketsd.pb.APIService/PullPathAccessRoles\",\n\t\t\"/api.bucketsd.pb.APIService/PushPathAccessRoles\",\n\t}\n)\n\ntype Textile struct {\n\tcollections *mdb.Collections\n\n\ttn tc.NetBoostrapper\n\tts kt.TxnDatastoreExtended\n\n\tth  *threads.Client\n\tthn *netclient.Client\n\tbc  *billing.Client\n\tpc  *pow.Client\n\n\tbucks *tdb.Buckets\n\tmail  *tdb.Mail\n\n\tarchiveTracker *tracker.Tracker\n\tfilRetrieval   *retrieval.FilRetrieval\n\tbuckLocks      *nutil.SemaphorePool\n\n\tipnsm *ipns.Manager\n\tdnsm  *dns.Manager\n\n\tserver *grpc.Server\n\tproxy  *http.Server\n\n\tgateway            *gateway.Gateway\n\tinternalHubSession string\n\temailSessionBus    *broadcast.Broadcaster\n\n\tconf Config\n}\n\ntype Config struct {\n\tHub   bool\n\tDebug bool\n\n\t// Addresses\n\tAddrAPI          ma.Multiaddr\n\tAddrAPIProxy     ma.Multiaddr\n\tAddrMongoURI     string\n\tAddrMongoName    string\n\tAddrThreadsHost  ma.Multiaddr\n\tAddrGatewayHost  ma.Multiaddr\n\tAddrGatewayURL   string\n\tAddrIPFSAPI      ma.Multiaddr\n\tAddrBillingAPI   string\n\tAddrPowergateAPI string\n\n\t// Buckets\n\tMaxBucketArchiveRepFactor int\n\tMaxBucketArchiveSize      int64\n\tMinBucketArchiveSize      int64\n\n\t// Threads\n\tMaxNumberThreadsPerOwner int\n\tThreadsConnManager       connmgr.ConnManager\n\n\t// IPNS\n\tIPNSRepublishSchedule    string\n\tIPNSRepublishConcurrency int\n\n\t// Powergate\n\tPowergateAdminToken string\n\n\t// Archives\n\tArchiveJobPollIntervalSlow time.Duration\n\tArchiveJobPollIntervalFast time.Duration\n\n\t// Gateway\n\tUseSubdomains   bool\n\tMaxEventsPerSec int\n\tMaxBurstSize    int\n\n\t// Cloudflare\n\tDNSDomain string\n\tDNSZoneID string\n\tDNSToken  string\n\n\t// Customer.io\n\tCustomerioAPIKey      string\n\tCustomerioConfirmTmpl string\n\tCustomerioInviteTmpl  string\n\tEmailSessionSecret    string\n}\n\nfunc NewTextile(ctx context.Context, conf Config, opts ...Option) (*Textile, error) {\n\tvar args Options\n\tfor _, opt := range opts {\n\t\topt(&args)\n\t}\n\n\tif conf.Debug {\n\t\tif err := tutil.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"core\":           logging.LevelDebug,\n\t\t\t\"hubapi\":         logging.LevelDebug,\n\t\t\t\"bucketsapi\":     logging.LevelDebug,\n\t\t\t\"usersapi\":       logging.LevelDebug,\n\t\t\t\"job-tracker\":    logging.LevelDebug,\n\t\t\t\"fil-retrieval\":  logging.LevelDebug,\n\t\t\t\"billing.client\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tt := &Textile{\n\t\tconf:               conf,\n\t\tinternalHubSession: util.MakeToken(32),\n\t}\n\n\t// Configure clients\n\tipfsapi, err := httpapi.NewApi(conf.AddrIPFSAPI)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\t// Don't allow using textile as a gateway to non-bucket files\n\tic, err := ipfsapi.WithOptions(caopts.Api.FetchBlocks(false))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif conf.AddrPowergateAPI != \"\" {\n\t\tif t.pc, err = pow.NewClient(conf.AddrPowergateAPI); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif conf.DNSToken != \"\" {\n\t\tt.dnsm, err = dns.NewManager(conf.DNSDomain, conf.DNSZoneID, conf.DNSToken, conf.Debug)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tt.collections, err = mdb.NewCollections(ctx, conf.AddrMongoURI, conf.AddrMongoName, conf.Hub)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt.ipnsm, err = ipns.NewManager(t.collections.IPNSKeys, ic.Key(), ic.Name(), conf.IPNSRepublishConcurrency, conf.Debug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Configure threads\n\tnetOptions := []tc.NetOption{\n\t\ttc.WithNetHostAddr(conf.AddrThreadsHost),\n\t\ttc.WithNoNetPulling(true),\n\t\ttc.WithNoExchangeEdgesMigration(true),\n\t\ttc.WithNetDebug(conf.Debug),\n\t}\n\tif args.ThreadsMongoUri != \"\" {\n\t\tnetOptions = append(netOptions, tc.WithNetMongoPersistence(args.ThreadsMongoUri, args.ThreadsMongoDB))\n\t} else {\n\t\tnetOptions = append(netOptions, tc.WithNetBadgerPersistence(args.ThreadsBadgerRepoPath))\n\t}\n\tif conf.ThreadsConnManager != nil {\n\t\tnetOptions = append(netOptions, tc.WithConnectionManager(conf.ThreadsConnManager))\n\t}\n\tt.tn, err = tc.DefaultNetwork(netOptions...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Configure gRPC server\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Start threads clients\n\tt.th, err = threads.NewClient(target, grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{}))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt.thn, err = netclient.NewClient(target, grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{}))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt.bucks, err = tdb.NewBuckets(t.th, t.pc, t.collections.BucketArchives)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt.mail, err = tdb.NewMail(t.th)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Configure gRPC services\n\tif args.ThreadsMongoUri != \"\" {\n\t\tt.ts, err = mongods.New(\n\t\t\tctx,\n\t\t\targs.ThreadsMongoUri,\n\t\t\targs.ThreadsMongoDB,\n\t\t\tmongods.WithCollName(\"eventstore\"),\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t} else {\n\t\tt.ts, err = tutil.NewBadgerDatastore(args.ThreadsBadgerRepoPath, \"eventstore\", false)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tts, err := dbapi.NewService(t.ts, t.tn, dbapi.Config{\n\t\tDebug: conf.Debug,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tns, err := netapi.NewService(t.tn, netapi.Config{\n\t\tDebug: conf.Debug,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Configure a billing client\n\tif conf.AddrBillingAPI != \"\" {\n\t\tt.bc, err = billing.NewClient(conf.AddrBillingAPI, grpc.WithInsecure())\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tjobFinalizedEvents := make(chan archive.JobEvent)\n\n\tif t.pc != nil {\n\t\tt.archiveTracker, err = tracker.New(\n\t\t\tt.collections,\n\t\t\tt.bucks,\n\t\t\tt.pc,\n\t\t\tt.internalHubSession,\n\t\t\tconf.ArchiveJobPollIntervalSlow,\n\t\t\tconf.ArchiveJobPollIntervalFast,\n\t\t\tjobFinalizedEvents,\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tfilRetrievalDS := kt.WrapTxnDatastore(t.ts, ktipfs.PrefixTransform{\n\t\t\tPrefix: datastore.NewKey(\"buckets/filretrieval\"),\n\t\t})\n\t\tt.filRetrieval, err = retrieval.NewFilRetrieval(filRetrievalDS, t.pc, t.archiveTracker, jobFinalizedEvents, t.internalHubSession)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tvar hs *hubd.Service\n\tvar us *usersd.Service\n\tif conf.Hub {\n\t\tcio, err := email.NewClient(\n\t\t\temail.Config{\n\t\t\t\tConfirmTmpl: conf.CustomerioConfirmTmpl,\n\t\t\t\tInviteTmpl:  conf.CustomerioInviteTmpl,\n\t\t\t\tAPIKey:      conf.CustomerioAPIKey,\n\t\t\t\tDebug:       conf.Debug,\n\t\t\t},\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tt.emailSessionBus = broadcast.NewBroadcaster(0)\n\t\ths = &hubd.Service{\n\t\t\tCollections:         t.collections,\n\t\t\tThreads:             t.th,\n\t\t\tThreadsNet:          t.thn,\n\t\t\tGatewayURL:          conf.AddrGatewayURL,\n\t\t\tEmailClient:         cio,\n\t\t\tEmailSessionBus:     t.emailSessionBus,\n\t\t\tEmailSessionSecret:  conf.EmailSessionSecret,\n\t\t\tIPFSClient:          ic,\n\t\t\tIPNSManager:         t.ipnsm,\n\t\t\tBillingClient:       t.bc,\n\t\t\tPowergateClient:     t.pc,\n\t\t\tPowergateAdminToken: conf.PowergateAdminToken,\n\t\t}\n\t\tus = &usersd.Service{\n\t\t\tCollections:     t.collections,\n\t\t\tMail:            t.mail,\n\t\t\tBillingClient:   t.bc,\n\t\t\tFilRetrieval:    t.filRetrieval,\n\t\t\tPowergateClient: t.pc,\n\t\t}\n\t}\n\n\tt.buckLocks = nutil.NewSemaphorePool(1)\n\tbs := &bucketsd.Service{\n\t\tCollections:               t.collections,\n\t\tBuckets:                   t.bucks,\n\t\tGatewayURL:                conf.AddrGatewayURL,\n\t\tGatewayBucketsHost:        conf.DNSDomain,\n\t\tIPFSClient:                ic,\n\t\tIPNSManager:               t.ipnsm,\n\t\tPowergateClient:           t.pc,\n\t\tPowergateAdminToken:       conf.PowergateAdminToken,\n\t\tArchiveTracker:            t.archiveTracker,\n\t\tSemaphores:                t.buckLocks,\n\t\tMaxBucketArchiveRepFactor: conf.MaxBucketArchiveRepFactor,\n\t\tMaxBucketArchiveSize:      conf.MaxBucketArchiveSize,\n\t\tMinBucketArchiveSize:      conf.MinBucketArchiveSize,\n\t\tFilRetrieval:              t.filRetrieval,\n\t}\n\n\tif t.filRetrieval != nil {\n\t\t// We can avoid the chicken-egg-problem of below line in the future.\n\t\t// For more info, see \"TODO(**)\" in buckd/service.go\n\t\tt.filRetrieval.SetBucketCreator(bs)\n\t\tt.filRetrieval.RunDaemon()\n\t}\n\n\t// Start serving\n\tptarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPIProxy)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar grpcopts []grpc.ServerOption\n\tif conf.Hub {\n\t\tvar powStub *grpcdynamic.Stub\n\t\tvar powergateServiceDesc *desc.ServiceDescriptor\n\t\tif conf.AddrPowergateAPI != \"\" {\n\t\t\tif powStub, err = createPowStub(conf.AddrPowergateAPI); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif powergateServiceDesc, err = createServiceDesciptor(\n\t\t\t\t\"powergate/user/v1/user.proto\",\n\t\t\t\tpowergateServiceName,\n\t\t\t); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t\tgrpcopts = []grpc.ServerOption{\n\t\t\tgrpcm.WithUnaryServerChain(\n\t\t\t\tauth.UnaryServerInterceptor(t.authFunc),\n\t\t\t\tunaryServerInterceptor(t.preUsageFunc, t.postUsageFunc),\n\t\t\t\tt.threadInterceptor(),\n\t\t\t\tpowInterceptor(\n\t\t\t\t\tpowergateServiceName,\n\t\t\t\t\tallowedPowMethods[powergateServiceName],\n\t\t\t\t\tpowergateServiceDesc,\n\t\t\t\t\tpowStub,\n\t\t\t\t\tt.pc,\n\t\t\t\t\tconf.PowergateAdminToken,\n\t\t\t\t\tt.collections,\n\t\t\t\t),\n\t\t\t),\n\t\t\tgrpcm.WithStreamServerChain(\n\t\t\t\tauth.StreamServerInterceptor(t.authFunc),\n\t\t\t\tstreamServerInterceptor(t.preUsageFunc, t.postUsageFunc),\n\t\t\t),\n\t\t\tgrpc.StatsHandler(&StatsHandler{t: t}),\n\t\t}\n\t} else {\n\t\tgrpcopts = []grpc.ServerOption{\n\t\t\tgrpcm.WithUnaryServerChain(auth.UnaryServerInterceptor(t.noAuthFunc)),\n\t\t\tgrpcm.WithStreamServerChain(auth.StreamServerInterceptor(t.noAuthFunc)),\n\t\t\tgrpc.KeepaliveParams(keepalive.ServerParameters{\n\t\t\t\tTime:    time.Second * 20,\n\t\t\t\tTimeout: time.Second * 10,\n\t\t\t}),\n\t\t\tgrpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{\n\t\t\t\tMinTime:             time.Second * 20,\n\t\t\t\tPermitWithoutStream: true,\n\t\t\t}),\n\t\t}\n\t}\n\tt.server = grpc.NewServer(grpcopts...)\n\tlistener, err := net.Listen(\"tcp\", target)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tgo func() {\n\t\thealthpb.RegisterHealthServer(t.server, health.NewServer())\n\t\tdbpb.RegisterAPIServer(t.server, ts)\n\t\tnetpb.RegisterAPIServer(t.server, ns)\n\t\tif conf.Hub {\n\t\t\thpb.RegisterAPIServiceServer(t.server, hs)\n\t\t\tupb.RegisterAPIServiceServer(t.server, us)\n\t\t\tuserPb.RegisterUserServiceServer(t.server, &userPb.UnimplementedUserServiceServer{})\n\t\t}\n\t\tbpb.RegisterAPIServiceServer(t.server, bs)\n\t\tif err := t.server.Serve(listener); err != nil && !errors.Is(err, grpc.ErrServerStopped) {\n\t\t\tlog.Fatalf(\"serve error: %v\", err)\n\t\t}\n\t\tif err := ts.Close(); err != nil {\n\t\t\tlog.Fatalf(\"error closing thread service: %v\", err)\n\t\t}\n\t}()\n\twebrpc := grpcweb.WrapServer(\n\t\tt.server,\n\t\tgrpcweb.WithOriginFunc(func(origin string) bool {\n\t\t\treturn true\n\t\t}),\n\t\tgrpcweb.WithAllowedRequestHeaders([]string{\"Origin\"}),\n\t\tgrpcweb.WithWebsockets(true),\n\t\tgrpcweb.WithWebsocketOriginFunc(func(req *http.Request) bool {\n\t\t\treturn true\n\t\t}))\n\tt.proxy = &http.Server{\n\t\tAddr: ptarget,\n\t}\n\tt.proxy.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\tif webrpc.IsGrpcWebRequest(r) ||\n\t\t\twebrpc.IsAcceptableGrpcCorsRequest(r) ||\n\t\t\twebrpc.IsGrpcWebSocketRequest(r) {\n\t\t\twebrpc.ServeHTTP(w, r)\n\t\t}\n\t})\n\n\tgo func() {\n\t\tif err := t.proxy.ListenAndServe(); err != nil && err != http.ErrServerClosed {\n\t\t\tlog.Fatalf(\"proxy error: %v\", err)\n\t\t}\n\t}()\n\n\t// Configure gateway\n\tt.gateway, err = gateway.NewGateway(gateway.Config{\n\t\tAddr:            conf.AddrGatewayHost,\n\t\tURL:             conf.AddrGatewayURL,\n\t\tSubdomains:      conf.UseSubdomains,\n\t\tBucketsDomain:   conf.DNSDomain,\n\t\tAPIAddr:         conf.AddrAPI,\n\t\tAPISession:      t.internalHubSession,\n\t\tCollections:     t.collections,\n\t\tIPFSClient:      ic,\n\t\tEmailSessionBus: t.emailSessionBus,\n\t\tMaxEventsPerSec: conf.MaxEventsPerSec,\n\t\tMaxBurstSize:    conf.MaxBurstSize,\n\t\tHub:             conf.Hub,\n\t\tDebug:           conf.Debug,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt.gateway.Start()\n\n\t// Start republishing ipns keys\n\tif err := t.ipnsm.StartRepublishing(conf.IPNSRepublishSchedule); err != nil {\n\t\treturn nil, err\n\t}\n\n\tlog.Info(\"started\")\n\n\treturn t, nil\n}\n\nfunc (t *Textile) Bootstrap() {\n\tt.tn.Bootstrap(tutil.DefaultBoostrapPeers())\n}\n\nfunc (t *Textile) Close() error {\n\tif t.emailSessionBus != nil {\n\t\tt.emailSessionBus.Discard()\n\t}\n\tlog.Info(\"session bus was discarded\")\n\n\tif err := t.gateway.Stop(); err != nil {\n\t\treturn err\n\t}\n\n\tt.buckLocks.Stop()\n\tlog.Info(\"locking buckets\")\n\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second)\n\tdefer cancel()\n\tif err := t.proxy.Shutdown(ctx); err != nil {\n\t\treturn err\n\t}\n\tlog.Info(\"gRPC proxy was shutdown\")\n\n\tstopped := make(chan struct{})\n\tgo func() {\n\t\tt.server.GracefulStop()\n\t\tclose(stopped)\n\t}()\n\ttimer := time.NewTimer(10 * time.Second)\n\tselect {\n\tcase <-timer.C:\n\t\tt.server.Stop()\n\tcase <-stopped:\n\t\ttimer.Stop()\n\t}\n\tlog.Info(\"gRPC was shutdown\")\n\n\tif t.filRetrieval != nil {\n\t\tlog.Info(\"closing fil-retrieval module\")\n\t\tif err := t.filRetrieval.Close(); err != nil {\n\t\t\tlog.Errorf(\"closing fil-retrieval module: %s\", err)\n\t\t} else {\n\t\t\tlog.Info(\"fil-retrieval was shutdown\")\n\t\t}\n\t}\n\n\tif err := t.th.Close(); err != nil {\n\t\treturn err\n\t}\n\tif t.bc != nil {\n\t\tif err := t.bc.Close(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif t.pc != nil {\n\t\tif err := t.pc.Close(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tlog.Info(\"local clients were shutdown\")\n\n\tt.ipnsm.Close()\n\tif t.archiveTracker != nil {\n\t\tif err := t.archiveTracker.Close(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif err := t.bucks.Close(); err != nil {\n\t\treturn err\n\t}\n\tlog.Info(\"buckets was shutdown\")\n\n\tif err := t.tn.Close(); err != nil {\n\t\treturn err\n\t}\n\tif err := t.ts.Close(); err != nil {\n\t\treturn err\n\t}\n\tlog.Info(\"threads was shutdown\")\n\n\tif err := t.collections.Close(); err != nil {\n\t\treturn err\n\t}\n\tlog.Info(\"mongo collections were shutdown\")\n\n\treturn nil\n}\n\nfunc (t *Textile) HostID() peer.ID {\n\treturn t.tn.Host().ID()\n}\n\nfunc createServiceDesciptor(file string, serviceName string) (*desc.ServiceDescriptor, error) {\n\tfileDesc, err := desc.LoadFileDescriptor(file)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tserviceDesc := fileDesc.FindService(serviceName)\n\tif serviceDesc == nil {\n\t\treturn nil, fmt.Errorf(\"no service description found\")\n\t}\n\treturn serviceDesc, nil\n}\n"
  },
  {
    "path": "core/options.go",
    "content": "package core\n\ntype Options struct {\n\tThreadsBadgerRepoPath string\n\tThreadsMongoUri       string\n\tThreadsMongoDB        string\n}\n\ntype Option func(*Options)\n\nfunc WithBadgerThreadsPersistence(repoPath string) Option {\n\treturn func(o *Options) {\n\t\to.ThreadsBadgerRepoPath = repoPath\n\t}\n}\n\nfunc WithMongoThreadsPersistence(uri, db string) Option {\n\treturn func(o *Options) {\n\t\to.ThreadsMongoUri = uri\n\t\to.ThreadsMongoDB = db\n\t}\n}\n"
  },
  {
    "path": "core/pow_interceptor.go",
    "content": "package core\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/golang/protobuf/proto\"\n\t\"github.com/jhump/protoreflect/desc\"\n\t\"github.com/jhump/protoreflect/dynamic\"\n\t\"github.com/jhump/protoreflect/dynamic/grpcdynamic\"\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\n// powInterceptor handles hubd-proxied Powergate requests.\nfunc powInterceptor(\n\tserviceName string,\n\tallowedMethods []string,\n\tserviceDesc *desc.ServiceDescriptor,\n\tstub *grpcdynamic.Stub,\n\tpc *powc.Client,\n\tpowAdminToken string,\n\tc *mdb.Collections,\n) grpc.UnaryServerInterceptor {\n\treturn func(\n\t\tctx context.Context,\n\t\treq interface{},\n\t\tinfo *grpc.UnaryServerInfo,\n\t\thandler grpc.UnaryHandler,\n\t) (interface{}, error) {\n\t\tmethodParts := strings.Split(info.FullMethod, \"/\")\n\t\tif len(methodParts) != 3 {\n\t\t\treturn nil, status.Errorf(codes.Internal, \"error parsing method string %s\", info.FullMethod)\n\t\t}\n\t\tmethodServiceName := methodParts[1]\n\t\tmethodName := methodParts[2]\n\n\t\tif methodServiceName != serviceName {\n\t\t\treturn handler(ctx, req)\n\t\t}\n\n\t\tif pc == nil {\n\t\t\treturn nil, status.Error(codes.Internal, \"Powergate isn't enabled in Hub\")\n\t\t}\n\n\t\tisAllowedMethod := false\n\t\tfor _, method := range allowedMethods {\n\t\t\tif method == methodName {\n\t\t\t\tisAllowedMethod = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tif !isAllowedMethod {\n\t\t\treturn nil, status.Errorf(codes.PermissionDenied, \"method not allowed: %s\", info.FullMethod)\n\t\t}\n\n\t\taccount, ok := mdb.AccountFromContext(ctx)\n\t\tif !ok {\n\t\t\t// Should not happen at this point in the interceptor chain\n\t\t\treturn nil, status.Errorf(codes.FailedPrecondition, \"account is required\")\n\t\t}\n\n\t\tcreateNewUser := func() error {\n\t\t\tctxAdmin := context.WithValue(ctx, powc.AdminKey, powAdminToken)\n\t\t\tres, err := pc.Admin.Users.Create(ctxAdmin)\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"creating new powergate integration: %v\", err)\n\t\t\t}\n\t\t\t_, err = c.Accounts.UpdatePowInfo(ctx, account.Owner().Key, &mdb.PowInfo{\n\t\t\t\tID:    res.User.Id,\n\t\t\t\tToken: res.User.Token,\n\t\t\t})\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"updating user/account with new powergate information: %v\", err)\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\n\t\ttryAgain := fmt.Errorf(\"powergate newly integrated into your account, \" +\n\t\t\t\"please try again in 30 seconds to allow time for setup to complete\")\n\n\t\t// Case where account/user was created before powergate was enabled.\n\t\t// create a user for them.\n\t\tif account.Owner().PowInfo == nil {\n\t\t\tif err := createNewUser(); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn nil, tryAgain\n\t\t}\n\n\t\tpowCtx := context.WithValue(ctx, powc.AuthKey, account.Owner().PowInfo.Token)\n\n\t\tmethodDesc := serviceDesc.FindMethodByName(methodName)\n\t\tif methodDesc == nil {\n\t\t\treturn nil, status.Errorf(codes.Internal, \"no method found for %s\", methodName)\n\t\t}\n\n\t\tres, err := stub.InvokeRpc(powCtx, methodDesc, req.(proto.Message))\n\t\tif err != nil {\n\t\t\tif !strings.Contains(err.Error(), \"auth token not found\") {\n\t\t\t\treturn nil, err\n\t\t\t} else {\n\t\t\t\t// case where the auth token is no longer valid because powergate was reset.\n\t\t\t\t// create a new user for them.\n\t\t\t\tif err := createNewUser(); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\treturn nil, tryAgain\n\t\t\t}\n\t\t}\n\t\treturn res, nil\n\t}\n}\n\nfunc createPowStub(target string) (*grpcdynamic.Stub, error) {\n\tpgConn, err := powc.CreateClientConn(target)\n\tif err != nil {\n\t\treturn &grpcdynamic.Stub{}, err\n\t}\n\ts := grpcdynamic.NewStubWithMessageFactory(pgConn, dynamic.NewMessageFactoryWithDefaults())\n\treturn &s, nil\n}\n"
  },
  {
    "path": "core/stats_handler.go",
    "content": "package core\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\ttpb \"github.com/textileio/go-threads/api/pb\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\thpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"google.golang.org/grpc/stats\"\n)\n\ntype StatsHandler struct {\n\tt *Textile\n}\n\nvar _ stats.Handler = (*StatsHandler)(nil)\n\nvar statsTimeout = time.Hour\n\n// HandleRPC accounts for customer usage across services.\nfunc (h *StatsHandler) HandleRPC(ctx context.Context, st stats.RPCStats) {\n\tif h.t.bc == nil {\n\t\treturn\n\t}\n\tswitch st := st.(type) {\n\tcase *stats.OutPayload:\n\t\tif getStats(ctx) == nil {\n\t\t\treturn\n\t\t}\n\n\t\t// Handle payload types.\n\t\tegress := int64(st.WireLength)\n\t\tvar reads, writes int64\n\t\tvar pl interface{}\n\t\tswitch spl := st.Payload.(type) {\n\t\tcase *tpb.ReadTransactionReply:\n\t\t\tpl = spl.Option\n\t\tcase *tpb.WriteTransactionReply:\n\t\t\tpl = spl.Option\n\t\tdefault:\n\t\t\tpl = spl\n\t\t}\n\t\tswitch pl := pl.(type) {\n\n\t\t// Don't charge for usage when customer is trying to add a payment method, cancel subscription, etc.\n\t\tcase *hpb.GetBillingSessionResponse:\n\t\t\tegress = 0\n\n\t\t// Account for threaddb reads and writes\n\t\tcase *tpb.CreateReply:\n\t\t\tif pl.InstanceIDs != nil {\n\t\t\t\twrites = int64(len(pl.InstanceIDs))\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_CreateReply:\n\t\t\tif pl.CreateReply.TransactionError == \"\" {\n\t\t\t\twrites = 1\n\t\t\t}\n\t\tcase *tpb.VerifyReply:\n\t\t\tif pl.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_VerifyReply:\n\t\t\tif pl.VerifyReply.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.SaveReply:\n\t\t\tif pl.TransactionError == \"\" {\n\t\t\t\twrites = 1\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_SaveReply:\n\t\t\tif pl.SaveReply.TransactionError == \"\" {\n\t\t\t\twrites = 1\n\t\t\t}\n\t\tcase *tpb.DeleteReply:\n\t\t\tif pl.TransactionError == \"\" {\n\t\t\t\twrites = 1\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_DeleteReply:\n\t\t\tif pl.DeleteReply.TransactionError == \"\" {\n\t\t\t\twrites = 1\n\t\t\t}\n\t\tcase *tpb.HasReply:\n\t\t\tif pl.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.ReadTransactionReply_HasReply:\n\t\t\tif pl.HasReply.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_HasReply:\n\t\t\tif pl.HasReply.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.FindReply:\n\t\t\tif pl.Instances != nil {\n\t\t\t\treads = int64(len(pl.Instances))\n\t\t\t}\n\t\tcase *tpb.ReadTransactionReply_FindReply:\n\t\t\tif pl.FindReply.Instances != nil {\n\t\t\t\treads = int64(len(pl.FindReply.Instances))\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_FindReply:\n\t\t\tif pl.FindReply.Instances != nil {\n\t\t\t\treads = int64(len(pl.FindReply.Instances))\n\t\t\t}\n\t\tcase *tpb.FindByIDReply:\n\t\t\tif pl.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.ReadTransactionReply_FindByIDReply:\n\t\t\tif pl.FindByIDReply.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.WriteTransactionReply_FindByIDReply:\n\t\t\tif pl.FindByIDReply.TransactionError == \"\" {\n\t\t\t\treads = 1\n\t\t\t}\n\t\tcase *tpb.ListenReply:\n\t\t\tif pl.Instance != nil {\n\t\t\t\treads = 1\n\t\t\t}\n\t\t}\n\t\tctx = handleStats(ctx, egress, reads, writes)\n\n\tcase *stats.End:\n\t\t// Record usage\n\t\trs := getStats(ctx)\n\t\tif rs == nil {\n\t\t\treturn\n\t\t}\n\t\tgo func() {\n\t\t\tctx, cancel := context.WithTimeout(context.Background(), statsTimeout)\n\t\t\tdefer cancel()\n\t\t\tif rs.egress > 0 || rs.reads > 0 || rs.writes > 0 {\n\t\t\t\tif _, err := h.t.bc.IncCustomerUsage(\n\t\t\t\t\tctx,\n\t\t\t\t\trs.key,\n\t\t\t\t\tmap[string]int64{\n\t\t\t\t\t\t\"network_egress\":  rs.egress,\n\t\t\t\t\t\t\"instance_reads\":  rs.reads,\n\t\t\t\t\t\t\"instance_writes\": rs.writes,\n\t\t\t\t\t},\n\t\t\t\t); err != nil {\n\t\t\t\t\tlog.Errorf(\"stats: inc customer usage: %v\", err)\n\t\t\t\t}\n\t\t\t}\n\t\t}()\n\t}\n}\n\ntype statsCtxKey string\n\ntype requestStats struct {\n\tkey    thread.PubKey\n\tegress int64\n\treads  int64\n\twrites int64\n}\n\nfunc (h *StatsHandler) TagRPC(ctx context.Context, info *stats.RPCTagInfo) context.Context {\n\tif h.t.bc == nil {\n\t\treturn ctx\n\t}\n\tfor _, ignored := range authIgnoredMethods {\n\t\tif info.FullMethodName == ignored {\n\t\t\treturn ctx\n\t\t}\n\t}\n\ttoken, err := thread.NewTokenFromMD(ctx)\n\tif err != nil {\n\t\treturn ctx\n\t} else {\n\t\tctx = thread.NewTokenContext(ctx, token)\n\t}\n\tctx, err = h.t.newAuthCtx(ctx, info.FullMethodName, false)\n\tif err != nil {\n\t\treturn ctx\n\t}\n\taccount, ok := mdb.AccountFromContext(ctx)\n\tif !ok {\n\t\treturn ctx\n\t}\n\treturn context.WithValue(ctx, statsCtxKey(\"requestStats\"), &requestStats{\n\t\tkey: account.Owner().Key,\n\t})\n}\n\nfunc handleStats(ctx context.Context, egress, reads, writes int64) context.Context {\n\trs := getStats(ctx)\n\tif rs == nil {\n\t\treturn ctx\n\t}\n\trs.egress += egress\n\trs.reads += reads\n\trs.writes += writes\n\treturn context.WithValue(ctx, statsCtxKey(\"requestStats\"), rs)\n}\n\nfunc getStats(ctx context.Context) *requestStats {\n\trs, _ := ctx.Value(statsCtxKey(\"requestStats\")).(*requestStats)\n\treturn rs\n}\n\nfunc (h *StatsHandler) HandleConn(context.Context, stats.ConnStats) {}\n\nfunc (h *StatsHandler) TagConn(ctx context.Context, _ *stats.ConnTagInfo) context.Context {\n\treturn ctx\n}\n"
  },
  {
    "path": "core/thread_interceptor.go",
    "content": "package core\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\tma \"github.com/multiformats/go-multiaddr\"\n\tdbpb \"github.com/textileio/go-threads/api/pb\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tnetpb \"github.com/textileio/go-threads/net/api/pb\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\n// threadInterceptor monitors for thread creation and deletion.\n// Textile tracks threads against dev, org, and user accounts.\n// Users must supply a valid API key from a dev/org.\nfunc (t *Textile) threadInterceptor() grpc.UnaryServerInterceptor {\n\treturn func(\n\t\tctx context.Context,\n\t\treq interface{},\n\t\tinfo *grpc.UnaryServerInfo,\n\t\thandler grpc.UnaryHandler,\n\t) (interface{}, error) {\n\t\tmethod, _ := grpc.Method(ctx)\n\t\tfor _, ignored := range authIgnoredMethods {\n\t\t\tif method == ignored {\n\t\t\t\treturn handler(ctx, req)\n\t\t\t}\n\t\t}\n\t\tfor _, block := range blockMethods {\n\t\t\tif method == block {\n\t\t\t\treturn nil, status.Error(codes.PermissionDenied, \"Method is not accessible\")\n\t\t\t}\n\t\t}\n\t\tif sid, ok := common.SessionFromContext(ctx); ok && sid == t.internalHubSession {\n\t\t\treturn handler(ctx, req)\n\t\t}\n\n\t\taccount, ok := mdb.AccountFromContext(ctx)\n\t\tif !ok {\n\t\t\t// Should not happen at this point in the interceptor chain\n\t\t\treturn nil, status.Errorf(codes.FailedPrecondition, \"account is required\")\n\t\t}\n\n\t\tvar newID thread.ID\n\t\tvar isDB bool\n\t\tvar err error\n\t\tswitch method {\n\t\tcase \"/threads.pb.API/NewDB\":\n\t\t\tnewID, err = thread.Cast(req.(*dbpb.NewDBRequest).DbID)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tisDB = true\n\t\tcase \"/threads.pb.API/NewDBFromAddr\":\n\t\t\taddr, err := ma.NewMultiaddrBytes(req.(*dbpb.NewDBFromAddrRequest).Addr)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnewID, err = thread.FromAddr(addr)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tisDB = true\n\t\tcase \"/threads.net.pb.API/CreateThread\":\n\t\t\tnewID, err = thread.Cast(req.(*netpb.CreateThreadRequest).ThreadID)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\tcase \"/threads.net.pb.API/AddThread\":\n\t\t\taddr, err := ma.NewMultiaddrBytes(req.(*netpb.AddThreadRequest).Addr)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnewID, err = thread.FromAddr(addr)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\tdefault:\n\t\t\t// If we're dealing with an existing thread, make sure that the owner\n\t\t\t// owns the thread directly or via an API key.\n\t\t\t// Hub APIs that deal with threads require the id to be passed in the context.\n\t\t\t// go-threads APIs take the ID as a request param, which means we have to\n\t\t\t// extract it from the request.\n\t\t\tthreadIDFromCtx, _ := common.ThreadIDFromContext(ctx)\n\t\t\tthreadIDFromReq, err := getThreadIDFromRequest(method, req)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tids := []thread.ID{threadIDFromCtx, threadIDFromReq}\n\t\t\tif err := t.checkThreadOwner(ctx, method, ids, account); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\t// Preemptively track the new thread ID for the owner.\n\t\t// This needs to happen before the request is handled in case there's a conflict\n\t\t// with the owner and thread name.\n\t\tif newID.Defined() {\n\t\t\tthds, err := t.collections.Threads.ListByOwner(ctx, account.Owner().Key)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif t.conf.MaxNumberThreadsPerOwner > 0 && len(thds) >= t.conf.MaxNumberThreadsPerOwner {\n\t\t\t\treturn nil, ErrTooManyThreadsPerOwner\n\t\t\t}\n\t\t\tif _, err := t.collections.Threads.Create(ctx, newID, account.Owner().Key, isDB); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\t// Track the thread ID marked for deletion.\n\t\tvar deleteID thread.ID\n\t\tswitch method {\n\t\tcase \"/threads.pb.API/DeleteDB\":\n\t\t\tdeleteID, err = thread.Cast(req.(*dbpb.DeleteDBRequest).DbID)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tkeys, err := t.collections.IPNSKeys.ListByThreadID(ctx, deleteID)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif len(keys) != 0 {\n\t\t\t\treturn nil, status.Error(codes.FailedPrecondition, \"DB not empty (delete buckets first)\")\n\t\t\t}\n\t\tcase \"/threads.net.pb.API/DeleteThread\":\n\t\t\tdeleteID, err = thread.Cast(req.(*netpb.DeleteThreadRequest).ThreadID)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\t// Let the request pass through.\n\t\tres, err := handler(ctx, req)\n\t\tif err != nil {\n\t\t\t// Clean up the new thread if there was an error.\n\t\t\tif newID.Defined() {\n\t\t\t\tif err := t.collections.Threads.Delete(ctx, newID, account.Owner().Key); err != nil {\n\t\t\t\t\tlog.Errorf(\"error deleting thread %s: %v\", newID, err)\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn res, err\n\t\t}\n\n\t\t// Clean up the tracked thread if it was deleted.\n\t\tif deleteID.Defined() {\n\t\t\tif err := t.collections.Threads.Delete(ctx, deleteID, account.Owner().Key); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t\treturn res, nil\n\t}\n}\n\nfunc (t *Textile) checkThreadOwner(\n\tctx context.Context,\n\tmethod string,\n\tthreadIDs []thread.ID,\n\taccount *mdb.AccountCtx,\n) error {\n\tfor _, id := range threadIDs {\n\t\tif !id.Defined() {\n\t\t\tcontinue\n\t\t}\n\t\tth, err := t.collections.Threads.Get(ctx, id, account.Owner().Key)\n\t\tif err != nil && errors.Is(err, mongo.ErrNoDocuments) {\n\t\t\t// Allow non-owners to interact with a limited set of APIs.\n\t\t\tvar isAllowed bool\n\t\t\tfor _, m := range allowedCrossUserMethods {\n\t\t\t\tif method == m {\n\t\t\t\t\tisAllowed = true\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !isAllowed {\n\t\t\t\treturn status.Error(codes.PermissionDenied, \"User does not own thread\")\n\t\t\t}\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif th != nil {\n\t\t\tkey, _ := mdb.APIKeyFromContext(ctx)\n\t\t\tif key != nil && key.Type == mdb.UserKey {\n\t\t\t\t// Extra user check for user API keys.\n\t\t\t\tif key.Key != th.Key {\n\t\t\t\t\treturn status.Error(codes.PermissionDenied, \"Bad API key\")\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc getThreadIDFromRequest(method string, req interface{}) (thread.ID, error) {\n\tvar id thread.ID\n\tvar err error\n\tswitch method {\n\tcase \"/threads.pb.API/GetDBInfo\":\n\t\tid, err = thread.Cast(req.(*dbpb.GetDBInfoRequest).DbID)\n\tcase \"/threads.pb.API/DeleteDB\":\n\t\tid, err = thread.Cast(req.(*dbpb.DeleteDBRequest).DbID)\n\tcase \"/threads.pb.API/NewCollection\":\n\t\tid, err = thread.Cast(req.(*dbpb.NewCollectionRequest).DbID)\n\tcase \"/threads.pb.API/UpdateCollection\":\n\t\tid, err = thread.Cast(req.(*dbpb.UpdateCollectionRequest).DbID)\n\tcase \"/threads.pb.API/DeleteCollection\":\n\t\tid, err = thread.Cast(req.(*dbpb.DeleteCollectionRequest).DbID)\n\tcase \"/threads.pb.API/GetCollectionInfo\":\n\t\tid, err = thread.Cast(req.(*dbpb.GetCollectionInfoRequest).DbID)\n\tcase \"/threads.pb.API/GetCollectionIndexes\":\n\t\tid, err = thread.Cast(req.(*dbpb.GetCollectionIndexesRequest).DbID)\n\tcase \"/threads.pb.API/ListCollections\":\n\t\tid, err = thread.Cast(req.(*dbpb.ListCollectionsRequest).DbID)\n\tcase \"/threads.net.pb.API/GetThread\":\n\t\tid, err = thread.Cast(req.(*netpb.GetThreadRequest).ThreadID)\n\tcase \"/threads.net.pb.API/PullThread\":\n\t\tid, err = thread.Cast(req.(*netpb.PullThreadRequest).ThreadID)\n\tcase \"/threads.net.pb.API/DeleteThread\":\n\t\tid, err = thread.Cast(req.(*netpb.DeleteThreadRequest).ThreadID)\n\tcase \"/threads.net.pb.API/AddReplicator\":\n\t\tid, err = thread.Cast(req.(*netpb.AddReplicatorRequest).ThreadID)\n\tcase \"/threads.net.pb.API/CreateRecord\":\n\t\tid, err = thread.Cast(req.(*netpb.CreateRecordRequest).ThreadID)\n\tcase \"/threads.net.pb.API/AddRecord\":\n\t\tid, err = thread.Cast(req.(*netpb.AddRecordRequest).ThreadID)\n\tcase \"/threads.net.pb.API/GetRecord\":\n\t\tid, err = thread.Cast(req.(*netpb.GetRecordRequest).ThreadID)\n\t}\n\treturn id, err\n}\n"
  },
  {
    "path": "core/thread_interceptor_test.go",
    "content": "package core_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"os\"\n\t\"testing\"\n\n\t\"github.com/ipfs/go-cid\"\n\tcbornode \"github.com/ipfs/go-ipld-cbor\"\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/libp2p/go-libp2p-core/peer\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\tmh \"github.com/multiformats/go-multihash\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/crypto/symmetric\"\n\ttc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/cbor\"\n\tcoredb \"github.com/textileio/go-threads/core/db\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\tnc \"github.com/textileio/go-threads/net/api/client\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\thc \"github.com/textileio/textile/v2/api/hubd/client\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"google.golang.org/grpc\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = apitest.StartServices()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc Test_ThreadsDB(t *testing.T) {\n\tt.Parallel()\n\tconf, hub, threads, _ := setup(t, nil)\n\tctx := context.Background()\n\n\tdev1 := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tdev2 := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx1 := common.NewSessionContext(ctx, dev1.Session)\n\tctx2 := common.NewSessionContext(ctx, dev2.Session)\n\n\t// dev1 creates a thread\n\tid := thread.NewIDV1(thread.Raw, 32)\n\terr := threads.NewDB(ctx1, id, db.WithNewManagedCollections(collectionCongig))\n\trequire.NoError(t, err)\n\n\t// dev1 creates an instance\n\t_, err = threads.Create(ctx1, id, \"Dogs\", tc.Instances{&Dog{Name: \"Fido\", Comments: []Comment{}}})\n\trequire.NoError(t, err)\n\n\t// dev2 create an instance (should be fine, this can be controlled with write validator)\n\t_, err = threads.Create(ctx2, id, \"Dogs\", tc.Instances{&Dog{Name: \"Fido\", Comments: []Comment{}}})\n\trequire.NoError(t, err)\n\n\t// dev2 attempts all the blocked methods\n\t_, err = threads.GetDBInfo(ctx2, id)\n\trequire.Error(t, err)\n\terr = threads.DeleteDB(ctx2, id)\n\trequire.Error(t, err)\n\t_, err = threads.ListDBs(ctx2)\n\trequire.Error(t, err)\n\terr = threads.NewCollection(ctx2, id, collectionCongig)\n\trequire.Error(t, err)\n\terr = threads.UpdateCollection(ctx2, id, collectionCongig)\n\trequire.Error(t, err)\n\terr = threads.DeleteCollection(ctx2, id, \"Dogs\")\n\trequire.Error(t, err)\n\t_, err = threads.GetCollectionInfo(ctx2, id, \"Dogs\")\n\trequire.Error(t, err)\n\t_, err = threads.GetCollectionIndexes(ctx2, id, \"Dogs\")\n\trequire.Error(t, err)\n\t_, err = threads.ListCollections(ctx2, id)\n\trequire.Error(t, err)\n}\n\nfunc TestClient_ThreadsNet(t *testing.T) {\n\tt.Parallel()\n\tconf, hub, _, net := setup(t, nil)\n\tctx := context.Background()\n\n\tdev1 := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tdev2 := apitest.Signup(t, hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx1 := common.NewSessionContext(ctx, dev1.Session)\n\tctx2 := common.NewSessionContext(ctx, dev2.Session)\n\n\t// dev1 creates a thread\n\tid := thread.NewIDV1(thread.Raw, 32)\n\t_, err := net.CreateThread(ctx1, id)\n\trequire.NoError(t, err)\n\n\t// dev1 creates a record\n\tbody, err := cbornode.WrapObject(map[string]interface{}{\n\t\t\"foo\": \"bar\",\n\t\t\"baz\": []byte(\"howdy\"),\n\t}, mh.SHA2_256, -1)\n\trequire.NoError(t, err)\n\t_, err = net.CreateRecord(ctx1, id, body)\n\trequire.NoError(t, err)\n\n\t// dev2 attempts all the blocked methods\n\t_, err = net.GetThread(ctx2, id)\n\trequire.Error(t, err)\n\terr = net.PullThread(ctx2, id)\n\trequire.Error(t, err)\n\terr = net.DeleteThread(ctx2, id)\n\trequire.Error(t, err)\n\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tpid, err := peer.IDFromPrivateKey(sk)\n\trequire.NoError(t, err)\n\taddr, err := ma.NewMultiaddr(\"/p2p/\" + pid.String())\n\trequire.NoError(t, err)\n\t_, err = net.AddReplicator(ctx2, id, addr)\n\trequire.Error(t, err)\n\n\t_, err = net.CreateRecord(ctx2, id, body)\n\trequire.Error(t, err)\n\n\tevent, err := cbor.CreateEvent(context.Background(), nil, body, symmetric.New())\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\trec, err := cbor.CreateRecord(context.Background(), nil, cbor.CreateRecordConfig{\n\t\tBlock:      event,\n\t\tPrev:       cid.Undef,\n\t\tKey:        sk,\n\t\tPubKey:     thread.NewLibp2pIdentity(sk).GetPublic(),\n\t\tServiceKey: thread.NewRandomServiceKey().Service(),\n\t})\n\trequire.NoError(t, err)\n\terr = net.AddRecord(ctx2, id, pid, rec)\n\trequire.Error(t, err)\n\n\t_, err = net.GetRecord(ctx2, id, cid.Cid{})\n\trequire.Error(t, err)\n}\n\nfunc setup(t *testing.T, conf *core.Config) (core.Config, *hc.Client, *tc.Client, *nc.Client) {\n\tif conf == nil {\n\t\ttmp := apitest.DefaultTextileConfig(t)\n\t\tconf = &tmp\n\t}\n\treturn setupWithConf(t, *conf)\n}\n\nfunc setupWithConf(t *testing.T, conf core.Config) (core.Config, *hc.Client, *tc.Client, *nc.Client) {\n\tapitest.MakeTextileWithConfig(t, conf)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\thubclient, err := hc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsclient, err := tc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsnetclient, err := nc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\n\tt.Cleanup(func() {\n\t\trequire.NoError(t, err)\n\t\terr = threadsclient.Close()\n\t\trequire.NoError(t, err)\n\t})\n\treturn conf, hubclient, threadsclient, threadsnetclient\n}\n\ntype Comment struct {\n\tBody string\n}\n\ntype Dog struct {\n\tID       coredb.InstanceID `json:\"_id\"`\n\tName     string\n\tComments []Comment\n}\n\nvar collectionCongig = db.CollectionConfig{\n\tName:   \"Dogs\",\n\tSchema: tutil.SchemaFromInstance(&Dog{}, false),\n\tWriteValidator: `\n\t\tvar type = event.patch.type\n\t\tvar patch = event.patch.json_patch\n\t\tswitch (type) {\n\t\t  case \"delete\":\n\t\t    return false\n\t\t  default:\n\t\t    if (patch.Name !== \"Fido\" && patch.Name != \"Clyde\") {\n\t\t      return false\n\t\t    }\n\t\t    return true\n\t\t}\n\t`,\n\tReadFilter: `\n\t\tinstance.Name = \"Clyde\"\n\t\treturn instance\n\t`,\n}\n"
  },
  {
    "path": "core/usage_interceptor.go",
    "content": "package core\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"math\"\n\t\"strings\"\n\t\"time\"\n\n\tgrpcm \"github.com/grpc-ecosystem/go-grpc-middleware\"\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\t\"github.com/textileio/textile/v2/api/billingd/analytics\"\n\tbilling \"github.com/textileio/textile/v2/api/billingd/client\"\n\t\"github.com/textileio/textile/v2/api/billingd/common\"\n\t\"github.com/textileio/textile/v2/api/billingd/pb\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\ntype preFunc func(ctx context.Context, method string) (context.Context, error)\ntype postFunc func(ctx context.Context, method string) error\n\nfunc unaryServerInterceptor(pre preFunc, post postFunc) grpc.UnaryServerInterceptor {\n\treturn func(\n\t\tctx context.Context,\n\t\treq interface{},\n\t\tinfo *grpc.UnaryServerInfo,\n\t\thandler grpc.UnaryHandler,\n\t) (interface{}, error) {\n\t\tnewCtx, err := pre(ctx, info.FullMethod)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tres, err := handler(newCtx, req)\n\t\tif err != nil {\n\t\t\tperr := post(newCtx, info.FullMethod)\n\t\t\tif perr != nil {\n\t\t\t\tlog.Errorf(\"unaryServerInterceptor postFunc: %v\", err)\n\t\t\t}\n\t\t\treturn nil, err\n\t\t}\n\t\tif err := post(newCtx, info.FullMethod); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn res, nil\n\t}\n}\n\nfunc streamServerInterceptor(pre preFunc, post postFunc) grpc.StreamServerInterceptor {\n\treturn func(\n\t\tsrv interface{},\n\t\tstream grpc.ServerStream,\n\t\tinfo *grpc.StreamServerInfo,\n\t\thandler grpc.StreamHandler,\n\t) error {\n\t\tnewCtx, err := pre(stream.Context(), info.FullMethod)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\twrapped := grpcm.WrapServerStream(stream)\n\t\twrapped.WrappedContext = newCtx\n\t\tif err := handler(srv, wrapped); err != nil {\n\t\t\tperr := post(newCtx, info.FullMethod)\n\t\t\tif perr != nil {\n\t\t\t\tlog.Errorf(\"streamServerInterceptor postFunc: %v\", err)\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\t\treturn post(newCtx, info.FullMethod)\n\t}\n}\n\nfunc (t *Textile) preUsageFunc(ctx context.Context, method string) (context.Context, error) {\n\tif t.bc == nil {\n\t\treturn ctx, nil\n\t}\n\tfor _, ignored := range authIgnoredMethods {\n\t\tif method == ignored {\n\t\t\treturn ctx, nil\n\t\t}\n\t}\n\tfor _, ignored := range usageIgnoredMethods {\n\t\tif method == ignored {\n\t\t\treturn ctx, nil\n\t\t}\n\t}\n\taccount, ok := mdb.AccountFromContext(ctx)\n\tif !ok {\n\t\treturn ctx, nil\n\t}\n\tnow := time.Now()\n\n\t// Collect new users.\n\tif account.User != nil && account.User.CreatedAt.IsZero() && account.User.Type == mdb.User {\n\t\tvar powInfo *mdb.PowInfo\n\t\tif t.pc != nil {\n\t\t\tctxAdmin := context.WithValue(ctx, powc.AdminKey, t.conf.PowergateAdminToken)\n\t\t\tres, err := t.pc.Admin.Users.Create(ctxAdmin)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, err\n\t\t\t}\n\t\t\tpowInfo = &mdb.PowInfo{ID: res.User.Id, Token: res.User.Token}\n\t\t}\n\t\tuser, err := t.collections.Accounts.CreateUser(ctx, account.User.Key, powInfo)\n\t\tif err != nil {\n\t\t\treturn ctx, err\n\t\t}\n\t\tctx = mdb.NewAccountContext(ctx, user, account.Org)\n\t\taccount, _ = mdb.AccountFromContext(ctx)\n\t}\n\n\t// Collect new customers.\n\tcus, err := t.bc.GetCustomer(ctx, account.Owner().Key)\n\tif err != nil {\n\t\tif strings.Contains(err.Error(), mongo.ErrNoDocuments.Error()) {\n\t\t\temail, err := t.getAccountCtxEmail(ctx, account)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, err\n\t\t\t}\n\t\t\tvar opts []billing.Option\n\t\t\tif account.Owner().Type == mdb.User {\n\t\t\t\tkey, ok := mdb.APIKeyFromContext(ctx)\n\t\t\t\tif !ok {\n\t\t\t\t\treturn ctx, status.Error(codes.PermissionDenied, \"Bad API key\")\n\t\t\t\t}\n\t\t\t\tparent, err := t.collections.Accounts.Get(ctx, key.Owner)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"parent for %s not found: %s\", account.Owner().Key, key.Owner)\n\t\t\t\t}\n\t\t\t\temail, err := t.getAccountCtxEmail(ctx, mdb.AccountCtxForAccount(parent))\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn ctx, err\n\t\t\t\t}\n\t\t\t\topts = append(opts, billing.WithParent(parent.Key, email, parent.Type))\n\t\t\t}\n\t\t\tif _, err := t.bc.CreateCustomer(\n\t\t\t\tctx,\n\t\t\t\taccount.Owner().Key,\n\t\t\t\temail,\n\t\t\t\taccount.Owner().Username,\n\t\t\t\taccount.Owner().Type,\n\t\t\t\topts...,\n\t\t\t); err != nil {\n\t\t\t\treturn ctx, err\n\t\t\t}\n\t\t\tcus, err = t.bc.GetCustomer(ctx, account.Owner().Key)\n\t\t\tif err != nil {\n\t\t\t\treturn ctx, err\n\t\t\t}\n\t\t} else {\n\t\t\treturn ctx, err\n\t\t}\n\t}\n\tif err := common.StatusCheck(cus.SubscriptionStatus); err != nil {\n\t\treturn ctx, status.Error(codes.FailedPrecondition, err.Error())\n\t}\n\n\tif usageExhausted(cus, \"network_egress\", now) {\n\t\terr = fmt.Errorf(\"network egress exhausted: %v\", common.ErrExceedsFreeQuota)\n\t\treturn ctx, status.Error(codes.ResourceExhausted, err.Error())\n\t}\n\n\t// @todo: Attach egress info that can be used to fail-fast in PullPath?\n\tswitch method {\n\tcase \"/api.bucketsd.pb.APIService/Create\",\n\t\t\"/api.bucketsd.pb.APIService/PushPath\",\n\t\t\"/api.bucketsd.pb.APIService/PushPaths\",\n\t\t\"/api.bucketsd.pb.APIService/SetPath\",\n\t\t\"/api.bucketsd.pb.APIService/MovePath\",\n\t\t\"/api.bucketsd.pb.APIService/Remove\",\n\t\t\"/api.bucketsd.pb.APIService/RemovePath\",\n\t\t\"/api.bucketsd.pb.APIService/PushPathAccessRoles\":\n\t\towner := &buckets.BucketOwner{\n\t\t\tStorageUsed: cus.DailyUsage[\"stored_data\"].Total,\n\t\t}\n\t\tif cus.Billable {\n\t\t\t// Customer is paying for storage, quota is unbounded\n\t\t\towner.StorageAvailable = int64(math.MaxInt64)\n\t\t} else if now.Unix() < cus.GracePeriodEnd {\n\t\t\t// Customer is in grace period, quota is grace\n\t\t\towner.StorageAvailable = cus.DailyUsage[\"stored_data\"].Grace\n\t\t} else if cus.GracePeriodEnd == 0 {\n\t\t\t// Customer has not started grace period, but there's no way to start the grace period _after_\n\t\t\t// a successful request, so we use grace quota here and let the post usage handler start the\n\t\t\t// grace period in the event the request exceeds the free quota\n\t\t\towner.StorageAvailable = cus.DailyUsage[\"stored_data\"].Grace\n\t\t} else {\n\t\t\t// Customer's grace period has expired, fall back to free quota.\n\t\t\towner.StorageAvailable = cus.DailyUsage[\"stored_data\"].Free\n\t\t}\n\t\tctx = buckets.NewBucketOwnerContext(ctx, owner)\n\tcase\n\t\t\"/threads.pb.API/Verify\",\n\t\t\"/threads.pb.API/Has\",\n\t\t\"/threads.pb.API/Find\",\n\t\t\"/threads.pb.API/FindByID\",\n\t\t\"/threads.pb.API/ReadTransaction\",\n\t\t\"/threads.pb.API/Listen\":\n\t\tif usageExhausted(cus, \"instance_reads\", now) {\n\t\t\terr = fmt.Errorf(\"threaddb reads exhausted: %v\", common.ErrExceedsFreeQuota)\n\t\t\treturn ctx, status.Error(codes.ResourceExhausted, err.Error())\n\t\t}\n\tcase \"/threads.pb.API/Create\",\n\t\t\"/threads.pb.API/Save\",\n\t\t\"/threads.pb.API/Delete\",\n\t\t\"/threads.pb.API/WriteTransaction\":\n\t\tif usageExhausted(cus, \"instance_writes\", now) {\n\t\t\terr = fmt.Errorf(\"threaddb writes exhausted: %v\", common.ErrExceedsFreeQuota)\n\t\t\treturn ctx, status.Error(codes.ResourceExhausted, err.Error())\n\t\t}\n\t}\n\treturn ctx, nil\n}\n\nfunc usageExhausted(cus *pb.GetCustomerResponse, key string, now time.Time) bool {\n\tif !cus.Billable && cus.DailyUsage[key].Free == 0 {\n\t\tif now.Unix() >= cus.GracePeriodEnd {\n\t\t\treturn true // Grace period ended\n\t\t} else if cus.DailyUsage[key].Grace == 0 {\n\t\t\treturn true // Still in grace period, but reached the hard cap\n\t\t}\n\t}\n\treturn false\n}\n\nfunc (t *Textile) postUsageFunc(ctx context.Context, method string) error {\n\tif t.bc == nil {\n\t\treturn nil\n\t}\n\tfor _, ignored := range authIgnoredMethods {\n\t\tif method == ignored {\n\t\t\treturn nil\n\t\t}\n\t}\n\taccount, ok := mdb.AccountFromContext(ctx)\n\tif !ok {\n\t\treturn nil\n\t}\n\towner, ok := buckets.BucketOwnerFromContext(ctx)\n\tif !ok {\n\t\treturn nil\n\t}\n\tswitch method {\n\tcase \"/api.bucketsd.pb.APIService/Create\",\n\t\t\"/api.bucketsd.pb.APIService/PushPath\",\n\t\t\"/api.bucketsd.pb.APIService/PushPaths\",\n\t\t\"/api.bucketsd.pb.APIService/SetPath\",\n\t\t\"/api.bucketsd.pb.APIService/MovePath\",\n\t\t\"/api.bucketsd.pb.APIService/Remove\",\n\t\t\"/api.bucketsd.pb.APIService/RemovePath\",\n\t\t\"/api.bucketsd.pb.APIService/PushPathAccessRoles\":\n\t\t// If the main context is canceled, we still want to be able to record usage.\n\t\tsctx, cancel := context.WithTimeout(util.NewClonedContext(ctx), time.Second*10)\n\t\tdefer cancel()\n\t\tif _, err := t.bc.IncCustomerUsage(\n\t\t\tsctx,\n\t\t\taccount.Owner().Key,\n\t\t\tmap[string]int64{\n\t\t\t\t\"stored_data\": owner.StorageDelta,\n\t\t\t},\n\t\t); err != nil {\n\t\t\tlog.Infof(\"postUsageFunc: %v\", err)\n\t\t}\n\t}\n\n\tif t.bc != nil {\n\t\tpayload := map[string]string{}\n\t\tif account.User != nil {\n\t\t\tpayload[\"member\"] = account.User.Key.String()\n\t\t\tpayload[\"member_username\"] = account.User.Username\n\t\t\tpayload[\"member_email\"] = account.User.Email\n\t\t}\n\n\t\tswitch method {\n\t\tcase \"/api.bucketsd.pb.APIService/Create\":\n\t\t\tt.bc.TrackEvent(ctx, account.Owner().Key, account.Owner().Type, true, analytics.BucketCreated, payload)\n\t\tcase \"/api.bucketsd.pb.APIService/Archive\":\n\t\t\tt.bc.TrackEvent(ctx, account.Owner().Key, account.Owner().Type, true, analytics.BucketArchiveCreated, payload)\n\t\tcase \"/threads.pb.API/NewDB\":\n\t\t\tt.bc.TrackEvent(ctx, account.Owner().Key, account.Owner().Type, true, analytics.ThreadDbCreated, payload)\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (t *Textile) getAccountCtxEmail(ctx context.Context, account *mdb.AccountCtx) (string, error) {\n\tif account.User != nil {\n\t\treturn account.User.Email, nil\n\t}\n\tif account.Org == nil {\n\t\treturn \"\", errors.New(\"invalid account context\")\n\t}\n\tfor _, m := range account.Org.Members {\n\t\tif m.Role == mdb.OrgOwner {\n\t\t\towner, err := t.collections.Accounts.Get(ctx, m.Key)\n\t\t\tif err != nil {\n\t\t\t\tlog.Errorf(\"getting org owner: %v\", err)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn owner.Email, nil\n\t\t}\n\t}\n\treturn \"\", errors.New(\"could not resolve email for org\")\n}\n"
  },
  {
    "path": "dist/install.tmpl",
    "content": "#!/usr/bin/env bash\nset -Eeuo pipefail\n\n# From https://github.com/ipfs/go-ipfs/blob/ccef991a194beaedf009b1d0702b1150db3da0a6/cmd/ipfs/dist/install.sh\n#\n# Installation script for textile. It tries to move $bin in one of the\n# directories stored in $binpaths.\n\nINSTALL_DIR=\"$(dirname \"$0\")\"\n\nfile=\"$INSTALL_DIR/{{ .Env.TXTL_FILE }}\"\nbinpaths=\"/usr/local/bin /usr/bin\"\n\n# This variable contains a nonzero length string in case the script fails\n# because of missing write permissions.\nis_write_perm_missing=\"\"\n\nfor binpath in $binpaths; do\n\tif mv \"$file\" \"$binpath/$file\" 2>/dev/null; then\n\t\techo \"Moved $file to $binpath\"\n\t\texit 0\n\telse\n\t\tif test -d \"$binpath\" && ! test -w \"$binpath\"; then\n\t\t\tis_write_perm_missing=1\n\t\tfi\n\tfi\ndone\n\necho \"We cannot install $file in one of the directories $binpaths\"\n\nif test -n \"$is_write_perm_missing\"; then\n\techo \"It seems that we do not have the necessary write permissions.\"\n\techo \"Perhaps try running this script as a privileged user:\"\n\techo\n\techo \"    sudo $0\"\n\techo\nfi\n\nexit 1"
  },
  {
    "path": "dns/dns.go",
    "content": "package dns\n\nimport (\n\t\"fmt\"\n\n\tcf \"github.com/cloudflare/cloudflare-go\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/textileio/go-threads/util\"\n)\n\nvar (\n\tlog = logging.Logger(\"dns\")\n)\n\nconst IPFSGateway = \"cloudflare-ipfs.com\"\n\n// Manager wraps a CloudflareClient client.\ntype Manager struct {\n\tDomain string\n\n\tapi    *cf.API\n\tzoneID string\n}\n\n// NewManager return a cloudflare-backed dns updating client.\nfunc NewManager(domain string, zoneID string, token string, debug bool) (*Manager, error) {\n\tif debug {\n\t\tif err := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"dns\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tapi, err := cf.NewWithAPIToken(token)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &Manager{\n\t\tDomain: domain,\n\t\tapi:    api,\n\t\tzoneID: zoneID,\n\t}, nil\n}\n\n// NewCNAME enters a new dns record for a CNAME.\nfunc (m *Manager) NewCNAME(name string, target string) (*cf.DNSRecord, error) {\n\tres, err := m.api.CreateDNSRecord(m.zoneID, cf.DNSRecord{\n\t\tType:    \"CNAME\",\n\t\tName:    name,\n\t\tContent: target,\n\t\tProxied: false,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"created CNAME record %s -> %s\", name, target)\n\treturn &res.Result, nil\n}\n\n// NewTXT enters a new dns record for a TXT.\nfunc (m *Manager) NewTXT(name string, content string) (*cf.DNSRecord, error) {\n\tres, err := m.api.CreateDNSRecord(m.zoneID, cf.DNSRecord{\n\t\tType:    \"TXT\",\n\t\tName:    name,\n\t\tContent: content,\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlog.Debugf(\"created TXT record %s -> %s\", name, content)\n\treturn &res.Result, nil\n}\n\n// NewDNSLink enters a two dns records to enable DNS link.\nfunc (m *Manager) NewDNSLink(subdomain string, hash string) ([]*cf.DNSRecord, error) {\n\tcname, err := m.NewCNAME(subdomain, IPFSGateway)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tname := CreateDNSLinkName(subdomain)\n\tcontent := CreateDNSLinkContent(hash)\n\ttxt, err := m.NewTXT(name, content)\n\tif err != nil {\n\t\t// Cleanup the orphaned cname record\n\t\t_ = m.DeleteRecord(cname.ID)\n\t\treturn nil, err\n\t}\n\n\tlog.Debugf(\"created DNSLink record %s -> %s\", subdomain, hash)\n\treturn []*cf.DNSRecord{cname, txt}, nil\n}\n\n// UpdateRecord updates an existing record.\nfunc (m *Manager) UpdateRecord(id, rtype, name, content string) error {\n\tif err := m.api.UpdateDNSRecord(m.zoneID, id, cf.DNSRecord{\n\t\tType:    rtype,\n\t\tName:    name,\n\t\tContent: content,\n\t}); err != nil {\n\t\treturn err\n\t}\n\tlog.Debugf(\"updated record %s -> %s\", name, content)\n\treturn nil\n}\n\n// Delete removes a record by ID from dns.\nfunc (m *Manager) DeleteRecord(id string) error {\n\tif err := m.api.DeleteDNSRecord(m.zoneID, id); err != nil {\n\t\treturn err\n\t}\n\tlog.Debugf(\"deleted record %s\", id)\n\treturn nil\n}\n\n// CreateDNSLinkName converts a subdomain into the Name format for dnslink TXT entries.\nfunc CreateDNSLinkName(subdomain string) string {\n\treturn fmt.Sprintf(\"_dnslink.%s\", subdomain)\n}\n\n// CreateDNSLinkContent converts a hash into the Content format for dnslink TXT entries.\nfunc CreateDNSLinkContent(hash string) string {\n\treturn fmt.Sprintf(\"dnslink=/ipfs/%s\", hash)\n}\n"
  },
  {
    "path": "email/email.go",
    "content": "package email\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\tcio \"github.com/customerio/go-customerio\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\t\"github.com/textileio/go-threads/util\"\n)\n\nvar log = logging.Logger(\"email\")\n\ntype Client struct {\n\tinviteTmpl  string\n\tconfirmTmpl string\n\tclient      *cio.APIClient\n}\n\ntype Config struct {\n\tConfirmTmpl string\n\tInviteTmpl  string\n\tAPIKey      string\n\tDebug       bool\n}\n\nfunc NewClient(conf Config) (*Client, error) {\n\tif conf.Debug {\n\t\tif err := util.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"email\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tvar client *cio.APIClient\n\tif conf.APIKey != \"\" {\n\t\tclient = cio.NewAPIClient(conf.APIKey)\n\t}\n\treturn &Client{\n\t\tinviteTmpl:  conf.InviteTmpl,\n\t\tconfirmTmpl: conf.ConfirmTmpl,\n\t\tclient:      client,\n\t}, nil\n}\n\n// ConfirmAddress sends a confirmation link to a recipient.\nfunc (c *Client) ConfirmAddress(ctx context.Context, id, username, email, url, secret string) error {\n\tif c.client == nil {\n\t\treturn nil\n\t}\n\trequest := cio.SendEmailRequest{\n\t\tTo:                     email,\n\t\tTransactionalMessageID: c.confirmTmpl,\n\t\tIdentifiers: map[string]string{\n\t\t\t\"id\":           id,\n\t\t\t\"confirmation\": \"true\",\n\t\t},\n\t\tMessageData: map[string]interface{}{\n\t\t\t\"link\":     fmt.Sprintf(\"%s/confirm/%s\", url, secret),\n\t\t\t\"username\": username,\n\t\t},\n\t}\n\tif _, err := c.client.SendEmail(ctx, &request); err != nil {\n\t\treturn err\n\t}\n\n\tlog.Debugf(\"sent confirm address for %s to %s\", username, email)\n\treturn nil\n}\n\n// InviteAddress sends a confirmation link to a recipient.\nfunc (c *Client) InviteAddress(ctx context.Context, id, org, from, to, url, token string) error {\n\tif c.client == nil {\n\t\treturn nil\n\t}\n\trequest := cio.SendEmailRequest{\n\t\tTo:                     to,\n\t\tTransactionalMessageID: c.inviteTmpl,\n\t\tIdentifiers: map[string]string{\n\t\t\t\"id\":    id,\n\t\t\t\"email\": from,\n\t\t},\n\t\tMessageData: map[string]interface{}{\n\t\t\t\"link\": fmt.Sprintf(\"%s/consent/%s\", url, token),\n\t\t\t\"org\":  org,\n\t\t\t\"from\": from,\n\t\t},\n\t}\n\tif _, err := c.client.SendEmail(ctx, &request); err != nil {\n\t\treturn err\n\t}\n\n\tlog.Debug(\"sent invite to %s from %s to %s\", org, from, to)\n\treturn nil\n}\n"
  },
  {
    "path": "gateway/Makefile",
    "content": "ASSET_DIRS = $(shell find ./public/ -type d)\nASSET_FILES = $(shell find ./public/ -type f -name '*')\n\nassets.go: ./public/ $(ASSET_DIRS) $(ASSET_FILES)\n\tgo-assets-builder . -p gateway -o assets.go"
  },
  {
    "path": "gateway/assets.go",
    "content": "package gateway\n\nimport (\n\t\"time\"\n\n\t\"github.com/textileio/go-assets\"\n)\n\nvar _Assetsd049223eb2ab91ac66001a116d54e31249bb6996 = \"\\x00\\x01\\x00\\x00\\x00\\r\\x00\\x80\\x00\\x03\\x00PFFTM\\x8d\\x96\\xb6\\x16\\x00\\x02\\x02\\f\\x00\\x00\\x00\\x1cGDEF\\x00*\\x01\\xbf\\x00\\x02\\x01\\xec\\x00\\x00\\x00\\x1eOS/2B\\x0fV\\x9a\\x00\\x00\\x01X\\x00\\x00\\x00`cmap\\xf2\\xaa\\xef\\xe1\\x00\\x00\\b\\x9c\\x00\\x00\\x05\\xdagasp\\xff\\xff\\x00\\x03\\x00\\x02\\x01\\xe4\\x00\\x00\\x00\\bglyf\\x94:\\x85a\\x00\\x00\\x11\\xec\\x00\\x01\\xd5\\xe4head\\x17\\a\\x912\\x00\\x00\\x00\\xdc\\x00\\x00\\x006hhea\\x046\\x03\\xeb\\x00\\x00\\x01\\x14\\x00\\x00\\x00$hmtxKc\\x06\\x89\\x00\\x00\\x01\\xb8\\x00\\x00\\x06\\xe4loca\\xa2\\xe5\\x11V\\x00\\x00\\x0ex\\x00\\x00\\x03tmaxp\\x02\\\"\\x03O\\x00\\x00\\x018\\x00\\x00\\x00 name\\x8e\\x97\\xb2\\xcd\\x00\\x01\\xe7\\xd0\\x00\\x00\\x05\\x85post\\x13,\\xe7\\x97\\x00\\x01\\xedX\\x00\\x00\\x14\\x89\\x00\\x01\\x00\\x00\\x01J\\xc0\\x83\\xa8[\\xf7\\xb6_\\x0f<\\xf5\\x00\\v\\x02\\x00\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\\xff\\xee\\xff\\xb6\\x02\\x85\\x01\\xe0\\x00\\x00\\x00\\b\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xc0\\xff\\xc0\\x00\\x00\\x02\\x80\\xff\\xee\\xff\\xf1\\x02\\x85\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xb9\\x00\\x01\\x00\\x00\\x01\\xb9\\x03L\\x00'\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x01\\xeb\\x01\\x90\\x00\\x05\\x00\\x00\\x01L\\x01f\\x00\\x00\\x00G\\x01L\\x01f\\x00\\x00\\x00\\xf5\\x00\\x19\\x00\\x84\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00PfEd\\x00\\x80\\xf0\\x81\\xf9I\\x01\\xc0\\xff\\xc0\\x00.\\x01\\xcc\\x00T\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01:\\x01\\xa5\\x00\\x00\\x00 \\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xaa\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\f\\x01\\xc0\\x00\\x00\\x01\\xe0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x03\\x02@\\x00\\x0e\\x01\\x80\\xff\\xff\\x01\\xc0\\x00\\x00\\x02\\x10\\x00\\x00\\x01\\x80\\x00\\x02\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x06\\x01@\\x00\\a\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x03\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\t\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01p\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x12\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x11\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x15\\x01\\xe8\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\a\\x01\\xc0\\x00 \\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\n\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x15\\x01\\xc0\\x00\\a\\x02@\\x00\\r\\x02\\x00\\x00\\x01\\x02\\x00\\x00\\x18\\x01\\x80\\x00\\x01\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x06\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00.\\x01\\xc0\\x00\\x00\\x02@\\x00\\r\\x01\\xc0\\x00\\x13\\x01\\xc0\\x00\\x00\\x02@\\x00\\x06\\x02\\x80\\x00\\x06\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x04\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\xff\\xff\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\t\\x02@\\xff\\xf9\\x01@\\x00\\x01\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x02\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x1f\\x01\\xc0\\x00\\x06\\x01\\xc0\\x00\\x11\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x0e\\x02\\x00\\x00\\x19\\x01\\xd8\\x00\\x00\\x01\\xc0\\x00\\b\\x02\\x00\\x00\\x12\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x01\\x01\\x80\\x00\\x00\\x01\\xc0\\x00 \\x01@\\x00\\x19\\x02\\x00\\xff\\xfd\\x02\\x00\\x00\\x14\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00 \\x01\\xc0\\xff\\xff\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xe0\\x00 \\x01\\xc0\\x00\\x04\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\n\\x01\\xc0\\x00\\a\\x02@\\x00\\x02\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x18\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xf9\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x10\\x02\\x80\\xff\\xfe\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x80\\xff\\xfe\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\xff\\xf0\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x01\\x01\\xc0\\x00\\x00\\x01L\\x00\\x00\\x02h\\x00\\x00\\x02\\x80\\xff\\xfc\\x01\\x80\\x00\\x00\\x01\\xb8\\x00\\x00\\x02@\\x00\\x16\\x02\\x00\\x00\\x00\\x01\\xe0\\xff\\xff\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x80\\xff\\xfc\\x01\\xe0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xa0\\x00\\x00\\x01\\xe0\\xff\\xfc\\x02\\x80\\x00\\x00\\x01@\\x00\\x16\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\xff\\xf1\\x02P\\x00\\b\\x01\\x90\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x1c\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x19\\x01\\x80\\x00 \\x01\\x80\\x00\\x02\\x01\\x00\\x00\\f\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xf5\\x02\\x00\\x00\\x19\\x01\\xc0\\x00\\x00\\x01\\x80\\xff\\xf9\\x02\\x00\\x00\\x17\\x01\\xf0\\xff\\xef\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\a\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x02\\x01@\\x00\\x00\\x02\\x00\\x00\\x0e\\x02 \\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x90\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x12\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\xff\\xfa\\x01\\xb0\\xff\\xfe\\x01\\xc0\\xff\\xfb\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xcc\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x04\\x01\\xb8\\xff\\xfc\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x12\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\a\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\f\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x06\\x01\\x00\\x00\\x02\\x01@\\x00\\x12\\x02\\x80\\xff\\xfd\\x02@\\x00\\x00\\x01\\x80\\x00\\x19\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x10\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x03\\x01\\x80\\x00\\x10\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\a\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\v\\x01\\xc0\\x00\\a\\x02\\x80\\x00\\x0e\\x02@\\x00\\x00\\x01@\\x00\\b\\x01\\xbe\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\f\\x02@\\x00\\x00\\x01\\x80\\xff\\xf3\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x0e\\x01\\xc0\\x00\\x0e\\x02E\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x01@\\x00\\x19\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x1b\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x1c\\x02\\x00\\x00\\x01\\x01\\xc0\\x00\\v\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x0e\\x01\\xc0\\x00\\x13\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x17\\x01@\\x00\\x0e\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x1c\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfe\\x01\\x80\\x00\\x12\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x17\\x02@\\x00\\x02\\x02\\x00\\x00\\x19\\x02\\x00\\x00\\x02\\x02\\x00\\xff\\xfe\\x02\\x00\\x00\\x17\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfb\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x18\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x14\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\xff\\xfe\\x01\\x97\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\t\\x01\\xc0\\x00\\x15\\x02\\x80\\xff\\xfe\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x04\\x02@\\x00\\x1b\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x03\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\f\\x02\\x00\\x00\\x15\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x80\\xff\\xfd\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x02\\x02\\x00\\x00\\x1d\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\f\\x02@\\x00\\a\\x02@\\x00\\a\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xfe\\x00\\x06\\x02\\x00\\x00\\f\\x02@\\x00 \\x01\\xc0\\x00\\x01\\x01\\xc0\\x00\\x00\\x02@\\x00\\x0f\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x1c\\x00\\x01\\x00\\x00\\x00\\x00\\x04\\xd4\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x1c\\x00\\x04\\x04\\xb8\\x00\\x00\\x01*\\x01\\x00\\x00\\a\\x00*\\xf0\\x82\\xf0\\x8c\\xf0\\x92\\xf0\\x9b\\xf0\\xd5\\xf0\\xe1\\xf1\\x13\\xf16\\xf1<\\xf1Z\\xf1i\\xf1n\\xf1q\\xf1t\\xf1~\\xf1\\x81\\xf1\\x84\\xf1\\x8d\\xf1\\x94\\xf1\\x98\\xf1\\x9b\\xf1\\x9e\\xf1\\xaa\\xf1\\xb7\\xf1\\xbe\\xf1\\xcc\\xf1\\xd7\\xf1\\xe9\\xf1\\xee\\xf1\\xf5\\xf2\\x03\\xf2\\t\\xf2\\x0e\\xf2\\x16\\xf22\\xf27\\xf2>\\xf2L\\xf2^\\xf2k\\xf2n\\xf2p\\xf2~\\xf2\\x82\\xf2\\x8a\\xf2\\x94\\xf2\\x99\\xf2\\xa6\\xf2\\xae\\xf2\\xb4\\xf2\\xb8\\xf2\\xc6\\xf2\\xda\\xf2\\xde\\xf2\\xe0\\xf3\\\\\\xf3u\\xf3}\\xf3\\x80\\xf3\\x85\\xf3\\x88\\xf3\\x8f\\xf3\\x97\\xf3\\x9a\\xf3\\x9f\\xf3\\xa4\\xf3\\xb2\\xf3\\xbd\\xf3\\xc0\\xf3\\xc4\\xf3\\xc8\\xf3\\xcc\\xf3\\xd0\\xf3\\xdc\\xf3\\xdf\\xf3\\xe4\\xf3\\xec\\xf3\\xef\\xf3\\xf3\\xf3\\xf9\\xf3\\xfe\\xf4\\x05\\xf4\\r\\xf4\\x17\\xf4!\\xf4#\\xf41\\xf4M\\xf4R\\xf4W\\xf4Y\\xf4\\xd5\\xf4\\xe5\\xf4\\xf9\\xf5\\x14\\xf5\\x92\\xf5\\x9e\\xf5\\xa3\\xf5\\xa8\\xf5\\xb2\\xf5\\xb5\\xf5\\xbe\\xf5\\xc6\\xf5\\xcc\\xf5\\xcf\\xf5\\xf1\\xf5\\xf7\\xf5\\xfa\\xf6\\x0f\\xf6\\x12\\xf6?\\xf6B\\xf6\\x9d\\xf6\\xaf\\xf6\\xca\\xf6\\xcc\\xf6\\xdc\\xf7\\x04\\xf71\\xf7]\\xf7x\\xf7{\\xf7\\x85\\xf7\\x89\\xf7\\x8d\\xf7\\x91\\xf7\\x99\\xf7\\xb1\\xf7\\xb3\\xf7\\xbc\\xf7\\xc6\\xf7\\xd3\\xf7\\xd6\\xf7\\xe1\\xf7\\xe3\\xf8=\\xf8B\\xf8\\x9e\\xf8\\xa6\\xf8\\xca\\xf8\\xd2\\xf8\\xe1\\xf8\\xe8\\xf9\\a\\xf9\\x13\\xf9\\x1a\\xf9\\x1e\\xf9I\\xff\\xff\\x00\\x00\\xf0\\x81\\xf0\\x8c\\xf0\\x92\\xf0\\x99\\xf0\\xd2\\xf0\\xe1\\xf1\\x13\\xf16\\xf1;\\xf1Z\\xf1g\\xf1k\\xf1p\\xf1s\\xf1y\\xf1\\x80\\xf1\\x84\\xf1\\x89\\xf1\\x94\\xf1\\x98\\xf1\\x9a\\xf1\\x9e\\xf1\\xa0\\xf1\\xb4\\xf1\\xbc\\xf1\\xca\\xf1\\xd0\\xf1\\xe7\\xf1\\xed\\xf1\\xf0\\xf2\\x02\\xf2\\b\\xf2\\r\\xf2\\x10\\xf21\\xf27\\xf2:\\xf2K\\xf2^\\xf2`\\xf2m\\xf2p\\xf2|\\xf2\\x80\\xf2\\x84\\xf2\\x93\\xf2\\x96\\xf2\\xa5\\xf2\\xa9\\xf2\\xb0\\xf2\\xb8\\xf2\\xc4\\xf2\\xd5\\xf2\\xdd\\xf2\\xe0\\xf3\\\\\\xf3h\\xf3x\\xf3\\u007f\\xf3\\x83\\xf3\\x88\\xf3\\x8b\\xf3\\x91\\xf3\\x99\\xf3\\x9d\\xf3\\xa1\\xf3\\xa6\\xf3\\xb4\\xf3\\xc0\\xf3\\xc3\\xf3\\xc6\\xf3\\xca\\xf3\\xd0\\xf3\\xd2\\xf3\\xdf\\xf3\\xe1\\xf3\\xe6\\xf3\\xee\\xf3\\xf3\\xf3\\xf5\\xf3\\xfe\\xf4\\x02\\xf4\\a\\xf4\\x11\\xf4\\x19\\xf4#\\xf4%\\xf4M\\xf4R\\xf4W\\xf4Y\\xf4\\xd5\\xf4\\xe4\\xf4\\xe7\\xf5\\n\\xf5\\x92\\xf5\\x9e\\xf5\\xa3\\xf5\\xa8\\xf5\\xb2\\xf5\\xb5\\xf5\\xbe\\xf5\\xc6\\xf5\\xcc\\xf5\\xcf\\xf5\\xf1\\xf5\\xf7\\xf5\\xfa\\xf6\\x0f\\xf6\\x12\\xf6?\\xf6B\\xf6\\x9d\\xf6\\xaf\\xf6\\xc9\\xf6\\xcc\\xf6\\xdc\\xf7\\x04\\xf70\\xf7]\\xf7x\\xf7z\\xf7\\x85\\xf7\\x89\\xf7\\x8d\\xf7\\x90\\xf7\\x97\\xf7\\xaf\\xf7\\xb3\\xf7\\xbb\\xf7\\xc6\\xf7\\xd3\\xf7\\xd6\\xf7\\xdf\\xf7\\xe3\\xf84\\xf8?\\xf8\\x9e\\xf8\\xa6\\xf8\\xca\\xf8\\xd2\\xf8\\xe1\\xf8\\xe8\\xf9\\a\\xf9\\x13\\xf9\\x1a\\xf9\\x1e\\xf9I\\xff\\xff\\x0f\\x82\\x0fy\\x0ft\\x0fn\\x0f8\\x0f-\\x0e\\xfc\\x0e\\xda\\x0e\\xd6\\x0e\\xb9\\x0e\\xad\\x0e\\xac\\x0e\\xab\\x0e\\xaa\\x0e\\xa6\\x0e\\xa5\\x0e\\xa3\\x0e\\x9f\\x0e\\x99\\x0e\\x96\\x0e\\x95\\x0e\\x93\\x0e\\x92\\x0e\\x89\\x0e\\x85\\x0ez\\x0ew\\x0eh\\x0ee\\x0ed\\x0eX\\x0eT\\x0eQ\\x0eP\\x0e6\\x0e2\\x0e0\\x0e$\\x0e\\x13\\x0e\\x12\\x0e\\x11\\x0e\\x10\\x0e\\x05\\x0e\\x04\\x0e\\x03\\r\\xfb\\r\\xfa\\r\\xef\\r\\xed\\r\\xec\\r\\xe9\\r\\xde\\r\\xd0\\r\\xce\\r\\xcd\\rR\\rG\\rE\\rD\\rB\\r@\\r>\\r=\\r<\\r:\\r9\\r8\\r7\\r5\\r3\\r2\\r1\\r.\\r-\\r+\\r*\\r)\\r(\\r%\\r$\\r \\r\\x1d\\r\\x1c\\r\\x19\\r\\x18\\r\\x17\\r\\x16\\f\\xfb\\f\\xf7\\f\\xf3\\f\\xf2\\fw\\fi\\fh\\fX\\v\\xdb\\v\\xd0\\v\\xcc\\v\\xc8\\v\\xbf\\v\\xbd\\v\\xb5\\v\\xae\\v\\xa9\\v\\xa7\\v\\x86\\v\\x81\\v\\u007f\\vk\\vi\\v=\\v;\\n\\xe1\\n\\xd0\\n\\xb7\\n\\xb6\\n\\xa7\\n\\x80\\nU\\n*\\n\\x10\\n\\x0f\\n\\x06\\n\\x03\\n\\x00\\t\\xfe\\t\\xf9\\t\\xe4\\t\\xe3\\t\\xdc\\t\\xd3\\t\\xc7\\t\\xc5\\t\\xbd\\t\\xbc\\tl\\tk\\t\\x10\\t\\t\\b\\xe6\\b\\xdf\\b\\xd1\\b\\xcb\\b\\xad\\b\\xa2\\b\\x9c\\b\\x99\\bo\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x06\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00Z\\x00\\x8e\\x00\\xdc\\x01\\xa0\\x01\\xe8\\x02\\x14\\x02\\xda\\x03B\\x03\\xb6\\x04\\x04\\x04<\\x04x\\x04\\xec\\x05\\x10\\x058\\x05X\\x05\\xca\\x06\\n\\x06B\\x06\\x90\\x06\\xb8\\x06\\xec\\a\\x80\\a\\xb4\\a\\xd6\\b\\x04\\b@\\b\\x8e\\b\\xd0\\b\\xee\\t4\\v\\f\\vr\\v\\xe0\\f<\\f\\x88\\f\\xba\\r\\\"\\r\\xbc\\r\\xf0\\x0ef\\x0e\\x96\\x0e\\xe8\\x0fd\\x0f\\xe0\\x10\\x0e\\x10<\\x10h\\x10\\xe6\\x11p\\x11\\xbe\\x12\\x02\\x12P\\x12\\x8e\\x12\\xee\\x14\\x06\\x14\\x86\\x15\\x1e\\x15p\\x15\\xd4\\x16:\\x16\\xa8\\x17\\f\\x17.\\x18*\\x18l\\x18\\xb8\\x19x\\x1a\\x00\\x1a\\xd6\\x1b\\x80\\x1c*\\x1cP\\x1c\\x98\\x1c\\xe6\\x1d^\\x1d\\xde\\x1e\\b\\x1e\\x88\\x1e\\xf0\\x1f6\\x1f\\xb4!F\\\"\\x06$\\n$\\xf2%\\xaa&\\x1c&\\xa0'\\x04'\\xbe'\\xec)\\x10)>)\\x84)\\xde*Z+x+\\xb8,.,\\x86,\\xf4-\\x1e-^-~0\\x180b0\\xe01l1\\xbe2\\x1e2J2\\x823:3\\x9e4\\b4J4\\xb85\\xd46\\x1e6\\xfa767\\x967\\xe68\\xae9>9R9\\x909\\xaa:\\x18:\\x94:\\xd2;\\x16;8;\\xbc<2<Z<\\xd8=2=r=\\x94=\\xc6>\\x0e>j>\\xb6?D?\\xc4@0@\\xacA>A\\xd2BlB\\xb8CTC\\xa6D\\xceE\\x14EjF\\\"FnG\\x12GFG`HhH\\xdaIVJ\\x04J\\x8eJ\\xc8K\\x0eL8L\\xa4M\\x10M\\x8aNlN\\x98O\\nOnP\\x9aQ\\x0eQ~R^R\\xb8S\\x04STTjT\\xb4UFU\\xc0V\\x16V\\xa8W\\x18W~W\\xbcX\\bX:X\\xfeY\\xd2Y\\xfeZ*\\\\v\\\\\\xf8]d]\\xa2^*^R^t^\\xd2_D_\\xba_\\xdca(a\\\\a\\x80a\\xe0b\\x14b~dbd\\xa6eZe\\x8ee\\xfef`f~f\\xaag\\x16i\\xd8k(k\\\\l\\x0elLl\\xa8m m|p8p\\xc2q\\x12qrr(rtr\\xa8sZs\\xf0tTt|u\\x1euXu\\xc8u\\xe4v\\x10vJvvw\\x0ew\\x9ew\\xd4xZyPy\\xc8z`z~z\\xce{>|\\xa2}\\x00}T}\\xcc~\\x12~\\x8a\\u007f\\n\\u007fP\\u007fڀ\\n\\x80\\x82\\x80\\xe8\\x81\\x0e\\x814\\x81\\xb6\\x82\\f\\x82p\\x82\\u0383\\xf8\\x84H\\x850\\x85Z\\x85\\x96\\x85\\xb6\\x86^\\x87\\x00\\x88\\x96\\x89\\x04\\x89\\xfa\\x8aJ\\x8a\\U0010b08cF\\x8c\\xba\\x8d<\\x8d^\\x8dr\\x8e\\x18\\x8eƏ \\x90\\xa6\\x91*\\x92\\x8c\\x92\\xb4\\x93\\xac\\x95@\\x95^\\x95\\x82\\x96\\x80\\x98\\x18\\x98X\\x98v\\x99\\\\\\x99v\\x9a\\x1a\\x9aL\\x9a\\x82\\x9c\\\"\\x9d\\xbe\\x9dԞ\\x04\\x9e6\\x9e\\x84\\x9e\\x9e\\x9fJ\\xa0\\x06\\xa0B\\xa0ġ\\xa6\\xa2\\n\\xa2L\\xa2\\xae\\xa3\\x1a\\xa3n\\xa3\\xa0\\xa3\\xf4\\xa4H\\xa4\\xa2\\xa4\\xf8\\xa5\\x94\\xa62\\xa6\\x8a\\xa6\\xe0\\xa7n\\xa8B\\xa8Ʃ0\\xa9\\xba\\xaaV\\xaa\\xf0\\xab\\x1c\\xabĬ\\xc0\\xadd\\xaf\\xf6\\xb4X\\xb5\\x04\\xb5T\\xb6 \\xb7\\\\\\xb8(\\xb9̺\\f\\xbaP\\xba\\x8e\\xba\\xe2\\xbbX\\xbbȼ<\\xbc\\xe4\\xbd\\x18\\xbd\\x80\\xbd\\xac\\xbd\\xe2\\xbe(\\xbe\\xf6\\xbfN\\xc2\\xe2Þ\\xc7>ɴ\\xca\\fʎ\\xcb\\\"\\xce\\xc8\\xce\\xea\\xd1\\xc0\\xd1\\xdc\\xd2\\x02\\xd26Ҝ\\xd32Ӟ\\xd4\\x18\\xd4V\\xd4\\xd8\\xd5\\xf6\\xd6,֔\\xd7\\b\\xd70\\u05ec\\xd9\\xcc\\xda\\x18\\xdaVچ\\xdbN\\xdb\\xc6\\xdc\\\\\\xdc\\xcaݦ\\xde\\x16\\xdf0ߌ\\xdf\\xe8\\xe0&\\xe0\\xce\\xe1\\x88\\xe3V\\xe3\\xa6\\xe4\\\\\\xe4\\xf0\\xe5l\\xe5\\xb2\\xe6\\x14\\xe6\\xc0\\xe7.\\xe7\\xa0\\xe7\\xde\\xe8\\x88\\xe9\\x00\\xe9\\xba\\xea2\\xea\\x8a\\xea\\xc4\\xea\\xf2\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00;\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0567\\x06\\a67\\x06\\a&#\\\"\\x06\\x17&'\\x06\\x15\\x14\\x1e\\x01\\x17&'\\x15\\x14\\x16\\x17\\x06'\\x1e\\x013\\x06#\\\"'\\x1632>\\x0154\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01/\\x13\\x0e\\x13\\x13\\x15\\b\\x14\\x16\\x13\\x1c\\x1f(\\aS5\\t\\b\\x0e\\b\\x10\\x0e\\x1e\\x17\\x0e\\x10\\x06\\\"\\x15$-\\t\\a.79X)\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x9f\\x0e\\x14\\b\\x02\\r\\x17\\f\\x04\\x150!\\x05@\\x0f\\x12\\n\\x15\\x12\\x06\\x01\\b\\x01\\x18$\\x05\\x03\\x02\\x14\\x19\\x1c\\x01\\x1e:T-\\x05\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00$\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01537#54;\\x015&#\\\"\\x0e\\x01\\x1d\\x01#\\x153\\x15#\\\"&5\\x11463\\x01\\x90\\x14\\x1c\\x1c\\x14\\x89:\\vE(\\x1f\\x1c\\x1b\\x1d)\\x18??\\x89\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x98H/&=\\x05\\x16,\\x1e7H\\x98\\x1c\\x14\\x01`\\x14\\x1c\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x14\\x00\\x1c\\x005\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1335#\\x156264&\\\"\\x06\\x14\\x0154.\\x02#\\\"\\x06\\a#5#\\x15354632\\x1e\\x02\\x1d\\x01\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\rg\\x01C\\x11 \\x17\\x17 \\x16\\x01@\\x06\\x10!\\x18\\x17!\\a\\x01@C\\x10\\x17\\f\\x10\\x05\\x02\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfe\\x80\\xd6\\xd6\\xf3\\x17\\x1f\\x17\\x17\\x1f\\xfe\\xf6u\\x18\\\"\\x1d\\x0f\\x14\\x0e\\x1d\\xd6j\\x19\\x1e\\n\\x14\\x0f\\fh\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00V\\x00[\\x00c\\x00i\\x00p\\x00w\\x00}\\x00\\x85\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x17\\x1654&5\\x0e\\x01\\\".\\x01'&'0'43\\x16\\x17\\x16767.\\x03547&76\\x16\\x1f\\x0162\\x17>\\x02\\x17\\x16\\a\\x16\\x15\\x14\\x0e\\x02\\a\\x16\\x15\\x1c\\x01\\x15\\x14&\\x06&36\\a4#\\\"\\x15\\x1432&\\x06'&6\\x17'6&\\a\\x06\\x17\\x16'6'&\\a\\x06\\x16&6'&\\x06\\x17'6'\\\"\\a\\x06\\x17\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xe52=aEE]>2\\f\\x01\\x02\\x06\\x11\\x0e\\x0e\\x03\\a\\v\\a\\b\\x10\\t\\x11 \\x02\\b\\x12\\x14\\x19\\v\\x10\\t\\n\\x06\\x17\\t\\b\\x14+\\x14\\x04\\v\\x19\\x06\\n\\b\\x11\\f\\x1a\\x14\\x12\\vS\\a\\x01\\x03\\x04\\f\\x04\\x04\\x04\\x04\\r\\x02\\x03\\x04\\x02\\x03\\t\\x01\\x05\\x02\\x01\\x02\\x03\\a\\x02\\x02\\x02\\x02\\x02\\x04\\x06\\x03\\x02\\x02\\x03\\x02\\x04\\x01\\x02\\x02\\x01\\x01\\x03\\x02\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\x11W7D]]D7W\\x11\\x02\\n\\x01 \\b\\x01\\x01\\x03\\n\\t\\x13\\x05\\a\\x03\\x01\\x10\\x1d\\x0f\\x0f\\a\\x02\\x05\\x0e\\x1e\\x16\\x16\\x11\\x14\\x19\\x02\\t\\x05\\x05\\x05\\x05\\x02\\a\\n\\x02\\x18\\x15\\x12\\x15\\x16\\x1e\\x0e\\x05\\x02\\t\\x15\\x0e)\\x01\\n@\\x01\\x05\\x01\\x05\\x03\\x03\\x02\\x06\\x05\\x01\\x01\\x05\\x01\\x02\\x01\\x06\\x02\\x02\\x03\\x02\\v\\x01\\x03\\x03\\x02\\x01\\x05\\t\\x03\\x02\\x02\\x03\\x02\\a\\x01\\x02\\x01\\x01\\x01\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\x90\\x000\\x00\\x00\\x01\\x16\\x15\\x14\\x0e\\x02#\\\"'\\x16327\\\"&'\\x16327.\\x02=\\x01\\x16\\x17&547\\x1e\\x01\\x17&54632\\x1767\\x06\\a67\\x06\\x01\\xcb\\x01(ItFXI\\v\\x0eI:#5\\n\\n\\t\\x0e\\x0e\\x18&\\x16\\x16\\x19/\\x0f'q@\\x02=+.\\x1f$\\x1f\\f\\\"\\x1e\\x1e\\x16\\x01(\\x04\\t5iW6/\\x01-)\\x1f\\x01\\x03\\x05\\x1e+\\x19\\x02\\r\\x01 8\\x1c\\x191:\\x03\\f\\f+>!\\a\\x12%\\x15\\x04\\r \\x00\\x01\\x00\\b\\xff\\xcb\\x01\\xf8\\x01\\xb8\\x00\\x1e\\x00\\x00%\\x14\\x06\\a537#54;\\x015&#\\\"\\x0e\\x01\\x1d\\x01#\\x153\\x15.\\x015462\\x16\\x01\\xf8xY:\\vE(\\x1f\\x1c\\x1b\\x1d)\\x18??Yx\\x91Α\\xc0\\\\\\x8b\\x0e\\xadH/&=\\x05\\x16,\\x1e7H\\xad\\x0e\\x8b\\\\g\\x91\\x91\\x00\\b\\x00\\x00\\xff\\xd3\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x14\\x00e\\x00m\\x00u\\x00}\\x00\\x84\\x00\\x007\\x14#\\x065436\\x066\\x17\\x16\\a\\x06'72\\x16\\a\\x06&\\x132\\x1e\\x01\\x15\\x14\\x06\\a\\x06&5<\\x0154'>\\x0454&'6'&\\x06\\x0f\\x01&\\\"\\a.\\x02\\a\\x06\\x17\\x06\\x15\\x14\\x1e\\x03\\x17\\x06\\a\\x0e\\x01&'.\\x01/\\x01\\\"\\x17\\x1e\\x01\\x1f\\x01\\x1e\\x022?\\x01\\x14\\x16\\x15\\x14\\x06'.\\x01546\\x036\\x17\\x16\\a\\x06'&'6\\x17\\x16\\a\\x06'&\\x176\\x17\\x16\\a\\x06'&'6\\x17\\x16\\a\\x06&\\xa6\\x05\\x06\\x05\\x06!\\x03\\x05\\x05\\x01\\x01\\x05(\\x05\\x01\\x05\\x05\\x01GDtC]K\\b\\t\\x11\\x16\\x18$\\x13\\x0e\\f\\x0e\\f\\x0e\\n\\\"\\r\\f\\x1fA\\x1e\\x05\\x12%\\t\\x0f\\f\\x17\\x0e\\x12\\\"\\x19\\x15\\r\\x03\\n\\x15 \\n\\x06\\x13\\a\\x06\\x16\\x14\\a\\x0e\\x03\\x04\\x04\\x14\\x18\\x16\\a\\a\\x01\\t\\bL^\\x8d,\\x02\\x03\\x03\\x02\\x02\\x03\\x03\\t\\x02\\x03\\x03\\x01\\x01\\x03\\x04\\\"\\x02\\x04\\x04\\x02\\x03\\x04\\x04\\t\\x03\\x03\\x03\\x03\\x03\\x053\\x04\\x01\\x05\\x03\\x01\\x04\\b\\x02\\x01\\x04\\x04\\x02\\a\\x06\\x02\\x01\\b\\x01\\x80@pDS\\x83\\x19\\x02\\b\\x06\\x01?\\x14 \\x0e\\x03\\x04\\x0e\\x16(\\x1c\\x13\\x18\\x0f\\x1f%\\x03\\r\\b\\t\\t\\t\\x04\\v\\x0f\\x03%\\x1f\\x19!\\x1c(\\x16\\x0e\\x05\\x02\\f\\x16\\x04\\x04\\f\\x11\\v\\r\\x01\\x01\\x0f\\x04\\x12\\a\\b\\f\\x10\\x04\\x01\\x01\\f0\\x01\\x06\\b\\x02\\x19\\x83Sh\\x8c\\xfe\\xa7\\x02\\x03\\x03\\x02\\x02\\x03\\x03\\n\\x02\\x01\\x02\\x02\\x03\\x02\\x02!\\x03\\x04\\x04\\x03\\x03\\x04\\x04\\x11\\x03\\x05\\x04\\x02\\x02\\t\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00J\\x00\\x00\\x00\\x14\\x06#\\\"'6?\\x01\\x1e\\x0132654&#\\\"\\x06\\x15\\x14\\x16\\x17\\x167>\\x0176'&54632\\x16\\x15\\x14\\x0e\\x01#\\\"&7>\\x0254.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x04\\x15\\x17\\x06\\a\\x06\\x17.\\x015462\\x01\\xf0\\x91g&#\\x18\\x06\\x10\\x06 \\x137IXALW\\x1c\\x16\\a\\x01\\x01\\x05\\x01\\x01\\x03\\x12=3.:\\x15$\\x15\\x13\\x16\\x04\\x02\\f\\x06\\x06\\x0f\\n\\x13\\x1a\\x01\\x01\\x02\\x01\\x02\\x01\\x19\\x05\\x05\\x05GW\\x91\\xce\\x01'Α\\v(\\x19;\\f\\x10YA=RX>\\x1d9\\n\\x03\\x06\\x02\\x17\\x03\\x04\\x03\\x17\\\"+A9,!4\\x1d\\x1b\\x12\\n$\\x1b\\n\\t\\x10\\t\\\"\\x1a\\x04\\t\\a\\a\\x04\\x04\\x01\\x01g\\x14\\x19.\\x1b~Ng\\x91\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00R\\x00\\x00\\x01\\x11\\x14\\x06+\\x016?\\x01\\x1e\\x0132>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x17\\x1674676'&54632\\x16\\x15\\x14\\x0e\\x01#\\\"&7>\\x0254'&\\a\\x06\\x15\\x14\\x1e\\x02\\x1f\\x01\\x0e\\x05\\x16\\x1f\\x01#\\\"&5\\x11463!2\\x16\\x01\\xc0\\x1c\\x14\\xf6\\x16\\x06\\x0f\\x06 \\x12%:!WAKW\\x1c\\x16\\a\\x01\\x06\\x01\\x01\\x03\\x12=2-:\\x15#\\x16\\x12\\x16\\x04\\x02\\v\\a\\x19\\x1b\\x0f\\b\\x01\\x02\\x02\\x01\\x01\\x05\\r\\x05\\a\\x01\\x01\\x01\\x01\\x03Y\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x01p\\xfe\\xa0\\x14\\x1c$\\x17;\\f\\x10(F*=QW>\\x1c8\\v\\x03\\a\\x01\\x16\\x04\\x04\\x03\\x17!+@8, 4\\x1c\\x1a\\x12\\v#\\x1b\\t\\x1e\\x04\\x04\\x1c\\x0f\\x14\\x06\\f\\t\\x06\\x02\\x02\\x157\\x14 \\f\\x16\\x11\\r\\x01\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00+\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132654'#\\x153\\x0e\\x01#\\\".\\x0154632\\x177&#\\\"\\x06\\x14\\x16%5#5#\\x15#\\x153\\x1535\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14t+5\\x02^9\\x03\\x1c\\x1a\\x11\\x1c\\x11$\\x1a\\x18\\x10\\x1b\\x1c');;\\x01\\x05\\x1d\\x1d\\x1d\\x1d\\x1d\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xbc6,\\b\\b\\\"\\x0f\\x1c\\x11\\x1d\\x11\\x1a%\\x0f\\x1a\\x1a;R;R\\x1d\\x1d\\x1d\\x1d\\x1d\\x1d\\x00\\x02\\x00\\f\\x00\\x00\\x02t\\x01\\x80\\x00\\x1b\\x00'\\x00\\x00%\\x16\\x15\\x14\\x06#\\\"&4632\\x17\\a&#\\\"\\x0e\\x01\\x15\\x14\\x163267#5\\x053\\x15#\\x15#5#5353\\x01\\x82\\x03fRPppPK54\\x1e. 7 F126\\x05m\\x01n888778\\xdc\\x11\\x0fSip\\xa0p22\\x1d 8!2G6\\x1cC\\a88888\\x00\\x03\\x00\\x00\\x00\\x00\\x01\\xc0\\x01\\xc0\\x00\\x03\\x00\\x0f\\x00(\\x00\\x003#\\x113'\\\"&4632\\x1e\\x01\\x14\\x0e\\x01\\x01#54.\\x02#\\\"\\x06\\x1d\\x01#\\x113\\x153>\\x0132\\x1e\\x02\\x15d]].\\x16  \\x16\\x0e\\x19\\x0f\\x0f\\x19\\x01|]\\x02\\b\\x15\\x11!\\x17]Z\\x01\\n. \\\"-\\x17\\t\\x01+) , \\x0e\\x19\\x1d\\x19\\x0f\\xfe\\xac\\x92\\x11\\x15\\x1b\\x0e*#\\x94\\x01+)\\x14\\x1d\\x15)0!\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x01\\xe0\\x01\\x80\\x00\\n\\x003\\x00L\\x00T\\x00\\x006\\x14\\x06#\\\".\\x015462\\x05\\x14\\a\\x0e\\x05#*\\x01.\\x04'&547&5472\\x16\\x17632\\x17>\\x013\\x16\\x15\\x14\\a\\x16\\a4&#\\\"\\a\\x06\\\"'&#\\\"\\x06\\x15\\x14\\x1e\\x03;\\x012>\\x02&2\\x16\\x14\\x06\\\"&4\\xba\\x13\\x12\\f\\x11\\a\\x13#\\x019\\x12\\t\\x1b) 7\\x18\\x1c\\x1c\\x0f6\\x18-\\x18\\x1c\\b\\x14*\\b\\x0e#1\\x19*/*&\\x191\\\"\\x0f\\b'@(\\\"\\f,\\x150\\x15+\\r\\\"(\\x13\\x1c*&\\x180\\x1e0/\\x1ad#\\x13\\x13#\\x14\\x8a&$\\x14\\x18\\v\\x13$\\x04;$\\x13\\x1b\\x10\\t\\x03\\x01\\x03\\x04\\v\\x10\\x19\\x10(7A0\\x18\\x19\\x17\\x1d\\x10\\x14\\n\\t\\x14\\x0f\\x1d\\x17\\x19\\x17.w#0\\x06\\x03\\x03\\x060#\\x19&\\x15\\r\\x04\\a\\x14+V$&$$&\\x00\\x00\\x01\\x00\\x00\\x00\\x05\\x02\\n\\x01{\\x00\\x13\\x00\\x00%#76&+\\x01\\x03#\\x13#\\x03#\\x13'!2\\x17\\x16\\a\\x01\\xcda4\\x03\\x10\\x101<a;S<a<-\\x01t>$%\\r\\x05\\xf3\\x10\\x13\\xfe\\xea\\x01\\x16\\xfe\\xea\\x01\\x16`--=\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x04\\x00\\x15\\x00\\x00\\x11!\\x03\\a'\\x017#\\x173\\x0f\\x01/\\x01#\\x1f\\x013?\\x01#'\\x01\\x80#\\x9d\\x9d\\x01\\x11\\x05\\xf1\\f\\xa7\\x0656\\x04/\\x06c\\x01a\\x0e\\xb0\\x04\\x01\\xa0\\xfet44\\x01\\f0\\x92>\\x0e\\x0e&L\\x1b\\x1b\\x951\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xe0\\x01\\xa0\\x00\\x0f\\x00\\x00\\x01\\x03\\a'73\\a\\x17?\\x01!7!7!7\\x01\\xe0@\\xdf\\xc1\\x14R\\bt\\x86\\x13\\xfe\\xb3\\x10\\x01M\\v\\xfe\\xb2\\x11\\x01\\xa0\\xfe\\x90PP_),,aR5R\\x00\\x03\\x00\\x03\\xff\\xc0\\x01\\x84\\x01\\xc0\\x00.\\x00A\\x00T\\x00\\x00%\\x16\\a\\x0e\\x01\\a\\x15#5\\\"#\\x15#5\\\"#723\\x16>\\x0175.\\x01\\a\\\"#5\\x16753\\x156353\\x15\\x1e\\x04\\x17\\x16'\\x152\\x1662>\\x0454.\\x04\\x06\\a2\\x16>\\x0654.\\x04\\x06#\\x016M\\a\\x06GB1\\x19\\r1\\tX\\n\\x03\\a\\x11\\r\\f\\x01\\x03\\x17\\x1d\\x05\\x03T\\r1\\x19\\r1\\x13 \\x1d\\x14\\r\\x01\\x06\\xce\\x01\\x13\\n\\x15\\x0e\\x13\\f\\v\\x06\\t\\x12\\x11\\x1b\\x0f\\x1a\\x01\\x01\\x17\\f\\x19\\x10\\x16\\x0e\\r\\a\\v\\x15\\x13!\\x10 \\x01\\xcd\\x12R5,\\x04DCCD:\\x01\\x01\\b\\b\\xd9\\x10\\a\\x014\\x01\\x01ON\\x01MO\\x02\\a\\f\\x12\\x1b\\x10:T`\\x01\\x01\\x03\\x04\\b\\n\\x0e\\t\\f\\x11\\v\\x06\\x02\\x01\\x01\\xfb\\x01\\x01\\x01\\x03\\x04\\t\\n\\x10\\n\\r\\x13\\v\\b\\x02\\x01\\x01\\x00\\x00\\x00\\x00\\x02\\x00\\x0e\\x00\\x00\\x022\\x01\\x80\\x00$\\x00'\\x00\\x00\\x01\\x1e\\x03\\x1d\\x01\\x14\\a\\x0e\\x01\\a\\x0e\\x01\\a#\\\"'&'.\\x01'547>\\x017>\\x01732\\x17\\x1e\\x01\\x057'\\x02&\\x03\\x05\\x02\\x01\\v\\x05\\x1a\\x12\\x13j,,\\xab*'\\n\\x05\\x05\\x01\\v\\x05\\x1a\\x12\\x13j,,\\xab*\\x12\\x1a\\xfeǏ\\x8f\\x01D\\f$#\\x1e\\n\\tZ+\\x11\\x1a\\x05\\x05\\x05\\x01\\v\\v%\\x13C\\x17\\x18Y+\\x12\\x1a\\x05\\x05\\x05\\x01\\v\\x05\\x1a\\xe8RQ\\x00\\x02\\xff\\xfe\\xff\\xdf\\x01\\x82\\x01\\xa0\\x00\\x10\\x00#\\x00\\x0070\\a\\x06+\\x01\\\"&?\\x01'&6;\\x012\\x17%\\a\\x17\\x16\\x06+\\x01\\\"/\\x01>\\x0276;\\x012\\x16\\xa3F\\b\\nA\\x06\\x05\\x02E,\\x03\\x06\\x06A\\v\\a\\x01\\t\\x90[\\x03\\x05\\x06B\\v\\a\\\\\\x01\\x1fH)\\a\\nB\\x06\\x05\\xee|\\f\\t\\x05zL\\x05\\t\\fV\\xfd\\xa7\\x05\\t\\f\\xa9\\x026\\u007fH\\f\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00 \\x001\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132767'&+\\x01\\\"\\x06\\x1f\\x01\\a\\x06\\x163%6&+\\x01\\\"\\a\\x06\\a\\x17\\x16;\\x0126/\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\\\\\b\\x050\\x02 \\x05\\b.\\x05\\x03\\x02\\x1f1\\x02\\x04\\x04\\x01\\n\\x02\\x04\\x04/\\a\\x05f\\x02B\\x05\\b/\\x04\\x04\\x02B\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xe0\\tU\\x037\\t\\x06\\x046W\\x04\\x06\\xd6\\x04\\x06\\t\\xb3\\x03x\\t\\x06\\x04w\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x10\\x01\\xa0\\x00\\a\\x00\\v\\x00\\x13\\x00\\x00\\x01\\a\\x17\\a'7'7\\x117\\x17\\a57'7\\x17\\a\\x17\\a\\x01\\b\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x01LUTTUTTT\\xfe\\x94UUT\\xc4TTTTUTT\\x00\\x00\\x06\\x00\\x02\\xff\\xe0\\x01~\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x1b\\x00\\x00%\\a'?\\x01\\a'7\\x17\\a'?\\x01\\x17\\a'\\x13\\x15#5\\x1753\\x15!53\\x15\\x01#\\t\\xc3\\b\\xf7\\x1a\\x99\\x19z\\x10\\xb6\\x11\\x85w w4\\xc8\\xf0(\\xfe\\x99(\\x89')'.\\x1f\\x81\\x1e\\xa8$T%\\x93\\xa0\\x18\\xa0\\xfe\\xd0((Px\\xa0\\xa0x\\x00\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xe0\\x01\\xc1\\x01\\xa1\\x00\\a\\x00\\x0f\\x00\\x17\\x003\\x00k\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x146\\x14\\x06\\\"&462\\x17\\x16\\x14\\a\\x0e\\x01\\a\\x06\\\"'&'.\\x025&47676762\\x17\\x1e\\x01\\x03>\\x02<\\x04.\\x01'&'.\\x02*\\x01#*\\x02\\x0e\\x01\\a\\x06\\a\\x0e\\x02\\x1c\\x01\\x15\\x1c\\x02\\x1e\\x02\\x17\\x16\\x17\\x1e\\x02:\\x013:\\x02>\\x0176\\xb0`CC`CT>,,>,\\xdd\\x0f\\x16\\x10\\x10\\x16\\\\\\x01\\x01\\x03C=\\x1b\\x82\\x1b=!\\r\\x10\\a\\x02\\x02\\x03!!=\\x1b\\x82\\x1b=C-\\x03\\x04\\x02\\x02\\x04\\x03\\f\\x1f\\b\\x19#\\x15)\\x02\\x02(\\x16#\\x19\\b\\x1f\\f\\x03\\x04\\x02\\x01\\x02\\x04\\x02\\r\\x1e\\b\\x19#\\x15)\\x02\\x03'\\x16#\\x19\\b\\x1f\\x013C`CC`{,>,,>\\xa2\\x16\\x10\\x10\\x16\\x0f6\\x1b\\x82\\x1b=C\\x02\\x02\\x02\\x03!\\f \\x1e\\x14\\x1b\\x82\\x1c<!\\\"\\x03\\x01\\x01\\x03C\\xfe\\xe3\\b\\x19#\\x16(\\x05'\\x16#\\x19\\b\\x1f\\f\\x03\\x04\\x02\\x02\\x04\\x03\\f\\x1f\\b\\x19#\\x15)\\x02\\x04\\x1d\\x13\\x1e\\x15\\x16\\a\\x1f\\f\\x03\\x04\\x02\\x02\\x04\\x03\\r\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14F5%%5%\\xc45%%5%\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xe1%5%%5%%5%%5\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x02\\x00\\n\\x00\\x11\\x00\\x00\\x13\\x17#$\\x14\\x06\\\"&462\\x13'\\a373\\x17\\xf8A\\x82\\x019\\x91Α\\x91\\xce-\\x94\\x94\\x1e\\\"\\xa8\\\"\\x01\\x18bqΑ\\x91Α\\xfe\\xb5\\xdf\\xdf44\\x00\\x02\\x00\\x06\\xff\\xdf\\x01\\xfa\\x01\\xa1\\x00\\x17\\x00\\x1b\\x00\\x00\\x13!23\\x1e\\x03\\x15\\x14\\x15\\x03\\x0e\\x01#!\\\"&'\\x034546\\x017#\\x17\\x16\\x01\\xd3\\x01\\x02\\x03\\x04\\x04\\x02D\\x01\\t\\x06\\xfe\\xba\\a\\r\\x01D\\t\\x01%\\x19\\x9d\\x1c\\x01\\xa0\\x01\\x03\\x04\\x05\\x03\\x01\\x02\\xfe_\\x05\\b\\v\\a\\x01\\x9c\\x02\\x01\\a\\t\\xfe֓\\x93\\x00\\x01\\x00\\a\\xff\\xc0\\x01:\\x01\\xc0\\x00)\\x00\\x00\\x05\\x0e\\x01#\\\".\\x02=\\x01#\\\"=\\x0147>\\x0176;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14\\x1676\\x17\\x16\\x1f\\x01\\x16\\x016\\f5!*>\\x1e\\r/\\n\\v*(\\x03\\x01\\x0fF\\nT\\n\\nT#!\\t\\x04\\x05\\x02\\x16\\x04 \\r\\x13\\x1c.,\\x17\\x90\\nD\\f\\x04\\x0eB%\\x10\\ns\\nR\\n\\x85\\x1b\\x15\\f\\x04\\x02\\x01\\a@\\n\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x016/\\x01&'&\\a\\x06&=\\x0132=\\x014+\\x0154+\\x01\\\"\\a\\x06\\a\\x06\\x1d\\x01\\x14;\\x01\\x15\\x14\\x1e\\x0232\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x0e\\x02\\x02\\x0e\\x01\\x03\\x03\\x05\\x15\\x164\\x06\\x064\\x06,\\t\\x01\\x041\\a\\x06\\x1e\\b\\x13&\\x1b*\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x94\\x02\\a(\\x04\\x01\\x01\\x02\\b\\r\\x11S\\x064\\x06H\\x06\\n8\\x11\\x03\\a+\\x06Z\\x0e\\x1c\\x1c\\x12\\x00\\x02\\x00\\x03\\xff\\xdf\\x01}\\x01\\xa0\\x00\\x1f\\x00(\\x00\\x00%\\x14\\x17\\x0e\\x01\\a\\\"&#\\\"\\x06#\\x06.\\x01'&54672\\x1632>\\x02\\x17\\x16\\x17\\x06'\\x06'&7>\\x017\\x16\\x01?=\\f: \\x0e.\\x11\\x11/\\v\\x161\\x1d\\b\\x0eE.\\x0f8\\x06\\x04\\x15\\x16\\x1d\\f9\\x1c38 %\\x04\\x1d\\f&\\x12\\x03\\xb3?\\x1d&P\\x01\\x12\\x12\\x0126\\x16*'?F\\x01\\x14\\a\\t\\x06\\x01\\x05(\\x1en&\\x03( \\x0e\\x14\\x01(\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x00\\x117\\x15#\\x1553\\x15\\x1753\\x15\\x037\\x15#\\xb8\\xb8\\xb8\\x14\\xf4\\xf4\\xf4\\xf4\\x01b\\x1a\\xb2\\xac\\x96\\xb0\\x02\\xb2\\xd4\\x01\\x9e\\\"\\xd6\\x00\\x00\\x00\\x03\\x00\\x00\\x00@\\x02@\\x01\\x86\\x00\\a\\x00\\x0f\\x00-\\x00\\x00$\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14?\\x01654#\\\"\\x0f\\x01.\\x02#\\\"\\x06\\a'&#\\\"\\x15\\x14\\x1f\\x01\\x0e\\x01\\a!.\\x01\\x01\\xae\\x13\\x0e\\x0e\\x13\\x0f\\xfe\\xe8\\x13\\x0f\\x0f\\x13\\x0e\\xfa0\\x02\\n\\x06\\x031\\x10,-\\x12\\x1bH\\x181\\x03\\x06\\n\\x020?N\\x06\\x02@\\x06N\\x92\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x83S\\x02\\x03\\n\\x05U\\b\\f\\a\\x10\\vU\\x05\\n\\x03\\x02S\\\"xIIx\\x00\\x00\\n\\x00\\t\\xff\\xbd\\x01\\xb5\\x01\\xc1\\x00\\v\\x00\\x19\\x00k\\x00~\\x00\\x90\\x00\\xa8\\x00\\xc4\\x01\\n\\x01)\\x01C\\x00\\x00\\x13#'476\\x17\\x16\\x14#\\\"&\\a\\\"5476\\x172\\x06\\a\\\"10\\x06\\x13\\x16\\x15\\x06\\a\\x0e\\x02\\a\\x06\\a\\x06'&'\\x06&\\a\\\"\\x0e\\x02#\\x06\\a\\x06'.\\x02'&'&76'&5476767>\\x017&767674.\\x01>\\x0232\\x1e\\x02\\x06\\x17\\x06\\x1e\\x01\\x17\\x16\\x17\\x16\\a\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x03\\x06\\x17\\x16\\x17&63\\x1e\\x01\\a\\\"\\a\\x16\\x176'&\\\"\\a\\\"\\x06\\x1760'&672\\x1e\\x01\\x15676&\\a\\x06\\x17\\x16\\x17\\x1e\\x023\\x1667676'.\\x01'&#\\\"\\a\\\"\\x036&/\\x01&'&\\a\\x0e\\x01\\a\\x06\\a\\x06\\a\\x06\\x17\\x16\\a\\x06\\x17\\x1e\\x02\\x17\\x1665\\x16676567676\\x17\\x16\\a36'6'&'\\\"\\x17\\x1e\\x01\\a&#&'&'\\x06\\a\\x0e\\x02\\a\\x06'.\\x01'&'\\x0e\\x04\\a\\x06\\a&76\\a\\x06\\a\\x06\\x17\\x16\\x17\\x16\\x17\\x16\\a\\x06#\\x16%4'.\\x02'&\\a\\x0e\\x01'&'\\\"1\\x06\\a\\x06\\a\\x14\\a\\x06\\x17\\x16767>\\x02\\x03&72\\x161\\x16\\x17\\x1632767>\\x01\\x172\\a\\x06\\a\\x06#\\\"'&\\xdd\\x02\\x02\\x01\\x02\\x04\\x03\\x03\\x01\\x02\\x16\\x03\\x03\\x04\\x02\\x01\\x01\\x02\\x01\\x02\\xdc\\x10\\x01\\r\\x05\\x17\\x11\\x06\\x16\\x1b\\x1b\\r\\x01\\x01\\f%\\a\\a\\x0f\\n\\f\\x04\\a\\x13\\x19\\x1f\\b\\x15\\x18\\x06\\x0f\\x05\\x05\\a\\x02\\x03\\x01\\x03\\x05\\r\\x0e\\x04\\x01\\v\\x04\\x04\\n\\x0f+\\x14\\x03\\x02\\x01\\b\\x0f!\\x19\\x17 \\r\\b\\x01\\x01\\x01\\f\\n\\f!\\r\\x11\\r\\x02\\x02\\x02\\x02\\a\\x04\\x04\\xc1\\x05\\x02\\b\\x05\\x02\\b\\x06\\x06\\x06\\x03\\x01\\x03\\t\\x03\\x0f\\n\\b\\x1d0\\x0e\\x06\\f\\x06\\x01\\x05\\x01\\x06\\x03\\x05\\x02\\x04\\x06\\x01\\f\\x16\\x06\\x02\\x03\\f\\x03\\r\\b\\x06\\n\\x1a\\x02\\x12\\x04\\x05\\x0f\\x04\\x0f\\x04\\x0e\\f\\f\\x0f\\x01\\n\\x01(\\x02\\x14\\n\\f\\n\\b\\x02\\t\\x03\\x06\\r\\v\\x04\\x03\\x02\\x03\\x02\\a\\x04\\x03\\x19$\\f\\x182\\x1f9\\x1b\\x06\\x02\\x03\\x05\\x10\\x03#\\x1c\\x05\\x05\\x06%\\x04\\x05\\b\\x1b\\x04\\a\\r\\x13\\t\\x06\\x05\\x05\\x12\\x19\\r\\a\\x0f\\x02\\x05\\a\\x02\\x18\\x12\\x01\\t\\x03\\x02\\x04\\x01\\x05\\v\\b\\f\\x02\\r\\x01\\x18\\x1b\\f\\x04\\x16\\x05\\x05\\x05\\x06\\x13\\x19\\r\\v\\x03\\x04\\r\\n\\x01\\x06\\x0e\\x04\\x05\\x04\\x04\\a\\x10\\x06\\x17\\t\\x11\\x02\\x01\\n\\x04\\x02\\x02\\n\\x06\\x05\\v\\x17\\x18\\x14\\t \\x15\\xff\\x04\\x03\\x01\\x03\\x05\\x03\\f\\f\\f\\x12\\x02\\f\\x02\\x03\\x01\\x04\\a\\a\\b\\x14\\v\\x0e\\x0e\\x03\\x01E\\x01\\x01\\x01\\x01\\x02\\x01\\x03\\x02\\x02\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x02\\xfe\\xe9\\x12\\f\\n\\b\\x02\\v\\f\\a\\x1a\\x02\\x02\\x19\\x03\\x04\\x01\\x06\\x01\\x03\\x02\\x02\\x10\\x04\\x06\\x11\\x04\\x04\\x03\\x01\\x03\\t\\v\\x15\\x05\\x10\\b\\x04\\a\\x05\\n\\x05\\x05\\x03\\x02\\x0f\\x03\\x18\\x1d.3\\x1c%\\x05 \\x19\\\"\\x17\\x10\\x13\\x1d#\\\"\\x0e\\x0e\\x1c\\x10\\x0e(#*%\\x01\\x01\\x01\\x02\\x05\\x11\\x10\\x019\\v\\v\\x02\\x03\\t\\x0f\\x01\\x12\\t\\x04\\x03\\x02\\x11\\x17\\x10\\x05)\\v\\x05\\x01\\x05\\x16\\x01\\x06\\t\\x05\\x03\\x02\\x0e\\x13<\\x05\\b\\b\\a\\x02\\v\\x04\\x01\\x0f\\x01\\x05\\r\\f\\x06\\x02\\x05\\x02\\t\\x0e\\xfe\\xa8\\v5\\x04$\\x0e\\x02\\x02\\t\\x02\\r\\x03\\x05\\x05\\x04\\a\\x06\\x0e\\x12\\x06\\x13\\b\\x06\\x04\\x05\\x06\\x0f\\b2\\x11\\x06\\x13\\x15\\b\\x1c\\f\\x15\\x06\\x1c\\x10\\f\\x0e\\x14\\x0f\\x11\\x13#\\x18\\a\\f1\\x18\\x02\\x1f!.2\\n\\x05\\x01\\x02\\x05\\x01\\x0e\\x0f\\x01\\b\\x01\\x02\\x03\\v\\x19\\x1a\\x14\\x1b\\x04\\x1f\\x1f 3\\x16\\x01$\\x18\\x13\\x10\\x12\\f\\x0e\\x12\\x0f\\n\\t\\f\\x04\\t\\x10\\x04\\x12\\x10\\x03\\x06\\x01\\a\\v\\x02\\x04\\x19\\x05\\x10\\v\\x1c\\x03&\\x17\\r\\x15\\x02\\x02\\x17\\v\\x11\\f\\x01#\\x04\\x03\\x05\\x05\\x02\\n\\n\\x02\\b\\x01\\x05\\x01\\x06\\a\\x04\\n\\n\\x03\\x00\\a\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x11\\x00\\x1a\\x00\\\"\\x00.\\x006\\x00<\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%\\x0e\\x02\\a\\x16\\x176\\x17&'.\\x01\\a\\x16\\x17>\\x02'\\x0e\\x02\\a\\x167&\\a\\x14\\x17>\\x027&'\\x06'\\x14\\x17\\x1e\\x017&'\\x0e\\x01\\x1767&\\a\\x16\\x99Α\\x91Α\\x01\\x9c\\x06\\x13:#\\t\\tIK\\x01G'd3+$\\\"7\\x11\\xe1\\x1e0!\\x06^e$\\xa47\\x116H%\\a\\nlnR.t3\\r =Y\\xe6M\\x0e?E\\x1d\\x01\\xb8\\x91Α\\x91\\xce\\x1f\\b\\x14*\\x0e\\x14\\x16\\n\\x10JR#\\x19\\f9C\\f&\\x13(\\x0e,9!\\x01\\x1bA\\x86R<\\x1e8.\\n\\x12\\x12 \\x02\\x03\\xaa%\\x0e\\x17MS\\x14K.4Z\\x14\\vP\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00\\x1b\\x00S\\x00\\x00%\\x16\\x15\\x14\\x06#\\\"'\\x06#\\\"&547&54632\\x17632\\x16\\x15\\x14\\a2654'&'.\\x035432\\x1e\\x0132>\\x0254&\\\"\\x06\\x15\\x14\\x1e\\a\\x17\\x1e\\x02\\x15\\x14\\x06#\\\".\\x02#\\\"\\x06\\x15\\x14\\x16\\x01\\xa9\\x17B.&\\x1e\\x16\\x16Ux\\x04\\x17B.&\\x1e\\x16\\x16Ux\\xc7-C[\\x05\\v\\x11\\x0e\\x11\\x05*\\x14\\x19\\x13\\v\\a\\f\\a\\x05DWA\\x03\\t\\b\\x12\\t\\x19\\n\\x1f\\x05\\x11\\f\\r\\x18\\x13\\x12\\x1c\\r\\x13\\n\\x0e\\x0fG\\x94\\x1e&.B\\x17\\x04xU\\x15\\x17\\x1e&.B\\x17\\x04xU\\x15r-)9\\x15\\x01\\x02\\x04\\x04\\a\\b\\a\\x16\\x10\\x11\\x05\\t\\v\\a\\x18\\x1f()\\v\\x12\\x0e\\n\\n\\x06\\a\\x03\\a\\x01\\x05\\x03\\v\\t\\f\\x0f\\x0e\\x11\\x0e\\x11\\r\\x1b&\\x00\\x02\\x00\\x00\\xff\\xb6\\x01t\\x01\\xbd\\x00\\x16\\x00?\\x00\\x00\\x012\\x16\\x0f\\x01\\x0e\\x03+\\x01\\\"\\a\\x06\\a\\x06'&5\\x11463\\x056&+\\x01\\\"\\x06\\x15\\x11\\x14?\\x01>\\x01;\\x012>\\x017676&+\\x01\\\"&=\\x014>\\x02;\\x012>\\x025\\x01C\\x1d\\x14\\a0\\x02\\x04\\t\\x11\\rS\\x04\\x03\\x02\\x81\\r\\x14\\x12\\x19\\x19\\x01\\x01\\x01\\b\\a\\xdb\\a\\t\\x02Y\\a\\t\\vI\\x05\\a\\x04\\x01\\x04\\a\\x02\\n\\aZ\\t\\v\\x03\\x05\\b\\x04j\\x03\\x06\\x05\\x03\\x01\\xbd !\\xf3\\t\\b\\x10\\a\\x03\\x03\\x95\\x0f\\b\\a\\x17\\x01\\xb2\\x11\\x1dJ\\a\\v\\v\\x06\\xfe\\xad\\x02\\x02l\\b\\x05\\x05\\x06\\x02\\x16%\\a\\v\\f\\t\\r\\x04\\b\\x05\\x03\\x03\\x03\\x05\\x03\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x12\\x00#\\x005\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x0e\\x01#!\\\"&54=\\x01463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1e\\x01;\\x0126754&+\\x01\\\"\\x0e\\x01\\x1d\\x01\\x14\\x1e\\x01;\\x0126\\x01\\x88\\x17!\\x0f\\x1a\\x0f\\xfe\\xb0\\x17!!\\x17\\x8d\\x10\\vS\\v\\x10\\b\\f\\aS\\v\\x10\\xc1\\x10\\vQ\\a\\r\\a\\b\\f\\aQ\\v\\x10\\x01\\xa0!\\x17\\xfe\\xb0\\x0f\\x1a\\x0f!\\x17\\xab}(\\x17!\\xfe\\xad\\xfe\\v\\x10\\x10\\v\\xfe\\b\\f\\a\\x10{\\x8e\\v\\x10\\b\\f\\a\\x8e\\b\\f\\a\\x10\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1b\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05>\\x02&'&\\x06\\a\\x0e\\x01'.\\x01\\a\\x0e\\x01\\x16\\x1f\\x01\\x91Α\\x91Α\\x01k\\x03\\x05\\x01\\f\\v\\x17!\\f\\f&\\f\\f\\\"\\x17\\x0e\\n\\x06\\x05q\\x01\\xb8\\x91Α\\x91\\xceQ\\x05\\x10\\x15\\x16\\b\\v\\t\\x0e\\r\\x01\\x0e\\x0e\\t\\v\\n \\x17\\a\\x99\\x00\\x00\\x00\\x00\\x01\\x00\\x12\\x00 \\x024\\x01`\\x00M\\x00\\x00\\x01\\x0e\\x02\\a\\x06\\x14\\x170\\x1e\\x04\\x17\\x16+\\x01\\\".\\x03'&#\\\"\\x06\\x15\\x16\\x15\\x14\\x06#\\\"&'.\\x0254;\\x012\\x16\\x17\\x1e\\x01326=\\x01.\\x0354>\\x01;\\x012\\x1d\\x01\\x1427>\\x01?\\x016;\\x012\\x02!\\x03)\\\"\\x01\\x06\\x06\\r\\x12\\x16\\x13\\x0f\\x03\\a\\x1b;\\a\\n\\f\\n\\x14\\n(\\x13\\f\\x04\\x01\\x10\\x1b/`$\\\"-\\x0e\\x14;\\v\\v\\x04\\x15=\\x10\\x06\\x05\\x01\\b\\b\\a\\x04\\a\\x04]\\x10\\x13\\x12\\x13$\\t\\t\\a\\x12;\\x18\\x01J\\x0fD3\\x01\\t\\b\\n\\x0e\\x12\\x18\\x17\\x18\\b\\x19\\x04\\n\\f\\x16\\n&\\x0e!\\x10\\n\\f\\v84.[0\\n\\x11\\n\\r=`\\t\\rW\\x0e\\x14\\t\\n\\x04\\x04\\x06\\x04\\x16t\\x11\\x12\\x15<\\x14\\x13\\x11\\x00\\x00\\a\\x00\\x00\\x00\\x01\\x02\\t\\x01\\xa8\\x00\\r\\x00&\\x000\\x00>\\x00J\\x00T\\x00\\\\\\x00\\x00\\x016&\\a\\x06&676\\x16\\a\\x0e\\x01&\\x03\\\"&547676\\x17\\x16\\a\\x0676\\x16\\a\\x06\\x16\\x17\\x16\\a\\x06\\a\\x066.\\x01\\a\\x0e\\x01\\x1e\\x0176\\x136\\x1e\\x01\\a\\x06&76&\\a\\x06&6\\x03\\x0e\\x01'.\\x017>\\x01\\x17\\x1e\\x01'&\\x06\\a\\x06\\x1e\\x01>\\x01&7&\\a\\x06\\x17\\x1676\\x01\\x97\\x06\\x19\\x12\\v\\f\\x05\\n&3\\f\\x03\\x13\\r\\xbdU\\x82LH<,\\x03\\x01\\x06\\x03\\x0f<I\\x13\\x02\\x04\\x06B\\x04\\x03@D4\\t_@@S\\b_@@E2U&\\x10\\x06%\\x06\\x11J7\\f\\x0e\\x06C\\fA \\x1e\\x17\\r\\r<\\x1e \\x1bc\\n\\x16\\x06\\x06\\x05\\x14\\x17\\f\\x06\\x17\\t\\x06\\x05\\t\\n\\x05\\x05\\x01\\x0e\\x12\\x1c\\x04\\x02\\x0e\\x13\\x02\\b9$\\n\\x03\\r\\xfe\\xfdL=CLH\\x04\\x03'\\x0e\\x14\\v\\x05\\x1b\\x1d1\\a\\x04\\x03\\x1455+.iS3\\a\\x06DS3\\a\\x06\\x01w\\n.Z0\\x13\\f\\x135R\\v\\x03\\x11\\x15\\xfe\\xcc\\x1d\\x1c\\v\\t5\\x1b\\x1b\\x1a\\b\\b3\\x01\\x04\\b\\t\\n\\x13\\n\\b\\x14\\x14\\x11\\x03\\b\\t\\x04\\x04\\t\\n\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb4\\x00\\t\\x00\\x13\\x00\\x1e\\x00\\x00\\x13\\x14\\x06\\a&54>\\x017\\x13\\\"'>\\x017\\x1e\\x01\\x17\\x067.\\x03=\\x01\\x1e\\x01\\x15\\x14\\xd6RB:6^:)?8-?\\v\\v?-7\\u007f!6'\\x16Xv\\x01\\x17R\\x85 EZ=iE\\n\\xfe\\x14\\x1e\\x1cQ..Q\\x1c\\x1eX\\x0f3?M)\\x9d\\x0f\\x8a\\\\Z\\x00\\x00\\x01\\xff\\xff\\xff\\xca\\x01\\x80\\x01\\xb6\\x00R\\x00\\x00%\\x0e\\x02&/\\x01\\x0e\\x01#\\\"43267\\x0e\\x01.\\x01'>\\x01\\x1e\\x02\\x1767\\x0e\\x01\\\".\\x05'6\\x1e\\x02\\x1f\\x0165.\\x0367\\x1e\\x02\\x06\\x0f\\x01\\x1c\\x01\\x154>\\x042\\x17\\x0e\\x03/\\x01\\x06\\a>\\x03\\x16\\x01\\x80\\x0f21-\\x0e\\x0e\\x1fa9\\f\\f0Q\\x1d\\x13%/,\\x0f\\x1f7%\\x1f\\x11\\a\\x0f\\a\\x02\\x06\\x13\\x13\\x1a\\x17\\x17\\x12\\f\\x02$4#\\x15\\x04\\x05\\x03\\x04\\x0e\\x1d\\x0f\\x05\\x13#&\\x05\\x05\\x06\\x05\\x04\\r\\x0f\\x18\\x1a#\\x13\\x01\\x1e*)\\x0e\\x0e\\a\\r\\x03\\r&&7\\x87&'\\x02\\n\\b\\a>H\\x18;3\\a\\x04\\t-'\\r\\x06\\n\\x15\\x15\\f$,\\x01\\x01\\x01\\x04\\b\\x10\\x14\\x1f\\x14\\r\\x06\\x1c\\x1f\\r\\f\\\"\\x13\\x03\\v$$6\\x1a\\r*+(\\f\\r\\x01\\x19\\a\\x02\\x06\\x11\\x0f\\x10\\b\\a%2\\x11\\x06\\x02\\x02)%\\x04\\f\\x17\\v\\n\\x00\\x00\\x04\\x00\\x11\\xff\\xc0\\x01\\xaf\\x01\\xc0\\x00\\f\\x00\\x10\\x00\\x14\\x00\\x1e\\x00\\x007!\\x15\\x14\\x06+\\x01\\a5#\\\"&=\\x02!\\x15%5!\\x15'2\\x16\\x1d\\x01!5463\\x12\\x01\\x9c&\\x1b\\x13W\\xb0\\x1b&\\x01\\x9c\\xfed\\x01\\x9cA\\x1b&\\xfed&\\x1bt\\x16\\x1d'ZZ'\\x1d-UUnUU\\xc7(\\x1c\\x16\\x16\\x1c(\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x004\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x056'&\\a6\\x16\\a\\x06\\a\\x06&'.\\x01\\a\\\"\\x0e\\x03\\a\\x17632\\x1e\\x02\\x17\\x16\\x17\\x163276\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01P\\x032B\\x18\\x0f!\\x03\\x01\\x14\\x1b\\x18\\x10\\x04\\x17\\x13\\x06\\x10\\x15\\x0f\\x1d\\a\\x0f\\x15\\x04\\a\\n\\f\\t\\b\\a\\x04\\x13\\x1c-A@\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x96?\\x01\\x03N\\t\\t\\x16\\x10 *\\x1ef\\x1c\\x19\\x02\\b\\x11\\r\\x1a\\x06\\x13\\x0f\\f#\\x1c!\\x19\\x0e3TR\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\b\\x00\\x14\\x00\\x1d\\x00+\\x004\\x00B\\x00K\\x00W\\x00\\x007\\x14\\x06\\\"&46;\\x01\\x17462\\x16\\x1d\\x01\\x14\\x06\\\"&5\\x13\\\"&462\\x16\\x1d\\x01\\a2\\x16\\x14\\x06+\\x01\\\"&54>\\x013\\x05462\\x16\\x14\\x06+\\x01'\\x14\\x06\\\"&=\\x014632\\x1e\\x01\\x15\\x032\\x16\\x14\\x06\\\"&=\\x017\\\"&46;\\x012\\x16\\x14\\x06#^\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c'\\x1b/\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\r\\x15\\r\\x013\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c\\x13\\r\\x16\\f/\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\x1c\\x13\\x85\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\x1c\\x13\\x013\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c\\x13\\r\\x16\\f/\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\r\\x15\\r\\xfe\\xcd\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c'\\x1b\\x00\\x00\\x00\\x00\\x06\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x05\\x00/\\x007\\x00A\\x00I\\x00Q\\x00\\x00\\x1b\\x01.\\x0154\\x05\\x14\\x0f\\x01'76&\\a\\x06#'&\\x06\\x163\\x163\\x17\\a'76&\\a\\x06#\\\"#>\\x0132\\x17\\\"#\\\"\\x06\\x15\\x14\\x17\\x16\\a\\x17\\x16\\x17\\x06#\\\"'\\x13\\x16\\x15\\x14\\x06\\a76546\\x14\\x06\\\"&462\\x124&\\\"\\x06\\x14\\x162>e6B\\x01e\\x10\\x16L\\x18\\b\\x01\\t\\\"\\x168\\x06\\x05\\x04\\x05\\v\\f!/M\\x18\\t\\x02\\b#\\x16\\x06\\b\\x1d^7S=\\x02\\x01\\x0f\\x15\\x15\\x12\\x8cA\\x01\\x01#$\\x1e\\x1e\\xf7\\x1a:0A\\x10<\\x91Α\\x91Ά\\x8bċ\\x8b\\xc4\\x01\\x17\\xfe\\xea\\x1ag>-\\\"\\x114G\\xe5\\x02\\x01\\x11\\x01\\x02\\x02\\x01\\t\\t\\x02[\\x8c\\xe7\\x02\\x01\\x11\\x01\\x02,48\\x17\\x0f\\x10\\\"\\x1e:\\xb3\\x01\\x02\\f\\t\\x012/7:b\\x1c\\xbc($\\f\\vΑ\\x91Α\\xfe\\xa6ċ\\x8bċ\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf0\\x01\\xc0\\x01\\x90\\x00\\x11\\x00\\x1a\\x00\\x00%\\a.\\x015467\\x15\\x0e\\x01\\x15\\x14\\x16\\x17\\x117\\x117'7&'5\\x16\\x177\\x01\\x10DWumS7EM:D\\xb1\\x83%\\x1e(E3#\\x10 \\bR85Q\\n+\\t8$&:\\a\\x01T!\\xfe\\x80\\x8d\\x1d\\x14\\x12\\a+\\b\\x1f\\x13\\x00\\x01\\x00\\x15\\xff\\xc0\\x01\\xab\\x01\\xc0\\x00\\x1c\\x00\\x007\\x17&#\\\"\\a7.\\x05'\\x16327\\x16\\x17>\\x027\\x16327\\x06\\xfc\\x04\\x17\\t\\t\\x18\\x04\\v \\x18 \\x1b \\x10\\x0f\\x13\\x10\\x12 g\\t;/\\x14\\x0f\\x12\\x13\\x0f%\\x9c\\xdc\\x04\\x04\\xdc\\x139*7-3\\x17\\x04\\x049\\xa9\\x0f`O$\\x04\\x044\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xe8\\x01\\xb8\\x00\\x1c\\x00\\x00%\\x14\\x06#\\\"&4632\\x17\\a.\\x01\\x0e\\x01\\x15\\x14\\x1632>\\x027#53\\x16\\x01\\xe8\\x85kg\\x91\\x91gaEC YM7Z@#7\\x1f\\x11\\x03\\x8d\\xec\\x04\\xbaj\\x88\\x91ΑAA\\x1f\\v!M2A\\\\\\x17#\\\"\\x0fV\\x16\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\b\\x00\\x10\\x00;\\x00I\\x00U\\x00\\x006\\\"&5462\\x16\\x14$\\x14\\x06\\\"&462\\x17\\\"\\a&'7\\x17\\x14\\x16264&#\\\"\\a'&\\x0f\\x01\\x06\\a&#\\\"\\x06\\x16\\x17\\x06\\x15\\x14\\x1632>\\x0254'>\\x01&\\a6\\x17\\x16\\a\\x06\\\"'&76\\x17\\x1e\\x0172\\x16\\x15\\x14\\x06\\\"&54>\\x01\\xd4\\x15\\x0e\\x0e\\x15\\x0e\\x01\\x16\\x91Α\\x91\\xce\\r\\x0e\\n$2\\x118\\x0e\\x15\\x0e\\x0e\\v\\x0f\\a=\\x05\\x02\\x132$\\t\\x0f\\x10\\x13\\x06\\x0f\\x02N6\\x1b1$\\x14\\x01\\x0f\\x05\\x13U\\x04\\x04\\x05\\x05\\x11L\\x11\\x05\\x05\\x04\\x04\\rC\\x15\\v\\x0e\\x0e\\x15\\x0e\\x06\\f\\x8e\\x0f\\n\\n\\x0f\\x0f\\x14\\x8aΑ\\x91Α\\xcf\\n\\x19\\x02N\\f\\v\\x0e\\x0f\\x14\\x0f\\x0e\\x0e\\x01\\x06V\\x02\\x19\\n\\x18\\x1f\\b\\a\\b(7\\x0f\\x19$\\x13\\b\\b\\a\\x1f\\x18t\\x04\\x04\\x05\\x04\\x11\\x11\\x04\\x05\\x04\\x04\\r\\x01Y\\x0f\\n\\n\\x0f\\x0f\\n\\a\\v\\a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\r\\x00\\x19\\x00%\\x005\\x00`\\x00\\x00%\\x16\\a\\x06\\\"'&76\\x17\\x16276'\\x14\\x06#\\\"&54632\\x1672\\x16\\x15\\x14\\x06#\\\"&5467\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\\"\\a&'7\\x17\\x14\\x1e\\x013264&#\\\"\\a'&\\x0f\\x01\\x06\\a&#\\\"\\x06\\x16\\x17\\x06\\x15\\x14\\x1632654'>\\x01&\\x01\\x1b\\x05\\x05\\x12R\\x12\\x05\\x05\\x04\\x05\\x0eH\\x0e\\x05W\\x10\\v\\v\\x0f\\x0f\\v\\v\\x10[\\v\\x0f\\x0f\\v\\v\\x10\\x10\\xb0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cd\\x0e\\v'6\\x13;\\b\\f\\a\\v\\x10\\x10\\v\\x10\\bB\\x05\\x02\\x146&\\v\\x0f\\x12\\x15\\a\\x10\\x02T:;S\\x02\\x10\\a\\x15f\\x04\\x05\\x12\\x12\\x05\\x04\\x05\\x05\\x0e\\x0e\\x051\\v\\x0f\\x0f\\v\\v\\x10\\x10\\x10\\x10\\v\\v\\x0f\\x0f\\v\\v\\x10\\xb9\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xa1\\n\\x1b\\x01U\\x0e\\a\\f\\a\\x0f\\x16\\x10\\x0f\\x0f\\x01\\x06]\\x02\\x1b\\v\\x1a!\\b\\b\\t*<<*\\n\\a\\b!\\x1a\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x1d\\x01\\x17754&\\\"\\x06\\x1d\\x01\\x14\\x06\\\"&=\\x01#\\x15\\x14\\x16326=\\x014\\x1705#\\x15\\x14\\x06\\\"&=\\x01\\a'\\x15\\x14\\x1632>\\x01\\x99Α\\x91Α\\xf1\\x0e\\v\\x17\\\",>,\\n\\x0f\\n:,\\x1f\\x1f,\\xba:\\n\\x0f\\n\\\"\\x17,\\x1f\\x14#\\x14\\x01\\xb8\\x91Α\\x91\\xce!\\n\\a\\x15\\n\\n\\x17\\x1e+*\\x1el\\b\\n\\n\\b-.\\x1f,+\\x1fk\\aq.0\\a\\n\\n\\a/\\n\\v/\\x1f+\\x14#\\x00\\x02\\x00\\x00\\xff\\xff\\x01\\xf7\\x01\\x80\\x00\\x10\\x001\\x00\\x00%\\x15\\x14\\x06\\\"&=\\x01\\x177\\x15\\x14\\x1626=\\x01'54&\\\"\\x06\\x1d\\x01\\x14\\x06#\\\"&=\\x013\\x15\\x14\\x1632>\\x02=\\x01462\\x16\\x1d\\x01\\a\\x01\\xf7B]B\\\"4\\x0f\\x16\\x10\\x8b\\x0f\\x17\\x0fB/.BV\\x10\\v\\x05\\n\\a\\x04C[C4\\xb6F.BA.F\\x10\\x10G\\v\\x0f\\x0f\\vH:\\x1f\\v\\x10\\x10\\v\\xa0.AB.FE\\v\\x0f\\x04\\a\\n\\x05\\xa3-?@-$\\x0f\\x00\\x00\\x02\\x00\\x00\\xff\\xdf\\x01\\xc1\\x01\\xa0\\x00%\\x003\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"'&'&'.\\x025\\x11463!2\\x172\\x16\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x035#5#\\\"\\x06\\x1d\\x013\\x15326\\x01\\xbe\\x02\\x1c\\x14\\xfe\\xa0\\x06\\x06\\v\\t\\x02\\x02\\x03\\x06\\x03\\x1c\\x14\\x01`\\x06\\x06\\x03\\x05\\x03\\x02\\x04\\x01\\x04\\x03\\x03\\x02\\x02\\x01\\x01\\x1e\\xc0\\xb0\\a\\t\\xc0\\xb0\\a\\t\\x01|\\x05\\a\\xfe\\xa0\\x14\\x1c\\x01\\x03\\b\\x02\\x02\\x04\\n\\f\\x06\\x01`\\x14\\x1c\\x02\\x02\\x02\\x01\\x03\\x01\\x03\\x04\\x02\\x04\\x04\\x04\\x03\\xfe\\x93\\xb0\\xc0\\t\\a\\xb0\\xc0\\t\\x00\\x00\\x00\\b\\x00\\x00\\x00 \\x02\\x00\\x01`\\x00\\x05\\x00\\t\\x00\\x11\\x00\\x15\\x00\\x1d\\x00!\\x00%\\x00)\\x00\\x00\\x1353\\x15#5\\x175#\\x15%3\\x15#535#75#\\x15\\a53\\x15#535'\\x1535'3\\x15#\\x153\\x15#R3\\x85R\\x1f\\x01H\\x85\\x85RRR\\x1fͅ\\x85R\\x1f\\x1f\\x9a4444\\x01\\x14L\\xfb\\xaf\\x86]]\\x86\\xf4)\\x1c)]])\\xaf\\xf4)\\x1c\\x86]]u3\\x19\\xaf\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\t\\x00\\x13\\x00#\\x002\\x00B\\x00\\x00\\x12\\x14\\x06#\\\"'5632\\x172\\x16\\x14\\x06#\\\"'567\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x052654.\\x01#\\\"\\a#\\x1575\\x1e\\x014&#\\\"\\a\\x06\\a\\x06\\a\\x1575\\x1632\\xcd\\x12\\r\\v\\a\\a\\v\\rG\\r\\x13\\x13\\r\\v\\x06\\a\\xc8\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xf9\\x1f+\\x14\\\"\\x14\\x12\\x11-3\\x0e\\xad+\\x1e\\x06\\x04\\x06\\r\\x16\\x1e4\\f\\x10\\x1f\\x01!\\x1f\\x17\\x04D\\x04i\\x16\\x1f\\x17\\x04D\\x04\\xa2\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xc3/ \\x16%\\x15\\t\\xce\\n3\\x05:B.\\x01\\x13\\x0e\\x17\\x02\\x9c\\n3\\x05\\x00\\b\\x00\\a\\xff\\xb9\\x029\\x01\\xc0\\x00\\x06\\x00\\x12\\x00@\\x00D\\x00\\xb6\\x00\\xba\\x00\\xbe\\x00\\xcb\\x00\\x007\\a'2632\\x172\\x1e\\x03\\x17\\x06/\\x01>\\x01\\x03&\\x06\\a67>\\x037\\x1e\\x027\\x15367>\\b?\\x01\\x06\\a\\x06\\a\\\"\\x0e\\x03\\a\\x1e\\x01\\x15\\x14\\a&7\\a\\x155\\x03\\x1e\\x02\\x17\\x0e\\x02\\a.\\x03#\\x06\\a\\x16\\x17\\x1e\\t\\x1d\\x01\\x16\\a&\\x06'<\\x017465&\\a\\x0e\\x01#\\\".\\x02'&'\\x06#\\\"&54?\\x01.\\x01>\\x0232632\\x17632\\x16\\x0f\\x01\\x15\\x14\\x1632654.\\x02547'6'632\\x1e\\x03\\x177\\x0e\\x02\\x1d\\x016\\x1e\\x03\\a3\\x17\\a'7\\x17\\a\\x17>\\x023\\x161\\x14\\x0e\\x03#\\xf4\\x1c\\x01\\x03\\f\\x04\\x05\\x8d\\x03\\a\\t\\x06\\a\\x0137\\a\\v6\\x18\\x03I\\x17\\b\\x12\\n\\x12\\b\\x14\\x03\\x04\\t\\n\\b\\aG#\\b\\r\\f\\a\\n\\x04\\n\\x03\\f\\x03\\x02\\x01\\f,g\\x03\\b\\b\\b\\a\\x03\\x01\\f\\a\\x12\\xd2\\x01;\\n\\x1a\\x11\\x14\\x0e#,\\n\\x12\\x15\\t\\\"\\x1e\\x03\\x02\\x02\\x02\\x02\\t\\x04\\x06\\x03\\x04\\x02\\x03\\x01\\x01\\x01\\v\\a?\\b\\x01!\\a\\x06\\n,\\x11\\x06\\x15\\x14\\x17\\x06\\x02\\x06\\x89\\v\\x04\\a\\t\\x8c\\x02\\x02\\b\\x05\\v\\x01\\x01\\a\\x01\\t\\x050\\x02\\v\\x02\\n5/\\x06\\x0e)\\r\\x10\\r\\x02\\x13\\x10\\x05\\x17\\x12\\x12\\x12\\r\\x03\\n\\x04\\x0e\\x01\\x12\\x10\\x16'\\x1d\\x1d\\x13\\xb8\\t\\x03\\fE\\x0e\\x1f\\x14<\\a\\x16\\x12\\f\\x01\\n\\x10\\x0f\\x10\\x01\\xca\\x06\\x05\\x04\\xc9\\t\\x10\\f\\x11\\x01\\x13\\t-\\b\\f\\x01\\v\\x04\\x03\\v\\x0f\\a\\x03\\x0e\\b\\x17\\x03\\x03\\r\\b\\x01\\x16\\x1b\\x1b\\a\\n\\v\\a\\r\\x04\\x11\\x05\\x16\\x04\\x03\\x10\\x18\\\\\\x19\\x02\\x01\\x01\\x03\\x02\\x05\\x0f\\x02\\x04\\x05\\x14\\xb3\\x01\\x01\\x01\\xfe\\x83\\x10\\x1f\\x0f\\x12\\t\\x10\\x11\\x05\\x0fPK<\\x01\\x01\\x01\\x03\\x02\\a\\x03\\x06\\x03\\x06\\x04\\a\\a\\b\\x06\\t\\r3\\x01\\t\\x05\\x06\\x1b\\t\\x03!\\a\\x01\\b\\x0f\\x1b\\x18\\x1c\\x1e\\x04\\x02\\a \\x06\\x05\\n\\x02\\x1e\\x05\\x06\\x05\\x02\\x02\\x04\\x0e\\n\\x14\\x02\\f\\x04\\b4.\\x0e\\n\\n\\x01\\x05\\a\\x05\\x05\\x06\\x10\\\"\\x05\\x02\\n\\a\\x1b\\t\\a\\x0e\\n\\x02\\x05\\x06\\x01\\r\\x14#\\x1bC\\x18\\x03\\xb1\\x043\\x0e^\\x01\\x04\\x02\\x05\\x02\\x04\\x03\\x03\\x02\\x00\\x00\\x00\\x00\\x04\\x00 \\xff\\xe0\\x01\\xa0\\x01\\xa0\\x00\\x18\\x00(\\x00:\\x00T\\x00\\x00\\x01\\x1e\\x03\\x15\\x14\\x06#\\\"&54>\\x0276767\\x16\\x17\\x1e\\x01\\x136'&\\a\\x06#\\\"&/\\x01\\\"\\x06\\x17\\x166'\\x0e\\x01\\x17\\x167632\\x1e\\x0276&'&\\\"\\x17\\x1676'&#\\\"\\x06#\\\".\\x01#\\\"\\x0e\\x01\\x16\\x17\\x16>\\x02\\x172\\x16\\x01@\\t\\x18&\\x19pNNt\\x1a&\\x1c\\t(\\r\\x13\\x03 \\x0f\\v+\\r\\x05\\x04\\x02\\x03\\x13$\\x0f\\x1a\\x05\\x05\\x05\\x05\\x03\\x15P&\\b\\x13\\x04\\x03\\t\\x0e\\r\\t\\n\\x02\\x03\\x02\\x06\\a\\x05\\x05\\x19V\\x17\\r\\x0f\\x10\\a\\f\\n=\\v\\n\\\"+\\x15\\x18#\\x0e\\a\\x0e\\x133(*\\t\\n0\\x01M\\x05\\x16,E'RhmQ%D*\\x17\\x05\\x16\\v\\x0e#&\\n\\a\\x14\\xfe\\xb4\\x05\\x04\\x01\\x02\\x0e\\a\\x03\\x04\\t\\x03\\x12\\x06D\\x03\\x10\\x06\\x03\\b\\v\\x06\\a\\x04\\x01\\x05\\x10\\x03\\x04\\x14\\x02%*\\x15\\b*\\x18\\x19\\x1a\\\"$\\n\\x0e\\n\\x17\\x18\\x011\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa1\\x00\\x18\\x001\\x00J\\x00e\\x00\\x00\\x134632\\x16\\x176\\x17\\a&\\\"\\x06\\x14\\x1f\\x01\\a.\\x01'.\\x017.\\x01\\x1767>\\x01\\x17>\\x0132\\x16\\x15\\x14\\x06\\a\\x16\\a'64&\\\"\\a\\x06\\a\\x17\\x1e\\x01\\x15\\x14\\x06#\\\".\\x01'\\x06&'7\\x16264/\\x017\\x16\\x17\\x16\\a\\x0e\\x01\\a\\x06'\\x0e\\x02#\\\"&5467&7\\x17\\x06\\x14\\x17\\x162767\\x01#\\x18\\x17!\\x046*,\\x11\\x1c\\x15\\nd,3!\\x10\\x14\\r\\b\\x14\\x1a\\x81V\\x0e\\x136\\x19\\x03\\\"\\x17\\x18#\\x1e\\x16\\x10-,\\x0f\\x16\\x1e\\v\\nZ\\xde\\x16\\x1e#\\x19\\x0e\\x19\\x11\\x03\\x199\\x14,\\x10\\x1c\\x16\\vd-[\\b(b0'\\f(7\\x03\\x10\\x19\\x0e\\x19#\\x1a\\x14\\x0e,,\\x0e\\n\\v\\x1f\\nY\\v\\x01d\\x19#\\x1d\\x15\\f*,\\x0e\\x16\\x1e\\vd,2\\\"\\x10\\x136\\x1a\\x04!_U\\x0e\\x14\\r\\b\\x16\\x1e#\\x19\\x17!\\x048--\\x10\\x1c\\x16\\v\\nZl\\x03!\\x17\\x19#\\r\\x16\\r\\b\\x0e\\x16,\\x0e\\x16\\x1e\\vd,[\\t(\\x010'\\f(\\x0e\\x0e\\x15\\f#\\x19\\x15!\\x047,-\\x10\\x1c\\v\\v\\vX\\f\\x00\\x00\\x06\\x00\\x00\\x00\\v\\x02@\\x01u\\x00\\v\\x00\\x12\\x00\\x19\\x00\\x1d\\x003\\x009\\x00\\x007\\x16\\x15\\x14\\x06+\\x01\\x1132\\x15\\x14'\\x153254#\\x17254+\\x01\\x15%#53\\x17\\x14\\a#\\x14\\x1632>\\x0173\\x06#\\\"&54632\\x16\\a3&#\\\"\\x06\\xe8AH5\\xac\\xa7q\\xcaO/5\\n:8U\\x01\\xba\\x90\\x908\\x01\\xb9!\\x1e\\v\\x17\\x13\\x03>\\x1c\\\\<GI::C\\xbas\\x053\\x19 \\xd3\\x12H34\\x01cX3NS+(\\xea/3b\\xf1#\\xd3\\x05\\b \\\"\\b\\x0f\\vVJ<;MP\\x1c7\\x1e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x06\\x00\\r\\x00\\x13\\x00#\\x00'\\x003\\x00H\\x00\\x007\\x14+\\x01532'\\x14+\\x01532\\x172\\x17#>\\x017\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a35#\\a4'654+\\x01\\x1532674&\\\"\\x06\\x15\\x14\\x1e\\x02327#\\x0e\\x01#\\\"534\\xba\\x1f-.\\x1e\\a\\x1a+(\\x1d\\x84\\x1c\\x03?\\x01\\x11\\x97\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xb0NN+#\\x1a>Z]\\x1d'\\x97$?(\\n\\x12\\x1b\\x102\\x10\\\"\\x03\\x12\\t\\\"d\\x9b\\x1947\\x17--\\x1e\\x0e\\x10\\x9a\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c}\\x13\\x81)\\n\\r\\x180\\xc0\\x1c+ +* \\x10\\x1b\\x13\\v/\\b\\n#\\a\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00!\\x002\\x00:\\x00B\\x00\\x00%\\x14\\x0e\\x01#\\\"&'\\x17\\x1e\\x01326'7\\x16654&\\\"\\x06\\x1d\\x01\\a&\\a'>\\x0132\\x16\\x05\\x16>\\x01&/\\x016\\x17\\x16\\x17\\x16\\x0e\\x01'&'6\\\"&462\\x16\\x14\\x06264&\\\"\\x06\\x14\\x01\\xf0BsCU\\x84\\x16_\\x05&\\x1a\\x1d*\\x01T(87M7;\\x18\\x14\\x85\\b\\x8ebg\\x91\\xfe\\xac\\x0f\\x1d\\r\\r\\x0e \\x14\\x13\\x14\\t\\b\\x11(\\x15\\x12\\t\\xe63%%3%R'\\x1b\\x1b'\\x1b\\xc0CsBeO'\\x18 +\\x1e<\\x018''66'\\x01V\\x01\\r7`\\x84\\x91\\xe7\\x06\\f\\x1e\\x1d\\x06\\r\\b\\b\\t\\x14\\x14(\\x11\\b\\b\\x12v$4$$4\\x15\\x1c&\\x1c\\x1c&\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x006\\x00>\\x00I\\x00\\x00>\\x01&/\\x016\\x17\\x1e\\x01\\x0e\\x01'&'\\x17\\x16\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&=\\x01\\x17\\x1e\\x02326'7\\x16654&\\\"\\x06\\x1d\\x01\\a&\\a'5463\\x04\\\"&462\\x16\\x14\\a264&\\\"\\x06\\x15\\x14\\x1e\\x01\\xb3\\f\\v\\x0e\\x1e\\x12\\x12\\x13\\x10\\x10&\\x13\\x11\\b\\x1d\\x0e\\xf8\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1cY\\x03\\x12\\x1c\\x10\\x1b'\\x01O%53I38\\x16\\x12u\\x1c\\x14\\x01\\x140\\\"\\\"0#;\\x13\\x19\\x19%\\x1a\\f\\x14N\\x1b\\x1c\\x06\\f\\a\\a\\b&&\\x0f\\b\\a\\x11\\f\\x06\\x01^\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14q%\\x0f\\x18\\x0e(\\x1d8\\x014%$33$\\x01Q\\x02\\r0\\xa1\\x14\\x1c\\xde\\\"0\\\"\\\"0\\x14\\x1a$\\x1a\\x1a\\x12\\f\\x14\\f\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00.\\x00C\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x052654'&\\a\\x06\\x15\\x14\\x163276\\x17\\x1672654'&#\\\"\\a\\x06\\x15\\x14\\x163276\\x16\\x17\\x1672654'&#\\\"\\a\\x06\\x15\\x14\\x163276\\x16\\x17\\x16\\x91Α\\x91Α\\x01]\\x06\\t\\n`\\x8d\\r\\b\\a\\x02\\n|S\\x06 \\b\\v\\vMd20\\x10\\f\\b\\x02\\n?\\u007f0\\b$\\t\\x0e\\rR{B4\\x11\\r\\n\\x03\\n<\\xa85\\x06\\x01\\xb8\\x91Α\\x91\\xce\\xdc\\t\\x06\\v\\x069\\x1f\\x03\\x0e\\x06\\t\\x02\\x1a2\\x04B\\v\\b\\r\\a-\\r\\x05\\x10\\b\\v\\x02\\x10\\x11\\x1c\\x04L\\r\\n\\x0f\\b0\\x10\\x05\\x12\\n\\x0e\\x02\\x12\\x10\\x1f\\x04\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00\\x14\\x00\\x00\\x01\\a\\x173\\x15#\\x0f\\x010\\a#57'#53?\\x023\\x01@b\\a[\\xa1\\r,\\t]]\\aV\\x9c\\x0e+\\tb\\x01c\\xb3\\n\\x80\\tT\\t]\\xb4\\t\\x80\\tT\\t\\x00\\x00\\x0e\\x00\\x00\\x005\\x02\\x80\\x01K\\x00\\v\\x00\\x17\\x00#\\x00-\\x009\\x00D\\x00N\\x00`\\x00u\\x00\\x80\\x00\\x93\\x00\\x9f\\x00\\xab\\x00\\xb6\\x00\\x007\\x17\\a\\x14#\\\"5'743272\\x15\\x17\\a\\x14#\\\"5'7472\\x15\\x17\\a\\x14#\\\"5'74\\x062\\x1f\\x01\\a\\x06\\\"5'?\\x012\\x1f\\x01\\a\\x06#\\\"5'7462\\x15\\x17\\a\\x14#\\\"5'762\\x15\\x17\\a\\x14\\\"5'?\\x01\\x16\\x15\\x17\\a\\x14#\\\"5/\\x017547632\\a\\x16\\x15\\x17\\a\\x15\\x14\\a\\x06#\\\"'&5'?\\x014762\\x062\\x1f\\x01\\a\\x06#\\\"5'7\\x052\\x16\\x15\\x14\\x06+\\x01&=\\x0147632\\x16\\x176%2\\x15\\x17\\a\\x14#\\\"5'74'2\\x1f\\x01\\a\\x06#\\\"5'74\\x162\\x15\\x17\\a\\x14#\\\"5'7o\\x06\\x06\\x04\\x04\\x06\\x06\\x04\\x04\\x16\\x05\\x05\\x05\\x05\\x05\\x05\\x05\\x1e\\x06\\x05\\x05\\x06\\x05\\x05\\x05\\x94\\x04\\x01\\x05\\x05\\x01\\x04\\x05\\x05\\x1a\\x02\\x01\\a\\a\\x01\\x02\\x03\\x06\\x06\\x19\\x06\\a\\a\\x03\\x03\\x06\\x06\\x19\\a\\a\\a\\a\\x06\\x06\\xf5\\x04\\x04\\x04\\b\\t\\x02\\x02\\x04\\x03\\x02\\x04\\x02\\x19\\x04\\x03\\x03\\x03\\x02\\x03\\x04\\x03\\x01\\x03\\x02\\x01\\x03\\x03\\x04s\\v\\x01\\x05\\x05\\x01\\x05\\x06\\x05\\x05\\x01~!..!\\xda\\t\\b\\x18\\x1a7O\\x05\\x0f\\xfe\\xe7\\a\\x04\\x04\\a\\b\\x03\\x03.\\x06\\x01\\x04\\x04\\x01\\x06\\x06\\x04\\x04\\x1a\\x0e\\x04\\x04\\a\\a\\x04\\x04\\xc0AE\\x04\\x04EA\\x04)\\x05iE\\x05\\x05Ei\\x05\\x18\\x05\\x82D\\x05\\x05D\\x82\\x05`\\x03##\\x03\\x03##\\x19\\x0399\\x02\\x0389\\x03\\v\\x03DB\\x03\\x03BD\\x05\\x03FD\\x04\\x04DFr\\x02\\x05\\xb2@\\b\\b  \\xb1\\x01\\x04\\x03\\x02\\x11\\x02\\x05\\xa3:\\a\\x03\\x02\\x03\\x03\\x02\\x03B\\xa1\\x01\\x05\\x02\\x01\\x18\\x06\\x8cC\\x06\\x06C\\x8c8/ !.\\x01\\t\\xf9\\a\\x03\\tI6\\a<\\b\\x89A\\b\\bA\\x89\\b\\b\\a\\x91C\\a\\aC\\x91\\a\\x04\\a\\x8dC\\a\\aC\\x8d\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xde\\x01\\x82\\x01\\x9c\\x00+\\x00\\x00%\\x15\\x06#\\x0e\\x02'.\\x04'3\\x1e\\x01\\x1767.\\x0154632\\x1e\\x01\\x06\\a\\x0e\\x01&'654#\\\"\\x06\\x15\\x14\\x16\\x01\\x80\\x1b\\x19\\x19O*\\x16\\v\\x1b+%$\\nJ\\r;+-\\x1f%+7/(0\\n\\x06\\n\\x06\\x10\\\"\\b\\b\\x1c\\x0e\\x11L\\xc14\\x064\\\\\\x18\\r\\x06\\x18;K~Km\\x8b5,>\\x13N12A)<:\\x16\\x01\\x02\\n\\r\\x1b\\x16.\\x1a\\x18:9\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xbc\\x02\\x01\\x01\\xc4\\x00\\x11\\x00\\x15\\x00\\x19\\x00\\x1c\\x00 \\x00$\\x00(\\x00+\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x15\\x177'\\a\\x177\\a\\x157\\x175'\\a?\\x01'\\a\\x177'\\a75\\a\\x01\\xf6\\n\\n\\xea\\f\\f\\xea\\n\\n\\xea\\f\\f\\n_MجM_\\xbe7\\x87_M\\xc2NNNd\\xacM_\\xbe7\\x01 \\x06\\f\\x9c\\f\\x06\\x9c\\b\\b\\x9c\\x06\\f\\x9c\\f\\x06\\x9c\\b\\b;g?3ss3?5J%\\xc1g?3\\x1a444\\xc1s3?5J%\\x00\\x03\\xff\\xff\\x00\\x00\\x02A\\x01\\x82\\x00$\\x00I\\x00\\u007f\\x00\\x00%\\x1e\\x01\\a\\x0e\\x03#\\x06#\\\"'.\\x01'&676'&76\\x170\\x1767>\\x01\\x1e\\x01\\x17\\x16\\x17\\x16\\x176&'&5.\\x04\\x06\\a\\x06\\a\\x0e\\x01*\\x01&'&\\a\\x06\\x17\\x16\\a\\x0e\\x01\\x17\\x163\\x165236'\\x0e\\x01#\\\"'.\\x01'&\\a\\x0e\\x01\\x1e\\x0167>\\x0176\\x16\\a\\x0e\\x01'.\\x015676\\x17\\x1e\\x01\\x17\\x16676.\\x02\\a\\x0e\\x01\\a\\x06&76\\x17\\x1e\\x01\\x01\\xff\\\"\\x1f\\t\\x04\\x14\\x1c$\\x14#\\xd9J\\x11$;\\n\\v\\x17\\x1d\\x06\\x01\\x06'&/\\b\\x19(\\\"MD7\\r\\x04\\x05\\x01\\x1b\\x1d\\x15+\\n\\x01\\x15\\\"/26\\x17(\\x15\\x02\\x04\\x05\\x02\\b\\x01&\\\"#\\b\\x03\\r\\x1d\\x13\\x0e\\x1bD\\xa4\\x9a\\x10+;\\x04'\\x18\\x19\\x13\\bI\\x0f\\x1e\\x1e\\x0e\\x06\\x0f\\x18!\\x0f\\x02\\b\\x03\\x06\\f\\x05\\r,\\x16\\x16\\x1b\\x03!%\\x1e\\x1aB\\x0f\\x13'\\v\\n\\b\\x1c$\\x11\\x01\\b\\x02\\b\\t\\x04\\\"1\\x18\\x18\\xd3\\x13D$\\x13 \\x17\\r\\x01\\x01\\x01.\\\"#C\\x17\\x04\\x051\\x1c\\x1c\\x13\\x04)\\x17\\x13\\x05\\x196%\\t(\\b\\x9f$X\\x14\\x05\\v\\x1e6%\\x19\\t\\t\\r\\x16(\\x04\\x04\\x05\\x01\\x14\\x17\\x18'\\x0f\\b\\x13B\\x1f<\\x02\\x02\\x01s\\x17 \\x12\\aL\\n\\x17\\x1b\\f!\\x1b\\x13\\x01\\r\\x02\\t\\x02\\x05\\a\\t\\x13\\x11\\a\\a&\\x19&\\x12\\x15\\x17\\x14H\\t\\f\\n\\x13\\x12%\\x15\\x04\\x11\\x01\\t\\x01\\x05\\n\\x05/\\x13\\b,\\x00\\x00\\x00\\x01\\x00\\n\\xff\\xc8\\x01\\xf5\\x01\\xb8\\x00[\\x00\\x00\\x05\\\"&7>\\x01721\\x0e\\x03\\x16\\x17\\x1e\\x02>\\x02?\\x01>\\x02.\\x02/\\x01.\\x01/\\x017\\x1e\\x03\\x1f\\x016&/\\x017\\x17\\x0e\\x01\\a\\x15>\\x05?\\x01\\x17\\x0e\\x01\\x0f\\x01\\x0e\\x01\\x16\\x17\\x1e\\x02>\\x02?\\x01>\\x01.\\x01/\\x0165\\x1e\\x03\\x17\\x16\\x06\\x01\\x00g\\x8f\\x03\\x02<7\\x01\\x04\\x13\\x19\\v\\x11\\x1c\\n\\x15\\x11\\x10\\f\\t\\x02\\x03\\b\\b\\x01\\x03\\x05\\x06\\x02\\x02\\x04\\x17\\t\\n\\x1d\\a\\x0e\\n\\b\\x02\\x02\\x01\\v\\x06\\x06-,\\t\\v\\x01\\x02\\b\\b\\t\\a\\x06\\x01\\x02\\x1d\\r\\x16\\x06\\x05\\b\\n\\x06\\r\\x06\\x11\\x10\\x11\\x0e\\v\\x03\\x03\\x1d\\x13\\x0e\\x16\\v\\v\\x01\\x19\\x1e(\\x14\\x01\\x01\\x888\\x96h<i#\\x04\\x1936B\\x1b\\n\\v\\x02\\x03\\x06\\a\\x02\\x03\\n\\x19\\x17\\x18\\x14\\x0f\\x04\\x05\\v\\x14\\x04\\x05 \\x03\\n\\v\\t\\x03\\x03\\r\\x1f\\t\\b32\\r\\x1f\\t\\n\\x05\\t\\b\\a\\x05\\x04\\x01\\x01 \\x04\\x14\\b\\b\\x10+3\\x11\\n\\t\\x01\\x04\\a\\x06\\x03\\x02\\x1aA91\\x0e\\x0e\\x02\\x01\\x12\\x1b1D+m\\x8c\\x00\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\f\\x00\\x1c\\x00)\\x006\\x00C\\x00K\\x00S\\x00b\\x00\\x8b\\x00\\x00\\x01&#5\\x1e\\x01\\x17\\a&'\\a&'\\a\\x16\\x17\\a&547\\x17\\x06\\a\\x17\\x06\\x15\\x14\\x1f\\x01\\a\\x163\\x15.\\x01'7\\x16\\x177\\x16\\x03\\x06\\a'>\\x017\\x15\\\"\\a\\x17\\x06\\a\\x0567\\x17\\x0e\\x01\\a527'676\\x14\\x06\\\"&462\\x124&\\\"\\x06\\x14\\x162\\x13\\x16\\x14\\a'67'654'7&'\\a\\x17\\x06\\\"'7&'\\a&'7&47'67\\x1767'632\\x17\\a\\x16\\x177\\x16\\x17\\a\\x16\\x14\\a\\x17\\x06\\a'\\x06\\x01 \\x10\\x12:a\\x1e\\x10\\n\\n\\x12)=\\xe6\\a\\a\\x10\\x1b\\x1b\\x10\\b\\x06\\x17\\n\\n\\x89\\x05\\x13\\x0f:b\\x1d\\x10\\b\\f\\x12);\\n\\n\\x10\\x1ea:\\x12\\x10\\x05=)\\x01$\\f\\b\\x10\\x1db:\\x0f\\x13\\x05=)o\\x91Α\\x91΅\\x8aĊ\\x8a\\xc4c\\x1b\\x1b\\x10\\b\\x06\\x17\\n\\n\\x17\\x06\\b\\xa7\\r\\x0e\\x1a\\x0e\\r\\x19\\x0f4\\x12\\t@\\x03\\x03@\\t\\x124\\x10\\x18\\r\\f\\x0f\\x0e\\r\\r\\x18\\x104\\x12\\t@\\x03\\x03@\\t\\x124\\x10\\x01\\x8a\\x03\\x13\\x0290\\t\\x10\\v\\x0f.\\f\\xf4\\x11\\x0f\\t2991\\t\\x0f\\x10\\a\\x1c\\x1f\\x1e\\x1dw\\x18\\x03\\x13\\x0290\\t\\r\\x0e\\x10/\\x01-\\v\\x10\\t09\\x02\\x13\\x03\\x18\\f.\\xff\\x0e\\r\\t09\\x02\\x13\\x03\\x18\\f/\\xdeΑ\\x91Α\\xfe\\xa6Ċ\\x8aĊ\\x01W2r1\\t\\x0e\\x11\\a\\x1d\\x1e\\x1f\\x1c\\a\\x10\\x10\\xa9C\\x03\\x03C\\x05\\x12,\\x15\\x19\\x16\\f\\x18\\f\\x16\\x19\\x15,\\x12\\x05C\\x03\\x03C\\x05\\x12,\\x15\\x19\\x16\\f\\x18\\f\\x16\\x19\\x15,\\x12\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x12\\x00\\\"\\x00*\\x00K\\x00]\\x00}\\x00\\x007\\x16\\x17\\x1e\\x01\\x15\\x14\\x06&5472\\x16\\x06#\\\"&6%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\x143254#\\\"\\a#.\\x01\\x06\\x15\\x14\\x17\\x06\\x15\\x14\\x17\\x06\\x15\\x1432>\\x0154&'&#7\\x1e\\x01654'7\\x17'\\\"=\\x01#\\a\\x16\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x1537'\\x0e\\x01.\\x01541535#\\\"545#\\x0e\\x01\\a\\x15232\\x1d\\x02\\x14\\x1632e\\a\\r\\x19\\x0e!!#\\x0e\\f\\f\\x0f\\x10\\f\\r\\x01O\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xe3\\x17\\x17\\x17\\x17\\x161\\x0f$\\x1f\\x16\\x17\\v\\x0e@\\x16\\x1f\\x10 0\\t\\x05\\b\\n!\\x1f\\t\\x17U\\r\\x054\\x03\\x03\\x04\\a\\x03\\x03\\x0eHe\\a\\x0e\\x10\\a\\x01&$\\x02\\x18\\x02\\x0f\\x11\\x04\\x06\\n\\x13\\x17\\x14r\\x01\\x01\\x01\\x03\\x06\\n\\b\\b\\b\\x06|\\x16\\x16\\x16\\x16\\x8a\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cY\\x17\\x17\\x16D\\x02\\x01\\x1a\\x18\\x1b\\v\\x15\\n\\f\\x04\\x0e\\f \\v\\x14\\x0f\\x17\\f\\x03\\x01\\x0e\\x01\\x02\\x17\\x16\\x0e\\f\\x01X\\x02\\x05i\\x14\\x01\\x01\\x03\\x02\\x03K\\x04\\x01\\x02\\x14\\n\\x16\\x03\\x02\\v\\x06\\x04\\x01=\\x19\\x10\\r\\n\\x15\\x13\\x02\\x16\\x02\\x01B\\x16\\x13\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xf1\\x02\\x00\\x01\\x8f\\x00'\\x004\\x00<\\x00R\\x00]\\x00\\u007f\\x00\\x00\\x13\\x15\\a\\x16\\x15\\x14\\x0e\\x02&'\\a\\x16\\x17\\x1e\\x05\\x15\\x14\\x06#\\\"547&5467&54>\\x02\\x1f\\x014&'\\\"&\\\"'\\x06\\x15\\x14\\x166'26&#\\\"\\x06\\x16\\x17527>\\x04=\\x014&'73\\x15\\x14\\x163\\x17\\x15'\\\".\\x015432\\x15\\x14\\x06\\x17\\x06#\\\"&=\\x024&\\a\\\"#5>\\x0373\\x16;\\x01\\x15#\\x150\\x15\\x14\\x1e\\x0267\\xd8%\\x0f\\x14\\x1c\\\"\\x1b\\n\\r\\b\\x0f\\x1c\\x1a%\\x0f\\x11\\x05:5f\\x16\\x11\\x0f\\x16#\\x1d)-\\x0f\\x10\\x16(\\x06\\b\\r\\x05\\v453\\x19\\x13\\x13\\x18\\x18\\x15\\x13\\x9e\\x05\\x06\\x06\\x04\\x05\\x01\\x01\\x05\\x17\\x05T\\x02\\x05\\x14?\\f\\x10\\t%%\\x14\\xcf!!$\\x1f\\x04\\f\\t\\a\\x0e\\x13\\r\\a\\x02&\\x02\\x029=\\x01\\x06\\v\\x19\\x12\\x01\\\"#\\x03\\x13\\x16\\x16\\x1f\\x0e\\x05\\x02\\x02\\x15\\x01\\x01\\x01\\x02\\x05\\b\\r\\x13\\r#&2\\x15\\x15\\a\\x14\\n\\x13\\x14\\x11,\\x1d&\\n\\x03\\x05\\xf2\\t\\x05\\x03\\x01\\x01\\r\\t\\x0e\\v\\r\\x95$##$d \\x01\\x01\\x01\\x01\\x02\\x02\\x03w\\x06\\x03\\b!\\xa9\\x05\\x03\\x03 \\xf4\\t\\x10\\f##\\x12\\x13\\xe4\\x11\\x1f#j\\x01\\x03\\x01\\x01%\\x01\\t\\x10\\x17\\x11>)a\\x01\\x05\\b\\x0e\\x06\\x01\\x06\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\x04\\x00\\x14\\x00\\x00\\x11!\\x11!7\\x177#\\x0e\\x02\\a.\\x03'#\\x17\\x153\\x01\\xc0\\xfe@\\x15\\xdaQ#\\x18\\x17\\v\\x02\\x02\\t\\a\\x17\\x13%P\\x1f\\x01\\xa0\\xfe@\\xfb6\\x9b-/\\x1c\\x06\\x05\\x16\\x110\\\"\\x99g\\x00\\x00\\x00\\x02\\x00\\x15\\xff\\xbe\\x01g\\x01\\xc0\\x00\\x10\\x00-\\x00\\x00\\x17\\x16\\x06'&67&632\\x16\\x15\\x14\\x06'\\x06\\x132\\x16\\x15\\x14\\x06'&6\\x17\\x16654&#\\\"\\x0e\\x02\\x17\\x16\\x06\\\"'&>\\x02H\\x01\\x1d\\x01\\t77\\f \\x1f\\x16!;\\x1ck\\x88Eb{Q\\x0f\\a\\x0e>jP9%>\\\"\\a\\x12\\x04\\n\\x10\\x04\\x17\\t'M0\\x0f\\x02\\x0e_\\xa19\\x1b3!\\x17!\\x1f\\x13s\\x01DbENe\\x11\\x04\\x1c\\x03\\x10RC9P$9G#\\b\\x0e\\t(VG-\\x00\\x00\\x00\\x00\\x01\\x00\\a\\xff\\xbf\\x01\\xb9\\x01\\xc0\\x002\\x00\\x00$\\x06.\\x02/\\x01\\x14\\x06\\a\\x1e\\x03\\a\\x06\\\"'\\x06\\\"'&67.\\x015\\x0e\\x06'\\\"&6767&632\\x16\\a\\x16\\x17\\x1e\\x01\\x01\\xb5\\x06\\f\\f\\v\\x04\\x03\\x1a\\x19\\b\\x0f\\x12\\b\\x03\\x0fn##m\\x10\\x06 \\x14\\x19\\x1a\\x01\\x02\\a\\b\\t\\b\\a\\x03\\x03\\x04\\a\\n\\a!\\x03QRQR\\x03!\\a\\n\\a\\x1c\\x01\\v\\x0f\\x10\\x06\\x05\\x197\\x15\\x03\\x06\\t\\f\\x05\\b\\x04\\x04\\b\\n\\x12\\a\\x157\\x19\\x01\\x04\\v\\n\\f\\t\\x06\\x01\\x130 \\x19Q^yx_Q\\x19 0\\x00\\x00\\x00\\x00\\x06\\x00\\r\\xff\\xdf\\x023\\x01\\xa0\\x00\\x14\\x00\\x1e\\x00(\\x006\\x00G\\x00S\\x00\\x00\\x01\\\"\\x06\\x15\\x14\\x17\\x06#\\\"'\\a7&54632\\x16\\x17&'\\\"\\x06\\x14\\x163264&\\a264&#\\\"\\x06\\x14\\x16\\x05\\x14\\a\\x17'\\x06#\\\"&4632\\x16\\a2>\\x0154.\\x02#\\\"\\x06\\x15\\x14\\x1e\\x0232>\\x0154&#\\\"\\x06\\x14\\x16\\x01\\x81E`\\x06\\n\\b\\x131D\\x13NrQGq\\f\\tr\\f\\x12\\x12\\f\\v\\r\\r\\x94\\v\\x0e\\x0e\\v\\v\\x12\\x12\\x01\\xaeD\\x0f6(\\x12F``FBc\\xdb\\a\\v\\x06\\x03\\x06\\n\\x05\\a\\f\\x03\\x05\\ao\\a\\v\\x06\\x0e\\n\\a\\f\\f\\x01\\x18Z@\\x14\\x14\\x01\\t\\\";7ME`N;\\x015\\r\\x16\\r\\r\\x16\\r0\\r\\x16\\r\\r\\x16\\r\\x9c=40\\x1d\\nSuST!\\x06\\t\\x05\\x03\\a\\x06\\x03\\f\\a\\x04\\a\\x06\\x03\\x06\\t\\x05\\a\\f\\f\\x0f\\f\\x00\\x00\\x00\\x04\\x00\\x01\\xff\\xb7\\x01\\xff\\x01\\xc0\\x00\\a\\x00\\x0f\\x00F\\x00^\\x00\\x00\\x122\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x176\\x16\\a\\x06\\a\\x16\\a\\x06'&7<\\x065\\\"&#\\x1c\\x06\\x15\\x16\\a\\x06'&7&'&6\\x172\\x16\\x175463!2\\x1e\\x01\\x1d\\x01\\a54.\\x01#!\\\"\\x06\\x1d\\x01\\x1e\\x01636\\x17\\x16\\x176\\x172\\x166\\xa23$$3$\\xb43$$3%\\xdb\\v\\f\\a#G\\x1e6\\\"(&\\x01\\x03\\t\\x02\\x01&(\\\"6\\x1fH#\\a\\f\\v\\x01\\x05\\x01\\x1b\\x13\\x01g\\f\\x15\\r\\x19\\b\\x11\\x10\\xfe\\xc3\\x18\\x11\\x1fB)\\x14\\x13\\b\\n\\n\\x02 \\x13*D\\x01&!0\\\"\\\"0!!0\\\"\\\"09\\b\\x0f\\v*\\x1ef4!\\v\\n*\\x01\\x06\\v\\x0e\\x11\\x12\\x13\\b\\x03\\b\\x13\\x12\\x12\\x0f\\f\\x06\\x01)\\v\\v!4g\\x1d+\\n\\x0f\\b\\x03\\x01\\xc6\\x15\\x1d\\r\\x17\\x0e\\xc6\\x0f\\xbf\\x10\\x14\\t\\x13\\x1a\\xc1\\x10\\x0e\\x02\\x01\\b\\n\\b\\x1b\\x02\\x02\\x0f\\x00\\x00\\x04\\x00\\x18\\xff\\xc0\\x01\\xe8\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\x10\\x00\\x18\\x00\\x00\\x01\\x15#5#\\x15#5'!\\x11\\a#\\a5#\\x11\\x055!\\x113\\x1573\\x01\\x87&D'}\\x01o\\xaeMat\\x01\\xa9\\xfe\\xcbWDM\\x01Ynnnng\\xff\\x00\\xa5[[\\x01J\\x93\\xc9\\xfe\\xee@@\\x00\\x05\\x00\\x01\\xff\\xbf\\x01\\u007f\\x01\\xc0\\x00\\x12\\x00\\\"\\x003\\x00F\\x00V\\x00\\x007\\x17\\x16\\x06\\x0f\\x01\\x06#\\\"&'&547>\\x0132\\x17&54?\\x016\\x16\\x15\\a\\x14\\x06#\\\"#&7&6\\x1f\\x01\\x1e\\x01\\x15\\x14\\a\\x0e\\x01\\a\\x06#\\\"'7\\x16\\x15\\x14\\x0e\\x02\\x0f\\x01\\x06&?\\x01632\\x17\\x1e\\x01%67232\\x16\\x1d\\x01\\x14\\x06/\\x01&54+d\\x0e\\x03\\x10l\\x02\\x03\\t\\r\\x01\\x01\\n\\x02\\r\\a\\x051\\n\\x06J\\v\\x1d\\x04\\x0e\\t\\x02\\x02+m\\b\\x14\\x0fi\\a\\t\\x02\\b\\x1f\\x0e\\x06\\t\\f\\aZ\\x02\\x03\\x05\\x06\\x03k\\x0f\\x13\\t>\\a\\f\\t\\x06\\x0e\\x1d\\xfe\\xc95;\\x01\\x01\\n\\r\\\"\\th\\x03\\xd01\\a \\x04\\x1a\\x01\\f\\b\\v\\f \\x1e\\a\\t\\xf2\\a\\f\\t\\aR\\f\\f\\x10o\\t\\r\\b\\x86\\x0e\\x19\\x05\\\"\\x02\\r\\a\\x05\\x05\\x10(\\v\\x05\\n\\xe3\\x05\\x05\\x03\\a\\x06\\x05\\x01\\x1e\\x05\\x1a\\x0e[\\v\\x06\\f)\\xbf\\x19\\x05\\r\\n\\xd0\\x12\\t\\x0f\\xb5\\x05\\x06\\x0f\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xdd\\x01\\x8a\\x01\\xa3\\x00\\\"\\x00K\\x00\\x007\\x14\\x0e\\x04\\a\\x06+\\x01\\\"&7\\x13>\\x013262\\x1e\\x02\\x17\\x1e\\x01\\a\\x06\\a\\\"&\\x0e\\x027\\x16\\a\\x06#*\\x03\\x0e\\x04\\x15\\x06\\a\\x06+\\x01\\\"&76763:\\x02>\\x067676o\\x04\\x04\\x04\\x04\\x04\\x01\\x01\\x02K\\x05\\b\\x01;\\x01\\v\\b\\x1cH\\x19$\\x0f\\x12\\n*\\x14\\x12\\x1fm\\b\\x1f\\v\\x11\\a\\xf4$\\f\\x16y\\x01\\a\\x02\\x06\\x02\\x04\\x02\\x03\\x02\\x0e\\x01\\x03\\x0e@\\x05\\x06\\x01\\x04\\x17\\x01\\n\\x01 \\v \\x10\\x1e\\x12\\x19\\x10\\x11\\x06\\x06\\x03\\x01\\x98\\x04\\x15\\x19\\x1d\\x1a\\x17\\x06\\x02\\b\\x06\\x01s\\b\\t\\x01\\x01\\x03\\x04\\x04\\x11O,Y\\x02\\x01\\x01\\x04\\v\\x87\\x1bBp\\x01\\x02\\x03\\x04\\x06\\x04W\\x04\\x0f\\b\\x05\\x1e\\x8c\\t\\x02\\x04\\a\\v\\x0f\\x15\\x1b\\x11\\x12\\x10\\x03\\x00\\x04\\x00\\x06\\xff\\xe0\\x01\\xb8\\x01\\xa0\\x00\\n\\x00\\x15\\x00\\x1b\\x00)\\x00\\x00\\x13\\x16\\x17\\x06\\a&'>\\x01&4\\a2\\x17\\x16\\x17#&'&6373\\x16\\x17#&\\x13\\x16\\x15\\x14\\a&'&'&6;\\x012\\x9d5\\x1f\\f\\x13\\x19\\x1f\\x02\\x02\\x010\\b\\x057\\x1ch\\x1f<\\x03\\x04\\x05\\x8dm~\\x11r\\n|\\x1f\\x19\\x11J\\x06\\x14\\x01\\x04\\x04Y\\f\\x01AUM21c2\\r\\x1e\\x18\\\">\\x06LvnM\\x04\\tX\\xae¦\\x01\\x0enfja\\x8a\\x85JH\\x04\\x06\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\b\\x00\\x18\\x00%\\x00)\\x00H\\x00S\\x00\\x00%\\x16\\x17#70>\\x01?\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x017#\\a/\\x01&'#\\a\\x16\\x1f\\x0137#\\a74'&5636\\x1f\\x017&#\\\"\\x0e\\x01\\x15\\x06\\x17\\x16\\x15\\x06#\\\"/\\x01\\a\\x16\\x1726\\x17'#\\\"\\x0f\\x013673\\x17\\x01\\xd6\\b\\x01!\\x10\\x02\\x02\\x01m\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfeX@+'\\x04\\x0e\\x03\\x10@\\x01\\x17\\x13$\\x89\\x19(\\x19\\xb4\\\"\\x17\\x01\\x17\\x0f\\x0e\\x04\\x05\\x10\\x14\\x13\\x1f\\x11\\x01$\\x15\\x01\\x17\\x13\\x13\\x05\\x06\\x11\\x1c\\x1f'\\x8d  \\x0f\\x05<*\\a\\x014\\x05\\xd9&\\a+\\x05\\b\\x02\\x8a\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\xf1\\x9bj\\x16G\\f\\x01\\x03\\x06\\v\\x87\\x9b\\x9b2\\x1a\\x11\\v\\b\\r\\x01\\a\\x01!\\a\\r\\x18\\x0e\\x19\\x12\\n\\t\\x0f\\b\\x03#\\b\\x01\\x1d\\x1a\\x9b\\r\\x8e\\x13\\x04\\x17\\x00\\x00\\x17\\x00\\x00\\xff\\xdf\\x02@\\x01\\x9f\\x00\\x03\\x00\\t\\x00\\r\\x00\\x13\\x004\\x00B\\x00R\\x00^\\x00d\\x00\\x8d\\x00\\x9b\\x00\\xaf\\x00\\xc0\\x00\\xcd\\x00\\xd8\\x00\\xe5\\x00\\xf0\\x00\\xfb\\x01\\x05\\x01\\r\\x01-\\x019\\x01F\\x00\\x00$\\x14\\\"4!2\\x14#\\\"462\\x17#72\\x14#\\\"4\\x172\\x150\\x061\\x141\\\"1\\\"1\\\"1\\\"1&1<\\x011434130303\\x1610\\a030410+\\x01\\x1535\\x173\\x13\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x04\\x14\\x16327&67&#\\\"\\x1764'\\x06\\x14\\a4#\\\"\\a&#\\\"\\a5#\\x153<\\x03>\\x0232\\x16\\x15\\x14\\x153<\\x02>\\x0332\\x16\\x15\\x14\\x1537#\\x15&#\\\"\\x06\\x14\\x16327\\x15374&542\\x177&\\x06\\x15\\x14\\x16\\x15\\x14\\\"'\\a\\x1663'\\x06=\\x0135#5#\\x15#\\x153\\x15\\x14\\x16734#\\\"\\x06\\x15\\x14\\x167'\\x06&7&\\a5#\\x153546\\x17\\x1646\\x177&\\x06\\x15\\x14\\x167'\\x067#\\x15&\\x06\\x15\\x14\\x167\\x1537&\\a5#\\x153546\\x177#\\x15&\\x06\\x14\\x167\\x1537\\x153535#\\x15\\x1745&1&0#\\\"0#\\x061\\x061\\x14\\x15\\x141\\x143\\x1623210606107#\\a'#\\x155\\x1737\\x15374&#\\\"\\a\\x1e\\x01\\a\\x16326\\x01\\xe3\\x17\\xfe\\xe0\\v\\v\\vx\\x11\\x01\\x13u\\f\\f\\vu\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x01J\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfe\\x00Q9*#7\\x016#*9\\x8f555Y\\x0f\\t\\x04\\x04\\b\\a\\x04\\b\\b\\x02\\x02\\x03\\x02\\x06\\x03\\a\\x01\\x01\\x02\\x03\\x03\\x05\\x03\\b-\\b\\x05\\a\\b\\n\\n\\b\\b\\x04\\b(\\x17\\x0e\\x05\\x03\\a\\x17\\x17\\x10\\x05\\x04\\t\\x18#\\x02\\f\\r\\r\\b\\b\\b\\x13\\x11\\x1b\\x11\\b\\n\\x19\\t\\x04\\x06\\x0f:\\n\\x05\\b\\b\\n\\x02\\x0e\\r\\a\\x04\\t\\x18\\x19\\b\\x04\\a5\\b\\x06\\x18\\x18\\x06\\b\\\"\\n\\x05\\b\\b\\n\\x03*\\b\\x06\\x18\\x19\\x05\\b\\b\\x01\\x01\\x04\\b\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x04\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x02\\x04Q9*#6\\x017#*9Q1\\x17\\x17\\x17\\x17\\x01\\t\\b\\x17\\x17\\x1a\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x02\\x03\\x01\\x01\\x01Z\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cfsQ\\x17-\\x8d,\\x18\\xf7)\\x87))\\x87v\\x0f\\a\\a\\x05\\x04%\\x03\\t\\x05\\x06\\x03\\x03\\x02\\n\\f\\x06\\x03\\x03\\t\\x05\\x06\\x03\\x03\\x02\\n\\f\\x06\\x03%\\x04\\x05\\v\\x11\\v\\x06\\x05\\v\\t\\x04\\x03\\x04\\x03\\x06\\x06\\x04\\n\\b\\x05\\x02\\x05\\x04\\x06\\x06\\x04\\a\\a\\v\\x11\\a\\v\\v\\a\\x11\\f\\x03\\x11\\x17\\v\\b\\x0f\\b\\t\\x06\\x06\\x03\\x1d\\x04\\b\\x04%\\x15\\b\\x03\\x03\\x13\\x11\\x05\\x05\\a\\a\\t\\r\\x0e\\t\\b\\x06\\x05 \\x04\\b\\t\\r\\x0e\\t\\t\\x05%\\x05\\t\\x04%\\x15\\a\\x04\\x03\\x17\\x13\\b\\t\\x1b\\t\\t\\x05\\u007f\\x05\\x05\\x01\\x01|\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01~\\x04\\x04\\x05\\x04\\x04\\x04\\x04U:Q\\x17-\\x8d-\\x17Q\\x00\\x00\\x00\\f\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x06\\x00\\x16\\x00'\\x003\\x00:\\x00B\\x00S\\x00k\\x00u\\x00y\\x00\\x81\\x00\\x8b\\x00\\x00%\\x14+\\x0153272\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x05\\x15353\\x173'654.\\x03*\\x01#\\x1535#535#535+\\x01\\x1737#\\a&\\\"\\x06\\x14\\x16264'&\\x0e\\x01\\x15\\x14\\x1e\\x0275\\x06&546\\x17\\a\\\"'\\a\\x16654&'&546\\x177&\\x06\\x15\\x14\\x17\\x1e\\x01\\x06\\a2654.\\x01+\\x01\\x1535#\\x15\\x055\\x0e\\x01\\a!26%\\x16\\x14\\a\\x06+\\x01532\\x02\\b\\x0f\\x05\\x05\\x0f\\b\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xb4\\x10\\x02\\x16\\x14\\x1a\\x13\\x03\\b\\x06\\r\\x05\\x10:-\\x1d\\x1c\\x1c\\x1dr\\x11#\\b$\\x12\\x16;%\\x1a\\x1a%\\x1a^\\x10\\x1c\\x13\\v\\x12\\x17\\v\\x0e! \\x0fa\\f\\x06\\n\\r,\\n\\x0e\\f\\x11\\b\\b\\x0e$\\x15\\v\\x06\\bl\\x16\\x17\\f\\x14\\r\\x17[\\x10\\x01\\xb53\\xf3z\\x01\\x91\\x06\\t\\xfe*\\t\\t\\a\\x0f\\x04\\x04\\x0f\\xfc\\r\\x19\\x98\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x8bR!!#\\x03\\x14\\x06\\b\\x06\\x03\\x01R\\x0e\\x16\\x0e\\x12\\x0eTT7:\\x1a%\\x1a\\x1a%\\x14\\a\\x06\\x18\\x0f\\f\\x14\\n\\x02\\x06\\x13\\x0e\\x0e\\x13\\x12\\x0f\\x0e/\\n\\n\\x13\\t\\x16\\n\\n\\x05\\x05\\x06\\a\\x03\\b\\v\\r\\n\\x11\\x10\\a\\x04\\f\\b\\r\\x19\\x10\\f\\x13\\nRRR\\xb4\\x91 i\\x17\\t\\xf7\\a\\x1a\\b\\x066\\x00\\x15\\xff\\xff\\xff\\xe0\\x02A\\x01\\xa0\\x00\\x13\\x00\\x1a\\x00.\\x007\\x00:\\x00A\\x00M\\x00N\\x00`\\x00g\\x00{\\x00~\\x011\\x01I\\x01a\\x01m\\x01x\\x01y\\x01\\x9c\\x01\\x9f\\x01\\xa3\\x00\\x00\\x01\\x14\\a\\x16\\x1d\\x01#<\\x02.\\x02+\\x01\\x15#532\\a254+\\x01\\x15\\x172\\x15\\x14\\x0e\\x03*\\x01#\\x15#'\\a#53\\x177\\a7'#\\x153\\x15#\\x15\\x175\\a7254+\\x01\\x15'#\\x153\\x15#\\x153\\x15#53\\x05\\a\\x14\\a\\x16\\x1d\\x01#54.\\x01+\\x01\\a#532\\a254+\\x01\\x15'#5\\a#'\\x15#'#\\a#73\\x1753\\x1773\\a3'\\x05:\\x02>\\x017\\x15\\x14\\x06#!\\\"&=\\x013673\\x16\\x1735\\x16\\x173>\\x027\\x153523\\x14\\x1735\\x16;\\x01673\\x16\\x152\\x16\\x1735\\x1e\\x01\\x1735#\\x15&'#\\x15&'#\\\"1#\\\"\\a5#\\x15.\\x04*\\x03+\\x02\\x06\\a.\\x01'#\\x15.\\x01'#\\x0e\\x01\\a5463!2\\x16\\x1d\\x01\\\"#\\\"\\a5*\\x02\\x0e\\x02\\a5#\\x15.\\x02\\\"&*\\x02#\\x15&+\\x01\\x0e\\x03\\a.\\x03'#\\x15367\\x1e\\x01\\x17346527\\x1c\\x01\\x153<\\x01523\\x14\\x15\\x14\\x15272?\\x01\\\"\\x15\\x14\\x1e\\x01\\x17\\x15\\x06+\\x0173254&\\\"&54;\\x01\\x15\\a254&\\x06&54;\\x01\\x15#\\\"\\x15\\x14\\x166\\x16\\x15\\x14+\\x015'#\\x153\\x15#\\x15\\x17\\x15#53'63023\\a\\\"'&47'3\\x15*\\x03\\x0e\\x03\\x15\\x14;\\x0173\\x1753\\x1753\\x15#'\\x15#'#\\a#\\\"54\\x17\\a3'3\\x15#\\x01E\\f\\v\\x10\\x02\\x03\\x06\\x04\\x12\\x10'\\x1b\\x1d\\v\\v\\x15\\x04\\x1c\\x03\\a\\a\\v\\x06\\r\\x02!\\x14\\x15BC\\x14\\x153\\x13\\x12)$$j\\x19?\\n\\n\\x15\\v'&&'77\\x01I\\xc3\\v\\n\\x10\\x03\\x06\\x06\\x11\\x01\\x10'\\x1b\\x1d\\v\\v\\x14\\x99\\x10\\x18\\x0f\\x18\\\"\\x06#\\x06\\x12\\x1e\\x18\\x1c\\x1b\\x16\\x14\\x1b\\x94\\x17\\f\\x01\\xd3\\x06\\x18\\n\\x0f\\b\\x04\\x1c\\x14\\xfe \\x14\\x1c\\x1b\\x02\\x04\\x13\\x04\\x035\\x01\\x04\\x1d\\x01\\x02\\x01\\x01\\x88\\b\\x01\\x01B\\v\\x13\\x1b\\x02\\x04\\x13\\x03\\x01\\x01\\x024\\a\\x05\\x02)(\\x05\\x06+\\x03\\x06 \\x03\\x1b\\x13\\f(\\x02\\x03\\x05\\x03\\a\\x05\\v\\a\\x10\\x05\\fg\\x05\\a\\x02\\v\\x01.\\x05\\x03\\x01(\\x02\\x10\\x05\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x04\\x06#\\t\\t\\x16\\b\\f\\x05\\a\\x02O\\x02\\x04\\x05\\a\\x06\\r\\n\\x14\\b\\n\\x0f:\\x01\\x04\\x05\\x04\\x01\\x04\\x06\\x02\\x02\\x02SR\\x06\\n\\a\\x06\\x030\\x01\\x17\\v'\\b\\x02\\x93\\x06\\x01\\x03$\\t\\x0f\\x14\\x04\\x06\\x11 \\x01 \\b\\r\\x10\\x0e\\x18!W\\t\\x0e\\x10\\r\\x18!\\x1f\\t\\x0e\\x10\\r\\x1a \\n'&&'889\\x01\\a\\x02\\x01\\b\\x02\\x01\\x01\\x16\\x10\\x10\\x02\\t\\x04\\a\\x03\\x05\\x02\\x01\\x10\\a\\x18\\x18\\x1c\\x1a\\x1d\\x11\\x18\\x1f\\\"\\a\\\"\\x06\\x13!L\\f\\x17p\\x11\\x11\\x01\\x18\\x0e\\x04\\x04\\x0f\\r\\x02\\t\\x04\\x05\\x03\\x02\\x19E\\x1e\\b\\a\\x0fZ\\x16\\x06\\t\\x05\\x03\\x01\\x17\\x17\\x17E\\x16\\x166\\x14\\x14\\f\\x0f\\r\\t8\\x1b\\x03\\t\\b\\x11\\x88\\f\\x0e\\x0e\\x0eEj \\x0e\\x05\\x04\\x0e\\x0e\\f\\x05\\x06\\x02\\x19E\\x1d\\b\\a\\x0fP6666\\x0f\\x0fEBB//(\\x1c\\xbb\\x01\\x03\\x02Z\\x14\\x1c\\x1c\\x14\\xcc\\x06\\t\\t\\x06\\v\\x02\\t\\x02\\x03\\x04\\x02\\v\\x19\\v\\x0e\\t\\t\\x06\\t\\a\\x01\\x04\\x03\\x16\\f\\a\\x03\\\\\\x13\\t\\n\\x15\\b\\r\\t\\t\\x05\\x01\\x01\\x01\\x01\\x01\\f\\x12\\x03\\x18\\x03\\x15\\n\\a\\x04\\x04&\\fn\\x14\\x1c\\x1c\\x14\\xaf\\x05\\x05\\x01\\x01\\x02\\x02\\x06\\x05\\x01\\x01\\x02\\x01\\x06\\x06\\x02\\x05\\x04\\x06\\x01\\x05\\x06\\x02\\x03\\x02]\\a\\v\\b\\a\\x03\\b\\b\\a\\a\\b\\x10\\x06\\n\\a\\t\\x01\\x03\\t\\r\\x03\\x02<\\a\\x05\\x01\\x01\\x06\\x1a\\t\\x0f\\x06\\x05\\x02\\n\\v\\x14\\x0e(\\x06\\x05\\x03\\x01\\n\\v\\x15\\x0f\\a\\x04\\x02\\x01\\n\\v\\x16\\x0f(\\f\\x0f\\r\\x01\\x0eE^\\x01\\x11\\x01\\x01\\r\\f\\x0f\\x0f\\x02\\x03\\x04\\a\\x04\\x147BB11E44\\x0f\\x0f\\\"#\\f\\x1c(E\\x00\\x00\\v\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\x13\\x00\\x1c\\x00,\\x00A\\x00X\\x00r\\x00\\x87\\x00\\x9e\\x00\\xab\\x00\\xb5\\x00\\x007\\x14\\x06#\\\"54632'2\\x16\\a\\x06+\\x01743!2\\x17\\x14+\\x017437\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x054+\\x01\\\"\\x0f\\x01\\x06;\\x012?\\x0146:\\x023267#\\\"\\a&#\\\"\\x06\\x15\\x14\\x16327\\x06\\x15\\x14;\\x012?\\x014\\x177454+\\x01\\\"\\x0f\\x01'&+\\x01\\\"\\x150\\x1e\\x01\\x17\\x06\\x15\\x14;\\x01274+\\x01\\\"\\x0f\\x01\\x14;\\x012?\\x01>\\x01:\\x021267#\\\"\\a&#\\\"\\x06\\x15\\x14\\x16327\\x14\\x15\\x14;\\x012?\\x01474+\\x01\\\"\\x15\\a\\x15\\x14;\\x0127'2\\x15\\x14\\x06#\\\"546\\xba\\f\\n\\x10\\r\\t\\x10j\\v\\t\\x02\\x02\\x14\\b\\x05\\x03\\x01 \\x12\\x01\\x16\\b\\x04\\x03\\xd8\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfe@\\\"(\\x05\\x01\\x10\\x01\\x04\\x13\\x05\\x01\\x04\\x03\\x05\\x04\\x05\\x01\\x16\\x18T\\x12\\x04\\x01\\a\\x10\\x12\\x1a\\x12\\x0e\\x10\\v\\x01\\x03\\x11\\x04\\x02\\n%@\\x03\\x13\\x03\\x02\\x1a\\v\\x02\\x04\\x12\\x04\\n\\v\\x01\\x15\\x03\\x13\\x03\\xa1\\\"(\\x05\\x01\\x10\\x03\\x15\\x03\\x01\\x04\\x01\\x03\\x04\\x04\\x06\\x16\\x18T\\x12\\x04\\x01\\x06\\x11\\x13\\x19\\x11\\x0f\\x10\\n\\x03\\x11\\x04\\x02\\n,\\x03\\x13\\x03\\x10\\x03\\x11\\x04\\x01J\\x10\\f\\n\\x10\\r\\xbe\\t\\r\\x0f\\t\\r!\\x05\\n\\x0e\\x1b\\x02\\v\\x12\\x1b\\x02\\x82\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x9b\\x1c\\x05f\\x04\\x06\\x1a\\x02\\x03\\x18\\r\\b\\n\\x1b\\x13\\x0e\\x12\\f\\x03\\x03\\x04\\x06@\\x04b\\\\\\x01\\x01\\x04\\x03'&\\x04\\x04\\x1d\\x1f\\x02\\x1d\\x03\\x03n\\x1c\\x05f\\x04\\x03\\x1d\\x02\\x03\\x18\\r\\b\\n\\x1b\\x13\\x0e\\x12\\f\\x05\\x01\\x04\\x06@\\x04!\\x04\\x03h\\x01\\x03\\x061\\x0f\\t\\r\\x0f\\n\\f\\x00\\n\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\a\\x00\\x13\\x00#\\x00@\\x00P\\x00Z\\x00^\\x00b\\x00q\\x00\\x87\\x00\\x00%2\\x16\\x15#4>\\x01\\a2\\x1e\\x01\\x15\\x14\\x06#\\\"'5672\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x174.\\x015432\\x175&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x01\\x15\\x14#\\\"'\\x15\\x1632675#5\\a\\x15\\x14\\x163275\\x06&=\\x01\\x175&\\a'#\\x15356\\x175#\\x1575\\a\\x15\\x172654&#\\\"\\a'#\\x1575\\x167454&#\\\"\\x0e\\x02\\x15\\x14\\x1e\\x013275\\x06#\\\"'\\x01\\xec\\b\\n$\\x05\\tq\\x06\\n\\x06\\f\\n\\n\\a\\x06\\xa4\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14J\\x1b\\x1b\\f\\x12\\x11\\x10\\x13\\x0e\\x16\\f\\x1b\\x1b\\x0e\\x11\\x15\\x12\\x14\\x17\\x1bE\\x1b#\\x15\\x10\\x11\\b\\x03\\x18e\\x14\\n\\x02\\x1f$\\n=$$$n\\x15\\x1c\\x1d\\x14\\x0f\\f\\x02 $\\r\\xad\\x1b\\x18\\r\\x14\\x0e\\b\\x10\\x1a\\x11\\x17\\x11\\x10\\x13\\x1a\\x02\\xe3\\v\\f\\b\\v\\x04\\x02\\t\\x0f\\t\\x0f\\x13\\a5\\a\\xbf\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xf9\\x12\\x13\\b\\x06\\a\\t\\\"\\x06\\t\\x13\\f\\x11\\x12\\t\\x06\\t\\f\\\"\\b\\x15L\\x1e\\x1f\\br\\x0f\\x15\\x05\\x1c\\x03\\x03\\r3\\x03!\\a\\x12\\v}U\\rb}}\\x8f\\x1d\\a\\x1d\\x8a! \\x1e\\\"\\v\\t\\xa6\\b(\\t3\\b\\x05\\x1d$\\n\\x11\\x18\\x0e\\x15\\x1d\\x0e\\t\\x1d\\b\\x15\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x001\\x02\\x00\\x01O\\x00X\\x00\\x007\\x0e\\x04#\\\"&54632\\x1e\\x05\\x17\\x16\\x17\\x1e\\x023254.\\x05'&54632\\x17\\a&#\\\"\\x0e\\x01\\x15\\x14\\x16\\x17\\x1e\\t\\x15\\x14#\\\"&'.\\a#\\\"\\x06\\x15\\x14\\x1e\\x0126?\\x01\\xe2\\x01\\x06\\x12\\x14#\\x12>BD@\\x17%\\x1a\\x17\\x0e\\x10\\a\\b\\x05\\x02\\b\\x15)\\x1c=\\x03\\n\\b\\x12\\n\\x1a\\x05D<-^\\a;\\x03+\\r\\x12\\n\\x0e\\x13\\x02\\x1c\\x05\\x19\\a\\x14\\x06\\r\\x05\\x04zFE\\x10\\x03\\r\\x04\\f\\b\\x0e\\x0f\\x14\\f\\x1f)\\x11 (&\\t\\tQ\\x01\\x05\\n\\b\\aFCFM\\a\\v\\x17\\x11%\\x16\\x18\\x0e\\b\\x17\\x1f\\x14\\x1f\\x06\\v\\b\\x05\\x06\\x03\\x05\\x02\\x10<-'J\\a#\\a\\x0e\\n\\x0e\\x10\\x04\\x01\\x06\\x01\\a\\x04\\t\\b\\r\\x0e\\x13\\nQ60\\t(\\x0e\\x1f\\n\\x13\\x06\\x06/3\\x1b*\\x16\\x11\\b\\t\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00g\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01254.\\b1&5432\\x177&#\\\"\\x06\\x15\\x14\\x172\\x1e\\b\\x15\\x14#\\\"'.\\t#\\\"\\x06\\x15\\x14\\x1e\\x01326?\\x01'\\x06#\\\"&54632\\x1e\\x06\\x17\\x1e\\x04\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x04L\\x03\\x02\\t\\x04\\f\\x04\\x10\\x03\\x13\\x15\\x1a\\x1b\\x02$\\x04:\\x1d%+\\x03\\n\\x06\\b\\x05\\x06\\x04\\x04\\x02\\x02&.\\x10\\x01\\t\\x02\\t\\x04\\n\\b\\x0e\\x0e\\x12\\v(+\\x13#\\x1a\\x12\\x1f\\x06\\x06\\v\\x14\\x1c\\x13\\x18\\x1a\\x13\\a\\r\\t\\t\\x05\\a\\x03\\b\\x02\\x03\\n\\x0f\\x15\\x1d\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xc73\\x06\\f\\t\\b\\x05\\x06\\x02\\x04\\x01\\x04\\x05\\x10\\x14\\x16\\x04/\\x19\\x1c%\\v\\x02\\x02\\x02\\x02\\x02\\x03\\x03\\x04\\x05\\x03\\x13.\\x03\\x1c\\x06\\x17\\x05\\x11\\x04\\n\\x03\\x030,\\x1c&\\x14\\n\\x05\\x04 \\x15\\x1f\\x1a \\x1e\\x04\\x04\\f\\a\\x13\\b\\x1a\\x05\\v\\x12\\x11\\v\\a\\x00\\x03\\x00\\x00\\xff\\xc8\\x02\\x80\\x01\\xb8\\x00\\x1d\\x00;\\x00G\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\x16\\x15\\x14\\x06#\\\"&'#\\\"&46;\\x01&54632\\x16\\x17\\a4'!\\\"&463!.\\x01#\\\"\\x06\\x15\\x14\\x17!2\\x16\\x14\\x06#!\\x1e\\x01326%32\\x16\\x14\\x06+\\x01\\\"&46\\x02h\\n\\x0e\\x0e\\n5\\x05\\x91gL|\\x1dC\\n\\x0e\\x0e\\n5\\x05\\x91gL|\\x1d\\x1d\\x06\\xfe\\xd6\\n\\x0e\\x0e\\n\\x01\\x18\\x1a^8Su\\x06\\x01*\\n\\x0e\\x0e\\n\\xfe\\xe8\\x1a^8Su\\xfe\\xd0\\xd0\\n\\x0e\\x0e\\n\\xd0\\n\\x0e\\x0e\\x01 \\x0e\\x14\\x0e\\x17\\x19g\\x91TD\\x0e\\x14\\x0e\\x17\\x19g\\x91TD`\\x18\\x18\\x0e\\x14\\x0e/9uS\\x18\\x18\\x0e\\x14\\x0e/9uk\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x06\\x00.\\xff\\xc0\\x01\\x92\\x01\\xc0\\x00'\\x00/\\x008\\x00E\\x00\\x81\\x00\\x87\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#\\\"&547&54632\\x17&54>\\x0232\\x17\\x16\\x17>\\x0432\\x16\\x15\\x14\\x0f\\x01\\x17654#\\\"\\a\\x14\\x176\\x17'&\\a\\x06\\a\\\"\\x0e\\x01\\x15\\x14\\x1632654&\\x17>\\x01&'.\\x01#\\\"\\x0e\\x01\\x15\\x147232\\x17\\x06\\a\\x06\\a\\x0e\\x01\\x15\\x14\\x16\\x150\\x061&'\\\"#\\x16\\x06#\\\"&7\\x1e\\x0432654&#\\\"\\x06\\x17\\x1e\\x0132'\\x16\\x1767&\\x01[!\\x16iVF_3\\b\\x1f\\x12\\b\\f/\\x06\\v\\x11\\f%7\\x02\\x01\\x01\\x12\\x10\\x17\\x1a\\r\\x14\\x17P!\\\"/\\v\\x10\\xbf.\\x06\\x1d\\\"\\x17\\x10\\b\\x02\\x04\\t\\a=\\x0f\\x05\\x060\\xa5\\x1a\\x15\\x06\\n\\x10Y!\\b\\b\\x01r\\x04\\x02\\x0f\\x02\\b\\x13\\x13\\b\\x13\\x19\\v\\x02(\\x02\\x02\\n\\x04\\x17\\x13\\x1e1\\x15\\x06\\x10\\a\\n\\a\\x05\\x03\\t.\\t\\x0f\\x10\\v\\x11C-A6\\a\\x02\\v\\t\\x1d\\xe9\\b0&Xs\\\\99\\x0e\\x16\\b\\x12#\\x05\\x85\\x1d\\v\\x13\\x0e\\b\\xa6\\x05\\x01\\x023%/\\x1a\\x1c\\x15\\x1f\\x13^\\x06\\x82\\x12\\x10\\x04\\x1dx\\x04\\x03eC\\x05\\x02\\xd1\\a\\n\\x04\\x11Q\\b\\x04\\x0f\\\\\\xba\\x1cP:\\b\\x0e\\x10\\x05\\x04\\x05(\\x01\\x15\\b\\b\\a\\x06\\r'\\x14\\b!\\t\\a\\x02;\\x0e\\x1cA\\x16\\t\\x15\\t\\n\\x03\\x05\\x04\\n?$!)/\\xaf\\x14\\x05\\f\\a\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x02\\x00\\x12\\x00\\x19\\x00\\x00\\x13\\x17#%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\v\\x01#\\x0337\\x17\\xe0+V\\x01\\v\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cA_\\x80_[p\\x18\\x01)\\xa0\\xe7\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\xa7\\x01*\\xfe\\xd6[[\\x00\\x00\\x17\\x00\\r\\xff\\xcf\\x023\\x01\\xb1\\x00J\\x00M\\x00R\\x00_\\x00f\\x00i\\x00n\\x00q\\x00u\\x00z\\x00\\x83\\x00\\x87\\x00\\x8e\\x00\\x94\\x00\\x99\\x00\\x9c\\x00\\xa1\\x00\\xa8\\x00\\xb0\\x00\\xb6\\x00\\xb9\\x00\\xbe\\x00\\xc8\\x00\\x00%\\x16\\x15\\x14\\x0f\\x01\\x16\\x15\\x14\\x0f\\x01\\x16\\x15\\x14\\x0e\\x01#\\\"'#\\x06\\\"'#\\x06#\\\"&547'&547'&54?\\x014&14?\\x01&54>\\x0132\\x17362\\x173632\\x1e\\x01\\x15\\x14\\a\\x172\\x16\\x15\\x14\\a\\x015#75\\a\\x16\\x1575'\\x06#\\a\\x14\\x15\\x14\\a\\x170\\x1775\\a\\x141\\x14\\a75\\a\\x055\\a\\x177\\x0f\\x013'7'\\a\\x1f\\x0137'7\\a\\x177&=\\x01'&'#\\a\\x17'#\\x177#\\x06\\\"\\a\\x157'\\\"\\x0f\\x01\\x15\\x177'\\a\\x157\\a\\x1537'\\a37#\\x15\\x17\\x16\\x173'#\\a362?\\x01#\\x176?\\x02#747'\\a74547'\\a\\x1767\\x02&\\f\\f7\\x01\\f4\\x01\\x04\\a\\x04\\a\\x04k\\x05\\x0e\\x05j\\x05\\a\\x06\\t\\x014\\f\\x017\\f\\f6\\x01\\t8\\x01\\x05\\a\\x04\\a\\x04j\\x05\\x0e\\x05j\\x05\\a\\x04\\a\\x04\\x018\\x06\\b\\x02\\xfe\\xa6,,-\\x01,3\\x03\\x044\\x018\\x043,\\x02.,\\x01rb@#\\xbd\\f\\x17\\fPSPY\\x11|\\x06D\\\"uSb\\x02:\\x01\\f\\x04\\xa69\\nh3\\x94K\\x04\\fx63\\x01\\x01\\x01)O<<$$k\\x11R#\\x01[c\\x01\\x03\\x84i\\\\&\\\\a\\x04\\f|\\x12sZ\\x02\\x01\\x11#\\x16\\x16\\x01\\x11\\x04V\\x01.#\\x15\\x01\\x03\\xcf\\x02\\r\\f\\x03_\\x03\\x02\\f\\x03Z\\x02\\x02\\x04\\a\\x04\\x04\\x05\\x05\\x05\\t\\x06\\x02\\x04Y\\x03\\f\\x02\\x03_\\x03\\f\\r\\x02\\\\\\x01\\x01\\n\\x04a\\x03\\x02\\x04\\a\\x04\\x06\\x06\\x06\\x06\\x04\\a\\x04\\x02\\x03`\\t\\x06\\x03\\x04\\xfe\\xd7L\\b30\\x02\\x01?\\\\4\\x02Z\\x01\\x03\\x02\\x02`\\x02\\x9cH\\x10\\x01\\x04\\x04!<K\\x18\\x01fC\\xa7\\xc1\\f\\x17RXT\\\\\\x11\\x1cG\\xe0|Xe\\x04\\x04\\x01d\\x01\\x03<=y66\\x05\\x01G\\x146\\x01QS+U?sL&2;\\x12V\\xcf_Z\\x01\\x01\\x03__\\x05\\aS\\\\\\x01\\x01\\x1d=\\b\\x02\\x01\\x12\\x15l\\x02\\x01\\x01\\x04O\\xa4\\x16\\x01\\x01\\x00\\x00\\x00\\x02\\x00\\x13\\xff\\xc0\\x01\\xad\\x01\\xc0\\x00\\r\\x00\\x1d\\x00\\x00\\x017\\x11\\x14\\x06+\\x01\\\"&=\\x01463\\x13\\x153'54.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x01Gf5&\\xe4&55&,\\xe03\\t\\x0f\\b\\x8d\\r\\x13\\x13\\x01Xh\\xfeU%00%\\xe5'7\\xfe\\xc8\\x015{\\t\\x0f\\t\\x14\\r\\x8f\\r\\x13\\x00\\x00\\x04\\x00\\x00\\xff\\xdd\\x01\\xc0\\x01\\x9d\\x00\\t\\x00\\x13\\x00\\x1d\\x00'\\x00\\x007&54632\\x17\\x0e\\x01%\\x0e\\x01\\a&'>\\x017\\x16\\x13\\x16\\x17&'\\x06\\a67\\x067\\x0e\\x01\\a&'>\\x017\\x16\\x06\\x06\\x83\\\\\\x18\\x19\\\\\\x8c\\x01gq\\xa7!\\x18\\x15!\\xa5p\\x1b$\\x12\\x1074(-Cy\\x06\\x06U\\x82#\\x1f\\x1a\\\"\\x9ag\\f\\x8a\\x1a\\x1a\\\\\\x83\\x05$\\x8da!\\xa9r\\x13\\x1ep\\xa7!\\x13\\xfe\\xe90>\\x0e\\x14\\x19\\a}B-k#\\x84V\\x04\\vh\\x9d\\\"\\x1b\\x00\\x00\\x00\\x03\\x00\\x06\\x00\\x00\\x02:\\x01\\x80\\x00\\x0e\\x00%\\x00:\\x00\\x00\\x01\\x17#&\\a&#\\\"\\a\\x13632\\x176\\x13\\\"'&#\\\"\\a&#\\\"\\a\\x06+\\x01\\x13632\\x17632\\x17\\v\\x01&#\\\"\\a&#\\\"\\a\\x03>\\x0232\\x17632\\x16\\x01\\x83\\x0f\\v8/-:8C\\x1f,0=*)\\xf0$\\\"75>))>57#\\\"\\x01*>G@**@G>\\x01\\\"/6>))>6/\\\"\\x1d!1\\x188//8#9\\x01Q\\xf9\\x01\\x1d\\x1c\\x1c\\x01\\x02\\x13+)\\xfe\\xb1\\x10\\x19))\\x19\\x10\\x01]#\\x1d\\x1d#\\xfe\\xd0\\x01\\x18\\x15&&\\x15\\xfe\\xe8\\f\\f\\t\\x1d\\x1d\\x10\\x00\\x00\\x00\\x05\\x00\\x06\\xff\\xe0\\x02z\\x01\\xa0\\x00\\x1c\\x00,\\x00<\\x00M\\x00]\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467&54>\\x0132\\x17>\\x0132\\x16\\x15\\x14\\x0554&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x02\\x1c)5I2\\xfe\\x822I' \\x03\\x16'\\x17\\x1f\\x18\\x0e[:Ec\\xfe\\xa8\\t\\x06\\x1f\\a\\t\\t\\a\\x1f\\x06\\tY\\t\\x06\\x1f\\x06\\t\\t\\x06\\x1f\\x06\\tZ\\x04\\a\\x04\\x1f\\a\\t\\t\\a\\x1f\\x06\\tW\\t\\x06\\x1d\\x06\\t\\t\\x06\\x1d\\x06\\t\\xd3\\nC+3HH3$<\\x0f\\v\\f\\x17&\\x17\\x158HcE\\x14\\xb6o\\a\\t\\t\\ao\\x06\\t\\t\\x06\\x84\\x06\\t\\t\\x06\\x84\\x06\\t\\t\\x06\\xa3\\x04\\a\\x04\\t\\x06\\xa3\\x06\\t\\t\\x06\\xe1\\x06\\n\\n\\x06\\xe1\\x06\\t\\t\\x00'\\x00\\x00\\xff\\xc3\\x01\\xc0\\x01\\xbd\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00C\\x00G\\x00M\\x00U\\x00u\\x00y\\x00}\\x00\\x81\\x00\\x86\\x00\\x8b\\x00\\x8f\\x00\\x93\\x00\\x97\\x00\\x9b\\x00\\x9f\\x00\\xa3\\x00\\xa7\\x00\\xab\\x00\\xaf\\x00\\xb3\\x00\\xb7\\x00\\xbd\\x00\\xc1\\x00\\x00?\\x01\\x17\\a\\x177\\x17\\a?\\x01\\x17\\x0f\\x017\\x17\\a'7\\x17\\a\\x177\\x17\\x0f\\x017\\x17\\a?\\x01\\x17\\a\\x03\\x15#5#\\x15#5#\\x15#53\\x15#53\\x15#53\\x15#5#\\x15#53\\x15#5\\x01\\x15#57\\x15#5\\a\\x15#53\\x15\\x16\\\"&462\\x16\\x14'\\x14\\x166\\x16\\x15\\x14#\\\"'\\a\\x1632654&\\x06&5432\\x1737&#\\\"\\x0e\\x01'\\x15#5\\x0553\\x15%\\x15#5\\x03!\\x11\\a'%\\x11!\\x11\\x17\\x135!\\x15\\x17\\x15#5\\x17\\x15#57\\x15#5\\x0553\\x15'53\\x15'\\x15#5\\x1753\\x15\\a53\\x15'\\x15#53\\x15#5\\x175#53\\x15'\\x15#5d\\x04\\x1f\\x04\\b\\x05\\x1e\\x04\\x8e\\x1e\\x04\\x1e\\x89\\x05\\x1e\\x05\\x95\\x05\\x1e\\x04\\xb5\\x1e\\x05\\x1f,\\x1f\\x05\\x1fr\\x1f\\x04\\x1f\\xb9\\\"\\r\\\"\\r\\\"\\xaf!\\x80\\\"Q\\\"=!\\xaf\\\"\\xfe\\xc1\\vQ\\\"$\\v\\\"\\xb8L66L5\\x8b\\x18\\x1d\\x18!\\x1c\\b\\t\\x13\\x1c\\x13 \\x19\\x1d\\x19\\x1e\\x1b\\t\\x01\\b\\x1d\\x0f\\f\\x14\\x11y\\v\\x01a\\v\\xfe\\x9f\\v*\\x01\\xc0\\xe2\\xde\\x01\\xa3\\xfez\\xc1\\xc5\\xfez\\x18\\v\\v\\v\\x80\\\"\\x01\\x03\\v\\v\\v\\xbd!\\xd3\\v\\v\\v\\x8e!Q\\\"u\\x17\\\"/\\\"&\\n\\x0e\\n\\x04\\n\\r\\n\\x1b\\x0e\\n\\x0e\\x15\\n\\x0e\\nB\\n\\x0e\\t\\x19\\r\\n\\r\\b\\x0e\\n\\x0e>\\x0e\\n\\r\\x01g\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\xfe\\xd0\\\"\\\"\\xd8\\v\\v\\v\\x17\\\"\\v\\xe45L55L:\\x0f\\f\\x02\\x05\\b\\x0f\\x0f\\x12\\f\\x0e\\x11\\x10\\x0e\\x02\\x03\\a\\x0f\\r\\x10\\f\\x04\\x0fI\\\"\\\"\\xcf\\\"\\\"M!!\\x010\\xfejbb\\x13\\x01\\x0e\\xfe\\xf2U\\x01\\x80;;\\x82!!+!!\\x82\\v\\v\\xa3!!+!!x\\v\\vM\\\"\\\"\\x82\\\"\\\"\\xcf\\v\\v\\v\\v\\\"\\x17\\v\\\"\\\"\\v\\v\\x00\\x00\\x00\\x00\\x03\\x00\\x04\\x00\\x00\\x01\\xfc\\x01\\x80\\x00\\x1a\\x00\\\"\\x00*\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1e\\x01\\x1d\\x0135463\\x02264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\xe1\\v\\x10\\x10\\v\\xfe>\\v\\x10\\x10\\vj\\a\\f\\a\\xba\\x0f\\v\\xfd7''7'\\xfc7''7'\\x01\\x80\\x0f\\v\\xfe\\xb4\\v\\x0f\\x0f\\v\\x01L\\v\\x0f\\a\\f\\a((\\v\\x0f\\xfe\\xdc'7''7''7''7\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x04\\x02\\x80\\x01|\\x00Y\\x00\\x00%\\x14\\x06#\\\".\\x06#\\\"\\x0e\\x01\\x1e\\x01327>\\x0332\\x16\\x15\\x14\\a\\x0e\\x01#\\\"&54>\\x0132\\x1e\\x0632>\\x01.\\x01#\\\"\\x06#\\\"&54654&#\\\"\\x0e\\x01#\\\"&547632\\x1e\\x02\\x15\\x14\\a632\\x16\\x02\\x80D2\\x1d6()!)'5\\x1d*9\\r\\x0e<+C;\\x01\\a\\x06\\x06\\x02\\x05\\x06\\x12 S(@Z)F*!<,,\\\"'%.\\x19\\x1c&\\t\\t%\\x1a\\t!\\x05\\x06\\n\\x06C2\\x18(\\x17\\x02\\x05\\x06\\b&@\\x1e3%\\x15\\x01\\x12\\x12.Bw1B\\x16#-/,$\\x15,>>,*\\x01\\a\\x05\\x04\\a\\x04\\b\\x10\\x1c\\\"R?*E&\\x15\\\",/,\\\"\\x16\\x1d))\\x1d\\v\\t\\x06\\x06\\x18\\x062A\\x12\\x13\\a\\x05\\x05\\t,\\x15%3\\x1d\\f\\t\\x05>\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc6\\x01\\x80\\x01\\xba\\x00@\\x00\\x00\\x132\\x16\\x15\\x14\\x0e\\x02#\\\"&'\\x0e\\x06\\a\\x06\\\"'&54>\\x017&5476\\x17\\x16\\x15\\x14\\x06\\x15\\x14\\x1632>\\x0254&#\\\"\\x06\\x15\\x14\\x16\\x15\\x14\\x06#\\\"&546\\xccIk\\x13$=&\\x14(\\t\\x03\\v\\x03\\t\\a\\r\\x0f\\v\\x03\\x01\\x03\\x04\\r\\x1b\\x02\\n%\\x1e\\x12\\t\\x1a\\x1b\\x13\\x18&\\x13\\tA5<P\\x17\\t\\x06\\x15+{\\x01\\xba\\\\I$D:\\\"\\x13\\x11\\f,\\r\\x1e\\r\\x18\\x16\\x0f\\x02\\x030\\t\\x1bEh\\t\\x13 0\\x10\\r\\x16\\f\\x12\\x13K\\x13\\x13\\x19 21\\x164:N<\\x17,\\x01\\b\\x1b>0Pd\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00 \\x00H\\x00\\x00\\x01\\x16\\x15\\x14\\x06#\\\"'\\a7&54632\\x032656'&\\\"\\x06\\x15\\x14\\x1f\\x01\\a7\\x17\\x167\\x16\\x17\\x16\\a\\x0e\\x01\\a\\x06'&'&54763232\\x17\\x161\\x16\\a\\x0e\\x02\\x17\\x1e\\x01\\x17\\x167676\\x17\\x16\\x01}C\\x84\\\\91v \\x1e\\x82\\\\\\\\\\\\Ln\\x0196\\x98m\\x1d\\x04\\x13F\\a+\\x98\\n\\x01\\x03\\a\\x03\\x19\\t\\x1a)1-\\x17\\x13\\a\\b\\b\\x03\\t\\x03\\x11\\x03\\x02\\x04\\f\\x02\\x02\\x0e!\\x1c\\b\\x04\\r\\x05\\x04\\b\\b\\x01_CZ\\\\\\x82\\x1b\\x1fs3<\\\\\\x82\\xfeimLJ86lL5-\\aD\\x12\\x04\\x1a\\x8b\\x05\\x02\\x06\\x15\\b\\x11\\x01\\x04\\x12\\x15?\\x1f\\x1a\\x19\\x16\\x06\\t)\\x06\\x04\\t\\r\\x02\\x06\\x1a\\x1a\\x0e\\x04\\x05\\x0f\\a\\x06\\x03\\x03\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x16\\x00\\x19\\x00\\x00\\x01\\a3\\x15#\\a3\\x15#\\a'#53'#53'3\\x1737\\x037#\\x01\\x8000D\\x0eRgYYgR\\x0eD00@Q^Q\\x80\\x1b6\\x01\\xa0p0 0\\xd0\\xd00 0p\\xc0\\xc0\\xfe\\xd0@\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00(\\x00\\x00\\x11!\\x11!\\x015#\\a'#\\x15\\x17\\x16\\a\\x15\\x16\\x0f\\x01\\x1535'&75\\x1737\\x15\\x14\\x0f\\x01\\x1535'&75&7\\x01\\xc0\\xfe@\\x01tS;DW\\x1c\\x05\\x01\\x01\\x05 Z \\x05\\x01O\\tC\\x02\\x18v\\x18\\x03\\x01\\x01\\x03\\x01\\xa0\\xfe@\\x01V\\x05\\x94\\x94\\x05\\\"\\x04\\x06\\x85\\a\\x06&\\x05\\x05&\\x06\\as\\xab\\xab\\x89\\x04\\x02\\x18\\x05\\x05\\x17\\x03\\x04\\xa9\\x04\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\x0f\\x00\\x00\\x01\\x11!\\x11\\x137#\\a\\x06\\a/\\x01#\\x17\\x153\\x01\\xc0\\xfe@\\xecN!.\\a\\x06\\f-#L\\x1e\\x01\\xa0\\xfe@\\x01\\xc0\\xff\\x00\\x92[\\x0e\\r\\x1b[\\x90^\\x00\\x00\\x18\\xff\\xfe\\xff\\xcd\\x02B\\x01\\xb8\\x00\\x8d\\x00\\x98\\x00\\xa2\\x00\\xab\\x00\\xb5\\x00\\xbf\\x00\\xc9\\x00\\xd5\\x00\\xe0\\x00\\xeb\\x00\\xf8\\x01\\x02\\x01'\\x018\\x01I\\x01[\\x01n\\x01z\\x01\\x81\\x01\\x8e\\x01\\x9c\\x01\\xa8\\x01\\xb4\\x01\\xbf\\x00\\x00%\\x16\\a\\x16\\x06\\a\\x06'\\x06'\\x06'.\\x01567&6\\x1767&\\x176746\\x176\\x175\\\".\\x01'&7>\\x0176\\x172\\x17263&'&'45&'&676\\x16\\x17\\x14\\x1e\\x026\\x166\\x166\\x1767&\\a6767&'6\\x17\\x16\\x17\\x16:\\x01>\\x045>\\x01\\x17\\x16\\x17\\x16\\a\\x06\\a\\x15\\\"\\a\\x06\\a2\\x163636\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\a\\x0e\\x01#\\x14\\x156\\x176\\x16\\x15\\x16\\x176\\x16\\a\\x16\\x176\\x16'\\x16\\x176&'.\\x01\\x06\\x15\\x14\\a\\x06\\a\\x16\\a6767&'\\\"#\\x16\\x17276&\\x0567&54&\\a\\x0e\\x01\\x17\\x16\\x17&7&'\\x06\\a\\x16\\x1767\\x06\\x0f\\x015\\x06\\x17\\x167\\\"\\x0e\\x01\\x15\\x14\\x162654&\\x17&#\\x16\\x17\\x16327>\\x01'\\\"#\\x06\\x16\\x17\\x162764\\a64'*\\x01\\x06#\\x0e\\x01\\x17\\x1e\\x01'\\x06\\x16\\x17\\x167>\\x017\\x06\\a\\x16\\a\\x16\\x17>\\x017&7.\\x02#\\x06\\a\\x06'&'\\x06\\a\\x06'\\x0e\\x02\\a\\x06'\\x06'&'&'\\x06\\a65.\\x02'&\\x06\\x17\\x1e\\x03\\x1726'\\x16\\x1767&'\\x06\\a\\x06\\x16\\a\\x06\\a\\x06\\a\\x06\\x05.\\x04'\\x06\\a\\x06'&'\\x06\\a\\x155\\x16767#65&'&'&7&5&'\\x06\\a\\x16\\x176&\\a\\x0e\\x01\\a\\x14\\x163>\\x01\\x03.\\x01\\a>\\x01\\x16\\x016\\x16\\a\\x0e\\x02\\a\\x06&5467\\\"&7\\x16654'6\\x16\\x15\\x14\\x06\\a4>\\x0176\\x16\\a\\x06\\a\\x06&%\\x1e\\x01\\x15\\x14\\x06'.\\x01'&6\\a\\x1e\\x01\\a\\x14\\x06'&'&6\\x02=\\x02\\x01\\x013\\x17\\x1e\\r\\xb9\\x9b\\x0e\\x1d\\x173\\x01\\x01\\x04\\x02\\b\\x04\\a\\x04\\x0f\\a\\t\\r\\x04\\x10\\v\\a\\x13\\x12\\x02\\b!\\x01\\t\\x05\\n\\x04\\x11\\x04\\x03\\v\\x03\\x04\\x04\\a\\x12(\\x0f\\x10\\b\\x15\\x06\\x0f\\x01\\x01\\x01\\x01\\x01\\x03\\x03\\x06\\x06\\x04\\r\\x0e\\v!\\x1c\\x1d'%\\r/\\xa1T\\x1a\\x10\\b\\v\\b\\x05\\x03\\x02\\x01\\x01\\x01\\x0f\\a\\x13\\x05\\x05\\x11\\x0f'\\x13\\a\\x04\\x04\\x03\\v\\x03\\x03\\x12\\x04\\n\\x05\\t\\x01\\x15\\x04\\x02\\x02\\x04\\x1e\\f\\v\\x10\\x04\\r\\t\\a\\b\\x05\\x02\\b\\x03\\b\\x02N\\x16\\b\\x01\\a\\b\\x03\\a\\x04\\a\\x04\\n\\x15\\b\\x12\\b\\x03\\x02\\x024\\b\\x04\\f\\x03\\x05\\x06\\x05\\t\\xfeP\\b\\x16\\x03\\b\\x06\\a\\b\\v\\b\\x12\\a\\x14\\n\\x04\\x1b\\x03\\x032\\x04\\x10\\x05\\n\\f\\r\\a\\b\\xbd\\x15#\\x14-?,,T\\x06\\\"\\x04\\x02\\x02\\x04\\x02\\x03\\v\\v5\\x1d\\x1c\\x01\\x02\\x03\\b#\\b\\x03J\\x03\\x01\\a\\x17\\x14\\b\\x02\\x01\\x05\\t$a\\x05\\f\\x0f\\b\\x02\\x01\\x02\\x02\\x118\\x05\\rKQ/K*\\n\\x02\\x04\\t\\n\\x03\\n\\x14\\v\\x06\\x02\\x03\\x03\\x15\\x1d\\x0f\\x02\\b\\a\\n1\\x06\\x01\\x18\\x0e\\x06\\x05\\x02\\x10\\x1d\\x01\\x03\\n\\x0e\\a\\x122\\x02\\x05\\x0e\\x10\\x11\\a\\x0e\\x17\\x06\\x0f\\x0255+7\\x01\\x06\\x01\\b\\x02\\x03\\f\\x03\\x05\\x01\\x01S\\r\\x14\\x18\\x16\\x19\\f\\x14\\x16\\x02\\x02\\x11\\x1298\\x8f\\xb1\\x02\\x0f\\x01\\x01\\x04\\x04\\v\\x04\\x02\\b\\x01\\x04\\x03717\\xa3\\x022\\x12\\n\\x13\\x05\\x19\\x10\\x0e$\\xb2\\x1bB!\\f<4\\xfe\\xd8\\v\\f\\x05\\x02\\f\\x10\\x05\\r\\x14%\\xe5\\x18 \\x05\\n%\\x11\\x190\\x1f\\xf4\\v\\x0e\\x04\\x06\\x06\\x02\\x06\\v\\a\\x0f\\x01\\xb1\\r%\\x14\\r\\t\\x17\\x04\\x04\\f\\v\\a\\x17\\x01\\x0f\\x06\\r\\x05\\x02\\x06\\x1b\\a\\x04\\x17)\\x01\\x02\\x19\\x06\\x06\\x18\\x01\\x01)\\x17\\x06\\x05\\a\\a\\x03\\a\\a\\x11\\b\\x05\\x04\\v\\x01\\x06\\x03\\t\\x14\\b\\x11\\v\\\"\\x0e\\x04\\n\\x02\\x03\\r\\b\\x01\\x03\\x02\\v\\x01\\x01\\x01\\x01\\x11\\x12G\\x0f\\x04\\x06\\b\\x02\\t\\x01\\b\\x01\\x06\\x02\\x05\\x04\\x02\\f\\b\\x01\\x05\\x1c\\x0f\\x13\\x04\\x05\\v\\\"G\\x17%\\x01\\x03\\x01\\b\\x02\\n\\x02\\a\\a\\x05\\x0e\\\"$\\x13\\x11\\x01\\x03\\v\\x02\\x03\\x02\\t\\f\\x02\\x01\\n\\x05\\t\\x11\\v\\v\\x11\\x13\\r\\a\\b\\x02\\x06\\x01\\v\\x04\\x05\\x04\\x06\\a\\b\\x06\\x03\\a\\xf7\\t\\x1b\\n!\\b\\x03\\x02\\x03\\x03\\b\\r\\x04\\x02\\x18'\\x04\\b\\x04\\x04(\\x02\\x1f!\\x01\\x12$\\r\\x1b\\t\\a\\a\\x05\\x01\\x05\\b!&\\b\\x04'\\x18\\x02\\x04\\t(\\x05\\x11\\\"\\x1d\\x01\\x04\\x05\\x01\\x19\\x1c\\x01\\xa3\\x15#\\x14 -- \\x1f-\\xaf\\x01\\x12\\x18\\x11\\x01\\x06#\\x12\\a \\x02\\x04\\x03\\x05\\x1d.\\x06&\\n\\x01\\n$\\x05\\x04\\x016\\x10 \\a\\x04\\t\\x04(\\b\\x01 \\b\\x05O\\x1b\\r4*\\x04\\a\\x01\\x01\\x01!\\x06\\x04\\f\\x03\\r\\a\\x02\\x02\\x05\\x06\\x06\\x01\\x01\\x05\\x10\\x18\\r\\a\\v\\b\\n\\x02\\xae\\x04\\x04\\r\\x16\\x11\\x02\\x06&\\x16\\a\\x0e\\t\\x06\\x01\\x10O\\x1b\\x19\\x1f\\x10\\x176\\x01\\x02\\x02\\a\\x04\\x06\\x03\\x03\\x03\\x17R\\a\\v\\f\\n\\t\\x04\\t\\a\\x01\\x01\\x05\\b\\x10\\\"\\x01\\x01\\x06\\x12\\x1b\\x19\\x15\\x14\\x02\\x05\\x02\\x06\\x06\\x05\\x01\\x01\\x01\\x023\\x19\\x11%\\x16&\\x06\\x03 \\x13\\x11\\x14\\x01\\x15\\x01\\x8a\\x1d\\r\\x13\\x1c\\x0f \\xfe\\x92\\x01\\x17\\t\\x05\\v\\n\\x01\\x04\\n\\t\\f\\x1e\\xb1#\\x19\\x10\\n\\x11\\x11\\x05\\n\\x1c\\x1a\\x15\\x1c\\xf3\\x04\\v\\t\\x01\\x01\\x0e\\x05\\f\\x05\\x02\\aH\\x01\\x1e\\f\\t\\n\\x04\\x02\\x12\\a\\t\\x17+\\x01\\x12\\x06\\x05\\a\\x02\\x05\\f\\x05\\x0e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xd9\\x02\\x84\\x01\\xa7\\x00\\a\\x00\\x0f\\x000\\x00\\x00$\\x14\\x06\\\"&462\\\"2\\x16\\x14\\x06\\\"&4\\x012\\x1e\\x04\\x0e\\x03\\a\\x06\\a>\\x03.\\x01\\a\\x06.\\x06'\\x1e\\x02\\x01\\xa7\\x1a&\\x1b\\x1b&\\xf7&\\x1b\\x1b&\\x1a\\x01Q';(\\x1e\\b\\x06\\x12\\f'\\x18\\x1b3\\x1c\\f3&\\x14\\x17XQ:aB9\\x1f\\x1e\\f\\x13\\x03*e\\x9e\\x1a&\\x1a\\x1a&\\x1b\\x1b&\\x1a\\x1a&\\x01)\\x02\\b\\x06\\x11\\v\\x1a\\x10#\\x15\\x17,\\x19\\x168%'\\x17\\r\\x01\\x01\\b\\f\\x17\\x12\\x1e\\x11 \\x05,)\\x0e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00#\\x003\\x00?\\x00O\\x00W\\x00_\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17#\\x15\\x14;\\x012=\\x014>\\x01\\x1e\\x01\\x1d\\x01\\x14;\\x012=\\x014&#\\\"\\x0e\\x01\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126'\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x17\\x14\\a\\x15\\x14+\\x01\\\"=\\x01&5462\\x16\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\xa0\\xb0}}\\xb0}t\\x01\\t\\x12\\t\\x19%$\\x1a\\t\\x11\\t9(\\x1a-\\x1a\\xef\\v\\a\\xf8\\a\\v\\v\\a\\xf8\\a\\v\\xf8\\x05\\t\\x04\\x04\\t\\x05\\x8d\\x11\\t\\x12\\t\\x12\\x15\\x1e\\x14\\x8aΑ\\x91Α\\x99\\xbe\\x87\\x87\\xbe\\x87\\x01\\x95}\\xb0}}\\xb0\\b\\x1b\\t\\t\\x1b\\x17 \\b\\b \\x17\\x1b\\t\\t\\x1b(9\\x1a-\\xe6\\x8e\\a\\n\\n\\a\\x8e\\a\\v\\v\\x90\\x85\\x04\\x04\\x85\\x055\\x15\\n\\x1f\\t\\t\\x1f\\n\\x15\\x0e\\x15\\x15\\x01\\r\\x91Α\\x91\\xce\\xfe\\xb3\\x87\\xbe\\x87\\x87\\xbe\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\b\\x00\\x10\\x00 \\x00;\\x00N\\x00c\\x00\\x00%531\\x16\\x15\\x14\\a\\\"\\x17\\x16\\x14\\a\\x06#527\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05#\\x14\\x16\\x14\\x0e\\x03#\\\"'\\x15\\x1e\\x0223\\x172>\\x044&7.\\x01\\x0e\\x01\\x15\\x14\\x1e\\x01675\\x0e\\x01&46\\x16\\x1f\\x014.\\x04'>\\x0154.\\x01'+\\x01\\x15326\\x01\\xb0&\\r\\r\\x01\\x05\\x0e\\x0e\\x02((h\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfev9\\x01\\x01\\x04\\b\\x0e\\n\\x1b\\x1e\\b\\x15\\x10\\x0f\\x04\\x04\\x12\\x1b\\x12\\f\\x06\\x02\\x01\\xb2\\x1973!\\\"65\\x17\\x181\\\"\\\"1\\x18\\xb8\\x03\\x04\\a\\t\\n\\x05\\x0e\\x10\\t\\x11\\vu\\x03{\\x12\\x18\\xcc \\x03\\r\\x0e\\x02\\x14\\x03\\x1d\\x02\\x01#\\xb8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x84\\v \\x11\\x17\\v\\v\\x05\\x0f\\x1c\\x03\\x03\\x02\\x01\\x06\\x06\\x10\\f\\x1b\\x11%\\x06\\a\\x02\\t!\\x1a\\x1b!\\b\\x03\\x06\\x1c\\r\\x04\\x172\\x17\\x04\\r=\\x04\\b\\a\\x06\\x04\\x02\\x01\\x02\\x11\\v\\n\\x0e\\a\\x01\\x80\\x12\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\a\\x00\\r\\x00\\x17\\x00'\\x006\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x175\\x0e\\x01\\x14\\x16\\x17>\\x0154.\\x03'72\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x012654&+\\x01\\\"\\x0e\\x01\\x15\\x14\\x163\\xa7\\x92gg\\x92g\\x88 ((p\\x1f(\\a\\f\\x12\\x16\\f\\xf8\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\x1aOywQ[5X4rO\\x01pg\\x91hh\\x91\\xb1\\xd0\\f9F8\\r\\r8#\\x0e\\x1b\\x17\\x14\\x10\\x04x\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe`qMTn0Z8Np\\x00\\x00\\x04\\x00\\x00\\xff\\xc7\\x01\\xf0\\x01\\xb8\\x00\\x14\\x00)\\x008\\x00D\\x00\\x007\\a&#\\\"\\x14327\\x17\\x06#\\\".\\x0254632\\x17\\a&#\\\"\\x14327\\x17\\x06#\\\".\\x0254632'2\\x16\\x15\\x14\\x0e\\x02#\\\"&54>\\x01\\x132654&#\\\"\\x06\\x15\\x14\\x16\\xf6!\\n\\x12!!\\x16\\t\\x1e\\x15,\\n\\x16\\x1a\\x10-\\x1c.\\xa3!\\t\\x13!!\\x16\\t\\x1f\\x16+\\v\\x16\\x19\\x10-\\x1b.yi\\x8f)EZ0f\\x92?sFQzvUVuw\\xe9\\x11\\x14X\\x15\\x0f'\\x06\\x0e\\\"\\x17(%$\\x11\\x14X\\x15\\x0f'\\x06\\x0e!\\x18(%\\xab\\x90h6^?%\\x91gBrD\\xfe=sXUvzQSx\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\f\\x02\\x00\\x01t\\x00\\v\\x00\\x17\\x00\\x007\\x17\\a'7\\x17\\a'\\a\\x177'7\\x17\\a'7\\x177'\\a\\x17\\a'\\xb3gg\\xb3\\xb3-\\x1a\\x13\\x80\\x804M\\xb3\\xb3\\xb3-\\x1a\\x13\\x80\\x804M\\x19g\\xdagf\\xb3\\xb3-\\x19\\x13\\x80\\x804L\\xb3\\xb3\\xb3-\\x19\\x13\\x80\\x804L\\x1ag\\x00\\x03\\x00\\t\\xff\\xc8\\x01\\xf9\\x01\\xb8\\x00\\a\\x00\\x13\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x177'\\a\\x17\\a'7\\x177'\\a\\x177'\\a\\x177'7\\x17\\a'\\a\\x9aΑ\\x91Α\\xc7JM\\x185\\x1bMM\\v\\x19#~\\xe0~~JM\\x185\\x1aNN\\v\\x18\\x01\\xb8\\x91Α\\x91\\xce\\xe6KN\\x195\\x1aMM\\v\\x18$~|~~KN\\x195\\x1aMM\\v\\x18\\x00\\x00\\n\\xff\\xf8\\x00\\x0f\\x02G\\x01k\\x00\\n\\x00\\x15\\x003\\x00;\\x00M\\x00U\\x00]\\x00j\\x00u\\x00}\\x00\\x007\\x14\\x0e\\x01#\\\"&462\\x16%2\\x1e\\x01\\x15\\x14\\x06\\\"&46\\x17\\x06&'\\a'\\x0e\\x01'.\\x017&'3>\\x01323232\\x16\\x173\\x06\\a\\x16\\x06$4&\\\"\\x06\\x14\\x1627>\\x017.\\x01#\\\"#\\\"#\\\"\\x06\\a2\\x1e\\x02\\x04.\\x01\\x0e\\x01\\x1e\\x016$\\x14\\x06\\\"&462\\x1754&#\\\"\\x0e\\x01\\x15\\x14\\x1626%\\x14\\x0e\\x01#\\\"&462\\x16\\x064&\\\"\\x06\\x14\\x162\\xa6\\x06\\v\\a\\t\\x0f\\x0f\\x13\\x0e\\x01\\t\\a\\v\\x06\\x0e\\x14\\x0e\\x0ed/w%\\x1f\\x1e$s/0\\x12#\\t\\x13Z$o+\\x03\\x04\\x04\\x03)m$`\\x13\\n#\\x0f\\xfe\\xccC_DD_`\\x04P7\\x1bN\\x1e\\x02\\x03\\x01\\x02\\x1eP\\x1b\\x1c2%\\x18\\x01\\x0e!VZ(!WY\\xfe\\xd2*;**;\\x11\\x1b\\x14\\f\\x16\\f\\x1b'\\x1b\\x01:\\x14 \\x14\\x1d**;)\\x18\\x1b'\\x1b\\x1b'\\xa7\\x06\\v\\x06\\x0e\\x13\\x0e\\x0e\\x0e\\x06\\v\\a\\t\\x0e\\x0e\\x13\\x0e\\x8b%\\x0f//.-\\x0f\\\"#v0\\x1f\\x1b\\x16  \\x16\\x1a\\x1f/u\\x1f_CC_D~7L\\x02\\v\\x11\\x10\\f\\x16#1+Y(!VZ(!{;**;*H\\x01\\x13\\x1b\\f\\x16\\r\\x13\\x1b\\x1b\\x13\\x13!\\x13*;**1'\\x1b\\x1b'\\x1b\\x00\\x00\\x00\\x00\\x03\\x00\\x01\\xff\\xbb\\x01<\\x01\\xc0\\x00(\\x004\\x00@\\x00\\x00%\\x06\\a\\x1f\\x01\\x16\\x0e\\x01'&'\\a\\x06.\\x017617&'.\\x017>\\x01\\x17\\x1e\\x0226?\\x016\\x16\\x17\\x1e\\x01\\x0e\\x01%4632\\x1e\\x01\\x15\\x14\\x06\\\"&7\\x14\\x162654&#\\\"\\x0e\\x01\\x01\\x13!9\\x15L\\r\\f\\x1f\\x0f\\x149L\\r#\\t\\fL\\x15; \\x1b\\x10\\t\\x06\\x1b\\x15\\x04\\x10140\\n\\v\\x15\\x1b\\a\\x03\\x02\\f\\x0e\\xfe\\xfdL6#<#LlLB&4&&\\x1a\\x11\\x1e\\x11r\\x15\\x06\\x15L\\r#\\t\\v\\x149L\\r\\f\\x1f\\x0fM\\x14\\x06\\x15\\x12\\x17\\x12\\r\\a\\x0e\\x03\\n\\x10\\x0e\\b\\a\\x0e\\a\\r\\v\\f\\x10\\v\\xc36L#;$5LL5\\x1a%%\\x1a\\x1b%\\x11\\x1d\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x00\\x17\\x00\\x1f\\x00D\\x00\\x006462\\x16\\x14\\x06\\\"7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x04\\x14\\x16264&\\\"\\x17.\\x01\\a\\x06#\\\"&/\\x01&\\x06\\a\\x06\\x1e\\x01\\x17\\x16\\x17\\a\\x14\\a\\x06\\x16?\\x01\\x16\\x17\\x166/\\x0267>\\x01\\xb8\\x18 \\x18\\x18 \\xf0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xcf/D//D\\u007f\\x04\\x10\\x0e\\x16%\\x10\\x1e\\a\\x06\\x0e\\x10\\x04\\x06\\x06\\t\\f\\x14%\\r0\\r\\x1c\\r0$\\f\\r\\x1c\\r/\\r#\\x15\\x11\\n\\xfe!\\x18\\x18!\\x17\\x89\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cSD//C0\\xac\\b\\x04\\b\\x12\\t\\x04\\x05\\b\\x04\\b\\a\\x0e\\b\\b\\r\\x04\\f\\x01/\\r\\x1d\\r0$\\f\\r\\x1c\\x0e0\\f\\x04\\r\\v\\x0f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf0\\x01\\xc0\\x01\\x80\\x00\\x0e\\x00+\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#\\\"&=\\x01463\\x1367>\\x0154&#\\\"\\x06\\a\\x06\\a&'.\\x01#\\\"\\x06\\x15\\x14\\x16\\x17\\x16\\x17\\x162\\x01\\x98\\x11\\x17\\x83]]\\x83\\x18\\x11\\xcd\\x18\\\")\\x0f\\x12\\f\\n\\x10\\\"\\x1b\\x13\\x13\\x1c \\x10\\n\\r\\x12\\x0f*\\\"\\x18\\t\\x18\\x01\\x80\\x18\\x11\\x87]\\x83\\x83]\\x87\\x11\\x18\\xfe\\xf4\\x17 '\\x12\\v\\f\\x12\\f!\\x1a\\x12\\x13\\x1b\\x1f\\f\\x12\\f\\v\\x11( \\x17\\t\\x00\\x01\\xff\\xff\\xff\\xf1\\x02\\x80\\x01\\x8f\\x00L\\x00\\x00\\x01\\x15\\x06\\a\\x0e\\x03\\a#'\\x0e\\x01\\a\\x14&1.\\x01'.\\x01\\a<\\x0153\\x15\\x0e\\x01\\x17\\x1e\\x01\\x17>\\x027.\\x01'&#53\\x15\\x0e\\x01\\x17\\x1e\\x01\\x17676.\\x01#<\\x015:\\x023\\x15\\x06\\x0f\\x01\\x1e\\x01\\x17\\x13.\\x01#5\\x02\\x80'\\x11\\x06+&2\\x12\\x0eR\\aJ\\x12\\x0f\\x17a\\x17\\n0\\x12\\xa2\\x12 \\x06\\aj\\r\\a\\x1d!\\x06\\x05;\\b\\v-\\x8e\\x10\\x13\\x06\\t\\x1e\\t\\x1d\\x13\\x05\\x06\\x14\\x11\\x11<)\\x05&\\x14;\\x03@\\x02z\\x05\\x1e\\f\\x01\\x8d\\f\\x01(\\rcZs)\\xc1\\x0e\\x8e%\\x01\\x017\\xda8\\x160\\x01\\x02\\n\\x02\\r\\x01\\x14\\x0e\\x0e\\xf6\\x1c\\r8=\\r\\n\\x87\\x0f\\x13\\x0e\\r\\x01\\r\\f\\x14B\\x137.\\n\\r\\x06\\x02\\n\\x02\\r\\x02\\x1e{\\t\\x8f\\x04\\x01\\x1a\\x0f\\r\\x0e\\x00\\x00\\x11\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x02\\x00\\n\\x00\\x1c\\x00.\\x006\\x00F\\x00R\\x00Z\\x00l\\x00~\\x00\\x8c\\x00\\x94\\x00\\xa6\\x00\\xb2\\x00\\xb6\\x00\\xc8\\x00\\xd0\\x00\\x00%\\a7&2\\x16\\x14\\x06\\\"&4\\x05\\x06\\x15\\x14\\x17\\x163237654'&#\\\"\\a'\\x14\\x15\\x14\\x17\\x1632?\\x01654'&#\\\"\\a&\\\"\\x1d\\x01\\x142=\\x01\\a\\x06\\x15\\x14\\x1f\\x01\\x1632545'&#\\\"\\x0e\\x01\\x14\\x1f\\x01\\x16264/\\x01&\\x06\\x14;\\x0124+\\x01\\x17654'&#\\\"#\\a\\x06\\x15\\x14\\x17\\x1632?\\x01654/\\x01&#\\\"\\a\\x06\\x15\\x14\\x1f\\x01232\\x17454#\\\"\\x0f\\x01\\x06\\x15\\x14327\\x1754\\\"\\x1d\\x01\\x1427654/\\x01&#\\\"\\a\\x06\\x15\\x14\\x15\\x17\\x1632>\\x014/\\x01&\\\"\\x06\\x14\\x1f\\x01\\x16'7\\x0f\\x01%654/\\x01\\\"#\\\"\\a\\x06\\x15\\x14\\x1f\\x01\\x1632724+\\x01\\\"\\x143\\x01\\x13mGTΑ\\x91Α\\x01\\x94\\x05\\x01\\x02\\x05\\x02\\x01\\x0f\\x05\\x01\\x02\\x05\\x02\\x01q\\x05\\x01\\x02\\x05\\x02\\x06\\x01\\x05\\x01\\x02\\x05\\x029\\x10\\x10S\\x05\\x01\\x06\\x02\\x05\\b\\a\\x02\\x05\\x02>\\x05\\x02\\f\\x02\\a\\x04\\x02\\v\\x03B\\b\\x10\\b\\b\\x10 \\x05\\x01\\x02\\x05\\x02\\x01\\x0f\\x05\\x01\\x02\\x05\\x02\\x01\\x13\\x01\\x05\\x0f\\x01\\x02\\x05\\x02\\x01\\x05\\x0f\\x01\\x02\\x05`\\b\\x05\\x02\\x06\\x01\\b\\x05\\x02I\\x10\\x10C\\x05\\x01\\x06\\x02\\x05\\x02\\x01\\x05\\a\\x02\\x05\\x02>\\x05\\x02\\f\\x02\\a\\x04\\x02\\v\\x03dt\\xb0t\\x01G\\x01\\x05\\x0f\\x01\\x02\\x05\\x02\\x01\\x05\\x0f\\x01\\x02\\x05\\t\\b\\b\\x10\\b\\b\\xadGm\\xe5\\x91Α\\x91\\xce\\x1e\\x02\\x05\\x02\\x01\\x05\\a\\x02\\x05\\x02\\x01\\x05\\x01S\\x01\\x02\\x05\\x02\\x01\\x05\\x0f\\x01\\x02\\x05\\x02\\x01\\x05\\x13\\b\\x10\\b\\b\\x10\\a\\x02\\x05\\x02\\x01\\x0f\\x05\\b\\x01\\x02\\x0f\\x05)\\x05\\x06\\x03\\v\\x02\\x04\\a\\x02\\f\\x02\\x85\\x10\\x10Q\\x02\\x05\\x02\\x01\\x05\\a\\x02\\x05\\x02\\x01\\x05\\x01\\x8e\\x01\\x02\\x05\\x02\\x06\\x01\\x05\\x01\\x02\\x05\\x02\\a\\xdc\\x02\\x01\\b\\x05\\x0f\\x01\\x02\\b\\x05\\v\\x10\\b\\b\\x10\\b\\x0f\\x02\\x05\\x02\\x01\\x0f\\x05\\x01\\x02\\x05\\x02\\x01\\x0f\\x05)\\x05\\x06\\x03\\v\\x02\\x04\\a\\x02\\f\\x02o\\xb0t\\xb0G\\x01\\x02\\x05\\x02\\a\\x05\\x01\\x02\\x05\\x02\\x06\\x01H\\x10\\x10\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc4\\x02\\x01\\x01\\xb9\\x00\\r\\x00\\x18\\x00\\\"\\x00,\\x00\\x007'>\\x0132\\x17\\x16\\x17'&\\x0e\\x02\\x174>\\x0132\\x16\\x14\\x06\\\"&%\\x16\\x06\\a\\x06'76&'\\a\\x1e\\x017\\a.\\x01547\\x84M#f7C:@!\\xcd\\x16)#\\x1b\\x19\\x17&\\x17#11F1\\x01;!<P@Jp\\x19\\x03\\x1c\\xce\\x14M*?Zx(\\xe6v,0!%B\\v\\x01\\v\\x15!;\\x17&\\x171F11|S\\xaf.%\\x04\\xad$X!\\x82')\\b}\\x0e\\x8b\\\\J>\\x00\\x00\\x00\\x01\\x00\\x02\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\xac\\x00\\x00%\\x14\\x15\\x14\\x0e\\x01#\\\"&'4&5&7>\\x017\\x06\\a67>\\x01\\x17\\x0e\\x01\\x17\\x16\\x17&67>\\x01\\x17\\\"\\x06\\a\\x06\\x150\\x15\\x14\\x16\\x17\\x166764'&'.\\x01\\a0#\\\"\\a0#\\a\\x06\\a9\\x03>\\x013676;\\x012\\x170230\\x163\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x170\\x16\\x170\\x1f\\x01\\x16\\x142\\x161\\x16\\x15\\x17\\x14\\x170\\x170\\x17\\x142\\x142\\x161\\x14\\x16\\x1f\\x01\\x15\\x16\\x15\\x16\\x14\\x16\\x14\\x17\\x141\\x16\\x17\\x16\\x17\\x14\\x16\\x170\\x150\\x16\\x14\\x1e\\x011\\x15\\x16\\x150\\x161\\x14\\x170\\x15\\x14\\x16\\x141\\x1f\\x01\\x16\\x17\\x15\\x14\\x01\\xf8BsC\\\\\\x8a\\x0f\\x01\\b\\x18\\b\\x1d\\r\\x17\\x03\\x11-%\\\\\\x13*=\\t\\x03\\t\\b\\x02\\v\\f\\x1f\\f\\x04\\f\\x03\\x06\\x0f\\v$`\\x1b\\x12\\x16\\f\\x0f#a0\\x01\\x02\\x03\\x01\\x06\\x1d\\x15\\x01\\x01\\x01\\x1f4\\x16\\x17\\v\\x13\\x13\\x02\\x01\\x04\\x01\\x1d\\x1b\\x05\\x02\\r\\f\\x06\\x06\\n\\b\\r\\v\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x05\\x02\\xcf\\x05\\tCsBuY\\x02\\x06\\x02C9\\x14%\\x06,(9\\\"\\x1b\\a\\x13\\x0eb:\\x15\\x13\\x121\\x11\\x11\\r\\x02\\x13\\x06\\x0e\\x10\\x01\\x0e#\\n!\\x11)\\x1aV$\\x12\\x0e\\\"\\x1c\\t\\x01\\x02\\x06\\r\\x01\\x01\\x1d\\n\\x05\\x04\\x01\\a\\r\\x02\\x02\\x06\\t\\x05\\x04\\b\\t\\r\\x0e\\x03\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x06\\x06\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x03\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x04\\x01\\x14\\x15\\x05\\x01\\x00\\x00\\x02\\x00\\x00\\xff\\xd0\\x01\\xf1\\x01\\xc0\\x00\\x17\\x00%\\x00\\x00\\x01\\\"\\x0e\\x01\\x16\\x17\\x16327\\x06#\\\"#.\\x01546;\\x012\\x17&\\x13\\x06&'>\\x014&'>\\x01\\x17\\x16\\x14\\x01:=`*\\r&=W5.F_\\b\\x04c\\x89\\x91g\\x01^F-0\\x1fG\\x1e*76+\\x1fG\\x1fO\\x01\\x9fJk~0K\\x1e?\\x05\\x8fdg\\x91?\\x1e\\xfes\\x13\\x03\\x15\\x10b~b\\x10\\x15\\x03\\x13J\\xd9\\x00\\x04\\x00\\x00\\xff\\xbe\\x02\\t\\x01\\xca\\x00!\\x00*\\x002\\x00<\\x00\\x00\\x01\\x16\\a!\\x14\\x1e\\x01673\\x0e\\x01#\\\"'\\x0e\\x01.\\x01546767\\x06\\a>\\x01\\x176\\x16\\x15\\x14\\x05\\x0e\\x01\\x1e\\x0267&734.\\x01#\\\"\\x067\\x16\\x17654.\\x01#\\\"\\x01\\xe3&\\v\\xfe\\xb7/?D\\x13y\\x18wJF \\\">5\\x1f\\x1a\\x129O5E\\x13\\x89Qap\\xfeI\\x12\\r\\t\\x17#)\\x17IY\\xcf\\x1e/\\x1a*=\\xb7C-\\x0f\\x0e\\x19\\x0f\\x1b\\x01 DI$3\\x10\\x18 DN\\x0f\\x11\\x11\\x03&# Q gF\\x16OUk\\x05+\\x199'\\xec%9!\\x13\\x02\\f\\r*\\xbe\\x1b,\\x186\\x93\\x1aJ&\\x1e\\x10\\x18\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xdf\\x02\\x00\\x01\\xa0\\x00\\x14\\x002\\x00\\x007\\x1e\\x02\\x17#\\\"&5\\x1146;\\x01\\x06\\a\\x0e\\x02\\x1e\\x01%2\\x16\\x15\\x11\\x14\\x06+\\x016'\\a\\x06\\a\\x06'.\\x01'.\\x0167676\\x177&'-\\v\\n\\x1c\\x14P\\x0e\\x14\\x14\\x0e:\\x15\\x10\\r\\x0e\\x03\\a\\x06\\x01\\xb8\\x0e\\x14\\x14\\x0e4>\\x05\\x89\\x037#\\x17\\x0e\\x15\\x0e\\n\\a\\x03\\x05\\r$6\\x1c\\x89\\x14 \\x8f/*A\\x15\\x14\\x0e\\x01|\\x0e\\x14\\x13\\x19\\x140#>\\x1b\\xec\\x14\\x0e\\xfe\\x84\\x0e\\x14=g\\x1e>\\v\\b\\x13\\f3E/;\\x17\\v\\x1b\\a\\f7\\x1d3!\\x00\\x00\\x00\\x00\\x04\\x00\\x1f\\xff\\xc1\\x01\\xa3\\x01\\xb7\\x00J\\x00_\\x00q\\x00\\x8d\\x00\\x007&676\\x1e\\x01\\x175>\\x0132\\x16\\x15\\x14\\x06'&6\\x172>\\x0154&\\x06\\a\\x0e\\x03\\x1c\\x02\\x15\\x166764'&#\\\"\\a\\x06\\a#\\x06'&=\\x014;\\x012\\x14+\\x01\\x153>\\x01\\x1e\\x01\\x15\\x14\\x0e\\x02.\\x01\\x134>\\x02\\x1e\\x02\\x17\\x16\\x0e\\x01#\\\".\\x02\\x06\\a\\x06&\\x136\\x16\\a\\x0e\\x01.\\x01'&6\\x16\\x15\\x1e\\x036'47'&>\\x0132\\x1776\\x16\\x0f\\x01\\x17\\x16\\x06#\\\"'\\x06\\a\\x06#\\\"'&g\\x05\\x02\\v\\v\\x05\\r\\x0e\\x019((:O2\\b\\t\\b\\x1d$\\x18*8\\x13\\x05\\x06\\x05\\x02'Z &&'77&\\x0f\\x06\\x01\\x06\\x0e\\x0e\\n\\xf2\\b\\b\\xe0\\x01%eU;%9HD<0\\x12\\x1d%,-.\\x13\\x04\\x06\\n\\x02\\x01\\x16%0C#\\x06\\t\\xe3\\x06\\x14\\x051\\x81oT\\t\\x01\\x0f\\x0f\\n5IRR\\x93\\x14\\x12\\x03\\x04\\t\\x02\\x02\\x14\\x12\\x04\\x10\\x04\\x12\\x11\\x05\\v\\x05\\x02\\x14\\x04\\x06\\t\\x03\\x04\\x05\\x05h\\n\\t\\x04\\x03\\x06\\x1e\\x10^%79(1;\\x0f\\x03\\x1c\\x03\\t\\x1e\\x1a\\x1d&\\x01\\x16\\x06\\t\\x0f\\f\\x1b\\x16/\\x13\\x18\\f &m'&&\\x0f\\t\\n\\x03\\x04\\b\\xbb\\n\\x1e\\x85(\\x13\\\"Q5*E'\\r\\x0e1\\x01*\\x05\\b\\a\\x03\\x05\\f\\x19\\x13\\x04\\n\\b\\x11\\x15\\x11\\x02\\r\\x03\\x12\\xfe\\xba\\x06\\x14\\x061\\x1a&_?\\x05\\a\\x03\\x050J%\\b\\x1e\\x8c\\x03\\x14\\x12\\x03\\b\\a\\x14\\x12\\x05\\x10\\x05\\x12\\x11\\x06\\r\\x14\\x04\\x06\\n\\x05\\x05\\x00\\x00\\x04\\x00\\x06\\xff\\xe0\\x01\\xbb\\x01\\xa0\\x00-\\x006\\x00N\\x00d\\x00\\x00\\x01<\\x03.\\x05#*\\x01\\x0e\\x02\\a'4632\\x1e\\x02\\x1d\\x01\\x14\\x16\\x1f\\x01\\a&'\\x0e\\x02.\\x0154>\\x03\\x175\\x06\\x15\\x14\\x17\\x1676\\x17\\x0e\\x02#\\\".\\x01'&62\\x17\\x1e\\x04>\\x0176\\x16\\x14\\x17\\x06\\a\\x06&7>\\x01'&\\a\\x06&>\\x0376\\x17\\x16\\x06\\x01\\x01\\x01\\x02\\x04\\x05\\b\\t\\x06\\x02\\x05\\x0f\\r\\x0f\\x04JI>\\x1f.\\x18\\v\\x10\\b\\b9&\\a\\r.2-\\x1d\\x1a%3%\\x12T\\x1c\\x1d\\x11\\n\\x88\\a$T/0^3\\x10\\x03\\x01\\x05\\x02\\x18\\x167&@9J'\\x03\\x06$\\t\\f\\x04\\x05\\x02\\x06\\v\\x04\\x06*\\r\\x02\\x05\\b\\n\\v\\x05&\\b\\x02\\x04\\x01\\x1d\\x04\\x0f\\a\\r\\x06\\t\\x05\\x06\\x02\\x02\\x06\\t\\x14\\x0e\\a(@\\x12\\x1c\\x19\\v\\x93\\r\\x1a\\a\\a8$\\v\\x15\\x19\\x02\\x10+ \\x1d,\\x18\\x0f\\x05W)\\x037\\x1d\\t\\n\\x1a\\x0f\\x8b\\t\\x1b\\x1f))\\x13\\x04\\x05\\x01\\x0e\\r\\x1a\\n\\v\\a\\x13\\x12\\x01\\x01\\a\\a\\x15\\n\\x04\\x03\\x05\\v&\\x06\\a\\x04\\x01\\x03\\x04\\x04\\x04\\x03\\x01\\x04\\n\\x04\\x1b\\x00\\x00\\x00\\x01\\x00\\x11\\xff\\xe0\\x01\\xb0\\x01\\xa0\\x00\\t\\x00\\x00%#\\x15#\\x113\\x15\\x05\\x11#\\x01\\x14i\\x9am\\x012\\x9cu\\x95\\x01\\xc0hV\\xfe\\xfe\\x00\\x01\\x00\\x00\\xff\\xfc\\x01\\xc4\\x01\\x83\\x00&\\x00\\x00\\x01\\x06\\a\\x06#\\\"'&'.\\x03#\\\"\\a'>\\x0476\\x17\\x16\\x17\\x16?\\x01676&\\x06\\a6\\x17\\x16\\x01\\xc0\\x03Y[?'\\x1b\\x06\\t\\f\\f\\x11\\x0f\\t\\x05\\x1e\\x15\\n(\\x15\\x1e\\x16\\t4\\f\\x18\\x12\\x10\\\"\\x02\\x1c\\x02\\x02\\x15\\x1d\\x0f!]E\\x01&ArwI\\x13#-)0\\x11\\x15\\x1b\\b%\\x12\\x18\\n\\x01\\x05L\\x97\\x10\\x0f5\\x02-\\x17\\x15\\x13\\x03\\x06l\\x03\\x02\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\n\\x00\\x00\\x11!\\x11!%'7#\\x17\\a\\x17\\x01\\xc0\\xfe@\\x01<@@\\xb8@@\\\\\\x01\\xa0\\xfe@{\\xb8VV\\xb8Y\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00,\\x00?\\x00N\\x00\\x00\\x11!\\x11!\\x132\\x1e\\x01\\x1574&#\\\"\\x0e\\x01\\x1d\\x01#\\x1532\\x1d\\x01\\x14\\x0f\\x01\\x1535'&74=\\x0137#4754>\\x01\\x1735'\\\"454=\\x01#\\a\\x17\\x16\\x1d\\x01\\x14\\x0f\\x01?\\x01'#'#\\a#\\a\\x17\\a\\x177\\x177\\x01\\xc0\\xfe@\\xbb\\x06\\a\\x033#\\x1e\\x1a!\\x12\\x1c\\x16\\x06\\a\\x15\\x83,\\x04\\x018\\vD\\x01\\x02\\bSg\\x10\\x03P\\a\\x19\\x06\\a\\x15Q\\x16\\x04\\x1b\\x10\\t\\x10\\x1b\\x04\\x16\\t\\a \\x1f\\a\\x01\\xa0\\xfe@\\x013\\x04\\n\\t\\x06\\x1f\\x16\\x0e\\x1f\\x19\\x15%\\x03o\\a\\x01\\x02\\x1a\\x19\\x04\\x01\\x03\\x02\\x02q%\\x02\\x02\\x18\\n\\n\\a\\xf2\\x19\\x03\\x02\\x01\\x03\\x01\\x98\\x1e\\x06\\x02\\x06l\\x06\\x01\\x03\\xe7\\x18\\n\\x1c\\x1c\\n\\x18!\\b\\x11\\x11\\b\\x00\\x00\\x00\\x04\\x00\\x0e\\xff\\xe0\\x01\\xf2\\x01\\xa2\\x00*\\x009\\x00G\\x00T\\x00\\x00%2\\x16\\x06\\a\\x16\\x15\\x14\\x06#\\\".\\x01547.\\x01632\\x176?\\x016\\x1f\\x01632\\x16\\x14\\x06#\\\"&5'\\a\\x16\\x176\\x05\\x14\\x1632>\\x0254&#\\\"\\x0e\\x01\\x176'&\\a\\x06\\\"'&\\a\\x06\\x17\\x16272>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x01\\xb8\\x1b\\x1e\\t\\x18\\x03{X9a8\\x03\\x19\\t\\x1e\\x1b\\x16\\x109O\\x1f\\x02\\ta\\f\\x17\\x11\\x17\\x17\\x11\\x10\\x17X\\x1cP9\\x10\\xfe\\xdf\\x18\\x10\\b\\x0f\\n\\x06\\x17\\x10\\v\\x12\\v\\xd7\\a\\a\\a\\a\\x15k\\x15\\x06\\a\\a\\a\\x1by\\x1b\\v\\x12\\v\\x18\\x10\\x10\\x17\\x17\\xf4&1\\f\\v\\x0e?Y)E*\\r\\v\\r0'\\x10(\\x03\\x8a\\t\\x02\\x16\\x16\\x17!\\x17\\x17\\x10\\x14}\\x03'\\x0fi\\x10\\x17\\x06\\v\\x0e\\b\\x11\\x17\\v\\x12h\\x06\\a\\a\\a\\x15\\x15\\a\\a\\a\\x06\\x1cR\\n\\x12\\v\\x11\\x17\\x18\\x10\\x10\\x17\\x00\\x00\\x00\\x00\\x02\\x00\\x19\\xff\\xc8\\x01\\xe7\\x01\\xb9\\x00\\x02\\x00'\\x00\\x00701\\x05\\x15!\\x1e\\x0267\\x15\\x0e\\x01\\\"'.\\x015&7\\x06\\a36.\\x02'#\\x0e\\x01\\a>\\x0132\\x16\\x17\\x16\\x1a\\x01\\xcc\\xfe\\xc6\\x01>W\\\\\\x1e\\x19Nb'4D\\x02z\\x1a\\b\\xb0\\x03\\x13\\x1e\\x1f\\v\\fGq$\\fzc@h\\x1e\\x1d\\xdc\\x104-6\\t\\x13\\x16i\\x0f\\x15\\x0f\\x14b6\\x839!.\\x1e+\\x14\\v\\x01\\x02G4]\\u007f;64\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xd8\\x01\\xb8\\x00\\b\\x00\\x16\\x00-\\x00\\x00%2\\x16\\x06+\\x01\\x15#5\\x17\\x0e\\x02#\\\"&4632\\x16\\x17\\a\\x17'\\x06#\\\"&54632\\x177.\\x01#\\\"\\x06\\x14\\x16326\\x01\\xa6\\x0f\\r\\f\\x10\\v\\x1aW\\x15AX2g\\x91\\x91gGp#\\xba\\x9a=+O>WW>H-;\\x1f]7[\\x81\\x81[:b\\xf5\\x1a\\x1b,a\\x96.C&\\x91ΑIAmn\\x1fHW>>W?#/5\\x81\\xb6\\x81;\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xe0\\x01\\xb8\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x00%\\x17\\x15'\\x13\\a'7\\x17\\a'5\\x137\\a#\\x01d%\\x85\\xb4S\\x9a\\x17}\\xfa.*\\xfa}\\xd6\\xce\\x18\\xd6T\\x01A\\x86`&\\x8f:\\x1e\\xd6\\xfe\\xfa:\\xc9\\x00\\x03\\x00\\x12\\xff\\xc0\\x01\\xee\\x01\\xc3\\x00Y\\x00e\\x00q\\x00\\x00%2\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54;\\x012\\x1d\\x01354;\\x012\\x1d\\x01354;\\x012\\x1d\\x0135435&46\\x16\\x14\\a\\x15632\\x1632632\\x1d\\x01\\x14#\\\"&#\\\"\\a\\x152\\x1d\\x01354;\\x012\\x1d\\x01354;\\x012\\x1d\\x013543%54+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xe9\\x05\\xb7\\\"*\\\"\\xb7\\x05\\x1b\\x05$\\x05\\x1b\\x05$\\x05\\x1b\\x05%\\v\\t\\x10\\x10\\n\\r\\v\\x06\\x16\\x05\\x05\\x11\\x02\\x04\\x1b\\x06\\x14\\x06\\v\\x0f\\f%\\x04\\x1c\\x04%\\x05\\x1b\\x05$\\x05\\xfe\\xfb\\x05\\x1b\\x05\\x05\\x1b\\x05\\x93\\x05\\x1b\\x05\\x05\\x1b\\x05\\xa0\\x04\\xdc`\\x1a\\x1d\\x1d\\x1a`\\xdc\\x04\\x04 \\xb2\\x04\\x04  \\x04\\x04  \\x04p\\x04\\x14\\b\\b\\x14\\x04\\x05\\x03\\x04\\x04\\x04<\\b\\x04\\x04&\\x04  \\x04\\x04  \\x04\\x04\\xb2 \\x04\\x05@\\x04\\x04@\\x05\\x05@\\x04\\x04@\\x05\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xfc\\x02\\x82\\x01\\x84\\x00Y\\x00\\x00$\\x14\\x0f\\x01\\x06#\\\"'&=\\x01#\\x1e\\x02;\\x0154;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\\".\\x02+\\x01\\x0e\\x01#\\\"&4632\\x16\\x172\\x16>\\x057>\\x03\\x1723>\\x0132\\x1e\\x02\\x15\\x14\\x0e\\x01#\\\"&'#\\\"\\x0e\\x01\\a!546\\x1f\\x01\\x02\\x82\\x05Y\\x03\\x02\\x02\\x02\\x05\\xee\\b\\x1a\\x16\\r\\x1b\\tY\\t\\tY\\t\\x1b\\x19'\\x14\\x1a\\x0ee\\x06&\\x19\\x1d**\\x1d\\x19&\\x06\\x05\\x11\\x05\\f\\x04\\t\\b\\t\\x06\\x0e\\x15\\x19\\x12\\x14\\a\\x04\\x06\\x1b\\x11\\v\\x14\\x0e\\t\\x0f\\x18\\x0f\\x11\\x1b\\x06\\x1e\\r\\x16\\x1a\\t\\x016\\t\\x05Y\\xc5\\n\\x035\\x01\\x01\\x02\\x05$\\r<\\\"\\x1b\\t\\tY\\t\\t\\x1b,6,\\x17\\x1e*:*\\x1e\\x17\\x01\\x01\\x01\\x05\\b\\x0e\\x13\\r\\x1f\\\"\\x0f\\x03\\x01\\x10\\x14\\t\\x0e\\x14\\v\\x0e\\x19\\x0e\\x14\\x0f!<\\r#\\x05\\x06\\x036\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x19\\x00\\x00$\\x14\\x06+\\x015326\\x14\\x06\\\"&462\\x164&+\\x01\\x153532\\x01F\\x16\\x0fFF\\x0fȑΑ\\x91\\xce\\x113$x2F$\\xf5\\x1f\\x16J\\x1dΑ\\x91Α\\xf7H3\\xf8J\\x00\\x00\\x04\\x00\\x01\\x00\\x04\\x02\\x80\\x01|\\x00\\x13\\x007\\x00F\\x00U\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467>\\x0132\\x16\\a2>\\x0254&'\\x06\\a\\x0e\\x01&7654&#\\\"\\x06\\a\\x16\\x17\\x16\\x0e\\x01'&#\\\"\\x06\\x14\\x163$\\x14\\a\\x06#\\\"&764'&>\\x01\\x17\\x06\\x14\\a\\x06#\\\"&764'&>\\x01\\x17\\x01\\xa8\\x15\\\"\\x148'\\xfe\\xde/B7*\\x11X6A`\\x0e\\v\\x13\\x0e\\t\\x13\\x0f\\x02\\x04\\x04\\x18\\x11\\x05\\x06J4%?\\x0f\\x1e\\x16\\n\\b\\x15\\v\\x15\\x1d\\x1d**\\x1d\\x02\\r%\\a\\v\\f\\f\\a\\x1e\\x1e\\b\\f\\x16\\t\\\"\\x1b\\x06\\v\\r\\f\\a\\x14\\x14\\a\\f\\x15\\t\\xe4\\x04\\x1b'\\x16'8C.+?\\x063?X\\xd0\\b\\x0e\\x13\\v\\x10\\x1b\\x06\\r\\r\\f\\x04\\x10\\r\\x14\\x144J)!\\b\\x16\\t\\x17\\x06\\b\\x15);)x\\x878\\t\\x16\\v-l-\\v\\x15\\x02\\vIa(\\t\\x16\\v\\x1cH\\x1d\\n\\x16\\x01\\n\\x00\\x00\\x02\\x00\\x00\\xff\\xd3\\x01\\x82\\x01\\xad\\x00\\x1b\\x00:\\x00\\x007&54636\\x1e\\x02\\x17\\a'7&\\a\\\"\\x06\\x15\\x1476\\x17\\x16\\x06\\a\\x06&%\\x1e\\x02\\x0e\\x01\\a\\x06#\\x06/\\x017\\x17\\a\\x16327654\\a\\x06'&746\\x176*\\x18^I\\\"<5\\x11\\x143%\\x1b8C)G\\x1d!\\x17\\x13\\x01\\x13\\x16G\\x01(\\n\\r\\x02\\a\\x16\\x104RmR\\x0f=#!@P_\\x1a\\x02\\x1d\\\"\\x16\\x14\\x01*\\x1d&\\xc3\\x1d3IP\\x01\\r\\x1f\\f\\x0fH\\x18'%\\x01*#\\x18\\t\\a\\x15\\x136\\x13\\x17\\x05\\x14\\f$*+)\\x0f,\\x01I\\x0eH\\x1c'0A\\x06\\x06\\x18\\b\\b\\x16\\x12\\x1b\\x1d(\\x02\\x01\\x00\\x04\\x00 \\xff\\xc0\\x01\\xa0\\x01\\xc0\\x00\\x02\\x00\\x05\\x00\\x1a\\x00&\\x00\\x00\\x01\\a'\\x117\\x177\\x14\\x0e\\x04#\\\".\\x024>\\x0232\\x1e\\x02\\a7'\\x15'\\a\\x17\\a\\x177\\x177\\x01%+\\x01\\x01*|\\v\\x18\\x1e,.\\x1e.C9\\x1d\\x1d7D-,B3\\x1a\\x9eO}J\\x1b]]\\x1bJ\\x02\\u007f\\x01\\x15+V\\xfe\\xf9V+Y3O7&\\x15\\t\\x166f\\x95i8\\x18\\x189gKX\\x87\\xb1I\\x1a^\\\\\\x1bI\\xaa\\x80\\x00\\x00\\x00\\x03\\x00\\x19\\xff\\xc0\\x01'\\x01\\xc0\\x00\\v\\x00\\x0e\\x00\\x11\\x00\\x007\\x17\\a'\\a'7'7\\x175\\x17#'\\x1d\\x027\\xc4b\\x94\\x03V\\x1fll\\x1fV\\x92422\\xbcg\\x95\\xc6V ll VΝ2djd2\\x00\\x00\\x00\\x05\\xff\\xfc\\xff\\xd2\\x02\\x04\\x01\\xae\\x00\\x06\\x00\\v\\x00\\x0e\\x00\\x13\\x00\\x19\\x00\\x00\\x13\\x161#762\\x037\\x13'&73\\x03%\\x16\\x0f\\x01\\x13'\\x17#762i9\\x848\\x03\\x0ef\\x1d\\xe2\\xf8\\v\\xa5\\xbc^\\x00\\xff\\x04\\v\\xf8\\xe288\\x849\\x02\\x0e\\x01\\xa7\\xaf\\xaf\\a\\xfe\\xf2X\\xfeڸ\\te\\xfe\\xda\\xce\\r\\t\\xb8\\x01&\\xaf\\xaf\\xaf\\a\\x00\\x00\\x04\\x00\\x14\\xff\\xe0\\x01\\xec\\x01\\xa0\\x00\\x1d\\x00!\\x00)\\x00-\\x00\\x00%\\x1e\\x01\\x0e\\x01#\\\"&'*\\x01#\\x0e\\x01#\\\".\\x0167.\\x01>\\x022\\x1e\\x02\\x06%35#\\x175\\x06&'\\x15\\x1e\\x01'35#\\x01\\xcf\\x14\\x04\\x1a7#\\x1e7\\x0f\\x05\\x14\\x05\\x0f7\\x1e#7\\x1a\\x04\\x14\\x17\\x05!=ZfZ=!\\x05\\xfe\\x95**\\xd9-e)&lm\\xa6\\xa6~\\x188/\\x1f\\x1a\\x18\\x18\\x1a\\x1f/8\\x18&TJ;##;JT-:\\x90\\x17\\x10\\x12 \\x19\\\"\\x12j:\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xdf\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00 \\x00$\\x00(\\x00+\\x00/\\x003\\x006\\x00:\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114+\\x01\\a'\\a'#\\\"\\x15\\x11\\x143!2\\x01\\x15#5\\x17\\x15#5?\\x01#\\x05\\x15#5\\x17\\x15#5?\\x01#\\x13\\x15#5\\x01\\xc0\\x19\\x12\\xfe\\x96\\x12\\x19\\x19\\x12\\x01j\\x12\\x19%\\x06\\to==o\\t\\x06\\x06\\x01j\\x06\\xfe\\xfbIIIT6v\\x01\\x12\\xc4\\xc4\\xc4p@v\\x8ac\\x01u\\xfe\\x96\\x12\\x19\\x19\\x12\\x01j\\x12\\x19\\x19\\xfe\\x84\\x01j\\x06K22K\\x06\\xfe\\x96\\x06\\x01\\x01%%J&&\\x93,u%%J&&\\x93,\\xfe\\xf6%%\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x19\\x001\\x00\\x00\\x112\\x1e\\x04\\x0e\\x01\\x15\\x17#'\\\"\\x0e\\x02.\\x02'.\\x04\\x17&\\x06\\x1f\\x01\\x1e\\x02\\x17\\x16\\x17\\x1656'&'&'.\\x04V\\x85P5\\x15\\a\\x06\\aQ\\x1aF\\x06\\x1b\\x17! %&\\x13\\x1a#\\x18\\x0e\\x1aD\\x17\\x02\\n\\t\\x16$\\x0f\\x12GI&\\x01\\r\\r\\a%6\\x0e\\f\\x1d\\x19(\\x01\\xa0\\x1c,>=E10\\x05RG\\x05\\x03\\x03\\x04\\t\\x14\\x0f\\x15.A9l\\x03\\n\\x04\\b\\a\\x0f,\\x1c!\\x89\\x1f\\x10\\x01\\x01\\t\\b\\x06\\x1bg\\x1a\\x15,\\x19\\x1f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00i\\x00\\x00\\x13\\x14\\a\\x06\\a\\x06#\\\"&54676327\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x064&'&#\\\"\\x0e\\x05\\a'>\\x0154#\\\"\\x0e\\x02\\x14\\x1e\\x023232\\x15\\x061\\x06\\a\\x06/\\x014>\\x0314&#\\\"\\x0e\\x02\\x15\\x14\\x1e\\x013267>\\x044>\\x017632\\x17\\xfd\\x04\\t\\b\\x01\\r\\x10\\x0e\\x13\\x13\\b\\x06\\r\\xc3\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c@\\x16\\x04\\x05\\x04\\x05\\t\\t\\x06\\v\\x04\\r\\x01\\x01\\x01\\x0eD\\x19+\\x1a\\x0e\\f\\x16 \\x15\\x01\\x02\\x04\\x01\\a\\x1d\\x10\\x03\\x01\\x06\\b\\b\\x06\\x1d\\a\\b\\r\\b\\x04\\r\\x18\\x10\\\"3\\t\\x02\\x03\\x01\\x02\\x01\\x01\\x02\\x01!\\x19\\x05 \\x01+\\n\\x10,(\\x05\\x1c\\x12\\x190\\n\\x043\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xd3\\b\\\"\\x01\\x03\\x01\\x03\\x02\\x06\\x01\\b\\x01\\x01\\a?\\x11?\\x18%*) \\x15\\f\\x01\\x01<\\v\\x06\\x0e\\x04\\a\\r\\b\\x06\\x04\\x05\\f\\n\\x10\\x11\\a\\x10\\x19\\x0e8$\\x06\\f\\b\\x06\\x04\\x03\\x01\\x01\\x01\\x11\\x05\\x00\\x00\\x02\\x00 \\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00H\\x00a\\x00\\x00%\\x1e\\x01\\x15\\x14#&#\\\"\\a\\x0e\\b\\a\\x0e\\x01#\\\"&54632\\x16\\x15\\x14\\x0e\\x04\\x15\\x14\\x17\\x167674\\\"#\\\"&54>\\x0132\\x1e\\x01\\x15\\x14\\x06\\a\\x17>\\a32'654.\\x02#\\\"\\a\\x0e\\x01\\x15\\x14\\x1e\\x013:\\x02>\\x0276\\x01\\x97\\x06#\\a2\\t(5\\x02\\x02\\x01\\x01\\x02\\x01\\x02\\x03\\x04\\x02\\x0fR6(.\\x1d\\x17\\f/\\a\\n\\f\\n\\x06\\x13\\x1c\\x16\\x10\\x06\\x02\\tBI%R6$0\\x19\\x16\\x02\\x01\\x03\\x11\\x06\\x0f\\b\\x0e\\n\\x0e\\a\\x06\\xa6\\x05\\x01\\x03\\t\\a\\v\\v\\x1f\\x1f\\b\\x17\\x12\\x01\\x06\\x04\\x05\\x03\\x02\\x01\\r\\xed\\x027\\a\\x05\\b\\x1b\\x01\\x01\\x03\\x02\\x06\\x06\\n\\f\\x11\\n8Y1'\\x196\\x13\\b\\x01\\x04\\a\\v\\f\\x11\\t\\x14\\x02\\x01*\\x1e-\\x04GB-XA\\x14-$\\x1cf\\n\\x01\\x02\\t\\x04\\b\\x03\\x05\\x02\\x02P\\x1a\\x11\\x06\\t\\t\\x04\\x06\\x11M(\\x12\\x1e\\x19\\x01\\x01\\x03\\x03?\\x00\\x00\\x03\\xff\\xfe\\xff\\xbf\\x01\\xbd\\x01\\xc0\\x00\\x05\\x001\\x00F\\x00\\x00\\x01\\x15&'\\x1e\\x01\\x1767\\x1e\\x01\\x06\\a\\x06\\\"'.\\x01>\\x0132\\x17\\x06\\a&#\\\"\\x06\\x15\\x14\\x1e\\x01\\x17>\\x0354'\\x16\\x15\\x14\\x0f\\x01\\x16654\\x13\\x1e\\x01\\x06#\\\"'6767\\x0e\\x01\\a&547>\\x02\\x01\\x14\\x19.\\x1f%$\\x16\\x14\\r\\x03\\x19\\x1b3\\x9e3(\\x10&Y;!\\x1d\\v\\x02\\x17\\x1a:N\\x1c3!#1\\x17\\t\\x01\\x13m\\x04;Ob\\x19\\x02/&\\x1c\\x1bK\\x19\\x06\\x01\\x0fB%\\f\\x14\\r0*\\x01*\\x01JM\\x14X\\xa4\\x04\\r\\x1fCJ\\x1d88*p^B\\v\\x15\\x16\\tT:\\\";'\\x06\\x0eAUM'\\x18\\f79\\x89D\\x01\\x01R;\\x1e\\x01\\x1f$cI\\x1a)+\\r\\a!2\\b\\x13\\x14\\x1e\\x14\\f\\x0e\\x19\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00@\\x00U\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13>\\x01'\\x06\\a\\x16\\x15\\x14\\x06'3654'5.\\x02'\\x16\\x17\\x14\\x15\\x14\\x0e\\x02\\a.\\x0154632\\x1767&#\\\"\\x0e\\x01\\x16\\x17\\x162726&'\\x0e\\x02\\a\\x06\\x15\\x14\\x17>\\x017\\x14\\a\\x06\\a\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xe9\\x19\\n\\f\\r\\x0e\\a1%\\x02D\\v\\x02\\n\\x14\\r\\x1d\\x10\\x06\\x0e\\x1f\\x16\\x1e'1$\\x10\\x0e\\x02\\a\\x13\\x14%8\\x18\\v\\x18 c<\\x18\\x1d\\x01\\x10\\b\\x1a\\x1e\\b\\r\\b\\x17)\\t\\x04\\x10.\\x10\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xa3\\x1bH\\x1a\\a\\x03\\x10\\x14%3\\x01+U$\\\"\\x01\\x11#!\\t1.\\a\\x0f\\x19/6(\\t\\x060 $5\\x06\\x0e\\r\\a);F\\x1a#\\xb6.>\\x17\\x13\\x0f\\t\\a\\r\\x13\\r\\v\\x05\\x1f\\x14\\x04\\b\\x1b\\x1a\\x10\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00h\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056'.\\x04'#&76763654'&\\a\\x06\\a\\\"'6'.\\x02#0\\\"1\\\"\\x0e\\x02\\a\\x06\\x17\\x06#\\\"'&\\x0e\\x01\\x15\\x06\\x17\\x1e\\x03\\x17\\x16\\a\\x0e\\x04\\a\\x06\\x15\\x16\\x17\\x1e\\x03\\x17\\x1632632\\x17\\x167\\x167632\\x16327>\\x0276\\x91Α\\x91Α\\x01\\xa2\\x03\\b\\r\\x18\\x0e\\r\\x03\\x01\\x01\\x03\\x02\\x02\\x11\\x04\\x01\\x11\\n\\b\\x06\\b\\a\\x03\\x02\\x03\\a\\b\\x1b \\x12\\x06\\b\\x11\\x1b\\x19\\a\\b\\x04\\x03\\x04\\a\\t\\x04\\t\\b\\x03\\x14\\x01\\t\\x06\\x06\\x02\\x02\\x04\\x01\\x04\\f\\x0f\\x17\\r\\x06\\x01,\\x01\\x01\\x01\\x01\\x01\\x01\\a\\x02\\x11\\a\\x12\\x13\\x1c\\x15\\x16\\x1b\\x13\\x12\\b\\x10\\x02\\a\\x01\\x01\\x02\\x01\\x01'\\x01\\xb8\\x91Α\\x91\\xce\\xc2\\t\\x02\\x02\\x0e\\r\\x12\\a\\x03\\b\\x05\\x06\\x05\\x02\\a\\n\\b\\x04\\x02\\x02\\x04\\x01\\x02<\\x11\\x12\\x18\\f\\x03\\n\\x18\\x11\\x11<\\x02\\x04\\x02\\x02\\x06\\x04\\v\\a\\x01\\x03\\x02\\x05\\x02\\x05\\b\\x03\\a\\x12\\x0e\\r\\x02\\x01\\a\\x0e\\a\\x01\\x03\\x05\\x05\\x02\\x06\\x03\\x0e\\x13\\x01\\x01\\x13\\x0e\\x03\\x06\\x02\\b\\x05\\x01\\x06\\x00\\x01\\xff\\xff\\xff\\xcd\\x02\\x02\\x01\\xb1\\x00l\\x00\\x00%\\x06\\a\\x14\\x0e\\x01\\a\\x06#\\\"&#\\\"\\x06\\a\\x06'\\x06'.\\x01#\\\"\\x06#\\\"'.\\x025.\\x02'0547>\\x067056'.\\x03'&7>\\x01\\x17\\x16327&47>\\x0330232\\x1e\\x01\\x17\\x16\\x14\\a\\x163276\\x17\\x16\\x15\\x14\\a\\x06\\a\\x06\\a\\x06\\x17\\x141\\x1e\\x04\\x17\\x1e\\x01\\x01\\xff\\b<\\x02\\x03\\x01\\x03\\t\\x04\\x18\\v\\x13\\x14\\x12(\\\"\\x1e*\\x12\\x14\\x13\\n\\x1a\\x03\\t\\x03\\x01\\x03\\x02\\x10\\x18\\x1c\\x01\\t\\x0e\\x1b\\x13\\x12\\v\\t\\x03\\x01\\x06\\x03\\x02\\n\\t\\x0e\\x01\\x1d\\x03\\x02\\x17\\b\\x0e\\n\\x06\\x04\\x03\\b\\f%(\\x1a\\f\\t\\x01\\x1b/)\\f\\b\\x03\\x04\\x05\\n\\f\\n\\v\\x0f\\x1a\\x02\\x05\\x19\\x04\\x03\\x06\\x01\\x06\\x13\\x15$\\x13\\x05\\x057\\x12\\t\\x01\\b\\v\\x04\\t\\x05\\t\\f\\x1d\\x02\\x03\\x1e\\f\\t\\x05\\t\\x03\\f\\b\\x01\\x02\\x06\\x0f\\t\\x01\\t\\x01\\x03\\v\\x0f\\x12\\x0f\\x10\\x06\\x02\\x01\\v\\a\\x05\\a\\x03\\x04\\x01\\f\\x10\\t\\n\\x04\\x06\\x02\\x18I\\x13\\x1a$\\x0f\\x05\\x12%\\x1b\\x13I\\x18\\x02\\x06\\x05\\x05\\x05\\r\\x0e\\v\\x01\\x01\\b\\n\\a\\v\\x01\\x04\\v\\x1a\\x15\\x15\\x03\\x01\\t\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00n\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x016'.\\x065#&76763654'&\\a\\x06\\a\\\"'6'.\\x01#0\\\"1\\\"\\x0e\\x02\\a\\x06\\x17\\x06#\\\"'&\\x06\\a\\x06\\x170\\x1e\\x01\\x17\\x16\\a\\x0e\\x04\\a\\x06\\x15\\x16\\x17\\x1e\\x02\\x17\\x1632632\\x17\\x167\\x167632\\x16327>\\x0276\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01Z\\x03\\b\\n\\x12\\f\\f\\a\\a\\x02\\x01\\x03\\x02\\x02\\x11\\x04\\x01\\x11\\n\\b\\x06\\b\\a\\x03\\x02\\x03\\a\\f.\\x1b\\x06\\b\\x11\\x1b\\x19\\a\\b\\x04\\x03\\x04\\a\\t\\x05\\x0f\\x01\\x03\\x14\\x0e\\b\\x02\\x02\\x04\\x01\\x04\\f\\x0f\\x17\\r\\x06\\x01,\\x01\\x01\\x02\\x01\\x01\\a\\x02\\x11\\a\\x12\\x13\\x1c\\x15\\x16\\x1b\\x13\\x12\\b\\x10\\x02\\a\\x01\\x01\\x02\\x01\\x01'\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xc5\\t\\x02\\x01\\b\\n\\f\\n\\v\\x03\\x02\\b\\x05\\x06\\x05\\x02\\a\\n\\b\\x04\\x02\\x02\\x04\\x01\\x02<\\x11\\x1a\\x1c\\x03\\n\\x18\\x11\\x11<\\x02\\x04\\x03\\a\\x06\\v\\a\\x05\\x05\\x03\\x05\\b\\x03\\a\\x12\\x0e\\r\\x02\\x01\\a\\x0e\\a\\x01\\x05\\b\\x02\\x06\\x03\\x0e\\x13\\x01\\x01\\x13\\x0e\\x03\\x06\\x02\\b\\x05\\x01\\x06\\x00\\x02\\x00 \\xff\\xe0\\x01\\xd5\\x01\\xab\\x00&\\x000\\x00\\x00\\x016\\x16\\a\\x06\\a\\x0e\\x04\\a\\x1e\\x0132654&'67\\x1e\\x02\\x15\\x14\\x06\\\"&4632\\x1e\\x01\\x176\\x0167&#\\\"\\x06\\x15\\x14\\x16\\x01\\xc8\\a\\x06\\x06o\\x0f\\n\\x1c$&3\\x16\\x114\\x13Ih\\x1a\\x13\\a\\n\\x10\\x1b\\x10z\\xaczzV\\x0f%%\\fB\\xfe\\xe6\\\\d%(Ih$\\x01\\xa9\\x02\\x0e\\x04JV6?\\x1d\\x11#\\x1d\\t\\x0ehI\\x1cE\\x14\\x0f\\r\\x1127\\x17Vzz\\xacz\\a\\f\\b7\\xfe\\x8e\\xc7^\\x12hI\\\"O\\x00\\x00\\x00\\x00\\x06\\x00\\x04\\xff\\xc0\\x01\\xbc\\x01\\xc0\\x00\\x00\\x00G\\x00M\\x00S\\x00Y\\x00c\\x00\\x00?\\x012\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x15\\x14\\a'\\x17\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\\"'7\\a&'7\\a&'7\\a&'7\\a&547\\x17'67\\x17'67\\x17'67\\x17'6\\x17\\x11\\a'\\x117\\x17'\\a\\x15\\x177\\x03\\x17\\x15\\a'5$\\\"\\x06\\x15\\x14\\x162654\\r\\xd3\\f\\n\\x04\\x16\\x15\\x13\\x1d-\\x11\\r2=\\n\\x06@D\\x01\\x01C@\\x06\\v=2\\f\\x12-\\x1d\\x11\\x17\\x16\\x04\\v\\x16\\v\\x04\\x16\\x15\\x13\\x1e-\\x11\\x0e3=\\f\\x05@D\\x01\\x01D@\\x05\\f=3\\r\\x12-\\x1e\\x13\\x15\\x16\\x03\\n\\xe6\\xdb\\xdb\\xdb\\xca\\xca\\xca\\xca\\xcaʼ\\xbc\\xbc\\x01\\x01\\x8abb\\x8abۄ\\x01D@\\x05\\f=3\\r\\x12-\\x1e\\x12\\x17\\x16\\x04\\t\\r\\r\\t\\x04\\x16\\x15\\x13\\x1d-\\x11\\x0e3=\\v\\x06AE\\x01\\x01D@\\x05\\f=3\\f\\x13-\\x1e\\x14\\x15\\x16\\x04\\r\\t\\v\\v\\x04\\x17\\x14\\x14\\x1e-\\x11\\x0e3>\\v\\x05@D\\x01\\x1f\\xff\\x00\\x80\\x80\\x01\\x00\\x80\\x8auu\\xebvv\\x01Pm\\xdbnn\\xda;bFEccEF\\x00\\x00\\x03\\x00\\x00\\xff\\xd4\\x01\\xc0\\x01\\xac\\x00\\x13\\x00.\\x009\\x00\\x00\\x133\\a#\\\"\\x06\\x1d\\x01\\x14\\x163\\x15#\\\"&=\\x014>\\x0173\\x0e\\t\\a\\x06\\a5>\\x01574&'&'3\\x177\\x11#673\\x114'7\\x16[\\xba\\a\\xb3\\x1d++)\\f%6\\x18*\\xfeC\\x13(\\x18\\x1a\\x0f\\x10\\n\\n\\t\\t\\a\\x1e0!\\x1f\\x01\\n\\x1c\\x1a\\x13>2\\xe6\\xd6\\n\\x02\\xb71\\a=\\x01t\\x13)\\x1d\\xce\\x1d)\\x135%\\xcd\\x18)\\x1882i@E&(\\x15\\x15\\r\\f\\x06\\x1f\\x023\\x05.\\x18\\x01\\v\\x1bGA1\\x9d\\x89\\xfe\\xd6\\x0e\\x05\\x01\\x17.\\x11\\x12\\x14\\x00\\n\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\n\\x00X\\x00c\\x00u\\x00\\x84\\x00\\x92\\x00\\x9e\\x00\\xaa\\x00\\xc9\\x00\\xd8\\x00\\x00\\x12462\\x16\\x15\\x14\\x0e\\x01#\\\"\\x05\\x14\\x06\\a\\x0e\\x01\\a#\\x15\\x14\\x0e\\x01#\\\"'\\x06\\\"'\\x06\\\"'\\x06#\\\".\\x015\\x06#\\\"'67&'\\x167&'&54>\\x0232\\x1767>\\x01761>\\x0132\\x17632\\x17\\x16\\x14\\a\\x16\\x15\\x14\\a\\x16\\x17632\\x17\\x16$\\x14\\x162654.\\x01#\\\"\\x1747\\x0e\\x01\\x1e\\x01327654#\\\"\\a\\x06&\\a4&\\\"\\x06\\x1d\\x01\\x14\\x1e\\x02326574.\\x01#\\\"\\x06\\x1d\\x01\\x14\\x1626574&\\\"\\x06\\x1d\\x01\\x14\\x1626574&\\\"\\x06\\x1d\\x01\\x14\\x162657\\x0e\\x02#\\\"&547\\x06\\x15\\x14\\x16\\x17632\\x1762\\x1762\\x17632\\x17>\\x0174&#\\\"\\a\\x0632>\\x01\\x1e\\x01\\a6\\xd0\\n\\x10\\t\\x04\\b\\x05\\b\\x01&\\x13\\x11\\x11N\\x1a\\x01\\b\\r\\b\\x10\\t\\t \\t\\b \\t\\t\\x10\\t\\r\\a\\x1a\\x1f\\\"\\x1a\\x0f\\x0f \\x14$\\x1f6\\x0e\\a\\t\\x12$\\x17\\x11\\x06\\x06\\x06\\x01\\x06\\x01\\x15\\x19G'\\n\\b\\x11\\x19\\x17\\x11\\x01\\r\\x10\\x05-\\f\\a\\n\\r\\x0f\\x1a\\xfe\\xbc\\x12\\x1c\\x13\\b\\x0f\\n\\x0e \\b\\x13\\a\\x14-\\x1e \\x1c\\x04\\x15\\x05\\b47)\\f\\x11\\f\\x03\\x06\\a\\x04\\t\\f1\\x05\\n\\x05\\t\\f\\f\\x11\\f1\\v\\x11\\f\\f\\x11\\v2\\f\\x11\\v\\v\\x11\\fM\\x10/?!FZ\\x06\\x1e%\\\"\\t\\x11\\x10\\t\\t \\b\\t \\t\\t\\x10\\x11\\b &\\f3)-\\\")R\\x06\\x1e\\x15\\x17\\b\\x03-\\x01_\\x11\\r\\r\\b\\x06\\t\\a\\x8a O\\x13\\x12-\\b \\t\\x0e\\b\\x0e\\x0e\\x0e\\x0e\\x0e\\x0e\\t\\x0f\\t\\x14\\x17\\x01\\x05\\t\\x1b\\b\\x137!\\x10\\x1e\\x1525$\\x0f\\b\\a\\x01\\x06\\x01\\\" &\\x01\\x12\\x10\\x02\\x04\\x0e\\x05\\a\\x02\\x05(D\\b\\x0e\\x16t\\x1d\\x17\\x17\\x0f\\t\\x10\\v\\x8d\\x19!\\x1dB6#\\x14\\x0e\\b\\x16\\x02\\n\\x1a\\xcf\\t\\f\\f\\t \\x05\\a\\x06\\x04\\r\\t \\x06\\t\\x06\\f\\t \\t\\r\\r\\t \\t\\f\\f\\t \\t\\r\\r\\t \\t\\f\\f\\t \\t\\r\\r\\t\\xc3\\x1e.\\x1biH\\x19\\x192>.V\\x1d\\x11\\x0f\\x0f\\x0f\\x0f\\x0f\\x0f\\x10\\x1bN\\x8f*?$\\x89\\x05\\x02\\x05\\x14\\x13)\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00%\\x001\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x172>\\x0154'#\\x153\\x0e\\x01#\\\".\\x0254632\\x177&#\\\"\\x06\\x14\\x16%35#5#\\x15#\\x153\\x153\\x91Α\\x91Α\\xb1#7\\x1d\\x02uF\\x03)\\x1a\\x10\\x1c\\x15\\f- \\x1e\\x14!\\\"13II\\x01\\x1a##$$$$\\x01\\xb8\\x91Α\\x91\\xce\\xe3\\x1f7#\\v\\n+\\x18\\x1d\\r\\x15\\x1c\\x10 .\\x13! IfIj$##$#\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00=\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0154#\\\"\\x06#\\\"'&#\\\"\\a\\x06\\a5654&\\\"\\x06\\x15\\x14\\x17\\x15\\x14\\x1632756=\\x01627632\\x163276\\x01\\x8e\\x14\\x1e\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01.\\b\\x01(\\r\\b\\x05%\\x18\\x1c\\\"\\x02\\x03\\r\\x14\\x1c\\x13\\r\\f\\b\\x0f\\x04\\x01\\x01\\x02\\x01&\\x1d\\x11*\\r\\x16 \\a\\x01\\xa0\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01\\\\\\x14\\x1e\\xfe\\xe4\\x8c\\b\\x10\\x02\\x0e\\x0e\\x02\\x01\\x13\\t\\x11\\x0e\\x13\\x13\\x0e\\x10\\n\\xdb\\b\\f\\x0e\\x01\\x01\\x04-\\x01\\x01\\x11\\x11\\x0e\\x03\\x00\\v\\x00\\n\\xff\\xc0\\x01\\xb6\\x01\\xc0\\x00B\\x00F\\x00J\\x00N\\x00R\\x00V\\x00Z\\x00c\\x00g\\x00o\\x00s\\x00\\x00%\\x16\\a\\x14#\\a\\x06/\\x01\\a\\x14#\\a\\x06/\\x01\\x17\\x14#\\a\\x06#&1'&'&?\\x01&5'&?\\x01&/\\x01&?\\x0123\\x17\\x16\\x15\\x17\\x14\\x0f\\x01\\x172\\x15\\x1776\\x1f\\x0174?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x177\\x03\\a\\x177'\\x17/\\x01\\x13\\x17/\\x01\\x1f\\x01/\\x01\\x177'\\a7\\x175'\\x14\\x0f\\x01\\x17\\x16?\\x01\\a\\x17?\\x01'\\a\\x17\\x16\\x0f\\x01?\\x01\\x0f\\x01\\x01\\xb5\\x01\\n\\x017\\x02\\x02\\x14\\x02\\x01C\\x02\\x02\\x1c\\x02\\x01T\\x01\\x01\\x02A\\x02\\x0f\\x01\\x02\\x12\\x1b\\x15\\x01\\x03\\x1b&\\x01\\x1b\\x01\\x03{\\x02\\x01Z\\x02\\x06\\x02\\\"$\\x02\\x01#\\x01\\x02\\x18\\x01\\x01;\\x02\\x01F\\x01\\xcce\\x0e[\\fy\\x14j\\xbaI\\x13P9@\\rF+:\\n>NO\\x04U\\\\\\x1b\\x1e\\x01\\x16\\x18\\x02_\\x04B\\x01X\\x06@\\x01)\\x02\\x01\\x02J\\b3\\x05\\xde\\x01H\\x02,\\x01\\x01\\x0e!\\x026\\x02\\x02\\x18.\\x02C\\x01\\x01E\\x01N\\x02\\x01\\v\\x19\\x01d\\x02\\x02\\r\\x1d\\x02\\x85\\x02\\x01',\\x01\\x02\\x84\\x02\\x01\\x11\\x19\\x02#\\x15\\x01\\x01\\x10 \\x01\\x01$\\x01\\x01&\\x02\\x059a=\\x01\\x11/\\x867\\x049\\x851\\xfe\\xef=^:\\xd1=D<\\x83>F=,\\x17D\\x17\\a\\x01\\x0f\\x14\\x01\\x01C/DJC(\\x1e\\x1b\\x01\\x02\\\"\\x1b?$A\\x00\\x00\\x00\\x02\\x00\\a\\xff\\xe0\\x01\\xba\\x01\\xa0\\x00\\x1a\\x004\\x00\\x00%\\x16\\x0e\\x02#\\\"'\\x06.\\x0154632\\x16\\x15\\x14\\a\\x1632>\\x025'654&#\\\"\\x06\\x15\\x14\\x16327.\\x03#\\\"\\a'632\\x16\\x01\\xb8\\x01\\x05\\x10(\\x1c;%:tKxNOwJ\\x17\\x1a\\b\\r\\a\\x05r\\x11588338\\x13\\x0e\\a\\f\\x11\\x15\\r\\v\\b\\r\\x1b+!)=\\t\\x1b\\\"\\x17>\\x10(dAUpoV_:$\\x06\\n\\n\\x05:%?PNNPON\\x05\\r\\x12\\x14\\n\\x04\\x18\\x17\\x1b\\x00\\x00\\x00\\x00\\x05\\x00\\x02\\x00\\x00\\x02>\\x01\\x80\\x00\\x18\\x00\\x1a\\x00\\x1c\\x00W\\x00p\\x00\\x00\\x13\\x06\\x15\\x16\\x17\\x16\\x15\\x14\\a\\x06#\\\"'&'467632\\x17\\x16\\x15\\x14\\x13\\x17357\\x16>\\x017\\x1e\\x01\\x0e\\x02\\a>\\x01'0\\x0e\\x01.\\x037>\\x01.\\x01/\\x01\\x0e\\x02\\a\\x0e\\x01\\x14\\x1e\\x01\\x17.\\x0367>\\x05/\\x01\\x1e\\x03\\x0e\\x027\\x1e\\x01\\x15\\x06\\a\\x06#\\\"'&547674'&547632aA\\x01C\\r\\x04\\x03\\x05\\x0f\\x1d4\\x02\\x1e \\x17\\r\\x05\\x03\\x04~\\x01]\\x03\\b\\v\\n\\x01\\x18\\v\\x0e\\x1f\\x10\\a\\n\\x1a\\x0e\\b\\v\\x0e\\f\\t\\x03\\x02\\x02\\x01\\x03\\x04\\x02\\x01\\b\\x11\\x10\\x03\\x10\\x0e\\t\\b\\x04\\a\\x11\\x1c\\r\\n\\x15\\x10\\x18\\r\\b\\x02\\x01\\x01\\x01\\x18!\\f\\x06\\x05\\x03\\x03\\xb3 \\x1e\\x024\\x1d\\x0f\\x05\\x03\\x04\\rC\\x01A\\x10\\x04\\x03\\x05\\r\\x01`?[e@\\f\\t\\x03\\x05\\x04$Aa1J%\\x1a\\x03\\x04\\x03\\x06\\xfe\\xac\\x01\\x01\\x9e\\x02\\f\\x12\\x02\\x1f>('\\f\\x04\\a4\\x11\\x01\\x01\\x01\\x06\\f\\x15\\x10\\r\\x19\\x10\\f\\x02\\x03\\x11\\x1a\\x18\\x05\\x1b,\\x1b\\x15\\b\\x02\\x04\\r#%9\\x1d\\x17*\\x1f\\x1b\\x12\\r\\x03\\x03\\x13)  \\x17\\x14\\b\\xaa%J1b@$\\x04\\x05\\x03\\t\\f@e[?\\x10\\x06\\x03\\x04\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056&\\x0f\\x01\\x0e\\x01\\x1f\\x0176\\x17\\x16\\x0f\\x022?\\x01\\x17\\x167\\x91Α\\x91Α\\x01r\\x02\\v\\b\\xef\\r\\x01\\v=\\x8e\\x06\\x03\\x01\\x02s\\x05\\a\\x06\\x1e>\\x12\\x04\\x01\\xb8\\x91Α\\x91\\xce\\x19\\f\\v\\x03]\\x04\\f\\x03\\x13Y\\x04\\x03\\x01\\x02h?\\x06\\x1d.\\n\\x14\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\v\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x057#\\a\\x91Α\\x91Α\\x01(U\\xb5U\\x01\\xb8\\x91Α\\x91ε\\x9c\\x9c\\x00\\x00\\x00\\x00\\a\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\v\\x00\\x13\\x00\\x1b\\x00.\\x006\\x00>\\x00\\xb2\\x00\\x00%\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x17'\\x06'&76\\x17\\x16\\a6\\x17\\x16\\a\\x06'&7.\\x0176\\x172\\x1e\\x06\\x0e\\x01\\a\\x0e\\x017&\\x0e\\x01\\x17\\x1676\\x16\\x14\\x06\\\"&462\\x136&'.\\x01\\a>\\x01;\\x014'>\\x014&5'676&'&\\x0e\\x01\\a\\x0e\\x01\\x1e\\x01\\x17.\\x01'&7&'\\\"\\a>\\x01374'&\\\"\\a41\\x06\\x16\\x17\\x06\\a\\x0e\\x03\\x0f\\x01\\x0e\\x01\\x17\\x14\\x17\\x06\\a\\x06\\x167670.\\x01#63\\x166=\\x014'\\x16\\a\\x14\\x0e\\x02\\a#\\x0e\\x05\\x16\\x17&'\\x06\\x17\\x166767\\x16\\x17\\x16\\x01-\\b\\b\\n\\b\\b\\v\\a\\a\\n\\b\\t\\x14\\x05\\x06\\x05\\x05\\x06\\x05\\x05\\x1f\\x05\\x05\\x06\\x06\\x05\\x05\\x06N\\x10\\n\\x0f\\x1a!\\x01\\x06\\x02\\x05\\x02\\x04\\x01\\x01\\x01\\x02\\x02\\t)!\\x04\\v\\x04\\x04\\x06\\n\\b\\x82\\x91Α\\x91\\xceO\\x01\\x19\\x01\\v\\x19\\x13\\x05\\f\\x03\\x04\\n\\x01\\x01\\x01\\x01\\x1a\\x04\\x02\\x1d\\x17\\v\\x15\\x11\\x05\\t\\x02\\n\\x0e\\t\\r\\x17\\x04\\b\\x11\\x05\\x03\\x0e\\v\\x05\\r\\x04\\x03\\x03\\x04\\x16\\x06\\x04\\t\\f\\a\\x06\\x06\\x10\\x0e\\r\\x03\\x04\\x192\\x05\\x02\\x03\\x05\\n\\f\\x10\\x17\\r\\x03\\b\\x05'\\a\\x04\\x04\\v\\x1d\\x01\\x04\\x04\\x04\\x02\\x01\\x01\\b\\a\\b\\x06\\x04\\x01\\x02\\t\\x01/\\x17\\x13]\\x0e.\\x12\\x12('\\xec\\b\\b\\n\\t\\t\\n\\t\\b\\n\\b\\b\\t\\x05\\x05\\x05\\x05\\x06\\x06\\x05\\v\\x06\\x06\\x05\\x05\\x05\\x05\\x05\\x13\\f$\\x14\\x1e\\x1f\\x06\\x02\\x06\\x02\\a\\x03\\a\\x05\\a\\x03\\x12\\f7\\x05\\x05\\v\\x05\\b\\x06\\a\\x02Α\\x91Α\\xfe\\xdd\\n\\x0e\\x02\\x14\\x0f\\x04\\x03\\x03\\f\\f\\x04\\a\\x05\\x05\\x01\\x01\\x0e\\x1d\\x17%\\x03\\x01\\x05\\r\\t\\x0e\\x1c\\x14\\x0f\\x04\\x01\\x12\\x0f\\x1e \\x05\\x03\\x05\\a\\a\\x01\\r\\b\\t\\f\\x01\\a;\\x15\\x04\\x06\\x03\\x0f\\x10\\x10\\x05\\x06\\t3\\x13\\x05\\x03\\x03\\x05\\v\\x15\\a\\v\\x14\\x02\\x02\\t\\x01\\x11\\t\\n\\x1c\\r\\x1c!\\x05\\b\\x05\\x03\\x01\\x02\\x0e\\f\\x11\\x11\\x12\\x12\\b\\x0e\\b5\\f\\nn*\\x1c%#\\x19\\x17\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00X\\x00\\x00%\\x06\\a&\\a5>\\b56'4.\\b'5\\x047\\a#.\\b+\\x01\\\"\\x06\\x1d\\x0172>\\b73\\x06\\x14\\x17#.\\x06'&#\\x15\\x14;\\x012>\\x067\\x01\\x80\\n\\x06\\xab\\xc5\\x05\\x11\\b\\f\\x05\\a\\x03\\x03\\x01\\x05\\x05\\x01\\x02\\x03\\x03\\a\\x05\\v\\b\\x10\\x05\\x01\\x03h\\b\\x17\\x01\\x05\\x03\\x05\\x04\\x06\\x06\\t\\n\\x06\\x89\\a\\x03X\\x05\\x06\\x06\\x05\\x03\\x03\\x02\\x03\\x02\\x04\\x02\\x19\\x03\\x02\\x1a\\x01\\x05\\x02\\x04\\x04\\b\\t\\a\\x15C-Y\\f\\x13\\r\\x0e\\x06\\f\\x05\\x0f\\x03d<H\\x06\\x06\\x1a\\x01\\x03\\x01\\x03\\x02\\x04\\x03\\x06\\a\\x05\\xd0r\\x04\\a\\x05\\x04\\x04\\x02\\x02\\x02\\x02\\x03\\x01\\x19\\b\\f~\\x04\\x14\\t\\x12\\t\\r\\a\\a\\x03\\x04\\x06\\xa4\\x03\\x01\\x01\\x04\\x02\\b\\x04\\r\\b\\x12\\x06K\\fI\\x05\\x15\\b\\x0e\\x04\\a\\x02\\x01\\x02\\x8b'\\x04\\x02\\r\\x05\\x18\\t$\\a\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x10\\x00\\x14\\x00\\\"\\x003\\x00C\\x00Q\\x00[\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\a\\x175#\\x1535#\\a&'#\\x1535\\x1737\\x1532326'454'.\\x02#\\\"+\\x01\\x1754.\\x01#\\\"\\a5#\\x1537\\x1632'\\x15\\x14\\x15\\x1c\\x01\\x06#52\\x1e\\x01\\x15\\x14\\x17\\x15\\x14#\\\"&5432\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x1bL!\\x92+\\a\\x06\\x03+\\x1d\\f\\x15\\f(\\x05\\n.\\x0f\\x01\\x02\\x02\\x11\\x0e\\f\\x03\\x01\\x18\\xa0\\x01\\v\\n\\f\\t\\x1f\\x1e\\x01\\t\\f\\x16u\\x05\\x05\\x05\\x04\\x01U\\x06\\x02\\x03\\x05\\x06\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xc5[\\x80\\x80\\x80<)\\x13\\x80UUWW\\x0e*\\x11\\n\\x12\\x06\\n\\n\\x01c$\\v\\v\\t\\n*\\x80\\b\\n\\\\1\\x01\\x03\\x05\\x05\\x05T\\x04\\x04\\x05\\x02\\x1b!\\x0e\\x05*\\r\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe2\\x02\\x06\\x01\\xb8\\x00,\\x001\\x00:\\x00G\\x00p\\x00\\x00\\x01\\x1e\\x01\\a\\x06\\a\\x0e\\x01\\a\\x06\\a\\x06'\\\"#\\\"&'*\\x01#\\x06\\x16\\x1f\\x01\\x16\\x17.\\x01/\\x01&'\\x16\\x177676767676\\a\\x06\\a67\\a\\x16\\x1f\\x01.\\x01/\\x01\\x06\\a\\x1e\\x01\\x17\\\"'.\\x04'&\\x17>\\x0154&#\\\"\\a\\x06\\a>\\x01\\x1f\\x01\\x16\\a&\\x06\\a\\x16\\x17\\x166?\\x016\\x17\\x16\\a\\x06\\a\\x06'\\x1e\\x03\\x1f\\x01\\x16\\x01\\x9768\\x06\\x04\\x06\\x1173\\f\\b\\x12\\x16\\t\\tFm\\x12\\x01\\x01\\x01\\x02\\r\\b\\t\\x02\\v\\x1c \\x03\\x02D\\b)#\\x01\\x02\\x15\\n!\\a\\r\\a\\r{\\xa7\\v\\b\\n\\b\\x1e\\x01\\x03)\\x06\\b\\x01\\x01\\x14\\x01\\x10S7\\x02\\x01\\x03\\f\\x1f\\x1a\\x1d\\a\\x05\\xe80;qPJ6\\b\\x04\\x18I\\x19\\x18\\x16\\x01;J$\\t\\x120_\\x18\\x17\\x13\\x02\\x04\\r3@!-\\n\\\"!\\x1f\\n\\t$\\x01\\x82\\x1cm>!\\x134D\\x1c\\b\\x03\\x06\\x02UB\\x134\\x11\\x10\\x03\\x11\\x0fA\\x1a\\x19\\x1a\\f\\x16\\x05\\b%\\\"2(\\x1d\\x18\\r\\x069\\x9a\\x10\\x15\\v\\x06f\\x0f\\r\\a\\x13-\\r\\r\\x14N4J\\b\\x01\\x02\\a\\x19\\x1b)\\x16\\x01l\\x18^8Pr1\\x0e\\x19\\x13\\x11\\x01\\x02\\x01\\x1b\\x05\\x1b\\x1fN \\x02\\x1a\\x0f\\x0e\\x0e\\x12\\x18\\x06\\x18\\t\\x05\\x01\\x18'\\x17\\x10\\x03\\x03\\x06\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00\\x10\\x007\\x00\\\\\\x00\\x00\\x012\\x1e\\x01\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x126&'.\\x0114\\\"&'&\\x06\\x17\\x16\\x17\\x1e\\x01\\x0e\\x01'.\\x01\\\"04&'&\\x06\\x0f\\x01\\x06\\x17\\x16767\\x16\\x136&\\\"\\x0f\\x01&\\x0e\\x01\\x16\\x17\\x1e\\x013\\x140\\x16\\x17\\x166/\\x01.\\x01>\\x01\\x17\\x1e\\x0112\\x14\\x16\\x17\\x1676\\x01a\\x1a,\\x198'\\xfe\\xfe'88'\\xbb*\\x16$\\x04\\x05\\x01\\x04\\x04\\x13\\x15\\x12\\t\\n\\x14\\r\\x18/\\x14\\x05\\x04\\x01\\x05\\x04\\b\\x11\\x04\\x10\\t\\x0e\\x12\\x11\\x01\\x01$|\\a\\x0e\\x16\\b\\x05%Q)\\x15%\\x04\\x04\\x01\\x05\\x04\\x13\\x15\\x12\\x13\\x15\\f\\x18/\\x14\\x05\\x04\\x01\\x04\\x05\\x0f\\v\\x02\\x01\\xa0\\x19,\\x1a\\xfe\\xfe'88'\\x01\\x02'8\\xfe\\x9fIQ\\x15\\x03\\x02\\x01\\x02\\x03\\v&\\v\\x05\\x05\\f/)\\r\\f\\x03\\x02\\x01\\x02\\x03\\x04\\x04\\b\\x1b\\x11\\v\\x0f\\x1a\\x02\\x01\\x14\\x01\\n\\f\\x15\\v\\b\\x14\\x16HQ\\x15\\x03\\x02\\x01\\x02\\x03\\v&\\v\\n\\f/)\\r\\f\\x03\\x02\\x01\\x02\\x03\\a\\v\\x02\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x12\\x00\\x1f\\x00\\x00\\x01\\a\\x16\\a\\x0e\\x01\\a\\x0e\\x02\\a7&7>\\x017>\\x01\\a6&'&\\x0e\\x01\\a\\x06\\x16\\x17\\x166\\x01\\xc0W?\\x06\\x04_E#ZZ#W?\\x05\\x04`E0\\xae4\\x04P<'D,\\x02\\x03P<;Z\\x01\\xa0W>VFe\\t\\x05\\f\\v\\x05W=WFe\\t\\x06\\x17\\xe4;X\\x04\\x02\\\"@'<W\\x04\\x03N\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x10\\x00\\x14\\x00\\x1f\\x00#\\x00'\\x00\\x00\\x00\\x14\\x06\\\"&462\\x134&\\\"\\x06\\x14\\x1626%\\x17\\a'\\x1f\\x01#'\\a#7'7\\x17\\a'\\x17\\a'7\\x17\\a'\\x02\\x00\\x96Ԗ\\x96\\xd4v\\x83\\xba\\x83\\x83\\xba\\x83\\xfe\\xc1W%W\\x93/\\x0f21\\x0e3\\x16\\x06D\\x06\\x1cE\\x1eDm7\\x177\\x01*Ԗ\\x96Ԗ\\xff\\x00\\\\\\x84\\x83\\xba\\x83\\x83\\xe0%W%R^ddk\\n\\x0e\\x1d\\x0f|\\x1eD\\x1d\\x1a\\x177\\x17\\x00\\x00\\x00\\f\\xff\\xfe\\xff\\xba\\x02\\x12\\x01\\xc1\\x00\\x04\\x00\\f\\x00\\x14\\x00\\x1d\\x00'\\x000\\x00=\\x00D\\x00M\\x00m\\x00\\xb3\\x00\\xbd\\x00\\x006\\x16\\x06&7\\x176\\x17\\x16\\a\\x06'&\\x02\\x06'&76\\x16\\x17\\x06\\x1e\\x01\\x0e\\x01.\\x0176$\\x06&'&>\\x01\\x16\\x17\\x16\\x0e\\x01.\\x01676\\x1e\\x01\\x056\\x16\\x17\\x16\\x06\\a\\x06&'&>\\x017\\x16\\a\\x06'&6&6\\x1e\\x01\\x06\\a\\x06.\\x01\\x17\\x16\\x06\\a\\x06'\\x0e\\x01'0\\x06\\x15\\x06&'&'.\\x0167&67>\\x01\\x176\\x16\\a\\x1e\\x01\\a.\\x01'&6'&'\\\"\\a\\x06'&#&\\a\\x06'&'&\\x0e\\x01\\a\\x0e\\x04\\x15\\x06\\x16767>\\x0176\\x17\\x16\\a\\x14\\x06\\a\\x06\\x1667>\\x037632\\a\\x14\\x06\\a\\x06\\x1e\\x01\\x17\\x1e\\x026\\x176\\x16\\x17\\x16\\x0e\\x01.\\x016a\\x04\\x14\\x04\\n\\x9b\\f\\b\\b\\f\\v\\t\\a?\\x17\\x03\\x02\\v\\x05\\b\\x01\\x8a\\x0f\\x03\\n\\x12\\x0f\\x03\\x05\\x05\\x011\\x0f\\x12\\x04\\x05\\x04\\x10\\x11\\x05\\x05\\xc6\\v\\x0e\\b\\x03\\x05\\x06\\x0e\\a\\x01m\\x05\\n\\x01\\x01\\x06\\x06\\x05\\n\\x01\\x01\\x02\\x06+\\x03\\n\\v\\x02\\x02\\x14T\\f\\x0f\\t\\x03\\x06\\x06\\x10\\b\\x03\\x14\\x10\\x1f\\x19\\x1f\\tF\\x1b\\x03\\x1eE\\x15\\x0e\\x01\\x1f&\\x04\\x18\\x15#'\\x14f*3T\\x04\\x1f\\r^\\x02(\\x01\\x02+\\x01\\x04\\x1e\\r\\b\\a\\x05\\f\\a\\r\\x0e\\x0e\\x06\\x0f\\t\\b\\x13\\x11\\x05\\x03\\n\\v\\t\\b\\a\\x18\\x14\\x10\\t\\x02)\\x02\\x05\\t\\b\\x02\\x1c\\x01\\x01\\x0e\\x14\\x06\\x01\\x0f\\x11\\x0f\\x01\\x06\\x06\\t\\x02%\\x02\\x02\\x05\\r\\t\\x05\\x14\\x15\\x0e\\x04\\b\\x13\\x06\\x05\\x03\\x10\\x13\\v\\x04,\\x15\\x04\\x15\\x02P\\t\\f\\f\\b\\t\\f\\f\\x01\\xd9\\x05\\f\\v\\x03\\x01\\x05\\x05\\xd4\\v\\x12\\x0f\\x04\\v\\x12\\b\\a\\xae\\t\\x04\\b\\b\\x12\\t\\x04\\b\\bL\\b\\x02\\f\\x0e\\x04\\x03\\x02\\v\\xae\\x01\\a\\x05\\x06\\n\\x01\\x01\\x06\\x06\\x04\\a\\x059\\t\\x03\\x02\\n\\n\\x04<\\t\\x03\\r\\x10\\x04\\x04\\x02\\rw!K\\x15\\x12\\x01$\\x15\\x18\\x02\\x01\\x14\\r\\x1d\\x15\\x1a\\x052?\\x16#J\\x062$ \\x11A5\\n@`\\n\\x06\\v\\x11b\\r\\x1d\\x01\\x05\\x04\\x05\\f\\x03\\f\\f\\x03\\a\\x04\\x03\\x03\\f\\b\\x06\\x1c\\\"\\x1c\\x1b\\x02\\x14\\x1c\\x01\\x01\\x10\\x04k\\x02\\n\\x05\\x04\\v\\x05F\\x03\\v\\n\\x06\\v\\x02\\x1f\\\"\\x1e\\x02\\b\\v\\x05K\\b\\n\\x14\\x10\\x05\\x02\\x04\\x01\\tS\\x06\\x04\\b\\b\\x13\\v\\x04\\x0f\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00-\\x00=\\x00M\\x00\\x00\\x012\\x16\\a\\x15\\x14\\a\\x06#\\\"&#\\\"\\a\\x06#\\x15\\x14\\a\\x15\\x06#\\\"&=\\x01&5462\\x16\\x15\\x14\\a\\x1527632\\x17\\x1632672\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x114&#!\\\"\\x06\\x15\\x11\\x14\\x163!26\\x01S\\x04\\x05\\x01\\a\\x1e\\x16\\r(\\x11\\x1a'\\x01\\x02\\x01\\x04\\x0e\\b\\f\\r\\x13\\x1b\\x13\\f\\x01\\x03#\\x19\\x19\\\"\\x06\\a\\r&<\\x14\\x1e\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01j\\b\\x06\\xfe\\xa4\\x06\\b\\b\\x06\\x01\\\\\\x06\\b\\x01\\x15\\x04\\x03\\x87\\x04\\x03\\x0e\\x10\\x11\\x01,\\x03\\x02\\x01\\x0e\\f\\b\\xd4\\n\\x10\\r\\x13\\x13\\r\\x11\\t\\x12\\x02\\r\\r\\x03\\x10\\x8b\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01\\\\\\x14\\x1e\\xfer\\x01\\\\\\x06\\b\\b\\x06\\xfe\\xa4\\x05\\t\\b\\x00\\x00\\x03\\x00\\x18\\xff\\xbb\\x01\\xaa\\x01\\xc0\\x00)\\x004\\x00E\\x00\\x00%\\a\\x0e\\x01&?\\x01\\a\\x16\\x15\\x14\\a'>\\x01.\\x01#\\\"\\a'6?\\x01'\\a\\x06.\\x01?\\x016\\x17\\x161\\x1e\\x01\\x0f\\x0176\\x16&\\\"&4632\\x1e\\x01\\x15\\x14\\x0327\\x17\\x0e\\x01.\\x02547\\x17\\x0e\\x01\\x1e\\x01\\x01\\xa8\\r\\x02\\x1f\\x1d\\x01\\n)\\x10*'\\x14\\b\\x161\\x1f'\\x1d'#.L+3\\x0f \\a\\rD\\x10\\x13\\x8c\\f\\x05\\v:j\\x0e\\x13-*\\x1e\\x1e\\x15\\x0e\\x17\\x0e\\xe6\\x1e\\x1a'\\x1dFA6!!(\\x10\\x02\\x18/\\xc0\\x9d\\x13\\r\\x12\\x13z\\x02 $>-'\\x17<2#\\x1a' \\bV\\x19.\\r\\r\\x1f\\x0e=\\x0e\\vQ\\b \\fC\\x06\\x01\\x14\\x8c\\x1e*\\x1e\\x0e\\x17\\x0e\\x15\\xfe\\x80\\x11(\\x17\\x0e\\x12'A&5*'\\x188.\\x1e\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xef\\x02\\x85\\x01\\x91\\x00\\x1a\\x001\\x00S\\x00\\x00%0\\x0e\\x011\\a\\x06\\x15\\x14\\x16\\x15\\x06#\\x06547>\\x0673\\x1f\\x01&\\x02'.\\x01623632\\x16\\x17\\x16\\x17\\x16\\a\\x0e\\x01\\a\\x06&7\\x16\\a\\x0e\\x01\\a\\x0e\\x01.\\x02#.\\x02#&5&7067672\\x1f\\x01\\x16?\\x01\\x1e\\x02\\x01B.,]\\a\\x01r\\x01\\x12\\x02\\x01vy\\b\\a\\x06\\x05\\x02\\x013\\xa0\\x03\\xe9\\x04\\x05\\x01\\b\\b\\n::\\x13\\f\\a\\x11\\xbf\\x0f\\b\\x02q\\x03\\a\\x0f\\x90\\n\\b\\x02z\\x02\\x05\\t\\x0f\\x06\\x12\\x01\\x03\\x99\\x97\\x01\\x04\\x01\\f\\x93\\x03\\x05\\t\\a;9\\x13\\x11v\\x05\\x13\\r\\xc4*)\\\"\\x03\\x06\\x01\\x18\\x03%\\x06\\x03\\x01\\x04\\x01tx\\a\\x06\\x03\\x02\\x01By\\x03\\x01+\\x04\\a\\a\\x03\\x01\\x04\\t\\x15\\xe3\\x13\\x04\\x01/\\x01\\x05\\x03\\t\\x02\\x06\\x01L\\x01\\x02\\x02\\x01\\x01\\x04\\x01\\\"\\\"\\x02\\x02\\x03\\x046\\x01\\x02\\x01\\nJ\\x16\\b4\\x01\\x04\\x03\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00A\\x00X\\x00|\\x00\\x88\\x00\\x9e\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x16\\a\\x0e\\x02\\a\\x0e\\x01\\x17\\x1e\\x01676\\x17\\x1e\\x01\\x17\\x1e\\x0176'.\\x016'<\\x02.\\x04'&\\a\\x0e\\x02\\x17\\x16\\x17\\x1667>\\x01\\x054&*\\x01#\\\"#\\\"&\\x0e\\x01\\x15\\x06\\x1e\\x0163!2\\x1626\\x1354\\a*\\x02#\\\"\\x06\\x1d\\x01.\\x01\\x0e\\x02\\a\\x06\\x17\\x1e\\x02676762\\x17\\x1e\\x016325'\\x0e\\x01&'&7>\\x01\\x17\\x1e\\x01\\x050&\\\".\\x055&7676\\x16\\x15\\x14\\x15\\x16\\x06\\x01\\xe2\\x12\\f\\f\\x12\\xfe;\\x12\\v\\f\\x11\\x95\\x0e\\x02\\x01';\\x0f\\x15\\x15\\x02\\x031C\\x1c\\b\\x04\\x01\\x02\\x01\\x05#\\a\\x05\\x03\\x06\\x03\\x01\\x01\\x01\\x02\\x05\\b\\v\\b@=\\t\\x16\\b\\x0e\\a\\x10\\x06\\b\\x03\\t7\\x013\\x04\\x03\\t\\x01\\xc6\\xc6\\x01\\t\\x03\\x04\\x01\\x04\\x04\\t\\x01\\x01\\x8b\\x01\\t\\x04\\x04\\x04\\x0e\\x01\\x03\\x04\\x01\\x14\\x06\\x17*\\x1d\\x19\\r\\x04\\x19\\t\\x06 )-\\x14\\x01\\x02\\x02\\x05\\x03\\x04\\v\\x12\\x03\\b4\\t%#\\t\\x17\\x18\\f5\\x10\\x0e\\x01\\xfe\\xd3\\x06\\x03\\a\\x03\\x06\\x04\\x03\\x02\\x01\\x15\\x04E\\x05\\x03\\x01&\\x01\\xa0\\f\\x12\\xfe|\\x13\\v\\v\\x12\\x01\\x86\\x11\\f\\xbc\\n\\x12\\b\\a\\b\\a\\v'\\x16\\x1f!\\x03\\x12\\x06\\x05\\x01\\x04\\x01\\a\\x05\\x05\\x04\\x06\\x0e\\\"\\x1a\\x0f\\t\\x1f\\x0e\\x19\\v\\x11\\t\\t\\x04\\x1a\\x1f\\x05\\x1a\\x1b\\x06\\x04\\x02\\x02\\x03\\a\\x18\\x0f\\xed\\x05\\x05\\x01\\x01\\x05\\x05\\x05\\x05\\x01\\x01\\x01\\x05\\x01Z\\x01\\x0f\\x01\\a\\x13G\\r\\a\\b\\x11\\x11\\t22!.\\x13\\x02\\v\\x01\\x01\\x02\\x05\\x06\\x02\\x02\\x0e;\\x17\\x10\\x0f\\x1332\\x1a\\x02\\x17\\x13H-\\x01\\x02\\x02\\x03\\x04\\x05\\x06\\x04\\x15\\x05\\x01\\x0e\\x01\\x04\\x04\\x02\\x01\\x19\\\"\\x00\\x00\\x02\\xff\\xf8\\xff\\xe0\\x02\\x01\\x01\\x8b\\x00\\a\\x00\\x18\\x00\\x00\\x12\\x0e\\x01&>\\x02\\x16\\x05\\x16\\x15\\x14\\x0e\\x01#\\\"&'>\\x017\\x16\\x17\\x166\\xc6MU,\\x18MU,\\x01!\\x01I}J=l&5V\\x19\\r$7\\x9b\\x01\\bk4!bj4 ^\\r\\fK~J4-\\x0eF13\\x17!T\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x00\\x11\\x00\\\"\\x004\\x00E\\x00M\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x176'&'\\\"\\x1d\\x01\\x14?\\x012\\x1e\\x01\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x173\\x15\\x147632\\x17\\x16=\\x014&+\\x01\\\"\\x06\\a\\x06\\x14\\x1f\\x01\\x16767676/\\x01&\\\"\\a\\x16264&\\\"\\x06\\x14\\xc0J44J4\\x98\\x02\\x01\\x14)\\x03\\x04\\x9c\\x10\\x1b\\x10#\\x18\\xfe\\xb6\\x18##\\x18\\u007f\\x01\\x03\\x13\\x14\\x14\\x13\\x03\\f\\b-\\b\\fT\\x06\\x06\\b\\x02\\x02\\a\\b\\a\\n\\x03\\x03\\a\\x06\\x10\\x06BiJJiJ\\x01\\t4J44J\\x04\\x01\\x02$\\x02\\x03C\\x04\\x02\\xee\\x10\\x1b\\x10\\xfe\\xb6\\x18##\\x18\\x01J\\x18#U\\x0f\\x04\\x01\\x05\\x05\\x01\\x04\\x0f\\b\\f\\f-\\x05\\x10\\x06\\b\\x02\\x03\\t\\b\\b\\a\\x02\\x02\\b\\x05\\x05\\xfeJiJJi\\x00\\x00\\x00\\x02\\x00\\x10\\xff\\xe0\\x01\\xb1\\x01\\xa0\\x003\\x00I\\x00\\x00\\x132\\x16\\x15\\x11\\x14\\a\\\"#\\\"'&=\\x01\\x0e\\x01#\\\".\\x035<\\x02>\\x047>\\x01754.\\x02#\\\"\\x06\\a\\x06&'&'&76\\x135\\x0e\\x01\\a\\x0e\\x06\\x1c\\x02\\x15\\x14\\x1e\\x0232\\xf0a_\\x05\\x03@5\\x06\\a\\x1fX\\\"\\x1f0\\x19\\x10\\x05\\x01\\x02\\x05\\x06\\n\\a\\x16\\x99D\\x02\\v\\x18\\x15(V\\x1b\\x04\\r\\x03\\x04\\x06\\x03\\nL\\x9e\\x1fE\\x14\\x03\\x05\\x03\\x03\\x02\\x01\\x01\\x04\\v\\x1a\\x12(\\x01\\xa0I?\\xfe\\xd7\\a\\x02\\x02\\x01\\b\\x19\\x11\\x19\\x12\\x1a\\x1f\\x16\\a\\x01\\x10\\f\\x14\\x0f\\x13\\x0e\\f\\x03\\t\\x1e\\t&\\x15\\x14\\x17\\t\\x1d\\x12\\x04\\x03\\a\\b\\x1f\\x0e\\x067\\xfe\\xa4k\\x03\\x14\\v\\x01\\x05\\x04\\a\\x05\\a\\x05\\a\\x05\\x05\\x02\\x05\\r\\x10\\n\\x00\\v\\xff\\xfd\\x000\\x02\\x80\\x01N\\x00\\x11\\x00\\x15\\x00G\\x00V\\x00_\\x00c\\x00f\\x00\\xa6\\x00\\xaf\\x00\\xc4\\x00\\xc7\\x00\\x00%\\x0f\\x027\\x0f\\x027\\x0f\\x017\\x0f\\x01'7\\x177\\a?\\x01\\a\\x05'\\x0f\\x017\\x06\\a\\x06&7>\\x0172\\x1e\\x051?\\x016\\x17?\\x01\\x0f\\x027\\x0f\\x027\\a?\\x01\\x177\\a?\\x01\\x0f\\x03'\\x0f\\x01'\\a&\\a\\\"\\x0e\\x02\\a\\x06\\x1676?\\x026&\\x0f\\x012>\\x02\\x177\\x06\\a7'\\a/\\x01\\x0f\\x02?\\x01\\x17?\\x01\\x17?\\x01\\a>\\x0276\\x1e\\a1?\\x016\\x17'7\\x17?\\x01\\x0f\\x027'\\x16\\a\\x17\\a'\\x0f\\x017\\x0e\\x06#\\x06'\\x0f\\x01'\\a767676'&\\x0f\\x01\\x1676767\\a?\\x02\\a&'&#\\x06\\a\\x06\\a\\x06\\a7'\\x02\\x80\\x03#\\x02#\\x03#\\x02\\\"\\x03@\\f/ \\x18\\x1f\\r x\\r\\x1c\\r\\xfe\\xdb\\x13\\x04\\x1c\\x03\\x15$\\x1a!\\x02\\x02%\\x1d\\b\\r\\n\\a\\x06\\x03\\x04\\x03'%\\x05\\x03A\\x03$\\x02$\\x02%\\x02%\\x026\\x18 \\t\\x16\\x03K\\x03\\x18\\n:\\x04(\\b\\xaa\\x1b\\t\\x11\\a\\f\\t\\x06\\x01\\x01\\x0f\\x0f\\x10\\r\\x1b;\\x01\\f\\x0f\\x03\\a\\a\\n\\x04\\x16\\x06\\a\\x15\\x9d\\b\\x0f\\x93\\x04(\\b 9\\x18\\x1f\\n\\x1b&\\x06\\x1d\\x04\\x06\\t\\x1e\\x12\\a\\f\\t\\b\\x06\\x05\\x03\\x02\\x02\\x03'\\x1a\\v\\x05 \\r\\x17\\x1f+\\x05\\x1d\\x05\\x10\\x02\\\"\\x1a%\\x13\\x04\\x1c\\x03\\x01\\x05\\x04\\b\\b\\v\\x0e\\t)\\x0e\\x04\\x19&\\x06\\xdc\\x0f\\x06\\a\\x01\\x01\\x04\\x06\\x11p\\b\\r\\a\\x06\\b\\a\\\"\\x03?\\x01\\x1f\\a\\x04\\a\\x06\\v\\v\\v\\x02\\x01\\xc1\\x18\\b\\xd2\\x1c\\x03\\x12\\x03\\x1d\\x02\\x14\\x02\\x1a\\x04qs\\x02v\\x02PS\\x80x\\x02x\\x12$&\\x01\\x1d\\\"\\x02\\x01 \\x1b\\x18(\\x02\\x02\\x04\\x05\\a\\x05\\x06\\x1f\\x02\\x03\\x1b\\x1b\\x04\\x1c\\x02\\x12\\x02\\x1b\\x03\\x14\\x03\\x15u\\x02oV\\x02\\x1c\\x05\\x1c\\x02\\\\\\x03\\x0f\\x02\\x10>\\x02\\x11\\x01\\x06\\n\\v\\x06\\r\\x13\\x01\\x01\\x12\\x01&\\t\\x04\\x01\\x1c\\x01\\x03\\aB<\\x12\\t\\f&(M\\x11\\x02\\x13\\x02z\\x02fh\\x02?B\\x02)\\f\\r\\x15\\x01\\x01\\x02\\x03\\x04\\x05\\x05\\x05\\x04\\x03 \\x03\\x02\\f\\f\\x02+.\\x02N-\\x02-+$\\x0e'\\x02%'\\x02 \\x01\\b\\x05\\b\\x06\\x06\\x04\\x03*(\\x02?BO\\x01\\x03\\x04\\b\\b\\x03\\x03\\x01@\\t\\x01\\x01\\x03\\x05\\t\\x02\\x18\\x04\\f\\x02\\x06\\x02\\x03\\x01\\b\\n\\x0f\\x0e\\x11\\x01&\\x00\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x19\\x00\\\"\\x007\\x00?\\x00K\\x00\\x00\\x017>\\x01\\x1e\\x01\\x0f\\x0132\\x16\\a#\\\"&46;\\x017'&>\\x01\\x16\\x17\\x0f\\x01\\x0e\\x01.\\x01?\\x016732\\x16\\x14\\x06+\\x01\\x17\\x16\\x0e\\x01&'.\\x01'&67\\x16&2\\x16\\x14\\x06\\\"&4\\x054&#\\\"\\x06\\x15\\x14\\x16326\\x01\\x00\\t\\x04\\x11\\x0e\\x05\\x05W?\\x0f\\x0f\\a\\xb9\\t\\f\\f\\t4B\\x14\\x05\\x05\\x0e\\x11\\x04F\\x13\\x05\\x10\\x0f\\x04\\x04\\x0f\\x18\\xb95\\t\\f\\f\\t\\x1d\\x14\\x04\\x05\\x0e\\x11\\x04\\x112\\b\\v\\a\\v\\f\\x91Α\\x91Α\\x01\\xd0\\u007fYZ~\\u007fYZ~\\x01G\\x10\\a\\x05\\t\\x10\\b\\x97\\x1c\\r\\f\\x11\\fs$\\b\\x10\\t\\x05\\a\\xea\\\"\\a\\x05\\t\\x10\\b\\x19\\a+\\f\\x11\\f\\\"\\b\\x10\\t\\x05\\a\\x1fV\\x0e\\x17%\\t\\x15\\xba\\x91Α\\x91\\xcegZ~\\u007fYZ~\\u007f\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x18\\x002\\x00G\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x137&\\x0f\\x01\\x06\\x1e\\x01676&+\\x0176.\\x01\\x06\\x0f\\x01'.\\x01\\x0e\\x01\\x1f\\x01\\a#\\\"\\x06\\x14\\x163!264&+\\x01&'\\x0e\\x01\\x17\\x1e\\x01\\x17\\x1e\\x01>\\x01/\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14O\\x13\\x0f\\x18\\x0f\\x04\\x05\\x0e\\x10\\x8f\\a\\x0f\\x0f>V\\x04\\x04\\x0f\\x10\\x04\\t\\t\\x04\\x10\\x0e\\x04\\x04\\x14A3\\b\\f\\f\\b\\x01\\x18\\b\\f\\f\\b4\\x10+\\v\\a\\v\\t3\\x0e\\x04\\x10\\x0e\\x05\\x04\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xa0!\\x13\\b\\x18\\b\\x10\\b\\x04=\\r\\x1b\\x95\\a\\x10\\b\\x04\\a\\x0f\\x0f\\a\\x04\\b\\x10\\a#r\\v\\x11\\f\\f\\x11\\v\\x1cJ\\b$\\x17\\x10X\\x18\\b\\x04\\b\\x10\\b!\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00V\\x02\\x80\\x01\\x00\\x00!\\x00,\\x00A\\x00M\\x00a\\x00n\\x00\\x8a\\x00\\x94\\x00\\xab\\x00\\x0072\\x16\\x1754#\\\"\\x0e\\x02\\a#47632\\x17\\x16\\x1d\\x01#7#\\x0e\\x02#\\\"&546\\x172654&#\\\"\\x15\\x14\\x1673\\a3>\\x0132\\x17\\x16\\x15\\x14\\a\\x06#\\\"&'#\\x15#74&#\\\"\\x06\\x15\\x14\\x1632673\\a>\\x0132\\x17\\x16\\x15\\x14\\a\\x06#\\\"&'#\\x15#74&#\\\"\\x06\\x15\\x14\\x1e\\x01326747632\\x16\\x1d\\x01#\\x14\\x15\\x14\\x1e\\x0132653\\x15\\x14\\a\\x06#\\\"'&7454&#\\\"\\x06\\a\\x1573\\a3632\\x16\\x15\\x14\\x15#454&#\\\"\\a\\x06\\x1d\\x01#*\\x11\\r\\x04\\x12\\x04\\x05\\x04\\x01\\x01&\\x06\\t%,\\n\\x04'\\x02\\x01\\x03\\b\\x0e\\v\\x17\\x12\\x14'\\n\\a\\b\\f\\x11\\bZ&\\x01\\x01\\x06\\x0f\\x10\\x15\\v\\f\\f\\t\\x18\\x0f\\x0f\\x04\\x01'Q\\b\\r\\r\\b\\b\\x0e\\f\\b:&\\x01\\a\\x0f\\x10\\x15\\n\\r\\f\\t\\x18\\x10\\x0f\\x03\\x01'Q\\b\\r\\r\\b\\x04\\b\\t\\r\\b5\\r\\f! \\x18L\\x04\\b\\b\\v\\a&\\a\\n#&\\f\\fM\\b\\f\\v\\x06\\x01]'\\x02\\x01\\t\\x14\\x11\\x0e#\\x04\\x06\\n\\x03\\x01'\\xd1\\x06\\t\\x17\\x10\\x01\\x03\\x05\\x04\\x12\\x06\\f\\x13\\t\\x0fL\\x13\\b\\b\\x04\\x11\\x14\\x13\\x110\\x05\\b\\a\\x05\\f\\b\\x05_\\x15\\r\\b\\t\\v%(\\r\\n\\t\\fFl\\x15\\f\\v\\x12\\x15\\r\\fO\\x15\\r\\b\\t\\v%(\\r\\n\\t\\fFl\\x15\\f\\v\\x12\\x0f\\r\\x06\\f\\x16#\\v\\v\\x18 \\v\\x02\\x03\\b\\n\\x04\\x06\\b\\x02\\x10\\t\\r\\f\\v3\\x02\\x02\\t\\x06\\x06\\t\\x04.\\x14\\x14\\x13\\x18\\x05\\x05\\x02\\x02\\f\\b\\t\\x04\\tD\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf4\\x02A\\x01\\x95\\x00/\\x007\\x00\\x00%\\x06\\a\\x17#'\\x06\\a\\x17#7\\x06'\\a#7&74767\\x06\\a\\x06\\a\\x06\\x16\\x17\\x13\\x17676&'&\\a\\x06\\a>\\x01\\x17\\x1e\\x02\\x15\\x06\\a67'\\a\\x16?\\x01\\x02\\x06\\x15\\x1cIf.\\x19\\x1d!\\x88\\x17$!\\x16e\\\"E\\x01*;f\\x1d!1\\x1e+\\f2\\xbe\\x97\\x13\\x10I:rkrTWZ\\xdd`6M&\\x01\\xf5\\x1b\\x1bOf!$!\\x8b\\x16\\x12nG\\n\\b5%\\x04\\x01\\\"3\\x1c7)*= \\n\\x15\\x19!.S\\x16\\x01\\x1e\\xe3\\x0f\\x10N\\x88\\x11\\x11\\x1f\\x0e,2.\\x0e\\b'7!9\\x8c\\b\\fz\\x9f\\x01\\x065\\x00\\x05\\x00\\x00\\xff\\xfa\\x02\\x80\\x01\\x86\\x00\\x05\\x00\\x13\\x00\\x1c\\x00*\\x00+\\x00\\x00%\\x15\\x05%5\\x057.\\x01\\a\\x06\\a#>\\x0132\\x1e\\x01\\x17\\x05632\\x17\\a&#\\\"'\\x06\\a>\\x0132\\x16\\x17\\a'.\\x01\\x06\\x05\\x02\\x80\\xfe\\xc0\\xfe\\xc0\\x01@~6\\xa9D\\x05\\x02\\x01\\x1d[5#B5\\x13\\xfe\\xf4#<<#.\\\"4\\x1f\\x94\\x0e\\x15)\\x85MM\\x85)1\\x011\\x92\\x9e\\x01\\x93\\xf86\\xc8\\xc86ȀG\\x158\\x04\\x02*2\\x17)\\x1c111\\x1d0o\\v\\x16?II?\\x1e\\x01DA\\x14T\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xe0\\x02\\x05\\x01\\xa0\\x00\\x0f\\x000\\x00\\x00\\x012\\x16\\a\\x03\\x0e\\x01#!\\\"&7\\x13>\\x013\\x137/\\x01>\\x0316.\\x02\\a\\x06\\a/\\x01\\x0f\\x01\\x1f\\x01\\x06\\a'\\a\\x1f\\x017'67\\x17\\x01\\xc5\\x1d\\\"\\x059\\x051\\x1d\\xfe\\xc8\\x1d\\\"\\x059\\x051\\x1d\\xfe\\x06_\\x04\\a\\r\\b\\a\\x06\\x02\\x0e\\x12\\x05\\x0f\\x13\\x05g\\t\\x13E\\x15\\x15\\f:\\x104)\\x12\\x16\\x11\\x19s\\x01\\xa0)\\x1d\\xfe\\xcc\\x1d))\\x1d\\x014\\x1d)\\xfe\\xa5\\bw\\a\\x05\\n\\x06\\x05\\x05\\x12\\x10\\x05\\x05\\x0e\\x12\\x04q\\x05\\x1dd\\x1d\\x16\\r\\x1f\\x100=\\r@\\v\\x10n\\x00\\x00\\x06\\xff\\xfd\\xff\\xff\\x02\\x85\\x01\\x81\\x001\\x00>\\x00f\\x00\\xa3\\x00\\xb8\\x00\\xc8\\x00\\x007\\x14\\x1e\\x01\\x15\\x14\\x0f\\x01\\x06#*\\x01&'\\x0e\\x02#\\\"1\\x06&7&6\\x172\\x1756&\\a\\\"\\a\\x06#&47>\\x013232\\x17\\x16\\x15\\x14\\x0f\\x0126765&#&\\x06\\x17\\x06\\x16\\x17\\x06/\\x01&5\\\"54;\\x016\\x1f\\x0176\\x1736\\x1f\\x0176\\x173:\\x01\\x16\\x15\\x06\\a\\x06'#\\x06/\\x01\\a\\x06'\\x05\\\"'&=\\x014\\x17\\x16\\x17\\x167>\\x01'.\\x06'.\\x025&632\\x1e\\x01\\x17\\x16\\x1d\\x01\\x14#.\\x02#\\\"\\x0e\\x02\\x15\\x14\\x17\\x1e\\x06\\x17\\x16\\a\\x06\\a\\x0e\\x01#\\\"#\\\"&'&6\\x17\\x1e\\x01;\\x012676\\x166&\\a\\x06&7>\\x01\\x16\\x17\\x16\\x06\\a\\x06&7\\xb4\\x05\\x06\\x04\\r\\x02\\x03\\x02\\x02\\v\\x06\\x06\\x15\\x18\\n\\x01\\x13)\\x02\\x02,\\x1c\\x15\\x1a\\x03\\x19\\x16\\x15\\x19\\x06\\x05\\x05\\x02\\x05(\\x15\\x03\\x04\\x1b\\x16\\x12\\x01V\\x16\\x18\\x03\\x02\\x14\\x13\\x0f\\x1c\\x01\\x01\\x11\\xb9\\n\\x032\\x01\\x01\\x04\\x17\\n\\x02$!\\x02\\v\\x11\\v\\x02!%\\x02\\v\\x13\\x01\\x02\\x03\\x014\\x02\\v\\x12\\v\\x02!!\\x02\\v\\x00\\xff!\\x18\\b\\t\\x13\\n#\\x16\\t\\x03\\a\\x02\\x04\\x06\\x03\\n\\x06\\x10\\x06\\a\\x0f\\x16\\x01'\\x1f\\b\\x15\\x17\\x04\\x02\\x05\\x02\\x0e\\x15\\f\\x04\\v\\x0f\\t\\x1e\\x04\\x14\\x05\\r\\x04\\t\\x05\\x03\\x14\\x0f\\x12\\v3\\x8dC\\x02\\x01K\\xb87\\x05\\x06\\x06=\\xb9F\\x014\\x8e/\\n\\t\\x1e\\x12I\\x05\\x01\\x04\\x134&\\x05\\a\\x16\\x19\\x04\\a\\x02\\xf5\\n\\x10\\v\\x02\\x04\\x02\\t\\x02\\r\\f\\b\\r\\b\\x01\\x1a\\x1f\\x1c\\\"\\x02\\x06\\x10\\x14\\x1a\\x03\\n\\x02\\x01\\x13\\x04\\x05\\r\\x11\\x14\\x1b\\x03\\x03e\\x13\\v\\b\\x13\\x05\\x01\\x0f\\x12\\r\\x12\\x16\\x01\\v\\xa5\\x04\\x04\\x01\\x04\\x01\\v\\x8d\\x8d\\v\\x01\\x01\\v\\x8f\\x8f\\v\\x01\\x04\\x04\\x02\\xa8\\f\\x01\\x01\\f\\x89\\x89\\f\\x02\\x06\\f\\x04\\b\\v\\t\\x03\\b\\x02\\a\\f\\x05\\x17\\a\\x02\\x02\\x03\\x02\\x03\\x02\\x05\\x02\\x01\\b\\x1a\\x11\\x16\\\"\\x03\\a\\x06\\x03\\x04\\n\\a\\x01\\x05\\x05\\x01\\x04\\v\\t\\x13\\b\\x01\\x06\\x01\\x05\\x02\\x05\\x06\\x03\\x19\\x1f#h&)G2\\x04\\b\\x03#1\\x1d\\x14\\x04\\x0e\\x10\\x17\\t\\x01\\a\\x04\\f\\t\\x06\\x05\\tM\\x15\\x03\\x03\\x04\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00#\\x004\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0154&+\\x01\\\"\\a#5#\\x15353\\x16;\\x0126'\\x15\\x14\\x06+\\x01\\\".\\x01=\\x0146;\\x012\\x16\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01@(@\\x11@\\x06\\x01@@\\x01\\r9\\x11@(@\\x0e\\x18.\\x0f\\x12\\v\\x15\\x17.\\x18\\x0e\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfe\\xff#*('K\\xe8#'(H\\x17\\x13\\x0f\\x05\\x10\\x0e\\x14\\x14\\x0f\\x0f\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00?\\x00R\\x00g\\x00\\x00\\x00\\x14\\x06\\\"&462\\x176'7'\\a&'7'\\a&/\\x01\\a02\\x1e\\x0221\\x16\\x0f\\x01\\x1630\\\"'\\a\\x06'&1\\a\\x17\\x1e\\x033\\a\\x177\\x16\\x17\\a\\x177\\x16676'6\\a\\x0e\\x03\\\".\\x03#72\\x1e\\x057\\x0e\\x04&\\\".\\x02'72\\x1e\\x06\\x01\\xf8\\x91Α\\x91\\xce\\x03\\a=\\v\\x1b\\v\\b\\x0e\\v\\x1b\\v\\f\\x06%\\a\\x02\\x05\\x05\\x05\\x02\\x0e\\x01\\r\\x02\\x01\\x02\\x01\\x12\\x03\\t\\x14\\r#\\x02\\x06\\x04\\x05\\x02\\v\\x1b\\f\\n\\v\\v\\x1b\\f\\\"3\\v\\x0f(\\x1d9\\x01\\x06\\t\\n\\r\\n\\x0e\\a\\r\\x01\\x0f\\x01\\x12\\n\\x12\\n\\v\\x03\\a\\x02\\x04\\x06\\b\\b\\n\\a\\n\\x06\\t\\x01\\x0e\\x01\\f\\a\\r\\a\\f\\x03\\x05\\x01'Α\\x91Α\\xd5*\\x15-\\x06+\\x02\\x03,\\a-\\x02\\x02\\t\\x1d\\x01\\x01\\x02\\x04\\f3\\x01\\x01H\\b\\x02\\x05\\x1f\\t\\x01\\x01\\x01\\x02-\\a,\\x02\\x03-\\x06-\\t\\x10\\x1d-\\x15\\a6\\x05\\b\\x04\\x03\\x01\\x03\\x02\\x03<\\x04\\x03\\x06\\a\\t\\rQ\\x05\\x06\\x05\\x02\\x01\\x01\\x03\\x01\\x02\\x016\\x03\\x02\\x04\\x04\\a\\a\\v\\x00\\x05\\xff\\xef\\xff\\xd7\\x02\\x00\\x01\\xc1\\x00\\r\\x00\\x1b\\x00)\\x005\\x00O\\x00\\x00\\x1362\\x17\\x16\\x0e\\x01'&\\\"\\a\\x06.\\x01\\x13.\\x017>\\x01\\x16\\a\\x06\\x16\\x17\\x1e\\x01\\x067\\x06&67>\\x01'&6\\x16\\x17\\x16\\x06'\\x14\\x06\\\"&=\\x01462\\x16\\x15746\\x16\\x1d\\x01\\x14\\x06#\\\"&=\\x0146\\x16\\x15\\x06\\x1e\\x0232>\\x02NG\\xc8I\\x06\\x05\\x10\\b?\\xae>\\a\\x11\\x04i`b\\x19\\x02\\x11\\r\\x02\\x16UT\\n\\x04\\r\\x8b\\t\\f\\x03\\nOR\\x12\\x03\\x0e\\x11\\x02\\x15^\\x9b\\b\\f\\t\\t\\f\\tG\\x10\\x10E11E\\x10\\x10\\x01\\x02\\x0e%\\\"!%\\x0f\\x02\\x01}CG\\a\\x11\\x04\\a=:\\a\\x06\\x0f\\xfee\\x1d\\xad`\\n\\x04\\f\\tT\\x97\\x1a\\x03\\x11\\r\\x05\\x03\\f\\x12\\x03\\x1a\\x92Q\\n\\f\\x04\\n]\\xa81\\x06\\t\\t\\x06H\\x06\\t\\t\\x06\\xc5\\n\\b\\b\\nG0++0G\\n\\b\\b\\n!1!\\x11\\x10 2\\x00\\x00\\x00\\x00\\a\\x00\\x00\\x00\\r\\x02\\x00\\x01s\\x00\\b\\x00\\x11\\x00\\x19\\x00!\\x00)\\x002\\x00:\\x00\\x00\\x13\\x14\\x06+\\x01732\\x1672\\x16\\x15\\x14\\x06+\\x017\\a2\\x16\\x15\\x14+\\x01732\\x16\\x15\\x14+\\x017%2\\x16\\x15\\x14+\\x017\\x172\\x1e\\x01\\x15\\x14+\\x017\\a2\\x16\\a\\x14+\\x017\\xa6\\\"&G\\x15D\\x1d\\x19~\\x1d\\x19!%F\\x12\\x87\\x1c\\x1aIF\\x15\\xf8\\x1c\\x1aGF\\x13\\x01\\x01\\x1d\\x19FF\\x12(\\x14\\x19\\tFF\\x12y\\x1c\\x1a\\x01FF\\x13\\x01K\\x14\\x1dY\\x19\\x19\\x19\\x0f\\x14\\x1dY\\x83\\x19\\x0f1Y\\x19\\x0f1Y6\\x19\\x0f1Y\\x8a\\x0e\\x11\\t1Y6\\x18\\x101Y\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\x10\\x00\\x1f\\x00>\\x00`\\x00\\x007>\\x02232\\x17\\x16\\x15\\x14\\a\\x06\\\"'.\\x01\\x172\\x16\\x17\\x16\\x06\\x0f\\x02\\\"'.\\x0176\\x05\\x0e\\x02\\a\\x06#\\\"'&'&'&'&547>\\x0176 \\x17\\x16\\x17\\x1e\\x01\\x15\\x14'&'.\\x01'&54'&'&'\\\"\\a\\x06\\a\\x06\\a\\x14\\x17\\x1e\\x01\\x17\\x1e\\x0176767>\\x01\\xa2\\x02\\x03\\t\\n\\r\\x1c\\x04\\b\\a\\x039\\x03\\b\\x04C)\\x0f\\x04\\x06\\x02\\a\\t04\\x04\\b\\x03\\a\\x04\\x01\\x17\\x02\\r\\x16\\x0e\\b\\xa5\\xa5\\a\\f\\n\\v\\x06\\a\\x03\\x02\\x02\\x05\\x1b\\x13\\x05\\x01I\\x06!\\x0f\\x05\\x02V\\x02\\x06\\x02\\x1b\\x04\\b\\x19\\x13\\x16\\x05\\\"2\\x11+\\v\\x01\\x01\\x04\\a%\\x15\\av\\t\\x1d\\x15\\x10\\x06\\x02\\x01\\xfc\\x02\\x02\\x01\\x02\\x04\\n\\b\\x05\\x02\\x01\\x02\\x11X\\x02\\x03\\x05\\x10\\x04\\x01\\x01\\x02\\x03\\x11\\x05\\x05\\x83\\x0e\\x17\\x11\\x03\\x02\\x02\\x03\\a\\a\\t\\n\\f\\a\\xa7\\xa6\\a\\x13\\x1a\\x05\\x01\\x01\\a\\x1e\\v \\x89\\xa2\\xb1\\b\\x03\\x01\\x01\\x03\\x04\\x0e\\x1f\\x1a\\x12\\a\\x01\\x01\\a\\x10.\\x06:G\\x0e\\x16 \\x04\\x01\\x01\\x01\\x04\\x16\\x10\\x17\\aS\\x00\\x00\\x03\\xff\\xff\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00&\\x006\\x00G\\x00\\x00%\\x16\\x06\\a\\x06\\a\\x0e\\x02\\a\\x06\\\"'.\\x01'.\\x01567>\\x017>\\x013\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x17\\x1e\\x01\\x17\\x16%\\x06\\x16\\x17\\x16327654'&#\\\"\\x06\\x17>\\x01'.\\x01#\\\"\\x06\\a\\x06\\x17\\x16\\x17\\x16?\\x01\\x01\\xbf\\x01\\x01\\x03\\n\\x19\\f\\x19\\x1d\\x10\\x0e\\xbf\\v\\\";\\v\\x05\\x02\\x01\\x02\\t- \\x12'48\\a%\\x1d(\\x01\\f\\a,\\x03\\n\\xfe\\xc0\\t\\b\\f\\x06--\\x05\\f\\r\\x06.$\\x11\\xba\\v\\x03\\t\\x06\\x18CB\\x1a\\x06\\n\\x02\\x02\\r\\aTM\\xe1\\x05\\x86\\f%\\x19\\r\\x11\\n\\x02\\x02\\x02\\a3%\\x0f-L^\\n#5\\r\\a\\x03\\x01\\x02\\v\\x1e)2\\x16\\a\\x05\\x01\\x02\\x052\\t\\x1c\\x04\\x01\\x03\\b\\x0e\\x0f\\a\\x03\\x02\\xce\\x06\\x19\\b\\x06\\x02\\x02\\x04\\n\\r\\x0e\\x05\\x03\\x01\\x01\\x00\\x00\\x11\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00C\\x00\\x00\\x113\\x15#75#\\x1573\\x15#75#\\x1573\\x15#75#\\x15\\x053\\x15#75#\\x1573\\x15#75#\\x1573\\x15#75#\\x15\\x053\\x15#75#\\x1573\\x15#75#\\x1573\\x15#\\x80\\x80xp\\x98\\x80\\x80xp\\x98\\x80\\x80xp\\xfe\\xb8\\x80\\x80xp\\x98\\x80\\x80xp\\x98\\x80\\x80xp\\xfe\\xb8\\x80\\x80xp\\x98\\x80\\x80xp\\x98\\x80\\x80\\x01\\xa0\\x80\\bppx\\x80\\bppx\\x80\\bpp(\\x80\\bppx\\x80\\bppx\\x80\\bpp(\\x80\\bppx\\x80\\bppx\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x01\\xff\\xc2\\x01\\xfb\\x01\\xbb\\x00\\a\\x00\\x17\\x00#\\x00\\x00$\\x0e\\x01.\\x01>\\x01\\x16\\x03.\\x027>\\x017>\\x01\\x1e\\x02\\x17\\x16\\x0676.\\x03'\\x0e\\x01\\x17\\x166\\x01L\\x06)5!\\x06)58Gs8\\t\\bK8/fYH+\\x02\\x03\\x9cH\\b\\x1e5K;\\x1c+\\x11\\x1a3\\x8f\\xce5!\\x05*5!\\x06\\xfe\\xd1\\x04P~F@e\\x1b\\x16\\x04$>]4m\\x97\\xb9\\\"C2.\\x1b\\n)\\xbau\\f;\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x1b\\x00\\x1f\\x00'\\x00/\\x00\\x00\\x016\\x1e\\x01\\x0f\\x01\\x16\\a\\x06\\\"&476\\x177&#\\\"\\x06\\x17&54632\\x17\\x066&\\x06&2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01>\\x03\\a\\x02\\x02L\\x02\\n\\b\\x17\\x11\\b\\n\\r\\x1a\\x1b$'7\\x01\\x01L5-'U\\x14\\x14\\x14I\\xba\\x83\\x83\\xba\\x83\\x9e\\x84^^\\x84^\\x01&\\x03\\x02\\a\\x04X\\x0e\\n\\b\\x11\\x17\\b\\n\\x01\\x14\\x198*\\t\\v6N\\\"q\\x14\\x14\\x14߃\\xba\\x83\\x83\\xba\\xfd^\\x84^^\\x84\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01M\\x01\\xb8\\x00\\n\\x00 \\x00\\x00%\\x14\\x0e\\x01#\\\"&462\\x16'\\\"\\x06\\x15\\x14\\x06\\\"&54632654632\\x16\\x14\\x06\\x01L\\x16'\\x17\\\"22E1T\\\".0G12\\\"#)5##--\\x1c\\x17&\\x171F11\\xd1-#\\\"..\\\"#5)#\\\"21F1\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xff\\x02q\\x01\\x82\\x00)\\x00X\\x00h\\x00u\\x00\\x81\\x00\\x90\\x00\\x007#\\\"&=\\x0146;\\x01\\x15\\x14;\\x012>\\x01=\\x014#67>\\x0176\\x1e\\x02\\x17\\x1e\\x01\\a\\x0e\\x01#\\x0e\\x01'\\x06&7\\x1e\\x017>\\x0176/\\x01\\x16\\x06\\a6.\\x01'&\\a\\x16\\x17.\\x01\\x06\\a\\x0e\\x01\\x17\\x1e\\b\\x17&67\\x06\\x1e\\x027&'#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06'\\\"=\\x014;\\x012\\x16\\x1d\\x01\\x14#754;\\x012\\x1d\\x01\\x14+\\x01\\\"\\a\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x951\\x05\\a\\a\\x04/\\x13\\x14\\x06\\t\\x05\\x0f\\x12\\x1b\\v.*\\x1475/\\v62\\f\\nG2$q%;Q\\xdd\\x069\\x1d\\x1d,\\a\\b\\x12\\n\\x01\\x19\\x18\\x1f\\b7$>4R\\x14\\x0e60\\x12\\x1b \\x02\\x01\\x03\\x06\\x05\\n\\x05\\v\\x05\\v\\x01\\x05\\f\\x16\\r\\b&>(D\\xeb(\\x06\\n\\n\\x06(\\a\\t\\t}\\n\\n\\x1c\\x04\\x06\\n\\x82\\t\\x16\\t\\t\\x16\\tp\\a\\x04\\x1a\\x04\\a\\a\\x04\\x19\\f\\x90\\a\\x05(\\x05\\a\\a\\x10\\x05\\t\\x05\\x15\\x13\\x0f\\t,5\\r\\b\\x04\\x0f+\\x1f\\x11Y1+9%\\x02\\\"\\x03>,%\\x1c\\x06\\x06)\\x1d&\\\"\\x14\\x14.\\v#@/\\x04\\t4\\bC\\x17\\x1a\\x02\\x06\\x0e3\\x1d\\b\\x0e\\f\\n\\n\\x06\\b\\x04\\a\\x01\\x169\\x0e\\x163$\\x0f\\r\\x1e\\xa1\\n\\x06(\\x06\\n\\n\\x06(\\x06\\n(\\n\\x1c\\n\\x06\\x04\\x1c\\n\\x19\\x16\\t\\t\\x16\\tT\\x18\\x05\\a\\a\\x05\\x18\\x05\\a\\x00\\x00\\x00\\x00\\x06\\xff\\xfb\\x00\\u007f\\x02\\x81\\x01\\r\\x00\\x1c\\x002\\x00S\\x00^\\x00w\\x00\\x9b\\x00\\x007\\x16\\x0e\\x02+\\x0176;\\x0126'&+\\x01\\a\\x06+\\x0176;\\x012\\x1e\\x02\\a\\\"\\x06\\x16;\\x012\\x1e\\x01\\x15\\a#\\\"&7>\\x01;\\x01\\a\\x06#72\\x16\\x0f\\x01\\x06+\\x01\\\".\\x01>\\x01;\\x01\\a\\x06+\\x01\\\"\\x14;\\x012?\\x016+\\x01\\\"&?\\x01%2\\x16\\x15\\a\\x0e\\x01#763\\a2\\x1e\\x01\\x0f\\x01\\x06+\\x01\\\"&576&+\\x01\\a\\x06+\\x01\\\"&?\\x01\\x173\\a\\x06+\\x01\\\"&?\\x01>\\x02;\\x012\\x16\\x0f\\x01\\x06+\\x0176;\\x012?\\x016+\\x01\\\"\\x0f\\x01\\x06\\xd2\\x03\\x05\\x0e\\x16\\r \\x06\\x03\\v\\v\\t\\v\\x02\\x03\\x0f\\x14\\x1a\\x03\\v\\x19#\\x03\\v%\\t\\x11\\r\\n\\x9a\\f\\n\\n\\f\\v\\x02\\x04\\x01\\b\\f\\x19 \\a\\x05\\x1c\\x12(\\x06\\x03\\f\\xe5\\x0f\\x11\\x03\\x0e\\x05\\x139\\f\\x10\\x03\\x04\\x10\\f0\\x04\\x03\\v\\x15\\x04\\x04#\\x04\\x01\\t\\x01\\x03:\\a\\t\\x02\\x03\\x01\\x9a\\x03\\x04\\x1b\\x04\\x19\\x10$\\x02\\b\\xd9\\x11\\x1a\\f\\x05\\t\\x02\\b\\x13\\x03\\x04\\v\\x03\\f\\t\\x14\\x11\\x02\\b\\x13\\x04\\x04\\x01\\x1a\\x93I\\x05\\x04\\vB\\x0f\\x11\\x04\\n\\x03\\v\\x10\\t/\\x0f\\x11\\x04\\x03\\x04\\x135\\x03\\x03\\v\\x16\\x03\\x01\\x01\\x01\\x05!\\a\\x01\\b\\x02\\xe4\\v\\x17\\x13\\r\\x18\\v\\x0e\\t\\x0e_\\v\\x82\\v\\x06\\v\\x0f%\\x13\\x13\\x02\\x04\\x02\\x1a(\\x19\\x14\\x15\\x17\\v#\\x17\\x0e4\\x12\\x0e\\x12\\x13\\r\\r\\v\\b\\x06\\x1f\\x06\\v\\a\\x0e\\\"\\x05\\x03c\\x0f\\x13\\x85\\b#\\x12\\x1f\\x10!\\b\\x05\\x03(\\t\\x0f@\\b\\x05\\x03bJ\\x15\\v\\x17\\x0e(\\b\\x0e\\a\\x16\\x0e\\f\\x12\\r\\v\\x03\\x02\\x05\\x06\\x1e\\x06\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x04\\x00\\x18\\x00\\x00\\x11!\\x03\\a'\\x01#\\x173\\x0f\\x01\\x171\\x17\\x0f\\x01/\\x01#\\x1f\\x01?\\x01#7\\x01\\x80#\\x9d\\x9d\\x01\\x16\\xf2\\x06{\\ap\\x04\\xa6\\x0465\\x031\\x06cb\\ros\\x01\\xa0\\xfet44\\x01</\\x03/.\\x01=\\x0f\\r&J\\x1d\\x1d\\x922\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xaf\\x01\\xb8\\x00\\x1a\\x00\\x00%\\x16\\x17\\x0e\\x01#\\\"&4632\\x16\\x17\\x06\\a.\\x01#\\\"\\x06\\x14\\x1632>\\x01\\x01X\\x16A#_5g\\x91\\x91g5_#A\\x16\\r6\\x1d*>>*\\x13&\\x1e\\x8eR#&+\\x91Α+&#R\\x17\\x1f>T>\\x0e\\x19\\x00\\x00\\x00\\x06\\x00\\x16\\xff\\xbb\\x02*\\x01\\xc3\\x00.\\x00y\\x00\\xab\\x01\\f\\x01\\x96\\x01\\x9c\\x00\\x00\\x13&7\\x16\\x1767\\x06\\x17676\\x17\\x16\\x17\\x16\\a\\x06\\a.\\x01'&'&76'&'&\\x06\\a\\x06\\x17\\x14\\x15\\x06\\x170\\x1d\\x01&'\\x06\\x17&\\x050\\x17&\\a\\x06\\a\\x06\\a&'&\\a\\x06\\x0f\\x01\\x141.\\x01'241676727\\\"#\\x06\\a\\x06\\a0\\a0'67\\x161\\x06\\x15\\x06\\a\\x06327>\\x047213\\\"\\a\\x06\\a\\x06\\x16767676\\x17\\x16\\a\\x16\\a\\x06\\a\\x06'&'4.\\x015\\x06\\x1701&'&'&7\\x06\\a67\\x16\\a\\x06\\x1767\\x06\\a6\\x17\\x06\\a\\x06\\x17\\x163276761\\x167\\x16\\x17\\x16\\x06\\a\\x06'\\\"#\\x167\\x14\\x06\\a\\x06\\a\\x06&'0'\\x0e\\x01\\x17\\\"'\\\"#.\\x0176&'.\\x03'&'&'4'.\\x02'&7\\x16\\x17:\\x01\\x163\\x16\\x17\\x16\\x17\\x16\\x1702\\x17\\x16\\x17\\x1e\\x02\\x17\\x163\\x166'45\\x16\\x15\\x1e\\x01\\a\\\"\\a\\x163\\x167>\\x01'&'6%&'6\\x17&7\\x16\\x17\\x1e\\x01\\x17\\x16\\x174&5&'&5&76767\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17&'&'&'&767\\x161\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x16\\a\\x14\\x17\\x16\\x1567\\x16\\x0e\\x02\\a6'&'6'&\\x06\\a2\\x17\\x06\\x15\\x06\\x167263\\x06\\x15\\x14\\x167\\x0e\\x01'67\\x06\\a'676&'&\\a67&'67.\\x01\\x06\\a\\x16\\x17\\x06\\a4>\\x0256'&'&\\a\\\"#>\\x0276\\x17\\x1e\\x027&R\\x01\\x0e\\x01\\x03\\t\\\"\\x04\\x01\\x15\\x17\\x15\\x158\\x0e\\a\\x0f\\t\\f\\x01\\x04\\x01\\x1c\\t\\x02\\x02\\f\\x02\\x02\\n\\v\\x1f\\v\\x10\\x05\\x06\\x03 \\v\\r\\x06\\x14\\x01\\xd4\\x02\\x12\\x1b\\x0f\\v\\x02\\x06\\x10\\x02%\\x19\\x1b\\x14\\x01\\x02\\x1a\\t\\x01\\\")\\x1a\\x1a\\x03\\x02\\f\\x01\\x1c\\x1f\\x16\\x0e\\x01\\x01\\x10)\\x01\\x03\\x04\\x01\\x02\\x04\\x04\\x06\\x03\\r\\a\\n\\n\\x06\\x01\\x03\\x01\\x01\\r\\x02\\x02\\x03\\x03\\x05\\x03\\x10\\r\\x14\\x14\\x17\\xda\\x02\\x01,H+#\\x1e\\x12\\x02\\x03\\x01\\x02\\t\\x01\\x11\\a\\f\\x14\\v\\r\\x0f)\\x04\\x01\\x06\\x01\\x1b%\\n\\x01\\x17\\x17 \\a\\b\\x11\\x11 \\x10\\x12\\x1a\\x12\\x02\\x06\\xd1 \\v\\a\\t\\x0f\\x18!\\x01\\x01\\x18\\x1b\\x05\\x01\\x11\\x1a\\x1e0\\a\\x01\\t\\x02\\v\\x01\\x01\\x01\\x01\\x10\\x12\\x01\\x02\\x04\\v\\x06\\x0e\\n\\x0f\\x05\\x0e\\x03\\x01\\x01\\b\\x02\\x04\\x06\\x01\\x10\\b\\x04\\x13\\x01\\x06\\x04\\x02\\f\\x02\\x02\\x01\\x02\\b\\v\\x03\\v\\t\\t\\x13\\x18\\a\\t\\n\\r\\x0f\\x03\\a\\n\\x06\\a\\x01\\a\\x01\\x01\\x17\\x10\\f\\x03\\t\\x06\\r\\f\\xfe\\x8b\\x06\\x10\\x17\\x11\\n\\x05\\a\\x11\\x06\\\"\\x06\\x01\\t\\x02\\a\\x10\\x03\\x05\\x04\\x01\\x03\\x01\\x03\\x03\\x11\\b\\x1a\\x13\\x06\\x03\\x01\\x06\\x12\\f\\x11\\x04\\x01\\x02\\x06\\x01\\x01\\x01\\x03\\x12\\x17\\x04\\x02\\x12\\a\\b\\x02\\x01\\n\\t\\a\\x02\\x04\\a\\f\\x06\\x02\\x13\\x02\\x15\\v\\n\\x14 \\x06\\x10\\b\\x06\\x02\\x06\\x05\\x01\\x02\\x01\\x03\\v\\x04\\x01 \\f\\f\\x04\\n\\t\\x01\\a\\x04\\x06\\x0f\\x10\\x0f\\v\\t\\x17\\f\\f\\x13\\x1b\\x05\\x15\\\"\\n\\x04\\x13 \\x1e\\x01\\x01\\x01\\x01\\x01\\x02\\x11\\t\\x0f\\x02\\x01\\a\\x13\\x15\\x06\\b|\\x01\\a\\n\\x06\\b\\x01]\\x1e\\x12\\r\\b)\\x18\\v\\x06\\x12\\x04\\x04\\x05\\r;\\x1e%\\x13\\x10\\x01\\x04\\x01\\x1b\\n\\x02\\x02\\x15\\x17\\x10\\n\\f\\x01\\v\\x12\\x1a\\x03\\x01\\x16\\x14\\x01\\x01\\x10$\\x1c\\x1a\\x14X\\x02\\x04\\x05\\x04\\x05\\x01\\x04\\x06\\x01\\b\\x1c\\x1e-\\x02\\x01\\x01\\x16\\x03\\x01.\\x19\\x0f\\x03\\x01\\x03\\x11\\r\\x11\\x02\\x01-\\x1d\\x01\\x04\\x01\\b\\x02\\x05\\x04\\x03\\v\\x05\\x06\\x04\\x01\\x01\\t\\x03\\x03\\x05\\x01\\x01\\x01\\x06\\x01\\x01\\t\\t\\xc1\\x01\\x03V\\r\\a\\x10\\r\\x17\\x01\\x02\\x04\\x01\\n\\f\\t\\x01\\x15\\x1f15\\x06\\v+*\\x03\\x05\\x1f\\r\\x1c\\x10\\x10\\x16\\x16\\b!\\x1f$\\x1b\\x1b\\v\\x12\\x1e\\x03\\x05\\x10\\v\\x1c\\x11%\\f\\x14\\x02\\x11\\a\\x01\\x05\\x01\\x0f\\x05\\x05\\x1e \\a\\a\\x1f\\x0f\\x01\\a\\x1b\\x12\\x10\\x1e\\n\\x04\\f\\b\\r\\x04\\v\\x0e\\x04\\n\\t\\x06\\x01\\x04\\x04\\x02\\r\\x11\\x12\\x03\\x01\\x02\\f\\t\\x01\\b\\x01\\x01\\x01\\a\\b\\x10\\x13\\x06\\b\\x01\\x14\\r\\x01\\x01\\x05\\x01\\n!\\r\\n\\x01\\x02\\v\\b\\x1b\\v\\x06\\x06\\x02\\xa7\\v\\n\\x01\\x05\\x12\\x15\\x10\\v\\x04\\x14\\x06\\x01\\n\\x01\\x04\\x01\\x0f\\n\\x02\\x03\\x11\\x14\\x05\\v\\x04\\x03\\x1c\\x12\\b\\x19\\x12\\b\\x04\\x01\\x10\\x12\\v\\x10\\x04\\a\\x10\\x0e\\x01\\x02\\v\\x0f\\x16\\x15\\x04\\x02\\x11\\x0e\\x0f\\x0f\\x01\\x01\\x04\\n\\x03\\v\\a\\x12\\x11\\r\\x03\\x18\\x03\\x01\\x02\\x14\\x02\\x02\\x04\\x03\\x03\\x12\\x01\\x05\\b\\x04\\x02\\x10\\x02\\a\\x02\\x02\\t\\x12\\x01\\b\\n\\x01\\x02\\x01\\x05\\b\\x10\\x17\\x01\\x01\\x06\\x16\\f\\x04\\x03\\f\\x02\\x01\\x01\\f\\v\\x01\\x03\\t\\x1b\\x02\\x04\\x03\\x04\\x02\\a\\x06\\x0f\\x02\\x01\\x03\\a\\v\\v\\x05\\x06\\x12\\b\\v\\x06\\x01\\x11\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x10\\x00\\x1c\\x00.\\x00:\\x00J\\x00Z\\x00\\x00\\x013\\x15#5\\x0e\\x01'.\\x0154676\\x16\\x17\\a\\x14\\x162654&#\\\"\\x0e\\x01'3\\x15#5\\x0e\\x01'.\\x0254676\\x16\\x17\\a\\x14\\x162654.\\x01#\\\"\\x06%!\\\"\\x06\\x15\\x11\\x14\\x163!265\\x114&'2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01~44\\x0e-\\x0f\\x14\\x18\\x17\\x14\\x0e.\\x0f@\\x12\\x1d\\x13\\x13\\x0e\\n\\x0f\\b\\x8244\\r.\\x0e\\r\\x14\\f\\x17\\x15\\x0e-\\x0f@\\x13\\x1c\\x13\\b\\x10\\t\\x0e\\x13\\x01D\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\x13\\r\\x1a&&\\x1a\\xfe\\x80\\x1a&&\\x1a\\x018\\xf0\\x15\\x11\\x06\\b\\t&\\x19\\x17'\\t\\b\\x05\\x10:\\x0e\\x13\\x14\\r\\r\\x14\\n\\x0f\\x9a\\xf0\\x15\\x11\\x06\\b\\x06\\x15\\x1d\\x10\\x17'\\t\\b\\x05\\x10:\\x0e\\x13\\x14\\r\\b\\x0f\\n\\x14\\xbd\\x13\\r\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\r\\x13 &\\x1a\\xff\\x00\\x1a&&\\x1a\\x01\\x00\\x1a&\\x00\\x04\\xff\\xfe\\xff\\xbf\\x01\\xe0\\x01\\xc1\\x00\\x18\\x00\\x1d\\x00G\\x00L\\x00\\x00\\x17767>\\x05454'.\\x02'3\\x14\\a\\x0e\\x01\\a\\x067#73\\x06'\\x15#\\a#\\\".\\x035&\\x06\\x17\\x16\\x17#\\\".\\x027547;\\x012\\x1e\\x02\\x15\\x14254'32\\x1e\\x02\\a\\x176&\\x06\\xce\\x1f\\x17\\x0e\\a\\r\\b\\x06\\x02\\x02\\x0e\\x03\\x03\\x06\\x03O\\n\\t4\\\"\\v\\xa0w\\x11\\xb0\\x1bZJ!\\x06\\x0f\\x16\\f\\a\\x02\\x01\\x14\\x01\\x03\\x17[\\f!&\\x19\\x01\\x0fR\\x01\\x03\\r\\x14\\x0e\\x14\\x10T&6\\x19\\n\\x85@\\a\\x18$@&\\x01\\x06\\x04\\v\\v\\r\\n\\t\\x05\\x01\\x04\\x10\\x03\\x04\\a\\x033\\x19\\x15+\\x05\\x01\\xa8\\x1f\\x1f\\xe0\\xa97\\f\\x0f\\x14\\t\\x03\\n\\x02\\n#\\x16\\f\\x18/\\x1f\\xd5\\x10\\x01\\x01\\a\\x14\\x10\\n\\n\\x1b\\x11\\x19)$J\\x1e\\x16\\x1f\\x03\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x02\\x01\\x01\\xc1\\x00\\x03\\x00\\a\\x00\\\"\\x00'\\x00\\x00\\x1753\\x15'3\\x15#%\\x16\\x0e\\x02#512>\\x01'.\\x01'&\\x0e\\x01\\x15#4>\\x02\\x17\\x1e\\x01\\x031#53WJ\\x88>>\\x01\\xd3\\x15\\x19Bj<3P\\x1c\\x11\\v-\\x1e7]<`6[v@8S\\xda__\\\"JJ\\x87=\\xe7@v[6`<]7\\x1e-\\v\\x11\\x1cQ2<jB\\x19\\x15\\x12S\\xfe\\xe1_\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\r\\x00\\x15\\x00%\\x00]\\x00\\x00$\\x14\\x06#\\\".\\x0154>\\x0232\\\"2\\x16\\x14\\x06\\\"&4%\\x11&'\\x17!\\\"&5\\x11463!2\\x16\\x034&/\\x01.\\x03+\\x01\\a\\x1e\\x01\\x1f\\x01.\\x01\\x0f\\x0167'\\\"\\a\\x0e\\x02\\x15\\x1e\\x02367.\\x01/\\x01\\x1e\\x021\\x1e\\x01767\\x06\\a\\x172>\\x027\\x01)\\x0f\\v\\a\\f\\a\\x04\\a\\n\\x05\\vs\\x16\\x0f\\x0f\\x16\\x0f\\x01(:=\\x0e\\xfe\\xdd\\x15\\x1f\\x1f\\x15\\x01X\\x15\\x1fI\\x12\\n\\t\\n\\x17\\x11\\x0e\\x04\\x04\\x03\\x13 \\x06\\x06,h+\\x0f\\x15.\\x02#%\\x04\\f\\x15\\x02\\v(\\x19\\n\\a\\x0e\\x17\\x04\\x04\\x02\\x05\\x04\\\"S+\\x0f\\x0e\\r!\\x11\\x10\\x1b\\x11\\r\\x02\\xd9\\x18\\x11\\b\\r\\b\\x06\\n\\b\\x04\\x10\\x18\\x11\\x11\\x18\\xb2\\xfe5390\\x1f\\x16\\x01Z\\x16\\x1f\\x1f\\xfe\\xf8$K\\x13\\x13\\b\\v\\x05\\x03\\x04\\x06\\x11\\x05\\x05\\x19\\x02\\x13\\b\\x14\\x0e\\x03\\x1b\\b\\x1aO$\\x05\\f\\x16\\v\\n\\x04\\x0f\\x06\\x05\\x01\\x03\\x02\\x13\\a\\x11\\x05\\n\\x15\\n\\x14\\t\\v\\v\\x04\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x17\\x00\\x00\\x132\\x16\\x14\\x06+\\x014546\\x13264&\\\"\\x06\\x15\\x14\\x17\\a7\\x16\\xe2\\\\\\x82\\x82\\\\\\xe2\\x86Z5KKjK\\x0f\\x17R\\x19\\x01\\xa0\\x84\\xb7\\x85\\xe0\\x04[\\x81\\xfe\\xa0KjKK5!\\x1cK\\x14\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xbf\\x01\\x90\\x01\\xc0\\x00\\x02\\x00\\x14\\x00\\x00\\x01#5\\x173\\x15\\x14+\\x01\\x1132\\x17\\x15&+\\x01\\x11325\\x01\\x8e\\x8e0`ӽ\\xbd\\x12\\x11\\x0f\\x12__q\\x01 \\x8c\\xac~\\xc2\\x02\\x00\\x03T\\x02\\xfe\\xafd\\x00\\x00\\x00\\n\\xff\\xfb\\xff\\xdf\\x02\\x80\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00-\\x001\\x005\\x009\\x00=\\x00\\x00%#535\\x15#5\\x17\\x15#5'\\x15#53\\x15#5\\x05\\x17\\x06\\x15\\x06'\\x0e\\x01#\\\"'.\\x017!27&6?\\x01\\x17\\x16\\x176\\x16%\\x15#53\\x15#53\\x15#5'\\x15#5\\x01^BBB\\x90BZB\\x90B\\x01W\\r\\b\\x19C)\\xa9vn8\\x1b\\x17\\x06\\x01\\xb3\\x1c\\x15\\x0f\\x04\\x0e\\t\\x0e%\\x05\\x13+\\xfe\\fB\\x90B\\x90B\\fB\\xd4;\\x91==\\x91;;H<<<<d\\t\\x0f\\x02.\\x01ciB!Z'\\v\\x18:\\x16\\x0e\\n\\x1b$\\x03\\x04\\x14;;;;;;H<<\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xe0\\x01\\xa1\\x00/\\x002\\x00:\\x00I\\x00\\x00%\\a5!6767>\\x02'.\\x01\\a\\x0e\\x01\\a\\x1e\\x03\\x15\\x14\\x06#\\\"&76767>\\x01\\x1e\\x03\\x17\\x1e\\x01\\x06\\a\\x06\\a35\\x17\\x157$4&\\\"\\x06\\x14\\x162\\a3676&/\\x01&'\\x16\\x17\\x16\\a\\x06\\x01\\xe0\\x90\\xfe\\xb0YH\\x03\\x06\\x15\\x17\\x14\\x03\\x040\\x1f\\a\\x13\\x01\\v\\x12\\f\\a!\\x18\\x1b\\\"\\x04\\x04\\x0e!H\\x1b)(\\x18\\x17\\b\\x03\\x0f\\x12\\x04\\x11\\\"M[\\\"/\\xfe\\xe5\\r\\x12\\x0e\\x0e\\x12'sZ&\\x10\\x02\\n\\t#0\\x0f\\n\\x14162R@]R\\x03\\a\\x18\\x1c/\\x12\\x17\\x17\\f\\x03\\x10\\x06\\x01\\v\\x0f\\x13\\v\\x17\\\"*\\x19\\x19\\x174\\x0f\\x04\\x02\\f\\t\\x10\\a\\x03\\x10.>\\x1d>XA76\\x1b\\xe3\\x13\\r\\r\\x13\\r\\xc4bD!3\\x0f\\x0f$\\x02\\f\\x184=B\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x06\\x00\\r\\x00\\x16\\x00#\\x00)\\x001\\x00A\\x00I\\x00\\x007>\\x017\\x16\\x17\\x067\\x06\\a&'6\\x16\\a>\\x027\\x16\\x17\\x06&7\\x0e\\x02\\a&5045\\x167\\x16\\x176\\x17\\x06\\a&'67\\x16\\x17&\\a&7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x024&\\\"\\x06\\x14\\x162Z\\a(\\x1d\\x1a\\x19C\\xa5\\x162\\x17\\x1c!@\\x95\\b\\x1c.\\x1a\\x15\\b KE\\x18.#\\f#DI\\a'-(\\t2\\a'4\\x18\\x1e\\x01/0\\x06\\xbc\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c@^\\x84^^\\x84\\xdc\\x1f3\\x0e$,\\x11K\\x1f\\x12+%\\a\\x10\\xe8\\x0f \\x1e\\t71\\x0e\\t\\x83\\a\\x1d$\\x14(4\\x03\\x01\\x02\\x15\\x0e\\x19\\a\\r:\\\".d\\x16 %0\\v\\x06\\x0e\\x9c\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\xfa\\x84^^\\x84^\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xa0\\x01\\xa0\\x00\\x16\\x00\\x00\\x1132\\x17\\x16\\x15\\x14\\x0e\\x02+\\x01532654&+\\x01\\x15#\\xabrE> <_:\\xab\\xabV_dQk@\\x01\\xa0F?[*P@&@a?@`7\\x00\\x00\\b\\xff\\xfb\\xff\\xc7\\x01\\xe1\\x01\\xb9\\x00\\r\\x00\\x19\\x00$\\x00,\\x00\\xb5\\x00\\xc6\\x00\\xd9\\x00\\xe8\\x00\\x00\\x01>\\x01\\x172\\x1e\\x02\\a&\\x0e\\x02&#&676\\x16\\x17\\x16\\x06.\\x02\\x162\\x16\\x14\\x06#\\\".\\x0154&2\\x16\\x14\\x06\\\"&4\\x05\\x06'\\x06\\a\\x14323\\x167.\\x01670\\x1e\\x01\\x17>\\x02\\x1e\\x01\\x06\\a636\\x17\\x16\\a\\\"\\a\\x06\\a\\x17\\x16\\x06'\\x14\\x06&5\\a\\x14\\\"5\\x06&?\\x01\\\"\\x0e\\x011\\\"&4632\\x1e\\x013&'\\x06'&676767.\\x03'\\x06547>\\x023>\\x03367.\\x01>\\x01\\x1e\\x01\\x17>\\x02\\x1e\\x01\\x06\\a\\x16\\x17\\x1e\\x01\\x172\\x1e\\x01\\x15\\x16\\x15\\x06'\\x14\\x06\\a\\x16\\x17\\x1e\\a\\x14%6.\\x02\\a\\x06\\a\\x06\\x16\\x17\\x1667>\\x02\\x174.\\x01'&\\\"\\a\\\"\\x0e\\x02\\a2\\x1632>\\x017&'&\\x0e\\x01\\x15\\x14\\x16\\x17\\x1e\\x017>\\x01\\x019\\x01\\x18\\f\\x01\\x06\\n\\x04\\x02\\t\\x10\\x0e\\v\\x06\\xc9\\x05\\x14\\x06\\r\\x1a\\x01\\x01\\a\\f\\x10\\x11\\xbf\\r\\t\\t\\a\\x04\\a\\x05\\x96\\r\\n\\n\\r\\t\\x01N\\v5\\x14j\\x02\\b\\x0e!@\\b\\x06\\x03\\x02\\b\\n\\x03\\x04\\x0e\\v\\x03\\x01\\x03\\a\\b\\x02\\x05\\x04\\x03\\t\\x02--H\\x01\\x02\\x1b\\x03\\r\\x0f\\x01\\x1c\\x06\\x16\\x01\\x02\\x11\\x1d\\x10\\b\\b\\b\\b\\x01\\x0f \\x0fb\\x119\\v\\x06\\x18\\\"\\n\\x05\\x01\\x01\\x05\\x05\\x02\\x02\\x02\\x17\\x02\\x01\\x05\\x06\\x01\\x02\\x10\\x1f\\x15\\x15$-\\a\\x01\\x04\\x02\\v\\f\\x02\\x03\\t\\a\\x02\\x02\\x03\\x056*\\\"(\\x03\\x01\\a\\x05\\x02\\x01\\x16\\x05\\x04\\x04\\x01\\x05\\x0e\\t\\f\\a\\b\\x04\\x03\\xfe\\xef\\x01\\r\\x16\\x1d\\x0f'\\a\\b\\x12\\r\\aG\\t\\x04\\a\\x043\\x06\\x05\\x04\\x01\\b\\x02\\x03\\x05\\x03\\x04\\x02\\t\\x0e\\x01\\x01\\x05\\b\\x8d\\x06(\\x15#\\x16\\b\\x05\\tH\\x06\\f\\x15\\x01\\x90\\n\\x04\\x05\\x03\\x05\\x05\\x02\\x02\\x02\\x03\\x02\\x05\\x03\\f\\x01\\x05\\x04\\n\\b\\x05\\x02\\x04\\x02l\\t\\x0e\\t\\x04\\b\\x04\\a\\t\\t\\x0e\\t\\t\\x0e\\x9a\\x1b\\x1ch\\x14\\x01\\x02\\n\\x06\\x13\\f\\x01\\x01\\x06\\x05\\x06\\a\\x02\\x02\\v\\x10\\a\\x02\\x02\\b\\x06\\x01\\v\\n\\x02\\f\\x0e\\x06\\x0e\\t\\b\\a\\v\\x05\\x0e\\x0e\\n\\a\\f\\f\\x02\\x01\\n\\f\\n\\x01\\x02\\x19]\\x1d\\x1c\\x0f\\x1a\\x16\\a\\x04\\n\\t\\a\\x10\\v\\x14\\a\\x04\\x1b\\f\\x03\\x01\\x01\\x01\\v\\x0e\\a\\x02(\\t\\b\\x14\\v\\x02\\x04\\f\\b\\x04\\x05\\x02\\x01\\b\\r\\x04\\x05.\\x01\\x0e\\x13\\x01\\x01\\x01\\x03\\f\\x1a\\x03\\x02%\\t\\x11\\x13\\x04\\t\\x06\\t\\x06\\a\\a\\b\\a\\x9f\\x10\\x13\\x05\\x02\\x02\\x01\\r\\x0fO\\a\\x04\\x01\\n\\x05\\x1a\\x1c1\\x02\\x14\\t\\x01\\x01\\x01\\t\\t\\x0e\\x05\\t\\x05\\bU\\r\\x01\\x01\\x01\\x13\\x15\\x0f.\\a\\n\\x02\\x05\\x06O\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xf5\\x02\\x80\\x01\\x8b\\x00\\x06\\x00\\r\\x00\\x0e\\x00\\x1e\\x00\\x00\\x13\\x06\\x15\\x14\\x17#\\x11\\x052\\x16\\x17#>\\x01%13\\x11#67'\\x06\\a.\\x015!456WANd\\x01E#-\\x01\\xaa\\x033\\x01\\nTQ \\x1a`AWGD\\x01u\\x03\\x01\\x8aOq\\x81S\\x01\\x94\\t.%$/\\t\\xfek\\\"/0i\\x01\\x01jY\\x10\\b_\\x00\\x01\\x00\\x16\\xff\\xc0\\x01*\\x01\\xc0\\x00\\x17\\x00\\x00%#\\x15#5#5354>\\x0132\\x16\\x1f\\x01\\x15#\\\"\\x06\\x1d\\x013\\x01\\x17KdQQ\\x1e7$\\x10$\\n\\n(\\x1c\\x19Y\\xa0\\xe0\\xe0]F(8\\x1d\\x03\\x02\\x01O\\x1d\\x15<\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00'\\x00B\\x00\\x00\\x012\\x16\\x15\\x14\\x0e\\x01'&*\\x02\\x0e\\x05\\a\\x06#\\\"&5<\\x01&<\\x01.\\x03'&54>\\x02\\x176&\\x0f\\x01\\x06\\\"/\\x01&#\\\"\\x0f\\x01\\x06\\x1e\\x01?\\x0162\\x1f\\x01\\x16327\\x01\\x01i\\x8e`\\x93L\\x02\\x02\\x02\\x04\\x03\\x05\\x05\\n\\b\\x0f\\a\\x04\\x04\\b\\f\\x01\\x01\\x01\\x02\\x01\\x02N'B\\\\\\xc9\\x05\\x0e\\bO\\x04\\n\\x04:\\n\\f\\x15\\vI\\x03\\x05\\n\\x05O\\x04\\n\\x04:\\n\\f\\x15\\v\\x01\\xb8\\x89hT{-\\x15\\x01\\x01\\x02\\x03\\x04\\x04\\x06\\x03\\x02\\v\\b\\a\\x0e\\t\\t\\x05\\x05\\x03\\x03\\x02\\x01Fl3Z?%\\xb9\\b\\r\\x06;\\x03\\x03,\\a\\x11t\\x05\\v\\x03\\x03<\\x03\\x03,\\a\\x11\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x15\\x00\\x1b\\x00#\\x00\\x00\\x01#\\x15#\\x15#535353\\a3\\x15#\\x15#5353\\x17\\x15#\\x15#5\\x01!\\x15#\\x15#\\x15#\\x01\\x80@\\x80\\xc0\\xa6\\x80Z\\x1a\\x1a\\x80\\xc0\\xa6\\x80\\x1a@\\x1a\\xfe\\xda\\x01\\x80\\x80\\x80\\x80\\x01\\x00\\x80\\x80\\x1a\\x80\\x80@\\x9a\\x80\\x1a\\x80@\\x1a@Z\\x01\\xa6\\x80\\x80\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xdd\\x01\\x80\\x01\\x8d\\x00)\\x00<\\x00K\\x00\\x0073\\a#\\x15\\x14\\x15\\x06\\x1f\\x01\\x15#576=\\x014+\\x015354632\\x16\\x15\\a4&#\\\"\\x0e\\x01\\x1d\\x01\\x14\\x0e\\x01\\x14\\x01#576=\\x014/\\x0173\\x15\\x14\\x15\\x06\\x16\\x1f\\x01\\x03\\x17\\a'\\a'7'7373\\x173\\x17r]\\x0fM\\x01\\x06;\\xb3\\x1d\\t\\b\\x1e&55*/E\\n\\r\\f\\f\\x02\\x01\\x01\\x01\\x0f\\x8d\\x1c\\v\\n!\\tn\\x01\\x02\\x03\\x16\\x1e\\f\\n*+\\n\\f\\x1e\\x05&\\x15\\r\\x15&\\x05\\xe03\\x9e\\x02\\x03\\x04\\x01\\x06\\\"#\\x03\\x01\\n\\x9c\\x033\\x1d2.\\x1f*\\b\\x13\\r\\n\\x0e\\x0e \\x01\\x02\\x02\\x01\\xfe\\xfd\\\"\\x04\\x01\\t\\x94\\b\\x03\\t(\\xd0\\x02\\x04\\x02\\x01\\x01\\x04\\x019-\\n\\x16\\x16\\n-%\\n&&\\x0e\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\v\\x00\\x17\\x01Q\\x01\\xb5\\x00\\x0072\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x01437\\x16\\x15\\x14\\x15\\x14\\x15\\x14\\x150\\x141\\a0\\x141\\x14\\x15\\x1c\\x01\\x06\\x150\\x141\\x06\\x150\\x141\\a0\\x15\\x14\\a\\x1c\\x01\\x15\\\"\\x140\\x06\\x1c\\x01\\x06\\x1c\\x01\\x061\\x14\\a\\x14\\x15\\\"\\x141\\x06\\x15\\x06\\a\\x14\\a0\\x06\\x14\\x061\\x0f\\x01\\x15\\x06\\x15\\a\\\"\\a\\x1c\\x01\\x0e\\x01\\x15\\x061\\x14\\x06\\a1\\x06\\a\\x141\\x0e\\x01\\x150\\a\\x06\\x14\\x0610\\x06\\x15\\x061\\x14\\x06\\x15#\\x06\\a0*\\x02\\x06*\\x021\\x06#*\\x031\\\"#\\\"\\x06*\\x01#\\\"#0\\\"1*\\x01#\\\"#*\\x02#0*\\x01&*\\x051&#\\\"#*\\x011&#*\\x01#&'05&'4.\\x01#04'.\\x015.\\x0114\\\"5&'014&5&4&4&4&5'\\\"&<\\x01/\\x010&1&54'4&'45\\\"41&54&<\\x01&41&5<\\x01&<\\x01&504'41'041&5041<\\x01545&504145041<\\x01'45<\\x0154767676767676767632\\x17\\x16\\x170\\x161\\x16\\x17\\x16\\x17\\x16\\x0354+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54#5632\\x1632=\\x014#\\\"\\x06#\\\"&#\\\"\\a5654\\\"\\x15\\x14\\x17\\x15\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01\\x16\\x17\\x16\\x17\\x16\\x17546\\x16\\x1d\\x0167676\\xd0\\x04\\x04\\x16\\x04\\x04\\x8c\\x04\\x04\\x16\\x04\\x04\\x9a.\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x04\\x03\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x02\\x01;e\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x03\\x02\\x01\\x04\\x01\\x04\\x02\\x01\\x02\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\x01\\x02\\x01\\x01\\x02\\x01\\x02\\x01\\x01\\x01d<\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x04\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01.\\x03\\x04\\b\\b\\x04\\x04\\x06\\x03\\a\\a\\x03\\x02*3\\x18\\x1a\\x19\\x193+\\x04\\b\\x06\\x12\\x0f\\x03\\x06\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x1d\\n\\f\\t\\x05\\x10\\x05\\x16\\x04\\x02\\r\\x04\\x04\\x12\\x05\\b\\v\\b\\x1a\\b\\n\\x1d\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x0e\\x14\\x1f(\\x15\\x16,,\\x16\\x15(\\x1f\\x14\\xd3\\x044\\x03\\x034\\x04\\x044\\x03\\x034\\x04}AO\\x04\\x02\\x01\\x01\\x01\\x03\\x02\\x01\\x02\\x03\\x01\\x02\\x01\\x02\\x01\\x02\\x03\\x01\\x02\\x06\\x01\\x02\\x02\\x01\\x01\\x01\\x03\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\x02\\x01\\x02\\x03\\x02\\x01\\x02\\x01\\x02\\x03\\x01\\x01\\x02\\x01\\x03\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\b\\x04\\x01\\x01\\x02\\x01\\x01\\x03\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01V\\x11\\x01\\x01\\x01\\x01\\x01\\x01\\x11S\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x04\\b\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x01\\x03\\x02\\x02\\x01\\x02\\x01\\x01\\x03\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x03\\x01\\x01\\x06\\x02\\x03\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\x02\\x02\\x02\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x04\\x01OA\\x04\\x05\\n\\b\\x04\\x05\\x05\\x03\\x05\\x06\\x02\\x01\\x1e\\v\\x05\\x05\\n\\x1f\\x03\\x06\\x05\\x10\\x13\\x03\\xfe\\xf6H\\x04\\x04\\x1a\\x90\\x04\\x04\\x1a\\x1a\\x04\\x04\\x1a\\x1a\\x04\\x1e\\x03\\x03\\x061\\x03\\x03\\x03\\x02\\x04\\x03\\b\\r\\r\\b\\x03Z\\x04\\x1a\\x1a\\x04\\x04\\x1a\\x1a\\x04\\x04\\x90\\x1a\\x04\\x04H\\x17\\x13\\x1f\\x11\\t\\x05L\\x1c\\x17\\x17\\x1cL\\x05\\t\\x11\\x1f\\x13\\x00\\x03\\xff\\xf0\\xff\\xe3\\x01\\xcb\\x01\\xac\\x00\\t\\x00\\x0f\\x00(\\x00\\x00\\x01>\\x01\\x16\\x06\\a\\x06.\\x02'\\x06\\a&76\\x0567\\x16\\x15\\x14\\x06\\\"&54>\\x0132\\x17\\x06\\a&\\x06\\x17\\x1e\\x0176\\x010\\x0fm\\x1e5\\x0f\\t%#\\x0e\\xb90\\x1c1\\x15\\x14\\x01}\\x06\\x05\\x1b~\\xb3~:c;4/\\t\\n\\x14\\t\\x0e\\x11M\\x0f\\b\\x01`\\x0f5\\x1em\\x0f\\t\\x0e#%%\\x1e1U\\x15\\x14\\x99\\n\\t19Y\\u007f\\u007fY;c:\\x19\\x05\\x06\\x03\\x1c\\x18!4\\x0f\\b\\x00\\x03\\x00\\b\\xff\\xc4\\x02H\\x01\\xc0\\x00l\\x00w\\x00\\x83\\x00\\x00\\x01\\x16\\x15\\x14\\x06\\a5\\x06'\\x15.\\x015476\\x17\\x16\\a\\x06\\x15\\x14\\x16\\x175&'\\x15.\\x0254676\\x17\\x16\\a\\x0e\\x01\\x15\\x14\\x16\\x175.\\x02547.\\x03=\\x0146723\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x03\\a\\x16\\x15\\x14\\x06\\a\\x15>\\x0154&'&76\\x17\\x1e\\x02\\x15\\x14\\x06\\a5\\x06\\a\\x15>\\x0254'&76\\x06\\\"\\x06\\x15\\x14\\x1e\\x013264\\a2>\\x0254&\\\"\\x06\\x14\\x16\\x026\\x12\\xa1s\\f\\fs\\xa1\\x12\\x05\\v\\n\\x04\\x11\\x84b\\v\\f5T1E9\\v\\x05\\x05\\n4>N>\\a\\v\\a\\x12\\x03\\x0f\\x0f\\fd\\x1d\\x04\\x04\\x1dd\\b\\v\\f\\v\\x03\\x12\\x0e\\v>N>4\\n\\x05\\x05\\v&8 iQ\\f\\v@i=\\x11\\x04\\n\\v\\xb9\\x14\\x0e\\a\\n\\a\\n\\x0e\\xa4\\x05\\t\\x06\\x04\\x0e\\x14\\x0e\\x0e\\x01J15t\\xa7\\x04\\x92\\x01\\x01\\x92\\x04\\xa7t51\\v\\x05\\x04\\n-1d\\x95\\r|\\x02\\x04h\\rDc8Dr \\x06\\v\\n\\x05\\x1dg>Eo\\x19\\\\\\x03\\t\\x0e\\b\\x14\\n\\x1b \\b\\t\\b\\x0f\\x1e\\x85\\x02\\x02\\x85\\x1e\\x0f\\x06\\b\\a\\f\\x1d\\x16\\n\\x14\\f\\x12\\x04\\\\\\x19pE=g\\x1d\\x05\\n\\v\\x06\\x15@S-V\\x84\\x13h\\x04\\x02|\\bJrC0-\\n\\x04\\x05\\xa9\\r\\n\\a\\v\\x06\\x0e\\x14\\\"\\x04\\x06\\t\\x05\\n\\x0e\\x0e\\x14\\x0e\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x90\\x01\\xa0\\x00\\x19\\x00\\\"\\x00\\x00%2\\x1e\\x02\\x17\\x06#\\\"&54632\\x17\\a&\\\"\\x06\\x14\\x16327572\\x16\\x1d\\x01&+\\x015\\x01D\\x13\\x1c\\x0e\\x06\\x01Dg]\\x80\\x81\\\\[A?&nNN74&\\x01%3\\x184v\\x80\\x10\\x1a\\x17\\rR\\x84\\\\]\\x83B?'NpN$\\\"q50\\x1e*Y\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00 \\x00L\\x00\\x00\\x01\\x16\\x0e\\x01\\a\\x0e\\x01'.\\x017>\\x0132\\x1e\\x017\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a45#\\x15\\\"'.\\x01#\\\"\\x06\\a\\x06\\x15\\x1e\\x017670703\\x1c\\x01\\x15\\x14\\a\\x06\\a\\x06'&'4+\\x01\\x16\\x17\\x1e\\x0176\\x01,\\x03\\x06\\x12\\x0f\\x10*\\r\\x1a\\x17\\x02\\x03,\\x1d\\x17!\\x13\\x97!\\x17\\xfe\\xb0\\x17!!\\x17\\x01P\\x17!v\\x1d\\x01\\x01\\b(\\x1c&4\\n\\x06\\x01<4.\\x17\\x01\\x01\\a\\f!\\x1b\\x1a#\\x06\\x02\\x1b\\x01\\a\\x11O!C\\x01\\x01\\x14%!\\v\\v\\x02\\a\\r5 *-\\x14\\\"O\\xfe\\xb0\\x17!!\\x17\\x01P\\x17!!\\xf8\\\"\\xb7(\\x01\\x12\\x1c*$\\x15\\x18:<\\x02\\x02,\\x02\\x04\\x1a\\x04\\x19\\x13 \\a\\x06\\a\\n \\x01\\x11\\f\\x1d\\x13\\n\\x11\\x00\\x00\\x00\\x02\\x00\\x1c\\xff\\xbf\\x01c\\x01\\xc1\\x000\\x00?\\x00\\x0073232\\x15\\x16\\x17\\x167676564/\\x01\\x14\\x06\\x15\\x0e\\x01\\a\\x06.\\x01'47>\\x0132\\x1e\\x01\\x17\\x16753\\x13\\x06\\a\\x06.\\x01'&\\x13\\\"\\x06\\a\\x06\\x16\\x17\\x1667>\\x01'.\\x01+\\x02\\x1a\\r\\x03\\n5'*2\\x12\\v\\x01\\x01\\x01\\x02\\x117\\\"3L+\\x02\\t\\x10O;\\x1c2\\x1e\\b\\x01\\x01,\\x01\\x01f%IE\\x11\\v\\x90+D\\x04\\x03\\\"(\\x14A\\x18\\\"\\x1b\\a\\a<-\\x030\\x0f\\v\\t\\v1\\x1c'\\a*\\x03\\x01\\x01\\x03\\x01 #\\x02\\x02'Q;% 7@\\x17\\x1e\\x11\\x03\\x01=\\xfe\\xb4\\x89\\x19\\a\\x01\\\"\\x1d\\x13\\x01\\x89EA1Q\\x13\\v\\x03\\x11\\x17U.8@\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x00%\\x033\\x13\\x05!\\a!\\x13\\x17\\x03'\\x01S\\xa4\\xa2\\xa3\\xfe\\xd6\\x016Q\\xfe\\xca!S\\x9cQ\\x85\\x01\\x1b\\xfe\\xe5\\x17\\x8e\\x01\\x9d\\x8e\\xfe\\xf1\\x8e\\x00\\x00\\x04\\x00\\x19\\xff\\xc0\\x01\\xe8\\x01\\xc0\\x00\\x02\\x00\\t\\x00\\x10\\x00\\x13\\x00\\x00%'\\x05%\\t\\x01&5\\x114\\x05\\x1e\\x01\\x0f\\x01'7\\x017\\x17\\x01E\\xdc\\x01\\x18\\xfe\\xae\\x01\\x01\\xfe\\xff\\x16\\x01\\xbf\\x0e\\x01\\x0e<AA\\xfe\\xcc\\xdc<\\xd6ݡ\\xae\\xff\\x00\\xff\\x00\\v\\x18\\x01\\xba\\x18\\xd7\\n(\\n\\\"@@\\xfe\\xcd\\xdd<\\x00\\x02\\x00 \\xff\\xc8\\x01@\\x01\\xb8\\x00*\\x00Q\\x00\\x007\\x14\\x1e\\x06\\x15\\x16\\x17\\x1e\\x02\\x15\\x14\\a4654'.\\x0254>\\x0354'\\x1e\\x02\\x15\\x14\\x0e\\x027\\x16\\x15\\x14\\a\\x061\\\"&5>\\x0254'\\x0e\\x02#\\\".\\x045470>\\x0254/\\x01\\x1e\\x01p\\x02\\x02\\x06\\x02\\b\\x02\\v\\x02\\x03\\r\\x0e\\f\\x11\\x05O\\x15\\x18\\x15\\x1e,+\\x1e\\x01\\x04\\x12\\x12!(!\\xce\\x02C\\x03\\x04 \\x05\\x0e\\x17\\t\\x01\\x1c\\x1c\\x01\\x01\\x03\\x04\\x04\\x04\\x02\\x03\\x13\\x14\\x11\\x03\\x04\\x13D\\x93\\x05\\v\\a\\v\\x05\\r\\x02\\x0f\\x01\\x02\\x04\\x12\\x14\\x1e\\f\\x19\\x16\\x02\\x0f\\x05\\x1f8\\x12\\x19*\\x17 >105\\x19\\x05\\x05\\x02\\x17,\\x15\\x1b9)6\\x0f\\r\\fCF\\x02-\\b\\x06\\x154\\x12\\x11\\x10\\x0e,\\x1d\\x03\\x06\\b\\t\\v\\x05\\b\\b\\x1b *\\x0f\\n\\a\\a\\aP\\x00\\x12\\x00\\x02\\xff\\xc0\\x01~\\x01\\xc1\\x00&\\x00-\\x00O\\x00V\\x00d\\x00\\xf2\\x01\\x04\\x01\\x11\\x01#\\x010\\x01\\x9c\\x01\\xa8\\x01\\xae\\x01\\xba\\x01\\xc0\\x01\\xcd\\x01\\xd7\\x01\\xe5\\x00\\x00\\x1367&'6\\x17\\x1e\\x01?\\x01\\x14\\x06#\\x16\\x0e\\x02\\x0f\\x0164>\\x014'&'\\x06.\\x01'&'\\x06\\a4.\\x017\\x06\\x16\\x17\\x167&\\x17\\\"&5\\x1676\\x17\\x06\\a\\x16\\x17\\x14\\x06\\x0f\\x01&'\\x06\\a\\x0e\\x02&'\\x06\\a\\x06\\x16\\x1f\\x01.\\x027\\x06\\a\\x167>\\x01\\a2\\x16\\a\\x06\\a\\x06\\\"'&'&637\\x1e\\x02\\a\\x06\\a\\x06\\a\\x06#\\\"'&'.\\x01'&6?\\x01\\x16\\x17654&'&'.\\x0254746165>\\x01'&767674765&'.\\x02#'7632\\x17\\x16\\x1763&670\\x14\\x1e\\x01\\x1767\\x06\\x17>\\x013\\x17\\x0e\\x02\\x17\\x16\\x1767632\\x1e\\x01\\x15\\x17\\a\\\"\\x0e\\x01\\a\\x06\\x15\\x06\\x17\\x14\\x152\\x17\\x16\\x17\\x16\\x0e\\x01\\a\\x06\\x16\\x17\\x16\\x172\\x17\\x16\\x15\\x14\\x0e\\x01\\a\\x06#\\x0e\\x01\\x15\\x14\\x176\\x03\\x06\\a\\x16\\x17\\x16\\x1767632\\x1767&#\\\"\\x17\\\"\\a\\x06\\a\\x16\\x1767>\\x0176%272\\x17\\x16\\x176767&'&#\\\"\\a\\x16\\x17&'&#\\x16\\x17\\x1e\\x01\\x17\\x16\\x176\\a\\x16\\x17\\x16\\a\\x16\\x176767\\x06\\a6;\\x012\\x17&'\\x16\\x17\\x16\\x1767&76767>\\x0254/\\x010&5\\x16\\x17&'&7\\x14\\x15676'&'&#\\\"\\a\\x06\\x0f\\x01767&'&\\\"\\a\\x06\\a\\x16\\x1f\\x01'&'&#\\\"\\a\\x06\\a\\x06\\x17\\x16\\x1745\\x16\\a\\x0e\\x01\\x0f\\x0167\\x06\\x0f\\x01\\x06\\x15\\x14\\x16\\x17\\x16\\a\\x163&?\\x0167&'\\x06\\x16\\x17\\x16\\x17&'\\\"\\x17276'&+\\x01\\\"\\x06\\x17\\x16767\\x06#\\x067>\\x01'\\x06\\a\\x16\\x17\\x161\\x16\\a2'\\\"&/\\x01\\x16327\\x06\\x17\\x1e\\x01\\a\\x06\\a\\x06\\\"'&'&63=\\x01\\x06\\a\\x06.%\\a\\x12\\x05\\x06\\r\\t\\x01\\x03\\x04\\x04\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\t\\x18\\x11\\x05\\f\\x01\\x03\\x01\\x02\\x03\\x1d\\x03\\x03\\x06\\x12\\x14\\fn\\t\\r\\x13\\x11%.\\x06\\a\\x06\\x01\\x02\\x02\\x01\\x01\\x03\\x02\\v\\x03\\f\\x10\\x11\\a\\x02\\x01\\x01\\x01\\x01\\x02\\x02\\x05\\b? \\f\\x13\\x12\\a\\x03\\x89\\x06\\x05\\x01\\x04\\t\\x05\\r\\x05\\n\\x04\\x02\\x06\\a\\xda\\x03\\n\\f\\x04\\a(\\x14/\\x18((\\x17/\\x15\\x13\\x18\\x04\\x04\\v\\a\\a\\x03\\x16\\x03\\t\\x03\\x03\\x05\\r\\r\\x0f\\x10\\x02\\x04\\x03\\x01\\x02\\x11\\x05\\x03\\v\\b\\f\\x01\\x01\\x01\\x02\\x03\\x0f\\n\\x01\\f\\b\\x12\\x1c\\f\\f\\x1b\\x17\\x04\\x02\\x01\\x15\\b\\x01\\x03\\x03\\x04#\\x06\\b\\t\\x11\\x04\\x04\\x02\\x04\\x05\\x02\\x05\\x04\\x17\\x1b\\f\\f\\r\\x17\\n\\b\\f\\x01\\n\\x0e\\x04\\x02\\x01\\x02\\f\\b\\v\\x03\\x02\\x06\\x06\\x02\\x02\\x01\\x03\\x01\\x03\\x01\\x01\\x10\\x0f\\r\\r\\a\\x01\\x03\\t\\x04\\x15(\\x15\\x11\\x02\\x03\\x04\\x03\\x06\\x0e\\r\\x10\\x05\\x04\\x05\\x05\\f\\r\\t\\r\\v\\t\\t\\x04\\x06\\x04\\x05\\a\\x03\\x02\\x03\\x01\\xfe\\xe9\\x04\\x05\\x10\\f\\x0f\\x06\\x05\\x02\\x02\\x03\\x11\\x15\\b\\t\\r\\f\\x051\\x04\\t\\b\\f\\x02\\x01\\x03\\x02\\x03\\x05\\a\\x03\\x19\\x12\\x01\\x02\\x05\\x0f\\x18\\x04\\x02\\x11\\t\\x06\\x11\\x06\\x06t\\a\\x05\\x11\\x06\\v\\x0f\\x02\\x04\\x18\\x0f\\x05\\x02\\x01\\x12\\a\\x01\\n\\n\\v\\t\\x01\\x02\\x02\\x01\\f\\x04\\x03\\b\\x01\\x01\\f\\x03\\x01\\x06\\x05\\n\\x0e\\x13\\x1a&\\x06\\x04\\x16\\x1f\\x05\\x11 T \\x11\\x05 \\x15\\x04\\x06&\\x1a\\x13\\x0e\\t\\x06\\x06\\x01\\x03\\f\\x01\\x01\\b\\x03\\x02\\a\\x03\\x04\\x02\\x01\\x01\\x01\\x01\\b\\x0f\\x0f\\x06\\x15\\x12(\\a\\v\\x01\\x05\\x03=\\x0e\\x05\\x015\\r\\x12\\x06\\x06\\tf>\\x17\\x05\\x06\\x06\\x13v\\x13\\f\\x05\\x17\\x8f\\x12\\r\\n\\t\\x06F\\b\\x01\\x05\\x0e<\\x03\\x04\\x01\\v\\a)\\x8c\\x06\\r\\x04\\x04\\r\\x0e\\x0e\\r\\x0e1\\x06\\x06\\x02\\x04\\n\\x05\\r\\x05\\t\\x04\\x01\\x05\\x06\\x01\\x03\\t\\x03\\x02\\x02\\v+\\t\\x04\\x02\\x02\\b\\v\\x05\\t\\b\\a\\x02\\x02\\x01\\x02\\x06\\x06\\b\\x03\\x04\\x04\\t\\x02\\b\\x05\\r\\x15\\x06\\n\\x01\\x03\\n\\x06\\x06\\x18\\x05\\r\\f\\x12\\x1b\\v\\b\\n\\x13+\\v\\x02\\x03\\x02\\t\\x05\\t\\x03\\x02\\t\\a\\x15\\r\\x03\\a\\x05\\x03\\x06\\x05\\x03\\x06\\v\\x05\\x04\\x02\\a\\x114\\x12\\x12\\f\\r\\x05\\x18\\xe0\\x06\\x04\\n\\n\\x04\\x04\\t\\t\\x06\\x06e\\x03\\n%\\x15(\\x0f-\\x04\\x14\\x14\\x04-\\a\\x1b\\x15\\x15$\\a\\a\\x1a\\x12\\x1b#\\n\\x0e\\x02\\x02\\x03\\a\\b\\x12\\v\\x10\\v\\x01\\x01\\x03\\x02\\x06\\x1d\\x02\\x14\\x13\\f\\x05\\x04\\x01\\x02\\x04\\x05\\x03\\t\\x02\\x06\\t\\x03\\x02\\t\\x12\\x04\\b\\x1f\\x02\\x12\\x1d\\x01\\n\\a\\t\\x01\\x1c\\f\\x11\\x14\\b\\b\\x01\\x02\\t\\x14\\a\\x01\\x02\\x1f\\b\\x04\\t\\a\\x01\\n\\x02\\x03\\t\\x06\\x02\\t\\x03\\x05\\x04\\x02\\x04\\x06\\f\\b\\x14\\t\\x02\\x02\\x1d\\x06\\x02\\x03\\x01\\f\\x10\\n\\x13\\b\\a\\x04\\x03\\x0e\\n#\\x1b\\x12\\x011\\x06\\x1a\\x01\\x01\\x02\\x02\\f\\v\\t\\x01\\x03\\x02\\x05\\x15\\a\\a\\x0f\\x06\\x06\\x02\\x01\\x05\\x19\\x05\\x01\\r\\x01\\t\\v\\f\\x03\\x01\\x01\\x01\\x1a\\x06\\x03\\x05\\x02+\\x0f\\a\\a\\x02\\x01\\x06\\x18\\x05\\x01\\x02\\x06\\xa9\\n\\x18\\x193\\x06\\x01\\a\\x060\\x0e+.\\x01\\x01.+\\x11-\\x06\\a\\x01\\x063\\x19\\x18\\n\\x04\\x01\\x05\\x06\\r\\x06\\v\\a\\x01\\x01\\x01\\r\\x02\\x0f\\x1d\\x19\\x12\\x06\\b\\x01\\x01\\x0f\\v\\x06\\x02\\x03\\x06\\b\\x1e\\x04\\x06!\\x0e\\x06\\t\\x0f\\x0f\\t\\x06\\x0e!\\x06\\x04\\x1e\\b\\x06\\x03\\x02\\x06\\v\\x0f\\x01\\x01\\b\\x06\\x12\\x19\\r\\x16\\x05\\x04\\x02\\r\\x01\\x01\\x01\\a\\v\\t\\r\\b\\x04\\x92\\x1d\\x14\\f\\x01\\x05\\x05\\x03*\\x02+9\\x12\\b\\t\\x0f0@\\x10\\b\\a\\x0f\\x10@\\x18\\b\\x12\\x02\\x0f<\\x0e+\\x02*\\x03\\x05\\x05\\x01\\f\\x14\\xf6\\t\\x05\\x04\\b\\b\\x12\\xe6\\x01\\x05\\x05\\n\\b\\x05\\x05\\n\\t\\x04\\x06\\x00\\x04\\x00\\f\\xff\\xc0\\x00\\xf6\\x01\\xc3\\x00\\r\\x00\\xcf\\x00\\xe3\\x00\\xf0\\x00\\x007\\x0f\\x01\\x14\\x06#\\\".\\x015/\\x01\\x162\\x03\\x1667\\a\\x06\\a\\x06#\\\"527654&\\x06\\a\\x06\\a654#\\\"\\a\\x06\\a\\x14\\a0\\a\\x06#\\\"76746767476'&#\\\"\\a\\x06\\a\\x06\\a\\x0647>\\x0176'&#\\\"\\a\\x06\\a\\x06\\a\\x06\\a\\x06#\\\"7676'0#&\\a\\x06\\a\\x06\\x17\\x16327\\x06\\x167\\x14\\x161\\x167670\\a\\x0e\\x01\\x15\\x14\\x17\\x16767464676767676\\x17\\x14\\a\\x06\\x15\\x14\\x16767\\a\\x0e\\x02\\\".\\x01/\\x01\\x1632767\\x06\\a\\x14\\x17\\x1632767>\\x0254&\\x06\\x0f\\x01\\x06\\a\\x06#\\\"'&7>\\x0176\\x17\\x1632'.\\x01\\a\\x0e\\x01\\a7\\x14\\x06&54632\\x17?\\x016\\x17\\x16\\a\\x15\\x0f\\x01\\x16\\a4'\\a\\x14\\\"=\\x013\\x06\\x15\\x142\\xd2\\x0e\\x05%\\x1a\\x11\\x1d\\x11\\x06\\x0f\\x1fi\\xa6\\x17\\xb6\\x17\\x0f\\f\\x04\\a\\x01\\x03\\x01\\x05\\r\\x06\\f\\a\\x03\\x02\\x01\\x04\\x01\\x02\\x02\\x03\\x02\\x01\\x10\\a\\x02\\x01\\x02\\a\\n\\x03\\x02\\x02\\x01\\x01\\x02\\x02\\x01\\x05\\x02\\x19\\x01\\x04\\x03\\a\\x03\\x01\\x05\\x01\\x02\\x02\\x02\\x02\\x03\\x02\\x01\\x01\\x01\\x04\\x05\\x06\\x04\\x03\\x04\\x02\\x02\\b\\x02\\x03\\x01\\x05\\x03\\x04\\x03\\a\\x02\\x02\\a\\x0e\\b\\x03\\x0e\\t\\x01\\x02\\f\\a\\b\\x01\\x0f\\x01\\x02\\x02\\x04\\x02\\x02\\x01\\x02\\x02\\x03\\x06\\x04\\x05\\x04\\x04\\n\\x02\\x05\\x0e\\r\\x04\\a\\r\\v\\x01\\x16+-*\\x16\\x01\\b\\x03\\x05\\t\\f\\x03\\x04\\a\\x01\\x01\\x01\\x02\\x04\\x02\\x02\\x06\\x02\\x06\\x02\\x04\\x05\\x01\\x05\\x04\\t\\n\\x06\\x03\\x02\\x03\\x04\\x04\\x10\\t\\v\\x06\\x04\\x03\\x06\\x02\\x01\\x12\\n\\r\\x16\\x05\\xd9ttD0\\x0f\\v\\r=\\x03\\a\\b\\x039\\nDF\\x02\\x01\\x16\\x01\\x04\\x1c9\\x19P\\a\\t\\x04\\b\\x04P\\x19\\r\\x01\\n\\r\\x01\\f\\x88\\v\\x03\\x05\\x02\\x06\\x10\\a\\x04\\x05\\x02\\x06\\x03\\x02\\x03\\x03\\x04\\x01\\x03\\t\\x01\\x04\\x01\\x11\\x06\\x04\\x12\\x02\\x17\\a\\x05\\x04\\x01\\x01\\x04\\x02\\x01\\x05@\\x04\\x03\\x01\\x03\\b\\b\\x03\\v\\x02\\x05\\x02\\x02\\x05\\x03\\x02\\x05\\b\\t\\x04\\x02\\t\\x05\\x0f\\x06\\x02\\x02\\x06\\t\\a\\x13\\x05\\x05\\x0f\\x0e\\x03\\t\\x01\\x01\\t\\x05\\x03\\b\\x03!\\x02\\x02\\x02\\x01\\x02\\x01\\x02\\x03\\x01\\x01\\x01\\a\\x04\\b\\x0e\\t\\x06\\a\\x03\\a\\x04\\x03\\x05\\x13\\x03\\x06\\x02\\x02\\x03\\f_\\x02\\b\\a\\a\\b\\x02P\\x02\\f\\x02\\x04\\x15\\x04\\x05\\x01\\x02\\b\\x06\\x14\\b\\x0f\\a\\x04\\x03\\x03\\x02\\x04\\x0f\\a\\t\\n\\x03\\a\\r\\x0e\\x1d\\x06\\b\\v\\a\\t\\a\\n\\x04\\x06 \\x11\\x86\\n\\b\\b\\n\\x06\\n\\x011@\\x03\\x06\\a\\x02\\x01<)\\x04\\x0f\\x01\\x01\\x01\\x02\\x02\\x01\\x01\\x01\\x04\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x10\\x00 \\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\a\\x177#\\x0e\\x02\\a.\\x03'#\\x17\\x153\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x1b\\xdaQ#\\x18\\x17\\v\\x02\\x02\\t\\a\\x17\\x13%P\\x1f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xc56\\x9b-/\\x1c\\x06\\x05\\x16\\x110\\\"\\x99g\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x10\\x00\\x83\\x00\\x00\\x01\\x1e\\x02\\x17\\x11\\x0e\\x01\\a!.\\x01'\\x11>\\x017\\x012&#&'.\\x01=\\x014>\\x0176&#\\\"\\x06#\\\"&#\\\"\\x06\\x170\\x1e\\x05\\x15\\x14\\a\\x14\\x0e\\x01+\\x01\\\".\\x015&54>\\x0516&#\\\"\\x06#\\\"&#\\\"\\x06\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x06\\a\\\"\\x063262\\x16324'&'.\\x0146546;\\x012\\x16\\x15\\x14\\x16\\x14\\x06\\a\\x06\\a\\x06\\x143262\\x16\\x01\\xbb\\x02\\x13\\x1e\\x12\\x1b'\\x02\\xfe\\x8c\\x05'\\x1c\\x1c)\\x03\\x01N\\x06\\x01\\x05\\x0e\\b\\x05\\x03\\t\\v\\t\\x06\\x03\\x04\\x12\\x15\\x12\\x10\\x11\\x10\\x03\\x03\\x05\\x06\\x03\\a\\x04\\x05\\x02\\x01\\x01\\a\\x04n\\x04\\a\\x01\\x01\\x02\\x05\\x04\\a\\x03\\x06\\x05\\x03\\x03\\x10\\x11\\x10\\x12\\x15\\x12\\x04\\x03\\x06\\x0e\\x0f\\x03\\x05\\b\\x0e\\x05\\x01\\x06\\x12\\x13$\\x15\\x11\\x04\\x04\\x14\\x05\\x03\\x03\\x01\\b\\x05p\\x05\\b\\x01\\x03\\x03\\x04\\x15\\x04\\x04\\x11\\x15$\\x13\\x01\\xc0\\x12\\x1f\\x14\\x03\\xfe\\x8e\\x03(\\x1b\\x1b&\\x04\\x01s\\x03)\\x1c\\xfek\\v\\x05\\t\\t1Fe\\n\\x0e\\x06\\x02\\x02\\n\\x02\\x02\\t\\x02\\x01\\x02\\x04\\x05\\b\\f\\a:\\v\\x01\\x06\\x06\\x06\\x06\\x01\\v:\\a\\f\\b\\x05\\x04\\x02\\x01\\x02\\t\\x02\\x02\\n\\x02\\x03\\x0e\\x0feF1\\t\\t\\x05\\v\\x02\\x02\\t\\x01\\a\\x06\\x05\\x1f\\x1c+\\x06\\x04\\t\\t\\x04\\x06+\\x1c\\x1f\\x05\\x06\\a\\x01\\t\\x02\\x02\\x00\\x00\\x00\\x01\\xff\\xf4\\xff\\xd0\\x01\\xc5\\x01\\xc0\\x00$\\x00\\x00\\x01\\x1e\\x01\\a\\x0e\\x01\\a>\\x01&'\\x16\\a\\x06'&'\\x0e\\x01\\x16\\x17&'&67>\\x01.\\x01/\\x01\\x1e\\x04\\x01\\x9f\\x17\\x0e\\v\\fO:\\x1b\\r # \\x1f\\x19&\\x1c\\x15\\x03\\a\\x02\\ro\\\"\\x19*>$!\\x06\\x10\\t\\n\\t\\x1eTHN\\x01\\x1e(_-.R\\x12&`J\\b7-#\\x06\\x04\\x1f\\v\\x1dA\\x19\\x10M<g*\\x19:1*\\f\\f\\x01\\x06\\x18!<\\x00\\x02\\x00\\x19\\xff\\xc0\\x01\\xe7\\x01\\xc0\\x006\\x00A\\x00\\x00%'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x1e\\x01\\x17675&5462\\x16\\x15\\x14\\a\\x15\\x1e\\x01\\x15\\x14\\x06#\\\"'\\a\\x16\\x15\\x14\\a\\x06\\\"'&4632\\x177&54\\x162654.\\x01#\\\"\\x06\\x14\\x01\\v\\xa3\\r\\x0e\\x15\\x1f\\x1f+\\x1f\\x02\\x1d\\x82\\n\\x14\\x16\\x1c\\x1b'\\x1c\\x1c/?L6,#2\\x02\\f\\f\\\"\\v\\f\\x17\\x11\\a\\a2\\x1ae9)\\x13\\x1f\\x13\\x1d(\\xecs\\a\\x1e+\\x1f\\x1f\\x15\\a\\a\\x16_\\b\\v\\x03=\\f\\x1f\\x14\\x1c\\x1c\\x14\\x1f\\f>\\aI06L\\x1a2\\x05\\a\\x11\\v\\f\\f\\v\\\"\\x17\\x022\\\",8}(\\x1d\\x13\\x1f\\x13)9\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x005\\x00E\\x00Q\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17654\\a\\\"\\a\\\"\\a\\x06\\x15\\x06\\x16\\a\\x06\\a\\x06\\a\\x06\\x16\\x17\\x167676547676\\x15\\x14\\x15\\x16\\x06\\a\\x06\\a\\x06\\x16\\x17\\x1676\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132>\\x014.\\x01#\\\"\\x06\\x14\\x16\\x99\\x8ded\\x8ee\\xfb\\x01\\t\\x01r\\x03\\x04\\x03\\x01\\x01\\x03\\x02\\x06\\x1e\\b\\v\\n\\x10\\x11\\x0e\\f\\x03\\x01\\aX\\x04\\b\\x01\\x05\\x06\\x1e\\b\\b\\x01\\t\\v\\x15\\x16/+<<+\\xf2+<<+y4Y33Y4Pqq\\x01pe\\x8dee\\x8d\\x8b\\x04\\xa3\\n\\x01\\x15\\x03\\x02\\x04\\x02\\x83\\x01\\x03\\x01\\x05\\b\\n\\x1e\\x03\\x03\\t\\x06\\r\\x06q\\a\\x01\\x10\\x01\\x02\\b\\x13\\x19\\\"\\x06\\x01\\x05\\a\\b\\x16\\a\\t\\x04\\x04\\x014<+\\xf2+<<+\\xf2+<\\xfed4XiX4q\\x9fq\\x00\\x00\\x01\\xff\\xf8\\xff\\xda\\x01\\x81\\x01\\xa2\\x00=\\x00\\x00%\\x0e\\x01\\a\\x06'.\\x017>\\x02767>\\x015&54\\x0f\\x01\\x0e\\x01\\x15\\x14\\x15\\x16\\a0\\x15\\x06\\a\\x0e\\x01'.\\x017>\\x027676\\x0276763636\\x15\\x14\\x15\\x14\\a\\x14\\x01~\\x05\\x1d\\x15*\\x17\\x11\\x02\\x11\\b\\x1a\\x11\\x19\\v\\x05\\x04\\x01\\x01\\x11\\xb9\\b\\x06\\x01\\x03\\x06\\x18\\r&\\r \\x13\\x16\\b\\x1b\\x11\\x19\\v\\x05\\x05\\x01\\x01\\x01\\x06\\x06\\a\\xe6\\x03\\x12\\x02<\\x14\\x18\\x04\\b\\x12\\x0f,\\x0f\\b\\n\\x04\\x04\\x02\\x06\\x04\\x1243&\\x0f\\x03#\\x01\\a\\b7Jc\\v\\x01\\x1b\\f\\a\\x06\\x02\\x06<\\x15\\b\\n\\x03\\x05\\x02\\x05\\a\\x00\\xff\\b\\t\\x04\\x06+\\x01\\x13Sl\\x8a\\b\\x01\\x00\\x17\\x00\\x17\\xff\\xc0\\x01\\xe9\\x01\\xc4\\x00L\\x00c\\x00s\\x00\\xb9\\x00\\xcd\\x00\\xd9\\x00\\xe1\\x00\\xeb\\x00\\xfa\\x00\\xfd\\x01\\x02\\x01 \\x012\\x017\\x01P\\x01Z\\x01g\\x01\\x81\\x01\\xa8\\x01\\xc1\\x01\\xca\\x01\\xd1\\x01\\xe2\\x00\\x00%\\x16\\a\\x06\\a!&'45.\\x03'&>\\x01767656.\\x01'&'&'.\\x017>\\x0274.\\x015&7>\\x057676\\x16\\x17\\x1e\\x03\\x17\\x1e\\x01\\a\\x06\\a\\x0e\\x02\\x1e\\x02\\x17\\x1e\\x03\\x01\\x0e\\x01\\a>\\x0136\\x167>\\x027>\\x0272>\\x015&\\a\\x06\\x176\\x16\\x1526.\\x025&6'\\x06\\x17\\x16\\x17\\x16\\x176\\x17&'&'\\x1e\\x02\\x17\\x167676'&'.\\x01\\a&>\\x01\\x17.\\x06'.\\x01\\a\\x06\\a\\x1e\\x01\\x0e\\x01\\a\\x14\\x16\\x17\\x06'&'&\\x06\\a\\x06\\x167>\\x013\\x16\\x0e\\x02\\x15\\x06\\x17\\x06\\x16\\a\\x16\\x176'4&'&\\x0e\\x01\\a\\x16\\x156\\x17\\x06'>\\x017\\x0e\\x02'\\x14\\\"\\x15\\x16\\x17\\x1676'&\\a\\x06'465.\\x02'\\x06\\x16\\a30'&'&'\\\".\\x01\\a\\x06\\a\\x16\\x174173&'\\\"7<\\x025&#>\\x017<\\x015\\\"'&'&\\x0e\\x02\\x17\\x14\\x17\\x16\\x17\\x167>\\x01\\x177\\x06&#&\\x06'\\x0e\\x02\\a\\x16\\x17342\\x15;\\x01&\\a\\x0676'4.\\x01'.\\x01'\\x0e\\x02\\a6\\x17\\x16\\a\\x1e\\x01\\x17\\x06\\a36\\x03>\\x01\\x17\\x1e\\x01\\a&\\a&\\x17>\\x017&721\\x16\\x17\\x0e\\x01&'&7\\x1e\\x01\\x17\\x14\\x1e\\x03\\x14\\a\\x0e\\x01\\a\\x06&72\\x1e\\x03>\\x01\\x17\\x1e\\x02\\x17\\x16>\\x027>\\x01.\\x02'.\\x0256\\x17\\x14\\x15\\x16\\x17\\x1e\\x02\\x17\\x16\\x06\\x15\\x0e\\x02'.\\x01'.\\x02#\\\"\\x0e\\x02\\x1c\\x02\\x15.\\x017&\\x0e\\x02\\a6\\x16\\x17\\x16\\x05\\x06\\a&7>\\x03\\a\\x167\\x16\\x15\\x06&\\x17\\x06\\a\\x0e\\x01'.\\x02'&'&3\\x1e\\x016\\x01\\xe7\\x01\\n\\b\\x06\\xfeZ\\x01\\x01\\x02\\x05\\x04\\x03\\x01\\x01\\a\\x14\\x03\\n.\\x1b\\x02\\x03\\b\\x01\\a\\x01\\x19\\x0e\\v\\b\\a\\x01\\x03\\x02\\x01\\x01\\x02\\x02 \\x03\\t\\n\\x12\\v\\x16\\x05\\v\\x1d%g\\x1e\\a\\x11\\x0f\\x0e\\x04\\x13\\x02\\x0f\\x06\\x05\\x01\\b\\x05\\x01\\f\\x11\\x01\\x02\\f\\a\\a\\xfe\\xe7\\x1c4\\t\\x04\\x12\\x06\\x01\\v\\x01\\x04\\t\\b\\x03\\x03\\a\\b\\x02\\x01\\x05\\x03\\x03k\\x0e\\x04\\x14*\\x03\\x04\\x01\\x01\\x03\\x03\\v\\a\\\"\\x10\\t\\x11\\x0f6\\x06\\x1e\\x10\\x18\\x1a\\x01\\x11\\x11#\\x15-6\\a\\x12,\\x05\\x02\\a\\a \\r\\x02\\t\\x10\\n\\x02\\b\\x05\\b\\x06\\b\\a\\x05\\x1cF\\x1fC\\x10\\x04\\x01\\x04\\x05\\x01\\b\\x01\\x06\\x15\\a\\x12\\x10\\x17\\x01\\x01\\x1b\\x12\\x05\\x0e\\x05\\x03\\x03\\x05\\x05\\x01\\xe1\\x01\\x01\\x01\\x16\\x1d\\x05\\x01\\x05\\x05\\x06\\x13\\x15\\x03\\x03\\n\\t\\x0f\\x13\\x03\\x0e\\x05\\x06\\x1b\\x0e\\f\\x02\\x10\\n\\x10\\x02\\x03\\v\\x05\\a\\x01e\\x03\\x05\\x13\\r\\x04\\a\\\"\\x9d\\xb4\\x02\\a\\x01*\\x0f\\x01\\f\\f\\x01)=\\b\\xf7\\b\\t\\x01\\x02\\x01\\n\\v\\f\\x03\\x0f\\x04\\x06\\x10\\x15\\x17\\a\\a\\x02\\x01\\x01\\v\\x03\\x02\\v\\x17\\a\\x169\\x01\\x06\\x10\\x03\\x03\\x0e\\x05\\x01\\x02\\x02\\x01\\x04\\x05\\x11\\f\\x17$\\x0e\\x15\\x01S\\x05\\x01\\a\\r\\x01\\x05\\x15\\a\\x03\\b\\b\\x02\\x16\\x06\\x06\\n\\x01\\t\\x01\\x01\\x01\\x1c\\a\\xf1\\x05\\x1c\\f\\a\\t\\x04#\\x13\\t\\xbe\\x04\\x16\\x04\\n\\x01\\x01\\x11\\x04\\x02\\x16\\x13`\\x14\\x05\\x01\\v\\x06\\x04\\x02\\x02\\x01\\x01\\x01\\b\\x03\\r\\x1f\\b\\x02\\x06\\x05\\x06\\x06\\x05\\x05\\x1d\\x01\\x02\\x04\\x05\\a\\x11\\r\\x11\\x04\\x03\\x01\\x02\\x03\\a\\x01\\r\\v\\x0e\\x06\\x02\\v$\\x01\\x06\\x03\\x01\\x01\\x06\\x0e\\x12!\\x10\\x06\\x02\\xc4\\x03\\x05\\x05\\x04\\x02\\x04\\x02\\x01\\x06\\x02\\x04\\x02\\x04\\x02\\x04\\x01\\x03%\\x03\\x01\\x01*\\x15!\\x01\\x01\\b\\x10\\n\\x0f\\x89\\x178\\x02\\x1c/V\\x03\\x06\\v%\\x0f\\x05\\b\\t\\x01\\x01\\x02\\v\\x0e\\x06 %\\x17\\a!\\x1a\\x15\\x01\\x03\\x01\\x01\\x04\\x0e\\n\\r\\x05\\t\\v\\t\\x02\\a\\x1b\\x10\\x02\\x04\\n\\f\\x02\\x0f\\x0f\\x04\\x15\\x11-\\x16\\x01\\x03\\x04\\x02\\x03\\b\\b\\x03?\\x0f\\t\\x11\\v\\r\\x06\\f\\x04\\x06\\v\\x0e\\b\\x17\\x05\\x0f\\x11\\x12\\a(|0\\x15\\v\\x02\\x0e\\n\\x06\\f\\x0e\\x01\\x02\\n\\a\\t\\x01\\x83\\b\\\"\\x15\\x01\\x06\\x01\\x02\\x01\\x01\\v\\x0f\\x03\\x03\\x06\\x05\\x03\\x02\\x03\\x02\\x03^\\x104\\f\\x14\\x16\\x04\\x06\\x05\\t\\x02\\x0fF\\r\\x03\\xe0$\\x19\\x14\\x04\\x0e\\a\\x06\\x1a\\x1d\\x14\\x18\\x14\\x1c\\a\\x0f'\\x04\\x1a?^2\\r\\x0e\\f\\n\\b\\f\\x03\\x02\\x02\\v\\x06\\t\\a\\a\\x06\\x02\\x11\\v\\f!%\\n\\x18\\x12\\x1a\\t\\t\\x1f\\b\\t\\x01!\\x02\\x02\\x16\\x10\\x13)\\x02\\x01\\n\\x04\\a\\x05\\x06\\x02\\x04\\x88\\x02\\n\\x04\\x06\\x01\\a\\x10\\v\\x17\\x03\\x03\\b\\x0e\\x02\\t\\x01\\x03\\x05\\x02\\x12\\x03\\f\\x03\\x01\\a\\x01\\x04\\x01\\x01\\f \\x05\\x0e\\r\\x02\\x01\\x05\\x02\\b\\x03\\f\\x02\\x01\\x01\\x02\\x03\\x06\\x11;\\a\\x16\\x0e\\x14\\n\\x0f\\r\\x01\\x10/\\x11\\x1a\\x01\\x05\\x01\\x03\\x15\\x01\\x04\\x04\\x01\\x06\\x02\\x03\\x02\\x01\\x03\\x01\\t\\f\\x04\\x01\\b\\r\\x10\\x06\\a\\x1e\\t\\x01\\x02\\f\\x04\\x13\\x16\\r\\x01\\v\\x01\\a\\x02\\x01\\x02\\x03\\x01\\x05\\a\\x06\\x06\\x15\\n\\x06 \\x16\\x03\\x04\\b\\n\\x01\\x04\\x16\\x06\\x04\\a\\x06\\x03\\v& \\x13\\x04\\t\\x03\\x01\\x02\\x15\\x01Z\\f\\x15\\x01\\x02\\n\\x06\\b)\\x02/\\x02\\x01\\x03\\x1b\\n#\\x06\\a\\n\\x04\\t\\x1f\\x0e\\x01\\x1b\\x05\\x01\\x03\\x02\\x04\\x03\\x05\\x02\\x03\\x06\\x01\\x04\\t\\f\\x01\\x01\\x01\\x01\\x01\\x02D\\x02\\v\\a\\x01\\x01\\x04\\x05\\t\\x01\\x04\\a\\a\\x03\\b\\x01\\x10\\x0e\\x1f\\x0e\\x04\\v\\x02\\x01\\x18'\\x02\\x05\\x03\\x01\\x05\\x11\\x02\\t\\n\\b\\x02\\x05\\x12\\x11\\x01\\v\\t\\x02\\x05\\x04\\t\\x05\\t\\x01\\x05\\x1b\\b\\x02\\x02\\x02\\x03\\x01\\x16\\b\\x15\\x06$(\\x01\\x0f\\x04\\x01\\x05\\x06\\b\\n\\f\\x02\\x05\\x0f\\x01\\x0e\\x1e\\t\\x02\\x04\\x02\\x06\\x03\\b\\x0e\\x01\\x01\\x02\\n\\x0f\\x0e\\x01\\x00\\x00\\x04\\xff\\xee\\xff\\xb6\\x02\\x02\\x01\\xb8\\x00\\v\\x00\\\"\\x00>\\x00[\\x00\\x00\\x01\\x1e\\x01\\x0e\\x01.\\x017>\\x0132\\x1367\\\"\\x0e\\x02\\a\\x0e\\x04\\x1e\\x021\\x16\\x17\\x16326'\\x16\\x176&'&\\x06\\a\\x06\\x17>\\x0376\\a\\x06\\a\\x0e\\x04\\a\\x06\\x167\\x1e\\x01\\a\\x15\\x0f\\x0167>\\x0432\\x17\\x1e\\x01\\x0e\\x02\\x0f\\x010\\x17676\\x01zX/lȯ/6#q?Fp\\b\\x06\\x02G3C\\x12\\v\\x0f\\t\\x04\\x01\\x02\\x02\\x05\\a\\x11\\v\\t7a\\xab3\\xb3\\t57K\\xac/+\\x0f\\x05\\x14&F-)\\x03\\x02\\f\\x02\\x13\\n\\x11\\x0f\\x06\\x11!\\xe2\\n\\n\\x01.\\xaa\\\"\\x1f\\x05\\x14\\v\\x0f\\f\\x05\\x05\\x05\\x05\\x04\\x05\\x05\\v\\x013\\x06\\t\\x10?\\x01\\x936ȯ/l\\xc8W8>\\xfe\\x98\\f\\x0e\\x01\\x02\\b\\x06\\x04\\n\\b\\v\\a\\f\\x04\\v\\x12\\x19\\x016\\x86\\x01\\x04>u\\\".)KEP\\x14&/ \\x03\\x03\\x10\\t\\a\\x02\\n\\a\\v\\x0e\\b\\x14\\x1b6\\x03\\b\\x02\\x03\\x17\\x02\\v\\x15\\x03\\r\\a\\t\\x03\\x02\\x03\\x06\\x06\\x03\\x06\\x01\\\"\\x02\\x01\\t!\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\x10\\x006\\x00\\x00\\x11!\\x11!75#\\x15\\x14#\\\"'\\a\\x16326\\x172654&/\\x01.\\x0154>\\x0132\\x177&#\\\"\\x06\\x14\\x16\\x1f\\x01\\x1e\\x03\\x15\\x14\\x06#\\\"'\\a\\x16\\x01\\xc0\\xfe@\\xf4*\\x17\\x0f\\f\\\"\\x12-\\x1d\\\"c\\x1f'\\x1b\\x1d\\n\\x0f\\v\\x05\\t\\x06\\x11\\n!\\x13)\\x1c\\\"\\x1a\\x19\\n\\t\\t\\n\\x03\\x10\\r\\x19\\x10\\\"\\x15\\x01\\xa0\\xfe@c\\x8f\\x8f\\x1a\\x15\\x14'  \\x1f\\x1c\\x19\\x1c\\r\\x04\\a\\n\\t\\x05\\b\\x05\\x12\\x15\\\" 0\\x1d\\n\\x05\\x04\\x04\\a\\b\\x05\\t\\f\\x1a\\x14+\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1c\\x00B\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\x15\\x14#\\\"'\\a\\x16326\\x172654&/\\x01.\\x0154>\\x0132\\x177&#\\\"\\x06\\x14\\x16\\x1f\\x01\\x1e\\x03\\x15\\x14\\x06#\\\"'\\a\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xc4*\\x17\\x0f\\f\\\"\\x12-\\x1d\\\"c\\x1f'\\x1b\\x1d\\n\\x0f\\v\\x05\\t\\x06\\x11\\n!\\x13)\\x1c\\\"\\x1a\\x19\\n\\t\\t\\n\\x03\\x10\\r\\x19\\x10\\\"\\x15\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xa3\\x8f\\x8f\\x1a\\x15\\x14'  \\x1f\\x1c\\x19\\x1c\\r\\x04\\a\\n\\t\\x05\\b\\x05\\x12\\x15\\\" 0\\x1d\\n\\x05\\x04\\x04\\a\\b\\x05\\t\\f\\x1a\\x14+\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x02\\x00\\x01\\xb8\\x00\\x18\\x00.\\x00D\\x00\\\\\\x00h\\x00u\\x00v\\x00\\x00?\\x01\\x16\\x17\\x167\\x1e\\x02\\x17\\x06'&'2\\x06\\a\\x16\\x06#\\\"&546%\\x16\\a\\x06\\a0\\x1616\\x17\\x16\\x14\\x06\\\"'&7'676'%\\x16\\a\\x17\\x06\\a\\x06\\a\\x06\\x17\\a&767'\\x06'&>\\x01\\x16%2\\x16\\x14\\x06#\\\"'\\a&'&\\a'6\\x17\\x16\\x177&54>\\x01\\a2\\x17\\x1e\\x01\\x0e\\x01.\\x017>\\x01\\a\\x16\\x17\\a3'654&'\\x0e\\x017@<1N/'\\x03\\t\\b\\x011;C3\\x01$\\x03\\a\\x1d\\x18\\x15\\x1b)\\x01z\\x1e\\x02\\x01/\\x18\\x0f\\v\\b\\x12\\x19\\t\\n\\x03-?\\x02\\x01\\x16\\xfe\\xdb\\v\\x03.\\x0f\\b'\\x02\\x01\\x15\\x16\\x1d\\x01\\x02.\\x1a\\x0f\\v\\b\\x01\\x11\\x19\\x01r\\x13\\x1c\\x1c\\x13\\v\\x05?1N/'\\x151;C3)\\x02\\r\\x16\\xc3\\a\\t;H\\x0e^uH\\a\\aQ\\x04\\x01\\x1f\\vJ\\v \\\"\\x18\\x18\\\":';B\\x02\\x01\\x18\\x03\\t\\t\\x01 \\x01\\x02+#\\x03\\x17'\\x1c\\x14\\x1a\\x1c\\xf417D5\\x19\\x02\\v\\t\\x19\\x11\\t\\v\\x0f02J*(}\\v\\x0f1\\v\\n,;,&\\x1618D5\\x1b\\x02\\v\\t\\x18\\x12\\x01$\\x1d'\\x1c\\x02<A\\x02\\x01\\x17\\x16\\x1f\\x01\\x02+'\\a\\b\\r\\x16\\ri\\x01\\b]uI\\x0f];6Fw$\\x1044\\x11#\\x19!\\x01\\x01!0\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x002\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x034.\\x02#\\\"\\x06\\x1d\\x01\\x14\\x1e\\x02326=\\x01\\x17\\x1e\\x017>\\x01/\\x0176&'&\\x06\\x0f\\x01\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xdc\\a\\n\\x0f\\b\\x13\\x15\\x05\\n\\x10\\t\\x12\\x16<\\n!\\r\\v\\x01\\b1(\\b\\x02\\v\\f&\\f, \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01.\\v\\x11\\v\\x06\\x1a\\x13\\x9b\\t\\x11\\f\\a\\x17\\x16*L\\v\\x01\\f\\v\\x1e\\n?:\\n\\x1d\\n\\r\\x02\\x12@\\x00\\x01\\x00\\x00\\xff\\xdf\\x01\\x82\\x01\\xa2\\x00\\x1f\\x00\\x00\\x13\\x157>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06\\a\\x06&/\\x01\\x15\\x14\\x06#\\\"&5\\x114>\\x0132\\x16\\x93S\\x16F\\x16\\x14\\x04\\x0eK[\\x0f\\x03\\x13\\x18>\\x12p( $'\\x11\\\"\\x17 )\\x01NGv \\x04\\x17\\x135\\x12ks\\x126\\x14\\x17\\x02\\x15\\x8aL**/%\\x01\\x1b\\x17$\\x16*\\x00\\x00\\x00\\t\\x00\\a\\xff\\xc0\\x01\\xf9\\x01\\xc1\\x00S\\x00W\\x00]\\x00r\\x00x\\x00}\\x00\\x83\\x00\\x87\\x00\\x8c\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\x0f\\x01\\x15\\x14\\x0f\\x01\\\"\\a01*\\x01#0&1\\\"1'&5\\x114745034625762\\x1f\\x01\\x142\\x16\\x1503\\x14\\x161\\x14\\x1d\\x01754506105350>\\x011762\\x1f\\x010\\x1701\\x16\\x143\\x1410%\\a\\x177\\x17\\x0f\\x01\\x15?\\x01\\x155'1&10&10'1&<\\x0215/\\x01\\x11?\\x02'\\x0f\\x01\\x055\\x0f\\x01\\x1575/\\x01\\x15\\x17?\\x01'\\a\\x1775\\x0f\\x01\\x01\\xf8\\x01\\x04]\\x04\\xc0\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\xc1\\x04\\x01\\x01\\x01\\x01a\\x01\\x05\\x02`\\x01\\x01\\x01\\x01P\\x01\\x01\\x01\\x01`\\x02\\x05\\x01a\\x01\\x01\\x01\\xfexQQP\\b\\\".!/\\\\\\x01\\x01\\x01\\x01/\\\"\\xb9u;P\\\\T\\x01\\b-\\x83\\xb0.\\\"/)QQPXQ\\\"/\\x01L\\x01\\x01n\\x04\\x035i\\x05\\x02o\\x01\\x01o\\x02\\x05\\x01J\\x01\\x01\\x01\\x01\\x01\\x01\\x017\\x01\\x017\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\xce.i\\x01\\x01\\x01\\x01\\x01\\x01\\x017\\x02\\x027\\x01\\x01\\x01\\x01b.//\\x0e\\x14\\x1b\\xc9\\x14\\x1a\\xd3\\\\4\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\xd7\\x1b\\x14\\xfe\\xc9\\x04C\\\".511[\\x1aK\\\\\\xdd[\\x1b\\x13[\\x1bV...\\x97.[\\x13\\x1b\\x00\\x06\\xff\\xff\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\x19\\x00%\\x006\\x00R\\x00b\\x00x\\x00\\x00%\\x15\\x14+\\x01\\\"/\\x01\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x1f\\x0154;\\x012#2\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\a2\\x1d\\x01\\x14+\\x01\\\"&=\\x014;\\x012\\x1d\\x0172\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01437\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4&\\\"\\x06\\x15\\x14\\x16\\x17\\x1e\\x01\\a\\x1c\\x01\\x1667>\\x0276\\x01\\x10\\x03\\v\\x02\\x01!\\x03\\v\\x04\\x04\\v\\x02\\x01 \\x03\\f\\x03R\\x03\\x03\\v\\x03\\x03\\x10\\x03\\x04-\\x01\\x02\\x03\\v\\x04\\xc8\\x03\\x03\\x1f\\x1f\\x03\\x03\\x1f\\x1f\\x03\\x03.\\x03\\x03\\xa20\\\"\\xfe\\xe3\\\"/0\\\"\\x01\\x1d\\\"/>_\\x87`N;\\r\\x03\\x04\\x01\\a\\x06\\n.9\\x10\\\"\\xf4G\\x03\\x01,*\\x04\\x04G\\x03\\x01,*\\x03\\x03G\\x03\\x03G\\x03<\\x03\\v\\x03\\x01\\x02G\\x03\\x039<\\x03\\f\\x03\\f\\x03\\f\\x03\\f\\x03\\v\\x03\\x03G\\x03W\\xfe\\xe3\\\"/0\\\"\\x01\\x1d\\\"/0\\x9c6NN61J\\b\\x03\\x0f\\x13\\x03\\x02\\a\\x02\\x02\\x04\\x1c,\\x12'\\x00\\x00\\x03\\x00\\x00\\x00\\x06\\x02\\x00\\x01u\\x00\\t\\x00*\\x00H\\x00\\x00\\x113\\x15\\x14\\x17\\x0e\\x01'&5%\\x14\\x163\\x15\\\".\\x01=\\x014&\\x06\\x1d\\x013\\x15#\\x15\\x14\\a\\x06'54632\\x16\\x173\\x15#%53\\x15\\x14\\x06\\a\\x06'5\\x167670\\x0e\\x04&'&=\\x013\\x15\\x1425N\\x1b\\f,\\x18\\x19\\x01\\xe6\\x0f\\v\\x1c/\\x1c\\x1a\\x1a''\\x19\\x15\\x1e<*%8\\b\\x1a\\x18\\xfe\\xdaM*#&(\\x18\\x15 \\x03\\x02\\x06\\x06\\v\\v\\x0e\\b-M\\x18\\x01o\\xd1+\\x12\\n\\x03\\x10\\x14'\\\"\\n\\x0fM\\x1c/\\x1cM\\x10\\x0e\\x0e\\x10\\x17M\\a'\\x14\\x12\\x04\\xb3+<.#MM\\x01\\xb2(6\\a\\a\\fF\\n\\x02\\x03\\x16\\x01\\x04\\x03\\x04\\x01\\x01\\x02\\f4\\x84q\\v\\v\\x00\\x00\\x00\\x00\\x02\\x00\\x02\\xff\\xbf\\x01\\xbe\\x01\\xc0\\x00\\t\\x00\\x13\\x00\\x00\\x01\\x11\\a\\x11'\\a\\x13'\\x117\\x13\\x11\\x17\\x11\\a'\\x117\\x11\\x17\\x01\\xbe@\\x9e\\x9f\\x01@\\xde ?__? \\x01@\\xff\\x00$\\x00\\xff\\\\\\\\\\xff\\x00%\\x01\\x00\\x80\\xfe\\\\\\x00\\xff$\\xff\\x0077\\x01\\x00$\\xff\\x00\\x12\\x00\\x04\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x002\\x00:\\x00B\\x00t\\x00\\x007>\\x043\\x1e\\x02\\x17>\\x0232\\x1e\\x03\\x15\\x1e\\x01\\x1f\\x01\\x16\\x0e\\x01\\\"\\a\\x0e\\x02\\a\\\".\\x03'\\a\\x06'&/\\x01*\\x01.\\x017\\x17#\\\"4;\\x012\\x14\\a#\\\"4;\\x012\\x147\\x0e\\x01&767>\\x0354&\\\"\\x06\\x15\\x14\\x1e\\x02\\x17\\x16\\x17\\x16\\x06&'&'&'.\\x0254>\\x0132\\x16\\x15\\x14\\x0e\\x01\\a\\x06\\a\\x06v\\x01\\x03\\x02\\x02\\x04\\x02\\x03\\x05\\a\\x03\\x02\\x03\\x05\\x04\\x03\\x06\\x05\\x04\\x04\\x05\\x18\\n\\n\\x01\\a\\x0f\\n\\t\\x01\\x04\\x04\\x02\\x02\\x02\\x03\\x04\\x04\\x03\\t\\x03\\b\\x03\\x05\\x03\\a\\n\\x1a\\n\\x05\\x8d\\x88\\x10\\x10\\x88\\x10(X\\x10\\x10X\\x10\\x12\\x01\\x12\\x0f\\x02\\a\\b\\b\\x1e\\x0f\\rKhK\\r\\x0f\\x1e\\b\\b\\a\\x02\\x0f\\x12\\x01\\a\\x05\\t\\x0f\\x10\\x0f\\x0f+J+B^\\x0f\\x0f\\x10\\x10\\b\\x05\\xd2\\x02\\v\\b\\b\\x04\\x01\\f\\x12\\x05\\b. \\r\\x16\\x13\\x16\\x01\\x02\\x03\\x01\\x01\\x02\\x04\\x01\\x01\\x04\\x11\\x06\\x01\\x06\\v\\f\\x0f\\x06A\\t\\x13\\x06\\x0e\\t\\x02\\x03\\x03\\xcd  @  \\x8e\\v\\x05\\v\\n,\\x0e\\x101\\x1b(\\x143HH3\\x14(\\x1b1\\x10\\x0f,\\t\\v\\x05\\n'\\n\\x11\\x18\\x1b\\x1c/\\x18*G*[@\\x18/\\x1c\\x1b\\x1a\\x0f\\n\\x00\\x01\\x00\\x0e\\x00\\x00\\x01\\xf2\\x01\\x80\\x00$\\x00\\x00\\x134/\\x0153\\x1773\\x15\\a\\x06\\x17\\x11\\x06\\x1f\\x01\\x15#576=\\x01\\x03#\\x03\\x15\\x06\\x1f\\x01\\x15#576'H\\a-\\x8cm_\\x86'\\x05\\x01\\x01\\x05&\\xbe'\\x04l\\x0f\\u007f\\x01\\b3\\x903\\t\\x02\\x012\\t\\a6\\b\\xee\\xee\\b%\\x04\\a\\xfe\\xf0\\a\\x04%\\b\\b&\\x04\\a\\xdc\\xfe\\xec\\x01\\x14\\xb9\\f\\t>\\b\\b>\\t\\f\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x02+\\x01\\xb8\\x00\\x0e\\x00\\x1d\\x00+\\x00O\\x00\\x00\\x12\\x14\\x16\\x17\\x06#\\\"&54632\\x17\\x06\\x13>\\x01'\\x16\\x17\\x16\\x0e\\x01&'&'\\x1e\\x01\\x036\\x16\\x17\\x16\\x06\\a6&'.\\x01\\a7\\x1732\\x1d\\x01\\x14+\\x01\\\"\\x1d\\x01\\x14+\\x01\\\"=\\x014+\\x01\\\"=\\x014;\\x012=\\x014;\\x012\\x1d\\x01\\x14rnS\\x1c\\x1eg\\x92\\x92g\\x1e\\x1cS\\xbb:&\\x1d\\x11\\x0e.\\x1b\\x83\\x9e/\\r\\b.\\x88\\xa17\\x81&\\\"\\x0e*\\x0e\\f\\x1b b1\\x02j(\\b\\b(\\b\\b0\\b\\b(\\b\\b(\\b\\b0\\b\\x01\\x1b\\xb6\\x88\\x0e\\a\\x91gg\\x91\\a\\x0e\\xfe\\xb9)\\x86;\\x10\\x13B\\x9f^\\x1cB\\x13\\x15/\\t\\x01\\x1e)\\f1-r+&U#* \\r\\x01n\\b0\\b\\b(\\b\\b(\\b\\b0\\b\\b(\\b\\b(\\b\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x00\\x113\\x15#73\\x15#\\a3\\x15#73\\x15#\\xd7\\xd7\\xe9\\xd7\\xd7\\xe9\\xd7\\xd7\\xe9\\xd7\\xd7\\x01\\xa0\\xd7\\xd7\\xd7\\x12\\xd7\\xd7\\xd7\\x00\\x01\\x00\\x00\\xff\\xf1\\x01\\xc0\\x01\\x80\\x00\\x1c\\x00\\x00\\x11!\\x15\\x14\\x06&=\\x014&\\x06\\a\\x15\\x14\\x06\\\"&=\\x014.\\x01\\x06\\a\\x15\\x14\\x06&5\\x01\\xc0,,*+\\x03\\x1e$\\x1e\\x19 \\x1c\\x03,,\\x01\\x80\\xcc\\x1b\\x17\\x16\\x1c\\x18\\x1b\\x17\\x14\\x1at\\x15\\x17\\x17\\x15\\xaf\\x14\\x18\\x02\\x14\\x13\\xef\\x1b\\x16\\x17\\x1a\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x10\\x00\\x1b\\x00$\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1754&\\\"\\x06\\x15\\x116754&\\\"\\x06\\x1d\\x01632\\x17\\x114&\\\"\\x06\\x1d\\x01\\x16\\x91Α\\x91Α\\xa8\\x17\\\"\\x17!\\xa7\\x17\\\"\\x17\\x14\\x14\\x14\\x8c\\x17\\\"\\x17/\\x01\\xb8\\x91Α\\x91\\xce\\xcf\\xe0\\x11\\x17\\x17\\x11\\xfe\\xf0 \\x1a\\xd6\\x11\\x17\\x17\\x11\\xd6\\x03=\\x01\\x10\\x11\\x17\\x17\\x11\\xe0\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\f\\x00\\x1b\\x00\\x00%3\\x0e\\x02#\\\"&'35\\x177\\x05#&5462\\x16\\x15\\x14\\a#5\\a'\\x01`l\\x15AR,Bq!lhh\\xfe\\xf8K\\r\\x91Α\\rK\\xa1\\x9f@$6\\x1eA7\\x80iiP')g\\x91\\x91g)'П\\x9f\\x00\\a\\xff\\xff\\xff\\xc9\\x01\\xf1\\x01\\xa1\\x00\\x04\\x00\\x15\\x00\\x1f\\x006\\x00G\\x00\\\\\\x00h\\x00\\x00%\\x06\\a&'7&\\\"\\a&'\\x15\\x14\\x1e\\x02>\\x02=\\x01\\x06'\\x16\\x1762\\x1767&\\\"\\a\\x16\\x1762\\x1767\\x15\\x16\\x14\\a\\x15\\x0e\\x03.\\x01'&47\\x17>\\x013\\x1630\\x14\\x0e\\x05\\a\\x06#'236\\x1e\\x03\\x17\\\"'&'.\\x064\\x17\\x16\\x17\\x06\\\"'6?\\x01\\x167\\x16\\x01*\\x16\\x1c\\x1d\\x15\\x90*h+\\x1f&$:FF:$'\\xef\\n\\n,d,\\n\\n0\\x84\\x8a\\x19\\x19>\\xb8>\\x18\\x1a,,\\a>VcU?\\x06,,\\xd7\\t#:\\a\\x04\\x01\\x01\\x02\\x04\\x05\\b\\x05\\n\\x10\\xc4\\x04\\a\\x1a\\x16\\x1c\\v\\v\\x04$\\x1a\\x0f\\n\\x05\\b\\x05\\x04\\x02\\x01\\x01\\xa9\\x02\\x01\\x164\\x16\\x01\\x03\\x06&&\\x04J\\x15\\t\\n\\x14\\xc8\\x1e\\x1e\\x1a\\n\\xa1-F%\\x11\\x11$G-\\xa1\\n \\x05\\x06\\x17\\x17\\x06\\x06-\\x17\\x01\\aEE\\a\\x01E\\x1cg\\x1c\\x01:T&\\x01&U;\\x1cg\\x1c\\xbe(\\x10\\x01\\a\\x03\\b\\x06\\a\\a\\x06\\x03\\x065\\x01\\x01\\x05\\f\\x15\\x11\\x01\\x01\\x06\\x03\\x06\\a\\a\\x06\\b\\x03\\a{\\x04\\x05\\r\\r\\x06\\x04\\x06\\v\\v\\x02\\x00\\x02\\x00\\x00\\xff\\xc4\\x01\\xc0\\x01\\xc2\\x00;\\x00j\\x00\\x00\\x16\\\"/\\x01&7676\\x1f\\x01\\x16?\\x016=\\x014/\\x01&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x166=\\x014;\\x012\\x1d\\x01\\x14\\x06#\\\"/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\x0f\\x017\\x14\\x06#\\\"54;\\x012\\x17\\x1e\\x013254.\\x03'.\\x0254632\\x17\\x14\\x06+\\x01\\\"'.\\x01#\\\"\\x15\\x14\\x16\\x17\\x1e\\x01\\xea\\x14\\t>\\n\\b\\x0f\\r\\x02\\x03/\\x03\\x03\\xb9\\x02\\x03\\xb8\\x03\\x03\\xb8\\x03\\x032\\x15\\x18\\x05\\x17\\x06\\x1d\\x1a\\x13\\x180\\x13\\x13\\xb9\\x13\\x13\\xb9\\x14\\x14\\xb9\\x820,b\\x06\\x17\\x05\\x01\\x03\\x19#7\\x01\\b\\r\\x19\\x12\\x1b\\\"\\x14,(V\\x06\\x03\\x03\\x18\\x04\\x01\\x04\\x19\\x1c0\\x16).&<\\x05%\\x05\\x03\\x05\\a\\x02\\x02\\x1c\\x02\\x02j\\x02\\x04\\xd5\\x03\\x02j\\x02\\x02j\\x02\\x03\\xd5\\x04\\x01\\x1e\\b\\r\\x0e\\xd2\\x06\\x06\\xd2\\x1b\\x1f\\f\\x1c\\v\\x17\\xd5\\x16\\vk\\v\\vk\\v\\x16\\xd5\\x17\\vk\\xcd\\x1e!D\\x05\\x04\\x14\\x11\\x1d\\x05\\x05\\x06\\x05\\x04\\x02\\x03\\n\\x18\\x14\\x1c\\x1f@\\x03\\x03\\x04\\x13\\x0f\\x1a\\n\\t\\x06\\x06\\x18\\x00\\x00\\x00\\x05\\x00\\x00\\x00@\\x02@\\x01 \\x00\\x03\\x00\\v\\x00\\x13\\x00\\x19\\x00%\\x00\\x00%#53%\\x15!\\x15#5#5\\x17#\\x15353\\x1537#\\x153537#\\x15353\\x15353\\x153\\x01   \\x01 \\xfe\\xe0\\x80\\xa0\\xa0\\x80@  \\xa0\\x80@@\\xe0\\xc0@    \\xa0@@\\xc0  \\xc0 \\x80``\\x80\\xa0 \\x80\\x80````\\x00\\x00\\x00\\x04\\x00\\x00\\x007\\x02\\x83\\x01G\\x00\\t\\x00D\\x00N\\x00W\\x00\\x00\\x133\\a#'\\a#73\\x17%\\x16\\x06\\a\\x1e\\x01\\a\\x0e\\x01'.\\x02'&5\\x06\\a\\x06#7327676&+\\x01\\\"&7676763\\a#\\\"\\a\\x06\\a\\x06\\x1e\\x01;\\x012\\x17675&6\\x17\\x16\\a6'\\x06\\a\\x06\\x16\\x17\\x1667676&'&\\a\\x06\\xbb-093\\x1f-117\\x01\\xe7\\x03)\\x1c\\x0e\\x03\\x0e\\x13O%\\x0f\\x17\\x10\\x03\\x01\\a\\v\\x16\\x8b\\v\\u007f\\v\\x03\\x03\\x01\\x01\\x03\\x05X\\x18\\r\\x05\\n\\a\\t\\x16\\v\\x95\\n\\x85\\v\\x03\\x01\\x02\\x01\\x02\\x06\\x04X\\x1d\\x05!=\\t=%&i\\x04\\v1\\x14\\x12\\t\\x17\\x14%\\x1a\\x18\\v\\n\\x03\\f\\x15\\v\\t\\x01 \\xa0jj\\xa0rs\\x13\\x1a\\x06\\x176\\x1c&'\\t\\x04\\x10\\x18\\x0f\\x05\\x06\\x04\\x01\\x02(\\a\\a\\b\\x03\\x03\\r\\x10$\\v\\r\\x02\\x01 \\a\\x03\\t\\x02\\x04\\x01\\x11$\\f\\x01\\x1e#\\a\\x06\\x82\\x17\\x19\\x06\\x15\\x13*\\x04\\x03\\x1ah\\x04\\x06\\x06\\x10\\x02\\x05\\f\\n\\x00\\x00\\x0f\\x00\\x00\\xff\\xc8\\x01\\x90\\x01\\xb9\\x007\\x00F\\x00N\\x00V\\x00^\\x00f\\x00n\\x00v\\x00~\\x00\\x86\\x00\\x8e\\x00\\x96\\x00\\x9e\\x00\\xa6\\x00\\xb0\\x00\\x00\\x13:\\x01\\x1e\\x06\\a4>\\x04\\x16\\x17\\x14\\x0e\\x05'4>\\x057\\\"&\\x0e\\x02\\a.\\x04'\\x1e\\x04\\x17\\x14.\\x01\\x01\\x14\\a\\x06\\\"'&547632\\x17\\x16\\x044&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x164&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x164&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x164&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x1627&'&\\\"\\a\\x06\\a62X\\x02\\x06\\x12\\x11\\x17\\x13\\x14\\f\\x06\\x02\\x02\\a\\n\\x11\\x14\\x1e\\x11\\x02\\x06\\t\\x0e\\x12\\x18\\x0f\\x02\\x05\\x06\\v\\r\\x13\\n\\x02\\x05\\x13\\x12\\x1a\\f\\x01\\x03\\x0f\\x13#\\x15\\x03\\v\\x1a\\x14\\x11\\x0154\\x019 B\\xccB (B^^B(\\xfe\\xe8\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18X\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18X\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18X\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18(\\b\\b>\\xa4>\\a\\tO\\xa2\\x01\\xb8\\x01\\x02\\a\\t\\x11\\x14\\x1e\\x12\\x01\\x05\\x0f\\v\\f\\x06\\x03\\a\\x01\\x05\\x10\\v\\x10\\a\\x05\\x05\\x01\\x04\\f\\n\\r\\t\\a\\x01\\x01\\x03\\b\\x17\\x10\\x04\\r!\\x1a\\x16\\x02\\x01\\x04\\x10\\x16(\\x19\\x03\\b;\\xfe\\xfcO5005OBB11B\\xb6\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11t\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11t\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11t\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11D'\\x11  \\x10(\\x0f\\x00\\x00\\n\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\t\\x00\\f\\x00\\x10\\x00\\x13\\x00\\x1a\\x00#\\x00/\\x009\\x00A\\x00T\\x00\\x00\\x17\\\"&4632\\x17\\x0135#7\\x173\\x06\\a7\\x15'\\x172\\x1d\\x01#547\\x14\\a#\\x11\\x1e\\x03'35#\\x15#5#\\x15#5#\\x17#54#\\\"\\x1d\\x0135'\\a\\x15\\x175'57'#\\x15353\\x16\\x06#\\\"&7'\\x0e\\x01\\x16326\\xf8g\\x91\\x91g\\x1f\\x1e\\xfe\\xf5Ε\\x95`o)F9\\x15\\x01\\b\\x10{\\x17\\x81!8)\\x16\\x88E\\x0e\\x0e\\x0e\\r\\x0eD\\x1a\\x15\\x15E\\x01DD\\x0e\\x0e\\x04$\\x0e\\v\\a\\v\\x0f\\x10\\t\\n\\f\\b\\x02\\x13\\x12\\x19\\x118\\x91Α\\b\\xfe\\x88 \\xd5\\xf5?\\x1e\\xe7\\x10\\b.\\v\\n\\b\\r471\\x01M\\x0e/:HJ0!\\x1e\\x1e!\\xe9\\v\\x19\\x1a\\x19\\x0fg\\x1e\\f\\x1e\\x11\\x06\\x1a\\x06V\\x1b\\f\\f\\x17\\x1c\\n\\n\\t\\x1e\\x19,\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xe0\\x028\\x01\\xa1\\x00\\n\\x003\\x00m\\x00\\x00%\\x14\\x06#\\\"'67>\\x01\\x16\\a45467\\x06\\x17\\x1e\\x016765&5\\x16654&\\a.\\x01\\a\\x06\\a\\x0e\\x01\\x15\\x14\\x1e\\x013276'&#\\\"'4>\\x02;\\x02>\\x053735467;\\x012\\x16\\x1f\\x01\\x1532\\x1732\\x16\\x1f\\x01\\x14\\x06\\a+\\x01\\a\\x14\\x06\\x0f\\x01!\\\".\\x02=\\x01'#\\\"&'\\x01\\x816\\x1d\\x0e\\x02\\x01\\x03\\x16) \\xc3&\\x14\\x06\\x05\\x01\\x0f\\x0f\\x05\\x06\\x03.^O8\\x02\\x13\\t\\t\\x01,9\\n\\x11\\n\\x18\\x06\\x06\\x11\\x02\\x02\\x04\\xbe\\b\\v\\v\\x04\\x04\\x1d\\x04\\x10\\x16\\x19\\x17\\x13\\x06\\x06\\x1c\\v\\x05\\x05V\\b\\v\\x01\\x01\\x1cb\\x15\\x1f\\x11\\x13\\x01\\x01\\x13\\n\\t\\x1e\\x17\\x16\\v\\f\\xfe\\xe0\\r\\x12\\t\\x05\\x17\\x1e\\x11\\x13\\x01\\xfe&:\\x06/I\\b\\x03\\x13^\\x01\\x03\\x12,\\x0e\\xbd5\\x0f\\x0f\\x02\\x06\\x06\\r(<\\v[:4%\\x11\\v\\a\\a\\a\\x15\\x17H\\x1f\\r\\x13\\f\\x15\\x13\\x04\\x01R\\v\\x0f\\a\\x04\\x0f\\x17\\x0f\\f\\x05\\x04\\x01\\x13\\b\\t\\x01\\t\\x05\\x04\\x13K\\x12\\n\\t\\x11\\x13\\x01\\xda\\x13\\x16\\x02\\x01\\t\\r\\r\\x05\\x04\\xda\\x12\\n\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xca\\x02\\x00\\x01\\xb6\\x00\\n\\x00\\x0e\\x00\\x00%\\x14\\x06#\\\"&4632\\x16\\x01\\x113\\x11\\x02\\x00lLLllLLl\\xfe\\x00Z\\xfdLll\\x98mm\\xfe\\x81\\x01\\xec\\xfe\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x12\\xff\\xc0\\x01\\xae\\x01\\xc0\\x00\\x12\\x00\\\"\\x005\\x00\\x00\\x01\\x16\\x15\\x14\\a\\x0e\\x03#\\\"&'&54632\\x032>\\x0254&#\\\"\\x06\\x15\\x14\\x1e\\x02\\x13\\x14\\x06#\\\".\\x0167\\x14\\x162654'6\\x1e\\x01\\x01r<R\\a\\x15'(\\x0e\\x18F S{VSS\\x0e=>/mKPn/?@\\u007fB-$9\\x1a\\x05\\x15\\x1b%\\x1a\\x1b%B&\\x01\\x80?WSn\\t\\x19+\\x1c?*mTX~\\xfe\\x129Qf(PttP(fQ9\\x01\\x1f,A$5A\\x1b\\x12\\x1b\\x1b\\x12\\x1d\\f\\t\\x1b;\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xff\\x01\\xf1\\x01\\x81\\x00!\\x00,\\x00A\\x00I\\x00\\x00%\\x17\\a#\\a\\x15\\a'#\\a/\\x02\\x06/\\x0175'73757\\x1737\\x1f\\x022\\x15\\x17\\x0f\\x014&\\x0e\\x01\\x1e\\x013>\\x027\\x16\\x14\\a\\x06\\a\\x06\\\"'\\x15&'&476762\\x175\\x04\\x1e\\x0164&\\\"\\x06\\x01C\\x15\\b\\x1e\\t\\x14\\x16\\r\\x14\\x14\\x02\\t\\x1d\\x01\\t\\x15\\x15\\b\\x1e\\t\\x14\\x15\\x0e\\x14\\x14\\x02\\t\\x1d\\n\\x15-\\x14\\x1a\\x11\\x01\\x13\\r\\t\\x0e\\a\\xc9\\x11\\x11^\\x018\\x9e8)8\\x11\\x11? 8\\x9e8\\xfe\\xe2Y~ZZ~Y\\xba\\x15\\x14\\t \\b\\x18\\x18\\b!\\t\\x01\\x02\\x14\\x15\\r\\x15\\x14\\t\\x1d\\b\\x15\\x15\\t\\x1d\\t\\x01\\x14\\x15\\x04\\f\\x12\\x01\\x13\\x1a\\x11\\x01\\t\\x0e.\\x100\\x10_\\x0187\\x01*8\\x100\\x10?!87\\x01\\xc9Y\\x01Z~YY\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xe5\\x02\\x80\\x01\\x9d\\x00F\\x00M\\x00l\\x00\\x85\\x00\\x9d\\x00\\xb8\\x00\\xd1\\x00\\xeb\\x00\\xff\\x00\\x007\\x06&'.\\x01'&'&\\a\\\"#67>\\x01\\x17\\x1e\\x04\\x17\\x1e\\x013021\\x0e\\x01\\a\\x06'.\\x01'&\\x0e\\x01\\x16\\x17\\x1e\\x0170703\\x0e\\x01'.\\x02'&\\x06\\a\\x06\\x17\\x1e\\x061\\x06\\x03\\x1667\\x06\\a\\x16\\x13\\x06&'&'5\\x16\\x17\\x167>\\x01\\x1e\\x01\\x17\\x06\\a\\x06\\x17\\x1e\\x01\\x17\\x16\\x1701&'&\\x0676\\x17\\x16\\x17\\x16\\x15\\\"\\x1545.\\x01\\a\\x06\\\"&'&74\\x17\\x16\\x17\\x16\\x17\\\"\\x0e\\x02\\a\\x06'50>\\x01767>\\x02\\x17\\x16\\x170\\x15&'01&\\\"\\a\\x0e\\x05\\a\\x06'&1\\x1667>\\x0476'0'2\\x17\\x1e\\x03\\x17\\x167:\\x016323\\x061\\x06\\a\\x06'&\\x05\\x0e\\x01'.\\x02'&'616\\x17\\x1e\\x05\\x17\\x1e\\x030\\a\\x16\\x15&'&'61\\x16\\x17\\x1e\\x06\\x15\\x16\\xd5\\\"Q\\r\\x05\\x01\\x02\\n.\\t\\t\\x02\\x01\\x01\\x01\\x1bK\\\"#8)'4\\x1e\\x04\\r\\x02\\x02\\x02\\x19\\t\\x1d\\x17\\x03\\x1b\\t\\f\\x16\\x03\\x1c\\x19\\x1dR\\x18\\x01\\x01\\x12?\\x1b\\x16(&\\x0e\\x0e$\\x02\\x01\\a\\x05\\r\\f\\r\\v\\b\\x06\\x05\\x9e\\n\\x19\\x01\\x14\\x11\\x01\\xc5\\x1fD\\x18\\x0e\\x05\\\"\\x15%#\\b\\x10\\v\\a\\x01\\x14\\x04\\n\\x11\\bF\\x13\\a\\x03\\x1b\\r\\x0e3\\xa2*\\x19\\x16\\n\\x05\\x01\\x05%\\x1a\\x1b=C\\x16\\x02\\x01\\x03\\x1a\\\"'\\x90\\v\\x13\\x10\\\"\\x18\\x1a\\x13\\n\\r\\a\\a\\x10\\r\\x11!\\x13\\x13\\x11\\t\\x1a\\x14\\\"\\x0e\\x01\\x0e\\x04\\r\\t\\x0e\\a(\\x1a\\x01\\x11\\x19\\r\\x04\\x12\\t\\x10\\x10\\b)\\xee\\x03!\\x15\\a\\x0e\\t\\x0f\\x05\\x0f\\x15\\x02\\x05\\x05\\x01\\x01\\x01\\x02\\f\\x0e$%\\x1c\\x01\\\\\\x04\\x16\\x11\\x05\\n\\f\\x04\\n\\x12\\x01\\x17\\x18\\x03\\x06\\x04\\x05\\x04\\x06\\x02\\x04\\t\\x05\\x06\\xd4\\x01\\x1d\\x12\\x13\\x1d\\x01\\x18\\x0f\\x05\\t\\b\\x05\\x06\\x03\\x05\\x05h\\x0174\\x144\\x0eD\\t\\x01\\x01\\x01\\x01\\x14\\x12\\x03\\x03\\\"//%\\x05\\x01\\x01\\x02\\v\\x01\\x06\\x10\\x02\\x17\\x02\\x04\\t\\x1d,\\x10\\x11\\b\\n\\x01\\x16\\x1b\\x03\\x03&0\\t\\t\\n\\x12\\f\\x0f\\n\\x10\\n\\a\\x04\\x02\\x01\\x02\\x01\\x17\\n\\x05\\f\\x01\\x04\\x01\\xfe\\xa1\\x01#\\x1b\\x0f\\b\\x01\\x15\\x06\\v\\x0e\\x03\\x02\\x03\\x03\\x02\\x04\\x04\\t\\b\\x04\\x05\\x10\\x06\\x05\\b\\x01\\x01\\a\\xfc\\r\\n\\t\\x1a\\r\\x0f\\x01\\x01\\x01\\x13\\x14\\t\\t\\x1d\\x1c\\x02\\x01\\x01\\x02\\x14\\a\\ai\\x10\\x15\\x16\\x05\\x06\\x01\\x01\\x03\\a\\a\\x06\\x10\\x0e\\x0e\\r\\x02\\x01\\v\\x01\\x03\\x18\\x04\\b\\x01\\b\\x03\\x06\\x02\\x04\\x01\\x05\\r\\x01\\x03\\x02\\a\\x02\\v\\x05\\b\\x04\\x01\\x06\\x89\\x02\\b\\x03\\t\\a\\v\\x03\\n\\x02\\x01\\x01\\x06\\x01\\x04\\x13\\x0f\\xd7\\x03\\x05\\x03\\x02\\a\\f\\x03\\a\\x02\\x01\\x0e\\b\\x01\\x03\\x03\\x05\\x04\\x06\\x02\\x03\\x05\\x01\\x01\\x8a\\x01\\x01\\x03\\x14\\x16\\a\\x01\\x01\\x03\\x02\\x04\\x05\\x05\\b\\x03\\b\\x01\\x06\\x00\\x00\\x00\\x03\\xff\\xf9\\xff\\xe3\\x02@\\x01\\xa0\\x00\\x17\\x00(\\x00;\\x00\\x00%\\x0e\\x03\\x0f\\x0257>\\x01'&\\x0f\\x015676\\x17\\x1e\\x01\\x14'54'&\\x06\\x15\\x11'\\x11\\x16\\x17\\x1e\\x01\\x15\\x14\\x06\\x05.\\x017>\\x01?\\x02\\x15\\a\\x0e\\x01\\x17\\x16?\\x01\\x15\\x06\\x02;\\x03\\v\\n\\t\\x03\\x03͗\\r\\x03\\n\\x19\\x1fe%'E=\\x15\\x16\\xe6\\x12\\b\\v^6L;/=\\xfe\\xa5 \\x11\\x11\\b\\x1a\\t\\t\\x86a\\r\\x03\\n\\x1a\\x1f.PL\\x04\\b\\x06\\x04\\x01\\x02I66\\x04\\f\\x03\\t\\f#8\\r\\x04\\b\\x17\\a\\x12\\x11U\\x8b\\x1f\\x05\\x03\\x0e\\r\\xfe\\xa5\\x1d\\x01\\x9f\\n\\x19\\x15<97*l\\t#\\v\\x06\\f\\x03\\x04/6#\\x04\\f\\x03\\t\\f\\x111\\x0f\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xde\\x01\\xb5\\x01\\xa3\\x00\\x11\\x00\\x17\\x00\\x1d\\x00(\\x00-\\x00\\x00\\x01\\x1e\\x01\\x0f\\x02\\x06&'\\x03&67%6\\x16\\x0f\\x01'\\a\\x1776&\\x05\\x177'&\\x06\\x13>\\x047'\\x13\\x1e\\x01\\x016/\\x01\\a\\x01\\x97\\x11\\f\\f\\xeb#\\b#\\x05i\\x03\\r\\v\\x01\\x10\\x0e\\x16\\b\\x0e\\n\\xbd\\xb1\\x11\\x02\\x04\\xfe\\xea\\x9ea\\xf9\\x04\\x05t\\x01\\x04\\v\\b\\t\\x02\\u007fS\\x01\\x06\\x01\\x13\\x06\\tjZ\\x01P\\x01\\x1f\\r\\xe7Q\\r\\x04\\x10\\x01\\\\\\x0e\\x15\\x02-\\x02\\x17\\x11!1\\x1f\\x10(\\x04\\x047\\xf4\\xe6\\x17\\x01\\x06\\xfe\\xa0\\x02\\t\\x18\\x13\\x15\\x04\\xc5\\xfe\\xed\\x03\\x01\\x01=\\x06\\x03\\t\\xd5\\x00\\x00\\x00\\x00\\x04\\xff\\xfa\\xff\\xd8\\x01\\xc8\\x01\\xa5\\x00\\x1a\\x00%\\x00G\\x00V\\x00\\x00%\\x16\\a\\x0e\\x01+\\x01\\x153\\x15\\x14\\a\\x06'&=\\x0146;\\x0126=\\x0132\\x02\\\"\\x06\\x14\\x1632>\\x0154'\\\"\\x0e\\x01\\x1d\\x01#\\\"&'&7>\\x01;\\x015#54>\\x0376\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06#'2>\\x014.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x02\\x01\\xb8\\x0f\\x0f\\t\\x17\\x16\\xa0k5656 \\x16k\\x1a(((\\x83\\x11\\f\\f\\b\\x06\\t\\x05\\x8a\\x12\\x1f\\x12%\\x16\\x1c\\x06\\x0e\\x0e\\x06$\\x18\\x93k\\x03\\a\\v\\x13\\x0e38\\x16\\x1f\\x1f\\x16r\\x06\\t\\x05\\x05\\t\\x06\\b\\f\\x03\\x06\\a\\xf8?.\\x1c\\x1a\\x0e)&\\x10\\x0f\\x0f\\x10&f\\x16 )\\x1b0\\xfe\\xfe\\f\\x11\\f\\x06\\t\\x06\\b\\xa8\\x12\\x1f\\x111\\x1d\\x1967\\x19\\x1d\\r)\\n\\x0e\\r\\t\\a\\x03\\t\\t\\x04\\x1f\\x15f\\x16 \\x8e\\x06\\t\\v\\n\\x05\\f\\b\\x04\\b\\x05\\x04\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17&6\\x173265#\\\"\\x06\\x1d\\x01265\\x17265#\\\"\\x06\\x1d\\x0126=\\x01&6\\x17\\x01a'88'\\xfe\\xfe'88'2\\x01\\x10\\t8\\x14\\x1d\\x9a\\n\\x0e\\x14\\x1d\\xb0\\x14\\x1d\\x9a\\n\\x0e\\x14\\x1d\\x01\\x10\\t\\x01\\xa08'\\xfe\\xfe'88'\\x01\\x02'8\\xa9\\t\\x10\\x01\\x1d\\x14\\x0e\\n\\x9a\\x1d\\x14\\x10\\x1d\\x14\\x0e\\n\\x9a\\x1d\\x148\\t\\x10\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00U\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056#\\\"#\\\"\\a\\x06\\a\\x063232\\a\\x06#*\\x01#\\\"\\a\\x06\\a\\x0e\\x01&7676#*\\x01#\\\"\\a\\x06\\a\\x06&767676&#*\\x01#\\\"\\a\\x06\\a\\x06\\a\\x06\\x17\\x1e\\x01\\x17\\x1632327656323276\\x91Α\\x91Α\\x01\\xa3\\x04\\t|\\a\\x06\\x03\\x03\\x0e\\x04\\t<\\x10\\t\\x03\\x02\\b\\r5\\r\\b\\x03\\x1e\\x02\\x01\\b\\x04\\x02\\x01\\x18\\x04\\n\\x03'\\x03\\x05\\x02\\x1d\\x01\\x03\\v\\x03\\b\\t\\x1c\\r\\x02\\x04\\x05\\x04#\\x04\\x06\\x02\\b\\x1f\\x13\\a\\x02\\x03\\x02\\x19\\a\\x03\\x05.[\\x06\\x02\\x1f\\x03\\b\\x04A\\t\\x04\\x11\\x01\\xb8\\x91Α\\x91\\xce\\x0e\\t\\x06\\b\\x1f\\t\\b\\x05\\aF\\x03\\x03\\x02\\x05\\x06\\x035\\t\\x04B\\x02\\x05\\x04\\a\\x12\\x15?\\x1d\\x04\\a\\x06\\x12F+\\x10\\x05\\x04\\x03\\x1b\\a\\x04\\x05E\\x02\\a\\b&\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00!\\x00@\\x00G\\x00Q\\x00[\\x00\\x00\\x05#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06'&#\\\"\\a\\x06\\a#'#\\x1535>\\x0132\\x1f\\x01\\x06\\a\\x06#\\\"&'365654'&'&'&#\\\"\\x06\\x15\\x14\\x1632767&\\x16\\a#>\\x013\\x1e\\x013264&#\\\"\\x06\\x14\\x163264&#\\\"\\x06\\x01@\\xc05KK5\\xc05KK\\xb4\\t\\a\\v\\b\\b\\x05\\x01\\x04\\x1c$\\x02\\r\\n\\a\\tx\\x05\\t\\t\\f\\x12\\x10\\x01S\\x02\\x01\\x05\\x05\\a\\b\\n\\n\\n #\\x1f\\\"\\x10\\x0e\\x0f\\b(\\v\\x013\\x01\\x0e\\x0e\\\\\\f\\n\\n\\r\\r\\n\\n\\f\\f\\n\\n\\r\\r\\n\\n\\f K5\\xc05KK5\\xc05K\\xcf\\x03\\x06\\x05\\v\\x13\\x8bZ\\b\\n\\x03F\\x03\\x04\\x03\\x12\\x11\\a\\a\\x06\\x06\\x10\\v\\v\\a\\x06\\x03\\x03%%\\\"'\\x05\\x04\\af\\x10\\x0f\\x0e\\x11\\x05\\f\\f\\x14\\v\\vx\\f\\f\\x13\\v\\v\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf1\\x01\\xb8\\x00\\t\\x00%\\x00(\\x00\\x00%\\a'76\\x16\\x1f\\x01\\x16\\x06\\x032\\x1e\\x01\\x15\\x14\\x06#\\\"/\\x01\\x057/\\x017676/\\x01&'&\\x0f\\x01>\\x01\\x03&5\\x01\\x19\\xc6\\x1c\\xbc(\\x1a\\x05\\v\\x05\\x10BDrB\\x92fE:\\x17\\x01\\x1f0\\n\\xdc]$\\x19#\\f\\n\\x0e0\\\"-\\xde\\x14\\x86{&\\xaa9b6\\v\\a\\x11'\\x10\\x12\\x01\\x05BsCf\\x92#P%\\r\\\"\\x1b\\x1b\\n\\x17!)%0\\b\\x04\\r@Sk\\xfe\\x83>F\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00#\\x00:\\x00E\\x00P\\x00[\\x00\\x00\\x01\\x1e\\x01\\x14\\x06\\a\\x0e\\x01'\\x0e\\x01.\\x01'>\\x04'.\\x02676&/\\x01>\\x02\\x16\\x176\\x16\\x03264&\\\"\\x06\\x15\\x14\\x17\\x16\\a0\\x06\\a676?\\x01\\x1632'\\\"&'46\\x16\\x1d\\x01\\x14\\x06746\\x16\\x1d\\x01\\x16\\x0e\\x01.\\x01\\x17\\\"&'46\\x16\\x1d\\x01\\x14\\x06\\x01\\xe6,..,7\\x94=!L>(\\v\\x03\\n\\x18\\x11\\v\\x04\\x12\\x1a\\v\\x18\\x1f\\x05\\x1e\\x12\\x12\\v(?K!>\\x93\\x89_\\x87\\x87\\xbe\\x864\\r\\x1d\\x02\\x01\\x1b\\x19\\x14\\x10\\x14+,\\x01n\\x0e\\x14\\x01\\\"#\\x14<!#\\x01\\x0e\\x14\\x15\\x0e\\x8f\\x0e\\x14\\x01\\\"#\\x14\\x01T\\x1cPQP\\x1c$\\x18\\r \\x1c\\x06\\n\\a\\x03\\t\\x1b\\x1b#\\x10\\x132>F\\x1f\\x19:\\x11\\x11\\a\\n\\x06\\x1d\\x1f\\r\\x18\\xfe\\xb3WzWW=5),7\\x04\\x01\\x02\\r\\v\\x10\\x13\\vq\\x13\\x0e\\x16\\x12\\x11\\x15\\x01\\x0e\\x14!\\x16\\x12\\x11\\x15\\x01\\r\\x12\\x04\\x04\\x12\\x15\\x13\\x0e\\x16\\x12\\x11\\x15\\x01\\x0e\\x14\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1b\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x01'61\\x166/\\x01&\\\"\\x0f\\x0137\\x17#\\\"\\x06\\x1f\\x01\\x91Α\\x91Α\\x01\\x95eJ\\x16\\x14\\x0e\\x9e\\n\\\"\\n\\x94ZUTK\\x16\\x12\\rp\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xedw\\x01\\x01(\\x11\\xb9\\r\\r\\xadcc)\\x0f\\x84\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\xff\\xec\\x01\\xc0\\x01x\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00\\x00\\x01'7\\x17\\x057\\x17\\a'7\\x17\\x0f\\x01'7\\x17'7\\x17\\x0f\\x01'7\\x17\\a7\\x17\\x0f\\x017\\x15\\a\\x17\\a'?\\x01\\a'7\\x17\\a'?\\x01\\x17\\a'\\x17/\\x017'7\\x17\\a\\x177\\x17\\a?\\x01\\x17\\a\\x01^6JN\\xff\\x00.\\\"7Z \\x11%#\\t\\x1d\\x0e8\\x18\\t\\x1b\\x1d\\x04\\x17\\x068\\x15\\x03\\x16\\x1d\\x14\\x15<\\x1c\\x01\\x19+\\x1f\\x05\\x1b!)\\b#+\\x15.\\x0e|G\\x187-+\\x1c3\\x16=5P\\x11CBY\\x01\\\".',\\x05\\x1c\\\"\\x1e\\x1d\\x16\\x1c\\x17;#\\x12#B\\x12\\x18\\x121\\x1c\\x0f\\x1c \\r\\\"\\f\\f\\n&\\t\\x16\\t/\\v\\x0f\\r)\\x0e\\x9c\\x06@\\nH9\\x0e6\\xd6\\x04`\\b\\xac\\x16-\\x162\\x13W\\v\\xa5\\x1dB\\x1a\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xd0\\x01\\xd0\\x01\\xa0\\x00\\x05\\x00\\x14\\x00@\\x00D\\x00\\x00\\x13\\a5\\a7\\x15'\\x0f\\x01\\x0e\\x01\\x15\\x14\\x16\\x17\\x15.\\x01546\\x00\\x06'0'.\\x05'&/\\x01\\x06\\a?\\x01>\\x0154&'5\\x1e\\x03\\x15\\x14\\a\\x17\\x16\\x17\\x1e\\x04\\x17\\x161\\x064\\\"\\x14\\xddD66\\x10\\x01\\x0f\\x1f&/$:MO\\x01\\x81\\x1e\\x0e<\\b\\f\\b\\x06\\x03\\x05\\x01\\x11)\\t&,\\x02\\x10$-5+\\x1f7(\\x17\\x1d\\x0f\\x0e&\\x03\\x11\\x05\\r\\f\\a,\\x14\\x10\\x01>҃\\x19\\xbfs|\\x045\\f7\\\"';\\a6\\b[<<Z\\xfeX\\x1e\\x05,\\x06\\v\\b\\n\\x06\\r\\x03&\\x0e\\x0f\\x1a\\x03\\a1\\t:%*>\\x044\\x02\\x1b*9 0*\\n(\\x11\\x01\\a\\x04\\b\\r\\n<\\x13\\x10\\x10\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\xf0\\x01\\x80\\x00\\b\\x00\\x15\\x00\\x007\\x1e\\x02\\x17!>\\x02'\\x1e\\x03\\x17#.\\x03'6X-~w\\x0e\\xfex2M\\x06\\r)ps^\\x0e`\\t5EE\\\"\\x02\\xe8\\x069m<\\x04Me\\xca\\x06>`\\x90L-T?-\\rQ\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\r\\x00\\x15\\x00\\x00\\x05\\a'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x06264&\\\"\\x06\\x14\\x01\\xc0\\x1e\\x92.<Dbb\\x89b \\xbbjKLiL\\x01\\x1f\\x94&c\\x8cccF7,\\x1fLlLLl\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xdd\\x01\\xc3\\x01\\xa1\\x00M\\x00Q\\x00\\x00%\\x16\\x06\\x0f\\x01\\x17\\x16\\x06\\a\\x06&/\\x01\\a\\x17\\x16\\x0e\\x01\\a\\x06&/\\x01\\x06'\\\"&'&>\\x02?\\x01'\\x06'\\\"&'&>\\x01?\\x01'&>\\x0276\\x16\\x1f\\x017'&676\\x1e\\x02\\x1f\\x0176\\x1e\\x01\\x06\\x0f\\x01\\x1776\\x1e\\x01\\a7'\\a\\x01\\xbe\\x05\\x0e\\x0e-\\x10\\x04\\r\\x0e\\x10\\x1a\\x04\\x10^\\x10\\x03\\x04\\r\\t\\x0f\\x1a\\x05\\x104\\x05\\v\\x13\\x04\\x02\\x01\\x06\\v\\a-\\x1e5\\x05\\v\\x13\\x03\\x03\\x04\\f\\n-\\x10\\x02\\x01\\x06\\v\\a\\x0f\\x1b\\x04\\x10]\\x0f\\x05\\x0e\\x0e\\a\\x0e\\r\\n\\x02\\x10-\\x0e\\x1b\\t\\r\\x0e.\\x1f-\\n\\x12\\x0f\\xfb^\\x1f]\\xb2\\x0f\\x1b\\x04\\x0f/\\x0f\\x1a\\x05\\x05\\x0f\\r/ .\\n\\x13\\x0e\\x03\\x05\\x0e\\r0\\x12\\x01\\x0e\\n\\a\\x0f\\f\\n\\x02\\x0fZ\\x11\\x01\\r\\v\\n\\x12\\x0f\\x03\\x0f/\\a\\x0f\\f\\n\\x02\\x05\\x0e\\x0e/\\x1f/\\x0f\\x1a\\x05\\x03\\x02\\x06\\v\\a/\\x0f\\x05\\r\\x1d\\x1b\\x05\\x0fZ\\x0f\\x03\\x03\\r9 Z\\x1f\\x00\\x00\\x00\\x02\\x00\\x04\\xff\\xdc\\x01\\xbd\\x01\\xa5\\x00\\x10\\x007\\x00\\x007&>\\x01\\x1e\\x01\\x06\\a\\x06\\x17\\x16\\x17\\x14\\a\\x0e\\x01&\\x137&'&\\x06\\a\\x06\\x17\\x1e\\x02\\a\\x14\\x0e\\x01'\\\"'\\a\\x163\\x16>\\x0356'.\\x0254>\\x0132@<\\n\\x85\\xb2w\\tC\\n!\\x16\\x01\\x04,z\\x89\\xaa'\\x1d/)7\\x01\\x01\\x1e\\r/\\x1b\\x01\\x0f\\x10\\a\\x1f\\x11(\\\"2\\x06\\x10 \\x18\\x13\\x01\\x1d\\r/\\x19\\x12\\x0e\\x06\\x1a8B\\xb3w\\t\\x84\\xb2<\\t\\x14\\x0e\\x05\\x03\\x01\\x13\\x05+\\x01\\x04)\\x1a\\x01\\x01+&$\\x13\\a\\x0f\\x10\\x0e\\n\\f\\x04\\x01\\x18*!\\x01\\x01\\t\\x0f\\\"\\x17&\\x12\\b\\x0e\\x0e\\x0e\\n\\r\\x02\\x00\\x02\\xff\\xfb\\xff\\xbe\\x01\\xbc\\x01\\xc4\\x00\\x1f\\x00=\\x00\\x00%\\x17\\x16\\x0f\\x01\\x0e\\x01/\\x02&?\\x016\\x1f\\x01\\x16?\\x016/\\x01&\\x06/\\x01&?\\x016\\x1f\\x017\\x16\\x0f\\x01\\x06/\\x01&\\x0f\\x01\\x06\\x1f\\x01\\x166\\x1f\\x01\\x16\\x0f\\x02\\x06/\\x02&?\\x016\\x17\\x01\\u007f,\\a\\b\\xc6\\x04\\t\\x02\\x02\\xd1\\x06\\b-\\b\\x06\\x98\\a\\a]\\b\\aT\\x06\\x0f\\aD\\x06\\a:\\a\\x06\\xaa4\\a\\b-\\b\\x06\\xa1\\x06\\b\\\\\\a\\x06_\\x06\\x10\\x069\\a\\b\\a2\\b\\a\\xab+\\x06\\b\\xce\\t\\b\\x9c*\\x06\\x06\\xa4\\x03\\x01\\x02\\x01\\xc4\\a\\x06\\\"\\x06\\x06\\x94\\x06\\x06J\\x06\\x06R\\x06\\f\\x06A\\x06\\x06,\\x05\\x06\\xa7V\\x06\\x06$\\x06\\x06\\x9f\\a\\x06H\\x06\\x06\\\\\\x06\\f\\x067\\x06\\x06\\x06'\\x06\\x06\\xa5*\\x06\\x06\\xa2\\a\\x05\\x00\\x04\\x00\\x00\\xff\\xff\\x01\\xc0\\x01\\x80\\x00\\a\\x00 \\x002\\x00>\\x00\\x00\\x00\\x14\\x06\\\"&462\\x17\\x14\\x06#\\a\\x0e\\x01#\\\".\\x02/\\x015\\x176\\x177>\\x0132\\x1e\\x01\\x064&#\\\"\\a\\x17\\x1e\\x01\\x0e\\x01'.\\x01'\\x163264&#\\\"\\x0e\\x01\\x15\\x14\\x1632\\x01\\x8c$3##3XC/m\\x031!\\x0e\\x1c\\x16\\x0f\\x03:a\\x17\\x1dG\\x01B/\\x1f5\\x1e\\xf5$\\x1b\\x06\\a\\x1a\\x13\\x10\\x0f&\\x13\\x04\\x15\\x06\\x12%\\x1b\\xf3, \\x14$\\x14-\\x1f \\x01(3##3$>/CO!,\\n\\x12\\x19\\x0e\\x17k'\\x0e\\x02e/B\\x1e5\\xf24%\\x02\\n\\b&&\\x10\\b\\x01\\t\\x02\\\"\\xd9?,\\x14#\\x15\\x1f-\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02A\\x01\\xc0\\x00\\x00\\x00\\xd4\\x00\\x00%'\\x1e\\x04\\x14\\x15\\x14\\a\\x06\\a\\\"\\a\\x06'<\\x01.\\x01'.\\x02'.\\x01\\x0e\\x02\\a\\x0e\\x02\\a\\x06\\a\\x0e\\x02\\x15\\x0e\\x01\\a\\x0e\\x01\\x15\\x0e\\x01\\x17\\x1e\\x01\\x170\\x1e\\x01\\x15\\x14\\x0e\\x011\\x0e\\x02\\a\\x06\\\"'&76&*\\x01'&'&'&656&7>\\x014645&>\\x01'\\\"\\x0e\\x01'.\\x02'&\\x06\\a\\x0e\\x02\\a\\x06\\x170\\x1e\\x01\\x17\\x1e\\x02\\x17\\x16\\x17\\x16\\a\\x06#\\\"\\x06\\a\\x0e\\x01'&'46'.\\x02'&54'&7>\\x035&\\\"5.\\x016'.\\x02767>\\x01\\x16\\x17\\x1e\\x0167>\\x017>\\x027>\\x012\\x163>\\x0132\\x16\\x06\\x17\\x16307>\\x023\\x16\\x0e\\x01\\x150\\x17\\x16\\x17\\x1e\\x03\\x022\\x06\\x04\\b\\x04\\x03\\x01\\a\\x04\\x03\\x01\\r\\v\\x04\\x01\\x05\\x05\\x05\\v\\r\\x03\\x03\\x04\\x04\\x02\\x04\\x01\\b\\x12\\x13\\a\\x19\\t\\x02\\x04\\x04\\x03\\b\\x06\\x01\\a\\x03\\x02\\x04\\x01\\t\\x02\\x04\\x05\\x05\\x06\\x03\\x02\\x01\\x01\\x04\\x1d\\x03\\x05\\x03\\x02\\x02\\x02\\x06\\x02\\x03\\x01\\x01\\x01\\x01\\t\\x03\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x04+%\\x1d\\x14\\x1d\\x0f\\x01\\b\\x10\\x03\\x01\\x11\\x14\\x02\\a\\v\\x03\\x05\\x02\\x01\\x03\\x03\\x01\\x03\\x06\\x05\\x06\\x05\\n\\x01\\x01\\x01\\x02\\x14\\a\\x06\\x01\\x01\\x02\\x01\\b\\x06\\x02\\x02\\t\\x02\\x02\\x01\\x01\\x01\\x02\\x01\\x04\\x05\\x03\\x01\\x01\\x01\\x05\\x02\\x01\\x05\\x13\\x13\\x19>5\\x06\\x1c9\\x14\\t\\x18\\x02\\x02\\x1e,\\f\\x10\\x1d\\x10\\r\\x01\\x02\\r\\x02\\x02\\x01\\x01\\x01\\x01\\x05\\v\\x03\\b\\a\\x02\\x05\\t\\x0f\\x05\\x03\\x03\\x03\\x03\\x02\\x03\\xf8N\\f\\x12\\t\\a\\x03\\x02\\x02\\x04\\r\\a\\x01\\x02\\x02\\v\\x02\\x05\\x04\\b\\x04\\x05\\x05\\x05\\x02\\x02\\x01\\x02\\x02\\x05\\x02\\t\\x1a\\x19\\t \\x10\\x03\\x0e\\f\\x01\\t'\\x14\\x06\\x18\\x02\\b*\\n\\x02\\x04\\x02\\t\\n\\x01\\x03\\x02\\x01\\x02\\x03\\x02\\x01\\x02\\x03\\x03\\f\\x05\\x05\\x01\\x02\\b\\x02\\x02\\x06$\\x01\\x0e\\x1e\\x03\\x04\\x05\\x01\\x05\\a\\b\\v\\x14\\x05\\x03\\x05\\x01\\x04\\x04\\x0e\\f\\x01\\x03\\x05\\x05\\x01$+\\b\\x16-\\a\\n\\x02\\x01\\x01\\x02\\x01\\x03\\r\\b\\x02\\x03\\x04\\x01\\x02\\x03\\x03\\x02\\x03\\x01\\n\\x01\\x01\\x02\\x05\\x04\\x06,\\x11\\x1d\\t\\a\\x01\\x02\\x02\\x06\\x02\\x01\\x01$*\\b\\f\\x05\\x1d\\x11\\x0e\\x16\\x10\\x10\\v\\x02\\r\\x02\\x06\\x04\\r\\x06\\b\\x02\\x01\\x19!\\x06\\n\\n\\x02\\x01\\x19\\v\\v\\x04\\x05\\x05\\x02\\t\\x06\\x03\\x11\\x19\\x02\\t\\x06\\x0e\\v\\t\\x02\\b\\x00\\x00\\x00\\x01\\x00\\x12\\xff\\xc0\\x01\\xee\\x01\\xc0\\x002\\x00\\x00\\x01\\x17\\x15\\x0f\\x0663\\x177\\x0f\\x03?\\x01\\x17?\\x02\\a7'7'\\x17'\\x17'\\x17'\\x17/\\x01\\x17'\\x177'?\\x01\\x1f\\x01\\a\\x17\\x0f\\x01\\x01\\xe0\\x04\\x19'8P\\x11\\b\\n\\x12\\x02\\x14C]8\\x16\\a\\x15\\a\\x14Y9\\x0e}\\x0f\\xadR\\xa6sf\\xfd\\x1f|\\x8f\\x121.\\xc3+l\\f\\x15\\x04&\\x1d\\f\\a\\b\\r\\n\\x01\\x04\\x1c\\x1c,ND&\\x18\\f\\x04@\\x01'\\x1b$\\x1c\\x02J\\x05\\r.3D\\x17\\x126\\n{\\x12l\\u007f&Jc&\\x12Tz8a\\t\\x11%\\v\\x19\\x04\\x06\\f\\b\\x14\\x00\\x00\\f\\xff\\xff\\x00E\\x02\\x80\\x01a\\x00\\x0f\\x00\\x1e\\x00@\\x00N\\x00Z\\x00a\\x00m\\x00t\\x00\\x8a\\x00\\xa8\\x00\\xb0\\x00\\xbd\\x00\\x00%\\x14\\x0e\\x01#\\\"'232654'\\x1e\\x01%\\x14\\x17.\\x0154632\\x17&#\\x0e\\x01\\x177\\x163254.\\x0154632\\x16\\x1d\\x01#54#\\\"\\x15\\x14\\x1e\\x02\\x15\\x14\\x06#\\\"&'73\\x15\\x14\\x06\\\"&=\\x013\\x15\\x1425\\x175#532\\x16\\x14\\x06+\\x01\\x1553254+\\x01\\x175#532\\x16\\x14\\x06+\\x01\\x1553254+\\x01\\x1754+\\x01532\\x1d\\x01\\x14;\\x012=\\x013\\x15\\x14+\\x01\\\"75#532\\x1d\\x01#54+\\x01\\x153\\x15#\\x15\\x14;\\x012=\\x013\\x15\\x14+\\x01\\\"7#53\\x15#\\x15#73\\x1773\\x15#5\\a#'\\x15#\\x02\\x80ApC#$\\f\\fe\\x8e3.5\\xfd\\xb03.5\\x8ee%\\\"\\r\\ne\\x8e<\\t\\t\\v\\r\\x14\\x14\\x10\\f\\t\\x10\\x0e\\v\\r\\r\\x0f\\r\\x10\\r\\b\\x0f\\x03v\\x0f\\x12\\x1e\\x13\\x10$\\\"\\b'\\f\\x10\\x10\\f\\x0f\\r\\x0e\\x0e\\r9\\b'\\f\\x0f\\x0f\\f\\x0f\\f\\x0e\\x0e\\f9\\x03\\x05\\x0f\\t\\x02\\x13\\x02\\x0f\\t%\\b?\\b4\\b\\x0e\\x03\\x13\\x1c\\x1c\\x03\\x13\\x03\\x0e\\b'\\b;\\x03\\a\\x02\\x02\\x06\\x02\\x02\\x02\\x03\\x02\\x02\\x02\\x02\\x01\\xba 6\\x1f\\x05J5+#\\x101\\x06,\\\"\\x101\\x1c0E\\x05\\x01\\x01J]\\v\\n\\n\\x06\\t\\x0e\\v\\n\\x0e\\b\\t\\b\\x04\\a\\t\\x05\\a\\x06\\f\\n\\v\\x0e\\a\\x03M7\\x0e\\x12\\x12\\x0e77\\x11\\x11\\x1fH\\x0e\\x10\\x18\\x10\\x1e+\\x0f\\x0eHH\\x0e\\x10\\x18\\x10\\x1e+\\x0f\\x0e?=\\x02\\x0e\\b>\\x02\\x02\\x06\\r\\t\\t?\\x0e\\b\\r\\x05\\x02\\x16\\r\\x15\\x02\\x02\\x06\\r\\tU\\x01\\x01\\x06\\a\\x05\\x05\\a\\x05\\x05\\x05\\x05\\x00\\x01\\xff\\xff\\xff\\xfc\\x01\\xc3\\x01\\x84\\x00\\x15\\x00\\x00\\x01\\x03\\x06/\\x01\\a\\x06#?\\x016'&\\x0f\\x01'&67%6\\x16\\x01\\xbfD\\b\\x1dg2\\n\\v\\b\\xbf\\a\\a\\x06\\a\\xecf\\x11\\x02\\x14\\x01\\x8d\\x0f\\x12\\x01]\\xfe\\xc2\\\"\\x10L0\\ni\\xac\\a\\x01\\x02\\x05\\x95 \\x05\\x14\\a\\x9a\\x05\\x11\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00(\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12>\\x01'.\\x01\\\"\\x06\\a354;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\x16\\x01\\x9e\\x0e\\x14\\x14\\x0e\\xfe\\x84\\x0e\\x14\\x14\\x0e\\x94pG\\x06\\x05NhN\\x05^\\aD\\a\\aD\\a^\\x06\\x01\\xa0\\x14\\x0e\\xfe\\x84\\x0e\\x14\\x14\\x0e\\x01|\\x0e\\x14\\xfe\\x93\\fW84FF4\\x14\\a\\aD\\a\\a\\x148\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xbc\\x01\\xc0\\x00\\v\\x00\\x0f\\x00\\x00\\x01\\x11\\a'5\\x17\\x15\\x1775'7'\\a'7\\x01\\xbc\\xe2\\xdaX\\x85\\x88eW\\\"XVY\\x01@\\xff\\x00\\x80\\x80\\xd6-uKK\\x97:5\\x155/7\\x00\\x00\\x17\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x03\\x00\\v\\x00\\x11\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x009\\x00=\\x00A\\x00E\\x00I\\x00O\\x00S\\x00W\\x00]\\x00c\\x00k\\x00o\\x00\\x00\\x16\\\"'3'\\x14\\x15#4=\\x013\\x17\\x16\\x17#&'7\\x16\\x17#&'7\\x15#57\\x15#57\\x15#5\\x17\\x15#5\\x17\\x15#57\\x15#5\\x17\\x15#5\\x05673\\x06\\a'53\\x15\\a53\\x15'53\\x15'3\\x15#\\x03&'!\\x06\\a\\x0353\\x15\\a53\\x15\\x05&'!\\x06\\a'673\\x06\\a'53\\x15\\x14\\x15#4=\\x013\\x15\\xfbv0\\xd6\\xc4gg\\x14\\x0e\\x13\\x8a\\x06\\x04b\\x03\\x06n\\x02\\x02fggggggggggggg\\x01\\r\\x06\\x03i\\x01\\x03bgggggggg\\xcb\\x14\\r\\x01%\\x0e\\x12\\x19ggg\\xfe\\xa7\\x04\\f\\x01S\\b\\nt\\x13\\rt\\a\\x02Vggg  \\xa1\\x04\\x03\\x02\\x05\\rF\\x10\\t\\f\\r#\\f\\v\\v\\fE\\x11\\x11\\xad\\x05\\x05#\\x02\\x02E\\b\\bh\\x0f\\x0fE\\n\\n#\\f\\f\\xa1\\v\\f\\f\\v\\xba\\n\\n%\\f\\fJ\\b\\bM\\x02\\xfeg\\x0f\\x0f\\x10\\x0e\\x01s\\x05\\x05\\x94\\x0f\\x0f\\xba\\x05\\x17\\x0f\\r%\\t\\x10\\x14\\x05R\\r\\r\\x02\\x05\\x03\\\"\\x11\\x11\\x00\\x00\\x03\\x00\\a\\xff\\xbd\\x02y\\x01\\xc1\\x00-\\x00I\\x00n\\x00\\x00\\x01\\x0e\\x05\\x0f\\x01\\x06\\x0f\\x01\\x06'.\\x01'&?\\x016?\\x01>\\x0476367'432\\x17\\x16\\x17\\x16\\x0f\\x01\\x06\\x17\\x14'&567632\\a\\x14\\x172\\x17\\x16\\x17\\x16\\a\\x06\\a\\x06'&'&#&56\\x01\\x16\\a\\x0e\\x02\\a\\x06/\\x01&'&74>\\x0476\\x17\\x1e\\x05\\x17\\x1e\\x05\\x17\\x01\\x91\\x12\\x1f\\x11\\r\\x05\\x03\\x01\\x05\\x03\\v\\x94\\r\\x15\\x1e4\\r\\t\\f\\x95\\v\\x10\\x1d\\x06\\x06\\x10\\x155\\\"\\x02\\x02\\x05\\x01\\x01\\x04\\v\\x0e\\x0f\\x03\\x01\\x03\\x05\\x03\\x01\\xb2\\a\\x04\\x0e\\x0e\\f\\x03\\x01\\a\\x02\\x01\\n\\x10\\x02\\x02\\x14\\x15\\x02\\x01\\f\\n\\x01\\x01\\x05\\x01\\x01\\x83\\f\\t\\b\\x1e%\\x14\\x15\\f\\x95\\v\\x03\\x03\\x03\\x02\\x02\\a\\t\\x12\\v\\x01\\x02\\x03\\b\\x04\\x05\\x03\\x05\\x03\\x04\\x12\\x06\\f\\x05\\b\\x03\\x01\\x8e%;\\x1f\\x17\\n\\b\\x05!\\x12\\x0f\\xd0\\x11\\x02\\x04&\\x1b\\x13\\x11\\xd0\\x0f\\t\\x0f\\x03\\x06\\x11\\x187\\\"\\b\\x03\\x02\\x04\\x04\\n\\n\\v\\x03\\x01\\x01\\x01\\a\\x02\\n\\x03\\x02\\v\\n\\n\\b\\x03\\x02\\b\\n\\x10\\x02\\x03\\x14\\x16\\x02\\x02\\x18\\x14\\x01\\x03\\x02\\a\\xfe\\x8e\\x11\\x13\\x12\\x1e\\x12\\x03\\x02\\x11\\xd0\\x0f\\x12\\x10\\x0e\\x03\\x04\\x06\\f\\x10\\\"\\x14\\x03\\x03\\x03\\t\\x04\\x05\\x03\\x03\\x02\\x02\\t\\x03\\b\\x05\\a\\x05\\x00\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00}\\x00\\x85\\x00\\x8d\\x00\\x99\\x00\\xa5\\x00\\xb1\\x01\\v\\x01\\x1c\\x00\\x007\\x17#&'&761\\x14\\x05\\x06\\a\\x17'\\x06\\a\\x17'\\x06\\a\\x17'\\x06\\a\\x17'\\x06\\a\\x17'\\x06#\\a'&'\\a7&'\\a7&'\\a7&'\\a7&'\\a7&'\\a7&545'767'\\x1767'\\x1767'\\x1767'\\x1767'\\x1767'\\x176?\\x01\\x172\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x1f\\x01\\a\\x14\\x15\\x14\\a\\x17\\x064&\\\"\\x06\\x14\\x1626\\x14\\x06\\\"&462\\a\\x14\\x17\\x16\\x17654'&5\\x06'\\x14\\x17\\x16\\x17654'&5\\x06\\a\\x14\\x17\\x16\\x17654'&5\\x06\\x17&=\\x01\\x06#\\x16\\x1d\\x01\\x14+\\x01&'\\x06\\a\\x16\\x17\\x16\\x17#&'\\x06\\a\\x16\\x17\\x14\\x16\\x17#.\\x01'\\x06\\a\\x16\\x17\\x14\\x161#.\\x02547\\x06\\x15\\x14\\x16\\x15\\x14\\a&+\\x01'&5470\\x06\\a4&5\\x06\\a2\\x1e\\x01\\x15\\x0e\\x01\\a\\x06\\x17\\x16\\a32\\x16\\x15673275\\x06#\\x16\\x1d\\x01\\x14\\x16327.\\x02'&\\x9d\\x05\\b\\x02\\x02\\x02\\x02\\x04\\x01,\\x03\\a+-\\b\\f\\\"%\\f\\x10\\x19\\x1d\\x10\\x14\\x10\\x13\\x14\\x16\\a\\v\\x16\\x16\\x02\\x02\\x16\\x16\\v\\a\\x16\\x14\\x13\\x0f\\x13\\x11\\x1c\\x19\\x10\\r$\\\"\\f\\b-+\\b\\x0333\\x0278\\x02\\x06:;\\x06\\t7;\\t\\f16\\f\\x0e(.\\x0e\\x10\\x1b\\\"\\x10\\x10\\f\\x13\\x11\\x11\\x04\\x04\\x11\\x10\\x14\\f\\x11\\x0f\\\"\\x1b\\x0f\\x0f.(\\x0e\\f61\\f\\t;8\\t\\x06<:\\x06\\x0288\\x013Jg\\x92hh\\x92OY\\u007fYY\\u007f|\\x04\\x05\\x03\\x04\\x03\\x03\\n)\\x04\\x05\\x03\\x04\\x03\\x03\\n\\x13\\x04\\x05\\x03\\x04\\x03\\x03\\n\\xcd\\b\\r\\x05\\t\\x05\\x12\\x02\\r\\x02\\t\\x04\\x02\\x06\\x01\\t\\a\\x05\\x01\\t\\x03\\x02\\x03\\x01\\t\\x01\\x06\\x01\\x02\\t\\x04\\x01\\x01\\x12\\x02\\x06\\x03\\x01\\x0e\\n\\x01\\x10\\x03\\f\\v\\x06\\x02\\x05\\x01\\x04\\x01\\v\\x01\\x02\\x02\\x01\\n\\x02\\a\\x04\\x03\\x05>\\x04\\v\\f\\x05k\\x06\\x18\\r\\a\\n\\f\\f\\f\\x02\\x02\\x04\\x03\\x01\\x12\\xa3\\x0f\\a\\x03\\x06\\x04\\x05\\x04\\x19\\x14\\x14\\x17\\x13\\x14\\x11\\x1f\\x1b\\x12\\x0f\\\" \\x0f\\v%$\\v\\x05'&\\x06&&\\x01\\x05&'\\x05\\n#%\\v\\x0e\\x1f\\\"\\x0f\\x11\\x1a\\x1e\\x12\\x14\\x13\\x17\\x14\\x14\\t\\x0e\\r\\r\\x06\\b\\x03\\x03\\x13\\x13\\x10\\n\\x11\\x11\\x1e\\x19\\x10\\x0e,'\\r\\n84\\n\\bA?\\a\\x04GF\\x03\\x01HH\\x04FG\\x04\\a?A\\b\\n48\\v\\f',\\x0e\\x10\\x19\\x1e\\x11\\x12\\v\\x10\\x13\\x13\\x03\\x03\\a\\a\\f\\x0e\\x0e!\\x92hh\\x92g\\xef~ZZ~Zy\\x03\\x02\\x03\\x05\\b\\x03\\x03\\x04\\x04\\x04\\n\\x10\\x03\\x02\\x03\\x05\\b\\x03\\x03\\x04\\x04\\x04\\n\\x03\\x03\\x02\\x03\\x05\\b\\x03\\x03\\x04\\x04\\x04\\vZ\\x03\\rp\\x13\\x15\\a@\\a\\x05$\\x02\\f\\x03\\x03\\x11\\x04\\x13\\r\\x03\\v\\x03\\x03\\x01\\b\\x02\\x02\\x11\\x03\\x02\\f\\x03\\x03\\x01\\x01\\x05\\x10\\n\\x03\\x04\\x04\\x11\\b\\x04\\x1b\\x02\\x03\\x02\\x15\\x1c\\x0e\\x05\\x05\\a\\x06\\x01\\x01\\b\\x02\\x01\\r\\x05\\x05\\x02\\x01\\r\\x03\\n\\f\\a\\a\\x10\\x06\\r\\b!e\\x12\\x16\\aB\\f\\b\\x02\\x01\\x01\\x01\\x01\\a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf8\\x01\\xc0\\x01\\xa0\\x00;\\x00Q\\x00\\x00\\x13>\\x03;\\x012=\\x014632\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"\\x0e\\x02\\x15\\x14\\x15\\x0e\\x01\\\"&5&54.\\x01+\\x01\\\"&=\\x014>\\x012\\x1e\\x01\\x1d\\x01\\x14;\\x012\\x1e\\x02\\x12\\\"'4.\\x015&632\\x1f\\x017632\\x16\\a\\x0e\\x01\\x15\\xe0\\x01\\x03\\t\\x16\\x0fc \\f\\t\\x06\\n\\x06!\\\"d\\v\\x0e\\x06\\x02\\x01\\x0e\\x12\\x0e\\x01\\x03\\x10\\re\\\"!\\x06\\n\\f\\t\\x06 c\\x10\\x15\\t\\x03\\x13$\\b11\\t\\x12\\x12\\x15\\tCC\\t\\x15\\x12\\x12\\t\\x01a\\x013\\n\\r\\x14\\n\\x16\\f\\t\\r\\x06\\n\\x06% \\x1e\\x04\\t\\b\\x06\\x01\\x02\\n\\r\\r\\n\\x02\\x01\\b\\n\\t\\x1e %\\x06\\n\\x06\\x06\\n\\x06\\f\\x16\\v\\x13\\r\\xfe\\xbb\\x10\\x01UU\\x01\\x0e\\x1e\\x14vv\\x14\\x1e\\x0e\\x01\\xaa\\x01\\x00\\x00\\x00\\x06\\x00\\f\\xff\\xbe\\x01\\xfa\\x01\\xc1\\x003\\x00Z\\x00e\\x00s\\x00\\x80\\x00\\xad\\x00\\x00\\x01\\x1e\\x01\\a\\x0e\\a#\\x0e\\x02'\\x06\\a\\x0e\\x03\\\"\\x06'.\\x035'7#.\\a767>\\x01;\\x01\\x1e\\x02\\x176&'.\\x02'*\\x01\\x0e\\x02\\a\\x06\\a\\x16\\x06\\x1e\\x02\\x17\\x06\\x15\\x14\\x16?\\x01\\x16>\\x0172>\\x05'\\x14\\\"5&'\\\"&63\\x16\\x176&'\\\"&63\\x1e\\x01\\a\\x14\\x06&\\x17\\x14\\x06&54&#\\\"432\\x16\\a\\x0e\\x01'.\\x01'&'&'.\\x01/\\x01&676\\x17\\x16\\x17\\x16\\x17\\x16\\x0f\\x01\\x0e\\x01\\x1d\\x01\\x1e\\x04\\x172?\\x016\\x17\\x16\\x17\\x16\\x01\\xbc!\\x1c\\v\\x03\\r\\x10\\x15\\x13\\x16\\x0e\\x11\\x01\\a\\\"J%\\x15\\t\\x03\\n\\x04\\t\\x04\\n\\x02\\x04\\x06\\x02\\x01\\x01\\x01\\x01\\x15$\\x17\\x13\\t\\a\\x01\\x01\\x01\\x020\\x1ed$#4U \\x18\\n\\x17\\x1c\\a\\x1eI,\\x04\\x11-)0\\x0f)\\x02\\x01\\x02\\n\\x11(\\x1d\\x01\\b\\x04D\\x1f@\\x1e\\x06\\x01\\x11\\r\\x16\\x11\\x12\\f\\x88\\r\\x02\\x1f\\x04\\x03\\x04\\x04+\\x16\\x01(%\\x04\\x02\\x03\\x04*/\\x01\\x06\\a/\\x06\\aE4\\x06\\x06:L\\v\\n\\x1c\\x0e\\x11?\\x16\\x18\\x13\\x10\\x0e\\n\\r\\x02\\x01\\x05\\x15\\x11\\x0e\\n\\f\\x06\\a\\b\\t\\r\\f\\x03\\x02\\x01\\x03\\r\\x11\\x1f\\x13\\t\\x05\\n\\n\\x10\\x1c\\x12\\v\\x01\\x8e\\x1d}\\\\\\x17&\\x1b\\x16\\r\\n\\x05\\x04\\x03\\x06\\a\\x04\\x17\\n\\x03\\v\\x04\\t\\x04\\x03\\x01\\x06\\a\\a\\x02\\x024\\x06\\x15\\x1a\\x1f \\\" \\x1e\\fm0\\x1b\\x1a\\x01\\x15\\x13\\xf6Nm\\x18\\a\\x10\\x10\\x01\\x03\\a\\x13\\x0f([\\x12)/)#\\bO\\a\\a\\x03\\x05O\\x02\\x05\\x06\\x02\\x04\\x05\\n\\x11\\x17#f\\a\\x06 \\x02\\a\\x06\\x028!,\\x03\\a\\x06\\x034&\\x04\\x03\\x03\\t\\x04\\x03\\x03\\x04;C\\rK\\xa2\\x11\\x15\\x05\\x05\\\"\\x11\\x13\\x18\\x15\\x19\\x11\\x1c\\x06\\x05\\x0e\\x1c\\n\\a\\v\\x0f\\a\\n\\x0e\\x11\\n\\t\\x02\\a\\x03\\x02\\x03\\t\\x19\\x15\\x16\\x05\\x06\\f\\r\\t\\x10\\x11\\n\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x002\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x056'&\\a6\\x16\\a\\x06\\a\\x06'&'&\\a\\x0e\\x04\\a\\x17632\\x16\\x17\\x16\\x17\\x163276\\x01\\x93\\x13\\x1a\\x1a\\x13\\xfe\\x9a\\x13\\x1a\\x1a\\x13\\x01L\\x032C\\x18\\x0f!\\x03\\x01\\x14\\x1b\\f\\f\\x11\\t%\\a\\x10\\x15\\x0f\\x1e\\a\\x10\\x15\\x04\\f\\x12\\x11\\a\\x03\\x14\\x1c.B@\\x01\\xa0\\x1a\\x13\\xfe\\x9a\\x13\\x1a\\x1a\\x13\\x01f\\x13\\x1a\\x95@\\x01\\x02N\\t\\t\\x16\\x11 *\\x0e\\x0fh8\\x04\\x01\\b\\x11\\r\\x1a\\x06\\x14\\x0f/>\\x19\\x0e4VR\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\x00`\\x02\\x82\\x01\\x00\\x00,\\x00U\\x00\\u007f\\x00\\x007\\\"&/\\x02.\\x02>\\x01;\\x012\\x1e\\x03\\x1f\\x01\\x16326?\\x02>\\x04;\\x012\\x16\\x0f\\x02\\x14\\x0e\\x03#!\\\"&/\\x02&;\\x012\\x1e\\x03\\x1f\\x01\\x16326?\\x02>\\x04;\\x012\\x16\\x0f\\x02\\x0e\\x04#'2\\x16\\x1f\\x02\\x16+\\x01\\\".\\x04/\\x01&#\\\"\\x06\\x0f\\x02\\x14\\x0e\\x03+\\x01\\\"&?\\x02>\\x043i\\x0f\\x17\\x04\\x057\\x01\\x01\\x01\\x01\\x06\\x06!\\x03\\x04\\x04\\x02\\x05\\x01$\\x06\\x0f\\a\\v\\x02\\x02$\\x01\\x04\\x02\\x04\\x05\\x03!\\t\\x05\\x02\\x028\\x02\\b\\n\\x10\\n\\x01h\\x0f\\x17\\x04\\x048\\v\\x15!\\x03\\x04\\x04\\x02\\x05\\x01$\\x06\\x0f\\a\\v\\x02\\x01%\\x01\\x05\\x01\\x05\\x04\\x03!\\t\\x05\\x02\\x027\\x01\\x02\\b\\n\\x10\\n\\xc5\\x0f\\x17\\x04\\x048\\n\\x14!\\x03\\x04\\x03\\x03\\x02\\x03\\x01%\\x05\\x10\\a\\v\\x01\\x02%\\x05\\x02\\x04\\x05\\x02!\\n\\x05\\x02\\x028\\x01\\x02\\b\\t\\x11\\t`\\x0f\\b\\ap\\x01\\x02\\x06\\x05\\x04\\x02\\x04\\x03\\b\\x01K\\r\\a\\x03\\x03K\\x01\\b\\x03\\x04\\x02\\t\\x05\\x04p\\x01\\x04\\n\\b\\a\\x0f\\b\\ap\\x12\\x02\\x04\\x03\\b\\x01K\\r\\a\\x03\\x03K\\x01\\b\\x03\\x04\\x02\\t\\x05\\x04p\\x01\\x04\\n\\b\\a\\xa0\\x0f\\b\\ap\\x12\\x02\\x02\\x04\\x03\\x06\\x01K\\r\\a\\x03\\x03K\\x01\\b\\x03\\x04\\x02\\t\\x05\\x04p\\x01\\x04\\n\\b\\a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00B\\x00R\\x00a\\x00\\x00\\x122\\x17\\x16\\x15\\x14\\x06#\\\"/\\x01\\a7'&54\\x176'&'&'&\\a\\x06\\a\\x06'.\\x01'&>\\x0176'.\\x02'&'\\\"#\\\"\\a\\x06\\x15\\x14\\x170\\x1e\\a\\x17\\x167>\\x01\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132654'&\\\"\\x06\\x15\\x14\\x17\\a7\\x16\\xa9m'(N7$\\x1f\\x052\\r\\x03\\x14\\xd2\\x04\\x02\\x01\\a\\x16\\x05\\x06\\x03\\x03\\t\\x03\\x06\\x14\\x17\\v\\x01\\x01\\t\\x03\\x02\\x02\\x01\\x04\\x06\\x02\\x02\\x06\\x03\\x05\\x06\\x05\\x0e\\x11\\x03\\x03\\x06\\a\\t\\n\\n\\r\\x06\\x1e\\x12\\x06\\x12e\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xb0B^0.\\x84]\\x15\\x16T#\\x01E'(56M\\x12\\x03\\r0\\x05 &7o\\x0e\\x05\\x01\\x03\\f\\x01\\x03\\x05\\x05\\n\\x04\\x03\\n\\x13\\x12\\x05\\x01\\n\\x06\\x03\\x03\\x01\\v\\x0f\\x03\\x06\\x01\\x05\\x0f\\x12\\x14\\x15\\x05\\x04\\b\\b\\b\\t\\b\\a\\x03\\r\\x03\\x01\\v\\x01\\x1e\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x83]A@1.]A+%R\\x16\\x13\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xdf\\x01\\xc0\\x01\\xa0\\x00/\\x00:\\x00\\x82\\x00\\x00\\x01\\x0f\\x01\\x17\\a'\\a\\x17\\a'\\x0f\\x01#/\\x01\\a'7'\\a'7/\\x015?\\x01'7\\x177'7\\x17?\\x013\\x1f\\x017\\x17\\a\\x177\\x17\\a\\x1f\\x01\\a2>\\x0154&\\\"\\x06\\x14\\x16\\x1f\\x01\\x15\\x0f\\x01\\x17\\a'\\a\\x17\\a'\\x0f\\x01#/\\x01\\a'7'\\a'7/\\x015?\\x01'7\\x177'7\\x17?\\x013\\x17/\\x01\\x0f\\x02\\x1f\\x01\\x15\\x0f\\x01\\x15\\a\\x0e\\x01\\x15\\x14\\x163267;\\x01?\\x013\\x1f\\x01?\\x02'\\x01\\xc0\\x1d\\x02\\x15\\v\\x1d\\a\\t\\x15\\x15\\v\\a\\x16\\a\\f\\x13\\x14\\b\\a\\x1e\\n\\x14\\x03\\x1c\\x1c\\x03\\x14\\v\\x1c\\b\\b\\x14\\x13\\f\\a\\x16\\a\\v\\x15\\x13\\a\\a\\x1d\\n\\x14\\x03\\x1cw\\x0f\\x1a\\x10\\\"/!!`/7\\x04'\\x146\\x0e\\x11''\\x15\\r*\\r\\x16$%\\x0f\\x0e7\\x14&\\x0566\\x06'\\x155\\x0f\\x0f%$\\x17\\f*\\f\\x17\\x06\\x04\\v\\x03\\x05\\x11\\x18\\x06\\x01$/>,%:\\b\\r\\a\\x02\\x05\\x02\\x11\\x05\\x06\\x14\\x06\\x02\\x01\\x1f\\a\\f\\x13\\x14\\t\\b\\x1c\\f\\x15\\x03\\x1d\\x1d\\x03\\x15\\f\\x1b\\b\\a\\x12\\x14\\f\\b\\x16\\a\\v\\x15\\x13\\b\\t\\x1b\\v\\x15\\x04\\x1a\\x1a\\x04\\x15\\v\\x1c\\b\\b\\x14\\x14\\v\\tB\\x0f\\x1a\\x10\\x17!!/!\\x11\\x0e(\\r\\x17#&\\x10\\x0f4\\x17(\\x0666\\x06'\\x162\\x11\\x0f#&\\x16\\x0e)\\x0f\\x14'$\\x0e\\x104\\x14'\\x064.\\x06\\x02\\x06\\x13\\x06\\x04\\x12\\x01\\x06\\x02\\x06\\r\\b:&+>/#\\a\\x18\\x11\\x05\\x03\\f\\x04\\x06\\x00\\x00\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x15\\x00@\\x00J\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\x16\\x17\\x03\\x06\\x1327&/\\x01\\a\\x16\\x13\\x177654'&54632\\x17&#\\\"\\x0e\\x01\\a2376\\x16\\a\\x06\\a\\x177/\\x01\\\"&63\\x16376\\x16\\a\\x06\\x13>\\x0154'\\x16\\x15\\x14\\a\\x99Α\\x91Α\\x19E9k\\x13\\xdf&$\\x01\\x01DC\\x1f?P\\x17\\x11\\x13\\x16\\x16\\x10\\x01\\x02@W&G9\\x14\\b\\x06<\\t\\x01\\t\\f\\x0eR0\\\"\\x18\\x05\\x04\\x05\\x06%\\x15<\\t\\x01\\t\\fD3<\\x1b\\x01\\x11\\x01\\xb8\\x91Α\\x91\\xcegAl\\x1c\\x01$+\\xfe\\xf1\\r\\x01\\x02\\xbb\\xc2\\t\\x01G\\xefJ6\\x12\\x1e #\\x11\\x10\\x18\\x01;\\x19-\\x1f\\x03\\x01\\x12\\x01\\x02\\x01\\xf1\\x92_\\x03\\t\\t\\x03\\x03\\x01\\x12\\x01\\x02\\xfe\\xd6\\x1ef=92\\v\\f%+\\x00\\x00\\x00\\x00\\x04\\x00\\x06\\xff\\xc3\\x01\\xf9\\x01\\xbc\\x00\\x13\\x00+\\x00A\\x00Q\\x00\\x00%\\x16\\a\\x0e\\x01\\a\\x06'&'.\\x01547>\\x01\\x17\\x1e\\x01'\\x06\\a\\x06\\x17\\x16'&'&'&7>\\x037>\\x01\\x17\\x16\\x17\\x16\\x05\\x16\\x14\\a\\x06\\a\\x06\\a\\x06576'&'67632\\x1e\\x01%'76\\x16\\x17\\\"&\\x06\\a\\x06'\\\".\\x02\\x01rG\\x11\\x06;\\x1b14;3\\x15\\rY\\x186\\x04\\aT\\xa0Z\\x1f\\x10\\a\\x02\\x03\\x03\\x05!\\b\\x02\\x06\\x03\\v\\x10\\x14\\v\\t\\b\\v\\x1b6\\x04\\x019\\x04\\x03\\x06\\r\\f\\r\\x03\\x02\\x03\\v\\x1b`+\\x16\\x16\\x0e\\x04\\x1c#\\xfe\\xa0\\t\\x13?y2\\n\\x141\\x1d\\x14\\x01\\x01\\x19\\x1f)\\x82W \\v$\\t\\x0f\\x05\\x06!\\x0e\\x0f\\f/_\\x190\\x01\\x01R\\x94mU-\\x13\\a\\x05\\x03\\t2G\\x13)\\x10\\\" \\x1d\\f\\t\\x02\\x03\\t1\\x04A\\x11<\\x11\\x1f\\x1b\\x1b\\x11\\x03\\x01\\a\\x12\\\"Rx(\\r\\x0e\\x1e@\\x80\\x01\\n\\x1c\\t\\x1f\\x02\\r\\x0e\\n\\x01\\f\\r\\v\\x00\\x00\\x00\\x02\\x00\\x02\\xff\\xc0\\x00\\xfe\\x01\\xc0\\x00\\f\\x00\\x14\\x00\\x007\\a#7&546;\\x01\\x11#5\\x11#\\\"\\x06\\x15\\x14;\\x01\\x99W@`KU@R7\\x1d&2X\\x1d\\x84\\xc4\\xd2&gMT\\xfe\\x00\\xc4\\x01\\x0e8;m\\x00\\x00\\x00\\x01\\x00\\x12\\xff\\xc0\\x01.\\x01\\xc0\\x00\\b\\x00\\x00\\x175\\x033\\x17\\x133\\x03\\x15\\x82p8R^4y@\\xa6\\x01*\\xe6\\x01\\x16\\xfe\\xa4\\xa4\\x00\\a\\xff\\xfc\\x00<\\x02\\x80\\x01D\\x00\\a\\x00/\\x00;\\x00C\\x00\\\\\\x00g\\x00y\\x00\\x00\\x13\\x06'&767\\x16\\a\\x16\\x170#\\x06\\x17\\x14\\x1e\\a1\\x06\\a\\x06#\\\"&#\\\"\\x06#\\x06'.\\x017672\\x1e\\x01326732\\x1e\\x01\\x15\\x14\\x06+\\x01\\x15#7\\x153264&#\\x17\\\"&54?\\x0154#\\\"\\a#4>\\x0132\\x16\\x1d\\x01#5#\\x06'26=\\x01\\a\\x06\\x15\\x14\\x1e\\x01\\x17\\\"#5\\x1632?\\x01'3\\x17373\\a\\x0e\\x01u\\x0e\\x12\\x02\\x0e\\f\\x13\\x02\\x02\\x1a\\r\\x01\\x17\\x01\\x02\\x03\\x04\\x05\\x04\\x05\\x03\\x02\\x03\\v\\x12\\x0f\\a\\x14\\b\\b\\x14\\x06\\x0f\\x13\\x0f\\n\\f\\x0f\\x1c\\x06\\x0e\\f\\x03\\x03\\x1cnI\\x13\\x1d\\x11%\\x1d*\\x1e\\x1e#\\x14\\x16\\x16\\x14\\x80\\x15\\x1b6&\\x1d\\x19\\x04\\x1b\\x0f\\x1a\\x10\\x1a\\x1f\\x1c\\x01\\r\\x17\\x0f\\x15\\\"\\x1d\\a\\fn\\b\\x03\\x05\\x04\\x13\\x06\\x033\\x1f$\\x01#\\x1f5\\t\\x18\\x01\\\"\\x11\\x02\\x11\\x0f\\x0f\\x01\\x12!\\x02\\x13\\x0f\\x19\\x05\\n\\a\\a\\x05\\x04\\x02\\x02\\x01\\x0e\\x10\\x1a\\b\\b\\x01\\x1c\\x169\\x1b\\x1a\\x01\\x05\\x05\\v#\\x10\\x1d\\x13\\x1c$B\\xa9M\\x14%\\x14\\xab\\x17\\x13&\\x04\\x02\\v\\x18\\x14\\r\\x14\\v\\x19\\x15a\\x17\\x19\\x17\\x12\\r\\v\\x02\\x01\\x13\\x06\\t\\x05J\\x18\\x01\\x14\\t\\x8ess\\x95\\x1a\\x13\\x00\\x00\\b\\x00\\x00\\xff\\xe1\\x02@\\x01\\xa1\\x00\\x05\\x00\\x0f\\x00\\x1f\\x00'\\x00D\\x00P\\x00j\\x00|\\x00\\x00\\x00\\x14+\\x0153\\x174?\\x01\\x15\\x14\\x0e\\x01#\\\"7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05\\x1676'\\x06\\a\\x06\\x17&5&7&'&\\x0e\\x01#\\\"&#\\x06\\a\\x06\\x16\\x17\\x163262\\x16327674&+\\x01\\x153532>\\x01\\x174.\\x01#\\\"\\x0e\\x01\\x153632\\x1d\\x01\\a\\x06\\x15\\x14\\x1e\\x01327\\x1537#\\a#'#\\x17\\a\\x06#\\\"#\\x15\\x163267\\x01.\\x1d\\x18\\x18M\\x14\\x17\\x06\\f\\a\\x12\\xe2\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfe@\\f\\n\\t\\x01\\r\\t\\n>\\x13\\x01\\x11\\n\\x11\\x06\\v\\n\\x02\\x02\\x11\\x05\\x15\\n\\b\\a\\v\\r\\n\\x04\\x0e\\f\\x0e\\x05\\n\\f\\x06\\x8c\\x19\\x143\\x15\\x1d\\r\\x15\\fZ\\n\\x12\\f\\v\\x12\\v\\x13\\x03\\x11\\x14\\x1a&\\t\\x0f\\t\\x17\\t\\x14f\\x16\\x18\\x01\\x19\\x16$\\x02\\x04\\x0e\\x02\\x04\\x01\\a\\x10\\x11\\x06\\x01\\x0177Z\\r\\x01\\x02\\b\\x06\\n\\x06\\xd8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x8a\\x01\\v\\v\\r\\x01\\n\\vW\\t\\x15\\x11\\v\\x0e\\x01\\x01\\x04\\x04\\a\\x01\\x12\\x13(\\x0f\\x13\\x06\\x06\\x12\\tB\\x14\\x18\\x88/\\v\\x15\\v\\n\\x0e\\b\\a\\x0e\\t\\x0e\\x11\\b\\x01\\x03\\x1b\\b\\x0e\\a\\x11\\x10cQQc\\x06\\x0e\\x10\\x01\\x0e\\x12\\x00\\x04\\x00\\x19\\xff\\xbf\\x01l\\x01\\xc1\\x00\\x10\\x00'\\x00.\\x008\\x00\\x007\\x16\\a\\x1c\\x011\\x0e\\x01#\\\"&767672\\x13\\x16\\a\\x0e\\x01\\a\\x06\\a#&'.\\x03'&7632\\x17\\x16\\x03\\x11\\x0e\\x02\\x17\\x1676&'\\x1e\\x01\\a\\x06\\a6\\xc6\\\"\\x01\\x01\\x16\\x10\\x12\\x16\\x01\\x01 \\x03\\x02\\x04\\x89\\x1f\\n\\n_3\\x02\\x02\\x03\\x01\\x05\\x1c+3\\x1f\\x03\\x02U*'(%+}\\x1b\\\"\\n\\x02\\x05\\xce\\r3>\\x1a\\x17\\x01\\x02Ac\\x14\\x1e\\x14\\x01\\x02\\x0e\\x11\\x15\\x0f\\x13\\x1c\\x03\\x01\\x01f5</x1\\x01\\x01\\x01\\x05\\x1b.BA\\x1da-\\x11\\x0f\\x14\\xfe\\xc3\\x01F\\x0329\\x1bH7.^\\r\\x12J'Gyd\\x00\\x0e\\x00\\x00\\xff\\xfc\\x02\\x80\\x01\\x85\\x00;\\x00`\\x00k\\x00o\\x00\\x81\\x00\\x87\\x00\\xab\\x00\\xc4\\x00\\xd6\\x00\\xfc\\x01\\x0e\\x01\\\"\\x01$\\x01'\\x00\\x00\\x05\\\"/\\x01&7672\\x1f\\x01\\x16?\\x016=\\x014/\\x01&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x166=\\x014;\\x012\\x1d\\x01\\x14#\\\"/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\x0f\\x01\\x067\\x14#\\\"54;\\x012\\x15\\x163254'&5432\\x17\\x14\\x06+\\x01\\\"5&#\\\"\\x15\\x14\\x16\\x17\\x1e\\x017\\x14\\x0e\\x01#\\\"&462\\x16\\x064\\\"\\x147#&54+\\x01\\x15#532\\x15\\x14\\a2\\x17\\x14&4+\\x01\\x153%\\x15\\x14\\x06/\\x01&=\\x014/\\x01&\\\"\\x0f\\x01\\x06\\x1d\\x01\\x14\\x0f\\x01\\x06&=\\x014?\\x016;\\x012\\x1f\\x01\\x16%\\x15\\x14\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x16=\\x0146\\x1f\\x01\\x16\\a41'\\\"#\\a\\\"\\x1d\\x01\\x143\\x17\\x1657057\\a\\x06&=\\x014/\\x01&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\a721\\x172\\x1d\\x010\\x0f\\x010#'\\\"=\\x010\\a\\x14\\x15\\x06\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x15'3\\x17'\\x15\\x01<\\x03\\x03\\x13\\x03\\x02\\x05\\x04\\x01\\x01\\x0e\\x01\\x01:\\x01\\x01:\\x01\\x019\\x01\\x01\\x0f\\a\\a\\x02\\a\\x02\\x11\\x06\\a\\x10\\x06\\x06:\\x06\\x06:\\x06\\x06:\\x02+\\x1d\\x1f\\x02\\b\\x01\\x02\\x12\\x12\\x15\\x19\\x1a\\x1b\\x02\\x01\\x01\\a\\x02\\x02\\x10\\x0f\\a\\r\\x0e\\f7\\x03\\x06\\x03\\x04\\a\\a\\t\\a\\x02\\x13\\x0e\\x02\\x01\\x01\\x02\\x03\\x04\\x05\\x03\\x02\\x01\\x03\\x01\\x02\\x01\\xfe\\xf3\\x04\\x01%\\x03\\x04\\x10\\x01\\x04\\x02\\x10\\x03\\x04$\\x02\\x04\\x04=\\x02\\x01\\x01\\x02\\x01>\\x03\\x01O\\x03=\\x04\\x04=\\x04\\x04=\\x04\\x04\\x0f\\x04\\x03\\x02%\\x03.\\x15\\x01\\x01\\x15\\x01\\x01\\x15\\x01\\x16\\xd2$\\x02\\x04\\x02\\x13\\x02\\x02\\x13\\x02\\x02>\\x02\\x02%\\x04\\x03=\\x04\\x04=\\x04\\x03=\\x04Q\\f\\x01\\f\\x01\\x01\\f\\x01\\f\\x01\\xfd\\x01\\x03=\\x04\\x03>\\x04\\x04=\\x04\\x04=\\x04K\\x01L\\x01\\x04\\x02\\v\\x02\\x01\\x01\\x03\\x01\\b\\x01\\x01!\\x01\\x01B\\x01\\x01!\\x01\\x01!\\x01\\x01B\\x01\\x01\\t\\x03\\x05\\x04B\\x01\\x01B\\x12\\x03\\t\\x04\\aB\\a\\x04!\\x04\\x04!\\x04\\aB\\b\\x03!\\x02B\\x14\\x15\\x02\\x01\\f\\t\\a\\x02\\x02\\x0f\\x13\\x14\\x01\\x01\\x01\\v\\b\\x03\\x03\\x02\\x02\\a)\\x03\\x05\\x03\\x06\\n\\x06\\x06\\x0e\\x12\\x13\\x04\\x03\\x01\\x01\\x05\\f\\x03\\x02\\x01\\x03\\x03\\a\\x03\\x03\\x90_\\x02\\x02\\x01\\x15\\x02\\x04,\\x05\\x02\\t\\x01\\x01\\t\\x02\\x05,\\x04\\x02\\x15\\x01\\x02\\x02_\\x04\\x02$\\x01\\x01$\\x02d\\xb1\\x04\\x02$\\x02\\x02$\\x02\\x04G\\x04\\x03#\\x02\\x02\\t\\x02\\x04^\\x02\\x03\\x01\\x15\\x02\\x85\\x01\\r\\r\\x01\\x18\\x02\\f\\x01\\x01\\f\\x02\\x18\\x15\\x01\\x02\\x02\\x12\\x02\\x01\\v\\x01\\x01\\v\\x01\\x02\\x16\\x02\\x02#\\x01\\x04\\x01\\x15\\x02\\x02#\\x02\\x04G\\x04\\x02$\\x02\\x02$\\x02\\x04\\x11\\x04\\x06\\a\\a\\x01\\x0e\\x01\\a\\a\\x01\\x0e*\\x01\\x01\\x03\\x02#\\x02\\x02#\\x02\\x05F\\x04\\x02$\\x02\\x02$\\x02\\x046\\x82\\x01\\x01\\x00\\x00\\x02\\x00\\b\\xff\\xcd\\x02\\x04\\x01\\xbc\\x00-\\x00V\\x00\\x007>\\x0176\\x16\\x17\\x16\\x06\\a\\x06'&'&767654&'&\\x06\\a\\x06\\x16\\x17\\x16\\a\\x06\\a\\x06'&'.\\x064&70\\x16\\x15\\x1e\\x01\\x17\\x167676'&7>\\x02\\x17\\x1e\\x01\\x15\\x14\\a\\x06\\a\\x06\\x17\\x16\\x17\\x167676'.\\x01\\a\\x0e\\x01\\b\\x02zZf\\x9f\\x11\\x10VR\\r\\x05\\x1b\\x1a\\x05\\f%\\x06\\x01&\\x1b\\x1d-\\x04\\x04\\x17\\x17\\r\\x05\\x1b\\x1b\\x04\\vX+\\x04\\a\\x05\\x04\\x02\\x02\\x02\\x01\\x15\\x01\\x05C;\\x04\\x02\\x16\\x17\\x01\\x040\\x03\\x01-@\\x1d\\x13\\x1b\\x01\\x05(\\x04\\x01\\x17\\x16\\x02\\x047!5\\v\\n\\x92cRr\\xb6c\\x89\\f\\rv`Y\\x98!\\x06\\rFE\\f\\x05\\x11'\\x05\\x06\\x1b*\\x02\\x03#\\x1c\\x18+\\n\\x06\\rFF\\v\\x05\\\"U\\b\\x10\\x0f\\r\\x0e\\n\\r\\x06\\f\\x03\\x11\\x058b\\x1d\\x02\\x05:;\\x04\\x03\\x1e8 0\\n\\x11\\n/\\x16\\x05\\x06-\\x19\\x02\\x04;:\\x05\\x02\\x1a.IX[x\\r\\n}\\x00\\x00\\x0f\\x00\\x00\\xff\\xda\\x02\\x00\\x01\\xa6\\x00<\\x00J\\x00R\\x00Z\\x00q\\x00y\\x00\\x81\\x00\\x87\\x00\\x95\\x00\\xa4\\x00\\xb3\\x00\\xbb\\x00\\xcb\\x00\\xda\\x00\\xe2\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x06\\a\\x06\\a\\x16\\x17\\x16\\x0e\\x01\\a\\x06&'&'\\x06\\a\\x0e\\x01'.\\x01767&'.\\x01546767&'&676\\x16\\x17\\x16\\x1767>\\x01\\x17\\x1e\\x01\\a\\x06\\a\\x16'\\x06\\a\\x16\\x17\\x16\\x17676&'&\\x06\\a&'\\x06\\a\\x16\\x17&'\\x16\\x176767\\x06\\x17\\x16\\x17\\x16\\x17\\x163276767&'&'&\\\"\\a\\x06\\a\\x06\\x17\\x06\\a67&'\\x06767&'\\x16\\x17\\x16'\\x06\\a6\\x17&'\\x0e\\x01\\x17\\x16\\x176767&1.\\x01\\x0367&'\\x06\\a\\x0e\\x01\\x15\\x16\\x17\\x16\\x17\\x16\\x1767&'&'\\x06\\a\\x06\\x16\\x17\\x1676767\\x06#\\\"'\\x16\\x176'&'\\x06\\a\\x06\\a\\x16\\x17\\x1e\\x02767>\\x0254&'&'\\x06\\a\\x16\\x172&\\\"&462\\x16\\x14\\x01\\xa2*47-\\x06\\x03\\x02\\x01\\x06\\x02\\x0f\\r\\x14;!\\b\\x05\\x05\\x06!?\\x14\\x14\\f\\b\\x02\\x02\\x05\\t+52*\\t\\t\\x02\\x01\\t\\f\\x14\\x14@\\\"\\x04\\x04\\a\\x06!;\\x14\\x15\\f\\n\\x01\\x01\\b\\u007f\\x06\\x06\\x17\\x14!\\\"\\x01\\x01\\b\\a\\r\\r0\\x8f\\x06\\b\\n\\x06\\x16\\x18\\a'\\a\\t\\x06\\b\\a\\b\\x18\\x06\\v\\v\\v\\r\\x17\\x17\\x18\\x16\\x0e\\n\\f\\n\\v\\v\\v\\r\\x17.\\x17\\x0e\\n\\f\\xab\\t\\a\\x18\\x17\\a\\t\\b\\a\\n\\x06\\x15\\x18\\a\\b\\x06_\\x10\\x0e\\x1e\\x1e\\x0e\\x84\\f\\a\\a\\x02\\x01\\\"!\\x14\\x17\\a\\x1d4%\\n\\x0e\\x0e\\n\\n\\a#*\\x02\\x10\\x18'\\az\\x05\\x05\\x18\\x13\\\"\\\"\\x02\\x02\\x06\\a\\r\\x11\\x12\\x1f2\\x10\\r\\x0e\\x10\\x0f\\x0f\\x0f\\x93\\x04\\a\\x01\\x02!#\\x13\\x17\\b\\x05\\x11#\\x19\\t\\x0f\\x14\\x18'\\x15,#\\b\\a\\n\\x0e\\x0f\\n\\x03}&\\x1b\\x1b&\\x1b\\x01\\x0f\\x0f)\\x17\\x17,\\x0e\\x02\\x01\\a\\a\\x1d0$\\a\\v\\x14\\x1b\\b\\x05\\x05\\x05\\x1d\\x15\\v\\v>*\\t\\t\\x01\\x03\\x0f,\\x16\\x16*\\x0e\\x03\\x03\\b\\t*?\\f\\v\\x16\\x1f\\x04\\x04\\a\\x05\\x1d\\x14\\v\\vC-\\a\\x04\\x02R\\x05\\x06\\x19\\x1c\\x03\\b\\x04\\x06'6\\b\\a\\x14\\xef\\f\\x0f\\x18\\x15\\x05\\x02\\n\\x88\\x16\\x16\\f\\x0e\\f\\x0e\\x03J\\x16\\x13\\x14\\x13\\x01\\x01\\x15\\x13\\x14\\x14\\x16\\x13\\x13\\x13\\x02\\x02\\x14\\x13\\x15F\\x10\\n\\x03\\x05\\x17\\x15\\x0fA\\x16\\x16\\x05\\x03\\r\\r\\na\\x11\\x13\\x01\\x01\\x13N\\a3$\\n\\x05\\a\\x03\\x1c\\x19\\a\\x1a\\x15\\xfe\\xf0\\\"\\x1f\\x1f!\\x03\\x03\\f \\x0e\\x13\\v\\x12\\r\\x02d\\x04\\x05\\x1a\\x1c\\x02\\b\\b\\t$1\\a\\a\\b\\f0\\x12\\x12\\x01\\x01\\x14.\\\" \\x06\\x06\\a\\x03\\x1c\\x1a\\b\\x03\\x10\\x13\\x04\\x04\\f\\u007f\\b\\x16\\x16\\n\\r!\\f\\x02\\x02!\\x1e \\x1f\\x11\\x1b&\\x1b\\x1b&\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xd0\\x02\\x80\\x01\\xb0\\x00\\x06\\x00\\n\\x00\\x0e\\x00\\x12\\x00\\x00\\x01\\x13#'#\\a#73'#\\x05\\a'\\x17%\\a'7\\x01>\\xa4M\\x19x\\x19NyT)\\x02\\x01A\\x9e\\x14\\xa8\\xfe<\\x14\\x9e\\n\\x01\\xb0\\xfe QQ\\x8a\\x82\\xb1\\t8\\x10\\x108\\t\\x1f\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x007\\x02\\x80\\x01I\\x00)\\x00P\\x00\\x82\\x00\\xaa\\x00\\xbe\\x00\\xc3\\x00\\x00%\\x14\\x17\\x15\\x06\\x15\\x14\\x16\\x15\\x14\\x06+\\x015352>\\x0154&5475&54654&+\\x01532\\x16\\x15\\x14\\x06\\a\\x16\\x15\\x14\\x0e\\x01#\\\"'7\\x163254'&'&54>\\x0232\\x17\\a&#\\\"\\x15\\x14\\x1e\\x05\\x0523\\x17\\x06#\\\"=\\x01#\\\"\\x06\\x15\\x14\\x16\\x15\\x14\\a\\x15\\x16\\x15\\x14\\x06\\x15\\x14\\x16;\\x01\\x15#\\\"&54654#5654&546;\\x01\\x15\\x147\\x16\\x15\\x14\\x0e\\x02#\\\"'7\\x163254'&'&54>\\x0232\\x17\\a&#\\\"\\x15\\x14\\x1e\\x05'2\\x16\\x15\\x14\\a#\\x16327\\x17\\x06#\\\".\\x015&6\\x1534#\\\"\\x02e\\x1b\\x1b\\x03\\x13\\x16\\x14\\x06\\a\\a\\x03\\x01\\x17\\x17\\x01\\x06\\v\\x06\\x14\\x16\\x13\\x03j+\\x0e\\x1e\\x14\\\"\\x1a\\x15\\x15\\x13\\x15\\x1d\\x02\\x01*\\t\\x0f\\x17\\r\\x1c\\x1b\\x15\\x12\\x10\\x11\\x01\\x04\\x03\\a\\x04\\t\\xfe\\x9b\\x03\\x03\\x06\\n\\x0e+\\x0e\\n\\a\\x01\\x17\\x17\\x01\\a\\n\\x06\\x14\\x16\\x13\\x03\\x1b\\x1b\\x03\\x13\\x16K\\xf0+\\t\\x10\\x18\\x10!\\x1b\\x15\\x15\\x13\\x15\\x1d\\x02\\x01*\\t\\x10\\x16\\r\\x1d\\x1a\\x15\\x12\\x0f\\x12\\x01\\x04\\x04\\x06\\x05\\t\\x99 #\\x02_\\x06#\\x11\\x11\\x10\\x1a\\x1e\\x17#\\x15\\x01-9\\x1b\\x19\\xe5\\x16\\x01\\x1c\\x01\\x16\\n!\\f\\x19\\x14\\x19\\x01\\x04\\t\\t\\t!\\n \\x05\\x02\\x05 \\n\\\"\\a\\x0e\\t\\x18\\x14\\x19\\f!*\\x0e\\\"\\x0e\\x17\\x0e\\x16\\x1f\\x11\\x0e\\t\\v\\x01\\x01\\x10\\x1e\\v\\x12\\r\\a\\x14\\x1c\\r\\f\\x03\\x03\\x04\\x02\\x03\\x02\\x03<\\\"\\x046\\x96\\t\\r\\b\\\"\\t \\x05\\x02\\x06\\x1f\\n\\\"\\b\\r\\n\\x18\\x14\\x1a\\v!\\t\\x17\\x1c\\x01\\x16\\t\\\"\\f\\x19\\x14\\xb2\\r;\\x0e\\\"\\v\\x12\\x0e\\b\\x16\\x1f\\x11\\x0e\\t\\v\\x01\\x01\\x10\\x1e\\v\\x12\\r\\a\\x14\\x1c\\r\\f\\x03\\x03\\x04\\x02\\x03\\x02\\x03D+!\\a\\f#\\n\\x1b\\x12\\x13&\\x19%.B\\x1f\\x00\\x00\\x00\\x00\\x06\\xff\\xfd\\xff\\xca\\x02\\x82\\x01\\xb9\\x00\\x00\\x00\\xe4\\x00\\xf4\\x01\\a\\x01\\x11\\x01\\x19\\x00\\x00%72\\x16\\a\\x0e\\x01\\a\\x06'47>\\x01&'&\\a\\x16\\x15\\x16\\a\\x06\\a\\x06'&767&'&'\\x06\\a\\x06\\a\\x16\\x17\\x16\\a\\x06\\a\\x06\\a\\x06'&7676767&'&'\\x06\\a\\x06\\a\\x14\\x0f\\x015\\x06#\\\"&?\\x01\\x06\\a\\x0e\\x02#\\\"'.\\x01767\\x06\\a\\x06\\a\\x141\\x16\\x06\\a\\x0e\\x01'.\\x017676727.\\x03'&67676\\x16\\x17\\x16\\x06\\a\\x0e\\x01'.\\x01'&76\\x17\\x167>\\x01'.\\x01\\a\\x0e\\x04\\a\\x06\\x1e\\x01\\x172\\x14\\x174767>\\x012\\x16\\x0f\\x01630>\\x012\\x17\\x16\\x170\\x0e\\x03\\a\\x0e\\x01\\x1612767\\x1505076767>\\x015632\\x170\\x0e\\x01\\a\\x06\\x17\\x14\\x176767632\\x152\\x0e\\x01\\x15\\x06\\x17\\x16\\x176\\x056'0\\x06\\\"\\a\\x0e\\x01\\a\\x0e\\x02\\x17\\x16676'&\\x06\\a\\x06\\a\\x0e\\x01\\x14\\x1e\\x01\\x172>\\x03\\x176541\\x06\\x0f\\x02\\x167654'\\x06\\a\\x06\\x01.\\xf9)1\\x01\\x01\\x16\\a\\x05\\x01\\x05\\x0f\\x05\\x1e%#\\x1b\\x05\\x01\\x18\\n\\f\\v\\x06\\x14\\v\\b\\x1a\\n\\x02\\x04\\x02\\x0f\\x14\\x01\\x02\\x06\\x01\\x01\\x14\\n\\v\\t\\x0e\\v\\x05\\x06\\x03\\x02\\x1c\\x06\\x04\\x02\\x04\\f\\x01\\x04\\x02\\x10\\x10\\x0f\\n\\x01\\x01\\f\\v\\v\\b\\x01\\x02\\b\\b\\x04\\x06\\v\\x06\\n\\x05\\t\\f\\x01\\x02\\a\\x0e\\n\\b\\x04\\t\\x03\\x10\\x11<\\x1e\\r\\x0e\\v\\x10M\\x01\\x02\\x01\\x01\\t-# \\x04\\x03\\x17!9^Bw\\v\\n;/%H\\n\\x0f\\x13\\x03\\x03\\x03\\x03\\x05\\x14-HW\\x10\\vhK\\\"1\\x19\\x0f\\x03\\x01\\x01\\x1f:\\v\\x01\\x01\\x14\\x11\\x1a\\v!\\x1a\\n\\x02\\x02\\x01\\x01\\x02\\x03\\x05\\x03\\x06\\x01\\x02\\x04\\x04\\x04\\x01\\x01\\x01\\x01\\x02\\x03\\x01\\x02\\x01\\x04\\x06'\\x03\\x02\\x03\\x03\\x17\\r\\x01\\x03\\x04\\x01\\x01\\x03\\b$\\x04\\x01\\x04\\x02\\x17\\x0e\\x01\\x04\\x04\\x01\\x02\\x01\\f\\x1b\\xfer\\x1f\\f\\x02\\x01\\x01\\x02\\b\\x02\\x1b \\t\\n\\b\\\"\\x93\\x15\\x05\\x01\\x0f\\a\\x0e\\b\\x03\\x03\\x02\\x03\\x02\\x02\\x06\\a\\x05\\ap\\x19\\x05\\x06\\x13\\x01\\x01[\\x1a\\x02\\r\\x06\\tEW,\\x1b\\x11\\x14\\x02\\x01\\x03\\x02\\x03\\n\\x1f$\\x04\\x04\\v\\r\\n\\x16\\x12\\a\\x04\\x05\\x01\\x04\\x1d\\x17\\x15\\x14\\x06\\r\\r \\x1d\\x01\\x04\\x10\\f\\x19\\x0f\\x06\\x04\\x05\\x01\\x01\\x04\\x05\\t\\x03\\\"\\x06\\a\\x03\\x05\\x1b\\x03\\r\\r( \\x1e\\x10\\x01\\x01\\x02\\x01\\x13\\x1a\\r\\r\\x13\\x10\\t\\t\\a\\x05\\b%\\x10\\x1a\\x11\\b\\x05\\x05\\x03\\x01\\r>\\x18\\x1b\\x19\\b\\x04%\\x1e$&\\x01\\x01\\x01\\a \\x19)\\x14\\x117\\x1e5\\\"\\x18\\x1a*)V\\x12\\x0f\\x03\\x06\\x05\\x11\\a\\b\\x02\\x01\\x06\\x15\\x04\\tZ\\\"\\x1a\\x03\\\"\\x11#\\x1a\\x1c\\x0e\\b\\x16'+\\f\\x01\\x01\\x01\\v\\t\\x0e\\x0f\\x18\\x15\\v\\v\\x02\\x02\\x02\\x01\\x03\\b\\t\\x0e\\x10\\x11\\a\\x05\\n\\x05\\x06\\x03\\x04\\x01\\x01\\x01\\b\\rV\\n\\x04\\r\\x02\\x06\\a\\t\\r\\x05\\t\\x10\\a\\x0f:\\x11\\n\\t\\x06\\a\\t\\r\\x05\\t\\x10\\x06\\x18\\r\\x91\\\"-\\x02\\x01\\x01\\x05\\x01\\x10\\x1f&\\x05\\x05\\fj3\\b\\x04\\x06\\b\\x10\\x19\\b\\x12\\x0f\\r\\a\\x01\\a\\x0e\\f\\x122\\x0f\\x14\\x01\\a\\a\\x15\\x03\\x01\\x16\\n\\x19\\x05\\x05\\v\\r\\x12\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\xc0\\x01\\x80\\x00\\x06\\x00\\f\\x00\\x00\\x013\\v\\x013\\x177\\a\\x1b\\x01#\\a'\\x01e[\\xe0\\xe0\\xb008ਨ6rr\\x01\\x80\\xfe\\x80\\x01\\x80YY \\xfe\\xe0\\x01 \\xc6\\xc6\\x00\\x00\\x00\\x03\\x00\\x10\\xff\\xe0\\x01\\xb0\\x01\\xa0\\x00\\x02\\x00\\b\\x00\\x0f\\x00\\x00?\\x01\\x17'\\x17\\x03\\a'\\x03\\x01\\v\\x01373\\x17\\xba&&&\\xd0 \\xb0\\xb0 \\x01R\\x82\\x820\\x1bn\\x1a\\xb4\\\\\\\\\\xecJ\\xfe\\xecbb\\x01\\x14\\xfe\\xf4\\x01$\\xfe\\xdcBB\\x00\\x00\\x00\\t\\x00\\x00\\x00X\\x02\\x80\\x01(\\x00\\x06\\x00\\t\\x00\\x0f\\x00\\x13\\x00\\x1b\\x000\\x00D\\x00\\xb9\\x00\\xbf\\x00\\x007'#\\a#7\\x17'\\a3\\x17'3\\x1773\\x1753\\x157\\x15#5#53\\x15\\x16\\x14\\x0e\\x02\\\".\\x024676762\\x17\\x16\\x17\\x16\\x17\\x064.\\x01'&\\\"\\a\\x0e\\x02\\x14\\x1e\\x01\\x17\\x1627>\\x01\\a\\x16\\x15\\x14\\x06\\\"&5475\\a\\x15\\x16\\x14\\\"475\\a\\x153\\x15#5#\\x15#535\\a\\x0e\\x01\\x0f\\x01\\x153\\x15#5#\\x15#535&/\\x01\\x153\\x15#5#\\x15#535'\\x15\\x16\\x14\\\"475'\\x15\\x16\\x15\\x14\\x06\\\"&5475'\\x17&5&5'\\x1743>\\x01?\\x02#\\a#7\\x17#'#\\x17\\x16\\x170\\x157\\a\\x14\\a\\x14\\a7\\a'37\\x173'k\\x134\\x13\\x11>>>\\x13']>\\x11--\\x11\\x13\\x0f\\xc2\\x12)d\\x86\\n\\x12\\x18\\x1c\\x18\\x12\\n\\n\\t\\x05\\x10\\f\\x1c\\f\\x10\\x05\\t\\x05\\v\\a\\x0e\\t\\n\\x15\\t\\t\\x0e\\b\\b\\x0e\\t\\t\\x15\\n\\t\\x0eW\\n\\a\\n\\a\\nP\\n\\x19\\n\\x1d\\x06\\x06\\x05\\x05\\x05&\\x04\\t\\x03\\x03\\x05\\x04\\x05\\x04\\x05\\v\\b&\\x06\\x06\\x05\\x06\\x06\\x1d\\n\\x18\\tP\\v\\b\\n\\a\\nY\\xf3\\x01\\x01AA\\x01\\x01\\f\\x06\\x06\\x01\\x18\\x12\\x12?>\\x11\\x13\\x18\\x01\\x17\\x03@@\\x01\\x01\\xf3Y\\xc9\\x12\\x01\\x02\\x12\\x14\\xa4**\\x84\\x84c+<\\x84``\\x80\\x80\\x80ttt\\f\\f%\\x1c\\x18\\x12\\n\\n\\x13\\x17\\x1c\\x18\\t\\x05\\a\\x05\\x05\\a\\x05\\t\\f%\\x16\\x13\\x0e\\x04\\x04\\x04\\x04\\x0e\\x13\\x16\\x12\\x0e\\x04\\x04\\x04\\x04\\x0eD\\x01\\v\\x05\\a\\a\\x05\\v\\x01\\x06\\t\\x05\\x02\\x14\\x14\\x02\\x05\\x03\\x18\\x0e\\a\\a\\x0e\\x17\\x04\\x05\\a\\x01\\x01\\a\\f\\x05\\x05\\f\\a\\x02\\f\\x04\\x17\\x0e\\a\\a\\x0e\\x18\\x03\\x05\\x02\\x14\\x14\\x02\\x05\\t\\x06\\x01\\v\\x05\\a\\a\\x05\\v\\x01\\a\\n\\x0e\\x04\\x03\\x04\\x03\\b\\x02\\x01\\b\\f\\x02\\x02\\x1a)\\x83\\x83)\\x1a\\x06\\x12\\x01\\x02\\b\\x03\\x03\\x04\\x04\\x0e\\nQ((+\\x00\\x05\\xff\\xff\\x00y\\x02\\x81\\x01y\\x00\\xe3\\x00\\xec\\x00\\xf8\\x01\\x0e\\x01\\x1a\\x00\\x00%\\x14\\x06\\x0f\\x01\\x0e\\x02'.\\x03'5#\\a\\x0e\\x02.\\x01=\\x01\\x0e\\x02'.\\x01/\\x01\\x06\\a\\x06&/\\x01\\a\\x06'.\\x01?\\x01#\\x06\\a\\x0e\\x01+\\x01\\x06'&6?\\x01#\\a\\x0e\\x02'.\\x015'\\a\\\"\\x0e\\x02&'&'&'&4?\\x016\\x17\\x1e\\x017367672\\x17\\x16\\x06\\x0f\\x010\\x14\\x1e\\x02326?\\x01>\\x017>\\x01;\\x016\\x17\\x16\\x06\\x0f\\x01\\x177>\\x02\\x172\\x16\\x0e\\x01\\x0f\\x01\\x17?\\x01>\\x02\\x17\\x16\\x17\\a0\\x15\\x16\\x1726?\\x0167>\\x05?\\x01676\\x17\\x16\\a6\\x17\\x1e\\x01\\x0f\\x01>\\x01?\\x014567>\\x01\\x16\\x17\\x16\\x06\\x0f\\x01\\x1e\\x0272>\\x02?\\x01>\\x017>\\x01\\x1f\\x013>\\x03?\\x01>\\x02\\x1e\\x01\\x0f\\x01\\x06\\x17\\x166?\\x016\\x05\\x167>\\x01'&\\x0e\\x01%\\x06\\a>\\x04'&\\a\\x06\\x16>\\x01.\\x01/\\x01.\\x02\\x0e\\x03\\x1c\\x01\\x1d\\x01\\x1e\\x0267\\x167>\\x01/\\x01&\\a\\x0e\\x01\\x17\\x02\\x80\\x02\\x02\\x01\\x03\\n\\x19\\t\\x06\\t\\x04\\x02\\x01\\x02\\x14\\x01\\x04\\v\\v\\x06\\x02\\t\\x1c\\x10\\x0e\\x14\\x04\\x03\\x15:\\f\\x16\\x06\\x05\\x12\\x16\\t\\x04\\x01\\x01\\x01\\x01\\r\\a\\x03\\a\\x03\\x02\\x0f\\x04\\x01\\x02\\x03\\x02\\x02\\f\\n\\f\\b\\a\\x05\\x06\\x01\\x10\\x01\\x06\\x0f\\x0e\\x11\\x05\\x10\\x04\\x11\\v\\x05\\x03\\x02\\x04\\x06\\x03\\t\\x04\\x03\\x02\\x06\\x0e\\x1b\\x15\\v\\b\\x19\\x10\\x11\\x02\\x02\\b\\x05\\b\\x18\\a\\b\\x01\\v\\x03\\x01\\a\\x03\\x03\\t\\x01\\x01\\x03\\x02\\x02\\x01\\x15\\x01\\x05\\x0f\\a\\x05\\x03\\x02\\x03\\x02\\x02\\x02\\x01\\x1c\\x01\\x03\\n\\x04\\t\\x01\\a\\x02\\x03\\x05\\n\\x03\\x03\\a\\x05\\x01\\x04\\x05\\x06\\x05\\x04\\x01\\x01\\a\\x11\\x16\\a\\v0\\x0e\\r\\x12\\x04\\a\\a\\x05\\x10\\x06\\x06\\a\\x1e\\x04\\x15\\x17\\x01\\x01\\x1b\\r\\x0e\\x01\\x02\\r\\t\\x06\\r\\n\\t\\x03\\x02\\x01\\f\\x02\\x02\\x10\\x01\\x01\\x01\\x02\\x05\\x04\\x05\\x01\\x01\\x02\\x03\\n\\a\\x03\\x01\\x01\\x04\\x0e\\x06\\x0f\\x04\\x04\\n\\xfd\\xbf\\x06\\x0e\\n\\x05\\x06\\x04\\r\\f\\x01\\x11\\x10\\x01\\x02\\x06\\x0f\\v\\b\\x02\\x04\\x12\\x01\\x13\\a\\x02\\x03\\x03\\x02\\x01\\x01\\x03\\t\\b\\n\\x05\\x04\\x01\\x05\\f\\nd\\x10\\n\\x05\\x01\\x02\\x02\\t\\v\\x05\\x04\\x01\\xc1\\x04\\b\\x01\\x01\\x02\\x06\\b\\x02\\x02\\n\\f\\f\\x04\\x04:\\x03\\t\\r\\x05\\t\\x04\\x03\\x02\\a\\v\\x02\\x01\\r\\x06\\x06\\x0e\\f\\x01\\a\\x03\\x04\\n\\n\\x0f\\a \\r\\f\\x1a\\x18\\n\\v\\x01\\f\\b\\x1b\\f\\r\\x18\\x18\\x15\\x04\\x01\\x01\\t\\x03\\x04\\t\\x03\\x04\\x01\\x03\\x04\\f\\x12\\x01\\x05\\x02\\b\\x04\\x04\\x05\\x05\\x02\\x02\\x01\\x13\\r \\x01\\x0f\\x15\\\"\\a\\b\\x02\\x04\\x03\\x02\\n\\x05\\x05\\v6\\x06\\x03\\x03\\x01\\t\\x04\\x18\\n\\t\\x02$\\x03\\x06\\v\\x01\\v\\x10\\x0f\\x06\\x05\\x02\\x02-\\x01\\x04\\x05\\x01\\x03\\v5\\x16\\x05\\x01\\x05\\x03\\x02:/\\n\\x13\\x10\\x0e\\n\\a\\x02\\x02\\n\\a\\b\\x1f-=\\x0e\\b\\f(\\x0f\\x0e\\x01\\t\\x04\\x04\\x06\\x01%\\x17\\x03\\x05\\f\\x14\\x13\\x1e\\x05\\x05\\x02\\x04\\x05\\x02\\x06\\x06\\x06\\x02\\x02\\f1\\a\\x04\\x01\\x03%\\x05\\n\\b\\x06\\x01\\x02\\x01\\x03\\x04\\x02\\x0f\\a\\a\\x1f\\x01\\x01\\x05\\x03\\x03\\x04\\x10\\x02\\n\\a\\x13\\x05\\x02\\x04\\x16m7\\x10\\x03\\n\\x1c\\x17\\x1a\\x06\\x16,\\x03\\x94\\x13\\x10\\n\\a\\x02\\x01\\x01\\x01\\x01\\x03\\v\\x12\\x11\\t\\a\\x02\\x01\\x01\\x01\\x01\\x03\\\"\\x01\\x0f\\a\\r\\x03\\x03\\v\\x14\\t\\x10\\x03\\x00\\x00\\x00\\x01\\x00\\x03\\xff\\xc0\\x01\\xbd\\x01\\xc0\\x00.\\x00\\x00%\\x14\\a\\x06#\\\"&#\\\"\\a\\x0e\\x01#\\x15\\x14\\x06#\\\"&5\\x11&5462\\x16\\x15\\x14\\a\\x152>\\x0432\\x1632632\\x16\\x15\\x01\\xbc\\r7%\\x16H\\x1d2B\\x01\\x04\\x01\\x14\\x0e\\x0e\\x14\\x17\\\"/\\\"\\x17\\x01\\v\\x0f\\x17\\x17\\x1d\\r%P\\n\\x17C\\x02\\x06\\tY\\b\\x06\\x17\\x1c\\x1d\\x01\\x01N\\x10\\x13\\x14\\x0f\\x01w\\x11\\x1c\\x17\\\"\\\"\\x17\\x1d\\x10 \\x05\\x06\\a\\x06\\x05\\x1c\\x1c\\b\\x06\\x00\\x04\\x00\\x10\\xff\\xc0\\x01p\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x007#\\x113\\x17\\x11#\\x113\\x11#\\x113\\x15#5B22e3\\x983\\x972~\\x01BL\\xfeL\\x01\\xb4\\xfeL\\x01\\xb4\\xf7\\xf7\\x00\\x00\\n\\x00\\x00\\x00L\\x02\\x80\\x01)\\x00\\x03\\x00\\t\\x00\\x13\\x00\\x17\\x00\\x1b\\x00?\\x00G\\x00\\x9b\\x00\\xa3\\x00\\xab\\x00\\x0075\\x16\\x177\\x163\\x06'7$\\\"&5462\\x16\\x15\\x14\\a53\\x15#57\\x15'\\x1e\\x02\\x14\\x15\\x14\\x15\\x1c\\x01\\x0e\\x01\\a\\x0e\\x03+\\x01\\x06'.\\x0245454>\\x03;\\x016\\a54\\\"\\x1d\\x01\\x142'\\x1e\\x02\\x14\\x15\\x1c\\x03\\x0e\\x05\\a\\x0e\\x03#'\\x06'.\\x024547&'\\x15632\\x16\\x1d\\x01&'54#\\\"\\x1d\\x01'&'\\x15\\x16\\x17\\x16\\x17\\x15#5.\\x046?\\x01>\\x01\\x177\\x15\\x16\\x1767>\\x033\\x176'7&\\a\\x0e\\x01\\x16\\x1f\\x0154\\\"\\x1d\\x01\\x142\\x90\\x13\\x14\\x13&&)6\\x13\\x01\\xa5\\x18\\x11\\x11\\x19\\x10::\\x84:Y\\a\\a\\x03\\x03\\b\\x06\\x05\\x0e\\r\\v\\x04\\x03 \\x12\\a\\a\\x03\\x01\\b\\x10\\x19\\b\\t \\x15\\x16\\x16k\\a\\a\\x03\\x01\\x01\\x02\\x02\\x04\\x04\\x03\\x05\\x0e\\r\\v\\x04\\x03 \\x12\\a\\a\\x03\\t#A\\r\\x1a\\x13\\x15\\x1e\\x1b\\v\\v\\x04!\\x15\\x12\\x15\\t\\n:\\x11\\x1a\\x0e\\a\\x01\\x01\\x01\\x01\\a2)\\x16@&\\x03\\x03\\x05\\x0e\\r\\v\\x04\\x03 \\xf8\\x1d.\\x12\\x03\\x02\\x12\\x16\\xe3\\x16\\x16`\\x10\\n\\a\\x06\\r\\v\\x12\\x01x\\x11\\f\\f\\r\\r\\f\\f\\x89nn\\xa8\\x1b\\xc3w\\x06\\f\\x11\\x05\\f\\x01\\x03\\b\\t\\x0e\\f\\x06\\x05\\a\\x03\\x02\\x01\\x12\\a\\f\\x11\\x05\\f\\x01\\x03\\v\\v\\x12\\x10\\t\\x02Z(\\v\\v(\\rT\\x06\\f\\x11\\x05\\f\\x01\\t\\x02\\b\\x03\\a\\x03\\a\\x04\\x06\\x02\\x05\\b\\x03\\x02\\x01\\x02\\x13\\x06\\f\\x11\\x05\\f\\x1e\\x0e\\x1a 6\\x16\\x16\\x10^\\f\\x121\\x0f\\x13\\x1d\\x03\\x1b\\x18\\x1f\\x10\\x10\\a\\x06\\x1dJ\\x10\\x1d\\x16\\x12\\r\\t\\x02\\x01\\x0f\\x01\\x0f\\n\\x15\\x1f\\x1e\\x03\\x03\\x05\\b\\x03\\x02\\x01\\x02\\x1e\\x0e\\x11\\x0f\\x03\\r'\\x189(\\v\\v(\\r\\x00\\x00\\x00\\x02\\x00\\a\\xff\\xc0\\x01y\\x01\\xc0\\x00\\x05\\x00\\v\\x00\\x00\\x1b\\x01#'\\a#!3\\a'3\\x17\\x9e\\x97Y>>Y\\x01.CoqD-\\x01\\xc0\\xfe\\xdctt\\xdc\\xdcX\\x00\\x00\\x00\\t\\x00\\x00\\x00<\\x02\\x80\\x01D\\x00\\x11\\x00\\x1b\\x00\\x1f\\x00>\\x00R\\x00Y\\x00h\\x00s\\x00w\\x00\\x00\\x13\\x153\\x15#\\x15\\x14\\x16267\\x15\\x06#\\\"&=\\x01\\x176\\x17\\x15&\\a\\x15#537\\x15\\a5\\x05\\x14\\x1e\\x02\\x15\\x14\\x0e\\x01#\\\"'5\\x163254.\\x0254632\\x17\\x15&#\\\"\\x05\\x14\\a#\\x16327\\x15\\x06#\\\".\\x0154632\\x16\\a34&#\\\"\\x06'2\\x16\\x15\\x14\\x06#\\\"'\\x0f\\x0153\\x176\\x172654&#\\\"\\a\\x17\\x16\\a53\\x15\\xa5\\\"\\\"\\t\\f\\n\\x03\\v\\x14\\x14\\x1a\\x84\\f\\x19\\x15\\r,&_,\\xfe\\xff\\x15\\x1a\\x15\\x10\\x1c\\x13\\x19\\x17\\x1a\\x17\\x11\\x15\\x1a\\x15!\\x1b\\x18\\x14\\x15\\x17\\x0f\\x02S\\x01W\\x03 \\x18\\x14\\x15\\x1d\\x16 \\x13%\\x1f\\x1e\\\"X.\\r\\t\\n\\x0eq\\x19$#\\x1a\\x10\\x0f\\x01,'\\x02\\x10\\t\\f\\x0f\\x0f\\f\\x0e\\b\\x01\\br,\\x01/&&?\\t\\n\\x02\\x01\\\"\\x06\\x18\\x14\\x8e*\\x16\\t)\\a\\x10g\\x99;$\\n$^\\a\\t\\a\\x17\\x12\\x0f\\x16\\v\\v(\\x0f\\v\\a\\n\\b\\x15\\x11\\x17\\x1b\\b*\\v+\\t\\a\\x1a\\t!\\f\\x11$\\x1a#..\\x13\\x0e\\x0f\\x0f3+%((\\f2\\n\\xcd\\v\\x0e{\\x18\\x12\\x12\\x17\\bB\\t!\\x99\\x99\\x00\\x00\\x00\\x00\\x01\\x00\\v\\xff\\xbf\\x01v\\x01\\xc0\\x00\\\"\\x00\\x00\\x13\\x14\\x1e\\x04\\x15\\x14\\x06#\\\"&'5\\x163254.\\x0454632\\x17\\x15&#\\\"\\x9b!090 l\\\\\\\"[\\x1fTH7 090 iXLBDJ1\\x01%\\x0e\\x16\\x0e\\x18\\x1e;(KO\\x13\\r\\x81.#\\x10\\x18\\x0f\\x18\\x1d8%KV\\x1a\\x86$\\x00\\x00\\x00\\x00\\x02\\x00\\a\\xff\\xe0\\x01\\xb9\\x01\\xa0\\x00\\x15\\x00#\\x00\\x00\\x13\\x14\\x1e\\x02327\\x0e\\x01#\\\".\\x01547>\\x027\\x0672\\x15\\x14\\x0e\\x01#\\\".\\x02546\\xb3\\x1c)3\\x14\\f\\a&R\\x1b$Y;\\t\\r:F$\\x0e{\\x8a\\x1c%\\r\\x12%\\x1d\\x12\\x12\\x01r\\x19YW@\\x02<O~\\xa04\\x17\\x0e\\x0f\\x1c\\x13\\x04\\v\\x124'X8,=E\\x19\\x16\\x0e\\x00\\a\\x00\\x0e\\x00\\x01\\x02r\\x01\\u007f\\x00.\\x00[\\x00q\\x00\\xb4\\x00\\xce\\x01\\x00\\x019\\x00\\x0076\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x1632367>\\x0176\\x17\\x1e\\x01\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\\"+\\x01\\\"#&#&'&'.\\x01'4'\\x1323\\x161\\x16\\x17\\x16\\a\\x06\\a\\x06\\a\\x06'&'\\x15\\x141\\x06#\\\"#&50=\\x0146;\\x012\\x17\\x14\\x17\\x1430>\\x01767\\a0\\x150\\x141\\x15\\x14\\x17\\x163\\x167654'&'&\\a\\x067232\\x163\\x16\\x17\\x16\\x17\\x16\\x150\\x1d\\x01\\x14\\x15\\x06#\\\"#\\\"'4'\\\"\\x15\\x0e\\x01'&'&7676\\x17\\x16\\x1721450454&'&\\a\\x06\\a\\x065<\\x01547676362\\x17<\\x01=\\x014#\\\"&'\\\"#\\\"\\a\\x06\\a\\x06\\x14\\x17\\x16\\x17\\x167676\\x05\\x150\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\\"&747676'4'&'&\\a\\x06\\\"\\x06\\a\\\"+\\x01\\\"5&1476767632\\x17\\x16\\x17\\x16'0\\x170?\\x014656;\\x022\\a\\x14\\a\\x06\\a\\x06\\a\\x06'\\\"'&5<\\x01\\x17:\\x01\\x17232767>\\x0176'&'&5&3232\\x17\\x16\\x15\\x16\\x0e\\x03\\a\\x1c\\x03=B  ((\\a\\a\\x18\\x1d#_!\\x05\\x04\\x05\\x03\\x04\\x04\\x05+9%&\\x1b\\x1a\\x02\\x01\\x15\\x01\\x01\\x04\\a\\x1a\\x19)'\\\"U\\x1b\\x04\\x9e\\x06\\x02\\n\\x1f\\r\\t\\x01\\x01\\t\\x0f\\x1d\\\"\\x1b\\x01\\x01\\x01\\x04\\v\\n\\x05\\x03\\x05\\v\\a\\x01\\x01\\x01\\x03\\x03\\x01\\x11\\x15+\\x01\\x13\\x13!\\t\\x04\\x05\\b\\x19\\x18\\x16\\x01\\xcd\\b\\x04\\x02\\a\\x02\\r\\t\\x10\\x03\\x01\\x01\\x04\\b\\b\\x05\\x01\\x02\\x01\\x13,\\x10\\x12\\x03\\x02\\x06\\t\\x14\\x0e\\x14\\x10\\x10\\x01\\n\\f\\x11\\x14\\x05\\x13\\a\\x06\\x0e\\x03\\x0f\\x0e\\x01\\x02#\\x02\\x01\\x13\\x05\\x03\\x04\\t\\b\\r\\x04\\x01\\x01\\x03\\n\\a\\t\\x14\\x12\\x01\\x01\\x04\\x01\\x01\\a\\x12\\x06\\x06\\x02\\x03\\x02\\x03\\x01\\x01\\f\\x04\\x04\\x01\\a\\b\\a\\x0e\\x14\\x03\\t\\b\\x03\\x01\\x01\\x01\\x03\\x01\\x01\\x02\\x02\\x10\\x18\\r\\x0e\\x06\\x06\\v\\n\\b\\x83\\x01\\b#\\x01\\x02\\x05\\x01\\x14\\x04\\x01\\x01#$\\x04\\x05\\r\\x1a\\t\\b\\b\\x05\\x02\\x05\\x01\\x02\\x03\\x05\\x05\\v\\x05\\x01\\x06\\x02\\x02\\x02\\x1e\\x1d\\x02\\x01\\x04\\b\\x0f\\x04\\x02\\x06\\x14{\\x06\\x04\\x0f\\x02\\x1e\\x10\\a\\x05\\x05\\x01\\x03\\x04\\x19\\x0e\\x02\\x01\\x01\\t\\x04\\x04\\x03\\x1e\\x12\\f\\x06\\x04\\x01\\x01\\x01\\x04\\a\\x0e\\f3\\x18\\x01\\x05\\x01\\x06\\x02\\x06\\x1f\\x14\\x1d\\x19\\x14\\x1d\\x05\\a\\x16\\x01\\x01I\\x02\\x06\\x01\\x05\\x02\\xd2\\x05\\x03\\a\\x02\\x06\\x01\\x03\\x01\\x01\\r\\x02)**\\x01\\x02\\x01\\r\\x02\\x1e\\f\\x13\\x13\\x0e\\x18\\x02\\x01\\x0f\\x01(\\x01\\x02\\x05\\n\\x15\\x06\\x06\\x01j\\x01\\x02\\x04\\x05\\x02\\t\\x01\\x0f\\a\\t\\n\\x16\\x11\\r\\x12\\a\\x05\\x01\\x01\\x04\\x01\\x01\\x13\\x05\\n\\r\\x02\\x03\\x04\\x01\\x05\\x02\\a\\x02\\x06\\x02\\x06\\x02\\x04\\x01\\x04\\x01\\x80\\x03\\n\\x01\\x0f\\x02\\x03\\x01\\x03\\x04\\v\\x05\\n\\x05\\t\\x04\\x03\\x01\\x02\\r\\x01\\u007f\\x12\\b\\x02\\\"\\x16\\a\\x06\\x02\\x01\\x02\\x02\\x02\\x01\\x1e\\x0f\\x0f\\t\\b\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\f\\x04\\x03\\x01\\x01\\x03\\x02u\\x02\\x16d\\x01\\x02\\x01\\x05\\x04\\x03\\x03ZY\\n\\t\\x16\\x01\\x02\\x01\\b\\x05\\n\\x01\\x01\\x01\\x03\\v\\x04\\x0f\\x03\\x06\\x06IH\\x03\\x04\\x04\\x05\\x0f\\x025\\x00\\b\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x12\\x00(\\x008\\x00r\\x00\\xb3\\x00\\xe3\\x01\\x0e\\x017\\x00\\x0070=\\x01476\\x17\\x16\\x17\\x16\\x15\\x14\\a\\x06'\\\"'&\\x17.\\x017676\\x172\\x1632\\x1d\\x01\\x1c\\x03#\\x06\\a\\x06%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\x16\\x17\\x1e\\x01\\x17\\x16\\a\\x0e\\x01\\a\\x06\\a\\x06#0&#\\\"\\x14\\x15\\x14\\x17\\x163\\x1676767674#0\\\"1\\\"\\a\\x14\\x06\\x15\\a\\x06\\a45.\\x01'&'&#\\\"#\\\"\\a\\x16\\x17\\x166761\\x16\\x15\\x16323250=\\x014'&'&'\\\"&+\\x01\\\"1\\x06\\a\\x06\\a\\x06\\x15\\x1c\\x01\\x15\\x147676\\x17\\x16\\x17\\x16\\x15\\x1c\\x02\\x150\\x15\\\"1&'&\\a\\x06\\a\\x06'\\x15\\x14\\x15\\x14323254=\\x010\\x161\\x16767656'&'\\\"'+\\x010\\x061\\x06\\a\\x06\\a\\x06\\a054&5&+\\x01\\\"\\x05&\\a\\x06\\a\\x06\\a\\x06'&'&'&'&\\a\\x15\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17230;\\x0121676767676&7&'&'&\\a\\x06\\a\\x06\\a\\x14\\x15\\x1432376\\x172\\x17\\x1e\\x01\\a\\x06\\a\\x061\\x14\\x163676767674}\\x01\\x12\\x14\\x15\\a\\x04\\x03\\b\\x1c\\x0f\\x10\\x01\\x9b\\b\\x05\\x02\\x03\\v\\t\\f\\x04\\x0e\\x02\\x02\\x01\\x0f\\x10\\b\\x01\\\"\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xd0\\x01\\x01\\x04$\\n\\x02\\x02\\x01\\x05\\x02\\x04\\t\\x06\\a\\x05\\x01\\x04\\x06\\t\\x05\\x16\\v\\x05\\x03\\x14'\\x01\\x01\\x04\\x10\\x05\\x02\\x01\\x1d\\x03\\x04\\x06\\x15\\x06\\x02\\x03\\x02\\x04\\f\\a\\x03~\\x03\\x0f\\x0e%\\x0f\\x01\\x02\\x01\\x03\\a\\a\\x04\\x01\\x02\\x0e\\a\\v\\x01\\x06\\x02\\n\\x02\\x0e\\v\\x02\\f\\x05\\x06\\x0e\\x05\\x12\\x0e\\t\\x05\\x04\\x01\\x0e\\r\\x10\\f\\x11\\a\\x06\\x8d\\x04\\t\\t\\x04\\x02\\x16\\x1d\\x18\\f\\t\\x01\\b\\v\\x19\\x02\\x04\\x02\\b\\x03\\x11\\x0f\\x01\\x02\\x02\\x01\\x01\\x01\\x06\\t\\a\\x01\\x8b\\x03\\x05AH\\x16\\x15((\\x1b\\x1a92\\x02\\x18\\x05\\x03\\x03\\x016D #\\x15\\x15\\x06\\x03\\x02\\x12\\x02\\x16\\x17 \\x1f/$\\x06\\x02\\x03\\x02.\\x01\\a\\a\\n\\x11\\x10\\x14\\x0e\\x02\\x01\\x03\\x01\\x01\\x13\\x12\\v\\x05\\a\\x06\\x01\\x03\\x04\\n\\x01\\x02\\x02\\x02\\x02\\b\\x02\\x0f\\x06\\x01\\x01\\xf6$#\\x02\\x01\\f\\x01\\x02\\x14\\v\\x11\\x0f\\n\\x1a\\x02\\v\\x02\\r\\x03\\x10\\b\\n\\x03\\x03\\x01\\x03\\x02\\f\\x01\\x05\\x04\\x04\\v\\x02\\x01\\x8b\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c,\\x03\\x02\\tY\\x18\\x05\\x05\\x03\\f\\x04\\b\\x03\\x01\\x01\\b\\x04\\a\\x01\\x01\\x01\\x13\\b\\a2e\\x02\\x02\\x04\\x04\\x01\\x02\\x01T\\b\\n\\x01\\x01\\x0f<\\x0f\\x06\\b\\x04j\\x12\\t\\a\\x06\\f\\x01\\a\\x02\\x04\\x04\\x02Y\\x05\\x06\\x11\\b\\x04\\x02\\x01\\x01\\x03\\x01\\x04\\x01\\x05\\x02\\x05\\x02\\x05\\x01\\x04\\x01\\x03\\x02\\x01\\x06\\x05\\b\\x03\\a\\t\\x02\\x01\\x03\\x01\\x01\\x04\\a\\x0e\\vT\\xaf\\x02\\x01\\x04\\x04\\x01\\x02<\\x01\\x13\\x06\\x05\\x18\\x10\\x15\\x18\\x12\\x1a\\x05\\x01\\x01\\x02\\n\\x01\\x02\\x01\\x01\\x01\\x02\\x04\\x01\\x06\\xef\\x01\\x02\\x1b\\t\\x02\\x01\\x01\\x05\\x04\\x06\\x0e\\x19\\x01\\r\\x03\\x05\\x02\\x04\\x010\\x19\\v\\x06\\x03\\x02\\x01\\x03\\x05\\n\\x0f\\x19\\x04\\x02\\x03\\b\\x1d\\x04\\x03\\x02\\x01\\x01\\x03\\x03\\n\\x01\\x02\\x01\\x02\\x02\\x03\\x01\\x01\\x02\\x01\\x0f\\f\\x0f\\x17\\x02\\x02\\x02\\x01\\x01\\b\\x03\\x13\\x1c\\x03\\x06\\x05\\x00\\x02\\x00\\b\\xff\\xc0\\x018\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\x00%\\a'\\x13\\x117\\a'\\x018\\x98\\x98\\x98\\x98\\x98\\x98\\xbb]]\\x01\\x05\\xfe\\x81\\\\\\xdd\\xdd\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xbf\\x01\\x9e\\x00\\x0f\\x00\\x16\\x00\\x1d\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x1537#\\a5\\x133'#\\x1535\\x01\\x82\\x19##\\x18\\xfe\\xb9\\x19##\\x19\\x1b\\xbcQo>BvX\\xc0`\\x01\\x9e#\\x19\\xfe\\xba\\x19##\\x18\\x01G\\x19#W\\x84\\x84tt\\xfe\\xf0\\x83\\x83r\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\x1535#\\x1575#\\x1575#\\x15\\x01\\xaa\\t\\r\\r\\t\\xfel\\t\\r\\r\\t\\x8e(\\xc8xxxxx\\x01\\xa0\\r\\t\\xfel\\t\\r\\r\\t\\x01\\x94\\t\\r\\xfe\\xbc\\xc8\\xc8((P((P((\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x02\\x00\\x12\\x002\\x00\\x007\\x17\\a%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4'&'.\\x01+\\x01\\\"\\a\\x06\\a\\x0e\\x01\\x1d\\x01\\x14\\x17\\x16\\x17\\x1e\\x01;\\x012767>\\x015\\xbb__\\x01\\x05\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c*\\b\\x06\\x1a\\fG\\x1e\\x1dr\\x1c\\x1a\\x06\\x04\\x04\\b\\x06\\x1a\\fG\\x1e\\x1dr\\x1c\\x1a\\x06\\x04\\x04\\xf666\\xe6\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xc4;\\x1d\\x1a\\x06\\x04\\x04\\b\\x06\\x1a\\r,\\x10\\x0f<\\x1c\\x1a\\x06\\x04\\x04\\b\\a\\x19\\f,\\x10\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\v\\x00\\x00\\x11!\\x11!\\x015!\\x113535\\x01\\xc0\\xfe@\\x01f\\xfe\\xf4YZ\\x01\\xa0\\xfe@\\x01\\rY\\xfe\\xf4YZ\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\b\\x02\\x84\\x01x\\x00\\v\\x00/\\x00[\\x00n\\x00z\\x00\\x82\\x00\\x00\\x13\\x15\\x14+\\x01\\\"=\\x014;\\x012\\a\\x16\\x1d\\x01\\x14+\\x01\\\"&=\\x016/\\x01\\\"\\x0e\\x03\\x1d\\x01\\x14+\\x01\\\"5\\x114;\\x012\\x1d\\x01632\\x05\\x16\\a\\x06\\a#\\x06#\\\"'&=\\x0146\\x17\\x163276/\\x01&'&7632\\x172\\x1d\\x01\\x14'&\\\"\\a\\x06\\x16\\x1f\\x01\\x16'2\\x16\\x14\\x06#\\\"'\\x15\\x14+\\x01\\\"=\\x014>\\x02\\x172654.\\x01#\\\"\\x06\\x14\\x16&2\\x16\\x14\\x06\\\"&4\\xfc\\x03)\\x03\\x03)\\x03`\\x1c\\x02\\x1c\\x06\\n\\x01\\x18\\x17\\r\\x14\\b\\x04\\x01\\x02)\\x03\\x03)\\x02\\x17\\x1b$\\x01\\xf7\\b\\x05\\t$\\x01\\x0e\\x16\\x19\\x17\\x0f\\x03\\x02\\x19!\\x1f\\x06\\x05\\x125 \\x05\\x06\\x1c\\x15&\\x1c\\x1b\\x02\\x04!+\\b\\x05\\x01\\x06:\\x19\\xf9.?@-!\\x19\\x02)\\x03\\x17# \\x0e\\x1a$\\x10\\x1d\\x11\\x1a$$\\x86\\x18\\x11\\x11\\x18\\x11\\x01\\\"\\xc9\\x03\\x03\\xc9\\x03\\r\\x14#\\x88\\x03\\t\\a{\\x12\\x06\\x03\\x06\\x06\\v\\x02\\x02\\x88\\x03\\x03\\x01\\x17\\x02\\x02Q\\v\\x80\\x13\\x14#\\v\\x04\\b\\x05\\x10\\\"\\x02\\x01\\x01\\x13\\x0e\\r\\b\\x18\\x0e\\x1d\\x1f\\x17\\x0f\\n\\x02-\\x05\\x03\\r\\a\\x03\\n\\x03\\x19\\vi?[?\\x13Y\\x03\\x03\\xb8\\x1d+\\x16\\t\\xab%\\x1a\\x11\\x1c\\x11%3%\\xf9\\x11\\x18\\x11\\x11\\x18\\x00\\a\\x00\\x00\\x00\\x17\\x02\\x80\\x01i\\x00\\a\\x00\\x18\\x00.\\x00?\\x00f\\x00{\\x00\\x8d\\x00\\x00\\x00\\\"\\x06\\x14\\x16264%2\\x1e\\x01\\x14\\x0e\\x01\\\".\\x0154>\\x04\\a6<\\x01.\\x04*\\x01#\\a:\\x02>\\x05\\a732\\x17\\x16\\x06\\a\\x0e\\x05\\\"#\\a73\\a262\\x1e\\x03\\x17\\x1e\\x03\\x0e\\x04\\a#67>\\x01'.\\x03*\\x04#\\a#%64.\\x05*\\x01#\\a:\\x02>\\x04\\a732\\x17\\x16\\x06\\a\\x0e\\x04\\\"\\x06\\\"#\\a\\x01\\xbe\\xfc\\xb1\\xb1\\xfc\\xb1\\xfe\\xd1W\\x93VV\\x93\\xae\\x93V\\x17);GR:\\x01\\x05\\x03\\b\\x05\\f\\x06\\x0f\\x03\\x0e\\x02\\x12\\x05\\x0e\\x05\\n\\x05\\x06\\x04x!G \\x0e\\x0e\\b\\x14\\x05\\n\\r\\b\\x13\\x06\\x1a\\x03\\t\\x95%\\t\\x04\\x12\\t\\x0e\\t\\n\\b\\x03\\x02\\x04\\x01\\x01\\x01\\x01\\x04\\x03\\x05\\x03%\\x03\\x05\\a\\x01\\x03\\x01\\x02\\x03\\x04\\x05\\x04\\b\\x06\\n\\x04\\x13%\\x00\\xff\\x01\\x01\\x04\\x03\\b\\x05\\f\\x06\\x0f\\x03\\x0e\\x02\\x14\\x05\\x0f\\x05\\v\\x05\\x06x!G \\x0e\\x0e\\t\\x13\\x04\\n\\a\\r\\x06\\x12\\x06\\x17\\x03\\t\\x01X[z[[zk-M\\\\M--M.\\x17,$ \\x15\\f\\x9a\\x05\\t\\a\\x05\\x04\\x02\\x01\\x01G\\x01\\x02\\x03\\x06\\a\\ve\\xa8\\x10\\x106\\x12\\x05\\a\\x04\\x02\\x01\\x01,\\xd5-\\x01\\x01\\x01\\x03\\x03\\x03\\x03\\x04\\a\\x06\\f\\t\\x13\\x0f\\x1b\\v\\x0f\\x17\\\"\\x0f\\x05\\x01\\x01\\x01\\x01`?\\x05\\t\\a\\x05\\x04\\x02\\x01\\x01G\\x02\\x02\\x06\\a\\fd\\xa8\\x10\\x106\\x12\\x04\\x06\\x05\\x02\\x02\\x01,\\x00\\x00\\x00\\x03\\x00\\f\\xff\\xc8\\x01\\xf6\\x01\\xb8\\x00\\x1d\\x00\\x1f\\x00'\\x00\\x00\\x05\\x16\\x17\\x06#\\\"#\\\"&462\\x16\\x15\\x14\\a&'6.\\x02#\\\"\\x06\\x15\\x14\\x1e\\x0137\\x1562\\x16\\x14\\x06\\\"&4\\x01:\\n\\x03\\\"#\\x01\\x01e\\x8f\\x8fˏ\\x14\\x02\\t\\x04\\x16*?\\\"B]+I+\\x01%R::R:\\x1b\\n\\x02\\n\\x8fˏ\\x8ff3.\\x03\\f\\\"A0\\x1e]A+I+\\x01\\x01\\xa9:R::R\\x00\\a\\x00\\x00\\xff\\xee\\x02@\\x01\\x92\\x00!\\x00-\\x009\\x00E\\x00Q\\x00]\\x00i\\x00\\x00\\x01\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\a\\x06\\\"'.\\x02+\\x01\\\"&=\\x0146;\\x012\\x16\\x17>\\x013\\x0354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02\\x10\\x14\\x1c\\x1c\\x14ZI>\\f\\x01\\x04\\x01\\b\\x1c=2Z\\x14\\x1c\\x1c\\x14\\x8c$8\\b\\b8$\\x92\\x03\\xa1\\x03\\x03\\xa0\\x04\\x03\\xa1\\x03\\x03\\xa0\\x04\\x03\\xa1\\x03\\x03\\xa0\\x04\\x01\\x03\\x03\\xa0\\x04\\x04\\xa0\\x03\\x03\\xa0\\x04\\x04\\xa0\\x03\\x03\\xa0\\x04\\x04\\xa0\\x03\\x01\\x92\\x01\\x1c\\x14\\xf5\\x14\\x1c#(\\x02\\x02\\x1b\\x1f\\x11\\x1c\\x14\\xf6\\x13\\x1d.##.\\xfe\\xf6\\x17\\x03\\x03\\x17\\x03@\\x17\\x03\\x03\\x17\\x03@\\x17\\x03\\x03\\x17\\x04v\\x17\\x04\\x04\\x17\\x03@\\x17\\x04\\x04\\x17\\x03@\\x17\\x03\\x03\\x17\\x04\\x00\\b\\xff\\xf2\\xff\\xbc\\x01\\x89\\x01\\xc0\\x00\\x12\\x00'\\x00=\\x00O\\x00h\\x00v\\x00\\x82\\x00\\x92\\x00\\x00%\\x06'&767>\\x01;\\x010\\a\\x06\\x17\\x16?\\x01\\x06'.\\x0367>\\x03'0\\x17\\x16\\a\\x0e\\x01\\x1e\\x027\\x0e\\x02\\x1e\\x01\\x17\\x16\\x17\\x16\\x06\\x0f\\x01>\\x03&'&76\\x136'&'\\\"\\a\\x06\\a676\\x17\\x16\\a\\x06\\a6\\x17\\x16\\a\\x06'&'&7672\\x17\\\"\\a\\x06\\a\\x14\\x17\\x1667>\\x01/\\x010\\a\\x06\\x17\\x167\\x16\\x17\\x06'&76\\x17>\\x01?\\x01\\x0e\\x01'&'\\x1667\\x16\\x17\\x06'&767\\x0e\\x02\\x14\\x16\\x17\\x16\\x01\\x16Of9\\x04\\x01\\b\\x14(\\v\\n)\\x1d%)RM\\r`\\x10\\x16\\x15\\t\\x01\\a\\v0%\\x16\\a\\n\\x15R\\x17\\x15\\x06\\f\\x16w %\\x11\\x02\\a\\t\\x03\\x01\\v\\x0f\\x0f\\x0f\\x01\\x04\\b\\x04\\x04\\a=e\\x1a\\x14C\\n\\x06\\x16\\x04\\x05\\x05\\x06\\x04\\x05!\\x14\\x14\\x19\\x15/\\x010\\x1b'G\\x8822+\\x1a\\x19!\\v\\x04\\a\\v\\x1e\\x02\\x05)\\xcd.\\x0e\\b\\x03\\xe3\\x05\\x02\\x1546\\x0e\\x0fEF$\\x02\\x01\\xcb\\x1f&\\x04\\x03\\x02\\x98S4\\x14(\\x89\\r\\t\\fYK$\\x03\\x02\\x19\\x01\\x02\\x04\\t\\nB\\x87\\x15\\t\\x05\\f\\x03\\x04\\n\\t\\f\\r\\x05\\x05\\x06\\v\\x06\\x19\\x0f\\x16\\x1a\\x16\\x17\\n\\x10(\\x1c2\\x1d\\x107@\\x13\\\"\\x1e\\x17\\x1e\\xa6\\x12\\x1d\\x14\\x17\\r\\r\\x03\\x02\\x15 \\n\\n\\x01\\x04\\f\\f\\x11\\bG2\\f\\xfe\\xf9##\\x14\\x02\\x01\\x01\\x02\\x05\\x02\\f\\x18\\x17\\x1c\\x16\\r\\x01<\\f\\x10\\x1c\\x06\\x03\\b\\a\\x11\\x12\\x01\\x03\\x02\\a\\t\\x03\\x02\\x10\\x02\\x0e\\x05\\n\\x03-\\x06\\a\\x02\\x06\\n\\b\\x05\\x1e\\x11\\b\\r\\tZ\\x06\\x0f\\x04\\x04\\x1d\\x17\\x06\\x03\\n\\b\\x01\\x97\\t\\x04\\x1a\\x0f\\a\\r\\t\\b\\x01\\x02\\x06\\x05\\x05\\x01\\a\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xd8\\x02\\x80\\x01\\xa8\\x00G\\x00\\x00\\x01\\x0e\\x04\\x15\\x0e\\x01\\a\\x0e\\x021\\x06\\a&\\x0e\\x06\\a7>\\x04\\x16\\x170\\x161\\x16\\x0f\\x01\\x06'&\\x0e\\x02\\a\\\".\\x0154327>\\x0132\\x1e\\x03\\x1770>\\x027>\\x02\\x02\\x80\\x17\\\"\\x14\\v\\b\\x03\\x0e\\a\\x05\\x19$\\r\\x1d\\x14&\\x1c'\\x13,\\f5\\x06+\\x0e:\\x193'<#\\x02\\a\\x045\\x05\\t)bBU\\x1c!1\\x10\\x02&A5f7\\x03\\n\\x1b\\x16\\x18\\x05\\x1c\\x11\\x12\\\"\\x12\\x172\\x1a\\x01\\xa7\\x0f\\x1d\\x19\\x11\\x11\\x01\\x05B\\r\\n\\x14\\x14\\t7\\x01\\x04\\x03\\x0f\\x06\\x18\\a \\x04\\x11\\x05\\x18\\t\\x0e\\x03\\x01\\x05\\x01\\x04\\x06`\\b\\x02\\t\\x04\\v\\f\\x01\\x11\\x10\\x02\\x02\\x0ffX\\x01\\a\\v\\x1a\\x111!\\\"4\\x16\\x1e(\\x0e\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x0e\\x00\\x14\\x00 \\x00-\\x00\\x00%\\x15#\\x15#5#546;\\x012\\x17\\x16'42\\x15\\x14\\\"72\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x01;\\x1cM\\x1d\\n\\x06f\\x06\\x05\\x05fEE#i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\xfefxxf\\x06\\n\\x05\\x059##\\\"\\x9d\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00)\\x00B\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\a\\x06\\x15\\x14\\x1632>\\x057'\\x0e\\x01\\a\\x15#5\\\"'7\\x1e\\x0174'&7\\\"\\a\\x17>\\x01753\\x15\\x16\\x17\\a&\\a\\x06\\x17\\x16\\x1f\\x01654'&\\xf8i\\x8f\\x94df\\x92\\x8eV\\vxS\\x19/\\\"\\x1f\\x13\\x11\\x04\\x02]\\x06'\\x18\\x1d)\\\"\\\"\\x19=\\x01\\a\\x1c\\x01j@_\\a$\\x14\\x1d\\\"\\x1c #\\x1c\\x10\\t0-\\u007f\\x06;;\\x01\\xb8\\x8fik\\x8d\\x92fe\\x93\\xb5\\x1f$Sw\\v\\x11\\x18\\x13\\x17\\x06\\x04)\\x19\\x1c\\x02&&\\x1e\\\"\\x16\\x01\\x19\\n\\x06\\f\\xde]+\\x16\\x15\\x01''\\x01\\x15\\\"\\x19\\x0f\\b\\r\\x15\\x149\\x1a\\x1bV:<\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x0e\\x001\\x003\\x00M\\x00\\x00\\x132\\x16\\x15\\x14\\x0e\\x03#\\\"&546\\x132>\\x03741'#\\x16327\\x17\\x06#\\\"&'#53<\\x015#53'\\x06\\x15\\x14\\x167#7\\x17654&#\\\"\\a\\x1767632\\x17\\a&#\\\"\\a\\x06\\a\\x173\\x15\\xf8i\\x8f\\x1a0>J&f\\x92\\x8ej!<%\\\"\\n\\x05\\x80[\\f8\\x1b\\x14\\n\\x1c%-G\\b\\x1b\\x17\\x17\\x04A\\vxC\\x01N\\x88\\x06vUl>Q\\a\\a&:\\\"\\x1c\\v\\x18\\x16!\\x13\\x04\\x04\\x1cF\\x01\\xb8\\x8fi+N<,\\x17\\x92fe\\x93\\xfe=\\x15\\x19#\\x0f\\b\\x0182\\v.\\x1050\\x1e\\t\\t\\x01\\x1e\\x1d\\x1f#Sx\\xbf\\x13<\\x19\\x1cUv]$\\v\\t*\\f0\\n\\x16\\x05\\t\\r\\x1e\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00!\\x00%\\x00:\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x1327'\\x15#\\x15#5#535'#53'\\x06\\x15\\x14\\x167'\\a\\x157\\x17654&#\\\"\\x0e\\x02\\a\\x17'3\\x1f\\x0173\\a3\\xf8i\\x8f\\x94df\\x92\\x8ejlDR@=@@\\x06:\\x1c\\u007f\\tx\\xab7\\x03@e\\bvU :*\\x1e\\vQ\\x1bB(\\x17+B?&\\x01\\xb8\\x90hk\\x8d\\x92fe\\x93\\xfe=c$$88'\\x12\\f'8\\x1c Sx\\x8a\\x18\\x06\\x123-\\x1c\\x1fUv\\x11\\x1f\\x1f\\x13$3V\\n`t\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00\\x1c\\x00 \\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x17\\x15#5\\x17\\x15#5\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\t\\xb4\\xb4\\xb4\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\x90++P**\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00#\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x132>\\x017&'\\x14\\x1e\\x01327\\x17\\x06#\\\".\\x02547'\\x06\\x1e\\x02703654&#\\\"\\x06\\a\\x17632\\x17\\a&\\x06\\a\\x91Α\\x91Α\\xf8%E5\\x12\\x01\\xd9\\v\\x19\\x12\\x15\\x0f$!.\\x14&'\\x18\\x04O\\x13\\x133X\\xf5\\x01\\awS4Y\\x1bJ!D. (\\x0e0\\r\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xcf\\x1b/\\x1f\\x01`\\x11 \\x17\\x11,\\x1d\\f\\x1b4#\\x11\\x10#0`L0\\x96\\x1a\\x1aSw2*!4\\x1c)\\x10\\x04\\x18\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00\\x1e\\x00(\\x004\\x00;\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x132>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x132\\x14+\\x015\\x17254.\\x02+\\x01\\x15'2\\x15\\x14\\x0e\\x02+\\x01\\x15#5\\x1726&+\\x01\\x15\\xf8i\\x8f\\x94df\\x92\\x8ej4]:vUVuw\\x99FF56\\\"\\t\\x0f\\x06\\x05\\x13^2\\x03\\n\\x19\\x13\\x1b\\\"?\\r\\f\\f\\x0e\\x1c\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93\\xfe=2^;UvzQSx\\x01\\x11\\x89\\x89l'\\x0f\\x12\\x06\\x01Ol.\\x06\\f\\x12\\v,\\x89C\\x15\\x14)\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00,\\x003\\x007\\x00;\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x1f\\x01\\x15\\x0e\\x02#\\\".\\x01'\\a'57457\\x17\\x15\\a5#5'\\x15\\x17?\\x01'\\a\\x175\\a\\x15\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:vM\\x05\\x03 \\x1e\\x02\\x03:D\\t@?;C\\x98\\x15\\x01qq\\b(%'Y-\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\xcf\\x03F\\x01\\x0e\\r\\x18\\x1c\\x04\\x1b\\x1c@\\x18\\x01F\\x1d>>f,\\x02.-/:\\x10\\x10\\x115+\\x13+\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00<\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\a>\\x0332\\x1e\\x02\\x15\\x14\\x0e\\x01#\\\".\\x01'3\\x1632654.\\x03#\\\"\\a3\\a'\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\xc3\\x04\\x1b$\\x1c\\x0e#5\\x1b\\f\\x1b<*\\x16+'\\x05>\\x034\\x16$\\v\\r\\x14\\b\\x052\\x06\\x1211\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\xa8\\x1d*\\x12\\a\\x1b++\\x16!;(\\x0f.$.(+\\x17\\\"\\x0f\\b\\x01,11\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00s\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\a2\\x16\\x15\\x17742\\x15\\x14\\x177632\\x15\\x1776;\\x01\\x15#\\a\\x06&/\\x01\\a\\x06#\\\"'4'\\a\\x06#\\\"'4'\\a\\x14\\\"5'\\x06\\x15\\x06#\\\"'0&5'\\a\\x06#\\\"/\\x01\\x06+\\x015376\\x16\\x1f\\x0174632\\x15\\x1774>\\x012\\x1e\\x01\\x15\\x1776\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:vQ\\x04\\b\\x06\\x05\\x15\\x06\\x06\\x01\\t\\n\\f\\x05\\x03\\b:3\\x13\\x03\\x10\\x01\\x04\\b\\x01\\t\\n\\x01\\x06\\x05\\x02\\t\\t\\x01\\x06\\x06\\x15\\x06\\x05\\x02\\t\\t\\x01\\x01\\x06\\x05\\x01\\n\\b\\x02\\v\\x04\\a4-\\x0e\\x03\\x0f\\x02\\x03\\b\\x06\\x05\\n\\x05\\a\\x05\\x04\\x02\\x04\\x06\\x05\\x06\\x01\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv5\\x05\\x06l<\\n\\n\\x02P@\\n\\ta\\r\\a\\x16,\\b\\x02\\t \\\\\\n\\n\\x01LH\\t\\t\\x01W_\\f\\fWT\\x01\\n\\n\\x01\\x01Y9\\t\\tL\\b\\x15\\x1c\\a\\x02\\b\\x14b\\x04\\x06\\fE\\\\\\x05\\x05\\x01\\x01\\x05\\x05Pb\\n\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00_\\x00s\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x173\\x15#\\a\\x06&/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"5'\\a\\x14\\\"/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"/\\x01\\x06+\\x015376\\x16\\x1f\\x01762\\x1f\\x01742\\x1f\\x01762\\x15\\x177>\\x01\\x1f\\x01742\\x1f\\x0176\\a24+\\x0154\\\"\\x1d\\x01#\\\"\\x14;\\x01\\x15\\x142=\\x01\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\x16;3\\x12\\x03\\x12\\x01\\x03\\x06\\x01\\x16\\x01\\x04\\x05\\x01\\x16\\x05\\x05\\x16\\x01\\x05\\x04\\x01\\x16\\x01\\x05\\x04\\x01\\x15\\x01\\v\\x03\\a3+\\x0e\\x03\\x11\\x02\\x01\\b\\x01\\x15\\x01\\x04\\x06\\x16\\x01\\x04\\x05\\x01\\x16\\x06\\x04\\x01\\x15\\x01\\x05\\x05\\x15\\x02\\v\\x04\\x02F\\b\\b\\x15\\x10\\x15\\b\\b\\x15\\x10\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\xcd\\x17,\\b\\x03\\b\\x17S\\v\\v@:\\v\\vHQ\\v\\vIF\\v\\vN+\\v\\nI\\x06\\x17\\x1c\\a\\x02\\t\\fZ\\n\\n9P\\v\\vCT\\v\\v^-\\n\\x01\\vE3\\v\\n]\\t\\b\\x06\\x10\\x15\\b\\b\\x15\\x10\\x15\\b\\b\\x15\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x004\\x00<\\x00@\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\\".\\x02=\\x014732\\x1e\\x01\\x1d\\x01\\a354735#\\x17#\\x153\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\x10\\x06\\b\\b\\x06\\x87\\x05\\b6\\x03\\x05\\x04\\x02\\f\\x89\\x03\\a\\x03\\x87)\\f7l\\xb0ll\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\x84\\b\\x06\\xb6\\x06\\b\\b\\x066\\x02\\x03\\x06\\x02\\xb7\\v\\x03\\x04\\x06\\x046se\\f\\x02(C\\x9c\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00(\\x001\\x009\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x062\\x1e\\x02\\x14\\x0e\\x02\\\".\\x024>\\x01\\x17\\\"\\x15\\x14\\x1776'&\\x17\\a\\x06\\x163254\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:vr:*\\x16\\t\\t\\x16*:*\\x16\\t\\t\\x16G,\\x026\\b\\v\\x05%=\\t\\x10\\r,\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv<\\x1a+/6/+\\x1a\\x1a+/6/+\\x1cY\\x14\\x0ed\\r\\t\\x01.i\\r\\x0eY\\x19\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00?\\x02\\x80\\x01A\\x009\\x00A\\x00M\\x00a\\x00f\\x00\\x00\\x013\\a#7'\\x16\\x1d\\x01\\x14\\x17#&5\\x06#\\\"&547\\x0e\\x01#\\\"'\\x14\\a#6=\\x013\\x15632\\x16\\x15\\x14\\a672354#\\\"\\a#632\\x17'3\\x17\\x04264&\\\"\\x06\\x1475\\\"\\a\\x06\\x15\\x14\\x1e\\x01326%\\x1e\\x01673\\x0e\\x02#\\\"&54632\\x16\\x1d\\x01'.\\x01\\x06\\a\\x02^\\\"c$\\x1c=\\x05\\x01\\x1e\\x01\\x15)\\x1d \\x01\\x06(\\x1b'\\x14\\x01 \\x02 \\x14&\\x1e.\\x02\\nC\\x12\\x18)!\\x02\\\"\\x04C0\\x10\\v%7\\xfe\\xb6-\\x1c\\x1c-\\x1b\\xfb\\x18\\x10/\\a\\x10\\f\\x19\\x1b\\xfed\\x01)+\\x06!\\x03\\x19\\x1d\\x11*)*)$+\\\"\\x01--\\x04\\x01\\x02\\xc26t\\n\\x0eB\\x0f\\v\\t\\v\\x1a\\x1a\\x13\\x05\\x04\\x18\\x1e\\x19\\t\\n\\x16\\v\\xa9P\\x18($\\t\\b!\\x02\\x04!\\x16+\\x1a\\x14m\\x0f\\x1e0\\x1e\\x1e0\\x12\\x03\\x01\\x01\\x18\\a\\v\\b\\x1a\\x15\\x1b\\x18\\f\\x11\\x10\\x16\\b)!$*&&\\b\\x15\\x1a\\x16\\x15\\x1b\\x00\\x00\\x00\\x05\\x00\\x0e\\xff\\xdc\\x01\\xb2\\x01\\xa0\\x00\\a\\x00O\\x00`\\x00\\x8b\\x00\\x93\\x00\\x00$2\\x16\\x14\\x06\\\"&47\\x16\\x15\\x14\\a\\x06'.\\x017654'\\\"\\x15\\x061\\x0e\\x01'&\\x06\\a7\\a\\x16\\x17\\x16\\a\\x06'&'\\a54>\\x02767'.\\x01?\\x0147632\\x172\\x176?\\x01\\x17\\x06\\x176\\x17\\x1e\\x02\\x14\\a\\x16\\x17\\x16'67'&\\x0f\\x01\\x14\\x163\\x17&545'7\\x17654/\\x01&#\\\"\\a\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x1632?\\x01\\x17\\a\\x06\\x15\\x14\\x1f\\x01\\x1632?\\x01\\x17\\x1632\\x062\\x16\\x14\\x06\\\"&4\\x01\\x17\\x0f\\n\\n\\x0f\\v\\x82$\\x0f\\x05\\r\\x05\\x05\\x01\\x0f\\x02\\x01\\x01\\r.\\x1a<\\x84,\\x18.\\x03\\f\\a\\n\\r\\a\\n\\x05\\x17\\x02\\v\\x1b\\x17\\x14\\x1a\\t\\x15\\x1c\\x01\\x03\\x0f\\r\\x16\\x02(\\x04\\x04\\b\\x10\\x06\\x17\\r\\x03\\x0e\\x13\\x0e\\x19\\x0e\\x06\\n\\t7\\xe0\\x03\\x04\\x1d\\f\\x01\\x02\\x06\\x05\\x17\\x01\\r\\x02\\xa4\\x04\\x02R\\x03\\x04\\x04\\x03\\x04\\x02\\x13\\x11\\x03\\x02\\x01\\x03\\x02\\x03\\x03\\x02\\x11\\x0e\\\"\\x03\\x01\\x10\\x03\\x03\\x03\\x02#\\t\\x04\\x04\\x04l\\x0f\\n\\n\\x0f\\v\\x1d\\v\\x0e\\v\\v\\x0e\\x9f5:0'\\r\\x02\\x01\\n\\x05&,\\x0e\\x0e\\x01\\x02\\x13\\f\\a\\x11\\x17!K<\\x1c\\x19\\x10\\x04\\x06\\r\\x12\\x13\\x1d!\\x1d\\\"70\\x17\\x15\\x0e\\x01\\x01\\x1e\\x15$\\x12\\x0f\\r\\x02\\x01\\f\\x16\\b\\x0e\\x19\\n\\x01\\x06\\x05\\x18\\x1e\\x1f\\x0e\\x04\\x04\\x18]\\n\\n\\x01\\x01\\f%\\x05\\a\\x02\\x06\\x06\\x04\\x04\\x01\\x15\\xad\\x03\\x05\\x03\\x03`\\x04\\x03\\x03\\x04\\x03\\x03\\x16\\r\\x03\\x03\\x03\\x02\\x01\\x03\\x03\\x02\\r\\x11\\x1b\\x02\\x04\\x02\\x02\\x13\\x03\\x02\\x1b\\v\\x04t\\v\\x0e\\v\\v\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x0e\\xff\\xdd\\x01\\xb2\\x01\\xa1\\x004\\x00`\\x00\\x00\\x01\\x16\\a\\x0e\\x01\\a\\x06'\\x14\\x17\\x1e\\x03\\x172>\\x0473\\x17\\x06\\a\\x06'.\\x0645454>\\x02?\\x0162\\x17\\x1e\\x04\\a<\\x03.\\x03'&\\x06\\x0f\\x01'.\\x01\\a\\x0e\\x03\\x1c\\x02\\x1535476\\x17\\x16\\x1d\\x0135476\\x17\\x16\\x1d\\x01\\x01\\xb1\\x01\\n\\x05A)fM\\x01\\x02\\x10\\x1d\\x17\\x14\\b\\x11\\x0f\\x0e\\n\\b\\x03\\x02\\x01\\x1c316\\x14\\x1f\\x16\\x0f\\n\\x06\\x02\\r\\x13\\x13\\x06\\a.\\xc5/\\x03\\b\\x16\\x11\\x0eK\\x01\\x02\\x05\\x06\\x05\\x12D\\x11\\f\\f\\x11D\\x12\\x06\\x06\\x05\\x02/\\x18\\x18\\f\\x04.\\x1a\\x17\\v\\x04\\x01\\rH2\\x18,\\x05\\f\\x13\\a\\a\\x11\\x17\\n\\x03\\x01\\x01\\x02\\x02\\x02\\x02\\x01%\\x0f\\x03\\x02\\x0e\\x05\\x13\\x1e\\x1c-\\x1f7\\x1d\\x1d\\f\\x06\\x1b.\\x1b\\x13\\x03\\x04\\x15\\x15\\x02\\x05\\x14\\x1a.\\x98\\x12-\\x18\\x1d\\x0e\\x12\\v\\n\\x06\\x16\\x01\\x1b\\x14\\x14\\x1a\\x02\\x16\\x06\\v\\x12\\r \\x174\\x14r\\x1f\\x05\\x06\\x19\\v\\r??$\\a\\x06\\x16\\b\\fr\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02E\\x01\\xa0\\x00\\x13\\x002\\x00E\\x00K\\x00\\x00%\\x14\\a\\x17#'\\x06\\a\\x15#5.\\x0154632\\x1e\\x01\\x05\\x14\\x16\\x1753:\\x01\\x1e\\x04\\x15\\x14\\x0e\\x02\\x0f\\x01\\x16\\x17\\x16\\x17654&#\\\"\\x06\\x172\\x162>\\x0354.\\x04*\\x01\\x06#\\a\\x1527&#\\x02EXCp(!%cf\\x89\\xaaxO\\x86N\\xfe-E8\\xc7\\x02\\a\\x13\\x11\\x15\\x0f\\n\\x12\\x19\\x1a\\t\\t\\x12\\n\\x03\\x04Ft`[\\x82\\xe1\\b\\x19\\r\\x13\\t\\n\\x04\\x02\\x05\\x05\\v\\t\\x0f\\f\\x15\\b\\x01\\x1c\\x17\\r\\v\\xddR9rK\\t\\x04>>\\flGQr4ZC'A\\x10\\xd0\\x04\\x06\\r\\x12\\x1d\\x12\\x18%\\x12\\v\\x01\\x01\\x06\\x05\\x01\\x03#HBCN]\\x01\\x01\\x03\\x06\\v\\b\\x06\\b\\x06\\x04\\x02\\x02\\x01\\x80\\x16\\x03\\x13\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00<\\x00_\\x00i\\x00\\x00\\x11!\\x11!%5\\\"'&'>\\x0154&#\\\"\\x06'\\x152\\x162\\x1e\\x02\\x14\\x16\\x1d\\x01\\x14\\x06\\x14\\x0e\\x04#\\x1523235\\\".\\x054=\\x01\\x163\\x16\\x17\\x1e\\x0172>\\x03<\\x011#\\x153\\x14#\\\"=\\x014632\\x16\\x1f\\x0174.\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16\\a\\\"'5632\\x15\\x14\\x06\\x01\\xc0\\xfe@\\x01\\x06\\r\\x0e\\x17\\x13\\x11\\x16\\x1f\\x19\\x02<\\t\\x02\\a\\x02\\x06\\x01\\x03\\x01\\x01\\x03\\x02\\x05\\x02\\a\\x02\\x1e\\x04\\x11\\x12\\x02\\t\\x02\\x06\\x02\\x03\\x01\\x06\\x0f\\x17\\x13\\v$\\x1a\\b\\f\\a\\x05\\x02\\x1e\\x12\\x16\\x12\\r\\a\\x06\\n\\x02\\x02\\n\\x03\\x10\\v\\x11\\x11\\x10d\\n\\n\\x06\\x10%\\x15\\x01\\xa0\\xfe@r\\a\\x0f\\x19!\\x04\\x1c\\x10\\x16\\x18\\x02\\x01\\b\\x02\\x02\\x02\\x03\\x04\\a\\x04m\\x05\\x06\\x04\\x04\\x02\\x01\\x01\\x01\\b\\b\\x01\\x01\\x01\\x02\\x03\\x05\\x06\\x05.\\x01*\\x15\\r\\x06\\x8c\\x02\\b\\x05\\x0e\\x03\\x11\\n\\x1b\\x17\\x1b\\t\\v\\x06\\x04\\x03\\b\\x02\\x05\\n\\x13\\v \\x0e\\x12-\\x01E\\x01#\\x10\\x14\\x00\\x00\\x04\\x00\\x00\\xff\\xbc\\x02\\x00\\x01\\xe0\\x00\\x0e\\x00#\\x00[\\x00g\\x00\\x007\\x06\\a\\x06'&'&7>\\x01\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x0e\\x01\\a\\x06'&'47>\\x0376327\\x14\\a\\x0e\\x01'&5<\\x025&'&\\\"\\x0e\\x01\\a\\x0e\\x01\\x16\\a\\x06#\\x06&=\\x0176767676'&7676\\x170\\x17\\x16\\a\\x06\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\a'.\\x0167276\\x17\\x16\\x06\\xf4\\x03\\x13\\v3\\x1d\\x0e\\x16\\a\\x04\\x1a\\x10\\x1c$#\\xca\\v\\x01\\x10\\x0f\\x10(f4\\x012,E%\\x11\\x05\\x01\\x04\\x02?\\x01\\x03 \\x12\\t\\x03d(\\\\N;\\b\\x03\\x01\\x01\\x01\\x01\\v\\x17\\x1d\\x01\\x03\\x16\\x05\\x01\\t\\x1e\\x04\\x03\\x04\\a,:\\x90m\\x01\\x0e\\b\\x01\\x03\\r\\x17\\x04\\x01\\x05\\x1a\\x9f4\\x0e\\x0f\\x12!\\x01\\x04Q\\x02\\x01!e\\x11\\a\\x04\\x03\\x02\\x16\\\"(\\x12\\r\\b\\x0e!!%\\b\\x18\\x17$\\x0e\\f\\x1f\\x04\\x03\\a\\a\\x04\\x03\\x1e,\\x1e\\x0e\\x04y.\\x06\\x12\\x16\\x03\\x03\\f\\t\\\"\\x1d\\fs7\\x16%G.\\r\\x1f+'\\v\\x01\\x1b\\x17\\x15\\x1a\\x18\\n\\x03\\x051+\\x05\\x04\\a\\b1\\x12,i\\x01\\f\\v\\x01\\x04\\x117\\x16\\x04\\x02\\r\\xa1\\b\\x04\\x10\\x1c\\r\\x02 *\\x1a%\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00c\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\\"'7\\a&'7\\a&'7\\a&'7\\a&47\\x17'67\\x17'67\\x17'67\\x17'62\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x14\\a'\\x91Α\\x91Α\\x95ƍ\\x8dƍ\\x95\\xb6\\x81\\x81\\xb6\\x81\\x84\\xb0||\\xb0|\\x01\\x8e\\x06\\x0eJ=\\x10\\x157$\\x17\\x19\\x1c\\x05\\r\\x1a\\r\\x04\\x1b\\x1a\\x17$6\\x16\\x10>J\\x0e\\x06MR\\x02\\x02SN\\x06\\x0eJ=\\x10\\x157$\\x17\\x19\\x1b\\x04\\r\\x1a\\r\\x05\\x1c\\x19\\x17$7\\x15\\x10=J\\r\\aNS\\x01\\x01R\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xa9\\x8dƍ\\x8d\\xc6\\x01?\\x81\\xb6\\x81\\x81\\xb6\\xfe\\xd1|\\xb0||\\xb0'\\x19\\x17$7\\x15\\x10=J\\x0e\\x06NS\\x02\\x02SN\\x06\\x0eJ>\\x11\\x157$\\x17\\x19\\x1c\\x05\\r\\x1a\\r\\x04\\x1b\\x1a\\x17$6\\x16\\x10>J\\x0e\\x06MR\\x02\\x02RM\\x06\\x0eJ>\\x10\\x166#\\x16\\x1a\\x1b\\x04\\r\\x1a\\r\\x05\\x00\\x00\\x04\\x00\\x19\\xff\\xc0\\x01'\\x01\\xc0\\x00\\x03\\x00\\v\\x00\\x0f\\x00\\x17\\x00\\x00\\x13\\a'?\\x01\\x15\\a\\x17\\x15/\\x01?\\x02\\x17\\x0f\\x015\\x1f\\x01\\x0f\\x0157`$##T))\\x1433d#$$T\\x1533\\x15)\\x01\\x1c,,+y\\xd3--\\xd3\\xc6::\\\"++,\\x03\\xd3\\xc6::\\xc6\\xd3-\\x00\\v\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x16\\x00\\x1c\\x00D\\x00L\\x00R\\x00X\\x00^\\x00d\\x00j\\x00\\x00\\x04\\\"&462\\x16\\x14\\x02\\\"\\x06\\x14\\x16264'\\x16\\x17\\a.\\x01/\\x01\\x15\\x06\\a'6\\x173\\x15\\x16\\x177\\x17\\a\\x16\\x173\\x15#\\x06\\a\\x17\\a'\\x06\\a\\x15#5&'\\a'7&'#5367'7\\x176?\\x01\\x16\\x17#.\\x02'%\\x17\\x06\\a#6\\a3\\x16\\x17\\a&%3\\x06\\a'6\\x05\\x16\\x17\\x15&'7\\x17\\x06\\a56\\x01_Α\\x91Α\\x98\\xc0\\x87\\x87\\xc0\\x87\\xcb8-\\x12\\x0f1\\x138.%\\x12-D \\x0e\\r;\\x16;\\t\\x03RR\\x03\\t;\\x16;\\r\\x0e \\x0e\\r;\\x16;\\t\\x03RR\\x03\\t;\\x16;\\f\\x0f\\xb8\\\"\\b\\x19\\x02\\n\\x0f\\b\\xfe\\xc2\\x12\\x1c\\a\\x19\\b\\b\\x19\\a\\x1c\\x12\\\"\\x01\\x83\\x19\\b\\\"\\x12\\x1c\\xfe\\xdf%.8-\\xf0\\x12-8.8\\x91Α\\x91\\xce\\x01N\\x87\\xc0\\x87\\x87\\xc0r\\b\\\"\\x12\\f\\x14\\x03\\x19\\x19\\a\\x1c\\x12\\\"+R\\x03\\t;\\x16;\\r\\x0e\\x1f\\x0f\\r;\\x16;\\t\\x03RR\\x04\\b;\\x16;\\r\\x0e \\x0e\\r;\\x16;\\t\\x034-8\\f \\x1d\\n\\x12\\x12%.8p.%\\x12-88-\\x12%L\\x1c\\a\\x19\\b\\\"\\x12\\x12\\\"\\b\\x19\\a\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe3\\x02\\x00\\x01\\x9f\\x00\\x1a\\x002\\x00J\\x00s\\x00{\\x00\\x83\\x00\\x8b\\x00\\xaf\\x00\\x00\\x133\\x15\\x1e\\x01\\x17&=\\x014'&'&\\\"\\a\\x06\\a\\x06\\x17\\x15\\x14\\a>\\x027\\a\\x06\\a\\x06\\a\\x06#&#67\\x1626&'67\\x1e\\x016&'67\\x16\\x17\\x0e\\x01\\x1667\\x16\\x17\\x0e\\x01\\x1627\\x16\\x17\\\"\\a\\\"'&'.\\x012\\x1d\\x01\\x14\\x1632\\x1e\\x01\\x17\\x15\\x06\\a.\\x01#\\x0e\\x01\\a\\x06\\\"'.\\x02#\\\"\\x06\\a&'5>\\x02326=\\x01\\x16\\\"\\x06\\x14\\x16264&2\\x16\\x14\\x06\\\"&46\\\"\\x06\\x14\\x16264\\a2\\x17\\x16\\x173\\x1627367632\\x17\\x06\\a&#\\x0e\\x01\\a\\x15\\x06\\\"'5.\\x01'\\\"\\a&'6\\xfa\\f\\n\\x0e\\x01\\x13\\x03\\x01\\x01\\x03\\b\\x03\\x01\\x01\\x03\\x01\\x14\\x01\\x06\\v\\a\\x1a\\x03\\x01&\\b\\r\\x1c\\f\\x0e\\x03\\t\\v\\x15\\a\\v\\v\\r\\x11\\b\\x12\\f\\x01\\a\\rO\\x0f\\r\\a\\x01\\f\\x12\\b\\x11\\r\\v\\v\\a\\x15\\v\\t\\x03\\x0e\\f\\x1c\\r\\b&\\x01)\\f=!(&?\\x0f\\x0e\\x13\\n:(!1\\t\\f\\x18\\f\\x06\\x19&\\x16(:\\n\\x13\\x0e\\x0f?&(!=\\x17\\\"\\x18\\x18\\\"\\x187\\x1c\\x13\\x13\\x1c\\x13,\\x16\\x10\\x10\\x16\\x10\\x8e\\x1b\\x16\\x17\\x1a\\x01\\b\\x10\\b\\x01\\x1a\\x17\\x16\\x1b\\x14\\n\\x02\\x05\\x0e\\r\\x1f*\\x06\\x10 \\x10\\x06*\\x1f\\r\\x0e\\x05\\x02\\n\\x01\\x9f\\x1b\\x0fxP\\x1a\\x16\\x11\\b\\b\\x04\\x02\\x03\\x03\\x02\\x04\\b\\b\\x11\\x16\\x1a5[=\\ny!'\\x13)\\x04\\x06\\x16\\x14\\x06\\v\\x12\\a\\x12\\r\\f\\v\\a\\x16\\f\\x06\\x03\\x03\\x06\\f\\x16\\a\\v\\f\\r\\x12\\a\\x12\\v\\x06\\x14\\x16\\x06\\x04)\\x13&\\x19\\x14\\x11\\x1f@\\x01\\x0e\\x0e\\x02\\x1a\\x16\\x11\\x18\\x01\\x17\\x11\\x03\\x03\\v\\x12\\f\\x18\\x11\\x16\\x1a\\x02\\x0e\\x0e\\x01@\\x1f\\x11L\\x18\\\"\\x18\\x18\\\"\\x10\\x13\\x1c\\x13\\x13\\x1c\\r\\x10\\x16\\x10\\x10\\x163\\n\\x1d\\x04\\x01\\x01\\x04\\x1d\\n\\x02\\x13\\n\\x04\\x01+\\x1f\\x05\\x03\\x03\\x05\\x1f+\\x01\\x04\\n\\x13\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xde\\x01\\xc1\\x01\\xa6\\x00r\\x00\\x00%>\\x027\\x14\\x0e\\x05\\a#.\\x05/\\x01\\x1e\\x01\\x1f\\x01.\\x02>\\x02?\\x01\\x0e\\x01\\x1e\\x01\\x1f\\x01.\\x01>\\x01?\\x01\\x0e\\x01\\x1e\\x01\\x1f\\x01\\x0e\\x01\\x1e\\x03\\x1f\\x0167\\a7'7'\\x17\\x12=\\x01\\x155\\x15\\x14\\x137\\a\\x17\\a\\x17&'\\x17>\\x03&'>\\x03&'\\x1e\\x05\\x06\\a>\\x034'\\x1e\\x03\\x06\\x01\\x8e\\x03\\n\\x1b\\n\\x02\\f\\x11#,F*\\x04*E-\\\"\\x12\\v\\x01\\x02\\v\\x18\\b\\a\\x14\\x17\\x05\\x02\\n\\n\\x04\\x04\\f\\x01\\x11\\x15\\b\\t\\x1d\\n\\x1d&\\x10\\x10\\x1b\\x12\\x0e\\x15\\n\\n\\x11\\v\\t\\x15\\x1b\\x17\\t\\b\\x01\\x01\\\"\\x18??\\x14\\x1f\\b\\b\\x1f\\x14??\\x18\\x1e\\x04\\x02\\x06\\x14,\\x19\\x02\\x18\\x04\\r\\x1b\\n\\x11\\x1b\\x03\\f\\x1e\\x18\\x16\\a\\x10\\x16\\x04\\v\\x19\\x0e\\f\\x03\\t\\x11\\x03\\x17J\\x02\\t(\\x1b\\x04\\r&#+\\x1e\\x16\\x01\\x01\\x15!''!\\n\\n\\x1b'\\x06\\x06\\x195,* \\x19\\x06\\a\\x185)#\\t\\t0[>0\\v\\v\\x1460+\\r\\f!<-'\\x1a\\x13\\x04\\x04\\x11D$0\\t\\t7.\\x01.\\x05\\x03\\x01\\x01\\x03\\x06\\xfe\\xd3.7\\t\\t0 \\x04U\\x03\\v*1P-\\x05\\x101-7\\x14\\x02\\b\\x1b\\x1f13D#\\x03\\r&'5\\x19\\x05\\x1044J\\x00\\x05\\x00\\x1b\\xff\\xbf\\x01\\xa6\\x01\\xc0\\x01{\\x01\\x94\\x01\\xb0\\x01\\xc5\\x01\\xd7\\x00\\x00\\x17&76567<\\x01'45&'&54545&567>\\x01767>\\x01&#0\\x06\\a\\x06\\a\\x06\\x14\\x1e\\x01\\x15\\x14\\x15\\x06\\a\\x14\\a\\x14\\a\\x06'&5&'&7674'&'&\\a\\x06\\a\\x15\\x17\\x16\\x17\\x16\\x15\\x14\\x17\\x16\\x06\\x17\\x16\\x17\\x14\\x17\\x16\\x15\\x14\\a\\x06\\x15\\x14\\x15\\x06\\a\\x06'&676567>\\x0175'&'&/\\x017<\\x015/\\x01.\\x02454'&'\\\"'&'&?\\x01'&'&'414767676\\x16\\x17\\x16\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16367654'45&5&'&'&'&'&'&'&'&/\\x015'7>\\x0132\\x17\\x16\\x14\\a\\x06\\a\\x14\\a\\x06\\x15\\x16\\x17\\x1e\\x01\\a\\x06\\x15\\x17674&'&76\\x172763676\\x17\\x1e\\x01\\x17\\x1e\\x01?\\x0132?\\x01\\x17\\x1e\\x01\\x06\\x17\\x16\\x17\\x16\\x15\\x16\\a\\x06\\x15\\x06\\x15\\x06\\a\\x06#\\\"\\x15\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x0e\\x01\\a\\x06\\x16\\x17\\x16\\a\\x06\\x17\\x16\\a\\x06\\x15\\x14\\x16367>\\x01767676767467676\\x15\\x14\\x15\\x06\\a\\x15\\x1f\\x01\\x15\\x14\\x17\\x15\\a\\x06\\a\\x06\\a\\x06\\x0f\\x02\\x06\\a\\x06\\x15\\x141\\x14\\x17\\x16\\x17\\x1e\\x01\\x14\\a\\x06#\\\"\\a\\x06\\x15\\x06\\a\\x06\\x17\\x16\\x0f\\x01\\x15\\x14\\x17\\x16\\x15\\x06\\x17\\x14\\x1e\\x01\\x1d\\x01\\a\\x0e\\x027&54'&54'&5476\\x15\\x16\\x17\\x16\\x14\\a\\x06\\x15\\x16\\a\\x06'.\\x01'4'4'&54'&436\\x1f\\x01\\x15\\x06\\x15\\x14\\x06\\a\\x06\\x0f\\x010\\x03\\x1e\\x04\\x17\\x16\\x17\\x06\\a\\x06\\x1e\\x017\\x06&'.\\x016\\x17\\x166'&'67\\x1e\\x04\\x17\\x16\\x0e\\x01&\\xe8\\x02\\x01\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x04\\x01\\x01\\x05\\a\\x02\\x01\\x03\\x01\\x01\\x01\\x01\\x04\\x06\\f\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x02\\x05\\x04\\x01\\x01\\b\\b\\x02\\x03\\x02\\x02\\x01\\x02\\t\\x05\\x04\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x02\\x01\\x02\\x01\\x02\\x01\\v\\x04\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x02\\v\\v\\x02\\x02\\x01\\x01\\x04\\x02\\x02\\x02\\x01\\x01\\a\\n\\x0e\\f\\x02\\x02\\x02\\x01\\x02\\x01\\x01\\x04\\x02\\x01\\x03\\x01\\x05\\x06\\x02\\x06\\x01\\x02\\x02\\x01\\x03\\x04\\v\\x02\\x02\\x11\\x06\\b\\x02\\x03\\x03\\x02\\x01\\x02\\x02\\x01\\x04\\x01\\x03\\x02\\x02\\n\\b\\x06\\x01\\x05\\x04\\x01\\x01\\x01\\t\\x03\\x02\\x01\\a\\a\\b\\a\\n\\x02\\x01\\x01\\x01\\x01\\x05\\x02\\x05\\a\\x05\\x01\\x03\\x01\\v\\a\\x02\\x0f\\x01\\x02\\b\\x04\\x05\\x02\\x05\\x04\\x04\\x03\\x03\\x04\\x02\\x03\\x06\\x03\\x03\\x05\\x04\\x05\\n\\v\\x05\\x04\\x03\\x02\\x05\\x02\\x01\\x01\\x01\\x01\\x01\\x03\\a\\x01\\x06\\t\\v\\x05\\x04\\x02\\x02\\x03\\x02\\x01\\x01\\x02\\x01\\x03\\x04\\x06\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x02\\x02\\x02\\x04\\x02\\x02\\x01\\x03\\x02\\x02\\x03\\x01\\x05\\a\\x05\\x05\\x05\\x05\\t\\x06\\t\\x04\\x05\\x01\\x01\\x04\\x05\\x01\\x01\\x04\\x05\\x01\\x06\\f\\x05\\x03\\x01\\x04\\x05\\x02\\a\\a\\x02\\x05\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x03\\x04\\x01\\x01\\x01\\x01\\x01\\x03\\x05\\x10\\x04\\x02\\x04\\x01\\x02\\x01\\x01\\x01\\x02\\a\\a\\x1e\\x01\\x02\\x01\\x02\\x03\\x05\\x05\\x01\\x02\\x04\\x02\\x01\\x01\\x03\\x01I\\x01\\x02\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x02\\t\\x05\\x01\\x01\\x01\\x01\\x01\\x01W\\x05\\t\\x04\\x03\\x04\\x03\\x13\\x04D\\b\\x0e\\x02)!\\nI\\x0f\\x0e\\x02&\\xf9+\\x1e\\x1a\\x1b%\\x05\\x19\\x19&\\x11\\v\\x01\\x01\\x01\\x19#%@\\a\\x12\\x16\\x06\\x14\\x02\\x01\\x1c\\x04\\x05\\x10\\x13\\x05\\x03\\t\\x02\\x02\\x04\\x05\\x17\\n\\a\\x03\\b\\x1f\\x05\\b\\a\\x03\\b\\x05\\x06\\x04\\t\\x04\\x02\\x05\\x01\\t\\x05\\x03\\x03\\x02\\x06\\x04\\x04\\x03\\x02\\x01\\x02\\x02\\x03\\x03\\b\\x0f\\x06\\x03\\x02\\x03\\a\\a\\x04\\x05\\x03\\x04\\x12\\f\\x03\\n\\t\\t\\x0f\\x15\\x04\\x01\\x01\\x04\\x04\\x05\\x05\\x05\\f\\b\\x06\\v8\\x06\\x03\\x12\\x1a\\x02\\x02\\v\\x04\\f\\x1b\\t\\x03\\x0f\\x14\\x10\\x04\\x11\\x11\\x04\\x04\\f\\v\\x02\\x03\\v\\f'\\b\\t\\x04\\x04\\x02\\t\\a\\f\\v\\x01\\x02\\x01\\x0e\\f\\x01\\x03\\a\\x05\\x03\\x02\\x02\\x05\\b\\x01\\x02\\x01\\x04\\a\\x17\\x06\\x03\\x03\\x05\\x06\\f\\x06\\x06\\x04\\x03\\x06\\x04\\x01\\x02\\x10\\x01\\x01\\f\\f\\x01\\x01\\x01\\x03\\t\\t\\x03\\x02\\x02\\x04\\x0f\\x01\\x04\\f\\r\\x04\\x03\\x05\\x01\\x04\\x03\\x01\\x01\\x01\\x05\\a\\x05\\r\\r\\x06\\a\\x04\\x02\\x01\\x06\\x01\\x01\\x02\\x01\\b\\x03\\x03\\x04\\x03\\x03\\x04\\v\\x03\\x01\\x03\\x14\\x06\\x05\\x02\\x02\\x05\\x0e\\x06\\x02\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x02\\x03\\x03\\x02\\x01\\x02\\t\\x06\\x03\\x03\\x03\\x02\\x02\\x05\\x02\\x05\\x04\\x02\\x01\\r\\x04\\x06\\x01\\x02\\x02\\x01\\x03\\x02\\x01\\x01\\x01\\x03\\x02\\x05\\x01\\x01\\x02\\x01\\x01\\x06\\x03\\x06\\x05\\x04\\x05\\x04\\x05\\x04\\x05\\x06\\x05\\x01\\v\\b\\x06\\x03\\x03\\x03\\x03\\x02\\x04\\a\\f\\x16\\x04\\a\\x04\\b\\x03\\x05\\b\\x03\\x05\\x06\\b\\a\\x04\\x04\\t\\b\\x03\\x02\\a\\v\\n\\a\\x01\\x06\\x0e\\b\\x06\\x06\\x02\\x04\\x06\\x01\\x03\\x04\\x02\\x02\\x02\\x02\\x11\\x05\\f\\x15\\x04\\x05\\x05\\v\\x11\\x06\\t\\x0e\\x03\\x06\\x04\\x05\\x10\\x15&\\x06\\x03\\a\\b\\x13\\x13\\x03\\x01\\a\\x04-\\x01\\x0e\\x17\\v\\x04\\r\\x17\\x04\\x05\\x10\\x05\\x04\\x04\\x03\\x03\\a\\x10\\f\\f\\b\\x14 \\t\\x04%\\x05\\v\\x05\\x04\\x03\\x06\\x03\\x10\\x05\\x01\\a\\x04\\x18\\x02\\t\\x06\\x06\\x06\\t\\b\\a\\r\\x1f\\x01\\x01\\x01\\v\\x03\\x06\\x03\\x02\\x02\\x01\\x06\\v9\\x0e\\x1b,\\x17\\a\\x17\\x03\\x19\\x15:L\\x93\\x058'\\x1d'\\x1c\\x19\\x11, %\\f\\a\\x19%\\x0e\\x03\\x00\\x00\\x00\\t\\xff\\xff\\xff\\xc5\\x01\\xf1\\x01\\xb7\\x00\\u007f\\x00\\xd3\\x01\\x1b\\x01^\\x02^\\x02\\x9a\\x02\\xd2\\x03\\x12\\x03K\\x00\\x00\\x13232\\x172\\x17\\x162\\x163\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x170\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x17\\x16\\x15\\x16\\x15\\x14\\x06\\a\\x1c\\x01\\x06\\x15\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06#\\x06#\\\"'\\\"'*\\x01&#&#&'&'&'&'&'&'&'&'4&54&45&547<\\x0165<\\x01656167>\\x01567676767672636212\\x17\\\"\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x14\\a\\x06\\a\\x06\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17:\\x013\\x1672676767676767676767676'4&1&'&'&'&'&'\\\"#'&\\a67\\x0e\\x01\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\x17\\x14\\x17\\x16\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x14\\x15\\x1c\\x01\\x15\\x1c\\x01\\x15\\x16\\x14\\x15\\x1c\\x01\\x15\\x1c\\x02\\x15\\x14\\x15\\\"#\\\"'&'&'&'&#4.\\x015&'&'&7676767\\x16\\x17\\x16\\x17\\x1e\\x01\\x17\\x16\\x15\\x16\\x17\\x16\\x15\\x14\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\\"'041465<\\x015<\\x015<\\x015456767676767654'&'&'&'0&\\a67\\x06\\a\\x06\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x15\\x1c\\x01\\x15\\x14\\x15\\x14\\x17\\x1e\\x013676745<\\x015<\\x015<\\x01645<\\x015<\\x035<\\x0154545\\x1c\\x011\\x16\\x15\\x14\\x16\\x14\\x15\\x14\\x16\\x14\\x16\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x1721\\x16747676767636\\x17\\x1632367676?\\x02\\x06\\a0\\a\\x06\\a\\x06\\a\\x06\\a\\x06'&'&'&'\\x16\\x17\\x16\\x17\\x16\\x17\\x163\\x06\\a\\x06\\a\\x06\\a\\\"#\\\"'&'.\\x01'&'676767\\x06\\a\\x06\\a\\x06'&'&'&'&'.\\x01'\\x1e\\x02\\x17\\x16\\x17\\x16\\x172\\x163032327636\\x17\\x16\\x17\\x16\\x17\\x14\\x16\\x17\\x16\\x17\\x16\\x1767676767464567<\\x015<\\x01545<\\x0154'&'&'&'&'\\\"'4767676761\\x14\\x1d\\x01\\x14\\x150#4&'<\\x01'\\\"#*\\x01#\\\"#\\\"#41>\\x0112676345\\\"'.\\x02#4&#41:\\x0136\\x1670254>\\x0172\\x15\\x1e\\x01\\x17\\x14\\x161\\x1663\\x163230\\x15\\\"\\a\\\"\\x15\\\"\\a0\\a\\x06\\x152\\x172\\x16\\x172\\x14\\x150#*\\x01#\\\"#\\x14\\a\\x15\\x0e\\x01\\x14\\a\\\"14=\\x014\\a61\\x06\\a\\x06\\x15\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x172\\x163\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x15\\x06\\a\\x06#\\\"'&'&'&'&'&'&'.\\x0150'&'67<\\x027676%\\x16\\x17\\x16\\x17\\x16\\x170\\x15\\x14\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06#&'\\\"/\\x01476767676767676367676747654'&\\xec\\n\\f\\x05\\x06\\x02\\r\\x01\\x03\\x03\\x01\\n\\x0e\\x12\\x12(\\x1f\\x1f\\x12\\x03\\x01\\x04\\x03\\a\\x03\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x06\\f\\x18+\\x1a\\x1f\\v\\b\\t\\x02\\v\\t\\x06\\b\\f\\x04\\b\\f\\f\\b\\x06\\x04\\x01\\x03\\x03\\x01\\v\\x02\\b\\x04\\v\\x0f\\x11\\r\\x05\\x02\\x10\\x105\\x17\\x05\\x03\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x05\\n\\x01\\x03\\f\\x12\\x1e+\\r\\n\\x17\\x1a\\x01\\n\\x01\\x06\\x01\\x02\\b\\x02\\x0e\\f\\x0f\\n\\f\\x15\\x13\\x11\\x0e\\b\\x04\\b\\a\\a+\\x0e\\x03\\x02\\x01\\x01\\x01\\x02\\x03\\x01\\t\\x15\\f\\x12\\x18\\x1f\\r\\t\\v\\x05\\x11\\x11\\x01\\x06\\x02\\x15\\x14\\x01\\n\\x03\\t\\x01\\n\\x03(!\\x18\\x12\\x03\\a\\x05\\x04\\x04\\x03\\t\\x05\\x04\\x02\\x02\\x01\\x01\\x03\\v\\t\\r\\x14\\x1a'/\\v\\r\\x02\\x05\\x04\\vu\\x13\\x19\\x01\\a\\x02\\x11\\r\\v\\x06\\x05\\x02\\x02\\x01\\v\\b\\x0e\\x02\\v\\x02\\x04\\x03\\x04\\x02\\x01\\x02\\x01\\x10\\x10\\n\\a\\t\\a\\t\\a\\x03\\x01\\x02\\x01\\x06\\x02\\x01\\x01\\x01\\x06\\x04\\x04\\n\\x11\\t\\xbb\\x02\\x06\\v\\a\\x15\\x1f\\t\\x04\\n\\x01\\x01\\x04\\x04\\x04\\x06\\x05\\v\\x0f\\x10\\x13\\x05\\x06\\x04\\x02\\x01\\x01\\x03\\x04\\r\\t\\x06\\f\\a\\x04\\x02\\x01\\x04\\x02\\x05\\x06\\b\\x0f\\x14\\x04f\\x02\\x01\\x01\\x01\\x05\\x02\\x02\\x01\\x01\\a\\x04\\x03\\x01\\x05\\a\\x02\\x04\\x02\\x01\\x03\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x02\\x02\\x02\\x04\\x06\\x02\\x04\\x01\\x01\\x01\\x01\\x05\\b\\x01\\x01\\x02\\x04\\x05\\x04\\x06\\x0e\\a\\x04\\x06\\x05\\r\\f\\t\\x06\\x11\\r\\x02\\x02\\x01\\x03\\x05\\b\\t\\x06\\b\\v\\v\\r\\r\\x04\\a\\x02\\x06\\x04\\x05\\x03\\x05\\b\\x06\\x06\\a\\x01\\x03\\x01\\x03\\r\\x11 \\\"\\a\\a\\v\\x04\\x10\\x11\\x11\\x1b\\v\\x05\\x01\\n\\t\\t\\a\\x03\\x03\\x06\\x05\\x06\\a\\b\\n\\f\\v\\x05\\a\\f\\r\\x04\\a\\x01\\x02\\x01\\x02\\x03\\x03\\x01\\x0f\\x0e\\x0e\\v\\x01\\a\\x01\\b\\t\\a\\x02\\b\\x03\\x04\\x06\\x05\\a\\x05\\x03\\x03\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\x03\\x03\\x02\\x02\\x03\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\a\\x06\\x06\\x06\\a\\x01\\x04\\x01\\x03\\x04\\x02\\x03\\x06&\\x01\\x01\\x02\\x01\\x01\\x01\\x04\\x02\\n\\x03\\x01\\x01\\x02\\x01\\x01\\x03\\x02\\a\\x02\\x03\\x01\\x01\\x03\\x01\\x04\\x03\\x02\\x04\\x01\\x03\\n\\x02\\x02\\a\\x01\\x01\\x01\\x02\\x06\\x01\\x01\\x01\\x01\\x01\\x01\\x06\\x01\\x06\\t\\x01\\x01\\x01\\x03\\x01\\x03\\t\\x01\\x01\\x02\\x01\\x02\\n\\x03\\x01\\x05\\x02\\v\\x02\\x04\\x01\\x01\\x01\\x01\\x01\\x01\\xba\\x03\\x02\\x01\\x01\\x02\\f\\x06\\x05\\v\\t\\a\\b\\b\\x02\\a\\t\\x01\\b\\x02\\b\\x05\\a\\x03\\x02\\x01\\v\\t\\x05\\b\\x0e\\x10\\a\\x04\\f\\v\\x05\\x03\\r\\t\\x04\\x02\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x05\\x01t\\x01\\x02\\x04\\x02\\f\\x01\\x03\\x02\\x01\\a\\v\\r\\x13\\t\\t\\n\\b\\n\\n\\f\\v\\x01\\x01\\x04\\x01\\x02\\x04\\x03\\x06\\x03\\x05\\x02\\n\\v\\n\\x0f\\f\\x04\\x01\\x06\\x04\\n\\a\\x03\\x01\\x01\\x02\\x01\\x01\\x01\\xb6\\x01\\x01\\x01\\x01\\x02\\x03\\x05\\t\\x12\\x1f\\x1f'\\x06\\x01\\v\\t\\x13\\x13\\x05\\x04\\x06\\x06\\t\\x10\\b\\r\\x04\\x01\\x03\\x03\\x01\\f\\x04\\x1c\\x192#\\x16\\r\\x05\\x03\\x02\\x01\\x03\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x02\\x02\\x01\\x03\\x05\\a\\a\\x03\\x01\\n\\f,A\\r\\x0e\\x06\\f\\x02\\x05\\x01\\x01\\x04\\x05\\x01\\v\\x12\\x06\\x04\\x02\\x03\\x04\\x01\\x01\\x03\\x03\\x01\\f\\x1a\\x16\\x02\\x06\\x01\\x1a\\x15&\\x19\\a\\x04\\n\\x05\\x01\\x01\\x01\\x01\\x18\\x02\\x01\\x03\\x05\\n\\a\\n\\x06\\x03\\x06\\x06\\x01\\x06-<\\r\\r\\f\\x0f\\f\\t\\b\\r\\f\\x02#\\x1f\\x13\\x11\\x17\\x10\\x06\\x03\\x04\\x01\\x05\\x03\\x02\\x02\\x01\\x01\\x01\\x01\\x02\\x01\\v\\x19\\x12\\x17\\x04\\t\\a\\t\\a\\x06\\x12\\x13\\x11\\x0e\\x12\\x17\\x02\\t\\x1e\\x1a\\x17\\x14\\x1d\\x15\\x1f\\v\\x03\\x02\\x01\\x012\\r\\b\\x01\\x04\\x01\\n\\x0e\\f\\r\\v\\v\\a\\a\\x14\\x13\\x0f\\r\\x01\\t\\x02\\x04\\x03\\x06\\x05\\x02\\a\\x02\\n\\x01\\x02\\a\\x01\\x02\\x04\\x02\\x03\\f\\x02\\x01\\x03\\x03\\x02\\x03\\x02\\a\\x05\\x05\\a\\a\\v\\r\\x06\\x02\\x02\\x03\\x01\\x0e\\x11\\n\\x03\\x18\\x17\\r\\v\\x15\\x11\\t\\x1c\\x01\\x02\\x04\\x04\\n\\x1e\\x13\\b\\x01\\x16\\x19\\x05\\t\\x11\\x11\\r\\t\\v\\b\\x10\\v\\f\\x03\\x01\\x01\\x01\\x06\\x02\\a\\x02\\x04\\x0e\\x03\\x01\\x05\\x01\\x03\\n\\x03\\b\\x01\\x03\\x04\\b\\n\\a\\a\\r\\x0f\\n\\b\\x06\\b\\v\\f\\a\\t\\n\\n\\x0f\\f\\x02:\\x02\\x02\\x02\\x01\\x06\\a\\a\\x03\\x05\\x03\\v\\n\\x05\\x02\\x01\\x02\\x04\\x02\\x03\\x06$\\x94%\\x03\\x01\\x01\\x03\\x03\\x03\\x01\\x02\\x02\\x03\\x01\\x05\\x02\\t\\x02\\x02\\f\\x03\\x02\\a\\x04\\b\\x02\\x02\\r\\x03\\x02\\a\\x04\\b\\x02\\x03\\f\\x03\\x02\\x03\\x04\\x03\\x01\\x04\\x06\\x05\\x01\\x04\\x04\\x01\\x01\\a\\x03\\x05\\x04\\x02\\x13\\b\\b\\x06\\x0e\\t\\x03\\x04\\x01\\x01\\x01\\x02\\n\\r\\x03\\x01\\x02\\x02\\x02\\x01\\x03\\x01\\x01\\x05\\x04\\x04\\n\\x11\\x02\\x03\\x04\\x06\\b\\x10\\f\\a\\a\\v\\x04\\x06\\x02\\x01\\x02\\x01\\x03\\x02\\x04\\x03\\x05\\a\\x04\\x04\\x01\\x01\\x01\\x02\\t\\a\\x0e\\x02\\x01\\x01\\x04\\x05\\f\\a\\x04\\x01\\x01\\x05\\x04\\a\\x03\\x04\\x04\\x02\\x03\\x02\\x02\\x01\\x02\\a\\x04\\x06\\r\\x15\\x06\\r\\x01\\x04\\x01\\x01\\x03\\x03\\x01\\x10\\t\\t\\x02\\x01\\x01\\x01\\x02\\x02\\x03\\a\\x04\\x05\\x01\\x05\\x02\\x03\\x03\\x02\\x01\\x01\\x02\\x03\\n\\v\\t\\a\\x15\\x02\\x04\\x05\\x01\\x19\\a\\x01\\x04\\x01\\x02\\t\\x02\\x04\\x03\\x03\\n\\x02\\b\\f\\v\\a\\n\\v\\t\\x05\\a\\x02\\x01\\x02\\x06\\f\\v\\x05\\a\\n\\x06\\x01\\x01\\x05&\\x04\\x01\\x02\\b\\x01\\x01\\x03\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x05\\x05\\x03\\x01\\x01\\b\\x02\\x01\\x03\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x01\\x02\\x02\\x02\\x04\\x04\\x01\\x01\\x04&\\x05,\\x06\\n\\r\\n\\r \\x1a\\n\\a\\x0e\\a\\a\\x04\\x04\\x01\\x02\\x03\\x02\\x03\\x06\\a\\v\\x03\\x06\\x02\\x01\\x04\\x02\\x01\\x05\\x03\\x02\\x06\\b\\x05\\x03\\x0e\\x14\\n\\a\\b\\x04\\x02\\x06\\x01\\x06\\b\\t\\f\\x06\\x01\\x04\\x03\\x01\\n\\a\\x10\\x18\\x01\\x04\\n\\x04\\x1d\\x1e\\x05\\f\\x10\\a\\x04\\x18\\x12\\x14\\v\\x06\\x03\\x04\\x02\\x01\\x01\\x04\\x01\\x01\\x01\\x04\\t\\a\\b\\x04\\x03\\x02\\x01\\x02\\x03\\x04\\a\\f\\x05\\a\\x05\\x0e\\x13\\v\\x05\\x02\\a\\v\\a\\r\\a\\r\\x00\\x02\\x00\\x00\\xff\\xc5\\x02\\x01\\x01\\xba\\x00j\\x00p\\x00\\x00\\x136\\x176\\x17&\\a\\x06\\a67676\\x17\\x06\\a\\x06\\a\\x06\\a\\x06\\x17\\x16327676765&\\a\\x06\\a\\x06'\\x167>\\x0476767\\x06\\a\\x06\\a\\x06\\a\\x0e\\x01\\a\\x06\\x17\\x16\\x17\\x167676'4&45\\x16\\x17\\x16\\a\\x0e\\x01\\a>\\x017654'\\x16\\x17\\x14\\x15\\x06\\a\\x06\\a\\x06&'.\\x01'&'5>\\x01\\x056767\\x06`I\\\\*,(!B.\\x04\\f\\x1d\\x1c\\x17%$\\a6!\\x17\\x01\\x01\\x15\\f\\x0f\\x05\\x05\\x15\\x17\\x14\\f\\x02\\x05\\x01\\x11\\x13#\\x1b\\x15\\x11\\x06\\v\\f\\t\\f\\x04*/1!-\\x02\\x11\\x17\\x01\\r\\x0e\\x1e\\b\\x0f\\x04\\x03\\x12\\x11\\x1a0!\\x1f\\x02\\x01\\x0e\\x02\\x03\\x04\\x01\\x06\\x01\\r\\x17\\x03\\x02\\x10\\x1e\\x06\\x05\\x19(M;\\x867\\x195\\x0e\\x16\\x03\\x033\\x01\\b\\b\\b\\t\\x01\\x12\\x01\\x819\\x03\\x01\\x10\\b\\x06\\b3\\x01\\x05\\r\\x02\\x02\\x04\\a\\x03\\x11-!\\\" \\f\\b\\x01\\x03\\r\\f\\f\\x02\\v\\x01\\x01\\n\\x05\\v\\n\\x03\\b\\x03\\a\\b\\b\\n\\x03 \\x17\\x17\\x01'\\x02\\x10\\x1d\\x02\\b\\n#\\x0f!\\x1f\\x19\\n\\v\\x06\\v-*6\\x03\\t\\a\\x04$\\x19\\x12\\x19\\x06\\x15\\x06\\x0f/\\x13\\x0f\\x0e($/<\\x13\\x144-I#\\x1c\\b\\\"\\x0f:\\x1a,1\\x1f4^0\\x02\\x03\\x03\\b\\n\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00!\\x00)\\x001\\x00\\x00\\x11\\x17'\\x1762\\x177\\a7\\a7\\a\\x16\\a\\x17'\\x17'\\x17'\\x06'\\a7\\a7\\a7&47'\\x176\\\"\\x06\\x14\\x16264&2\\x16\\x14\\x06\\\"&4w\\f[\\r\\x1a\\r[\\fwF;F\\x05\\x05F;Fw\\f[\\x1a\\x1a[\\fwF;F\\x03\\x03F;\\xcdgHIfI\\xa0H44H4\\x01\\xa0F;F\\x03\\x03F;Fw\\f[\\x1a\\x1a[\\fwF;F\\x05\\x05F;Fw\\f[\\r\\x1a\\r[\\f\\x13HgIIf%4H44H\\x00\\x00\\x00\\r\\x00\\x00\\xff\\xc7\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00+\\x005\\x00?\\x00I\\x00S\\x00[\\x00i\\x00q\\x00\\x85\\x00\\x8f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%#\\x153\\x15#\\x15#5#'353\\a#535#\\x15#\\x173\\x15353'7\\a\\x17'\\a7'7'\\a\\x17'\\a7'7'\\x177\\x17\\a\\x17'\\a7'7'\\x177\\a\\x17'\\a7'7'\\x17&2\\x16\\x14\\x06\\\"&4\\x05#535#\\x15#\\x173\\x15353'\\\"\\x06\\a353&\\x022654'\\x15#\\x153\\x15#\\x15#5#'\\x06\\x15\\x14?\\x01\\a\\x17'\\a7'7'\\x91Α\\x91Α\\x97\\u008a\\x8a\\u008a\\x01\\x86\\x92TT0v%\\x9b\\xc2IS\\x91\\xac\\x90\\x14|\\x1bS\\xa2\\x16\\x0f\\x0f\\x16\\f\\x02\\x17\\x17\\x02\\x11\\t\\r\\a\\x01\\x0e\\x0e\\x01\\b\\f\\x9c\\t\\t\\r\\a\\x01\\x0e\\x0e\\x01\\ax\\x0f\\x0f\\x15\\v\\x01\\x16\\x16\\x02\\f켅\\x85\\xbc\\x85\\x01BT\\x92Ɲ(u4T_Fp\\x15\\x9d\\xc8?\\xb3\\xb0}1\\x92TT@s,\\t\\x91\\x17\\x11\\x0f\\x15\\r\\x04\\x18\\x18\\x02\\x01\\xb7\\x91Α\\x91\\xce\\xfe\\xae\\x8a\\u008a\\x8a¿#/\\xc4\\xc5.R\\\\8\\x18P\\x18\\xc6\\xc6]\\t\\x12\\x12\\t\\x14\\x18\\x05\\x06\\x18\\x02\\n\\x06\\r\\x0f\\x03\\x04\\r\\f\\x06\\x9d\\v\\n\\x05\\f\\x0e\\x03\\x04\\x0e\\fR\\x11\\x11\\t\\x14\\x17\\x05\\x05\\x17\\x14\\xa7\\x85\\xbc\\x85\\x85\\xbc!\\x1f3R2\\xc5\\xc4\\xccRARA\\xfeU}XM<3\\x13?\\xc4\\xc58\\x1d XF\\t\\x11\\x13\\v\\x15\\x18\\x06\\x04\\x18\\x00\\v\\x00\\x1c\\xff\\xc0\\x01\\xe5\\x01\\xc0\\x00\\x96\\x00\\x9b\\x00\\xa1\\x00\\xa6\\x00\\xac\\x00\\xb2\\x00\\xb7\\x00\\xbd\\x00\\xc2\\x00\\xc8\\x00\\xce\\x00\\x00\\x05\\a'\\a'\\a\\x15.\\x04'4.\\x04'6'\\x0e\\x01\\a\\x17\\x06\\x177\\x177\\x177\\a'\\a'\\a4&467\\a&7\\a467>\\x01'.\\x01'\\x1e\\x01\\x06\\a.\\x0167\\x16\\x1f\\x02'\\a\\x1f\\x017\\x1f\\x01\\a\\x177'?\\x01\\x17?\\x01'\\a?\\x0167\\x1e\\x01\\x06\\a.\\x0167\\x0e\\x01\\a\\x06\\x16\\x17\\x1e\\x02\\x15'\\x16\\a'\\x1e\\x01\\x14\\x06\\x15'\\a'\\a'\\x177\\x177\\x176'7.\\x01'\\x06\\x17\\x0e\\x05\\a\\x0e\\x04\\a5'\\a7'67\\x067\\x06\\a&'67'67\\x167\\x16\\x17&'6'\\x16\\x17\\x06\\a4\\a&'\\x16\\x17'\\x16\\x17\\x06\\a&'47\\x16\\x17'\\x16\\x17\\x06\\a67\\x06\\x15&'6\\x01\\f\\f\\v\\v\\x05\\x05\\x06\\t\\x05\\x02\\x03\\x01\\x03\\x03\\v\\x0f\\x1e\\x13\\x0f\\r\\x19\\x1f\\a\\x1e\\x12\\x05\\x1c\\x06\\x12\\t\\x13\\x1a\\t\\x19\\a\\x1a\\x02\\x05\\x06\\x1a\\x04\\v\\x16'\\x17\\x11'\\x02\\x02\\x17\\x12\\x14\\x01\\x11\\n\\x03\\x06\\x01\\bY\\x05:\\x03k\\a\\x11,\\x10\\x1c\\x04\\x15 !\\x15\\x03\\x1c\\x10,\\x12\\al\\x04:\\x04Y\\b\\x01\\x06\\x03\\n\\x11\\x02\\x14\\x12\\x18\\x01\\x02'\\x11\\x0f\\x1d\\x11\\x16\\f\\x04\\x1a\\x05\\x05\\x02\\x1a\\a\\x19\\b\\x1b\\x14\\b\\x13\\x06\\x1b\\x05\\x12\\x1e\\x06\\x1f\\x1a\\f\\x0f\\x14\\x1d\\x10\\n\\x03\\x03\\x01\\x01\\x02\\x03\\x05\\b\\x06\\x05\\x06E\\x10\\n\\t\\x01\\x1a\\x01\\x01\\x0f\\x06\\b(\\x18\\n\\b\\x06\\x03\\x1a\\x04\\x19\\f\\a\\x02!\\r'\\x05\\xed\\x02\\x02\\t\\v,\\x0e\\b\\x05\\x10\\x01\\x19\\x05\\b\\v\\x1c\\x01\\x06\\v\\x1a\\x04\\x1c\\x02\\x05'\\x0e\\x18\\x15\\x15\\x0f\\f\\a\\x1e\\x02\\x10\\x17\\x16\\x1c\\x06\\x03\\x1e\\x10 \\x18\\x1f\\r((\\x03\\x15\\x1e\\b&\\\"\\a\\\"\\a!\\a\\x15\\x1c\\x05#\\x0e\\x03\\x1c\\x12\\x1a\\t\\x05\\x14%\\n\\x14%\\x02\\x01 \\x13\\x0f\\x1d\\x05\\x10\\\"\\x13\\x04\\b!=\\x1c2b']<\\a\\x04&\\x051x\\x10\\x10\\x10\\x10x1\\x05&\\x04\\a<]'b2\\x1c=!\\b\\x04\\x13\\\"\\x10\\x05\\x1d\\x0f\\x13 \\x01\\x01\\x13\\x1a\\r\\n%\\x14\\x05\\t\\x1a\\x12\\x1c\\x03\\x0e#\\x05\\x1c\\x15\\a!\\a\\\"\\a\\\"&\\b\\x1e\\x15\\x03((\\r\\x1f\\x18 \\x10\\x1e\\x03\\x06\\x1d\\x15\\x18\\x0f\\x02\\x1e\\a\\fn\\v\\x06\\x06\\x11,\\x14\\f\\x04\\x03\\b\\v\\a\\r\\x0e\\x0f>\\x11'\\t\\x02\\x0fL\\x04\\x18\\f\\x02\\n\\x8b\\x06\\x11\\x06\\x06'\\x11\\b\\x03\\x04\\f\\x0e\\x13\\x0f\\x0e\\rJ\\x1e\\x0f\\x01\\n'? \\n\\x02\\f\\x18\\x00\\x00\\x00\\x00\\x04\\x00\\x01\\xff\\xbf\\x01\\xff\\x01\\xc1\\x00#\\x00M\\x00q\\x00\\x93\\x00\\x007\\x16\\x15\\x14\\x06\\\"&4632\\x17.\\x014>\\x04?\\x01\\a\\x0e\\x01\\x1e\\x01\\x17\\x1e\\x013:\\x011\\x15\\x06\\x13>\\x01\\x1e\\x01\\x1f\\x01'.\\x01\\x0e\\x03\\a\\x0e\\x01\\x150\\x14\\x15#&7\\\"#\\\"&54>\\x0432\\x16\\x17\\x16\\x15\\x14\\x05\\x06#\\\"#\\x1e\\x01\\x0e\\x01\\x0f\\x017>\\x01.\\x02'.\\x01#\\\"\\a56\\x17&5462\\x16\\x15\\x14\\x0e\\x01\\x0312\\x16\\x14\\x06#\\\".\\x01'&5\\x0e\\x01.\\x01/\\x01\\x17\\x1e\\x01>\\x027>\\x015<\\x0113\\x16L\\x01\\x16 \\x16\\x16\\x10\\x03\\x02\\f\\r\\b\\x0e\\x10\\x11\\x0e\\x04\\x04\\b\\x18\\b\\x19\\x1d\\x12\\x0eM)\\x01\\x04u$\\x1f=,#\\b\\t[\\v\\x12\\x0f\\f\\n\\x06\\x02$4\\x16\\x016\\x02\\x01\\x10\\x16\\x03\\x04\\a\\t\\n\\x05\\n\\x14\\x04\\x04\\x010\\b\\b\\x02\\x02\\x18\\a\\x17\\x1e\\r\\x0e\\t\\x13\\f\\t\\x17\\x18\\x0e\\x0eM'\\x01\\bpH\\x01\\x17\\x1f\\x16\\x06\\nx\\x10\\x16\\x16\\x10\\x06\\x0e\\v\\x03\\x03 >-$\\b\\t[\\f\\x15\\x0f\\x0e\\a\\x04%6\\x13\\x02N\\x03\\x02\\x10\\x16\\x16\\x1f\\x17\\x01\\x12$\\x1e\\x1e\\x17\\x15\\x10\\v\\x03\\x03\\\\\\x0e\\x1a\\x11\\v\\x04&6\\x13\\x02\\x01}\\x15\\x04\\x18\\x1d\\r\\r\\t\\x10\\x0e\\x05\\x0e\\x18\\x14\\f\\x0eM'\\x02\\x01wG\\x16\\x10\\x05\\n\\b\\a\\x05\\x03\\r\\b\\b\\t\\x02\\x89\\x03 ?.$\\t\\t[\\f\\x15\\x0f\\x0e\\b\\x03%4\\x01\\x17\\x011\\x03\\x02\\x10\\x16\\x16\\x10\\x06\\x0e\\v\\xfe\\xfa\\x17\\x1f\\x16\\x06\\n\\x05\\a\\a\\x16\\x06\\x17\\x1e\\r\\r\\b\\x13\\f\\t\\x18\\x18\\x0e\\x0eM(\\x01\\x05m\\x00\\x00\\x00\\x00\\v\\x00\\v\\xff\\xdf\\x01\\xb4\\x01\\xa3\\x00\\f\\x00\\x1d\\x00+\\x003\\x009\\x00^\\x00\\x90\\x00\\x9a\\x00\\xb0\\x01\\n\\x01)\\x00\\x00%&'&76\\x1e\\x01\\x17\\x16\\a&\\\"\\a&#\\x0e\\x02'47632\\x17\\x1e\\x02\\x06\\a2\\x1e\\x01\\x06'\\\"#\\\"\\a\\x06'&6\\x17\\x06\\\"&76\\x1e\\x0162\\x16\\x06\\\"&\\a3\\x16\\x141\\x0e\\x01&'46&'&#\\\"\\a\\x0e\\x03#\\\".\\x014>\\x0276\\x16\\x17\\x16\\x06\\x17\\x16%2\\x16\\x15\\x14\\a\\x0e\\x02.\\x02'\\\"&'4547'&>\\x05\\x170\\x1e\\x01176\\x16\\x15\\x14\\a\\x1e\\x03\\x14\\x15\\x16\\x17\\x16\\a\\x16\\x0526'.\\x01\\x06\\x17\\x1e\\x01'67>\\x05?\\x01&'&\\x0e\\x01\\a\\x06\\x17\\x16\\x176\\x05\\x17\\x06'\\x16\\x17\\x166720\\x15\\x0e\\x01'&6\\x17\\x1676'&'&'&'&'4'&'&#\\\"\\a\\\"\\a\\x06#.\\x01#'\\\"\\x06\\a\\x06\\x1e\\x02\\x17\\x16\\x15\\x14\\a\\x0e\\x01\\x17\\x16\\x17\\x1e\\x0176767676.\\x01\\a&'\\x06\\a\\x0e\\x01&\\x06\\a\\x1e\\x0227'5\\x15\\x143>\\x022\\x17241&#\\\"15674#\\x06\\a\\\"1675#\\x06\\x01K\\x04\\x02\\x04\\b\\x03\\x04\\x03\\x01\\x03\\x03\\x02\\x058\\t\\b\\x05\\r\\x03\\x02\\x06\\b\\n\\x06\\x06\\x04\\a\\x02\\x02\\x10\\x05\\b\\x03\\x01\\x04\\x03\\x03\\a\\x06\\x04\\x01\\x02\\b=\\x02\\b\\x06\\x02\\x02\\b\\x06\\n\\b\\x02\\x03\\a\\x03\\xd4\\x03\\x01\\x02\\n\\t\\x01\\x04\\x01\\x05\\x03\\x04\\a\\x04\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x02\\x03\\x02\\x04\\x18\\a\\x04\\n\\x03\\x02\\x012\\x06\\n\\t\\r3=E>4\\x0e\\x18)\\x03\\x05\\x0f\\x0e\\x01\\x1a(22,\\x0e\\f\\v\\r,?\\\"\\b\\t\\x04\\x01 \\t\\x13\\x10\\x04\\xfe\\xc7\\x15\\x11\\x04\\x05,&\\x03\\x02\\x1e\\x01 >\\a\\x0e\\r\\f\\t\\a\\x02\\x02\\x12\\x06\\x108<\\x171\\x10\\x02\\x0e\\r\\x01\\x06\\x01\\x1c+\\x01\\x0f\\x17J\\x1f\\x01\\x16q\\x11\\t\\x0e\\x0f9,'\\x03\\x01\\x04\\a\\x13\\b\\x02\\t\\x01\\x01\\x01\\v\\x04\\x05\\x02\\x02\\x06\\b\\x0f\\x13\\x04\\x0f\\x04\\x05\\x0f\\x1b\\x02\\x02\\x06\\b\\r\\x01\\x02\\x02\\x0f\\n\\x06\\x01\\x02\\x0eH(\\v\\n\\x11\\x0e\\x15\\x05\\x01\\x05\\x05\\x03\\x02\\x05\\x15\\x1e\\x17(\\x13\\f\\x02\\t\\x15\\x11\\x0e\\x04\\x94\\x01\\a\\x13((\\x1d\\x01\\x13\\x16\\x01\\x03\\x05\\x01\\x1a\\x17\\x01\\x01\\x04\\x01\\x1d\\xcc\\x06\\t\\x12\\x01\\x01\\x04\\a\\x06\\v\\a\\x01\\t\\x04\\x01\\x03\\x01\\x01\\x03\\x04\\x06\\x02\\x02\\x05\\x05\\x02\\x02\\x02\\x04\\x02\\x01\\x02\\x02\\x01\\x03\\x06\\x10\\x03\\x06\\x04\\x03\\x01\\x06\\x11\\b\\b\\bG\\x01\\x01\\x04\\x02\\a\\b\\x03\\r\\t\\x03\\x02\\x05\\x02\\x05\\x03\\x02\\x02\\x03\\x03\\x05\\x04\\x05\\x02\\a\\x01\\f\\b\\x18\\x03\\x04\\x12\\r\\f\\x13\\x17 -\\x15\\x01\\x15/ #\\x19\\x04\\x04\\r\\r\\f\\f,37,!\\x06\\f\\v\\v\\x05\\x12\\x0f\\x1e\\x1e#\\a\\x14\\x14\\x12\\x10\\x02\\t\\n\\x14\\x17\\v:\\\"\\x18\\x1e\\x11\\x1e\\x1d\\x12\\x1bqT1\\x05\\v\\t\\b\\x06\\x04\\x01\\x01\\x16\\x01\\x05\\x1b6!F\\x1e\\x04\\v\\x13a\\x02\\r\\x0e\\v\\x06\\n\\x0f\\x15\\x01\\x1f\\x10\\x19\\x0e\\x1e\\x02\\a\\x14\\x12\\x14\\x06\\x04\\a\\x05\\x02\\x01\\x03\\v\\v\\x11\\x1b\\a\\x03\\x01\\a\\f\\x01\\x01\\x01\\x17\\x11\\f\\x15\\f\\x0e\\x02\\x02\\x03\\x02\\x02\\x10-\\x14\\x05\\x05\\x1f\\x19\\r\\x04\\x05\\t\\x0e\\x16\\x1d\\t\\t\\x01\\x01\\r\\f\\x11\\t\\x06\\x03\\x04\\x02\\a\\x03\\x04\\x01\\x01\\xc1\\x01\\x01\\x01\\x05\\n\\x10\\x04\\x02\\v\\x01\\x04\\x04\\x01\\x02\\x0f\\x06\\a\\x01\\x0f\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x05\\x00\\r\\x00'\\x00\\x00?\\x01\\x17\\x15\\a'\\x022\\x16\\x14\\x06\\\"&4\\x015'5'5'\\a\\x15\\a\\x15\\a\\x15\\x17757\\x17\\x15\\x17757\\x17\\x15\\x17\\xd6\\\"!!\\\"EΑ\\x91Α\\x01\\x89;<\\x1a\\x1a<;\\x1a\\x1a!\\\"\\x1a\\x1a\\\"!\\x1a\\xee\\\"\\\"B!!\\x01\\f\\x91Α\\x91\\xce\\xfe\\xf3W;X<K\\x13\\x13K<X;W\\x14\\x14A!!A\\x14\\x14A!!A\\x14\\x00\\x00\\x00\\x04\\x00\\x0e\\xff\\xc0\\x01r\\x01\\xc0\\x00\\a\\x00\\x12\\x00!\\x00,\\x00\\x0062\\x16\\x14\\x06\\\"&4\\x06462\\x16\\x15\\x14\\x0e\\x01#\\\"72\\x1e\\x02\\x15\\x14\\x06\\\"&5\\x11\\x17>\\x01\\x132>\\x0154&\\\"\\x06\\x14\\x16\\xeb\\x17\\x10\\x10\\x17\\x10j\\x10\\x17\\x0f\\a\\f\\b\\v?$B/\\x1di\\x93h-\\x15P $=#MnNN\\x95\\x10\\x17\\x0f\\x0f\\x17\\x17\\x17\\x10\\x10\\v\\b\\f\\a\\xc2\\x1c/B#JggJ\\x01O\\xe3!#\\xfe\\xcc#=$6MMmM\\x00\\x00\\x02\\x00\\x13\\xff\\xe0\\x01\\xae\\x01\\xa0\\x00\\n\\x00(\\x00\\x00%\\x14\\x0e\\x01#\\\"&462\\x16\\x17\\x15#.\\x0154675\\x17\\a5\\x0e\\x01\\x15\\x14\\x1e\\x012>\\x0154.\\x01'7\\x1e\\x01\\x01\\\"\\x12\\x1e\\x12\\x1b&&6'\\x8b\\xd2SuoPmm<S*IUH*\\x13!\\x14.\\x1e+\\xad\\x12\\x1e\\x11&6''\\x16\\xd2\\x02xSQv\\x06&??(\\x06Z=*I**I*\\x174,\\r\\x1a\\x18Z\\x00\\x02\\x00\\b\\xff\\xc7\\x01\\xf9\\x01\\xb8\\x00\\\"\\x00;\\x00\\x00\\x05\\x0e\\x01#0#\\\"&4632\\x16\\x17\\x16\\x15\\x14#&#0#\\\"\\x06\\x15\\x14\\x1e\\x03\\x17\\x16\\x17\\x16\\x147\\x16\\x15\\x14\\a\\x06#\\\"'&'.\\x055&7632\\x17\\x16\\x01\\x94\\x1cV!\\x01g\\x91\\x91g(`\\x1e\\x01\\x04\\x1c\\x1c\\x01dz\\x16\\x1d7%\\\"A\\x16\\x01b\\x01\\x11\\x01\\x02\\x01\\x01\\x1d@\\x14\\x13 \\x10\\x12\\a\\x01&\\x12\\x19HI\\x01\\a\\x15\\x1c\\x91Α%\\x1b\\x01\\x01\\x04\\x04QJ 4!!\\x10\\r\\x19\\x11\\x01\\x03\\xdd\\v\\f/+\\x03\\x01\\x10\\x18\\a\\b\\x0e\\v\\x10\\x12\\n\\\"\\r\\a=\\x01\\x00\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xf4\\x02\\x01\\x01\\x8c\\x00\\x15\\x00'\\x00=\\x00O\\x00\\x00?\\x0162\\x16\\x14\\x0f\\x01\\x06\\\"'764&\\\"\\x0f\\x01\\x06\\\"&46\\x16\\x14\\x0f\\x01\\x06\\\"'&462\\x17\\x162?\\x016\\a\\x06\\\"&4?\\x0162\\x17\\a\\x06\\x14\\x162?\\x0162\\x16\\x14\\a\\x06&4?\\x0162\\x17\\x16\\x14\\x06\\\"'&\\\"\\x0f\\x01\\x06\\xba\\x9d\\x1dR:\\x1dw\\x0f)\\x0e\\x9a\\x0f\\x1d)\\x0f\\x9d\\a\\x15\\x0e\\xf4\\x0f\\a\\x9e\\x1cR\\x1d\\b\\x0f\\x14\\b\\x0e)\\x0f\\x9d\\a\\xea\\x1dR:\\x1dw\\x0f)\\x0e\\x9a\\x0f\\x1d)\\x0f\\x9d\\a\\x15\\x0e\\a\\xed\\x0f\\a\\x9e\\x1cR\\x1d\\a\\x0e\\x14\\b\\x0e)\\x0f\\x9d\\ai\\x9d\\x1d:R\\x1dw\\x0f\\x0f\\x9a\\x0f(\\x1d\\x0e\\x9d\\b\\x0f\\x14x\\x0f\\x14\\a\\x9e\\x1d\\x1d\\b\\x14\\x0f\\b\\x0e\\x0e\\x9d\\b_\\x1d:R\\x1dw\\x0f\\x0f\\x9a\\x0f(\\x1d\\x0e\\x9d\\a\\x0e\\x14\\bp\\x0f\\x14\\a\\x9e\\x1d\\x1d\\b\\x14\\x0f\\b\\x0e\\x0e\\x9d\\b\\x00\\a\\x00\\x00\\xff\\xbd\\x01\\xc0\\x01\\xc2\\x00\\x15\\x00 \\x00/\\x006\\x00=\\x00F\\x00L\\x00\\x00\\x136\\x1f\\x01\\x1e\\x02\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01.\\x01=\\x01467\\x17*\\x01#\\x1535326&\\x17'>\\x01&'*\\x01#\\x15353\\x173'2\\x16\\x06+\\x015'2\\x16\\x06+\\x0157\\\"\\x0e\\x01\\x16326&\\x062\\x16\\x06\\\"&\\xcb\\x12\\x12\\xbf\\x05\\b\\x05\\x12\\xbf\\x12\\x12\\xb9\\b\\n\\n\\bl\\b \\b\\x13\\x1d\\x17\\x13\\x13u\\x1f\\x12\\f\\x13\\x16\\b \\b\\x13\\x12\\x1e\\x17*\\v\\t\\t\\v\\x1dC\\n\\t\\t\\n \\xe1\\x18\\x1c\\x01\\x1c\\x19!\\x1b\\x1b6*\\x11\\x11*\\x11\\x01\\xb8\\n\\nl\\x03\\n\\f\\x06\\xd9\\x15\\nm\\n\\nm\\x04\\x12\\t\\xd9\\t\\x12\\x04\\\\f\\x1e$$e#\\x04 \\x1d\\x01f\\\"\\\"T\\x10\\x11!\\x01\\x13\\x13&\\x13!(!55\\x12#$$\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x02\\x01\\x01\\u007f\\x00.\\x00S\\x00\\x00\\x012\\x16\\x15\\x14\\x06\\a\\x0e\\x02\\a\\x06#\\\"'\\x06#\\\"'.\\a4&54632\\x16\\x17>\\x0232\\x1e\\x02\\x17>\\x01\\x17654.\\x01#\\\"\\x0f\\x01#'&\\\"\\x0f\\x01#'&#\\\"\\x06\\x15\\x14\\x1f\\x01\\x1632?\\x013\\x17\\x16327\\x01\\xa9&1\\n\\x1d\\a\\t\\x0f\\a\\x1aC=\\x19\\x19=C\\x1a\\t\\x15\\f\\r\\a\\a\\x03\\x04\\x013%\\x1e-\\b\\t$\\x1b\\r\\n\\x14\\x1a\\x17\\x06\\b.8\\b\\n\\x11\\v\\x1d\\a,\\x01-\\n:\\n-\\x01,\\a\\x1d\\x10\\x16\\bA\\x0e !\\v'\\x01(\\n\\\" \\x0e\\x01~/$\\r N\\x13\\x17+\\x13F66E\\x1b7\\\"#\\x14\\x15\\v\\v\\b\\a\\x05 -#\\x1d\\x1a\\x1f\\a\\x04\\f\\x1c\\x14\\x1d#s\\x18\\x04\\v\\x10\\b\\x1d\\x8c\\x89  \\x89\\x8c\\x1d\\x11\\f\\r\\x16\\xaf%\\\"uu\\\"%\\x00\\x00\\x04\\x00\\x00\\x00?\\x02\\x80\\x01B\\x00\\x12\\x00:\\x00U\\x00q\\x00\\x00\\x010\\x15\\x14\\x0e\\x01\\a\\x0e\\x01\\x0f\\x01467>\\x0223\\a>\\x01\\x17\\a\\x06'.\\x01'.\\x02'&\\\"\\a\\x0e\\x02\\a\\x0e\\x01\\a\\x0e\\x01+\\x01'6\\x16\\x1f\\x017>\\x012\\x16\\x1f\\x017\\x1d\\x01\\x14\\x06\\a\\x0e\\x01'#5<\\x03>\\x037>\\x027>\\x017\\x1f\\x01\\x06'&'&\\a\\x06\\a\\x0e\\x01#'7'6\\x17\\x16\\x17\\x16767>\\x01\\x1f\\x01\\x01\\x89\\x01\\x0e\\r\\x05\\b\\x01\\x02\\a\\n\\x03\\a\\a\\a\\x02r\\x04 \\x13B\\x15\\v\\f\\f\\x06\\x03\\x0f\\f\\x01\\x03\\t\\x03\\x01\\f\\x0f\\x03\\x06\\f\\f\\x05\\x10\\x06\\x05B\\x13 \\x04#\\x1c\\x06\\x16)\\x16\\x06\\x1c\\x96\\x06\\v\\x05\\r\\x05\\x04\\x01\\x02\\x03\\x04\\x03\\x02\\a\\x06\\x03\\x04\\a\\x01\\xa5S$\\x12\\v*\\x06\\a+\\t\\b\\x1b\\n\\tSS#\\x11\\v+\\a\\x06,\\v\\a\\x1a\\n\\t\\x01<\\x02\\t\\v\\x11\\x05\\x01\\x05\\x02\\x01\\x17\\x15\\x05\\x01\\x02\\x01#\\x13\\x12\\x02\\xf8\\x01\\x05\\x06\\x11\\x18\\f=1\\x02\\v\\v\\x021>\\v\\x18\\x11\\x06\\x02\\x02\\xf8\\x02\\x12\\x13\\x85m\\x19\\x17\\x17\\x19m\\x80\\t\\x97\\x16\\x11\\x05\\x03\\x02\\x01\\x98\\x02\\n\\x03\\a\\x02\\x05\\x02\\x03\\x01\\x01\\x04\\x02\\x02\\x02\\x06\\x02S{\\x04\\x0f\\n=\\n\\n>\\t\\a\\x05\\x01{|\\x06\\x10\\t?\\n\\n?\\t\\a\\x05\\x01\\x01\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056&'&\\x06\\a\\x0e\\x01\\\"&'.\\x01\\a\\x0e\\x01\\x17\\x1e\\x0126\\x91Α\\x91Α\\x01\\x88\\x02\\x06\\x06\\x06\\n\\x01\\vARA\\v\\x01\\n\\x06\\x05\\x06\\x01\\rPfP\\x01\\xb8\\x91Α\\x91Ό\\x05\\v\\x01\\x02\\x06\\x06'33'\\x06\\x05\\x01\\x01\\n\\x061??\\x00\\x00\\x00\\x02\\x00\\x17\\xff\\xc0\\x01\\xe9\\x01\\xc0\\x00\\x11\\x00L\\x00\\x00\\x01\\x16\\x14\\x0e\\x01#\\\".\\x01'&4>\\x0132\\x1e\\x01\\x0226'&#4&<\\x0174#\\\"#\\\"\\x15\\x16\\x15#6=\\x01276&#\\\"\\x0e\\x051\\x163\\x15\\x16\\a\\x143:\\x01325&53\\x14\\x16\\x15\\x06\\x15\\\"\\a\\x06\\x01\\xde\\n\\x15\\xbd\\x16\\x0ega\\a\\v\\x16\\xbc\\x16\\x0egb\\x9e\\x06%\\x02\\x02\\x10\\x01\\x02\\x05\\r\\x14\\x04\\x01P\\x02\\x10\\x01\\x02%\\x03\\x01\\x05\\b\\b\\b\\x06\\x03\\x02\\x10\\x02\\x02\\x05\\x06\\x15\\x04\\x06\\x02P\\x01\\x01\\x11\\x01\\x02\\x01@\\x13\\xda&m5?\\f\\x13\\xda&m5?\\xfe\\xd6$\\x02\\x02\\b\\x18\\x1bVB\\x05\\x05%/i\\x01\\x03\\x02\\x02$\\x04\\x06\\b\\b\\a\\x05\\x02\\x03ta\\x06\\x06\\x1b-\\x01\\x03\\x010'\\x02\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x0e\\xff\\xbf\\x012\\x01\\xc0\\x00\\x1d\\x00\\x00\\x05\\x17\\x06+\\x01\\\"/\\x01\\a\\x15\\x14+\\x01\\\"5\\x114;\\x012\\x15\\x1176;\\x012\\x16\\x0f\\x01\\x010\\x02\\x01\\x05C\\x06\\x05n\\x1f\\b3\\b\\b3\\b\\x84\\x05\\x06E\\x05\\x03\\x03\\x8c6\\a\\x03\\x05\\x8d\\x1el\\b\\b\\x01\\xf0\\b\\b\\xfeΆ\\x06\\t\\x02\\x87\\x00\\x03\\x00\\x00\\xff\\xfb\\x02\\x81\\x01\\x85\\x00\\x0f\\x00\\x1b\\x00\\\"\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x015#\\a'#\\x1535\\x177\\x15\\x177#5#\\x15#\\x02R\\x13\\x1b\\x1b\\x13\\xfd\\xdc\\x13\\x1b\\x1b\\x13\\x01$=>=>>>=\\xc5\\\\>==\\x01\\x85\\x1b\\x13\\xfe\\xd2\\x13\\x1b\\x1b\\x13\\x01.\\x13\\x1b\\xfe\\xd2\\xd2MM\\xd2xMMx\\x03lii\\x00\\x00\\x05\\x00\\x1c\\xff\\xc0\\x01\\xe5\\x01\\xc0\\x00\\r\\x00\\x16\\x00\\x1c\\x00#\\x00'\\x00\\x00\\x05#'\\x15\\a#\\x1173\\x17573\\x11\\x01\\x1175\\x1337#\\x01\\x1375'\\x15\\a\\x13\\x013\\x11#\\x11\\x03\\x1f\\x01\\x11\\a\\x01\\x9f_lVb(m{Wa\\xfeCH\\xd7U4N\\xfe\\xc44POI \\x016SPߌHH@\\x9b\\\\?\\x01\\xe2\\x1e\\xb0q?\\xfe2\\x01\\xab\\xfe35\\xf9\\xfe\\xcc'\\x01\\xc2\\xfe\\x17;er\\xdd5\\x01\\xeb\\xfeF\\x01\\xba\\xfe\\xc3\\x01=\\xb5f\\x01\\x165\\x00\\x06\\x00\\x00\\x00+\\x02\\x81\\x01Q\\x00\\x06\\x00\\r\\x00G\\x00T\\x00`\\x00\\x93\\x00\\x00\\x133\\x15#\\a'#75#\\x153\\x177'2\\x16\\x1d\\x01#\\x06\\a7\\x16\\x17\\x1e\\x02\\x0e\\x02\\x1d\\x01'\\x0e\\x01\\x0f\\x01\\x06'67#6;\\x0165#\\x06\\a\\x06\\a>\\x037>\\x0137\\x06\\a32\\x16\\x1d\\x01#\\x14\\a%'67>\\x01\\x1e\\x03\\x1f\\x01\\x06'\\x1e\\x03\\x1f\\x01\\a'>\\x02\\x17\\x16+\\x01\\x15\\x14\\x0e\\x01#\\\"'&'\\x1e\\x0123\\x166=\\x01#\\\"&/\\x0135\\\"\\a\\x06'&'26?\\x02\\x16\\x14\\x0f\\x01\\x06\\a\\x06#\\x15036\\xabz1*\\b\\x17aI\\f\\x05\\x1cZ\\x03\\x04=\\x02\\x06\\x0f\\b\\x1c\\x02\\x02\\x01\\x01\\x01\\x016\\x06\\x12\\x06\\x06\\x15\\x1e@\\aB\\x04\\f4\\x02\\x1d\\x01\\x04\\v\\x1a\\x06\\v\\a\\x06\\x01\\x03\\x10\\a\\x06\\b\\x05X\\x05\\x043\\x02\\x01\\xd0\\x13\\x1e\\x06\\x02\\x05\\x05\\x06\\x04\\x04\\x01\\x01\\x18\\xab\\x02\\t\\n\\b\\x03\\x02\\x13)\\x02\\x05\\x10\\xe7\\x01\\nz\\n\\x14\\x0f\\r\\r\\f\\a\\x05\\x11\\r\\x06\\v\\x0el\\n\\r\\x01\\x02\\x86\\x13&)\\b\\r\\x03\\x1et,+\\x17\\x06\\x03\\x02\\x1c<\\x10\\a\\x02o\\x01,\\xda\\x1a\\x1a\\x18\\xaa\\xaa\\x12\\x12^\\v\\x06\\x06\\x14\\x15\\f\\t!\\x03\\a\\b\\a\\a\\x05\\x02\\x01A\\x16\\\"\\a\\x06\\x13\\t1L\\x17\\x173\\x03\\f\\x13\\x03\\f\\x1c\\x12\\x12\\x02\\n\\v\\x01\\x15\\x14\\v\\x06\\x05'#\\x02\\x0e(\\t\\x02\\x02\\x01\\x01\\x03\\x02\\x01\\x01 !\\x02\\v\\r\\f\\x04\\x04\\x0e:\\x01\\x03\\x03L\\x18I\\x0e\\x15\\v\\a\\a\\x0f\\x01\\x01\\x01\\f\\nG\\f\\x05\\x06d\\x03\\x01\\x02\\x04\\x10\\t\\x04\\x05\\x04\\x03\\x10\\a\\a\\x02\\x03\\x01e\\x01\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x005\\x00>\\x00\\x00\\x012\\x16\\x1d\\x01.\\x01'>\\x01?\\x01#535#5#\\x15#\\x153\\x15#\\x153\\x06\\a&#\\\"\\x06\\x17\\x1e\\x013267\\x16\\x17\\x14\\x0e\\x01#!\\\"&5\\x11463\\x03&632\\x17\\x06#\\\"\\x01z\\x1d)\\x18d\\x19\\n\\x14\\x04\\x04Xmm3nn\\\\\\xb2\\n\\x11Q.:-\\x04\\x03.0-M\\x1aKa\\x13 \\x13\\xfe\\xcc\\x1d))\\x1d\\x17\\x01#-\\\"K7?C\\x01\\xa0)\\x1d\\xeb\\b$\\t\\x14-\\r\\r\\x1f\\x1333\\x13\\x1f\\x11\\x1e\\x1e\\x19/#\\x1d/-$\\\"6\\x13 \\x13)\\x1d\\x014\\x1d)\\xfe\\xdd\\x12! I\\x00\\x0f\\xff\\xfd\\xff\\xc0\\x01\\xfd\\x01\\xc0\\x00d\\x00\\x93\\x00\\x9e\\x01#\\x01n\\x01\\xe9\\x01\\xec\\x01\\xfe\\x02\\a\\x02\\x19\\x02'\\x021\\x02U\\x02k\\x02\\x8c\\x00\\x00%\\x16\\x17\\x16\\x17\\a'\\x06\\a\\x14\\x06#\\\"'&54&5\\a&7461/\\x01>\\x0336767\\a'767'36\\x17&'&547\\x16\\x17673\\a6\\x17\\x0e\\x03\\a\\x16\\x17'\\x16\\x17\\x16\\x17>\\x03\\x1e\\x01\\x17\\x1c\\x04\\x16\\x14\\x16\\x15676\\x172\\x16\\x17\\x1e\\x01\\x06#\\a\\x16\\x17'&\\a\\x16\\x17\\x16\\x0f\\x01\\x16\\x173&47\\x16\\x1767\\a2\\x176#\\a&5&#0\\x15\\x14\\x17\\a&'&\\x0e\\x02#\\x1627\\a\\x17\\\"/\\x01\\a\\x16\\x1767676'&\\x05\\x06\\a\\x177\\x16\\x1767\\x17\\a6\\x17\\a\\x1e\\a\\x17'\\x1e\\x03\\x176=\\x01&'\\x16\\x17/\\x04\\x16\\x177'7*\\x02\\x0e\\x03\\a#67654'&'&'&#\\\"'\\x15\\x06\\a#\\a&?\\x01#7\\\"&#572\\x1636323\\x17\\x156767'\\\"\\a'5767\\\"\\x06\\a\\x06\\a'\\x17\\x15\\\"'&#\\\"#\\x16\\x177\\x06\\a\\x06\\a?\\x01\\a7\\a\\x06\\a\\x01>\\x014.\\x015\\x06#\\x17\\a&'\\x1e\\x01\\x17\\x06'\\x17\\a.\\x03#\\x06'\\x0e\\x01\\\".\\x01'\\x16\\x17&'47\\x16\\x17&'\\x17\\x06'&'3\\x1e\\x0667.\\x03'\\x17'\\x16\\x17'\\x16\\x172>\\x037\\x17'2\\x17&/\\x01?\\x01&+\\x0157\\a'\\x17\\a'#\\x17\\x15\\a\\x0e\\x02\\a7\\a\\x15\\x06\\a7\\a6\\x17.\\x02'\\x16\\x17\\a&'\\x17.\\x01\\a'7\\a7\\x06\\a#6'\\x14\\a\\x06\\a.\\x01\\x06\\a2\\x1e\\x022\\x160\\x16\\x14\\x16\\x17\\x0e\\x02\\a7\\x17\\x1e\\x017'\\x17\\a\\x16\\x17\\x16327'\\x1e\\b\\x15'7\\x17'\\x173'\\x17'7\\x176767/\\x01\\a\\x17'\\x16\\x17\\x06\\a\\x06#\\x06\\a7\\x06#\\\"#'67&7\\x16\\x17\\x16\\a\\x06'&6\\x17\\x1e\\x016'.\\x01\\a\\x06\\x156\\x17\\a\\x06\\x177\\x15\\x06'&'&632\\x17\\x0e\\x01\\x17\\x14\\x0e\\x017'52\\x17&#\\\"#5\\a\\x16\\x17\\x0e\\x01#63'6\\x16\\x1747674>\\x017632\\x17\\x16\\x15\\a\\x16\\a\\x06\\a\\x17.\\x037\\x06\\a\\x1f\\x01\\x163230765654'&\\a\\x06\\a\\x06\\x17\\a6?\\x01\\x17#&\\a\\x06\\x173\\x06'&'&547\\x06\\a&'6\\x1f\\x01\\a\\x06\\x1e\\x0176\\x01\\xe8\\x05\\x02\\x06\\x03\\x03\\r\\t\\a\\x82]\\\\BA\\x01\\x14\\a(\\x01\\x1d\\x03\\x02\\f\\t\\f\\x06\\v\\x10\\x02\\x05\\b\\x01\\x01\\x10\\x1f!\\x04\\x17\\x1a\\x04\\x04\\x03\\x03\\a\\b\\x05\\x1d\\x02\\f-5\\x03\\r\\b\\f\\a\\x1c\\x06\\x18\\x16\\x03#!\\x04\\x11\\x06\\r\\n\\x0f\\t\\x01\\x02\\f\\x0e\\x13\\v\\t\\t\\x01\\x06\\x02\\x05\\x01\\a\\x17\\to\\x14\\b\\f\\x01\\x02\\f\\x05\\a\\x02\\x02\\x01\\x02\\x0e\\x02\\x17 \\x12\\x1a\\x14\\x04\\x01\\x05\\x03\\x01\\t\\x02\\x02\\x05\\x04\\x03\\f\\n\\x0e\\x04\\a\\r\\a\\x17\\x04\\x11\\x05(\\x14\\x10\\f\\t\\x03\\x02\\x01\\x01\\x05\\x04\\xfe\\xe6\\v\\x02\\r\\x01\\n\\x02\\v\\f\\x01\\a\\x0e\\x0e\\v\\x03\\n\\x03\\x06\\x03\\x05\\x03\\x04\\x02\\f\\x05)\\x16/\\x1a\\x0e\\x01\\x11\\b\\x03\\x12\\x01\\x01\\x01\\x01\\x19\\b\\x02\\x17\\a\\x01\\a\\x05\\b\\b\\b\\t\\x04\\x02\\v\\x05\\x03\\x0e\\t\\x15\\n\\n\\x03\\x03\\x06\\r\\x10\\t\\x02\\x05\\x02\\x06\\v\\x04\\x02\\x01\\x04\\x01\\x02\\x01\\x05\\x01\\x05\\x05\\x02\\x02\\x03\\f\\v\\x1f\\x12\\x15( \\x02\\x02\\x03\\x04\\x02\\x0f\\x03\\x01\\x05\\r\\b\\t\\a\\x06\\x0f\\x01\\x02\\x06\\x12\\a\\x04\\x10\\x0e\\x13\\x04\\n\\x05\\r\\x02\\b\\x02\\x01\\x14\\x02\\x02\\x01\\x04\\x1e\\x02\\n\\x01\\x11\\v\\x04\\r\\r\\v\\x18\\x03\\x04\\x02\\b\\b\\x06\\x028:\\x03\\n\\x1e\\x1b$\\x0e\\x170\\a\\r\\x01\\x1d@8\\r\\x10\\x04\\x06\\x13\\x11\\x01\\x02\\x05\\x12\\x12\\x1d\\x1c'&\\x17\\x0f\\x17\\v\\x0f\\x02\\x11\\v\\x12\\x14\\x1e\\x13,\\x01\\x04\\a\\f\\x16\\x81\\t\\r\\n\\f\\r\\x0e\\x1b\\x01\\x18\\x10\\x11\\x12\\x0e)\\r\\x04\\x03\\x06\\n\\x06\\x0e\\x04\\f\\x0e\\x05\\x01\\x01\\n\\v\\t/\\x11\\x12 6\\x15\\x03\\x0e\\x02\\x02\\f,\\x18\\a\\x1e\\x04\\x03\\t\\x16\\x05\\x06\\v\\x02\\x01\\x04\\x01\\x02\\x01\\x13 \\t\\r\\x04\\n\\x05\\x06\\x02\\x04\\x03\\x03\\x01\\x10\\v\\x0f\\t\\x16\\x02\\nI,\\x1a,\\x01\\x04\\n\\x1e\\x1f\\x10\\x10!\\x06\\v\\t\\a\\a\\x05\\x05\\x03\\x04\\a\\x01\\x13\\t\\x15\\x02\\x04\\a\\x0e\\x01\\b+&+\\x1c\\x03\\x03\\x13\\x0f\\xfb\\a\\v\\a\\n\\x02\\x01\\f\\x06\\b\\t\\t\\x04\\x03\\x01\\x1d\\x12\\a\\x02\\t\\x05\\x16\\v\\f\\x0e\\x0e\\x05\\x05\\x03\\x10\\v\\x03\\x06\\x13\\x02\\x03\\a\\x06\\x01\\x01\\x03\\x01\\x027\\x04\\x02\\x02\\x05\\x06\\x03\\x02\\x02\\x01\\x04\\x04\\x04'\\x04\\x16\\x06\\v\\f\\x02\\x01F\\x01\\x04\\x0f\\r\\x02\\b\\x10\\a\\x06\\n\\x04\\x02\\x03\\x03\\t\\x0e\\x06\\x04\\x04\\x03\\x02\\x01\\r\\v\\x02\\x02\\r\\x03\\v\\r\\x05\\f\\r\\x02\\x01\\x05\\a\\x04\\x04\\x02\\x02\\x06\\b\\x01\\x04\\x04\\x06\\b\\b\\x04(\\x03\\v\\b\\a\\f\\x02\\x0e\\x11\\x01\\a\\t \\x11\\x18\\x03\\x03\\x01\\t\\x06\\x04\\x02\\x0f\\x11\\x01\\x06\\x01\\x01\\n\\t\\x03\\xce\\x06\\a\\x11\\x11\\x01\\x0f\\x0e\\v\\\\x<=Z\\x01\\x03\\x01\\x16-#\\x01\\x02\\x01\\x04\\x01\\x05\\x04\\x04\\x16\\x12\\t\\x11\\x04\\x01\\t&\\x1d\\x0e\\x06\\x06\\a\\f\\x06\\x06\\a\\a\\a\\x15\\x18\\x16-\\x1b\\x0f\\x03\\r\\a\\b\\x02\\b\\a\\a\\x14\\x05\\x02\\v\\x02\\n\\x02\\x04\\x03\\x06\\x06\\x05\\t\\x05\\x04\\x01\\x02\\x01\\x02\\x01\\n\\a\\t\\x0f\\x11\\n\\x01\\x10\\x0e\\x12\\x17\\x16\\x8a\\r\\x05\\v\\t\\f\\n\\x04\\n\\r\\v\\x01\\x03\\b\\f\\v\\n\\x10\\b\\x14\\v\\x11\\b\\n\\x01\\a\\a\\x06\\x12\\n\\a\\x02\\a\\t\\x01\\x01\\x06\\x04\\x11 \\f\\n\\x15\\x04\\x04\\x02\\x05\\x02\\t\\a !*\\x05\\x1b\\x11\\v\\a\\x04\\x02\\v\\x06\\x05\\b\\x01\\x04\\x01\\x03\\x02\\x03\\x04\\x05\\x04\\x02\\x03\\x1a\\v\\x12\\x06\\x16\\x01\\x01\\x04\\x10\\x01\\x02\\x10\\x01\\x01\\x01\\x01\\n\\x12\\x1f\\x12\\x06\\x01\\x02\\x03\\x06\\x04\\x16\\x18\\x0e\\x0e\\x1d\\x1c\\x14\\x0f\\b\\x06\\x01\\x01\\x03\\x02\\r\\x03\\x04\\x05\\v\\x03\\x01\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\x04\\x15\\x01\\x13\\x02\\x05\\a\\r\\f\\x16\\b\\b\\a\\x1d$\\x01\\x02\\x01\\x02\\x06\\x01\\x04\\x10\\f&\\x01\\n\\x05\\f\\x03\\f\\x03\\xfe\\xb4\\f\\x12\\x14\\b\\x1b\\x04\\n\\x0f\\x01\\x05\\n\\x0f\\f\\x04\\v\\x17\\x17\\x03\\b\\x0f\\n\\x06\\x11\\x1c\\x01\\x02\\x05\\x13\\x10<\\x17\\x10\\v\\x03\\a\\x1d\\x1f\\x17\\x06\\x15\\x02\\x03\\v\\x0e\\x03\\x06\\x11\\r\\x13\\n\\v\\x02\\x03\\a\\x16\\x0f\\x19\\x04\\b\\x18\\x19\\x14\\x11)\\x12\\x01\\x02\\x04\\n\\xdd\\r!\\x03\\x11\\x0f\\x17\\x03\\x02\\x04\\x03\\r\\x14\\x12\\x10\\x01\\x05\\x05\\x02\\x1b\\x0e$,\\x10\\x10\\x03\\x01\\x18\\x0f\\x16\\x15\\x14\\x01\\x05\\x16\\x0f\\x04\\x18\\x10\\x01,\\x1a\\x03\\t\\t\\x02\\x03\\b\\x06\\x0e\\x04\\x05\\x01\\t\\n\\x02\\x01\\x01\\n\\x03\\x03\\x05\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\b\\a\\x1b\\x1c\\x16\\x10+/\\x06\\x17\\x17\\x03\\x01\\x03\\t\\x03\\x15\\x01\\x04\\x04\\x05\\x06\\x04\\a\\x02\\x06\\x01\\x1d\\x03\\x1c\\x1b\\x0e\\x04\\x04\\x10\\x03\\a\\f\\x1c 0\\tH\\x02\\v\\x06\\r\\x06\\n\\x05\\x01\\r\\x02\\r\\x03\\x02\\x03\\r\\x06v\\x05\\t%\\v\\f\\x0f\\x1003\\v\\b\\n\\r\\x19\\x10\\x04\\x04\\x15\\f\\a\\x01\\x03\\x03\\x01\\x05\\x0f\\n\\x01\\x03\\a\\x0e\\x04\\x01\\x04\\x01\\x06\\b\\x012\\x03\\x02\\x0e\\x06\\x031\\x02\\x05\\x03\\t\\x10\\a\\x01\\x01\\x06\\f\\f\\v\\x03\\x01\\a\\v\\x03\\x03\\x01\\x01\\x01\\b\\x11\\x18\\x11\\v\\x05\\x01\\x03\\x04\\v\\x17\\x06\\x14\\x06\\x03\\x01\\b\\t\\x0e\\x02\\x02\\v\\n\\f\\x03\\x02\\t\\aC\\x06\\a\\x01\\x01\\b\\x06\\r\\a\\x17\\t\\x04\\a\\x11\\v\\n\\a\\x06\\x01\\n\\a\\x03\\a\\x03\\x02\\x01\\x02\\f\\r\\x02\\x01\\x00\\x00\\x02\\x00\\x12\\xff\\xc0\\x01m\\x01\\xc0\\x00p\\x00\\x88\\x00\\x00\\x05\\x1e\\x01\\x17!\\\"76743\\x16765&54'&'\\x0e\\x02\\a\\x163\\x15#67436\\x1727>\\x017>\\a46'4&#*\\x01#.\\x01'&3!\\x06\\a\\x14\\x0e\\x02#\\\"#\\x06\\a\\x0e\\x01\\x17\\x16\\x17\\x16\\x17\\x1e\\x01\\x1723\\x16\\x17#5232'0&'&\\a\\x06\\a\\x06\\x15\\x16\\x1c\\x01\\x15\\x16\\x17\\x1632\\x16&\\x162>\\x03767&'.\\x03'+\\x01\\x06\\a\\x16\\x17\\x16\\x01e\\x01\\x05\\x01\\xfe\\xaf\\x06\\x01\\x01\\x04\\ar\\b\\x0f\\x01\\x04\\a)\\x02\\x06\\x05\\x03\\x02\\\"s\\x03\\x01\\x05\\n\\x10\\x05\\x02\\a\\x1e\\x1e\\x05\\b\\x06\\x05\\x03\\x03\\x01\\x02\\x01\\x01\\x19\\r\\x0f7\\x1f\\x05\\x01\\x01\\x01\\x06\\x01S\\x02\\x01\\x02\\x01\\x01\\x040\\x0e,\\f\\n\\f\\x03\\a\\x1e\\r\\x12\\x1a\\r\\x0e\\x01\\x13\\x01\\x03t\\x1a\\x05\\x05\\x02\\v\\x02\\x03\\x06\\x0f\\x16\\x06\\x01\\x01\\x14\\rd\\x06\\x03\\xb3\\t\\t\\t\\v\\t\\v\\x04\\x02\\x02\\x10\\x03\\x03\\b\\x06\\a\\x03\\x02\\b\\v(\\x03\\x03\\a\\x14\\x04\\x1f\\t\\x06\\n\\x1d\\x06\\x01\\x04\\x06\\x11k\\x16\\x05\\x01\\x02\\n\\x05\\r\\r\\x05\\x03\\x1c\\x14\\x05\\x03\\x01\\x01\\x05\\x10IH\\v\\x14\\r\\x0e\\x06\\t\\x02\\x06\\x01\\x05\\x01\\f\\n\\x1a\\x11\\x03\\x05\\v\\x05\\x04\\v\\n\\t\\x01\\x01\\x01\\x10\\n\\x15D\\x1f-<\\x16\\x01\\x06\\x15\\x1b\\x04\\x19\\x06\\x05\\x02\\x04\\x05\\x02\\x06\\x19@'\\x01\\x14\\x03\\x03\\x01\\xc9\\x03\\x03\\x03\\x03\\x03\\x01\\x01\\x01)\\n\\b\\x17\\x15\\x17\\b\\x1ch\\x02\\x01\\x02\\x00\\x00\\x10\\x00\\x00\\xff\\xc0\\x01\\xbf\\x01\\xc0\\x00\\x1d\\x00\\xa1\\x00\\xec\\x01\\x19\\x01Z\\x01\\xa3\\x01\\xe3\\x02\\x03\\x02&\\x02G\\x02\\xfa\\x03\\a\\x03\\x1a\\x03!\\x03-\\x031\\x00\\x00\\x13\\x16\\x17\\x16\\x15\\x14\\x15\\x14\\a\\x0e\\x02\\a#.\\x045\\\"=\\x014547>\\x017\\a\\x06\\a\\x17\\x06'0.\\x01#\\x150>\\x0116\\x172\\x15\\x06\\a\\x06;\\x012=\\x01'#\\\"'&'&#\\\"\\x15\\x16\\x15\\x16\\x172\\x14\\a*\\x01&543:\\x0165654'&\\\"#&72\\x17\\x1e\\x01\\a0\\x141\\x1e\\x02\\x17\\x1e\\x01\\x172=\\x014\\x17\\x163272\\x150\\x16\\x15\\x14;\\x01&'272\\x17\\x1e\\x0215\\x06\\a\\\"5&'4327&'\\x17&'0.\\x01'\\x0e\\x02#\\\"#6\\x17272\\x15\\x14\\x15\\x06'&'4&'\\\"\\x150\\x161\\x143\\x16\\x17\\x16\\x17\\x16\\x0e\\x01\\a\\x06'&672=\\x01674#\\\"#\\\"\\x06\\a\\x06'676\\x17\\x16\\x1725654#&546\\x17\\x16\\x06\\a\\x06\\x1d\\x01\\x17\\x1432'>\\x01\\x1e\\x023\\x16\\a\\x14\\a\\x14\\a\\\"=\\x01&'&\\a\\x06\\x15\\x14\\x167>\\x0232\\x150\\x15\\x0e\\x02\\x14\\x061\\x0e\\x01&'&6\\x17#\\\"'>\\x015454'\\\"572\\x17\\x1e\\x01\\a\\x06\\a\\x16\\x17\\x16725454'\\\"4732\\a#\\x06\\x15\\x14\\x17\\x1432\\a#*\\x01#\\\"'&'&*\\x01\\x15\\x16\\x15\\x1432\\x17\\x06%\\x06\\a&+\\x01\\\"#&76'&'4#\\\"#\\\"#\\x061\\x06\\a\\x14\\x166\\x17\\x16\\a0+\\x01\\\"72676742\\x17\\x1e\\x01\\x17\\x16325454'\\\"7032\\x16\\a#\\\"\\x15\\x1c\\x01\\x15\\x16;\\x01276\\a\\\"'67236\\x16\\x15\\x14\\a\\x14\\\"54&#&#\\\"\\x1d\\x01\\x147636\\x15\\x14\\x06'05&#&\\x06\\x15\\x14\\x15\\x1c\\x02\\x163\\x166762\\x15\\x14\\a\\x14#\\\"#\\\"43656'\\x16\\x15\\x1c\\x021\\x06\\\"54'&\\x06\\x17\\x1e\\x01767456\\x17\\x14\\a\\x06'.\\x0176\\x172\\x16\\a\\x06\\x15\\x14\\x15\\x163\\x16>\\x0176\\x15\\x16\\x06\\\"+\\x01\\\"&3656'4'\\\"43:\\x01'\\x1432\\x14#\\\"#\\\"4;\\x01265454'\\\"#&6323\\x16\\a0#\\x06\\x15\\x06\\x03:\\x013>\\x017+\\x8d\\\"\\x150\\x1c\\x01\\x16\\x1c\\x02\\x15\\x14\\a\\x06\\a\\x06'&1&541474+\\x01\\x1e\\x02'\\x143\\x16676&'&\\\"\\a\\x14\\x17\\x14\\x17\\x14\\x06&565\\x06\\x16\\x17\\x163276&/\\x01\\\"\\x14326&\\x06\\x143\\x16645.\\x01\\x06\\x15\\x14\\x17'\\x06\\a\\xe2\\xd4\\x05\\x04\\x04\\tgi\\x02\\x03\\x16=81\\x1e\\x02\\x03\\v\\xcb\\x06\\taa\\x1f\\b\\x03\\f\\r\\x01  \\x01\\b\\x01.\\x16\\x01\\x02\\xbb\\x02\\x06\\r\\f\\t\\b\\x0e\\x02\\x0f\\x02\\x01\\x01\\t\\x03\\x02\\x02\\x1e\\x04\\x02\\x01\\x04\\x02\\x01\\x05\\x01\\x03\\x01\\x03\\x050\\b\\f\\x01\\x10\\x01\\x03\\x03\\x01\\x15\\a\\r\\x01\\x02\\x05\\x06\\x06\\x06\\x02\\x01\\x02\\xba()\\x01\\x06\\x02\\x01\\x03'#\\x10Z\\x01\\x01\\x02\\x01\\x04c4\\x90W\\n\\x02&(\\x04\\x04*'\\x01\\x01\\b+_\\x03\\x03\\x02\\x02\\x01\\x01\\x01\\n\\x1b\\x01\\x04\\x01\\x04\\x05\\n\\x02\\x01\\x04\\x10\\r\\x1c\\x06\\x04\\r\\n\\x02\\x02\\x02\\x01\\x03\\x06\\x13\\n\\x02\\x03\\x01\\x01\\x02\\x01\\x02\\x05!\\x01\\x01\\x01\\t\\x14\\a\\x05\\x01\\x06\\x02\\x01\\x01\\x13\\xb8\\x06\\n\\v\\b\\r\\x05\\x04\\x01\\x01\\x01\\x04\\x03\\x19\\\"\\n\\x03\\x1c\\x1a\\f\\n\\x01\\x02\\x03\\x01\\x01\\x01\\x01\\x01+.\\x03\\x02\\x15e\\x13\\x02\\x01\\x01\\x05\\x03\\x04\\x03\\x16\\b\\a\\a\\x06\\x02\\x04\\t\\b\\x04\\x06\\x02\\x03\\x03\\x03\\x13\\x05\\x04\\x01\\x04\\x01\\x05\\x04\\x02\\x02\\x05\\x15\\x05\\t\\v\\x03\\x01\\x01\\x04\\x04\\x01\\x03\\x03\\x01\\x01\\x01\\x11\\x03\\x02+\\a\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x03\\x02\\x03\\x03\\x04\\x04\\x02\\x02\\x03\\x04\\x06\\x03\\x04\\x02\\x02\\x1a\\x02\\x01\\x04\\x04\\x02\\x12\\x01\\x02\\x01\\x01\\x13\\x03\\x02\\x05\\x04\\x06\\x03\\x03\\x16\\x02\\x01\\x02\\x02\\x03\\x01\\x02\\x01\\x0e\\x02\\x02g\\x03\\x01\\x02\\x01!\\x04\\x01\\x01\\x01\\x03\\x04\\x06\\x04\\x02\\x01\\x01\\x0f\\x01\\x03\\x02\\x02\\x01\\x02\\f\\x01\\x02\\x02\\v\\x03\\x02\\x01\\x02\\x01\\x05\\\"\\x01\\x02\\x02\\x04\\x01\\x05\\x03\\x01\\x03\\a\\x12\\x0f\\x05\\x04\\x12\\a\\x05\\x02\\x02\\x01\\x06\\x15\\v\\x0f\\x01\\t\\r\\x01\\x02\\x01\\x03\\x05\\x01\\x03\\n\\a\\x01\\x01\\x02\\x01\\x03\\x01\\x02&\\x01\\x01\\x02\\x05\\x01\\x01\\x06\\x01\\x02\\x01\\x12\\x1c\\x06\\x02\\x02\\x0e\\b\\x02\\x02\\x01\\x02\\x01\\x03\\x01\\x01\\x02\\x01\\x02\\x14\\x01\\x02\\x03\\x01\\x03\\x01$\\x01\\x02\\x01\\a\\xb6\\b(\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\r\\x01\\x01\\f\\x02\\x01\\x02\\xb7\\x01YeV\\x03\\b\\x0f\\x03\\x05\\a\\v\\x03\\v\\x02j\\x01\\f\\r\\x01\\v\\x03\\x0f\\x03\\x04\\n\\x05\\x04\\x01\\t\\f\\b\\b\\x04\\x04\\x03U\\x02\\x06\\x06\\x01\\a\\x06\\xd4\\x06\\x02\\x04\\x01\\xc0{\\x02\\x01\\x05}~\\x04\\x01\\x06:<\\x01\\r# \\x1c\\x11\\x01\\x02\\x01\\xe2\\x1b\\x03\\x02\\x06t\\x03\\x1487\\f\\x06\\x01\\x05\\x05\\xe687\\x02\\x01\\x01O&\\x01\\x01\\t\\x01\\r\\n\\x13\\x02\\x01\\x1b\\x06\\x04\\x01\\x04\\x01\\x01\\x02\\x02\\x02\\x02\\rC\\f\\x01\\x01\\x02\\x03\\x05\\a\\x1b\\x13\\x02\\x01\\x04\\x04\\x01\\x19\\x06\\x02\\x01\\v\\x02\\x01\\x01\\x02\\x02\\x1a\\x01\\x01FG\\x01\\x01\\x06C=\\xe6\\x05#\\x01\\x03\\x03\\x01'\\x1eS\\x97\\x01\\x03AG\\x06\\x06JBJ7\\x01\\x02\\x14\\x01\\x02\\x02\\x02\\x03\\x04\\x02\\x01\\x01z\\x01\\x02\\x02\\a\\r\\a\\x0f\\x0e\\x01\\x01\\x19\\r\\x14\\x03\\x02\\x01H1\\x01\\x03\\x05\\x05\\x04\\t\\t\\x03\\x01\\x01\\x01\\x02\\x16\\b\\x02\\x05\\t\\v\\t\\b\\x06\\x0e\\x04\\x02\\x02\\x01\\x1e\\x01\\t\\x02\\x01\\x01\\x01\\x02\\x01\\x03\\x13\\x05\\x01\\x01\\x06\\x01\\x0f\\x03\\x04\\x1e\\a\\n\\x14!\\x02\\x01\\n\\n\\x03\\x01\\x03\\x06\\x04\\x04\\x02\\x06\\x04\\x17\\x1d\\x15\\\"R\\x01\\x02\\x01\\x04\\v\\x1d\\x04\\x01\\x01\\x02\\x01\\x01\\x0e\\a\\x03\\x04\\f\\b\\x04\\x01\\x02\\x04%\\x06\\x01\\x02\\x01\\x03\\x01\\x04&\\x05\\x02\\x03\\x0f\\x04\\x01\\x02\\x01\\x03\\x05\\n\\x01\\x02\\n\\n\\x01\\x01\\x01\\x01\\x02\\x02\\x04\\x06\\x02\\x01\\x05\\x06\\x02\\x01\\x01\\x01\\x01\\x02\\x03\\a\\x05)\\x01\\x01\\x01\\x01/\\x04\\x02\\x04\\x02(\\x03\\x01\\x03\\x02\\x01\\x03\\x01'\\x01\\x03\\x04\\x04E\\x02\\x01\\x01\\x01\\x01\\x01\\x03\\b\\x01\\x02\\x03\\x01\\x01\\x02\\x10\\x02\\x01\\x01\\x01\\x03\\b\\x06\\x03\\x02\\x03\\x01\\x01\\x06\\x02\\x03\\x04\\x03\\x03\\x01\\x01\\x02\\x04\\x02\\x02\\x05\\x05\\x02\\x03\\x01\\x023n\\x01\\x04\\x02\\x05\\x02\\x02\\x02\\a\\x02\\x05\\x16\\r\\n\\x06\\x02\\x01\\x05\\x01\\x01\\x02\\x04\\v\\x01\\x03\\x06\\b\\x1f\\x06\\x0eq\\x03\\x01\\x03\\x02!\\b\\x04\\x01\\x01\\x05\\x01\\x04\\x05\\x06\\x06\\x03\\x02\\x01\\x1c\\x14\\x03\\x01\\x03:\\x04\\x03\\x03\\x05\\x10\\x0e\\v\\x03\\x01\\x01\\x02\\x02\\x01\\x01\\x02\\x04\\xfe\\xc6\\x05g\\x05\\x01\\x05\\b\\n\\v\\t\\a\\x01\\x04\\x03\\x02\\x1f\\x02\\x02\\x1f\\x05\\x05\\x01\\n&\\x02\\x013:\\xba\\x03\\x02\\x02\\a\\v\\x19\\x03\\x01\\x02\\x01\\x1a\\x0f\\x18\\x05\\x02\\x06\\x04$\\x03\\x05&\\x06\\x01\\b\\x06\\x1b\\x06\\xc6\\x0f\\b\\ae\\x05\\x01\\x06\\a\\x01\\x05\\x05\\x01\\x01\\x02\\x17\\x10\\x06\\n\\x00\\x15\\x00\\x00\\x00Z\\x02\\x80\\x01&\\x00\\\"\\x00'\\x00[\\x00r\\x00~\\x00\\x83\\x00\\x9a\\x00\\xe2\\x00\\xe6\\x00\\xfc\\x01\\x17\\x01'\\x01<\\x01J\\x01X\\x01_\\x01l\\x01\\x88\\x01\\x98\\x01\\xab\\x01\\xd0\\x00\\x00%\\\".\\x015&\\x14\\x17&7'\\a46?\\x01\\x16\\x14\\x06\\x1567\\x06\\x156\\x17\\x06\\x16327\\x1e\\x01\\x17\\x066\\x14\\a6'\\x17\\x14\\x06'\\x167\\x06&5\\x06\\x17&'46&'.\\x01<\\x01.\\x015\\x14\\x172\\x163\\x16\\x15\\x14\\x170\\x16\\x17\\x1e\\x023\\x166'\\x1e\\x01\\a\\x1674'6\\x16'67&\\a67\\a2>\\x013\\a0?\\x012\\x17&\\a&\\a&\\x172\\x16\\x15\\x14#\\\"'75'6\\x17\\x1654\\a%'4>\\x01\\x172\\x15\\x14\\a&16&#\\\"\\x06\\x17\\x06\\x17&'\\x06\\x176'3&7\\x1e\\x01\\x174'&7\\x14\\x16\\x15&'&'&7\\x14\\x16\\a\\x16\\x1527\\x16\\a6&\\a5&\\a6\\x17\\x063\\x153\\x06#65\\x06#6'&\\a67\\\"'6\\x17&\\a2\\x17\\x06\\a61&\\a>\\x02\\x17&'\\x16\\x17707\\x15&#\\a&#\\x16\\a\\x06'5063632\\x17\\x05\\x1e\\x01\\x14\\x15\\x14\\a\\x0e\\x04*\\x02#75'35'32\\x16\\x15\\x14'\\x152\\x162>\\x02=\\x014.\\x02#\\\"\\a:\\x03>\\x045#54.\\x02*\\x02#\\x17\\x153\\a#75'3\\x17#\\x153\\a72\\x1e\\x02\\x0e\\x02#\\\".\\x01>\\x01\\x1726&\\\"\\x06\\x16'\\x15\\x17#75'3\\a\\x177'3'&'\\x1632\\x170\\x0e\\x02\\x1563\\x06\\x157\\x06\\x17\\x06+\\x01676=\\x014\\x17\\x150:\\x02>\\x024.\\x02\\\"&\\x06\\x173\\a\\x15#.\\x01'\\x15\\x17#75'3\\x1e\\x01\\x175'\\x1e\\x02\\x15\\x14\\x0e\\x01#6'254.\\x02*\\x02#\\x15&\\a63&\\a67\\x06\\a4'&'\\x16\\x01:\\x05\\a\\x04\\x03\\x01\\v\\x06\\x01\\x02\\x05\\x02\\x02\\x01\\x01\\x03\\b\\x02\\x04\\x04\\b\\x03\\b\\b\\x06\\x01\\x06\\x01\\t$\\x05\\x02\\x02\\x0f\\b\\x06\\x05\\x04\\x03\\x14\\x05\\x05\\x06\\x01\\x01\\x04\\a\\x02\\x02\\x04\\x01\\x03\\x01\\x03\\x01\\x01\\x01\\x05\\x02\\x01\\x04\\x04\\x01\\x04\\x05\\x01\\x03\\x01\\x03\\t\\x01\\x05\\x05\\b'\\v\\r\\v\\t\\x02\\b\\x01\\x01\\x03\\x05\\x02\\x03\\x02\\x06\\b\\x05\\b\\x05\\r\\t\\x05\\xf1\\x1b!;\\x18\\x1c\\b\\b\\x1b\\b//\\xfe\\xfa\\x04\\x01\\n\\t\\x11\\x05\\b\\x03\\x03\\x05\\x03\\x04\\x01\\x02\\x01\\x05\\x02\\x03\\x01\\x01\\x06\\a\\x02\\x01\\x02\\v\\x01\\x04\\x03\\x04\\x0e\\x01\\x06\\x02\\x01\\x01\\x02\\x0f\\x01\\x02\\x02\\x01\\x01\\x06\\x01\\x04\\x03\\x01\\n\\x03\\x02\\x02\\x03\\x03\\x03\\x06\\x03\\x01\\x02\\x05\\x04\\x03\\x05\\x01\\x05\\x02\\x03\\x04\\x05\\b\\x05\\x02\\x02\\x06\\x05\\x01\\x01\\a\\x01\\x05\\x04\\x1a\\x01\\x03\\x01*\\x01\\x02\\x02\\x03\\x05\\x03\\x02\\x05\\x06\\x01\\x01\\x01\\x01\\x03\\x04\\x03\\x02\\xfe\\xe3\\n\\t\\n\\x02\\x05\\x05\\t\\a\\x0e\\f\\x17\\t\\b\\v\\v\\b8\\x0e\\x179\\x01\\b\\x06\\a\\x04\\x03\\x02\\b\\a\\b\\x03\\x01\\x02\\b\\x04\\x06\\x03\\x04\\x03\\x02\\x01\\x01\\x02\\x04\\x05\\a\\x05\\b\\x01e<\\x0eQ\\a\\aI\\x0e4%\\x0e\\xbf\\x10\\x18\\r\\x06\\x06\\f\\x19\\x10\\x16\\x1d\\x06\\a\\x1d\\x15\\x13\\x0e\\x0f#\\x0f\\x0fJ\\a*\\a,-\\x06\\x15\\x14\\x06*I\\b\\x01\\a!\\x19\\a\\x03\\x03\\x04\\x03\\x06\\n\\x03\\x02\\x01\\v\\x0f#\\x04\\x04\\x02\\x13\\x05\\x03\\x06\\x03\\x04\\x02\\x02\\x04\\x03\\x06\\x03\\x05\\xe5'\\a\\x16\\x02,\\x02\\a'\\a\\a\\x1f\\x02)\\x03r\\x0f\\x11\\x02\\x04\\x12\\x0f\\a\\t\\x13\\x01\\x04\\x04\\x05\\x03\\x05\\x01\\x04\\x03\\x03\\x03\\t\\x06\\x01\\x03\\x03\\x03\\x03\\b\\x02\\a\\xce\\x04\\x03\\x01\\x03\\x04\\x01\\n\\x10\\x02\\x02\\x04\\a\\x02\\x01\\x01\\x01\\x04\\x03\\x05\\x03\\x03\\x04\\x05\\x02\\t\\x12\\v\\x01\\x05\\x01\\x12\\x19\\a\\x01\\x05\\x04\\n\\x05\\x06\\x01\\x04\\x02\\x06\\x03\\t\\x05\\x04\\x02\\x05\\x03\\a\\x03\\x05\\x02\\x03\\x03\\x02\\x03\\x02\\x03\\x03\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x03\\x04\\x03\\x04\\x03\\x02\\b\\x02\\x02\\a\\x05\\x01\\x01\\a\\x0e\\x0f\\x01\\x01\\n\\b\\x05\\x04\\x02\\x04\\x04\\x01\\x01\\a\\x03\\x05\\b\\x18\\x043\\x1b\\x161\\x02\\bN\\b\\x02L\\x06! \\x05d\\a\\x03\\b\\t\\x01\\x10\\b\\x06\\b\\x04\\n\\x06\\x04\\x04\\x04\\x03\\x06\\x04\\v\\x03\\x02\\x02\\x04\\x03\\x06\\x03\\x04\\x02\\a\\x04\\x05\\r\\x02\\x04\\x05\\x02\\x01\\x04\\x03\\x04\\x0f\\x05\\x01\\x01\\x02\\a\\x03\\x03\\x03\\x01\\x04\\x03\\x04\\x01\\x01\\x04\\x05\\x05\\x01\\x03\\x01\\x03\\x05\\x04\\x03\\x04\\x02\\x01\\x03\\x01\\x02\\x05\\x01\\x01\\x05\\x05\\x03\\x01\\x01\\x03\\x02\\x06\\x03\\x01\\x04\\x04\\x01\\x01\\x12\\x01\\x01\\x03\\x05\\x02\\x01\\x01\\x10\\x02\\x04\\x02l\\x03\\f\\x04\\x06\\f\\x06\\x01\\x02\\x01\\x01\\x01\\t \\x0f\\x1d\\t\\v\\x0e\\x10\\x18\\x15\\x01\\x01\\x02\\x04\\x03\\x02\\x04\\x04\\x01\\x01<\\x01\\x01\\x01\\x02\\x03\\x02\\x04\\x02\\x04\\x02\\x01\\x03\\x10\\x15\\tM\\b\\x15\\x0f\\x15<\\v\\x12\\x15\\x15\\x12\\v\\x15\\x1d\\x1d\\x15N\\x1c\\x1c\\x1c\\x1c\\t\\x13\\t\\t\\x13B\\a&&\\aU\\x06\\t\\x04\\x17\\x02\\x02\\x03\\x01\\x01\\x06\\x0e\\x03\\x06\\x06\\b\\x01\\x03\\x02\\x04'\\x05\\x04\\\"\\x03\\x03\\a\\b\\a\\x03\\x03\\x01\\x01O\\tU\\a,\\x050\\b\\tL\\t\\x04'\\b*i\\x01\\x10\\f\\x05\\x05\\r\\x10\\t\\b\\x11\\x04\\a\\x03\\x03\\x04\\x01\\x01\\x02\\x03\\x06\\x02\\x03\\x01\\x03\\b\\x02\\x06\\t\\x04\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\t\\x00\\x19\\x00#\\x005\\x00>\\x00\\x006\\x16\\x1d\\x01\\x14\\x06+\\x0153%2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\x1532675#\\\"\\x06\\x1d\\x01\\x14\\x16735#535#5\\x177#\\a'#\\x17\\x1e\\x01r\\f\\f\\x06\\x11\\x11\\x01(\\x12\\x1a\\x1a\\x12\\xfe\\x98\\x12\\x1a\\x1a\\x12n\\x17\\x180/\\x19\\x17e?\\t\\v\\f\\t>5  \\x9d&!\\x1d\\x1e &\\b\\x1d\\xf4\\t\\bF\\t\\bh\\xac\\x1a\\x12\\xfe\\x98\\x12\\x1a\\x1a\\x12\\x01h\\x12\\x1a\\xfe\\xfdG\\x11\\x1e\\xa5\\x1dj\\x1e\\f\\t}\\b\\f\\x01\\x1d&\\x1e&s\\x91rr\\x91\\x13\\x03\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00!\\x00G\\x00K\\x00O\\x00\\x00\\x01\\x17\\a'3\\x16\\x1767\\x1e\\x01\\x1767&'&7>\\x01\\x17\\x16\\x17672&1&'&\\x06\\a\\x06\\x1767.\\x04'\\x0e\\x02\\a.\\x01'\\x061\\x06\\a\\x06\\x17\\x1e\\x01\\x17\\x16\\a\\x0e\\x01'&'\\x06\\a\\x16\\x17\\x166\\x03\\t\\x023\\x177'\\x01\\x00\\xdf\\xdf\\xdf7\\x16\\x13:\\x04\\x06\\x19\\x06\\x0f\\x15\\n\\x1a\\x02\\x02\\f \\r\\b)\\x19\\b\\x01\\x01\\\"\\x1c\\x19A\\x1eJ\\xd4D!\\x04\\t\\b\\b\\b\\x04\\a\\x18\\x15\\t\\a\\x19\\x06\\x02\\x1c\\x04\\x02\\x03\\x06\\x17\\x03\\x03\\x03\\r!\\x0e\\x06&\\t\\x1b5\\x14\\x15=*\\x01\\x00\\xff\\x00\\xff\\x00\\x10\\xf0\\xf0\\xf0\\x01\\x9f\\xdf\\xdf\\xdf\\x15\\x149\\x04\\x06\\x19\\a\\x0f\\x14\\n\\x1a\\x03\\x02\\f\\x03\\n\\x06&\\x1a\\t\\x03&\\x15\\x14\\b\\x1eK|D!\\x04\\b\\b\\b\\b\\x04\\a\\x17\\x15\\t\\a\\x1a\\x05\\x01\\x1c\\x04\\x02\\x03\\x06\\x17\\x03\\x04\\x03\\f\\x01\\v\\x05%\\t\\x1b6\\r\\x0e\\t\\x01\\u007f\\xff\\x00\\xff\\x00\\x01\\x00\\xf0\\xf0\\xf0\\x00\\x00\\x05\\x00\\x00\\x00\\t\\x02\\x82\\x01x\\x00\\x04\\x00\\x0f\\x002\\x00K\\x00^\\x00\\x00\\x01\\x16\\x17\\a6\\a6\\x17\\x16\\a\\x06\\a\\x06\\a'6%\\x16\\x15\\x16\\x0e\\x01'\\x14\\x06\\a\\x06#\\\"&/\\x0145467'&54>\\x01\\x1767676\\x16\\x17\\a>\\x017>\\x01.\\x01#0#\\\"\\a\\x06\\a\\x177\\x17\\a\\x177'\\a'7\\x177'\\a'\\x06\\a\\x177\\x0f\\x01\\x177'\\a?\\x01\\x17\\a\\x01\\xa6\\x04\\x15(\\x0e\\xcd\\x15\\x06\\x06\\x15\\x06\\a\\n\\x18\\x05\\x17\\x01Wb\\x01o\\xb3o\\v\\tw\\x04\\v\\x10\\x01\\x04\\n\\b\\x02QV\\x8dR\\x05\\x0eO9\\n\\x12\\x05\\xf2\\r\\x1e\\b\\b\\x04\\b\\x1b\\x14\\x01\\vX2$\\x04\\x15\\v\\x14\\x04s\\x04\\x15\\x020\\xddm\\x04\\x15C=J\\x04\\x11!\\x15\\x04q\\x04\\x13\\x04:\\x06\\x0f\\x01\\x1c\\t.\\v>/\\x05\\x11\\x14\\v\\x03\\x02\\x03\\x06.\\x06\\x1f18'8\\v\\x16\\n\\x10\\x03\\x1f\\x0e\\v,\\x02\\x01\\b\\x0f\\x03\\x12-2$3\\x13\\a\\r\\x04\\x15\\x0f\\x03\\t\\t\\xd0\\x03\\x13\\v\\r$!\\x17\\x18\\r\\n,\\x05s\\x05,\\x1e-\\x06\\x18\\r\\v\\x1d-\\x06\\x91\\x10\\x14,\\x04~\\x06,\\x1e'\\x05\\x12\\x0f\\x0e\\x04\\x00\\x1a\\x00\\x00\\x00\\x03\\x02\\x81\\x01}\\x00\\x06\\x00\\x1c\\x00%\\x00W\\x00a\\x00h\\x00\\x91\\x00\\xa9\\x00\\xd9\\x01\\x02\\x01*\\x01=\\x01U\\x01`\\x01\\u007f\\x01\\x9a\\x01\\xb5\\x01\\xc6\\x01\\xe8\\x02W\\x02\\\\\\x02b\\x02y\\x02\\x84\\x02\\x8c\\x02\\x94\\x00\\x0076\\x17\\x16\\a\\x06&\\x05654&'&\\a#6'76\\x17\\x1e\\x01\\a\\x06\\a\\\"10'4?\\x01\\x06\\a\\x06#&'2\\x16\\x17\\x06\\a\\x16\\a#4'\\x06\\a\\x16\\x15\\x14\\a5654'\\x16\\x17\\x06\\a&'\\x16\\x15\\x14\\a654&#\\\"\\x06\\a#.\\x01/\\x01>\\x04\\x036'&\\a\\x0e\\x01\\x17\\x1e\\x017\\x17'\\a\\x177'\\x17>\\x0215\\x06.\\x01'675&'\\x06\\a#&'5676\\x177.\\x01#5\\x06\\a\\x156\\x17\\x1e\\x03\\x06\\x1575\\\".\\x01'56\\x175'#\\x06\\a\\x1734>\\x013\\x16\\a\\x1507&'.\\x01'&7\\\"\\a\\x152\\x1f\\x01#0\\x06\\a4/\\x015\\\"\\a2\\x17\\x14\\x1e\\x01\\x15\\x16\\a67&'4.\\x011767\\x17\\x16\\x17\\x156767#\\x0e\\x01'4.\\x0156\\x17461#\\x06\\a#&56\\x173&'5\\x06\\a#\\x16\\x17\\x14\\x1e\\x01\\x17\\a\\x1563765\\x16\\x17\\x1635\\\"'&'474656'.\\x01\\x06#\\a\\x176\\x17\\x16\\a\\x0e\\x03\\a\\x0e\\x01\\x17\\x1672\\x17<\\x0115&\\x06\\a\\x06\\x167507\\x06&7>\\x017\\x16\\x15\\a\\x06#\\a\\x16\\x177.\\x0176\\x177.\\x02\\x0f\\x017&#\\x17\\x1676&'&\\a\\x06\\x1e\\x01\\x17&561\\\"&'\\x1d\\x01\\x06\\x0f\\x012\\x17\\x16157>\\x0172\\x170\\x15\\a\\x152\\x1e\\x01'\\x06\\x163\\x16>\\x011\\a\\x16\\x177&67>\\x027&'\\a\\x16\\x0f\\x01&\\x06\\x1775.\\x01\\a\\x06\\x17\\x16\\a\\x06\\\"&7#\\x06\\x15\\x1e\\x0176'&762\\x16\\x177&'\\a2\\x17\\x06\\x0f\\x02\\x174767\\x16?\\x01.\\x02\\x0e\\x01\\x1e\\x023\\x16\\a\\x06'45'\\a\\x1e\\x023654&54\\x17\\x16\\a\\x14\\a73.\\x02#&\\a7\\a'7'\\\"\\a'\\x170#&7'\\x0e\\x01\\a'\\x17\\a'\\x16\\x17\\a'\\a\\x17\\a7\\a'\\a\\x17\\a'\\a\\x17&'.\\x01?\\x01'\\x06\\a\\x17>\\x02\\x17032\\x16\\x17\\x16\\x177'\\x17\\a7\\x16\\x17'\\a0\\x17\\x16\\x06\\a\\x1767'\\x06'&/\\x02\\x17\\a67'\\a\\x06\\a7\\\"\\a\\x17'7\\a6\\x17\\x1e\\x03%\\x1763'\\x17\\a'>\\x01\\x16'2\\x1e\\x03\\x15\\x14\\a#54.\\x02#\\\"\\a#&'56\\x05\\x0e\\x02#\\\"7>\\x01\\x17\\x16\\a\\x16\\a\\x06'&76\\x17567\\x06\\x15\\\"&\\xdb\\v\\v\\n\\n\\v\\x16\\x01\\\\\\x049+aW\\x01\\x01\\x05\\x01Yc.:\\x02\\x01\\x04\\x01\\xa4\\a\\x0f\\x01\\x01\\x02\\t\\b3o\\xa9\\v\\x03\\x06\\x01\\x01\\x01\\x02\\b\\b\\x04\\x10\\f\\x0e\\x04\\x03\\x16\\x05\\x04\\a\\f\\x1c\\x16I9E|,\\x01\\x1cr6\\x01\\b\\x19CIo*\\x11\\f\\r\\x12\\b\\x02\\x05\\x06\\x10\\v\\x02\\x04\\x0e\\x19\\f\\v\\t\\x01\\x04\\x04\\x01\\x02\\x05\\x04\\x05\\x06\\x01\\x01\\x03\\b\\x01\\x04\\x01\\x06\\x06\\x03\\x02\\x01\\x01\\x02\\x01\\x11\\t\\x03\\x02\\x04\\b\\x03\\x03\\x018\\x01\\x02\\x06\\x06\\n\\x03\\x03\\x01\\x17\\x05\\x01\\x01\\x05\\x04\\x01\\r\\x017\\x02\\x01\\x01\\x04\\x01\\x01\\x01\\x02\\t\\x02\\x01\\x03\\x01\\n\\x03\\x01\\x02\\x03\\b\\x02\\x01\\x04\\x05\\x01\\x01\\b\\x02\\x02\\x01\\x02\\x02\\x01\\t\\x03\\x01\\x02\\x01\\x04&\\x01\\x01\\x01\\x01\\r\\x02\\x01\\x01\\a\\x03\\x01\\x01\\x02\\b\\x01\\x01\\r\\x03\\x01\\x01\\x01\\x0e\\v\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x10\\a\\v\\a\\x02\\x02\\x12\\x03\\x04\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x02\\x0e\\x15\\r\\x05\\x03\\x0e\\r\\x06\\x04\\x02\\a\\a\\t\\x03\\x06\\x04\\x04\\x06\\f\\x05+\\v\\x10\\x02\\x02\\x14\\b\\x02\\x05\\x12\\x02\\x02\\x0f\\v\\x05\\x05\\x01\\a\\x01\\x13\\x12\\x01\\t\\x01\\x05\\t\\f\\v\\x01\\x03\\b\\x03\\x0f\\x01\\x0e\\r\\v\\x0e\\x04\\x02\\x06\\x06\\x0e\\x05\\x02\\x02\\a.\\x01\\x01\\x01\\x05\\x02\\x06\\b\\x03\\x02\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x06\\x02\\x01\\x03\\x04\\x04\\n\\x06\\x0e\\x02\\x05\\x02\\x02\\x0e\\x04\\x02\\x03\\x03\\v\\x02\\x03\\x06\\x03\\a\\x10\\x02\\a\\x02\\b\\x02\\x18\\x15\\x03\\x03\\n\\x02\\x02\\x04\\x03\\x01\\x01\\x04\\x04\\x01\\x01\\x02\\x02\\v\\x02\\x03\\x04\\x03\\x01\\x01\\x03\\x03\\x16\\x01\\x04\\t\\x03\\x04\\x02\\x03\\x06\\x02\\x01\\x06\\x01\\x04\\x05\\x03\\x1d\\b\\x01\\x04\\f\\f\\x05\\x01\\x03\\x04\\x01\\x02\\x06\\b\\x02\\x03\\x05\\x02\\x04\\v\\x04\\r\\a\\a\\x05\\x01\\x02&\\x01\\x0fHL%CA\\x15\\\"\\t\\a\\x03\\x03\\x04\\f\\r\\x01\\x10\\v\\x03\\x02\\x13\\v\\x17;\\x05\\x11\\x02\\x03\\x1d\\x1e\\x11\\x0e\\f_\\x04\\x01\\r\\x05\\x04\\x1a(\\x13\\f\\x11\\x1a\\n\\x03\\b\\x04\\x1b\\x1f\\x05\\x01\\x03\\a\\x02\\x01\\x04\\f!$\\x1c\\f\\x1c$\\x05*\\x1e\\x03\\\"\\x02\\x17\\x01\\x02\\x05\\x03\\x12\\x15\\x01\\n\\x02\\x02\\x13\\n\\x02=\\r\\x17\\x1b\\x01\\x05\\x01\\x12\\x16\\x1e%\\x04\\x19[UCB-K+\\x17\\xfem\\x03\\a\\x04\\t\\x8b\\v\\x16\\x03\\x11\\v\\x1bAnI3\\x17\\x01\\x01,MsB<2\\x01\\b\\x0e7\\x01\\x0f\\x04\\a\\x04\\x03\\b\\x02\\x01\\n\\x06\\n@\\b\\x03\\x03\\t\\t\\x03\\x04 \\x04\\x03\\x01\\x02\\x03f\\t\\x10\\x0f\\b\\t\\x1fD\\x0e\\a\\x19(\\x03\\x06P\\v\\n\\x02G\\v\\x05,\\x1d\\f\\b\\xb6\\b\\a\\v\\x1b\\x03\\a\\x01\\xa1sR\\x02\\x03\\v\\x05\\x06\\t\\x05\\a\\n\\x10\\x1c\\n\\x01\\f\\x14\\x19\\x10\\b\\n\\x15)\\t\\a\\x0f\\x17\\x1c\\x14\\x13\\x1c\\x1f1G9Si\\x0e\\x02\\t\\x192&\\x1e\\xfe\\xde\\x0f\\x10\\x13\\r\\x06\\x14\\a\\a\\x03\\x8e\\b\\x05\\x1b\\x1d\\x06G\\x87\\x01\\x02\\x03\\x01\\x01\\x01\\b\\b\\x04\\x01\\x01\\x03\\x02\\x02\\x06\\t\\x01\\x01\\x06\\x02\\x01\\x01\\x01\\x01\\x03\\x01\\t\\a\\x01\\x01\\x03\\a\\f\\x04\\x06\\x01\\x02 \\x01\\x01\\x0e\\x0f\\x01\\x03\\x01\\x01\\x05\\n\\x03\\x06\\x02\\x03\\x02\\x1e\\x02\\x01\\x16\\x01\\x03\\x03\\x15\\x02\\x03\\x02\\x02\\x01\\x04\\t\\x03\\x01\\x01\\x04\\x04\\x05\\x03\\x04\\x01\\f\\r\\x01\\x03\\x02\\x03\\x01\\x01\\x03\\x01\\x06\\x06\\x01\\x03\\x01\\x01\\t\\x04\\x05\\x02\\b\\x03\\x03\\x03\\x03\\x01\\x01\\x06\\x05\\x01\\x01\\x01\\x02\\x03\\x01\\x01\\x06\\x04\\x03\\x03\\x03\\x02\\x01\\x01\\x02\\x01\\x03\\x03\\n\\n\\x03\\x04\\x01\\x04-\\x04\\x02\\x04\\x04\\x01\\x05\\x01\\x02\\x04\\x0e\\a\\x01\\x14\\x02\\t\\x03\\t\\b\\x01\\x10\\x03\\x0e\\t\\x05\\x06\\x02\\x05\\x03\\x04\\x03\\x06\\x11\\t\\v\\x01\\x12\\x01\\x04\\x01\\x06\\a\\t\\f\\f\\x05\\x01\\x06\\b\\x06\\f\\n\\x04P\\x01\\x037\\a\\x05\\x03\\x04\\x05\\x02\\x0f\\x1d\\a\\x06\\v\\x01\\x03\\x04\\x01\\v\\x12\\ay\\x03\\x0f\\x06\\v\\x02\\x05\\x0f\\x05\\b\\a\\n\\x01\\x02\\x1a\\x02\\x01\\x01\\x02\\n\\n\\x02\\x01\\x01\\x01\\x03\\x01\\x04\\x01\\x03\\a\\x02\\x01\\x01\\x01Y\\x0f%\\x01\\x02\\x02\\a\\x06\\x02\\x04\\x04\\f\\x1e\\a\\b\\x10\\a\\a\\x0e\\x04\\x05\\x06\\x1a\\n\\x01\\\\\\x03\\x01\\x05\\x01\\x04\\x03\\x06\\x06\\x03\\x02\\x05\\x02\\x04\\x01\\x04\\x01\\x04\\x05\\x05\\a\\x01\\x01\\x03\\x10\\x04\\x03\\x06\\x04\\x02\\x06\\v\\x01\\x01\\x04\\x02\\x02\\b\\b\\x02*\\n\\x03\\x06\\t\\x02\\b\\v\\t\\t\\t\\x01\\x02\\v\\x03\\x03\\x02\\x0e\\x02\\x03\\x06\\x02\\x0f\\x04\\x15\\x02\\a\\x03\\x03\\x06\\x01\\x06\\a/B\\x1b\\x01%=A\\x15\\x02\\b\\x02\\x1d=\\b\\v\\v\\x01\\x05\\x04\\f+\\x02\\x0e\\x04\\x10\\r$\\t*\\x05\\x1d\\n\\x03\\x04\\x18\\r\\x1f\\n;\\f\\x12\\x1b\\r\\x06\\a\\a\\x13\\x18\\x06\\x01\\x02\\x03\\x01\\n\\x1e!\\x19\\b^+\\rXF\\tD\\x05;\\b\\x02\\x03\\x05\\b\\a\\x05\\x02\\x06\\x047\\x05\\b%+\\x06\\x04\\x1b\\x02\\x15\\x01P\\t\\x10\\x13\\x15\\t'\\x01\\x01\\x1f/#b\\t\\x02\\b(&\\x11\\f\\v\\x02|\\x1f2=;\\x1b\\x10\\x03\\n(P@(\\x0e\\b\\x04\\x01\\x0e\\xaa\\x10\\x10\\x03\\x0f\\n\\x18\\x01\\x017\\x02\\f\\r\\x02\\x02\\r\\r\\x18\\x01\\x06\\x04\\v\\x01\\x01\\x00\\x00\\x02\\x00\\x17\\xff\\xc0\\x02)\\x01\\xc0\\x00\\a\\x00\\r\\x00\\x00%\\v\\x01'\\x1b\\x0173\\x05\\x1b\\x01#\\x03\\a\\x01\\xd1\\xce\\xcc \\xec\\xce7 \\xfeF\\x96\\xec!\\xcbv'\\x01a\\xfe\\xa0\\x01\\x01\\x97\\xfe\\x9e_j\\x01\\x02\\xfek\\x01]\\xca\\x00\\x00\\x00\\x00\\x1a\\x00\\x02\\xff\\xbf\\x02A\\x01\\xc8\\x00\\t\\x00\\x13\\x002\\x00N\\x00e\\x00m\\x00\\x82\\x00\\x85\\x00\\x99\\x00\\xb6\\x00\\xc2\\x00\\xca\\x00\\xe1\\x00\\xe9\\x00\\xfa\\x01\\x02\\x01\\f\\x01Q\\x01l\\x01\\u007f\\x01\\xe2\\x01\\xf9\\x02\\x03\\x02\\r\\x020\\x02:\\x00\\x00?\\x01'37\\x173\\a\\x17'\\x177'37\\x173\\a\\x17'\\a2\\x16\\x15\\x14#\\\"=\\x01432\\x15\\x14+\\x01\\\"54\\\"\\x1d\\x01\\x142545<\\x0163\\a2\\x1d\\x01\\x14+\\x01\\\"=\\x014\\x1732\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15'\\x17\\x16+\\x01\\\"5'#\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14'54+\\x01\\x15327\\x17\\x16+\\x01\\\"5'#\\a\\x14+\\x02\\\"?\\x014;\\x012\\a3'\\x17\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x172\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x02\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15'2\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\x1754\\\"\\x1d\\x01\\x142'\\x17\\x16+\\x01\\\"5'#\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14'2=\\x014+\\x01\\x1572\\x1d\\x01\\x14+\\x01\\x153\\x14+\\x01\\\"=\\x0143\\x1754+\\x01\\x1532\\a3\\a\\x17'\\a7'3?\\x01\\x1e\\x01\\x0e\\x01\\a\\x16\\a\\x06#\\\"&'&'\\x06\\x16\\x17\\x1e\\x02>\\x017\\x16\\x17\\x0e\\x03&'.\\x017.\\x035467&7632\\x16\\x17\\x16\\x176&'.\\x01\\\"\\x0e\\x01\\a&'>\\x01\\x1e\\x01\\a\\x16%\\x0e\\x02\\x14\\x1e\\x0416767\\x16\\x17\\x06\\a632\\x17.\\x01#\\\"\\x016'\\x06\\a\\x06\\a&'67\\x06#\\\"'\\x1e\\x0132767>\\x02.\\x01'&'\\x06\\a\\x06\\a&'67&'\\x16\\x17\\x06\\a.\\x03'&#\\\"\\a\\x06\\a\\x06\\a&'67\\x06\\a\\x16\\x17\\x06\\a&#&'\\x0e\\x02\\x16\\x17670327\\x163\\x06\\a\\x16\\x17&'27\\x16\\x17\\x16\\x17\\x163276727\\x16\\x17\\x06\\a67&'675\\x163\\x16'32\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x142=\\x0143\\a3\\a\\x17'\\a7'37\\a\\x17\\a\\x17'\\a7'?\\x022\\x1d\\x02\\x14+\\x01\\\"=\\x024;\\x022\\x1d\\x011\\x14+\\x02\\x15;\\x012\\x1d\\x01\\x14+\\x02\\x157\\x173\\a\\x17'\\a7'3\\xfb\\x02\\x06\\a\\x02\\x03\\a\\x06\\x02\\x06:\\x02\\x06\\b\\x02\\x02\\b\\x06\\x02\\x06a\\x03\\x01\\x11\\x11\\x11\\x11\\x04\\x03\\x04\\f\\f\\x02\\x02N\\x04\\x04\\x16\\x03\\x03\\x16\\x04\\x04\\x0e\\v\\x04\\x04\\v\\x1c\\b\\x02\\x05\\x03\\x04\\b\\x05\\x04\\x04\\x03\\x03\\x0e\\x11\\f\\x06\\x05\\x05\\x06P\\v\\x01\\x04\\x04\\x04\\x02\\f\\x02\\x03\\x01\\x03\\x04\\x01\\v\\x04\\a\\x04\\f\\t\\x05U\\x04\\x03\\x04\\a\\x04\\x04\\x19\\x04\\x04\\a\\xf8\\x02\\x02\\x17\\x02\\x02\\x17\\x02\\x02\\x13\\x10\\x02\\x02\\x10J\\x0f\\x0f\\x01\\x0f\\x0f\\v\\x15\\x15.\\n\\x01\\x02\\x02\\x02\\v\\v\\x02\\x01\\x02\\x02\\x0e\\x0f\\x10\\v\\v\\n`\\x0f\\x0f\\v\\x01\\x02\\x02\\x02\\x02\\x18\\n\\n\\n\\n\\xc9\\a\\x06\\x02\\x06\\x06\\x03\\x06\\a\\x02\\xe6--\\a=8\\x19\\x19\\x0f \\\"b2-(\\x0e\\v\\x13\\x02\\x05\\x17\\x19*\\x17\\x06\\x05\\x13#\\x1d\\x1a\\x15\\t\\x18\\r\\x0f\\x0e\\x1c1\\x1fA7\\x18\\x18\\x10 \\\"a3+*\\r\\n\\x13\\x03\\a\\x16\\x19)\\x17\\x05\\x05(I3\\v\\x0e\\x12\\xfe\\xb2\\x04\\x04\\x02\\x02\\x02\\x03\\x02\\x02*+\\x17\\x1b\\x05\\x05\\x16\\x14\\x1b\\x1b\\x14\\x14.X\\x1d\\x18\\x01&\\x15\\x16%0\\x17\\x1c\\x05\\x05\\x17\\x13\\x1a\\x1b\\x14\\x14-X\\x1e\\x17\\x15T\\x16\\x02\\x02\\x01\\f$\\x1e\\x11\\x12\\x05\\a\\x06\\x03\\x03\\x04\\b\\x06 (\\x12\\x11\\a\\x04\\x04\\b\\x05\\x0f\\n\\x19\\x19 \\x1f\\x12\\x11\\x06\\x04\\x01\\x05\\x0f\\x12( \\x06\\t\\x01\\x01\\x05\\n\\a\\x054:\\x049:\\x06\\a\\x01\\x03\\x03\\x02\\x06\\b\\x06$$\\x11\\x10\\b\\x04\\x02\\x01\\x11\\x14\\x19\\x19\\x1f\\x1f\\x12\\x10\\a\\x04\\x03\\x03\\x0f\\x11$$\\x06\\t\\x03\\x03\\x03\\a\\am\\x01\\x02\\x0f\\x01\\x0f\\x02\\x01\\x02\\x14\\x02\\f\\a\\x06\\x02\\x06\\x05\\x02\\x06\\a\\x02\\x1c\\a\\x06\\x02\\x06\\x05\\x02\\x06\\a\\x02\\b\\x02\\x02\\x17\\x02\\x02\\x16\\x01\\x01\\x01\\x01\\x13\\x10\\x01\\x01\\x01\\x01\\x10\\f\\x03\\a\\x06\\x02\\x06\\x05\\x02\\x06\\a\\xec\\a\\x04\\a\\a\\x04\\a\\x04\\x04\\a\\x04\\a\\a\\x04\\a\\x046\\x04\\n\\x0e\\x0e(\\x0e\\x0e\\f\\n\\x06\\x06$\\x06\\x06\\x01\\x02\\x04\\x03\\x02\\x12\\x03\\x03\\x03\\x03<\\x04\\x01\\x03\\x03\\x03\\x13\\x03\\x03\\x03\\x14\\x13\\x18\\x04\\x03\\x17\\x17\\x03\\x03;\\x04\\x0e\\f\\t\\v\\t\\x06\\x15\\x1b;\\x04\\x03\\f\\f\\x03\\x04;\\x03*\\x1d2\\x03\\x036\\x04\\x02\\x03\\x03\\x02\\x045\\x02\\x01\\x01\\x01@\\x01\\x01\\x01\\x01\\x01\\x1a\\x02\\x01\\x02\\x1b?\\x0e(\\x0e\\x0e(\\x0e4$\\f\\f$\\v\\x19\\x1b\\x02\\x01\\x1b\\x1b\\x01\\x01@\\x01\\x0e\\t\\v\\x01\\v\\a\\v\\x1d!\\x0e\\n\\x0e\\x1b\\x01\\x01@\\x01\\x17\\b\\v\\x1e3\\x04\\a\\x04\\x04\\a\\x04\\a\\x81\\x1100/\\x10[+\\x1cHF\\x04\\t?@\\v\\x01\\x03\\x01\\t\\x1b\\x16\\x05\\x05\\x12\\x1a\\x0e\\x05\\x03\\x05\\x0eN>\\x03\\v\\x16$\\x14\\x1e2\\x0f[+\\x1cGG\\x04\\t>A\\v\\x01\\x03\\b\\x1b\\x16\\x05\\x05'\\x1e\\x1cQ;\\x04\\x80\\x06\\x11\\x11\\x13\\x11\\x10\\x0e\\n\\a\\v\\x04\\\"\\x1e\\x05\\x05\\x19\\x1c\\x02\\x01>@\\xfe6'T\\n\\x05\\\"\\x1e\\x05\\x05\\x19\\x1c\\x02\\x01>@\\x9e\\x18'\\x04\\x06\\x17\\x13\\x1b\\v\\a\\x04\\x13\\x14\\x01\\x05\\x03\\x02\\x16\\x16\\b\\x04\\x1b\\x1d\\x02\\x05\\x05\\v\\n\\x17\\x0f\\x02\\x03\\x1a\\x1f\\x02\\x06\\x05\\x03\\x1c\\x1b\\x04\\t\\x15\\x16\\x01\\x01\\x05\\x11\\x13\\x0f+--\\x10\\x14\\x14\\x01\\x01\\x16\\x15\\b\\x04\\x1a\\x1d\\x03\\x01\\x01\\x1e\\x1b\\x02\\x03\\x1a\\x1d\\x04\\x02\\x01\\x1d\\x19\\x04\\t\\x15\\x15\\x01\\x02\\x01\\x06\\x12_\\x014\\x0e\\x0e4\\x01\\x012\\v\\v2\\x01U\\x04\\a\\x04\\x04\\a\\x04\\a\\x0e\\x01\\x04\\a\\x04\\x04\\a\\x04\\x01\\x06\\x18\\x01\\x01\\x01\\x01\\x01?\\x01\\x01\\x01\\x01\\x02\\x1a\\x02\\x01\\x02\\x1bd\\a\\x04\\a\\x04\\x04\\a\\x04\\x00\\x00\\x03\\x00\\x19\\x00\\x00\\x01\\xe7\\x01\\x80\\x00\\x02\\x00\\x05\\x00\\n\\x00\\x00\\x013\\x11\\x01\\x03\\x11\\x1f\\x01#'#\\x01<\\xaa\\xfeު\\xe6lJ\\x1eO\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\x8e\\xf2M\\x00\\x00\\x00\\x00\\x03\\x00\\x02\\xff\\xe0\\x02\\b\\x01\\xa0\\x00\\x06\\x00\\x0f\\x00\\x12\\x00\\x007!\\x17!\\\"&'%\\x16\\x0f\\x01\\x0132\\x16\\x17\\a#7\\x02\\x01;;\\xfe\\xe3\\r\\x1b\\x06\\x01\\xc9\\x11\\x13)\\xfe\\xffX\\r\\x1b\\x06=\\xe7tGg\\x11\\vf\\x1b G\\x01\\xc0\\x10\\v\\xf5\\xc8\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xbf\\x02\\x03\\x01\\xc1\\x00\\f\\x00\\x1f\\x00\\x007\\x1e\\x01\\a\\x06+\\x01\\\"&?\\x01>\\x01762\\x17\\x13\\x16\\x06+\\x01\\\"'.\\x05>\\x01\\x982\\x1e\\x1d\\x04\\t\\xaf\\b\\t\\x04}\\x04\\x0fb\\x06\\x10\\x04\\xf0\\x04\\t\\b\\xae\\t\\x05\\t'\\x15\\x1f\\f\\t\\t\\x19\\xd46\\x9b;\\b\\x0e\\b\\xfb\\b\\x01\\xde\\b\\b\\xfe\\x1e\\b\\x0e\\b\\x12J*H3G<I\\x00\\x00\\x00\\x01\\x00\\x17\\xff\\xc0\\x01\\xe9\\x01\\xc0\\x00?\\x00\\x00%\\x0e\\x01\\x1f\\x01&'&\\x15\\x17#654\\x0f\\x01676&/\\x0176/\\x01\\x16\\x17\\x16?\\x01\\x16\\x17\\x166/\\x01\\x16\\x17\\x16?\\x01\\x16\\x17\\x16?\\x01\\x06\\x15\\x06\\x16?\\x01\\x16\\x17\\x16?\\x01\\x06\\a\\x06\\x1f\\x01\\x06\\x01\\x80\\x06\\x01\\x02\\n_\\n\\x13\\x06\\x1e\\x06\\x13i\\x05\\x05\\x02\\x01\\x06i\\x11\\v\\x05\\x150\\n\\b\\x05\\x0f4\\x03\\a\\f\\x02\\x1b\\x1e\\n\\v\\x06+&\\x05\\x06\\v(\\x1b\\x02\\f\\a7\\r\\x02\\x05\\b:\\x12\\x03\\x05\\v\\x11g`\\x05\\x04\\r#\\x14\\x02\\x02\\x0eqg\\n\\x0e\\x02\\x16\\x14\\x0f\\r\\x04\\x05]\\a\\x05\\rC\\n\\x03\\x02\\n <\\x02\\x05\\a\\b\\x82\\x12\\x05\\a\\fPH\\b\\f\\a\\x17x\\n\\b\\a\\x05>\\x1b\\x05\\n\\x02\\r<\\a\\r\\x05\\aZ\\x00\\x00\\x00\\x10\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1b\\x00#\\x00+\\x003\\x007\\x00;\\x00C\\x00G\\x00K\\x00O\\x00W\\x00_\\x00\\x00\\x01\\x17\\a5\\a73\\x15'7\\x17#\\x15\\a'5\\x0f\\x01#\\x15'7\\x153?\\x01\\x17\\x15\\x17\\a5#'735%53\\a\\x17\\x15#'%\\x15'\\a#57'\\x03#'7'57\\x1f\\x01\\x15#7'53\\x177\\x15\\a'\\x17\\a#5\\a'53\\x17\\a'357\\x17\\x15'\\x17#5\\x1773\\x15\\x01\\\"\\x1fLv -#78-\\v\\v\\x12\\v\\x8088\\x80ZL B8\\x80\\n\\n\\x80\\xfe\\xb9P [\\x10Z\\x01\\x1c Z\\x0fZ\\x1fd- M\\x8b!L\\xd0N\\x1fZ\\x0fZ  L/\\x1f-\\x93!mj87,\\v\\vz P!Z\\x10\\x01^\\x1fMl\\x1f\\x1flv88\\x80\\n\\n\\x80\\xa8\\n-78-\\nM -\\x157-\\n\\v-\\x18N\\x1f[\\x0f[.N [\\x0f[\\x1f\\xfe\\xc4 LG- MdO Z\\x10[[- Mj l/ -\\x9477\\x80\\v\\v\\x80* O [\\x10\\x00\\x00\\x00\\x00\\x02\\xff\\xfa\\xff\\xc3\\x02\\x06\\x01\\xbd\\x00#\\x00F\\x00\\x00767>\\x05\\x16\\x17\\x16\\x17\\x1e\\x01\\x0f\\x01\\x15\\x0e\\x01'&'.\\x04\\x0e\\x02\\a\\x06/\\x01&\\x01\\x06\\a\\x0e\\x04\\\"&'&'.\\x01?\\x01>\\x01\\x17\\x16\\x17\\x1e\\x02>\\x027076\\x1f\\x01\\x16\\x02\\x03\\x05\\x0e\\x11($<?W073\\x06\\x05\\x032\\x03\\r\\x06\\r\\x17'\\\"4\\x13!\\x0e\\x18\\x11\\r\\b\\x0ej\\x0e\\x02\\x04\\x03\\x05\\r\\x12($<?W119\\x06\\x04\\x023\\x03\\r\\x06\\r\\x183):\\x15\\\"\\x15\\x11\\x01\\t\\rj\\x0e$\\x04\\b\\x16\\x1a.\\x19\\x18\\x01\\x14\\x18\\x1a\\x18\\x03\\f\\x06r\\x01\\x06\\x04\\x03\\x06\\v\\x13\\x10\\x14\\x04\\x01\\n\\x14\\x1b\\x15\\x0e\\bB\\b\\x01F\\x04\\b\\x16\\x1a.\\x19\\x19\\x14\\x17\\x18\\x1a\\x03\\r\\x06r\\x06\\x05\\x03\\x06\\f\\x18\\x14\\x12\\x04\\x11\\x1f\\x1d\\x01\\r\\tA\\b\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x92\\x02\\x80\\x00\\xee\\x00\\x03\\x00\\a\\x00\\x13\\x00\\x17\\x00\\x1b\\x00+\\x00/\\x004\\x008\\x00<\\x00@\\x00H\\x00O\\x00\\x00?\\x013\\a%3\\a#73\\x06+\\x01732\\a\\x06\\a\\x06%#73\\x05\\a#576+\\x01732\\x16\\x0f\\x01#\\\"7>\\x02\\a53\\a3613\\a373\\x15'3\\x15#\\a73\\x15'3\\a#73\\a3\\x173\\a#\\\"&7\\xee\\x16;\\x16\\xfe\\xd7V\\x04R\\xadD\\x16#d)3\\a\\x04\\x01\\n\\x04\\x01F>(>\\xfeM\\x04[\\xce\\x05\\ap\\x15u\\x15\\x10\\a\\x0e-\\t\\x04\\x01\\x04\\x04\\xcdN\\x05\\xfa\\x16;\\x16\\xa3\\x05ZIIM\\t\\x04R\\xfa:'\\x90(:\\x16\\x1a8\\x85\\x16^\\x11\\r\\a\\x93\\x1e\\x1e\\x12\\x06\\x12\\x1e7\\x05\\x01\\x0e\\x05\\a5<\\x06\\x06\\x1b\\x06\\x1b\\x19\\n\\x12\\x05\\x02\\x05\\x067\\x06\\x06\\x1e\\x1e\\x06\\x06\\x1e\\x06\\f\\x06\\x06N55\\x1e\\x1e\\x1e\\x0e\\a\\x00\\x00\\x00\\x00\\x01\\x00\\x18\\xff\\xdf\\x01\\xe8\\x01\\xa1\\x00.\\x00\\x007\\\"\\x061\\\"&5064.\\x01'&>\\x01\\x1e\\x0112506162\\x1e\\x0232>\\x011\\x1e\\x010\\x06\\a0\\x16\\x150\\x06#0&\\xfc\\x01X\\x01VWAG\\x02\\x01 \\x01HI\\x01\\x02\\x01g\\x02\\x02\\x02\\x01\\x01EE\\x01\\x1f\\x8c\\x01SV\\x01Y]w<\\x01~\\x02\\x16\\x17\\x01\\x01e\\x01\\x18\\x18\\x02\\x95\\x01\\x01NN\\x18\\x17\\x01f0\\x01z\\x01?}\\x00\\x00\\x06\\x00\\x00\\x00Z\\x02\\x80\\x01 \\x004\\x008\\x00?\\x00K\\x00R\\x00^\\x00\\x00%\\x17#'\\a#5#\\x06#\\\"&'#\\x14\\x1673\\x0e\\x01&547#\\x15#53\\x15#\\x153\\x15>\\x01\\x16\\x17>\\x0132\\x17353\\x15#\\x153\\x1773\\x053.\\x01\\x1626&#\\\"\\x06\\x175#535#535#\\x1573\\x157'\\x15#\\x1f\\x013'7#\\a'#\\x17\\a3\\x02J6@\\x17\\x16\\xd4\\x01\\f\\x16\\x18\\\"\\x02V#\\v*\\r@5\\x0211m<7\\f32\\t\\x06\\x1e\\x15\\x16\\r\\x01\\x978w\\x16\\x16>\\xfe\\f/\\x04&\\x84!\\r\\x0e\\x0f\\x10\\x0e\\xc58878_18228\\x8a\\x1b(.-&\\x1a\\x1a(..&\\xa4=\\x19\\x19\\f\\x13\\\"\\x17\\x12\\f\\x10!\\x10%#\\n\\bM\\xb8)\\x1a\\x18\\x15\\x10\\x17\\x1c\\x14\\x19\\x0fL1\\x10\\x18\\x18+\\x13\\x01E \\x1f\\x1f3\\x1e,\\x1c\\\"\\x1f\\xa7(.99,\\\"\\x1e42\\x1d\\x1d33\\x00\\x00\\x00\\x00\\x16\\xff\\xff\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\v\\x00\\x12\\x00\\x18\\x00\\x1d\\x00$\\x00*\\x000\\x006\\x00<\\x00B\\x00I\\x00O\\x00U\\x00\\x89\\x00\\x8e\\x00\\x95\\x00\\x9b\\x00\\xa1\\x00\\xa7\\x00\\xad\\x00\\xb3\\x00\\xb9\\x00\\x00\\x122\\x16\\x0e\\x01+\\x01\\\"&=\\x016\\x054/\\x01\\x15\\x14\\a'\\x16\\x1f\\x01.\\x01\\a\\x06\\a\\x176'\\x06\\a\\x17&57'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x17&5\\a\\x14\\x1f\\x01547'\\x1e\\x01\\x17&/\\x01\\x1767'\\x06726&+\\x01\\\"=\\x0146\\x17\\x16>\\x0154&'&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x16;\\x012\\x16\\x1d\\x01\\x14\\x06#\\\"&#\\x0e\\x01\\x15\\x14\\x163\\x166=\\x01367'\\x06\\x1767'\\x16\\x17\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x14\\a\\x17'\\x16\\x1f\\x016765'\\x06\\a\\x84\\xba\\x83\\x01\\x83]\\xaa\\x17\\x1f\\x01\\x01\\x8a\\x037\\x04\\x02\\x03\\x017\\a\\\"\\xe7\\b\\b\\b\\x03\\x10\\a\\a\\x1b\\x02\\x01\\x1e\\x06\\x05#\\a\\a5\\x06\\x04\\\"\\x05\\x061\\x05\\x03$\\x03\\x04.\\x03\\x03'\\x01\\x03.\\x02\\x024\\x061\\x037\\x038\\x06\\\"\\x12\\x03\\x01;@\\x04\\x06H\\x02\\xfd\\x0f\\r\\r\\x0f\\\"\\b+\\x17\\a\\x0e\\t\\v\\t\\n\\n\\x01+>*\\x10\\r\\r\\x10!\\x03\\x06!\\x17\\x05\\b\\x03\\n\\x0e\\x0e\\x06.OB\\t\\b\\t\\x03\\x10\\b\\x06\\x1b\\x02\\x01\\x01\\x1d\\x06\\x06$\\x05\\t6\\x05\\x05#\\x05\\x050\\x05\\x04$\\x03\\x05.\\x04\\x03(\\x0326\\a\\x01)\\x03\\x03\\x02@\\x04\\x06\\x01\\xa0\\x84\\xb9\\x83 \\x16\\xab\\\\\\x1a\\v\\v8\\x01\\a\\b!\\x04\\x066\\x13%\\x91\\x01\\x02\\t\\a\\x01\\x02\\x04\\x1b\\x06\\a\\b\\x04\\x03\\x04$\\x03\\x02\\x1c\\x04\\x05#\\x05\\x04\\x17\\x06\\x04$\\x06\\x05\\x15\\x06\\x06(\\b\\a\\x14\\x06\\b6\\r\\x0e\\x01\\f\\n8\\x01\\b\\x06 \\x13%\\b\\x04\\x05\\\\@\\x05\\x03I\\t,\\x18\\x19\\t/\\x1d\\x1f\\x05\\x02\\x06\\f\\b\\t\\x0e\\x01\\x02=,8\\x18\\x19\\x06\\x03/\\x17!\\x02\\x01\\x0e\\n\\n\\x0e\\n>38\\x01\\x02\\b\\x06\\x01\\x02\\x03\\x1c\\x06\\a\\b\\x04\\x03\\x04$\\x03\\x02\\x1d\\x05\\x04#\\x05\\x03\\x17\\x05\\x05$\\x06\\x05\\x15\\x06\\x06(\\b\\b\\x055\\f\\x0e*\\b\\f\\t\\bA\\x06\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x14\\xff\\xc0\\x01k\\x01\\xc0\\x00\\x1c\\x00$\\x00\\x00\\x01#\\x11\\x14\\x06\\\"&463\\\"&463\\\".\\x01546;\\x012\\x16\\x15\\x14\\x0e\\x01\\\"2\\x16\\x14\\x06\\\"&4\\x01\\x15U2G22##22#\\x17'\\x172#\\xab#2\\x17':F22F2\\x01\\x15\\xff\\x00#22G22F2\\x17(\\x17#22#\\x18'\\x172F22F\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00A\\x00I\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x15\\x142=\\x014\\\"\\a\\x15\\x142=\\x014\\\"\\a\\x15\\x142=\\x014\\\"\\a\\x15\\x142=\\x014\\\"\\x05>\\x01.\\x01\\\"\\a\\x06\\\"'&\\\"\\x0e\\x01\\x16\\x17\\x166754\\\"\\x1d\\x01\\x142\\x01\\x88\\x17!!\\x17\\xfe\\xb0\\x17!!\\x17\\xe4\\x1e\\x1eK\\x1e\\x1eK\\x1e\\x1eJ\\x1e\\x1e\\x01C\\x04\\x02\\x04\\a\\n\\x040\\xb62\\x04\\n\\a\\x04\\x02\\x04:\\xcd<\\x1e\\x1e\\x01\\xa0!\\x17\\xfe\\xb0\\x17!!\\x17\\x01P\\x17!R\\xc8\\x0e\\x0e\\xc8\\x0f\\b\\xd8\\x0f\\x0f\\xd8\\x0f\\x16\\xc8\\x0e\\x0e\\xc8\\x0f-\\x86\\x0f\\x0f\\x86\\x0f\\xf3\\x04\\n\\a\\x06\\x04))\\x04\\x06\\a\\n\\x040\\x01\\x8d\\x86\\x0f\\x0f\\x86\\x0f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00N\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x174&\\x06\\x15\\x14\\x1632>\\x01\\x1727'\\x06#&5676.\\x02\\x06\\a7#\\a3\\a\\x06\\a\\x06547#\\a3\\x06\\a\\x14\\x1667\\a37676\\x17\\x16\\a\\x0e\\x03\\x1e\\x02\\x01\\x97\\x11\\x18\\x18\\x11\\xfe\\x92\\x11\\x18\\x18\\x11\\x87\\x1b\\x1b\\x10\\f\\x03\\v\\f\\x9d&\\x0f\\x12\\v\\f\\t\\x01\\x0e\\a\\a\\x1a\\x1e\\\"\\f\\tD\\n \\x14\\r\\x1a\\x12!M\\t \\x17\\x01\\\".\\x0f\\b-\\x1a\\t\\x19\\x15\\x06\\x03\\x04\\x01\\b\\x03\\x05\\x03\\a\\x12\\x01\\xa0\\x18\\x11\\xfe\\x92\\x11\\x18\\x18\\x11\\x01n\\x11\\x18r\\x11\\r\\r\\x11\\v\\x10\\x03\\x0e\\xdd4\\a\\x1e\\x01\\f\\x065\\x19&\\x12\\x01\\x17\\x15($O\\x1e\\x04\\x03\\x0e\\b\\x82$]\\v\\x17\\x16\\x10\\x19 g$\\x04\\x03\\x14\\n\\f\\x03\\x1a\\x0e\\x19\\x0f\\x10\\b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xf0\\x01\\xc0\\x00\\x11\\x00\\x15\\x00\\x00%\\x16\\x14\\x0f\\x01?\\x02\\a&'&4767\\x1e\\x01\\a7'\\a\\x01\\xea\\x06\\x06I\\x01\\x01\\x01\\xac\\x1c\\xd6\\x06\\x06M\\xa5&\\xaa\\xd0LLL\\xce\\x06\\x10\\x06J\\x01\\x01\\x02\\xac\\x1d\\xd5\\x06\\x10\\x06M\\xa5&\\xaa|LLL\\x00\\x02\\xff\\xfd\\x00\\n\\x02\\x82\\x01s\\x00C\\x00R\\x00\\x00%\\x16\\x06\\a\\x0e\\x01.\\x01'&76'&\\a\\x06\\x17\\x14\\x17\\x15\\x16\\x06'\\x06&756'&\\a\\x06\\x17\\x16\\x15\\x16\\x06'.\\x01676\\x17>\\x01'&63\\x1e\\x0332>\\x0372\\x16\\a\\x06\\x16\\x176\\x052654&+\\x01\\\"\\x06\\x15\\x14\\x1e\\x013\\x02q\\x10\\x02\\x0e\\x0e#\\x1f\\x18\\x01\\x02\\a\\x171+-1\\x10\\x01\\x14(''(\\x15\\x121+,1\\x13\\x01\\x10)$\\x1c\\x1c\\x03\\v\\x19\\x1c\\x1f\\x10\\n\\x1255\\x19)\\x14\\x1d\\x0f\\x0e\\x16\\x13\\x15\\\"\\x1555\\x12\\v\\x11\\x1f\\x1d\\xfe\\xe4\\x1d\\\"%\\x1a\\x01\\x1a%\\r\\x1e\\x14{\\x12;\\f\\x0e\\b\\n\\x1c\\x14\\x11\\x100\\x16\\x13\\x10\\x12,\\x02\\x01\\x01\\x1fA\\x01\\x01@ \\x01-\\x13\\x11\\x12\\x15/\\x02\\x01\\\";\\x05\\x03,-\\v\\x19\\x03\\x0120-V\\x01\\x19\\x1f\\x19\\x10\\x18\\x18\\x11\\x01V-02\\x01\\x03\\x01(\\x17\\x1a%%\\x1a\\x0e\\x1c\\x15\\x00\\x00\\x00\\x0e\\xff\\xfe\\xff\\xc0\\x01\\x99\\x01\\xc2\\x00l\\x00t\\x00|\\x00\\xc6\\x00\\xd2\\x01\\x19\\x01 \\x01*\\x016\\x01>\\x01K\\x01W\\x01c\\x01m\\x00\\x00%\\x1e\\x01\\x06\\a\\x06\\a\\x0e\\x01\\a\\x06\\a\\x06+\\x01\\\"'&'.\\x01'&'.\\x016?\\x014>\\x017&'&'&7&7&7&7&6\\x17636\\x176\\x17632\\x1e\\x01362\\x16\\x176\\x173\\x16\\x17673076\\x17462\\x172>\\x01\\x16\\x176\\x176\\x172\\x176\\x16\\a\\x16\\a\\x16\\a\\x16\\a\\x16\\a\\x06\\a\\x06\\a\\x1e\\x01\\x15'6.\\x01\\a\\x06\\x17\\x16\\x06>\\x01.\\x01\\x0e\\x01\\x16\\x03\\x0e\\x01\\x16\\x1767\\x06\\a\\x1e\\x037&'>\\x017&'67\\\"'67&'67\\x06'67\\x06'467\\x06'67\\\"#\\\"57&\\a&7\\x06\\a&461\\x06\\a&7\\x06\\a&7\\x06\\a&5\\x06\\a&\\a&\\x06\\x15\\x14\\x16\\x172656&'\\x1e\\x01\\x17\\x06\\a\\x16>\\x017&'\\x16\\x17>\\x01&'\\x06\\a&'\\x14\\a&'\\x16\\a&'\\x16\\a&'0\\x16\\x06\\x15&'\\x16\\a&\\a\\x17\\x16#\\x16\\x17\\x06'\\x1e\\x01\\x17\\x06'\\x16\\x17\\x06'\\x16\\x17\\x06\\a\\x16\\x17\\x06#\\x16\\x17\\x06\\x17&\\x06\\x17\\x1676\\a\\x1676'&\\a\\x0e\\x01\\x16\\x176&'.\\x01\\a\\x06\\x14\\x17\\x1e\\x01&\\x16>\\x01.\\x01\\x0e\\x01\\x1726'4&\\a&\\x06\\x15\\x14\\x1e\\x01754&\\\"\\x06\\x1d\\x01\\x14\\x1626\\x176&'&\\a\\x0e\\x01\\x17\\x1e\\x0167>\\x01&'&\\a\\x06\\x17\\x16\\x01t\\x0f\\x15\\x03\\x13\\x01\\n\\x04%\\x0e\\x1b\\x19\\x1c$\\x01$\\x1c\\x19\\x1c\\r%\\x04\\n\\x01\\x13\\x03\\x15\\x0f\\x04\\x0e\\x12\\x0e\\x0f\\x02\\x0f\\x02\\x0f\\x01\\v\\x03\\n\\x04\\b\\a\\x05\\t\\f\\x06\\x13\\x04\\f\\b\\x0f\\x04\\x04\\x02\\x05\\x06\\x01\\a\\x04\\a\\x02\\v\\v\\x06\\x16\\n\\t\\x16\\a\\x01\\t\\f\\t\\x03\\a\\x01\\b\\x04\\x06\\x04\\x0e\\b\\v\\x05\\x13\\x05\\r\\t\\x05\\a\\b\\x04\\n\\x03\\v\\x01\\x0f\\x02\\x0f\\x02\\x0f\\x16\\x18\\x12\\x01\\x17%\\x17\\f+/:%\\x06\\x1d.$\\x06\\x1c\\x03\\n\\x0e\\x02\\x10)=D\\x1a\\x03\\x11\\x16\\x10\\b\\x06\\x01\\x02\\x14\\x05\\x05\\x02\\x14\\x04\\x06\\x04\\x14\\x04\\t\\x01\\v\\b\\b\\x02\\x0f\\x01\\b\\x03\\f\\x02\\t\\x01\\x02\\a\\x02\\a\\x0f\\x06\\t\\x11\\x03\\a\\f\\n\\x01\\x06\\r\\n\\x03\\x05\\t\\n\\x04\\x03\\n\\x06\\x02\\x03\\x0e\\x02$\\x13\\\"\\x1e\\x18\\x18\\x1d\\x01$\\x8d\\x05\\x14\\x02\\x01\\x06\\v\\x17\\x1c\\x03\\x19D=)\\x0f\\x03\\x0f\\t\\x02\\x01\\x0e\\x03\\x02\\x06\\n\\x03\\x04\\v\\t\\x06\\x03\\v\\f\\x06\\x01\\n\\f\\a\\x03\\x11\\n\\x06\\x01\\x19\\b\\x02\\x01\\n\\x03\\v\\x01\\x04\\a\\x01\\x0f\\x03\\a\\b\\v\\x01\\t\\x04\\x13\\x03\\a\\x05\\x14\\x027#1\\x02\\x01.+p\\t\\a\\x0f\\x06\\x04\\b\\x15\\x0e\\ng\\n\\a\\r\\x10!\\f\\t\\v\\x10-%%.\\x1d\\x06%.\\x1c~\\x14&\\x01%\\x13\\x13(\\x10\\x1cI#1\\\"#1\\\"R\\r\\x02\\t\\x15&\\x0e\\v\\n\\b\\x16\\x1e#\\f\\n\\x0e\\x15\\b\\x03\\b\\x0f\\t\\xd8\\n%2\\x15\\b\\x1c\\x1d$\\x03\\x15\\t\\x1c\\x1c\\t\\x15\\x03$\\x1d\\x1c\\b\\x152%\\n\\x06\\x16 \\x11\\t\\x04\\t\\x04\\f\\n\\t\\b\\n\\v\\t\\n\\v\\b\\x0e\\x01\\b\\x06\\x02\\b\\x05\\x03\\x01\\x03\\x01\\x04\\x01\\x02\\n\\r\\x1f\\x1f\\r\\x01\\n\\x03\\x01\\x04\\x01\\x03\\x01\\x01\\x02\\x05\\b\\x02\\x06\\b\\x01\\x0e\\b\\v\\n\\t\\v\\n\\b\\t\\n\\f\\x04\\t\\x04\\r# \\x02\\x17\\\"\\x0e\\x04\\x02%'^\\x17/+\\r\\x18/*\\x01\\x1f\\n\\x19\\x1e\\a!\\x14#\\x1b\\v\\x0f\\x05\\x02\\x01\\x02\\x03\\x01\\x02\\x03\\x01\\x03\\x06\\x04\\x02\\n\\x04\\x01\\x01\\a\\b\\x01\\x02\\x0f\\x02\\x03\\x03\\x02\\t\\x06\\x01\\x01\\b\\n\\x01\\x06\\x02\\x05\\x03\\x06\\x01\\x04\\x02\\x01\\x06\\x02\\a\\x03\\a\\x03\\t\\x05\\x04\\x05\\b\\x02\\a\\x02\\x0f\\x01l\\x01\\x17\\n\\v\\x12\\x01\\x10\\v\\r\\x16\\r\\x03\\x02\\x01\\x03\\x02\\x01\\x02\\x10\\x0f\\x1c\\\"\\x14!\\a\\x1e\\x19\\n\\a\\x01\\x0f\\x02\\a\\x02\\b\\x05\\x04\\x05\\t\\x03\\a\\x03\\a\\x02\\x06\\x01\\x02\\x03\\x02\\x06\\x03\\x05\\x02\\x06\\x01\\n\\b\\x01\\x01\\x06\\t\\x02\\x03\\x03\\x02\\x0f\\x02\\x01\\b\\a\\x01\\x01\\x04\\n\\x02\\x04\\x06\\x03\\x19\\x06&$\\x0e(%\\xb6\\x04\\x14% \\x0e\\x01\\v)$l\\b*\\x10\\x11\\x0f\\a\\x05'\\x13\\x17\\r\\x8b\\x17\\r+.\\x18\\r+\\xea\\x1a\\t\\t\\v\\x01\\x01\\x0e\\t\\x04\\x10\\r~\\x01\\x16\\x1f \\x16\\x01\\x16\\x1f \\x15\\x13-\\b\\x10*\\x10.\\n\\x04\\x02\\x10Y\\n$)\\f\\x02\\r\\x1f'\\x14\\x00\\x02\\x00\\x00\\xff\\xfe\\x02\\x00\\x01\\x82\\x00\\x1b\\x005\\x00\\x00%\\x15254'.\\x02'.\\x01#\\\"\\x06#\\\"&#\\\"\\a\\x06\\x15\\x14\\x1e\\x037\\x16\\x15\\x14\\x06#\\\".\\x01547\\x0e\\x03\\x15\\x14\\x1e\\x0132654&\\x01VR\\x15\\x03\\x06\\x11\\x10\\x16B\\f\\b\\x15\\n\\t\\x1f\\b\\x17\\f\\x1a\\x16*6I}\\x057+<p@\\x04\\x15\\x1e\\\"\\x13q\\xa9MSF,\\xa3\\x01/\\x05\\\\\\v\\v\\x0e\\b\\v\\x19\\x14\\x0f\\\"J\\x04\\b\\x1a\\x1d\\x1a\\x11\\x1e\\x16\\x05\\x1c\\x1f)9\\x19\\n\\t\\x01\\x05\\f\\x19\\x13)Y;;(\\x1a5\\x00\\x00\\x00\\b\\x00\\t\\xff\\xe0\\x01\\xf8\\x01\\xa0\\x00\\x03\\x00\\x06\\x00\\n\\x00\\x0e\\x00\\x11\\x00\\x16\\x00\\x1a\\x00\\x1e\\x00\\x00\\x137\\a#%\\x17'\\a\\x17\\x033?\\x01\\x1f\\x023\\x03\\x13\\x17#/\\x01\\x05?\\x01\\a\\x05\\x03/\\x01\\x1cN\\x06[\\x01\\x83\\a\\x87\\x9c{\\xe1[\\r\\x8e=Q\\x0eZ\\xe0\\x89XZ\\x06\\x01\\xfe\\xdc\\x02\\x81\\x88\\x01$\\x91f+\\x01\\x1ej\\x83\\x8d\\x85\\x93\\xba\\xf0\\x01\\x06\\t\\x9aBX\\t\\xfe\\xfa\\x01\\x85vq\\x12&0\\x0e\\x93\\x11\\xfe\\xe4\\xc9S\\x00\\x02\\x00\\x15\\xff\\xc0\\x01\\xac\\x01\\xc1\\x00\\x13\\x00\\x1e\\x00\\x00%\\x14\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x015462\\x16\\x05\\x14\\x1e\\x01>\\x0154&\\\"\\x06\\x01\\xabR;\\b\\x06`\\x06\\b;Rw\\xa8w\\xfe\\xf1\\x1c()\\x1c+3+\\xf5=q\\x13f\\x06\\b\\b\\x06f\\x13q=TwwT\\x1a#\\b\\b#\\x1a %%\\x00\\x04\\xff\\xfd\\x00\\x1e\\x02}\\x01b\\x00k\\x00w\\x00\\x88\\x00\\x8c\\x00\\x00\\x017\\x16\\x17\\x16\\x17\\x14\\a\\x0e\\x02&'\\x16\\x17\\x16367\\x17\\x06\\a\\x0e\\x02#\\\".\\x01\\x0e\\x01\\a\\x06\\x17#.\\x04#\\\"\\x06\\x16\\x17#.\\x02'&\\x06\\x17\\x1e\\x01676&'&\\x06\\x15\\x14\\x1e\\x0132>\\x0136\\x16\\x15\\x14\\a\\x06#\\\"&'47>\\x01\\x17\\x1e\\x01\\a\\x0e\\x02'&'&'&767>\\x03\\x17\\x16\\x1f\\x01\\x14\\x166&'0#\\\"\\x0e\\x0272\\x16\\x15\\x14#\\x14\\x06#\\\".\\x0154632\\x0624\\\"\\x01\\xd7\\x01[&\\x12\\x11\\x04\\r\\x13\\\"0\\x1f\\n\\x017\\x1b\\x19\\x19\\x04\\x04\\x03\\x03\\x134\\x1d\\n\\x1d\\x10\\x11\\t\\x02\\x04\\x171\\x02\\f\\t\\x10\\x18\\x10\\x18\\x17\\x02\\x02.\\t%&\\x1266\\x15\\n*&\\t\\x0f\\x13\\x18\\n\\x10\\x06\\x05\\x01\\x04\\x04\\x03\\x01\\x05\\f\\r\\b\\b\\x0f\\x1a\\x01\\x16\\r$\\x14\\x16\\x10\\x06\\x06\\x1a$\\x163\\x1b\\f\\x05\\t\\x0e\\x1aJ$D33\\x11?I<.$\\x12\\x19\\x01\\a\\x0e\\n\\x06&\\v\\x0f\\x01\\x0f\\v\\a\\f\\a\\x0f\\v\\x01\\a\\x17\\x17\\x01Y\\x01\\r\\x16\\n<\\x02\\x04\\t\\a\\x03\\x14\\x15\\x18\\x01\\x1d\\x01\\x0f\\x02\\x10\\x02\\x03\\v\\x0e\\x03\\x02\\x02\\v\\t\\x18 \\x04\\x1a\\r\\x11\\b\\x1c\\x1e\\n /\\x16\\x03\\tE&\\x15\\x12\\x06\\f\\x13-\\x02\\x01\\t\\t\\x05\\a\\x02\\x01\\x01\\x01\\a\\b\\v\\x03\\x03\\x17\\x13\\x19\\x0f\\b\\x01\\v\\x0e0\\x15\\x12\\x1a\\v\\x02\\x04(\\x11\\x13$#>0\\x16\\x1b\\a\\x03\\x02\\x02\\x184\\x1a\\x14\\\"/\\x01\\x06\\n\\r\\x12\\x10\\n\\x01\\v\\x0f\\a\\f\\b\\n\\x10\\x1d\\x10\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00)\\x001\\x00>\\x00J\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\x06\\x1e\\x01>\\x01.\\x01\\a2654.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x01\\x17\\x16\\x177&47'\\x06\\a\\x16\\x14\\x16>\\x01.\\x01\\x0e\\x01\\x16767'\\x0e\\x01'\\a\\x167>\\x02?\\x01&'\\x06&'&\\a\\x176\\x16\\x91Α\\x91Α\\x013\\r\\a\\x17\\x19\\x0e\\a\\x17\\xf6\\x0e\\x12\\b\\x0f\\t\\r\\x12\\b\\x0f%\\r+\\x18''\\x18+\\r\\x10\\xc9\\x17\\a\\x0e\\x19\\x17\\a\\r%%\\x04.\\x04R+\\x17/2\\x02\\x13\\x1a\\b.\\x04%\\x14%\\x032/\\x17+R\\x01\\xb8\\x91Α\\x91\\xce?\\x16\\x1a\\r\\a\\x17\\x19\\r\\xcd\\x13\\r\\t\\x0e\\t\\x13\\r\\t\\x0e\\t\\x032\\x1d(\\x1b^\\x1b(\\x1d2\\x0e+\\x97\\r\\x19\\x17\\a\\r\\x1a\\x16E$4\\x01//\\x14)\\x17\\x0e\\x0e\\x14\\x05e\\x014$\\b\\x16\\x15\\x0e\\x17)\\x150\\x00\\x00\\x06\\x00\\x04\\xff\\xe0\\x01|\\x01\\xa2\\x00\\x0e\\x00'\\x00;\\x00F\\x00S\\x00k\\x00\\x00753\\x15\\x0e\\x01\\\"&=\\x013\\x15\\x14\\x166'>\\x01\\x17\\x15\\x14\\x0e\\a\\a.\\b5!5&\\x0e\\x02\\a\\x15\\x14\\x1e\\x03\\x17>\\x05'>\\x01\\x1e\\x01\\x15\\x14\\x06'\\x15#7\\x1e\\x01>\\x0254.\\x02\\x06\\a\\x1746\\x17\\x15&\\x06\\x15\\x06\\x1e\\x02\\x15\\x0e\\x01'5\\x166'4.\\x02g!\\b\\x1e#\\x19!\\x0e\\x0e_J\\xd2[\\x06\\b\\x14\\r!\\x11,\\x14\\x1a\\x1a\\x16*\\x13\\x1f\\x0e\\x14\\b\\x06\\x01f'\\\\TY%\\x0f\\x151,*\\\"'-\\x17\\x15\\b\\xd2\\v $\\x1a/\\x19!!\\x03\\x05\\r\\n\\b\\a\\t\\f\\a\\x04O;\\x15\\r#\\x01\\x11\\x15\\x10\\x017\\x1b\\x0f$\\x01\\x10\\x13\\x11\\x91{\\x8e\\x05\\b\\x1a\\x1agh\\x0e\\v\\x03\\xe7(\\x04,\\xdd\\x11\\x1e\\x18\\x18\\x10\\x15\\v\\x14\\t\\f\\v\\n\\x14\\v\\x15\\x10\\x18\\x18\\x1e\\x11\\xd8\\x06\\x04\\x0f+!\\u007f\\x1a(\\x1c\\x1f\\x16\\x12\\x0f\\x13\\x19\\x16\\x1d\\\"\\x81\\x06\\x06\\x05'\\\"3#\\bE_\\x01\\x01\\x01\\t\\x18\\x13\\x12\\x17\\n\\x02\\x02\\x01\\x0e\\x1d\\x14\\x11\\x1d\\x0e\\x01\\x0f\\t\\r\\n\\x18\\x11\\x1f\\x14\\x11\\x1e\\x0e\\x02\\x11\\t\\x0f\\t\\x16\\x00\\x00\\x00\\x00\\x03\\x00\\x1b\\x00 \\x02%\\x01`\\x00\\x1b\\x005\\x00H\\x00\\x00%\\x06'&5>\\x06.\\x01#&\\x0e\\x01'4>\\x0176;\\x012\\x16\\a\\x0e\\x06\\a723$\\x17#\\x17>\\x017\\x16\\a\\x0e\\x04%!\\x03!$7>\\x03&'.\\x01#.\\x01'&\\x01\\xcc\\x02\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x02\\x01\\a/\\x1e\\x04\\x0e\\x13\\x05\\b\\x03\\x1b\\x16\\a\\x82\\r\\x1a%\\x1c:'Y\\x1f4\\x1c4\\x01\\x00\\x02\\xc4\\x1e%f\\\"\\x1b\\x01\\x01\\n\\x11\\x17!\\xfe\\xf1\\x01\\xc6D\\xfeY\\x01\\x92\\x05\\x01\\x05\\n\\x05\\x01\\x06\\x04\\x13\\x1d\\x01Q\\x86H\\xce\\x04\\x02\\x01\\x01\\x02\\x05\\x04\\x05\\x04\\x04\\x04\\x02\\x02\\x02\\x02\\x02\\x02\\x01\\x02\\x04\\x02\\b\\x125\\x05\\n\\x10\\r\\x1d\\x13,\\x10\\xf6\\x01\\x18]\\x11#\\x02\\x01\\x05\\x01\\x02\\x03\\x05\\t\\xa2\\xfe\\xc0\\x9e\\x02\\x02\\a\\x13\\x10\\x13\\x05\\x05\\x02\\v\\x16\\x1c\\x0f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00Q\\x00Y\\x00\\x94\\x00\\x00%\\x0e\\x02\\a\\x06\\a\\x06\\a\\x06'&>\\x02?\\x01&/\\x01\\x14\\x0e\\x01\\a\\x06'&7\\x06'.\\x0167&7.\\x0276767>\\x013\\x17076\\x17\\x1e\\x03\\x1f\\x017\\x16\\a\\x0e\\x03\\a\\\"\\x1e\\x01\\x17\\x1e\\x01\\x0612\\x1667632\\x166\\x14\\x06\\\"&462\\x13.\\x01#\\x06\\a\\x06\\a6'676&'&\\a&'&\\\"&\\\"\\x0e\\x02\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\x17\\x06\\x17\\x0e\\x01\\x1e\\x01\\x17\\x06\\x17\\x167\\x16327676767>\\x02\\x01\\x8a\\x10\\x1d$\\x17\\x03\\a\\x150\\x12\\x04\\x02\\x01\\x03\\x04\\x02\\x01\\x04\\x04\\x02\\x03\\x04\\x03\\f\\x17\\n\\v\\x06\\x05\\x04\\x04\\a\\r\\a/\\x02\\x05\\v\\x05\\x05\\x04\\v\\x04\\n\\x17\\a\\a\\v\\a\\x06\\x01\\x04\\x05\\x04\\x01\\x02\\x0f\\r\\b\\x02\\b\\a\\t\\x01\\x01\\t\\x0e\\x05\\x05\\x01\\x03\\x02\\x06\\x12\\v\\x1b\\x12\\f\\x03\\\\\\x91Α\\x91\\xceB\\x02\\x0f\\v\\x16\\x1f\\a\\x05\\x03 \\x12\\x05\\x04\\x04\\a\\x06\\x0f\\t\\x06\\x01\\x02\\x06\\x05\\b\\b\\b\\x04\\x1c\\x13\\x02\\b\\n\\a\\b\\x0f%\\x01\\f\\b\\x05\\x06\\x03\\x02\\x0e\\x18\\x14\\n\\x14/\\x1a\\b\\a\\\"\\x1c\\x14\\x11\\a\\t\\x04g\\x04\\x11\\x14\\a\\x04\\x01\\x05\\x01\\x01\\t\\x04\\a\\x06\\x03\\x01\\x01\\x03\\x04\\x01\\x02\\f\\n\\x03\\f\\v\\x06\\x0e\\x04\\a\\a\\x10\\x1c\\v5!\\x02\\t\\x18\\b\\r\\x01\\x04\\x05\\n\\t\\x01\\x17\\v\\x03\\x01\\a\\t\\b\\x03\\x03\\x05\\x1a'\\v\\x14\\v\\x0e\\x02\\a\\x14\\x0e\\f\\x1b\\x10\\x01\\b\\x06\\x11\\x14\\xbeΑ\\x91Α\\xfe\\xbd\\n\\r\\x01\\x13\\x04\\x02/ \\x1a\\x1b\\x10-\\x0e\\v\\x04\\x14\\x04\\x01\\x02\\x03\\x06\\r\\t\\x02\\x15\\x02\\x03\\x04\\x13\\x15\\x18\\\"1\\f\\x1c\\x16\\x0e\\x03\\x11\\a\\r\\n\\n\\x06\\x02\\x05\\f\\x11\\x0e\\x04\\x01\\t\\v\\x00\\x00\\x03\\x00\\x03\\xff\\xdf\\x01\\xbd\\x01\\xa0\\x00\\t\\x001\\x00K\\x00\\x007676'&\\a\\x06\\x17\\x16\\x17>\\x01'&'.\\x03#\\\"\\x0e\\x06\\a\\x0e\\x01\\a\\x06\\x16767&'&632\\x1e\\x02\\x06\\a\\x1670\\x1e\\x01\\x15\\x16\\x06#\\\"'\\x06#\\\"&767>\\x0132\\x1e\\x04\\xe0%\\b\\f#\\x1e\\x18\\x16\\t\\a\\xb0\\x1b\\x14\\n\\x1eU\\t\\x06\\x11\\x10\\f\\x06\\v\\b\\t\\x05\\b\\x03\\b\\x01\\x01j\\t\\x0e/&'.,\\n\\t))\\x14\\\"\\x15\\x02\\x1c\\x1eBd\\t\\b\\x12;179971;\\x12\\vj\\x12$\\x1f\\x0f\\x0e\\x19\\x12&(K.%-\\x10\\x0e\\x14\\x13$$x\\v2\\x19J\\xa5\\x13\\f\\x16\\a\\x03\\x03\\b\\x06\\f\\x06\\x10\\x03\\x01\\xd9\\x18%;\\x05\\x0438,);\\x10\\\".C%I\\x9f\\x13\\x13\\x022P>>P2 \\xd5%$\\x02\\x13\\x1dEU\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc2\\x00?\\x00G\\x00O\\x00W\\x00\\x9b\\x00\\xa6\\x00\\xae\\x00\\xb7\\x00\\xb8\\x00\\x00%\\x1e\\x02\\x14\\a\\x06'\\x06\\a\\x16\\x17\\\"'&'&'\\x0e\\x01'&7\\x06'&'&767&'\\\"\\a6767&6\\x17\\x16\\x17676\\x17\\x16\\x17\\x16\\x17\\x16\\x1767\\x16\\a\\x06\\a\\x1e\\x01\\a\\x06\\a>\\x02'&'\\x16\\a\\x06\\x17\\x167&'\\x067\\x16'&'\\x06\\a\\x16\\a676'&'47\\x16\\x17\\x16\\x17.\\x02#2\\x1e\\x01\\x1767&'&\\a\\x14\\x17\\x06\\a&'\\x06\\x15.\\x0167&'\\x16\\x17\\x16\\x1767\\x16\\x17\\x06\\a\\x06\\a\\x162>\\x061\\x0e\\x02#\\x16\\x13.\\x02\\a\\\"\\x0e\\x02\\a6\\a&'&\\a2\\x17&\\a\\x0e\\x01\\x16\\x17\\x1627&\\x17\\x01\\xc1\\x15\\x1e\\f\\x06\\x19{\\x1f%'\\x18\\x03\\x06\\x04\\x04\\x1b\\x1d 4\\x04\\a\\x104#\\x11\\x06\\b\\b\\t&\\x16\\x04W\\x19\\x04\\x0e%8\\x02\\x16\\x10\\x0e\\x0f\\x01\\x18\\v\\x10\\x13\\x16\\x1c!4)+\\x05\\x04\\x04\\n\\x1a!\\x1d\\t\\tl!%\\t\\x01\\x02/\\x02\\xb9\\x10\\x16\\x11\\x1b\\v\\n\\x0f\\xc9\\x1a\\x02\\x03\\x1f\\v\\v\\x11\\x8a1$\\x1b\\x02Dc\\x02\\x14\\x14;8\\a\\x15\\r\\x01\\x03\\r\\x18\\t\\r\\v4A0!\\\"\\x05\\x0e\\x1f\\x0e\\x14\\x01\\x02\\a\\n\\x14\\x13\\x03\\x1c\\x16\\\"DA\\x06\\n\\v\\x0e'.\\a\\v\\v\\t\\b\\a\\x05\\x03\\x02\\x01\\f\\x1f\\x13\\b$\\x04\\x10\\x1d\\b\\x06\\r\\v\\a\\x01$H\\a\\b\\x15\\x03\\x15\\x15\\x02\\x1d\\x0e\\t\\x02\\x01\\x06+$&\\xb7\\xde\\r\\x1c\\x18\\x15\\a%\\x05+\\x1aH\\x14\\x03\\x03\\x04\\x1c/\\x15\\x04\\x0f\\x0e\\x19\\x1d\\b\\x04\\x0f\\x10\\x1f&;2,\\n\\a\\x03\\t\\x02&.\\x02\\x02\\x18:\\x1a\\r\\x02\\x02\\x16\\x1b>\\x05\\x12D \\a\\x0e$1\\x11*\\f\\rj\\x02\\f\\f\\b\\x1d\\x1d+i\\x1a\\x03\\x03\\x0f\\x12\\x14\\f\\xa3\\x01\\x10\\x12\\x13\\x13\\x12\\b\\xbd 5)''\\x12\\b\\r\\x03\\x04\\v\\x14\\x0f\\x17\\t\\x05\\x16\\x11\\x11\\x10\\x1b\\x03\\x03\\x14O_\\x02\\x06JO\\x1d\\x1f\\x02\\x0e \\x10\\x03\\x01::+\\x12'M\\x04\\b\\x10\\x0f.&\\x01\\x01\\x02\\x02\\x03\\x02\\x02\\x01\\x02\\t\\n\\x13\\x01\\x0e\\x06\\x16\\x1c\\x01\\t\\x12\\x1e\\x13\\x17\\x05\\f\\x01\\x023\\x01\\x13\\x90\\x1b'\\n\\x01\\r\\x12\\x14\\x17\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\f\\x00\\x19\\x00)\\x00B\\x00\\x00%\\x14\\x0e\\x02+\\x01532\\x1e\\x02'#532\\x1e\\x01\\x15\\x14\\x0e\\x02\\\"7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4'565<\\x01.\\x03+\\x01\\x11:\\x0362>\\x0176\\x01$\\v\\x13\\t\\x05QQ\\x0f\\x14\\a\\x022KK\\x10\\x13\\x04\\t\\t\\x0e\\x05\\xcc,\\x1f\\xfe\\xd6\\x1f,,\\x1f\\x01*\\x1f,n1%\\x04\\n\\x10\\x1c\\x13\\u007f\\x13.\\x17\\x1b\\f\\x0f\\b\\t\\x045\\x88\\x0f\\x13\\x06\\x01Q\\t\\x10\\nDH\\f\\x0e\\t\\v\\x0f\\a\\x04\\x84\\xfe\\xd6\\x1f,,\\x1f\\x01*\\x1f,,\\xf29\\n\\x01\\x10(\\x04\\x06\\x13\\r\\x0f\\b\\xfe\\xfa\\x01\\x02\\x02\\x01\\x10\\x00\\x00\\x03\\x00\\f\\xff\\xe0\\x01\\xb4\\x01\\xa1\\x00\\x15\\x00+\\x009\\x00\\x00%\\a\\x06\\\"/\\x01&?\\x0162\\x1f\\x01\\x162?\\x0162\\x1f\\x01\\x16'\\x16\\x0f\\x01\\x06\\\"/\\x01&?\\x0162\\x1f\\x01\\x162?\\x0162\\x17%&?\\x0162\\x1f\\x01\\x16\\x0f\\x01\\x06\\\"'\\x01\\xac\\xc5\\x03\\b\\x03\\xc5\\a\\a/\\x04\\a\\x04\\x87\\x03\\b\\x03\\x87\\x04\\a\\x04/\\a\\a\\a\\a\\xc5\\x03\\b\\x03\\xc5\\a\\a/\\x04\\a\\x04\\x87\\x03\\b\\x03\\x87\\x04\\a\\x04\\xfe\\x97\\a\\a\\xc5\\x03\\b\\x03\\xc5\\a\\a\\xc5\\x03\\b\\x03Ca\\x02\\x02a\\x04\\x04\\x17\\x02\\x02C\\x02\\x02C\\x02\\x02\\x17\\x04\\x85\\x04\\x03b\\x02\\x02b\\x03\\x04\\x17\\x02\\x02C\\x01\\x01C\\x02\\x02[\\x03\\x03[\\x01\\x01[\\x03\\x03[\\x01\\x01\\x00\\x04\\x00\\x15\\x00\\x00\\x01\\xeb\\x01\\x80\\x00\\x12\\x00\\x18\\x00#\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x0153\\x11!\\x15#5463\\x032\\x16\\x1d\\x01#5\\x1532\\x16\\x15#14&#5\\x1e\\x01\\x15#4&#\\x01\\xc0\\x12\\x19\\x19\\x12\\x95\\x95\\xfe\\x80+\\x19\\x12+\\x1b%@\\x01=X+?,a\\x8a+pP\\x01\\x80\\x19\\x12\\xfe\\xd6\\x12\\x19+\\x01*@@\\x12\\x19\\xfe\\xc0%\\x1a\\x01\\x96\\x01W>->\\x80\\x01\\x89aPp\\x00\\x03\\x00\\x00\\xff\\xdf\\x01\\x81\\x01\\xa3\\x00\\x1a\\x00x\\x00\\x82\\x00\\x00\\x13\\x16#*\\x06\\x0e\\x01\\\"\\a#7\\x15\\x06\\x14\\x0e\\x01\\x1c\\x05\\x13&6\\x172\\x16\\a\\x0e\\x02\\x15\\x14\\x16326514.\\x01'0.\\x06'\\x0e\\x02\\a&\\x06&'&'&'467:\\x0462>\\x027>\\x015454>\\x01\\x17\\x16\\x1f\\x012\\x1e\\x06\\x17\\x1e\\x01\\x06#\\x0e\\a+\\x01\\\"&7\\x06\\x17\\x1e\\x0172'.\\x01y\\x01\\x17\\t\\x13\\f\\r\\a\\b\\x04\\x04\\x03\\x03\\x01\\x01m\\x01\\x01\\x01O\\v\\\"\\x1d\\r\\x06\\v\\x01\\x0f\\t\\x15\\n\\x13\\x1b\\x06\\x17\\x13\\t\\b\\r\\v\\f\\b\\x06\\x01\\x03\\b\\x14\\f\\b\\x1f6\\x14\\x13\\t\\n\\x01\\x0e\\v\\n\\x17\\x0e\\x10\\t\\t\\x06\\x05\\x04\\x03\\x02\\x06\\x02\\a\\x19\\x15 \\x05A\\x01\\x0f\\a\\x11\\t\\x0e\\b\\b\\x01\\n\\x04\\x05\\x01\\x02\\v\\x0e\\x11\\x11\\x11\\x0f\\v\\x04\\x03\\x12(H\\x03\\x04\\t\\x1f\\x05\\x05\\x02\\x03(\\x01<\\x16\\x01\\x01\\x01o\\x01\\x01\\x03\\x03\\x05\\x04\\b\\a\\r\\f\\x14\\xfe\\xc3\\x1c1\\x01\\x19\\x06\\x01\\x03\\a\\b\\f\\r\\x1b\\x13\\b\\x13\\x18\\x04\\x02\\x01\\x04\\x05\\a\\n\\x0e\\a\\f\\x19\\x1d\\x03\\x01\\x03\\x13\\x14\\x0f+.\\x10\\r\\x12\\x01\\x01\\x02\\x01\\x03\\x01\\x06\\x13(\\x17\\x0f\\x06\\v\\n\\x03\\x05\\x1a\\v\\x03\\x01\\x05\\x04\\t\\v\\x0f\\n6wA\\x13\\x1e\\x16\\x11\\n\\a\\x03\\x01\\x13\\xe2\\x06\\x01\\x04\\x03\\x01\\a\\x10\\x05\\x00\\x04\\x00\\a\\xff\\xdf\\x01\\xf9\\x01\\xa0\\x00)\\x00H\\x00y\\x00\\x87\\x00\\x00\\x13632\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06#\\\"&5\\x14\\x06\\\"&5\\x14\\x0e\\x01#\\\".\\x015\\x14\\x06\\\"&5\\x14\\x06#\\\"&=\\x0146\\x17\\x1e\\x0132327\\x1627\\x1e\\x017\\x1e\\x01\\x14\\x06\\a\\x06 '.\\x0167\\x1667\\x162\\x06\\\"\\x0e\\x05\\a\\x0e\\x01\\x1e\\x033>\\x015\\x167\\x14\\x16\\x17:\\x01>\\x034&'.\\x06\\\"\\x0e\\x01\\a&\\\"\\a.\\x01\\x17\\x16\\x17'\\x15\\x14'\\\"15\\a>\\x017H \\x98iO\\x101\\x1f\\x11\\x15\\x1e\\x1d)\\x1d\\x0e\\x17\\x0e\\x0e\\x17\\x0e\\x1d)\\x1d\\x1e\\x15\\x11\\x1f1\\x94\\a\\x1d\\x0e\\x01\\x01#\\x11\\x10C\\x11\\t$\\v\\x01\\x03\\v\\v;\\xfe\\xfb<\\x0e\\n\\x03\\x03\\v$\\t\\x11C\\x0f\\x15\\x12\\x0f\\n\\f\\x05\\v\\x02\\x04\\x03\\x04\\x05\\r\\n\\t\\x1e#NN#\\x1e\\a\\b\\n\\x06\\a\\x02\\x03\\x03\\x02\\v\\x05\\f\\n\\x0f\\x12\\x15\\f\\x12\\t\\x16,\\x16\\t\\x12G,\\b\\x1d\\x17\\x17\\x1d\\x03\\x1a\\f\\x01\\x9d\\x03\\x03\\t8\\n\\x15\\x14\\x1f\\x1e\\x14\\x14\\x1e\\x1e\\x14\\r\\x17\\x0e\\x0e\\x17\\r\\x14\\x1e\\x1e\\x14\\x14\\x1e\\x1f\\x14\\x15\\n8}\\f\\x11\\x1d\\x1d\\x1d\\x10\\x10\\x04\\x13G[M\\v\\x0e\\x0e\\x0e{f\\x1e\\x04\\x0f\\x11\\x1d\\x19\\b\\x13\\x10\\\"\\x12)\\b\\x10\\x16\\r\\t\\x03\\x01\\x01%\\x19\\r\\r\\x19%\\x01\\x02\\x03\\x06\\n\\r\\x12\\f\\b)\\x12\\\"\\x10\\x13\\b\\x01\\t\\n\\x03\\x03\\n\\t/)\\x0e\\x01\\x19\\x01\\x01\\x19\\x01\\x06\\x1c\\v\\x00\\x00\\x00\\x0f\\xff\\xfc\\xff\\xdf\\x02\\x80\\x01\\xa0\\x00\\x03\\x00\\x0f\\x00\\x19\\x00E\\x00h\\x00\\x89\\x00\\x95\\x00\\xb3\\x00\\xdc\\x01\\n\\x01\\x16\\x010\\x01L\\x01k\\x01o\\x00\\x007#6236\\x15\\x14#\\\"'&5462\\a6\\x17\\x15\\x06'&=\\x014%\\x14\\x06'\\x0e\\x02'\\x0e\\x02.\\x02'\\x06.\\x0267&>\\x0232\\x16\\x17632\\x1e\\x06\\x176\\x1e\\x02\\x054'&56\\x16\\x172506350'&\\x06\\x15\\x14\\x17\\x16\\x15\\x14#\\\"'&\\x0f\\x01\\x141\\x16327\\\"\\a\\x141\\x141\\x17\\x16130>\\x0132\\x16\\x15&\\x06\\x15\\x141\\x14\\x17\\x1676=\\x014.\\x0174+\\x01\\\"\\x1d\\x01\\x14;\\x01257&#\\\"\\a\\x06\\x15\\x14\\x17\\x1632765'4#\\x06#\\\"53250<\\x01.\\x01\\x17254'&5432\\x17;\\x01'06150'&#\\\"\\x06\\x15\\x14\\x17\\x16\\x15\\x14#\\\"'41\\\"\\x15\\a\\x143\\x1674+\\x0147632572'&\\a\\x06\\a#\\\"\\x15\\a\\x14;\\x01\\x06\\a\\x06\\a\\\"#\\\"\\a0\\x061\\x063\\x1676767325\\x17&#\\\"\\a\\x06\\x17\\x1632767&\\a54+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x01476\\x17256750\\x17/\\x01\\x06#\\\"43212\\x17\\x165656#&\\a\\x06\\x15\\x14327617&#\\\"\\a\\x06\\x15\\x141\\x1432765'4#\\x06#\\\"532505<\\x02.\\x012\\x17#\\xf9\\x1a\\x01\\x18\\x8a\\x0e\\x0e\\v\\x03\\x01\\b\\x04\\xf1\\x06\\x0f\\x0f\\x06\\x03\\x01\\xf5e@\\n&6\\x1f\\n#)-(\\\"\\b#:\\x1f\\t\\x1c\\x1d\\x0e\\t\\x1e8\\\"\\x19:\\x0f\\\"/\\b\\x10\\x0e\\x0e\\r\\v\\n\\t\\x04#E8\\\"\\xfd\\xf8\\x11\\x0e\\x01\\x11\\a\\x02\\x02\\x01\\x01\\t \\x12\\r\\t\\v\\b\\x01\\x01\\x02\\b\\x0f\\x15 \\x0e\\a\\x02\\x01\\x01\\x04\\b\\x05\\x06\\x06\\x16\\x0f\\a\\r\\x19\\x03\\x01\\v$\\x01\\n\\x01\\x01\\n\\x018\\a\\v\\x0e\\a\\x06\\a\\a\\x10\\r\\x05\\x01\\x03\\x01\\b\\b\\x10%\\x01\\x01\\x03\\\"\\x16\\x12\\r\\b\\t\\b\\x01\\x01\\x01\\x03\\x01\\b\\f\\t\\v\\x11\\x0e\\n\\n\\t\\x01\\x03\\x01\\bP\\x01\\f\\x05\\x01\\v\\x01\\x03\\x01\\x01\\x0f\\n\\x05\\x03\\b\\x01\\x02\\x02\\b\\t\\x02\\x02\\x03\\t\\x01\\x01\\x01\\x02\\x01\\x01\\t\\t\\b\\x04\\x02\\t\\f\\x026\\x06\\x13\\x14\\x05\\x04\\x04\\x06\\x13\\x15\\x04\\x04*\\x0f\\a\\x01\\n\\x01\\x01\\n\\x01\\x04\\x05\\t\\x01\\x02\\x01/\\x02\\x02\\x04\\a\\x11\\x10\\x01\\x06\\x05\\x01\\x02\\x01\\x01\\x10\\f\\x10\\x1d\\b\\a\\x016\\x05\\x12\\x15\\x04\\x02\\x1e\\r\\x05\\x01\\x03\\x01\\b\\a\\x11%\\x01\\x01$\\x18\\x01\\x1a\\xca\\x0e\\x01\\x15\\x14\\f\\x04\\x04\\n\\n\\x18\\x05\\x03\\x11\\x03\\x04\\x03\\x04\\x01\\x04\\x1aBT\\x0e\\x13\\x1b\\v\\x0f\\x17!\\x0e\\x01\\x10#\\x17\\a\\x1919:\\x11\\x1e>2 \\x1d\\x14#\\x02\\x04\\x06\\b\\t\\v\\f\\x06\\x10\\n#?D\\f\\x05\\x06\\x03\\a\\x01\\x04\\x01\\a\\x01\\x01\\a\\x06\\x0e\\f\\x05\\x05\\x04\\a\\x06\\x01\\x01\\b\\x01\\a=\\x05\\x01\\x01\\a\\x01\\x02\\x02\\x04\\t\\x02\\n\\t\\x01\\t\\x05\\t\\a\\x01\\x01\\\"\\x05\\a\\n\\x15\\x01\\x01O\\x01\\x012\\a\\t\\a\\x0e\\x0e\\a\\b\\x03\\x01\\x01\\a\\x01\\x03\\x11\\x01\\x03\\x05\\x06\\a2\\x12\\f\\x05\\x06\\x03\\a\\x05\\x01\\a\\x01\\x01\\x05\\n\\b\\f\\x05\\x05\\x04\\a\\x06\\x01\\x01\\b\\x01\\a:\\x01\\b\\x05\\x01\\x01\\b\\x01\\x06\\n\\x06\\x0e\\x01\\b\\x014\\x03\\a\\x01\\x01\\a\\x02\\x03\\x03\\x03\\n\\x066\\x01\\b\\x12\\x12\\f\\f\\x12\\x12\\f\\x1d\\x04\\n\\x05\\x01\\x018\\x01\\x01\\x1c\\f\\x03\\x05\\x02\\x01\\x04\\x04\\x015\\a\\x01\\x02'\\x01\\x01\\x01\\x05\\x03\\x01\\x05\\x05\\b\\x14\\x1e\\x03\\x01(\\x10\\x12\\x06\\x05\\x01\\x1d\\x03\\x01\\x01\\a\\x01\\x03\\x11\\x01\\x01\\x01\\x02\\x04\\x05\\b\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00 \\x02\\x00\\x01`\\x00 \\x00:\\x00\\x007#\\\"&46;\\x012\\x16\\x14\\x06+\\x01\\\"\\x14;\\x012\\x16\\x14\\x06+\\x01\\\"&46;\\x0126&\\x17>\\x01732>\\x01=\\x014&+\\x0164'32\\x16\\x1d\\x01\\x14\\x0e\\x01#\\xd6r);;)\\x85\\x10\\x18\\x18\\x10\\x87\\x14\\x14r);;)\\xac\\x11\\x17\\x17\\x11\\xae\\f\\v\\vH\\x12\\x1e\\x03A\\x05\\t\\x05\\v\\bv\\x0f\\x0f\\x89!.\\x15$\\x16\\x98;R;\\x17\\\"\\x17(;R;\\x17\\\"\\x17\\x14\\x14x\\f/\\x15\\x05\\t\\x06x\\b\\f\\x11.\\x11/!\\xa0\\x16%\\x15\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x80\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%>\\x01'4&\\a*\\x01\\x0e\\x06\\a0.\\x03\\x06\\a\\x0e\\x01\\x17\\x1e\\x05\\x14\\a\\x06'&74676&\\x06\\a\\x06\\x16\\x17\\x16676/\\x01&76\\x17\\x1e\\x02\\x17\\x06\\a\\x0e\\x01\\a\\x06#\\\".\\x0176&\\a\\\"\\x06\\x17\\x14\\x16767>\\x0274>\\x015\\x16>\\x0256&\\a\\x14\\x1e\\x01\\a\\x06'>\\x0536\\x15\\x16\\x06\\x15\\x14\\x16\\x99Α\\x91Α\\x01~\\n\\n\\x01\\x19\\x14\\x02\\x03\\v\\t\\x0f\\r\\x0f\\x0e\\x0e\\x06\\x0f\\r\\x17\\x14\\x1b\\r\\x10\\x06\\x13\\x03\\t\\x03\\x05\\x02\\x02\\x01\\a\\x1b\\x13\\x02\\x04\\x02\\x04\\x0f\\x14\\x04\\x04\\x12\\x19\\x1e1\\x04\\x03\\x18\\r\\x0f\\r\\v\\x15\\n\\x10\\x12\\x05\\n\\b\\n\\x12\\x11\\f\\n\\x02\\x05\\x01\\x06\\f\\v\\x10\\t\\x10\\x01\\x17\\x12'!\\x11\\x17\\t\\a\\x01\\x01\\x12\\x1f\\x12\\n\\x01\\x1e\\x03\\x06\\x01\\x05\\x10\\x1d\\x04\\x03\\b\\a\\f\\x0f\\n\\f\\x01\\a\\v\\x01\\xb8\\x91Α\\x91\\xce\\x01\\x01\\x0f\\b\\r\\x10\\x01\\x02\\x03\\b\\n\\x10\\x14\\x1d\\x11\\x0e\\n\\f\\x04\\x05\\t\\r*\\x19\\x03\\t\\x03\\a\\x04\\x06\\x05\\x03\\x17\\x06\\x05\\v\\x01\\a\\x05\\f\\x10\\x03\\f\\r\\x1e\\a\\n\\x1a\\x18\\x16\\x1c\\x0e\\x0f\\x10\\r\\x05\\x03\\v\\x11\\x04!144\\x0e\\t\\x02\\x05\\x05\\x06\\x1d\\x01\\x0f\\v\\x0e\\x11\\x01\\x01'\\x147'$\\x02\\x03\\x05\\x02\\x02\\x05\\v\\x0e\\a\\x12\\x02\\x0e\\x04\\n\\x06\\x05\\n\\x04\\x16\\x0e#\\x0f\\x14\\b\\x01\\b\\x02\\f\\x05\\b\\t\\x00\\x05\\x00\\x02\\xff\\xe0\\x02\\x02\\x01\\xa0\\x00&\\x00E\\x00K\\x00Q\\x00d\\x00\\x00%\\x16\\x06\\a\\x16\\x06#\\\"&'*\\x03'\\x0e\\x01#\\\"#.\\x017&'&632>\\x027>\\x0232\\x16\\x03>\\x0276.\\x02#\\\"\\x06\\a\\x0e\\x04#\\x16\\x176\\x16\\x17\\x1623>\\x0132&46\\x16\\x14\\x06646\\x16\\x14\\x06\\a&6\\x16\\x17\\x1e\\x017>\\x0176\\x16\\a\\x0e\\x01\\a\\\"&\\x01\\xf6\\v>>\\n\\x1f\\x1b\\x15\\x1e\\x01\\x02\\x16\\x18\\x18\\x04\\x01\\x1e\\x15\\x01\\x01\\x1a\\x1d\\b?%\\t\\x0e\\x10\\x11\\x10\\x04\\x03\\x03\\tBY0N|t\\x15&\\x1e\\a\\x0f\\x145P,@n\\f\\x02\\x03\\x04\\f\\x1b\\x15\\\"<\\x122\\f\\nH\\x06\\x06\\x1b\\r\\x12\\x9a\\x1a\\x19\\x19[\\x19\\x1a\\x1a\\x94\\x02\\f\\x0e\\x02\\x03$\\x19\\x19#\\x04\\x03\\x19\\x03\\x05.( 3\\xf6@r\\x1e\\x19-\\x1d\\x14\\x01\\x15\\x1d\\x01*\\x19\\x161\\r\\x1d\\x14\\x192\\x0f-I'`\\xfe\\xfc\\t\\x1e)\\x16.S>%M;\\v*\\x1e \\x10-\\x14\\x11\\t\\x16\\x01\\f\\x10\\xad!\\x0e\\x0e!\\r\\r!\\x0e\\x0e!\\r)\\b\\t\\x04\\b\\x11\\x1b\\x01\\x01\\x19\\x11\\f\\x06\\f\\x16(\\x01%\\x00\\x00\\x00\\x00\\x04\\x00\\x1d\\xff\\xff\\x01\\xe3\\x01\\x81\\x00\\x0e\\x00\\x1e\\x000\\x00V\\x00\\x00\\x01\\x0e\\x01'&6727632\\x16\\x15\\x14\\a\\x16\\x15\\x14\\x0e\\x01#\\\"'\\\"'.\\x0176\\x167\\x1e\\x01\\x15\\x14\\x0e\\x01\\a\\\".\\x02'&63:\\x01%&54632\\x1f\\x0137632\\x16\\x15\\x14\\a\\x03\\x0e\\x01+\\x01\\\"'.\\x01546303\\x163267\\x01\\xa6*P\\b\\b_\\x13\\x02\\x01\\x03\\x03\\n\\r\\b\\b\\x06\\n\\a\\x03\\x03\\x01\\x02\\x13_\\b\\bPT\\b\\n\\x05\\t\\x05\\x15-*\\x1c\\x02\\x04v\\x16\\x01\\x02\\xfeO\\x01\\x0e\\v\\x0f\\aQ\\x01M\\x06\\x10\\n\\x0e\\x01n\\x10&'\\x01\\v\\f\\x06\\t\\f\\t\\x01\\a\\a\\x16\\x19\\v\\x01(\\x17!\\x06\\x05I\\v\\x01\\x01\\x0e\\t\\v\\xe0\\a\\v\\a\\n\\x06\\x01\\x01\\vH\\x06\\x05!n\\x02\\r\\b\\x05\\n\\x06\\x01\\x02\\x05\\a\\x05\\b\\x12\\x8c\\x04\\x04\\n\\x0f\\x0e\\xcd\\xcb\\x0f\\x0e\\t\\x04\\x03\\xfe\\xef*&\\x02\\x02\\f\\x06\\t\\r\\x01\\x1b \\x00\\x01\\xff\\xff\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00+\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01\\x17\\x06\\x16\\x17\\x15\\x0e\\x01\\x17\\x16276&'5\\x17\\x06\\x1676&\\a'6&\\a'762\\x17\\x01\\xb8\\b\\b\\xc3\\t\\x17\\t\\xc4\\b\\b\\x872\\x05\\t\\x0f\\x11\\a\\r\\n\\x1c\\n\\f\\x03\\x12/\\v/\\x14\\x13\\x1d\\x1a2\\a\\x1e\\x143(\\t\\x18\\b\\xd4\\t\\x17\\t\\xc3\\b\\b\\xc4\\t\\x17\\t\\x863\\n\\x1d\\x06{\\a$\\r\\n\\n\\t%\\tz.\\x1a\\x1f\\x13\\x14.\\t2\\x14\\x1e\\a4)\\b\\b\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x06\\x00\\n\\x001\\x00=\\x00A\\x00E\\x00\\x007\\x14+\\x015327\\x11!\\x11\\x134.\\x01'.\\x025432\\x15;\\x014&#\\\"\\x06\\x15\\x14\\x16\\x17\\x1e\\x01\\x15\\x14#\\\"5#\\x15\\x06\\x1632>\\x0174&+\\x01\\x153532>\\x01\\x177#\\a7#\\a3\\xf5\\x16\\x13\\x13\\x16\\xcb\\xfe@\\x97\\t\\x14\\x11\\v\\v\\x04\\x14\\x15\\x1e\\x01\\x1a\\x19\\x15 \\x15\\x1e\\r\\t\\x14\\x19\\x1f\\x01\\\"\\x17\\x0f\\x17\\r~\\x1c\\x1a4!\\x13\\x10\\x17\\x0f\\x151\\x1f0\\x88\\x1f0\\x1e\\xd8\\x15*\\xb3\\xfe@\\x01\\xc0\\xff\\x00\\v\\x10\\r\\x05\\x04\\x05\\x06\\x04\\x0e\\x12\\x11\\x19\\x13\\x13\\x10\\x13\\n\\x04\\b\\a\\x0e\\x16\\x01\\x16\\x17\\t\\x11D\\x14\\x19\\x8a/\\v\\x14N\\x8a\\x8a\\x8a\\x8a\\x00\\x00\\a\\x00\\f\\xff\\xc7\\x01\\xf4\\x01\\xb8\\x006\\x00C\\x00N\\x00V\\x00a\\x00n\\x00w\\x00\\x00%3\\x0e\\x01#\\\"&54632\\x16\\x17#.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x01\\x1754&#\\\".\\x015467>\\x01\\x16\\x172\\x1e\\x01\\x15\\x14\\x06#\\\"\\x0e\\x02\\x1d\\x01>\\x01'\\x16\\x0e\\x02\\a\\x1632>\\x0154\\a>\\x02&'\\x0e\\x03\\x16'\\\"\\a\\x16\\x1767&\\a3\\x0e\\x01\\x1e\\x01\\x17>\\x01.\\x01\\a327.\\x037\\x06\\x15\\x14\\x16\\x173\\x16\\x1767&'\\x06\\x01\\xda\\x19\\x13|`t\\x84\\x84t`|\\x14\\x19\\x13nVju1_C'$\\x1e-\\x184-\\x0fIJ\\x10\\x1e,\\x175.\\x12\\x1c\\x13\\nQhd\\x04\\x04\\a$\\x1d\\x13+\\x18!\\x11\\x92\\x19\\x1d\\x05\\x01\\x01\\x15\\x1b\\t\\x03\\x02\\x0e+\\x13+\\x13\\x13*\\x13r\\x01\\x02\\x01\\x05\\x1d\\x19\\x02\\x01\\x05\\x1d)\\x01*\\x13\\x1a\\\"\\f\\x04\\x04@&Y\\x01\\x15\\f\\f\\x16\\x17\\v\\fvS[\\x84tt\\x84[SHMujEb6\\x021$'\\x17-\\x1f.4\\x01\\x1f\\x1a\\x18!\\x18-\\x1e/4\\n\\x13\\x1c\\x121\\x03L\\xda\\b$%\\\"\\x06\\x1b\\x11!\\x18D\\\\\\x04\\x1b%\\x15\\b\\x03\\x14\\x18\\x1d\\x0f\\x8e\\x1c\\b##\\b\\x1c3\\a\\x17$\\x1b\\x04\\b\\x16$\\x1c\\x90\\x1b\\x05\\x1d#&\\x0e\\x06D$&\\r\\v\\x17\\x17\\v\\r\\x15\\x16\\x00\\x06\\x00\\a\\xff\\xe0\\x029\\x01\\xa0\\x00\\a\\x00\\x1b\\x00%\\x005\\x00<\\x00H\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1767.\\x0254>\\x0132\\x17676&+\\x01\\x03%\\a'#\\a37\\x1737\\x177#7#\\a\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"'\\a'2\\a\\x06+\\x01?\\x01232\\x1e\\x01\\a\\x0e\\x01+\\x017\\xac褤\\xe8\\xa4\\xc3X\\x1d\\x11\\x1d\\x11\\x15#\\x15\\t\\b\\x01\\x01\\x05%.\\x86M\\x01&\\t\\x0f \\x1a%\\b\\v$\\x16r\\x15h5\\\\\\x16\\x17\\x1c\\x15#\\x15\\x06\\x05\\x10_\\x1f\\a\\a\\x1f\\x19\\x0e.\\x01\\x02\\v\\t\\a\\x02\\x03\\x17\\x0e\\x15\\f\\x01\\xa0\\x83\\xba\\x83\\x83\\xba\\xe2\\x01<\\x04\\x15 \\x12\\x14#\\x14\\x02\\x04\\x03#&\\xfeݸ%%Z##Z\\xb6T\\xcdR\\b'\\x18\\x15#\\x14\\x01=x\\x1e\\x1b9c\\x01\\b\\t\\v\\x130\\x00\\x00\\x00\\x06\\x00\\a\\x00`\\x029\\x01!\\x00\\f\\x00\\x1b\\x00&\\x00<\\x00F\\x00P\\x00\\x00\\x133\\x1773\\x17#'\\a#'\\a#%2\\x1e\\x03\\x17\\x14\\x0e\\x02\\a+\\x015\\x172>\\x0354&/\\x01\\x17\\x1e\\x02\\x14\\x0e\\x02+\\x0253:\\x01\\x1e\\x02\\x17\\x16\\x15\\x14'\\x1530>\\x015.\\x01#\\a6\\x16654&\\a#\\x15\\x11/*)-\\r.\\x04\\x1a-\\x1c\\x05,\\x01#\\x04\\r \\x19\\x14\\x01\\x13\\x1c\\x1c\\n\\n0/\\x02\\a\\x10\\f\\n\\x18\\v\\f\\xee\\x04\\v\\x13\\x12\\x19\\x1a\\t\\t.4\\x02\\a\\x12\\x0e\\r\\x01\\x01<\\f\\x02\\x02\\x02\\b\\x03\\x04\\x02\\x12\\x16\\x15\\n\\n\\x01 vv\\xc0MMPP\\xc0\\x02\\v\\x12'\\x1a\\x1b(\\x12\\n\\x01\\xc0\\x93\\x02\\x06\\n\\x15\\r\\x14\\x1a\\x02\\x02\\x1c\\x01\\x06\\x1d&\\x1b\\f\\x06\\xc0\\x04\\x06\\x0e\\n\\x04\\x05\\x10\\x12\\x15\\x02\\a\\x03\\x05\\x04m\\x01\\x03\\v\\f\\f\\v\\x01\\x12\\x00\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\n\\x00\\x12\\x00\\x16\\x00\\x1e\\x00(\\x00\\x00\\x012\\x16\\x15\\x14\\x0e\\x02+\\x015&2\\x16\\x14\\x06\\\"&4\\x175#\\x156264&\\\"\\x06\\x14\\x172654.\\x01+\\x01\\x15\\x01')+\\a\\x11#\\x18/`Α\\x91Α\\xa7\\x1e\\a\\x10\\f\\f\\x10\\v\\x9f1=\\x164$Q\\x01\\x04,!\\v\\x18\\x1a\\x10\\x9a\\xb4\\x91Α\\x91\\xce\\xd8\\xd0\\xd0\\xe7\\f\\x10\\f\\f\\x10\\xf3>*\\x1a. \\xd0\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa1\\x00E\\x00w\\x00\\x00\\x01\\x14\\x1d\\x01\\x14\\x15\\x14\\x06\\a\\x0e\\x01\\a\\x0e\\x01#\\\"+\\x01\\\"#\\\"&'.\\x01'.\\x0154=\\x01454>\\x017676767>\\x017232;\\x01232\\x16\\x17\\x1e\\a\\x17\\x1e\\x01\\x15\\x14\\a\\x1676'&'656&'\\x1e\\x01\\a\\x06\\a&'&'\\x17\\x16\\x17.\\x02'\\x16\\x17\\x16\\x17\\x0e\\x01'&'\\x1e\\x01\\x17\\x167367>\\x02\\x1e\\x01\\x01\\xc0\\x05\\a\\x06\\x18\\v\\r\\x1e\\x0f\\a\\x06\\xc8\\b\\x05\\x0f\\x1e\\r\\v\\x18\\x06\\a\\x05\\x05\\x0e\\n\\x03\\x03\\b\\n\\x04\\x03\\n\\x16\\v\\x03\\x05\\a\\x06\\xc8\\b\\x05\\x0f\\x1e\\r\\x03\\x06\\x05\\x06\\x06\\x05\\x05\\x04\\x01\\a\\x05F\\x02\\x02\\a\\x19\\x04\\x05\\x01\\x0e;:\\x1a\\x13\\n\\x02\\x02\\x03\\x04LS,\\x1c\\x19\\r/9\\x15\\t\\nN?\\x1eP+\\x15\\x12\\x10>\\x1bQA\\x01\\x03\\x02\\x06\\x0e\\x12\\x10\\x10\\x01$\\v\\x05\\xb8\\b\\x05\\x0f\\x1e\\r\\v\\x18\\x06\\a\\x05\\x05\\a\\x06\\x18\\v\\r\\x1e\\x0f\\a\\x06\\xc8\\b\\x05\\x0f\\x1e\\x1a\\v\\x02\\x03\\a\\x05\\x02\\x01\\x04\\x04\\x01\\x05\\a\\x01\\x04\\x05\\x05\\x06\\x06\\x05\\x06\\x03\\r\\x1e\\x0f\\a\\xf7\\x04\\b (\\a\\x05\\x05\\x017v\\\"#N$\\x06\\x06\\x01\\x03/S<#\\x1a\\a!-\\x13\\x0e\\fc0\\x13\\x01\\x14\\t\\x0e\\x1a5\\v#\\\"\\x02\\x01\\x04\\x04\\x02\\x05\\r\\x00\\x00\\x00\\x02\\x00\\x06\\xff\\xc8\\x01\\xf8\\x01\\xb9\\x00\\f\\x00W\\x00\\x00\\x122\\x16\\x15\\x14\\x0e\\x03#\\\"&4\\x05654'4'&'&5&+\\x01\\a\\x06\\x151\\x15\\x17\\x16\\x17\\x16\\x15\\x14\\a\\x0e\\x04#\\x06#\\\"+\\x01\\\"#\\\"'.\\x01'&5476?\\x01514/\\x01\\\"\\a\\x06\\a\\x06\\a\\x06\\x15\\x06\\x14\\x17\\x1e\\x0273\\x16>\\x01\\x99͑\\x19.=L(g\\x91\\x01\\x89\\x01\\x01\\x03\\x02\\x04\\x01\\x01\\x04\\x01 \\x04\\x01\\x03\\x02\\x03\\b\\x02\\x05\\x06\\a\\b\\x03\\x19\\x1a\\x03\\x04\\n\\x04\\x03\\x1a\\x18\\n\\x12\\x04\\b\\x03\\x02\\x03\\x01\\x04 \\x04\\x01\\x01\\x01\\x03\\x03\\x03\\x01\\x01\\x01\\x1a=7\\x047=\\x1a\\x01\\xb8\\x92f)K=.\\x19\\x92\\xcdy\\b\\b\\a\\b\\x16\\x16\\x0e\\x12\\a\\x01\\x04\\x05\\x01\\x04\\x01\\t\\r\\x14\\x15\\x15)\\x13\\x04\\x06\\x06\\x05\\x04\\x06\\x06\\x01\\x0f\\t\\x13)\\x15\\x15\\x14\\r\\t\\x01\\x04\\x01\\x05\\x04\\x01\\a\\x11\\x0f\\x16\\x16\\b\\x0f\\b)0\\x16\\x01\\x01\\x160\\x00\\x02\\x00\\f\\xff\\xc8\\x01\\xfa\\x01\\xc0\\x00\\x00\\x00\\x85\\x00\\x00\\x13\\x05\\x16\\a\\x06\\x15\\x0e\\x01#\\\"&=\\x016505656567676767>\\x011\\x06\\x1767\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x1e\\x02\\x15\\x0e\\x01#\\\"\\x0e\\x02\\x0f\\x01\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x163\\x16>\\x01&'6\\x17&'&#&'\\\"'&'\\\"'&'&#0&1&#\\\"1\\\"#\\a\\x06\\a\\x15\\\"#\\\"'454767>\\x0179\\x0130\\x15\\x16\\x17\\x16\\x17\\x16\\x17\\x1e\\x01\\x175&'\\x1e\\x01\\x83\\x01_\\x18\\b\\x01\\x0f\\x88Ze\\x8f\\x01\\x01\\x01\\x02\\x02\\t\\x18\\n\\r\\v\\r\\x01\\a\\x03\\v\\x1c\\x1f\\x04\\x05\\x03\\x03\\x03\\x0e\\a\\x1e\\x16\\x01\\x17\\x06\\x13\\x1f\\x10\\v\\x02\\x01\\x02 \\x17\\x02\\x02\\x04\\x04\\x0f\\x10,9\\x0e\\x1a\\x1f\\x1f\\x1c\\x10\\x1b\\x02\\x01\\x02\\x03\\x01\\x01\\x03\\x02\\x01\\x02\\x02\\x02\\x03\\x03\\x02\\x11\\x11\\x01\\x03\\x03\\x01\\x17\\x14\\x01\\x01\\x04\\x02\\x03\\x17\\x1a\\x05(%\\x01\\x02\\x02\\x01\\x02\\x02\\x03\\rT\\x10\\x06\\x13\\r\\x1c\\x01E.8B\\t\\x01Ws\\x8ee\\x02\\x04\\x04\\x01\\b\\x06\\x02\\x03\\f\\v(\\\"\\x0e\\r\\v\\t\\x01\\x04/\\x0e\\x1f\\x0e\\x0e\\x0f\\x0f\\x10\\x02\\x02\\x03\\r\\b\\x10\\v\\x01\\x04\\x17\\b\\r\\f\\x04\\x05\\x19*\\f\\x01\\x01\\x02\\x01\\x06\\x02.?B\\x10\\x05\\x13\\x1b\\x11\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x05\\x01\\x01\\t\\x01\\x04\\x01\\x01\\x04\\x02\\v\\x01!D\\x16\\x01\\x05\\x04\\x03\\x02\\x04\\x06\\x14a(\\x01$&\\a$\\x00\\x00\\x00\\x00\\t\\x00 \\xff\\xe0\\x02'\\x01\\xa0\\x00\\a\\x00\\v\\x00\\x12\\x00)\\x005\\x00=\\x00I\\x00R\\x00V\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1753\\x157\\x14+\\x01532\\x173\\x06+\\x01532>\\x0254&+\\x01532\\x17#5#\\a5#535#535#\\x15;\\x01'#\\a373'2\\x1e\\x03\\x15\\x14\\x06#!\\x11\\x012654&+\\x01\\x11\\x013\\x17#i)\\x1d\\x1d)\\x1c\\tOI\\x13\\x0e\\x0e\\x13\\xc99\\x03\\xc1_\\x0e\\n\\x0f\\v\\x05\\x16\\x13\\x0e_\\xb9\\v\\\"\\x17m\\\"\\x1e\\x1e 7\\x83\\x18\\x1c \\x1c\\x18\\x05\\x1ec>^5 \\n\\x82y\\xfe\\xf4\\x01\\fpvym\\xf7\\x01K\\x01\\a\\x10\\x01\\x1b\\x1d)\\x1d\\x1d)荍\\xd4\\x18.D\\xa6\\xa6\\x06\\f\\x11\\v\\x15\\x18S\\x98E[\\x16\\r\\x17\\n\\x17[[[\\x11\\xd3\\x1f.@6\\x1cmt\\x01\\xc0\\xfeUgeee\\xfej\\x01\\t\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\xff\\xdf\\x01\\xbf\\x01\\xa0\\x00\\x1f\\x00@\\x00\\x00%3\\x0e\\x02\\x15\\x14\\x17\\x16\\x15\\x06#0#&'&#\\\"#\\x06#\\\"&4632\\x1e\\x01\\x15\\x14'654#/\\x01&\\\"\\x0f\\x02\\\"\\x15\\x14\\x1f\\x01\\a\\x14\\x15\\x1432?\\x01\\x17\\x1632545'\\x01\\x8f\\x01\\x06\\n\\x06\\x12\\x01\\x01\\x04\\x013\\x1c\\x03\\x03\\x01\\x02&)\\\\\\x82\\x82\\\\<g;t\\x02\\x06H\\x18\\x01\\n\\x01\\x18H\\x06\\x02:\\x15\\x06\\x02\\x02;;\\x02\\x02\\x06\\x15V\\a\\x14\\x16\\t\\x1d\\x18\\x01\\x02\\x04\\f&\\x03\\x0ex\\xa9x7^7G_\\x02\\x03\\x06\\x02D\\x04\\x04D\\x02\\x06\\x03\\x02,E\\x01\\x01\\x06\\x01))\\x01\\x06\\x01\\x01E\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00\\n\\x00#\\x00\\x007\\a\\x13463!\\x0e\\x01\\a\\x06\\x01\\x101\\x14\\x06#!>\\x017>\\x027>\\x027>\\x057  \\x01F1\\x01GE\\x881Y\\x01XF1\\xfe\\xb7\\r3\\x15\\v/#\\r\\x12\\x18\\x15\\b\\b\\x1f\\\"%!\\x1b\\b\\x1d<\\x01H1F\\x16Z9f\\x01\\x0f\\xfe\\xb71F\\x11&\\v\\x05\\x14\\x13\\f\\x124H\\x11\\x14) \\x1d\\x15\\x10\\x04\\x00\\x00\\x04\\x00\\x0f\\xff\\xce\\x01\\xf3\\x01\\xb2\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x00%\\a\\x17\\a/\\x01#'73?\\x01\\x0f\\x0137\\x03\\x17'#\\x057'\\a\\x01\\xf2\\x1e\\x1e5\\xc5\\x1d;\\x90\\x90;\\x1d\\xc5\\xddm\\xadW\\x97\\x97W\\xad\\x01.**W\\xf222\\xbf32\\x8c\\x8c23ml\\x91\\xfe\\xd3&\\x92z\\x92\\x92\\x92\\x00\\x00\\x00\\x00\\x1c\\x01V\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x006\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x1d\\x00\\x8d\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\a\\x00\\xbb\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x03\\x00$\\x01\\r\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x1d\\x01n\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x00&\\x01\\xda\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x1a\\x027\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\n\\x00,\\x02\\xac\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\v\\x00\\x17\\x03\\t\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x15\\x03M\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\a\\x03s\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x1d\\x03\\xb7\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x15\\x04\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\a\\x04'\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x00\\x004\\x00\\x00\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x01\\x00:\\x00Q\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x02\\x00\\x0e\\x00\\xab\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x03\\x00H\\x00\\xc3\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x04\\x00:\\x012\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x05\\x00L\\x01\\x8c\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x06\\x004\\x02\\x01\\x00\\x03\\x00\\x01\\x04\\t\\x00\\n\\x00X\\x02R\\x00\\x03\\x00\\x01\\x04\\t\\x00\\v\\x00.\\x02\\xd9\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x10\\x00*\\x03!\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x11\\x00\\x0e\\x03c\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x12\\x00:\\x03{\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x15\\x00*\\x03\\xd5\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x16\\x00\\x0e\\x04\\x17\\x00C\\x00o\\x00p\\x00y\\x00r\\x00i\\x00g\\x00h\\x00t\\x00 \\x00(\\x00c\\x00)\\x00 \\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00\\x00Copyright (c) Font Awesome\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Brands Regular\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00-\\x005\\x00.\\x001\\x002\\x00.\\x000\\x00\\x00Font Awesome 5 Brands Regular-5.12.0\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Brands Regular\\x00\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00330.752 (Font Awesome version: 5.12.0)\\x00\\x00F\\x00o\\x00n\\x00t\\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x005\\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00-\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00FontAwesome5Brands-Regular\\x00\\x00T\\x00h\\x00e\\x00 \\x00w\\x00e\\x00b\\x00'\\x00s\\x00 \\x00m\\x00o\\x00s\\x00t\\x00 \\x00p\\x00o\\x00p\\x00u\\x00l\\x00a\\x00r\\x00 \\x00i\\x00c\\x00o\\x00n\\x00 \\x00s\\x00e\\x00t\\x00 \\x00a\\x00n\\x00d\\x00 \\x00t\\x00o\\x00o\\x00l\\x00k\\x00i\\x00t\\x00.\\x00\\x00The web's most popular icon set and toolkit.\\x00\\x00h\\x00t\\x00t\\x00p\\x00s\\x00:\\x00/\\x00/\\x00f\\x00o\\x00n\\x00t\\x00a\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00.\\x00c\\x00o\\x00m\\x00\\x00https://fontawesome.com\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00\\x00Font Awesome 5 Brands\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Brands Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00\\x00Font Awesome 5 Brands\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xdb\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xb9\\x00\\x00\\x00\\x01\\x00\\x02\\x01\\x02\\x01\\x03\\x01\\x04\\x01\\x05\\x01\\x06\\x01\\a\\x01\\b\\x01\\t\\x01\\n\\x01\\v\\x01\\f\\x01\\r\\x01\\x0e\\x01\\x0f\\x01\\x10\\x01\\x11\\x01\\x12\\x01\\x13\\x01\\x14\\x01\\x15\\x01\\x16\\x01\\x17\\x01\\x18\\x01\\x19\\x01\\x1a\\x01\\x1b\\x01\\x1c\\x01\\x1d\\x00\\xd2\\x01\\x1e\\x01\\x1f\\x01 \\x01!\\x01\\\"\\x01#\\x01$\\x01%\\x01&\\x01'\\x01(\\x01)\\x01*\\x01+\\x01,\\x01-\\x01.\\x01/\\x010\\x011\\x012\\x013\\x014\\x015\\x016\\x017\\x018\\x019\\x01:\\x01;\\x01<\\x01=\\x01>\\x01?\\x01@\\x01A\\x01B\\x01C\\x01D\\x01E\\x01F\\x01G\\x01H\\x01I\\x01J\\x01K\\x01L\\x01M\\x01N\\x01O\\x01P\\x01Q\\x01R\\x01S\\x01T\\x01U\\x01V\\x01W\\x01X\\x01Y\\x01Z\\x01[\\x01\\\\\\x01]\\x01^\\x01_\\x01`\\x01a\\x01b\\x01c\\x01d\\x01e\\x01f\\x01g\\x01h\\x01i\\x01j\\x01k\\x01l\\x01m\\x01n\\x01o\\x01p\\x01q\\x01r\\x01s\\x01t\\x01u\\x01v\\x01w\\x01x\\x01y\\x01z\\x01{\\x01|\\x01}\\x01~\\x01\\u007f\\x01\\x80\\x01\\x81\\x01\\x82\\x01\\x83\\x01\\x84\\x01\\x85\\x01\\x86\\x01\\x87\\x01\\x88\\x01\\x89\\x01\\x8a\\x01\\x8b\\x01\\x8c\\x01\\x8d\\x01\\x8e\\x01\\x8f\\x01\\x90\\x01\\x91\\x01\\x92\\x01\\x93\\x01\\x94\\x01\\x95\\x01\\x96\\x01\\x97\\x01\\x98\\x01\\x99\\x01\\x9a\\x01\\x9b\\x01\\x9c\\x01\\x9d\\x01\\x9e\\x01\\x9f\\x01\\xa0\\x01\\xa1\\x01\\xa2\\x01\\xa3\\x01\\xa4\\x01\\xa5\\x01\\xa6\\x01\\xa7\\x01\\xa8\\x01\\xa9\\x01\\xaa\\x01\\xab\\x01\\xac\\x01\\xad\\x01\\xae\\x01\\xaf\\x01\\xb0\\x01\\xb1\\x01\\xb2\\x01\\xb3\\x01\\xb4\\x01\\xb5\\x01\\xb6\\x01\\xb7\\x01\\xb8\\x01\\xb9\\x01\\xba\\x01\\xbb\\x01\\xbc\\x01\\xbd\\x01\\xbe\\x01\\xbf\\x01\\xc0\\x01\\xc1\\x01\\xc2\\x01\\xc3\\x01\\xc4\\x01\\xc5\\x01\\xc6\\x01\\xc7\\x01\\xc8\\x01\\xc9\\x01\\xca\\x01\\xcb\\x01\\xcc\\x01\\xcd\\x01\\xce\\x01\\xcf\\x01\\xd0\\x01\\xd1\\x01\\xd2\\x01\\xd3\\x01\\xd4\\x01\\xd5\\x01\\xd6\\x01\\xd7\\x01\\xd8\\x01\\xd9\\x01\\xda\\x01\\xdb\\x01\\xdc\\x01\\xdd\\x01\\xde\\x01\\xdf\\x01\\xe0\\x01\\xe1\\x01\\xe2\\x01\\xe3\\x01\\xe4\\x01\\xe5\\x01\\xe6\\x01\\xe7\\x01\\xe8\\x01\\xe9\\x01\\xea\\x01\\xeb\\x01\\xec\\x01\\xed\\x01\\xee\\x01\\xef\\x01\\xf0\\x01\\xf1\\x01\\xf2\\x01\\xf3\\x01\\xf4\\x01\\xf5\\x01\\xf6\\x01\\xf7\\x01\\xf8\\x01\\xf9\\x01\\xfa\\x01\\xfb\\x01\\xfc\\x01\\xfd\\x01\\xfe\\x01\\xff\\x02\\x00\\x02\\x01\\x02\\x02\\x02\\x03\\x02\\x04\\x02\\x05\\x02\\x06\\x02\\a\\x02\\b\\x02\\t\\x02\\n\\x02\\v\\x02\\f\\x02\\r\\x02\\x0e\\x02\\x0f\\x02\\x10\\x02\\x11\\x02\\x12\\x02\\x13\\x02\\x14\\x02\\x15\\x02\\x16\\x02\\x17\\x02\\x18\\x02\\x19\\x02\\x1a\\x02\\x1b\\x02\\x1c\\x02\\x1d\\x02\\x1e\\x02\\x1f\\x02 \\x02!\\x02\\\"\\x02#\\x02$\\x02%\\x02&\\x02'\\x02(\\x02)\\x02*\\x02+\\x02,\\x02-\\x02.\\x02/\\x020\\x021\\x022\\x00\\x1f\\x023\\x024\\x025\\x026\\x027\\x028\\x029\\x02:\\x02;\\x02<\\x02=\\x02>\\x02?\\x02@\\x02A\\x02B\\x02C\\x02D\\x02E\\x02F\\x02G\\x02H\\x02I\\x02J\\x02K\\x02L\\x02M\\x02N\\x02O\\x02P\\x02Q\\x02R\\x02S\\x02T\\x02U\\x02V\\x02W\\x02X\\x02Y\\x02Z\\x02[\\x02\\\\\\x02]\\x02^\\x02_\\x02`\\x02a\\x02b\\x02c\\x02d\\x02e\\x02f\\x02g\\x02h\\x02i\\x02j\\x02k\\x02l\\x02m\\x02n\\x02o\\x02p\\x02q\\x02r\\x02s\\x02t\\x02u\\x02v\\x02w\\x02x\\x02y\\x02z\\x02{\\x02|\\x02}\\x02~\\x02\\u007f\\x02\\x80\\x02\\x81\\x02\\x82\\x02\\x83\\x02\\x84\\x02\\x85\\x02\\x86\\x02\\x87\\x02\\x88\\x02\\x89\\x02\\x8a\\x02\\x8b\\x02\\x8c\\x02\\x8d\\x02\\x8e\\x02\\x8f\\x02\\x90\\x02\\x91\\x02\\x92\\x02\\x93\\x02\\x94\\x02\\x95\\x02\\x96\\x02\\x97\\x02\\x98\\x02\\x99\\x02\\x9a\\x02\\x9b\\x02\\x9c\\x02\\x9d\\x02\\x9e\\x02\\x9f\\x02\\xa0\\x02\\xa1\\x02\\xa2\\x02\\xa3\\x02\\xa4\\x02\\xa5\\x02\\xa6\\x02\\xa7\\x02\\xa8\\x02\\xa9\\x02\\xaa\\x02\\xab\\x02\\xac\\x02\\xad\\x02\\xae\\x02\\xaf\\x02\\xb0\\x02\\xb1\\x02\\xb2\\x02\\xb3\\x02\\xb4\\x02\\xb5\\x0etwitter-square\\x0ffacebook-square\\blinkedin\\rgithub-square\\atwitter\\bfacebook\\x06github\\tpinterest\\x10pinterest-square\\x12google-plus-square\\rgoogle-plus-g\\vlinkedin-in\\ngithub-alt\\x06maxcdn\\x05html5\\x04css3\\x03btc\\ayoutube\\x04xing\\vxing-square\\adropbox\\x0estack-overflow\\tinstagram\\x06flickr\\x03adn\\tbitbucket\\x06tumblr\\rtumblr-square\\awindows\\aandroid\\x05linux\\bdribbble\\x05skype\\nfoursquare\\x06trello\\bgratipay\\x02vk\\x05weibo\\x06renren\\tpagelines\\x0estack-exchange\\fvimeo-square\\x05slack\\twordpress\\x06openid\\x05yahoo\\x06google\\x06reddit\\rreddit-square\\x12stumbleupon-circle\\vstumbleupon\\tdelicious\\x04digg\\rpied-piper-pp\\x0epied-piper-alt\\x06drupal\\x06joomla\\abehance\\x0ebehance-square\\x05steam\\fsteam-square\\aspotify\\ndeviantart\\nsoundcloud\\x04vine\\acodepen\\bjsfiddle\\x05rebel\\x06empire\\ngit-square\\x03git\\vhacker-news\\rtencent-weibo\\x02qq\\x06weixin\\nslideshare\\x06twitch\\x04yelp\\x06paypal\\rgoogle-wallet\\acc-visa\\rcc-mastercard\\vcc-discover\\acc-amex\\tcc-paypal\\tcc-stripe\\x06lastfm\\rlastfm-square\\aioxhost\\tangellist\\nbuysellads\\x0econnectdevelop\\bdashcube\\bforumbee\\aleanpub\\x06sellsy\\fshirtsinbulk\\vsimplybuilt\\bskyatlas\\vpinterest-p\\bwhatsapp\\aviacoin\\x06medium\\fy-combinator\\roptin-monster\\bopencart\\fexpeditedssl\\x06cc-jcb\\x0ecc-diners-club\\x10creative-commons\\x02gg\\tgg-circle\\vtripadvisor\\rodnoklassniki\\x14odnoklassniki-square\\nget-pocket\\vwikipedia-w\\x06safari\\x06chrome\\afirefox\\x05opera\\x11internet-explorer\\x06contao\\x05500px\\x06amazon\\x05houzz\\avimeo-v\\tblack-tie\\tfonticons\\freddit-alien\\x04edge\\bcodiepie\\x04modx\\ffort-awesome\\x03usb\\fproduct-hunt\\bmixcloud\\x06scribd\\tbluetooth\\vbluetooth-b\\x06gitlab\\nwpbeginner\\awpforms\\x06envira\\x05glide\\aglide-g\\x06viadeo\\rviadeo-square\\bsnapchat\\x0esnapchat-ghost\\x0fsnapchat-square\\npied-piper\\vfirst-order\\x05yoast\\tthemeisle\\vgoogle-plus\\ffont-awesome\\x06linode\\x05quora\\x0efree-code-camp\\btelegram\\bbandcamp\\x04grav\\x04etsy\\x04imdb\\aravelry\\bsellcast\\vsuperpowers\\nwpexplorer\\x06meetup\\x10font-awesome-alt\\x0faccessible-icon\\baccusoft\\badversal\\x0eaffiliatetheme\\aalgolia\\x06amilia\\rangrycreative\\tapp-store\\rapp-store-ios\\x05apper\\nasymmetrik\\aaudible\\aavianex\\x03aws\\tbimobject\\abitcoin\\x04bity\\nblackberry\\ablogger\\tblogger-b\\x10buromobelexperte\\ncentercode\\ncloudscale\\ncloudsmith\\fcloudversify\\x06cpanel\\bcss3-alt\\ncuttlefish\\ad-and-d\\tdeploydog\\adeskpro\\rdigital-ocean\\adiscord\\tdiscourse\\x06dochub\\x06docker\\rdraft2digital\\x0fdribbble-square\\x06dyalog\\nearlybirds\\x06erlang\\nfacebook-f\\x12facebook-messenger\\nfirstdraft\\ffonticons-fi\\x10fort-awesome-alt\\afreebsd\\tgitkraken\\x06gofore\\tgoodreads\\vgoodreads-g\\fgoogle-drive\\vgoogle-play\\bgripfire\\x05grunt\\x04gulp\\x12hacker-news-square\\rhire-a-helper\\x06hotjar\\ahubspot\\x06itunes\\vitunes-note\\ajenkins\\x05joget\\x02js\\tjs-square\\x06keycdn\\vkickstarter\\rkickstarter-k\\alaravel\\x04line\\x04lyft\\amagento\\amedapps\\bmedium-m\\x05medrt\\tmicrosoft\\x03mix\\x06mizuni\\x06monero\\anapster\\anode-js\\x03npm\\x03ns8\\vnutritionix\\x05page4\\x06palfed\\apatreon\\tperiscope\\vphabricator\\x11phoenix-framework\\vplaystation\\x06pushed\\x06python\\tred-river\\awpressr\\x06replyd\\tresolving\\nrocketchat\\arockrms\\x06schlix\\vsearchengin\\fservicestack\\asistrix\\nslack-hash\\aspeakap\\nstaylinked\\fsteam-symbol\\fsticker-mule\\fstudiovinari\\x06supple\\x0etelegram-plane\\x04uber\\x05uikit\\vuniregistry\\auntappd\\bussunnah\\x06vaadin\\x05viber\\x05vimeo\\x03vnv\\x0fwhatsapp-square\\x05whmcs\\x10wordpress-simple\\x04xbox\\x06yandex\\x14yandex-international\\tapple-pay\\fcc-apple-pay\\x03fly\\x04node\\x03osi\\x05react\\fautoprefixer\\x04sass\\x05vuejs\\aangular\\x06aviato\\x05ember\\x11font-awesome-flag\\x06gitter\\x05hooli\\x06strava\\x06stripe\\bstripe-s\\x05typo3\\namazon-pay\\rcc-amazon-pay\\bethereum\\x06korvue\\telementor\\x0eyoutube-square\\tflipboard\\x04hips\\x03php\\tquinscape\\x06readme\\x04java\\x0epied-piper-hat\\x13creative-commons-by\\x13creative-commons-nc\\x16creative-commons-nc-eu\\x16creative-commons-nc-jp\\x13creative-commons-nd\\x13creative-commons-pd\\x17creative-commons-pd-alt\\x16creative-commons-remix\\x13creative-commons-sa\\x19creative-commons-sampling\\x1ecreative-commons-sampling-plus\\x16creative-commons-share\\x15creative-commons-zero\\x04ebay\\akeybase\\bmastodon\\tr-project\\fresearchgate\\tteamspeak\\x0ffirst-order-alt\\afulcrum\\x11galactic-republic\\x0fgalactic-senate\\njedi-order\\vmandalorian\\fold-republic\\x10phoenix-squadron\\x04sith\\x10trade-federation\\x13wolf-pack-battalion\\bhornbill\\tmailchimp\\bmegaport\\x06nimblr\\x03rev\\bshopware\\vsquarespace\\athemeco\\x06weebly\\x03wix\\x04ello\\nhackerrank\\x06kaggle\\bmarkdown\\x04neos\\x05zhihu\\x06alipay\\fthe-red-yeti\\x19acquisitions-incorporated\\rcritical-role\\x0ed-and-d-beyond\\x03dev\\x14fantasy-flight-games\\fpenny-arcade\\x14wizards-of-the-coast\\vthink-peaks\\vreacteurope\\x05adobe\\nartstation\\tatlassian\\x13canadian-maple-leaf\\x06centos\\nconfluence\\x03dhl\\bdiaspora\\x05fedex\\x06fedora\\x05figma\\bintercom\\binvision\\x04jira\\bmendeley\\fraspberry-pi\\x06redhat\\x06sketch\\nsourcetree\\x04suse\\x06ubuntu\\x03ups\\x04usps\\x04yarn\\x06airbnb\\nbattle-net\\tbootstrap\\x06buffer\\nchromecast\\bevernote\\aitch-io\\nsalesforce\\fspeaker-deck\\asymfony\\x04waze\\x06yammer\\agit-alt\\tstackpath\\rcotton-bureau\\vbuy-n-large\\x03mdb\\x05orcid\\x05swift\\aumbraco\\x0ffirefox-browser\\x05ideal\\tmicroblog\\x11pied-piper-square\\x05unity\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x01\\xb8\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\xd9k%\\xf9\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\"\nvar _Assets9af9b32d4979a14fbf6f85fef5e28a54c6ceb4d8 = \"package gateway\\n\\nimport (\\n\\t\\\"context\\\"\\n\\t\\\"fmt\\\"\\n\\t\\\"io\\\"\\n\\t\\\"mime\\\"\\n\\t\\\"net/http\\\"\\n\\t\\\"path\\\"\\n\\t\\\"path/filepath\\\"\\n\\t\\\"strconv\\\"\\n\\t\\\"strings\\\"\\n\\t\\\"time\\\"\\n\\n\\t\\\"github.com/gin-gonic/gin\\\"\\n\\tassets \\\"github.com/textileio/go-assets\\\"\\n\\t\\\"github.com/textileio/go-threads/core/thread\\\"\\n\\t\\\"github.com/textileio/go-threads/db\\\"\\n\\t\\\"github.com/textileio/textile/v2/api/bucketsd/client\\\"\\n\\t\\\"github.com/textileio/textile/v2/api/common\\\"\\n\\t\\\"github.com/textileio/textile/v2/buckets\\\"\\n\\tmdb \\\"github.com/textileio/textile/v2/mongodb\\\"\\n\\ttdb \\\"github.com/textileio/textile/v2/threaddb\\\"\\n\\t\\\"github.com/textileio/textile/v2/util\\\"\\n)\\n\\ntype fileSystem struct {\\n\\t*assets.FileSystem\\n}\\n\\nfunc (f *fileSystem) Exists(prefix, path string) bool {\\n\\tpth := strings.TrimPrefix(path, prefix)\\n\\tif pth == \\\"/\\\" {\\n\\t\\treturn false\\n\\t}\\n\\t_, ok := f.Files[pth]\\n\\treturn ok\\n}\\n\\nfunc (g *Gateway) renderBucket(c *gin.Context, ctx context.Context, threadID thread.ID, token thread.Token) {\\n\\trep, err := g.buckets.List(ctx)\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusBadRequest, err)\\n\\t\\treturn\\n\\t}\\n\\tlinks := make([]link, len(rep.Roots))\\n\\tfor i, r := range rep.Roots {\\n\\t\\tvar name string\\n\\t\\tif r.Name != \\\"\\\" {\\n\\t\\t\\tname = r.Name\\n\\t\\t} else {\\n\\t\\t\\tname = r.Key\\n\\t\\t}\\n\\t\\tp := path.Join(\\\"thread\\\", threadID.String(), buckets.CollectionName, r.Key)\\n\\t\\tif token.Defined() {\\n\\t\\t\\tp += \\\"?token=\\\" + string(token)\\n\\t\\t}\\n\\t\\tlinks[i] = link{\\n\\t\\t\\tName:  name,\\n\\t\\t\\tPath:  p,\\n\\t\\t\\tSize:  \\\"\\\",\\n\\t\\t\\tLinks: \\\"\\\",\\n\\t\\t}\\n\\t}\\n\\tc.HTML(http.StatusOK, \\\"/public/html/unixfs.gohtml\\\", gin.H{\\n\\t\\t\\\"Title\\\":   \\\"Index of \\\" + path.Join(\\\"/thread\\\", threadID.String(), buckets.CollectionName),\\n\\t\\t\\\"Root\\\":    \\\"/\\\",\\n\\t\\t\\\"Path\\\":    \\\"\\\",\\n\\t\\t\\\"Updated\\\": \\\"\\\",\\n\\t\\t\\\"Back\\\":    \\\"\\\",\\n\\t\\t\\\"Links\\\":   links,\\n\\t})\\n}\\n\\nfunc (g *Gateway) renderBucketPath(c *gin.Context, ctx context.Context, threadID thread.ID, collection, id, pth string, token thread.Token) {\\n\\tvar buck tdb.Bucket\\n\\tif err := g.threads.FindByID(ctx, threadID, collection, id, &buck, db.WithTxnToken(token)); err != nil {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\trep, err := g.buckets.ListPath(ctx, buck.Key, pth)\\n\\tif err != nil {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\tif !rep.Item.IsDir {\\n\\t\\tif err := g.buckets.PullPath(ctx, buck.Key, pth, c.Writer); err != nil {\\n\\t\\t\\trender404(c)\\n\\t\\t}\\n\\t} else {\\n\\t\\tvar base string\\n\\t\\tif g.subdomains {\\n\\t\\t\\tbase = buckets.CollectionName\\n\\t\\t} else {\\n\\t\\t\\tbase = path.Join(\\\"thread\\\", threadID.String(), buckets.CollectionName)\\n\\t\\t}\\n\\t\\tvar links []link\\n\\t\\tfor _, item := range rep.Item.Items {\\n\\t\\t\\tpth := path.Join(base, strings.Replace(item.Path, rep.Root.Path, rep.Root.Key, 1))\\n\\t\\t\\tif token.Defined() {\\n\\t\\t\\t\\tpth += \\\"?token=\\\" + string(token)\\n\\t\\t\\t}\\n\\t\\t\\tlinks = append(links, link{\\n\\t\\t\\t\\tName:  item.Name,\\n\\t\\t\\t\\tPath:  pth,\\n\\t\\t\\t\\tSize:  util.ByteCountDecimal(item.Size),\\n\\t\\t\\t\\tLinks: strconv.Itoa(len(item.Items)),\\n\\t\\t\\t})\\n\\t\\t}\\n\\t\\tvar name string\\n\\t\\tif rep.Root.Name != \\\"\\\" {\\n\\t\\t\\tname = rep.Root.Name\\n\\t\\t} else {\\n\\t\\t\\tname = rep.Root.Key\\n\\t\\t}\\n\\t\\troot := strings.Replace(rep.Item.Path, rep.Root.Path, name, 1)\\n\\t\\tback := path.Dir(path.Join(base, strings.Replace(rep.Item.Path, rep.Root.Path, rep.Root.Key, 1)))\\n\\t\\tif token.Defined() {\\n\\t\\t\\tback += \\\"?token=\\\" + string(token)\\n\\t\\t}\\n\\t\\tc.HTML(http.StatusOK, \\\"/public/html/unixfs.gohtml\\\", gin.H{\\n\\t\\t\\t\\\"Title\\\":   \\\"Index of /\\\" + root,\\n\\t\\t\\t\\\"Root\\\":    \\\"/\\\" + root,\\n\\t\\t\\t\\\"Path\\\":    rep.Item.Path,\\n\\t\\t\\t\\\"Updated\\\": time.Unix(0, rep.Root.UpdatedAt).String(),\\n\\t\\t\\t\\\"Back\\\":    back,\\n\\t\\t\\t\\\"Links\\\":   links,\\n\\t\\t})\\n\\t}\\n}\\n\\ntype serveBucketFS interface {\\n\\tGetThread(ctx context.Context, key string) (thread.ID, error)\\n\\tExists(ctx context.Context, bucket, pth string) (bool, string)\\n\\tWrite(ctx context.Context, bucket, pth string, writer io.Writer) error\\n\\tValidHost() string\\n}\\n\\ntype bucketFS struct {\\n\\tclient  *client.Client\\n\\tkeys    *mdb.IPNSKeys\\n\\tsession string\\n\\thost    string\\n}\\n\\nfunc serveBucket(fs serveBucketFS) gin.HandlerFunc {\\n\\treturn func(c *gin.Context) {\\n\\t\\tkey, err := bucketFromHost(c.Request.Host, fs.ValidHost())\\n\\t\\tif err != nil {\\n\\t\\t\\treturn\\n\\t\\t}\\n\\n\\t\\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\t\\tdefer cancel()\\n\\t\\tthreadID, err := fs.GetThread(ctx, key)\\n\\t\\tif err != nil {\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t\\tctx = common.NewThreadIDContext(ctx, threadID)\\n\\t\\ttoken := thread.Token(c.Query(\\\"token\\\"))\\n\\t\\tif token.Defined() {\\n\\t\\t\\tctx = thread.NewTokenContext(ctx, token)\\n\\t\\t}\\n\\n\\t\\texists, target := fs.Exists(ctx, key, c.Request.URL.Path)\\n\\t\\tif exists {\\n\\t\\t\\tc.Writer.WriteHeader(http.StatusOK)\\n\\t\\t\\tctype := mime.TypeByExtension(filepath.Ext(c.Request.URL.Path))\\n\\t\\t\\tif ctype == \\\"\\\" {\\n\\t\\t\\t\\tctype = \\\"application/octet-stream\\\"\\n\\t\\t\\t}\\n\\t\\t\\tc.Writer.Header().Set(\\\"Content-Type\\\", ctype)\\n\\t\\t\\tif err := fs.Write(ctx, key, c.Request.URL.Path, c.Writer); err != nil {\\n\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tc.Abort()\\n\\t\\t\\t}\\n\\t\\t} else if target != \\\"\\\" {\\n\\t\\t\\tcontent := path.Join(c.Request.URL.Path, target)\\n\\t\\t\\tctype := mime.TypeByExtension(filepath.Ext(content))\\n\\t\\t\\tc.Writer.WriteHeader(http.StatusOK)\\n\\t\\t\\tc.Writer.Header().Set(\\\"Content-Type\\\", ctype)\\n\\t\\t\\tif err := fs.Write(ctx, key, content, c.Writer); err != nil {\\n\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tc.Abort()\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\\nfunc (f *bucketFS) GetThread(ctx context.Context, bkey string) (id thread.ID, err error) {\\n\\tkey, err := f.keys.GetByCid(ctx, bkey)\\n\\tif err != nil {\\n\\t\\treturn\\n\\t}\\n\\treturn key.ThreadID, nil\\n}\\n\\nfunc (f *bucketFS) Exists(ctx context.Context, key, pth string) (ok bool, name string) {\\n\\tif key == \\\"\\\" || pth == \\\"/\\\" {\\n\\t\\treturn\\n\\t}\\n\\tctx = common.NewSessionContext(ctx, f.session)\\n\\trep, err := f.client.ListPath(ctx, key, pth)\\n\\tif err != nil {\\n\\t\\treturn\\n\\t}\\n\\tif rep.Item.IsDir {\\n\\t\\tfor _, item := range rep.Item.Items {\\n\\t\\t\\tif item.Name == \\\"index.html\\\" {\\n\\t\\t\\t\\treturn false, item.Name\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\treturn\\n\\t}\\n\\treturn true, \\\"\\\"\\n}\\n\\nfunc (f *bucketFS) Write(ctx context.Context, key, pth string, writer io.Writer) error {\\n\\tctx = common.NewSessionContext(ctx, f.session)\\n\\treturn f.client.PullPath(ctx, key, pth, writer)\\n}\\n\\nfunc (f *bucketFS) ValidHost() string {\\n\\treturn f.host\\n}\\n\\n// renderWWWBucket renders a bucket as a website.\\nfunc (g *Gateway) renderWWWBucket(c *gin.Context, key string) {\\n\\tctx, cancel := context.WithTimeout(common.NewSessionContext(context.Background(), g.apiSession), handlerTimeout)\\n\\tdefer cancel()\\n\\tipnskey, err := g.collections.IPNSKeys.GetByCid(ctx, key)\\n\\tif err != nil {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\tctx = common.NewThreadIDContext(ctx, ipnskey.ThreadID)\\n\\ttoken := thread.Token(c.Query(\\\"token\\\"))\\n\\tif token.Defined() {\\n\\t\\tctx = thread.NewTokenContext(ctx, token)\\n\\t}\\n\\n\\tbuck := &tdb.Bucket{}\\n\\tif err := g.threads.FindByID(ctx, ipnskey.ThreadID, buckets.CollectionName, key, &buck, db.WithTxnToken(token)); err != nil {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\trep, err := g.buckets.ListPath(ctx, buck.Key, \\\"\\\")\\n\\tif err != nil {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\tfor _, item := range rep.Item.Items {\\n\\t\\tif item.Name == \\\"index.html\\\" {\\n\\t\\t\\tc.Writer.WriteHeader(http.StatusOK)\\n\\t\\t\\tc.Writer.Header().Set(\\\"Content-Type\\\", \\\"text/html\\\")\\n\\t\\t\\tif err := g.buckets.PullPath(ctx, buck.Key, item.Name, c.Writer); err != nil {\\n\\t\\t\\t\\trender404(c)\\n\\t\\t\\t}\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t}\\n\\trenderError(c, http.StatusNotFound, fmt.Errorf(\\\"an index.html file was not found in this bucket\\\"))\\n}\\n\\nfunc bucketFromHost(host, valid string) (key string, err error) {\\n\\tparts := strings.SplitN(host, \\\".\\\", 2)\\n\\thostport := parts[len(parts)-1]\\n\\thostparts := strings.SplitN(hostport, \\\":\\\", 2)\\n\\tif hostparts[0] != valid || valid == \\\"\\\" {\\n\\t\\terr = fmt.Errorf(\\\"invalid bucket host\\\")\\n\\t\\treturn\\n\\t}\\n\\treturn parts[0], nil\\n}\\n\"\nvar _Assetsd05f64fbc9bda08199115722ef3368a3ded9a593 = \"{{template \\\"header\\\" .Title}}\\n<div class=\\\"title\\\">\\n    {{ if ne .Root \\\"\\\" }}<span class=\\\"yellow\\\">{{.Root}}:</span> {{ end }}{{.Path}}\\n</div>\\n<ul>\\n    {{ if ne .Back \\\"\\\" }}\\n        <li><a href=\\\"/{{.Back}}\\\">..</a></li>\\n    {{ end }}\\n    {{range .Links}}\\n        <li><a href=\\\"/{{.Path}}\\\">{{.Name}}<span class=\\\"right\\\">{{.Size}}</span></a></li>\\n    {{end}}\\n</ul>\\n{{ if ne .Updated \\\"\\\" }}\\n    <div class=\\\"updated\\\">Updated {{.Updated}}</div>\\n{{ end }}\\n{{template \\\"footer\\\"}}\\n\"\nvar _Assetsd13d7a53abf40be3e0fd76e8a51bb4835b035bb0 = \"\\x89PNG\\r\\n\\x1a\\n\\x00\\x00\\x00\\rIHDR\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x10\\b\\x06\\x00\\x00\\x00\\x1f\\xf3\\xffa\\x00\\x00\\x02\\x17IDAT8\\x8d\\x85\\xd3?h\\x13a\\x18\\xc7\\xf1\\x97`\\xba(d-\\xd4E\\x04c:$H\\xcd\\x16H\\xa2c\\xd1%\\x8b\\\"V\\xb1\\x10\\xa9D\\xa4\\xb4\\x15Z\\b\\x884 mc;T\\xdc\\x04\\x1dD\\xa4\\xa9P{W\\x9aAb.\\x91\\x98\\xbb\\xfcAs-N\\x82\\x834\\xd88\\xd4,1\\xe9}\\x1d.1M\\xda\\xe8\\xc1\\x03\\xc7\\xfb\\xbeχ\\x17\\x9e\\xdf+D\\x8f\\x8f\\xa28CƵNƵ\\x8e*\\xec\\xbd\\xce\\x1dnԄ\\xad\\xfe\\xb1?\\xfahz\\xa9\\xf6`l\\x87}\\xa9\\b\\x89\\xe9\\x1aj\\u007f\\x14M\\xd8z7\\\",\\xa8\\xd6 \\xcaHy~\\xfc\\v\\x1e\\xdfo<\\xbe:K\\x13e\\f\\xa9\\x04\\x1b\\n(#eTk\\x10\\x84\\xa5\\xb39+\\xbc\\xa4\\xfd\\x056c \\x95@\\xfe\\f\\xca\\x15\\x90u\\xb3n\\x85\\x9b\\xeb:\\xc4c\\x90\\xf6\\x17\\xc8\\no\\x1bH\\a*H%XQ!\\xa6\\xc2\\xe6U\\f\\xa5\\x8f\\xbd\\xd5m\\xb3\\x06/\\xb1wcּ\\x89\\xac\\x83\\\\\\x82T\\xe0g\\x1bPFM\\xe0N\\x04\\xec^\\xb0{i\\xd8\\xfd8\\xdc4\\xcb`\\xd9\\xf9\\x8c\\xb9\\xe07\\xf6\\xa5歒\\xa3]\\x80\\xac\\x83T\\xc2h\\\"\\a\\x81\\xe5s/`\\xf0\\x02\\xee\\xf3\\xbf\\b߮\\x98\\xc8Q\\x80!\\xe9,N|\\x85\\xa9S\\x1d@mm\\vd\\x1d\\xb7\\xa7\\x81Í\\x89\\xbc\\xef\\x02\\fI'\\x12\\xdaeȳ\\a9Ac\\xeatO\\xc0ᆗ\\v\\x93\\x9d@$\\xb4\\x8bÍ\\t\\xe4\\x05FN\\xf08\\x1c1\\x81\\xbbQ8룑죡Yhh\\x16\\f\\xedx\\x1bx\\xbd8Yi\\xc9-\\xe0 R[ۂ{\\xf3\\x90:f\\xee\\xa5.C\\xf2f\\x1b\\xa8/\\x9c\\xacT\\x87\\x02T\\xdflS}\\x95\\a\\x97\\a\\xc6\\x1f\\u0086\\x8a!g\\xdb\\xe3\\xd3N\\x98\\xcd\\xf2\\xa7\\xae1f\\x85\\x97\\xe7\\x03\\x05\\xe21X\\xcd\\xc1ج\\x19\\x1c\\xa9dμ\\xf5\\xaf\\\\\\x83\\xf8\\n|\\xb8X \\u007f H\\u007f\\xa3\\x9c\\xb3\\x06\\xdf>\\t\\x95\\x87\\x87\\xbf\\xf3\\xf4\\xfeN;}\\xb2ތ\\xf2\\xf52\\xb9#\\xa2\\xdc\\x01i\\xc2\\xf6\\xe3\\xdd@\\x94\\xc4L\\r\\xb9\\br\\x11\\x123\\xff\\u007fL\\x87 U\\xd8\\xc98%2N\\xe9_\\xcf\\xf9\\x0fb\\x85\\x18@\\x16\\xc7I_\\x00\\x00\\x00\\x00IEND\\xaeB`\\x82\"\nvar _Assets9ec4cdb6b9a1b4a014c65fbde9dbb7ca62e478ab = \"wOFF\\x00\\x01\\x00\\x00\\x00\\x00A\\xa0\\x00\\r\\x00\\x00\\x00\\x00\\x85,\\x01J\\xc0\\x83\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00FFTM\\x00\\x00\\x010\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x1c\\x8d\\x96\\xb6\\x16GDEF\\x00\\x00\\x01L\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x1e\\x00*\\x00\\xa0OS/2\\x00\\x00\\x01l\\x00\\x00\\x00L\\x00\\x00\\x00`A\\x92S\\x1bcmap\\x00\\x00\\x01\\xb8\\x00\\x00\\x01\\xdc\\x00\\x00\\x03\\xdaǠ\\xc8\\xf4gasp\\x00\\x00\\x03\\x94\\x00\\x00\\x00\\b\\x00\\x00\\x00\\b\\xff\\xff\\x00\\x03glyf\\x00\\x00\\x03\\x9c\\x00\\x005F\\x00\\x00n\\xc0Dڭ\\xd9head\\x00\\x008\\xe4\\x00\\x00\\x003\\x00\\x00\\x006\\x17\\a\\x91\\x1ehhea\\x00\\x009\\x18\\x00\\x00\\x00\\x1f\\x00\\x00\\x00$\\x045\\x02\\xd1hmtx\\x00\\x0098\\x00\\x00\\x00\\xae\\x00\\x00\\x02T\\x12\\xb0\\x00tloca\\x00\\x009\\xe8\\x00\\x00\\x016\\x00\\x00\\x016\\xe8\\x01\\xcbFmaxp\\x00\\x00; \\x00\\x00\\x00\\x1f\\x00\\x00\\x00 \\x00\\xea\\x00\\xafname\\x00\\x00;@\\x00\\x00\\x02\\x13\\x00\\x00\\x05[2\\xd74(post\\x00\\x00=T\\x00\\x00\\x04I\\x00\\x00\\a\\xab\\xfciA\\xbbx\\x9cc```d\\x00\\x82\\x9b٪?A\\xf4-\\xd1\\x13\\xdcPZ\\x10\\x00D\\xd7\\x05\\xee\\x00\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x00\\x99\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00x\\x9cc`a|\\xcb8\\x81\\x81\\x95\\x81\\x81ч1\\x8d\\x81\\x81\\xc1\\x1dJ\\u007fe\\x90dha``b`ef\\xc0\\n\\x02\\xd2\\\\S\\x18\\x1a>\\xb0|=\\xc1x\\xe0\\xff\\x01\\x06=\\xc63\\f!@aF\\x90\\x1c\\xa3\\x15\\xe3R \\xa5\\xc0\\xc0\\b\\x00{5\\x0e6x\\x9c\\xd5\\xd2\\xcdK\\x94q\\x10\\a\\xf0\\xdf>n\\nϳ3c\\x10\\xbd\\xe1)<HP\\x10]:u0\\xe9\\r\\x8c\\xe8ݶ\\xc0C\\xe9\\xa90*\\xc4\\xcdȠ\\x84\\xe8\\x05\\x8d\\x8a\\x88,\\x03\\x17a\\xcb.i\\x18\\xe1A!T*\\xd0^$,(|\\xa3\\x8cpf\\x9e\\xfdI\\x1e\\xda\\xedAk\\xc9\\xfd\\x03\\x8a\\x06f\\x86/\\xcc\\xe1s\\x18cL\\x8e\\x99\\xeb\\x02\\x13\\n\\xa6q\\xde\\x04)4\\x9b\\xc3Ng\\xb0\\x13\\xa6\\xce䚕\\xbc\\x80\\xf3x\\t\\xaf\\xe0B^\\xcd비\\xcb\\xf8(W\\xf1q>ɵ\\\\\\xc7\\xf5|\\x81\\xafq\\x137s+?\\xe3>\\xfe\\xc4_\\xd9\\xe7\\uf712\\x85\\xb2\\\\\\nd\\xad\\x94\\xc8F\\xd9*\\xdbd\\x87\\x1c\\x90\\xc3R/W\\xa5M\\xfa奼\\x93Q\\x99\\x94i\\x99QW\\xb7h\\xa9F\\xf5\\xa0\\x9eИ^\\xd4\\xcb\\xfaX\\x9f\\xe8S\\xed\\xd2\\x1e}\\xa5\\x1f\\xf4\\x9b\\xef\\xf8E~ԏ\\xfb\\x83\\xc9\\xfcd[r\\xd8\\uec556f/\\xd9\\xdb6n\\xdbm\\xa7\\xed\\xb1}\\xe9\\xb41\\x1cβ\\xee\\xcdXOͳ\\xb6\\x04\\xd6\\xdey֥\\u007fXKe\\xbbD吜\\x97\\xc6\\xc0ڝe\\xdd\\x14Xw\\x05\\xd6cZ3k\\xed\\xf8e\\xedց\\x8cu_\\x96\\xb5ƞ\\xb17l\\x8b}\\xf4\\xdbJiJ\\xd1\\x14\\x8d\\xd3\\x18\\xbd\\xa7\\x17\\xd4K\\x1dt\\x8f\\x9a\\xe9\\x0e5\\xd1M\\xbaN\\rt\\x85\\xceQ-Ũ\\x9a\\xf6S\\x19\\x15\\xd3:ZC\\xab\\xa8\\x88\\x16S>\\x11\\xce\\xe0\\x17\\xfc\\x8c\\xe38\\x8a#8\\x8c\\xaf\\xb1\\x1d\\x13\\u0600\\xa71\\x86UX\\x81\\xe5\\xb8\\x1bw\\xe2\\x06\\xcc\\xc30\\xa4\\xe0\\aL\\xc2\\x04\\f\\xc1[x\\b\\x0f\\xe0>$\\xa0\\x15nA#\\x9c\\x85#\\xb0\\x19\\x96E\\x06\\\"\\xf1H\\xa5\\xf7ܻ\\xeb\\x15z\\x8b\\xbc\\x1c7\\xedN\\xbbS\\xee\\x88\\xfb\\xd1\\x1dr\\a\\xe7~\\xe3\\u007f\\xa9P\\xaeɀCN0\\x9c샿\\f\\xfa\\a\\xf5\\x13\\xfb~3S\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02x\\x9c\\xa5}\\v\\x94\\x1cWu`\\xbd\\xfa\\xbcW\\xbf\\xae\\xeeꮮ\\xea\\xe9\\xe9\\xe9\\xe9\\u007f\\xcf\\u007fz\\xfa;\\xd2|4\\xfaX\\x96\\xad\\x914\\xb6\\xc6B\\xfe\\x8fma\\tc\\x8306x\\x8d\\xc1\\x130\\xc4\\x01Cd\\xa3u\\x8cC\\x96\\x01\\x02\\xc7K\\x9cDkX\\x02\\x06\\x12\\x01Yp\\b\\x10\\aH6\\x87\\xc3&:\\xe4s\\xd8\\x1c6q\\x80l\\f\\v={߫\\xea\\xeeꞞ\\x91I䞪z\\xaf^\\xbd\\xba\\xf7\\xbe\\xfb\\xee\\xef\\xddW\\xe6\\xf8͟m\\xfe\\r\\x8f\\xd1Ǹ0\\x97\\xe38\\x94D8\\x88pf\\x1aM\\xa1z\\xa3n;\\x8bȩW\\x8b\\x05\\xa8,N!\\x82\\xadad7\\xd0\\xd7r1{\\xf0\\xf7C\\x13\\xa1\\xdf\\x1f\\xb4c\\xb9\\xf1\\xfb\\xc7\\xc6\\uedc6r\\xc9c\\x89l6q,\\x99\\x1b\\xba \\bh}\\xf8\\xba\\xa3\\x89\\xe7B\\xa1\\xe7\\x12\\xc7V\\x87s\\xcaؘr)\\xf9\\xaaL\\f\\x0fe\\xb3C8\\x96yU\\xf29Q\\xe48\\x8e炛\\xcf\\xf33\\xe8\\x8b\\\\\\x8c˰\\xf7\\a\\x91c\\xe3ixWa\\x0f*\\x16\\xea{\\xf8zy\\x98oL\\xd3z\\xd2p\\xf8\\x90\\xa5\\x1bw\\r\\b)\\xf3\\x1d\\xef0S\\xc2\\xc0]\\x86n=\\xb1W\\x19Q\\xf6\\x92S\\xefY\\\\|\\xcf)硇\\x90\\xc5\\x17\\x8c\\xd3OD\\x1c\\xe5\\xc0\\x015\\x16y\\xe2\\xb4Q\\xe0\\xedG\\xc2\\xe1G>r\\xbb\\xf5\\xb6\\xb7Y\\xb7\\xbfg\\xdf>\\x0e\\u07bdy\\x11\\xc1\\u007f\\\\\\x04\\xde;ƕ9._\\xb6\\x87\\x90\\x85\\xb3\\xe9La\\x01U땲]\\xae;\\xb5j!\\x9b\\xc1\\xd9\\f=\\x0e\\xa1z\\xa6P\\xad\\x97m\\xab\\x90\\xc1\\x16ܭ\\xa2ݍc\\t\\xab\\xb9a%\\x8e5\\x02\\x95j\\xf5\\xf6JVؕL\\xee\\x12\\xb2\\x95\\x1f>\\xb0\\xba\\xfa\\xc0ꙕ\\xd9ٕ\\xd9s\\xc7\\x1aq+\\x91\\xb0\\xe2\\x8dc\\xa1\\xd0F<[\\t\\x85*\\xd9\\xf8\\x85U\\xda䃳\\xb4\\t'p\\xf2\\xe6\\v\\xe8e\\xf4\\x19\\x8epAn\\x98\\xe3\\xc2\\xf0\\x1a\\f\\xaf\\v\\xc3k\\xe8\\xeb\\xa4\\\"\\x85j\\x0e\\x95\\x87\\x80>0D\\x1f\\xf8\\xe6\\xe3\\x8f\\u007f\\xf3\\xf1\\x8f}\\xfc\\xfe\\xfb?~?\\xc2\\xd7IzJ߯\\x900A\\x9fy\\x9c\\xdei\\xfe\\xf9\\xfd\\xf4V`QĿ\\xad\\xeb\\xef+\\x115\\xae\\x02\\xb99\\x19\\xf0\\xbe\\xc4sh\\x03\\xde2\\xc8\\x15\\xb9\\n\\xb7\\x87\\xbb\\x92;ƽ\\nh_\\xb6\\xa3\\xa6\\x8b\\u007f\\xcd\\x04\\xfcQ\\x19NP\\x82\\xcaJ>j\\x8d\\xa3\\x8c\\v@m\\x9bk\\xcc\\xe0\\xad{pw\\xce\\xe8E\\x8a{s\\x8d\\x1e\\xd1\\xd3\\x187\\xef\\xc6\\x18ݥ\\xbf\\xa0\\xf7\\xfc~\\x1eMF\\xbb\\u007fh\\xc3%.<\\aO7\\xcfb\\xb4\\n\\x8f?\\x8bo\\x8a\\xe9zL_\\xf5\\x1d\\x15\\xf6\\xc4\\xfd\\xbe#\\xe3-\\x18c\\xc0\\xf5K\\xdc\\b7K\\xf1\\x03\\x86\\x86\\x11&\\xeep\\x92\\xa8\\x85\\x01v\\xc0\\xb5P\\xab֝$r\\xac\\xa8E\\xe8\\xb0Gj\\xad\\x16\\xb4T)\\xa3\\x95\\x89\\xbd\\xb1q{a\\u007f\\xfe\\xb4\\xbdw\\x8fBBD\\x89%\\xa3f\\x9c狣\\xf9\\xd3O^1\\x97\\xbc3\\xb9k\\xb2\\xbaLO\\xe8lBM\\xc4_\\x8a\\x1b#\\xa9\\xa1\\xe3DQ\\bz\\xd2HD\\x13\\b\\xc5LA\\x90I0\\xb5ɽ\\x94J\\xa5~\\x10Ky\\xf0\\xa1u\\xe0A\\x15\\xb8Х\\u007f\\x910\\xd2{\\x84o\\xa0\\x15+q\\xf1\\\"\\xe0\\x9f\\xc2\\xcd\\x1f\\xe2s\\b.\\x9b\\xa5\\xb3g)I\\x9b\\xab\\xe8M@\\x8dw\\xafR^\\xa6\\x9d\\xa1u6\\xa6Ynj\\xe7\\xb1l\\x8d\\x8cSkԇ\\x11\\xfd\\x8b\\xf6\\x1b\\xa2]\\x19\\xc7\\xc98\\xf2\\x88,\\x8f< \\xcb'\\xd1:4\\xb8\\xc4\\x1a\\xa4\\xe0\\xe5\\x170L\\x15\\n\\xd3\\xcb\\x0em\\xf7\\xdfJ\\xadv+\\x9c;\\xb7\\xf8\\xbd0\\xa7\\x130\\xb3\\xa6\\xb9\\x06\\xcc-\\x97\\xf4\\x1d\\x80\\xd2e\\xca\\xc4\\xe3\\xc8Lת\\rw\\xb2#\\x98\\xe8ȶH1\\x88\\x1a\\x91b\\x01\\xe6{\\xa3\\x8e\\x9eH\\x89j\\x9b\\t\\u0092(\\xa6x\\xe1Gh\\xedC͟\\xde`%x\\x15\\x11\\xb3\\x14\\x1e7\\xef\\xdb\\xfd<\\xd9\\xfb\\xff\\xc6e2\\xbc{\\x98\\x9cN\\x89\\\"~\\xbc\\xc55*<\\xd1ܸW\\xf8z\\xf3\\xa7*\\x9f\\xb0n\\x80'\\xccqs\\xa6\\xb4\\xfb\\xf9\\xbd\\x04\\xa9\\xe3\\x84=\\xc2\\xf5̿\\xf1\\xad\\xf3/Oش\\xa3\\x82i\\x1a1Ѵ\\ay䳻\\xe6\\xe2\\xd4\\xe2\\xa2,;\\xb2\\xb2\\xb8\\xa8\\xc0I\\xee*uO\\xce\\xc7\\xfb5\\xf1JtH\\xb7\\x95\\t9O\\xfc\\x10\\x17\\xa2\\x16$\\x8e\\v\\a:\\xcc\\x00\\x99W\\x94g\\x15\\xf9FE\\x81\\xae\\xe7\\xde'+\\u07bbos\\xe5\\x82\\\"\\xff\\x8e\\xa2\\xdc\\xc8^\\xb8\\xf0^Y\\x811\\xf3\\xbfk\\x96[\\xeaC\\x01\\xcb\\xe0\\xe9\\x18\\xd2I\\x033~\\x91o,\\nL<\\x1a.M\\x1at\\xb6\\xb4\\x84@\\x17I*v\\xc2&ҔD䰪˲\\\"\\f\\x045SW\\x88\\x92Pp~\\xa9\\xb0g\\xef@f` \\xd3M\\x9cw;)#$c\\x89\\x10Iѭ\\x10\\xc1\\x12<.\\xe9!\\xa2k\\n\\x89\\x12\\xb5^\\xfd\\x1c}h\\x80щ\\xf2\\xff\\x12\\xf0\\xbf\\t\\xdc?\\u0378\\x9f\\x82\\x01\\x9c\\x05\\xb3\\xb7^\\xab\\x16\\xeb\\x12\\U00015072\\x99)\\x18\\xb7jc\\x11\\x1a\\x90r\\xbd1\\x852\\x98$y\\x94\\x9a\\u07bb\\xf7\\xe6\\xbdb\\xc0p\\xd2$\\x88&\\x05a\\xec\\xa9\\x1b\\xe7_\\u007f\\\"A/>\\xfdԏ\\xaf~8\\x9f\\u007f\\xf8\\xfc\\xc3\\xf9\\xd8\\xd57\\xa2\\x124\\xdc;\\x15\\n\\x92\\xb4c\\x04\\xa4\\xdb@\\x16\\xac\\xdc6y\\xac\\xc6η\\xfd\\xf3\\x91\\xfd\\xfb\\x8f\\x1c\\xd9?\\xb17\\xcbI\\x9b\\x9b0\\a~\\x85\\xe9\\x97\\x01\\x18\\xbb\\nw\\x90\\xe3$;j\\xc1\\x88e3E\\x04\\xc0\\xc1\\xa8UʎD\\xa9\\xe60\\x99TldH\\x11\\x8a \\x8a\\x00\\\\\\f\\xd7\\x00\\xa1Pn8\\xec&\\xc0]\\x87K\\x92D\\xfc\\x83XTE\\x19\\x8b\\xbf\\xf8\\x84w\\x81$M\\x9f\\xdc\\xcb_ώg\\a\\x87\\xa7kU\\x17~{\\xb8\\x10\\x0f\\xe7\\x1f\\xbe\\x9aU\\xdd\\xf8\\xd4X\\xbbƑ\\x80\\xa2:<\\xf9m\\xef\\xe2}\\xfc\\x9e\\xc9{\\xe1\\xef<\\xc9E\\\\\\x84F3\\xc9\\xc1\\xf4\\xfe#\\xcdKPs\\xdbJ\\xa7\\x82\\xe9\\x10Wwj\\x9c\\xc3(>\\a:\\xe44\\xf7z\\x8ekd3--e5:\\xaa!\\xea\\xf8\\xae\\xc96\\xd7\\xfe6\\r\\x9f\\xf0\\x9aC5\\xb7\\xc7J\\xeb\\\\\\xb6\\x053\\r\\x92,]>?\\xa2\\xeb#\\xfa\\x9a\\xbe\\xfd\\xe9\\xa2Wj\\t\\x91\\x12\\x14\\xd6\\xe1\\xafd%J\\xcd\\r\\xaaQ6\\xdc\\x16\\xba\\xee\\x9d\\xe1\\xf7\\xa8\\xef\\xda\\xfd}\\xaf\\xa3\\x87\\xaa\\xba^\\xa5\\u007f\\x89\\xe6\\x13h\\xac\\xf9\\x97\\x98\\xe37\\xff\\x9f\\xa7S#\\\\\\xc1\\x9b70\\xc6t\\xd4\\x1a0K`\\xa8%w\\nE\\xc1|\\x82q\\xad\\xef\\x81\\x01~\\xf2;O>y\\xd7\\xf4\\xd4ޫC\\xba\\xca\\a\\x1dRC܉\\a\\x1f|\\xf6\\xc1\\x11K\\x95\\xf5\\xe4\\xa0\\xe5\\x14\\xd0\\x06\\x14\\x8d\\xa9!\\x8d7\\xf3\\xe1ك'\\xfe\\xef-\\x8f\\xdcr˾ʘ\\x9d\\xb0\\xa2\\xaa\\x15 \\xba+\\xf6[\\xb2?\\x02\\xb2\\x9fr\\xbe_\\xcc\\x02\\xb9\\x86Q\\xa4\\x96\\x05{.k\\xfa\\x85\\xfc\\xfb\\x03J\\xe3\\xe2W\\xe1\\xf0\\x18ZJXm\\xb1\\xae4\\x9a/]\\x82\\xc3%oN\\x1d\\x82~\\xa3`\\x1f\\x15\\x98uDY\\xb7ݱS\\xa1\\xaf\\xcaGaփ\\b\\x1fG\\xc5l\\x065҄\\x0f%\\x12\\xc1\\x15c\\xb0y\\x96\\xf6\\xb9\\xb1\\x04Tk\\xae\\xec1\\x06Q\\f\\xff\\xdeһ0:\\xb7\\xd2|\\xe7\\x91K3\\xb1u\\xc7}#\\xbc\\xbdt\\xd7\\xff>\\xe3\\x8c\\xe1\\xa5\\xe6\\xa5\\xf5uN\\xf2\\xe9\\xb2a\\xe0\\xac\\x03\\xdc*\\xbc۵\\xc8\\xe6<\\xec<\\x01\\xd4.g+=eg\\v\\x15@\\x1b6z\\x1a\\xa1\\xf7J\\xb2,\\xd9\\xf4\\xf0\\x97\\xed\\xab\\xab\\xdbW\\xbfK\\x95w\\xb3\\x14\\x880}\\xbfЮ_\\x93\\xa5\\u007f\\xa0gv\\xf8J\\xfb\\xf0.\\xefPb\\xcd#\\x01\\xb4\\u009e\\xbfX\\x92\\xa5\\x83\\xf4\\x16\\x1c8\\x81\\xf1\\xc9\\x15\\xc0'Y\\xae\\xce\\x1d\\x01\\xbc\\x92<غ\\x1e\\xab\\x14\\v.\\xc7\\xd4)\\xc30\\xa1\\x90DQ+\\xefP\\x11\\xe6g\\x9e\\x86\\x04\\x12\\xadP\\x04Q\\x02r\\x17nRfr\\nӈ\\xb7HDC\\xaa\\x1e\\xdc;\\x9fL.\\x9d\\x8e\\x05\\x8d\\xb9}A]\\x8d\\x9a\\x13\\x0f\\x9eX:\\x13;\\xfc\\xea\\xe6a+6\\xb0\\xf7\\xd6[\\xdf~k2\\x16\\x14E;\\x8a\\x1eH.͠\\xe9k\\xcb3\\xd7\\x0e\\xc4,3j\\x8bbp\\xd1\\x18\\f -Q$\\xf5\\t^(&4+;\\xde\\xd8wK}B\\xb9~\\xbe1#\\xe2}7\\xed\\xdb7\\x95\\x1d\\x8a\\xa5\\b!\\xc6\\xf4P67\\xa7\\xc9\\xfc\\xc8\\x15\\x13R\\x19\\x8b\\x9a\\x01\\x95`\\xd6p\\x88\\xda\\xf4(\\xc5d\\x1f\\x97\\x8f\\xfa,\\xf9J\\x94Z\\xf1(\\xe57\\xdd-j\\xb4\\xefi\\x1cP\\x1c\\xebq\\xb0ԅ\\xe8#\\xe1\\x03\\xd4H\\a\\xb9\\xbe\\xf9\\xf3\\xcd\\xcf\\xf3\\\"\\xfac\\xa0\\xd7^\\xee\\x1a\\xe89\\x89@\\x8a\\xdb\\x06.`\\x82\\xa7@\\xff\\xa0\\xc2\\\"\\xb6\\xc1Oq\\xea\\x05\\xb8Q0D\\x1bn\\xd8Po\\x97\\x17\\x11̽B\\xbd\\x005\\x06}j\\nʠ#џ\\x8di\\x01\\x91\\x97E\\xb5\\xb8x`vv$/\\xdb\\xf5-55u\\xc24+\\xf5\\xf9\\x83\\aR\\x02F\\x1a\\x94\\x82c#\\x95\\xf2\\xdcP\\x86\\x967xU\\x19]\\x93P\\xc0\\x04\\xf3㾆\\x8c>;V\\xb7\\xe5\\xfc\\xc8\\xec\\xec\\x81ł&ʼ\\x18жԼ&<\\xaej\\b\\v\\xa9\\x03\\a\\xe7\\xeb\\x15\\x13J\\x8a\\x88I:\\x91aE3\\x80\\xa4\\xb5QE\\xe5\\x03r\\xe3>\\x82\\x00S\\x89\\xd9\\xe9K\\xc0+!\\xf0\\x8cR܄k\\xc1\\x02K\\xf8\\xcd:'3\\x84`\\xf6e\\xcd\\xf2\\x02JG\\xadJ\\xc3g\\x8e;\\xbek>\\x14\\xb0\\x030\\xf7StR\\x82\\xf5}\\tL\\xb7\\x14~\\xb7~H\\x87\\xdfE*\\xee\\x1e\\xd5\\xd1\\x06\\xb4\\xe9H\\xb9\\x12\\x1e\\x1b\\xc3  ?\\xf1\\t|\\xca'\\b9\\x176O\\xdfFA\\xb7\\rqyn\\x12\\xc6\\xd9\\xef<\\xedA\\x8b\\x88\\x9ax\\xa0e\\xd2\\xc5H-\\x1d\\xcdyfA\\xcb<\\xe0\\x1b\\x8a\\v\\x8e\\xf2\\x1a\\xec\\xa8\\xc8P\\x1d\\xdc\\xfcӣ\\xe8\\x13G_\\xd3\\x04\\xbe\\x89\\xc4#\\x91\\xf8\\x11v\\xfc\\x8e\\x1e\\xfc5\\nү\\x05\\xf5\\xdfPt]\\x19<{\\x96ʉ#\\xf4\\x9e\\xf7\\xa3\\xb2ʓ\\xbfe\\xee:\\xeef\\xd7\\xfa\\x05ce\\x1cab\\xc3\\xd0Sy1\\x8e\\xfcb\\x03\\x84Wc\\xa6\\x0e\\xf6K\\x85\\xb6$\\x0e5\\x12\\xa0I\\x15N\\xae9\\x03\\xffE\\x93<\\xb4,.\\\"\\xfa\\xc3U\\xd7\\xe5C\\xbf\\x9b\\x99\\t8I3\\xc7c\\xd1B\\xb5\\xa9h\\xe6\\xb8*(\\x81\\xa5@$\\x02\\aEP\\xa2\\xa6\\\"\\x86\\xf5xh\\xac̟0\\xa2Q\\xe3C\\x83\\x13\\xa2\\x1a\\x924+5h\\x8e\\x8dE\\xa2\\v\\xaa\\xae\\xc8\\x06R\\u007ffX\\x86a\\xa1\\xfaL\\xc6L:\\x01]\\xcd\\f\\x8dTFdS\\xff\\aݔc\\x11\\x03\\xe7\\\"\\xe1霮\\xbd)j\\x18Q2ae\\xcda9l\\xe7\\xc4\\v\\xbc\\x15^ \\xa9`\\xa0\\xa0\\xbe\\x9bv`\\xb8vb\\a\\xff\\x13\\xdc-\\x1cW\\xa3H\\xbaR\\x84J\\x18gƞC\\x14\\xedd\\xcb~\\x03a\\xcd\\xc8Q,4\\nE*t,h\\x81m\\x87\\xfe\\xa0]\\xbdQ\\xa3\\xe2h\\x8a\\xcff\\xa2\\x96\\x1d\\x05\\x92\\xf0\\xa2gr\\xcedN\\xf0\\xe5\\xb1P\\\\\\x0f\\x8b\\x8a\\x19U(\\xeeDS$\\x17{\\xf5x&:UC\\x96\\x88\\xf9\\\\f\\xa6\\x145n\\x84\\xa1\\x95\\x15]]\\x88Ɩ\\xad\\xc1\\x94\\xa5I!U\\x9c\\x18\\xfc\\x10\\t(\\x18=\\xcd\\x10\\xf8\\xdb̌\\xa6\\xe7\\xa6Ñ\\x1c6\\\"1Y\\\"\\x1a\\xa64\\x00j\\feT}&cD\\xd5B \\x98\\\"\\v\\x05\\xfe\\x82\\x98\\xb3\\xc3\\U000b0675&\\x88\\xa4\\x06\\x9e`$\\xf4\\xf0w푊;\\xfe\\x11\\x869\\x1aB\\xb6C\\x1d;\\x8a4\\\\\\xc3\\xc9\\xe5\\x05`\\x82\\x06\\x18\\x853\\x80\\xa1Ȉ\\xe44\\xaa\\xae\\u007fO\\xbd\\xbe\\xa8E\\xed/\\xf8\\xaf\\xb2\\x88\\xa0%\\x99B\\xf4g{\\xf8\\xdf5\\x93\\xb1\\x8bvk\\xbc\\xe4\\x80\\xec\\r\\x18\\x89\\x9b\\x11\\xb5\\xff\\x88\\x15\\xba\\x06\\fݓ\\x99\\x81\\x1ez\\x19H1\\x14\\x1f\\a\\x05\\xd4`4Ї\\x85\\xac\\xe5X\\x0f\\aq]\\xf8\\xcfpǹ\\x1b9Ρ8ReR\\xab.\\n\\xa0Pf\\xea\\vȯ\\xfc\\xc0\\xf5e\\xb3\\x95\\xe0\\\"\\xa6np\\xb1\\f\\r@\\x8e\\xd2\\x1f4\\x03\\x96\\xa0\\x13\\xc0\\xe0A\\xa2\\x94Af[v\\x98\\xe1^\\xc8|\\xc1\\x1d,5b\\xc6\\t\\x1d-\\x97_/7V\\xd1\\x0f0P\\x97\\\\\\xde\\tD\\x83j\\xa0\\xcd<\\xad\\x89\\xf3\\x8aYǈz\\x8c\\xc3\\xf9b8\\x83\\xe0g\\xee\\xe2\\xf6\\xc1\\xccgn\\xef8j\\xfb\\xf6\\xae\\xf9\\xc8\\xe6\\xbc\\x00B2K)\\x93uC\\x1a\\xdd\\xc5H\\xad\\n>\\f<\\x89\\x9e3\\x12֊g\\x14\\xc1\\xf9Y˸\\x0f\\x83@\\xbc\\x1aSc\\xf1\\xa4j܅\\xf1w\\xf9\\x12\\x0f\\xce\\xe7\\xdb\\f\\xab\\xf9\\x13\\x10\\x95Lf.\\xb1\\v\\xa3\\xb9\\x88\\xc7\\xe0a\\xdc\\xfc:^\\xc3_3ԓ\\xf4\\nq*\\x0f\\x8f,yr\\x1d`\\xde\\x00_%\\n~f\\x05lg\\x0fj\\x9fo\\xec\\x90l\\xb4\\x12\\xa1>\\xfbt\\v\\x95\\x16\\x9c-\\xef\\xdd\\xf6\\xbc2\\x06\\xae'\\xb6u\\xcb8\\xba\\xbe\\xfe \\xe6\\x8f\\x1a\\xea\\x05\\xd5\\x18\\xc3\\xf8]\\x87\\xaa\\xd5C\\xd5+\\x99+\\x8f\\x16]p]\\xf9ndV\\x9a/a$\\xf2\\xfc\\xd1S\\xaaa\\xa8gh`\\xe5\\x85*m\\xbf\\xcc\\\\z7>\\xe1\\xc2\\x1a\\xf4l\\xcbmc\\n\\xe8\\x1c\\xb3-]0n`A\\x1a\\xbc]\\xf4Ƴ-]\\x1b/E#o\\xbd=K\\xe9\\xa8\\xedXI\\xbeR^\\xe4k`\\xf0\\xa4k\\xc0\\x8dbfJ\\x00\\xa1\\xd4\\x15\\xaa\\xd8h\\xaeeO%\\fpb\\x1d#q*\\xdb\\\\C\\x1bك\\xfc\\x80\\x11\\x8f\\xc5\\x06\\x06\\x8c\\x01\\xfe`\\xb6;lQ\\x1aM\\x1cE\\x0e\\xd5#\\x0e:\\x9a\\xf8\\xb7\\xe7\\x13\\rd\\xabABBj\\x145\\x12\\x9d\\xb9\\xb4\\x06<\\x15\\x04\\xcd\\x06\\x1c\\x15q\\xady0\\xbf\\x98GY\\x17j\\x15\\xe6\\xc4\\xc1\\x98\\x00\\xbfD\\x98\\xfe\\x00\\x8d\\x91\\xa5\\xdeYݍ\\x16F-*?\\xa2\\xd9)\\xbeH\\x9f\\xb8@-\\xc1x\\x01f\\xf8\\xecȆ\\x10\\x93\\x94\\xa3\\x8a\\x14\\x13V\\xae:=a\\f\\x93\\x12\\x1f\\x19O\\x1d\\xaeU\\x97S\\xe3\\x11\\xbe$E,y\\xe2\\xd5\\xe8,\\xb4-\\xc4\\xe9c#\\xb3\\xcdw\\x8e\\x8fKb\\x9e\\x90\\xbc\\x88^<}վr\\xa8\\xe6\\x10\\xb20\\x93+\\xd5\\x0e_]/\\xe5f\\x16\\x00\\xfc\\xfc\\x90Z\\xdew\\xe5k(\\xfc\\xd4\\xefD_\\x04\\xf8\\xf3\\xc0[\\xbb\\xa8^\\x8e2\\xcaN\\xc14\\x00\\x10\\x81\\xa0U\\x10\\xef4<7\\x84\\x92\\xbc+\\xec\\xa44\\xc09Ì\\xcc\\x12\\xccv\\xc0\\xb3b\\xa1?P\\xc2Fs]\\t\\xca\\n⃦uh\\x16Tm~w\\xda2\\x83|\\xf3}hv\\x02L\\xc1wW\\v\\xeb'T\\x1dl䠬\\xabH\\b\\xc6\\xf6O\\xec>\\xa1E\\xe9\\xa4\\x06\\x19\\xb8\\xaf0\\xb1?\\x16\\x14\\xc8\\xdc)4\\x05f#:\\xf5\\xa7\\xf9A\\xe0#\\x8el\\xf1\\x1f\\x0fs\\xb7qo\\x05\\xef\\xd1s\\xf0\\xa8\\xe1R\\xe98\\x92\\xd9./\\xd1W\\xefD\\xd3\\xf4\\t\\xdf$\\xb7\\x99w\\x185+\\xe5|\\xdb[4\\xb3\\x9d)\\xd4\\xc8R_\\x05\\xac\\xa6,\\xfcYs0\\xb9\\xa0\\xcd\\x02<\\x03\\x9d\\xae\\xbb\\x16\\xcec\\xccҹ\\xcf-,\\xb3\\xc2c\\xcd%\\x98Z\\xeaIC=\\xab\\x1a \\x01,\\xbdy\\xee,\\xdc8\\xbb\\xc4j\\x96\\x9e\\x8f\\x83]\\x13\\xc7\\xd8=}\\xddg.\\xad\\xb2s\\xd5-<\\x94\\xcb\\xe9\\xe8-\\x8a>B\\xe7ۈ\\xae4߉\\xf6\\xeb\\xfa~tk\\x8cV\\xc4J\\xed\\x1e\\xd8\\xc9\\xd3\\xebl\\xfe\\r\\x82\\xa4\\xa0Q4j\\xd2yf\\x9d\\xe7h\\xb7]\\xe2F\\xb7\\x04\\x01\\x0f\\xb957\\xd3e\\xb4\\xa6\\x9f\\xd4S\\xf0\\xe7\\x9d\\xd6\\xfc\\x13\\xb3\\xe4N\\xd6U\\xfc\\xa2\\xaf\\x85~\\xf2|\\xa7\\x05ut\\xbd\\xa9\\v\\xd3\\xd6\\x1f'\\xda\\x12#\\xea\\n\\xfbt\\xc5s<\\x9b\\xf6\\x05\\xf4\\x92\\xf7\\xac\\xc3\\xfc\\xbb-=\\xb4B\\xec\\xb6w&\\x8b\\b\\xac~\\x9c)\\x16\\xc0\\xaaw\\xec\\xf2\\xe3\\xbe7\\xbc\\x93\\xd9\\u007f\\xefe\\xc7\\x04\\xb6\\x82<\\x9e>?\\x8d\\xf9\\xa0\\x85\\xd3wv\\xbf\\xfd\\x8eH\\xc7`\\xbcI\\xe6\\x03\\x16ٵ\\x8bX\\x01^.\\xf6\\x85\\xab\\xb4=\\\\-\\xf9\\x8b\\xcb\\x0eu6\\xc0Nʸ\\xde\\xc5V\\xc0\\xdeȎ\\xaf\\u007f\\xdb(\\xe6\\x89\\f\\xe3zm\\x9c\\xc1\\xd8\\x0f\\xb2Iv\\xbcg\\x86\\x80R\\xe6\\xe5\\xe1a\\x06\\\"\\xd7\\x17\\xb6>\\xb1\\xc9^\\xd8\\x1cz\\xa6\\x1c\\x0f\\xac\\xb0\\x1dX\\x8c\\t/\\xd0\\xc3\\xf6\\xf0\\xbc\\xd5hۘF\\xdb\\xe6\\xef\\xac\\x1b\\x1c\\xe6^\\xc5\\xdd\\xc1\\xbd\\x9e{\\v\\xf7\\xab\\xdc\\xfb\\xb9\\x0fq\\xbf\\xd3GG\\xf8\\xb80\\xbfM\\xacg\\xbbki\\x9b\\xeb_\\xb6\\x9f\\xedbO|\\x88i\\x12\\xe6\\x13\\xa1\\x1f\\xc8͔,\\xa3Kr\\xf3\\t=\\xa1\\xc3o\\xadߩy\\xc1=\\xa3u\\xaf\\xbc\\xbeCc\\xeft\\xbb\\xfeW:\\xfcz\\xe3\\xe7\\b^\\u05fc$\\xbf[w[\\xf5\\xfe^\\xe7\\xbb~t\\x9b6\\xee\\xefy]\\x0f\\xe9\\xadX\\x90'W\\x87a\\x84z\\xc7bK\\x18\\x8d\\xda\\x17\\xe9\\x1e\\xdd݊\\x8e1\\u05cf\\x81\\xbc%\\xecE\\x159\\v{\\xf9\\xe2\\xd3:gq\\t\\xaak\\xa8f\\x9c\\xa2fs\\xdd\\x11=WO\\xf4lGt\\x9f\\xae_PBZLGU?\\xc3}\\x8b$ȫE!\\xa0\\xbch\\x18\\xc4\\xf6q\\xabO\\xfei\\x8c縆O\\xf6\\xef$\\xef\\xee\\xd6\\xf5\\x1f\\xe8\\xfa\\xdd}\\xa5\\xdco\\x83|\\x83\\xdf\\xd7\\xfb\\x8b7\\xdf;\\x83\\\\\\x04tS\\x1f\\x8eN\\x9by⋺\\x0f#\\xbb\\xcb\\xfaYkn\\xa0\\xf9\\xaeȻ\\xad\\xf4\\x9aB\\xb4я:\\x01\\xf8\\xc7\\x14h\\xe3\\xd9\\x1e\\xfc^\\xf4'@\\xcb2w=\\xb5\\v)=Ao\\x19\\bL\\n\\\\\\xf4t8\\xd3ߎ\\xd0(F3\\x86\\b\\xc6\\xc6\\x14Z\\x94\\x1aN\\xbdg\\x89ť\\x13ue\\x81\\xe5]\\xba\\x00\\xf5\\xf8\\xb2a\\x9cs\\xe6f\\xc6e\\xad\\x9e\\x18\\x99\\xcc%k\\xa5\\xab\\xe6\\x9c̹s\\xe9\\xd2\\xfcX!\\xb2HD9\\x14\\x1f\\x1e\\x1d\\x8d\\x0fh*\\xd6[P?\\xa2\\xcbVX\\x10N0\\n\\xa2\\x8c1\\x02}\\f\\xa4\\xeab$\\x15K\\x8d\\x9a\\x03\\x87'\\xe7F\\xd2fPؕ\\x8a\\xd9\\xcd?<w\\xee\\x8c \\x9b\\x03\\xa3\\xf1\\xbdE;\\x9f\\xb0\\x83*\\xe1\\xd1\\xe7\\x05,\\x122ޢ\\x80.*\\x82\\xac\\xf2lL\\xe2\\n\\xe5]\\xb1-\\xe7\\x02`\\x17Ә\\x02\\x87\\xea4\\xe2H\\t\\x00\\x94\\x06\\xdf\\xc4u\\xc1\\xf9\\x1eهn\\xd2-\\xbcO\\xd2ι\\xa7]L\\xc6\\xdf\\xe0WC\\x8b\\xd8\\xd2\\xcfi\\xd2>\\xf7t\\x93\\xab\\x06P\\xac[9u\\xc6]\\xe5\\xe24\\xde٨\\x94\\xbdՕz~\\aV{\\xebWd\\x8c\\xef\\x90\\xe5;\\x804\\x87\\xfb2\\xdcKA\\x89ޗ\\x82\\xeb۰\\xdc\\xd6w\\xe7\\xc1/a\\xdce\\xe3\\x1d\\xd5\\xfa\\xfe\\xce\\xcb\\xef\\xef\\xfb\\xees\\xadw_z\\xc5寮\\x05/\\xa6dG;\\xbc\\xfbB\\xabg\\x14\\xea\\xfb\\xe6\\x9b}t\\x19\\xdca\\xae\\xd1\\xf5\\xcf/\\x82/d\\xc1\\x98\\xf7\\xf8A,x]\\x8c\\ni\\xd3u\\xd3нFK\\x84~\\xdd2\\xa6\\x96_D\\xa93\\xaa\\xb1\\x81n\\x01\\xb7\\xe6S\\xae;\\x00nͽ\\xcb\\xcbT\\xb8\\x82C\\xc3t\\xa7\\xbb\\xbeJ\\xed\\xccQn\\x82\\xaby6\\x94'G\\x88gkB\\xa9\\x92\\xef}\\xb3]\\x04\\x17\\xcc{\\xb5\\x89R\\xfa3:\\xfd\\xb1\\x03\\xb2|\\x80\\xac\\x1a\\xeb\\xcb\\\"\\x05\\xe4\\x05&\\x8fW]\\xb1\\xfcy\\x1fH\\xab\\xc6|\\v\\xa6\\xe6Z\\x1bo\\xa0:7ŭr7Q\\xb9I\\xe3T|v\\x8c\\xadPe\\xdbQ\\n\\x00\\x84\\xae\\xb2\\xf1n\\x94\\x8a\\x864\\xa2\\xd4\\x1e*\\xfa\\xc2USB\\x96\\x867\\x05\\xb0\\v˶\\x1b\\xaf\\x12[\\xb1\\xaao\\x91\\x90d#\\xa7R\\x10B\\xc2\\xe4\\x15Ӧ`j\\xcc߾C\\x8e\\r\\xaa\\x82>48YQr\\xb1\\x11\\xfbp\\x10i$h\\x87\\xce\\f!I\\x89\\x18\\xb2\\x11\\\"\\t{P\\xd5\\x06\\xee)\\xe4\\x97T]m~\\x8e\\xd9\\x01\\x1fN'sÉ\\xb1\\x01\\xcbR\\x8dH\\xe0\\xa5@\\x84\\xa4\\xb2\\x8a\\xb8{\\xbaZs\\x9c\\x81\\xa2\\x1d?\\x1a\\x1cUc\\x86\\x11\\v\\uf2a8ZX\\x95\\xe5+C$?\\x14{\\xbe\\xb0\\x8fd\\xaek\\x19\\x12~\\xdc\\xeb4V\\xc1\\xfc\\x93qļ\\x14\\xba<\\a\\xbflO\\xa8n\\x11UvS\\xb3\\xde\\x012\\x89\\xadt\\b\\xa8\\xa5\\xdeV\\xbdP\\xa4?x\\x00\\x83\\xcbL\\x97\\xce\\xe0G\\xdd\\xc6j\\xa1\\x86\\xbee\\x94s9\\xa5298\\xa4\\vZI%j؍7\\xe8\\x8a\\x16\\x9c\\xbar\\x12\\xc82;\\x8bl)Լ\\xd9\\r\\xcdܮ\\x86\\xc1\\x1b\\xd4PP\\x06\\xac\\x97\\xf2\\x85{\\x064=3\\\"\\x87\\fٌ\\xca\\xfc\\xd0\\xdf\\xc4♪\\xe3ԪӻEm\\x8f\\x12bD\\x90-\\xab21\\x9cK\\x9ea4\\x1a\\xd6\\u008a\\x11SG\\x83\\xa1\\f\\xd9Wx>[\\x97CWʪe\\x04\\\"\\xbb\\xc2\\u07ba8\\x02~\\x1fa+\\xac\\x87<\\x8d\\tx\\xb1u\\xe5L;\\xeb\\xa5\\xca\\x02\\xe6T\\xbb\\x94\\xe9\\xc1\\x0e\\xf2\\x8db\\x83\\x14I\\xd1!4\\t\\xa6\\xe1\\x14z\\xa3\\x00\\xff\\x14\\x0e\\xcf\\x1bb0\\x18\\xbdr$0\\xae\\x8f\\\\\\x19M\\x8a\\xc6<\\xabKB\\x95>\\xe1UՎ\\x1c\\t\\xdfX\\xad\\xde\\x18\\xf6\\xceϟXX8\\xb1p\\xcdT:=\\x95\\xfe\\xbe>\\xae\\x8f^\\x19\\r\\x06\\xdbO\\xda\\aG\\xdd:ڙi\\xba\\x9d=\\\\k?~\\x13=\\xff\\xdb\\x02\\xed\\xe3\\x8e4\\xed\\x83\\xda \\x0e\\x8c\\xefO`|m*M$f\\x83\\x96aPh\\x18\\x1e|K@\\x06.\\x04ʠ\\x95r\\xbd\\x81\\xa9\\x83\\xdc( \\xe7\\xae'\\x9f\\xbc+\\xe6Dm%2\\x9c\\xbfm\\x11\\xa4L\\xee\\xcc܉\\a\\x1f<Q\\xbanh\\xf5\\x91\\xf2Xd\\xe9\\xc9\\xef<)\\x8a\\xd9\\x115\\xbc\\x98۳\\xa2\\xe3]\\xf1\\xc92z\\xf1\\xc1g\\x1f\\x1cͅ\\uee6e\\xbc\\x1a\\x13\\xfa\\xc82\\x1a;q\\x15\\xb5\\xbd\\xa3\\x1c\\r\\xb5\\x84م\\xbe\\xb2\\fe;\\xc2\\xec\\x8ame\\x99\\xdf/r\\xa0\\xc6\\v\\x18\\xe6\\xda#\\xe5\\x9e\\xd1q\\xa6\\x95\\x9a\\u007f\\xceT\\xd4\\xff\\xdc7=\\xbdo\\x1a=ʴ\\xd0ǘJr\\xa6i]+Wg\\xeb:\\xeb\\xf5ܫ9.\\xb2\\x9d\\xa7\\xec\\xbb\\xfe\\xe5<hJ\\x94\\x1e\\xbf9\\xdf\\xe5\\x11?Î'\\xb7\\xf5\\x8eъ\\xcf1n^B\\x13>7xM\\xdf\\xd1'\\xfe\\fuC\\x9a\\x87\\\\o\\xf8\\xbf\\xa0\\x0e\\xee\\x1d\\xdd\\xd0\\xe0\\x16\\xb8\\x03\\xdc\\xd5t\\x15hg-\\x11q\\x17\\xd4\\b.\\x16\\x98\\xa9T\\xa0Yl 8\\x9c:\\xb1\\x16Q\\x0372\\x16\\\\W\\t\\xdc)b\\xban\\x94D\\x8dm4\\xcb\\xcfT\\xd5\\x1c\\x18\\x0e\\u058b\\x83:/M\\x85\\xac\\x00\\x16r\\x82\\xa4\\xea\\x03\\x95ϒ\\xa0\\x1c?\\xca#AHN\\xaaa=\\xf0\\x80\\x14\\x8d\\x1a\\x11~[U\\xd4|I\\x1e\\x06\\xf1{\\xc0$\\x01;\\x96\\x98*E\\x82|\\xc4\\x18\\x1b\\x0e\\x92\\x1b\\x91d\\x1a\\x03\\x9f2,\\x8c3\\x8f\\x9a|\\xc0\\xc9\\x06\\x05\\x8c\\xb0\\x88Z6\\x91\\x9f\\x06\\xd7^\\x0ew\\x87\\xa9\\b\\xd7\\xe2+\\x16\\xa6\\x91\\x17\\xa7*\\xd2@\\x14\\x93\\xa5 e\\x1d\\xb0 ٥\\x93@3@\\xa0mp\\xff^Hļ:\\xc0\\xab1\\x95'\\x9a \\x84ye@兀!\\xf0\\xb2d\\xaa<\\x18P\\x82\\x12Py\\a!k{\\xbc_\\x14\\x89X\\xb8]Q\\x86\\xc6MY9\\xa4(Zc\\xd6\\xc0\\x8a\\xba& \\x01C\\xf5m\\xf4|\\x9b\\xda\\x0f\\xd7}\\x97ŵ\\fR\\x93\\x80U\\xccp-\\xbaH\\xbb\\v\\x8d.z\\x80[e\\x1b\\xe4\\xbeC\\x88\\x98զ\\xc0\\\"\\x1d\\\"\\x02?\\xa8\\x9b\\x02\\\\\\x10qʭ\\x11\\x95\\x88b\\td[\\xa4.\\xe8x\\xc1<\\x8au,4\\x06\\x87\\xe1t\\x94^\\x87G\\xec\\x1c\\xf6\\xfcu?\\x1eun\\xf1\\xb2\\x1c\\xcb&\\x1c]\\xb1\\xc2`\\x00\\xb8\\xb1\\xaa\\x06[\\xf4\\x1dG\\xdb pH\\xbf\\\"\\x91\\x15\\xb1\\xa6\\x04Ր\\x1c\\xe4\\x89\\x14\\xd3K1-\\x10\\xd0b۳\\xe0\\a\\x9f\\xd1\\xf3CZ8\\xa0a\\x89G\\xd3\\x12\\xb9#\\xe8\\x18[\\xe1\\x1d\\xa1\\xb1\\x8f\\xcb\\xc1\\xdb\\xce\\x1bk\\xa9\\xa1m\\xc0LѤ\\xb0\\x93\\xb2\\x1c\\xfb\\xe3\\x91Db$\\xb1=l\\xe7\\x96Z-\\xd7_Jж \\xc1[p\\t Q5\\x90\\xa9i.\\xc7̀\\xd6\\\\\\xe6V@\\xfeU\\xa2\\xd9F4[#p\\x86_\\xad\\xd1\\v\\xb1C:\\xd6\\x1b\\xdcϚ\\rǦ\\t@\\xc0!\\xb5\\n\\x18\\n\\x98\\xdaPS\\xe0ʀ\\x8e\\xa0\\x1d\\xad\\xa7RK\\xa9\\x14=|ˏJ\\x92\\x99v\\xa5\\xd4\\xca\\x13a!\\x10\\x0f\\r\\fK\\x91\\x94\\xadN\\x0eF\\x94`\\xd8P\\x96R(\\x95ZO\\xb1\\u007f\\xc9.\\xdc\\n-\\xd4B\\xa1\\xe6\\xdaW^\\x15\\x1a\\n\\x17c\\xb7\\xa5R\\xef\\ni$@\\xe0\\xa7}:\\x95\\xf2٧.\\xed\\xa7A\\xc6]\\x8e\\xf6T\\xa1e[\\xc6\\x11\\x88\\xb6(K\\xcf]t3\\x86\\xa6\\xb6\\xe3\\x17\\xf0\\x03r\\t\\x9aJ\\x95\\xc8I\\xc1QBT%\\xa6[\\x96\\x16ߞɛς\\xca\\xcb\\x11iV\\x94s\\x18\\xcb\\xd7\\x13\\x8b\\xa8\\x83X\\x8d\\xee\\x8ejr\\xcc7_/\\xb6\\xe5\\xf3\\xe5\\xe6\\xab\\xeb\\x9d\\xfa\\xd63Z\\x01\\xdbm`\\xfe{bY\\xa4\\xa6\\xcbgd\\x9d\\x1d\\xb6\\x05\\xf5\\x1b\\xb2\\xac\\x9d\\xd5d\\xb9\\x9a\\xf7Z\\xear\\x9e\\xc3m\\xfe\\xa1y\\xcdE\\xe0\\xeay\\x9aq\\xd1`I,\\x99\\x96\\xf7\\x1e\\x85⎬C٦\\x9dc\\xe7xN\\x19\\xab\\xa8A\\xe1I\\x8cMA\\x14\\x84]\\x84\\xec\\\"\\xd8\\xc48\\xfd\\x8b\\xad̳\\xf1\\x91\\x98\\\"4x\\x85\\x1d\\xd3\\xf0\\x04&\\x9d\\xf6w`\\x02~u\\x1d\\xe3:!a\\x84\\xf1\\xd0_\\xf7g\\xa3\\xe6\\xda\\xcf\\b\\xaf|^\\x11\\xe8Q>\\x06O\\x11\\xe2{\\x8a\\x03|;\\xf6\\x87\\x01\\xb6\\xd7\\x10`=\\x0e\\xc3\\xe4E\\x06%\\xbb\\xdc(\\xe2\\xa2\\xe7C\\x97)Ӏ\\xcbAc\\x97N\\xdd!\\xd8r@O\\xa2\\xd3\\xcc$i~x\\xfa\\xect\\xad\\\\~;\\xb3C\\xde=4T\\x8bF\\x83n\\xd5\\xffb\\x85Yf\\xa6\\x1c`\\xd7\\xd71\\xfb\\xc5\\xf1\\xdf\\xf6ڲ\\xb5\\x88\\xe6\\xe6\\x1f\\xf2\\x12\\xfa\\x13\\xf0\\xe8c0\\u007f\\xa9GO\\x04L\\xd8\\x00\\xd0|\\x8d\\x05j\\xee\\x839[t\\\"\\x92C\\xcd\\\\\\x84>\\x13/\\x8b\\xf3\\xa2\\xa5\\xe9\\xaarv\\xdc\\x18Mݛ\\x10\\xe3\\xcf\\xe4\\xf3\\u007f1\\xd7\\\\\\xbb\\xfb\\xdbZT~\\f=o\\xa4\\x93͇\\x1c\\r\\vSs\\xa6\\x98\\xb0WK\\xda|\\xf0\\xbb\\xe5`\\x0e\\xbd\\xe3\\xa5\\xc9\\xcf*\\x11\\xfdkT\\x9f\\xe0\\xcd\\x1fn\\xbe\\xc0\\x8b@\\x8f\\x107\\xc0\\xa5\\x80\\x03\\xa6\\xa8\\xf7\\x87l\\xec\\xa6\\xda\\x15\\xa8z\\x00mI\\xa8\\x8dP\\xa4\\xb9\\xa6\\x85\\\"\\x89\\x02(\\x98\\x80l\\xab\\t\\r\\x80І\\xb1\\x06\\x85\\x92%\\xe8\\xefR\\xb7\\xdcV(\\x1e{d\\x80\\x9d\\xab\\xb7\\x1eڭKQT\\xbcr`\\xa2\\x9a_\\x98^\\xba\\xf2/\\xe7\\v\\xea\\x95K7\\x8fǮ,\\xa2\\xfc\\xabw/\\xd9\\x13\\xc7\\xc6Q\\xe0\\xf6?H\\xe9\\xb7\\x1c\\xa1Ǳ\\xa3\\xff\\x1aRǦ\\xf3\\xf6\\xf2\\u008f\\xaaV\\xfc\\xeai\\xfb\\xadV\\xb5fO_ݼ\\xb4x\\xb5\\x93\\xdfS\\xbd*\\x12)-\\xc0\\xec\\xe7\\x94v\\x9c\\xd5\\xcd\\x1b\\x1c\\xf7\\xac\\xbe\\xe3ܭ}\\\"z\\xe0\\x19\\t\\x16]ǤQ)\\x8b\\xf8\\xe3c\\xe0\\xbdֈ\\xcfJ\\xf4\\xaf\\xad\\xb4[\\xd1Ȑ\\xaf\\x9egA\\xe1f\\xc8I\\x1b\\xea\\xb84\\x10\\\\\\n\\x85Х\\xe6\\x1aZ`1ȻW\\x1ep3E.\\xeag\\xf4\\x9e\\x1fZ\\x87\\xe7.\\xa8F\\xdaA!\\xe8#\\xdc\\xfc\\x8c,\\xbf\\xbcɡT\\xf3\\a\\xa2\\xf8\\x00\\xd8\\u007f\\xf0[\\x19\\x19y\\x8c%k\\xbb\\xbf\\x0f\\xb2\\xe3<;\\x02\\xa3n\\xfet\\xf3\\xb3\\xfc\\xaf\\xa2\\xaf\\x82\\xacO\\xba\\xf9\\xa7\\x12\\x9dhEw\\xe6E*N\\x9a%t\\xd6\\x1b\\x8bb\\xcd\\xc1,Sҿ\\x8c\\xe5\\x14\\xdd%,\\x81-^\\x19\\x88\\u007fPWUU\\xff\\xc5'\\xd8i\\xfdӋ\\xcd\\x1f\\x18a\\x05\\xf1\\xb2\\x12R\\x94)\\xe5\\xa1\\xccPa\\xb8\\xe0\\xaeh\\x19s¾\\xa9xa\\xddL:j@\\xd7U\\xf4mvj\\x9e/E\\x02P\\xe2\\x155\\x1e\\x1f\\x8be\\x0f\\xfc}dh@\\xee\\xacm5\\nӎ\\x8d\\xa6\\xf65\\xd7\\xf2\\x83f\\xd2\\xdc\\xe2\\x03T\\xfb\\xe4\\xf0{k\\xf2\\xe0\\xcc:n*h\\x91\\xa5\\xcfF\\xa93\\x04\\xfc?L\\xdd\\xe0\\xee\\xcc\\xd9\\xd1=\\v\\xc7rK#s\\x05\\x91\\x0f\\x13-\\x91\\x8e\\xe5\\xc2c\\xb9\\\\RTE0\\xbb\\xba\\x02\\xf7\\xa1\\xd1k\\xe6\\x8bK\\xf9\\xac(\\t\\u0090\\xa6\\xd8Ѽ\\x9d)\\x0f\\x8aH\\x1c\\x14E\\xb1'G\\xbc\\xc2\\x1d\\xdey=\\xb7A\\xbd4\\xea\\x9b\\xd9L\\xfe\\x15\\v\\x98\\xf9n\\x00`\\xdfz\\xa7_\\x02\\xf9\\x17\\x051~\\xed\\xd2\\xdek\\a\\x04\\xde\\x14qriaX\\x12\\xbf%\\b\\x83n\\x1d\\n\\x8b\\xd2\\xf0\\xd2b\\x12l\\xddm2\\xcbO\\x88bB\\xaaOOU\\x85\\x01\\xb0\\xb3\\xb1\\x18\\x8bf\\xf2Π\\x84\\a\\xb7\\xa9\\xa7s\\xc7˃\\xa1\\xb3\\xa6\\x02:i\\x8e;\\xc6\\xdd\\xe1f\\xa6\\x82,\\xaf\\xb4\\xd9?\\xdd\\t\\x02\\x99\\x9d\\x8c\\xd5tk*й\\x93\\x86?\\xb3\\x96\\x05\\xff(\\x1b-\\xb2F\\xec!\\xd6\\t4\\xac\\x14\\u06ddu:\\xa0\\xcf9О\\xaeҡ\\x9f\\xd0`\\xd1!\\xbdy\\x91fY\\xb9\\xd7h\\t\\x0eK\\xa9&X\\x1a\\xe8b\\n\\x14\\x15܄\\u007fP\\x1d\\xa3\\x1b V\\xe9\\xe13\\xe7\\xd6f\\xf5e\\xb4\\xb4\\xc9\\xf9\\x9e\\xf3]3+\\xa5Ɍ\\x8e%\\xa8\\x87\\u007f\\x9b\\xecx\\x91:hUv\\x88\\x9d={\\xe1\\xec\\xb2N\\xd54\\xb3\\xa3\\xdc<\\xb2\\xfd E\\x0e\\x03=\\x8e\\x03=^\\xcb\\xfd*\\xf7\\x1e\\xee\\xd7i\\xa41ڡJ\\xb6C\\x95Z\\xd7u\\x1b\\xc1JGXD+~j\\t\\xf0'\\xc1C\\x11\\xf8s\\xd8\\x1d\\xf6\\x94K\\x8a\\n\\xf8\\x9cP\\x9f\\xf7\\xaa\\xfc/\\xac\\xb8\\x9dV\\x1c\\xefY\\xbe\\xeaby\\x89!|\\xb2\\x83v\\xa7\\xe2\\x12\\xc5\\xff\\\"E\\xff\\x12\\xbd\\xc5\\x0e\\xeb)4\\xcb|S\\xb8\\u007f\\x92\\xd6U\\xe1\\xfe\\xa5\\x8d\\xce\\xe31v\\xdcZ\\x91Jmr\\xcc|Cp\\xfa+\\x1dZ\\xe8\\xf4p\\x1ez\\xdfh\\xbd\\x9f6\\xa5d\\xa7M|1\\x06/f\\x99\\xb7|i\\xb1̉\\x16\\x1a\\xd9Hڬ\\xb0\\x05it\\xd1X\\xf5g]\\xac//\\xaf47.\\x81F?E#\\x87^ \\xc1j\\xfe\\xf62\\n57\\xc0Zh\\xe7 \\x00\\x1f_\\x04\\r0B\\xe5\\x887SYZ\\x8b\\u007f9\\xa7^\\x89\\xf4\\xe6\\xb4\\xf8R2ؔ,A\\xe7\\x17\\xbd\\x8b\\xefb\\x98ec\\x18\\xa3\\xf3\\x98&\\xa5`\\xb6\\x9b\\xe4bw\\xfeJ\\xb3\\xe4K_AUְ\\x93\\x17\\xb1\\xce\\xf2\\n\\xc6\\xc1\\x0e\\xe7h\\xfaP\\x12\\xb9\\x83\\tod\\x1cR\\xa5\\t\\xeb.\\xbb\\x00%\\xd8\\r\\x1a\\x03\\x01\\x98hj\\x01:[\\x9e\\x9e.\\x8b\\xc0\\xf5O\\xe9\\xba\\xe8]#P\\x1fͯ\\x1f\\xbe\\xeb0\\xfcй=oL&߸\\xc7\\xd5\\x0f\\xfe\\xeb\\xe5\\xbb\\xef^n\\xae\\xd1ck\\x9d\\x8b\\xce\\xf3\\x0fs\\xa3\\xdcYfU\\f1W\\xb7\\x95\\xf43/\\x15\\xaa\\xe0\\xfd2\\x13\\x93m`\\x03{Ǧ;\\xb9p\\xc7\\xf6,`_&q\\x9f\\x02\\xb3\\x11[\\xa5a\\x9a<Va\\x19\\xfb\\xe8\\x03\\xb9\\xfdʸ\\x18\\t\\xfc<\\x10A\\b\\xdd^\\x9c\\xcd\\xf2W\\xe5\\xec%;\\xb6\\xfbP<\\xae\\x10B\\x94\\xad',\\x11)\\x1ewn\\xb3\\xbe'\\x8fK\\xe8\\r\\xa1\\x89\\x91{c\\xd1SJ\\x9a\\xea\\x12Q\\x96@`\\xf3\\xd0\\xd7u\\x99\\xea\\xae\\xec\\x84<:b9\\x8e\\x11\\xf8\\xb3{C\\x81@\\x90\\xa5\\x8e\\x98\\x81@h\\x90e\\x83\\x84\\x8c@h\\xb4]w\\x1fQD,ʣ\\xb4ᮤu\\x9d\\x19W\\x89\\x15>\\xe5\\xae\\x05n\\xfe|\\xf3\\x8f\\x80O\\xbf\\b<z}\\x87F,\\xb4L\\xd74\\x1atk\\x9bK\\x1d\\xf0!j\\x97\\xa5GW\\x81\\xee\\x0e4(Y*\\x8d:\\xba\\u007fhJJ\\n\\xa6\\xfeצ\\xfa\\xe6\\x90l\\x0f\\xa5+\\xa9\\xf0\\x8a5\\\\\\x1d\\fG\\x00s\\xa2D\\xc2@\\a\\xac\\x86\\xc3*&\\xb4d\\x93AQW\\x89\\xf8Ư\\x81r:&\\x8d&\\x1fq\\xecwhF\\xe0\\xbfڍPT\\u007f[zD\\xce\\xf1yy4\\xfd珀\\xea\\x0e,Sl\\x9f\\xd65U\\xffMz\\xf5yz\\xf5\\x05z\\xf5\\x01z\\xf5M\\x9d(\\x05,\\x88\\x8a\\x8e?\\xf2f\\xd3\\xcf\\x1b\\x1f\\a\\x9b\\xeff\\x16\\u007f\\x04\\x96ldY\\x18\\xd2\\x01ks\\x11\\r3\\x1b\\x9e\\xa2A'n\\x91&P\\xd7\\x013 J\\xcb5 ر\\xbd&4\\xael\\xfb\\xf2\\xce;\\x85,\\\\#.3\\xa2\\x86L\\xe1\\xe4\\xf0\\xf8\\xf8\\xf0-ǆb\\xf6\\xec\\xd0\\xe3\\xe33\\xb7g\\x86\\x9c7\\x13\\xf9\\xe0A\\x9e\\u007fsP\\xb9=\\xa8\\xda\\x12\\x11\\x84\\x8f;\\xaa\\x16\\x11\\xf8\\x0f\\xaa\\n\\xf9t\\xc80B\\x9f\\xa6X$\\x00G=A\\xaf\\xe0\\\"UO\\xa9Yk|~\\\\\\x89h\\xb3\\xb31m\\xb6\\x96hD\\x8a\\xdfp\\xf2\\xd2 _B\\x83B\\xf0\\x1b\\x9aԐ\\xf5A\\x8c\\x96\\x14+\\xaa#~N\\xd4t\\xac\\x0e\\f0ʶ\\xc9\\xedр\\xca\\xfc\\x04\\xb7\\xd7\\xcd\\xcc\\xcd֊\\x0567\\x98\\xdb\\xe89\\x904\\xd1\\xccM{\\x83\\t\\f81܀Gx\\x8a(ˌ\\x19F4{\\x92\\x9f\\x8c\\\\:%\\x8a\\x8f8\\xe9j\\xee\\xde\\xf0\\x1f\\xa7\\xa7\\xc1\\xca+\\x14\\xa3oҟ \\x81\\xe6w\\xe5H\\xe0/\\\"6\\x89\\x89`_\\xddk:\\xf2#\\x81\\xc0\\x1d\\x86\\xf9[C\\xb9\\x87\\x0e\\x15\\xf8\\xb4\\x93\\xab\\x96\\xa6Ӳ\\x93N7\\x1f_\\x8e\\x86\\xbf\\x0f~Z 2\\x1c^R\\f\\xd91e\\xa9(ł\\xb1\\xf6\\xda5̂/\\x83\\xde>\\xcd|I\\x97[\\xf9\\xcc\\x14\\x0f\\xec\\xc6Sӏ\\xd9xnz|\\xa3\\x9e\\x84\\x81dK#Iީ\\x93z\\xa1\\xb5PXh\\xef_\\xc5t\\xfd\\xacu\\xe1F\\x82\\rD1\\x9a\\xe3\\xcb\\xf5\\x06\\xfaW\\x8d߭\\\\5\\xf6Z\\xa4'\\x13q\\xe5&\\xaca+1\\x12\\x13F\\x12(\\xedD\\vqѐ\\x04{8\\x84\\x83\\xb1\\xa84\\x1e\\x14\\xed\\x848 \\f\\xf2C\\x82\\x9d\\x10RB\\\\\\x9c\\x06\\xcfC\\x1c\\x17\\x12bJ\\x1c\\x8aJ9U\\x11\\xabZ\\x02\\xab7\\x06\\xc6M\\xf4\\xda\\xf8\\x14F\\xcbᨬ\\xfchd7т\\xca\\t\\x1c\\xb1\\x94\\xa1hR\\xbeVS\\x13\\xe3\\x82 \\xc6ư\\x14H\\x98u'4\\x18\\x12\\x94\\x01\\x93\\xbf6\\x14!\\xa13\\x06\\t\\xbcǌȡ\\xdf\\f\\x04>\\x13$V\\xf0c\\x86l\\xbc&$Y\\xc1\\a39I\\x14J\\xba\\x16\\xd7O\\xe8fn\\x00\\x18\\x1b\\xe6\\xb7\\x1b\\x1bNr\\xb7\\x80\\x14\\\\\\xe7\\x1e\\xdbv\\x96S\\x86\\xad\\xc3<\\x97\\x18\\xfet\\x94]\\x96\\xa7\\xf2\\xb0\\xbd\\xd6Ԟ\\xe6l\\xf9\\x9e\\x95z\\xee\\x15\\x9dv\\x8e\\x15K\\xae\\x86\\xa9թ\\xc0^\\xb9\\xedK\\xa0;ӻ\\xf8A)\\xef<\\x97\\xb1\\xeear\\xa1\\xd8(\\x02e'\\x9b?%Q\\x82\\xef\\xc1\\xcasAa\\x10\\x85#\\\"\\x91ZRB\\x94\\xc5pX\\\"\\xa2''\\x0e\\xc8\\x18c\\x99\\a\\x83\\x16N\\xcbP\\x90\\x14E\\x82\\xcb\\xc3\\x066\\xe0\\x87\\x02\\xfaHvU&ov\\x86\\x12O3\\xe1\\xf1\\xe1D\\xb1\\x98\\xb8Z\\x8a\\xa9ڛU1\\xac>-\\a\\xdf\\xcc\\xf3\\xabt\\x8aA\\xcf\\n\\x89ҫ(\\bMY\\xcc\\xd2\\xcb,\\xab\\xfd}z\\xf9/ H\\xae]\\xa3\\xf3pM\\xc0\\xa2\\x00'v\\xcd\\x0e\\xa1\\xd0Z\\x88\\xa3\\xfb\\xa4]zgi\\x865\\xaa\\xb3\\xb4\\xe2\\x0e\\xa9\\x1ḅ\\xa4LY\\xf4\\b\\xfe\\xca4N\\x87?\\x83\\xec\\xec\\x0e\\x0e\\xba+:2\\xc0\\xa8\\xf7\\x8db\\xa4\\x91\\xa8\\xcdj\\xb1\\x84\\x95\\x1f&\\x11\\x05\\xa4\\x83\\x95-u\\x8bV*\\x00tM\\x9cÉ\\b^BxP\\x97\\x1b\\x92\\xf6\\rJ]\\xc4\\x11#k\\x1fd4\\xca\\xdc>3\\xfe\\xf8ЬF\\xa4\\x81ȱ[\\xa8\\xc4:)\\x98O\\x1e\\xa4\\xd8wK\\xa2\\x96tR?\\x18\\x14\\xec\\xd0\\xc7\\x05\\x81H\\xb6\\x1a\\xbc]\\x01br=\\xfb\\x04ي\\xea\\x16/Ƕ<\\xaad\\xbbc=Q\\x8b\\xd8\\xc52\\r\\xbb\\x81%\\xd3\\xe5\\xe6\\xd4y\\x01\\v\\xe3D(\\xa5\\x88T\\x14eY<v\\xe7\\b\\xbf;%\\x85C\\x83\\xddNN\\x16\\x80\\x11\\xf0\\r\\xab4\\x96\\xf5\\xb2D\\xae\\xab\\xd8\\xc2hZ\\r\\xc8K\\xddyЃ`\\xf9\\xef\\u007f\\xe5\\xf9r;\\xed0C+\\xfa2\\xb5@t\\xeftv\\xfb\\x8dd\\x1f\\xf45ӗ\\x9f\\xd9aǘ\\x1fV\\x8de\\x01o\\x9b۲\\x13l\\x0f\\xb1\\x9d\\xd3\\x0fm\\x0f\\xd1\\x03\\xae\\xf9\\xf4W;\\x82҇n\\xa4\\xff>W\\xbaT\\xf9\\x8a\\xe96k*r\\xbd.+\\xa6LOrWi}{\\x90\\xaf\\xea\\xd7\\xde+5_)\\x1e4\\xff\\xa9\\xf1\\xca3\\xa0v\\xca\\xe7\\xe9Έ\\x1a~\\x9f\\\"\\x1ff\\x89=\\x13\\xafg\\x89=;\\xa6H\\xfd\\xc9\\xfbd\\xe50K\\xf1\\x99|\\x9d\\x9b\\xe2\\xc3⦮nN\\x83%=\\xe6\\xedV\\x05(\\r\\xe4\\x99\\x1f,>\\x05\\xe0.\\\"\\xb6A\\x94\\x82$\\x99\\x8e\\x89\\x1a\\x15\\x93H&ɚ|\\t\\xab\\x92*=\\xa5¿g?!\\b]\\xa5\\xe6'כ/>\\f\\x86\\xfa\\xa5\\x87\\x11\\xdaPH\\xf3\\xe3XW\\xf9\\x9a ,\\xecA\\nA7tJ\\xbb\\x9bߟB\\xc9\\xe6?L\\xa3\\xe4D\\x13\\xa5\\xa7\\x9b\\xdf\\xef\\xe8a\\x8e\\xadߎ\\xf9<\\x0f\\n\\x15s5Zi}\\xd4f\\xc0p\\x0f$Vt\\x0f\\f|\\x1d]\\x8c\\x17\\n\\xf1so\\x15D}\\x8d^\\xa1s\\xf0\\xf6u*P\\xce\\xed\\x0fl\\x10\\x05],ě\\x97\\xe2\\x85[x}\\x15\\xee\\xa6\\xe2\\x85\\xe6\\x06J\\xb1]r\\x97\\x882_V\\xbd<\\xa0\\xee=\\xcf}2D\\xf3=\\x11d\\xd2S\\xee\\x92,#\\n)\\xd1w\\xc0\\xe1l\\xe7\\xb2[\\xa8|t\\x83Vw\\x1f\\xfa\\xee\\xbf\\xe6zRڜ\\x9e7\\xa3\\x97\\xfd\\xdd~\\xb2\\xd3\\x1d*\\xfa`z\\xc0\\xff\\x12\\xba\\x06\\xb0ɯ\\xa3u\\xd0+\\xe3\\xdc2w'\\xf7:\\xa0z\\x85\\x86\\x9fkYL\\xf5K\\x91\\xadg\\x82?\\x93ebլ\\xb8\\xebw\\\\K\\xda\\xd6\\xddX*\\xdd`\\x87\\xe8\\xa7*\\xe8\\xd6\\x01\\xc7f{LݿZ\\x96\\xd9~\\xc0^\\x16\\xabo\\xcdd\\xa7\\x95<\\xc0\\x93\\xff\\xb4\\x14\\x88\\xec\\x16丞5#I;\\xe2\\xcc9\\xd7)\\x8a\\xa1,\\xbd\\xa9\\x14r\\xfe\\xd61\\x9b\\xd7\\x18\\xb4\\x88\\x9e\\x94\\xf0\\xddJxrH\\xb1x\\xbb\\xb8\\v\\thq,q\\x9b\\x9eVCyEIư\\xf4\\xc8\\xe4\\x82 \\xac\\x06\\xf5\\xbd2\\xc1Q\\xd2\\xd05M\\xd3\\x03\\xa7E\\xf1u\\xee\\xe3K\\x9b\\\\$\\x10PSA\\x85\\xc4B&\\x1fY\\xa6\\x95\\\\)\\x14j\\xbe\\xa4\\x06\\x14%\\x00\\xb2\\xfdU\\xc4\\x14\\x82\\x8a=\\x17\\xcd\\xf2\\x8b\\xeb'U1\\x10I\\x115\\x17\\x91\\xf0U닼6\\x8f-\\x99 \\\\\\xd1\\xc0!W\\xf5\\xe3\\xa2Xb\\xcfu\\xfb\\xccC\\xa0\\x93\\xd6zV#h\\xd8P*'E\\xc7\\x06{\\xb7X(\\x82Q\\x991x\\xba\\xcb\\x05\\xc4-\\b\\xab\\\"]K4\\xa4\\xac\\xbbŀE\\x1cm\\xa7\\xcc6 \\x88t\\x15\\xd9A\\xffl\\xba\\xe1\\xad\\xf0ȭBX\\x8f\\x9a6\\xdd\\x14\\xa3\\x87\\x85S\\x12\\u007fM\\x15\\r\\x1aN\\xc81\\x06\\xd1\\xf4\\t\\x9ez\\xd7)Ym\\x84\\xdcf\\xaa>0`\\xc4Q\\xa8\\xa1\\xcaAYi\\x84hS\\x19\\a\\xf4\\xa0\\x16\\x10B\\rE\\xa6\\xe5\\xe6Ϙ\\x00!v0}X\\b\\xaa\\x06X:rP\\t\\nǚ_h\\xf2\\xfc\\xbeQG\\xd5u%\\x96?\\x88\\x84&\\xfe\\x92J&u\\xb7\\x11ݵ\\xc0\\xeb\\x93D\\x05+`\\\"\\x00\\x8d$\\xa2\\xc9:\\x1f\\x98 \\x8a\\u007foL\\x91\\xe9\\x97C4\\x02\\xd6\\n\\xbd\\xb4\\xcf\\xdd9\\x11T~C=\\x95ୌb\\xd2\\xfe\\x16\\n\\xdd\\t\\xd4\\xda9\\xfb)\\xcb\\xd2u\\xf6\\u05ca.\\xd0聥\\xaf4/>_-\\x80\\xf3\\xfd\\xb4\\x12(&\\xc4x0\\x18\\x17\\x13ŀ\\x82RK A\\x97\\\\9\\xef.m\\xb8\\x82\\xb5\\xf9\\\"\\xdd\\xc2\\xf1b\\x81>\\xf4qM\\x8e\\xc42\\xb2\\x9c\\x89Ed\\x8d\\xed\\x11p\\xe5d\\x90\\xedl\\xa6\\xeb7\\x87\\xe8^\\xe0~\\xf9\\x98;B\\xdb\\x15\\x14\\xdf\\xe6\\xba+\\x15\\xf8R3\\xd5\\x17\\x8bEY>\\xdb\\xfd\\xeb\\x97\\xd6ya+2KrH\\x86_\\xf7\\xa9Onw\\xc6\\x1f3nM\\xceB[\\xfa5\\n\\xae( y\\x9a\\xfeŶ\\x99\\xb8\\x1f\\xa9\\xa9\\x94_d\\x9f\\x99Yf\\xab\\xac\\r&j~\\xef\\xfcll*\\x99\\x1c\\x1a\\x9e\\x1c@\\xf9<H\\x9d\\xfc蒐\\xcf\\xe5\\x85%t\\x92}q\\xe6$[g\\xfd\\x8e'\\xb0J\\x05^UQ1W]:~\\xff\\xfdǗ\\xaaUU\\xe5|\\xeb\\x93t\\f\\xa8N\\x9d\\xefO\\xff\\b\\xa5\\xff\\x1c\\xfb\\xeaB\\x16\\xef\\xc89+\\x8c\\xce^\\xb0\\xb7y\\xa9ce\\xdb}\\xf9\\xe6bg\\xa7\\x0f\\rMQfAk\\n\\x93&}\\xe8\\xcc\\xd6}||\\x93\\xf3\\xb8f\\xa5?\\xd4\\x15o\\x9f\\xb5\\v_\\xb4g\\xf9d\\x9b\\xeb\\x16z\\xbd\\x1c\\x93F\\x1d\\xc0Ѯ-\\x9c\\xd2d\\xe8m\\xe1\\x17 \\x81\\x18v\\xe1\\x0f\\x8b+\\xfd\\xd8d\\x8d\\xa1ىkl\\xb8\\xd9E[\\xf0\\xa9\\xd1\\xed\\xbf\\xe9r\\xef\\xee(*\\x8dz\\xde\\xfa\\xa6\\u007f\\xfcGL\\xf7h\\xb3\\xfe\\xb8\\x14؟\\x9c\\x94f\\xf1\\x914\\x1d@@\\x86%ɡ\\x8bpLy;l\\xbbc\\x92C,\\xb7j\\xfb\\x98$\\xc0\\x927\\xd3Q6\\xe8[\\xa3\\x90\\x97\\x9a\\x17\\x01\\xb2\\x8b\\xc0\\x03\\xfd\\xe3\\x8f/\\xbe\\xb8\\x86\\x96h;\\x0e1\\x9f\\xeb+\\xf0Ώн\\U00088b7b\\xd2e|\\xea\\xeaO\\xf3Qoi\\xb6\\xad\\x84\\x99\\x15W\\x05\\x85G\\xd5&u\\xac\\xf6\\xd0|:\\u05ca\\xa5\\x05\\x1a\\xfbi\\x14ݪz۲e\\x8a\\xb3n\\x0f\\xf35\\xaf\\xa2\\xed\\xd4z6o\\xd4}\\x92\\xbe\\xdf]\\xa3\\t\\xd2$C\\xf7\\x1d\\xc4q\\xab0]\\xbaĂ \\xcbFQA<\\x16\\x83X磇\\xe6@\\x01jڀ\\x82CD\\x19\\x00m(\\x8a\\xbb\\x0fEy\\r\\a\\t\\xe6\\x95\\\"\\x0e\\xb0\\xf6\\x19Lx\\x11*W\\x0e\\x1dZ\\xc1\\x1a\\\\\\xd2\\xdd.\\x86̺\\xe21\\x81\\x9eP\\xf4\\xd0\\ue79e4\\xcd\\xd7ӈ\\xb4}O7\\x8b:x˲\\x93\\x91d\\xbaۏ\\xe0k\\xc6V\\xe7\\xa0+]\\x1f\\x98\\xa2\\x13o*\\x0eע!ί\\x8e]\\xe3=\\x9eu\\xc0\\xa8\\xa4\\xcf(\\xbcF\\xe0\\x05\\xc8\\x1e\\x1b\\xb3\\x11@B4\\x1eL_\\x83uG\\xdc\\xfe\\xfb\\xf5\\xa6i\\xaf\\xb4\\xb3\\x96\\x8cq\\xfd\\xa0\\x127\\xcb\\xe6+\\x97\\xf7M\\xb8H+\\xbc\\xd0f\\xf7N\\xfa\\xc3\\\"\\xa2\\x9b\\x9a\\xa9\\xcfM*\\xccƉ\\xc0\\xb4\\xf6\\xcfb\\xe4\\x86\\xef\\x1f\\xa3\\xa0\\x85\\\\\\xc1\\x13\\xa2\\xd7\\xd7fpL?%\\x87\\f1\\xf3\\\\\\xf8\\xb10/\\xdc\\\"|\\xa9yi\\x995Ny\\xfb5Vؗ\\x1c\\x9a\\x17\\x18s\\xba\\x85]\\x8a\\x815\\xbckhhH\\x00A\\xb4ҼPr\\xdbv\\xed\\u05cf\\x81ܩ\\x02\\x1eW2\\xff\\xd377\\xa2l\\xcf\\x19KÏ\\xa4ۗ\\xd5Z\\xcfTn}6\\x8b\\xb4\\xb3l\\xd2\\xe8\\x12\\xc0\\xbeN\\x01\\t\\xa9\\x18\\xa3\\xfb\\xf0\\r\\xcd\\xc7ؙMvv\\xe3\\x01\\xb6gs\\x86\\xa6ќ\\x91\\xe5C\\xcdK)&\\xa0\\x10G\\xf3\\x18\\u007f\\x82\\xb1\\x8aV\\xe8\\xe9'\\x18f\\xd6&\\u05fau+\\xdb\\x18\\xfah\\xeb\\xa9\\x15\\u007f\\x9c\\x9ff\\xe1\\xcf\\xf4\\xf1\\xa1\\xa8\\xf8\\x8b\\xb6>\\x80\\x161\\xab>\\x0f\\xdbK\\xa7\\xf4\\t\\xf9\\x15\\x10_u\\x96\\\\\\xfb\\x00\\x1eӟ\\xd1\\xe9\\xea\\x83ճ\\xb1\\x84:\\v1\\x96=ۼ\\x1b\\x1c\\xc0\\x9c\\xae\\xe7ܤ\\xcan\\xfb;\\xb3\\xd5\\x13h\\xb4\\xbdN/S\\u007f\\x0e\\xf9\\x8d\\xffg\\xc0\\xc2\\xd8/c\\xe9\\x94,\\x9f\\x92\\xb0\\xbc\\xbf\\xdb\\xea\\xff\\xaa\\xae\\xdf\\x17t\\xef\\x05\\xfb\\xbc\\xab\\xee}\\xc1,\\xe7\\xa5L4\\xdcXB+\\x9f\\x94\\xbeUfݡi\\xd6\\xddd\\xa7\\xb7\\xfb\\xf4\\xeb}P|\\xaf\\x1b\\x88-~Ef\\xab_\\xc1\\xd6\\xed;y\\xf8\\x94\\xb4ݮE\\xd7˺\\x9c\\x8b\\u07b7myW+#\\x84o}C\\xca\\xf3\\xeb\\xbc\\xfd\\x06\\x14G/\\x11\\xc4\\xed\\xf0S\\xdd\\x1d\\xce\\xfaq\\xfe\\xb6\\x1f\\f\\x8e#\\x9b\\xbf\\xd8\\xfc#~\\xbfg/8`\\xb5%Y\\xd6\\x16\\xc7\\xd2\\xe9\\xc1pϸ\\xab\\xf9\\x15)\\xeb\\x80\\xcf])fI\\xa5A\\x9cb\\xc5i\\x90F\\x16\\xbd\\x88ExE\\xf3\\x87\\x82.4\\u007f\\bo\\x14\\b:\\xb2\\xabz\\xa0\\xf9o\\xd5/U\\xbf\\xb6\\xe7@\\xf5\\xd4\\x03\\a*\\xb7\\xddf>PE\\x17\\xa5\\xf3\\x844\\u007fG\\x14\\xd1u\\x84\\x9c\\x97Jk\\xec߹\\x8d\\x8d\\x1f\\xffxc\\x83\\xf3ֺ\\xa9OE\\xc0ǮqW@\\xb1\\xfd\\xcd3\\xe0W\\xb6\\x05\\x94\\xad\\x17\\x01X\\x15\\x18Yo3h9\\xb2E\\xab\\xc2E\\x1a*\\xa2p#]\\xad\\xa3\\x18\\xb3\\xb3\\x1e\\x05\\xbdl\\x10\\x1c\\x14yY\\x10\\x05\\x1e\\xf4\\xf4\\x92\\xfc2ՙ\\xbf\\xa0:3\\xc0\\x97\\x06\\xf34)`0\\x8f6\\xf2\\xa8D?\\x99rӝ!\\xf9\\xa4,\\xaa\\x82\\xc8\\xf3\\x86\\x80\\x1a\\xd0\\x01\\x02_\\xa8\\xc9\\xda#з͗6\\xe8\\x03\\xec\\xe0\\xfb\\x9e\\x03]\\xab\\xdf\\x1a\\xc7\\xe8\\xdaUW\\xdc\\xe1\\xbbd\\xddր\\xfb\\xe1\\xbd\\xf3\\xf8\\xee\\x85\\x05E\\xb1e\\x05N\\xb2\\xad(]\\xa5^[\\xc1Kp\\xfe?\\xfd\\xdaz%\\x1a\\x8bn}\\xffȵc\\xc7i\\xce\\xe3\\xd6\\xef\\x00\\xba\\xe7\\xc2+\\xfa:\\xd2;\\x98\\xdd\\xe1?>\\u007f\\xd9\\xef%\\xbd\\xe4\\xdb\\xe3\\xe9\\xfe\\xbe|\\xf9\\x0f(u\\xdb\\xe0\\xd4\\xc6ݵU\\xce\\xe4\\xbav\\xa06\\xea\\x05\\x0f\\x9f\\x06ݓ@\\xc9N\\xb9\\x89b\\xf3xWP\\xb3k?j\\x1a\\xff\\x16\\x83j\\xdd\\xca\\v(\\x88U\\xad\\xa0+`5\\xf0\\x91x\\xb7X\\xca\\xf9\\xf6\\xa6\\x16\\xe5\\xbd\\f\\x8f\\xd1XX\\x96%\\x05\\xfeI\\xb2\\xac[\\xea\\x16\\xb8S\\xae\\x87\\xb7e_h\\xcf\\x1e\\xd5=\\xc8\\xfb,\\x9a\\xb7\\x10FѪS\\xdb\\xc5vw\\xb7S\\x14y`\\x1f?\\x1a\\xef\\xbf+\\xe3n_\\x8d,F\\xd8\\xf6\\xd5\\\"\\x80$%\\x14\\x15\\x9bꊢ\\n\\xd2sXU\\x12\\x12T\\x86%\\x9e\\x17\\x89\\xb4ҳ\\xa1tp\\xd4\\xdd\\xd4j\\xdblS\\xeb\\x1b(\\xcb\\xd3o\\xc0\\x99\\x11U\\x88\\t\\xa6j.ELAVdZoJ\\n8\\xf84\\x97\\xbf\\x1b\\xbfq\\xf6\\x8dʭ\\xf8\\xb9[&2\\xee~\\x89\\xaa\\xbbY\\xa2\\xecn\\xa9\\xa8\\xbb'\\xab_\\x13\\xec\\xf5\\xe3\\xc7\\xf3Y=\\x84\\xc3a\\x1c\\xd2\\xe9\\xd1\\u007f}~K\\x8d{\\xfdvפ\\xef\\xc2\\xf5\\xb5۴]ޮ\\xf3G<\\xf3\\x9e\\xe5\\xaet\\xef\\xf3-\\xb2/'\\xd2]\\xb6[\\xf9\\xb1\\xc7Glϭ\\xd6Wvz\\xea\\xb7\\xdb\\x0f\\x8c\\bKߛg~c\\x81\\xa9\\xe9\\x93,\\xeb\\xaf\\xe6\\xaba\\xc9\\xf9\\xeb[7\\n\\u007f\\x99\\xb5\\xbc\\x86\\xb9\\x91\\x13L};\\xac\\xb7u_\\xcd\\xdb\\xdb\\x1b\\x88\\xb7\\xeec\\x9e\\xec3\\x9e.\\xfc\\xbb\\xf9\\xd6\\x16k:\\xbd(\\xf3\\xc2\\xe4\\xeabʧشx\\x17\\x9bPG\\xe7\\x17$\\x14Pf\\xaa3J\\x00I\\xdd0\\x9e\\xebȂ\\x9b3\\x83\\x8a.\\x04\\x83\\x82\\xae\\xd0o\\x10\\x04\\xfa\\xecE\\xafs\\v\\xdc^\\xd0\\x16WqG\\xb8U\\xba7\\xe9\\xb2{ӻ\\xbfGƲX,\\xbbҨ\\xb1\\x8f\\xc9\\xd0R\\x83\\xe6\\xc3\\xf8Ε2[x\\x03-\\xbb\\xdd>vf\\xb61_)6\\xa2\\x90X\\x8c(gJ\\xa5\\xd2Y\\xf8;3\\x12\\xa3\\xb6kl\\xfb\\x9d\\xedل\\xc5\\x1cR8\\xac\\xc5d\\xa2\\x8c\\xc4\\x14\\\"\\x8f\\xc4b\\xed_L\\x8e)\\xc3p#\\xd6G\\xee\\xf5\\x8b\\xb4\\xb2\\xcd:\\xeeW\\x13\\xeb \\xf9\\n=\\xf8w\\xf1R\\x99\\xe8\\xbctd4^\\x1f\\x11x\\x9d\\x8c\\xbe\\xfd\\x11\\x1fR\\xdd g\\x04U\\xceLY\\x05[V\\x85\\xc0Q\\x1f\\xfc]|\\x12`\\xdf2\\x1d\\xa7\\xf2\\xb8A\\x85o\\xb1ޠ\\xf2\\xcc\\xc1NW\\xa9\\xd0\\x17f\\x96\\xe1\\t\\x10\\xbf E\\xa9k\\x16tOo\\xe8*}e+\\xf4\\xd7\\x1e\\x91\\x18\\xec/\\x80b\\xcbd\\xec-\\xc7\\xefnEc*C\\xb1\\xd8B\\xcf*\\xb5:.G\\xcf\\\"\\xe8\\f\\xb1\\xe2W\\\"\\x8d\\x02\\xfb8e\\xa7bG\\x12\\u007f\\x99 $kF\\x90D\\xb2<\\n\\bJ\\xa0\\x10P\\x84\\xa7\\t\\xe2\\xb3\\x05_\\xc5\\x0e\\xc4?\\xc1\\x13\\xdd\\x0eCWI\\\"bӶM\\xcc\\xf3$9\\xda)\\xb6\\xf1\\xfa*\\xdbS5\\x0eX\\xdd@\\xf76\\xb1TL\\x9a\\xc3(\\xb4\\x91qwv\\xd5[\\x80\\x17=L\\x1a\\xaena\\xbb\\xc00\\xa1\\x9fGa)A\\xd5b9\\xd7j\\xd6&\\x01\\xfa\\xe6\\xc4\\xf0\\x14!S\\xff\\x1a\\xaf\\x17E\\x86\\xe1(\\xc3x\\xad\\x85\\n\\xf6p;\\xa5S\\x94N\\xef\\xdfm\\b\\xe5\\xdd\\xc7)m\\xb4x\\xf3\\x87^\\x8b.\\x92\\xa0Tf q\\x85\\xa6]\\x91\\x18h\\xfe\\x93\\x95w(\\xd6\\x01A#\\x99\\xa9O\\b\\x92\\x1f\\xe3\\x89\\xfc\\xc8iJ\\xeaL\\\"\\x9c\\xa2\\x84:\\x9e\\x1e\\x16ܻ>\\nu\\xf3\\xe70\\xf3\\xf3\\x0e\\x80\\x9f\\xd7\\xc5s\\xd3\\xee\\xb7\\xe6hz\\x82\\x1b(\\xc0\\r\\xaac\\xb1\\xbb \\xcf\\xf2\\x16\\xeaI\\xbe\\x97o\\xd1\\xed]\\x1cx\\xf6`Ȑ\\xa4\\xb8\\x01Nt\\xcc\\b\\x99\\xa2\\xc5\\xffw\\xc9\\b\\x1d\\x94yK4CJX\\x17\\xc0\\xf76t\\xf5G>\\xf6\\xf8u\\x1f?.\\x86š`\\x80\\xb62B\\xbc\\x10\\x87\\a\\x0f\\x04\\x87\\xc40/\\x1f\\f\\xc5\\x05\\x84\\r\\x85\\xf0\\ba\\xf5B\\xd7&\\xe8^\\x1e\\x9e\\xe0v_\\x9e\\x87\\xa9U\\xc1\\xf6*R}[a[\\x17\\xeb\\x0e[_ؙw?\\x1f \\xe941\\xe4\\x15\\x8cW\\xfe\\x8e\\x1e\\x14LhM`\\av\\x9d\\x0e\\xca##rP*\\t\\x86Pb\\a\\x89Ȭ\\n|\\x8f&\\xf8\\x1e<\\xfa\\\"\\xa7\\xb1\\x9d\\x14s\\xdc\\xd5\\xdc\\xf5\\xdc\\x19\\x90\\x1du\\x1aۧ\\x184\\xea\\r`@\\x96\\xf7\\xedr\\\"\\xe0\\x91\\xaf7܌p\\x90'\\xd4\\x15\\xa0\\x9fzc\\xfbƨtǢ\\xfb\\x8d\\xe2\\xc24\\x0fX\\xf2\\x19fZW\\xeca\\x9e\\x0ej\\x9d\\x8e\\xaem\\xf0l\\xdd\\xff~\\x89 =\\x12\\x9a΄\\\"\\xa3\\x83\\xd6p\\xa2q\\xe8\\xf4|\\x8dH\\xd3\\xf5㻧,\\xf4\\x96!+\\x17\\xdbu\\xd5\\xe9J\\x89\\xe0\\xd1\\xc9\\xe3\\xbbgB\\xfb;\\xed\\x9b\\xff\\xa4\\xf2\\x0e\\xaf \\x15IU\\x95Wo\\xa8*\\x82\\x04\\x15\\xaaW.LEĠ\\x18\\xb1v\\xaf\\x0ecD\\nK\\x88H\\xd7FB\\x99\\xe9P\\xa4\\x8eɁ\\xa7\\xeaW\\rF\\x13\\x89\\xb9ɇ\\x1f\\xc1\\xf8\\x8a\\x8f\\xec\\xba*\\x1aIXs\\xa5_[\\xed4{\\xa3Jn\\x80ޫ\\x12\\xb2x\\xc7\\x16\\xa4N\\xe9\\xect\\x1e|\\xb2\\xe1\\xd5\\xddQ\\v^a\\xf5\\xeah\\xbawie\\xbb\\xf1o\\xf1z\\xb1\\xd1\\xfeD\\xbb\\xff\\xcb\\xedy\\xb7\\xc0\\\"d\\xfe︣>,\\xd1\\xe2\\xf8\\xcf\\xe1\\xb8 H\\xd9 \\x0f\\xe6}V\\x12\\x848F\\xb28<,\\xcaHtK\\x02\\x16X\\xd1\\u05ee\\x1f\\xaf\\xb8\\x13\\xe0\\xcalLT\\x904,\\xc1\\x0f)b,+I|(\\xc4KGYA\\x90\\x10\\xa2%\\xa9ӊ~\\x97hss\\xf3\\x05\\xfeW\\x00\\u007f\\xbaߒz\\x8e\\xfb\\xc1\\x0exM7\\x0fI\\x94\\x1cE\\x17}b;\\x8c\\x14\\xf5F\\x12\\x95\\xeb\\xf9\\x02Y\\xe4\\xe9\\x0e\\xe4\\x02\\xa1\\x1f\\x16\\xb6[4bOo\\x91\\x8b\\x85-\\xd2\\xcf\\xc7D\\xfc\\x116v:\\x1dƻ\\xb5p\\xf6\\xee\\xb7ݝ\\rk\\x03\\xb7\\xde{k\\xf3\\xa3Z\\x11_q\\xcf\\xdb\\xee\\xb9\\x02\\x17t\\xed\\xec\\xf9\\xb3\\u007fۢ\\x1f\\x13\\x95\\x91^I\\xf9?\\xfa\\tŋ\\x1d\\xf6p\\xdfw-}\\xf5J*X\\x9e\\x9b+\\aS3ss\\xbf\\x8b\\xe4\\xc5;\\xe7\\xe6\\xeeܣ\\xa0Ckk/\\xbb4er\\xf3\\xa1n\\xb1\\x99\\xd9QF\\x12\\xe0\\\"\\x9aQ\\xe0\\xb3a\\xa5Z\\xb1\\x93\\xa2\\x15tS\\xdfa&\\xb1\\xdd\\xdc\\xd4\\a\\x04\\xca, ?\\xe5H\\xb4\\xbd\\x06R\\xef\\xb2\\xdb\\xd1lX\\x8b\\xf2\\x02o\\xf0\\xbc\\x10\\xd5\\xc2\\xf9x8i&f\\xe6\\x80\\x15\\xe6fD\\xa7\\xa3?D\\xe7\\v̾\\xf8\\xa4\\xdf\\x14ٜP$M\\xd3\\t\\xd15MR\\xc6\\xe3Es\\x88\\fܺ\\x8b\\xae~\\xec\\xbau\\xc0\\xd0&\\xacX\\v\\xe5\\x985\\xa1\\xfd\\xd8o\\xa5\\xf4\\xe2w\\x88\\xbb\\xee?\\x86_\\xd8\\xf6\\xa6\\x0e\\x95\\x9e\\xc4\\xfd\\xe8\\a\\x9b4\\xce/\\x8b)(\\f*C\\x15*P\\xcfS\\xa1\\xeaI\\xd9\\u007f\\x1f\\xd6(\\xbcU\\xe0z5\\x9c\\xf7\\x1d/\\x97\\x0e&7\\xc0\\xa5\\xb9Qn\\x06\\xfc4\\xba;\\x99}\\xc2\\xda\\xef\\x18o\\xe7\\xb0\\xfc\\a\\x88\\xf6T \\x1e\\xe1]OZS\\xe1a!\\xff\\xd1-\\xdė~I\\xf2!]\\xb5t\\xcf\\xd5Ɗ\\x1c\\x8eU\\xb789\\u007f\\xf8\\xef!\\xa4\\u007fN\\x04\\x99l\\x99\\xa4\\x99S\\\\w\\xfc\\xa0\\xde\\xe2q\\xa7K\\xc6n\\xf9\\xe2Iu\\xa4\\x15Bp\\x11\\xbf\\x811\\xe6\\xd3]\\xd2\\xf4\\x19\\xbf\\xa0\\xd5ca\\x19\\xf0\\xa1H\\xc9J8Ǹx\\xd5',=\\x8f\\xbf\\x9f\\x1d@\\xc7t\\x17\\xcd\\\"m\\xf1\\xb7c\\x11jё\\xac\\xab\\x0e\\xab.Ӳ3X\\x84I\\xa1\\x17ږ\\xaf\\xfa\\x9b\\f\\xc8g\\xb2\\xd9\\xd1$\\xc2<\\xc2f4j\\x8a\\\"=b\\xc4\\xe3\\xd0`X\\xfb\\x90\\x1fd͝\\xac!\\x06\\xeb\\x1blðC\\x83\\bc\\x81(\\x03`\\xbbh<Q\\xe2\\xb2\\xcc\\x13\\x10l\\x8a\\x1eD\\xf9\\xaet\\x8e\\xad\\xbeD\\x84\\xf9\\x12W\\xd0y\\x1a\\x01\\x9a[>\\xd6\\x14\\xb78\\x10\\x97A\\xb0\\xde\\xddA\\xfd\\x19\\x10\\xaa\\xba\\xa0\\xeaT\\xd0\\x06\\\\9\\x1b\\xf2c\\xc2퀲T\\xf0?ˣ\\x91\\xb6\\xe5-\\t\\xaeL=\\xe7\\xc7l\\xf82t\\xf8\\xcf\\xfeǓ\\x1e\\xfe?\\a\\xfc\\xd3\\xccR=\\xc6\\xddM\\xf7+\\xec\\x80^%)4Z\\x84\\x11*\\x9e\\xfb\\xed\\x89]\\xa9e\\xc4.\\xba\\xcb`t\\x1e\\xda\\xec\\xd3\\xf4Uo\\xfd\\xb4\\x90\\x05UXs\\xe3\\xe5\\x952*\\xed\\x80\\xf8A\\x8fwy=d\\xa9nD\\xece6l\\xe8\\x06b\\x86\\x8f\\xab\\x82#\\x90\\xb0n&DA\\x0e\\r\\u007fX㧫`\\x9c\\x9f>\\xfd\\xb8\\xa9\\xc9$\\xa82\\xfb|\\xf21;h\\xd8\\xc1A\\x9e\\x06\\x97\\xdaԀ3Uw@\\x8ceU\\xa5\\xe12%\\xa4a\\x16>\\xd3\\a#\\x91\\xc1\\xf0G\\xc2i\\xc9\\xe6\\x95\\xe3\\xba\\x13\\xe2\\xf9HH\\xe1\\xa5\\xe0\\xcc\\ba\\xde\\xf8\\xe9\\xa9\\t!\\xa0\\r\\xa7\\x98?\\xd1\\xff\\xdbk\\xbe\\x98\\x05\\xe7\\xed\\xa5\\xacg\\xbac\\x9ct_\\xba\\x9b8\\v\\xb3\\u05cb\\xb6\\xa0ô\\xcb\\xfb/\\xf8\\xd4\\xd0G\\b\\x182WL\\x19SW\\x80\\x99\\xd3\\xf3?m\\xb9\\xff\\a>ms\\\\\\xc1\\x93\\xf3\\xf3\\x93X\\xd9\\x1a\\xabd\\xfb\\x85{\\xe1\\t\\xf7\\xb0'\\x8d\\x9d0\\x83í$;\\xc0w\\xae\\x9b\\x1b\\xdfO\\x0fYVGm\\x8a\\xef\\xef\\x041*\\x01빖\\x01e\\xbd,=\\x8c\\xb6\\xaa\\x8etP\\xe8\\xc1!\\x01\\xf2\\xa5\\xb1\\x15\\x87H[\\x19\\xb2O@\\x15\\xda\\x1e\\xc6N\\xd0\\u007f\\xb2\\xe5M\\xc8\\x06\\xf9\\xb1\\xd2\\xf1.\\xce\\xef\\b\\xb7\\xd8Vo\\xa0\\xd9n\\x97|\\xfa\\xee\\xda6\\xd4\\xdd0\\xa7\\xfb\\xc3\\x1c\\xee\\xd5y\\xe8\\x15pē\\xf1\\xb6\\x0e\\xf3\\xa2\\xc1w_\\x9e;P\\xae\\xa3\\xa4X<\\xb8\\xdc\\xc3(\\xe2\\x16\\xbe\\xed\\x13\\x19\\xeegQ\\xb9\\x12\\xeb\\xb5[\\xad\\xa5.\\xc9ڎՐ\\x9e\\xf7P]\\xb1\\xbf_\\x9c\\xd6\\x17\\xaf\\x04\\xc7\\xdf\\v6W\\x1b\\xa0\\xd8[\\x11Kb\\xf5\\xde\\xdb6f\\xc9Ϗ\\x8d͏52N\\x98\\a\\x85̇\\x97\\xc6h\\xc5A\\xa7]qq\\x9b\\x80\\xe5缆\\xa6\\xa5\\x8b\\\"\\xbd-\\x8a\\xbaeN\\xb3\\xee\\x0e\\x99NW\\xfd\\xf9V\\xe0\\xd2?\\xf6i\\xae\\xd2c˶\\x13q\\xbc,{\\xb0Nj\\xee\\xfa\\xa8\\xdf\\xf8\\xa1\\x82\\xb4ޫ\\xea\\xbbM\\xd9Gg\\x01\\xc4Yx\\xe3䝓p\\xfcd\\x10+\\xba'!#\\xf1\\x00\\bȳ=:\\u007f\\x91}\\xb2\\xc7C\\xf0_v\\xafP\\xcbce\\xf7\\xbd\\x14\\xfc\\xdf\\x18\\x18\\xf8\\rz.{*_\\xa1K\\x06\\xb1\\xf0\\x98\\u007f\\x11!|\\xc0\\v<\\xe3\\xae1Lr\\x05n\\xaa\\xdf\\nH\\xa3\\xbd\\x92\\xc0\\xe4}+\\x10\\xd8b\\x1f\\xc2bAl\\xe4\\xfcc\\xf5\\xe2|\\x01d\\xb3\\x1c\\xc1\\xb1\\x02\\x00\\xb4\\xd7\\xf7\\xf5\\xc9wa\\x9c\\x1b\\xc8\\f\\xf4$wO\\xc9\\x16\\xc6<\\x19\\x02\\n,\\xf9>C\\xb9\\\"\\xcb3\\x113\\x163#[e`\\xff8[\\xcf7C\\x8b\\x04\\xf7\\x84ں\\x86\\xa3\\xd8\\x13]F\\xbd\\xdf\\x12\\xfd\\xe8V\\x17*P\\xd8\\xf0\\xc7ب\\xbbՍL\\xbc\\xeb+\\xa3\\xef\\xed\\xf5\\x92\\xec|w̭\\xbf\\xbe)\\xee0s\\xbbc\\xe5~\\xf8\\u007f\\x8f\\xadL\\x84|1\\xf2n\\xd0\\xe6\\xd8ؿe\\x9b\\xb8kK.\\xcf\\xf6\\x99\\xc7~?\\x05[>\\xd1\\xec\\v\\xd5O\\xa1\\x1ej\\xee\\x0ft|\\x92\\xf7u\\\\\\x92\\x15\\xfe\\xd0~\\t\\xa9${oV\\x94\\xa5\\xde\\xc8\\xfd\\x97\\xfc\\x9eG\\xc5\\xe7x\\x94\\xae\\xae\\x17Y \\x9f\\x17U\\\\\\xfc\\xffT\\xf9\\xb0\\x99\\x00\\x00x\\x9cc`d``\\xf4:МsS\\xb6+\\x9e\\xdf\\xe6+\\x037\\x13\\x03\\b\\xdc\\x12=\\xc1\\r\\xa5\\x05\\xff\\xbf\\xf9\\xbf\\x93\\xa9\\x9d\\xf1$\\x90\\xcb\\xc1\\x00\\x96\\x06\\x00\\x87\\xc0\\r\\xb2\\x00x\\x9cc`d``<\\xf0\\xff\\x00\\x03\\x03S\\xc3\\xff7@\\xb2\\x9d\\x01(\\x82\\x02&\\x00\\x00\\x8f\\xe7\\x06\\t\\x00x\\x9c\\x8dQ\\xc1\\r\\xc20\\ft\\xf2\\xea\\x8f'\\xebt\\x14F\\xf1<Lх\\x90\\xfaD\\x040\\xe7\\xd8I\\x1d\\n\\x82H'Ǘ\\xabk\\x9f3\\xf99\\x13e\\x92\\x92g:\\xa4E\\xef4\\x01\\x1a)\\xb1E\\xbc5ޠ9\\xdeL/\\xf7\\xa0AD\\x8eZ\\xe0\\x1f\\x95k<\\x99\\xfe\\x1d\\x95?\\xed\\xb8)\\xad\\xb8;\\xb4F\\xe7\\x9bf\\xf6\\xf7X\\x8fC\\xcf\\x1b\\x8e÷\\xfc\\x1b6\\xa7HZ\\xe5b\\xb3\\xca-\\xfa\\x12\\xfa\\xe9\\xffK\\v\\xe6\\r>h\\x0e\\x94\\xd8s\\xec\\xddk\\x99\\x9f\\xbc\\xf9\\xd3\\xe7\\xe2\\xd1;\\xafY\\xba\\x86i\\xdcI\\u074b<[-\\xddK\\xf4\\xf0\\x1f\\xd8̾\\xdbo\\xba\\xab\\xc5O\\xe7\\x05\\x9d\\x9c[\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00@\\x00|\\x00\\xc4\\x00\\xf8\\x01n\\x01\\xbe\\x01\\xe2\\x02*\\x02\\x84\\x02\\xce\\x03\\x04\\x03b\\x03\\xac\\x04\\x1a\\x04\\xa2\\x04\\xe0\\x05\\f\\x05H\\x05\\xb6\\x06*\\x06N\\x06\\xcc\\a\\x1a\\ab\\a\\xe2\\bb\\b\\xe2\\t^\\t\\xb8\\n\\x0e\\n:\\n\\x88\\n\\xe8\\v:\\v\\xce\\f\\x18\\f6\\f\\x82\\f\\xd0\\r\\x14\\r\\xe6\\x0e\\x1e\\x0eN\\x0e\\x88\\x0e\\xc6\\x0fD\\x0f\\x84\\x0f\\xc2\\x10\\x00\\x10>\\x10n\\x10\\xba\\x118\\x11\\xb6\\x12(\\x12f\\x12\\xa4\\x12\\xce\\x13L\\x13\\xce\\x14D\\x14\\xa8\\x15\\x00\\x15L\\x15\\xbe\\x16\\x1c\\x16l\\x16\\xe4\\x17.\\x17l\\x17\\xc8\\x18D\\x18\\xa6\\x18\\xf4\\x19f\\x19\\xf0\\x1a\\x98\\x1a\\xca\\x1b\\x14\\x1bZ\\x1b\\xec\\x1ch\\x1c\\xea\\x1dD\\x1d\\xdc\\x1e\\x94\\x1f\\x18\\x1ff\\x1f\\xbc \\x02 f \\xb8!\\b!H!\\x8e!\\xc0\\\"d\\\"\\xec#L#\\xbe$\\x0e$h$\\xd4$\\xfc%\\x14%N&@&\\xa4'\\b'N'\\x84'\\xba'\\xf0(&(j(\\xca)\\\")\\x80)\\xdc*L*\\xc4+4+|+\\xfc,H,\\xa4-\\x10-\\x98.\\x06.d/\\x06/\\x860*0\\x9a1\\x1e1\\xb42\\n2n2\\xee3\\x8e3\\xd6484\\x924\\xea5\\x1e5\\x906\\x006X6\\xc67\\x047`\\x00\\x00x\\x9cc`d``\\x98Ű\\x86\\x81\\x8f\\x01\\x04\\x98\\x80\\x98\\x91\\x01$\\xe6\\x00\\xe63\\x00\\x00$\\x85\\x01\\x9a\\x00x\\x9c\\xb5\\x92\\xcfN\\x13Q\\x18\\xc5ϝ)\\x10 !\\x80\\x01\\x8duquQ\\xda\\xc4N\\xff\\xe0\\x94\\xa4;\\x82v\\xe5F\\x82ƍ&C\\x19\\xda\\tm\\xefd\\xe6B\\x83o\\xe0^\\x1f\\xc1\\ap\\xe1҅;_\\xc1\\x870\\xc6\\a0\\xf1\\xcc\\xf4\\x13\\xac\\x01b\\x8ct\\x92{\\u007f\\xf7\\xde\\xd3\\xef|g\\xe6\\x02\\xb8\\xa3\\x9eAa\\U000bb356\\xb0B\\x11\\xaf\\x85\\x1d\\xccჰ\\x8b{\\xca\\x15.\\xa0\\xa8^\\nϠ\\xa4>\\v\\xcf\\xe2\\x96sWx\\x01\\xf7\\x9d7\\u008b\\xb8\\xe9|\\x17^\\xc6\\r\\xb7!\\xbc\\x829\\xf7\\xa9\\xf0*\\x8a\\xee[\\xe15j\\xbe\\b\\xafS\\xf3\\x83\\xee\\xaa0\\xcfՃ\\xbc\\x93\\x8c\\x15;~\\\"\\xec`\\t\\xef\\x84]<\\xc4G\\xe1\\x02Z\\xaa$<\\x83\\xc7\\xea\\x95\\xf0,\\xea\\xea\\x9b\\xf0\\x02\\x9e;m\\xe1Ex\\xce'\\xe1e\\x94\\xdcy\\xe1\\x15,\\xb9\\x8f\\x84W\\xd1r_\\b\\xafQ\\xf3^x\\x9d\\x9a\\xaf\\u0601A\\x8cS$\\x88\\xd0C\\x1f\\x16\\x1aetQ\\xe1\\xdc\\xe1\\xd9(\\xdf\\xd9\\xc6\\x18!R\\xae\\x87\\x9c\\xb1c\\xe2\\xd3$\\xea\\xf5\\xad.w+\\xbacFVo\\x8f\\xc3\\xd4\\fyvٟ4\\xfc\\xbcdB\\xceV\\xbb\\x1c{8\\xc6\\x00\\x01\\xf7\\xf0{\\x11\\xed\\xebN\\x12\\x86z7\\xec\\x1d\\x0f\\x02\\x1e\\xfe\\xa1=\\xdb\\xff7\\xaf*O=4\\xd0\\xe4X\\xbfҹ\\xea{\\x8d\\xa6W\\xbf\\x9eP\\x9b|\\xeala\\x8b5\\x9a\\xf9[\\xbf\\xdc\\xe5\\x84c\\xc2u\\x94+ڹ\\xefy\\x84\\n\\x8bmֽ-\\xbf\\xa9\\xcbS\\x96'a\\x92Ff\\xd4֓\\x1c\\x95\\xf3 \\xd3\\x06\\xfeY\\x84\\xeaE\\x11\\xa4\\x9c\\x9f\\xf5_=\\xeb\\u007f\\x8f\\xb7%\\xeb-+\\xb4\\x8f\\r\\x16\\xd3,f8g\\t\\xe2\\xfc^\\xfd*\\xa3\\xd9y7\\xb7\\xd6<\\x0fsE\\xc0\\xd5\\x01g\\xcb}C\\xdd\\x115\\x96y\\xb0\\xd7\\x0f\\xf58\\xdc\\xdfH\\xf5ФV\\xc7&\\xce\\fu\\xd45#\\x9d\\x86V\\a\\xa3\\x03m\\x8d\\x19\\x1cE\\x96\\xea\\xec\\xcaZZ\\xa5|-5>\\x87\\x920\\x98J\\xe8\\xe5\\xf6Cʭ\\x8d\\xd3v\\xadv\\xc8\\\\\\xc1$\\x97\\xd75ÿ\\xfd\\xc4\\x17}\\xd2\\xff}?\\xaf\\xbe6\\xd7\\xd0\\xe7Oȓ\\xf9\\xaf\\x00x\\x9cmTgw\\xe36\\x10Ԝ$\\x9b\\x94d\\xcb\\xf6\\xe5.\\xb9\\xf4ޙ\\xde{\\xef\\xbd\\xf7\\x04$W$N A\\x03\\xa0e9\\xbd'w\\xe9\\xedC\\xfeZ~L\\x02\\x80\\xb4l?G\\xef\\t\\xdcY\\x80\\xcb\\xc1b\\x06\\x9d#\\x1d\\xff\\xfb\\xf7\\x9fΉ\\xce\\xff\\xfd\\xfe\\xb6\\u007ft\\x8e\\xe0\\b\\xba衏%,#@\\x88\\x01\\x86\\x18a\\x05\\xab\\x18c\\r\\xeb\\xd8\\xc0Q\\x9c\\x81c8\\x8e3q\\x16N\\xe0l\\x9c\\x83sq\\x1e\\xce\\xc7\\x05\\xb8\\x10\\x17\\xe1b\\\\\\x82Kq\\x19.\\xc7\\x15\\xb8\\x12W\\xe1j\\\\\\x83k\\x11\\xe1:\\\\\\x8f\\x1bp#n\\xc2\\u0378\\x05\\xb7\\xe26\\u070e;p'\\xee\\xc2ݸ\\a\\xf7\\xe2>\\u070f\\a\\xf0 \\x1e\\xc2\\xc3x\\x04\\x8f\\xe21<\\x8e'\\xf0$\\x9e\\xea\\x9c\\xc6\\xd3x\\x06\\xcf\\xe29<\\x8f\\x17\\xf0\\\"^\\xc2\\xcbx\\x05\\xaf\\xe25\\xbc\\xde9\\x857\\xf0&\\xde\\xc2\\xdbx\\a\\xef\\xe2=\\xbc\\x8f\\x0f\\xc0\\x10#A\\n\\xc2\\x04\\x19rp\\x9c\\xc4\\x14\\x02\\x05JHT\\u0604\\x82\\x86A\\x8d-̰\\x8d9v\\xf0!>\\xc2\\xc7\\xf8\\x04\\x9f\\xe23|\\x8e/\\xf0%\\xbe\\xc2\\xd7\\xf8\\x06\\xdf\\xe2;|\\x8fS8\\x8d\\x1f\\xf0#~\\xc2\\xcf\\xf8\\x05\\xbf\\xe27\\xfc\\x8e?\\xf0'\\xfe\\xea\\xe7Ĕ\\xe9i\\xc3T\\xaf֤\\xfa\\x89\\x90\\xc94\\x10\\\\\\x9b\\x88\\tӛ\\b\\x96\\x05\\xb1\\x94ӂ\\xa9i\\x9f\\x17,\\xa3\\x1e\\xa5܌\\f/HG\\tW\\x89\\xa0Q\\x92S2m\\xc1x\\xb3&m\\xb8,[ܥ9\\x85\\xf6\\x1fi\\xc1t>J\\x98\\xa02e\\xcaU_NdQPi\\x96&R\\xa4\\xa4\\x86\\xcd#\\x92\\x15\\x95a\\x92[^Q\\xccT\\xd0.ҡ#\\x19\\xe5LL\\xfa\\x82\\nY\\x0e\\x13\\xe5\\x98D\\tSi7Oӵ\\x9c\\x95iTI^\\x9aH\\xf1,7\\xe3}\\tA\\x13\\xb3\\xb2\\x0f\\xd7\\xd5\\xfe\\xd9T\\xce\\xca^\\\"\\xabyO\\xb3-Zқ5S\\x14P\\xb9E\\u0092\\t\\x85\\xab\\x16\\xd7\\\"\\xee\\xc5$D\\x90K]q\\xc3İ\\x12\\xb5\\x8e\\x9a\\xc5K\\xcdf\\xfb\\xba\\xe0v\\x9c([\\xb0[P\\x1eLi\\x1eKK0\\xd8ݷ}\\x89\\xcdw\\xfbV\\xf0rQ\\xa1mb\\v\\xb4\\xdd>\\xb5\\xc0\\xb5\\xa9bZ\\xaf\\u06dd\\x92i\\x93\\x9e\\xf3\\xf8@\\xa6\\xae6\\x0e`߄\\xde\\xc4\\x12\\n\\xdc\\xe0:\\x1e\\x9a\\xbc.bm\\x97\\x0e\\xdbȕ\\xe9\\xea\\xba\\xec\\x15R\\x96\\a\\xbf\\xe0z6H\\xa5i\\xd9\\x06q\\xcdE\\xcaˬ\\xa9V\\xa5\\x93\\xd0\\a3\\xa9ҁ\\x8fh;!1nf匔on3\\xe5\\x953jh\\xa8$\\xe7[\\xd4\\xe4Y\\x9drل[<%ٔLd\\xea\\xba>q{(\\xb3a\\xc5*+\\v۸\\x92\\x96&\\xb5\\x89\\xa5\\bK\\x9ai\\x9f\\x1e\\xb8#i\\xb4\\xb5n\\xb5\\xab)\\xb5\\x82\\xa8\\x9c\\xfe\\xec\\x9b#\\x19\\x9f\\xa4\\xc4D\\x99\\x92u\\xb5ڂ\\xba\\xf4phE\\x9aL\\xe7Q)\\r9\\u0557\\x14\\xe6\\xb2V\\x99\\xad\\xa4C\\xaf\\re\\x9d0hT\\xe2\\xbe\\xd4\\xc8G'\\\\k\\xa9\\xf4\\xd0#\\xc1w\\xec\\xe16\\x8bte\\u05cf\\xf6Te\\xb95\\x80XB+\\v\\xdd;Ѭ.\\x90W\\xc0\\x1e\\xf4\\xaeڃ^\\x12݂U\\xc3\\xd6\\x04\\xee\\fG\\x15\\xb3Nm\\x0f\\xc5\\xeeBVm\\xecY[\\xe1LieW\\xba\\xdeK#\\x96\\xa6\\x8a\\xb4\\x8e\\x9c\\x8f\\x17\\xc0\\xd9f\\xe8,\\xbf{\\xbc<\\xb5vK3Z機\\x1c\\xcfxi\\xd5\\x11\\x15l\\x9b\\x17|\\x87\\x16\\x98\\x97\\x1e\\xaf\\xb6\\xd8V3RQ\\xa8K9\\xb3\\xd7ŔB\\xa3\\xeci8\\xaaK\\xfe\\xd8u\\x98\\b^y\\x1b\\x1cc\\xcaZ\\xc3M\\xb5_\\xf5\\xfa;\\x9cu\\xd2;~(\\xeb\\x05}\\xf4P\\xba\\xae\\xba\\x19\\x15\\xab\\xf6J\\xa0y\\x14s+\\aץ\\x96\\x9d\\xd7\\xc4h\\xb7}V\\xcdz\\xe0=\\x1a\\xd9\\xf9i\\x9fY-\\xcc\\xfb)\\xdfٙ/O\\xec\\xc1\\xe4d\\xa5\\xec\\xcc\\xeb\\x1b\\xb7\\x9c)\\xbb\\x81\\x84z\\xf6Y\\x06n\\xf0\\x1e\\xf2AL\\xac\\x18/\\xa2Hψ\\x99\\xa1\\xc7\\xfeF\\xd5Ml\\x9dd\\x95\\xb0\\xbe/\\x8e\\x8c\\x9dփ&c\\x16\\xa1\\xcf6\\xef\\x18Yf5m\\xec\\x8b\\xdbW\\xd7\\xf6\\xa7\\x1c\\xfd\\x86\\x89\\x8bzS\\xab\\xca\\xd0\\r\\r1\\x1f\\xb9\\x89\\x86M_\\xb0:\\xcb\\a~\\xf4\\vFM\\xd8\\xd4m\\U000fe8bd\\xb3\\xa2\\xd8\\x1am\\xba\\xe6\\\"%\\x85\\xb06\\x8a\\xec\\xf5\\xad\\x975\\xb3\\xbaP\\xf3\\xc0=\\x1dݶ\\x8f\\xae\\\\\\xa0kU)\\xae\\xa9o\\xb8\\xbd\\x94\\xff\\x03\\\"\\xa7\\x81\\x90\\x00\\x00\\x00\"\nvar _Assets0d82f92ba8c7e829dd63af485d6dfd5cfee1968d = \"Z\\x03\\x02\\x00(\\x02\\x02\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x90\\x01\\x00\\x00\\x00\\x00LP\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00f\\xb4X\\xa8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00:\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00\\x00\\x0e\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00\\x00L\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00\\x00:\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\r\\x00\\x80\\x00\\x03\\x00PFFTM\\x8d\\x96\\xb6\\x16\\x00\\x02\\x02\\f\\x00\\x00\\x00\\x1cGDEF\\x00*\\x01\\xbf\\x00\\x02\\x01\\xec\\x00\\x00\\x00\\x1eOS/2B\\x0fV\\x9a\\x00\\x00\\x01X\\x00\\x00\\x00`cmap\\xf2\\xaa\\xef\\xe1\\x00\\x00\\b\\x9c\\x00\\x00\\x05\\xdagasp\\xff\\xff\\x00\\x03\\x00\\x02\\x01\\xe4\\x00\\x00\\x00\\bglyf\\x94:\\x85a\\x00\\x00\\x11\\xec\\x00\\x01\\xd5\\xe4head\\x17\\a\\x912\\x00\\x00\\x00\\xdc\\x00\\x00\\x006hhea\\x046\\x03\\xeb\\x00\\x00\\x01\\x14\\x00\\x00\\x00$hmtxKc\\x06\\x89\\x00\\x00\\x01\\xb8\\x00\\x00\\x06\\xe4loca\\xa2\\xe5\\x11V\\x00\\x00\\x0ex\\x00\\x00\\x03tmaxp\\x02\\\"\\x03O\\x00\\x00\\x018\\x00\\x00\\x00 name\\x8e\\x97\\xb2\\xcd\\x00\\x01\\xe7\\xd0\\x00\\x00\\x05\\x85post\\x13,\\xe7\\x97\\x00\\x01\\xedX\\x00\\x00\\x14\\x89\\x00\\x01\\x00\\x00\\x01J\\xc0\\x83\\xa8X\\xb4f_\\x0f<\\xf5\\x00\\v\\x02\\x00\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\\xff\\xee\\xff\\xb6\\x02\\x85\\x01\\xe0\\x00\\x00\\x00\\b\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xc0\\xff\\xc0\\x00\\x00\\x02\\x80\\xff\\xee\\xff\\xf1\\x02\\x85\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xb9\\x00\\x01\\x00\\x00\\x01\\xb9\\x03L\\x00'\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x01\\xeb\\x01\\x90\\x00\\x05\\x00\\x00\\x01L\\x01f\\x00\\x00\\x00G\\x01L\\x01f\\x00\\x00\\x00\\xf5\\x00\\x19\\x00\\x84\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00PfEd\\x00\\x80\\xf0\\x81\\xf9I\\x01\\xc0\\xff\\xc0\\x00.\\x01\\xcc\\x00T\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01:\\x01\\xa5\\x00\\x00\\x00 \\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xaa\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\f\\x01\\xc0\\x00\\x00\\x01\\xe0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x03\\x02@\\x00\\x0e\\x01\\x80\\xff\\xff\\x01\\xc0\\x00\\x00\\x02\\x10\\x00\\x00\\x01\\x80\\x00\\x02\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x06\\x01@\\x00\\a\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x03\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\t\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01p\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x12\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x11\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x15\\x01\\xe8\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\a\\x01\\xc0\\x00 \\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\n\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x15\\x01\\xc0\\x00\\a\\x02@\\x00\\r\\x02\\x00\\x00\\x01\\x02\\x00\\x00\\x18\\x01\\x80\\x00\\x01\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x06\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00.\\x01\\xc0\\x00\\x00\\x02@\\x00\\r\\x01\\xc0\\x00\\x13\\x01\\xc0\\x00\\x00\\x02@\\x00\\x06\\x02\\x80\\x00\\x06\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x04\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\xff\\xff\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\t\\x02@\\xff\\xf9\\x01@\\x00\\x01\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x02\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x1f\\x01\\xc0\\x00\\x06\\x01\\xc0\\x00\\x11\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x0e\\x02\\x00\\x00\\x19\\x01\\xd8\\x00\\x00\\x01\\xc0\\x00\\b\\x02\\x00\\x00\\x12\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x01\\x01\\x80\\x00\\x00\\x01\\xc0\\x00 \\x01@\\x00\\x19\\x02\\x00\\xff\\xfd\\x02\\x00\\x00\\x14\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00 \\x01\\xc0\\xff\\xff\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xe0\\x00 \\x01\\xc0\\x00\\x04\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\n\\x01\\xc0\\x00\\a\\x02@\\x00\\x02\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x18\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xf9\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x10\\x02\\x80\\xff\\xfe\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x80\\xff\\xfe\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\xff\\xf0\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x01\\x01\\xc0\\x00\\x00\\x01L\\x00\\x00\\x02h\\x00\\x00\\x02\\x80\\xff\\xfc\\x01\\x80\\x00\\x00\\x01\\xb8\\x00\\x00\\x02@\\x00\\x16\\x02\\x00\\x00\\x00\\x01\\xe0\\xff\\xff\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x80\\xff\\xfc\\x01\\xe0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xa0\\x00\\x00\\x01\\xe0\\xff\\xfc\\x02\\x80\\x00\\x00\\x01@\\x00\\x16\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\xff\\xf1\\x02P\\x00\\b\\x01\\x90\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x1c\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x19\\x01\\x80\\x00 \\x01\\x80\\x00\\x02\\x01\\x00\\x00\\f\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xf5\\x02\\x00\\x00\\x19\\x01\\xc0\\x00\\x00\\x01\\x80\\xff\\xf9\\x02\\x00\\x00\\x17\\x01\\xf0\\xff\\xef\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\a\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x02\\x01@\\x00\\x00\\x02\\x00\\x00\\x0e\\x02 \\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x90\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x12\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\xff\\xfa\\x01\\xb0\\xff\\xfe\\x01\\xc0\\xff\\xfb\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xcc\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x04\\x01\\xb8\\xff\\xfc\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x12\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\a\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\f\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x06\\x01\\x00\\x00\\x02\\x01@\\x00\\x12\\x02\\x80\\xff\\xfd\\x02@\\x00\\x00\\x01\\x80\\x00\\x19\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x10\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x03\\x01\\x80\\x00\\x10\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\a\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\v\\x01\\xc0\\x00\\a\\x02\\x80\\x00\\x0e\\x02@\\x00\\x00\\x01@\\x00\\b\\x01\\xbe\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\f\\x02@\\x00\\x00\\x01\\x80\\xff\\xf3\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x0e\\x01\\xc0\\x00\\x0e\\x02E\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x01@\\x00\\x19\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x1b\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x1c\\x02\\x00\\x00\\x01\\x01\\xc0\\x00\\v\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x0e\\x01\\xc0\\x00\\x13\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x17\\x01@\\x00\\x0e\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x1c\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfe\\x01\\x80\\x00\\x12\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x17\\x02@\\x00\\x02\\x02\\x00\\x00\\x19\\x02\\x00\\x00\\x02\\x02\\x00\\xff\\xfe\\x02\\x00\\x00\\x17\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfb\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x18\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x14\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\xff\\xfe\\x01\\x97\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\t\\x01\\xc0\\x00\\x15\\x02\\x80\\xff\\xfe\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x04\\x02@\\x00\\x1b\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x03\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\f\\x02\\x00\\x00\\x15\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x80\\xff\\xfd\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x02\\x02\\x00\\x00\\x1d\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\f\\x02@\\x00\\a\\x02@\\x00\\a\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xfe\\x00\\x06\\x02\\x00\\x00\\f\\x02@\\x00 \\x01\\xc0\\x00\\x01\\x01\\xc0\\x00\\x00\\x02@\\x00\\x0f\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x1c\\x00\\x01\\x00\\x00\\x00\\x00\\x04\\xd4\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x1c\\x00\\x04\\x04\\xb8\\x00\\x00\\x01*\\x01\\x00\\x00\\a\\x00*\\xf0\\x82\\xf0\\x8c\\xf0\\x92\\xf0\\x9b\\xf0\\xd5\\xf0\\xe1\\xf1\\x13\\xf16\\xf1<\\xf1Z\\xf1i\\xf1n\\xf1q\\xf1t\\xf1~\\xf1\\x81\\xf1\\x84\\xf1\\x8d\\xf1\\x94\\xf1\\x98\\xf1\\x9b\\xf1\\x9e\\xf1\\xaa\\xf1\\xb7\\xf1\\xbe\\xf1\\xcc\\xf1\\xd7\\xf1\\xe9\\xf1\\xee\\xf1\\xf5\\xf2\\x03\\xf2\\t\\xf2\\x0e\\xf2\\x16\\xf22\\xf27\\xf2>\\xf2L\\xf2^\\xf2k\\xf2n\\xf2p\\xf2~\\xf2\\x82\\xf2\\x8a\\xf2\\x94\\xf2\\x99\\xf2\\xa6\\xf2\\xae\\xf2\\xb4\\xf2\\xb8\\xf2\\xc6\\xf2\\xda\\xf2\\xde\\xf2\\xe0\\xf3\\\\\\xf3u\\xf3}\\xf3\\x80\\xf3\\x85\\xf3\\x88\\xf3\\x8f\\xf3\\x97\\xf3\\x9a\\xf3\\x9f\\xf3\\xa4\\xf3\\xb2\\xf3\\xbd\\xf3\\xc0\\xf3\\xc4\\xf3\\xc8\\xf3\\xcc\\xf3\\xd0\\xf3\\xdc\\xf3\\xdf\\xf3\\xe4\\xf3\\xec\\xf3\\xef\\xf3\\xf3\\xf3\\xf9\\xf3\\xfe\\xf4\\x05\\xf4\\r\\xf4\\x17\\xf4!\\xf4#\\xf41\\xf4M\\xf4R\\xf4W\\xf4Y\\xf4\\xd5\\xf4\\xe5\\xf4\\xf9\\xf5\\x14\\xf5\\x92\\xf5\\x9e\\xf5\\xa3\\xf5\\xa8\\xf5\\xb2\\xf5\\xb5\\xf5\\xbe\\xf5\\xc6\\xf5\\xcc\\xf5\\xcf\\xf5\\xf1\\xf5\\xf7\\xf5\\xfa\\xf6\\x0f\\xf6\\x12\\xf6?\\xf6B\\xf6\\x9d\\xf6\\xaf\\xf6\\xca\\xf6\\xcc\\xf6\\xdc\\xf7\\x04\\xf71\\xf7]\\xf7x\\xf7{\\xf7\\x85\\xf7\\x89\\xf7\\x8d\\xf7\\x91\\xf7\\x99\\xf7\\xb1\\xf7\\xb3\\xf7\\xbc\\xf7\\xc6\\xf7\\xd3\\xf7\\xd6\\xf7\\xe1\\xf7\\xe3\\xf8=\\xf8B\\xf8\\x9e\\xf8\\xa6\\xf8\\xca\\xf8\\xd2\\xf8\\xe1\\xf8\\xe8\\xf9\\a\\xf9\\x13\\xf9\\x1a\\xf9\\x1e\\xf9I\\xff\\xff\\x00\\x00\\xf0\\x81\\xf0\\x8c\\xf0\\x92\\xf0\\x99\\xf0\\xd2\\xf0\\xe1\\xf1\\x13\\xf16\\xf1;\\xf1Z\\xf1g\\xf1k\\xf1p\\xf1s\\xf1y\\xf1\\x80\\xf1\\x84\\xf1\\x89\\xf1\\x94\\xf1\\x98\\xf1\\x9a\\xf1\\x9e\\xf1\\xa0\\xf1\\xb4\\xf1\\xbc\\xf1\\xca\\xf1\\xd0\\xf1\\xe7\\xf1\\xed\\xf1\\xf0\\xf2\\x02\\xf2\\b\\xf2\\r\\xf2\\x10\\xf21\\xf27\\xf2:\\xf2K\\xf2^\\xf2`\\xf2m\\xf2p\\xf2|\\xf2\\x80\\xf2\\x84\\xf2\\x93\\xf2\\x96\\xf2\\xa5\\xf2\\xa9\\xf2\\xb0\\xf2\\xb8\\xf2\\xc4\\xf2\\xd5\\xf2\\xdd\\xf2\\xe0\\xf3\\\\\\xf3h\\xf3x\\xf3\\u007f\\xf3\\x83\\xf3\\x88\\xf3\\x8b\\xf3\\x91\\xf3\\x99\\xf3\\x9d\\xf3\\xa1\\xf3\\xa6\\xf3\\xb4\\xf3\\xc0\\xf3\\xc3\\xf3\\xc6\\xf3\\xca\\xf3\\xd0\\xf3\\xd2\\xf3\\xdf\\xf3\\xe1\\xf3\\xe6\\xf3\\xee\\xf3\\xf3\\xf3\\xf5\\xf3\\xfe\\xf4\\x02\\xf4\\a\\xf4\\x11\\xf4\\x19\\xf4#\\xf4%\\xf4M\\xf4R\\xf4W\\xf4Y\\xf4\\xd5\\xf4\\xe4\\xf4\\xe7\\xf5\\n\\xf5\\x92\\xf5\\x9e\\xf5\\xa3\\xf5\\xa8\\xf5\\xb2\\xf5\\xb5\\xf5\\xbe\\xf5\\xc6\\xf5\\xcc\\xf5\\xcf\\xf5\\xf1\\xf5\\xf7\\xf5\\xfa\\xf6\\x0f\\xf6\\x12\\xf6?\\xf6B\\xf6\\x9d\\xf6\\xaf\\xf6\\xc9\\xf6\\xcc\\xf6\\xdc\\xf7\\x04\\xf70\\xf7]\\xf7x\\xf7z\\xf7\\x85\\xf7\\x89\\xf7\\x8d\\xf7\\x90\\xf7\\x97\\xf7\\xaf\\xf7\\xb3\\xf7\\xbb\\xf7\\xc6\\xf7\\xd3\\xf7\\xd6\\xf7\\xdf\\xf7\\xe3\\xf84\\xf8?\\xf8\\x9e\\xf8\\xa6\\xf8\\xca\\xf8\\xd2\\xf8\\xe1\\xf8\\xe8\\xf9\\a\\xf9\\x13\\xf9\\x1a\\xf9\\x1e\\xf9I\\xff\\xff\\x0f\\x82\\x0fy\\x0ft\\x0fn\\x0f8\\x0f-\\x0e\\xfc\\x0e\\xda\\x0e\\xd6\\x0e\\xb9\\x0e\\xad\\x0e\\xac\\x0e\\xab\\x0e\\xaa\\x0e\\xa6\\x0e\\xa5\\x0e\\xa3\\x0e\\x9f\\x0e\\x99\\x0e\\x96\\x0e\\x95\\x0e\\x93\\x0e\\x92\\x0e\\x89\\x0e\\x85\\x0ez\\x0ew\\x0eh\\x0ee\\x0ed\\x0eX\\x0eT\\x0eQ\\x0eP\\x0e6\\x0e2\\x0e0\\x0e$\\x0e\\x13\\x0e\\x12\\x0e\\x11\\x0e\\x10\\x0e\\x05\\x0e\\x04\\x0e\\x03\\r\\xfb\\r\\xfa\\r\\xef\\r\\xed\\r\\xec\\r\\xe9\\r\\xde\\r\\xd0\\r\\xce\\r\\xcd\\rR\\rG\\rE\\rD\\rB\\r@\\r>\\r=\\r<\\r:\\r9\\r8\\r7\\r5\\r3\\r2\\r1\\r.\\r-\\r+\\r*\\r)\\r(\\r%\\r$\\r \\r\\x1d\\r\\x1c\\r\\x19\\r\\x18\\r\\x17\\r\\x16\\f\\xfb\\f\\xf7\\f\\xf3\\f\\xf2\\fw\\fi\\fh\\fX\\v\\xdb\\v\\xd0\\v\\xcc\\v\\xc8\\v\\xbf\\v\\xbd\\v\\xb5\\v\\xae\\v\\xa9\\v\\xa7\\v\\x86\\v\\x81\\v\\u007f\\vk\\vi\\v=\\v;\\n\\xe1\\n\\xd0\\n\\xb7\\n\\xb6\\n\\xa7\\n\\x80\\nU\\n*\\n\\x10\\n\\x0f\\n\\x06\\n\\x03\\n\\x00\\t\\xfe\\t\\xf9\\t\\xe4\\t\\xe3\\t\\xdc\\t\\xd3\\t\\xc7\\t\\xc5\\t\\xbd\\t\\xbc\\tl\\tk\\t\\x10\\t\\t\\b\\xe6\\b\\xdf\\b\\xd1\\b\\xcb\\b\\xad\\b\\xa2\\b\\x9c\\b\\x99\\bo\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x06\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00Z\\x00\\x8e\\x00\\xdc\\x01\\xa0\\x01\\xe8\\x02\\x14\\x02\\xda\\x03B\\x03\\xb6\\x04\\x04\\x04<\\x04x\\x04\\xec\\x05\\x10\\x058\\x05X\\x05\\xca\\x06\\n\\x06B\\x06\\x90\\x06\\xb8\\x06\\xec\\a\\x80\\a\\xb4\\a\\xd6\\b\\x04\\b@\\b\\x8e\\b\\xd0\\b\\xee\\t4\\v\\f\\vr\\v\\xe0\\f<\\f\\x88\\f\\xba\\r\\\"\\r\\xbc\\r\\xf0\\x0ef\\x0e\\x96\\x0e\\xe8\\x0fd\\x0f\\xe0\\x10\\x0e\\x10<\\x10h\\x10\\xe6\\x11p\\x11\\xbe\\x12\\x02\\x12P\\x12\\x8e\\x12\\xee\\x14\\x06\\x14\\x86\\x15\\x1e\\x15p\\x15\\xd4\\x16:\\x16\\xa8\\x17\\f\\x17.\\x18*\\x18l\\x18\\xb8\\x19x\\x1a\\x00\\x1a\\xd6\\x1b\\x80\\x1c*\\x1cP\\x1c\\x98\\x1c\\xe6\\x1d^\\x1d\\xde\\x1e\\b\\x1e\\x88\\x1e\\xf0\\x1f6\\x1f\\xb4!F\\\"\\x06$\\n$\\xf2%\\xaa&\\x1c&\\xa0'\\x04'\\xbe'\\xec)\\x10)>)\\x84)\\xde*Z+x+\\xb8,.,\\x86,\\xf4-\\x1e-^-~0\\x180b0\\xe01l1\\xbe2\\x1e2J2\\x823:3\\x9e4\\b4J4\\xb85\\xd46\\x1e6\\xfa767\\x967\\xe68\\xae9>9R9\\x909\\xaa:\\x18:\\x94:\\xd2;\\x16;8;\\xbc<2<Z<\\xd8=2=r=\\x94=\\xc6>\\x0e>j>\\xb6?D?\\xc4@0@\\xacA>A\\xd2BlB\\xb8CTC\\xa6D\\xceE\\x14EjF\\\"FnG\\x12GFG`HhH\\xdaIVJ\\x04J\\x8eJ\\xc8K\\x0eL8L\\xa4M\\x10M\\x8aNlN\\x98O\\nOnP\\x9aQ\\x0eQ~R^R\\xb8S\\x04STTjT\\xb4UFU\\xc0V\\x16V\\xa8W\\x18W~W\\xbcX\\bX:X\\xfeY\\xd2Y\\xfeZ*\\\\v\\\\\\xf8]d]\\xa2^*^R^t^\\xd2_D_\\xba_\\xdca(a\\\\a\\x80a\\xe0b\\x14b~dbd\\xa6eZe\\x8ee\\xfef`f~f\\xaag\\x16i\\xd8k(k\\\\l\\x0elLl\\xa8m m|p8p\\xc2q\\x12qrr(rtr\\xa8sZs\\xf0tTt|u\\x1euXu\\xc8u\\xe4v\\x10vJvvw\\x0ew\\x9ew\\xd4xZyPy\\xc8z`z~z\\xce{>|\\xa2}\\x00}T}\\xcc~\\x12~\\x8a\\u007f\\n\\u007fP\\u007fڀ\\n\\x80\\x82\\x80\\xe8\\x81\\x0e\\x814\\x81\\xb6\\x82\\f\\x82p\\x82\\u0383\\xf8\\x84H\\x850\\x85Z\\x85\\x96\\x85\\xb6\\x86^\\x87\\x00\\x88\\x96\\x89\\x04\\x89\\xfa\\x8aJ\\x8a\\U0010b08cF\\x8c\\xba\\x8d<\\x8d^\\x8dr\\x8e\\x18\\x8eƏ \\x90\\xa6\\x91*\\x92\\x8c\\x92\\xb4\\x93\\xac\\x95@\\x95^\\x95\\x82\\x96\\x80\\x98\\x18\\x98X\\x98v\\x99\\\\\\x99v\\x9a\\x1a\\x9aL\\x9a\\x82\\x9c\\\"\\x9d\\xbe\\x9dԞ\\x04\\x9e6\\x9e\\x84\\x9e\\x9e\\x9fJ\\xa0\\x06\\xa0B\\xa0ġ\\xa6\\xa2\\n\\xa2L\\xa2\\xae\\xa3\\x1a\\xa3n\\xa3\\xa0\\xa3\\xf4\\xa4H\\xa4\\xa2\\xa4\\xf8\\xa5\\x94\\xa62\\xa6\\x8a\\xa6\\xe0\\xa7n\\xa8B\\xa8Ʃ0\\xa9\\xba\\xaaV\\xaa\\xf0\\xab\\x1c\\xabĬ\\xc0\\xadd\\xaf\\xf6\\xb4X\\xb5\\x04\\xb5T\\xb6 \\xb7\\\\\\xb8(\\xb9̺\\f\\xbaP\\xba\\x8e\\xba\\xe2\\xbbX\\xbbȼ<\\xbc\\xe4\\xbd\\x18\\xbd\\x80\\xbd\\xac\\xbd\\xe2\\xbe(\\xbe\\xf6\\xbfN\\xc2\\xe2Þ\\xc7>ɴ\\xca\\fʎ\\xcb\\\"\\xce\\xc8\\xce\\xea\\xd1\\xc0\\xd1\\xdc\\xd2\\x02\\xd26Ҝ\\xd32Ӟ\\xd4\\x18\\xd4V\\xd4\\xd8\\xd5\\xf6\\xd6,֔\\xd7\\b\\xd70\\u05ec\\xd9\\xcc\\xda\\x18\\xdaVچ\\xdbN\\xdb\\xc6\\xdc\\\\\\xdc\\xcaݦ\\xde\\x16\\xdf0ߌ\\xdf\\xe8\\xe0&\\xe0\\xce\\xe1\\x88\\xe3V\\xe3\\xa6\\xe4\\\\\\xe4\\xf0\\xe5l\\xe5\\xb2\\xe6\\x14\\xe6\\xc0\\xe7.\\xe7\\xa0\\xe7\\xde\\xe8\\x88\\xe9\\x00\\xe9\\xba\\xea2\\xea\\x8a\\xea\\xc4\\xea\\xf2\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00;\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0567\\x06\\a67\\x06\\a&#\\\"\\x06\\x17&'\\x06\\x15\\x14\\x1e\\x01\\x17&'\\x15\\x14\\x16\\x17\\x06'\\x1e\\x013\\x06#\\\"'\\x1632>\\x0154\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01/\\x13\\x0e\\x13\\x13\\x15\\b\\x14\\x16\\x13\\x1c\\x1f(\\aS5\\t\\b\\x0e\\b\\x10\\x0e\\x1e\\x17\\x0e\\x10\\x06\\\"\\x15$-\\t\\a.79X)\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x9f\\x0e\\x14\\b\\x02\\r\\x17\\f\\x04\\x150!\\x05@\\x0f\\x12\\n\\x15\\x12\\x06\\x01\\b\\x01\\x18$\\x05\\x03\\x02\\x14\\x19\\x1c\\x01\\x1e:T-\\x05\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00$\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01537#54;\\x015&#\\\"\\x0e\\x01\\x1d\\x01#\\x153\\x15#\\\"&5\\x11463\\x01\\x90\\x14\\x1c\\x1c\\x14\\x89:\\vE(\\x1f\\x1c\\x1b\\x1d)\\x18??\\x89\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x98H/&=\\x05\\x16,\\x1e7H\\x98\\x1c\\x14\\x01`\\x14\\x1c\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x14\\x00\\x1c\\x005\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1335#\\x156264&\\\"\\x06\\x14\\x0154.\\x02#\\\"\\x06\\a#5#\\x15354632\\x1e\\x02\\x1d\\x01\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\rg\\x01C\\x11 \\x17\\x17 \\x16\\x01@\\x06\\x10!\\x18\\x17!\\a\\x01@C\\x10\\x17\\f\\x10\\x05\\x02\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfe\\x80\\xd6\\xd6\\xf3\\x17\\x1f\\x17\\x17\\x1f\\xfe\\xf6u\\x18\\\"\\x1d\\x0f\\x14\\x0e\\x1d\\xd6j\\x19\\x1e\\n\\x14\\x0f\\fh\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00V\\x00[\\x00c\\x00i\\x00p\\x00w\\x00}\\x00\\x85\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x17\\x1654&5\\x0e\\x01\\\".\\x01'&'0'43\\x16\\x17\\x16767.\\x03547&76\\x16\\x1f\\x0162\\x17>\\x02\\x17\\x16\\a\\x16\\x15\\x14\\x0e\\x02\\a\\x16\\x15\\x1c\\x01\\x15\\x14&\\x06&36\\a4#\\\"\\x15\\x1432&\\x06'&6\\x17'6&\\a\\x06\\x17\\x16'6'&\\a\\x06\\x16&6'&\\x06\\x17'6'\\\"\\a\\x06\\x17\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xe52=aEE]>2\\f\\x01\\x02\\x06\\x11\\x0e\\x0e\\x03\\a\\v\\a\\b\\x10\\t\\x11 \\x02\\b\\x12\\x14\\x19\\v\\x10\\t\\n\\x06\\x17\\t\\b\\x14+\\x14\\x04\\v\\x19\\x06\\n\\b\\x11\\f\\x1a\\x14\\x12\\vS\\a\\x01\\x03\\x04\\f\\x04\\x04\\x04\\x04\\r\\x02\\x03\\x04\\x02\\x03\\t\\x01\\x05\\x02\\x01\\x02\\x03\\a\\x02\\x02\\x02\\x02\\x02\\x04\\x06\\x03\\x02\\x02\\x03\\x02\\x04\\x01\\x02\\x02\\x01\\x01\\x03\\x02\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\x11W7D]]D7W\\x11\\x02\\n\\x01 \\b\\x01\\x01\\x03\\n\\t\\x13\\x05\\a\\x03\\x01\\x10\\x1d\\x0f\\x0f\\a\\x02\\x05\\x0e\\x1e\\x16\\x16\\x11\\x14\\x19\\x02\\t\\x05\\x05\\x05\\x05\\x02\\a\\n\\x02\\x18\\x15\\x12\\x15\\x16\\x1e\\x0e\\x05\\x02\\t\\x15\\x0e)\\x01\\n@\\x01\\x05\\x01\\x05\\x03\\x03\\x02\\x06\\x05\\x01\\x01\\x05\\x01\\x02\\x01\\x06\\x02\\x02\\x03\\x02\\v\\x01\\x03\\x03\\x02\\x01\\x05\\t\\x03\\x02\\x02\\x03\\x02\\a\\x01\\x02\\x01\\x01\\x01\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\x90\\x000\\x00\\x00\\x01\\x16\\x15\\x14\\x0e\\x02#\\\"'\\x16327\\\"&'\\x16327.\\x02=\\x01\\x16\\x17&547\\x1e\\x01\\x17&54632\\x1767\\x06\\a67\\x06\\x01\\xcb\\x01(ItFXI\\v\\x0eI:#5\\n\\n\\t\\x0e\\x0e\\x18&\\x16\\x16\\x19/\\x0f'q@\\x02=+.\\x1f$\\x1f\\f\\\"\\x1e\\x1e\\x16\\x01(\\x04\\t5iW6/\\x01-)\\x1f\\x01\\x03\\x05\\x1e+\\x19\\x02\\r\\x01 8\\x1c\\x191:\\x03\\f\\f+>!\\a\\x12%\\x15\\x04\\r \\x00\\x01\\x00\\b\\xff\\xcb\\x01\\xf8\\x01\\xb8\\x00\\x1e\\x00\\x00%\\x14\\x06\\a537#54;\\x015&#\\\"\\x0e\\x01\\x1d\\x01#\\x153\\x15.\\x015462\\x16\\x01\\xf8xY:\\vE(\\x1f\\x1c\\x1b\\x1d)\\x18??Yx\\x91Α\\xc0\\\\\\x8b\\x0e\\xadH/&=\\x05\\x16,\\x1e7H\\xad\\x0e\\x8b\\\\g\\x91\\x91\\x00\\b\\x00\\x00\\xff\\xd3\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x14\\x00e\\x00m\\x00u\\x00}\\x00\\x84\\x00\\x007\\x14#\\x065436\\x066\\x17\\x16\\a\\x06'72\\x16\\a\\x06&\\x132\\x1e\\x01\\x15\\x14\\x06\\a\\x06&5<\\x0154'>\\x0454&'6'&\\x06\\x0f\\x01&\\\"\\a.\\x02\\a\\x06\\x17\\x06\\x15\\x14\\x1e\\x03\\x17\\x06\\a\\x0e\\x01&'.\\x01/\\x01\\\"\\x17\\x1e\\x01\\x1f\\x01\\x1e\\x022?\\x01\\x14\\x16\\x15\\x14\\x06'.\\x01546\\x036\\x17\\x16\\a\\x06'&'6\\x17\\x16\\a\\x06'&\\x176\\x17\\x16\\a\\x06'&'6\\x17\\x16\\a\\x06&\\xa6\\x05\\x06\\x05\\x06!\\x03\\x05\\x05\\x01\\x01\\x05(\\x05\\x01\\x05\\x05\\x01GDtC]K\\b\\t\\x11\\x16\\x18$\\x13\\x0e\\f\\x0e\\f\\x0e\\n\\\"\\r\\f\\x1fA\\x1e\\x05\\x12%\\t\\x0f\\f\\x17\\x0e\\x12\\\"\\x19\\x15\\r\\x03\\n\\x15 \\n\\x06\\x13\\a\\x06\\x16\\x14\\a\\x0e\\x03\\x04\\x04\\x14\\x18\\x16\\a\\a\\x01\\t\\bL^\\x8d,\\x02\\x03\\x03\\x02\\x02\\x03\\x03\\t\\x02\\x03\\x03\\x01\\x01\\x03\\x04\\\"\\x02\\x04\\x04\\x02\\x03\\x04\\x04\\t\\x03\\x03\\x03\\x03\\x03\\x053\\x04\\x01\\x05\\x03\\x01\\x04\\b\\x02\\x01\\x04\\x04\\x02\\a\\x06\\x02\\x01\\b\\x01\\x80@pDS\\x83\\x19\\x02\\b\\x06\\x01?\\x14 \\x0e\\x03\\x04\\x0e\\x16(\\x1c\\x13\\x18\\x0f\\x1f%\\x03\\r\\b\\t\\t\\t\\x04\\v\\x0f\\x03%\\x1f\\x19!\\x1c(\\x16\\x0e\\x05\\x02\\f\\x16\\x04\\x04\\f\\x11\\v\\r\\x01\\x01\\x0f\\x04\\x12\\a\\b\\f\\x10\\x04\\x01\\x01\\f0\\x01\\x06\\b\\x02\\x19\\x83Sh\\x8c\\xfe\\xa7\\x02\\x03\\x03\\x02\\x02\\x03\\x03\\n\\x02\\x01\\x02\\x02\\x03\\x02\\x02!\\x03\\x04\\x04\\x03\\x03\\x04\\x04\\x11\\x03\\x05\\x04\\x02\\x02\\t\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00J\\x00\\x00\\x00\\x14\\x06#\\\"'6?\\x01\\x1e\\x0132654&#\\\"\\x06\\x15\\x14\\x16\\x17\\x167>\\x0176'&54632\\x16\\x15\\x14\\x0e\\x01#\\\"&7>\\x0254.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x04\\x15\\x17\\x06\\a\\x06\\x17.\\x015462\\x01\\xf0\\x91g&#\\x18\\x06\\x10\\x06 \\x137IXALW\\x1c\\x16\\a\\x01\\x01\\x05\\x01\\x01\\x03\\x12=3.:\\x15$\\x15\\x13\\x16\\x04\\x02\\f\\x06\\x06\\x0f\\n\\x13\\x1a\\x01\\x01\\x02\\x01\\x02\\x01\\x19\\x05\\x05\\x05GW\\x91\\xce\\x01'Α\\v(\\x19;\\f\\x10YA=RX>\\x1d9\\n\\x03\\x06\\x02\\x17\\x03\\x04\\x03\\x17\\\"+A9,!4\\x1d\\x1b\\x12\\n$\\x1b\\n\\t\\x10\\t\\\"\\x1a\\x04\\t\\a\\a\\x04\\x04\\x01\\x01g\\x14\\x19.\\x1b~Ng\\x91\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00R\\x00\\x00\\x01\\x11\\x14\\x06+\\x016?\\x01\\x1e\\x0132>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x17\\x1674676'&54632\\x16\\x15\\x14\\x0e\\x01#\\\"&7>\\x0254'&\\a\\x06\\x15\\x14\\x1e\\x02\\x1f\\x01\\x0e\\x05\\x16\\x1f\\x01#\\\"&5\\x11463!2\\x16\\x01\\xc0\\x1c\\x14\\xf6\\x16\\x06\\x0f\\x06 \\x12%:!WAKW\\x1c\\x16\\a\\x01\\x06\\x01\\x01\\x03\\x12=2-:\\x15#\\x16\\x12\\x16\\x04\\x02\\v\\a\\x19\\x1b\\x0f\\b\\x01\\x02\\x02\\x01\\x01\\x05\\r\\x05\\a\\x01\\x01\\x01\\x01\\x03Y\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x01p\\xfe\\xa0\\x14\\x1c$\\x17;\\f\\x10(F*=QW>\\x1c8\\v\\x03\\a\\x01\\x16\\x04\\x04\\x03\\x17!+@8, 4\\x1c\\x1a\\x12\\v#\\x1b\\t\\x1e\\x04\\x04\\x1c\\x0f\\x14\\x06\\f\\t\\x06\\x02\\x02\\x157\\x14 \\f\\x16\\x11\\r\\x01\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00+\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132654'#\\x153\\x0e\\x01#\\\".\\x0154632\\x177&#\\\"\\x06\\x14\\x16%5#5#\\x15#\\x153\\x1535\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14t+5\\x02^9\\x03\\x1c\\x1a\\x11\\x1c\\x11$\\x1a\\x18\\x10\\x1b\\x1c');;\\x01\\x05\\x1d\\x1d\\x1d\\x1d\\x1d\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xbc6,\\b\\b\\\"\\x0f\\x1c\\x11\\x1d\\x11\\x1a%\\x0f\\x1a\\x1a;R;R\\x1d\\x1d\\x1d\\x1d\\x1d\\x1d\\x00\\x02\\x00\\f\\x00\\x00\\x02t\\x01\\x80\\x00\\x1b\\x00'\\x00\\x00%\\x16\\x15\\x14\\x06#\\\"&4632\\x17\\a&#\\\"\\x0e\\x01\\x15\\x14\\x163267#5\\x053\\x15#\\x15#5#5353\\x01\\x82\\x03fRPppPK54\\x1e. 7 F126\\x05m\\x01n888778\\xdc\\x11\\x0fSip\\xa0p22\\x1d 8!2G6\\x1cC\\a88888\\x00\\x03\\x00\\x00\\x00\\x00\\x01\\xc0\\x01\\xc0\\x00\\x03\\x00\\x0f\\x00(\\x00\\x003#\\x113'\\\"&4632\\x1e\\x01\\x14\\x0e\\x01\\x01#54.\\x02#\\\"\\x06\\x1d\\x01#\\x113\\x153>\\x0132\\x1e\\x02\\x15d]].\\x16  \\x16\\x0e\\x19\\x0f\\x0f\\x19\\x01|]\\x02\\b\\x15\\x11!\\x17]Z\\x01\\n. \\\"-\\x17\\t\\x01+) , \\x0e\\x19\\x1d\\x19\\x0f\\xfe\\xac\\x92\\x11\\x15\\x1b\\x0e*#\\x94\\x01+)\\x14\\x1d\\x15)0!\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x01\\xe0\\x01\\x80\\x00\\n\\x003\\x00L\\x00T\\x00\\x006\\x14\\x06#\\\".\\x015462\\x05\\x14\\a\\x0e\\x05#*\\x01.\\x04'&547&5472\\x16\\x17632\\x17>\\x013\\x16\\x15\\x14\\a\\x16\\a4&#\\\"\\a\\x06\\\"'&#\\\"\\x06\\x15\\x14\\x1e\\x03;\\x012>\\x02&2\\x16\\x14\\x06\\\"&4\\xba\\x13\\x12\\f\\x11\\a\\x13#\\x019\\x12\\t\\x1b) 7\\x18\\x1c\\x1c\\x0f6\\x18-\\x18\\x1c\\b\\x14*\\b\\x0e#1\\x19*/*&\\x191\\\"\\x0f\\b'@(\\\"\\f,\\x150\\x15+\\r\\\"(\\x13\\x1c*&\\x180\\x1e0/\\x1ad#\\x13\\x13#\\x14\\x8a&$\\x14\\x18\\v\\x13$\\x04;$\\x13\\x1b\\x10\\t\\x03\\x01\\x03\\x04\\v\\x10\\x19\\x10(7A0\\x18\\x19\\x17\\x1d\\x10\\x14\\n\\t\\x14\\x0f\\x1d\\x17\\x19\\x17.w#0\\x06\\x03\\x03\\x060#\\x19&\\x15\\r\\x04\\a\\x14+V$&$$&\\x00\\x00\\x01\\x00\\x00\\x00\\x05\\x02\\n\\x01{\\x00\\x13\\x00\\x00%#76&+\\x01\\x03#\\x13#\\x03#\\x13'!2\\x17\\x16\\a\\x01\\xcda4\\x03\\x10\\x101<a;S<a<-\\x01t>$%\\r\\x05\\xf3\\x10\\x13\\xfe\\xea\\x01\\x16\\xfe\\xea\\x01\\x16`--=\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x04\\x00\\x15\\x00\\x00\\x11!\\x03\\a'\\x017#\\x173\\x0f\\x01/\\x01#\\x1f\\x013?\\x01#'\\x01\\x80#\\x9d\\x9d\\x01\\x11\\x05\\xf1\\f\\xa7\\x0656\\x04/\\x06c\\x01a\\x0e\\xb0\\x04\\x01\\xa0\\xfet44\\x01\\f0\\x92>\\x0e\\x0e&L\\x1b\\x1b\\x951\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xe0\\x01\\xa0\\x00\\x0f\\x00\\x00\\x01\\x03\\a'73\\a\\x17?\\x01!7!7!7\\x01\\xe0@\\xdf\\xc1\\x14R\\bt\\x86\\x13\\xfe\\xb3\\x10\\x01M\\v\\xfe\\xb2\\x11\\x01\\xa0\\xfe\\x90PP_),,aR5R\\x00\\x03\\x00\\x03\\xff\\xc0\\x01\\x84\\x01\\xc0\\x00.\\x00A\\x00T\\x00\\x00%\\x16\\a\\x0e\\x01\\a\\x15#5\\\"#\\x15#5\\\"#723\\x16>\\x0175.\\x01\\a\\\"#5\\x16753\\x156353\\x15\\x1e\\x04\\x17\\x16'\\x152\\x1662>\\x0454.\\x04\\x06\\a2\\x16>\\x0654.\\x04\\x06#\\x016M\\a\\x06GB1\\x19\\r1\\tX\\n\\x03\\a\\x11\\r\\f\\x01\\x03\\x17\\x1d\\x05\\x03T\\r1\\x19\\r1\\x13 \\x1d\\x14\\r\\x01\\x06\\xce\\x01\\x13\\n\\x15\\x0e\\x13\\f\\v\\x06\\t\\x12\\x11\\x1b\\x0f\\x1a\\x01\\x01\\x17\\f\\x19\\x10\\x16\\x0e\\r\\a\\v\\x15\\x13!\\x10 \\x01\\xcd\\x12R5,\\x04DCCD:\\x01\\x01\\b\\b\\xd9\\x10\\a\\x014\\x01\\x01ON\\x01MO\\x02\\a\\f\\x12\\x1b\\x10:T`\\x01\\x01\\x03\\x04\\b\\n\\x0e\\t\\f\\x11\\v\\x06\\x02\\x01\\x01\\xfb\\x01\\x01\\x01\\x03\\x04\\t\\n\\x10\\n\\r\\x13\\v\\b\\x02\\x01\\x01\\x00\\x00\\x00\\x00\\x02\\x00\\x0e\\x00\\x00\\x022\\x01\\x80\\x00$\\x00'\\x00\\x00\\x01\\x1e\\x03\\x1d\\x01\\x14\\a\\x0e\\x01\\a\\x0e\\x01\\a#\\\"'&'.\\x01'547>\\x017>\\x01732\\x17\\x1e\\x01\\x057'\\x02&\\x03\\x05\\x02\\x01\\v\\x05\\x1a\\x12\\x13j,,\\xab*'\\n\\x05\\x05\\x01\\v\\x05\\x1a\\x12\\x13j,,\\xab*\\x12\\x1a\\xfeǏ\\x8f\\x01D\\f$#\\x1e\\n\\tZ+\\x11\\x1a\\x05\\x05\\x05\\x01\\v\\v%\\x13C\\x17\\x18Y+\\x12\\x1a\\x05\\x05\\x05\\x01\\v\\x05\\x1a\\xe8RQ\\x00\\x02\\xff\\xfe\\xff\\xdf\\x01\\x82\\x01\\xa0\\x00\\x10\\x00#\\x00\\x0070\\a\\x06+\\x01\\\"&?\\x01'&6;\\x012\\x17%\\a\\x17\\x16\\x06+\\x01\\\"/\\x01>\\x0276;\\x012\\x16\\xa3F\\b\\nA\\x06\\x05\\x02E,\\x03\\x06\\x06A\\v\\a\\x01\\t\\x90[\\x03\\x05\\x06B\\v\\a\\\\\\x01\\x1fH)\\a\\nB\\x06\\x05\\xee|\\f\\t\\x05zL\\x05\\t\\fV\\xfd\\xa7\\x05\\t\\f\\xa9\\x026\\u007fH\\f\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00 \\x001\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132767'&+\\x01\\\"\\x06\\x1f\\x01\\a\\x06\\x163%6&+\\x01\\\"\\a\\x06\\a\\x17\\x16;\\x0126/\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\\\\\b\\x050\\x02 \\x05\\b.\\x05\\x03\\x02\\x1f1\\x02\\x04\\x04\\x01\\n\\x02\\x04\\x04/\\a\\x05f\\x02B\\x05\\b/\\x04\\x04\\x02B\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xe0\\tU\\x037\\t\\x06\\x046W\\x04\\x06\\xd6\\x04\\x06\\t\\xb3\\x03x\\t\\x06\\x04w\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x10\\x01\\xa0\\x00\\a\\x00\\v\\x00\\x13\\x00\\x00\\x01\\a\\x17\\a'7'7\\x117\\x17\\a57'7\\x17\\a\\x17\\a\\x01\\b\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x84\\x01LUTTUTTT\\xfe\\x94UUT\\xc4TTTTUTT\\x00\\x00\\x06\\x00\\x02\\xff\\xe0\\x01~\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x1b\\x00\\x00%\\a'?\\x01\\a'7\\x17\\a'?\\x01\\x17\\a'\\x13\\x15#5\\x1753\\x15!53\\x15\\x01#\\t\\xc3\\b\\xf7\\x1a\\x99\\x19z\\x10\\xb6\\x11\\x85w w4\\xc8\\xf0(\\xfe\\x99(\\x89')'.\\x1f\\x81\\x1e\\xa8$T%\\x93\\xa0\\x18\\xa0\\xfe\\xd0((Px\\xa0\\xa0x\\x00\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xe0\\x01\\xc1\\x01\\xa1\\x00\\a\\x00\\x0f\\x00\\x17\\x003\\x00k\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x146\\x14\\x06\\\"&462\\x17\\x16\\x14\\a\\x0e\\x01\\a\\x06\\\"'&'.\\x025&47676762\\x17\\x1e\\x01\\x03>\\x02<\\x04.\\x01'&'.\\x02*\\x01#*\\x02\\x0e\\x01\\a\\x06\\a\\x0e\\x02\\x1c\\x01\\x15\\x1c\\x02\\x1e\\x02\\x17\\x16\\x17\\x1e\\x02:\\x013:\\x02>\\x0176\\xb0`CC`CT>,,>,\\xdd\\x0f\\x16\\x10\\x10\\x16\\\\\\x01\\x01\\x03C=\\x1b\\x82\\x1b=!\\r\\x10\\a\\x02\\x02\\x03!!=\\x1b\\x82\\x1b=C-\\x03\\x04\\x02\\x02\\x04\\x03\\f\\x1f\\b\\x19#\\x15)\\x02\\x02(\\x16#\\x19\\b\\x1f\\f\\x03\\x04\\x02\\x01\\x02\\x04\\x02\\r\\x1e\\b\\x19#\\x15)\\x02\\x03'\\x16#\\x19\\b\\x1f\\x013C`CC`{,>,,>\\xa2\\x16\\x10\\x10\\x16\\x0f6\\x1b\\x82\\x1b=C\\x02\\x02\\x02\\x03!\\f \\x1e\\x14\\x1b\\x82\\x1c<!\\\"\\x03\\x01\\x01\\x03C\\xfe\\xe3\\b\\x19#\\x16(\\x05'\\x16#\\x19\\b\\x1f\\f\\x03\\x04\\x02\\x02\\x04\\x03\\f\\x1f\\b\\x19#\\x15)\\x02\\x04\\x1d\\x13\\x1e\\x15\\x16\\a\\x1f\\f\\x03\\x04\\x02\\x02\\x04\\x03\\r\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14F5%%5%\\xc45%%5%\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xe1%5%%5%%5%%5\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x02\\x00\\n\\x00\\x11\\x00\\x00\\x13\\x17#$\\x14\\x06\\\"&462\\x13'\\a373\\x17\\xf8A\\x82\\x019\\x91Α\\x91\\xce-\\x94\\x94\\x1e\\\"\\xa8\\\"\\x01\\x18bqΑ\\x91Α\\xfe\\xb5\\xdf\\xdf44\\x00\\x02\\x00\\x06\\xff\\xdf\\x01\\xfa\\x01\\xa1\\x00\\x17\\x00\\x1b\\x00\\x00\\x13!23\\x1e\\x03\\x15\\x14\\x15\\x03\\x0e\\x01#!\\\"&'\\x034546\\x017#\\x17\\x16\\x01\\xd3\\x01\\x02\\x03\\x04\\x04\\x02D\\x01\\t\\x06\\xfe\\xba\\a\\r\\x01D\\t\\x01%\\x19\\x9d\\x1c\\x01\\xa0\\x01\\x03\\x04\\x05\\x03\\x01\\x02\\xfe_\\x05\\b\\v\\a\\x01\\x9c\\x02\\x01\\a\\t\\xfe֓\\x93\\x00\\x01\\x00\\a\\xff\\xc0\\x01:\\x01\\xc0\\x00)\\x00\\x00\\x05\\x0e\\x01#\\\".\\x02=\\x01#\\\"=\\x0147>\\x0176;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14\\x1676\\x17\\x16\\x1f\\x01\\x16\\x016\\f5!*>\\x1e\\r/\\n\\v*(\\x03\\x01\\x0fF\\nT\\n\\nT#!\\t\\x04\\x05\\x02\\x16\\x04 \\r\\x13\\x1c.,\\x17\\x90\\nD\\f\\x04\\x0eB%\\x10\\ns\\nR\\n\\x85\\x1b\\x15\\f\\x04\\x02\\x01\\a@\\n\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x016/\\x01&'&\\a\\x06&=\\x0132=\\x014+\\x0154+\\x01\\\"\\a\\x06\\a\\x06\\x1d\\x01\\x14;\\x01\\x15\\x14\\x1e\\x0232\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x0e\\x02\\x02\\x0e\\x01\\x03\\x03\\x05\\x15\\x164\\x06\\x064\\x06,\\t\\x01\\x041\\a\\x06\\x1e\\b\\x13&\\x1b*\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x94\\x02\\a(\\x04\\x01\\x01\\x02\\b\\r\\x11S\\x064\\x06H\\x06\\n8\\x11\\x03\\a+\\x06Z\\x0e\\x1c\\x1c\\x12\\x00\\x02\\x00\\x03\\xff\\xdf\\x01}\\x01\\xa0\\x00\\x1f\\x00(\\x00\\x00%\\x14\\x17\\x0e\\x01\\a\\\"&#\\\"\\x06#\\x06.\\x01'&54672\\x1632>\\x02\\x17\\x16\\x17\\x06'\\x06'&7>\\x017\\x16\\x01?=\\f: \\x0e.\\x11\\x11/\\v\\x161\\x1d\\b\\x0eE.\\x0f8\\x06\\x04\\x15\\x16\\x1d\\f9\\x1c38 %\\x04\\x1d\\f&\\x12\\x03\\xb3?\\x1d&P\\x01\\x12\\x12\\x0126\\x16*'?F\\x01\\x14\\a\\t\\x06\\x01\\x05(\\x1en&\\x03( \\x0e\\x14\\x01(\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x00\\x117\\x15#\\x1553\\x15\\x1753\\x15\\x037\\x15#\\xb8\\xb8\\xb8\\x14\\xf4\\xf4\\xf4\\xf4\\x01b\\x1a\\xb2\\xac\\x96\\xb0\\x02\\xb2\\xd4\\x01\\x9e\\\"\\xd6\\x00\\x00\\x00\\x03\\x00\\x00\\x00@\\x02@\\x01\\x86\\x00\\a\\x00\\x0f\\x00-\\x00\\x00$\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14?\\x01654#\\\"\\x0f\\x01.\\x02#\\\"\\x06\\a'&#\\\"\\x15\\x14\\x1f\\x01\\x0e\\x01\\a!.\\x01\\x01\\xae\\x13\\x0e\\x0e\\x13\\x0f\\xfe\\xe8\\x13\\x0f\\x0f\\x13\\x0e\\xfa0\\x02\\n\\x06\\x031\\x10,-\\x12\\x1bH\\x181\\x03\\x06\\n\\x020?N\\x06\\x02@\\x06N\\x92\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x83S\\x02\\x03\\n\\x05U\\b\\f\\a\\x10\\vU\\x05\\n\\x03\\x02S\\\"xIIx\\x00\\x00\\n\\x00\\t\\xff\\xbd\\x01\\xb5\\x01\\xc1\\x00\\v\\x00\\x19\\x00k\\x00~\\x00\\x90\\x00\\xa8\\x00\\xc4\\x01\\n\\x01)\\x01C\\x00\\x00\\x13#'476\\x17\\x16\\x14#\\\"&\\a\\\"5476\\x172\\x06\\a\\\"10\\x06\\x13\\x16\\x15\\x06\\a\\x0e\\x02\\a\\x06\\a\\x06'&'\\x06&\\a\\\"\\x0e\\x02#\\x06\\a\\x06'.\\x02'&'&76'&5476767>\\x017&767674.\\x01>\\x0232\\x1e\\x02\\x06\\x17\\x06\\x1e\\x01\\x17\\x16\\x17\\x16\\a\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x03\\x06\\x17\\x16\\x17&63\\x1e\\x01\\a\\\"\\a\\x16\\x176'&\\\"\\a\\\"\\x06\\x1760'&672\\x1e\\x01\\x15676&\\a\\x06\\x17\\x16\\x17\\x1e\\x023\\x1667676'.\\x01'&#\\\"\\a\\\"\\x036&/\\x01&'&\\a\\x0e\\x01\\a\\x06\\a\\x06\\a\\x06\\x17\\x16\\a\\x06\\x17\\x1e\\x02\\x17\\x1665\\x16676567676\\x17\\x16\\a36'6'&'\\\"\\x17\\x1e\\x01\\a&#&'&'\\x06\\a\\x0e\\x02\\a\\x06'.\\x01'&'\\x0e\\x04\\a\\x06\\a&76\\a\\x06\\a\\x06\\x17\\x16\\x17\\x16\\x17\\x16\\a\\x06#\\x16%4'.\\x02'&\\a\\x0e\\x01'&'\\\"1\\x06\\a\\x06\\a\\x14\\a\\x06\\x17\\x16767>\\x02\\x03&72\\x161\\x16\\x17\\x1632767>\\x01\\x172\\a\\x06\\a\\x06#\\\"'&\\xdd\\x02\\x02\\x01\\x02\\x04\\x03\\x03\\x01\\x02\\x16\\x03\\x03\\x04\\x02\\x01\\x01\\x02\\x01\\x02\\xdc\\x10\\x01\\r\\x05\\x17\\x11\\x06\\x16\\x1b\\x1b\\r\\x01\\x01\\f%\\a\\a\\x0f\\n\\f\\x04\\a\\x13\\x19\\x1f\\b\\x15\\x18\\x06\\x0f\\x05\\x05\\a\\x02\\x03\\x01\\x03\\x05\\r\\x0e\\x04\\x01\\v\\x04\\x04\\n\\x0f+\\x14\\x03\\x02\\x01\\b\\x0f!\\x19\\x17 \\r\\b\\x01\\x01\\x01\\f\\n\\f!\\r\\x11\\r\\x02\\x02\\x02\\x02\\a\\x04\\x04\\xc1\\x05\\x02\\b\\x05\\x02\\b\\x06\\x06\\x06\\x03\\x01\\x03\\t\\x03\\x0f\\n\\b\\x1d0\\x0e\\x06\\f\\x06\\x01\\x05\\x01\\x06\\x03\\x05\\x02\\x04\\x06\\x01\\f\\x16\\x06\\x02\\x03\\f\\x03\\r\\b\\x06\\n\\x1a\\x02\\x12\\x04\\x05\\x0f\\x04\\x0f\\x04\\x0e\\f\\f\\x0f\\x01\\n\\x01(\\x02\\x14\\n\\f\\n\\b\\x02\\t\\x03\\x06\\r\\v\\x04\\x03\\x02\\x03\\x02\\a\\x04\\x03\\x19$\\f\\x182\\x1f9\\x1b\\x06\\x02\\x03\\x05\\x10\\x03#\\x1c\\x05\\x05\\x06%\\x04\\x05\\b\\x1b\\x04\\a\\r\\x13\\t\\x06\\x05\\x05\\x12\\x19\\r\\a\\x0f\\x02\\x05\\a\\x02\\x18\\x12\\x01\\t\\x03\\x02\\x04\\x01\\x05\\v\\b\\f\\x02\\r\\x01\\x18\\x1b\\f\\x04\\x16\\x05\\x05\\x05\\x06\\x13\\x19\\r\\v\\x03\\x04\\r\\n\\x01\\x06\\x0e\\x04\\x05\\x04\\x04\\a\\x10\\x06\\x17\\t\\x11\\x02\\x01\\n\\x04\\x02\\x02\\n\\x06\\x05\\v\\x17\\x18\\x14\\t \\x15\\xff\\x04\\x03\\x01\\x03\\x05\\x03\\f\\f\\f\\x12\\x02\\f\\x02\\x03\\x01\\x04\\a\\a\\b\\x14\\v\\x0e\\x0e\\x03\\x01E\\x01\\x01\\x01\\x01\\x02\\x01\\x03\\x02\\x02\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x02\\xfe\\xe9\\x12\\f\\n\\b\\x02\\v\\f\\a\\x1a\\x02\\x02\\x19\\x03\\x04\\x01\\x06\\x01\\x03\\x02\\x02\\x10\\x04\\x06\\x11\\x04\\x04\\x03\\x01\\x03\\t\\v\\x15\\x05\\x10\\b\\x04\\a\\x05\\n\\x05\\x05\\x03\\x02\\x0f\\x03\\x18\\x1d.3\\x1c%\\x05 \\x19\\\"\\x17\\x10\\x13\\x1d#\\\"\\x0e\\x0e\\x1c\\x10\\x0e(#*%\\x01\\x01\\x01\\x02\\x05\\x11\\x10\\x019\\v\\v\\x02\\x03\\t\\x0f\\x01\\x12\\t\\x04\\x03\\x02\\x11\\x17\\x10\\x05)\\v\\x05\\x01\\x05\\x16\\x01\\x06\\t\\x05\\x03\\x02\\x0e\\x13<\\x05\\b\\b\\a\\x02\\v\\x04\\x01\\x0f\\x01\\x05\\r\\f\\x06\\x02\\x05\\x02\\t\\x0e\\xfe\\xa8\\v5\\x04$\\x0e\\x02\\x02\\t\\x02\\r\\x03\\x05\\x05\\x04\\a\\x06\\x0e\\x12\\x06\\x13\\b\\x06\\x04\\x05\\x06\\x0f\\b2\\x11\\x06\\x13\\x15\\b\\x1c\\f\\x15\\x06\\x1c\\x10\\f\\x0e\\x14\\x0f\\x11\\x13#\\x18\\a\\f1\\x18\\x02\\x1f!.2\\n\\x05\\x01\\x02\\x05\\x01\\x0e\\x0f\\x01\\b\\x01\\x02\\x03\\v\\x19\\x1a\\x14\\x1b\\x04\\x1f\\x1f 3\\x16\\x01$\\x18\\x13\\x10\\x12\\f\\x0e\\x12\\x0f\\n\\t\\f\\x04\\t\\x10\\x04\\x12\\x10\\x03\\x06\\x01\\a\\v\\x02\\x04\\x19\\x05\\x10\\v\\x1c\\x03&\\x17\\r\\x15\\x02\\x02\\x17\\v\\x11\\f\\x01#\\x04\\x03\\x05\\x05\\x02\\n\\n\\x02\\b\\x01\\x05\\x01\\x06\\a\\x04\\n\\n\\x03\\x00\\a\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x11\\x00\\x1a\\x00\\\"\\x00.\\x006\\x00<\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%\\x0e\\x02\\a\\x16\\x176\\x17&'.\\x01\\a\\x16\\x17>\\x02'\\x0e\\x02\\a\\x167&\\a\\x14\\x17>\\x027&'\\x06'\\x14\\x17\\x1e\\x017&'\\x0e\\x01\\x1767&\\a\\x16\\x99Α\\x91Α\\x01\\x9c\\x06\\x13:#\\t\\tIK\\x01G'd3+$\\\"7\\x11\\xe1\\x1e0!\\x06^e$\\xa47\\x116H%\\a\\nlnR.t3\\r =Y\\xe6M\\x0e?E\\x1d\\x01\\xb8\\x91Α\\x91\\xce\\x1f\\b\\x14*\\x0e\\x14\\x16\\n\\x10JR#\\x19\\f9C\\f&\\x13(\\x0e,9!\\x01\\x1bA\\x86R<\\x1e8.\\n\\x12\\x12 \\x02\\x03\\xaa%\\x0e\\x17MS\\x14K.4Z\\x14\\vP\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00\\x1b\\x00S\\x00\\x00%\\x16\\x15\\x14\\x06#\\\"'\\x06#\\\"&547&54632\\x17632\\x16\\x15\\x14\\a2654'&'.\\x035432\\x1e\\x0132>\\x0254&\\\"\\x06\\x15\\x14\\x1e\\a\\x17\\x1e\\x02\\x15\\x14\\x06#\\\".\\x02#\\\"\\x06\\x15\\x14\\x16\\x01\\xa9\\x17B.&\\x1e\\x16\\x16Ux\\x04\\x17B.&\\x1e\\x16\\x16Ux\\xc7-C[\\x05\\v\\x11\\x0e\\x11\\x05*\\x14\\x19\\x13\\v\\a\\f\\a\\x05DWA\\x03\\t\\b\\x12\\t\\x19\\n\\x1f\\x05\\x11\\f\\r\\x18\\x13\\x12\\x1c\\r\\x13\\n\\x0e\\x0fG\\x94\\x1e&.B\\x17\\x04xU\\x15\\x17\\x1e&.B\\x17\\x04xU\\x15r-)9\\x15\\x01\\x02\\x04\\x04\\a\\b\\a\\x16\\x10\\x11\\x05\\t\\v\\a\\x18\\x1f()\\v\\x12\\x0e\\n\\n\\x06\\a\\x03\\a\\x01\\x05\\x03\\v\\t\\f\\x0f\\x0e\\x11\\x0e\\x11\\r\\x1b&\\x00\\x02\\x00\\x00\\xff\\xb6\\x01t\\x01\\xbd\\x00\\x16\\x00?\\x00\\x00\\x012\\x16\\x0f\\x01\\x0e\\x03+\\x01\\\"\\a\\x06\\a\\x06'&5\\x11463\\x056&+\\x01\\\"\\x06\\x15\\x11\\x14?\\x01>\\x01;\\x012>\\x017676&+\\x01\\\"&=\\x014>\\x02;\\x012>\\x025\\x01C\\x1d\\x14\\a0\\x02\\x04\\t\\x11\\rS\\x04\\x03\\x02\\x81\\r\\x14\\x12\\x19\\x19\\x01\\x01\\x01\\b\\a\\xdb\\a\\t\\x02Y\\a\\t\\vI\\x05\\a\\x04\\x01\\x04\\a\\x02\\n\\aZ\\t\\v\\x03\\x05\\b\\x04j\\x03\\x06\\x05\\x03\\x01\\xbd !\\xf3\\t\\b\\x10\\a\\x03\\x03\\x95\\x0f\\b\\a\\x17\\x01\\xb2\\x11\\x1dJ\\a\\v\\v\\x06\\xfe\\xad\\x02\\x02l\\b\\x05\\x05\\x06\\x02\\x16%\\a\\v\\f\\t\\r\\x04\\b\\x05\\x03\\x03\\x03\\x05\\x03\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x12\\x00#\\x005\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x0e\\x01#!\\\"&54=\\x01463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1e\\x01;\\x0126754&+\\x01\\\"\\x0e\\x01\\x1d\\x01\\x14\\x1e\\x01;\\x0126\\x01\\x88\\x17!\\x0f\\x1a\\x0f\\xfe\\xb0\\x17!!\\x17\\x8d\\x10\\vS\\v\\x10\\b\\f\\aS\\v\\x10\\xc1\\x10\\vQ\\a\\r\\a\\b\\f\\aQ\\v\\x10\\x01\\xa0!\\x17\\xfe\\xb0\\x0f\\x1a\\x0f!\\x17\\xab}(\\x17!\\xfe\\xad\\xfe\\v\\x10\\x10\\v\\xfe\\b\\f\\a\\x10{\\x8e\\v\\x10\\b\\f\\a\\x8e\\b\\f\\a\\x10\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1b\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05>\\x02&'&\\x06\\a\\x0e\\x01'.\\x01\\a\\x0e\\x01\\x16\\x1f\\x01\\x91Α\\x91Α\\x01k\\x03\\x05\\x01\\f\\v\\x17!\\f\\f&\\f\\f\\\"\\x17\\x0e\\n\\x06\\x05q\\x01\\xb8\\x91Α\\x91\\xceQ\\x05\\x10\\x15\\x16\\b\\v\\t\\x0e\\r\\x01\\x0e\\x0e\\t\\v\\n \\x17\\a\\x99\\x00\\x00\\x00\\x00\\x01\\x00\\x12\\x00 \\x024\\x01`\\x00M\\x00\\x00\\x01\\x0e\\x02\\a\\x06\\x14\\x170\\x1e\\x04\\x17\\x16+\\x01\\\".\\x03'&#\\\"\\x06\\x15\\x16\\x15\\x14\\x06#\\\"&'.\\x0254;\\x012\\x16\\x17\\x1e\\x01326=\\x01.\\x0354>\\x01;\\x012\\x1d\\x01\\x1427>\\x01?\\x016;\\x012\\x02!\\x03)\\\"\\x01\\x06\\x06\\r\\x12\\x16\\x13\\x0f\\x03\\a\\x1b;\\a\\n\\f\\n\\x14\\n(\\x13\\f\\x04\\x01\\x10\\x1b/`$\\\"-\\x0e\\x14;\\v\\v\\x04\\x15=\\x10\\x06\\x05\\x01\\b\\b\\a\\x04\\a\\x04]\\x10\\x13\\x12\\x13$\\t\\t\\a\\x12;\\x18\\x01J\\x0fD3\\x01\\t\\b\\n\\x0e\\x12\\x18\\x17\\x18\\b\\x19\\x04\\n\\f\\x16\\n&\\x0e!\\x10\\n\\f\\v84.[0\\n\\x11\\n\\r=`\\t\\rW\\x0e\\x14\\t\\n\\x04\\x04\\x06\\x04\\x16t\\x11\\x12\\x15<\\x14\\x13\\x11\\x00\\x00\\a\\x00\\x00\\x00\\x01\\x02\\t\\x01\\xa8\\x00\\r\\x00&\\x000\\x00>\\x00J\\x00T\\x00\\\\\\x00\\x00\\x016&\\a\\x06&676\\x16\\a\\x0e\\x01&\\x03\\\"&547676\\x17\\x16\\a\\x0676\\x16\\a\\x06\\x16\\x17\\x16\\a\\x06\\a\\x066.\\x01\\a\\x0e\\x01\\x1e\\x0176\\x136\\x1e\\x01\\a\\x06&76&\\a\\x06&6\\x03\\x0e\\x01'.\\x017>\\x01\\x17\\x1e\\x01'&\\x06\\a\\x06\\x1e\\x01>\\x01&7&\\a\\x06\\x17\\x1676\\x01\\x97\\x06\\x19\\x12\\v\\f\\x05\\n&3\\f\\x03\\x13\\r\\xbdU\\x82LH<,\\x03\\x01\\x06\\x03\\x0f<I\\x13\\x02\\x04\\x06B\\x04\\x03@D4\\t_@@S\\b_@@E2U&\\x10\\x06%\\x06\\x11J7\\f\\x0e\\x06C\\fA \\x1e\\x17\\r\\r<\\x1e \\x1bc\\n\\x16\\x06\\x06\\x05\\x14\\x17\\f\\x06\\x17\\t\\x06\\x05\\t\\n\\x05\\x05\\x01\\x0e\\x12\\x1c\\x04\\x02\\x0e\\x13\\x02\\b9$\\n\\x03\\r\\xfe\\xfdL=CLH\\x04\\x03'\\x0e\\x14\\v\\x05\\x1b\\x1d1\\a\\x04\\x03\\x1455+.iS3\\a\\x06DS3\\a\\x06\\x01w\\n.Z0\\x13\\f\\x135R\\v\\x03\\x11\\x15\\xfe\\xcc\\x1d\\x1c\\v\\t5\\x1b\\x1b\\x1a\\b\\b3\\x01\\x04\\b\\t\\n\\x13\\n\\b\\x14\\x14\\x11\\x03\\b\\t\\x04\\x04\\t\\n\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb4\\x00\\t\\x00\\x13\\x00\\x1e\\x00\\x00\\x13\\x14\\x06\\a&54>\\x017\\x13\\\"'>\\x017\\x1e\\x01\\x17\\x067.\\x03=\\x01\\x1e\\x01\\x15\\x14\\xd6RB:6^:)?8-?\\v\\v?-7\\u007f!6'\\x16Xv\\x01\\x17R\\x85 EZ=iE\\n\\xfe\\x14\\x1e\\x1cQ..Q\\x1c\\x1eX\\x0f3?M)\\x9d\\x0f\\x8a\\\\Z\\x00\\x00\\x01\\xff\\xff\\xff\\xca\\x01\\x80\\x01\\xb6\\x00R\\x00\\x00%\\x0e\\x02&/\\x01\\x0e\\x01#\\\"43267\\x0e\\x01.\\x01'>\\x01\\x1e\\x02\\x1767\\x0e\\x01\\\".\\x05'6\\x1e\\x02\\x1f\\x0165.\\x0367\\x1e\\x02\\x06\\x0f\\x01\\x1c\\x01\\x154>\\x042\\x17\\x0e\\x03/\\x01\\x06\\a>\\x03\\x16\\x01\\x80\\x0f21-\\x0e\\x0e\\x1fa9\\f\\f0Q\\x1d\\x13%/,\\x0f\\x1f7%\\x1f\\x11\\a\\x0f\\a\\x02\\x06\\x13\\x13\\x1a\\x17\\x17\\x12\\f\\x02$4#\\x15\\x04\\x05\\x03\\x04\\x0e\\x1d\\x0f\\x05\\x13#&\\x05\\x05\\x06\\x05\\x04\\r\\x0f\\x18\\x1a#\\x13\\x01\\x1e*)\\x0e\\x0e\\a\\r\\x03\\r&&7\\x87&'\\x02\\n\\b\\a>H\\x18;3\\a\\x04\\t-'\\r\\x06\\n\\x15\\x15\\f$,\\x01\\x01\\x01\\x04\\b\\x10\\x14\\x1f\\x14\\r\\x06\\x1c\\x1f\\r\\f\\\"\\x13\\x03\\v$$6\\x1a\\r*+(\\f\\r\\x01\\x19\\a\\x02\\x06\\x11\\x0f\\x10\\b\\a%2\\x11\\x06\\x02\\x02)%\\x04\\f\\x17\\v\\n\\x00\\x00\\x04\\x00\\x11\\xff\\xc0\\x01\\xaf\\x01\\xc0\\x00\\f\\x00\\x10\\x00\\x14\\x00\\x1e\\x00\\x007!\\x15\\x14\\x06+\\x01\\a5#\\\"&=\\x02!\\x15%5!\\x15'2\\x16\\x1d\\x01!5463\\x12\\x01\\x9c&\\x1b\\x13W\\xb0\\x1b&\\x01\\x9c\\xfed\\x01\\x9cA\\x1b&\\xfed&\\x1bt\\x16\\x1d'ZZ'\\x1d-UUnUU\\xc7(\\x1c\\x16\\x16\\x1c(\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x004\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x056'&\\a6\\x16\\a\\x06\\a\\x06&'.\\x01\\a\\\"\\x0e\\x03\\a\\x17632\\x1e\\x02\\x17\\x16\\x17\\x163276\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01P\\x032B\\x18\\x0f!\\x03\\x01\\x14\\x1b\\x18\\x10\\x04\\x17\\x13\\x06\\x10\\x15\\x0f\\x1d\\a\\x0f\\x15\\x04\\a\\n\\f\\t\\b\\a\\x04\\x13\\x1c-A@\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x96?\\x01\\x03N\\t\\t\\x16\\x10 *\\x1ef\\x1c\\x19\\x02\\b\\x11\\r\\x1a\\x06\\x13\\x0f\\f#\\x1c!\\x19\\x0e3TR\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\b\\x00\\x14\\x00\\x1d\\x00+\\x004\\x00B\\x00K\\x00W\\x00\\x007\\x14\\x06\\\"&46;\\x01\\x17462\\x16\\x1d\\x01\\x14\\x06\\\"&5\\x13\\\"&462\\x16\\x1d\\x01\\a2\\x16\\x14\\x06+\\x01\\\"&54>\\x013\\x05462\\x16\\x14\\x06+\\x01'\\x14\\x06\\\"&=\\x014632\\x1e\\x01\\x15\\x032\\x16\\x14\\x06\\\"&=\\x017\\\"&46;\\x012\\x16\\x14\\x06#^\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c'\\x1b/\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\r\\x15\\r\\x013\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c\\x13\\r\\x16\\f/\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\x1c\\x13\\x85\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\x1c\\x13\\x013\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c\\x13\\r\\x16\\f/\\x14\\x1b\\x1b'\\x1c/\\x13\\x1c\\x1c\\x13v\\x13\\x1c\\r\\x15\\r\\xfe\\xcd\\x1c&\\x1c\\x1c\\x13/\\x18\\x1b'\\x1c\\x1c'\\x1b\\x00\\x00\\x00\\x00\\x06\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x05\\x00/\\x007\\x00A\\x00I\\x00Q\\x00\\x00\\x1b\\x01.\\x0154\\x05\\x14\\x0f\\x01'76&\\a\\x06#'&\\x06\\x163\\x163\\x17\\a'76&\\a\\x06#\\\"#>\\x0132\\x17\\\"#\\\"\\x06\\x15\\x14\\x17\\x16\\a\\x17\\x16\\x17\\x06#\\\"'\\x13\\x16\\x15\\x14\\x06\\a76546\\x14\\x06\\\"&462\\x124&\\\"\\x06\\x14\\x162>e6B\\x01e\\x10\\x16L\\x18\\b\\x01\\t\\\"\\x168\\x06\\x05\\x04\\x05\\v\\f!/M\\x18\\t\\x02\\b#\\x16\\x06\\b\\x1d^7S=\\x02\\x01\\x0f\\x15\\x15\\x12\\x8cA\\x01\\x01#$\\x1e\\x1e\\xf7\\x1a:0A\\x10<\\x91Α\\x91Ά\\x8bċ\\x8b\\xc4\\x01\\x17\\xfe\\xea\\x1ag>-\\\"\\x114G\\xe5\\x02\\x01\\x11\\x01\\x02\\x02\\x01\\t\\t\\x02[\\x8c\\xe7\\x02\\x01\\x11\\x01\\x02,48\\x17\\x0f\\x10\\\"\\x1e:\\xb3\\x01\\x02\\f\\t\\x012/7:b\\x1c\\xbc($\\f\\vΑ\\x91Α\\xfe\\xa6ċ\\x8bċ\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf0\\x01\\xc0\\x01\\x90\\x00\\x11\\x00\\x1a\\x00\\x00%\\a.\\x015467\\x15\\x0e\\x01\\x15\\x14\\x16\\x17\\x117\\x117'7&'5\\x16\\x177\\x01\\x10DWumS7EM:D\\xb1\\x83%\\x1e(E3#\\x10 \\bR85Q\\n+\\t8$&:\\a\\x01T!\\xfe\\x80\\x8d\\x1d\\x14\\x12\\a+\\b\\x1f\\x13\\x00\\x01\\x00\\x15\\xff\\xc0\\x01\\xab\\x01\\xc0\\x00\\x1c\\x00\\x007\\x17&#\\\"\\a7.\\x05'\\x16327\\x16\\x17>\\x027\\x16327\\x06\\xfc\\x04\\x17\\t\\t\\x18\\x04\\v \\x18 \\x1b \\x10\\x0f\\x13\\x10\\x12 g\\t;/\\x14\\x0f\\x12\\x13\\x0f%\\x9c\\xdc\\x04\\x04\\xdc\\x139*7-3\\x17\\x04\\x049\\xa9\\x0f`O$\\x04\\x044\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xe8\\x01\\xb8\\x00\\x1c\\x00\\x00%\\x14\\x06#\\\"&4632\\x17\\a.\\x01\\x0e\\x01\\x15\\x14\\x1632>\\x027#53\\x16\\x01\\xe8\\x85kg\\x91\\x91gaEC YM7Z@#7\\x1f\\x11\\x03\\x8d\\xec\\x04\\xbaj\\x88\\x91ΑAA\\x1f\\v!M2A\\\\\\x17#\\\"\\x0fV\\x16\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\b\\x00\\x10\\x00;\\x00I\\x00U\\x00\\x006\\\"&5462\\x16\\x14$\\x14\\x06\\\"&462\\x17\\\"\\a&'7\\x17\\x14\\x16264&#\\\"\\a'&\\x0f\\x01\\x06\\a&#\\\"\\x06\\x16\\x17\\x06\\x15\\x14\\x1632>\\x0254'>\\x01&\\a6\\x17\\x16\\a\\x06\\\"'&76\\x17\\x1e\\x0172\\x16\\x15\\x14\\x06\\\"&54>\\x01\\xd4\\x15\\x0e\\x0e\\x15\\x0e\\x01\\x16\\x91Α\\x91\\xce\\r\\x0e\\n$2\\x118\\x0e\\x15\\x0e\\x0e\\v\\x0f\\a=\\x05\\x02\\x132$\\t\\x0f\\x10\\x13\\x06\\x0f\\x02N6\\x1b1$\\x14\\x01\\x0f\\x05\\x13U\\x04\\x04\\x05\\x05\\x11L\\x11\\x05\\x05\\x04\\x04\\rC\\x15\\v\\x0e\\x0e\\x15\\x0e\\x06\\f\\x8e\\x0f\\n\\n\\x0f\\x0f\\x14\\x8aΑ\\x91Α\\xcf\\n\\x19\\x02N\\f\\v\\x0e\\x0f\\x14\\x0f\\x0e\\x0e\\x01\\x06V\\x02\\x19\\n\\x18\\x1f\\b\\a\\b(7\\x0f\\x19$\\x13\\b\\b\\a\\x1f\\x18t\\x04\\x04\\x05\\x04\\x11\\x11\\x04\\x05\\x04\\x04\\r\\x01Y\\x0f\\n\\n\\x0f\\x0f\\n\\a\\v\\a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\r\\x00\\x19\\x00%\\x005\\x00`\\x00\\x00%\\x16\\a\\x06\\\"'&76\\x17\\x16276'\\x14\\x06#\\\"&54632\\x1672\\x16\\x15\\x14\\x06#\\\"&5467\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\\"\\a&'7\\x17\\x14\\x1e\\x013264&#\\\"\\a'&\\x0f\\x01\\x06\\a&#\\\"\\x06\\x16\\x17\\x06\\x15\\x14\\x1632654'>\\x01&\\x01\\x1b\\x05\\x05\\x12R\\x12\\x05\\x05\\x04\\x05\\x0eH\\x0e\\x05W\\x10\\v\\v\\x0f\\x0f\\v\\v\\x10[\\v\\x0f\\x0f\\v\\v\\x10\\x10\\xb0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cd\\x0e\\v'6\\x13;\\b\\f\\a\\v\\x10\\x10\\v\\x10\\bB\\x05\\x02\\x146&\\v\\x0f\\x12\\x15\\a\\x10\\x02T:;S\\x02\\x10\\a\\x15f\\x04\\x05\\x12\\x12\\x05\\x04\\x05\\x05\\x0e\\x0e\\x051\\v\\x0f\\x0f\\v\\v\\x10\\x10\\x10\\x10\\v\\v\\x0f\\x0f\\v\\v\\x10\\xb9\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xa1\\n\\x1b\\x01U\\x0e\\a\\f\\a\\x0f\\x16\\x10\\x0f\\x0f\\x01\\x06]\\x02\\x1b\\v\\x1a!\\b\\b\\t*<<*\\n\\a\\b!\\x1a\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x1d\\x01\\x17754&\\\"\\x06\\x1d\\x01\\x14\\x06\\\"&=\\x01#\\x15\\x14\\x16326=\\x014\\x1705#\\x15\\x14\\x06\\\"&=\\x01\\a'\\x15\\x14\\x1632>\\x01\\x99Α\\x91Α\\xf1\\x0e\\v\\x17\\\",>,\\n\\x0f\\n:,\\x1f\\x1f,\\xba:\\n\\x0f\\n\\\"\\x17,\\x1f\\x14#\\x14\\x01\\xb8\\x91Α\\x91\\xce!\\n\\a\\x15\\n\\n\\x17\\x1e+*\\x1el\\b\\n\\n\\b-.\\x1f,+\\x1fk\\aq.0\\a\\n\\n\\a/\\n\\v/\\x1f+\\x14#\\x00\\x02\\x00\\x00\\xff\\xff\\x01\\xf7\\x01\\x80\\x00\\x10\\x001\\x00\\x00%\\x15\\x14\\x06\\\"&=\\x01\\x177\\x15\\x14\\x1626=\\x01'54&\\\"\\x06\\x1d\\x01\\x14\\x06#\\\"&=\\x013\\x15\\x14\\x1632>\\x02=\\x01462\\x16\\x1d\\x01\\a\\x01\\xf7B]B\\\"4\\x0f\\x16\\x10\\x8b\\x0f\\x17\\x0fB/.BV\\x10\\v\\x05\\n\\a\\x04C[C4\\xb6F.BA.F\\x10\\x10G\\v\\x0f\\x0f\\vH:\\x1f\\v\\x10\\x10\\v\\xa0.AB.FE\\v\\x0f\\x04\\a\\n\\x05\\xa3-?@-$\\x0f\\x00\\x00\\x02\\x00\\x00\\xff\\xdf\\x01\\xc1\\x01\\xa0\\x00%\\x003\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"'&'&'.\\x025\\x11463!2\\x172\\x16\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x035#5#\\\"\\x06\\x1d\\x013\\x15326\\x01\\xbe\\x02\\x1c\\x14\\xfe\\xa0\\x06\\x06\\v\\t\\x02\\x02\\x03\\x06\\x03\\x1c\\x14\\x01`\\x06\\x06\\x03\\x05\\x03\\x02\\x04\\x01\\x04\\x03\\x03\\x02\\x02\\x01\\x01\\x1e\\xc0\\xb0\\a\\t\\xc0\\xb0\\a\\t\\x01|\\x05\\a\\xfe\\xa0\\x14\\x1c\\x01\\x03\\b\\x02\\x02\\x04\\n\\f\\x06\\x01`\\x14\\x1c\\x02\\x02\\x02\\x01\\x03\\x01\\x03\\x04\\x02\\x04\\x04\\x04\\x03\\xfe\\x93\\xb0\\xc0\\t\\a\\xb0\\xc0\\t\\x00\\x00\\x00\\b\\x00\\x00\\x00 \\x02\\x00\\x01`\\x00\\x05\\x00\\t\\x00\\x11\\x00\\x15\\x00\\x1d\\x00!\\x00%\\x00)\\x00\\x00\\x1353\\x15#5\\x175#\\x15%3\\x15#535#75#\\x15\\a53\\x15#535'\\x1535'3\\x15#\\x153\\x15#R3\\x85R\\x1f\\x01H\\x85\\x85RRR\\x1fͅ\\x85R\\x1f\\x1f\\x9a4444\\x01\\x14L\\xfb\\xaf\\x86]]\\x86\\xf4)\\x1c)]])\\xaf\\xf4)\\x1c\\x86]]u3\\x19\\xaf\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\t\\x00\\x13\\x00#\\x002\\x00B\\x00\\x00\\x12\\x14\\x06#\\\"'5632\\x172\\x16\\x14\\x06#\\\"'567\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x052654.\\x01#\\\"\\a#\\x1575\\x1e\\x014&#\\\"\\a\\x06\\a\\x06\\a\\x1575\\x1632\\xcd\\x12\\r\\v\\a\\a\\v\\rG\\r\\x13\\x13\\r\\v\\x06\\a\\xc8\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xf9\\x1f+\\x14\\\"\\x14\\x12\\x11-3\\x0e\\xad+\\x1e\\x06\\x04\\x06\\r\\x16\\x1e4\\f\\x10\\x1f\\x01!\\x1f\\x17\\x04D\\x04i\\x16\\x1f\\x17\\x04D\\x04\\xa2\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xc3/ \\x16%\\x15\\t\\xce\\n3\\x05:B.\\x01\\x13\\x0e\\x17\\x02\\x9c\\n3\\x05\\x00\\b\\x00\\a\\xff\\xb9\\x029\\x01\\xc0\\x00\\x06\\x00\\x12\\x00@\\x00D\\x00\\xb6\\x00\\xba\\x00\\xbe\\x00\\xcb\\x00\\x007\\a'2632\\x172\\x1e\\x03\\x17\\x06/\\x01>\\x01\\x03&\\x06\\a67>\\x037\\x1e\\x027\\x15367>\\b?\\x01\\x06\\a\\x06\\a\\\"\\x0e\\x03\\a\\x1e\\x01\\x15\\x14\\a&7\\a\\x155\\x03\\x1e\\x02\\x17\\x0e\\x02\\a.\\x03#\\x06\\a\\x16\\x17\\x1e\\t\\x1d\\x01\\x16\\a&\\x06'<\\x017465&\\a\\x0e\\x01#\\\".\\x02'&'\\x06#\\\"&54?\\x01.\\x01>\\x0232632\\x17632\\x16\\x0f\\x01\\x15\\x14\\x1632654.\\x02547'6'632\\x1e\\x03\\x177\\x0e\\x02\\x1d\\x016\\x1e\\x03\\a3\\x17\\a'7\\x17\\a\\x17>\\x023\\x161\\x14\\x0e\\x03#\\xf4\\x1c\\x01\\x03\\f\\x04\\x05\\x8d\\x03\\a\\t\\x06\\a\\x0137\\a\\v6\\x18\\x03I\\x17\\b\\x12\\n\\x12\\b\\x14\\x03\\x04\\t\\n\\b\\aG#\\b\\r\\f\\a\\n\\x04\\n\\x03\\f\\x03\\x02\\x01\\f,g\\x03\\b\\b\\b\\a\\x03\\x01\\f\\a\\x12\\xd2\\x01;\\n\\x1a\\x11\\x14\\x0e#,\\n\\x12\\x15\\t\\\"\\x1e\\x03\\x02\\x02\\x02\\x02\\t\\x04\\x06\\x03\\x04\\x02\\x03\\x01\\x01\\x01\\v\\a?\\b\\x01!\\a\\x06\\n,\\x11\\x06\\x15\\x14\\x17\\x06\\x02\\x06\\x89\\v\\x04\\a\\t\\x8c\\x02\\x02\\b\\x05\\v\\x01\\x01\\a\\x01\\t\\x050\\x02\\v\\x02\\n5/\\x06\\x0e)\\r\\x10\\r\\x02\\x13\\x10\\x05\\x17\\x12\\x12\\x12\\r\\x03\\n\\x04\\x0e\\x01\\x12\\x10\\x16'\\x1d\\x1d\\x13\\xb8\\t\\x03\\fE\\x0e\\x1f\\x14<\\a\\x16\\x12\\f\\x01\\n\\x10\\x0f\\x10\\x01\\xca\\x06\\x05\\x04\\xc9\\t\\x10\\f\\x11\\x01\\x13\\t-\\b\\f\\x01\\v\\x04\\x03\\v\\x0f\\a\\x03\\x0e\\b\\x17\\x03\\x03\\r\\b\\x01\\x16\\x1b\\x1b\\a\\n\\v\\a\\r\\x04\\x11\\x05\\x16\\x04\\x03\\x10\\x18\\\\\\x19\\x02\\x01\\x01\\x03\\x02\\x05\\x0f\\x02\\x04\\x05\\x14\\xb3\\x01\\x01\\x01\\xfe\\x83\\x10\\x1f\\x0f\\x12\\t\\x10\\x11\\x05\\x0fPK<\\x01\\x01\\x01\\x03\\x02\\a\\x03\\x06\\x03\\x06\\x04\\a\\a\\b\\x06\\t\\r3\\x01\\t\\x05\\x06\\x1b\\t\\x03!\\a\\x01\\b\\x0f\\x1b\\x18\\x1c\\x1e\\x04\\x02\\a \\x06\\x05\\n\\x02\\x1e\\x05\\x06\\x05\\x02\\x02\\x04\\x0e\\n\\x14\\x02\\f\\x04\\b4.\\x0e\\n\\n\\x01\\x05\\a\\x05\\x05\\x06\\x10\\\"\\x05\\x02\\n\\a\\x1b\\t\\a\\x0e\\n\\x02\\x05\\x06\\x01\\r\\x14#\\x1bC\\x18\\x03\\xb1\\x043\\x0e^\\x01\\x04\\x02\\x05\\x02\\x04\\x03\\x03\\x02\\x00\\x00\\x00\\x00\\x04\\x00 \\xff\\xe0\\x01\\xa0\\x01\\xa0\\x00\\x18\\x00(\\x00:\\x00T\\x00\\x00\\x01\\x1e\\x03\\x15\\x14\\x06#\\\"&54>\\x0276767\\x16\\x17\\x1e\\x01\\x136'&\\a\\x06#\\\"&/\\x01\\\"\\x06\\x17\\x166'\\x0e\\x01\\x17\\x167632\\x1e\\x0276&'&\\\"\\x17\\x1676'&#\\\"\\x06#\\\".\\x01#\\\"\\x0e\\x01\\x16\\x17\\x16>\\x02\\x172\\x16\\x01@\\t\\x18&\\x19pNNt\\x1a&\\x1c\\t(\\r\\x13\\x03 \\x0f\\v+\\r\\x05\\x04\\x02\\x03\\x13$\\x0f\\x1a\\x05\\x05\\x05\\x05\\x03\\x15P&\\b\\x13\\x04\\x03\\t\\x0e\\r\\t\\n\\x02\\x03\\x02\\x06\\a\\x05\\x05\\x19V\\x17\\r\\x0f\\x10\\a\\f\\n=\\v\\n\\\"+\\x15\\x18#\\x0e\\a\\x0e\\x133(*\\t\\n0\\x01M\\x05\\x16,E'RhmQ%D*\\x17\\x05\\x16\\v\\x0e#&\\n\\a\\x14\\xfe\\xb4\\x05\\x04\\x01\\x02\\x0e\\a\\x03\\x04\\t\\x03\\x12\\x06D\\x03\\x10\\x06\\x03\\b\\v\\x06\\a\\x04\\x01\\x05\\x10\\x03\\x04\\x14\\x02%*\\x15\\b*\\x18\\x19\\x1a\\\"$\\n\\x0e\\n\\x17\\x18\\x011\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa1\\x00\\x18\\x001\\x00J\\x00e\\x00\\x00\\x134632\\x16\\x176\\x17\\a&\\\"\\x06\\x14\\x1f\\x01\\a.\\x01'.\\x017.\\x01\\x1767>\\x01\\x17>\\x0132\\x16\\x15\\x14\\x06\\a\\x16\\a'64&\\\"\\a\\x06\\a\\x17\\x1e\\x01\\x15\\x14\\x06#\\\".\\x01'\\x06&'7\\x16264/\\x017\\x16\\x17\\x16\\a\\x0e\\x01\\a\\x06'\\x0e\\x02#\\\"&5467&7\\x17\\x06\\x14\\x17\\x162767\\x01#\\x18\\x17!\\x046*,\\x11\\x1c\\x15\\nd,3!\\x10\\x14\\r\\b\\x14\\x1a\\x81V\\x0e\\x136\\x19\\x03\\\"\\x17\\x18#\\x1e\\x16\\x10-,\\x0f\\x16\\x1e\\v\\nZ\\xde\\x16\\x1e#\\x19\\x0e\\x19\\x11\\x03\\x199\\x14,\\x10\\x1c\\x16\\vd-[\\b(b0'\\f(7\\x03\\x10\\x19\\x0e\\x19#\\x1a\\x14\\x0e,,\\x0e\\n\\v\\x1f\\nY\\v\\x01d\\x19#\\x1d\\x15\\f*,\\x0e\\x16\\x1e\\vd,2\\\"\\x10\\x136\\x1a\\x04!_U\\x0e\\x14\\r\\b\\x16\\x1e#\\x19\\x17!\\x048--\\x10\\x1c\\x16\\v\\nZl\\x03!\\x17\\x19#\\r\\x16\\r\\b\\x0e\\x16,\\x0e\\x16\\x1e\\vd,[\\t(\\x010'\\f(\\x0e\\x0e\\x15\\f#\\x19\\x15!\\x047,-\\x10\\x1c\\v\\v\\vX\\f\\x00\\x00\\x06\\x00\\x00\\x00\\v\\x02@\\x01u\\x00\\v\\x00\\x12\\x00\\x19\\x00\\x1d\\x003\\x009\\x00\\x007\\x16\\x15\\x14\\x06+\\x01\\x1132\\x15\\x14'\\x153254#\\x17254+\\x01\\x15%#53\\x17\\x14\\a#\\x14\\x1632>\\x0173\\x06#\\\"&54632\\x16\\a3&#\\\"\\x06\\xe8AH5\\xac\\xa7q\\xcaO/5\\n:8U\\x01\\xba\\x90\\x908\\x01\\xb9!\\x1e\\v\\x17\\x13\\x03>\\x1c\\\\<GI::C\\xbas\\x053\\x19 \\xd3\\x12H34\\x01cX3NS+(\\xea/3b\\xf1#\\xd3\\x05\\b \\\"\\b\\x0f\\vVJ<;MP\\x1c7\\x1e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x06\\x00\\r\\x00\\x13\\x00#\\x00'\\x003\\x00H\\x00\\x007\\x14+\\x01532'\\x14+\\x01532\\x172\\x17#>\\x017\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a35#\\a4'654+\\x01\\x1532674&\\\"\\x06\\x15\\x14\\x1e\\x02327#\\x0e\\x01#\\\"534\\xba\\x1f-.\\x1e\\a\\x1a+(\\x1d\\x84\\x1c\\x03?\\x01\\x11\\x97\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xb0NN+#\\x1a>Z]\\x1d'\\x97$?(\\n\\x12\\x1b\\x102\\x10\\\"\\x03\\x12\\t\\\"d\\x9b\\x1947\\x17--\\x1e\\x0e\\x10\\x9a\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c}\\x13\\x81)\\n\\r\\x180\\xc0\\x1c+ +* \\x10\\x1b\\x13\\v/\\b\\n#\\a\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00!\\x002\\x00:\\x00B\\x00\\x00%\\x14\\x0e\\x01#\\\"&'\\x17\\x1e\\x01326'7\\x16654&\\\"\\x06\\x1d\\x01\\a&\\a'>\\x0132\\x16\\x05\\x16>\\x01&/\\x016\\x17\\x16\\x17\\x16\\x0e\\x01'&'6\\\"&462\\x16\\x14\\x06264&\\\"\\x06\\x14\\x01\\xf0BsCU\\x84\\x16_\\x05&\\x1a\\x1d*\\x01T(87M7;\\x18\\x14\\x85\\b\\x8ebg\\x91\\xfe\\xac\\x0f\\x1d\\r\\r\\x0e \\x14\\x13\\x14\\t\\b\\x11(\\x15\\x12\\t\\xe63%%3%R'\\x1b\\x1b'\\x1b\\xc0CsBeO'\\x18 +\\x1e<\\x018''66'\\x01V\\x01\\r7`\\x84\\x91\\xe7\\x06\\f\\x1e\\x1d\\x06\\r\\b\\b\\t\\x14\\x14(\\x11\\b\\b\\x12v$4$$4\\x15\\x1c&\\x1c\\x1c&\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x006\\x00>\\x00I\\x00\\x00>\\x01&/\\x016\\x17\\x1e\\x01\\x0e\\x01'&'\\x17\\x16\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&=\\x01\\x17\\x1e\\x02326'7\\x16654&\\\"\\x06\\x1d\\x01\\a&\\a'5463\\x04\\\"&462\\x16\\x14\\a264&\\\"\\x06\\x15\\x14\\x1e\\x01\\xb3\\f\\v\\x0e\\x1e\\x12\\x12\\x13\\x10\\x10&\\x13\\x11\\b\\x1d\\x0e\\xf8\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1cY\\x03\\x12\\x1c\\x10\\x1b'\\x01O%53I38\\x16\\x12u\\x1c\\x14\\x01\\x140\\\"\\\"0#;\\x13\\x19\\x19%\\x1a\\f\\x14N\\x1b\\x1c\\x06\\f\\a\\a\\b&&\\x0f\\b\\a\\x11\\f\\x06\\x01^\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14q%\\x0f\\x18\\x0e(\\x1d8\\x014%$33$\\x01Q\\x02\\r0\\xa1\\x14\\x1c\\xde\\\"0\\\"\\\"0\\x14\\x1a$\\x1a\\x1a\\x12\\f\\x14\\f\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00.\\x00C\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x052654'&\\a\\x06\\x15\\x14\\x163276\\x17\\x1672654'&#\\\"\\a\\x06\\x15\\x14\\x163276\\x16\\x17\\x1672654'&#\\\"\\a\\x06\\x15\\x14\\x163276\\x16\\x17\\x16\\x91Α\\x91Α\\x01]\\x06\\t\\n`\\x8d\\r\\b\\a\\x02\\n|S\\x06 \\b\\v\\vMd20\\x10\\f\\b\\x02\\n?\\u007f0\\b$\\t\\x0e\\rR{B4\\x11\\r\\n\\x03\\n<\\xa85\\x06\\x01\\xb8\\x91Α\\x91\\xce\\xdc\\t\\x06\\v\\x069\\x1f\\x03\\x0e\\x06\\t\\x02\\x1a2\\x04B\\v\\b\\r\\a-\\r\\x05\\x10\\b\\v\\x02\\x10\\x11\\x1c\\x04L\\r\\n\\x0f\\b0\\x10\\x05\\x12\\n\\x0e\\x02\\x12\\x10\\x1f\\x04\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00\\x14\\x00\\x00\\x01\\a\\x173\\x15#\\x0f\\x010\\a#57'#53?\\x023\\x01@b\\a[\\xa1\\r,\\t]]\\aV\\x9c\\x0e+\\tb\\x01c\\xb3\\n\\x80\\tT\\t]\\xb4\\t\\x80\\tT\\t\\x00\\x00\\x0e\\x00\\x00\\x005\\x02\\x80\\x01K\\x00\\v\\x00\\x17\\x00#\\x00-\\x009\\x00D\\x00N\\x00`\\x00u\\x00\\x80\\x00\\x93\\x00\\x9f\\x00\\xab\\x00\\xb6\\x00\\x007\\x17\\a\\x14#\\\"5'743272\\x15\\x17\\a\\x14#\\\"5'7472\\x15\\x17\\a\\x14#\\\"5'74\\x062\\x1f\\x01\\a\\x06\\\"5'?\\x012\\x1f\\x01\\a\\x06#\\\"5'7462\\x15\\x17\\a\\x14#\\\"5'762\\x15\\x17\\a\\x14\\\"5'?\\x01\\x16\\x15\\x17\\a\\x14#\\\"5/\\x017547632\\a\\x16\\x15\\x17\\a\\x15\\x14\\a\\x06#\\\"'&5'?\\x014762\\x062\\x1f\\x01\\a\\x06#\\\"5'7\\x052\\x16\\x15\\x14\\x06+\\x01&=\\x0147632\\x16\\x176%2\\x15\\x17\\a\\x14#\\\"5'74'2\\x1f\\x01\\a\\x06#\\\"5'74\\x162\\x15\\x17\\a\\x14#\\\"5'7o\\x06\\x06\\x04\\x04\\x06\\x06\\x04\\x04\\x16\\x05\\x05\\x05\\x05\\x05\\x05\\x05\\x1e\\x06\\x05\\x05\\x06\\x05\\x05\\x05\\x94\\x04\\x01\\x05\\x05\\x01\\x04\\x05\\x05\\x1a\\x02\\x01\\a\\a\\x01\\x02\\x03\\x06\\x06\\x19\\x06\\a\\a\\x03\\x03\\x06\\x06\\x19\\a\\a\\a\\a\\x06\\x06\\xf5\\x04\\x04\\x04\\b\\t\\x02\\x02\\x04\\x03\\x02\\x04\\x02\\x19\\x04\\x03\\x03\\x03\\x02\\x03\\x04\\x03\\x01\\x03\\x02\\x01\\x03\\x03\\x04s\\v\\x01\\x05\\x05\\x01\\x05\\x06\\x05\\x05\\x01~!..!\\xda\\t\\b\\x18\\x1a7O\\x05\\x0f\\xfe\\xe7\\a\\x04\\x04\\a\\b\\x03\\x03.\\x06\\x01\\x04\\x04\\x01\\x06\\x06\\x04\\x04\\x1a\\x0e\\x04\\x04\\a\\a\\x04\\x04\\xc0AE\\x04\\x04EA\\x04)\\x05iE\\x05\\x05Ei\\x05\\x18\\x05\\x82D\\x05\\x05D\\x82\\x05`\\x03##\\x03\\x03##\\x19\\x0399\\x02\\x0389\\x03\\v\\x03DB\\x03\\x03BD\\x05\\x03FD\\x04\\x04DFr\\x02\\x05\\xb2@\\b\\b  \\xb1\\x01\\x04\\x03\\x02\\x11\\x02\\x05\\xa3:\\a\\x03\\x02\\x03\\x03\\x02\\x03B\\xa1\\x01\\x05\\x02\\x01\\x18\\x06\\x8cC\\x06\\x06C\\x8c8/ !.\\x01\\t\\xf9\\a\\x03\\tI6\\a<\\b\\x89A\\b\\bA\\x89\\b\\b\\a\\x91C\\a\\aC\\x91\\a\\x04\\a\\x8dC\\a\\aC\\x8d\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xde\\x01\\x82\\x01\\x9c\\x00+\\x00\\x00%\\x15\\x06#\\x0e\\x02'.\\x04'3\\x1e\\x01\\x1767.\\x0154632\\x1e\\x01\\x06\\a\\x0e\\x01&'654#\\\"\\x06\\x15\\x14\\x16\\x01\\x80\\x1b\\x19\\x19O*\\x16\\v\\x1b+%$\\nJ\\r;+-\\x1f%+7/(0\\n\\x06\\n\\x06\\x10\\\"\\b\\b\\x1c\\x0e\\x11L\\xc14\\x064\\\\\\x18\\r\\x06\\x18;K~Km\\x8b5,>\\x13N12A)<:\\x16\\x01\\x02\\n\\r\\x1b\\x16.\\x1a\\x18:9\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xbc\\x02\\x01\\x01\\xc4\\x00\\x11\\x00\\x15\\x00\\x19\\x00\\x1c\\x00 \\x00$\\x00(\\x00+\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x15\\x177'\\a\\x177\\a\\x157\\x175'\\a?\\x01'\\a\\x177'\\a75\\a\\x01\\xf6\\n\\n\\xea\\f\\f\\xea\\n\\n\\xea\\f\\f\\n_MجM_\\xbe7\\x87_M\\xc2NNNd\\xacM_\\xbe7\\x01 \\x06\\f\\x9c\\f\\x06\\x9c\\b\\b\\x9c\\x06\\f\\x9c\\f\\x06\\x9c\\b\\b;g?3ss3?5J%\\xc1g?3\\x1a444\\xc1s3?5J%\\x00\\x03\\xff\\xff\\x00\\x00\\x02A\\x01\\x82\\x00$\\x00I\\x00\\u007f\\x00\\x00%\\x1e\\x01\\a\\x0e\\x03#\\x06#\\\"'.\\x01'&676'&76\\x170\\x1767>\\x01\\x1e\\x01\\x17\\x16\\x17\\x16\\x176&'&5.\\x04\\x06\\a\\x06\\a\\x0e\\x01*\\x01&'&\\a\\x06\\x17\\x16\\a\\x0e\\x01\\x17\\x163\\x165236'\\x0e\\x01#\\\"'.\\x01'&\\a\\x0e\\x01\\x1e\\x0167>\\x0176\\x16\\a\\x0e\\x01'.\\x015676\\x17\\x1e\\x01\\x17\\x16676.\\x02\\a\\x0e\\x01\\a\\x06&76\\x17\\x1e\\x01\\x01\\xff\\\"\\x1f\\t\\x04\\x14\\x1c$\\x14#\\xd9J\\x11$;\\n\\v\\x17\\x1d\\x06\\x01\\x06'&/\\b\\x19(\\\"MD7\\r\\x04\\x05\\x01\\x1b\\x1d\\x15+\\n\\x01\\x15\\\"/26\\x17(\\x15\\x02\\x04\\x05\\x02\\b\\x01&\\\"#\\b\\x03\\r\\x1d\\x13\\x0e\\x1bD\\xa4\\x9a\\x10+;\\x04'\\x18\\x19\\x13\\bI\\x0f\\x1e\\x1e\\x0e\\x06\\x0f\\x18!\\x0f\\x02\\b\\x03\\x06\\f\\x05\\r,\\x16\\x16\\x1b\\x03!%\\x1e\\x1aB\\x0f\\x13'\\v\\n\\b\\x1c$\\x11\\x01\\b\\x02\\b\\t\\x04\\\"1\\x18\\x18\\xd3\\x13D$\\x13 \\x17\\r\\x01\\x01\\x01.\\\"#C\\x17\\x04\\x051\\x1c\\x1c\\x13\\x04)\\x17\\x13\\x05\\x196%\\t(\\b\\x9f$X\\x14\\x05\\v\\x1e6%\\x19\\t\\t\\r\\x16(\\x04\\x04\\x05\\x01\\x14\\x17\\x18'\\x0f\\b\\x13B\\x1f<\\x02\\x02\\x01s\\x17 \\x12\\aL\\n\\x17\\x1b\\f!\\x1b\\x13\\x01\\r\\x02\\t\\x02\\x05\\a\\t\\x13\\x11\\a\\a&\\x19&\\x12\\x15\\x17\\x14H\\t\\f\\n\\x13\\x12%\\x15\\x04\\x11\\x01\\t\\x01\\x05\\n\\x05/\\x13\\b,\\x00\\x00\\x00\\x01\\x00\\n\\xff\\xc8\\x01\\xf5\\x01\\xb8\\x00[\\x00\\x00\\x05\\\"&7>\\x01721\\x0e\\x03\\x16\\x17\\x1e\\x02>\\x02?\\x01>\\x02.\\x02/\\x01.\\x01/\\x017\\x1e\\x03\\x1f\\x016&/\\x017\\x17\\x0e\\x01\\a\\x15>\\x05?\\x01\\x17\\x0e\\x01\\x0f\\x01\\x0e\\x01\\x16\\x17\\x1e\\x02>\\x02?\\x01>\\x01.\\x01/\\x0165\\x1e\\x03\\x17\\x16\\x06\\x01\\x00g\\x8f\\x03\\x02<7\\x01\\x04\\x13\\x19\\v\\x11\\x1c\\n\\x15\\x11\\x10\\f\\t\\x02\\x03\\b\\b\\x01\\x03\\x05\\x06\\x02\\x02\\x04\\x17\\t\\n\\x1d\\a\\x0e\\n\\b\\x02\\x02\\x01\\v\\x06\\x06-,\\t\\v\\x01\\x02\\b\\b\\t\\a\\x06\\x01\\x02\\x1d\\r\\x16\\x06\\x05\\b\\n\\x06\\r\\x06\\x11\\x10\\x11\\x0e\\v\\x03\\x03\\x1d\\x13\\x0e\\x16\\v\\v\\x01\\x19\\x1e(\\x14\\x01\\x01\\x888\\x96h<i#\\x04\\x1936B\\x1b\\n\\v\\x02\\x03\\x06\\a\\x02\\x03\\n\\x19\\x17\\x18\\x14\\x0f\\x04\\x05\\v\\x14\\x04\\x05 \\x03\\n\\v\\t\\x03\\x03\\r\\x1f\\t\\b32\\r\\x1f\\t\\n\\x05\\t\\b\\a\\x05\\x04\\x01\\x01 \\x04\\x14\\b\\b\\x10+3\\x11\\n\\t\\x01\\x04\\a\\x06\\x03\\x02\\x1aA91\\x0e\\x0e\\x02\\x01\\x12\\x1b1D+m\\x8c\\x00\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\f\\x00\\x1c\\x00)\\x006\\x00C\\x00K\\x00S\\x00b\\x00\\x8b\\x00\\x00\\x01&#5\\x1e\\x01\\x17\\a&'\\a&'\\a\\x16\\x17\\a&547\\x17\\x06\\a\\x17\\x06\\x15\\x14\\x1f\\x01\\a\\x163\\x15.\\x01'7\\x16\\x177\\x16\\x03\\x06\\a'>\\x017\\x15\\\"\\a\\x17\\x06\\a\\x0567\\x17\\x0e\\x01\\a527'676\\x14\\x06\\\"&462\\x124&\\\"\\x06\\x14\\x162\\x13\\x16\\x14\\a'67'654'7&'\\a\\x17\\x06\\\"'7&'\\a&'7&47'67\\x1767'632\\x17\\a\\x16\\x177\\x16\\x17\\a\\x16\\x14\\a\\x17\\x06\\a'\\x06\\x01 \\x10\\x12:a\\x1e\\x10\\n\\n\\x12)=\\xe6\\a\\a\\x10\\x1b\\x1b\\x10\\b\\x06\\x17\\n\\n\\x89\\x05\\x13\\x0f:b\\x1d\\x10\\b\\f\\x12);\\n\\n\\x10\\x1ea:\\x12\\x10\\x05=)\\x01$\\f\\b\\x10\\x1db:\\x0f\\x13\\x05=)o\\x91Α\\x91΅\\x8aĊ\\x8a\\xc4c\\x1b\\x1b\\x10\\b\\x06\\x17\\n\\n\\x17\\x06\\b\\xa7\\r\\x0e\\x1a\\x0e\\r\\x19\\x0f4\\x12\\t@\\x03\\x03@\\t\\x124\\x10\\x18\\r\\f\\x0f\\x0e\\r\\r\\x18\\x104\\x12\\t@\\x03\\x03@\\t\\x124\\x10\\x01\\x8a\\x03\\x13\\x0290\\t\\x10\\v\\x0f.\\f\\xf4\\x11\\x0f\\t2991\\t\\x0f\\x10\\a\\x1c\\x1f\\x1e\\x1dw\\x18\\x03\\x13\\x0290\\t\\r\\x0e\\x10/\\x01-\\v\\x10\\t09\\x02\\x13\\x03\\x18\\f.\\xff\\x0e\\r\\t09\\x02\\x13\\x03\\x18\\f/\\xdeΑ\\x91Α\\xfe\\xa6Ċ\\x8aĊ\\x01W2r1\\t\\x0e\\x11\\a\\x1d\\x1e\\x1f\\x1c\\a\\x10\\x10\\xa9C\\x03\\x03C\\x05\\x12,\\x15\\x19\\x16\\f\\x18\\f\\x16\\x19\\x15,\\x12\\x05C\\x03\\x03C\\x05\\x12,\\x15\\x19\\x16\\f\\x18\\f\\x16\\x19\\x15,\\x12\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x12\\x00\\\"\\x00*\\x00K\\x00]\\x00}\\x00\\x007\\x16\\x17\\x1e\\x01\\x15\\x14\\x06&5472\\x16\\x06#\\\"&6%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\x143254#\\\"\\a#.\\x01\\x06\\x15\\x14\\x17\\x06\\x15\\x14\\x17\\x06\\x15\\x1432>\\x0154&'&#7\\x1e\\x01654'7\\x17'\\\"=\\x01#\\a\\x16\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x1537'\\x0e\\x01.\\x01541535#\\\"545#\\x0e\\x01\\a\\x15232\\x1d\\x02\\x14\\x1632e\\a\\r\\x19\\x0e!!#\\x0e\\f\\f\\x0f\\x10\\f\\r\\x01O\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xe3\\x17\\x17\\x17\\x17\\x161\\x0f$\\x1f\\x16\\x17\\v\\x0e@\\x16\\x1f\\x10 0\\t\\x05\\b\\n!\\x1f\\t\\x17U\\r\\x054\\x03\\x03\\x04\\a\\x03\\x03\\x0eHe\\a\\x0e\\x10\\a\\x01&$\\x02\\x18\\x02\\x0f\\x11\\x04\\x06\\n\\x13\\x17\\x14r\\x01\\x01\\x01\\x03\\x06\\n\\b\\b\\b\\x06|\\x16\\x16\\x16\\x16\\x8a\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cY\\x17\\x17\\x16D\\x02\\x01\\x1a\\x18\\x1b\\v\\x15\\n\\f\\x04\\x0e\\f \\v\\x14\\x0f\\x17\\f\\x03\\x01\\x0e\\x01\\x02\\x17\\x16\\x0e\\f\\x01X\\x02\\x05i\\x14\\x01\\x01\\x03\\x02\\x03K\\x04\\x01\\x02\\x14\\n\\x16\\x03\\x02\\v\\x06\\x04\\x01=\\x19\\x10\\r\\n\\x15\\x13\\x02\\x16\\x02\\x01B\\x16\\x13\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xf1\\x02\\x00\\x01\\x8f\\x00'\\x004\\x00<\\x00R\\x00]\\x00\\u007f\\x00\\x00\\x13\\x15\\a\\x16\\x15\\x14\\x0e\\x02&'\\a\\x16\\x17\\x1e\\x05\\x15\\x14\\x06#\\\"547&5467&54>\\x02\\x1f\\x014&'\\\"&\\\"'\\x06\\x15\\x14\\x166'26&#\\\"\\x06\\x16\\x17527>\\x04=\\x014&'73\\x15\\x14\\x163\\x17\\x15'\\\".\\x015432\\x15\\x14\\x06\\x17\\x06#\\\"&=\\x024&\\a\\\"#5>\\x0373\\x16;\\x01\\x15#\\x150\\x15\\x14\\x1e\\x0267\\xd8%\\x0f\\x14\\x1c\\\"\\x1b\\n\\r\\b\\x0f\\x1c\\x1a%\\x0f\\x11\\x05:5f\\x16\\x11\\x0f\\x16#\\x1d)-\\x0f\\x10\\x16(\\x06\\b\\r\\x05\\v453\\x19\\x13\\x13\\x18\\x18\\x15\\x13\\x9e\\x05\\x06\\x06\\x04\\x05\\x01\\x01\\x05\\x17\\x05T\\x02\\x05\\x14?\\f\\x10\\t%%\\x14\\xcf!!$\\x1f\\x04\\f\\t\\a\\x0e\\x13\\r\\a\\x02&\\x02\\x029=\\x01\\x06\\v\\x19\\x12\\x01\\\"#\\x03\\x13\\x16\\x16\\x1f\\x0e\\x05\\x02\\x02\\x15\\x01\\x01\\x01\\x02\\x05\\b\\r\\x13\\r#&2\\x15\\x15\\a\\x14\\n\\x13\\x14\\x11,\\x1d&\\n\\x03\\x05\\xf2\\t\\x05\\x03\\x01\\x01\\r\\t\\x0e\\v\\r\\x95$##$d \\x01\\x01\\x01\\x01\\x02\\x02\\x03w\\x06\\x03\\b!\\xa9\\x05\\x03\\x03 \\xf4\\t\\x10\\f##\\x12\\x13\\xe4\\x11\\x1f#j\\x01\\x03\\x01\\x01%\\x01\\t\\x10\\x17\\x11>)a\\x01\\x05\\b\\x0e\\x06\\x01\\x06\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\x04\\x00\\x14\\x00\\x00\\x11!\\x11!7\\x177#\\x0e\\x02\\a.\\x03'#\\x17\\x153\\x01\\xc0\\xfe@\\x15\\xdaQ#\\x18\\x17\\v\\x02\\x02\\t\\a\\x17\\x13%P\\x1f\\x01\\xa0\\xfe@\\xfb6\\x9b-/\\x1c\\x06\\x05\\x16\\x110\\\"\\x99g\\x00\\x00\\x00\\x02\\x00\\x15\\xff\\xbe\\x01g\\x01\\xc0\\x00\\x10\\x00-\\x00\\x00\\x17\\x16\\x06'&67&632\\x16\\x15\\x14\\x06'\\x06\\x132\\x16\\x15\\x14\\x06'&6\\x17\\x16654&#\\\"\\x0e\\x02\\x17\\x16\\x06\\\"'&>\\x02H\\x01\\x1d\\x01\\t77\\f \\x1f\\x16!;\\x1ck\\x88Eb{Q\\x0f\\a\\x0e>jP9%>\\\"\\a\\x12\\x04\\n\\x10\\x04\\x17\\t'M0\\x0f\\x02\\x0e_\\xa19\\x1b3!\\x17!\\x1f\\x13s\\x01DbENe\\x11\\x04\\x1c\\x03\\x10RC9P$9G#\\b\\x0e\\t(VG-\\x00\\x00\\x00\\x00\\x01\\x00\\a\\xff\\xbf\\x01\\xb9\\x01\\xc0\\x002\\x00\\x00$\\x06.\\x02/\\x01\\x14\\x06\\a\\x1e\\x03\\a\\x06\\\"'\\x06\\\"'&67.\\x015\\x0e\\x06'\\\"&6767&632\\x16\\a\\x16\\x17\\x1e\\x01\\x01\\xb5\\x06\\f\\f\\v\\x04\\x03\\x1a\\x19\\b\\x0f\\x12\\b\\x03\\x0fn##m\\x10\\x06 \\x14\\x19\\x1a\\x01\\x02\\a\\b\\t\\b\\a\\x03\\x03\\x04\\a\\n\\a!\\x03QRQR\\x03!\\a\\n\\a\\x1c\\x01\\v\\x0f\\x10\\x06\\x05\\x197\\x15\\x03\\x06\\t\\f\\x05\\b\\x04\\x04\\b\\n\\x12\\a\\x157\\x19\\x01\\x04\\v\\n\\f\\t\\x06\\x01\\x130 \\x19Q^yx_Q\\x19 0\\x00\\x00\\x00\\x00\\x06\\x00\\r\\xff\\xdf\\x023\\x01\\xa0\\x00\\x14\\x00\\x1e\\x00(\\x006\\x00G\\x00S\\x00\\x00\\x01\\\"\\x06\\x15\\x14\\x17\\x06#\\\"'\\a7&54632\\x16\\x17&'\\\"\\x06\\x14\\x163264&\\a264&#\\\"\\x06\\x14\\x16\\x05\\x14\\a\\x17'\\x06#\\\"&4632\\x16\\a2>\\x0154.\\x02#\\\"\\x06\\x15\\x14\\x1e\\x0232>\\x0154&#\\\"\\x06\\x14\\x16\\x01\\x81E`\\x06\\n\\b\\x131D\\x13NrQGq\\f\\tr\\f\\x12\\x12\\f\\v\\r\\r\\x94\\v\\x0e\\x0e\\v\\v\\x12\\x12\\x01\\xaeD\\x0f6(\\x12F``FBc\\xdb\\a\\v\\x06\\x03\\x06\\n\\x05\\a\\f\\x03\\x05\\ao\\a\\v\\x06\\x0e\\n\\a\\f\\f\\x01\\x18Z@\\x14\\x14\\x01\\t\\\";7ME`N;\\x015\\r\\x16\\r\\r\\x16\\r0\\r\\x16\\r\\r\\x16\\r\\x9c=40\\x1d\\nSuST!\\x06\\t\\x05\\x03\\a\\x06\\x03\\f\\a\\x04\\a\\x06\\x03\\x06\\t\\x05\\a\\f\\f\\x0f\\f\\x00\\x00\\x00\\x04\\x00\\x01\\xff\\xb7\\x01\\xff\\x01\\xc0\\x00\\a\\x00\\x0f\\x00F\\x00^\\x00\\x00\\x122\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x176\\x16\\a\\x06\\a\\x16\\a\\x06'&7<\\x065\\\"&#\\x1c\\x06\\x15\\x16\\a\\x06'&7&'&6\\x172\\x16\\x175463!2\\x1e\\x01\\x1d\\x01\\a54.\\x01#!\\\"\\x06\\x1d\\x01\\x1e\\x01636\\x17\\x16\\x176\\x172\\x166\\xa23$$3$\\xb43$$3%\\xdb\\v\\f\\a#G\\x1e6\\\"(&\\x01\\x03\\t\\x02\\x01&(\\\"6\\x1fH#\\a\\f\\v\\x01\\x05\\x01\\x1b\\x13\\x01g\\f\\x15\\r\\x19\\b\\x11\\x10\\xfe\\xc3\\x18\\x11\\x1fB)\\x14\\x13\\b\\n\\n\\x02 \\x13*D\\x01&!0\\\"\\\"0!!0\\\"\\\"09\\b\\x0f\\v*\\x1ef4!\\v\\n*\\x01\\x06\\v\\x0e\\x11\\x12\\x13\\b\\x03\\b\\x13\\x12\\x12\\x0f\\f\\x06\\x01)\\v\\v!4g\\x1d+\\n\\x0f\\b\\x03\\x01\\xc6\\x15\\x1d\\r\\x17\\x0e\\xc6\\x0f\\xbf\\x10\\x14\\t\\x13\\x1a\\xc1\\x10\\x0e\\x02\\x01\\b\\n\\b\\x1b\\x02\\x02\\x0f\\x00\\x00\\x04\\x00\\x18\\xff\\xc0\\x01\\xe8\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\x10\\x00\\x18\\x00\\x00\\x01\\x15#5#\\x15#5'!\\x11\\a#\\a5#\\x11\\x055!\\x113\\x1573\\x01\\x87&D'}\\x01o\\xaeMat\\x01\\xa9\\xfe\\xcbWDM\\x01Ynnnng\\xff\\x00\\xa5[[\\x01J\\x93\\xc9\\xfe\\xee@@\\x00\\x05\\x00\\x01\\xff\\xbf\\x01\\u007f\\x01\\xc0\\x00\\x12\\x00\\\"\\x003\\x00F\\x00V\\x00\\x007\\x17\\x16\\x06\\x0f\\x01\\x06#\\\"&'&547>\\x0132\\x17&54?\\x016\\x16\\x15\\a\\x14\\x06#\\\"#&7&6\\x1f\\x01\\x1e\\x01\\x15\\x14\\a\\x0e\\x01\\a\\x06#\\\"'7\\x16\\x15\\x14\\x0e\\x02\\x0f\\x01\\x06&?\\x01632\\x17\\x1e\\x01%67232\\x16\\x1d\\x01\\x14\\x06/\\x01&54+d\\x0e\\x03\\x10l\\x02\\x03\\t\\r\\x01\\x01\\n\\x02\\r\\a\\x051\\n\\x06J\\v\\x1d\\x04\\x0e\\t\\x02\\x02+m\\b\\x14\\x0fi\\a\\t\\x02\\b\\x1f\\x0e\\x06\\t\\f\\aZ\\x02\\x03\\x05\\x06\\x03k\\x0f\\x13\\t>\\a\\f\\t\\x06\\x0e\\x1d\\xfe\\xc95;\\x01\\x01\\n\\r\\\"\\th\\x03\\xd01\\a \\x04\\x1a\\x01\\f\\b\\v\\f \\x1e\\a\\t\\xf2\\a\\f\\t\\aR\\f\\f\\x10o\\t\\r\\b\\x86\\x0e\\x19\\x05\\\"\\x02\\r\\a\\x05\\x05\\x10(\\v\\x05\\n\\xe3\\x05\\x05\\x03\\a\\x06\\x05\\x01\\x1e\\x05\\x1a\\x0e[\\v\\x06\\f)\\xbf\\x19\\x05\\r\\n\\xd0\\x12\\t\\x0f\\xb5\\x05\\x06\\x0f\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xdd\\x01\\x8a\\x01\\xa3\\x00\\\"\\x00K\\x00\\x007\\x14\\x0e\\x04\\a\\x06+\\x01\\\"&7\\x13>\\x013262\\x1e\\x02\\x17\\x1e\\x01\\a\\x06\\a\\\"&\\x0e\\x027\\x16\\a\\x06#*\\x03\\x0e\\x04\\x15\\x06\\a\\x06+\\x01\\\"&76763:\\x02>\\x067676o\\x04\\x04\\x04\\x04\\x04\\x01\\x01\\x02K\\x05\\b\\x01;\\x01\\v\\b\\x1cH\\x19$\\x0f\\x12\\n*\\x14\\x12\\x1fm\\b\\x1f\\v\\x11\\a\\xf4$\\f\\x16y\\x01\\a\\x02\\x06\\x02\\x04\\x02\\x03\\x02\\x0e\\x01\\x03\\x0e@\\x05\\x06\\x01\\x04\\x17\\x01\\n\\x01 \\v \\x10\\x1e\\x12\\x19\\x10\\x11\\x06\\x06\\x03\\x01\\x98\\x04\\x15\\x19\\x1d\\x1a\\x17\\x06\\x02\\b\\x06\\x01s\\b\\t\\x01\\x01\\x03\\x04\\x04\\x11O,Y\\x02\\x01\\x01\\x04\\v\\x87\\x1bBp\\x01\\x02\\x03\\x04\\x06\\x04W\\x04\\x0f\\b\\x05\\x1e\\x8c\\t\\x02\\x04\\a\\v\\x0f\\x15\\x1b\\x11\\x12\\x10\\x03\\x00\\x04\\x00\\x06\\xff\\xe0\\x01\\xb8\\x01\\xa0\\x00\\n\\x00\\x15\\x00\\x1b\\x00)\\x00\\x00\\x13\\x16\\x17\\x06\\a&'>\\x01&4\\a2\\x17\\x16\\x17#&'&6373\\x16\\x17#&\\x13\\x16\\x15\\x14\\a&'&'&6;\\x012\\x9d5\\x1f\\f\\x13\\x19\\x1f\\x02\\x02\\x010\\b\\x057\\x1ch\\x1f<\\x03\\x04\\x05\\x8dm~\\x11r\\n|\\x1f\\x19\\x11J\\x06\\x14\\x01\\x04\\x04Y\\f\\x01AUM21c2\\r\\x1e\\x18\\\">\\x06LvnM\\x04\\tX\\xae¦\\x01\\x0enfja\\x8a\\x85JH\\x04\\x06\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\b\\x00\\x18\\x00%\\x00)\\x00H\\x00S\\x00\\x00%\\x16\\x17#70>\\x01?\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x017#\\a/\\x01&'#\\a\\x16\\x1f\\x0137#\\a74'&5636\\x1f\\x017&#\\\"\\x0e\\x01\\x15\\x06\\x17\\x16\\x15\\x06#\\\"/\\x01\\a\\x16\\x1726\\x17'#\\\"\\x0f\\x013673\\x17\\x01\\xd6\\b\\x01!\\x10\\x02\\x02\\x01m\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfeX@+'\\x04\\x0e\\x03\\x10@\\x01\\x17\\x13$\\x89\\x19(\\x19\\xb4\\\"\\x17\\x01\\x17\\x0f\\x0e\\x04\\x05\\x10\\x14\\x13\\x1f\\x11\\x01$\\x15\\x01\\x17\\x13\\x13\\x05\\x06\\x11\\x1c\\x1f'\\x8d  \\x0f\\x05<*\\a\\x014\\x05\\xd9&\\a+\\x05\\b\\x02\\x8a\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\xf1\\x9bj\\x16G\\f\\x01\\x03\\x06\\v\\x87\\x9b\\x9b2\\x1a\\x11\\v\\b\\r\\x01\\a\\x01!\\a\\r\\x18\\x0e\\x19\\x12\\n\\t\\x0f\\b\\x03#\\b\\x01\\x1d\\x1a\\x9b\\r\\x8e\\x13\\x04\\x17\\x00\\x00\\x17\\x00\\x00\\xff\\xdf\\x02@\\x01\\x9f\\x00\\x03\\x00\\t\\x00\\r\\x00\\x13\\x004\\x00B\\x00R\\x00^\\x00d\\x00\\x8d\\x00\\x9b\\x00\\xaf\\x00\\xc0\\x00\\xcd\\x00\\xd8\\x00\\xe5\\x00\\xf0\\x00\\xfb\\x01\\x05\\x01\\r\\x01-\\x019\\x01F\\x00\\x00$\\x14\\\"4!2\\x14#\\\"462\\x17#72\\x14#\\\"4\\x172\\x150\\x061\\x141\\\"1\\\"1\\\"1\\\"1&1<\\x011434130303\\x1610\\a030410+\\x01\\x1535\\x173\\x13\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x04\\x14\\x16327&67&#\\\"\\x1764'\\x06\\x14\\a4#\\\"\\a&#\\\"\\a5#\\x153<\\x03>\\x0232\\x16\\x15\\x14\\x153<\\x02>\\x0332\\x16\\x15\\x14\\x1537#\\x15&#\\\"\\x06\\x14\\x16327\\x15374&542\\x177&\\x06\\x15\\x14\\x16\\x15\\x14\\\"'\\a\\x1663'\\x06=\\x0135#5#\\x15#\\x153\\x15\\x14\\x16734#\\\"\\x06\\x15\\x14\\x167'\\x06&7&\\a5#\\x153546\\x17\\x1646\\x177&\\x06\\x15\\x14\\x167'\\x067#\\x15&\\x06\\x15\\x14\\x167\\x1537&\\a5#\\x153546\\x177#\\x15&\\x06\\x14\\x167\\x1537\\x153535#\\x15\\x1745&1&0#\\\"0#\\x061\\x061\\x14\\x15\\x141\\x143\\x1623210606107#\\a'#\\x155\\x1737\\x15374&#\\\"\\a\\x1e\\x01\\a\\x16326\\x01\\xe3\\x17\\xfe\\xe0\\v\\v\\vx\\x11\\x01\\x13u\\f\\f\\vu\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x01J\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfe\\x00Q9*#7\\x016#*9\\x8f555Y\\x0f\\t\\x04\\x04\\b\\a\\x04\\b\\b\\x02\\x02\\x03\\x02\\x06\\x03\\a\\x01\\x01\\x02\\x03\\x03\\x05\\x03\\b-\\b\\x05\\a\\b\\n\\n\\b\\b\\x04\\b(\\x17\\x0e\\x05\\x03\\a\\x17\\x17\\x10\\x05\\x04\\t\\x18#\\x02\\f\\r\\r\\b\\b\\b\\x13\\x11\\x1b\\x11\\b\\n\\x19\\t\\x04\\x06\\x0f:\\n\\x05\\b\\b\\n\\x02\\x0e\\r\\a\\x04\\t\\x18\\x19\\b\\x04\\a5\\b\\x06\\x18\\x18\\x06\\b\\\"\\n\\x05\\b\\b\\n\\x03*\\b\\x06\\x18\\x19\\x05\\b\\b\\x01\\x01\\x04\\b\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x04\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x02\\x04Q9*#6\\x017#*9Q1\\x17\\x17\\x17\\x17\\x01\\t\\b\\x17\\x17\\x1a\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x02\\x03\\x01\\x01\\x01Z\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cfsQ\\x17-\\x8d,\\x18\\xf7)\\x87))\\x87v\\x0f\\a\\a\\x05\\x04%\\x03\\t\\x05\\x06\\x03\\x03\\x02\\n\\f\\x06\\x03\\x03\\t\\x05\\x06\\x03\\x03\\x02\\n\\f\\x06\\x03%\\x04\\x05\\v\\x11\\v\\x06\\x05\\v\\t\\x04\\x03\\x04\\x03\\x06\\x06\\x04\\n\\b\\x05\\x02\\x05\\x04\\x06\\x06\\x04\\a\\a\\v\\x11\\a\\v\\v\\a\\x11\\f\\x03\\x11\\x17\\v\\b\\x0f\\b\\t\\x06\\x06\\x03\\x1d\\x04\\b\\x04%\\x15\\b\\x03\\x03\\x13\\x11\\x05\\x05\\a\\a\\t\\r\\x0e\\t\\b\\x06\\x05 \\x04\\b\\t\\r\\x0e\\t\\t\\x05%\\x05\\t\\x04%\\x15\\a\\x04\\x03\\x17\\x13\\b\\t\\x1b\\t\\t\\x05\\u007f\\x05\\x05\\x01\\x01|\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01~\\x04\\x04\\x05\\x04\\x04\\x04\\x04U:Q\\x17-\\x8d-\\x17Q\\x00\\x00\\x00\\f\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x06\\x00\\x16\\x00'\\x003\\x00:\\x00B\\x00S\\x00k\\x00u\\x00y\\x00\\x81\\x00\\x8b\\x00\\x00%\\x14+\\x0153272\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x05\\x15353\\x173'654.\\x03*\\x01#\\x1535#535#535+\\x01\\x1737#\\a&\\\"\\x06\\x14\\x16264'&\\x0e\\x01\\x15\\x14\\x1e\\x0275\\x06&546\\x17\\a\\\"'\\a\\x16654&'&546\\x177&\\x06\\x15\\x14\\x17\\x1e\\x01\\x06\\a2654.\\x01+\\x01\\x1535#\\x15\\x055\\x0e\\x01\\a!26%\\x16\\x14\\a\\x06+\\x01532\\x02\\b\\x0f\\x05\\x05\\x0f\\b\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xb4\\x10\\x02\\x16\\x14\\x1a\\x13\\x03\\b\\x06\\r\\x05\\x10:-\\x1d\\x1c\\x1c\\x1dr\\x11#\\b$\\x12\\x16;%\\x1a\\x1a%\\x1a^\\x10\\x1c\\x13\\v\\x12\\x17\\v\\x0e! \\x0fa\\f\\x06\\n\\r,\\n\\x0e\\f\\x11\\b\\b\\x0e$\\x15\\v\\x06\\bl\\x16\\x17\\f\\x14\\r\\x17[\\x10\\x01\\xb53\\xf3z\\x01\\x91\\x06\\t\\xfe*\\t\\t\\a\\x0f\\x04\\x04\\x0f\\xfc\\r\\x19\\x98\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x8bR!!#\\x03\\x14\\x06\\b\\x06\\x03\\x01R\\x0e\\x16\\x0e\\x12\\x0eTT7:\\x1a%\\x1a\\x1a%\\x14\\a\\x06\\x18\\x0f\\f\\x14\\n\\x02\\x06\\x13\\x0e\\x0e\\x13\\x12\\x0f\\x0e/\\n\\n\\x13\\t\\x16\\n\\n\\x05\\x05\\x06\\a\\x03\\b\\v\\r\\n\\x11\\x10\\a\\x04\\f\\b\\r\\x19\\x10\\f\\x13\\nRRR\\xb4\\x91 i\\x17\\t\\xf7\\a\\x1a\\b\\x066\\x00\\x15\\xff\\xff\\xff\\xe0\\x02A\\x01\\xa0\\x00\\x13\\x00\\x1a\\x00.\\x007\\x00:\\x00A\\x00M\\x00N\\x00`\\x00g\\x00{\\x00~\\x011\\x01I\\x01a\\x01m\\x01x\\x01y\\x01\\x9c\\x01\\x9f\\x01\\xa3\\x00\\x00\\x01\\x14\\a\\x16\\x1d\\x01#<\\x02.\\x02+\\x01\\x15#532\\a254+\\x01\\x15\\x172\\x15\\x14\\x0e\\x03*\\x01#\\x15#'\\a#53\\x177\\a7'#\\x153\\x15#\\x15\\x175\\a7254+\\x01\\x15'#\\x153\\x15#\\x153\\x15#53\\x05\\a\\x14\\a\\x16\\x1d\\x01#54.\\x01+\\x01\\a#532\\a254+\\x01\\x15'#5\\a#'\\x15#'#\\a#73\\x1753\\x1773\\a3'\\x05:\\x02>\\x017\\x15\\x14\\x06#!\\\"&=\\x013673\\x16\\x1735\\x16\\x173>\\x027\\x153523\\x14\\x1735\\x16;\\x01673\\x16\\x152\\x16\\x1735\\x1e\\x01\\x1735#\\x15&'#\\x15&'#\\\"1#\\\"\\a5#\\x15.\\x04*\\x03+\\x02\\x06\\a.\\x01'#\\x15.\\x01'#\\x0e\\x01\\a5463!2\\x16\\x1d\\x01\\\"#\\\"\\a5*\\x02\\x0e\\x02\\a5#\\x15.\\x02\\\"&*\\x02#\\x15&+\\x01\\x0e\\x03\\a.\\x03'#\\x15367\\x1e\\x01\\x17346527\\x1c\\x01\\x153<\\x01523\\x14\\x15\\x14\\x15272?\\x01\\\"\\x15\\x14\\x1e\\x01\\x17\\x15\\x06+\\x0173254&\\\"&54;\\x01\\x15\\a254&\\x06&54;\\x01\\x15#\\\"\\x15\\x14\\x166\\x16\\x15\\x14+\\x015'#\\x153\\x15#\\x15\\x17\\x15#53'63023\\a\\\"'&47'3\\x15*\\x03\\x0e\\x03\\x15\\x14;\\x0173\\x1753\\x1753\\x15#'\\x15#'#\\a#\\\"54\\x17\\a3'3\\x15#\\x01E\\f\\v\\x10\\x02\\x03\\x06\\x04\\x12\\x10'\\x1b\\x1d\\v\\v\\x15\\x04\\x1c\\x03\\a\\a\\v\\x06\\r\\x02!\\x14\\x15BC\\x14\\x153\\x13\\x12)$$j\\x19?\\n\\n\\x15\\v'&&'77\\x01I\\xc3\\v\\n\\x10\\x03\\x06\\x06\\x11\\x01\\x10'\\x1b\\x1d\\v\\v\\x14\\x99\\x10\\x18\\x0f\\x18\\\"\\x06#\\x06\\x12\\x1e\\x18\\x1c\\x1b\\x16\\x14\\x1b\\x94\\x17\\f\\x01\\xd3\\x06\\x18\\n\\x0f\\b\\x04\\x1c\\x14\\xfe \\x14\\x1c\\x1b\\x02\\x04\\x13\\x04\\x035\\x01\\x04\\x1d\\x01\\x02\\x01\\x01\\x88\\b\\x01\\x01B\\v\\x13\\x1b\\x02\\x04\\x13\\x03\\x01\\x01\\x024\\a\\x05\\x02)(\\x05\\x06+\\x03\\x06 \\x03\\x1b\\x13\\f(\\x02\\x03\\x05\\x03\\a\\x05\\v\\a\\x10\\x05\\fg\\x05\\a\\x02\\v\\x01.\\x05\\x03\\x01(\\x02\\x10\\x05\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x04\\x06#\\t\\t\\x16\\b\\f\\x05\\a\\x02O\\x02\\x04\\x05\\a\\x06\\r\\n\\x14\\b\\n\\x0f:\\x01\\x04\\x05\\x04\\x01\\x04\\x06\\x02\\x02\\x02SR\\x06\\n\\a\\x06\\x030\\x01\\x17\\v'\\b\\x02\\x93\\x06\\x01\\x03$\\t\\x0f\\x14\\x04\\x06\\x11 \\x01 \\b\\r\\x10\\x0e\\x18!W\\t\\x0e\\x10\\r\\x18!\\x1f\\t\\x0e\\x10\\r\\x1a \\n'&&'889\\x01\\a\\x02\\x01\\b\\x02\\x01\\x01\\x16\\x10\\x10\\x02\\t\\x04\\a\\x03\\x05\\x02\\x01\\x10\\a\\x18\\x18\\x1c\\x1a\\x1d\\x11\\x18\\x1f\\\"\\a\\\"\\x06\\x13!L\\f\\x17p\\x11\\x11\\x01\\x18\\x0e\\x04\\x04\\x0f\\r\\x02\\t\\x04\\x05\\x03\\x02\\x19E\\x1e\\b\\a\\x0fZ\\x16\\x06\\t\\x05\\x03\\x01\\x17\\x17\\x17E\\x16\\x166\\x14\\x14\\f\\x0f\\r\\t8\\x1b\\x03\\t\\b\\x11\\x88\\f\\x0e\\x0e\\x0eEj \\x0e\\x05\\x04\\x0e\\x0e\\f\\x05\\x06\\x02\\x19E\\x1d\\b\\a\\x0fP6666\\x0f\\x0fEBB//(\\x1c\\xbb\\x01\\x03\\x02Z\\x14\\x1c\\x1c\\x14\\xcc\\x06\\t\\t\\x06\\v\\x02\\t\\x02\\x03\\x04\\x02\\v\\x19\\v\\x0e\\t\\t\\x06\\t\\a\\x01\\x04\\x03\\x16\\f\\a\\x03\\\\\\x13\\t\\n\\x15\\b\\r\\t\\t\\x05\\x01\\x01\\x01\\x01\\x01\\f\\x12\\x03\\x18\\x03\\x15\\n\\a\\x04\\x04&\\fn\\x14\\x1c\\x1c\\x14\\xaf\\x05\\x05\\x01\\x01\\x02\\x02\\x06\\x05\\x01\\x01\\x02\\x01\\x06\\x06\\x02\\x05\\x04\\x06\\x01\\x05\\x06\\x02\\x03\\x02]\\a\\v\\b\\a\\x03\\b\\b\\a\\a\\b\\x10\\x06\\n\\a\\t\\x01\\x03\\t\\r\\x03\\x02<\\a\\x05\\x01\\x01\\x06\\x1a\\t\\x0f\\x06\\x05\\x02\\n\\v\\x14\\x0e(\\x06\\x05\\x03\\x01\\n\\v\\x15\\x0f\\a\\x04\\x02\\x01\\n\\v\\x16\\x0f(\\f\\x0f\\r\\x01\\x0eE^\\x01\\x11\\x01\\x01\\r\\f\\x0f\\x0f\\x02\\x03\\x04\\a\\x04\\x147BB11E44\\x0f\\x0f\\\"#\\f\\x1c(E\\x00\\x00\\v\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\x13\\x00\\x1c\\x00,\\x00A\\x00X\\x00r\\x00\\x87\\x00\\x9e\\x00\\xab\\x00\\xb5\\x00\\x007\\x14\\x06#\\\"54632'2\\x16\\a\\x06+\\x01743!2\\x17\\x14+\\x017437\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x054+\\x01\\\"\\x0f\\x01\\x06;\\x012?\\x0146:\\x023267#\\\"\\a&#\\\"\\x06\\x15\\x14\\x16327\\x06\\x15\\x14;\\x012?\\x014\\x177454+\\x01\\\"\\x0f\\x01'&+\\x01\\\"\\x150\\x1e\\x01\\x17\\x06\\x15\\x14;\\x01274+\\x01\\\"\\x0f\\x01\\x14;\\x012?\\x01>\\x01:\\x021267#\\\"\\a&#\\\"\\x06\\x15\\x14\\x16327\\x14\\x15\\x14;\\x012?\\x01474+\\x01\\\"\\x15\\a\\x15\\x14;\\x0127'2\\x15\\x14\\x06#\\\"546\\xba\\f\\n\\x10\\r\\t\\x10j\\v\\t\\x02\\x02\\x14\\b\\x05\\x03\\x01 \\x12\\x01\\x16\\b\\x04\\x03\\xd8\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfe@\\\"(\\x05\\x01\\x10\\x01\\x04\\x13\\x05\\x01\\x04\\x03\\x05\\x04\\x05\\x01\\x16\\x18T\\x12\\x04\\x01\\a\\x10\\x12\\x1a\\x12\\x0e\\x10\\v\\x01\\x03\\x11\\x04\\x02\\n%@\\x03\\x13\\x03\\x02\\x1a\\v\\x02\\x04\\x12\\x04\\n\\v\\x01\\x15\\x03\\x13\\x03\\xa1\\\"(\\x05\\x01\\x10\\x03\\x15\\x03\\x01\\x04\\x01\\x03\\x04\\x04\\x06\\x16\\x18T\\x12\\x04\\x01\\x06\\x11\\x13\\x19\\x11\\x0f\\x10\\n\\x03\\x11\\x04\\x02\\n,\\x03\\x13\\x03\\x10\\x03\\x11\\x04\\x01J\\x10\\f\\n\\x10\\r\\xbe\\t\\r\\x0f\\t\\r!\\x05\\n\\x0e\\x1b\\x02\\v\\x12\\x1b\\x02\\x82\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x9b\\x1c\\x05f\\x04\\x06\\x1a\\x02\\x03\\x18\\r\\b\\n\\x1b\\x13\\x0e\\x12\\f\\x03\\x03\\x04\\x06@\\x04b\\\\\\x01\\x01\\x04\\x03'&\\x04\\x04\\x1d\\x1f\\x02\\x1d\\x03\\x03n\\x1c\\x05f\\x04\\x03\\x1d\\x02\\x03\\x18\\r\\b\\n\\x1b\\x13\\x0e\\x12\\f\\x05\\x01\\x04\\x06@\\x04!\\x04\\x03h\\x01\\x03\\x061\\x0f\\t\\r\\x0f\\n\\f\\x00\\n\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\a\\x00\\x13\\x00#\\x00@\\x00P\\x00Z\\x00^\\x00b\\x00q\\x00\\x87\\x00\\x00%2\\x16\\x15#4>\\x01\\a2\\x1e\\x01\\x15\\x14\\x06#\\\"'5672\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x174.\\x015432\\x175&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x01\\x15\\x14#\\\"'\\x15\\x1632675#5\\a\\x15\\x14\\x163275\\x06&=\\x01\\x175&\\a'#\\x15356\\x175#\\x1575\\a\\x15\\x172654&#\\\"\\a'#\\x1575\\x167454&#\\\"\\x0e\\x02\\x15\\x14\\x1e\\x013275\\x06#\\\"'\\x01\\xec\\b\\n$\\x05\\tq\\x06\\n\\x06\\f\\n\\n\\a\\x06\\xa4\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14J\\x1b\\x1b\\f\\x12\\x11\\x10\\x13\\x0e\\x16\\f\\x1b\\x1b\\x0e\\x11\\x15\\x12\\x14\\x17\\x1bE\\x1b#\\x15\\x10\\x11\\b\\x03\\x18e\\x14\\n\\x02\\x1f$\\n=$$$n\\x15\\x1c\\x1d\\x14\\x0f\\f\\x02 $\\r\\xad\\x1b\\x18\\r\\x14\\x0e\\b\\x10\\x1a\\x11\\x17\\x11\\x10\\x13\\x1a\\x02\\xe3\\v\\f\\b\\v\\x04\\x02\\t\\x0f\\t\\x0f\\x13\\a5\\a\\xbf\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xf9\\x12\\x13\\b\\x06\\a\\t\\\"\\x06\\t\\x13\\f\\x11\\x12\\t\\x06\\t\\f\\\"\\b\\x15L\\x1e\\x1f\\br\\x0f\\x15\\x05\\x1c\\x03\\x03\\r3\\x03!\\a\\x12\\v}U\\rb}}\\x8f\\x1d\\a\\x1d\\x8a! \\x1e\\\"\\v\\t\\xa6\\b(\\t3\\b\\x05\\x1d$\\n\\x11\\x18\\x0e\\x15\\x1d\\x0e\\t\\x1d\\b\\x15\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x001\\x02\\x00\\x01O\\x00X\\x00\\x007\\x0e\\x04#\\\"&54632\\x1e\\x05\\x17\\x16\\x17\\x1e\\x023254.\\x05'&54632\\x17\\a&#\\\"\\x0e\\x01\\x15\\x14\\x16\\x17\\x1e\\t\\x15\\x14#\\\"&'.\\a#\\\"\\x06\\x15\\x14\\x1e\\x0126?\\x01\\xe2\\x01\\x06\\x12\\x14#\\x12>BD@\\x17%\\x1a\\x17\\x0e\\x10\\a\\b\\x05\\x02\\b\\x15)\\x1c=\\x03\\n\\b\\x12\\n\\x1a\\x05D<-^\\a;\\x03+\\r\\x12\\n\\x0e\\x13\\x02\\x1c\\x05\\x19\\a\\x14\\x06\\r\\x05\\x04zFE\\x10\\x03\\r\\x04\\f\\b\\x0e\\x0f\\x14\\f\\x1f)\\x11 (&\\t\\tQ\\x01\\x05\\n\\b\\aFCFM\\a\\v\\x17\\x11%\\x16\\x18\\x0e\\b\\x17\\x1f\\x14\\x1f\\x06\\v\\b\\x05\\x06\\x03\\x05\\x02\\x10<-'J\\a#\\a\\x0e\\n\\x0e\\x10\\x04\\x01\\x06\\x01\\a\\x04\\t\\b\\r\\x0e\\x13\\nQ60\\t(\\x0e\\x1f\\n\\x13\\x06\\x06/3\\x1b*\\x16\\x11\\b\\t\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00g\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01254.\\b1&5432\\x177&#\\\"\\x06\\x15\\x14\\x172\\x1e\\b\\x15\\x14#\\\"'.\\t#\\\"\\x06\\x15\\x14\\x1e\\x01326?\\x01'\\x06#\\\"&54632\\x1e\\x06\\x17\\x1e\\x04\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x04L\\x03\\x02\\t\\x04\\f\\x04\\x10\\x03\\x13\\x15\\x1a\\x1b\\x02$\\x04:\\x1d%+\\x03\\n\\x06\\b\\x05\\x06\\x04\\x04\\x02\\x02&.\\x10\\x01\\t\\x02\\t\\x04\\n\\b\\x0e\\x0e\\x12\\v(+\\x13#\\x1a\\x12\\x1f\\x06\\x06\\v\\x14\\x1c\\x13\\x18\\x1a\\x13\\a\\r\\t\\t\\x05\\a\\x03\\b\\x02\\x03\\n\\x0f\\x15\\x1d\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xc73\\x06\\f\\t\\b\\x05\\x06\\x02\\x04\\x01\\x04\\x05\\x10\\x14\\x16\\x04/\\x19\\x1c%\\v\\x02\\x02\\x02\\x02\\x02\\x03\\x03\\x04\\x05\\x03\\x13.\\x03\\x1c\\x06\\x17\\x05\\x11\\x04\\n\\x03\\x030,\\x1c&\\x14\\n\\x05\\x04 \\x15\\x1f\\x1a \\x1e\\x04\\x04\\f\\a\\x13\\b\\x1a\\x05\\v\\x12\\x11\\v\\a\\x00\\x03\\x00\\x00\\xff\\xc8\\x02\\x80\\x01\\xb8\\x00\\x1d\\x00;\\x00G\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\x16\\x15\\x14\\x06#\\\"&'#\\\"&46;\\x01&54632\\x16\\x17\\a4'!\\\"&463!.\\x01#\\\"\\x06\\x15\\x14\\x17!2\\x16\\x14\\x06#!\\x1e\\x01326%32\\x16\\x14\\x06+\\x01\\\"&46\\x02h\\n\\x0e\\x0e\\n5\\x05\\x91gL|\\x1dC\\n\\x0e\\x0e\\n5\\x05\\x91gL|\\x1d\\x1d\\x06\\xfe\\xd6\\n\\x0e\\x0e\\n\\x01\\x18\\x1a^8Su\\x06\\x01*\\n\\x0e\\x0e\\n\\xfe\\xe8\\x1a^8Su\\xfe\\xd0\\xd0\\n\\x0e\\x0e\\n\\xd0\\n\\x0e\\x0e\\x01 \\x0e\\x14\\x0e\\x17\\x19g\\x91TD\\x0e\\x14\\x0e\\x17\\x19g\\x91TD`\\x18\\x18\\x0e\\x14\\x0e/9uS\\x18\\x18\\x0e\\x14\\x0e/9uk\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x06\\x00.\\xff\\xc0\\x01\\x92\\x01\\xc0\\x00'\\x00/\\x008\\x00E\\x00\\x81\\x00\\x87\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#\\\"&547&54632\\x17&54>\\x0232\\x17\\x16\\x17>\\x0432\\x16\\x15\\x14\\x0f\\x01\\x17654#\\\"\\a\\x14\\x176\\x17'&\\a\\x06\\a\\\"\\x0e\\x01\\x15\\x14\\x1632654&\\x17>\\x01&'.\\x01#\\\"\\x0e\\x01\\x15\\x147232\\x17\\x06\\a\\x06\\a\\x0e\\x01\\x15\\x14\\x16\\x150\\x061&'\\\"#\\x16\\x06#\\\"&7\\x1e\\x0432654&#\\\"\\x06\\x17\\x1e\\x0132'\\x16\\x1767&\\x01[!\\x16iVF_3\\b\\x1f\\x12\\b\\f/\\x06\\v\\x11\\f%7\\x02\\x01\\x01\\x12\\x10\\x17\\x1a\\r\\x14\\x17P!\\\"/\\v\\x10\\xbf.\\x06\\x1d\\\"\\x17\\x10\\b\\x02\\x04\\t\\a=\\x0f\\x05\\x060\\xa5\\x1a\\x15\\x06\\n\\x10Y!\\b\\b\\x01r\\x04\\x02\\x0f\\x02\\b\\x13\\x13\\b\\x13\\x19\\v\\x02(\\x02\\x02\\n\\x04\\x17\\x13\\x1e1\\x15\\x06\\x10\\a\\n\\a\\x05\\x03\\t.\\t\\x0f\\x10\\v\\x11C-A6\\a\\x02\\v\\t\\x1d\\xe9\\b0&Xs\\\\99\\x0e\\x16\\b\\x12#\\x05\\x85\\x1d\\v\\x13\\x0e\\b\\xa6\\x05\\x01\\x023%/\\x1a\\x1c\\x15\\x1f\\x13^\\x06\\x82\\x12\\x10\\x04\\x1dx\\x04\\x03eC\\x05\\x02\\xd1\\a\\n\\x04\\x11Q\\b\\x04\\x0f\\\\\\xba\\x1cP:\\b\\x0e\\x10\\x05\\x04\\x05(\\x01\\x15\\b\\b\\a\\x06\\r'\\x14\\b!\\t\\a\\x02;\\x0e\\x1cA\\x16\\t\\x15\\t\\n\\x03\\x05\\x04\\n?$!)/\\xaf\\x14\\x05\\f\\a\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x02\\x00\\x12\\x00\\x19\\x00\\x00\\x13\\x17#%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\v\\x01#\\x0337\\x17\\xe0+V\\x01\\v\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cA_\\x80_[p\\x18\\x01)\\xa0\\xe7\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\xa7\\x01*\\xfe\\xd6[[\\x00\\x00\\x17\\x00\\r\\xff\\xcf\\x023\\x01\\xb1\\x00J\\x00M\\x00R\\x00_\\x00f\\x00i\\x00n\\x00q\\x00u\\x00z\\x00\\x83\\x00\\x87\\x00\\x8e\\x00\\x94\\x00\\x99\\x00\\x9c\\x00\\xa1\\x00\\xa8\\x00\\xb0\\x00\\xb6\\x00\\xb9\\x00\\xbe\\x00\\xc8\\x00\\x00%\\x16\\x15\\x14\\x0f\\x01\\x16\\x15\\x14\\x0f\\x01\\x16\\x15\\x14\\x0e\\x01#\\\"'#\\x06\\\"'#\\x06#\\\"&547'&547'&54?\\x014&14?\\x01&54>\\x0132\\x17362\\x173632\\x1e\\x01\\x15\\x14\\a\\x172\\x16\\x15\\x14\\a\\x015#75\\a\\x16\\x1575'\\x06#\\a\\x14\\x15\\x14\\a\\x170\\x1775\\a\\x141\\x14\\a75\\a\\x055\\a\\x177\\x0f\\x013'7'\\a\\x1f\\x0137'7\\a\\x177&=\\x01'&'#\\a\\x17'#\\x177#\\x06\\\"\\a\\x157'\\\"\\x0f\\x01\\x15\\x177'\\a\\x157\\a\\x1537'\\a37#\\x15\\x17\\x16\\x173'#\\a362?\\x01#\\x176?\\x02#747'\\a74547'\\a\\x1767\\x02&\\f\\f7\\x01\\f4\\x01\\x04\\a\\x04\\a\\x04k\\x05\\x0e\\x05j\\x05\\a\\x06\\t\\x014\\f\\x017\\f\\f6\\x01\\t8\\x01\\x05\\a\\x04\\a\\x04j\\x05\\x0e\\x05j\\x05\\a\\x04\\a\\x04\\x018\\x06\\b\\x02\\xfe\\xa6,,-\\x01,3\\x03\\x044\\x018\\x043,\\x02.,\\x01rb@#\\xbd\\f\\x17\\fPSPY\\x11|\\x06D\\\"uSb\\x02:\\x01\\f\\x04\\xa69\\nh3\\x94K\\x04\\fx63\\x01\\x01\\x01)O<<$$k\\x11R#\\x01[c\\x01\\x03\\x84i\\\\&\\\\a\\x04\\f|\\x12sZ\\x02\\x01\\x11#\\x16\\x16\\x01\\x11\\x04V\\x01.#\\x15\\x01\\x03\\xcf\\x02\\r\\f\\x03_\\x03\\x02\\f\\x03Z\\x02\\x02\\x04\\a\\x04\\x04\\x05\\x05\\x05\\t\\x06\\x02\\x04Y\\x03\\f\\x02\\x03_\\x03\\f\\r\\x02\\\\\\x01\\x01\\n\\x04a\\x03\\x02\\x04\\a\\x04\\x06\\x06\\x06\\x06\\x04\\a\\x04\\x02\\x03`\\t\\x06\\x03\\x04\\xfe\\xd7L\\b30\\x02\\x01?\\\\4\\x02Z\\x01\\x03\\x02\\x02`\\x02\\x9cH\\x10\\x01\\x04\\x04!<K\\x18\\x01fC\\xa7\\xc1\\f\\x17RXT\\\\\\x11\\x1cG\\xe0|Xe\\x04\\x04\\x01d\\x01\\x03<=y66\\x05\\x01G\\x146\\x01QS+U?sL&2;\\x12V\\xcf_Z\\x01\\x01\\x03__\\x05\\aS\\\\\\x01\\x01\\x1d=\\b\\x02\\x01\\x12\\x15l\\x02\\x01\\x01\\x04O\\xa4\\x16\\x01\\x01\\x00\\x00\\x00\\x02\\x00\\x13\\xff\\xc0\\x01\\xad\\x01\\xc0\\x00\\r\\x00\\x1d\\x00\\x00\\x017\\x11\\x14\\x06+\\x01\\\"&=\\x01463\\x13\\x153'54.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x01Gf5&\\xe4&55&,\\xe03\\t\\x0f\\b\\x8d\\r\\x13\\x13\\x01Xh\\xfeU%00%\\xe5'7\\xfe\\xc8\\x015{\\t\\x0f\\t\\x14\\r\\x8f\\r\\x13\\x00\\x00\\x04\\x00\\x00\\xff\\xdd\\x01\\xc0\\x01\\x9d\\x00\\t\\x00\\x13\\x00\\x1d\\x00'\\x00\\x007&54632\\x17\\x0e\\x01%\\x0e\\x01\\a&'>\\x017\\x16\\x13\\x16\\x17&'\\x06\\a67\\x067\\x0e\\x01\\a&'>\\x017\\x16\\x06\\x06\\x83\\\\\\x18\\x19\\\\\\x8c\\x01gq\\xa7!\\x18\\x15!\\xa5p\\x1b$\\x12\\x1074(-Cy\\x06\\x06U\\x82#\\x1f\\x1a\\\"\\x9ag\\f\\x8a\\x1a\\x1a\\\\\\x83\\x05$\\x8da!\\xa9r\\x13\\x1ep\\xa7!\\x13\\xfe\\xe90>\\x0e\\x14\\x19\\a}B-k#\\x84V\\x04\\vh\\x9d\\\"\\x1b\\x00\\x00\\x00\\x03\\x00\\x06\\x00\\x00\\x02:\\x01\\x80\\x00\\x0e\\x00%\\x00:\\x00\\x00\\x01\\x17#&\\a&#\\\"\\a\\x13632\\x176\\x13\\\"'&#\\\"\\a&#\\\"\\a\\x06+\\x01\\x13632\\x17632\\x17\\v\\x01&#\\\"\\a&#\\\"\\a\\x03>\\x0232\\x17632\\x16\\x01\\x83\\x0f\\v8/-:8C\\x1f,0=*)\\xf0$\\\"75>))>57#\\\"\\x01*>G@**@G>\\x01\\\"/6>))>6/\\\"\\x1d!1\\x188//8#9\\x01Q\\xf9\\x01\\x1d\\x1c\\x1c\\x01\\x02\\x13+)\\xfe\\xb1\\x10\\x19))\\x19\\x10\\x01]#\\x1d\\x1d#\\xfe\\xd0\\x01\\x18\\x15&&\\x15\\xfe\\xe8\\f\\f\\t\\x1d\\x1d\\x10\\x00\\x00\\x00\\x05\\x00\\x06\\xff\\xe0\\x02z\\x01\\xa0\\x00\\x1c\\x00,\\x00<\\x00M\\x00]\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467&54>\\x0132\\x17>\\x0132\\x16\\x15\\x14\\x0554&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x02\\x1c)5I2\\xfe\\x822I' \\x03\\x16'\\x17\\x1f\\x18\\x0e[:Ec\\xfe\\xa8\\t\\x06\\x1f\\a\\t\\t\\a\\x1f\\x06\\tY\\t\\x06\\x1f\\x06\\t\\t\\x06\\x1f\\x06\\tZ\\x04\\a\\x04\\x1f\\a\\t\\t\\a\\x1f\\x06\\tW\\t\\x06\\x1d\\x06\\t\\t\\x06\\x1d\\x06\\t\\xd3\\nC+3HH3$<\\x0f\\v\\f\\x17&\\x17\\x158HcE\\x14\\xb6o\\a\\t\\t\\ao\\x06\\t\\t\\x06\\x84\\x06\\t\\t\\x06\\x84\\x06\\t\\t\\x06\\xa3\\x04\\a\\x04\\t\\x06\\xa3\\x06\\t\\t\\x06\\xe1\\x06\\n\\n\\x06\\xe1\\x06\\t\\t\\x00'\\x00\\x00\\xff\\xc3\\x01\\xc0\\x01\\xbd\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00C\\x00G\\x00M\\x00U\\x00u\\x00y\\x00}\\x00\\x81\\x00\\x86\\x00\\x8b\\x00\\x8f\\x00\\x93\\x00\\x97\\x00\\x9b\\x00\\x9f\\x00\\xa3\\x00\\xa7\\x00\\xab\\x00\\xaf\\x00\\xb3\\x00\\xb7\\x00\\xbd\\x00\\xc1\\x00\\x00?\\x01\\x17\\a\\x177\\x17\\a?\\x01\\x17\\x0f\\x017\\x17\\a'7\\x17\\a\\x177\\x17\\x0f\\x017\\x17\\a?\\x01\\x17\\a\\x03\\x15#5#\\x15#5#\\x15#53\\x15#53\\x15#53\\x15#5#\\x15#53\\x15#5\\x01\\x15#57\\x15#5\\a\\x15#53\\x15\\x16\\\"&462\\x16\\x14'\\x14\\x166\\x16\\x15\\x14#\\\"'\\a\\x1632654&\\x06&5432\\x1737&#\\\"\\x0e\\x01'\\x15#5\\x0553\\x15%\\x15#5\\x03!\\x11\\a'%\\x11!\\x11\\x17\\x135!\\x15\\x17\\x15#5\\x17\\x15#57\\x15#5\\x0553\\x15'53\\x15'\\x15#5\\x1753\\x15\\a53\\x15'\\x15#53\\x15#5\\x175#53\\x15'\\x15#5d\\x04\\x1f\\x04\\b\\x05\\x1e\\x04\\x8e\\x1e\\x04\\x1e\\x89\\x05\\x1e\\x05\\x95\\x05\\x1e\\x04\\xb5\\x1e\\x05\\x1f,\\x1f\\x05\\x1fr\\x1f\\x04\\x1f\\xb9\\\"\\r\\\"\\r\\\"\\xaf!\\x80\\\"Q\\\"=!\\xaf\\\"\\xfe\\xc1\\vQ\\\"$\\v\\\"\\xb8L66L5\\x8b\\x18\\x1d\\x18!\\x1c\\b\\t\\x13\\x1c\\x13 \\x19\\x1d\\x19\\x1e\\x1b\\t\\x01\\b\\x1d\\x0f\\f\\x14\\x11y\\v\\x01a\\v\\xfe\\x9f\\v*\\x01\\xc0\\xe2\\xde\\x01\\xa3\\xfez\\xc1\\xc5\\xfez\\x18\\v\\v\\v\\x80\\\"\\x01\\x03\\v\\v\\v\\xbd!\\xd3\\v\\v\\v\\x8e!Q\\\"u\\x17\\\"/\\\"&\\n\\x0e\\n\\x04\\n\\r\\n\\x1b\\x0e\\n\\x0e\\x15\\n\\x0e\\nB\\n\\x0e\\t\\x19\\r\\n\\r\\b\\x0e\\n\\x0e>\\x0e\\n\\r\\x01g\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\xfe\\xd0\\\"\\\"\\xd8\\v\\v\\v\\x17\\\"\\v\\xe45L55L:\\x0f\\f\\x02\\x05\\b\\x0f\\x0f\\x12\\f\\x0e\\x11\\x10\\x0e\\x02\\x03\\a\\x0f\\r\\x10\\f\\x04\\x0fI\\\"\\\"\\xcf\\\"\\\"M!!\\x010\\xfejbb\\x13\\x01\\x0e\\xfe\\xf2U\\x01\\x80;;\\x82!!+!!\\x82\\v\\v\\xa3!!+!!x\\v\\vM\\\"\\\"\\x82\\\"\\\"\\xcf\\v\\v\\v\\v\\\"\\x17\\v\\\"\\\"\\v\\v\\x00\\x00\\x00\\x00\\x03\\x00\\x04\\x00\\x00\\x01\\xfc\\x01\\x80\\x00\\x1a\\x00\\\"\\x00*\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1e\\x01\\x1d\\x0135463\\x02264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\xe1\\v\\x10\\x10\\v\\xfe>\\v\\x10\\x10\\vj\\a\\f\\a\\xba\\x0f\\v\\xfd7''7'\\xfc7''7'\\x01\\x80\\x0f\\v\\xfe\\xb4\\v\\x0f\\x0f\\v\\x01L\\v\\x0f\\a\\f\\a((\\v\\x0f\\xfe\\xdc'7''7''7''7\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x04\\x02\\x80\\x01|\\x00Y\\x00\\x00%\\x14\\x06#\\\".\\x06#\\\"\\x0e\\x01\\x1e\\x01327>\\x0332\\x16\\x15\\x14\\a\\x0e\\x01#\\\"&54>\\x0132\\x1e\\x0632>\\x01.\\x01#\\\"\\x06#\\\"&54654&#\\\"\\x0e\\x01#\\\"&547632\\x1e\\x02\\x15\\x14\\a632\\x16\\x02\\x80D2\\x1d6()!)'5\\x1d*9\\r\\x0e<+C;\\x01\\a\\x06\\x06\\x02\\x05\\x06\\x12 S(@Z)F*!<,,\\\"'%.\\x19\\x1c&\\t\\t%\\x1a\\t!\\x05\\x06\\n\\x06C2\\x18(\\x17\\x02\\x05\\x06\\b&@\\x1e3%\\x15\\x01\\x12\\x12.Bw1B\\x16#-/,$\\x15,>>,*\\x01\\a\\x05\\x04\\a\\x04\\b\\x10\\x1c\\\"R?*E&\\x15\\\",/,\\\"\\x16\\x1d))\\x1d\\v\\t\\x06\\x06\\x18\\x062A\\x12\\x13\\a\\x05\\x05\\t,\\x15%3\\x1d\\f\\t\\x05>\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc6\\x01\\x80\\x01\\xba\\x00@\\x00\\x00\\x132\\x16\\x15\\x14\\x0e\\x02#\\\"&'\\x0e\\x06\\a\\x06\\\"'&54>\\x017&5476\\x17\\x16\\x15\\x14\\x06\\x15\\x14\\x1632>\\x0254&#\\\"\\x06\\x15\\x14\\x16\\x15\\x14\\x06#\\\"&546\\xccIk\\x13$=&\\x14(\\t\\x03\\v\\x03\\t\\a\\r\\x0f\\v\\x03\\x01\\x03\\x04\\r\\x1b\\x02\\n%\\x1e\\x12\\t\\x1a\\x1b\\x13\\x18&\\x13\\tA5<P\\x17\\t\\x06\\x15+{\\x01\\xba\\\\I$D:\\\"\\x13\\x11\\f,\\r\\x1e\\r\\x18\\x16\\x0f\\x02\\x030\\t\\x1bEh\\t\\x13 0\\x10\\r\\x16\\f\\x12\\x13K\\x13\\x13\\x19 21\\x164:N<\\x17,\\x01\\b\\x1b>0Pd\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00 \\x00H\\x00\\x00\\x01\\x16\\x15\\x14\\x06#\\\"'\\a7&54632\\x032656'&\\\"\\x06\\x15\\x14\\x1f\\x01\\a7\\x17\\x167\\x16\\x17\\x16\\a\\x0e\\x01\\a\\x06'&'&54763232\\x17\\x161\\x16\\a\\x0e\\x02\\x17\\x1e\\x01\\x17\\x167676\\x17\\x16\\x01}C\\x84\\\\91v \\x1e\\x82\\\\\\\\\\\\Ln\\x0196\\x98m\\x1d\\x04\\x13F\\a+\\x98\\n\\x01\\x03\\a\\x03\\x19\\t\\x1a)1-\\x17\\x13\\a\\b\\b\\x03\\t\\x03\\x11\\x03\\x02\\x04\\f\\x02\\x02\\x0e!\\x1c\\b\\x04\\r\\x05\\x04\\b\\b\\x01_CZ\\\\\\x82\\x1b\\x1fs3<\\\\\\x82\\xfeimLJ86lL5-\\aD\\x12\\x04\\x1a\\x8b\\x05\\x02\\x06\\x15\\b\\x11\\x01\\x04\\x12\\x15?\\x1f\\x1a\\x19\\x16\\x06\\t)\\x06\\x04\\t\\r\\x02\\x06\\x1a\\x1a\\x0e\\x04\\x05\\x0f\\a\\x06\\x03\\x03\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x16\\x00\\x19\\x00\\x00\\x01\\a3\\x15#\\a3\\x15#\\a'#53'#53'3\\x1737\\x037#\\x01\\x8000D\\x0eRgYYgR\\x0eD00@Q^Q\\x80\\x1b6\\x01\\xa0p0 0\\xd0\\xd00 0p\\xc0\\xc0\\xfe\\xd0@\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00(\\x00\\x00\\x11!\\x11!\\x015#\\a'#\\x15\\x17\\x16\\a\\x15\\x16\\x0f\\x01\\x1535'&75\\x1737\\x15\\x14\\x0f\\x01\\x1535'&75&7\\x01\\xc0\\xfe@\\x01tS;DW\\x1c\\x05\\x01\\x01\\x05 Z \\x05\\x01O\\tC\\x02\\x18v\\x18\\x03\\x01\\x01\\x03\\x01\\xa0\\xfe@\\x01V\\x05\\x94\\x94\\x05\\\"\\x04\\x06\\x85\\a\\x06&\\x05\\x05&\\x06\\as\\xab\\xab\\x89\\x04\\x02\\x18\\x05\\x05\\x17\\x03\\x04\\xa9\\x04\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\x0f\\x00\\x00\\x01\\x11!\\x11\\x137#\\a\\x06\\a/\\x01#\\x17\\x153\\x01\\xc0\\xfe@\\xecN!.\\a\\x06\\f-#L\\x1e\\x01\\xa0\\xfe@\\x01\\xc0\\xff\\x00\\x92[\\x0e\\r\\x1b[\\x90^\\x00\\x00\\x18\\xff\\xfe\\xff\\xcd\\x02B\\x01\\xb8\\x00\\x8d\\x00\\x98\\x00\\xa2\\x00\\xab\\x00\\xb5\\x00\\xbf\\x00\\xc9\\x00\\xd5\\x00\\xe0\\x00\\xeb\\x00\\xf8\\x01\\x02\\x01'\\x018\\x01I\\x01[\\x01n\\x01z\\x01\\x81\\x01\\x8e\\x01\\x9c\\x01\\xa8\\x01\\xb4\\x01\\xbf\\x00\\x00%\\x16\\a\\x16\\x06\\a\\x06'\\x06'\\x06'.\\x01567&6\\x1767&\\x176746\\x176\\x175\\\".\\x01'&7>\\x0176\\x172\\x17263&'&'45&'&676\\x16\\x17\\x14\\x1e\\x026\\x166\\x166\\x1767&\\a6767&'6\\x17\\x16\\x17\\x16:\\x01>\\x045>\\x01\\x17\\x16\\x17\\x16\\a\\x06\\a\\x15\\\"\\a\\x06\\a2\\x163636\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\a\\x0e\\x01#\\x14\\x156\\x176\\x16\\x15\\x16\\x176\\x16\\a\\x16\\x176\\x16'\\x16\\x176&'.\\x01\\x06\\x15\\x14\\a\\x06\\a\\x16\\a6767&'\\\"#\\x16\\x17276&\\x0567&54&\\a\\x0e\\x01\\x17\\x16\\x17&7&'\\x06\\a\\x16\\x1767\\x06\\x0f\\x015\\x06\\x17\\x167\\\"\\x0e\\x01\\x15\\x14\\x162654&\\x17&#\\x16\\x17\\x16327>\\x01'\\\"#\\x06\\x16\\x17\\x162764\\a64'*\\x01\\x06#\\x0e\\x01\\x17\\x1e\\x01'\\x06\\x16\\x17\\x167>\\x017\\x06\\a\\x16\\a\\x16\\x17>\\x017&7.\\x02#\\x06\\a\\x06'&'\\x06\\a\\x06'\\x0e\\x02\\a\\x06'\\x06'&'&'\\x06\\a65.\\x02'&\\x06\\x17\\x1e\\x03\\x1726'\\x16\\x1767&'\\x06\\a\\x06\\x16\\a\\x06\\a\\x06\\a\\x06\\x05.\\x04'\\x06\\a\\x06'&'\\x06\\a\\x155\\x16767#65&'&'&7&5&'\\x06\\a\\x16\\x176&\\a\\x0e\\x01\\a\\x14\\x163>\\x01\\x03.\\x01\\a>\\x01\\x16\\x016\\x16\\a\\x0e\\x02\\a\\x06&5467\\\"&7\\x16654'6\\x16\\x15\\x14\\x06\\a4>\\x0176\\x16\\a\\x06\\a\\x06&%\\x1e\\x01\\x15\\x14\\x06'.\\x01'&6\\a\\x1e\\x01\\a\\x14\\x06'&'&6\\x02=\\x02\\x01\\x013\\x17\\x1e\\r\\xb9\\x9b\\x0e\\x1d\\x173\\x01\\x01\\x04\\x02\\b\\x04\\a\\x04\\x0f\\a\\t\\r\\x04\\x10\\v\\a\\x13\\x12\\x02\\b!\\x01\\t\\x05\\n\\x04\\x11\\x04\\x03\\v\\x03\\x04\\x04\\a\\x12(\\x0f\\x10\\b\\x15\\x06\\x0f\\x01\\x01\\x01\\x01\\x01\\x03\\x03\\x06\\x06\\x04\\r\\x0e\\v!\\x1c\\x1d'%\\r/\\xa1T\\x1a\\x10\\b\\v\\b\\x05\\x03\\x02\\x01\\x01\\x01\\x0f\\a\\x13\\x05\\x05\\x11\\x0f'\\x13\\a\\x04\\x04\\x03\\v\\x03\\x03\\x12\\x04\\n\\x05\\t\\x01\\x15\\x04\\x02\\x02\\x04\\x1e\\f\\v\\x10\\x04\\r\\t\\a\\b\\x05\\x02\\b\\x03\\b\\x02N\\x16\\b\\x01\\a\\b\\x03\\a\\x04\\a\\x04\\n\\x15\\b\\x12\\b\\x03\\x02\\x024\\b\\x04\\f\\x03\\x05\\x06\\x05\\t\\xfeP\\b\\x16\\x03\\b\\x06\\a\\b\\v\\b\\x12\\a\\x14\\n\\x04\\x1b\\x03\\x032\\x04\\x10\\x05\\n\\f\\r\\a\\b\\xbd\\x15#\\x14-?,,T\\x06\\\"\\x04\\x02\\x02\\x04\\x02\\x03\\v\\v5\\x1d\\x1c\\x01\\x02\\x03\\b#\\b\\x03J\\x03\\x01\\a\\x17\\x14\\b\\x02\\x01\\x05\\t$a\\x05\\f\\x0f\\b\\x02\\x01\\x02\\x02\\x118\\x05\\rKQ/K*\\n\\x02\\x04\\t\\n\\x03\\n\\x14\\v\\x06\\x02\\x03\\x03\\x15\\x1d\\x0f\\x02\\b\\a\\n1\\x06\\x01\\x18\\x0e\\x06\\x05\\x02\\x10\\x1d\\x01\\x03\\n\\x0e\\a\\x122\\x02\\x05\\x0e\\x10\\x11\\a\\x0e\\x17\\x06\\x0f\\x0255+7\\x01\\x06\\x01\\b\\x02\\x03\\f\\x03\\x05\\x01\\x01S\\r\\x14\\x18\\x16\\x19\\f\\x14\\x16\\x02\\x02\\x11\\x1298\\x8f\\xb1\\x02\\x0f\\x01\\x01\\x04\\x04\\v\\x04\\x02\\b\\x01\\x04\\x03717\\xa3\\x022\\x12\\n\\x13\\x05\\x19\\x10\\x0e$\\xb2\\x1bB!\\f<4\\xfe\\xd8\\v\\f\\x05\\x02\\f\\x10\\x05\\r\\x14%\\xe5\\x18 \\x05\\n%\\x11\\x190\\x1f\\xf4\\v\\x0e\\x04\\x06\\x06\\x02\\x06\\v\\a\\x0f\\x01\\xb1\\r%\\x14\\r\\t\\x17\\x04\\x04\\f\\v\\a\\x17\\x01\\x0f\\x06\\r\\x05\\x02\\x06\\x1b\\a\\x04\\x17)\\x01\\x02\\x19\\x06\\x06\\x18\\x01\\x01)\\x17\\x06\\x05\\a\\a\\x03\\a\\a\\x11\\b\\x05\\x04\\v\\x01\\x06\\x03\\t\\x14\\b\\x11\\v\\\"\\x0e\\x04\\n\\x02\\x03\\r\\b\\x01\\x03\\x02\\v\\x01\\x01\\x01\\x01\\x11\\x12G\\x0f\\x04\\x06\\b\\x02\\t\\x01\\b\\x01\\x06\\x02\\x05\\x04\\x02\\f\\b\\x01\\x05\\x1c\\x0f\\x13\\x04\\x05\\v\\\"G\\x17%\\x01\\x03\\x01\\b\\x02\\n\\x02\\a\\a\\x05\\x0e\\\"$\\x13\\x11\\x01\\x03\\v\\x02\\x03\\x02\\t\\f\\x02\\x01\\n\\x05\\t\\x11\\v\\v\\x11\\x13\\r\\a\\b\\x02\\x06\\x01\\v\\x04\\x05\\x04\\x06\\a\\b\\x06\\x03\\a\\xf7\\t\\x1b\\n!\\b\\x03\\x02\\x03\\x03\\b\\r\\x04\\x02\\x18'\\x04\\b\\x04\\x04(\\x02\\x1f!\\x01\\x12$\\r\\x1b\\t\\a\\a\\x05\\x01\\x05\\b!&\\b\\x04'\\x18\\x02\\x04\\t(\\x05\\x11\\\"\\x1d\\x01\\x04\\x05\\x01\\x19\\x1c\\x01\\xa3\\x15#\\x14 -- \\x1f-\\xaf\\x01\\x12\\x18\\x11\\x01\\x06#\\x12\\a \\x02\\x04\\x03\\x05\\x1d.\\x06&\\n\\x01\\n$\\x05\\x04\\x016\\x10 \\a\\x04\\t\\x04(\\b\\x01 \\b\\x05O\\x1b\\r4*\\x04\\a\\x01\\x01\\x01!\\x06\\x04\\f\\x03\\r\\a\\x02\\x02\\x05\\x06\\x06\\x01\\x01\\x05\\x10\\x18\\r\\a\\v\\b\\n\\x02\\xae\\x04\\x04\\r\\x16\\x11\\x02\\x06&\\x16\\a\\x0e\\t\\x06\\x01\\x10O\\x1b\\x19\\x1f\\x10\\x176\\x01\\x02\\x02\\a\\x04\\x06\\x03\\x03\\x03\\x17R\\a\\v\\f\\n\\t\\x04\\t\\a\\x01\\x01\\x05\\b\\x10\\\"\\x01\\x01\\x06\\x12\\x1b\\x19\\x15\\x14\\x02\\x05\\x02\\x06\\x06\\x05\\x01\\x01\\x01\\x023\\x19\\x11%\\x16&\\x06\\x03 \\x13\\x11\\x14\\x01\\x15\\x01\\x8a\\x1d\\r\\x13\\x1c\\x0f \\xfe\\x92\\x01\\x17\\t\\x05\\v\\n\\x01\\x04\\n\\t\\f\\x1e\\xb1#\\x19\\x10\\n\\x11\\x11\\x05\\n\\x1c\\x1a\\x15\\x1c\\xf3\\x04\\v\\t\\x01\\x01\\x0e\\x05\\f\\x05\\x02\\aH\\x01\\x1e\\f\\t\\n\\x04\\x02\\x12\\a\\t\\x17+\\x01\\x12\\x06\\x05\\a\\x02\\x05\\f\\x05\\x0e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xd9\\x02\\x84\\x01\\xa7\\x00\\a\\x00\\x0f\\x000\\x00\\x00$\\x14\\x06\\\"&462\\\"2\\x16\\x14\\x06\\\"&4\\x012\\x1e\\x04\\x0e\\x03\\a\\x06\\a>\\x03.\\x01\\a\\x06.\\x06'\\x1e\\x02\\x01\\xa7\\x1a&\\x1b\\x1b&\\xf7&\\x1b\\x1b&\\x1a\\x01Q';(\\x1e\\b\\x06\\x12\\f'\\x18\\x1b3\\x1c\\f3&\\x14\\x17XQ:aB9\\x1f\\x1e\\f\\x13\\x03*e\\x9e\\x1a&\\x1a\\x1a&\\x1b\\x1b&\\x1a\\x1a&\\x01)\\x02\\b\\x06\\x11\\v\\x1a\\x10#\\x15\\x17,\\x19\\x168%'\\x17\\r\\x01\\x01\\b\\f\\x17\\x12\\x1e\\x11 \\x05,)\\x0e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00#\\x003\\x00?\\x00O\\x00W\\x00_\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17#\\x15\\x14;\\x012=\\x014>\\x01\\x1e\\x01\\x1d\\x01\\x14;\\x012=\\x014&#\\\"\\x0e\\x01\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126'\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x17\\x14\\a\\x15\\x14+\\x01\\\"=\\x01&5462\\x16\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\xa0\\xb0}}\\xb0}t\\x01\\t\\x12\\t\\x19%$\\x1a\\t\\x11\\t9(\\x1a-\\x1a\\xef\\v\\a\\xf8\\a\\v\\v\\a\\xf8\\a\\v\\xf8\\x05\\t\\x04\\x04\\t\\x05\\x8d\\x11\\t\\x12\\t\\x12\\x15\\x1e\\x14\\x8aΑ\\x91Α\\x99\\xbe\\x87\\x87\\xbe\\x87\\x01\\x95}\\xb0}}\\xb0\\b\\x1b\\t\\t\\x1b\\x17 \\b\\b \\x17\\x1b\\t\\t\\x1b(9\\x1a-\\xe6\\x8e\\a\\n\\n\\a\\x8e\\a\\v\\v\\x90\\x85\\x04\\x04\\x85\\x055\\x15\\n\\x1f\\t\\t\\x1f\\n\\x15\\x0e\\x15\\x15\\x01\\r\\x91Α\\x91\\xce\\xfe\\xb3\\x87\\xbe\\x87\\x87\\xbe\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\b\\x00\\x10\\x00 \\x00;\\x00N\\x00c\\x00\\x00%531\\x16\\x15\\x14\\a\\\"\\x17\\x16\\x14\\a\\x06#527\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05#\\x14\\x16\\x14\\x0e\\x03#\\\"'\\x15\\x1e\\x0223\\x172>\\x044&7.\\x01\\x0e\\x01\\x15\\x14\\x1e\\x01675\\x0e\\x01&46\\x16\\x1f\\x014.\\x04'>\\x0154.\\x01'+\\x01\\x15326\\x01\\xb0&\\r\\r\\x01\\x05\\x0e\\x0e\\x02((h\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfev9\\x01\\x01\\x04\\b\\x0e\\n\\x1b\\x1e\\b\\x15\\x10\\x0f\\x04\\x04\\x12\\x1b\\x12\\f\\x06\\x02\\x01\\xb2\\x1973!\\\"65\\x17\\x181\\\"\\\"1\\x18\\xb8\\x03\\x04\\a\\t\\n\\x05\\x0e\\x10\\t\\x11\\vu\\x03{\\x12\\x18\\xcc \\x03\\r\\x0e\\x02\\x14\\x03\\x1d\\x02\\x01#\\xb8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x84\\v \\x11\\x17\\v\\v\\x05\\x0f\\x1c\\x03\\x03\\x02\\x01\\x06\\x06\\x10\\f\\x1b\\x11%\\x06\\a\\x02\\t!\\x1a\\x1b!\\b\\x03\\x06\\x1c\\r\\x04\\x172\\x17\\x04\\r=\\x04\\b\\a\\x06\\x04\\x02\\x01\\x02\\x11\\v\\n\\x0e\\a\\x01\\x80\\x12\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\a\\x00\\r\\x00\\x17\\x00'\\x006\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x175\\x0e\\x01\\x14\\x16\\x17>\\x0154.\\x03'72\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x012654&+\\x01\\\"\\x0e\\x01\\x15\\x14\\x163\\xa7\\x92gg\\x92g\\x88 ((p\\x1f(\\a\\f\\x12\\x16\\f\\xf8\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\x1aOywQ[5X4rO\\x01pg\\x91hh\\x91\\xb1\\xd0\\f9F8\\r\\r8#\\x0e\\x1b\\x17\\x14\\x10\\x04x\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe`qMTn0Z8Np\\x00\\x00\\x04\\x00\\x00\\xff\\xc7\\x01\\xf0\\x01\\xb8\\x00\\x14\\x00)\\x008\\x00D\\x00\\x007\\a&#\\\"\\x14327\\x17\\x06#\\\".\\x0254632\\x17\\a&#\\\"\\x14327\\x17\\x06#\\\".\\x0254632'2\\x16\\x15\\x14\\x0e\\x02#\\\"&54>\\x01\\x132654&#\\\"\\x06\\x15\\x14\\x16\\xf6!\\n\\x12!!\\x16\\t\\x1e\\x15,\\n\\x16\\x1a\\x10-\\x1c.\\xa3!\\t\\x13!!\\x16\\t\\x1f\\x16+\\v\\x16\\x19\\x10-\\x1b.yi\\x8f)EZ0f\\x92?sFQzvUVuw\\xe9\\x11\\x14X\\x15\\x0f'\\x06\\x0e\\\"\\x17(%$\\x11\\x14X\\x15\\x0f'\\x06\\x0e!\\x18(%\\xab\\x90h6^?%\\x91gBrD\\xfe=sXUvzQSx\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\f\\x02\\x00\\x01t\\x00\\v\\x00\\x17\\x00\\x007\\x17\\a'7\\x17\\a'\\a\\x177'7\\x17\\a'7\\x177'\\a\\x17\\a'\\xb3gg\\xb3\\xb3-\\x1a\\x13\\x80\\x804M\\xb3\\xb3\\xb3-\\x1a\\x13\\x80\\x804M\\x19g\\xdagf\\xb3\\xb3-\\x19\\x13\\x80\\x804L\\xb3\\xb3\\xb3-\\x19\\x13\\x80\\x804L\\x1ag\\x00\\x03\\x00\\t\\xff\\xc8\\x01\\xf9\\x01\\xb8\\x00\\a\\x00\\x13\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x177'\\a\\x17\\a'7\\x177'\\a\\x177'\\a\\x177'7\\x17\\a'\\a\\x9aΑ\\x91Α\\xc7JM\\x185\\x1bMM\\v\\x19#~\\xe0~~JM\\x185\\x1aNN\\v\\x18\\x01\\xb8\\x91Α\\x91\\xce\\xe6KN\\x195\\x1aMM\\v\\x18$~|~~KN\\x195\\x1aMM\\v\\x18\\x00\\x00\\n\\xff\\xf8\\x00\\x0f\\x02G\\x01k\\x00\\n\\x00\\x15\\x003\\x00;\\x00M\\x00U\\x00]\\x00j\\x00u\\x00}\\x00\\x007\\x14\\x0e\\x01#\\\"&462\\x16%2\\x1e\\x01\\x15\\x14\\x06\\\"&46\\x17\\x06&'\\a'\\x0e\\x01'.\\x017&'3>\\x01323232\\x16\\x173\\x06\\a\\x16\\x06$4&\\\"\\x06\\x14\\x1627>\\x017.\\x01#\\\"#\\\"#\\\"\\x06\\a2\\x1e\\x02\\x04.\\x01\\x0e\\x01\\x1e\\x016$\\x14\\x06\\\"&462\\x1754&#\\\"\\x0e\\x01\\x15\\x14\\x1626%\\x14\\x0e\\x01#\\\"&462\\x16\\x064&\\\"\\x06\\x14\\x162\\xa6\\x06\\v\\a\\t\\x0f\\x0f\\x13\\x0e\\x01\\t\\a\\v\\x06\\x0e\\x14\\x0e\\x0ed/w%\\x1f\\x1e$s/0\\x12#\\t\\x13Z$o+\\x03\\x04\\x04\\x03)m$`\\x13\\n#\\x0f\\xfe\\xccC_DD_`\\x04P7\\x1bN\\x1e\\x02\\x03\\x01\\x02\\x1eP\\x1b\\x1c2%\\x18\\x01\\x0e!VZ(!WY\\xfe\\xd2*;**;\\x11\\x1b\\x14\\f\\x16\\f\\x1b'\\x1b\\x01:\\x14 \\x14\\x1d**;)\\x18\\x1b'\\x1b\\x1b'\\xa7\\x06\\v\\x06\\x0e\\x13\\x0e\\x0e\\x0e\\x06\\v\\a\\t\\x0e\\x0e\\x13\\x0e\\x8b%\\x0f//.-\\x0f\\\"#v0\\x1f\\x1b\\x16  \\x16\\x1a\\x1f/u\\x1f_CC_D~7L\\x02\\v\\x11\\x10\\f\\x16#1+Y(!VZ(!{;**;*H\\x01\\x13\\x1b\\f\\x16\\r\\x13\\x1b\\x1b\\x13\\x13!\\x13*;**1'\\x1b\\x1b'\\x1b\\x00\\x00\\x00\\x00\\x03\\x00\\x01\\xff\\xbb\\x01<\\x01\\xc0\\x00(\\x004\\x00@\\x00\\x00%\\x06\\a\\x1f\\x01\\x16\\x0e\\x01'&'\\a\\x06.\\x017617&'.\\x017>\\x01\\x17\\x1e\\x0226?\\x016\\x16\\x17\\x1e\\x01\\x0e\\x01%4632\\x1e\\x01\\x15\\x14\\x06\\\"&7\\x14\\x162654&#\\\"\\x0e\\x01\\x01\\x13!9\\x15L\\r\\f\\x1f\\x0f\\x149L\\r#\\t\\fL\\x15; \\x1b\\x10\\t\\x06\\x1b\\x15\\x04\\x10140\\n\\v\\x15\\x1b\\a\\x03\\x02\\f\\x0e\\xfe\\xfdL6#<#LlLB&4&&\\x1a\\x11\\x1e\\x11r\\x15\\x06\\x15L\\r#\\t\\v\\x149L\\r\\f\\x1f\\x0fM\\x14\\x06\\x15\\x12\\x17\\x12\\r\\a\\x0e\\x03\\n\\x10\\x0e\\b\\a\\x0e\\a\\r\\v\\f\\x10\\v\\xc36L#;$5LL5\\x1a%%\\x1a\\x1b%\\x11\\x1d\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x00\\x17\\x00\\x1f\\x00D\\x00\\x006462\\x16\\x14\\x06\\\"7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x04\\x14\\x16264&\\\"\\x17.\\x01\\a\\x06#\\\"&/\\x01&\\x06\\a\\x06\\x1e\\x01\\x17\\x16\\x17\\a\\x14\\a\\x06\\x16?\\x01\\x16\\x17\\x166/\\x0267>\\x01\\xb8\\x18 \\x18\\x18 \\xf0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xcf/D//D\\u007f\\x04\\x10\\x0e\\x16%\\x10\\x1e\\a\\x06\\x0e\\x10\\x04\\x06\\x06\\t\\f\\x14%\\r0\\r\\x1c\\r0$\\f\\r\\x1c\\r/\\r#\\x15\\x11\\n\\xfe!\\x18\\x18!\\x17\\x89\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cSD//C0\\xac\\b\\x04\\b\\x12\\t\\x04\\x05\\b\\x04\\b\\a\\x0e\\b\\b\\r\\x04\\f\\x01/\\r\\x1d\\r0$\\f\\r\\x1c\\x0e0\\f\\x04\\r\\v\\x0f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf0\\x01\\xc0\\x01\\x80\\x00\\x0e\\x00+\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#\\\"&=\\x01463\\x1367>\\x0154&#\\\"\\x06\\a\\x06\\a&'.\\x01#\\\"\\x06\\x15\\x14\\x16\\x17\\x16\\x17\\x162\\x01\\x98\\x11\\x17\\x83]]\\x83\\x18\\x11\\xcd\\x18\\\")\\x0f\\x12\\f\\n\\x10\\\"\\x1b\\x13\\x13\\x1c \\x10\\n\\r\\x12\\x0f*\\\"\\x18\\t\\x18\\x01\\x80\\x18\\x11\\x87]\\x83\\x83]\\x87\\x11\\x18\\xfe\\xf4\\x17 '\\x12\\v\\f\\x12\\f!\\x1a\\x12\\x13\\x1b\\x1f\\f\\x12\\f\\v\\x11( \\x17\\t\\x00\\x01\\xff\\xff\\xff\\xf1\\x02\\x80\\x01\\x8f\\x00L\\x00\\x00\\x01\\x15\\x06\\a\\x0e\\x03\\a#'\\x0e\\x01\\a\\x14&1.\\x01'.\\x01\\a<\\x0153\\x15\\x0e\\x01\\x17\\x1e\\x01\\x17>\\x027.\\x01'&#53\\x15\\x0e\\x01\\x17\\x1e\\x01\\x17676.\\x01#<\\x015:\\x023\\x15\\x06\\x0f\\x01\\x1e\\x01\\x17\\x13.\\x01#5\\x02\\x80'\\x11\\x06+&2\\x12\\x0eR\\aJ\\x12\\x0f\\x17a\\x17\\n0\\x12\\xa2\\x12 \\x06\\aj\\r\\a\\x1d!\\x06\\x05;\\b\\v-\\x8e\\x10\\x13\\x06\\t\\x1e\\t\\x1d\\x13\\x05\\x06\\x14\\x11\\x11<)\\x05&\\x14;\\x03@\\x02z\\x05\\x1e\\f\\x01\\x8d\\f\\x01(\\rcZs)\\xc1\\x0e\\x8e%\\x01\\x017\\xda8\\x160\\x01\\x02\\n\\x02\\r\\x01\\x14\\x0e\\x0e\\xf6\\x1c\\r8=\\r\\n\\x87\\x0f\\x13\\x0e\\r\\x01\\r\\f\\x14B\\x137.\\n\\r\\x06\\x02\\n\\x02\\r\\x02\\x1e{\\t\\x8f\\x04\\x01\\x1a\\x0f\\r\\x0e\\x00\\x00\\x11\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x02\\x00\\n\\x00\\x1c\\x00.\\x006\\x00F\\x00R\\x00Z\\x00l\\x00~\\x00\\x8c\\x00\\x94\\x00\\xa6\\x00\\xb2\\x00\\xb6\\x00\\xc8\\x00\\xd0\\x00\\x00%\\a7&2\\x16\\x14\\x06\\\"&4\\x05\\x06\\x15\\x14\\x17\\x163237654'&#\\\"\\a'\\x14\\x15\\x14\\x17\\x1632?\\x01654'&#\\\"\\a&\\\"\\x1d\\x01\\x142=\\x01\\a\\x06\\x15\\x14\\x1f\\x01\\x1632545'&#\\\"\\x0e\\x01\\x14\\x1f\\x01\\x16264/\\x01&\\x06\\x14;\\x0124+\\x01\\x17654'&#\\\"#\\a\\x06\\x15\\x14\\x17\\x1632?\\x01654/\\x01&#\\\"\\a\\x06\\x15\\x14\\x1f\\x01232\\x17454#\\\"\\x0f\\x01\\x06\\x15\\x14327\\x1754\\\"\\x1d\\x01\\x1427654/\\x01&#\\\"\\a\\x06\\x15\\x14\\x15\\x17\\x1632>\\x014/\\x01&\\\"\\x06\\x14\\x1f\\x01\\x16'7\\x0f\\x01%654/\\x01\\\"#\\\"\\a\\x06\\x15\\x14\\x1f\\x01\\x1632724+\\x01\\\"\\x143\\x01\\x13mGTΑ\\x91Α\\x01\\x94\\x05\\x01\\x02\\x05\\x02\\x01\\x0f\\x05\\x01\\x02\\x05\\x02\\x01q\\x05\\x01\\x02\\x05\\x02\\x06\\x01\\x05\\x01\\x02\\x05\\x029\\x10\\x10S\\x05\\x01\\x06\\x02\\x05\\b\\a\\x02\\x05\\x02>\\x05\\x02\\f\\x02\\a\\x04\\x02\\v\\x03B\\b\\x10\\b\\b\\x10 \\x05\\x01\\x02\\x05\\x02\\x01\\x0f\\x05\\x01\\x02\\x05\\x02\\x01\\x13\\x01\\x05\\x0f\\x01\\x02\\x05\\x02\\x01\\x05\\x0f\\x01\\x02\\x05`\\b\\x05\\x02\\x06\\x01\\b\\x05\\x02I\\x10\\x10C\\x05\\x01\\x06\\x02\\x05\\x02\\x01\\x05\\a\\x02\\x05\\x02>\\x05\\x02\\f\\x02\\a\\x04\\x02\\v\\x03dt\\xb0t\\x01G\\x01\\x05\\x0f\\x01\\x02\\x05\\x02\\x01\\x05\\x0f\\x01\\x02\\x05\\t\\b\\b\\x10\\b\\b\\xadGm\\xe5\\x91Α\\x91\\xce\\x1e\\x02\\x05\\x02\\x01\\x05\\a\\x02\\x05\\x02\\x01\\x05\\x01S\\x01\\x02\\x05\\x02\\x01\\x05\\x0f\\x01\\x02\\x05\\x02\\x01\\x05\\x13\\b\\x10\\b\\b\\x10\\a\\x02\\x05\\x02\\x01\\x0f\\x05\\b\\x01\\x02\\x0f\\x05)\\x05\\x06\\x03\\v\\x02\\x04\\a\\x02\\f\\x02\\x85\\x10\\x10Q\\x02\\x05\\x02\\x01\\x05\\a\\x02\\x05\\x02\\x01\\x05\\x01\\x8e\\x01\\x02\\x05\\x02\\x06\\x01\\x05\\x01\\x02\\x05\\x02\\a\\xdc\\x02\\x01\\b\\x05\\x0f\\x01\\x02\\b\\x05\\v\\x10\\b\\b\\x10\\b\\x0f\\x02\\x05\\x02\\x01\\x0f\\x05\\x01\\x02\\x05\\x02\\x01\\x0f\\x05)\\x05\\x06\\x03\\v\\x02\\x04\\a\\x02\\f\\x02o\\xb0t\\xb0G\\x01\\x02\\x05\\x02\\a\\x05\\x01\\x02\\x05\\x02\\x06\\x01H\\x10\\x10\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc4\\x02\\x01\\x01\\xb9\\x00\\r\\x00\\x18\\x00\\\"\\x00,\\x00\\x007'>\\x0132\\x17\\x16\\x17'&\\x0e\\x02\\x174>\\x0132\\x16\\x14\\x06\\\"&%\\x16\\x06\\a\\x06'76&'\\a\\x1e\\x017\\a.\\x01547\\x84M#f7C:@!\\xcd\\x16)#\\x1b\\x19\\x17&\\x17#11F1\\x01;!<P@Jp\\x19\\x03\\x1c\\xce\\x14M*?Zx(\\xe6v,0!%B\\v\\x01\\v\\x15!;\\x17&\\x171F11|S\\xaf.%\\x04\\xad$X!\\x82')\\b}\\x0e\\x8b\\\\J>\\x00\\x00\\x00\\x01\\x00\\x02\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\xac\\x00\\x00%\\x14\\x15\\x14\\x0e\\x01#\\\"&'4&5&7>\\x017\\x06\\a67>\\x01\\x17\\x0e\\x01\\x17\\x16\\x17&67>\\x01\\x17\\\"\\x06\\a\\x06\\x150\\x15\\x14\\x16\\x17\\x166764'&'.\\x01\\a0#\\\"\\a0#\\a\\x06\\a9\\x03>\\x013676;\\x012\\x170230\\x163\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x170\\x16\\x170\\x1f\\x01\\x16\\x142\\x161\\x16\\x15\\x17\\x14\\x170\\x170\\x17\\x142\\x142\\x161\\x14\\x16\\x1f\\x01\\x15\\x16\\x15\\x16\\x14\\x16\\x14\\x17\\x141\\x16\\x17\\x16\\x17\\x14\\x16\\x170\\x150\\x16\\x14\\x1e\\x011\\x15\\x16\\x150\\x161\\x14\\x170\\x15\\x14\\x16\\x141\\x1f\\x01\\x16\\x17\\x15\\x14\\x01\\xf8BsC\\\\\\x8a\\x0f\\x01\\b\\x18\\b\\x1d\\r\\x17\\x03\\x11-%\\\\\\x13*=\\t\\x03\\t\\b\\x02\\v\\f\\x1f\\f\\x04\\f\\x03\\x06\\x0f\\v$`\\x1b\\x12\\x16\\f\\x0f#a0\\x01\\x02\\x03\\x01\\x06\\x1d\\x15\\x01\\x01\\x01\\x1f4\\x16\\x17\\v\\x13\\x13\\x02\\x01\\x04\\x01\\x1d\\x1b\\x05\\x02\\r\\f\\x06\\x06\\n\\b\\r\\v\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x05\\x02\\xcf\\x05\\tCsBuY\\x02\\x06\\x02C9\\x14%\\x06,(9\\\"\\x1b\\a\\x13\\x0eb:\\x15\\x13\\x121\\x11\\x11\\r\\x02\\x13\\x06\\x0e\\x10\\x01\\x0e#\\n!\\x11)\\x1aV$\\x12\\x0e\\\"\\x1c\\t\\x01\\x02\\x06\\r\\x01\\x01\\x1d\\n\\x05\\x04\\x01\\a\\r\\x02\\x02\\x06\\t\\x05\\x04\\b\\t\\r\\x0e\\x03\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x06\\x06\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x03\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x04\\x01\\x14\\x15\\x05\\x01\\x00\\x00\\x02\\x00\\x00\\xff\\xd0\\x01\\xf1\\x01\\xc0\\x00\\x17\\x00%\\x00\\x00\\x01\\\"\\x0e\\x01\\x16\\x17\\x16327\\x06#\\\"#.\\x01546;\\x012\\x17&\\x13\\x06&'>\\x014&'>\\x01\\x17\\x16\\x14\\x01:=`*\\r&=W5.F_\\b\\x04c\\x89\\x91g\\x01^F-0\\x1fG\\x1e*76+\\x1fG\\x1fO\\x01\\x9fJk~0K\\x1e?\\x05\\x8fdg\\x91?\\x1e\\xfes\\x13\\x03\\x15\\x10b~b\\x10\\x15\\x03\\x13J\\xd9\\x00\\x04\\x00\\x00\\xff\\xbe\\x02\\t\\x01\\xca\\x00!\\x00*\\x002\\x00<\\x00\\x00\\x01\\x16\\a!\\x14\\x1e\\x01673\\x0e\\x01#\\\"'\\x0e\\x01.\\x01546767\\x06\\a>\\x01\\x176\\x16\\x15\\x14\\x05\\x0e\\x01\\x1e\\x0267&734.\\x01#\\\"\\x067\\x16\\x17654.\\x01#\\\"\\x01\\xe3&\\v\\xfe\\xb7/?D\\x13y\\x18wJF \\\">5\\x1f\\x1a\\x129O5E\\x13\\x89Qap\\xfeI\\x12\\r\\t\\x17#)\\x17IY\\xcf\\x1e/\\x1a*=\\xb7C-\\x0f\\x0e\\x19\\x0f\\x1b\\x01 DI$3\\x10\\x18 DN\\x0f\\x11\\x11\\x03&# Q gF\\x16OUk\\x05+\\x199'\\xec%9!\\x13\\x02\\f\\r*\\xbe\\x1b,\\x186\\x93\\x1aJ&\\x1e\\x10\\x18\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xdf\\x02\\x00\\x01\\xa0\\x00\\x14\\x002\\x00\\x007\\x1e\\x02\\x17#\\\"&5\\x1146;\\x01\\x06\\a\\x0e\\x02\\x1e\\x01%2\\x16\\x15\\x11\\x14\\x06+\\x016'\\a\\x06\\a\\x06'.\\x01'.\\x0167676\\x177&'-\\v\\n\\x1c\\x14P\\x0e\\x14\\x14\\x0e:\\x15\\x10\\r\\x0e\\x03\\a\\x06\\x01\\xb8\\x0e\\x14\\x14\\x0e4>\\x05\\x89\\x037#\\x17\\x0e\\x15\\x0e\\n\\a\\x03\\x05\\r$6\\x1c\\x89\\x14 \\x8f/*A\\x15\\x14\\x0e\\x01|\\x0e\\x14\\x13\\x19\\x140#>\\x1b\\xec\\x14\\x0e\\xfe\\x84\\x0e\\x14=g\\x1e>\\v\\b\\x13\\f3E/;\\x17\\v\\x1b\\a\\f7\\x1d3!\\x00\\x00\\x00\\x00\\x04\\x00\\x1f\\xff\\xc1\\x01\\xa3\\x01\\xb7\\x00J\\x00_\\x00q\\x00\\x8d\\x00\\x007&676\\x1e\\x01\\x175>\\x0132\\x16\\x15\\x14\\x06'&6\\x172>\\x0154&\\x06\\a\\x0e\\x03\\x1c\\x02\\x15\\x166764'&#\\\"\\a\\x06\\a#\\x06'&=\\x014;\\x012\\x14+\\x01\\x153>\\x01\\x1e\\x01\\x15\\x14\\x0e\\x02.\\x01\\x134>\\x02\\x1e\\x02\\x17\\x16\\x0e\\x01#\\\".\\x02\\x06\\a\\x06&\\x136\\x16\\a\\x0e\\x01.\\x01'&6\\x16\\x15\\x1e\\x036'47'&>\\x0132\\x1776\\x16\\x0f\\x01\\x17\\x16\\x06#\\\"'\\x06\\a\\x06#\\\"'&g\\x05\\x02\\v\\v\\x05\\r\\x0e\\x019((:O2\\b\\t\\b\\x1d$\\x18*8\\x13\\x05\\x06\\x05\\x02'Z &&'77&\\x0f\\x06\\x01\\x06\\x0e\\x0e\\n\\xf2\\b\\b\\xe0\\x01%eU;%9HD<0\\x12\\x1d%,-.\\x13\\x04\\x06\\n\\x02\\x01\\x16%0C#\\x06\\t\\xe3\\x06\\x14\\x051\\x81oT\\t\\x01\\x0f\\x0f\\n5IRR\\x93\\x14\\x12\\x03\\x04\\t\\x02\\x02\\x14\\x12\\x04\\x10\\x04\\x12\\x11\\x05\\v\\x05\\x02\\x14\\x04\\x06\\t\\x03\\x04\\x05\\x05h\\n\\t\\x04\\x03\\x06\\x1e\\x10^%79(1;\\x0f\\x03\\x1c\\x03\\t\\x1e\\x1a\\x1d&\\x01\\x16\\x06\\t\\x0f\\f\\x1b\\x16/\\x13\\x18\\f &m'&&\\x0f\\t\\n\\x03\\x04\\b\\xbb\\n\\x1e\\x85(\\x13\\\"Q5*E'\\r\\x0e1\\x01*\\x05\\b\\a\\x03\\x05\\f\\x19\\x13\\x04\\n\\b\\x11\\x15\\x11\\x02\\r\\x03\\x12\\xfe\\xba\\x06\\x14\\x061\\x1a&_?\\x05\\a\\x03\\x050J%\\b\\x1e\\x8c\\x03\\x14\\x12\\x03\\b\\a\\x14\\x12\\x05\\x10\\x05\\x12\\x11\\x06\\r\\x14\\x04\\x06\\n\\x05\\x05\\x00\\x00\\x04\\x00\\x06\\xff\\xe0\\x01\\xbb\\x01\\xa0\\x00-\\x006\\x00N\\x00d\\x00\\x00\\x01<\\x03.\\x05#*\\x01\\x0e\\x02\\a'4632\\x1e\\x02\\x1d\\x01\\x14\\x16\\x1f\\x01\\a&'\\x0e\\x02.\\x0154>\\x03\\x175\\x06\\x15\\x14\\x17\\x1676\\x17\\x0e\\x02#\\\".\\x01'&62\\x17\\x1e\\x04>\\x0176\\x16\\x14\\x17\\x06\\a\\x06&7>\\x01'&\\a\\x06&>\\x0376\\x17\\x16\\x06\\x01\\x01\\x01\\x02\\x04\\x05\\b\\t\\x06\\x02\\x05\\x0f\\r\\x0f\\x04JI>\\x1f.\\x18\\v\\x10\\b\\b9&\\a\\r.2-\\x1d\\x1a%3%\\x12T\\x1c\\x1d\\x11\\n\\x88\\a$T/0^3\\x10\\x03\\x01\\x05\\x02\\x18\\x167&@9J'\\x03\\x06$\\t\\f\\x04\\x05\\x02\\x06\\v\\x04\\x06*\\r\\x02\\x05\\b\\n\\v\\x05&\\b\\x02\\x04\\x01\\x1d\\x04\\x0f\\a\\r\\x06\\t\\x05\\x06\\x02\\x02\\x06\\t\\x14\\x0e\\a(@\\x12\\x1c\\x19\\v\\x93\\r\\x1a\\a\\a8$\\v\\x15\\x19\\x02\\x10+ \\x1d,\\x18\\x0f\\x05W)\\x037\\x1d\\t\\n\\x1a\\x0f\\x8b\\t\\x1b\\x1f))\\x13\\x04\\x05\\x01\\x0e\\r\\x1a\\n\\v\\a\\x13\\x12\\x01\\x01\\a\\a\\x15\\n\\x04\\x03\\x05\\v&\\x06\\a\\x04\\x01\\x03\\x04\\x04\\x04\\x03\\x01\\x04\\n\\x04\\x1b\\x00\\x00\\x00\\x01\\x00\\x11\\xff\\xe0\\x01\\xb0\\x01\\xa0\\x00\\t\\x00\\x00%#\\x15#\\x113\\x15\\x05\\x11#\\x01\\x14i\\x9am\\x012\\x9cu\\x95\\x01\\xc0hV\\xfe\\xfe\\x00\\x01\\x00\\x00\\xff\\xfc\\x01\\xc4\\x01\\x83\\x00&\\x00\\x00\\x01\\x06\\a\\x06#\\\"'&'.\\x03#\\\"\\a'>\\x0476\\x17\\x16\\x17\\x16?\\x01676&\\x06\\a6\\x17\\x16\\x01\\xc0\\x03Y[?'\\x1b\\x06\\t\\f\\f\\x11\\x0f\\t\\x05\\x1e\\x15\\n(\\x15\\x1e\\x16\\t4\\f\\x18\\x12\\x10\\\"\\x02\\x1c\\x02\\x02\\x15\\x1d\\x0f!]E\\x01&ArwI\\x13#-)0\\x11\\x15\\x1b\\b%\\x12\\x18\\n\\x01\\x05L\\x97\\x10\\x0f5\\x02-\\x17\\x15\\x13\\x03\\x06l\\x03\\x02\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\n\\x00\\x00\\x11!\\x11!%'7#\\x17\\a\\x17\\x01\\xc0\\xfe@\\x01<@@\\xb8@@\\\\\\x01\\xa0\\xfe@{\\xb8VV\\xb8Y\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00,\\x00?\\x00N\\x00\\x00\\x11!\\x11!\\x132\\x1e\\x01\\x1574&#\\\"\\x0e\\x01\\x1d\\x01#\\x1532\\x1d\\x01\\x14\\x0f\\x01\\x1535'&74=\\x0137#4754>\\x01\\x1735'\\\"454=\\x01#\\a\\x17\\x16\\x1d\\x01\\x14\\x0f\\x01?\\x01'#'#\\a#\\a\\x17\\a\\x177\\x177\\x01\\xc0\\xfe@\\xbb\\x06\\a\\x033#\\x1e\\x1a!\\x12\\x1c\\x16\\x06\\a\\x15\\x83,\\x04\\x018\\vD\\x01\\x02\\bSg\\x10\\x03P\\a\\x19\\x06\\a\\x15Q\\x16\\x04\\x1b\\x10\\t\\x10\\x1b\\x04\\x16\\t\\a \\x1f\\a\\x01\\xa0\\xfe@\\x013\\x04\\n\\t\\x06\\x1f\\x16\\x0e\\x1f\\x19\\x15%\\x03o\\a\\x01\\x02\\x1a\\x19\\x04\\x01\\x03\\x02\\x02q%\\x02\\x02\\x18\\n\\n\\a\\xf2\\x19\\x03\\x02\\x01\\x03\\x01\\x98\\x1e\\x06\\x02\\x06l\\x06\\x01\\x03\\xe7\\x18\\n\\x1c\\x1c\\n\\x18!\\b\\x11\\x11\\b\\x00\\x00\\x00\\x04\\x00\\x0e\\xff\\xe0\\x01\\xf2\\x01\\xa2\\x00*\\x009\\x00G\\x00T\\x00\\x00%2\\x16\\x06\\a\\x16\\x15\\x14\\x06#\\\".\\x01547.\\x01632\\x176?\\x016\\x1f\\x01632\\x16\\x14\\x06#\\\"&5'\\a\\x16\\x176\\x05\\x14\\x1632>\\x0254&#\\\"\\x0e\\x01\\x176'&\\a\\x06\\\"'&\\a\\x06\\x17\\x16272>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x01\\xb8\\x1b\\x1e\\t\\x18\\x03{X9a8\\x03\\x19\\t\\x1e\\x1b\\x16\\x109O\\x1f\\x02\\ta\\f\\x17\\x11\\x17\\x17\\x11\\x10\\x17X\\x1cP9\\x10\\xfe\\xdf\\x18\\x10\\b\\x0f\\n\\x06\\x17\\x10\\v\\x12\\v\\xd7\\a\\a\\a\\a\\x15k\\x15\\x06\\a\\a\\a\\x1by\\x1b\\v\\x12\\v\\x18\\x10\\x10\\x17\\x17\\xf4&1\\f\\v\\x0e?Y)E*\\r\\v\\r0'\\x10(\\x03\\x8a\\t\\x02\\x16\\x16\\x17!\\x17\\x17\\x10\\x14}\\x03'\\x0fi\\x10\\x17\\x06\\v\\x0e\\b\\x11\\x17\\v\\x12h\\x06\\a\\a\\a\\x15\\x15\\a\\a\\a\\x06\\x1cR\\n\\x12\\v\\x11\\x17\\x18\\x10\\x10\\x17\\x00\\x00\\x00\\x00\\x02\\x00\\x19\\xff\\xc8\\x01\\xe7\\x01\\xb9\\x00\\x02\\x00'\\x00\\x00701\\x05\\x15!\\x1e\\x0267\\x15\\x0e\\x01\\\"'.\\x015&7\\x06\\a36.\\x02'#\\x0e\\x01\\a>\\x0132\\x16\\x17\\x16\\x1a\\x01\\xcc\\xfe\\xc6\\x01>W\\\\\\x1e\\x19Nb'4D\\x02z\\x1a\\b\\xb0\\x03\\x13\\x1e\\x1f\\v\\fGq$\\fzc@h\\x1e\\x1d\\xdc\\x104-6\\t\\x13\\x16i\\x0f\\x15\\x0f\\x14b6\\x839!.\\x1e+\\x14\\v\\x01\\x02G4]\\u007f;64\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xd8\\x01\\xb8\\x00\\b\\x00\\x16\\x00-\\x00\\x00%2\\x16\\x06+\\x01\\x15#5\\x17\\x0e\\x02#\\\"&4632\\x16\\x17\\a\\x17'\\x06#\\\"&54632\\x177.\\x01#\\\"\\x06\\x14\\x16326\\x01\\xa6\\x0f\\r\\f\\x10\\v\\x1aW\\x15AX2g\\x91\\x91gGp#\\xba\\x9a=+O>WW>H-;\\x1f]7[\\x81\\x81[:b\\xf5\\x1a\\x1b,a\\x96.C&\\x91ΑIAmn\\x1fHW>>W?#/5\\x81\\xb6\\x81;\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xe0\\x01\\xb8\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x00%\\x17\\x15'\\x13\\a'7\\x17\\a'5\\x137\\a#\\x01d%\\x85\\xb4S\\x9a\\x17}\\xfa.*\\xfa}\\xd6\\xce\\x18\\xd6T\\x01A\\x86`&\\x8f:\\x1e\\xd6\\xfe\\xfa:\\xc9\\x00\\x03\\x00\\x12\\xff\\xc0\\x01\\xee\\x01\\xc3\\x00Y\\x00e\\x00q\\x00\\x00%2\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54;\\x012\\x1d\\x01354;\\x012\\x1d\\x01354;\\x012\\x1d\\x0135435&46\\x16\\x14\\a\\x15632\\x1632632\\x1d\\x01\\x14#\\\"&#\\\"\\a\\x152\\x1d\\x01354;\\x012\\x1d\\x01354;\\x012\\x1d\\x013543%54+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xe9\\x05\\xb7\\\"*\\\"\\xb7\\x05\\x1b\\x05$\\x05\\x1b\\x05$\\x05\\x1b\\x05%\\v\\t\\x10\\x10\\n\\r\\v\\x06\\x16\\x05\\x05\\x11\\x02\\x04\\x1b\\x06\\x14\\x06\\v\\x0f\\f%\\x04\\x1c\\x04%\\x05\\x1b\\x05$\\x05\\xfe\\xfb\\x05\\x1b\\x05\\x05\\x1b\\x05\\x93\\x05\\x1b\\x05\\x05\\x1b\\x05\\xa0\\x04\\xdc`\\x1a\\x1d\\x1d\\x1a`\\xdc\\x04\\x04 \\xb2\\x04\\x04  \\x04\\x04  \\x04p\\x04\\x14\\b\\b\\x14\\x04\\x05\\x03\\x04\\x04\\x04<\\b\\x04\\x04&\\x04  \\x04\\x04  \\x04\\x04\\xb2 \\x04\\x05@\\x04\\x04@\\x05\\x05@\\x04\\x04@\\x05\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xfc\\x02\\x82\\x01\\x84\\x00Y\\x00\\x00$\\x14\\x0f\\x01\\x06#\\\"'&=\\x01#\\x1e\\x02;\\x0154;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\\".\\x02+\\x01\\x0e\\x01#\\\"&4632\\x16\\x172\\x16>\\x057>\\x03\\x1723>\\x0132\\x1e\\x02\\x15\\x14\\x0e\\x01#\\\"&'#\\\"\\x0e\\x01\\a!546\\x1f\\x01\\x02\\x82\\x05Y\\x03\\x02\\x02\\x02\\x05\\xee\\b\\x1a\\x16\\r\\x1b\\tY\\t\\tY\\t\\x1b\\x19'\\x14\\x1a\\x0ee\\x06&\\x19\\x1d**\\x1d\\x19&\\x06\\x05\\x11\\x05\\f\\x04\\t\\b\\t\\x06\\x0e\\x15\\x19\\x12\\x14\\a\\x04\\x06\\x1b\\x11\\v\\x14\\x0e\\t\\x0f\\x18\\x0f\\x11\\x1b\\x06\\x1e\\r\\x16\\x1a\\t\\x016\\t\\x05Y\\xc5\\n\\x035\\x01\\x01\\x02\\x05$\\r<\\\"\\x1b\\t\\tY\\t\\t\\x1b,6,\\x17\\x1e*:*\\x1e\\x17\\x01\\x01\\x01\\x05\\b\\x0e\\x13\\r\\x1f\\\"\\x0f\\x03\\x01\\x10\\x14\\t\\x0e\\x14\\v\\x0e\\x19\\x0e\\x14\\x0f!<\\r#\\x05\\x06\\x036\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x19\\x00\\x00$\\x14\\x06+\\x015326\\x14\\x06\\\"&462\\x164&+\\x01\\x153532\\x01F\\x16\\x0fFF\\x0fȑΑ\\x91\\xce\\x113$x2F$\\xf5\\x1f\\x16J\\x1dΑ\\x91Α\\xf7H3\\xf8J\\x00\\x00\\x04\\x00\\x01\\x00\\x04\\x02\\x80\\x01|\\x00\\x13\\x007\\x00F\\x00U\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467>\\x0132\\x16\\a2>\\x0254&'\\x06\\a\\x0e\\x01&7654&#\\\"\\x06\\a\\x16\\x17\\x16\\x0e\\x01'&#\\\"\\x06\\x14\\x163$\\x14\\a\\x06#\\\"&764'&>\\x01\\x17\\x06\\x14\\a\\x06#\\\"&764'&>\\x01\\x17\\x01\\xa8\\x15\\\"\\x148'\\xfe\\xde/B7*\\x11X6A`\\x0e\\v\\x13\\x0e\\t\\x13\\x0f\\x02\\x04\\x04\\x18\\x11\\x05\\x06J4%?\\x0f\\x1e\\x16\\n\\b\\x15\\v\\x15\\x1d\\x1d**\\x1d\\x02\\r%\\a\\v\\f\\f\\a\\x1e\\x1e\\b\\f\\x16\\t\\\"\\x1b\\x06\\v\\r\\f\\a\\x14\\x14\\a\\f\\x15\\t\\xe4\\x04\\x1b'\\x16'8C.+?\\x063?X\\xd0\\b\\x0e\\x13\\v\\x10\\x1b\\x06\\r\\r\\f\\x04\\x10\\r\\x14\\x144J)!\\b\\x16\\t\\x17\\x06\\b\\x15);)x\\x878\\t\\x16\\v-l-\\v\\x15\\x02\\vIa(\\t\\x16\\v\\x1cH\\x1d\\n\\x16\\x01\\n\\x00\\x00\\x02\\x00\\x00\\xff\\xd3\\x01\\x82\\x01\\xad\\x00\\x1b\\x00:\\x00\\x007&54636\\x1e\\x02\\x17\\a'7&\\a\\\"\\x06\\x15\\x1476\\x17\\x16\\x06\\a\\x06&%\\x1e\\x02\\x0e\\x01\\a\\x06#\\x06/\\x017\\x17\\a\\x16327654\\a\\x06'&746\\x176*\\x18^I\\\"<5\\x11\\x143%\\x1b8C)G\\x1d!\\x17\\x13\\x01\\x13\\x16G\\x01(\\n\\r\\x02\\a\\x16\\x104RmR\\x0f=#!@P_\\x1a\\x02\\x1d\\\"\\x16\\x14\\x01*\\x1d&\\xc3\\x1d3IP\\x01\\r\\x1f\\f\\x0fH\\x18'%\\x01*#\\x18\\t\\a\\x15\\x136\\x13\\x17\\x05\\x14\\f$*+)\\x0f,\\x01I\\x0eH\\x1c'0A\\x06\\x06\\x18\\b\\b\\x16\\x12\\x1b\\x1d(\\x02\\x01\\x00\\x04\\x00 \\xff\\xc0\\x01\\xa0\\x01\\xc0\\x00\\x02\\x00\\x05\\x00\\x1a\\x00&\\x00\\x00\\x01\\a'\\x117\\x177\\x14\\x0e\\x04#\\\".\\x024>\\x0232\\x1e\\x02\\a7'\\x15'\\a\\x17\\a\\x177\\x177\\x01%+\\x01\\x01*|\\v\\x18\\x1e,.\\x1e.C9\\x1d\\x1d7D-,B3\\x1a\\x9eO}J\\x1b]]\\x1bJ\\x02\\u007f\\x01\\x15+V\\xfe\\xf9V+Y3O7&\\x15\\t\\x166f\\x95i8\\x18\\x189gKX\\x87\\xb1I\\x1a^\\\\\\x1bI\\xaa\\x80\\x00\\x00\\x00\\x03\\x00\\x19\\xff\\xc0\\x01'\\x01\\xc0\\x00\\v\\x00\\x0e\\x00\\x11\\x00\\x007\\x17\\a'\\a'7'7\\x175\\x17#'\\x1d\\x027\\xc4b\\x94\\x03V\\x1fll\\x1fV\\x92422\\xbcg\\x95\\xc6V ll VΝ2djd2\\x00\\x00\\x00\\x05\\xff\\xfc\\xff\\xd2\\x02\\x04\\x01\\xae\\x00\\x06\\x00\\v\\x00\\x0e\\x00\\x13\\x00\\x19\\x00\\x00\\x13\\x161#762\\x037\\x13'&73\\x03%\\x16\\x0f\\x01\\x13'\\x17#762i9\\x848\\x03\\x0ef\\x1d\\xe2\\xf8\\v\\xa5\\xbc^\\x00\\xff\\x04\\v\\xf8\\xe288\\x849\\x02\\x0e\\x01\\xa7\\xaf\\xaf\\a\\xfe\\xf2X\\xfeڸ\\te\\xfe\\xda\\xce\\r\\t\\xb8\\x01&\\xaf\\xaf\\xaf\\a\\x00\\x00\\x04\\x00\\x14\\xff\\xe0\\x01\\xec\\x01\\xa0\\x00\\x1d\\x00!\\x00)\\x00-\\x00\\x00%\\x1e\\x01\\x0e\\x01#\\\"&'*\\x01#\\x0e\\x01#\\\".\\x0167.\\x01>\\x022\\x1e\\x02\\x06%35#\\x175\\x06&'\\x15\\x1e\\x01'35#\\x01\\xcf\\x14\\x04\\x1a7#\\x1e7\\x0f\\x05\\x14\\x05\\x0f7\\x1e#7\\x1a\\x04\\x14\\x17\\x05!=ZfZ=!\\x05\\xfe\\x95**\\xd9-e)&lm\\xa6\\xa6~\\x188/\\x1f\\x1a\\x18\\x18\\x1a\\x1f/8\\x18&TJ;##;JT-:\\x90\\x17\\x10\\x12 \\x19\\\"\\x12j:\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xdf\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00 \\x00$\\x00(\\x00+\\x00/\\x003\\x006\\x00:\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114+\\x01\\a'\\a'#\\\"\\x15\\x11\\x143!2\\x01\\x15#5\\x17\\x15#5?\\x01#\\x05\\x15#5\\x17\\x15#5?\\x01#\\x13\\x15#5\\x01\\xc0\\x19\\x12\\xfe\\x96\\x12\\x19\\x19\\x12\\x01j\\x12\\x19%\\x06\\to==o\\t\\x06\\x06\\x01j\\x06\\xfe\\xfbIIIT6v\\x01\\x12\\xc4\\xc4\\xc4p@v\\x8ac\\x01u\\xfe\\x96\\x12\\x19\\x19\\x12\\x01j\\x12\\x19\\x19\\xfe\\x84\\x01j\\x06K22K\\x06\\xfe\\x96\\x06\\x01\\x01%%J&&\\x93,u%%J&&\\x93,\\xfe\\xf6%%\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x19\\x001\\x00\\x00\\x112\\x1e\\x04\\x0e\\x01\\x15\\x17#'\\\"\\x0e\\x02.\\x02'.\\x04\\x17&\\x06\\x1f\\x01\\x1e\\x02\\x17\\x16\\x17\\x1656'&'&'.\\x04V\\x85P5\\x15\\a\\x06\\aQ\\x1aF\\x06\\x1b\\x17! %&\\x13\\x1a#\\x18\\x0e\\x1aD\\x17\\x02\\n\\t\\x16$\\x0f\\x12GI&\\x01\\r\\r\\a%6\\x0e\\f\\x1d\\x19(\\x01\\xa0\\x1c,>=E10\\x05RG\\x05\\x03\\x03\\x04\\t\\x14\\x0f\\x15.A9l\\x03\\n\\x04\\b\\a\\x0f,\\x1c!\\x89\\x1f\\x10\\x01\\x01\\t\\b\\x06\\x1bg\\x1a\\x15,\\x19\\x1f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00i\\x00\\x00\\x13\\x14\\a\\x06\\a\\x06#\\\"&54676327\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x064&'&#\\\"\\x0e\\x05\\a'>\\x0154#\\\"\\x0e\\x02\\x14\\x1e\\x023232\\x15\\x061\\x06\\a\\x06/\\x014>\\x0314&#\\\"\\x0e\\x02\\x15\\x14\\x1e\\x013267>\\x044>\\x017632\\x17\\xfd\\x04\\t\\b\\x01\\r\\x10\\x0e\\x13\\x13\\b\\x06\\r\\xc3\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c@\\x16\\x04\\x05\\x04\\x05\\t\\t\\x06\\v\\x04\\r\\x01\\x01\\x01\\x0eD\\x19+\\x1a\\x0e\\f\\x16 \\x15\\x01\\x02\\x04\\x01\\a\\x1d\\x10\\x03\\x01\\x06\\b\\b\\x06\\x1d\\a\\b\\r\\b\\x04\\r\\x18\\x10\\\"3\\t\\x02\\x03\\x01\\x02\\x01\\x01\\x02\\x01!\\x19\\x05 \\x01+\\n\\x10,(\\x05\\x1c\\x12\\x190\\n\\x043\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xd3\\b\\\"\\x01\\x03\\x01\\x03\\x02\\x06\\x01\\b\\x01\\x01\\a?\\x11?\\x18%*) \\x15\\f\\x01\\x01<\\v\\x06\\x0e\\x04\\a\\r\\b\\x06\\x04\\x05\\f\\n\\x10\\x11\\a\\x10\\x19\\x0e8$\\x06\\f\\b\\x06\\x04\\x03\\x01\\x01\\x01\\x11\\x05\\x00\\x00\\x02\\x00 \\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00H\\x00a\\x00\\x00%\\x1e\\x01\\x15\\x14#&#\\\"\\a\\x0e\\b\\a\\x0e\\x01#\\\"&54632\\x16\\x15\\x14\\x0e\\x04\\x15\\x14\\x17\\x167674\\\"#\\\"&54>\\x0132\\x1e\\x01\\x15\\x14\\x06\\a\\x17>\\a32'654.\\x02#\\\"\\a\\x0e\\x01\\x15\\x14\\x1e\\x013:\\x02>\\x0276\\x01\\x97\\x06#\\a2\\t(5\\x02\\x02\\x01\\x01\\x02\\x01\\x02\\x03\\x04\\x02\\x0fR6(.\\x1d\\x17\\f/\\a\\n\\f\\n\\x06\\x13\\x1c\\x16\\x10\\x06\\x02\\tBI%R6$0\\x19\\x16\\x02\\x01\\x03\\x11\\x06\\x0f\\b\\x0e\\n\\x0e\\a\\x06\\xa6\\x05\\x01\\x03\\t\\a\\v\\v\\x1f\\x1f\\b\\x17\\x12\\x01\\x06\\x04\\x05\\x03\\x02\\x01\\r\\xed\\x027\\a\\x05\\b\\x1b\\x01\\x01\\x03\\x02\\x06\\x06\\n\\f\\x11\\n8Y1'\\x196\\x13\\b\\x01\\x04\\a\\v\\f\\x11\\t\\x14\\x02\\x01*\\x1e-\\x04GB-XA\\x14-$\\x1cf\\n\\x01\\x02\\t\\x04\\b\\x03\\x05\\x02\\x02P\\x1a\\x11\\x06\\t\\t\\x04\\x06\\x11M(\\x12\\x1e\\x19\\x01\\x01\\x03\\x03?\\x00\\x00\\x03\\xff\\xfe\\xff\\xbf\\x01\\xbd\\x01\\xc0\\x00\\x05\\x001\\x00F\\x00\\x00\\x01\\x15&'\\x1e\\x01\\x1767\\x1e\\x01\\x06\\a\\x06\\\"'.\\x01>\\x0132\\x17\\x06\\a&#\\\"\\x06\\x15\\x14\\x1e\\x01\\x17>\\x0354'\\x16\\x15\\x14\\x0f\\x01\\x16654\\x13\\x1e\\x01\\x06#\\\"'6767\\x0e\\x01\\a&547>\\x02\\x01\\x14\\x19.\\x1f%$\\x16\\x14\\r\\x03\\x19\\x1b3\\x9e3(\\x10&Y;!\\x1d\\v\\x02\\x17\\x1a:N\\x1c3!#1\\x17\\t\\x01\\x13m\\x04;Ob\\x19\\x02/&\\x1c\\x1bK\\x19\\x06\\x01\\x0fB%\\f\\x14\\r0*\\x01*\\x01JM\\x14X\\xa4\\x04\\r\\x1fCJ\\x1d88*p^B\\v\\x15\\x16\\tT:\\\";'\\x06\\x0eAUM'\\x18\\f79\\x89D\\x01\\x01R;\\x1e\\x01\\x1f$cI\\x1a)+\\r\\a!2\\b\\x13\\x14\\x1e\\x14\\f\\x0e\\x19\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00@\\x00U\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13>\\x01'\\x06\\a\\x16\\x15\\x14\\x06'3654'5.\\x02'\\x16\\x17\\x14\\x15\\x14\\x0e\\x02\\a.\\x0154632\\x1767&#\\\"\\x0e\\x01\\x16\\x17\\x162726&'\\x0e\\x02\\a\\x06\\x15\\x14\\x17>\\x017\\x14\\a\\x06\\a\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xe9\\x19\\n\\f\\r\\x0e\\a1%\\x02D\\v\\x02\\n\\x14\\r\\x1d\\x10\\x06\\x0e\\x1f\\x16\\x1e'1$\\x10\\x0e\\x02\\a\\x13\\x14%8\\x18\\v\\x18 c<\\x18\\x1d\\x01\\x10\\b\\x1a\\x1e\\b\\r\\b\\x17)\\t\\x04\\x10.\\x10\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xa3\\x1bH\\x1a\\a\\x03\\x10\\x14%3\\x01+U$\\\"\\x01\\x11#!\\t1.\\a\\x0f\\x19/6(\\t\\x060 $5\\x06\\x0e\\r\\a);F\\x1a#\\xb6.>\\x17\\x13\\x0f\\t\\a\\r\\x13\\r\\v\\x05\\x1f\\x14\\x04\\b\\x1b\\x1a\\x10\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00h\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056'.\\x04'#&76763654'&\\a\\x06\\a\\\"'6'.\\x02#0\\\"1\\\"\\x0e\\x02\\a\\x06\\x17\\x06#\\\"'&\\x0e\\x01\\x15\\x06\\x17\\x1e\\x03\\x17\\x16\\a\\x0e\\x04\\a\\x06\\x15\\x16\\x17\\x1e\\x03\\x17\\x1632632\\x17\\x167\\x167632\\x16327>\\x0276\\x91Α\\x91Α\\x01\\xa2\\x03\\b\\r\\x18\\x0e\\r\\x03\\x01\\x01\\x03\\x02\\x02\\x11\\x04\\x01\\x11\\n\\b\\x06\\b\\a\\x03\\x02\\x03\\a\\b\\x1b \\x12\\x06\\b\\x11\\x1b\\x19\\a\\b\\x04\\x03\\x04\\a\\t\\x04\\t\\b\\x03\\x14\\x01\\t\\x06\\x06\\x02\\x02\\x04\\x01\\x04\\f\\x0f\\x17\\r\\x06\\x01,\\x01\\x01\\x01\\x01\\x01\\x01\\a\\x02\\x11\\a\\x12\\x13\\x1c\\x15\\x16\\x1b\\x13\\x12\\b\\x10\\x02\\a\\x01\\x01\\x02\\x01\\x01'\\x01\\xb8\\x91Α\\x91\\xce\\xc2\\t\\x02\\x02\\x0e\\r\\x12\\a\\x03\\b\\x05\\x06\\x05\\x02\\a\\n\\b\\x04\\x02\\x02\\x04\\x01\\x02<\\x11\\x12\\x18\\f\\x03\\n\\x18\\x11\\x11<\\x02\\x04\\x02\\x02\\x06\\x04\\v\\a\\x01\\x03\\x02\\x05\\x02\\x05\\b\\x03\\a\\x12\\x0e\\r\\x02\\x01\\a\\x0e\\a\\x01\\x03\\x05\\x05\\x02\\x06\\x03\\x0e\\x13\\x01\\x01\\x13\\x0e\\x03\\x06\\x02\\b\\x05\\x01\\x06\\x00\\x01\\xff\\xff\\xff\\xcd\\x02\\x02\\x01\\xb1\\x00l\\x00\\x00%\\x06\\a\\x14\\x0e\\x01\\a\\x06#\\\"&#\\\"\\x06\\a\\x06'\\x06'.\\x01#\\\"\\x06#\\\"'.\\x025.\\x02'0547>\\x067056'.\\x03'&7>\\x01\\x17\\x16327&47>\\x0330232\\x1e\\x01\\x17\\x16\\x14\\a\\x163276\\x17\\x16\\x15\\x14\\a\\x06\\a\\x06\\a\\x06\\x17\\x141\\x1e\\x04\\x17\\x1e\\x01\\x01\\xff\\b<\\x02\\x03\\x01\\x03\\t\\x04\\x18\\v\\x13\\x14\\x12(\\\"\\x1e*\\x12\\x14\\x13\\n\\x1a\\x03\\t\\x03\\x01\\x03\\x02\\x10\\x18\\x1c\\x01\\t\\x0e\\x1b\\x13\\x12\\v\\t\\x03\\x01\\x06\\x03\\x02\\n\\t\\x0e\\x01\\x1d\\x03\\x02\\x17\\b\\x0e\\n\\x06\\x04\\x03\\b\\f%(\\x1a\\f\\t\\x01\\x1b/)\\f\\b\\x03\\x04\\x05\\n\\f\\n\\v\\x0f\\x1a\\x02\\x05\\x19\\x04\\x03\\x06\\x01\\x06\\x13\\x15$\\x13\\x05\\x057\\x12\\t\\x01\\b\\v\\x04\\t\\x05\\t\\f\\x1d\\x02\\x03\\x1e\\f\\t\\x05\\t\\x03\\f\\b\\x01\\x02\\x06\\x0f\\t\\x01\\t\\x01\\x03\\v\\x0f\\x12\\x0f\\x10\\x06\\x02\\x01\\v\\a\\x05\\a\\x03\\x04\\x01\\f\\x10\\t\\n\\x04\\x06\\x02\\x18I\\x13\\x1a$\\x0f\\x05\\x12%\\x1b\\x13I\\x18\\x02\\x06\\x05\\x05\\x05\\r\\x0e\\v\\x01\\x01\\b\\n\\a\\v\\x01\\x04\\v\\x1a\\x15\\x15\\x03\\x01\\t\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00n\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x016'.\\x065#&76763654'&\\a\\x06\\a\\\"'6'.\\x01#0\\\"1\\\"\\x0e\\x02\\a\\x06\\x17\\x06#\\\"'&\\x06\\a\\x06\\x170\\x1e\\x01\\x17\\x16\\a\\x0e\\x04\\a\\x06\\x15\\x16\\x17\\x1e\\x02\\x17\\x1632632\\x17\\x167\\x167632\\x16327>\\x0276\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01Z\\x03\\b\\n\\x12\\f\\f\\a\\a\\x02\\x01\\x03\\x02\\x02\\x11\\x04\\x01\\x11\\n\\b\\x06\\b\\a\\x03\\x02\\x03\\a\\f.\\x1b\\x06\\b\\x11\\x1b\\x19\\a\\b\\x04\\x03\\x04\\a\\t\\x05\\x0f\\x01\\x03\\x14\\x0e\\b\\x02\\x02\\x04\\x01\\x04\\f\\x0f\\x17\\r\\x06\\x01,\\x01\\x01\\x02\\x01\\x01\\a\\x02\\x11\\a\\x12\\x13\\x1c\\x15\\x16\\x1b\\x13\\x12\\b\\x10\\x02\\a\\x01\\x01\\x02\\x01\\x01'\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xc5\\t\\x02\\x01\\b\\n\\f\\n\\v\\x03\\x02\\b\\x05\\x06\\x05\\x02\\a\\n\\b\\x04\\x02\\x02\\x04\\x01\\x02<\\x11\\x1a\\x1c\\x03\\n\\x18\\x11\\x11<\\x02\\x04\\x03\\a\\x06\\v\\a\\x05\\x05\\x03\\x05\\b\\x03\\a\\x12\\x0e\\r\\x02\\x01\\a\\x0e\\a\\x01\\x05\\b\\x02\\x06\\x03\\x0e\\x13\\x01\\x01\\x13\\x0e\\x03\\x06\\x02\\b\\x05\\x01\\x06\\x00\\x02\\x00 \\xff\\xe0\\x01\\xd5\\x01\\xab\\x00&\\x000\\x00\\x00\\x016\\x16\\a\\x06\\a\\x0e\\x04\\a\\x1e\\x0132654&'67\\x1e\\x02\\x15\\x14\\x06\\\"&4632\\x1e\\x01\\x176\\x0167&#\\\"\\x06\\x15\\x14\\x16\\x01\\xc8\\a\\x06\\x06o\\x0f\\n\\x1c$&3\\x16\\x114\\x13Ih\\x1a\\x13\\a\\n\\x10\\x1b\\x10z\\xaczzV\\x0f%%\\fB\\xfe\\xe6\\\\d%(Ih$\\x01\\xa9\\x02\\x0e\\x04JV6?\\x1d\\x11#\\x1d\\t\\x0ehI\\x1cE\\x14\\x0f\\r\\x1127\\x17Vzz\\xacz\\a\\f\\b7\\xfe\\x8e\\xc7^\\x12hI\\\"O\\x00\\x00\\x00\\x00\\x06\\x00\\x04\\xff\\xc0\\x01\\xbc\\x01\\xc0\\x00\\x00\\x00G\\x00M\\x00S\\x00Y\\x00c\\x00\\x00?\\x012\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x15\\x14\\a'\\x17\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\\"'7\\a&'7\\a&'7\\a&'7\\a&547\\x17'67\\x17'67\\x17'67\\x17'6\\x17\\x11\\a'\\x117\\x17'\\a\\x15\\x177\\x03\\x17\\x15\\a'5$\\\"\\x06\\x15\\x14\\x162654\\r\\xd3\\f\\n\\x04\\x16\\x15\\x13\\x1d-\\x11\\r2=\\n\\x06@D\\x01\\x01C@\\x06\\v=2\\f\\x12-\\x1d\\x11\\x17\\x16\\x04\\v\\x16\\v\\x04\\x16\\x15\\x13\\x1e-\\x11\\x0e3=\\f\\x05@D\\x01\\x01D@\\x05\\f=3\\r\\x12-\\x1e\\x13\\x15\\x16\\x03\\n\\xe6\\xdb\\xdb\\xdb\\xca\\xca\\xca\\xca\\xcaʼ\\xbc\\xbc\\x01\\x01\\x8abb\\x8abۄ\\x01D@\\x05\\f=3\\r\\x12-\\x1e\\x12\\x17\\x16\\x04\\t\\r\\r\\t\\x04\\x16\\x15\\x13\\x1d-\\x11\\x0e3=\\v\\x06AE\\x01\\x01D@\\x05\\f=3\\f\\x13-\\x1e\\x14\\x15\\x16\\x04\\r\\t\\v\\v\\x04\\x17\\x14\\x14\\x1e-\\x11\\x0e3>\\v\\x05@D\\x01\\x1f\\xff\\x00\\x80\\x80\\x01\\x00\\x80\\x8auu\\xebvv\\x01Pm\\xdbnn\\xda;bFEccEF\\x00\\x00\\x03\\x00\\x00\\xff\\xd4\\x01\\xc0\\x01\\xac\\x00\\x13\\x00.\\x009\\x00\\x00\\x133\\a#\\\"\\x06\\x1d\\x01\\x14\\x163\\x15#\\\"&=\\x014>\\x0173\\x0e\\t\\a\\x06\\a5>\\x01574&'&'3\\x177\\x11#673\\x114'7\\x16[\\xba\\a\\xb3\\x1d++)\\f%6\\x18*\\xfeC\\x13(\\x18\\x1a\\x0f\\x10\\n\\n\\t\\t\\a\\x1e0!\\x1f\\x01\\n\\x1c\\x1a\\x13>2\\xe6\\xd6\\n\\x02\\xb71\\a=\\x01t\\x13)\\x1d\\xce\\x1d)\\x135%\\xcd\\x18)\\x1882i@E&(\\x15\\x15\\r\\f\\x06\\x1f\\x023\\x05.\\x18\\x01\\v\\x1bGA1\\x9d\\x89\\xfe\\xd6\\x0e\\x05\\x01\\x17.\\x11\\x12\\x14\\x00\\n\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\n\\x00X\\x00c\\x00u\\x00\\x84\\x00\\x92\\x00\\x9e\\x00\\xaa\\x00\\xc9\\x00\\xd8\\x00\\x00\\x12462\\x16\\x15\\x14\\x0e\\x01#\\\"\\x05\\x14\\x06\\a\\x0e\\x01\\a#\\x15\\x14\\x0e\\x01#\\\"'\\x06\\\"'\\x06\\\"'\\x06#\\\".\\x015\\x06#\\\"'67&'\\x167&'&54>\\x0232\\x1767>\\x01761>\\x0132\\x17632\\x17\\x16\\x14\\a\\x16\\x15\\x14\\a\\x16\\x17632\\x17\\x16$\\x14\\x162654.\\x01#\\\"\\x1747\\x0e\\x01\\x1e\\x01327654#\\\"\\a\\x06&\\a4&\\\"\\x06\\x1d\\x01\\x14\\x1e\\x02326574.\\x01#\\\"\\x06\\x1d\\x01\\x14\\x1626574&\\\"\\x06\\x1d\\x01\\x14\\x1626574&\\\"\\x06\\x1d\\x01\\x14\\x162657\\x0e\\x02#\\\"&547\\x06\\x15\\x14\\x16\\x17632\\x1762\\x1762\\x17632\\x17>\\x0174&#\\\"\\a\\x0632>\\x01\\x1e\\x01\\a6\\xd0\\n\\x10\\t\\x04\\b\\x05\\b\\x01&\\x13\\x11\\x11N\\x1a\\x01\\b\\r\\b\\x10\\t\\t \\t\\b \\t\\t\\x10\\t\\r\\a\\x1a\\x1f\\\"\\x1a\\x0f\\x0f \\x14$\\x1f6\\x0e\\a\\t\\x12$\\x17\\x11\\x06\\x06\\x06\\x01\\x06\\x01\\x15\\x19G'\\n\\b\\x11\\x19\\x17\\x11\\x01\\r\\x10\\x05-\\f\\a\\n\\r\\x0f\\x1a\\xfe\\xbc\\x12\\x1c\\x13\\b\\x0f\\n\\x0e \\b\\x13\\a\\x14-\\x1e \\x1c\\x04\\x15\\x05\\b47)\\f\\x11\\f\\x03\\x06\\a\\x04\\t\\f1\\x05\\n\\x05\\t\\f\\f\\x11\\f1\\v\\x11\\f\\f\\x11\\v2\\f\\x11\\v\\v\\x11\\fM\\x10/?!FZ\\x06\\x1e%\\\"\\t\\x11\\x10\\t\\t \\b\\t \\t\\t\\x10\\x11\\b &\\f3)-\\\")R\\x06\\x1e\\x15\\x17\\b\\x03-\\x01_\\x11\\r\\r\\b\\x06\\t\\a\\x8a O\\x13\\x12-\\b \\t\\x0e\\b\\x0e\\x0e\\x0e\\x0e\\x0e\\x0e\\t\\x0f\\t\\x14\\x17\\x01\\x05\\t\\x1b\\b\\x137!\\x10\\x1e\\x1525$\\x0f\\b\\a\\x01\\x06\\x01\\\" &\\x01\\x12\\x10\\x02\\x04\\x0e\\x05\\a\\x02\\x05(D\\b\\x0e\\x16t\\x1d\\x17\\x17\\x0f\\t\\x10\\v\\x8d\\x19!\\x1dB6#\\x14\\x0e\\b\\x16\\x02\\n\\x1a\\xcf\\t\\f\\f\\t \\x05\\a\\x06\\x04\\r\\t \\x06\\t\\x06\\f\\t \\t\\r\\r\\t \\t\\f\\f\\t \\t\\r\\r\\t \\t\\f\\f\\t \\t\\r\\r\\t\\xc3\\x1e.\\x1biH\\x19\\x192>.V\\x1d\\x11\\x0f\\x0f\\x0f\\x0f\\x0f\\x0f\\x10\\x1bN\\x8f*?$\\x89\\x05\\x02\\x05\\x14\\x13)\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00%\\x001\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x172>\\x0154'#\\x153\\x0e\\x01#\\\".\\x0254632\\x177&#\\\"\\x06\\x14\\x16%35#5#\\x15#\\x153\\x153\\x91Α\\x91Α\\xb1#7\\x1d\\x02uF\\x03)\\x1a\\x10\\x1c\\x15\\f- \\x1e\\x14!\\\"13II\\x01\\x1a##$$$$\\x01\\xb8\\x91Α\\x91\\xce\\xe3\\x1f7#\\v\\n+\\x18\\x1d\\r\\x15\\x1c\\x10 .\\x13! IfIj$##$#\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00=\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0154#\\\"\\x06#\\\"'&#\\\"\\a\\x06\\a5654&\\\"\\x06\\x15\\x14\\x17\\x15\\x14\\x1632756=\\x01627632\\x163276\\x01\\x8e\\x14\\x1e\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01.\\b\\x01(\\r\\b\\x05%\\x18\\x1c\\\"\\x02\\x03\\r\\x14\\x1c\\x13\\r\\f\\b\\x0f\\x04\\x01\\x01\\x02\\x01&\\x1d\\x11*\\r\\x16 \\a\\x01\\xa0\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01\\\\\\x14\\x1e\\xfe\\xe4\\x8c\\b\\x10\\x02\\x0e\\x0e\\x02\\x01\\x13\\t\\x11\\x0e\\x13\\x13\\x0e\\x10\\n\\xdb\\b\\f\\x0e\\x01\\x01\\x04-\\x01\\x01\\x11\\x11\\x0e\\x03\\x00\\v\\x00\\n\\xff\\xc0\\x01\\xb6\\x01\\xc0\\x00B\\x00F\\x00J\\x00N\\x00R\\x00V\\x00Z\\x00c\\x00g\\x00o\\x00s\\x00\\x00%\\x16\\a\\x14#\\a\\x06/\\x01\\a\\x14#\\a\\x06/\\x01\\x17\\x14#\\a\\x06#&1'&'&?\\x01&5'&?\\x01&/\\x01&?\\x0123\\x17\\x16\\x15\\x17\\x14\\x0f\\x01\\x172\\x15\\x1776\\x1f\\x0174?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x177\\x03\\a\\x177'\\x17/\\x01\\x13\\x17/\\x01\\x1f\\x01/\\x01\\x177'\\a7\\x175'\\x14\\x0f\\x01\\x17\\x16?\\x01\\a\\x17?\\x01'\\a\\x17\\x16\\x0f\\x01?\\x01\\x0f\\x01\\x01\\xb5\\x01\\n\\x017\\x02\\x02\\x14\\x02\\x01C\\x02\\x02\\x1c\\x02\\x01T\\x01\\x01\\x02A\\x02\\x0f\\x01\\x02\\x12\\x1b\\x15\\x01\\x03\\x1b&\\x01\\x1b\\x01\\x03{\\x02\\x01Z\\x02\\x06\\x02\\\"$\\x02\\x01#\\x01\\x02\\x18\\x01\\x01;\\x02\\x01F\\x01\\xcce\\x0e[\\fy\\x14j\\xbaI\\x13P9@\\rF+:\\n>NO\\x04U\\\\\\x1b\\x1e\\x01\\x16\\x18\\x02_\\x04B\\x01X\\x06@\\x01)\\x02\\x01\\x02J\\b3\\x05\\xde\\x01H\\x02,\\x01\\x01\\x0e!\\x026\\x02\\x02\\x18.\\x02C\\x01\\x01E\\x01N\\x02\\x01\\v\\x19\\x01d\\x02\\x02\\r\\x1d\\x02\\x85\\x02\\x01',\\x01\\x02\\x84\\x02\\x01\\x11\\x19\\x02#\\x15\\x01\\x01\\x10 \\x01\\x01$\\x01\\x01&\\x02\\x059a=\\x01\\x11/\\x867\\x049\\x851\\xfe\\xef=^:\\xd1=D<\\x83>F=,\\x17D\\x17\\a\\x01\\x0f\\x14\\x01\\x01C/DJC(\\x1e\\x1b\\x01\\x02\\\"\\x1b?$A\\x00\\x00\\x00\\x02\\x00\\a\\xff\\xe0\\x01\\xba\\x01\\xa0\\x00\\x1a\\x004\\x00\\x00%\\x16\\x0e\\x02#\\\"'\\x06.\\x0154632\\x16\\x15\\x14\\a\\x1632>\\x025'654&#\\\"\\x06\\x15\\x14\\x16327.\\x03#\\\"\\a'632\\x16\\x01\\xb8\\x01\\x05\\x10(\\x1c;%:tKxNOwJ\\x17\\x1a\\b\\r\\a\\x05r\\x11588338\\x13\\x0e\\a\\f\\x11\\x15\\r\\v\\b\\r\\x1b+!)=\\t\\x1b\\\"\\x17>\\x10(dAUpoV_:$\\x06\\n\\n\\x05:%?PNNPON\\x05\\r\\x12\\x14\\n\\x04\\x18\\x17\\x1b\\x00\\x00\\x00\\x00\\x05\\x00\\x02\\x00\\x00\\x02>\\x01\\x80\\x00\\x18\\x00\\x1a\\x00\\x1c\\x00W\\x00p\\x00\\x00\\x13\\x06\\x15\\x16\\x17\\x16\\x15\\x14\\a\\x06#\\\"'&'467632\\x17\\x16\\x15\\x14\\x13\\x17357\\x16>\\x017\\x1e\\x01\\x0e\\x02\\a>\\x01'0\\x0e\\x01.\\x037>\\x01.\\x01/\\x01\\x0e\\x02\\a\\x0e\\x01\\x14\\x1e\\x01\\x17.\\x0367>\\x05/\\x01\\x1e\\x03\\x0e\\x027\\x1e\\x01\\x15\\x06\\a\\x06#\\\"'&547674'&547632aA\\x01C\\r\\x04\\x03\\x05\\x0f\\x1d4\\x02\\x1e \\x17\\r\\x05\\x03\\x04~\\x01]\\x03\\b\\v\\n\\x01\\x18\\v\\x0e\\x1f\\x10\\a\\n\\x1a\\x0e\\b\\v\\x0e\\f\\t\\x03\\x02\\x02\\x01\\x03\\x04\\x02\\x01\\b\\x11\\x10\\x03\\x10\\x0e\\t\\b\\x04\\a\\x11\\x1c\\r\\n\\x15\\x10\\x18\\r\\b\\x02\\x01\\x01\\x01\\x18!\\f\\x06\\x05\\x03\\x03\\xb3 \\x1e\\x024\\x1d\\x0f\\x05\\x03\\x04\\rC\\x01A\\x10\\x04\\x03\\x05\\r\\x01`?[e@\\f\\t\\x03\\x05\\x04$Aa1J%\\x1a\\x03\\x04\\x03\\x06\\xfe\\xac\\x01\\x01\\x9e\\x02\\f\\x12\\x02\\x1f>('\\f\\x04\\a4\\x11\\x01\\x01\\x01\\x06\\f\\x15\\x10\\r\\x19\\x10\\f\\x02\\x03\\x11\\x1a\\x18\\x05\\x1b,\\x1b\\x15\\b\\x02\\x04\\r#%9\\x1d\\x17*\\x1f\\x1b\\x12\\r\\x03\\x03\\x13)  \\x17\\x14\\b\\xaa%J1b@$\\x04\\x05\\x03\\t\\f@e[?\\x10\\x06\\x03\\x04\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056&\\x0f\\x01\\x0e\\x01\\x1f\\x0176\\x17\\x16\\x0f\\x022?\\x01\\x17\\x167\\x91Α\\x91Α\\x01r\\x02\\v\\b\\xef\\r\\x01\\v=\\x8e\\x06\\x03\\x01\\x02s\\x05\\a\\x06\\x1e>\\x12\\x04\\x01\\xb8\\x91Α\\x91\\xce\\x19\\f\\v\\x03]\\x04\\f\\x03\\x13Y\\x04\\x03\\x01\\x02h?\\x06\\x1d.\\n\\x14\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\v\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x057#\\a\\x91Α\\x91Α\\x01(U\\xb5U\\x01\\xb8\\x91Α\\x91ε\\x9c\\x9c\\x00\\x00\\x00\\x00\\a\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\v\\x00\\x13\\x00\\x1b\\x00.\\x006\\x00>\\x00\\xb2\\x00\\x00%\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x17'\\x06'&76\\x17\\x16\\a6\\x17\\x16\\a\\x06'&7.\\x0176\\x172\\x1e\\x06\\x0e\\x01\\a\\x0e\\x017&\\x0e\\x01\\x17\\x1676\\x16\\x14\\x06\\\"&462\\x136&'.\\x01\\a>\\x01;\\x014'>\\x014&5'676&'&\\x0e\\x01\\a\\x0e\\x01\\x1e\\x01\\x17.\\x01'&7&'\\\"\\a>\\x01374'&\\\"\\a41\\x06\\x16\\x17\\x06\\a\\x0e\\x03\\x0f\\x01\\x0e\\x01\\x17\\x14\\x17\\x06\\a\\x06\\x167670.\\x01#63\\x166=\\x014'\\x16\\a\\x14\\x0e\\x02\\a#\\x0e\\x05\\x16\\x17&'\\x06\\x17\\x166767\\x16\\x17\\x16\\x01-\\b\\b\\n\\b\\b\\v\\a\\a\\n\\b\\t\\x14\\x05\\x06\\x05\\x05\\x06\\x05\\x05\\x1f\\x05\\x05\\x06\\x06\\x05\\x05\\x06N\\x10\\n\\x0f\\x1a!\\x01\\x06\\x02\\x05\\x02\\x04\\x01\\x01\\x01\\x02\\x02\\t)!\\x04\\v\\x04\\x04\\x06\\n\\b\\x82\\x91Α\\x91\\xceO\\x01\\x19\\x01\\v\\x19\\x13\\x05\\f\\x03\\x04\\n\\x01\\x01\\x01\\x01\\x1a\\x04\\x02\\x1d\\x17\\v\\x15\\x11\\x05\\t\\x02\\n\\x0e\\t\\r\\x17\\x04\\b\\x11\\x05\\x03\\x0e\\v\\x05\\r\\x04\\x03\\x03\\x04\\x16\\x06\\x04\\t\\f\\a\\x06\\x06\\x10\\x0e\\r\\x03\\x04\\x192\\x05\\x02\\x03\\x05\\n\\f\\x10\\x17\\r\\x03\\b\\x05'\\a\\x04\\x04\\v\\x1d\\x01\\x04\\x04\\x04\\x02\\x01\\x01\\b\\a\\b\\x06\\x04\\x01\\x02\\t\\x01/\\x17\\x13]\\x0e.\\x12\\x12('\\xec\\b\\b\\n\\t\\t\\n\\t\\b\\n\\b\\b\\t\\x05\\x05\\x05\\x05\\x06\\x06\\x05\\v\\x06\\x06\\x05\\x05\\x05\\x05\\x05\\x13\\f$\\x14\\x1e\\x1f\\x06\\x02\\x06\\x02\\a\\x03\\a\\x05\\a\\x03\\x12\\f7\\x05\\x05\\v\\x05\\b\\x06\\a\\x02Α\\x91Α\\xfe\\xdd\\n\\x0e\\x02\\x14\\x0f\\x04\\x03\\x03\\f\\f\\x04\\a\\x05\\x05\\x01\\x01\\x0e\\x1d\\x17%\\x03\\x01\\x05\\r\\t\\x0e\\x1c\\x14\\x0f\\x04\\x01\\x12\\x0f\\x1e \\x05\\x03\\x05\\a\\a\\x01\\r\\b\\t\\f\\x01\\a;\\x15\\x04\\x06\\x03\\x0f\\x10\\x10\\x05\\x06\\t3\\x13\\x05\\x03\\x03\\x05\\v\\x15\\a\\v\\x14\\x02\\x02\\t\\x01\\x11\\t\\n\\x1c\\r\\x1c!\\x05\\b\\x05\\x03\\x01\\x02\\x0e\\f\\x11\\x11\\x12\\x12\\b\\x0e\\b5\\f\\nn*\\x1c%#\\x19\\x17\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00X\\x00\\x00%\\x06\\a&\\a5>\\b56'4.\\b'5\\x047\\a#.\\b+\\x01\\\"\\x06\\x1d\\x0172>\\b73\\x06\\x14\\x17#.\\x06'&#\\x15\\x14;\\x012>\\x067\\x01\\x80\\n\\x06\\xab\\xc5\\x05\\x11\\b\\f\\x05\\a\\x03\\x03\\x01\\x05\\x05\\x01\\x02\\x03\\x03\\a\\x05\\v\\b\\x10\\x05\\x01\\x03h\\b\\x17\\x01\\x05\\x03\\x05\\x04\\x06\\x06\\t\\n\\x06\\x89\\a\\x03X\\x05\\x06\\x06\\x05\\x03\\x03\\x02\\x03\\x02\\x04\\x02\\x19\\x03\\x02\\x1a\\x01\\x05\\x02\\x04\\x04\\b\\t\\a\\x15C-Y\\f\\x13\\r\\x0e\\x06\\f\\x05\\x0f\\x03d<H\\x06\\x06\\x1a\\x01\\x03\\x01\\x03\\x02\\x04\\x03\\x06\\a\\x05\\xd0r\\x04\\a\\x05\\x04\\x04\\x02\\x02\\x02\\x02\\x03\\x01\\x19\\b\\f~\\x04\\x14\\t\\x12\\t\\r\\a\\a\\x03\\x04\\x06\\xa4\\x03\\x01\\x01\\x04\\x02\\b\\x04\\r\\b\\x12\\x06K\\fI\\x05\\x15\\b\\x0e\\x04\\a\\x02\\x01\\x02\\x8b'\\x04\\x02\\r\\x05\\x18\\t$\\a\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x10\\x00\\x14\\x00\\\"\\x003\\x00C\\x00Q\\x00[\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\a\\x175#\\x1535#\\a&'#\\x1535\\x1737\\x1532326'454'.\\x02#\\\"+\\x01\\x1754.\\x01#\\\"\\a5#\\x1537\\x1632'\\x15\\x14\\x15\\x1c\\x01\\x06#52\\x1e\\x01\\x15\\x14\\x17\\x15\\x14#\\\"&5432\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x1bL!\\x92+\\a\\x06\\x03+\\x1d\\f\\x15\\f(\\x05\\n.\\x0f\\x01\\x02\\x02\\x11\\x0e\\f\\x03\\x01\\x18\\xa0\\x01\\v\\n\\f\\t\\x1f\\x1e\\x01\\t\\f\\x16u\\x05\\x05\\x05\\x04\\x01U\\x06\\x02\\x03\\x05\\x06\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xc5[\\x80\\x80\\x80<)\\x13\\x80UUWW\\x0e*\\x11\\n\\x12\\x06\\n\\n\\x01c$\\v\\v\\t\\n*\\x80\\b\\n\\\\1\\x01\\x03\\x05\\x05\\x05T\\x04\\x04\\x05\\x02\\x1b!\\x0e\\x05*\\r\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe2\\x02\\x06\\x01\\xb8\\x00,\\x001\\x00:\\x00G\\x00p\\x00\\x00\\x01\\x1e\\x01\\a\\x06\\a\\x0e\\x01\\a\\x06\\a\\x06'\\\"#\\\"&'*\\x01#\\x06\\x16\\x1f\\x01\\x16\\x17.\\x01/\\x01&'\\x16\\x177676767676\\a\\x06\\a67\\a\\x16\\x1f\\x01.\\x01/\\x01\\x06\\a\\x1e\\x01\\x17\\\"'.\\x04'&\\x17>\\x0154&#\\\"\\a\\x06\\a>\\x01\\x1f\\x01\\x16\\a&\\x06\\a\\x16\\x17\\x166?\\x016\\x17\\x16\\a\\x06\\a\\x06'\\x1e\\x03\\x1f\\x01\\x16\\x01\\x9768\\x06\\x04\\x06\\x1173\\f\\b\\x12\\x16\\t\\tFm\\x12\\x01\\x01\\x01\\x02\\r\\b\\t\\x02\\v\\x1c \\x03\\x02D\\b)#\\x01\\x02\\x15\\n!\\a\\r\\a\\r{\\xa7\\v\\b\\n\\b\\x1e\\x01\\x03)\\x06\\b\\x01\\x01\\x14\\x01\\x10S7\\x02\\x01\\x03\\f\\x1f\\x1a\\x1d\\a\\x05\\xe80;qPJ6\\b\\x04\\x18I\\x19\\x18\\x16\\x01;J$\\t\\x120_\\x18\\x17\\x13\\x02\\x04\\r3@!-\\n\\\"!\\x1f\\n\\t$\\x01\\x82\\x1cm>!\\x134D\\x1c\\b\\x03\\x06\\x02UB\\x134\\x11\\x10\\x03\\x11\\x0fA\\x1a\\x19\\x1a\\f\\x16\\x05\\b%\\\"2(\\x1d\\x18\\r\\x069\\x9a\\x10\\x15\\v\\x06f\\x0f\\r\\a\\x13-\\r\\r\\x14N4J\\b\\x01\\x02\\a\\x19\\x1b)\\x16\\x01l\\x18^8Pr1\\x0e\\x19\\x13\\x11\\x01\\x02\\x01\\x1b\\x05\\x1b\\x1fN \\x02\\x1a\\x0f\\x0e\\x0e\\x12\\x18\\x06\\x18\\t\\x05\\x01\\x18'\\x17\\x10\\x03\\x03\\x06\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00\\x10\\x007\\x00\\\\\\x00\\x00\\x012\\x1e\\x01\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x126&'.\\x0114\\\"&'&\\x06\\x17\\x16\\x17\\x1e\\x01\\x0e\\x01'.\\x01\\\"04&'&\\x06\\x0f\\x01\\x06\\x17\\x16767\\x16\\x136&\\\"\\x0f\\x01&\\x0e\\x01\\x16\\x17\\x1e\\x013\\x140\\x16\\x17\\x166/\\x01.\\x01>\\x01\\x17\\x1e\\x0112\\x14\\x16\\x17\\x1676\\x01a\\x1a,\\x198'\\xfe\\xfe'88'\\xbb*\\x16$\\x04\\x05\\x01\\x04\\x04\\x13\\x15\\x12\\t\\n\\x14\\r\\x18/\\x14\\x05\\x04\\x01\\x05\\x04\\b\\x11\\x04\\x10\\t\\x0e\\x12\\x11\\x01\\x01$|\\a\\x0e\\x16\\b\\x05%Q)\\x15%\\x04\\x04\\x01\\x05\\x04\\x13\\x15\\x12\\x13\\x15\\f\\x18/\\x14\\x05\\x04\\x01\\x04\\x05\\x0f\\v\\x02\\x01\\xa0\\x19,\\x1a\\xfe\\xfe'88'\\x01\\x02'8\\xfe\\x9fIQ\\x15\\x03\\x02\\x01\\x02\\x03\\v&\\v\\x05\\x05\\f/)\\r\\f\\x03\\x02\\x01\\x02\\x03\\x04\\x04\\b\\x1b\\x11\\v\\x0f\\x1a\\x02\\x01\\x14\\x01\\n\\f\\x15\\v\\b\\x14\\x16HQ\\x15\\x03\\x02\\x01\\x02\\x03\\v&\\v\\n\\f/)\\r\\f\\x03\\x02\\x01\\x02\\x03\\a\\v\\x02\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x12\\x00\\x1f\\x00\\x00\\x01\\a\\x16\\a\\x0e\\x01\\a\\x0e\\x02\\a7&7>\\x017>\\x01\\a6&'&\\x0e\\x01\\a\\x06\\x16\\x17\\x166\\x01\\xc0W?\\x06\\x04_E#ZZ#W?\\x05\\x04`E0\\xae4\\x04P<'D,\\x02\\x03P<;Z\\x01\\xa0W>VFe\\t\\x05\\f\\v\\x05W=WFe\\t\\x06\\x17\\xe4;X\\x04\\x02\\\"@'<W\\x04\\x03N\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x10\\x00\\x14\\x00\\x1f\\x00#\\x00'\\x00\\x00\\x00\\x14\\x06\\\"&462\\x134&\\\"\\x06\\x14\\x1626%\\x17\\a'\\x1f\\x01#'\\a#7'7\\x17\\a'\\x17\\a'7\\x17\\a'\\x02\\x00\\x96Ԗ\\x96\\xd4v\\x83\\xba\\x83\\x83\\xba\\x83\\xfe\\xc1W%W\\x93/\\x0f21\\x0e3\\x16\\x06D\\x06\\x1cE\\x1eDm7\\x177\\x01*Ԗ\\x96Ԗ\\xff\\x00\\\\\\x84\\x83\\xba\\x83\\x83\\xe0%W%R^ddk\\n\\x0e\\x1d\\x0f|\\x1eD\\x1d\\x1a\\x177\\x17\\x00\\x00\\x00\\f\\xff\\xfe\\xff\\xba\\x02\\x12\\x01\\xc1\\x00\\x04\\x00\\f\\x00\\x14\\x00\\x1d\\x00'\\x000\\x00=\\x00D\\x00M\\x00m\\x00\\xb3\\x00\\xbd\\x00\\x006\\x16\\x06&7\\x176\\x17\\x16\\a\\x06'&\\x02\\x06'&76\\x16\\x17\\x06\\x1e\\x01\\x0e\\x01.\\x0176$\\x06&'&>\\x01\\x16\\x17\\x16\\x0e\\x01.\\x01676\\x1e\\x01\\x056\\x16\\x17\\x16\\x06\\a\\x06&'&>\\x017\\x16\\a\\x06'&6&6\\x1e\\x01\\x06\\a\\x06.\\x01\\x17\\x16\\x06\\a\\x06'\\x0e\\x01'0\\x06\\x15\\x06&'&'.\\x0167&67>\\x01\\x176\\x16\\a\\x1e\\x01\\a.\\x01'&6'&'\\\"\\a\\x06'&#&\\a\\x06'&'&\\x0e\\x01\\a\\x0e\\x04\\x15\\x06\\x16767>\\x0176\\x17\\x16\\a\\x14\\x06\\a\\x06\\x1667>\\x037632\\a\\x14\\x06\\a\\x06\\x1e\\x01\\x17\\x1e\\x026\\x176\\x16\\x17\\x16\\x0e\\x01.\\x016a\\x04\\x14\\x04\\n\\x9b\\f\\b\\b\\f\\v\\t\\a?\\x17\\x03\\x02\\v\\x05\\b\\x01\\x8a\\x0f\\x03\\n\\x12\\x0f\\x03\\x05\\x05\\x011\\x0f\\x12\\x04\\x05\\x04\\x10\\x11\\x05\\x05\\xc6\\v\\x0e\\b\\x03\\x05\\x06\\x0e\\a\\x01m\\x05\\n\\x01\\x01\\x06\\x06\\x05\\n\\x01\\x01\\x02\\x06+\\x03\\n\\v\\x02\\x02\\x14T\\f\\x0f\\t\\x03\\x06\\x06\\x10\\b\\x03\\x14\\x10\\x1f\\x19\\x1f\\tF\\x1b\\x03\\x1eE\\x15\\x0e\\x01\\x1f&\\x04\\x18\\x15#'\\x14f*3T\\x04\\x1f\\r^\\x02(\\x01\\x02+\\x01\\x04\\x1e\\r\\b\\a\\x05\\f\\a\\r\\x0e\\x0e\\x06\\x0f\\t\\b\\x13\\x11\\x05\\x03\\n\\v\\t\\b\\a\\x18\\x14\\x10\\t\\x02)\\x02\\x05\\t\\b\\x02\\x1c\\x01\\x01\\x0e\\x14\\x06\\x01\\x0f\\x11\\x0f\\x01\\x06\\x06\\t\\x02%\\x02\\x02\\x05\\r\\t\\x05\\x14\\x15\\x0e\\x04\\b\\x13\\x06\\x05\\x03\\x10\\x13\\v\\x04,\\x15\\x04\\x15\\x02P\\t\\f\\f\\b\\t\\f\\f\\x01\\xd9\\x05\\f\\v\\x03\\x01\\x05\\x05\\xd4\\v\\x12\\x0f\\x04\\v\\x12\\b\\a\\xae\\t\\x04\\b\\b\\x12\\t\\x04\\b\\bL\\b\\x02\\f\\x0e\\x04\\x03\\x02\\v\\xae\\x01\\a\\x05\\x06\\n\\x01\\x01\\x06\\x06\\x04\\a\\x059\\t\\x03\\x02\\n\\n\\x04<\\t\\x03\\r\\x10\\x04\\x04\\x02\\rw!K\\x15\\x12\\x01$\\x15\\x18\\x02\\x01\\x14\\r\\x1d\\x15\\x1a\\x052?\\x16#J\\x062$ \\x11A5\\n@`\\n\\x06\\v\\x11b\\r\\x1d\\x01\\x05\\x04\\x05\\f\\x03\\f\\f\\x03\\a\\x04\\x03\\x03\\f\\b\\x06\\x1c\\\"\\x1c\\x1b\\x02\\x14\\x1c\\x01\\x01\\x10\\x04k\\x02\\n\\x05\\x04\\v\\x05F\\x03\\v\\n\\x06\\v\\x02\\x1f\\\"\\x1e\\x02\\b\\v\\x05K\\b\\n\\x14\\x10\\x05\\x02\\x04\\x01\\tS\\x06\\x04\\b\\b\\x13\\v\\x04\\x0f\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00-\\x00=\\x00M\\x00\\x00\\x012\\x16\\a\\x15\\x14\\a\\x06#\\\"&#\\\"\\a\\x06#\\x15\\x14\\a\\x15\\x06#\\\"&=\\x01&5462\\x16\\x15\\x14\\a\\x1527632\\x17\\x1632672\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x114&#!\\\"\\x06\\x15\\x11\\x14\\x163!26\\x01S\\x04\\x05\\x01\\a\\x1e\\x16\\r(\\x11\\x1a'\\x01\\x02\\x01\\x04\\x0e\\b\\f\\r\\x13\\x1b\\x13\\f\\x01\\x03#\\x19\\x19\\\"\\x06\\a\\r&<\\x14\\x1e\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01j\\b\\x06\\xfe\\xa4\\x06\\b\\b\\x06\\x01\\\\\\x06\\b\\x01\\x15\\x04\\x03\\x87\\x04\\x03\\x0e\\x10\\x11\\x01,\\x03\\x02\\x01\\x0e\\f\\b\\xd4\\n\\x10\\r\\x13\\x13\\r\\x11\\t\\x12\\x02\\r\\r\\x03\\x10\\x8b\\x1e\\x14\\xfe\\xa4\\x14\\x1e\\x1e\\x14\\x01\\\\\\x14\\x1e\\xfer\\x01\\\\\\x06\\b\\b\\x06\\xfe\\xa4\\x05\\t\\b\\x00\\x00\\x03\\x00\\x18\\xff\\xbb\\x01\\xaa\\x01\\xc0\\x00)\\x004\\x00E\\x00\\x00%\\a\\x0e\\x01&?\\x01\\a\\x16\\x15\\x14\\a'>\\x01.\\x01#\\\"\\a'6?\\x01'\\a\\x06.\\x01?\\x016\\x17\\x161\\x1e\\x01\\x0f\\x0176\\x16&\\\"&4632\\x1e\\x01\\x15\\x14\\x0327\\x17\\x0e\\x01.\\x02547\\x17\\x0e\\x01\\x1e\\x01\\x01\\xa8\\r\\x02\\x1f\\x1d\\x01\\n)\\x10*'\\x14\\b\\x161\\x1f'\\x1d'#.L+3\\x0f \\a\\rD\\x10\\x13\\x8c\\f\\x05\\v:j\\x0e\\x13-*\\x1e\\x1e\\x15\\x0e\\x17\\x0e\\xe6\\x1e\\x1a'\\x1dFA6!!(\\x10\\x02\\x18/\\xc0\\x9d\\x13\\r\\x12\\x13z\\x02 $>-'\\x17<2#\\x1a' \\bV\\x19.\\r\\r\\x1f\\x0e=\\x0e\\vQ\\b \\fC\\x06\\x01\\x14\\x8c\\x1e*\\x1e\\x0e\\x17\\x0e\\x15\\xfe\\x80\\x11(\\x17\\x0e\\x12'A&5*'\\x188.\\x1e\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xef\\x02\\x85\\x01\\x91\\x00\\x1a\\x001\\x00S\\x00\\x00%0\\x0e\\x011\\a\\x06\\x15\\x14\\x16\\x15\\x06#\\x06547>\\x0673\\x1f\\x01&\\x02'.\\x01623632\\x16\\x17\\x16\\x17\\x16\\a\\x0e\\x01\\a\\x06&7\\x16\\a\\x0e\\x01\\a\\x0e\\x01.\\x02#.\\x02#&5&7067672\\x1f\\x01\\x16?\\x01\\x1e\\x02\\x01B.,]\\a\\x01r\\x01\\x12\\x02\\x01vy\\b\\a\\x06\\x05\\x02\\x013\\xa0\\x03\\xe9\\x04\\x05\\x01\\b\\b\\n::\\x13\\f\\a\\x11\\xbf\\x0f\\b\\x02q\\x03\\a\\x0f\\x90\\n\\b\\x02z\\x02\\x05\\t\\x0f\\x06\\x12\\x01\\x03\\x99\\x97\\x01\\x04\\x01\\f\\x93\\x03\\x05\\t\\a;9\\x13\\x11v\\x05\\x13\\r\\xc4*)\\\"\\x03\\x06\\x01\\x18\\x03%\\x06\\x03\\x01\\x04\\x01tx\\a\\x06\\x03\\x02\\x01By\\x03\\x01+\\x04\\a\\a\\x03\\x01\\x04\\t\\x15\\xe3\\x13\\x04\\x01/\\x01\\x05\\x03\\t\\x02\\x06\\x01L\\x01\\x02\\x02\\x01\\x01\\x04\\x01\\\"\\\"\\x02\\x02\\x03\\x046\\x01\\x02\\x01\\nJ\\x16\\b4\\x01\\x04\\x03\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00A\\x00X\\x00|\\x00\\x88\\x00\\x9e\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x16\\a\\x0e\\x02\\a\\x0e\\x01\\x17\\x1e\\x01676\\x17\\x1e\\x01\\x17\\x1e\\x0176'.\\x016'<\\x02.\\x04'&\\a\\x0e\\x02\\x17\\x16\\x17\\x1667>\\x01\\x054&*\\x01#\\\"#\\\"&\\x0e\\x01\\x15\\x06\\x1e\\x0163!2\\x1626\\x1354\\a*\\x02#\\\"\\x06\\x1d\\x01.\\x01\\x0e\\x02\\a\\x06\\x17\\x1e\\x02676762\\x17\\x1e\\x016325'\\x0e\\x01&'&7>\\x01\\x17\\x1e\\x01\\x050&\\\".\\x055&7676\\x16\\x15\\x14\\x15\\x16\\x06\\x01\\xe2\\x12\\f\\f\\x12\\xfe;\\x12\\v\\f\\x11\\x95\\x0e\\x02\\x01';\\x0f\\x15\\x15\\x02\\x031C\\x1c\\b\\x04\\x01\\x02\\x01\\x05#\\a\\x05\\x03\\x06\\x03\\x01\\x01\\x01\\x02\\x05\\b\\v\\b@=\\t\\x16\\b\\x0e\\a\\x10\\x06\\b\\x03\\t7\\x013\\x04\\x03\\t\\x01\\xc6\\xc6\\x01\\t\\x03\\x04\\x01\\x04\\x04\\t\\x01\\x01\\x8b\\x01\\t\\x04\\x04\\x04\\x0e\\x01\\x03\\x04\\x01\\x14\\x06\\x17*\\x1d\\x19\\r\\x04\\x19\\t\\x06 )-\\x14\\x01\\x02\\x02\\x05\\x03\\x04\\v\\x12\\x03\\b4\\t%#\\t\\x17\\x18\\f5\\x10\\x0e\\x01\\xfe\\xd3\\x06\\x03\\a\\x03\\x06\\x04\\x03\\x02\\x01\\x15\\x04E\\x05\\x03\\x01&\\x01\\xa0\\f\\x12\\xfe|\\x13\\v\\v\\x12\\x01\\x86\\x11\\f\\xbc\\n\\x12\\b\\a\\b\\a\\v'\\x16\\x1f!\\x03\\x12\\x06\\x05\\x01\\x04\\x01\\a\\x05\\x05\\x04\\x06\\x0e\\\"\\x1a\\x0f\\t\\x1f\\x0e\\x19\\v\\x11\\t\\t\\x04\\x1a\\x1f\\x05\\x1a\\x1b\\x06\\x04\\x02\\x02\\x03\\a\\x18\\x0f\\xed\\x05\\x05\\x01\\x01\\x05\\x05\\x05\\x05\\x01\\x01\\x01\\x05\\x01Z\\x01\\x0f\\x01\\a\\x13G\\r\\a\\b\\x11\\x11\\t22!.\\x13\\x02\\v\\x01\\x01\\x02\\x05\\x06\\x02\\x02\\x0e;\\x17\\x10\\x0f\\x1332\\x1a\\x02\\x17\\x13H-\\x01\\x02\\x02\\x03\\x04\\x05\\x06\\x04\\x15\\x05\\x01\\x0e\\x01\\x04\\x04\\x02\\x01\\x19\\\"\\x00\\x00\\x02\\xff\\xf8\\xff\\xe0\\x02\\x01\\x01\\x8b\\x00\\a\\x00\\x18\\x00\\x00\\x12\\x0e\\x01&>\\x02\\x16\\x05\\x16\\x15\\x14\\x0e\\x01#\\\"&'>\\x017\\x16\\x17\\x166\\xc6MU,\\x18MU,\\x01!\\x01I}J=l&5V\\x19\\r$7\\x9b\\x01\\bk4!bj4 ^\\r\\fK~J4-\\x0eF13\\x17!T\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x00\\x11\\x00\\\"\\x004\\x00E\\x00M\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x176'&'\\\"\\x1d\\x01\\x14?\\x012\\x1e\\x01\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x173\\x15\\x147632\\x17\\x16=\\x014&+\\x01\\\"\\x06\\a\\x06\\x14\\x1f\\x01\\x16767676/\\x01&\\\"\\a\\x16264&\\\"\\x06\\x14\\xc0J44J4\\x98\\x02\\x01\\x14)\\x03\\x04\\x9c\\x10\\x1b\\x10#\\x18\\xfe\\xb6\\x18##\\x18\\u007f\\x01\\x03\\x13\\x14\\x14\\x13\\x03\\f\\b-\\b\\fT\\x06\\x06\\b\\x02\\x02\\a\\b\\a\\n\\x03\\x03\\a\\x06\\x10\\x06BiJJiJ\\x01\\t4J44J\\x04\\x01\\x02$\\x02\\x03C\\x04\\x02\\xee\\x10\\x1b\\x10\\xfe\\xb6\\x18##\\x18\\x01J\\x18#U\\x0f\\x04\\x01\\x05\\x05\\x01\\x04\\x0f\\b\\f\\f-\\x05\\x10\\x06\\b\\x02\\x03\\t\\b\\b\\a\\x02\\x02\\b\\x05\\x05\\xfeJiJJi\\x00\\x00\\x00\\x02\\x00\\x10\\xff\\xe0\\x01\\xb1\\x01\\xa0\\x003\\x00I\\x00\\x00\\x132\\x16\\x15\\x11\\x14\\a\\\"#\\\"'&=\\x01\\x0e\\x01#\\\".\\x035<\\x02>\\x047>\\x01754.\\x02#\\\"\\x06\\a\\x06&'&'&76\\x135\\x0e\\x01\\a\\x0e\\x06\\x1c\\x02\\x15\\x14\\x1e\\x0232\\xf0a_\\x05\\x03@5\\x06\\a\\x1fX\\\"\\x1f0\\x19\\x10\\x05\\x01\\x02\\x05\\x06\\n\\a\\x16\\x99D\\x02\\v\\x18\\x15(V\\x1b\\x04\\r\\x03\\x04\\x06\\x03\\nL\\x9e\\x1fE\\x14\\x03\\x05\\x03\\x03\\x02\\x01\\x01\\x04\\v\\x1a\\x12(\\x01\\xa0I?\\xfe\\xd7\\a\\x02\\x02\\x01\\b\\x19\\x11\\x19\\x12\\x1a\\x1f\\x16\\a\\x01\\x10\\f\\x14\\x0f\\x13\\x0e\\f\\x03\\t\\x1e\\t&\\x15\\x14\\x17\\t\\x1d\\x12\\x04\\x03\\a\\b\\x1f\\x0e\\x067\\xfe\\xa4k\\x03\\x14\\v\\x01\\x05\\x04\\a\\x05\\a\\x05\\a\\x05\\x05\\x02\\x05\\r\\x10\\n\\x00\\v\\xff\\xfd\\x000\\x02\\x80\\x01N\\x00\\x11\\x00\\x15\\x00G\\x00V\\x00_\\x00c\\x00f\\x00\\xa6\\x00\\xaf\\x00\\xc4\\x00\\xc7\\x00\\x00%\\x0f\\x027\\x0f\\x027\\x0f\\x017\\x0f\\x01'7\\x177\\a?\\x01\\a\\x05'\\x0f\\x017\\x06\\a\\x06&7>\\x0172\\x1e\\x051?\\x016\\x17?\\x01\\x0f\\x027\\x0f\\x027\\a?\\x01\\x177\\a?\\x01\\x0f\\x03'\\x0f\\x01'\\a&\\a\\\"\\x0e\\x02\\a\\x06\\x1676?\\x026&\\x0f\\x012>\\x02\\x177\\x06\\a7'\\a/\\x01\\x0f\\x02?\\x01\\x17?\\x01\\x17?\\x01\\a>\\x0276\\x1e\\a1?\\x016\\x17'7\\x17?\\x01\\x0f\\x027'\\x16\\a\\x17\\a'\\x0f\\x017\\x0e\\x06#\\x06'\\x0f\\x01'\\a767676'&\\x0f\\x01\\x1676767\\a?\\x02\\a&'&#\\x06\\a\\x06\\a\\x06\\a7'\\x02\\x80\\x03#\\x02#\\x03#\\x02\\\"\\x03@\\f/ \\x18\\x1f\\r x\\r\\x1c\\r\\xfe\\xdb\\x13\\x04\\x1c\\x03\\x15$\\x1a!\\x02\\x02%\\x1d\\b\\r\\n\\a\\x06\\x03\\x04\\x03'%\\x05\\x03A\\x03$\\x02$\\x02%\\x02%\\x026\\x18 \\t\\x16\\x03K\\x03\\x18\\n:\\x04(\\b\\xaa\\x1b\\t\\x11\\a\\f\\t\\x06\\x01\\x01\\x0f\\x0f\\x10\\r\\x1b;\\x01\\f\\x0f\\x03\\a\\a\\n\\x04\\x16\\x06\\a\\x15\\x9d\\b\\x0f\\x93\\x04(\\b 9\\x18\\x1f\\n\\x1b&\\x06\\x1d\\x04\\x06\\t\\x1e\\x12\\a\\f\\t\\b\\x06\\x05\\x03\\x02\\x02\\x03'\\x1a\\v\\x05 \\r\\x17\\x1f+\\x05\\x1d\\x05\\x10\\x02\\\"\\x1a%\\x13\\x04\\x1c\\x03\\x01\\x05\\x04\\b\\b\\v\\x0e\\t)\\x0e\\x04\\x19&\\x06\\xdc\\x0f\\x06\\a\\x01\\x01\\x04\\x06\\x11p\\b\\r\\a\\x06\\b\\a\\\"\\x03?\\x01\\x1f\\a\\x04\\a\\x06\\v\\v\\v\\x02\\x01\\xc1\\x18\\b\\xd2\\x1c\\x03\\x12\\x03\\x1d\\x02\\x14\\x02\\x1a\\x04qs\\x02v\\x02PS\\x80x\\x02x\\x12$&\\x01\\x1d\\\"\\x02\\x01 \\x1b\\x18(\\x02\\x02\\x04\\x05\\a\\x05\\x06\\x1f\\x02\\x03\\x1b\\x1b\\x04\\x1c\\x02\\x12\\x02\\x1b\\x03\\x14\\x03\\x15u\\x02oV\\x02\\x1c\\x05\\x1c\\x02\\\\\\x03\\x0f\\x02\\x10>\\x02\\x11\\x01\\x06\\n\\v\\x06\\r\\x13\\x01\\x01\\x12\\x01&\\t\\x04\\x01\\x1c\\x01\\x03\\aB<\\x12\\t\\f&(M\\x11\\x02\\x13\\x02z\\x02fh\\x02?B\\x02)\\f\\r\\x15\\x01\\x01\\x02\\x03\\x04\\x05\\x05\\x05\\x04\\x03 \\x03\\x02\\f\\f\\x02+.\\x02N-\\x02-+$\\x0e'\\x02%'\\x02 \\x01\\b\\x05\\b\\x06\\x06\\x04\\x03*(\\x02?BO\\x01\\x03\\x04\\b\\b\\x03\\x03\\x01@\\t\\x01\\x01\\x03\\x05\\t\\x02\\x18\\x04\\f\\x02\\x06\\x02\\x03\\x01\\b\\n\\x0f\\x0e\\x11\\x01&\\x00\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x19\\x00\\\"\\x007\\x00?\\x00K\\x00\\x00\\x017>\\x01\\x1e\\x01\\x0f\\x0132\\x16\\a#\\\"&46;\\x017'&>\\x01\\x16\\x17\\x0f\\x01\\x0e\\x01.\\x01?\\x016732\\x16\\x14\\x06+\\x01\\x17\\x16\\x0e\\x01&'.\\x01'&67\\x16&2\\x16\\x14\\x06\\\"&4\\x054&#\\\"\\x06\\x15\\x14\\x16326\\x01\\x00\\t\\x04\\x11\\x0e\\x05\\x05W?\\x0f\\x0f\\a\\xb9\\t\\f\\f\\t4B\\x14\\x05\\x05\\x0e\\x11\\x04F\\x13\\x05\\x10\\x0f\\x04\\x04\\x0f\\x18\\xb95\\t\\f\\f\\t\\x1d\\x14\\x04\\x05\\x0e\\x11\\x04\\x112\\b\\v\\a\\v\\f\\x91Α\\x91Α\\x01\\xd0\\u007fYZ~\\u007fYZ~\\x01G\\x10\\a\\x05\\t\\x10\\b\\x97\\x1c\\r\\f\\x11\\fs$\\b\\x10\\t\\x05\\a\\xea\\\"\\a\\x05\\t\\x10\\b\\x19\\a+\\f\\x11\\f\\\"\\b\\x10\\t\\x05\\a\\x1fV\\x0e\\x17%\\t\\x15\\xba\\x91Α\\x91\\xcegZ~\\u007fYZ~\\u007f\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x18\\x002\\x00G\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x137&\\x0f\\x01\\x06\\x1e\\x01676&+\\x0176.\\x01\\x06\\x0f\\x01'.\\x01\\x0e\\x01\\x1f\\x01\\a#\\\"\\x06\\x14\\x163!264&+\\x01&'\\x0e\\x01\\x17\\x1e\\x01\\x17\\x1e\\x01>\\x01/\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14O\\x13\\x0f\\x18\\x0f\\x04\\x05\\x0e\\x10\\x8f\\a\\x0f\\x0f>V\\x04\\x04\\x0f\\x10\\x04\\t\\t\\x04\\x10\\x0e\\x04\\x04\\x14A3\\b\\f\\f\\b\\x01\\x18\\b\\f\\f\\b4\\x10+\\v\\a\\v\\t3\\x0e\\x04\\x10\\x0e\\x05\\x04\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xa0!\\x13\\b\\x18\\b\\x10\\b\\x04=\\r\\x1b\\x95\\a\\x10\\b\\x04\\a\\x0f\\x0f\\a\\x04\\b\\x10\\a#r\\v\\x11\\f\\f\\x11\\v\\x1cJ\\b$\\x17\\x10X\\x18\\b\\x04\\b\\x10\\b!\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00V\\x02\\x80\\x01\\x00\\x00!\\x00,\\x00A\\x00M\\x00a\\x00n\\x00\\x8a\\x00\\x94\\x00\\xab\\x00\\x0072\\x16\\x1754#\\\"\\x0e\\x02\\a#47632\\x17\\x16\\x1d\\x01#7#\\x0e\\x02#\\\"&546\\x172654&#\\\"\\x15\\x14\\x1673\\a3>\\x0132\\x17\\x16\\x15\\x14\\a\\x06#\\\"&'#\\x15#74&#\\\"\\x06\\x15\\x14\\x1632673\\a>\\x0132\\x17\\x16\\x15\\x14\\a\\x06#\\\"&'#\\x15#74&#\\\"\\x06\\x15\\x14\\x1e\\x01326747632\\x16\\x1d\\x01#\\x14\\x15\\x14\\x1e\\x0132653\\x15\\x14\\a\\x06#\\\"'&7454&#\\\"\\x06\\a\\x1573\\a3632\\x16\\x15\\x14\\x15#454&#\\\"\\a\\x06\\x1d\\x01#*\\x11\\r\\x04\\x12\\x04\\x05\\x04\\x01\\x01&\\x06\\t%,\\n\\x04'\\x02\\x01\\x03\\b\\x0e\\v\\x17\\x12\\x14'\\n\\a\\b\\f\\x11\\bZ&\\x01\\x01\\x06\\x0f\\x10\\x15\\v\\f\\f\\t\\x18\\x0f\\x0f\\x04\\x01'Q\\b\\r\\r\\b\\b\\x0e\\f\\b:&\\x01\\a\\x0f\\x10\\x15\\n\\r\\f\\t\\x18\\x10\\x0f\\x03\\x01'Q\\b\\r\\r\\b\\x04\\b\\t\\r\\b5\\r\\f! \\x18L\\x04\\b\\b\\v\\a&\\a\\n#&\\f\\fM\\b\\f\\v\\x06\\x01]'\\x02\\x01\\t\\x14\\x11\\x0e#\\x04\\x06\\n\\x03\\x01'\\xd1\\x06\\t\\x17\\x10\\x01\\x03\\x05\\x04\\x12\\x06\\f\\x13\\t\\x0fL\\x13\\b\\b\\x04\\x11\\x14\\x13\\x110\\x05\\b\\a\\x05\\f\\b\\x05_\\x15\\r\\b\\t\\v%(\\r\\n\\t\\fFl\\x15\\f\\v\\x12\\x15\\r\\fO\\x15\\r\\b\\t\\v%(\\r\\n\\t\\fFl\\x15\\f\\v\\x12\\x0f\\r\\x06\\f\\x16#\\v\\v\\x18 \\v\\x02\\x03\\b\\n\\x04\\x06\\b\\x02\\x10\\t\\r\\f\\v3\\x02\\x02\\t\\x06\\x06\\t\\x04.\\x14\\x14\\x13\\x18\\x05\\x05\\x02\\x02\\f\\b\\t\\x04\\tD\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf4\\x02A\\x01\\x95\\x00/\\x007\\x00\\x00%\\x06\\a\\x17#'\\x06\\a\\x17#7\\x06'\\a#7&74767\\x06\\a\\x06\\a\\x06\\x16\\x17\\x13\\x17676&'&\\a\\x06\\a>\\x01\\x17\\x1e\\x02\\x15\\x06\\a67'\\a\\x16?\\x01\\x02\\x06\\x15\\x1cIf.\\x19\\x1d!\\x88\\x17$!\\x16e\\\"E\\x01*;f\\x1d!1\\x1e+\\f2\\xbe\\x97\\x13\\x10I:rkrTWZ\\xdd`6M&\\x01\\xf5\\x1b\\x1bOf!$!\\x8b\\x16\\x12nG\\n\\b5%\\x04\\x01\\\"3\\x1c7)*= \\n\\x15\\x19!.S\\x16\\x01\\x1e\\xe3\\x0f\\x10N\\x88\\x11\\x11\\x1f\\x0e,2.\\x0e\\b'7!9\\x8c\\b\\fz\\x9f\\x01\\x065\\x00\\x05\\x00\\x00\\xff\\xfa\\x02\\x80\\x01\\x86\\x00\\x05\\x00\\x13\\x00\\x1c\\x00*\\x00+\\x00\\x00%\\x15\\x05%5\\x057.\\x01\\a\\x06\\a#>\\x0132\\x1e\\x01\\x17\\x05632\\x17\\a&#\\\"'\\x06\\a>\\x0132\\x16\\x17\\a'.\\x01\\x06\\x05\\x02\\x80\\xfe\\xc0\\xfe\\xc0\\x01@~6\\xa9D\\x05\\x02\\x01\\x1d[5#B5\\x13\\xfe\\xf4#<<#.\\\"4\\x1f\\x94\\x0e\\x15)\\x85MM\\x85)1\\x011\\x92\\x9e\\x01\\x93\\xf86\\xc8\\xc86ȀG\\x158\\x04\\x02*2\\x17)\\x1c111\\x1d0o\\v\\x16?II?\\x1e\\x01DA\\x14T\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xe0\\x02\\x05\\x01\\xa0\\x00\\x0f\\x000\\x00\\x00\\x012\\x16\\a\\x03\\x0e\\x01#!\\\"&7\\x13>\\x013\\x137/\\x01>\\x0316.\\x02\\a\\x06\\a/\\x01\\x0f\\x01\\x1f\\x01\\x06\\a'\\a\\x1f\\x017'67\\x17\\x01\\xc5\\x1d\\\"\\x059\\x051\\x1d\\xfe\\xc8\\x1d\\\"\\x059\\x051\\x1d\\xfe\\x06_\\x04\\a\\r\\b\\a\\x06\\x02\\x0e\\x12\\x05\\x0f\\x13\\x05g\\t\\x13E\\x15\\x15\\f:\\x104)\\x12\\x16\\x11\\x19s\\x01\\xa0)\\x1d\\xfe\\xcc\\x1d))\\x1d\\x014\\x1d)\\xfe\\xa5\\bw\\a\\x05\\n\\x06\\x05\\x05\\x12\\x10\\x05\\x05\\x0e\\x12\\x04q\\x05\\x1dd\\x1d\\x16\\r\\x1f\\x100=\\r@\\v\\x10n\\x00\\x00\\x06\\xff\\xfd\\xff\\xff\\x02\\x85\\x01\\x81\\x001\\x00>\\x00f\\x00\\xa3\\x00\\xb8\\x00\\xc8\\x00\\x007\\x14\\x1e\\x01\\x15\\x14\\x0f\\x01\\x06#*\\x01&'\\x0e\\x02#\\\"1\\x06&7&6\\x172\\x1756&\\a\\\"\\a\\x06#&47>\\x013232\\x17\\x16\\x15\\x14\\x0f\\x0126765&#&\\x06\\x17\\x06\\x16\\x17\\x06/\\x01&5\\\"54;\\x016\\x1f\\x0176\\x1736\\x1f\\x0176\\x173:\\x01\\x16\\x15\\x06\\a\\x06'#\\x06/\\x01\\a\\x06'\\x05\\\"'&=\\x014\\x17\\x16\\x17\\x167>\\x01'.\\x06'.\\x025&632\\x1e\\x01\\x17\\x16\\x1d\\x01\\x14#.\\x02#\\\"\\x0e\\x02\\x15\\x14\\x17\\x1e\\x06\\x17\\x16\\a\\x06\\a\\x0e\\x01#\\\"#\\\"&'&6\\x17\\x1e\\x01;\\x012676\\x166&\\a\\x06&7>\\x01\\x16\\x17\\x16\\x06\\a\\x06&7\\xb4\\x05\\x06\\x04\\r\\x02\\x03\\x02\\x02\\v\\x06\\x06\\x15\\x18\\n\\x01\\x13)\\x02\\x02,\\x1c\\x15\\x1a\\x03\\x19\\x16\\x15\\x19\\x06\\x05\\x05\\x02\\x05(\\x15\\x03\\x04\\x1b\\x16\\x12\\x01V\\x16\\x18\\x03\\x02\\x14\\x13\\x0f\\x1c\\x01\\x01\\x11\\xb9\\n\\x032\\x01\\x01\\x04\\x17\\n\\x02$!\\x02\\v\\x11\\v\\x02!%\\x02\\v\\x13\\x01\\x02\\x03\\x014\\x02\\v\\x12\\v\\x02!!\\x02\\v\\x00\\xff!\\x18\\b\\t\\x13\\n#\\x16\\t\\x03\\a\\x02\\x04\\x06\\x03\\n\\x06\\x10\\x06\\a\\x0f\\x16\\x01'\\x1f\\b\\x15\\x17\\x04\\x02\\x05\\x02\\x0e\\x15\\f\\x04\\v\\x0f\\t\\x1e\\x04\\x14\\x05\\r\\x04\\t\\x05\\x03\\x14\\x0f\\x12\\v3\\x8dC\\x02\\x01K\\xb87\\x05\\x06\\x06=\\xb9F\\x014\\x8e/\\n\\t\\x1e\\x12I\\x05\\x01\\x04\\x134&\\x05\\a\\x16\\x19\\x04\\a\\x02\\xf5\\n\\x10\\v\\x02\\x04\\x02\\t\\x02\\r\\f\\b\\r\\b\\x01\\x1a\\x1f\\x1c\\\"\\x02\\x06\\x10\\x14\\x1a\\x03\\n\\x02\\x01\\x13\\x04\\x05\\r\\x11\\x14\\x1b\\x03\\x03e\\x13\\v\\b\\x13\\x05\\x01\\x0f\\x12\\r\\x12\\x16\\x01\\v\\xa5\\x04\\x04\\x01\\x04\\x01\\v\\x8d\\x8d\\v\\x01\\x01\\v\\x8f\\x8f\\v\\x01\\x04\\x04\\x02\\xa8\\f\\x01\\x01\\f\\x89\\x89\\f\\x02\\x06\\f\\x04\\b\\v\\t\\x03\\b\\x02\\a\\f\\x05\\x17\\a\\x02\\x02\\x03\\x02\\x03\\x02\\x05\\x02\\x01\\b\\x1a\\x11\\x16\\\"\\x03\\a\\x06\\x03\\x04\\n\\a\\x01\\x05\\x05\\x01\\x04\\v\\t\\x13\\b\\x01\\x06\\x01\\x05\\x02\\x05\\x06\\x03\\x19\\x1f#h&)G2\\x04\\b\\x03#1\\x1d\\x14\\x04\\x0e\\x10\\x17\\t\\x01\\a\\x04\\f\\t\\x06\\x05\\tM\\x15\\x03\\x03\\x04\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00#\\x004\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0154&+\\x01\\\"\\a#5#\\x15353\\x16;\\x0126'\\x15\\x14\\x06+\\x01\\\".\\x01=\\x0146;\\x012\\x16\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01@(@\\x11@\\x06\\x01@@\\x01\\r9\\x11@(@\\x0e\\x18.\\x0f\\x12\\v\\x15\\x17.\\x18\\x0e\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfe\\xff#*('K\\xe8#'(H\\x17\\x13\\x0f\\x05\\x10\\x0e\\x14\\x14\\x0f\\x0f\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00?\\x00R\\x00g\\x00\\x00\\x00\\x14\\x06\\\"&462\\x176'7'\\a&'7'\\a&/\\x01\\a02\\x1e\\x0221\\x16\\x0f\\x01\\x1630\\\"'\\a\\x06'&1\\a\\x17\\x1e\\x033\\a\\x177\\x16\\x17\\a\\x177\\x16676'6\\a\\x0e\\x03\\\".\\x03#72\\x1e\\x057\\x0e\\x04&\\\".\\x02'72\\x1e\\x06\\x01\\xf8\\x91Α\\x91\\xce\\x03\\a=\\v\\x1b\\v\\b\\x0e\\v\\x1b\\v\\f\\x06%\\a\\x02\\x05\\x05\\x05\\x02\\x0e\\x01\\r\\x02\\x01\\x02\\x01\\x12\\x03\\t\\x14\\r#\\x02\\x06\\x04\\x05\\x02\\v\\x1b\\f\\n\\v\\v\\x1b\\f\\\"3\\v\\x0f(\\x1d9\\x01\\x06\\t\\n\\r\\n\\x0e\\a\\r\\x01\\x0f\\x01\\x12\\n\\x12\\n\\v\\x03\\a\\x02\\x04\\x06\\b\\b\\n\\a\\n\\x06\\t\\x01\\x0e\\x01\\f\\a\\r\\a\\f\\x03\\x05\\x01'Α\\x91Α\\xd5*\\x15-\\x06+\\x02\\x03,\\a-\\x02\\x02\\t\\x1d\\x01\\x01\\x02\\x04\\f3\\x01\\x01H\\b\\x02\\x05\\x1f\\t\\x01\\x01\\x01\\x02-\\a,\\x02\\x03-\\x06-\\t\\x10\\x1d-\\x15\\a6\\x05\\b\\x04\\x03\\x01\\x03\\x02\\x03<\\x04\\x03\\x06\\a\\t\\rQ\\x05\\x06\\x05\\x02\\x01\\x01\\x03\\x01\\x02\\x016\\x03\\x02\\x04\\x04\\a\\a\\v\\x00\\x05\\xff\\xef\\xff\\xd7\\x02\\x00\\x01\\xc1\\x00\\r\\x00\\x1b\\x00)\\x005\\x00O\\x00\\x00\\x1362\\x17\\x16\\x0e\\x01'&\\\"\\a\\x06.\\x01\\x13.\\x017>\\x01\\x16\\a\\x06\\x16\\x17\\x1e\\x01\\x067\\x06&67>\\x01'&6\\x16\\x17\\x16\\x06'\\x14\\x06\\\"&=\\x01462\\x16\\x15746\\x16\\x1d\\x01\\x14\\x06#\\\"&=\\x0146\\x16\\x15\\x06\\x1e\\x0232>\\x02NG\\xc8I\\x06\\x05\\x10\\b?\\xae>\\a\\x11\\x04i`b\\x19\\x02\\x11\\r\\x02\\x16UT\\n\\x04\\r\\x8b\\t\\f\\x03\\nOR\\x12\\x03\\x0e\\x11\\x02\\x15^\\x9b\\b\\f\\t\\t\\f\\tG\\x10\\x10E11E\\x10\\x10\\x01\\x02\\x0e%\\\"!%\\x0f\\x02\\x01}CG\\a\\x11\\x04\\a=:\\a\\x06\\x0f\\xfee\\x1d\\xad`\\n\\x04\\f\\tT\\x97\\x1a\\x03\\x11\\r\\x05\\x03\\f\\x12\\x03\\x1a\\x92Q\\n\\f\\x04\\n]\\xa81\\x06\\t\\t\\x06H\\x06\\t\\t\\x06\\xc5\\n\\b\\b\\nG0++0G\\n\\b\\b\\n!1!\\x11\\x10 2\\x00\\x00\\x00\\x00\\a\\x00\\x00\\x00\\r\\x02\\x00\\x01s\\x00\\b\\x00\\x11\\x00\\x19\\x00!\\x00)\\x002\\x00:\\x00\\x00\\x13\\x14\\x06+\\x01732\\x1672\\x16\\x15\\x14\\x06+\\x017\\a2\\x16\\x15\\x14+\\x01732\\x16\\x15\\x14+\\x017%2\\x16\\x15\\x14+\\x017\\x172\\x1e\\x01\\x15\\x14+\\x017\\a2\\x16\\a\\x14+\\x017\\xa6\\\"&G\\x15D\\x1d\\x19~\\x1d\\x19!%F\\x12\\x87\\x1c\\x1aIF\\x15\\xf8\\x1c\\x1aGF\\x13\\x01\\x01\\x1d\\x19FF\\x12(\\x14\\x19\\tFF\\x12y\\x1c\\x1a\\x01FF\\x13\\x01K\\x14\\x1dY\\x19\\x19\\x19\\x0f\\x14\\x1dY\\x83\\x19\\x0f1Y\\x19\\x0f1Y6\\x19\\x0f1Y\\x8a\\x0e\\x11\\t1Y6\\x18\\x101Y\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\x10\\x00\\x1f\\x00>\\x00`\\x00\\x007>\\x02232\\x17\\x16\\x15\\x14\\a\\x06\\\"'.\\x01\\x172\\x16\\x17\\x16\\x06\\x0f\\x02\\\"'.\\x0176\\x05\\x0e\\x02\\a\\x06#\\\"'&'&'&'&547>\\x0176 \\x17\\x16\\x17\\x1e\\x01\\x15\\x14'&'.\\x01'&54'&'&'\\\"\\a\\x06\\a\\x06\\a\\x14\\x17\\x1e\\x01\\x17\\x1e\\x0176767>\\x01\\xa2\\x02\\x03\\t\\n\\r\\x1c\\x04\\b\\a\\x039\\x03\\b\\x04C)\\x0f\\x04\\x06\\x02\\a\\t04\\x04\\b\\x03\\a\\x04\\x01\\x17\\x02\\r\\x16\\x0e\\b\\xa5\\xa5\\a\\f\\n\\v\\x06\\a\\x03\\x02\\x02\\x05\\x1b\\x13\\x05\\x01I\\x06!\\x0f\\x05\\x02V\\x02\\x06\\x02\\x1b\\x04\\b\\x19\\x13\\x16\\x05\\\"2\\x11+\\v\\x01\\x01\\x04\\a%\\x15\\av\\t\\x1d\\x15\\x10\\x06\\x02\\x01\\xfc\\x02\\x02\\x01\\x02\\x04\\n\\b\\x05\\x02\\x01\\x02\\x11X\\x02\\x03\\x05\\x10\\x04\\x01\\x01\\x02\\x03\\x11\\x05\\x05\\x83\\x0e\\x17\\x11\\x03\\x02\\x02\\x03\\a\\a\\t\\n\\f\\a\\xa7\\xa6\\a\\x13\\x1a\\x05\\x01\\x01\\a\\x1e\\v \\x89\\xa2\\xb1\\b\\x03\\x01\\x01\\x03\\x04\\x0e\\x1f\\x1a\\x12\\a\\x01\\x01\\a\\x10.\\x06:G\\x0e\\x16 \\x04\\x01\\x01\\x01\\x04\\x16\\x10\\x17\\aS\\x00\\x00\\x03\\xff\\xff\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00&\\x006\\x00G\\x00\\x00%\\x16\\x06\\a\\x06\\a\\x0e\\x02\\a\\x06\\\"'.\\x01'.\\x01567>\\x017>\\x013\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x17\\x1e\\x01\\x17\\x16%\\x06\\x16\\x17\\x16327654'&#\\\"\\x06\\x17>\\x01'.\\x01#\\\"\\x06\\a\\x06\\x17\\x16\\x17\\x16?\\x01\\x01\\xbf\\x01\\x01\\x03\\n\\x19\\f\\x19\\x1d\\x10\\x0e\\xbf\\v\\\";\\v\\x05\\x02\\x01\\x02\\t- \\x12'48\\a%\\x1d(\\x01\\f\\a,\\x03\\n\\xfe\\xc0\\t\\b\\f\\x06--\\x05\\f\\r\\x06.$\\x11\\xba\\v\\x03\\t\\x06\\x18CB\\x1a\\x06\\n\\x02\\x02\\r\\aTM\\xe1\\x05\\x86\\f%\\x19\\r\\x11\\n\\x02\\x02\\x02\\a3%\\x0f-L^\\n#5\\r\\a\\x03\\x01\\x02\\v\\x1e)2\\x16\\a\\x05\\x01\\x02\\x052\\t\\x1c\\x04\\x01\\x03\\b\\x0e\\x0f\\a\\x03\\x02\\xce\\x06\\x19\\b\\x06\\x02\\x02\\x04\\n\\r\\x0e\\x05\\x03\\x01\\x01\\x00\\x00\\x11\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00C\\x00\\x00\\x113\\x15#75#\\x1573\\x15#75#\\x1573\\x15#75#\\x15\\x053\\x15#75#\\x1573\\x15#75#\\x1573\\x15#75#\\x15\\x053\\x15#75#\\x1573\\x15#75#\\x1573\\x15#\\x80\\x80xp\\x98\\x80\\x80xp\\x98\\x80\\x80xp\\xfe\\xb8\\x80\\x80xp\\x98\\x80\\x80xp\\x98\\x80\\x80xp\\xfe\\xb8\\x80\\x80xp\\x98\\x80\\x80xp\\x98\\x80\\x80\\x01\\xa0\\x80\\bppx\\x80\\bppx\\x80\\bpp(\\x80\\bppx\\x80\\bppx\\x80\\bpp(\\x80\\bppx\\x80\\bppx\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x01\\xff\\xc2\\x01\\xfb\\x01\\xbb\\x00\\a\\x00\\x17\\x00#\\x00\\x00$\\x0e\\x01.\\x01>\\x01\\x16\\x03.\\x027>\\x017>\\x01\\x1e\\x02\\x17\\x16\\x0676.\\x03'\\x0e\\x01\\x17\\x166\\x01L\\x06)5!\\x06)58Gs8\\t\\bK8/fYH+\\x02\\x03\\x9cH\\b\\x1e5K;\\x1c+\\x11\\x1a3\\x8f\\xce5!\\x05*5!\\x06\\xfe\\xd1\\x04P~F@e\\x1b\\x16\\x04$>]4m\\x97\\xb9\\\"C2.\\x1b\\n)\\xbau\\f;\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x1b\\x00\\x1f\\x00'\\x00/\\x00\\x00\\x016\\x1e\\x01\\x0f\\x01\\x16\\a\\x06\\\"&476\\x177&#\\\"\\x06\\x17&54632\\x17\\x066&\\x06&2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01>\\x03\\a\\x02\\x02L\\x02\\n\\b\\x17\\x11\\b\\n\\r\\x1a\\x1b$'7\\x01\\x01L5-'U\\x14\\x14\\x14I\\xba\\x83\\x83\\xba\\x83\\x9e\\x84^^\\x84^\\x01&\\x03\\x02\\a\\x04X\\x0e\\n\\b\\x11\\x17\\b\\n\\x01\\x14\\x198*\\t\\v6N\\\"q\\x14\\x14\\x14߃\\xba\\x83\\x83\\xba\\xfd^\\x84^^\\x84\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01M\\x01\\xb8\\x00\\n\\x00 \\x00\\x00%\\x14\\x0e\\x01#\\\"&462\\x16'\\\"\\x06\\x15\\x14\\x06\\\"&54632654632\\x16\\x14\\x06\\x01L\\x16'\\x17\\\"22E1T\\\".0G12\\\"#)5##--\\x1c\\x17&\\x171F11\\xd1-#\\\"..\\\"#5)#\\\"21F1\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xff\\x02q\\x01\\x82\\x00)\\x00X\\x00h\\x00u\\x00\\x81\\x00\\x90\\x00\\x007#\\\"&=\\x0146;\\x01\\x15\\x14;\\x012>\\x01=\\x014#67>\\x0176\\x1e\\x02\\x17\\x1e\\x01\\a\\x0e\\x01#\\x0e\\x01'\\x06&7\\x1e\\x017>\\x0176/\\x01\\x16\\x06\\a6.\\x01'&\\a\\x16\\x17.\\x01\\x06\\a\\x0e\\x01\\x17\\x1e\\b\\x17&67\\x06\\x1e\\x027&'#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06'\\\"=\\x014;\\x012\\x16\\x1d\\x01\\x14#754;\\x012\\x1d\\x01\\x14+\\x01\\\"\\a\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x951\\x05\\a\\a\\x04/\\x13\\x14\\x06\\t\\x05\\x0f\\x12\\x1b\\v.*\\x1475/\\v62\\f\\nG2$q%;Q\\xdd\\x069\\x1d\\x1d,\\a\\b\\x12\\n\\x01\\x19\\x18\\x1f\\b7$>4R\\x14\\x0e60\\x12\\x1b \\x02\\x01\\x03\\x06\\x05\\n\\x05\\v\\x05\\v\\x01\\x05\\f\\x16\\r\\b&>(D\\xeb(\\x06\\n\\n\\x06(\\a\\t\\t}\\n\\n\\x1c\\x04\\x06\\n\\x82\\t\\x16\\t\\t\\x16\\tp\\a\\x04\\x1a\\x04\\a\\a\\x04\\x19\\f\\x90\\a\\x05(\\x05\\a\\a\\x10\\x05\\t\\x05\\x15\\x13\\x0f\\t,5\\r\\b\\x04\\x0f+\\x1f\\x11Y1+9%\\x02\\\"\\x03>,%\\x1c\\x06\\x06)\\x1d&\\\"\\x14\\x14.\\v#@/\\x04\\t4\\bC\\x17\\x1a\\x02\\x06\\x0e3\\x1d\\b\\x0e\\f\\n\\n\\x06\\b\\x04\\a\\x01\\x169\\x0e\\x163$\\x0f\\r\\x1e\\xa1\\n\\x06(\\x06\\n\\n\\x06(\\x06\\n(\\n\\x1c\\n\\x06\\x04\\x1c\\n\\x19\\x16\\t\\t\\x16\\tT\\x18\\x05\\a\\a\\x05\\x18\\x05\\a\\x00\\x00\\x00\\x00\\x06\\xff\\xfb\\x00\\u007f\\x02\\x81\\x01\\r\\x00\\x1c\\x002\\x00S\\x00^\\x00w\\x00\\x9b\\x00\\x007\\x16\\x0e\\x02+\\x0176;\\x0126'&+\\x01\\a\\x06+\\x0176;\\x012\\x1e\\x02\\a\\\"\\x06\\x16;\\x012\\x1e\\x01\\x15\\a#\\\"&7>\\x01;\\x01\\a\\x06#72\\x16\\x0f\\x01\\x06+\\x01\\\".\\x01>\\x01;\\x01\\a\\x06+\\x01\\\"\\x14;\\x012?\\x016+\\x01\\\"&?\\x01%2\\x16\\x15\\a\\x0e\\x01#763\\a2\\x1e\\x01\\x0f\\x01\\x06+\\x01\\\"&576&+\\x01\\a\\x06+\\x01\\\"&?\\x01\\x173\\a\\x06+\\x01\\\"&?\\x01>\\x02;\\x012\\x16\\x0f\\x01\\x06+\\x0176;\\x012?\\x016+\\x01\\\"\\x0f\\x01\\x06\\xd2\\x03\\x05\\x0e\\x16\\r \\x06\\x03\\v\\v\\t\\v\\x02\\x03\\x0f\\x14\\x1a\\x03\\v\\x19#\\x03\\v%\\t\\x11\\r\\n\\x9a\\f\\n\\n\\f\\v\\x02\\x04\\x01\\b\\f\\x19 \\a\\x05\\x1c\\x12(\\x06\\x03\\f\\xe5\\x0f\\x11\\x03\\x0e\\x05\\x139\\f\\x10\\x03\\x04\\x10\\f0\\x04\\x03\\v\\x15\\x04\\x04#\\x04\\x01\\t\\x01\\x03:\\a\\t\\x02\\x03\\x01\\x9a\\x03\\x04\\x1b\\x04\\x19\\x10$\\x02\\b\\xd9\\x11\\x1a\\f\\x05\\t\\x02\\b\\x13\\x03\\x04\\v\\x03\\f\\t\\x14\\x11\\x02\\b\\x13\\x04\\x04\\x01\\x1a\\x93I\\x05\\x04\\vB\\x0f\\x11\\x04\\n\\x03\\v\\x10\\t/\\x0f\\x11\\x04\\x03\\x04\\x135\\x03\\x03\\v\\x16\\x03\\x01\\x01\\x01\\x05!\\a\\x01\\b\\x02\\xe4\\v\\x17\\x13\\r\\x18\\v\\x0e\\t\\x0e_\\v\\x82\\v\\x06\\v\\x0f%\\x13\\x13\\x02\\x04\\x02\\x1a(\\x19\\x14\\x15\\x17\\v#\\x17\\x0e4\\x12\\x0e\\x12\\x13\\r\\r\\v\\b\\x06\\x1f\\x06\\v\\a\\x0e\\\"\\x05\\x03c\\x0f\\x13\\x85\\b#\\x12\\x1f\\x10!\\b\\x05\\x03(\\t\\x0f@\\b\\x05\\x03bJ\\x15\\v\\x17\\x0e(\\b\\x0e\\a\\x16\\x0e\\f\\x12\\r\\v\\x03\\x02\\x05\\x06\\x1e\\x06\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x04\\x00\\x18\\x00\\x00\\x11!\\x03\\a'\\x01#\\x173\\x0f\\x01\\x171\\x17\\x0f\\x01/\\x01#\\x1f\\x01?\\x01#7\\x01\\x80#\\x9d\\x9d\\x01\\x16\\xf2\\x06{\\ap\\x04\\xa6\\x0465\\x031\\x06cb\\ros\\x01\\xa0\\xfet44\\x01</\\x03/.\\x01=\\x0f\\r&J\\x1d\\x1d\\x922\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xaf\\x01\\xb8\\x00\\x1a\\x00\\x00%\\x16\\x17\\x0e\\x01#\\\"&4632\\x16\\x17\\x06\\a.\\x01#\\\"\\x06\\x14\\x1632>\\x01\\x01X\\x16A#_5g\\x91\\x91g5_#A\\x16\\r6\\x1d*>>*\\x13&\\x1e\\x8eR#&+\\x91Α+&#R\\x17\\x1f>T>\\x0e\\x19\\x00\\x00\\x00\\x06\\x00\\x16\\xff\\xbb\\x02*\\x01\\xc3\\x00.\\x00y\\x00\\xab\\x01\\f\\x01\\x96\\x01\\x9c\\x00\\x00\\x13&7\\x16\\x1767\\x06\\x17676\\x17\\x16\\x17\\x16\\a\\x06\\a.\\x01'&'&76'&'&\\x06\\a\\x06\\x17\\x14\\x15\\x06\\x170\\x1d\\x01&'\\x06\\x17&\\x050\\x17&\\a\\x06\\a\\x06\\a&'&\\a\\x06\\x0f\\x01\\x141.\\x01'241676727\\\"#\\x06\\a\\x06\\a0\\a0'67\\x161\\x06\\x15\\x06\\a\\x06327>\\x047213\\\"\\a\\x06\\a\\x06\\x16767676\\x17\\x16\\a\\x16\\a\\x06\\a\\x06'&'4.\\x015\\x06\\x1701&'&'&7\\x06\\a67\\x16\\a\\x06\\x1767\\x06\\a6\\x17\\x06\\a\\x06\\x17\\x163276761\\x167\\x16\\x17\\x16\\x06\\a\\x06'\\\"#\\x167\\x14\\x06\\a\\x06\\a\\x06&'0'\\x0e\\x01\\x17\\\"'\\\"#.\\x0176&'.\\x03'&'&'4'.\\x02'&7\\x16\\x17:\\x01\\x163\\x16\\x17\\x16\\x17\\x16\\x1702\\x17\\x16\\x17\\x1e\\x02\\x17\\x163\\x166'45\\x16\\x15\\x1e\\x01\\a\\\"\\a\\x163\\x167>\\x01'&'6%&'6\\x17&7\\x16\\x17\\x1e\\x01\\x17\\x16\\x174&5&'&5&76767\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17&'&'&'&767\\x161\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x16\\a\\x14\\x17\\x16\\x1567\\x16\\x0e\\x02\\a6'&'6'&\\x06\\a2\\x17\\x06\\x15\\x06\\x167263\\x06\\x15\\x14\\x167\\x0e\\x01'67\\x06\\a'676&'&\\a67&'67.\\x01\\x06\\a\\x16\\x17\\x06\\a4>\\x0256'&'&\\a\\\"#>\\x0276\\x17\\x1e\\x027&R\\x01\\x0e\\x01\\x03\\t\\\"\\x04\\x01\\x15\\x17\\x15\\x158\\x0e\\a\\x0f\\t\\f\\x01\\x04\\x01\\x1c\\t\\x02\\x02\\f\\x02\\x02\\n\\v\\x1f\\v\\x10\\x05\\x06\\x03 \\v\\r\\x06\\x14\\x01\\xd4\\x02\\x12\\x1b\\x0f\\v\\x02\\x06\\x10\\x02%\\x19\\x1b\\x14\\x01\\x02\\x1a\\t\\x01\\\")\\x1a\\x1a\\x03\\x02\\f\\x01\\x1c\\x1f\\x16\\x0e\\x01\\x01\\x10)\\x01\\x03\\x04\\x01\\x02\\x04\\x04\\x06\\x03\\r\\a\\n\\n\\x06\\x01\\x03\\x01\\x01\\r\\x02\\x02\\x03\\x03\\x05\\x03\\x10\\r\\x14\\x14\\x17\\xda\\x02\\x01,H+#\\x1e\\x12\\x02\\x03\\x01\\x02\\t\\x01\\x11\\a\\f\\x14\\v\\r\\x0f)\\x04\\x01\\x06\\x01\\x1b%\\n\\x01\\x17\\x17 \\a\\b\\x11\\x11 \\x10\\x12\\x1a\\x12\\x02\\x06\\xd1 \\v\\a\\t\\x0f\\x18!\\x01\\x01\\x18\\x1b\\x05\\x01\\x11\\x1a\\x1e0\\a\\x01\\t\\x02\\v\\x01\\x01\\x01\\x01\\x10\\x12\\x01\\x02\\x04\\v\\x06\\x0e\\n\\x0f\\x05\\x0e\\x03\\x01\\x01\\b\\x02\\x04\\x06\\x01\\x10\\b\\x04\\x13\\x01\\x06\\x04\\x02\\f\\x02\\x02\\x01\\x02\\b\\v\\x03\\v\\t\\t\\x13\\x18\\a\\t\\n\\r\\x0f\\x03\\a\\n\\x06\\a\\x01\\a\\x01\\x01\\x17\\x10\\f\\x03\\t\\x06\\r\\f\\xfe\\x8b\\x06\\x10\\x17\\x11\\n\\x05\\a\\x11\\x06\\\"\\x06\\x01\\t\\x02\\a\\x10\\x03\\x05\\x04\\x01\\x03\\x01\\x03\\x03\\x11\\b\\x1a\\x13\\x06\\x03\\x01\\x06\\x12\\f\\x11\\x04\\x01\\x02\\x06\\x01\\x01\\x01\\x03\\x12\\x17\\x04\\x02\\x12\\a\\b\\x02\\x01\\n\\t\\a\\x02\\x04\\a\\f\\x06\\x02\\x13\\x02\\x15\\v\\n\\x14 \\x06\\x10\\b\\x06\\x02\\x06\\x05\\x01\\x02\\x01\\x03\\v\\x04\\x01 \\f\\f\\x04\\n\\t\\x01\\a\\x04\\x06\\x0f\\x10\\x0f\\v\\t\\x17\\f\\f\\x13\\x1b\\x05\\x15\\\"\\n\\x04\\x13 \\x1e\\x01\\x01\\x01\\x01\\x01\\x02\\x11\\t\\x0f\\x02\\x01\\a\\x13\\x15\\x06\\b|\\x01\\a\\n\\x06\\b\\x01]\\x1e\\x12\\r\\b)\\x18\\v\\x06\\x12\\x04\\x04\\x05\\r;\\x1e%\\x13\\x10\\x01\\x04\\x01\\x1b\\n\\x02\\x02\\x15\\x17\\x10\\n\\f\\x01\\v\\x12\\x1a\\x03\\x01\\x16\\x14\\x01\\x01\\x10$\\x1c\\x1a\\x14X\\x02\\x04\\x05\\x04\\x05\\x01\\x04\\x06\\x01\\b\\x1c\\x1e-\\x02\\x01\\x01\\x16\\x03\\x01.\\x19\\x0f\\x03\\x01\\x03\\x11\\r\\x11\\x02\\x01-\\x1d\\x01\\x04\\x01\\b\\x02\\x05\\x04\\x03\\v\\x05\\x06\\x04\\x01\\x01\\t\\x03\\x03\\x05\\x01\\x01\\x01\\x06\\x01\\x01\\t\\t\\xc1\\x01\\x03V\\r\\a\\x10\\r\\x17\\x01\\x02\\x04\\x01\\n\\f\\t\\x01\\x15\\x1f15\\x06\\v+*\\x03\\x05\\x1f\\r\\x1c\\x10\\x10\\x16\\x16\\b!\\x1f$\\x1b\\x1b\\v\\x12\\x1e\\x03\\x05\\x10\\v\\x1c\\x11%\\f\\x14\\x02\\x11\\a\\x01\\x05\\x01\\x0f\\x05\\x05\\x1e \\a\\a\\x1f\\x0f\\x01\\a\\x1b\\x12\\x10\\x1e\\n\\x04\\f\\b\\r\\x04\\v\\x0e\\x04\\n\\t\\x06\\x01\\x04\\x04\\x02\\r\\x11\\x12\\x03\\x01\\x02\\f\\t\\x01\\b\\x01\\x01\\x01\\a\\b\\x10\\x13\\x06\\b\\x01\\x14\\r\\x01\\x01\\x05\\x01\\n!\\r\\n\\x01\\x02\\v\\b\\x1b\\v\\x06\\x06\\x02\\xa7\\v\\n\\x01\\x05\\x12\\x15\\x10\\v\\x04\\x14\\x06\\x01\\n\\x01\\x04\\x01\\x0f\\n\\x02\\x03\\x11\\x14\\x05\\v\\x04\\x03\\x1c\\x12\\b\\x19\\x12\\b\\x04\\x01\\x10\\x12\\v\\x10\\x04\\a\\x10\\x0e\\x01\\x02\\v\\x0f\\x16\\x15\\x04\\x02\\x11\\x0e\\x0f\\x0f\\x01\\x01\\x04\\n\\x03\\v\\a\\x12\\x11\\r\\x03\\x18\\x03\\x01\\x02\\x14\\x02\\x02\\x04\\x03\\x03\\x12\\x01\\x05\\b\\x04\\x02\\x10\\x02\\a\\x02\\x02\\t\\x12\\x01\\b\\n\\x01\\x02\\x01\\x05\\b\\x10\\x17\\x01\\x01\\x06\\x16\\f\\x04\\x03\\f\\x02\\x01\\x01\\f\\v\\x01\\x03\\t\\x1b\\x02\\x04\\x03\\x04\\x02\\a\\x06\\x0f\\x02\\x01\\x03\\a\\v\\v\\x05\\x06\\x12\\b\\v\\x06\\x01\\x11\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x10\\x00\\x1c\\x00.\\x00:\\x00J\\x00Z\\x00\\x00\\x013\\x15#5\\x0e\\x01'.\\x0154676\\x16\\x17\\a\\x14\\x162654&#\\\"\\x0e\\x01'3\\x15#5\\x0e\\x01'.\\x0254676\\x16\\x17\\a\\x14\\x162654.\\x01#\\\"\\x06%!\\\"\\x06\\x15\\x11\\x14\\x163!265\\x114&'2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01~44\\x0e-\\x0f\\x14\\x18\\x17\\x14\\x0e.\\x0f@\\x12\\x1d\\x13\\x13\\x0e\\n\\x0f\\b\\x8244\\r.\\x0e\\r\\x14\\f\\x17\\x15\\x0e-\\x0f@\\x13\\x1c\\x13\\b\\x10\\t\\x0e\\x13\\x01D\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\x13\\r\\x1a&&\\x1a\\xfe\\x80\\x1a&&\\x1a\\x018\\xf0\\x15\\x11\\x06\\b\\t&\\x19\\x17'\\t\\b\\x05\\x10:\\x0e\\x13\\x14\\r\\r\\x14\\n\\x0f\\x9a\\xf0\\x15\\x11\\x06\\b\\x06\\x15\\x1d\\x10\\x17'\\t\\b\\x05\\x10:\\x0e\\x13\\x14\\r\\b\\x0f\\n\\x14\\xbd\\x13\\r\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\r\\x13 &\\x1a\\xff\\x00\\x1a&&\\x1a\\x01\\x00\\x1a&\\x00\\x04\\xff\\xfe\\xff\\xbf\\x01\\xe0\\x01\\xc1\\x00\\x18\\x00\\x1d\\x00G\\x00L\\x00\\x00\\x17767>\\x05454'.\\x02'3\\x14\\a\\x0e\\x01\\a\\x067#73\\x06'\\x15#\\a#\\\".\\x035&\\x06\\x17\\x16\\x17#\\\".\\x027547;\\x012\\x1e\\x02\\x15\\x14254'32\\x1e\\x02\\a\\x176&\\x06\\xce\\x1f\\x17\\x0e\\a\\r\\b\\x06\\x02\\x02\\x0e\\x03\\x03\\x06\\x03O\\n\\t4\\\"\\v\\xa0w\\x11\\xb0\\x1bZJ!\\x06\\x0f\\x16\\f\\a\\x02\\x01\\x14\\x01\\x03\\x17[\\f!&\\x19\\x01\\x0fR\\x01\\x03\\r\\x14\\x0e\\x14\\x10T&6\\x19\\n\\x85@\\a\\x18$@&\\x01\\x06\\x04\\v\\v\\r\\n\\t\\x05\\x01\\x04\\x10\\x03\\x04\\a\\x033\\x19\\x15+\\x05\\x01\\xa8\\x1f\\x1f\\xe0\\xa97\\f\\x0f\\x14\\t\\x03\\n\\x02\\n#\\x16\\f\\x18/\\x1f\\xd5\\x10\\x01\\x01\\a\\x14\\x10\\n\\n\\x1b\\x11\\x19)$J\\x1e\\x16\\x1f\\x03\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x02\\x01\\x01\\xc1\\x00\\x03\\x00\\a\\x00\\\"\\x00'\\x00\\x00\\x1753\\x15'3\\x15#%\\x16\\x0e\\x02#512>\\x01'.\\x01'&\\x0e\\x01\\x15#4>\\x02\\x17\\x1e\\x01\\x031#53WJ\\x88>>\\x01\\xd3\\x15\\x19Bj<3P\\x1c\\x11\\v-\\x1e7]<`6[v@8S\\xda__\\\"JJ\\x87=\\xe7@v[6`<]7\\x1e-\\v\\x11\\x1cQ2<jB\\x19\\x15\\x12S\\xfe\\xe1_\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\r\\x00\\x15\\x00%\\x00]\\x00\\x00$\\x14\\x06#\\\".\\x0154>\\x0232\\\"2\\x16\\x14\\x06\\\"&4%\\x11&'\\x17!\\\"&5\\x11463!2\\x16\\x034&/\\x01.\\x03+\\x01\\a\\x1e\\x01\\x1f\\x01.\\x01\\x0f\\x0167'\\\"\\a\\x0e\\x02\\x15\\x1e\\x02367.\\x01/\\x01\\x1e\\x021\\x1e\\x01767\\x06\\a\\x172>\\x027\\x01)\\x0f\\v\\a\\f\\a\\x04\\a\\n\\x05\\vs\\x16\\x0f\\x0f\\x16\\x0f\\x01(:=\\x0e\\xfe\\xdd\\x15\\x1f\\x1f\\x15\\x01X\\x15\\x1fI\\x12\\n\\t\\n\\x17\\x11\\x0e\\x04\\x04\\x03\\x13 \\x06\\x06,h+\\x0f\\x15.\\x02#%\\x04\\f\\x15\\x02\\v(\\x19\\n\\a\\x0e\\x17\\x04\\x04\\x02\\x05\\x04\\\"S+\\x0f\\x0e\\r!\\x11\\x10\\x1b\\x11\\r\\x02\\xd9\\x18\\x11\\b\\r\\b\\x06\\n\\b\\x04\\x10\\x18\\x11\\x11\\x18\\xb2\\xfe5390\\x1f\\x16\\x01Z\\x16\\x1f\\x1f\\xfe\\xf8$K\\x13\\x13\\b\\v\\x05\\x03\\x04\\x06\\x11\\x05\\x05\\x19\\x02\\x13\\b\\x14\\x0e\\x03\\x1b\\b\\x1aO$\\x05\\f\\x16\\v\\n\\x04\\x0f\\x06\\x05\\x01\\x03\\x02\\x13\\a\\x11\\x05\\n\\x15\\n\\x14\\t\\v\\v\\x04\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x17\\x00\\x00\\x132\\x16\\x14\\x06+\\x014546\\x13264&\\\"\\x06\\x15\\x14\\x17\\a7\\x16\\xe2\\\\\\x82\\x82\\\\\\xe2\\x86Z5KKjK\\x0f\\x17R\\x19\\x01\\xa0\\x84\\xb7\\x85\\xe0\\x04[\\x81\\xfe\\xa0KjKK5!\\x1cK\\x14\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xbf\\x01\\x90\\x01\\xc0\\x00\\x02\\x00\\x14\\x00\\x00\\x01#5\\x173\\x15\\x14+\\x01\\x1132\\x17\\x15&+\\x01\\x11325\\x01\\x8e\\x8e0`ӽ\\xbd\\x12\\x11\\x0f\\x12__q\\x01 \\x8c\\xac~\\xc2\\x02\\x00\\x03T\\x02\\xfe\\xafd\\x00\\x00\\x00\\n\\xff\\xfb\\xff\\xdf\\x02\\x80\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00-\\x001\\x005\\x009\\x00=\\x00\\x00%#535\\x15#5\\x17\\x15#5'\\x15#53\\x15#5\\x05\\x17\\x06\\x15\\x06'\\x0e\\x01#\\\"'.\\x017!27&6?\\x01\\x17\\x16\\x176\\x16%\\x15#53\\x15#53\\x15#5'\\x15#5\\x01^BBB\\x90BZB\\x90B\\x01W\\r\\b\\x19C)\\xa9vn8\\x1b\\x17\\x06\\x01\\xb3\\x1c\\x15\\x0f\\x04\\x0e\\t\\x0e%\\x05\\x13+\\xfe\\fB\\x90B\\x90B\\fB\\xd4;\\x91==\\x91;;H<<<<d\\t\\x0f\\x02.\\x01ciB!Z'\\v\\x18:\\x16\\x0e\\n\\x1b$\\x03\\x04\\x14;;;;;;H<<\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xe0\\x01\\xa1\\x00/\\x002\\x00:\\x00I\\x00\\x00%\\a5!6767>\\x02'.\\x01\\a\\x0e\\x01\\a\\x1e\\x03\\x15\\x14\\x06#\\\"&76767>\\x01\\x1e\\x03\\x17\\x1e\\x01\\x06\\a\\x06\\a35\\x17\\x157$4&\\\"\\x06\\x14\\x162\\a3676&/\\x01&'\\x16\\x17\\x16\\a\\x06\\x01\\xe0\\x90\\xfe\\xb0YH\\x03\\x06\\x15\\x17\\x14\\x03\\x040\\x1f\\a\\x13\\x01\\v\\x12\\f\\a!\\x18\\x1b\\\"\\x04\\x04\\x0e!H\\x1b)(\\x18\\x17\\b\\x03\\x0f\\x12\\x04\\x11\\\"M[\\\"/\\xfe\\xe5\\r\\x12\\x0e\\x0e\\x12'sZ&\\x10\\x02\\n\\t#0\\x0f\\n\\x14162R@]R\\x03\\a\\x18\\x1c/\\x12\\x17\\x17\\f\\x03\\x10\\x06\\x01\\v\\x0f\\x13\\v\\x17\\\"*\\x19\\x19\\x174\\x0f\\x04\\x02\\f\\t\\x10\\a\\x03\\x10.>\\x1d>XA76\\x1b\\xe3\\x13\\r\\r\\x13\\r\\xc4bD!3\\x0f\\x0f$\\x02\\f\\x184=B\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x06\\x00\\r\\x00\\x16\\x00#\\x00)\\x001\\x00A\\x00I\\x00\\x007>\\x017\\x16\\x17\\x067\\x06\\a&'6\\x16\\a>\\x027\\x16\\x17\\x06&7\\x0e\\x02\\a&5045\\x167\\x16\\x176\\x17\\x06\\a&'67\\x16\\x17&\\a&7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x024&\\\"\\x06\\x14\\x162Z\\a(\\x1d\\x1a\\x19C\\xa5\\x162\\x17\\x1c!@\\x95\\b\\x1c.\\x1a\\x15\\b KE\\x18.#\\f#DI\\a'-(\\t2\\a'4\\x18\\x1e\\x01/0\\x06\\xbc\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c@^\\x84^^\\x84\\xdc\\x1f3\\x0e$,\\x11K\\x1f\\x12+%\\a\\x10\\xe8\\x0f \\x1e\\t71\\x0e\\t\\x83\\a\\x1d$\\x14(4\\x03\\x01\\x02\\x15\\x0e\\x19\\a\\r:\\\".d\\x16 %0\\v\\x06\\x0e\\x9c\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\xfa\\x84^^\\x84^\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xa0\\x01\\xa0\\x00\\x16\\x00\\x00\\x1132\\x17\\x16\\x15\\x14\\x0e\\x02+\\x01532654&+\\x01\\x15#\\xabrE> <_:\\xab\\xabV_dQk@\\x01\\xa0F?[*P@&@a?@`7\\x00\\x00\\b\\xff\\xfb\\xff\\xc7\\x01\\xe1\\x01\\xb9\\x00\\r\\x00\\x19\\x00$\\x00,\\x00\\xb5\\x00\\xc6\\x00\\xd9\\x00\\xe8\\x00\\x00\\x01>\\x01\\x172\\x1e\\x02\\a&\\x0e\\x02&#&676\\x16\\x17\\x16\\x06.\\x02\\x162\\x16\\x14\\x06#\\\".\\x0154&2\\x16\\x14\\x06\\\"&4\\x05\\x06'\\x06\\a\\x14323\\x167.\\x01670\\x1e\\x01\\x17>\\x02\\x1e\\x01\\x06\\a636\\x17\\x16\\a\\\"\\a\\x06\\a\\x17\\x16\\x06'\\x14\\x06&5\\a\\x14\\\"5\\x06&?\\x01\\\"\\x0e\\x011\\\"&4632\\x1e\\x013&'\\x06'&676767.\\x03'\\x06547>\\x023>\\x03367.\\x01>\\x01\\x1e\\x01\\x17>\\x02\\x1e\\x01\\x06\\a\\x16\\x17\\x1e\\x01\\x172\\x1e\\x01\\x15\\x16\\x15\\x06'\\x14\\x06\\a\\x16\\x17\\x1e\\a\\x14%6.\\x02\\a\\x06\\a\\x06\\x16\\x17\\x1667>\\x02\\x174.\\x01'&\\\"\\a\\\"\\x0e\\x02\\a2\\x1632>\\x017&'&\\x0e\\x01\\x15\\x14\\x16\\x17\\x1e\\x017>\\x01\\x019\\x01\\x18\\f\\x01\\x06\\n\\x04\\x02\\t\\x10\\x0e\\v\\x06\\xc9\\x05\\x14\\x06\\r\\x1a\\x01\\x01\\a\\f\\x10\\x11\\xbf\\r\\t\\t\\a\\x04\\a\\x05\\x96\\r\\n\\n\\r\\t\\x01N\\v5\\x14j\\x02\\b\\x0e!@\\b\\x06\\x03\\x02\\b\\n\\x03\\x04\\x0e\\v\\x03\\x01\\x03\\a\\b\\x02\\x05\\x04\\x03\\t\\x02--H\\x01\\x02\\x1b\\x03\\r\\x0f\\x01\\x1c\\x06\\x16\\x01\\x02\\x11\\x1d\\x10\\b\\b\\b\\b\\x01\\x0f \\x0fb\\x119\\v\\x06\\x18\\\"\\n\\x05\\x01\\x01\\x05\\x05\\x02\\x02\\x02\\x17\\x02\\x01\\x05\\x06\\x01\\x02\\x10\\x1f\\x15\\x15$-\\a\\x01\\x04\\x02\\v\\f\\x02\\x03\\t\\a\\x02\\x02\\x03\\x056*\\\"(\\x03\\x01\\a\\x05\\x02\\x01\\x16\\x05\\x04\\x04\\x01\\x05\\x0e\\t\\f\\a\\b\\x04\\x03\\xfe\\xef\\x01\\r\\x16\\x1d\\x0f'\\a\\b\\x12\\r\\aG\\t\\x04\\a\\x043\\x06\\x05\\x04\\x01\\b\\x02\\x03\\x05\\x03\\x04\\x02\\t\\x0e\\x01\\x01\\x05\\b\\x8d\\x06(\\x15#\\x16\\b\\x05\\tH\\x06\\f\\x15\\x01\\x90\\n\\x04\\x05\\x03\\x05\\x05\\x02\\x02\\x02\\x03\\x02\\x05\\x03\\f\\x01\\x05\\x04\\n\\b\\x05\\x02\\x04\\x02l\\t\\x0e\\t\\x04\\b\\x04\\a\\t\\t\\x0e\\t\\t\\x0e\\x9a\\x1b\\x1ch\\x14\\x01\\x02\\n\\x06\\x13\\f\\x01\\x01\\x06\\x05\\x06\\a\\x02\\x02\\v\\x10\\a\\x02\\x02\\b\\x06\\x01\\v\\n\\x02\\f\\x0e\\x06\\x0e\\t\\b\\a\\v\\x05\\x0e\\x0e\\n\\a\\f\\f\\x02\\x01\\n\\f\\n\\x01\\x02\\x19]\\x1d\\x1c\\x0f\\x1a\\x16\\a\\x04\\n\\t\\a\\x10\\v\\x14\\a\\x04\\x1b\\f\\x03\\x01\\x01\\x01\\v\\x0e\\a\\x02(\\t\\b\\x14\\v\\x02\\x04\\f\\b\\x04\\x05\\x02\\x01\\b\\r\\x04\\x05.\\x01\\x0e\\x13\\x01\\x01\\x01\\x03\\f\\x1a\\x03\\x02%\\t\\x11\\x13\\x04\\t\\x06\\t\\x06\\a\\a\\b\\a\\x9f\\x10\\x13\\x05\\x02\\x02\\x01\\r\\x0fO\\a\\x04\\x01\\n\\x05\\x1a\\x1c1\\x02\\x14\\t\\x01\\x01\\x01\\t\\t\\x0e\\x05\\t\\x05\\bU\\r\\x01\\x01\\x01\\x13\\x15\\x0f.\\a\\n\\x02\\x05\\x06O\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xf5\\x02\\x80\\x01\\x8b\\x00\\x06\\x00\\r\\x00\\x0e\\x00\\x1e\\x00\\x00\\x13\\x06\\x15\\x14\\x17#\\x11\\x052\\x16\\x17#>\\x01%13\\x11#67'\\x06\\a.\\x015!456WANd\\x01E#-\\x01\\xaa\\x033\\x01\\nTQ \\x1a`AWGD\\x01u\\x03\\x01\\x8aOq\\x81S\\x01\\x94\\t.%$/\\t\\xfek\\\"/0i\\x01\\x01jY\\x10\\b_\\x00\\x01\\x00\\x16\\xff\\xc0\\x01*\\x01\\xc0\\x00\\x17\\x00\\x00%#\\x15#5#5354>\\x0132\\x16\\x1f\\x01\\x15#\\\"\\x06\\x1d\\x013\\x01\\x17KdQQ\\x1e7$\\x10$\\n\\n(\\x1c\\x19Y\\xa0\\xe0\\xe0]F(8\\x1d\\x03\\x02\\x01O\\x1d\\x15<\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00'\\x00B\\x00\\x00\\x012\\x16\\x15\\x14\\x0e\\x01'&*\\x02\\x0e\\x05\\a\\x06#\\\"&5<\\x01&<\\x01.\\x03'&54>\\x02\\x176&\\x0f\\x01\\x06\\\"/\\x01&#\\\"\\x0f\\x01\\x06\\x1e\\x01?\\x0162\\x1f\\x01\\x16327\\x01\\x01i\\x8e`\\x93L\\x02\\x02\\x02\\x04\\x03\\x05\\x05\\n\\b\\x0f\\a\\x04\\x04\\b\\f\\x01\\x01\\x01\\x02\\x01\\x02N'B\\\\\\xc9\\x05\\x0e\\bO\\x04\\n\\x04:\\n\\f\\x15\\vI\\x03\\x05\\n\\x05O\\x04\\n\\x04:\\n\\f\\x15\\v\\x01\\xb8\\x89hT{-\\x15\\x01\\x01\\x02\\x03\\x04\\x04\\x06\\x03\\x02\\v\\b\\a\\x0e\\t\\t\\x05\\x05\\x03\\x03\\x02\\x01Fl3Z?%\\xb9\\b\\r\\x06;\\x03\\x03,\\a\\x11t\\x05\\v\\x03\\x03<\\x03\\x03,\\a\\x11\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x15\\x00\\x1b\\x00#\\x00\\x00\\x01#\\x15#\\x15#535353\\a3\\x15#\\x15#5353\\x17\\x15#\\x15#5\\x01!\\x15#\\x15#\\x15#\\x01\\x80@\\x80\\xc0\\xa6\\x80Z\\x1a\\x1a\\x80\\xc0\\xa6\\x80\\x1a@\\x1a\\xfe\\xda\\x01\\x80\\x80\\x80\\x80\\x01\\x00\\x80\\x80\\x1a\\x80\\x80@\\x9a\\x80\\x1a\\x80@\\x1a@Z\\x01\\xa6\\x80\\x80\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xdd\\x01\\x80\\x01\\x8d\\x00)\\x00<\\x00K\\x00\\x0073\\a#\\x15\\x14\\x15\\x06\\x1f\\x01\\x15#576=\\x014+\\x015354632\\x16\\x15\\a4&#\\\"\\x0e\\x01\\x1d\\x01\\x14\\x0e\\x01\\x14\\x01#576=\\x014/\\x0173\\x15\\x14\\x15\\x06\\x16\\x1f\\x01\\x03\\x17\\a'\\a'7'7373\\x173\\x17r]\\x0fM\\x01\\x06;\\xb3\\x1d\\t\\b\\x1e&55*/E\\n\\r\\f\\f\\x02\\x01\\x01\\x01\\x0f\\x8d\\x1c\\v\\n!\\tn\\x01\\x02\\x03\\x16\\x1e\\f\\n*+\\n\\f\\x1e\\x05&\\x15\\r\\x15&\\x05\\xe03\\x9e\\x02\\x03\\x04\\x01\\x06\\\"#\\x03\\x01\\n\\x9c\\x033\\x1d2.\\x1f*\\b\\x13\\r\\n\\x0e\\x0e \\x01\\x02\\x02\\x01\\xfe\\xfd\\\"\\x04\\x01\\t\\x94\\b\\x03\\t(\\xd0\\x02\\x04\\x02\\x01\\x01\\x04\\x019-\\n\\x16\\x16\\n-%\\n&&\\x0e\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\v\\x00\\x17\\x01Q\\x01\\xb5\\x00\\x0072\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x01437\\x16\\x15\\x14\\x15\\x14\\x15\\x14\\x150\\x141\\a0\\x141\\x14\\x15\\x1c\\x01\\x06\\x150\\x141\\x06\\x150\\x141\\a0\\x15\\x14\\a\\x1c\\x01\\x15\\\"\\x140\\x06\\x1c\\x01\\x06\\x1c\\x01\\x061\\x14\\a\\x14\\x15\\\"\\x141\\x06\\x15\\x06\\a\\x14\\a0\\x06\\x14\\x061\\x0f\\x01\\x15\\x06\\x15\\a\\\"\\a\\x1c\\x01\\x0e\\x01\\x15\\x061\\x14\\x06\\a1\\x06\\a\\x141\\x0e\\x01\\x150\\a\\x06\\x14\\x0610\\x06\\x15\\x061\\x14\\x06\\x15#\\x06\\a0*\\x02\\x06*\\x021\\x06#*\\x031\\\"#\\\"\\x06*\\x01#\\\"#0\\\"1*\\x01#\\\"#*\\x02#0*\\x01&*\\x051&#\\\"#*\\x011&#*\\x01#&'05&'4.\\x01#04'.\\x015.\\x0114\\\"5&'014&5&4&4&4&5'\\\"&<\\x01/\\x010&1&54'4&'45\\\"41&54&<\\x01&41&5<\\x01&<\\x01&504'41'041&5041<\\x01545&504145041<\\x01'45<\\x0154767676767676767632\\x17\\x16\\x170\\x161\\x16\\x17\\x16\\x17\\x16\\x0354+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54#5632\\x1632=\\x014#\\\"\\x06#\\\"&#\\\"\\a5654\\\"\\x15\\x14\\x17\\x15\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01\\x16\\x17\\x16\\x17\\x16\\x17546\\x16\\x1d\\x0167676\\xd0\\x04\\x04\\x16\\x04\\x04\\x8c\\x04\\x04\\x16\\x04\\x04\\x9a.\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x04\\x03\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x02\\x01;e\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x03\\x02\\x01\\x04\\x01\\x04\\x02\\x01\\x02\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\x01\\x02\\x01\\x01\\x02\\x01\\x02\\x01\\x01\\x01d<\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x04\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01.\\x03\\x04\\b\\b\\x04\\x04\\x06\\x03\\a\\a\\x03\\x02*3\\x18\\x1a\\x19\\x193+\\x04\\b\\x06\\x12\\x0f\\x03\\x06\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x1d\\n\\f\\t\\x05\\x10\\x05\\x16\\x04\\x02\\r\\x04\\x04\\x12\\x05\\b\\v\\b\\x1a\\b\\n\\x1d\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x1d\\x04\\x16\\x04\\x0e\\x14\\x1f(\\x15\\x16,,\\x16\\x15(\\x1f\\x14\\xd3\\x044\\x03\\x034\\x04\\x044\\x03\\x034\\x04}AO\\x04\\x02\\x01\\x01\\x01\\x03\\x02\\x01\\x02\\x03\\x01\\x02\\x01\\x02\\x01\\x02\\x03\\x01\\x02\\x06\\x01\\x02\\x02\\x01\\x01\\x01\\x03\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\x02\\x01\\x02\\x03\\x02\\x01\\x02\\x01\\x02\\x03\\x01\\x01\\x02\\x01\\x03\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\b\\x04\\x01\\x01\\x02\\x01\\x01\\x03\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01V\\x11\\x01\\x01\\x01\\x01\\x01\\x01\\x11S\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x04\\b\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x01\\x03\\x02\\x02\\x01\\x02\\x01\\x01\\x03\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x03\\x01\\x01\\x06\\x02\\x03\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\x02\\x02\\x02\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x04\\x01OA\\x04\\x05\\n\\b\\x04\\x05\\x05\\x03\\x05\\x06\\x02\\x01\\x1e\\v\\x05\\x05\\n\\x1f\\x03\\x06\\x05\\x10\\x13\\x03\\xfe\\xf6H\\x04\\x04\\x1a\\x90\\x04\\x04\\x1a\\x1a\\x04\\x04\\x1a\\x1a\\x04\\x1e\\x03\\x03\\x061\\x03\\x03\\x03\\x02\\x04\\x03\\b\\r\\r\\b\\x03Z\\x04\\x1a\\x1a\\x04\\x04\\x1a\\x1a\\x04\\x04\\x90\\x1a\\x04\\x04H\\x17\\x13\\x1f\\x11\\t\\x05L\\x1c\\x17\\x17\\x1cL\\x05\\t\\x11\\x1f\\x13\\x00\\x03\\xff\\xf0\\xff\\xe3\\x01\\xcb\\x01\\xac\\x00\\t\\x00\\x0f\\x00(\\x00\\x00\\x01>\\x01\\x16\\x06\\a\\x06.\\x02'\\x06\\a&76\\x0567\\x16\\x15\\x14\\x06\\\"&54>\\x0132\\x17\\x06\\a&\\x06\\x17\\x1e\\x0176\\x010\\x0fm\\x1e5\\x0f\\t%#\\x0e\\xb90\\x1c1\\x15\\x14\\x01}\\x06\\x05\\x1b~\\xb3~:c;4/\\t\\n\\x14\\t\\x0e\\x11M\\x0f\\b\\x01`\\x0f5\\x1em\\x0f\\t\\x0e#%%\\x1e1U\\x15\\x14\\x99\\n\\t19Y\\u007f\\u007fY;c:\\x19\\x05\\x06\\x03\\x1c\\x18!4\\x0f\\b\\x00\\x03\\x00\\b\\xff\\xc4\\x02H\\x01\\xc0\\x00l\\x00w\\x00\\x83\\x00\\x00\\x01\\x16\\x15\\x14\\x06\\a5\\x06'\\x15.\\x015476\\x17\\x16\\a\\x06\\x15\\x14\\x16\\x175&'\\x15.\\x0254676\\x17\\x16\\a\\x0e\\x01\\x15\\x14\\x16\\x175.\\x02547.\\x03=\\x0146723\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x03\\a\\x16\\x15\\x14\\x06\\a\\x15>\\x0154&'&76\\x17\\x1e\\x02\\x15\\x14\\x06\\a5\\x06\\a\\x15>\\x0254'&76\\x06\\\"\\x06\\x15\\x14\\x1e\\x013264\\a2>\\x0254&\\\"\\x06\\x14\\x16\\x026\\x12\\xa1s\\f\\fs\\xa1\\x12\\x05\\v\\n\\x04\\x11\\x84b\\v\\f5T1E9\\v\\x05\\x05\\n4>N>\\a\\v\\a\\x12\\x03\\x0f\\x0f\\fd\\x1d\\x04\\x04\\x1dd\\b\\v\\f\\v\\x03\\x12\\x0e\\v>N>4\\n\\x05\\x05\\v&8 iQ\\f\\v@i=\\x11\\x04\\n\\v\\xb9\\x14\\x0e\\a\\n\\a\\n\\x0e\\xa4\\x05\\t\\x06\\x04\\x0e\\x14\\x0e\\x0e\\x01J15t\\xa7\\x04\\x92\\x01\\x01\\x92\\x04\\xa7t51\\v\\x05\\x04\\n-1d\\x95\\r|\\x02\\x04h\\rDc8Dr \\x06\\v\\n\\x05\\x1dg>Eo\\x19\\\\\\x03\\t\\x0e\\b\\x14\\n\\x1b \\b\\t\\b\\x0f\\x1e\\x85\\x02\\x02\\x85\\x1e\\x0f\\x06\\b\\a\\f\\x1d\\x16\\n\\x14\\f\\x12\\x04\\\\\\x19pE=g\\x1d\\x05\\n\\v\\x06\\x15@S-V\\x84\\x13h\\x04\\x02|\\bJrC0-\\n\\x04\\x05\\xa9\\r\\n\\a\\v\\x06\\x0e\\x14\\\"\\x04\\x06\\t\\x05\\n\\x0e\\x0e\\x14\\x0e\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x90\\x01\\xa0\\x00\\x19\\x00\\\"\\x00\\x00%2\\x1e\\x02\\x17\\x06#\\\"&54632\\x17\\a&\\\"\\x06\\x14\\x16327572\\x16\\x1d\\x01&+\\x015\\x01D\\x13\\x1c\\x0e\\x06\\x01Dg]\\x80\\x81\\\\[A?&nNN74&\\x01%3\\x184v\\x80\\x10\\x1a\\x17\\rR\\x84\\\\]\\x83B?'NpN$\\\"q50\\x1e*Y\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00 \\x00L\\x00\\x00\\x01\\x16\\x0e\\x01\\a\\x0e\\x01'.\\x017>\\x0132\\x1e\\x017\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a45#\\x15\\\"'.\\x01#\\\"\\x06\\a\\x06\\x15\\x1e\\x017670703\\x1c\\x01\\x15\\x14\\a\\x06\\a\\x06'&'4+\\x01\\x16\\x17\\x1e\\x0176\\x01,\\x03\\x06\\x12\\x0f\\x10*\\r\\x1a\\x17\\x02\\x03,\\x1d\\x17!\\x13\\x97!\\x17\\xfe\\xb0\\x17!!\\x17\\x01P\\x17!v\\x1d\\x01\\x01\\b(\\x1c&4\\n\\x06\\x01<4.\\x17\\x01\\x01\\a\\f!\\x1b\\x1a#\\x06\\x02\\x1b\\x01\\a\\x11O!C\\x01\\x01\\x14%!\\v\\v\\x02\\a\\r5 *-\\x14\\\"O\\xfe\\xb0\\x17!!\\x17\\x01P\\x17!!\\xf8\\\"\\xb7(\\x01\\x12\\x1c*$\\x15\\x18:<\\x02\\x02,\\x02\\x04\\x1a\\x04\\x19\\x13 \\a\\x06\\a\\n \\x01\\x11\\f\\x1d\\x13\\n\\x11\\x00\\x00\\x00\\x02\\x00\\x1c\\xff\\xbf\\x01c\\x01\\xc1\\x000\\x00?\\x00\\x0073232\\x15\\x16\\x17\\x167676564/\\x01\\x14\\x06\\x15\\x0e\\x01\\a\\x06.\\x01'47>\\x0132\\x1e\\x01\\x17\\x16753\\x13\\x06\\a\\x06.\\x01'&\\x13\\\"\\x06\\a\\x06\\x16\\x17\\x1667>\\x01'.\\x01+\\x02\\x1a\\r\\x03\\n5'*2\\x12\\v\\x01\\x01\\x01\\x02\\x117\\\"3L+\\x02\\t\\x10O;\\x1c2\\x1e\\b\\x01\\x01,\\x01\\x01f%IE\\x11\\v\\x90+D\\x04\\x03\\\"(\\x14A\\x18\\\"\\x1b\\a\\a<-\\x030\\x0f\\v\\t\\v1\\x1c'\\a*\\x03\\x01\\x01\\x03\\x01 #\\x02\\x02'Q;% 7@\\x17\\x1e\\x11\\x03\\x01=\\xfe\\xb4\\x89\\x19\\a\\x01\\\"\\x1d\\x13\\x01\\x89EA1Q\\x13\\v\\x03\\x11\\x17U.8@\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x00%\\x033\\x13\\x05!\\a!\\x13\\x17\\x03'\\x01S\\xa4\\xa2\\xa3\\xfe\\xd6\\x016Q\\xfe\\xca!S\\x9cQ\\x85\\x01\\x1b\\xfe\\xe5\\x17\\x8e\\x01\\x9d\\x8e\\xfe\\xf1\\x8e\\x00\\x00\\x04\\x00\\x19\\xff\\xc0\\x01\\xe8\\x01\\xc0\\x00\\x02\\x00\\t\\x00\\x10\\x00\\x13\\x00\\x00%'\\x05%\\t\\x01&5\\x114\\x05\\x1e\\x01\\x0f\\x01'7\\x017\\x17\\x01E\\xdc\\x01\\x18\\xfe\\xae\\x01\\x01\\xfe\\xff\\x16\\x01\\xbf\\x0e\\x01\\x0e<AA\\xfe\\xcc\\xdc<\\xd6ݡ\\xae\\xff\\x00\\xff\\x00\\v\\x18\\x01\\xba\\x18\\xd7\\n(\\n\\\"@@\\xfe\\xcd\\xdd<\\x00\\x02\\x00 \\xff\\xc8\\x01@\\x01\\xb8\\x00*\\x00Q\\x00\\x007\\x14\\x1e\\x06\\x15\\x16\\x17\\x1e\\x02\\x15\\x14\\a4654'.\\x0254>\\x0354'\\x1e\\x02\\x15\\x14\\x0e\\x027\\x16\\x15\\x14\\a\\x061\\\"&5>\\x0254'\\x0e\\x02#\\\".\\x045470>\\x0254/\\x01\\x1e\\x01p\\x02\\x02\\x06\\x02\\b\\x02\\v\\x02\\x03\\r\\x0e\\f\\x11\\x05O\\x15\\x18\\x15\\x1e,+\\x1e\\x01\\x04\\x12\\x12!(!\\xce\\x02C\\x03\\x04 \\x05\\x0e\\x17\\t\\x01\\x1c\\x1c\\x01\\x01\\x03\\x04\\x04\\x04\\x02\\x03\\x13\\x14\\x11\\x03\\x04\\x13D\\x93\\x05\\v\\a\\v\\x05\\r\\x02\\x0f\\x01\\x02\\x04\\x12\\x14\\x1e\\f\\x19\\x16\\x02\\x0f\\x05\\x1f8\\x12\\x19*\\x17 >105\\x19\\x05\\x05\\x02\\x17,\\x15\\x1b9)6\\x0f\\r\\fCF\\x02-\\b\\x06\\x154\\x12\\x11\\x10\\x0e,\\x1d\\x03\\x06\\b\\t\\v\\x05\\b\\b\\x1b *\\x0f\\n\\a\\a\\aP\\x00\\x12\\x00\\x02\\xff\\xc0\\x01~\\x01\\xc1\\x00&\\x00-\\x00O\\x00V\\x00d\\x00\\xf2\\x01\\x04\\x01\\x11\\x01#\\x010\\x01\\x9c\\x01\\xa8\\x01\\xae\\x01\\xba\\x01\\xc0\\x01\\xcd\\x01\\xd7\\x01\\xe5\\x00\\x00\\x1367&'6\\x17\\x1e\\x01?\\x01\\x14\\x06#\\x16\\x0e\\x02\\x0f\\x0164>\\x014'&'\\x06.\\x01'&'\\x06\\a4.\\x017\\x06\\x16\\x17\\x167&\\x17\\\"&5\\x1676\\x17\\x06\\a\\x16\\x17\\x14\\x06\\x0f\\x01&'\\x06\\a\\x0e\\x02&'\\x06\\a\\x06\\x16\\x1f\\x01.\\x027\\x06\\a\\x167>\\x01\\a2\\x16\\a\\x06\\a\\x06\\\"'&'&637\\x1e\\x02\\a\\x06\\a\\x06\\a\\x06#\\\"'&'.\\x01'&6?\\x01\\x16\\x17654&'&'.\\x0254746165>\\x01'&767674765&'.\\x02#'7632\\x17\\x16\\x1763&670\\x14\\x1e\\x01\\x1767\\x06\\x17>\\x013\\x17\\x0e\\x02\\x17\\x16\\x1767632\\x1e\\x01\\x15\\x17\\a\\\"\\x0e\\x01\\a\\x06\\x15\\x06\\x17\\x14\\x152\\x17\\x16\\x17\\x16\\x0e\\x01\\a\\x06\\x16\\x17\\x16\\x172\\x17\\x16\\x15\\x14\\x0e\\x01\\a\\x06#\\x0e\\x01\\x15\\x14\\x176\\x03\\x06\\a\\x16\\x17\\x16\\x1767632\\x1767&#\\\"\\x17\\\"\\a\\x06\\a\\x16\\x1767>\\x0176%272\\x17\\x16\\x176767&'&#\\\"\\a\\x16\\x17&'&#\\x16\\x17\\x1e\\x01\\x17\\x16\\x176\\a\\x16\\x17\\x16\\a\\x16\\x176767\\x06\\a6;\\x012\\x17&'\\x16\\x17\\x16\\x1767&76767>\\x0254/\\x010&5\\x16\\x17&'&7\\x14\\x15676'&'&#\\\"\\a\\x06\\x0f\\x01767&'&\\\"\\a\\x06\\a\\x16\\x1f\\x01'&'&#\\\"\\a\\x06\\a\\x06\\x17\\x16\\x1745\\x16\\a\\x0e\\x01\\x0f\\x0167\\x06\\x0f\\x01\\x06\\x15\\x14\\x16\\x17\\x16\\a\\x163&?\\x0167&'\\x06\\x16\\x17\\x16\\x17&'\\\"\\x17276'&+\\x01\\\"\\x06\\x17\\x16767\\x06#\\x067>\\x01'\\x06\\a\\x16\\x17\\x161\\x16\\a2'\\\"&/\\x01\\x16327\\x06\\x17\\x1e\\x01\\a\\x06\\a\\x06\\\"'&'&63=\\x01\\x06\\a\\x06.%\\a\\x12\\x05\\x06\\r\\t\\x01\\x03\\x04\\x04\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\t\\x18\\x11\\x05\\f\\x01\\x03\\x01\\x02\\x03\\x1d\\x03\\x03\\x06\\x12\\x14\\fn\\t\\r\\x13\\x11%.\\x06\\a\\x06\\x01\\x02\\x02\\x01\\x01\\x03\\x02\\v\\x03\\f\\x10\\x11\\a\\x02\\x01\\x01\\x01\\x01\\x02\\x02\\x05\\b? \\f\\x13\\x12\\a\\x03\\x89\\x06\\x05\\x01\\x04\\t\\x05\\r\\x05\\n\\x04\\x02\\x06\\a\\xda\\x03\\n\\f\\x04\\a(\\x14/\\x18((\\x17/\\x15\\x13\\x18\\x04\\x04\\v\\a\\a\\x03\\x16\\x03\\t\\x03\\x03\\x05\\r\\r\\x0f\\x10\\x02\\x04\\x03\\x01\\x02\\x11\\x05\\x03\\v\\b\\f\\x01\\x01\\x01\\x02\\x03\\x0f\\n\\x01\\f\\b\\x12\\x1c\\f\\f\\x1b\\x17\\x04\\x02\\x01\\x15\\b\\x01\\x03\\x03\\x04#\\x06\\b\\t\\x11\\x04\\x04\\x02\\x04\\x05\\x02\\x05\\x04\\x17\\x1b\\f\\f\\r\\x17\\n\\b\\f\\x01\\n\\x0e\\x04\\x02\\x01\\x02\\f\\b\\v\\x03\\x02\\x06\\x06\\x02\\x02\\x01\\x03\\x01\\x03\\x01\\x01\\x10\\x0f\\r\\r\\a\\x01\\x03\\t\\x04\\x15(\\x15\\x11\\x02\\x03\\x04\\x03\\x06\\x0e\\r\\x10\\x05\\x04\\x05\\x05\\f\\r\\t\\r\\v\\t\\t\\x04\\x06\\x04\\x05\\a\\x03\\x02\\x03\\x01\\xfe\\xe9\\x04\\x05\\x10\\f\\x0f\\x06\\x05\\x02\\x02\\x03\\x11\\x15\\b\\t\\r\\f\\x051\\x04\\t\\b\\f\\x02\\x01\\x03\\x02\\x03\\x05\\a\\x03\\x19\\x12\\x01\\x02\\x05\\x0f\\x18\\x04\\x02\\x11\\t\\x06\\x11\\x06\\x06t\\a\\x05\\x11\\x06\\v\\x0f\\x02\\x04\\x18\\x0f\\x05\\x02\\x01\\x12\\a\\x01\\n\\n\\v\\t\\x01\\x02\\x02\\x01\\f\\x04\\x03\\b\\x01\\x01\\f\\x03\\x01\\x06\\x05\\n\\x0e\\x13\\x1a&\\x06\\x04\\x16\\x1f\\x05\\x11 T \\x11\\x05 \\x15\\x04\\x06&\\x1a\\x13\\x0e\\t\\x06\\x06\\x01\\x03\\f\\x01\\x01\\b\\x03\\x02\\a\\x03\\x04\\x02\\x01\\x01\\x01\\x01\\b\\x0f\\x0f\\x06\\x15\\x12(\\a\\v\\x01\\x05\\x03=\\x0e\\x05\\x015\\r\\x12\\x06\\x06\\tf>\\x17\\x05\\x06\\x06\\x13v\\x13\\f\\x05\\x17\\x8f\\x12\\r\\n\\t\\x06F\\b\\x01\\x05\\x0e<\\x03\\x04\\x01\\v\\a)\\x8c\\x06\\r\\x04\\x04\\r\\x0e\\x0e\\r\\x0e1\\x06\\x06\\x02\\x04\\n\\x05\\r\\x05\\t\\x04\\x01\\x05\\x06\\x01\\x03\\t\\x03\\x02\\x02\\v+\\t\\x04\\x02\\x02\\b\\v\\x05\\t\\b\\a\\x02\\x02\\x01\\x02\\x06\\x06\\b\\x03\\x04\\x04\\t\\x02\\b\\x05\\r\\x15\\x06\\n\\x01\\x03\\n\\x06\\x06\\x18\\x05\\r\\f\\x12\\x1b\\v\\b\\n\\x13+\\v\\x02\\x03\\x02\\t\\x05\\t\\x03\\x02\\t\\a\\x15\\r\\x03\\a\\x05\\x03\\x06\\x05\\x03\\x06\\v\\x05\\x04\\x02\\a\\x114\\x12\\x12\\f\\r\\x05\\x18\\xe0\\x06\\x04\\n\\n\\x04\\x04\\t\\t\\x06\\x06e\\x03\\n%\\x15(\\x0f-\\x04\\x14\\x14\\x04-\\a\\x1b\\x15\\x15$\\a\\a\\x1a\\x12\\x1b#\\n\\x0e\\x02\\x02\\x03\\a\\b\\x12\\v\\x10\\v\\x01\\x01\\x03\\x02\\x06\\x1d\\x02\\x14\\x13\\f\\x05\\x04\\x01\\x02\\x04\\x05\\x03\\t\\x02\\x06\\t\\x03\\x02\\t\\x12\\x04\\b\\x1f\\x02\\x12\\x1d\\x01\\n\\a\\t\\x01\\x1c\\f\\x11\\x14\\b\\b\\x01\\x02\\t\\x14\\a\\x01\\x02\\x1f\\b\\x04\\t\\a\\x01\\n\\x02\\x03\\t\\x06\\x02\\t\\x03\\x05\\x04\\x02\\x04\\x06\\f\\b\\x14\\t\\x02\\x02\\x1d\\x06\\x02\\x03\\x01\\f\\x10\\n\\x13\\b\\a\\x04\\x03\\x0e\\n#\\x1b\\x12\\x011\\x06\\x1a\\x01\\x01\\x02\\x02\\f\\v\\t\\x01\\x03\\x02\\x05\\x15\\a\\a\\x0f\\x06\\x06\\x02\\x01\\x05\\x19\\x05\\x01\\r\\x01\\t\\v\\f\\x03\\x01\\x01\\x01\\x1a\\x06\\x03\\x05\\x02+\\x0f\\a\\a\\x02\\x01\\x06\\x18\\x05\\x01\\x02\\x06\\xa9\\n\\x18\\x193\\x06\\x01\\a\\x060\\x0e+.\\x01\\x01.+\\x11-\\x06\\a\\x01\\x063\\x19\\x18\\n\\x04\\x01\\x05\\x06\\r\\x06\\v\\a\\x01\\x01\\x01\\r\\x02\\x0f\\x1d\\x19\\x12\\x06\\b\\x01\\x01\\x0f\\v\\x06\\x02\\x03\\x06\\b\\x1e\\x04\\x06!\\x0e\\x06\\t\\x0f\\x0f\\t\\x06\\x0e!\\x06\\x04\\x1e\\b\\x06\\x03\\x02\\x06\\v\\x0f\\x01\\x01\\b\\x06\\x12\\x19\\r\\x16\\x05\\x04\\x02\\r\\x01\\x01\\x01\\a\\v\\t\\r\\b\\x04\\x92\\x1d\\x14\\f\\x01\\x05\\x05\\x03*\\x02+9\\x12\\b\\t\\x0f0@\\x10\\b\\a\\x0f\\x10@\\x18\\b\\x12\\x02\\x0f<\\x0e+\\x02*\\x03\\x05\\x05\\x01\\f\\x14\\xf6\\t\\x05\\x04\\b\\b\\x12\\xe6\\x01\\x05\\x05\\n\\b\\x05\\x05\\n\\t\\x04\\x06\\x00\\x04\\x00\\f\\xff\\xc0\\x00\\xf6\\x01\\xc3\\x00\\r\\x00\\xcf\\x00\\xe3\\x00\\xf0\\x00\\x007\\x0f\\x01\\x14\\x06#\\\".\\x015/\\x01\\x162\\x03\\x1667\\a\\x06\\a\\x06#\\\"527654&\\x06\\a\\x06\\a654#\\\"\\a\\x06\\a\\x14\\a0\\a\\x06#\\\"76746767476'&#\\\"\\a\\x06\\a\\x06\\a\\x0647>\\x0176'&#\\\"\\a\\x06\\a\\x06\\a\\x06\\a\\x06#\\\"7676'0#&\\a\\x06\\a\\x06\\x17\\x16327\\x06\\x167\\x14\\x161\\x167670\\a\\x0e\\x01\\x15\\x14\\x17\\x16767464676767676\\x17\\x14\\a\\x06\\x15\\x14\\x16767\\a\\x0e\\x02\\\".\\x01/\\x01\\x1632767\\x06\\a\\x14\\x17\\x1632767>\\x0254&\\x06\\x0f\\x01\\x06\\a\\x06#\\\"'&7>\\x0176\\x17\\x1632'.\\x01\\a\\x0e\\x01\\a7\\x14\\x06&54632\\x17?\\x016\\x17\\x16\\a\\x15\\x0f\\x01\\x16\\a4'\\a\\x14\\\"=\\x013\\x06\\x15\\x142\\xd2\\x0e\\x05%\\x1a\\x11\\x1d\\x11\\x06\\x0f\\x1fi\\xa6\\x17\\xb6\\x17\\x0f\\f\\x04\\a\\x01\\x03\\x01\\x05\\r\\x06\\f\\a\\x03\\x02\\x01\\x04\\x01\\x02\\x02\\x03\\x02\\x01\\x10\\a\\x02\\x01\\x02\\a\\n\\x03\\x02\\x02\\x01\\x01\\x02\\x02\\x01\\x05\\x02\\x19\\x01\\x04\\x03\\a\\x03\\x01\\x05\\x01\\x02\\x02\\x02\\x02\\x03\\x02\\x01\\x01\\x01\\x04\\x05\\x06\\x04\\x03\\x04\\x02\\x02\\b\\x02\\x03\\x01\\x05\\x03\\x04\\x03\\a\\x02\\x02\\a\\x0e\\b\\x03\\x0e\\t\\x01\\x02\\f\\a\\b\\x01\\x0f\\x01\\x02\\x02\\x04\\x02\\x02\\x01\\x02\\x02\\x03\\x06\\x04\\x05\\x04\\x04\\n\\x02\\x05\\x0e\\r\\x04\\a\\r\\v\\x01\\x16+-*\\x16\\x01\\b\\x03\\x05\\t\\f\\x03\\x04\\a\\x01\\x01\\x01\\x02\\x04\\x02\\x02\\x06\\x02\\x06\\x02\\x04\\x05\\x01\\x05\\x04\\t\\n\\x06\\x03\\x02\\x03\\x04\\x04\\x10\\t\\v\\x06\\x04\\x03\\x06\\x02\\x01\\x12\\n\\r\\x16\\x05\\xd9ttD0\\x0f\\v\\r=\\x03\\a\\b\\x039\\nDF\\x02\\x01\\x16\\x01\\x04\\x1c9\\x19P\\a\\t\\x04\\b\\x04P\\x19\\r\\x01\\n\\r\\x01\\f\\x88\\v\\x03\\x05\\x02\\x06\\x10\\a\\x04\\x05\\x02\\x06\\x03\\x02\\x03\\x03\\x04\\x01\\x03\\t\\x01\\x04\\x01\\x11\\x06\\x04\\x12\\x02\\x17\\a\\x05\\x04\\x01\\x01\\x04\\x02\\x01\\x05@\\x04\\x03\\x01\\x03\\b\\b\\x03\\v\\x02\\x05\\x02\\x02\\x05\\x03\\x02\\x05\\b\\t\\x04\\x02\\t\\x05\\x0f\\x06\\x02\\x02\\x06\\t\\a\\x13\\x05\\x05\\x0f\\x0e\\x03\\t\\x01\\x01\\t\\x05\\x03\\b\\x03!\\x02\\x02\\x02\\x01\\x02\\x01\\x02\\x03\\x01\\x01\\x01\\a\\x04\\b\\x0e\\t\\x06\\a\\x03\\a\\x04\\x03\\x05\\x13\\x03\\x06\\x02\\x02\\x03\\f_\\x02\\b\\a\\a\\b\\x02P\\x02\\f\\x02\\x04\\x15\\x04\\x05\\x01\\x02\\b\\x06\\x14\\b\\x0f\\a\\x04\\x03\\x03\\x02\\x04\\x0f\\a\\t\\n\\x03\\a\\r\\x0e\\x1d\\x06\\b\\v\\a\\t\\a\\n\\x04\\x06 \\x11\\x86\\n\\b\\b\\n\\x06\\n\\x011@\\x03\\x06\\a\\x02\\x01<)\\x04\\x0f\\x01\\x01\\x01\\x02\\x02\\x01\\x01\\x01\\x04\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x10\\x00 \\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\a\\x177#\\x0e\\x02\\a.\\x03'#\\x17\\x153\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x1b\\xdaQ#\\x18\\x17\\v\\x02\\x02\\t\\a\\x17\\x13%P\\x1f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xc56\\x9b-/\\x1c\\x06\\x05\\x16\\x110\\\"\\x99g\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x10\\x00\\x83\\x00\\x00\\x01\\x1e\\x02\\x17\\x11\\x0e\\x01\\a!.\\x01'\\x11>\\x017\\x012&#&'.\\x01=\\x014>\\x0176&#\\\"\\x06#\\\"&#\\\"\\x06\\x170\\x1e\\x05\\x15\\x14\\a\\x14\\x0e\\x01+\\x01\\\".\\x015&54>\\x0516&#\\\"\\x06#\\\"&#\\\"\\x06\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x06\\a\\\"\\x063262\\x16324'&'.\\x0146546;\\x012\\x16\\x15\\x14\\x16\\x14\\x06\\a\\x06\\a\\x06\\x143262\\x16\\x01\\xbb\\x02\\x13\\x1e\\x12\\x1b'\\x02\\xfe\\x8c\\x05'\\x1c\\x1c)\\x03\\x01N\\x06\\x01\\x05\\x0e\\b\\x05\\x03\\t\\v\\t\\x06\\x03\\x04\\x12\\x15\\x12\\x10\\x11\\x10\\x03\\x03\\x05\\x06\\x03\\a\\x04\\x05\\x02\\x01\\x01\\a\\x04n\\x04\\a\\x01\\x01\\x02\\x05\\x04\\a\\x03\\x06\\x05\\x03\\x03\\x10\\x11\\x10\\x12\\x15\\x12\\x04\\x03\\x06\\x0e\\x0f\\x03\\x05\\b\\x0e\\x05\\x01\\x06\\x12\\x13$\\x15\\x11\\x04\\x04\\x14\\x05\\x03\\x03\\x01\\b\\x05p\\x05\\b\\x01\\x03\\x03\\x04\\x15\\x04\\x04\\x11\\x15$\\x13\\x01\\xc0\\x12\\x1f\\x14\\x03\\xfe\\x8e\\x03(\\x1b\\x1b&\\x04\\x01s\\x03)\\x1c\\xfek\\v\\x05\\t\\t1Fe\\n\\x0e\\x06\\x02\\x02\\n\\x02\\x02\\t\\x02\\x01\\x02\\x04\\x05\\b\\f\\a:\\v\\x01\\x06\\x06\\x06\\x06\\x01\\v:\\a\\f\\b\\x05\\x04\\x02\\x01\\x02\\t\\x02\\x02\\n\\x02\\x03\\x0e\\x0feF1\\t\\t\\x05\\v\\x02\\x02\\t\\x01\\a\\x06\\x05\\x1f\\x1c+\\x06\\x04\\t\\t\\x04\\x06+\\x1c\\x1f\\x05\\x06\\a\\x01\\t\\x02\\x02\\x00\\x00\\x00\\x01\\xff\\xf4\\xff\\xd0\\x01\\xc5\\x01\\xc0\\x00$\\x00\\x00\\x01\\x1e\\x01\\a\\x0e\\x01\\a>\\x01&'\\x16\\a\\x06'&'\\x0e\\x01\\x16\\x17&'&67>\\x01.\\x01/\\x01\\x1e\\x04\\x01\\x9f\\x17\\x0e\\v\\fO:\\x1b\\r # \\x1f\\x19&\\x1c\\x15\\x03\\a\\x02\\ro\\\"\\x19*>$!\\x06\\x10\\t\\n\\t\\x1eTHN\\x01\\x1e(_-.R\\x12&`J\\b7-#\\x06\\x04\\x1f\\v\\x1dA\\x19\\x10M<g*\\x19:1*\\f\\f\\x01\\x06\\x18!<\\x00\\x02\\x00\\x19\\xff\\xc0\\x01\\xe7\\x01\\xc0\\x006\\x00A\\x00\\x00%'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x1e\\x01\\x17675&5462\\x16\\x15\\x14\\a\\x15\\x1e\\x01\\x15\\x14\\x06#\\\"'\\a\\x16\\x15\\x14\\a\\x06\\\"'&4632\\x177&54\\x162654.\\x01#\\\"\\x06\\x14\\x01\\v\\xa3\\r\\x0e\\x15\\x1f\\x1f+\\x1f\\x02\\x1d\\x82\\n\\x14\\x16\\x1c\\x1b'\\x1c\\x1c/?L6,#2\\x02\\f\\f\\\"\\v\\f\\x17\\x11\\a\\a2\\x1ae9)\\x13\\x1f\\x13\\x1d(\\xecs\\a\\x1e+\\x1f\\x1f\\x15\\a\\a\\x16_\\b\\v\\x03=\\f\\x1f\\x14\\x1c\\x1c\\x14\\x1f\\f>\\aI06L\\x1a2\\x05\\a\\x11\\v\\f\\f\\v\\\"\\x17\\x022\\\",8}(\\x1d\\x13\\x1f\\x13)9\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x005\\x00E\\x00Q\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17654\\a\\\"\\a\\\"\\a\\x06\\x15\\x06\\x16\\a\\x06\\a\\x06\\a\\x06\\x16\\x17\\x167676547676\\x15\\x14\\x15\\x16\\x06\\a\\x06\\a\\x06\\x16\\x17\\x1676\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132>\\x014.\\x01#\\\"\\x06\\x14\\x16\\x99\\x8ded\\x8ee\\xfb\\x01\\t\\x01r\\x03\\x04\\x03\\x01\\x01\\x03\\x02\\x06\\x1e\\b\\v\\n\\x10\\x11\\x0e\\f\\x03\\x01\\aX\\x04\\b\\x01\\x05\\x06\\x1e\\b\\b\\x01\\t\\v\\x15\\x16/+<<+\\xf2+<<+y4Y33Y4Pqq\\x01pe\\x8dee\\x8d\\x8b\\x04\\xa3\\n\\x01\\x15\\x03\\x02\\x04\\x02\\x83\\x01\\x03\\x01\\x05\\b\\n\\x1e\\x03\\x03\\t\\x06\\r\\x06q\\a\\x01\\x10\\x01\\x02\\b\\x13\\x19\\\"\\x06\\x01\\x05\\a\\b\\x16\\a\\t\\x04\\x04\\x014<+\\xf2+<<+\\xf2+<\\xfed4XiX4q\\x9fq\\x00\\x00\\x01\\xff\\xf8\\xff\\xda\\x01\\x81\\x01\\xa2\\x00=\\x00\\x00%\\x0e\\x01\\a\\x06'.\\x017>\\x02767>\\x015&54\\x0f\\x01\\x0e\\x01\\x15\\x14\\x15\\x16\\a0\\x15\\x06\\a\\x0e\\x01'.\\x017>\\x027676\\x0276763636\\x15\\x14\\x15\\x14\\a\\x14\\x01~\\x05\\x1d\\x15*\\x17\\x11\\x02\\x11\\b\\x1a\\x11\\x19\\v\\x05\\x04\\x01\\x01\\x11\\xb9\\b\\x06\\x01\\x03\\x06\\x18\\r&\\r \\x13\\x16\\b\\x1b\\x11\\x19\\v\\x05\\x05\\x01\\x01\\x01\\x06\\x06\\a\\xe6\\x03\\x12\\x02<\\x14\\x18\\x04\\b\\x12\\x0f,\\x0f\\b\\n\\x04\\x04\\x02\\x06\\x04\\x1243&\\x0f\\x03#\\x01\\a\\b7Jc\\v\\x01\\x1b\\f\\a\\x06\\x02\\x06<\\x15\\b\\n\\x03\\x05\\x02\\x05\\a\\x00\\xff\\b\\t\\x04\\x06+\\x01\\x13Sl\\x8a\\b\\x01\\x00\\x17\\x00\\x17\\xff\\xc0\\x01\\xe9\\x01\\xc4\\x00L\\x00c\\x00s\\x00\\xb9\\x00\\xcd\\x00\\xd9\\x00\\xe1\\x00\\xeb\\x00\\xfa\\x00\\xfd\\x01\\x02\\x01 \\x012\\x017\\x01P\\x01Z\\x01g\\x01\\x81\\x01\\xa8\\x01\\xc1\\x01\\xca\\x01\\xd1\\x01\\xe2\\x00\\x00%\\x16\\a\\x06\\a!&'45.\\x03'&>\\x01767656.\\x01'&'&'.\\x017>\\x0274.\\x015&7>\\x057676\\x16\\x17\\x1e\\x03\\x17\\x1e\\x01\\a\\x06\\a\\x0e\\x02\\x1e\\x02\\x17\\x1e\\x03\\x01\\x0e\\x01\\a>\\x0136\\x167>\\x027>\\x0272>\\x015&\\a\\x06\\x176\\x16\\x1526.\\x025&6'\\x06\\x17\\x16\\x17\\x16\\x176\\x17&'&'\\x1e\\x02\\x17\\x167676'&'.\\x01\\a&>\\x01\\x17.\\x06'.\\x01\\a\\x06\\a\\x1e\\x01\\x0e\\x01\\a\\x14\\x16\\x17\\x06'&'&\\x06\\a\\x06\\x167>\\x013\\x16\\x0e\\x02\\x15\\x06\\x17\\x06\\x16\\a\\x16\\x176'4&'&\\x0e\\x01\\a\\x16\\x156\\x17\\x06'>\\x017\\x0e\\x02'\\x14\\\"\\x15\\x16\\x17\\x1676'&\\a\\x06'465.\\x02'\\x06\\x16\\a30'&'&'\\\".\\x01\\a\\x06\\a\\x16\\x174173&'\\\"7<\\x025&#>\\x017<\\x015\\\"'&'&\\x0e\\x02\\x17\\x14\\x17\\x16\\x17\\x167>\\x01\\x177\\x06&#&\\x06'\\x0e\\x02\\a\\x16\\x17342\\x15;\\x01&\\a\\x0676'4.\\x01'.\\x01'\\x0e\\x02\\a6\\x17\\x16\\a\\x1e\\x01\\x17\\x06\\a36\\x03>\\x01\\x17\\x1e\\x01\\a&\\a&\\x17>\\x017&721\\x16\\x17\\x0e\\x01&'&7\\x1e\\x01\\x17\\x14\\x1e\\x03\\x14\\a\\x0e\\x01\\a\\x06&72\\x1e\\x03>\\x01\\x17\\x1e\\x02\\x17\\x16>\\x027>\\x01.\\x02'.\\x0256\\x17\\x14\\x15\\x16\\x17\\x1e\\x02\\x17\\x16\\x06\\x15\\x0e\\x02'.\\x01'.\\x02#\\\"\\x0e\\x02\\x1c\\x02\\x15.\\x017&\\x0e\\x02\\a6\\x16\\x17\\x16\\x05\\x06\\a&7>\\x03\\a\\x167\\x16\\x15\\x06&\\x17\\x06\\a\\x0e\\x01'.\\x02'&'&3\\x1e\\x016\\x01\\xe7\\x01\\n\\b\\x06\\xfeZ\\x01\\x01\\x02\\x05\\x04\\x03\\x01\\x01\\a\\x14\\x03\\n.\\x1b\\x02\\x03\\b\\x01\\a\\x01\\x19\\x0e\\v\\b\\a\\x01\\x03\\x02\\x01\\x01\\x02\\x02 \\x03\\t\\n\\x12\\v\\x16\\x05\\v\\x1d%g\\x1e\\a\\x11\\x0f\\x0e\\x04\\x13\\x02\\x0f\\x06\\x05\\x01\\b\\x05\\x01\\f\\x11\\x01\\x02\\f\\a\\a\\xfe\\xe7\\x1c4\\t\\x04\\x12\\x06\\x01\\v\\x01\\x04\\t\\b\\x03\\x03\\a\\b\\x02\\x01\\x05\\x03\\x03k\\x0e\\x04\\x14*\\x03\\x04\\x01\\x01\\x03\\x03\\v\\a\\\"\\x10\\t\\x11\\x0f6\\x06\\x1e\\x10\\x18\\x1a\\x01\\x11\\x11#\\x15-6\\a\\x12,\\x05\\x02\\a\\a \\r\\x02\\t\\x10\\n\\x02\\b\\x05\\b\\x06\\b\\a\\x05\\x1cF\\x1fC\\x10\\x04\\x01\\x04\\x05\\x01\\b\\x01\\x06\\x15\\a\\x12\\x10\\x17\\x01\\x01\\x1b\\x12\\x05\\x0e\\x05\\x03\\x03\\x05\\x05\\x01\\xe1\\x01\\x01\\x01\\x16\\x1d\\x05\\x01\\x05\\x05\\x06\\x13\\x15\\x03\\x03\\n\\t\\x0f\\x13\\x03\\x0e\\x05\\x06\\x1b\\x0e\\f\\x02\\x10\\n\\x10\\x02\\x03\\v\\x05\\a\\x01e\\x03\\x05\\x13\\r\\x04\\a\\\"\\x9d\\xb4\\x02\\a\\x01*\\x0f\\x01\\f\\f\\x01)=\\b\\xf7\\b\\t\\x01\\x02\\x01\\n\\v\\f\\x03\\x0f\\x04\\x06\\x10\\x15\\x17\\a\\a\\x02\\x01\\x01\\v\\x03\\x02\\v\\x17\\a\\x169\\x01\\x06\\x10\\x03\\x03\\x0e\\x05\\x01\\x02\\x02\\x01\\x04\\x05\\x11\\f\\x17$\\x0e\\x15\\x01S\\x05\\x01\\a\\r\\x01\\x05\\x15\\a\\x03\\b\\b\\x02\\x16\\x06\\x06\\n\\x01\\t\\x01\\x01\\x01\\x1c\\a\\xf1\\x05\\x1c\\f\\a\\t\\x04#\\x13\\t\\xbe\\x04\\x16\\x04\\n\\x01\\x01\\x11\\x04\\x02\\x16\\x13`\\x14\\x05\\x01\\v\\x06\\x04\\x02\\x02\\x01\\x01\\x01\\b\\x03\\r\\x1f\\b\\x02\\x06\\x05\\x06\\x06\\x05\\x05\\x1d\\x01\\x02\\x04\\x05\\a\\x11\\r\\x11\\x04\\x03\\x01\\x02\\x03\\a\\x01\\r\\v\\x0e\\x06\\x02\\v$\\x01\\x06\\x03\\x01\\x01\\x06\\x0e\\x12!\\x10\\x06\\x02\\xc4\\x03\\x05\\x05\\x04\\x02\\x04\\x02\\x01\\x06\\x02\\x04\\x02\\x04\\x02\\x04\\x01\\x03%\\x03\\x01\\x01*\\x15!\\x01\\x01\\b\\x10\\n\\x0f\\x89\\x178\\x02\\x1c/V\\x03\\x06\\v%\\x0f\\x05\\b\\t\\x01\\x01\\x02\\v\\x0e\\x06 %\\x17\\a!\\x1a\\x15\\x01\\x03\\x01\\x01\\x04\\x0e\\n\\r\\x05\\t\\v\\t\\x02\\a\\x1b\\x10\\x02\\x04\\n\\f\\x02\\x0f\\x0f\\x04\\x15\\x11-\\x16\\x01\\x03\\x04\\x02\\x03\\b\\b\\x03?\\x0f\\t\\x11\\v\\r\\x06\\f\\x04\\x06\\v\\x0e\\b\\x17\\x05\\x0f\\x11\\x12\\a(|0\\x15\\v\\x02\\x0e\\n\\x06\\f\\x0e\\x01\\x02\\n\\a\\t\\x01\\x83\\b\\\"\\x15\\x01\\x06\\x01\\x02\\x01\\x01\\v\\x0f\\x03\\x03\\x06\\x05\\x03\\x02\\x03\\x02\\x03^\\x104\\f\\x14\\x16\\x04\\x06\\x05\\t\\x02\\x0fF\\r\\x03\\xe0$\\x19\\x14\\x04\\x0e\\a\\x06\\x1a\\x1d\\x14\\x18\\x14\\x1c\\a\\x0f'\\x04\\x1a?^2\\r\\x0e\\f\\n\\b\\f\\x03\\x02\\x02\\v\\x06\\t\\a\\a\\x06\\x02\\x11\\v\\f!%\\n\\x18\\x12\\x1a\\t\\t\\x1f\\b\\t\\x01!\\x02\\x02\\x16\\x10\\x13)\\x02\\x01\\n\\x04\\a\\x05\\x06\\x02\\x04\\x88\\x02\\n\\x04\\x06\\x01\\a\\x10\\v\\x17\\x03\\x03\\b\\x0e\\x02\\t\\x01\\x03\\x05\\x02\\x12\\x03\\f\\x03\\x01\\a\\x01\\x04\\x01\\x01\\f \\x05\\x0e\\r\\x02\\x01\\x05\\x02\\b\\x03\\f\\x02\\x01\\x01\\x02\\x03\\x06\\x11;\\a\\x16\\x0e\\x14\\n\\x0f\\r\\x01\\x10/\\x11\\x1a\\x01\\x05\\x01\\x03\\x15\\x01\\x04\\x04\\x01\\x06\\x02\\x03\\x02\\x01\\x03\\x01\\t\\f\\x04\\x01\\b\\r\\x10\\x06\\a\\x1e\\t\\x01\\x02\\f\\x04\\x13\\x16\\r\\x01\\v\\x01\\a\\x02\\x01\\x02\\x03\\x01\\x05\\a\\x06\\x06\\x15\\n\\x06 \\x16\\x03\\x04\\b\\n\\x01\\x04\\x16\\x06\\x04\\a\\x06\\x03\\v& \\x13\\x04\\t\\x03\\x01\\x02\\x15\\x01Z\\f\\x15\\x01\\x02\\n\\x06\\b)\\x02/\\x02\\x01\\x03\\x1b\\n#\\x06\\a\\n\\x04\\t\\x1f\\x0e\\x01\\x1b\\x05\\x01\\x03\\x02\\x04\\x03\\x05\\x02\\x03\\x06\\x01\\x04\\t\\f\\x01\\x01\\x01\\x01\\x01\\x02D\\x02\\v\\a\\x01\\x01\\x04\\x05\\t\\x01\\x04\\a\\a\\x03\\b\\x01\\x10\\x0e\\x1f\\x0e\\x04\\v\\x02\\x01\\x18'\\x02\\x05\\x03\\x01\\x05\\x11\\x02\\t\\n\\b\\x02\\x05\\x12\\x11\\x01\\v\\t\\x02\\x05\\x04\\t\\x05\\t\\x01\\x05\\x1b\\b\\x02\\x02\\x02\\x03\\x01\\x16\\b\\x15\\x06$(\\x01\\x0f\\x04\\x01\\x05\\x06\\b\\n\\f\\x02\\x05\\x0f\\x01\\x0e\\x1e\\t\\x02\\x04\\x02\\x06\\x03\\b\\x0e\\x01\\x01\\x02\\n\\x0f\\x0e\\x01\\x00\\x00\\x04\\xff\\xee\\xff\\xb6\\x02\\x02\\x01\\xb8\\x00\\v\\x00\\\"\\x00>\\x00[\\x00\\x00\\x01\\x1e\\x01\\x0e\\x01.\\x017>\\x0132\\x1367\\\"\\x0e\\x02\\a\\x0e\\x04\\x1e\\x021\\x16\\x17\\x16326'\\x16\\x176&'&\\x06\\a\\x06\\x17>\\x0376\\a\\x06\\a\\x0e\\x04\\a\\x06\\x167\\x1e\\x01\\a\\x15\\x0f\\x0167>\\x0432\\x17\\x1e\\x01\\x0e\\x02\\x0f\\x010\\x17676\\x01zX/lȯ/6#q?Fp\\b\\x06\\x02G3C\\x12\\v\\x0f\\t\\x04\\x01\\x02\\x02\\x05\\a\\x11\\v\\t7a\\xab3\\xb3\\t57K\\xac/+\\x0f\\x05\\x14&F-)\\x03\\x02\\f\\x02\\x13\\n\\x11\\x0f\\x06\\x11!\\xe2\\n\\n\\x01.\\xaa\\\"\\x1f\\x05\\x14\\v\\x0f\\f\\x05\\x05\\x05\\x05\\x04\\x05\\x05\\v\\x013\\x06\\t\\x10?\\x01\\x936ȯ/l\\xc8W8>\\xfe\\x98\\f\\x0e\\x01\\x02\\b\\x06\\x04\\n\\b\\v\\a\\f\\x04\\v\\x12\\x19\\x016\\x86\\x01\\x04>u\\\".)KEP\\x14&/ \\x03\\x03\\x10\\t\\a\\x02\\n\\a\\v\\x0e\\b\\x14\\x1b6\\x03\\b\\x02\\x03\\x17\\x02\\v\\x15\\x03\\r\\a\\t\\x03\\x02\\x03\\x06\\x06\\x03\\x06\\x01\\\"\\x02\\x01\\t!\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\x10\\x006\\x00\\x00\\x11!\\x11!75#\\x15\\x14#\\\"'\\a\\x16326\\x172654&/\\x01.\\x0154>\\x0132\\x177&#\\\"\\x06\\x14\\x16\\x1f\\x01\\x1e\\x03\\x15\\x14\\x06#\\\"'\\a\\x16\\x01\\xc0\\xfe@\\xf4*\\x17\\x0f\\f\\\"\\x12-\\x1d\\\"c\\x1f'\\x1b\\x1d\\n\\x0f\\v\\x05\\t\\x06\\x11\\n!\\x13)\\x1c\\\"\\x1a\\x19\\n\\t\\t\\n\\x03\\x10\\r\\x19\\x10\\\"\\x15\\x01\\xa0\\xfe@c\\x8f\\x8f\\x1a\\x15\\x14'  \\x1f\\x1c\\x19\\x1c\\r\\x04\\a\\n\\t\\x05\\b\\x05\\x12\\x15\\\" 0\\x1d\\n\\x05\\x04\\x04\\a\\b\\x05\\t\\f\\x1a\\x14+\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1c\\x00B\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\x15\\x14#\\\"'\\a\\x16326\\x172654&/\\x01.\\x0154>\\x0132\\x177&#\\\"\\x06\\x14\\x16\\x1f\\x01\\x1e\\x03\\x15\\x14\\x06#\\\"'\\a\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xc4*\\x17\\x0f\\f\\\"\\x12-\\x1d\\\"c\\x1f'\\x1b\\x1d\\n\\x0f\\v\\x05\\t\\x06\\x11\\n!\\x13)\\x1c\\\"\\x1a\\x19\\n\\t\\t\\n\\x03\\x10\\r\\x19\\x10\\\"\\x15\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xa3\\x8f\\x8f\\x1a\\x15\\x14'  \\x1f\\x1c\\x19\\x1c\\r\\x04\\a\\n\\t\\x05\\b\\x05\\x12\\x15\\\" 0\\x1d\\n\\x05\\x04\\x04\\a\\b\\x05\\t\\f\\x1a\\x14+\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x02\\x00\\x01\\xb8\\x00\\x18\\x00.\\x00D\\x00\\\\\\x00h\\x00u\\x00v\\x00\\x00?\\x01\\x16\\x17\\x167\\x1e\\x02\\x17\\x06'&'2\\x06\\a\\x16\\x06#\\\"&546%\\x16\\a\\x06\\a0\\x1616\\x17\\x16\\x14\\x06\\\"'&7'676'%\\x16\\a\\x17\\x06\\a\\x06\\a\\x06\\x17\\a&767'\\x06'&>\\x01\\x16%2\\x16\\x14\\x06#\\\"'\\a&'&\\a'6\\x17\\x16\\x177&54>\\x01\\a2\\x17\\x1e\\x01\\x0e\\x01.\\x017>\\x01\\a\\x16\\x17\\a3'654&'\\x0e\\x017@<1N/'\\x03\\t\\b\\x011;C3\\x01$\\x03\\a\\x1d\\x18\\x15\\x1b)\\x01z\\x1e\\x02\\x01/\\x18\\x0f\\v\\b\\x12\\x19\\t\\n\\x03-?\\x02\\x01\\x16\\xfe\\xdb\\v\\x03.\\x0f\\b'\\x02\\x01\\x15\\x16\\x1d\\x01\\x02.\\x1a\\x0f\\v\\b\\x01\\x11\\x19\\x01r\\x13\\x1c\\x1c\\x13\\v\\x05?1N/'\\x151;C3)\\x02\\r\\x16\\xc3\\a\\t;H\\x0e^uH\\a\\aQ\\x04\\x01\\x1f\\vJ\\v \\\"\\x18\\x18\\\":';B\\x02\\x01\\x18\\x03\\t\\t\\x01 \\x01\\x02+#\\x03\\x17'\\x1c\\x14\\x1a\\x1c\\xf417D5\\x19\\x02\\v\\t\\x19\\x11\\t\\v\\x0f02J*(}\\v\\x0f1\\v\\n,;,&\\x1618D5\\x1b\\x02\\v\\t\\x18\\x12\\x01$\\x1d'\\x1c\\x02<A\\x02\\x01\\x17\\x16\\x1f\\x01\\x02+'\\a\\b\\r\\x16\\ri\\x01\\b]uI\\x0f];6Fw$\\x1044\\x11#\\x19!\\x01\\x01!0\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x002\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x034.\\x02#\\\"\\x06\\x1d\\x01\\x14\\x1e\\x02326=\\x01\\x17\\x1e\\x017>\\x01/\\x0176&'&\\x06\\x0f\\x01\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xdc\\a\\n\\x0f\\b\\x13\\x15\\x05\\n\\x10\\t\\x12\\x16<\\n!\\r\\v\\x01\\b1(\\b\\x02\\v\\f&\\f, \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01.\\v\\x11\\v\\x06\\x1a\\x13\\x9b\\t\\x11\\f\\a\\x17\\x16*L\\v\\x01\\f\\v\\x1e\\n?:\\n\\x1d\\n\\r\\x02\\x12@\\x00\\x01\\x00\\x00\\xff\\xdf\\x01\\x82\\x01\\xa2\\x00\\x1f\\x00\\x00\\x13\\x157>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06\\a\\x06&/\\x01\\x15\\x14\\x06#\\\"&5\\x114>\\x0132\\x16\\x93S\\x16F\\x16\\x14\\x04\\x0eK[\\x0f\\x03\\x13\\x18>\\x12p( $'\\x11\\\"\\x17 )\\x01NGv \\x04\\x17\\x135\\x12ks\\x126\\x14\\x17\\x02\\x15\\x8aL**/%\\x01\\x1b\\x17$\\x16*\\x00\\x00\\x00\\t\\x00\\a\\xff\\xc0\\x01\\xf9\\x01\\xc1\\x00S\\x00W\\x00]\\x00r\\x00x\\x00}\\x00\\x83\\x00\\x87\\x00\\x8c\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\x0f\\x01\\x15\\x14\\x0f\\x01\\\"\\a01*\\x01#0&1\\\"1'&5\\x114745034625762\\x1f\\x01\\x142\\x16\\x1503\\x14\\x161\\x14\\x1d\\x01754506105350>\\x011762\\x1f\\x010\\x1701\\x16\\x143\\x1410%\\a\\x177\\x17\\x0f\\x01\\x15?\\x01\\x155'1&10&10'1&<\\x0215/\\x01\\x11?\\x02'\\x0f\\x01\\x055\\x0f\\x01\\x1575/\\x01\\x15\\x17?\\x01'\\a\\x1775\\x0f\\x01\\x01\\xf8\\x01\\x04]\\x04\\xc0\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\xc1\\x04\\x01\\x01\\x01\\x01a\\x01\\x05\\x02`\\x01\\x01\\x01\\x01P\\x01\\x01\\x01\\x01`\\x02\\x05\\x01a\\x01\\x01\\x01\\xfexQQP\\b\\\".!/\\\\\\x01\\x01\\x01\\x01/\\\"\\xb9u;P\\\\T\\x01\\b-\\x83\\xb0.\\\"/)QQPXQ\\\"/\\x01L\\x01\\x01n\\x04\\x035i\\x05\\x02o\\x01\\x01o\\x02\\x05\\x01J\\x01\\x01\\x01\\x01\\x01\\x01\\x017\\x01\\x017\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\xce.i\\x01\\x01\\x01\\x01\\x01\\x01\\x017\\x02\\x027\\x01\\x01\\x01\\x01b.//\\x0e\\x14\\x1b\\xc9\\x14\\x1a\\xd3\\\\4\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\xd7\\x1b\\x14\\xfe\\xc9\\x04C\\\".511[\\x1aK\\\\\\xdd[\\x1b\\x13[\\x1bV...\\x97.[\\x13\\x1b\\x00\\x06\\xff\\xff\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\x19\\x00%\\x006\\x00R\\x00b\\x00x\\x00\\x00%\\x15\\x14+\\x01\\\"/\\x01\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x1f\\x0154;\\x012#2\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\a2\\x1d\\x01\\x14+\\x01\\\"&=\\x014;\\x012\\x1d\\x0172\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01437\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4&\\\"\\x06\\x15\\x14\\x16\\x17\\x1e\\x01\\a\\x1c\\x01\\x1667>\\x0276\\x01\\x10\\x03\\v\\x02\\x01!\\x03\\v\\x04\\x04\\v\\x02\\x01 \\x03\\f\\x03R\\x03\\x03\\v\\x03\\x03\\x10\\x03\\x04-\\x01\\x02\\x03\\v\\x04\\xc8\\x03\\x03\\x1f\\x1f\\x03\\x03\\x1f\\x1f\\x03\\x03.\\x03\\x03\\xa20\\\"\\xfe\\xe3\\\"/0\\\"\\x01\\x1d\\\"/>_\\x87`N;\\r\\x03\\x04\\x01\\a\\x06\\n.9\\x10\\\"\\xf4G\\x03\\x01,*\\x04\\x04G\\x03\\x01,*\\x03\\x03G\\x03\\x03G\\x03<\\x03\\v\\x03\\x01\\x02G\\x03\\x039<\\x03\\f\\x03\\f\\x03\\f\\x03\\f\\x03\\v\\x03\\x03G\\x03W\\xfe\\xe3\\\"/0\\\"\\x01\\x1d\\\"/0\\x9c6NN61J\\b\\x03\\x0f\\x13\\x03\\x02\\a\\x02\\x02\\x04\\x1c,\\x12'\\x00\\x00\\x03\\x00\\x00\\x00\\x06\\x02\\x00\\x01u\\x00\\t\\x00*\\x00H\\x00\\x00\\x113\\x15\\x14\\x17\\x0e\\x01'&5%\\x14\\x163\\x15\\\".\\x01=\\x014&\\x06\\x1d\\x013\\x15#\\x15\\x14\\a\\x06'54632\\x16\\x173\\x15#%53\\x15\\x14\\x06\\a\\x06'5\\x167670\\x0e\\x04&'&=\\x013\\x15\\x1425N\\x1b\\f,\\x18\\x19\\x01\\xe6\\x0f\\v\\x1c/\\x1c\\x1a\\x1a''\\x19\\x15\\x1e<*%8\\b\\x1a\\x18\\xfe\\xdaM*#&(\\x18\\x15 \\x03\\x02\\x06\\x06\\v\\v\\x0e\\b-M\\x18\\x01o\\xd1+\\x12\\n\\x03\\x10\\x14'\\\"\\n\\x0fM\\x1c/\\x1cM\\x10\\x0e\\x0e\\x10\\x17M\\a'\\x14\\x12\\x04\\xb3+<.#MM\\x01\\xb2(6\\a\\a\\fF\\n\\x02\\x03\\x16\\x01\\x04\\x03\\x04\\x01\\x01\\x02\\f4\\x84q\\v\\v\\x00\\x00\\x00\\x00\\x02\\x00\\x02\\xff\\xbf\\x01\\xbe\\x01\\xc0\\x00\\t\\x00\\x13\\x00\\x00\\x01\\x11\\a\\x11'\\a\\x13'\\x117\\x13\\x11\\x17\\x11\\a'\\x117\\x11\\x17\\x01\\xbe@\\x9e\\x9f\\x01@\\xde ?__? \\x01@\\xff\\x00$\\x00\\xff\\\\\\\\\\xff\\x00%\\x01\\x00\\x80\\xfe\\\\\\x00\\xff$\\xff\\x0077\\x01\\x00$\\xff\\x00\\x12\\x00\\x04\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x002\\x00:\\x00B\\x00t\\x00\\x007>\\x043\\x1e\\x02\\x17>\\x0232\\x1e\\x03\\x15\\x1e\\x01\\x1f\\x01\\x16\\x0e\\x01\\\"\\a\\x0e\\x02\\a\\\".\\x03'\\a\\x06'&/\\x01*\\x01.\\x017\\x17#\\\"4;\\x012\\x14\\a#\\\"4;\\x012\\x147\\x0e\\x01&767>\\x0354&\\\"\\x06\\x15\\x14\\x1e\\x02\\x17\\x16\\x17\\x16\\x06&'&'&'.\\x0254>\\x0132\\x16\\x15\\x14\\x0e\\x01\\a\\x06\\a\\x06v\\x01\\x03\\x02\\x02\\x04\\x02\\x03\\x05\\a\\x03\\x02\\x03\\x05\\x04\\x03\\x06\\x05\\x04\\x04\\x05\\x18\\n\\n\\x01\\a\\x0f\\n\\t\\x01\\x04\\x04\\x02\\x02\\x02\\x03\\x04\\x04\\x03\\t\\x03\\b\\x03\\x05\\x03\\a\\n\\x1a\\n\\x05\\x8d\\x88\\x10\\x10\\x88\\x10(X\\x10\\x10X\\x10\\x12\\x01\\x12\\x0f\\x02\\a\\b\\b\\x1e\\x0f\\rKhK\\r\\x0f\\x1e\\b\\b\\a\\x02\\x0f\\x12\\x01\\a\\x05\\t\\x0f\\x10\\x0f\\x0f+J+B^\\x0f\\x0f\\x10\\x10\\b\\x05\\xd2\\x02\\v\\b\\b\\x04\\x01\\f\\x12\\x05\\b. \\r\\x16\\x13\\x16\\x01\\x02\\x03\\x01\\x01\\x02\\x04\\x01\\x01\\x04\\x11\\x06\\x01\\x06\\v\\f\\x0f\\x06A\\t\\x13\\x06\\x0e\\t\\x02\\x03\\x03\\xcd  @  \\x8e\\v\\x05\\v\\n,\\x0e\\x101\\x1b(\\x143HH3\\x14(\\x1b1\\x10\\x0f,\\t\\v\\x05\\n'\\n\\x11\\x18\\x1b\\x1c/\\x18*G*[@\\x18/\\x1c\\x1b\\x1a\\x0f\\n\\x00\\x01\\x00\\x0e\\x00\\x00\\x01\\xf2\\x01\\x80\\x00$\\x00\\x00\\x134/\\x0153\\x1773\\x15\\a\\x06\\x17\\x11\\x06\\x1f\\x01\\x15#576=\\x01\\x03#\\x03\\x15\\x06\\x1f\\x01\\x15#576'H\\a-\\x8cm_\\x86'\\x05\\x01\\x01\\x05&\\xbe'\\x04l\\x0f\\u007f\\x01\\b3\\x903\\t\\x02\\x012\\t\\a6\\b\\xee\\xee\\b%\\x04\\a\\xfe\\xf0\\a\\x04%\\b\\b&\\x04\\a\\xdc\\xfe\\xec\\x01\\x14\\xb9\\f\\t>\\b\\b>\\t\\f\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x02+\\x01\\xb8\\x00\\x0e\\x00\\x1d\\x00+\\x00O\\x00\\x00\\x12\\x14\\x16\\x17\\x06#\\\"&54632\\x17\\x06\\x13>\\x01'\\x16\\x17\\x16\\x0e\\x01&'&'\\x1e\\x01\\x036\\x16\\x17\\x16\\x06\\a6&'.\\x01\\a7\\x1732\\x1d\\x01\\x14+\\x01\\\"\\x1d\\x01\\x14+\\x01\\\"=\\x014+\\x01\\\"=\\x014;\\x012=\\x014;\\x012\\x1d\\x01\\x14rnS\\x1c\\x1eg\\x92\\x92g\\x1e\\x1cS\\xbb:&\\x1d\\x11\\x0e.\\x1b\\x83\\x9e/\\r\\b.\\x88\\xa17\\x81&\\\"\\x0e*\\x0e\\f\\x1b b1\\x02j(\\b\\b(\\b\\b0\\b\\b(\\b\\b(\\b\\b0\\b\\x01\\x1b\\xb6\\x88\\x0e\\a\\x91gg\\x91\\a\\x0e\\xfe\\xb9)\\x86;\\x10\\x13B\\x9f^\\x1cB\\x13\\x15/\\t\\x01\\x1e)\\f1-r+&U#* \\r\\x01n\\b0\\b\\b(\\b\\b(\\b\\b0\\b\\b(\\b\\b(\\b\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x00\\x113\\x15#73\\x15#\\a3\\x15#73\\x15#\\xd7\\xd7\\xe9\\xd7\\xd7\\xe9\\xd7\\xd7\\xe9\\xd7\\xd7\\x01\\xa0\\xd7\\xd7\\xd7\\x12\\xd7\\xd7\\xd7\\x00\\x01\\x00\\x00\\xff\\xf1\\x01\\xc0\\x01\\x80\\x00\\x1c\\x00\\x00\\x11!\\x15\\x14\\x06&=\\x014&\\x06\\a\\x15\\x14\\x06\\\"&=\\x014.\\x01\\x06\\a\\x15\\x14\\x06&5\\x01\\xc0,,*+\\x03\\x1e$\\x1e\\x19 \\x1c\\x03,,\\x01\\x80\\xcc\\x1b\\x17\\x16\\x1c\\x18\\x1b\\x17\\x14\\x1at\\x15\\x17\\x17\\x15\\xaf\\x14\\x18\\x02\\x14\\x13\\xef\\x1b\\x16\\x17\\x1a\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x10\\x00\\x1b\\x00$\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1754&\\\"\\x06\\x15\\x116754&\\\"\\x06\\x1d\\x01632\\x17\\x114&\\\"\\x06\\x1d\\x01\\x16\\x91Α\\x91Α\\xa8\\x17\\\"\\x17!\\xa7\\x17\\\"\\x17\\x14\\x14\\x14\\x8c\\x17\\\"\\x17/\\x01\\xb8\\x91Α\\x91\\xce\\xcf\\xe0\\x11\\x17\\x17\\x11\\xfe\\xf0 \\x1a\\xd6\\x11\\x17\\x17\\x11\\xd6\\x03=\\x01\\x10\\x11\\x17\\x17\\x11\\xe0\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\f\\x00\\x1b\\x00\\x00%3\\x0e\\x02#\\\"&'35\\x177\\x05#&5462\\x16\\x15\\x14\\a#5\\a'\\x01`l\\x15AR,Bq!lhh\\xfe\\xf8K\\r\\x91Α\\rK\\xa1\\x9f@$6\\x1eA7\\x80iiP')g\\x91\\x91g)'П\\x9f\\x00\\a\\xff\\xff\\xff\\xc9\\x01\\xf1\\x01\\xa1\\x00\\x04\\x00\\x15\\x00\\x1f\\x006\\x00G\\x00\\\\\\x00h\\x00\\x00%\\x06\\a&'7&\\\"\\a&'\\x15\\x14\\x1e\\x02>\\x02=\\x01\\x06'\\x16\\x1762\\x1767&\\\"\\a\\x16\\x1762\\x1767\\x15\\x16\\x14\\a\\x15\\x0e\\x03.\\x01'&47\\x17>\\x013\\x1630\\x14\\x0e\\x05\\a\\x06#'236\\x1e\\x03\\x17\\\"'&'.\\x064\\x17\\x16\\x17\\x06\\\"'6?\\x01\\x167\\x16\\x01*\\x16\\x1c\\x1d\\x15\\x90*h+\\x1f&$:FF:$'\\xef\\n\\n,d,\\n\\n0\\x84\\x8a\\x19\\x19>\\xb8>\\x18\\x1a,,\\a>VcU?\\x06,,\\xd7\\t#:\\a\\x04\\x01\\x01\\x02\\x04\\x05\\b\\x05\\n\\x10\\xc4\\x04\\a\\x1a\\x16\\x1c\\v\\v\\x04$\\x1a\\x0f\\n\\x05\\b\\x05\\x04\\x02\\x01\\x01\\xa9\\x02\\x01\\x164\\x16\\x01\\x03\\x06&&\\x04J\\x15\\t\\n\\x14\\xc8\\x1e\\x1e\\x1a\\n\\xa1-F%\\x11\\x11$G-\\xa1\\n \\x05\\x06\\x17\\x17\\x06\\x06-\\x17\\x01\\aEE\\a\\x01E\\x1cg\\x1c\\x01:T&\\x01&U;\\x1cg\\x1c\\xbe(\\x10\\x01\\a\\x03\\b\\x06\\a\\a\\x06\\x03\\x065\\x01\\x01\\x05\\f\\x15\\x11\\x01\\x01\\x06\\x03\\x06\\a\\a\\x06\\b\\x03\\a{\\x04\\x05\\r\\r\\x06\\x04\\x06\\v\\v\\x02\\x00\\x02\\x00\\x00\\xff\\xc4\\x01\\xc0\\x01\\xc2\\x00;\\x00j\\x00\\x00\\x16\\\"/\\x01&7676\\x1f\\x01\\x16?\\x016=\\x014/\\x01&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x166=\\x014;\\x012\\x1d\\x01\\x14\\x06#\\\"/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\x0f\\x017\\x14\\x06#\\\"54;\\x012\\x17\\x1e\\x013254.\\x03'.\\x0254632\\x17\\x14\\x06+\\x01\\\"'.\\x01#\\\"\\x15\\x14\\x16\\x17\\x1e\\x01\\xea\\x14\\t>\\n\\b\\x0f\\r\\x02\\x03/\\x03\\x03\\xb9\\x02\\x03\\xb8\\x03\\x03\\xb8\\x03\\x032\\x15\\x18\\x05\\x17\\x06\\x1d\\x1a\\x13\\x180\\x13\\x13\\xb9\\x13\\x13\\xb9\\x14\\x14\\xb9\\x820,b\\x06\\x17\\x05\\x01\\x03\\x19#7\\x01\\b\\r\\x19\\x12\\x1b\\\"\\x14,(V\\x06\\x03\\x03\\x18\\x04\\x01\\x04\\x19\\x1c0\\x16).&<\\x05%\\x05\\x03\\x05\\a\\x02\\x02\\x1c\\x02\\x02j\\x02\\x04\\xd5\\x03\\x02j\\x02\\x02j\\x02\\x03\\xd5\\x04\\x01\\x1e\\b\\r\\x0e\\xd2\\x06\\x06\\xd2\\x1b\\x1f\\f\\x1c\\v\\x17\\xd5\\x16\\vk\\v\\vk\\v\\x16\\xd5\\x17\\vk\\xcd\\x1e!D\\x05\\x04\\x14\\x11\\x1d\\x05\\x05\\x06\\x05\\x04\\x02\\x03\\n\\x18\\x14\\x1c\\x1f@\\x03\\x03\\x04\\x13\\x0f\\x1a\\n\\t\\x06\\x06\\x18\\x00\\x00\\x00\\x05\\x00\\x00\\x00@\\x02@\\x01 \\x00\\x03\\x00\\v\\x00\\x13\\x00\\x19\\x00%\\x00\\x00%#53%\\x15!\\x15#5#5\\x17#\\x15353\\x1537#\\x153537#\\x15353\\x15353\\x153\\x01   \\x01 \\xfe\\xe0\\x80\\xa0\\xa0\\x80@  \\xa0\\x80@@\\xe0\\xc0@    \\xa0@@\\xc0  \\xc0 \\x80``\\x80\\xa0 \\x80\\x80````\\x00\\x00\\x00\\x04\\x00\\x00\\x007\\x02\\x83\\x01G\\x00\\t\\x00D\\x00N\\x00W\\x00\\x00\\x133\\a#'\\a#73\\x17%\\x16\\x06\\a\\x1e\\x01\\a\\x0e\\x01'.\\x02'&5\\x06\\a\\x06#7327676&+\\x01\\\"&7676763\\a#\\\"\\a\\x06\\a\\x06\\x1e\\x01;\\x012\\x17675&6\\x17\\x16\\a6'\\x06\\a\\x06\\x16\\x17\\x1667676&'&\\a\\x06\\xbb-093\\x1f-117\\x01\\xe7\\x03)\\x1c\\x0e\\x03\\x0e\\x13O%\\x0f\\x17\\x10\\x03\\x01\\a\\v\\x16\\x8b\\v\\u007f\\v\\x03\\x03\\x01\\x01\\x03\\x05X\\x18\\r\\x05\\n\\a\\t\\x16\\v\\x95\\n\\x85\\v\\x03\\x01\\x02\\x01\\x02\\x06\\x04X\\x1d\\x05!=\\t=%&i\\x04\\v1\\x14\\x12\\t\\x17\\x14%\\x1a\\x18\\v\\n\\x03\\f\\x15\\v\\t\\x01 \\xa0jj\\xa0rs\\x13\\x1a\\x06\\x176\\x1c&'\\t\\x04\\x10\\x18\\x0f\\x05\\x06\\x04\\x01\\x02(\\a\\a\\b\\x03\\x03\\r\\x10$\\v\\r\\x02\\x01 \\a\\x03\\t\\x02\\x04\\x01\\x11$\\f\\x01\\x1e#\\a\\x06\\x82\\x17\\x19\\x06\\x15\\x13*\\x04\\x03\\x1ah\\x04\\x06\\x06\\x10\\x02\\x05\\f\\n\\x00\\x00\\x0f\\x00\\x00\\xff\\xc8\\x01\\x90\\x01\\xb9\\x007\\x00F\\x00N\\x00V\\x00^\\x00f\\x00n\\x00v\\x00~\\x00\\x86\\x00\\x8e\\x00\\x96\\x00\\x9e\\x00\\xa6\\x00\\xb0\\x00\\x00\\x13:\\x01\\x1e\\x06\\a4>\\x04\\x16\\x17\\x14\\x0e\\x05'4>\\x057\\\"&\\x0e\\x02\\a.\\x04'\\x1e\\x04\\x17\\x14.\\x01\\x01\\x14\\a\\x06\\\"'&547632\\x17\\x16\\x044&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x164&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x164&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x164&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x1627&'&\\\"\\a\\x06\\a62X\\x02\\x06\\x12\\x11\\x17\\x13\\x14\\f\\x06\\x02\\x02\\a\\n\\x11\\x14\\x1e\\x11\\x02\\x06\\t\\x0e\\x12\\x18\\x0f\\x02\\x05\\x06\\v\\r\\x13\\n\\x02\\x05\\x13\\x12\\x1a\\f\\x01\\x03\\x0f\\x13#\\x15\\x03\\v\\x1a\\x14\\x11\\x0154\\x019 B\\xccB (B^^B(\\xfe\\xe8\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18X\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18X\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18X\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18\\x10\\x10\\x18(\\b\\b>\\xa4>\\a\\tO\\xa2\\x01\\xb8\\x01\\x02\\a\\t\\x11\\x14\\x1e\\x12\\x01\\x05\\x0f\\v\\f\\x06\\x03\\a\\x01\\x05\\x10\\v\\x10\\a\\x05\\x05\\x01\\x04\\f\\n\\r\\t\\a\\x01\\x01\\x03\\b\\x17\\x10\\x04\\r!\\x1a\\x16\\x02\\x01\\x04\\x10\\x16(\\x19\\x03\\b;\\xfe\\xfcO5005OBB11B\\xb6\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11t\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11t\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11t\\x18\\x10\\x10\\x18\\x10S\\x17\\x10\\x10\\x17\\x11S\\x17\\x10\\x10\\x17\\x11D'\\x11  \\x10(\\x0f\\x00\\x00\\n\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\t\\x00\\f\\x00\\x10\\x00\\x13\\x00\\x1a\\x00#\\x00/\\x009\\x00A\\x00T\\x00\\x00\\x17\\\"&4632\\x17\\x0135#7\\x173\\x06\\a7\\x15'\\x172\\x1d\\x01#547\\x14\\a#\\x11\\x1e\\x03'35#\\x15#5#\\x15#5#\\x17#54#\\\"\\x1d\\x0135'\\a\\x15\\x175'57'#\\x15353\\x16\\x06#\\\"&7'\\x0e\\x01\\x16326\\xf8g\\x91\\x91g\\x1f\\x1e\\xfe\\xf5Ε\\x95`o)F9\\x15\\x01\\b\\x10{\\x17\\x81!8)\\x16\\x88E\\x0e\\x0e\\x0e\\r\\x0eD\\x1a\\x15\\x15E\\x01DD\\x0e\\x0e\\x04$\\x0e\\v\\a\\v\\x0f\\x10\\t\\n\\f\\b\\x02\\x13\\x12\\x19\\x118\\x91Α\\b\\xfe\\x88 \\xd5\\xf5?\\x1e\\xe7\\x10\\b.\\v\\n\\b\\r471\\x01M\\x0e/:HJ0!\\x1e\\x1e!\\xe9\\v\\x19\\x1a\\x19\\x0fg\\x1e\\f\\x1e\\x11\\x06\\x1a\\x06V\\x1b\\f\\f\\x17\\x1c\\n\\n\\t\\x1e\\x19,\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xe0\\x028\\x01\\xa1\\x00\\n\\x003\\x00m\\x00\\x00%\\x14\\x06#\\\"'67>\\x01\\x16\\a45467\\x06\\x17\\x1e\\x016765&5\\x16654&\\a.\\x01\\a\\x06\\a\\x0e\\x01\\x15\\x14\\x1e\\x013276'&#\\\"'4>\\x02;\\x02>\\x053735467;\\x012\\x16\\x1f\\x01\\x1532\\x1732\\x16\\x1f\\x01\\x14\\x06\\a+\\x01\\a\\x14\\x06\\x0f\\x01!\\\".\\x02=\\x01'#\\\"&'\\x01\\x816\\x1d\\x0e\\x02\\x01\\x03\\x16) \\xc3&\\x14\\x06\\x05\\x01\\x0f\\x0f\\x05\\x06\\x03.^O8\\x02\\x13\\t\\t\\x01,9\\n\\x11\\n\\x18\\x06\\x06\\x11\\x02\\x02\\x04\\xbe\\b\\v\\v\\x04\\x04\\x1d\\x04\\x10\\x16\\x19\\x17\\x13\\x06\\x06\\x1c\\v\\x05\\x05V\\b\\v\\x01\\x01\\x1cb\\x15\\x1f\\x11\\x13\\x01\\x01\\x13\\n\\t\\x1e\\x17\\x16\\v\\f\\xfe\\xe0\\r\\x12\\t\\x05\\x17\\x1e\\x11\\x13\\x01\\xfe&:\\x06/I\\b\\x03\\x13^\\x01\\x03\\x12,\\x0e\\xbd5\\x0f\\x0f\\x02\\x06\\x06\\r(<\\v[:4%\\x11\\v\\a\\a\\a\\x15\\x17H\\x1f\\r\\x13\\f\\x15\\x13\\x04\\x01R\\v\\x0f\\a\\x04\\x0f\\x17\\x0f\\f\\x05\\x04\\x01\\x13\\b\\t\\x01\\t\\x05\\x04\\x13K\\x12\\n\\t\\x11\\x13\\x01\\xda\\x13\\x16\\x02\\x01\\t\\r\\r\\x05\\x04\\xda\\x12\\n\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xca\\x02\\x00\\x01\\xb6\\x00\\n\\x00\\x0e\\x00\\x00%\\x14\\x06#\\\"&4632\\x16\\x01\\x113\\x11\\x02\\x00lLLllLLl\\xfe\\x00Z\\xfdLll\\x98mm\\xfe\\x81\\x01\\xec\\xfe\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x12\\xff\\xc0\\x01\\xae\\x01\\xc0\\x00\\x12\\x00\\\"\\x005\\x00\\x00\\x01\\x16\\x15\\x14\\a\\x0e\\x03#\\\"&'&54632\\x032>\\x0254&#\\\"\\x06\\x15\\x14\\x1e\\x02\\x13\\x14\\x06#\\\".\\x0167\\x14\\x162654'6\\x1e\\x01\\x01r<R\\a\\x15'(\\x0e\\x18F S{VSS\\x0e=>/mKPn/?@\\u007fB-$9\\x1a\\x05\\x15\\x1b%\\x1a\\x1b%B&\\x01\\x80?WSn\\t\\x19+\\x1c?*mTX~\\xfe\\x129Qf(PttP(fQ9\\x01\\x1f,A$5A\\x1b\\x12\\x1b\\x1b\\x12\\x1d\\f\\t\\x1b;\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xff\\x01\\xf1\\x01\\x81\\x00!\\x00,\\x00A\\x00I\\x00\\x00%\\x17\\a#\\a\\x15\\a'#\\a/\\x02\\x06/\\x0175'73757\\x1737\\x1f\\x022\\x15\\x17\\x0f\\x014&\\x0e\\x01\\x1e\\x013>\\x027\\x16\\x14\\a\\x06\\a\\x06\\\"'\\x15&'&476762\\x175\\x04\\x1e\\x0164&\\\"\\x06\\x01C\\x15\\b\\x1e\\t\\x14\\x16\\r\\x14\\x14\\x02\\t\\x1d\\x01\\t\\x15\\x15\\b\\x1e\\t\\x14\\x15\\x0e\\x14\\x14\\x02\\t\\x1d\\n\\x15-\\x14\\x1a\\x11\\x01\\x13\\r\\t\\x0e\\a\\xc9\\x11\\x11^\\x018\\x9e8)8\\x11\\x11? 8\\x9e8\\xfe\\xe2Y~ZZ~Y\\xba\\x15\\x14\\t \\b\\x18\\x18\\b!\\t\\x01\\x02\\x14\\x15\\r\\x15\\x14\\t\\x1d\\b\\x15\\x15\\t\\x1d\\t\\x01\\x14\\x15\\x04\\f\\x12\\x01\\x13\\x1a\\x11\\x01\\t\\x0e.\\x100\\x10_\\x0187\\x01*8\\x100\\x10?!87\\x01\\xc9Y\\x01Z~YY\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xe5\\x02\\x80\\x01\\x9d\\x00F\\x00M\\x00l\\x00\\x85\\x00\\x9d\\x00\\xb8\\x00\\xd1\\x00\\xeb\\x00\\xff\\x00\\x007\\x06&'.\\x01'&'&\\a\\\"#67>\\x01\\x17\\x1e\\x04\\x17\\x1e\\x013021\\x0e\\x01\\a\\x06'.\\x01'&\\x0e\\x01\\x16\\x17\\x1e\\x0170703\\x0e\\x01'.\\x02'&\\x06\\a\\x06\\x17\\x1e\\x061\\x06\\x03\\x1667\\x06\\a\\x16\\x13\\x06&'&'5\\x16\\x17\\x167>\\x01\\x1e\\x01\\x17\\x06\\a\\x06\\x17\\x1e\\x01\\x17\\x16\\x1701&'&\\x0676\\x17\\x16\\x17\\x16\\x15\\\"\\x1545.\\x01\\a\\x06\\\"&'&74\\x17\\x16\\x17\\x16\\x17\\\"\\x0e\\x02\\a\\x06'50>\\x01767>\\x02\\x17\\x16\\x170\\x15&'01&\\\"\\a\\x0e\\x05\\a\\x06'&1\\x1667>\\x0476'0'2\\x17\\x1e\\x03\\x17\\x167:\\x016323\\x061\\x06\\a\\x06'&\\x05\\x0e\\x01'.\\x02'&'616\\x17\\x1e\\x05\\x17\\x1e\\x030\\a\\x16\\x15&'&'61\\x16\\x17\\x1e\\x06\\x15\\x16\\xd5\\\"Q\\r\\x05\\x01\\x02\\n.\\t\\t\\x02\\x01\\x01\\x01\\x1bK\\\"#8)'4\\x1e\\x04\\r\\x02\\x02\\x02\\x19\\t\\x1d\\x17\\x03\\x1b\\t\\f\\x16\\x03\\x1c\\x19\\x1dR\\x18\\x01\\x01\\x12?\\x1b\\x16(&\\x0e\\x0e$\\x02\\x01\\a\\x05\\r\\f\\r\\v\\b\\x06\\x05\\x9e\\n\\x19\\x01\\x14\\x11\\x01\\xc5\\x1fD\\x18\\x0e\\x05\\\"\\x15%#\\b\\x10\\v\\a\\x01\\x14\\x04\\n\\x11\\bF\\x13\\a\\x03\\x1b\\r\\x0e3\\xa2*\\x19\\x16\\n\\x05\\x01\\x05%\\x1a\\x1b=C\\x16\\x02\\x01\\x03\\x1a\\\"'\\x90\\v\\x13\\x10\\\"\\x18\\x1a\\x13\\n\\r\\a\\a\\x10\\r\\x11!\\x13\\x13\\x11\\t\\x1a\\x14\\\"\\x0e\\x01\\x0e\\x04\\r\\t\\x0e\\a(\\x1a\\x01\\x11\\x19\\r\\x04\\x12\\t\\x10\\x10\\b)\\xee\\x03!\\x15\\a\\x0e\\t\\x0f\\x05\\x0f\\x15\\x02\\x05\\x05\\x01\\x01\\x01\\x02\\f\\x0e$%\\x1c\\x01\\\\\\x04\\x16\\x11\\x05\\n\\f\\x04\\n\\x12\\x01\\x17\\x18\\x03\\x06\\x04\\x05\\x04\\x06\\x02\\x04\\t\\x05\\x06\\xd4\\x01\\x1d\\x12\\x13\\x1d\\x01\\x18\\x0f\\x05\\t\\b\\x05\\x06\\x03\\x05\\x05h\\x0174\\x144\\x0eD\\t\\x01\\x01\\x01\\x01\\x14\\x12\\x03\\x03\\\"//%\\x05\\x01\\x01\\x02\\v\\x01\\x06\\x10\\x02\\x17\\x02\\x04\\t\\x1d,\\x10\\x11\\b\\n\\x01\\x16\\x1b\\x03\\x03&0\\t\\t\\n\\x12\\f\\x0f\\n\\x10\\n\\a\\x04\\x02\\x01\\x02\\x01\\x17\\n\\x05\\f\\x01\\x04\\x01\\xfe\\xa1\\x01#\\x1b\\x0f\\b\\x01\\x15\\x06\\v\\x0e\\x03\\x02\\x03\\x03\\x02\\x04\\x04\\t\\b\\x04\\x05\\x10\\x06\\x05\\b\\x01\\x01\\a\\xfc\\r\\n\\t\\x1a\\r\\x0f\\x01\\x01\\x01\\x13\\x14\\t\\t\\x1d\\x1c\\x02\\x01\\x01\\x02\\x14\\a\\ai\\x10\\x15\\x16\\x05\\x06\\x01\\x01\\x03\\a\\a\\x06\\x10\\x0e\\x0e\\r\\x02\\x01\\v\\x01\\x03\\x18\\x04\\b\\x01\\b\\x03\\x06\\x02\\x04\\x01\\x05\\r\\x01\\x03\\x02\\a\\x02\\v\\x05\\b\\x04\\x01\\x06\\x89\\x02\\b\\x03\\t\\a\\v\\x03\\n\\x02\\x01\\x01\\x06\\x01\\x04\\x13\\x0f\\xd7\\x03\\x05\\x03\\x02\\a\\f\\x03\\a\\x02\\x01\\x0e\\b\\x01\\x03\\x03\\x05\\x04\\x06\\x02\\x03\\x05\\x01\\x01\\x8a\\x01\\x01\\x03\\x14\\x16\\a\\x01\\x01\\x03\\x02\\x04\\x05\\x05\\b\\x03\\b\\x01\\x06\\x00\\x00\\x00\\x03\\xff\\xf9\\xff\\xe3\\x02@\\x01\\xa0\\x00\\x17\\x00(\\x00;\\x00\\x00%\\x0e\\x03\\x0f\\x0257>\\x01'&\\x0f\\x015676\\x17\\x1e\\x01\\x14'54'&\\x06\\x15\\x11'\\x11\\x16\\x17\\x1e\\x01\\x15\\x14\\x06\\x05.\\x017>\\x01?\\x02\\x15\\a\\x0e\\x01\\x17\\x16?\\x01\\x15\\x06\\x02;\\x03\\v\\n\\t\\x03\\x03͗\\r\\x03\\n\\x19\\x1fe%'E=\\x15\\x16\\xe6\\x12\\b\\v^6L;/=\\xfe\\xa5 \\x11\\x11\\b\\x1a\\t\\t\\x86a\\r\\x03\\n\\x1a\\x1f.PL\\x04\\b\\x06\\x04\\x01\\x02I66\\x04\\f\\x03\\t\\f#8\\r\\x04\\b\\x17\\a\\x12\\x11U\\x8b\\x1f\\x05\\x03\\x0e\\r\\xfe\\xa5\\x1d\\x01\\x9f\\n\\x19\\x15<97*l\\t#\\v\\x06\\f\\x03\\x04/6#\\x04\\f\\x03\\t\\f\\x111\\x0f\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xde\\x01\\xb5\\x01\\xa3\\x00\\x11\\x00\\x17\\x00\\x1d\\x00(\\x00-\\x00\\x00\\x01\\x1e\\x01\\x0f\\x02\\x06&'\\x03&67%6\\x16\\x0f\\x01'\\a\\x1776&\\x05\\x177'&\\x06\\x13>\\x047'\\x13\\x1e\\x01\\x016/\\x01\\a\\x01\\x97\\x11\\f\\f\\xeb#\\b#\\x05i\\x03\\r\\v\\x01\\x10\\x0e\\x16\\b\\x0e\\n\\xbd\\xb1\\x11\\x02\\x04\\xfe\\xea\\x9ea\\xf9\\x04\\x05t\\x01\\x04\\v\\b\\t\\x02\\u007fS\\x01\\x06\\x01\\x13\\x06\\tjZ\\x01P\\x01\\x1f\\r\\xe7Q\\r\\x04\\x10\\x01\\\\\\x0e\\x15\\x02-\\x02\\x17\\x11!1\\x1f\\x10(\\x04\\x047\\xf4\\xe6\\x17\\x01\\x06\\xfe\\xa0\\x02\\t\\x18\\x13\\x15\\x04\\xc5\\xfe\\xed\\x03\\x01\\x01=\\x06\\x03\\t\\xd5\\x00\\x00\\x00\\x00\\x04\\xff\\xfa\\xff\\xd8\\x01\\xc8\\x01\\xa5\\x00\\x1a\\x00%\\x00G\\x00V\\x00\\x00%\\x16\\a\\x0e\\x01+\\x01\\x153\\x15\\x14\\a\\x06'&=\\x0146;\\x0126=\\x0132\\x02\\\"\\x06\\x14\\x1632>\\x0154'\\\"\\x0e\\x01\\x1d\\x01#\\\"&'&7>\\x01;\\x015#54>\\x0376\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06#'2>\\x014.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x02\\x01\\xb8\\x0f\\x0f\\t\\x17\\x16\\xa0k5656 \\x16k\\x1a(((\\x83\\x11\\f\\f\\b\\x06\\t\\x05\\x8a\\x12\\x1f\\x12%\\x16\\x1c\\x06\\x0e\\x0e\\x06$\\x18\\x93k\\x03\\a\\v\\x13\\x0e38\\x16\\x1f\\x1f\\x16r\\x06\\t\\x05\\x05\\t\\x06\\b\\f\\x03\\x06\\a\\xf8?.\\x1c\\x1a\\x0e)&\\x10\\x0f\\x0f\\x10&f\\x16 )\\x1b0\\xfe\\xfe\\f\\x11\\f\\x06\\t\\x06\\b\\xa8\\x12\\x1f\\x111\\x1d\\x1967\\x19\\x1d\\r)\\n\\x0e\\r\\t\\a\\x03\\t\\t\\x04\\x1f\\x15f\\x16 \\x8e\\x06\\t\\v\\n\\x05\\f\\b\\x04\\b\\x05\\x04\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17&6\\x173265#\\\"\\x06\\x1d\\x01265\\x17265#\\\"\\x06\\x1d\\x0126=\\x01&6\\x17\\x01a'88'\\xfe\\xfe'88'2\\x01\\x10\\t8\\x14\\x1d\\x9a\\n\\x0e\\x14\\x1d\\xb0\\x14\\x1d\\x9a\\n\\x0e\\x14\\x1d\\x01\\x10\\t\\x01\\xa08'\\xfe\\xfe'88'\\x01\\x02'8\\xa9\\t\\x10\\x01\\x1d\\x14\\x0e\\n\\x9a\\x1d\\x14\\x10\\x1d\\x14\\x0e\\n\\x9a\\x1d\\x148\\t\\x10\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00U\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056#\\\"#\\\"\\a\\x06\\a\\x063232\\a\\x06#*\\x01#\\\"\\a\\x06\\a\\x0e\\x01&7676#*\\x01#\\\"\\a\\x06\\a\\x06&767676&#*\\x01#\\\"\\a\\x06\\a\\x06\\a\\x06\\x17\\x1e\\x01\\x17\\x1632327656323276\\x91Α\\x91Α\\x01\\xa3\\x04\\t|\\a\\x06\\x03\\x03\\x0e\\x04\\t<\\x10\\t\\x03\\x02\\b\\r5\\r\\b\\x03\\x1e\\x02\\x01\\b\\x04\\x02\\x01\\x18\\x04\\n\\x03'\\x03\\x05\\x02\\x1d\\x01\\x03\\v\\x03\\b\\t\\x1c\\r\\x02\\x04\\x05\\x04#\\x04\\x06\\x02\\b\\x1f\\x13\\a\\x02\\x03\\x02\\x19\\a\\x03\\x05.[\\x06\\x02\\x1f\\x03\\b\\x04A\\t\\x04\\x11\\x01\\xb8\\x91Α\\x91\\xce\\x0e\\t\\x06\\b\\x1f\\t\\b\\x05\\aF\\x03\\x03\\x02\\x05\\x06\\x035\\t\\x04B\\x02\\x05\\x04\\a\\x12\\x15?\\x1d\\x04\\a\\x06\\x12F+\\x10\\x05\\x04\\x03\\x1b\\a\\x04\\x05E\\x02\\a\\b&\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00!\\x00@\\x00G\\x00Q\\x00[\\x00\\x00\\x05#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06'&#\\\"\\a\\x06\\a#'#\\x1535>\\x0132\\x1f\\x01\\x06\\a\\x06#\\\"&'365654'&'&'&#\\\"\\x06\\x15\\x14\\x1632767&\\x16\\a#>\\x013\\x1e\\x013264&#\\\"\\x06\\x14\\x163264&#\\\"\\x06\\x01@\\xc05KK5\\xc05KK\\xb4\\t\\a\\v\\b\\b\\x05\\x01\\x04\\x1c$\\x02\\r\\n\\a\\tx\\x05\\t\\t\\f\\x12\\x10\\x01S\\x02\\x01\\x05\\x05\\a\\b\\n\\n\\n #\\x1f\\\"\\x10\\x0e\\x0f\\b(\\v\\x013\\x01\\x0e\\x0e\\\\\\f\\n\\n\\r\\r\\n\\n\\f\\f\\n\\n\\r\\r\\n\\n\\f K5\\xc05KK5\\xc05K\\xcf\\x03\\x06\\x05\\v\\x13\\x8bZ\\b\\n\\x03F\\x03\\x04\\x03\\x12\\x11\\a\\a\\x06\\x06\\x10\\v\\v\\a\\x06\\x03\\x03%%\\\"'\\x05\\x04\\af\\x10\\x0f\\x0e\\x11\\x05\\f\\f\\x14\\v\\vx\\f\\f\\x13\\v\\v\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf1\\x01\\xb8\\x00\\t\\x00%\\x00(\\x00\\x00%\\a'76\\x16\\x1f\\x01\\x16\\x06\\x032\\x1e\\x01\\x15\\x14\\x06#\\\"/\\x01\\x057/\\x017676/\\x01&'&\\x0f\\x01>\\x01\\x03&5\\x01\\x19\\xc6\\x1c\\xbc(\\x1a\\x05\\v\\x05\\x10BDrB\\x92fE:\\x17\\x01\\x1f0\\n\\xdc]$\\x19#\\f\\n\\x0e0\\\"-\\xde\\x14\\x86{&\\xaa9b6\\v\\a\\x11'\\x10\\x12\\x01\\x05BsCf\\x92#P%\\r\\\"\\x1b\\x1b\\n\\x17!)%0\\b\\x04\\r@Sk\\xfe\\x83>F\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00#\\x00:\\x00E\\x00P\\x00[\\x00\\x00\\x01\\x1e\\x01\\x14\\x06\\a\\x0e\\x01'\\x0e\\x01.\\x01'>\\x04'.\\x02676&/\\x01>\\x02\\x16\\x176\\x16\\x03264&\\\"\\x06\\x15\\x14\\x17\\x16\\a0\\x06\\a676?\\x01\\x1632'\\\"&'46\\x16\\x1d\\x01\\x14\\x06746\\x16\\x1d\\x01\\x16\\x0e\\x01.\\x01\\x17\\\"&'46\\x16\\x1d\\x01\\x14\\x06\\x01\\xe6,..,7\\x94=!L>(\\v\\x03\\n\\x18\\x11\\v\\x04\\x12\\x1a\\v\\x18\\x1f\\x05\\x1e\\x12\\x12\\v(?K!>\\x93\\x89_\\x87\\x87\\xbe\\x864\\r\\x1d\\x02\\x01\\x1b\\x19\\x14\\x10\\x14+,\\x01n\\x0e\\x14\\x01\\\"#\\x14<!#\\x01\\x0e\\x14\\x15\\x0e\\x8f\\x0e\\x14\\x01\\\"#\\x14\\x01T\\x1cPQP\\x1c$\\x18\\r \\x1c\\x06\\n\\a\\x03\\t\\x1b\\x1b#\\x10\\x132>F\\x1f\\x19:\\x11\\x11\\a\\n\\x06\\x1d\\x1f\\r\\x18\\xfe\\xb3WzWW=5),7\\x04\\x01\\x02\\r\\v\\x10\\x13\\vq\\x13\\x0e\\x16\\x12\\x11\\x15\\x01\\x0e\\x14!\\x16\\x12\\x11\\x15\\x01\\r\\x12\\x04\\x04\\x12\\x15\\x13\\x0e\\x16\\x12\\x11\\x15\\x01\\x0e\\x14\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1b\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x01'61\\x166/\\x01&\\\"\\x0f\\x0137\\x17#\\\"\\x06\\x1f\\x01\\x91Α\\x91Α\\x01\\x95eJ\\x16\\x14\\x0e\\x9e\\n\\\"\\n\\x94ZUTK\\x16\\x12\\rp\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xedw\\x01\\x01(\\x11\\xb9\\r\\r\\xadcc)\\x0f\\x84\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\xff\\xec\\x01\\xc0\\x01x\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00\\x00\\x01'7\\x17\\x057\\x17\\a'7\\x17\\x0f\\x01'7\\x17'7\\x17\\x0f\\x01'7\\x17\\a7\\x17\\x0f\\x017\\x15\\a\\x17\\a'?\\x01\\a'7\\x17\\a'?\\x01\\x17\\a'\\x17/\\x017'7\\x17\\a\\x177\\x17\\a?\\x01\\x17\\a\\x01^6JN\\xff\\x00.\\\"7Z \\x11%#\\t\\x1d\\x0e8\\x18\\t\\x1b\\x1d\\x04\\x17\\x068\\x15\\x03\\x16\\x1d\\x14\\x15<\\x1c\\x01\\x19+\\x1f\\x05\\x1b!)\\b#+\\x15.\\x0e|G\\x187-+\\x1c3\\x16=5P\\x11CBY\\x01\\\".',\\x05\\x1c\\\"\\x1e\\x1d\\x16\\x1c\\x17;#\\x12#B\\x12\\x18\\x121\\x1c\\x0f\\x1c \\r\\\"\\f\\f\\n&\\t\\x16\\t/\\v\\x0f\\r)\\x0e\\x9c\\x06@\\nH9\\x0e6\\xd6\\x04`\\b\\xac\\x16-\\x162\\x13W\\v\\xa5\\x1dB\\x1a\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xd0\\x01\\xd0\\x01\\xa0\\x00\\x05\\x00\\x14\\x00@\\x00D\\x00\\x00\\x13\\a5\\a7\\x15'\\x0f\\x01\\x0e\\x01\\x15\\x14\\x16\\x17\\x15.\\x01546\\x00\\x06'0'.\\x05'&/\\x01\\x06\\a?\\x01>\\x0154&'5\\x1e\\x03\\x15\\x14\\a\\x17\\x16\\x17\\x1e\\x04\\x17\\x161\\x064\\\"\\x14\\xddD66\\x10\\x01\\x0f\\x1f&/$:MO\\x01\\x81\\x1e\\x0e<\\b\\f\\b\\x06\\x03\\x05\\x01\\x11)\\t&,\\x02\\x10$-5+\\x1f7(\\x17\\x1d\\x0f\\x0e&\\x03\\x11\\x05\\r\\f\\a,\\x14\\x10\\x01>҃\\x19\\xbfs|\\x045\\f7\\\"';\\a6\\b[<<Z\\xfeX\\x1e\\x05,\\x06\\v\\b\\n\\x06\\r\\x03&\\x0e\\x0f\\x1a\\x03\\a1\\t:%*>\\x044\\x02\\x1b*9 0*\\n(\\x11\\x01\\a\\x04\\b\\r\\n<\\x13\\x10\\x10\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\xf0\\x01\\x80\\x00\\b\\x00\\x15\\x00\\x007\\x1e\\x02\\x17!>\\x02'\\x1e\\x03\\x17#.\\x03'6X-~w\\x0e\\xfex2M\\x06\\r)ps^\\x0e`\\t5EE\\\"\\x02\\xe8\\x069m<\\x04Me\\xca\\x06>`\\x90L-T?-\\rQ\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\r\\x00\\x15\\x00\\x00\\x05\\a'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x06264&\\\"\\x06\\x14\\x01\\xc0\\x1e\\x92.<Dbb\\x89b \\xbbjKLiL\\x01\\x1f\\x94&c\\x8cccF7,\\x1fLlLLl\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xdd\\x01\\xc3\\x01\\xa1\\x00M\\x00Q\\x00\\x00%\\x16\\x06\\x0f\\x01\\x17\\x16\\x06\\a\\x06&/\\x01\\a\\x17\\x16\\x0e\\x01\\a\\x06&/\\x01\\x06'\\\"&'&>\\x02?\\x01'\\x06'\\\"&'&>\\x01?\\x01'&>\\x0276\\x16\\x1f\\x017'&676\\x1e\\x02\\x1f\\x0176\\x1e\\x01\\x06\\x0f\\x01\\x1776\\x1e\\x01\\a7'\\a\\x01\\xbe\\x05\\x0e\\x0e-\\x10\\x04\\r\\x0e\\x10\\x1a\\x04\\x10^\\x10\\x03\\x04\\r\\t\\x0f\\x1a\\x05\\x104\\x05\\v\\x13\\x04\\x02\\x01\\x06\\v\\a-\\x1e5\\x05\\v\\x13\\x03\\x03\\x04\\f\\n-\\x10\\x02\\x01\\x06\\v\\a\\x0f\\x1b\\x04\\x10]\\x0f\\x05\\x0e\\x0e\\a\\x0e\\r\\n\\x02\\x10-\\x0e\\x1b\\t\\r\\x0e.\\x1f-\\n\\x12\\x0f\\xfb^\\x1f]\\xb2\\x0f\\x1b\\x04\\x0f/\\x0f\\x1a\\x05\\x05\\x0f\\r/ .\\n\\x13\\x0e\\x03\\x05\\x0e\\r0\\x12\\x01\\x0e\\n\\a\\x0f\\f\\n\\x02\\x0fZ\\x11\\x01\\r\\v\\n\\x12\\x0f\\x03\\x0f/\\a\\x0f\\f\\n\\x02\\x05\\x0e\\x0e/\\x1f/\\x0f\\x1a\\x05\\x03\\x02\\x06\\v\\a/\\x0f\\x05\\r\\x1d\\x1b\\x05\\x0fZ\\x0f\\x03\\x03\\r9 Z\\x1f\\x00\\x00\\x00\\x02\\x00\\x04\\xff\\xdc\\x01\\xbd\\x01\\xa5\\x00\\x10\\x007\\x00\\x007&>\\x01\\x1e\\x01\\x06\\a\\x06\\x17\\x16\\x17\\x14\\a\\x0e\\x01&\\x137&'&\\x06\\a\\x06\\x17\\x1e\\x02\\a\\x14\\x0e\\x01'\\\"'\\a\\x163\\x16>\\x0356'.\\x0254>\\x0132@<\\n\\x85\\xb2w\\tC\\n!\\x16\\x01\\x04,z\\x89\\xaa'\\x1d/)7\\x01\\x01\\x1e\\r/\\x1b\\x01\\x0f\\x10\\a\\x1f\\x11(\\\"2\\x06\\x10 \\x18\\x13\\x01\\x1d\\r/\\x19\\x12\\x0e\\x06\\x1a8B\\xb3w\\t\\x84\\xb2<\\t\\x14\\x0e\\x05\\x03\\x01\\x13\\x05+\\x01\\x04)\\x1a\\x01\\x01+&$\\x13\\a\\x0f\\x10\\x0e\\n\\f\\x04\\x01\\x18*!\\x01\\x01\\t\\x0f\\\"\\x17&\\x12\\b\\x0e\\x0e\\x0e\\n\\r\\x02\\x00\\x02\\xff\\xfb\\xff\\xbe\\x01\\xbc\\x01\\xc4\\x00\\x1f\\x00=\\x00\\x00%\\x17\\x16\\x0f\\x01\\x0e\\x01/\\x02&?\\x016\\x1f\\x01\\x16?\\x016/\\x01&\\x06/\\x01&?\\x016\\x1f\\x017\\x16\\x0f\\x01\\x06/\\x01&\\x0f\\x01\\x06\\x1f\\x01\\x166\\x1f\\x01\\x16\\x0f\\x02\\x06/\\x02&?\\x016\\x17\\x01\\u007f,\\a\\b\\xc6\\x04\\t\\x02\\x02\\xd1\\x06\\b-\\b\\x06\\x98\\a\\a]\\b\\aT\\x06\\x0f\\aD\\x06\\a:\\a\\x06\\xaa4\\a\\b-\\b\\x06\\xa1\\x06\\b\\\\\\a\\x06_\\x06\\x10\\x069\\a\\b\\a2\\b\\a\\xab+\\x06\\b\\xce\\t\\b\\x9c*\\x06\\x06\\xa4\\x03\\x01\\x02\\x01\\xc4\\a\\x06\\\"\\x06\\x06\\x94\\x06\\x06J\\x06\\x06R\\x06\\f\\x06A\\x06\\x06,\\x05\\x06\\xa7V\\x06\\x06$\\x06\\x06\\x9f\\a\\x06H\\x06\\x06\\\\\\x06\\f\\x067\\x06\\x06\\x06'\\x06\\x06\\xa5*\\x06\\x06\\xa2\\a\\x05\\x00\\x04\\x00\\x00\\xff\\xff\\x01\\xc0\\x01\\x80\\x00\\a\\x00 \\x002\\x00>\\x00\\x00\\x00\\x14\\x06\\\"&462\\x17\\x14\\x06#\\a\\x0e\\x01#\\\".\\x02/\\x015\\x176\\x177>\\x0132\\x1e\\x01\\x064&#\\\"\\a\\x17\\x1e\\x01\\x0e\\x01'.\\x01'\\x163264&#\\\"\\x0e\\x01\\x15\\x14\\x1632\\x01\\x8c$3##3XC/m\\x031!\\x0e\\x1c\\x16\\x0f\\x03:a\\x17\\x1dG\\x01B/\\x1f5\\x1e\\xf5$\\x1b\\x06\\a\\x1a\\x13\\x10\\x0f&\\x13\\x04\\x15\\x06\\x12%\\x1b\\xf3, \\x14$\\x14-\\x1f \\x01(3##3$>/CO!,\\n\\x12\\x19\\x0e\\x17k'\\x0e\\x02e/B\\x1e5\\xf24%\\x02\\n\\b&&\\x10\\b\\x01\\t\\x02\\\"\\xd9?,\\x14#\\x15\\x1f-\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02A\\x01\\xc0\\x00\\x00\\x00\\xd4\\x00\\x00%'\\x1e\\x04\\x14\\x15\\x14\\a\\x06\\a\\\"\\a\\x06'<\\x01.\\x01'.\\x02'.\\x01\\x0e\\x02\\a\\x0e\\x02\\a\\x06\\a\\x0e\\x02\\x15\\x0e\\x01\\a\\x0e\\x01\\x15\\x0e\\x01\\x17\\x1e\\x01\\x170\\x1e\\x01\\x15\\x14\\x0e\\x011\\x0e\\x02\\a\\x06\\\"'&76&*\\x01'&'&'&656&7>\\x014645&>\\x01'\\\"\\x0e\\x01'.\\x02'&\\x06\\a\\x0e\\x02\\a\\x06\\x170\\x1e\\x01\\x17\\x1e\\x02\\x17\\x16\\x17\\x16\\a\\x06#\\\"\\x06\\a\\x0e\\x01'&'46'.\\x02'&54'&7>\\x035&\\\"5.\\x016'.\\x02767>\\x01\\x16\\x17\\x1e\\x0167>\\x017>\\x027>\\x012\\x163>\\x0132\\x16\\x06\\x17\\x16307>\\x023\\x16\\x0e\\x01\\x150\\x17\\x16\\x17\\x1e\\x03\\x022\\x06\\x04\\b\\x04\\x03\\x01\\a\\x04\\x03\\x01\\r\\v\\x04\\x01\\x05\\x05\\x05\\v\\r\\x03\\x03\\x04\\x04\\x02\\x04\\x01\\b\\x12\\x13\\a\\x19\\t\\x02\\x04\\x04\\x03\\b\\x06\\x01\\a\\x03\\x02\\x04\\x01\\t\\x02\\x04\\x05\\x05\\x06\\x03\\x02\\x01\\x01\\x04\\x1d\\x03\\x05\\x03\\x02\\x02\\x02\\x06\\x02\\x03\\x01\\x01\\x01\\x01\\t\\x03\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x01\\x01\\x04+%\\x1d\\x14\\x1d\\x0f\\x01\\b\\x10\\x03\\x01\\x11\\x14\\x02\\a\\v\\x03\\x05\\x02\\x01\\x03\\x03\\x01\\x03\\x06\\x05\\x06\\x05\\n\\x01\\x01\\x01\\x02\\x14\\a\\x06\\x01\\x01\\x02\\x01\\b\\x06\\x02\\x02\\t\\x02\\x02\\x01\\x01\\x01\\x02\\x01\\x04\\x05\\x03\\x01\\x01\\x01\\x05\\x02\\x01\\x05\\x13\\x13\\x19>5\\x06\\x1c9\\x14\\t\\x18\\x02\\x02\\x1e,\\f\\x10\\x1d\\x10\\r\\x01\\x02\\r\\x02\\x02\\x01\\x01\\x01\\x01\\x05\\v\\x03\\b\\a\\x02\\x05\\t\\x0f\\x05\\x03\\x03\\x03\\x03\\x02\\x03\\xf8N\\f\\x12\\t\\a\\x03\\x02\\x02\\x04\\r\\a\\x01\\x02\\x02\\v\\x02\\x05\\x04\\b\\x04\\x05\\x05\\x05\\x02\\x02\\x01\\x02\\x02\\x05\\x02\\t\\x1a\\x19\\t \\x10\\x03\\x0e\\f\\x01\\t'\\x14\\x06\\x18\\x02\\b*\\n\\x02\\x04\\x02\\t\\n\\x01\\x03\\x02\\x01\\x02\\x03\\x02\\x01\\x02\\x03\\x03\\f\\x05\\x05\\x01\\x02\\b\\x02\\x02\\x06$\\x01\\x0e\\x1e\\x03\\x04\\x05\\x01\\x05\\a\\b\\v\\x14\\x05\\x03\\x05\\x01\\x04\\x04\\x0e\\f\\x01\\x03\\x05\\x05\\x01$+\\b\\x16-\\a\\n\\x02\\x01\\x01\\x02\\x01\\x03\\r\\b\\x02\\x03\\x04\\x01\\x02\\x03\\x03\\x02\\x03\\x01\\n\\x01\\x01\\x02\\x05\\x04\\x06,\\x11\\x1d\\t\\a\\x01\\x02\\x02\\x06\\x02\\x01\\x01$*\\b\\f\\x05\\x1d\\x11\\x0e\\x16\\x10\\x10\\v\\x02\\r\\x02\\x06\\x04\\r\\x06\\b\\x02\\x01\\x19!\\x06\\n\\n\\x02\\x01\\x19\\v\\v\\x04\\x05\\x05\\x02\\t\\x06\\x03\\x11\\x19\\x02\\t\\x06\\x0e\\v\\t\\x02\\b\\x00\\x00\\x00\\x01\\x00\\x12\\xff\\xc0\\x01\\xee\\x01\\xc0\\x002\\x00\\x00\\x01\\x17\\x15\\x0f\\x0663\\x177\\x0f\\x03?\\x01\\x17?\\x02\\a7'7'\\x17'\\x17'\\x17'\\x17/\\x01\\x17'\\x177'?\\x01\\x1f\\x01\\a\\x17\\x0f\\x01\\x01\\xe0\\x04\\x19'8P\\x11\\b\\n\\x12\\x02\\x14C]8\\x16\\a\\x15\\a\\x14Y9\\x0e}\\x0f\\xadR\\xa6sf\\xfd\\x1f|\\x8f\\x121.\\xc3+l\\f\\x15\\x04&\\x1d\\f\\a\\b\\r\\n\\x01\\x04\\x1c\\x1c,ND&\\x18\\f\\x04@\\x01'\\x1b$\\x1c\\x02J\\x05\\r.3D\\x17\\x126\\n{\\x12l\\u007f&Jc&\\x12Tz8a\\t\\x11%\\v\\x19\\x04\\x06\\f\\b\\x14\\x00\\x00\\f\\xff\\xff\\x00E\\x02\\x80\\x01a\\x00\\x0f\\x00\\x1e\\x00@\\x00N\\x00Z\\x00a\\x00m\\x00t\\x00\\x8a\\x00\\xa8\\x00\\xb0\\x00\\xbd\\x00\\x00%\\x14\\x0e\\x01#\\\"'232654'\\x1e\\x01%\\x14\\x17.\\x0154632\\x17&#\\x0e\\x01\\x177\\x163254.\\x0154632\\x16\\x1d\\x01#54#\\\"\\x15\\x14\\x1e\\x02\\x15\\x14\\x06#\\\"&'73\\x15\\x14\\x06\\\"&=\\x013\\x15\\x1425\\x175#532\\x16\\x14\\x06+\\x01\\x1553254+\\x01\\x175#532\\x16\\x14\\x06+\\x01\\x1553254+\\x01\\x1754+\\x01532\\x1d\\x01\\x14;\\x012=\\x013\\x15\\x14+\\x01\\\"75#532\\x1d\\x01#54+\\x01\\x153\\x15#\\x15\\x14;\\x012=\\x013\\x15\\x14+\\x01\\\"7#53\\x15#\\x15#73\\x1773\\x15#5\\a#'\\x15#\\x02\\x80ApC#$\\f\\fe\\x8e3.5\\xfd\\xb03.5\\x8ee%\\\"\\r\\ne\\x8e<\\t\\t\\v\\r\\x14\\x14\\x10\\f\\t\\x10\\x0e\\v\\r\\r\\x0f\\r\\x10\\r\\b\\x0f\\x03v\\x0f\\x12\\x1e\\x13\\x10$\\\"\\b'\\f\\x10\\x10\\f\\x0f\\r\\x0e\\x0e\\r9\\b'\\f\\x0f\\x0f\\f\\x0f\\f\\x0e\\x0e\\f9\\x03\\x05\\x0f\\t\\x02\\x13\\x02\\x0f\\t%\\b?\\b4\\b\\x0e\\x03\\x13\\x1c\\x1c\\x03\\x13\\x03\\x0e\\b'\\b;\\x03\\a\\x02\\x02\\x06\\x02\\x02\\x02\\x03\\x02\\x02\\x02\\x02\\x01\\xba 6\\x1f\\x05J5+#\\x101\\x06,\\\"\\x101\\x1c0E\\x05\\x01\\x01J]\\v\\n\\n\\x06\\t\\x0e\\v\\n\\x0e\\b\\t\\b\\x04\\a\\t\\x05\\a\\x06\\f\\n\\v\\x0e\\a\\x03M7\\x0e\\x12\\x12\\x0e77\\x11\\x11\\x1fH\\x0e\\x10\\x18\\x10\\x1e+\\x0f\\x0eHH\\x0e\\x10\\x18\\x10\\x1e+\\x0f\\x0e?=\\x02\\x0e\\b>\\x02\\x02\\x06\\r\\t\\t?\\x0e\\b\\r\\x05\\x02\\x16\\r\\x15\\x02\\x02\\x06\\r\\tU\\x01\\x01\\x06\\a\\x05\\x05\\a\\x05\\x05\\x05\\x05\\x00\\x01\\xff\\xff\\xff\\xfc\\x01\\xc3\\x01\\x84\\x00\\x15\\x00\\x00\\x01\\x03\\x06/\\x01\\a\\x06#?\\x016'&\\x0f\\x01'&67%6\\x16\\x01\\xbfD\\b\\x1dg2\\n\\v\\b\\xbf\\a\\a\\x06\\a\\xecf\\x11\\x02\\x14\\x01\\x8d\\x0f\\x12\\x01]\\xfe\\xc2\\\"\\x10L0\\ni\\xac\\a\\x01\\x02\\x05\\x95 \\x05\\x14\\a\\x9a\\x05\\x11\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00(\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12>\\x01'.\\x01\\\"\\x06\\a354;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\x16\\x01\\x9e\\x0e\\x14\\x14\\x0e\\xfe\\x84\\x0e\\x14\\x14\\x0e\\x94pG\\x06\\x05NhN\\x05^\\aD\\a\\aD\\a^\\x06\\x01\\xa0\\x14\\x0e\\xfe\\x84\\x0e\\x14\\x14\\x0e\\x01|\\x0e\\x14\\xfe\\x93\\fW84FF4\\x14\\a\\aD\\a\\a\\x148\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xbc\\x01\\xc0\\x00\\v\\x00\\x0f\\x00\\x00\\x01\\x11\\a'5\\x17\\x15\\x1775'7'\\a'7\\x01\\xbc\\xe2\\xdaX\\x85\\x88eW\\\"XVY\\x01@\\xff\\x00\\x80\\x80\\xd6-uKK\\x97:5\\x155/7\\x00\\x00\\x17\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x03\\x00\\v\\x00\\x11\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x009\\x00=\\x00A\\x00E\\x00I\\x00O\\x00S\\x00W\\x00]\\x00c\\x00k\\x00o\\x00\\x00\\x16\\\"'3'\\x14\\x15#4=\\x013\\x17\\x16\\x17#&'7\\x16\\x17#&'7\\x15#57\\x15#57\\x15#5\\x17\\x15#5\\x17\\x15#57\\x15#5\\x17\\x15#5\\x05673\\x06\\a'53\\x15\\a53\\x15'53\\x15'3\\x15#\\x03&'!\\x06\\a\\x0353\\x15\\a53\\x15\\x05&'!\\x06\\a'673\\x06\\a'53\\x15\\x14\\x15#4=\\x013\\x15\\xfbv0\\xd6\\xc4gg\\x14\\x0e\\x13\\x8a\\x06\\x04b\\x03\\x06n\\x02\\x02fggggggggggggg\\x01\\r\\x06\\x03i\\x01\\x03bgggggggg\\xcb\\x14\\r\\x01%\\x0e\\x12\\x19ggg\\xfe\\xa7\\x04\\f\\x01S\\b\\nt\\x13\\rt\\a\\x02Vggg  \\xa1\\x04\\x03\\x02\\x05\\rF\\x10\\t\\f\\r#\\f\\v\\v\\fE\\x11\\x11\\xad\\x05\\x05#\\x02\\x02E\\b\\bh\\x0f\\x0fE\\n\\n#\\f\\f\\xa1\\v\\f\\f\\v\\xba\\n\\n%\\f\\fJ\\b\\bM\\x02\\xfeg\\x0f\\x0f\\x10\\x0e\\x01s\\x05\\x05\\x94\\x0f\\x0f\\xba\\x05\\x17\\x0f\\r%\\t\\x10\\x14\\x05R\\r\\r\\x02\\x05\\x03\\\"\\x11\\x11\\x00\\x00\\x03\\x00\\a\\xff\\xbd\\x02y\\x01\\xc1\\x00-\\x00I\\x00n\\x00\\x00\\x01\\x0e\\x05\\x0f\\x01\\x06\\x0f\\x01\\x06'.\\x01'&?\\x016?\\x01>\\x0476367'432\\x17\\x16\\x17\\x16\\x0f\\x01\\x06\\x17\\x14'&567632\\a\\x14\\x172\\x17\\x16\\x17\\x16\\a\\x06\\a\\x06'&'&#&56\\x01\\x16\\a\\x0e\\x02\\a\\x06/\\x01&'&74>\\x0476\\x17\\x1e\\x05\\x17\\x1e\\x05\\x17\\x01\\x91\\x12\\x1f\\x11\\r\\x05\\x03\\x01\\x05\\x03\\v\\x94\\r\\x15\\x1e4\\r\\t\\f\\x95\\v\\x10\\x1d\\x06\\x06\\x10\\x155\\\"\\x02\\x02\\x05\\x01\\x01\\x04\\v\\x0e\\x0f\\x03\\x01\\x03\\x05\\x03\\x01\\xb2\\a\\x04\\x0e\\x0e\\f\\x03\\x01\\a\\x02\\x01\\n\\x10\\x02\\x02\\x14\\x15\\x02\\x01\\f\\n\\x01\\x01\\x05\\x01\\x01\\x83\\f\\t\\b\\x1e%\\x14\\x15\\f\\x95\\v\\x03\\x03\\x03\\x02\\x02\\a\\t\\x12\\v\\x01\\x02\\x03\\b\\x04\\x05\\x03\\x05\\x03\\x04\\x12\\x06\\f\\x05\\b\\x03\\x01\\x8e%;\\x1f\\x17\\n\\b\\x05!\\x12\\x0f\\xd0\\x11\\x02\\x04&\\x1b\\x13\\x11\\xd0\\x0f\\t\\x0f\\x03\\x06\\x11\\x187\\\"\\b\\x03\\x02\\x04\\x04\\n\\n\\v\\x03\\x01\\x01\\x01\\a\\x02\\n\\x03\\x02\\v\\n\\n\\b\\x03\\x02\\b\\n\\x10\\x02\\x03\\x14\\x16\\x02\\x02\\x18\\x14\\x01\\x03\\x02\\a\\xfe\\x8e\\x11\\x13\\x12\\x1e\\x12\\x03\\x02\\x11\\xd0\\x0f\\x12\\x10\\x0e\\x03\\x04\\x06\\f\\x10\\\"\\x14\\x03\\x03\\x03\\t\\x04\\x05\\x03\\x03\\x02\\x02\\t\\x03\\b\\x05\\a\\x05\\x00\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00}\\x00\\x85\\x00\\x8d\\x00\\x99\\x00\\xa5\\x00\\xb1\\x01\\v\\x01\\x1c\\x00\\x007\\x17#&'&761\\x14\\x05\\x06\\a\\x17'\\x06\\a\\x17'\\x06\\a\\x17'\\x06\\a\\x17'\\x06\\a\\x17'\\x06#\\a'&'\\a7&'\\a7&'\\a7&'\\a7&'\\a7&'\\a7&545'767'\\x1767'\\x1767'\\x1767'\\x1767'\\x1767'\\x176?\\x01\\x172\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x177\\a\\x16\\x1f\\x01\\a\\x14\\x15\\x14\\a\\x17\\x064&\\\"\\x06\\x14\\x1626\\x14\\x06\\\"&462\\a\\x14\\x17\\x16\\x17654'&5\\x06'\\x14\\x17\\x16\\x17654'&5\\x06\\a\\x14\\x17\\x16\\x17654'&5\\x06\\x17&=\\x01\\x06#\\x16\\x1d\\x01\\x14+\\x01&'\\x06\\a\\x16\\x17\\x16\\x17#&'\\x06\\a\\x16\\x17\\x14\\x16\\x17#.\\x01'\\x06\\a\\x16\\x17\\x14\\x161#.\\x02547\\x06\\x15\\x14\\x16\\x15\\x14\\a&+\\x01'&5470\\x06\\a4&5\\x06\\a2\\x1e\\x01\\x15\\x0e\\x01\\a\\x06\\x17\\x16\\a32\\x16\\x15673275\\x06#\\x16\\x1d\\x01\\x14\\x16327.\\x02'&\\x9d\\x05\\b\\x02\\x02\\x02\\x02\\x04\\x01,\\x03\\a+-\\b\\f\\\"%\\f\\x10\\x19\\x1d\\x10\\x14\\x10\\x13\\x14\\x16\\a\\v\\x16\\x16\\x02\\x02\\x16\\x16\\v\\a\\x16\\x14\\x13\\x0f\\x13\\x11\\x1c\\x19\\x10\\r$\\\"\\f\\b-+\\b\\x0333\\x0278\\x02\\x06:;\\x06\\t7;\\t\\f16\\f\\x0e(.\\x0e\\x10\\x1b\\\"\\x10\\x10\\f\\x13\\x11\\x11\\x04\\x04\\x11\\x10\\x14\\f\\x11\\x0f\\\"\\x1b\\x0f\\x0f.(\\x0e\\f61\\f\\t;8\\t\\x06<:\\x06\\x0288\\x013Jg\\x92hh\\x92OY\\u007fYY\\u007f|\\x04\\x05\\x03\\x04\\x03\\x03\\n)\\x04\\x05\\x03\\x04\\x03\\x03\\n\\x13\\x04\\x05\\x03\\x04\\x03\\x03\\n\\xcd\\b\\r\\x05\\t\\x05\\x12\\x02\\r\\x02\\t\\x04\\x02\\x06\\x01\\t\\a\\x05\\x01\\t\\x03\\x02\\x03\\x01\\t\\x01\\x06\\x01\\x02\\t\\x04\\x01\\x01\\x12\\x02\\x06\\x03\\x01\\x0e\\n\\x01\\x10\\x03\\f\\v\\x06\\x02\\x05\\x01\\x04\\x01\\v\\x01\\x02\\x02\\x01\\n\\x02\\a\\x04\\x03\\x05>\\x04\\v\\f\\x05k\\x06\\x18\\r\\a\\n\\f\\f\\f\\x02\\x02\\x04\\x03\\x01\\x12\\xa3\\x0f\\a\\x03\\x06\\x04\\x05\\x04\\x19\\x14\\x14\\x17\\x13\\x14\\x11\\x1f\\x1b\\x12\\x0f\\\" \\x0f\\v%$\\v\\x05'&\\x06&&\\x01\\x05&'\\x05\\n#%\\v\\x0e\\x1f\\\"\\x0f\\x11\\x1a\\x1e\\x12\\x14\\x13\\x17\\x14\\x14\\t\\x0e\\r\\r\\x06\\b\\x03\\x03\\x13\\x13\\x10\\n\\x11\\x11\\x1e\\x19\\x10\\x0e,'\\r\\n84\\n\\bA?\\a\\x04GF\\x03\\x01HH\\x04FG\\x04\\a?A\\b\\n48\\v\\f',\\x0e\\x10\\x19\\x1e\\x11\\x12\\v\\x10\\x13\\x13\\x03\\x03\\a\\a\\f\\x0e\\x0e!\\x92hh\\x92g\\xef~ZZ~Zy\\x03\\x02\\x03\\x05\\b\\x03\\x03\\x04\\x04\\x04\\n\\x10\\x03\\x02\\x03\\x05\\b\\x03\\x03\\x04\\x04\\x04\\n\\x03\\x03\\x02\\x03\\x05\\b\\x03\\x03\\x04\\x04\\x04\\vZ\\x03\\rp\\x13\\x15\\a@\\a\\x05$\\x02\\f\\x03\\x03\\x11\\x04\\x13\\r\\x03\\v\\x03\\x03\\x01\\b\\x02\\x02\\x11\\x03\\x02\\f\\x03\\x03\\x01\\x01\\x05\\x10\\n\\x03\\x04\\x04\\x11\\b\\x04\\x1b\\x02\\x03\\x02\\x15\\x1c\\x0e\\x05\\x05\\a\\x06\\x01\\x01\\b\\x02\\x01\\r\\x05\\x05\\x02\\x01\\r\\x03\\n\\f\\a\\a\\x10\\x06\\r\\b!e\\x12\\x16\\aB\\f\\b\\x02\\x01\\x01\\x01\\x01\\a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf8\\x01\\xc0\\x01\\xa0\\x00;\\x00Q\\x00\\x00\\x13>\\x03;\\x012=\\x014632\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"\\x0e\\x02\\x15\\x14\\x15\\x0e\\x01\\\"&5&54.\\x01+\\x01\\\"&=\\x014>\\x012\\x1e\\x01\\x1d\\x01\\x14;\\x012\\x1e\\x02\\x12\\\"'4.\\x015&632\\x1f\\x017632\\x16\\a\\x0e\\x01\\x15\\xe0\\x01\\x03\\t\\x16\\x0fc \\f\\t\\x06\\n\\x06!\\\"d\\v\\x0e\\x06\\x02\\x01\\x0e\\x12\\x0e\\x01\\x03\\x10\\re\\\"!\\x06\\n\\f\\t\\x06 c\\x10\\x15\\t\\x03\\x13$\\b11\\t\\x12\\x12\\x15\\tCC\\t\\x15\\x12\\x12\\t\\x01a\\x013\\n\\r\\x14\\n\\x16\\f\\t\\r\\x06\\n\\x06% \\x1e\\x04\\t\\b\\x06\\x01\\x02\\n\\r\\r\\n\\x02\\x01\\b\\n\\t\\x1e %\\x06\\n\\x06\\x06\\n\\x06\\f\\x16\\v\\x13\\r\\xfe\\xbb\\x10\\x01UU\\x01\\x0e\\x1e\\x14vv\\x14\\x1e\\x0e\\x01\\xaa\\x01\\x00\\x00\\x00\\x06\\x00\\f\\xff\\xbe\\x01\\xfa\\x01\\xc1\\x003\\x00Z\\x00e\\x00s\\x00\\x80\\x00\\xad\\x00\\x00\\x01\\x1e\\x01\\a\\x0e\\a#\\x0e\\x02'\\x06\\a\\x0e\\x03\\\"\\x06'.\\x035'7#.\\a767>\\x01;\\x01\\x1e\\x02\\x176&'.\\x02'*\\x01\\x0e\\x02\\a\\x06\\a\\x16\\x06\\x1e\\x02\\x17\\x06\\x15\\x14\\x16?\\x01\\x16>\\x0172>\\x05'\\x14\\\"5&'\\\"&63\\x16\\x176&'\\\"&63\\x1e\\x01\\a\\x14\\x06&\\x17\\x14\\x06&54&#\\\"432\\x16\\a\\x0e\\x01'.\\x01'&'&'.\\x01/\\x01&676\\x17\\x16\\x17\\x16\\x17\\x16\\x0f\\x01\\x0e\\x01\\x1d\\x01\\x1e\\x04\\x172?\\x016\\x17\\x16\\x17\\x16\\x01\\xbc!\\x1c\\v\\x03\\r\\x10\\x15\\x13\\x16\\x0e\\x11\\x01\\a\\\"J%\\x15\\t\\x03\\n\\x04\\t\\x04\\n\\x02\\x04\\x06\\x02\\x01\\x01\\x01\\x01\\x15$\\x17\\x13\\t\\a\\x01\\x01\\x01\\x020\\x1ed$#4U \\x18\\n\\x17\\x1c\\a\\x1eI,\\x04\\x11-)0\\x0f)\\x02\\x01\\x02\\n\\x11(\\x1d\\x01\\b\\x04D\\x1f@\\x1e\\x06\\x01\\x11\\r\\x16\\x11\\x12\\f\\x88\\r\\x02\\x1f\\x04\\x03\\x04\\x04+\\x16\\x01(%\\x04\\x02\\x03\\x04*/\\x01\\x06\\a/\\x06\\aE4\\x06\\x06:L\\v\\n\\x1c\\x0e\\x11?\\x16\\x18\\x13\\x10\\x0e\\n\\r\\x02\\x01\\x05\\x15\\x11\\x0e\\n\\f\\x06\\a\\b\\t\\r\\f\\x03\\x02\\x01\\x03\\r\\x11\\x1f\\x13\\t\\x05\\n\\n\\x10\\x1c\\x12\\v\\x01\\x8e\\x1d}\\\\\\x17&\\x1b\\x16\\r\\n\\x05\\x04\\x03\\x06\\a\\x04\\x17\\n\\x03\\v\\x04\\t\\x04\\x03\\x01\\x06\\a\\a\\x02\\x024\\x06\\x15\\x1a\\x1f \\\" \\x1e\\fm0\\x1b\\x1a\\x01\\x15\\x13\\xf6Nm\\x18\\a\\x10\\x10\\x01\\x03\\a\\x13\\x0f([\\x12)/)#\\bO\\a\\a\\x03\\x05O\\x02\\x05\\x06\\x02\\x04\\x05\\n\\x11\\x17#f\\a\\x06 \\x02\\a\\x06\\x028!,\\x03\\a\\x06\\x034&\\x04\\x03\\x03\\t\\x04\\x03\\x03\\x04;C\\rK\\xa2\\x11\\x15\\x05\\x05\\\"\\x11\\x13\\x18\\x15\\x19\\x11\\x1c\\x06\\x05\\x0e\\x1c\\n\\a\\v\\x0f\\a\\n\\x0e\\x11\\n\\t\\x02\\a\\x03\\x02\\x03\\t\\x19\\x15\\x16\\x05\\x06\\f\\r\\t\\x10\\x11\\n\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x002\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x056'&\\a6\\x16\\a\\x06\\a\\x06'&'&\\a\\x0e\\x04\\a\\x17632\\x16\\x17\\x16\\x17\\x163276\\x01\\x93\\x13\\x1a\\x1a\\x13\\xfe\\x9a\\x13\\x1a\\x1a\\x13\\x01L\\x032C\\x18\\x0f!\\x03\\x01\\x14\\x1b\\f\\f\\x11\\t%\\a\\x10\\x15\\x0f\\x1e\\a\\x10\\x15\\x04\\f\\x12\\x11\\a\\x03\\x14\\x1c.B@\\x01\\xa0\\x1a\\x13\\xfe\\x9a\\x13\\x1a\\x1a\\x13\\x01f\\x13\\x1a\\x95@\\x01\\x02N\\t\\t\\x16\\x11 *\\x0e\\x0fh8\\x04\\x01\\b\\x11\\r\\x1a\\x06\\x14\\x0f/>\\x19\\x0e4VR\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\x00`\\x02\\x82\\x01\\x00\\x00,\\x00U\\x00\\u007f\\x00\\x007\\\"&/\\x02.\\x02>\\x01;\\x012\\x1e\\x03\\x1f\\x01\\x16326?\\x02>\\x04;\\x012\\x16\\x0f\\x02\\x14\\x0e\\x03#!\\\"&/\\x02&;\\x012\\x1e\\x03\\x1f\\x01\\x16326?\\x02>\\x04;\\x012\\x16\\x0f\\x02\\x0e\\x04#'2\\x16\\x1f\\x02\\x16+\\x01\\\".\\x04/\\x01&#\\\"\\x06\\x0f\\x02\\x14\\x0e\\x03+\\x01\\\"&?\\x02>\\x043i\\x0f\\x17\\x04\\x057\\x01\\x01\\x01\\x01\\x06\\x06!\\x03\\x04\\x04\\x02\\x05\\x01$\\x06\\x0f\\a\\v\\x02\\x02$\\x01\\x04\\x02\\x04\\x05\\x03!\\t\\x05\\x02\\x028\\x02\\b\\n\\x10\\n\\x01h\\x0f\\x17\\x04\\x048\\v\\x15!\\x03\\x04\\x04\\x02\\x05\\x01$\\x06\\x0f\\a\\v\\x02\\x01%\\x01\\x05\\x01\\x05\\x04\\x03!\\t\\x05\\x02\\x027\\x01\\x02\\b\\n\\x10\\n\\xc5\\x0f\\x17\\x04\\x048\\n\\x14!\\x03\\x04\\x03\\x03\\x02\\x03\\x01%\\x05\\x10\\a\\v\\x01\\x02%\\x05\\x02\\x04\\x05\\x02!\\n\\x05\\x02\\x028\\x01\\x02\\b\\t\\x11\\t`\\x0f\\b\\ap\\x01\\x02\\x06\\x05\\x04\\x02\\x04\\x03\\b\\x01K\\r\\a\\x03\\x03K\\x01\\b\\x03\\x04\\x02\\t\\x05\\x04p\\x01\\x04\\n\\b\\a\\x0f\\b\\ap\\x12\\x02\\x04\\x03\\b\\x01K\\r\\a\\x03\\x03K\\x01\\b\\x03\\x04\\x02\\t\\x05\\x04p\\x01\\x04\\n\\b\\a\\xa0\\x0f\\b\\ap\\x12\\x02\\x02\\x04\\x03\\x06\\x01K\\r\\a\\x03\\x03K\\x01\\b\\x03\\x04\\x02\\t\\x05\\x04p\\x01\\x04\\n\\b\\a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00B\\x00R\\x00a\\x00\\x00\\x122\\x17\\x16\\x15\\x14\\x06#\\\"/\\x01\\a7'&54\\x176'&'&'&\\a\\x06\\a\\x06'.\\x01'&>\\x0176'.\\x02'&'\\\"#\\\"\\a\\x06\\x15\\x14\\x170\\x1e\\a\\x17\\x167>\\x01\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132654'&\\\"\\x06\\x15\\x14\\x17\\a7\\x16\\xa9m'(N7$\\x1f\\x052\\r\\x03\\x14\\xd2\\x04\\x02\\x01\\a\\x16\\x05\\x06\\x03\\x03\\t\\x03\\x06\\x14\\x17\\v\\x01\\x01\\t\\x03\\x02\\x02\\x01\\x04\\x06\\x02\\x02\\x06\\x03\\x05\\x06\\x05\\x0e\\x11\\x03\\x03\\x06\\a\\t\\n\\n\\r\\x06\\x1e\\x12\\x06\\x12e\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xb0B^0.\\x84]\\x15\\x16T#\\x01E'(56M\\x12\\x03\\r0\\x05 &7o\\x0e\\x05\\x01\\x03\\f\\x01\\x03\\x05\\x05\\n\\x04\\x03\\n\\x13\\x12\\x05\\x01\\n\\x06\\x03\\x03\\x01\\v\\x0f\\x03\\x06\\x01\\x05\\x0f\\x12\\x14\\x15\\x05\\x04\\b\\b\\b\\t\\b\\a\\x03\\r\\x03\\x01\\v\\x01\\x1e\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x83]A@1.]A+%R\\x16\\x13\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xdf\\x01\\xc0\\x01\\xa0\\x00/\\x00:\\x00\\x82\\x00\\x00\\x01\\x0f\\x01\\x17\\a'\\a\\x17\\a'\\x0f\\x01#/\\x01\\a'7'\\a'7/\\x015?\\x01'7\\x177'7\\x17?\\x013\\x1f\\x017\\x17\\a\\x177\\x17\\a\\x1f\\x01\\a2>\\x0154&\\\"\\x06\\x14\\x16\\x1f\\x01\\x15\\x0f\\x01\\x17\\a'\\a\\x17\\a'\\x0f\\x01#/\\x01\\a'7'\\a'7/\\x015?\\x01'7\\x177'7\\x17?\\x013\\x17/\\x01\\x0f\\x02\\x1f\\x01\\x15\\x0f\\x01\\x15\\a\\x0e\\x01\\x15\\x14\\x163267;\\x01?\\x013\\x1f\\x01?\\x02'\\x01\\xc0\\x1d\\x02\\x15\\v\\x1d\\a\\t\\x15\\x15\\v\\a\\x16\\a\\f\\x13\\x14\\b\\a\\x1e\\n\\x14\\x03\\x1c\\x1c\\x03\\x14\\v\\x1c\\b\\b\\x14\\x13\\f\\a\\x16\\a\\v\\x15\\x13\\a\\a\\x1d\\n\\x14\\x03\\x1cw\\x0f\\x1a\\x10\\\"/!!`/7\\x04'\\x146\\x0e\\x11''\\x15\\r*\\r\\x16$%\\x0f\\x0e7\\x14&\\x0566\\x06'\\x155\\x0f\\x0f%$\\x17\\f*\\f\\x17\\x06\\x04\\v\\x03\\x05\\x11\\x18\\x06\\x01$/>,%:\\b\\r\\a\\x02\\x05\\x02\\x11\\x05\\x06\\x14\\x06\\x02\\x01\\x1f\\a\\f\\x13\\x14\\t\\b\\x1c\\f\\x15\\x03\\x1d\\x1d\\x03\\x15\\f\\x1b\\b\\a\\x12\\x14\\f\\b\\x16\\a\\v\\x15\\x13\\b\\t\\x1b\\v\\x15\\x04\\x1a\\x1a\\x04\\x15\\v\\x1c\\b\\b\\x14\\x14\\v\\tB\\x0f\\x1a\\x10\\x17!!/!\\x11\\x0e(\\r\\x17#&\\x10\\x0f4\\x17(\\x0666\\x06'\\x162\\x11\\x0f#&\\x16\\x0e)\\x0f\\x14'$\\x0e\\x104\\x14'\\x064.\\x06\\x02\\x06\\x13\\x06\\x04\\x12\\x01\\x06\\x02\\x06\\r\\b:&+>/#\\a\\x18\\x11\\x05\\x03\\f\\x04\\x06\\x00\\x00\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x15\\x00@\\x00J\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\x16\\x17\\x03\\x06\\x1327&/\\x01\\a\\x16\\x13\\x177654'&54632\\x17&#\\\"\\x0e\\x01\\a2376\\x16\\a\\x06\\a\\x177/\\x01\\\"&63\\x16376\\x16\\a\\x06\\x13>\\x0154'\\x16\\x15\\x14\\a\\x99Α\\x91Α\\x19E9k\\x13\\xdf&$\\x01\\x01DC\\x1f?P\\x17\\x11\\x13\\x16\\x16\\x10\\x01\\x02@W&G9\\x14\\b\\x06<\\t\\x01\\t\\f\\x0eR0\\\"\\x18\\x05\\x04\\x05\\x06%\\x15<\\t\\x01\\t\\fD3<\\x1b\\x01\\x11\\x01\\xb8\\x91Α\\x91\\xcegAl\\x1c\\x01$+\\xfe\\xf1\\r\\x01\\x02\\xbb\\xc2\\t\\x01G\\xefJ6\\x12\\x1e #\\x11\\x10\\x18\\x01;\\x19-\\x1f\\x03\\x01\\x12\\x01\\x02\\x01\\xf1\\x92_\\x03\\t\\t\\x03\\x03\\x01\\x12\\x01\\x02\\xfe\\xd6\\x1ef=92\\v\\f%+\\x00\\x00\\x00\\x00\\x04\\x00\\x06\\xff\\xc3\\x01\\xf9\\x01\\xbc\\x00\\x13\\x00+\\x00A\\x00Q\\x00\\x00%\\x16\\a\\x0e\\x01\\a\\x06'&'.\\x01547>\\x01\\x17\\x1e\\x01'\\x06\\a\\x06\\x17\\x16'&'&'&7>\\x037>\\x01\\x17\\x16\\x17\\x16\\x05\\x16\\x14\\a\\x06\\a\\x06\\a\\x06576'&'67632\\x1e\\x01%'76\\x16\\x17\\\"&\\x06\\a\\x06'\\\".\\x02\\x01rG\\x11\\x06;\\x1b14;3\\x15\\rY\\x186\\x04\\aT\\xa0Z\\x1f\\x10\\a\\x02\\x03\\x03\\x05!\\b\\x02\\x06\\x03\\v\\x10\\x14\\v\\t\\b\\v\\x1b6\\x04\\x019\\x04\\x03\\x06\\r\\f\\r\\x03\\x02\\x03\\v\\x1b`+\\x16\\x16\\x0e\\x04\\x1c#\\xfe\\xa0\\t\\x13?y2\\n\\x141\\x1d\\x14\\x01\\x01\\x19\\x1f)\\x82W \\v$\\t\\x0f\\x05\\x06!\\x0e\\x0f\\f/_\\x190\\x01\\x01R\\x94mU-\\x13\\a\\x05\\x03\\t2G\\x13)\\x10\\\" \\x1d\\f\\t\\x02\\x03\\t1\\x04A\\x11<\\x11\\x1f\\x1b\\x1b\\x11\\x03\\x01\\a\\x12\\\"Rx(\\r\\x0e\\x1e@\\x80\\x01\\n\\x1c\\t\\x1f\\x02\\r\\x0e\\n\\x01\\f\\r\\v\\x00\\x00\\x00\\x02\\x00\\x02\\xff\\xc0\\x00\\xfe\\x01\\xc0\\x00\\f\\x00\\x14\\x00\\x007\\a#7&546;\\x01\\x11#5\\x11#\\\"\\x06\\x15\\x14;\\x01\\x99W@`KU@R7\\x1d&2X\\x1d\\x84\\xc4\\xd2&gMT\\xfe\\x00\\xc4\\x01\\x0e8;m\\x00\\x00\\x00\\x01\\x00\\x12\\xff\\xc0\\x01.\\x01\\xc0\\x00\\b\\x00\\x00\\x175\\x033\\x17\\x133\\x03\\x15\\x82p8R^4y@\\xa6\\x01*\\xe6\\x01\\x16\\xfe\\xa4\\xa4\\x00\\a\\xff\\xfc\\x00<\\x02\\x80\\x01D\\x00\\a\\x00/\\x00;\\x00C\\x00\\\\\\x00g\\x00y\\x00\\x00\\x13\\x06'&767\\x16\\a\\x16\\x170#\\x06\\x17\\x14\\x1e\\a1\\x06\\a\\x06#\\\"&#\\\"\\x06#\\x06'.\\x017672\\x1e\\x01326732\\x1e\\x01\\x15\\x14\\x06+\\x01\\x15#7\\x153264&#\\x17\\\"&54?\\x0154#\\\"\\a#4>\\x0132\\x16\\x1d\\x01#5#\\x06'26=\\x01\\a\\x06\\x15\\x14\\x1e\\x01\\x17\\\"#5\\x1632?\\x01'3\\x17373\\a\\x0e\\x01u\\x0e\\x12\\x02\\x0e\\f\\x13\\x02\\x02\\x1a\\r\\x01\\x17\\x01\\x02\\x03\\x04\\x05\\x04\\x05\\x03\\x02\\x03\\v\\x12\\x0f\\a\\x14\\b\\b\\x14\\x06\\x0f\\x13\\x0f\\n\\f\\x0f\\x1c\\x06\\x0e\\f\\x03\\x03\\x1cnI\\x13\\x1d\\x11%\\x1d*\\x1e\\x1e#\\x14\\x16\\x16\\x14\\x80\\x15\\x1b6&\\x1d\\x19\\x04\\x1b\\x0f\\x1a\\x10\\x1a\\x1f\\x1c\\x01\\r\\x17\\x0f\\x15\\\"\\x1d\\a\\fn\\b\\x03\\x05\\x04\\x13\\x06\\x033\\x1f$\\x01#\\x1f5\\t\\x18\\x01\\\"\\x11\\x02\\x11\\x0f\\x0f\\x01\\x12!\\x02\\x13\\x0f\\x19\\x05\\n\\a\\a\\x05\\x04\\x02\\x02\\x01\\x0e\\x10\\x1a\\b\\b\\x01\\x1c\\x169\\x1b\\x1a\\x01\\x05\\x05\\v#\\x10\\x1d\\x13\\x1c$B\\xa9M\\x14%\\x14\\xab\\x17\\x13&\\x04\\x02\\v\\x18\\x14\\r\\x14\\v\\x19\\x15a\\x17\\x19\\x17\\x12\\r\\v\\x02\\x01\\x13\\x06\\t\\x05J\\x18\\x01\\x14\\t\\x8ess\\x95\\x1a\\x13\\x00\\x00\\b\\x00\\x00\\xff\\xe1\\x02@\\x01\\xa1\\x00\\x05\\x00\\x0f\\x00\\x1f\\x00'\\x00D\\x00P\\x00j\\x00|\\x00\\x00\\x00\\x14+\\x0153\\x174?\\x01\\x15\\x14\\x0e\\x01#\\\"7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05\\x1676'\\x06\\a\\x06\\x17&5&7&'&\\x0e\\x01#\\\"&#\\x06\\a\\x06\\x16\\x17\\x163262\\x16327674&+\\x01\\x153532>\\x01\\x174.\\x01#\\\"\\x0e\\x01\\x153632\\x1d\\x01\\a\\x06\\x15\\x14\\x1e\\x01327\\x1537#\\a#'#\\x17\\a\\x06#\\\"#\\x15\\x163267\\x01.\\x1d\\x18\\x18M\\x14\\x17\\x06\\f\\a\\x12\\xe2\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xfe@\\f\\n\\t\\x01\\r\\t\\n>\\x13\\x01\\x11\\n\\x11\\x06\\v\\n\\x02\\x02\\x11\\x05\\x15\\n\\b\\a\\v\\r\\n\\x04\\x0e\\f\\x0e\\x05\\n\\f\\x06\\x8c\\x19\\x143\\x15\\x1d\\r\\x15\\fZ\\n\\x12\\f\\v\\x12\\v\\x13\\x03\\x11\\x14\\x1a&\\t\\x0f\\t\\x17\\t\\x14f\\x16\\x18\\x01\\x19\\x16$\\x02\\x04\\x0e\\x02\\x04\\x01\\a\\x10\\x11\\x06\\x01\\x0177Z\\r\\x01\\x02\\b\\x06\\n\\x06\\xd8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x8a\\x01\\v\\v\\r\\x01\\n\\vW\\t\\x15\\x11\\v\\x0e\\x01\\x01\\x04\\x04\\a\\x01\\x12\\x13(\\x0f\\x13\\x06\\x06\\x12\\tB\\x14\\x18\\x88/\\v\\x15\\v\\n\\x0e\\b\\a\\x0e\\t\\x0e\\x11\\b\\x01\\x03\\x1b\\b\\x0e\\a\\x11\\x10cQQc\\x06\\x0e\\x10\\x01\\x0e\\x12\\x00\\x04\\x00\\x19\\xff\\xbf\\x01l\\x01\\xc1\\x00\\x10\\x00'\\x00.\\x008\\x00\\x007\\x16\\a\\x1c\\x011\\x0e\\x01#\\\"&767672\\x13\\x16\\a\\x0e\\x01\\a\\x06\\a#&'.\\x03'&7632\\x17\\x16\\x03\\x11\\x0e\\x02\\x17\\x1676&'\\x1e\\x01\\a\\x06\\a6\\xc6\\\"\\x01\\x01\\x16\\x10\\x12\\x16\\x01\\x01 \\x03\\x02\\x04\\x89\\x1f\\n\\n_3\\x02\\x02\\x03\\x01\\x05\\x1c+3\\x1f\\x03\\x02U*'(%+}\\x1b\\\"\\n\\x02\\x05\\xce\\r3>\\x1a\\x17\\x01\\x02Ac\\x14\\x1e\\x14\\x01\\x02\\x0e\\x11\\x15\\x0f\\x13\\x1c\\x03\\x01\\x01f5</x1\\x01\\x01\\x01\\x05\\x1b.BA\\x1da-\\x11\\x0f\\x14\\xfe\\xc3\\x01F\\x0329\\x1bH7.^\\r\\x12J'Gyd\\x00\\x0e\\x00\\x00\\xff\\xfc\\x02\\x80\\x01\\x85\\x00;\\x00`\\x00k\\x00o\\x00\\x81\\x00\\x87\\x00\\xab\\x00\\xc4\\x00\\xd6\\x00\\xfc\\x01\\x0e\\x01\\\"\\x01$\\x01'\\x00\\x00\\x05\\\"/\\x01&7672\\x1f\\x01\\x16?\\x016=\\x014/\\x01&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x166=\\x014;\\x012\\x1d\\x01\\x14#\\\"/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\x0f\\x01\\x067\\x14#\\\"54;\\x012\\x15\\x163254'&5432\\x17\\x14\\x06+\\x01\\\"5&#\\\"\\x15\\x14\\x16\\x17\\x1e\\x017\\x14\\x0e\\x01#\\\"&462\\x16\\x064\\\"\\x147#&54+\\x01\\x15#532\\x15\\x14\\a2\\x17\\x14&4+\\x01\\x153%\\x15\\x14\\x06/\\x01&=\\x014/\\x01&\\\"\\x0f\\x01\\x06\\x1d\\x01\\x14\\x0f\\x01\\x06&=\\x014?\\x016;\\x012\\x1f\\x01\\x16%\\x15\\x14\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x16=\\x0146\\x1f\\x01\\x16\\a41'\\\"#\\a\\\"\\x1d\\x01\\x143\\x17\\x1657057\\a\\x06&=\\x014/\\x01&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\a721\\x172\\x1d\\x010\\x0f\\x010#'\\\"=\\x010\\a\\x14\\x15\\x06\\x0f\\x01\\x06/\\x01&=\\x014?\\x016\\x1f\\x01\\x16\\x15'3\\x17'\\x15\\x01<\\x03\\x03\\x13\\x03\\x02\\x05\\x04\\x01\\x01\\x0e\\x01\\x01:\\x01\\x01:\\x01\\x019\\x01\\x01\\x0f\\a\\a\\x02\\a\\x02\\x11\\x06\\a\\x10\\x06\\x06:\\x06\\x06:\\x06\\x06:\\x02+\\x1d\\x1f\\x02\\b\\x01\\x02\\x12\\x12\\x15\\x19\\x1a\\x1b\\x02\\x01\\x01\\a\\x02\\x02\\x10\\x0f\\a\\r\\x0e\\f7\\x03\\x06\\x03\\x04\\a\\a\\t\\a\\x02\\x13\\x0e\\x02\\x01\\x01\\x02\\x03\\x04\\x05\\x03\\x02\\x01\\x03\\x01\\x02\\x01\\xfe\\xf3\\x04\\x01%\\x03\\x04\\x10\\x01\\x04\\x02\\x10\\x03\\x04$\\x02\\x04\\x04=\\x02\\x01\\x01\\x02\\x01>\\x03\\x01O\\x03=\\x04\\x04=\\x04\\x04=\\x04\\x04\\x0f\\x04\\x03\\x02%\\x03.\\x15\\x01\\x01\\x15\\x01\\x01\\x15\\x01\\x16\\xd2$\\x02\\x04\\x02\\x13\\x02\\x02\\x13\\x02\\x02>\\x02\\x02%\\x04\\x03=\\x04\\x04=\\x04\\x03=\\x04Q\\f\\x01\\f\\x01\\x01\\f\\x01\\f\\x01\\xfd\\x01\\x03=\\x04\\x03>\\x04\\x04=\\x04\\x04=\\x04K\\x01L\\x01\\x04\\x02\\v\\x02\\x01\\x01\\x03\\x01\\b\\x01\\x01!\\x01\\x01B\\x01\\x01!\\x01\\x01!\\x01\\x01B\\x01\\x01\\t\\x03\\x05\\x04B\\x01\\x01B\\x12\\x03\\t\\x04\\aB\\a\\x04!\\x04\\x04!\\x04\\aB\\b\\x03!\\x02B\\x14\\x15\\x02\\x01\\f\\t\\a\\x02\\x02\\x0f\\x13\\x14\\x01\\x01\\x01\\v\\b\\x03\\x03\\x02\\x02\\a)\\x03\\x05\\x03\\x06\\n\\x06\\x06\\x0e\\x12\\x13\\x04\\x03\\x01\\x01\\x05\\f\\x03\\x02\\x01\\x03\\x03\\a\\x03\\x03\\x90_\\x02\\x02\\x01\\x15\\x02\\x04,\\x05\\x02\\t\\x01\\x01\\t\\x02\\x05,\\x04\\x02\\x15\\x01\\x02\\x02_\\x04\\x02$\\x01\\x01$\\x02d\\xb1\\x04\\x02$\\x02\\x02$\\x02\\x04G\\x04\\x03#\\x02\\x02\\t\\x02\\x04^\\x02\\x03\\x01\\x15\\x02\\x85\\x01\\r\\r\\x01\\x18\\x02\\f\\x01\\x01\\f\\x02\\x18\\x15\\x01\\x02\\x02\\x12\\x02\\x01\\v\\x01\\x01\\v\\x01\\x02\\x16\\x02\\x02#\\x01\\x04\\x01\\x15\\x02\\x02#\\x02\\x04G\\x04\\x02$\\x02\\x02$\\x02\\x04\\x11\\x04\\x06\\a\\a\\x01\\x0e\\x01\\a\\a\\x01\\x0e*\\x01\\x01\\x03\\x02#\\x02\\x02#\\x02\\x05F\\x04\\x02$\\x02\\x02$\\x02\\x046\\x82\\x01\\x01\\x00\\x00\\x02\\x00\\b\\xff\\xcd\\x02\\x04\\x01\\xbc\\x00-\\x00V\\x00\\x007>\\x0176\\x16\\x17\\x16\\x06\\a\\x06'&'&767654&'&\\x06\\a\\x06\\x16\\x17\\x16\\a\\x06\\a\\x06'&'.\\x064&70\\x16\\x15\\x1e\\x01\\x17\\x167676'&7>\\x02\\x17\\x1e\\x01\\x15\\x14\\a\\x06\\a\\x06\\x17\\x16\\x17\\x167676'.\\x01\\a\\x0e\\x01\\b\\x02zZf\\x9f\\x11\\x10VR\\r\\x05\\x1b\\x1a\\x05\\f%\\x06\\x01&\\x1b\\x1d-\\x04\\x04\\x17\\x17\\r\\x05\\x1b\\x1b\\x04\\vX+\\x04\\a\\x05\\x04\\x02\\x02\\x02\\x01\\x15\\x01\\x05C;\\x04\\x02\\x16\\x17\\x01\\x040\\x03\\x01-@\\x1d\\x13\\x1b\\x01\\x05(\\x04\\x01\\x17\\x16\\x02\\x047!5\\v\\n\\x92cRr\\xb6c\\x89\\f\\rv`Y\\x98!\\x06\\rFE\\f\\x05\\x11'\\x05\\x06\\x1b*\\x02\\x03#\\x1c\\x18+\\n\\x06\\rFF\\v\\x05\\\"U\\b\\x10\\x0f\\r\\x0e\\n\\r\\x06\\f\\x03\\x11\\x058b\\x1d\\x02\\x05:;\\x04\\x03\\x1e8 0\\n\\x11\\n/\\x16\\x05\\x06-\\x19\\x02\\x04;:\\x05\\x02\\x1a.IX[x\\r\\n}\\x00\\x00\\x0f\\x00\\x00\\xff\\xda\\x02\\x00\\x01\\xa6\\x00<\\x00J\\x00R\\x00Z\\x00q\\x00y\\x00\\x81\\x00\\x87\\x00\\x95\\x00\\xa4\\x00\\xb3\\x00\\xbb\\x00\\xcb\\x00\\xda\\x00\\xe2\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x06\\a\\x06\\a\\x16\\x17\\x16\\x0e\\x01\\a\\x06&'&'\\x06\\a\\x0e\\x01'.\\x01767&'.\\x01546767&'&676\\x16\\x17\\x16\\x1767>\\x01\\x17\\x1e\\x01\\a\\x06\\a\\x16'\\x06\\a\\x16\\x17\\x16\\x17676&'&\\x06\\a&'\\x06\\a\\x16\\x17&'\\x16\\x176767\\x06\\x17\\x16\\x17\\x16\\x17\\x163276767&'&'&\\\"\\a\\x06\\a\\x06\\x17\\x06\\a67&'\\x06767&'\\x16\\x17\\x16'\\x06\\a6\\x17&'\\x0e\\x01\\x17\\x16\\x176767&1.\\x01\\x0367&'\\x06\\a\\x0e\\x01\\x15\\x16\\x17\\x16\\x17\\x16\\x1767&'&'\\x06\\a\\x06\\x16\\x17\\x1676767\\x06#\\\"'\\x16\\x176'&'\\x06\\a\\x06\\a\\x16\\x17\\x1e\\x02767>\\x0254&'&'\\x06\\a\\x16\\x172&\\\"&462\\x16\\x14\\x01\\xa2*47-\\x06\\x03\\x02\\x01\\x06\\x02\\x0f\\r\\x14;!\\b\\x05\\x05\\x06!?\\x14\\x14\\f\\b\\x02\\x02\\x05\\t+52*\\t\\t\\x02\\x01\\t\\f\\x14\\x14@\\\"\\x04\\x04\\a\\x06!;\\x14\\x15\\f\\n\\x01\\x01\\b\\u007f\\x06\\x06\\x17\\x14!\\\"\\x01\\x01\\b\\a\\r\\r0\\x8f\\x06\\b\\n\\x06\\x16\\x18\\a'\\a\\t\\x06\\b\\a\\b\\x18\\x06\\v\\v\\v\\r\\x17\\x17\\x18\\x16\\x0e\\n\\f\\n\\v\\v\\v\\r\\x17.\\x17\\x0e\\n\\f\\xab\\t\\a\\x18\\x17\\a\\t\\b\\a\\n\\x06\\x15\\x18\\a\\b\\x06_\\x10\\x0e\\x1e\\x1e\\x0e\\x84\\f\\a\\a\\x02\\x01\\\"!\\x14\\x17\\a\\x1d4%\\n\\x0e\\x0e\\n\\n\\a#*\\x02\\x10\\x18'\\az\\x05\\x05\\x18\\x13\\\"\\\"\\x02\\x02\\x06\\a\\r\\x11\\x12\\x1f2\\x10\\r\\x0e\\x10\\x0f\\x0f\\x0f\\x93\\x04\\a\\x01\\x02!#\\x13\\x17\\b\\x05\\x11#\\x19\\t\\x0f\\x14\\x18'\\x15,#\\b\\a\\n\\x0e\\x0f\\n\\x03}&\\x1b\\x1b&\\x1b\\x01\\x0f\\x0f)\\x17\\x17,\\x0e\\x02\\x01\\a\\a\\x1d0$\\a\\v\\x14\\x1b\\b\\x05\\x05\\x05\\x1d\\x15\\v\\v>*\\t\\t\\x01\\x03\\x0f,\\x16\\x16*\\x0e\\x03\\x03\\b\\t*?\\f\\v\\x16\\x1f\\x04\\x04\\a\\x05\\x1d\\x14\\v\\vC-\\a\\x04\\x02R\\x05\\x06\\x19\\x1c\\x03\\b\\x04\\x06'6\\b\\a\\x14\\xef\\f\\x0f\\x18\\x15\\x05\\x02\\n\\x88\\x16\\x16\\f\\x0e\\f\\x0e\\x03J\\x16\\x13\\x14\\x13\\x01\\x01\\x15\\x13\\x14\\x14\\x16\\x13\\x13\\x13\\x02\\x02\\x14\\x13\\x15F\\x10\\n\\x03\\x05\\x17\\x15\\x0fA\\x16\\x16\\x05\\x03\\r\\r\\na\\x11\\x13\\x01\\x01\\x13N\\a3$\\n\\x05\\a\\x03\\x1c\\x19\\a\\x1a\\x15\\xfe\\xf0\\\"\\x1f\\x1f!\\x03\\x03\\f \\x0e\\x13\\v\\x12\\r\\x02d\\x04\\x05\\x1a\\x1c\\x02\\b\\b\\t$1\\a\\a\\b\\f0\\x12\\x12\\x01\\x01\\x14.\\\" \\x06\\x06\\a\\x03\\x1c\\x1a\\b\\x03\\x10\\x13\\x04\\x04\\f\\u007f\\b\\x16\\x16\\n\\r!\\f\\x02\\x02!\\x1e \\x1f\\x11\\x1b&\\x1b\\x1b&\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xd0\\x02\\x80\\x01\\xb0\\x00\\x06\\x00\\n\\x00\\x0e\\x00\\x12\\x00\\x00\\x01\\x13#'#\\a#73'#\\x05\\a'\\x17%\\a'7\\x01>\\xa4M\\x19x\\x19NyT)\\x02\\x01A\\x9e\\x14\\xa8\\xfe<\\x14\\x9e\\n\\x01\\xb0\\xfe QQ\\x8a\\x82\\xb1\\t8\\x10\\x108\\t\\x1f\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x007\\x02\\x80\\x01I\\x00)\\x00P\\x00\\x82\\x00\\xaa\\x00\\xbe\\x00\\xc3\\x00\\x00%\\x14\\x17\\x15\\x06\\x15\\x14\\x16\\x15\\x14\\x06+\\x015352>\\x0154&5475&54654&+\\x01532\\x16\\x15\\x14\\x06\\a\\x16\\x15\\x14\\x0e\\x01#\\\"'7\\x163254'&'&54>\\x0232\\x17\\a&#\\\"\\x15\\x14\\x1e\\x05\\x0523\\x17\\x06#\\\"=\\x01#\\\"\\x06\\x15\\x14\\x16\\x15\\x14\\a\\x15\\x16\\x15\\x14\\x06\\x15\\x14\\x16;\\x01\\x15#\\\"&54654#5654&546;\\x01\\x15\\x147\\x16\\x15\\x14\\x0e\\x02#\\\"'7\\x163254'&'&54>\\x0232\\x17\\a&#\\\"\\x15\\x14\\x1e\\x05'2\\x16\\x15\\x14\\a#\\x16327\\x17\\x06#\\\".\\x015&6\\x1534#\\\"\\x02e\\x1b\\x1b\\x03\\x13\\x16\\x14\\x06\\a\\a\\x03\\x01\\x17\\x17\\x01\\x06\\v\\x06\\x14\\x16\\x13\\x03j+\\x0e\\x1e\\x14\\\"\\x1a\\x15\\x15\\x13\\x15\\x1d\\x02\\x01*\\t\\x0f\\x17\\r\\x1c\\x1b\\x15\\x12\\x10\\x11\\x01\\x04\\x03\\a\\x04\\t\\xfe\\x9b\\x03\\x03\\x06\\n\\x0e+\\x0e\\n\\a\\x01\\x17\\x17\\x01\\a\\n\\x06\\x14\\x16\\x13\\x03\\x1b\\x1b\\x03\\x13\\x16K\\xf0+\\t\\x10\\x18\\x10!\\x1b\\x15\\x15\\x13\\x15\\x1d\\x02\\x01*\\t\\x10\\x16\\r\\x1d\\x1a\\x15\\x12\\x0f\\x12\\x01\\x04\\x04\\x06\\x05\\t\\x99 #\\x02_\\x06#\\x11\\x11\\x10\\x1a\\x1e\\x17#\\x15\\x01-9\\x1b\\x19\\xe5\\x16\\x01\\x1c\\x01\\x16\\n!\\f\\x19\\x14\\x19\\x01\\x04\\t\\t\\t!\\n \\x05\\x02\\x05 \\n\\\"\\a\\x0e\\t\\x18\\x14\\x19\\f!*\\x0e\\\"\\x0e\\x17\\x0e\\x16\\x1f\\x11\\x0e\\t\\v\\x01\\x01\\x10\\x1e\\v\\x12\\r\\a\\x14\\x1c\\r\\f\\x03\\x03\\x04\\x02\\x03\\x02\\x03<\\\"\\x046\\x96\\t\\r\\b\\\"\\t \\x05\\x02\\x06\\x1f\\n\\\"\\b\\r\\n\\x18\\x14\\x1a\\v!\\t\\x17\\x1c\\x01\\x16\\t\\\"\\f\\x19\\x14\\xb2\\r;\\x0e\\\"\\v\\x12\\x0e\\b\\x16\\x1f\\x11\\x0e\\t\\v\\x01\\x01\\x10\\x1e\\v\\x12\\r\\a\\x14\\x1c\\r\\f\\x03\\x03\\x04\\x02\\x03\\x02\\x03D+!\\a\\f#\\n\\x1b\\x12\\x13&\\x19%.B\\x1f\\x00\\x00\\x00\\x00\\x06\\xff\\xfd\\xff\\xca\\x02\\x82\\x01\\xb9\\x00\\x00\\x00\\xe4\\x00\\xf4\\x01\\a\\x01\\x11\\x01\\x19\\x00\\x00%72\\x16\\a\\x0e\\x01\\a\\x06'47>\\x01&'&\\a\\x16\\x15\\x16\\a\\x06\\a\\x06'&767&'&'\\x06\\a\\x06\\a\\x16\\x17\\x16\\a\\x06\\a\\x06\\a\\x06'&7676767&'&'\\x06\\a\\x06\\a\\x14\\x0f\\x015\\x06#\\\"&?\\x01\\x06\\a\\x0e\\x02#\\\"'.\\x01767\\x06\\a\\x06\\a\\x141\\x16\\x06\\a\\x0e\\x01'.\\x017676727.\\x03'&67676\\x16\\x17\\x16\\x06\\a\\x0e\\x01'.\\x01'&76\\x17\\x167>\\x01'.\\x01\\a\\x0e\\x04\\a\\x06\\x1e\\x01\\x172\\x14\\x174767>\\x012\\x16\\x0f\\x01630>\\x012\\x17\\x16\\x170\\x0e\\x03\\a\\x0e\\x01\\x1612767\\x1505076767>\\x015632\\x170\\x0e\\x01\\a\\x06\\x17\\x14\\x176767632\\x152\\x0e\\x01\\x15\\x06\\x17\\x16\\x176\\x056'0\\x06\\\"\\a\\x0e\\x01\\a\\x0e\\x02\\x17\\x16676'&\\x06\\a\\x06\\a\\x0e\\x01\\x14\\x1e\\x01\\x172>\\x03\\x176541\\x06\\x0f\\x02\\x167654'\\x06\\a\\x06\\x01.\\xf9)1\\x01\\x01\\x16\\a\\x05\\x01\\x05\\x0f\\x05\\x1e%#\\x1b\\x05\\x01\\x18\\n\\f\\v\\x06\\x14\\v\\b\\x1a\\n\\x02\\x04\\x02\\x0f\\x14\\x01\\x02\\x06\\x01\\x01\\x14\\n\\v\\t\\x0e\\v\\x05\\x06\\x03\\x02\\x1c\\x06\\x04\\x02\\x04\\f\\x01\\x04\\x02\\x10\\x10\\x0f\\n\\x01\\x01\\f\\v\\v\\b\\x01\\x02\\b\\b\\x04\\x06\\v\\x06\\n\\x05\\t\\f\\x01\\x02\\a\\x0e\\n\\b\\x04\\t\\x03\\x10\\x11<\\x1e\\r\\x0e\\v\\x10M\\x01\\x02\\x01\\x01\\t-# \\x04\\x03\\x17!9^Bw\\v\\n;/%H\\n\\x0f\\x13\\x03\\x03\\x03\\x03\\x05\\x14-HW\\x10\\vhK\\\"1\\x19\\x0f\\x03\\x01\\x01\\x1f:\\v\\x01\\x01\\x14\\x11\\x1a\\v!\\x1a\\n\\x02\\x02\\x01\\x01\\x02\\x03\\x05\\x03\\x06\\x01\\x02\\x04\\x04\\x04\\x01\\x01\\x01\\x01\\x02\\x03\\x01\\x02\\x01\\x04\\x06'\\x03\\x02\\x03\\x03\\x17\\r\\x01\\x03\\x04\\x01\\x01\\x03\\b$\\x04\\x01\\x04\\x02\\x17\\x0e\\x01\\x04\\x04\\x01\\x02\\x01\\f\\x1b\\xfer\\x1f\\f\\x02\\x01\\x01\\x02\\b\\x02\\x1b \\t\\n\\b\\\"\\x93\\x15\\x05\\x01\\x0f\\a\\x0e\\b\\x03\\x03\\x02\\x03\\x02\\x02\\x06\\a\\x05\\ap\\x19\\x05\\x06\\x13\\x01\\x01[\\x1a\\x02\\r\\x06\\tEW,\\x1b\\x11\\x14\\x02\\x01\\x03\\x02\\x03\\n\\x1f$\\x04\\x04\\v\\r\\n\\x16\\x12\\a\\x04\\x05\\x01\\x04\\x1d\\x17\\x15\\x14\\x06\\r\\r \\x1d\\x01\\x04\\x10\\f\\x19\\x0f\\x06\\x04\\x05\\x01\\x01\\x04\\x05\\t\\x03\\\"\\x06\\a\\x03\\x05\\x1b\\x03\\r\\r( \\x1e\\x10\\x01\\x01\\x02\\x01\\x13\\x1a\\r\\r\\x13\\x10\\t\\t\\a\\x05\\b%\\x10\\x1a\\x11\\b\\x05\\x05\\x03\\x01\\r>\\x18\\x1b\\x19\\b\\x04%\\x1e$&\\x01\\x01\\x01\\a \\x19)\\x14\\x117\\x1e5\\\"\\x18\\x1a*)V\\x12\\x0f\\x03\\x06\\x05\\x11\\a\\b\\x02\\x01\\x06\\x15\\x04\\tZ\\\"\\x1a\\x03\\\"\\x11#\\x1a\\x1c\\x0e\\b\\x16'+\\f\\x01\\x01\\x01\\v\\t\\x0e\\x0f\\x18\\x15\\v\\v\\x02\\x02\\x02\\x01\\x03\\b\\t\\x0e\\x10\\x11\\a\\x05\\n\\x05\\x06\\x03\\x04\\x01\\x01\\x01\\b\\rV\\n\\x04\\r\\x02\\x06\\a\\t\\r\\x05\\t\\x10\\a\\x0f:\\x11\\n\\t\\x06\\a\\t\\r\\x05\\t\\x10\\x06\\x18\\r\\x91\\\"-\\x02\\x01\\x01\\x05\\x01\\x10\\x1f&\\x05\\x05\\fj3\\b\\x04\\x06\\b\\x10\\x19\\b\\x12\\x0f\\r\\a\\x01\\a\\x0e\\f\\x122\\x0f\\x14\\x01\\a\\a\\x15\\x03\\x01\\x16\\n\\x19\\x05\\x05\\v\\r\\x12\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\xc0\\x01\\x80\\x00\\x06\\x00\\f\\x00\\x00\\x013\\v\\x013\\x177\\a\\x1b\\x01#\\a'\\x01e[\\xe0\\xe0\\xb008ਨ6rr\\x01\\x80\\xfe\\x80\\x01\\x80YY \\xfe\\xe0\\x01 \\xc6\\xc6\\x00\\x00\\x00\\x03\\x00\\x10\\xff\\xe0\\x01\\xb0\\x01\\xa0\\x00\\x02\\x00\\b\\x00\\x0f\\x00\\x00?\\x01\\x17'\\x17\\x03\\a'\\x03\\x01\\v\\x01373\\x17\\xba&&&\\xd0 \\xb0\\xb0 \\x01R\\x82\\x820\\x1bn\\x1a\\xb4\\\\\\\\\\xecJ\\xfe\\xecbb\\x01\\x14\\xfe\\xf4\\x01$\\xfe\\xdcBB\\x00\\x00\\x00\\t\\x00\\x00\\x00X\\x02\\x80\\x01(\\x00\\x06\\x00\\t\\x00\\x0f\\x00\\x13\\x00\\x1b\\x000\\x00D\\x00\\xb9\\x00\\xbf\\x00\\x007'#\\a#7\\x17'\\a3\\x17'3\\x1773\\x1753\\x157\\x15#5#53\\x15\\x16\\x14\\x0e\\x02\\\".\\x024676762\\x17\\x16\\x17\\x16\\x17\\x064.\\x01'&\\\"\\a\\x0e\\x02\\x14\\x1e\\x01\\x17\\x1627>\\x01\\a\\x16\\x15\\x14\\x06\\\"&5475\\a\\x15\\x16\\x14\\\"475\\a\\x153\\x15#5#\\x15#535\\a\\x0e\\x01\\x0f\\x01\\x153\\x15#5#\\x15#535&/\\x01\\x153\\x15#5#\\x15#535'\\x15\\x16\\x14\\\"475'\\x15\\x16\\x15\\x14\\x06\\\"&5475'\\x17&5&5'\\x1743>\\x01?\\x02#\\a#7\\x17#'#\\x17\\x16\\x170\\x157\\a\\x14\\a\\x14\\a7\\a'37\\x173'k\\x134\\x13\\x11>>>\\x13']>\\x11--\\x11\\x13\\x0f\\xc2\\x12)d\\x86\\n\\x12\\x18\\x1c\\x18\\x12\\n\\n\\t\\x05\\x10\\f\\x1c\\f\\x10\\x05\\t\\x05\\v\\a\\x0e\\t\\n\\x15\\t\\t\\x0e\\b\\b\\x0e\\t\\t\\x15\\n\\t\\x0eW\\n\\a\\n\\a\\nP\\n\\x19\\n\\x1d\\x06\\x06\\x05\\x05\\x05&\\x04\\t\\x03\\x03\\x05\\x04\\x05\\x04\\x05\\v\\b&\\x06\\x06\\x05\\x06\\x06\\x1d\\n\\x18\\tP\\v\\b\\n\\a\\nY\\xf3\\x01\\x01AA\\x01\\x01\\f\\x06\\x06\\x01\\x18\\x12\\x12?>\\x11\\x13\\x18\\x01\\x17\\x03@@\\x01\\x01\\xf3Y\\xc9\\x12\\x01\\x02\\x12\\x14\\xa4**\\x84\\x84c+<\\x84``\\x80\\x80\\x80ttt\\f\\f%\\x1c\\x18\\x12\\n\\n\\x13\\x17\\x1c\\x18\\t\\x05\\a\\x05\\x05\\a\\x05\\t\\f%\\x16\\x13\\x0e\\x04\\x04\\x04\\x04\\x0e\\x13\\x16\\x12\\x0e\\x04\\x04\\x04\\x04\\x0eD\\x01\\v\\x05\\a\\a\\x05\\v\\x01\\x06\\t\\x05\\x02\\x14\\x14\\x02\\x05\\x03\\x18\\x0e\\a\\a\\x0e\\x17\\x04\\x05\\a\\x01\\x01\\a\\f\\x05\\x05\\f\\a\\x02\\f\\x04\\x17\\x0e\\a\\a\\x0e\\x18\\x03\\x05\\x02\\x14\\x14\\x02\\x05\\t\\x06\\x01\\v\\x05\\a\\a\\x05\\v\\x01\\a\\n\\x0e\\x04\\x03\\x04\\x03\\b\\x02\\x01\\b\\f\\x02\\x02\\x1a)\\x83\\x83)\\x1a\\x06\\x12\\x01\\x02\\b\\x03\\x03\\x04\\x04\\x0e\\nQ((+\\x00\\x05\\xff\\xff\\x00y\\x02\\x81\\x01y\\x00\\xe3\\x00\\xec\\x00\\xf8\\x01\\x0e\\x01\\x1a\\x00\\x00%\\x14\\x06\\x0f\\x01\\x0e\\x02'.\\x03'5#\\a\\x0e\\x02.\\x01=\\x01\\x0e\\x02'.\\x01/\\x01\\x06\\a\\x06&/\\x01\\a\\x06'.\\x01?\\x01#\\x06\\a\\x0e\\x01+\\x01\\x06'&6?\\x01#\\a\\x0e\\x02'.\\x015'\\a\\\"\\x0e\\x02&'&'&'&4?\\x016\\x17\\x1e\\x017367672\\x17\\x16\\x06\\x0f\\x010\\x14\\x1e\\x02326?\\x01>\\x017>\\x01;\\x016\\x17\\x16\\x06\\x0f\\x01\\x177>\\x02\\x172\\x16\\x0e\\x01\\x0f\\x01\\x17?\\x01>\\x02\\x17\\x16\\x17\\a0\\x15\\x16\\x1726?\\x0167>\\x05?\\x01676\\x17\\x16\\a6\\x17\\x1e\\x01\\x0f\\x01>\\x01?\\x014567>\\x01\\x16\\x17\\x16\\x06\\x0f\\x01\\x1e\\x0272>\\x02?\\x01>\\x017>\\x01\\x1f\\x013>\\x03?\\x01>\\x02\\x1e\\x01\\x0f\\x01\\x06\\x17\\x166?\\x016\\x05\\x167>\\x01'&\\x0e\\x01%\\x06\\a>\\x04'&\\a\\x06\\x16>\\x01.\\x01/\\x01.\\x02\\x0e\\x03\\x1c\\x01\\x1d\\x01\\x1e\\x0267\\x167>\\x01/\\x01&\\a\\x0e\\x01\\x17\\x02\\x80\\x02\\x02\\x01\\x03\\n\\x19\\t\\x06\\t\\x04\\x02\\x01\\x02\\x14\\x01\\x04\\v\\v\\x06\\x02\\t\\x1c\\x10\\x0e\\x14\\x04\\x03\\x15:\\f\\x16\\x06\\x05\\x12\\x16\\t\\x04\\x01\\x01\\x01\\x01\\r\\a\\x03\\a\\x03\\x02\\x0f\\x04\\x01\\x02\\x03\\x02\\x02\\f\\n\\f\\b\\a\\x05\\x06\\x01\\x10\\x01\\x06\\x0f\\x0e\\x11\\x05\\x10\\x04\\x11\\v\\x05\\x03\\x02\\x04\\x06\\x03\\t\\x04\\x03\\x02\\x06\\x0e\\x1b\\x15\\v\\b\\x19\\x10\\x11\\x02\\x02\\b\\x05\\b\\x18\\a\\b\\x01\\v\\x03\\x01\\a\\x03\\x03\\t\\x01\\x01\\x03\\x02\\x02\\x01\\x15\\x01\\x05\\x0f\\a\\x05\\x03\\x02\\x03\\x02\\x02\\x02\\x01\\x1c\\x01\\x03\\n\\x04\\t\\x01\\a\\x02\\x03\\x05\\n\\x03\\x03\\a\\x05\\x01\\x04\\x05\\x06\\x05\\x04\\x01\\x01\\a\\x11\\x16\\a\\v0\\x0e\\r\\x12\\x04\\a\\a\\x05\\x10\\x06\\x06\\a\\x1e\\x04\\x15\\x17\\x01\\x01\\x1b\\r\\x0e\\x01\\x02\\r\\t\\x06\\r\\n\\t\\x03\\x02\\x01\\f\\x02\\x02\\x10\\x01\\x01\\x01\\x02\\x05\\x04\\x05\\x01\\x01\\x02\\x03\\n\\a\\x03\\x01\\x01\\x04\\x0e\\x06\\x0f\\x04\\x04\\n\\xfd\\xbf\\x06\\x0e\\n\\x05\\x06\\x04\\r\\f\\x01\\x11\\x10\\x01\\x02\\x06\\x0f\\v\\b\\x02\\x04\\x12\\x01\\x13\\a\\x02\\x03\\x03\\x02\\x01\\x01\\x03\\t\\b\\n\\x05\\x04\\x01\\x05\\f\\nd\\x10\\n\\x05\\x01\\x02\\x02\\t\\v\\x05\\x04\\x01\\xc1\\x04\\b\\x01\\x01\\x02\\x06\\b\\x02\\x02\\n\\f\\f\\x04\\x04:\\x03\\t\\r\\x05\\t\\x04\\x03\\x02\\a\\v\\x02\\x01\\r\\x06\\x06\\x0e\\f\\x01\\a\\x03\\x04\\n\\n\\x0f\\a \\r\\f\\x1a\\x18\\n\\v\\x01\\f\\b\\x1b\\f\\r\\x18\\x18\\x15\\x04\\x01\\x01\\t\\x03\\x04\\t\\x03\\x04\\x01\\x03\\x04\\f\\x12\\x01\\x05\\x02\\b\\x04\\x04\\x05\\x05\\x02\\x02\\x01\\x13\\r \\x01\\x0f\\x15\\\"\\a\\b\\x02\\x04\\x03\\x02\\n\\x05\\x05\\v6\\x06\\x03\\x03\\x01\\t\\x04\\x18\\n\\t\\x02$\\x03\\x06\\v\\x01\\v\\x10\\x0f\\x06\\x05\\x02\\x02-\\x01\\x04\\x05\\x01\\x03\\v5\\x16\\x05\\x01\\x05\\x03\\x02:/\\n\\x13\\x10\\x0e\\n\\a\\x02\\x02\\n\\a\\b\\x1f-=\\x0e\\b\\f(\\x0f\\x0e\\x01\\t\\x04\\x04\\x06\\x01%\\x17\\x03\\x05\\f\\x14\\x13\\x1e\\x05\\x05\\x02\\x04\\x05\\x02\\x06\\x06\\x06\\x02\\x02\\f1\\a\\x04\\x01\\x03%\\x05\\n\\b\\x06\\x01\\x02\\x01\\x03\\x04\\x02\\x0f\\a\\a\\x1f\\x01\\x01\\x05\\x03\\x03\\x04\\x10\\x02\\n\\a\\x13\\x05\\x02\\x04\\x16m7\\x10\\x03\\n\\x1c\\x17\\x1a\\x06\\x16,\\x03\\x94\\x13\\x10\\n\\a\\x02\\x01\\x01\\x01\\x01\\x03\\v\\x12\\x11\\t\\a\\x02\\x01\\x01\\x01\\x01\\x03\\\"\\x01\\x0f\\a\\r\\x03\\x03\\v\\x14\\t\\x10\\x03\\x00\\x00\\x00\\x01\\x00\\x03\\xff\\xc0\\x01\\xbd\\x01\\xc0\\x00.\\x00\\x00%\\x14\\a\\x06#\\\"&#\\\"\\a\\x0e\\x01#\\x15\\x14\\x06#\\\"&5\\x11&5462\\x16\\x15\\x14\\a\\x152>\\x0432\\x1632632\\x16\\x15\\x01\\xbc\\r7%\\x16H\\x1d2B\\x01\\x04\\x01\\x14\\x0e\\x0e\\x14\\x17\\\"/\\\"\\x17\\x01\\v\\x0f\\x17\\x17\\x1d\\r%P\\n\\x17C\\x02\\x06\\tY\\b\\x06\\x17\\x1c\\x1d\\x01\\x01N\\x10\\x13\\x14\\x0f\\x01w\\x11\\x1c\\x17\\\"\\\"\\x17\\x1d\\x10 \\x05\\x06\\a\\x06\\x05\\x1c\\x1c\\b\\x06\\x00\\x04\\x00\\x10\\xff\\xc0\\x01p\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x007#\\x113\\x17\\x11#\\x113\\x11#\\x113\\x15#5B22e3\\x983\\x972~\\x01BL\\xfeL\\x01\\xb4\\xfeL\\x01\\xb4\\xf7\\xf7\\x00\\x00\\n\\x00\\x00\\x00L\\x02\\x80\\x01)\\x00\\x03\\x00\\t\\x00\\x13\\x00\\x17\\x00\\x1b\\x00?\\x00G\\x00\\x9b\\x00\\xa3\\x00\\xab\\x00\\x0075\\x16\\x177\\x163\\x06'7$\\\"&5462\\x16\\x15\\x14\\a53\\x15#57\\x15'\\x1e\\x02\\x14\\x15\\x14\\x15\\x1c\\x01\\x0e\\x01\\a\\x0e\\x03+\\x01\\x06'.\\x0245454>\\x03;\\x016\\a54\\\"\\x1d\\x01\\x142'\\x1e\\x02\\x14\\x15\\x1c\\x03\\x0e\\x05\\a\\x0e\\x03#'\\x06'.\\x024547&'\\x15632\\x16\\x1d\\x01&'54#\\\"\\x1d\\x01'&'\\x15\\x16\\x17\\x16\\x17\\x15#5.\\x046?\\x01>\\x01\\x177\\x15\\x16\\x1767>\\x033\\x176'7&\\a\\x0e\\x01\\x16\\x1f\\x0154\\\"\\x1d\\x01\\x142\\x90\\x13\\x14\\x13&&)6\\x13\\x01\\xa5\\x18\\x11\\x11\\x19\\x10::\\x84:Y\\a\\a\\x03\\x03\\b\\x06\\x05\\x0e\\r\\v\\x04\\x03 \\x12\\a\\a\\x03\\x01\\b\\x10\\x19\\b\\t \\x15\\x16\\x16k\\a\\a\\x03\\x01\\x01\\x02\\x02\\x04\\x04\\x03\\x05\\x0e\\r\\v\\x04\\x03 \\x12\\a\\a\\x03\\t#A\\r\\x1a\\x13\\x15\\x1e\\x1b\\v\\v\\x04!\\x15\\x12\\x15\\t\\n:\\x11\\x1a\\x0e\\a\\x01\\x01\\x01\\x01\\a2)\\x16@&\\x03\\x03\\x05\\x0e\\r\\v\\x04\\x03 \\xf8\\x1d.\\x12\\x03\\x02\\x12\\x16\\xe3\\x16\\x16`\\x10\\n\\a\\x06\\r\\v\\x12\\x01x\\x11\\f\\f\\r\\r\\f\\f\\x89nn\\xa8\\x1b\\xc3w\\x06\\f\\x11\\x05\\f\\x01\\x03\\b\\t\\x0e\\f\\x06\\x05\\a\\x03\\x02\\x01\\x12\\a\\f\\x11\\x05\\f\\x01\\x03\\v\\v\\x12\\x10\\t\\x02Z(\\v\\v(\\rT\\x06\\f\\x11\\x05\\f\\x01\\t\\x02\\b\\x03\\a\\x03\\a\\x04\\x06\\x02\\x05\\b\\x03\\x02\\x01\\x02\\x13\\x06\\f\\x11\\x05\\f\\x1e\\x0e\\x1a 6\\x16\\x16\\x10^\\f\\x121\\x0f\\x13\\x1d\\x03\\x1b\\x18\\x1f\\x10\\x10\\a\\x06\\x1dJ\\x10\\x1d\\x16\\x12\\r\\t\\x02\\x01\\x0f\\x01\\x0f\\n\\x15\\x1f\\x1e\\x03\\x03\\x05\\b\\x03\\x02\\x01\\x02\\x1e\\x0e\\x11\\x0f\\x03\\r'\\x189(\\v\\v(\\r\\x00\\x00\\x00\\x02\\x00\\a\\xff\\xc0\\x01y\\x01\\xc0\\x00\\x05\\x00\\v\\x00\\x00\\x1b\\x01#'\\a#!3\\a'3\\x17\\x9e\\x97Y>>Y\\x01.CoqD-\\x01\\xc0\\xfe\\xdctt\\xdc\\xdcX\\x00\\x00\\x00\\t\\x00\\x00\\x00<\\x02\\x80\\x01D\\x00\\x11\\x00\\x1b\\x00\\x1f\\x00>\\x00R\\x00Y\\x00h\\x00s\\x00w\\x00\\x00\\x13\\x153\\x15#\\x15\\x14\\x16267\\x15\\x06#\\\"&=\\x01\\x176\\x17\\x15&\\a\\x15#537\\x15\\a5\\x05\\x14\\x1e\\x02\\x15\\x14\\x0e\\x01#\\\"'5\\x163254.\\x0254632\\x17\\x15&#\\\"\\x05\\x14\\a#\\x16327\\x15\\x06#\\\".\\x0154632\\x16\\a34&#\\\"\\x06'2\\x16\\x15\\x14\\x06#\\\"'\\x0f\\x0153\\x176\\x172654&#\\\"\\a\\x17\\x16\\a53\\x15\\xa5\\\"\\\"\\t\\f\\n\\x03\\v\\x14\\x14\\x1a\\x84\\f\\x19\\x15\\r,&_,\\xfe\\xff\\x15\\x1a\\x15\\x10\\x1c\\x13\\x19\\x17\\x1a\\x17\\x11\\x15\\x1a\\x15!\\x1b\\x18\\x14\\x15\\x17\\x0f\\x02S\\x01W\\x03 \\x18\\x14\\x15\\x1d\\x16 \\x13%\\x1f\\x1e\\\"X.\\r\\t\\n\\x0eq\\x19$#\\x1a\\x10\\x0f\\x01,'\\x02\\x10\\t\\f\\x0f\\x0f\\f\\x0e\\b\\x01\\br,\\x01/&&?\\t\\n\\x02\\x01\\\"\\x06\\x18\\x14\\x8e*\\x16\\t)\\a\\x10g\\x99;$\\n$^\\a\\t\\a\\x17\\x12\\x0f\\x16\\v\\v(\\x0f\\v\\a\\n\\b\\x15\\x11\\x17\\x1b\\b*\\v+\\t\\a\\x1a\\t!\\f\\x11$\\x1a#..\\x13\\x0e\\x0f\\x0f3+%((\\f2\\n\\xcd\\v\\x0e{\\x18\\x12\\x12\\x17\\bB\\t!\\x99\\x99\\x00\\x00\\x00\\x00\\x01\\x00\\v\\xff\\xbf\\x01v\\x01\\xc0\\x00\\\"\\x00\\x00\\x13\\x14\\x1e\\x04\\x15\\x14\\x06#\\\"&'5\\x163254.\\x0454632\\x17\\x15&#\\\"\\x9b!090 l\\\\\\\"[\\x1fTH7 090 iXLBDJ1\\x01%\\x0e\\x16\\x0e\\x18\\x1e;(KO\\x13\\r\\x81.#\\x10\\x18\\x0f\\x18\\x1d8%KV\\x1a\\x86$\\x00\\x00\\x00\\x00\\x02\\x00\\a\\xff\\xe0\\x01\\xb9\\x01\\xa0\\x00\\x15\\x00#\\x00\\x00\\x13\\x14\\x1e\\x02327\\x0e\\x01#\\\".\\x01547>\\x027\\x0672\\x15\\x14\\x0e\\x01#\\\".\\x02546\\xb3\\x1c)3\\x14\\f\\a&R\\x1b$Y;\\t\\r:F$\\x0e{\\x8a\\x1c%\\r\\x12%\\x1d\\x12\\x12\\x01r\\x19YW@\\x02<O~\\xa04\\x17\\x0e\\x0f\\x1c\\x13\\x04\\v\\x124'X8,=E\\x19\\x16\\x0e\\x00\\a\\x00\\x0e\\x00\\x01\\x02r\\x01\\u007f\\x00.\\x00[\\x00q\\x00\\xb4\\x00\\xce\\x01\\x00\\x019\\x00\\x0076\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x1632367>\\x0176\\x17\\x1e\\x01\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\\"+\\x01\\\"#&#&'&'.\\x01'4'\\x1323\\x161\\x16\\x17\\x16\\a\\x06\\a\\x06\\a\\x06'&'\\x15\\x141\\x06#\\\"#&50=\\x0146;\\x012\\x17\\x14\\x17\\x1430>\\x01767\\a0\\x150\\x141\\x15\\x14\\x17\\x163\\x167654'&'&\\a\\x067232\\x163\\x16\\x17\\x16\\x17\\x16\\x150\\x1d\\x01\\x14\\x15\\x06#\\\"#\\\"'4'\\\"\\x15\\x0e\\x01'&'&7676\\x17\\x16\\x1721450454&'&\\a\\x06\\a\\x065<\\x01547676362\\x17<\\x01=\\x014#\\\"&'\\\"#\\\"\\a\\x06\\a\\x06\\x14\\x17\\x16\\x17\\x167676\\x05\\x150\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\\"&747676'4'&'&\\a\\x06\\\"\\x06\\a\\\"+\\x01\\\"5&1476767632\\x17\\x16\\x17\\x16'0\\x170?\\x014656;\\x022\\a\\x14\\a\\x06\\a\\x06\\a\\x06'\\\"'&5<\\x01\\x17:\\x01\\x17232767>\\x0176'&'&5&3232\\x17\\x16\\x15\\x16\\x0e\\x03\\a\\x1c\\x03=B  ((\\a\\a\\x18\\x1d#_!\\x05\\x04\\x05\\x03\\x04\\x04\\x05+9%&\\x1b\\x1a\\x02\\x01\\x15\\x01\\x01\\x04\\a\\x1a\\x19)'\\\"U\\x1b\\x04\\x9e\\x06\\x02\\n\\x1f\\r\\t\\x01\\x01\\t\\x0f\\x1d\\\"\\x1b\\x01\\x01\\x01\\x04\\v\\n\\x05\\x03\\x05\\v\\a\\x01\\x01\\x01\\x03\\x03\\x01\\x11\\x15+\\x01\\x13\\x13!\\t\\x04\\x05\\b\\x19\\x18\\x16\\x01\\xcd\\b\\x04\\x02\\a\\x02\\r\\t\\x10\\x03\\x01\\x01\\x04\\b\\b\\x05\\x01\\x02\\x01\\x13,\\x10\\x12\\x03\\x02\\x06\\t\\x14\\x0e\\x14\\x10\\x10\\x01\\n\\f\\x11\\x14\\x05\\x13\\a\\x06\\x0e\\x03\\x0f\\x0e\\x01\\x02#\\x02\\x01\\x13\\x05\\x03\\x04\\t\\b\\r\\x04\\x01\\x01\\x03\\n\\a\\t\\x14\\x12\\x01\\x01\\x04\\x01\\x01\\a\\x12\\x06\\x06\\x02\\x03\\x02\\x03\\x01\\x01\\f\\x04\\x04\\x01\\a\\b\\a\\x0e\\x14\\x03\\t\\b\\x03\\x01\\x01\\x01\\x03\\x01\\x01\\x02\\x02\\x10\\x18\\r\\x0e\\x06\\x06\\v\\n\\b\\x83\\x01\\b#\\x01\\x02\\x05\\x01\\x14\\x04\\x01\\x01#$\\x04\\x05\\r\\x1a\\t\\b\\b\\x05\\x02\\x05\\x01\\x02\\x03\\x05\\x05\\v\\x05\\x01\\x06\\x02\\x02\\x02\\x1e\\x1d\\x02\\x01\\x04\\b\\x0f\\x04\\x02\\x06\\x14{\\x06\\x04\\x0f\\x02\\x1e\\x10\\a\\x05\\x05\\x01\\x03\\x04\\x19\\x0e\\x02\\x01\\x01\\t\\x04\\x04\\x03\\x1e\\x12\\f\\x06\\x04\\x01\\x01\\x01\\x04\\a\\x0e\\f3\\x18\\x01\\x05\\x01\\x06\\x02\\x06\\x1f\\x14\\x1d\\x19\\x14\\x1d\\x05\\a\\x16\\x01\\x01I\\x02\\x06\\x01\\x05\\x02\\xd2\\x05\\x03\\a\\x02\\x06\\x01\\x03\\x01\\x01\\r\\x02)**\\x01\\x02\\x01\\r\\x02\\x1e\\f\\x13\\x13\\x0e\\x18\\x02\\x01\\x0f\\x01(\\x01\\x02\\x05\\n\\x15\\x06\\x06\\x01j\\x01\\x02\\x04\\x05\\x02\\t\\x01\\x0f\\a\\t\\n\\x16\\x11\\r\\x12\\a\\x05\\x01\\x01\\x04\\x01\\x01\\x13\\x05\\n\\r\\x02\\x03\\x04\\x01\\x05\\x02\\a\\x02\\x06\\x02\\x06\\x02\\x04\\x01\\x04\\x01\\x80\\x03\\n\\x01\\x0f\\x02\\x03\\x01\\x03\\x04\\v\\x05\\n\\x05\\t\\x04\\x03\\x01\\x02\\r\\x01\\u007f\\x12\\b\\x02\\\"\\x16\\a\\x06\\x02\\x01\\x02\\x02\\x02\\x01\\x1e\\x0f\\x0f\\t\\b\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x02\\x01\\f\\x04\\x03\\x01\\x01\\x03\\x02u\\x02\\x16d\\x01\\x02\\x01\\x05\\x04\\x03\\x03ZY\\n\\t\\x16\\x01\\x02\\x01\\b\\x05\\n\\x01\\x01\\x01\\x03\\v\\x04\\x0f\\x03\\x06\\x06IH\\x03\\x04\\x04\\x05\\x0f\\x025\\x00\\b\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x12\\x00(\\x008\\x00r\\x00\\xb3\\x00\\xe3\\x01\\x0e\\x017\\x00\\x0070=\\x01476\\x17\\x16\\x17\\x16\\x15\\x14\\a\\x06'\\\"'&\\x17.\\x017676\\x172\\x1632\\x1d\\x01\\x1c\\x03#\\x06\\a\\x06%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\x16\\x17\\x1e\\x01\\x17\\x16\\a\\x0e\\x01\\a\\x06\\a\\x06#0&#\\\"\\x14\\x15\\x14\\x17\\x163\\x1676767674#0\\\"1\\\"\\a\\x14\\x06\\x15\\a\\x06\\a45.\\x01'&'&#\\\"#\\\"\\a\\x16\\x17\\x166761\\x16\\x15\\x16323250=\\x014'&'&'\\\"&+\\x01\\\"1\\x06\\a\\x06\\a\\x06\\x15\\x1c\\x01\\x15\\x147676\\x17\\x16\\x17\\x16\\x15\\x1c\\x02\\x150\\x15\\\"1&'&\\a\\x06\\a\\x06'\\x15\\x14\\x15\\x14323254=\\x010\\x161\\x16767656'&'\\\"'+\\x010\\x061\\x06\\a\\x06\\a\\x06\\a054&5&+\\x01\\\"\\x05&\\a\\x06\\a\\x06\\a\\x06'&'&'&'&\\a\\x15\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17230;\\x0121676767676&7&'&'&\\a\\x06\\a\\x06\\a\\x14\\x15\\x1432376\\x172\\x17\\x1e\\x01\\a\\x06\\a\\x061\\x14\\x163676767674}\\x01\\x12\\x14\\x15\\a\\x04\\x03\\b\\x1c\\x0f\\x10\\x01\\x9b\\b\\x05\\x02\\x03\\v\\t\\f\\x04\\x0e\\x02\\x02\\x01\\x0f\\x10\\b\\x01\\\"\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\xd0\\x01\\x01\\x04$\\n\\x02\\x02\\x01\\x05\\x02\\x04\\t\\x06\\a\\x05\\x01\\x04\\x06\\t\\x05\\x16\\v\\x05\\x03\\x14'\\x01\\x01\\x04\\x10\\x05\\x02\\x01\\x1d\\x03\\x04\\x06\\x15\\x06\\x02\\x03\\x02\\x04\\f\\a\\x03~\\x03\\x0f\\x0e%\\x0f\\x01\\x02\\x01\\x03\\a\\a\\x04\\x01\\x02\\x0e\\a\\v\\x01\\x06\\x02\\n\\x02\\x0e\\v\\x02\\f\\x05\\x06\\x0e\\x05\\x12\\x0e\\t\\x05\\x04\\x01\\x0e\\r\\x10\\f\\x11\\a\\x06\\x8d\\x04\\t\\t\\x04\\x02\\x16\\x1d\\x18\\f\\t\\x01\\b\\v\\x19\\x02\\x04\\x02\\b\\x03\\x11\\x0f\\x01\\x02\\x02\\x01\\x01\\x01\\x06\\t\\a\\x01\\x8b\\x03\\x05AH\\x16\\x15((\\x1b\\x1a92\\x02\\x18\\x05\\x03\\x03\\x016D #\\x15\\x15\\x06\\x03\\x02\\x12\\x02\\x16\\x17 \\x1f/$\\x06\\x02\\x03\\x02.\\x01\\a\\a\\n\\x11\\x10\\x14\\x0e\\x02\\x01\\x03\\x01\\x01\\x13\\x12\\v\\x05\\a\\x06\\x01\\x03\\x04\\n\\x01\\x02\\x02\\x02\\x02\\b\\x02\\x0f\\x06\\x01\\x01\\xf6$#\\x02\\x01\\f\\x01\\x02\\x14\\v\\x11\\x0f\\n\\x1a\\x02\\v\\x02\\r\\x03\\x10\\b\\n\\x03\\x03\\x01\\x03\\x02\\f\\x01\\x05\\x04\\x04\\v\\x02\\x01\\x8b\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c,\\x03\\x02\\tY\\x18\\x05\\x05\\x03\\f\\x04\\b\\x03\\x01\\x01\\b\\x04\\a\\x01\\x01\\x01\\x13\\b\\a2e\\x02\\x02\\x04\\x04\\x01\\x02\\x01T\\b\\n\\x01\\x01\\x0f<\\x0f\\x06\\b\\x04j\\x12\\t\\a\\x06\\f\\x01\\a\\x02\\x04\\x04\\x02Y\\x05\\x06\\x11\\b\\x04\\x02\\x01\\x01\\x03\\x01\\x04\\x01\\x05\\x02\\x05\\x02\\x05\\x01\\x04\\x01\\x03\\x02\\x01\\x06\\x05\\b\\x03\\a\\t\\x02\\x01\\x03\\x01\\x01\\x04\\a\\x0e\\vT\\xaf\\x02\\x01\\x04\\x04\\x01\\x02<\\x01\\x13\\x06\\x05\\x18\\x10\\x15\\x18\\x12\\x1a\\x05\\x01\\x01\\x02\\n\\x01\\x02\\x01\\x01\\x01\\x02\\x04\\x01\\x06\\xef\\x01\\x02\\x1b\\t\\x02\\x01\\x01\\x05\\x04\\x06\\x0e\\x19\\x01\\r\\x03\\x05\\x02\\x04\\x010\\x19\\v\\x06\\x03\\x02\\x01\\x03\\x05\\n\\x0f\\x19\\x04\\x02\\x03\\b\\x1d\\x04\\x03\\x02\\x01\\x01\\x03\\x03\\n\\x01\\x02\\x01\\x02\\x02\\x03\\x01\\x01\\x02\\x01\\x0f\\f\\x0f\\x17\\x02\\x02\\x02\\x01\\x01\\b\\x03\\x13\\x1c\\x03\\x06\\x05\\x00\\x02\\x00\\b\\xff\\xc0\\x018\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\x00%\\a'\\x13\\x117\\a'\\x018\\x98\\x98\\x98\\x98\\x98\\x98\\xbb]]\\x01\\x05\\xfe\\x81\\\\\\xdd\\xdd\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xbf\\x01\\x9e\\x00\\x0f\\x00\\x16\\x00\\x1d\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x1537#\\a5\\x133'#\\x1535\\x01\\x82\\x19##\\x18\\xfe\\xb9\\x19##\\x19\\x1b\\xbcQo>BvX\\xc0`\\x01\\x9e#\\x19\\xfe\\xba\\x19##\\x18\\x01G\\x19#W\\x84\\x84tt\\xfe\\xf0\\x83\\x83r\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\x1535#\\x1575#\\x1575#\\x15\\x01\\xaa\\t\\r\\r\\t\\xfel\\t\\r\\r\\t\\x8e(\\xc8xxxxx\\x01\\xa0\\r\\t\\xfel\\t\\r\\r\\t\\x01\\x94\\t\\r\\xfe\\xbc\\xc8\\xc8((P((P((\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x02\\x00\\x12\\x002\\x00\\x007\\x17\\a%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4'&'.\\x01+\\x01\\\"\\a\\x06\\a\\x0e\\x01\\x1d\\x01\\x14\\x17\\x16\\x17\\x1e\\x01;\\x012767>\\x015\\xbb__\\x01\\x05\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c*\\b\\x06\\x1a\\fG\\x1e\\x1dr\\x1c\\x1a\\x06\\x04\\x04\\b\\x06\\x1a\\fG\\x1e\\x1dr\\x1c\\x1a\\x06\\x04\\x04\\xf666\\xe6\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xc4;\\x1d\\x1a\\x06\\x04\\x04\\b\\x06\\x1a\\r,\\x10\\x0f<\\x1c\\x1a\\x06\\x04\\x04\\b\\a\\x19\\f,\\x10\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\v\\x00\\x00\\x11!\\x11!\\x015!\\x113535\\x01\\xc0\\xfe@\\x01f\\xfe\\xf4YZ\\x01\\xa0\\xfe@\\x01\\rY\\xfe\\xf4YZ\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\b\\x02\\x84\\x01x\\x00\\v\\x00/\\x00[\\x00n\\x00z\\x00\\x82\\x00\\x00\\x13\\x15\\x14+\\x01\\\"=\\x014;\\x012\\a\\x16\\x1d\\x01\\x14+\\x01\\\"&=\\x016/\\x01\\\"\\x0e\\x03\\x1d\\x01\\x14+\\x01\\\"5\\x114;\\x012\\x1d\\x01632\\x05\\x16\\a\\x06\\a#\\x06#\\\"'&=\\x0146\\x17\\x163276/\\x01&'&7632\\x172\\x1d\\x01\\x14'&\\\"\\a\\x06\\x16\\x1f\\x01\\x16'2\\x16\\x14\\x06#\\\"'\\x15\\x14+\\x01\\\"=\\x014>\\x02\\x172654.\\x01#\\\"\\x06\\x14\\x16&2\\x16\\x14\\x06\\\"&4\\xfc\\x03)\\x03\\x03)\\x03`\\x1c\\x02\\x1c\\x06\\n\\x01\\x18\\x17\\r\\x14\\b\\x04\\x01\\x02)\\x03\\x03)\\x02\\x17\\x1b$\\x01\\xf7\\b\\x05\\t$\\x01\\x0e\\x16\\x19\\x17\\x0f\\x03\\x02\\x19!\\x1f\\x06\\x05\\x125 \\x05\\x06\\x1c\\x15&\\x1c\\x1b\\x02\\x04!+\\b\\x05\\x01\\x06:\\x19\\xf9.?@-!\\x19\\x02)\\x03\\x17# \\x0e\\x1a$\\x10\\x1d\\x11\\x1a$$\\x86\\x18\\x11\\x11\\x18\\x11\\x01\\\"\\xc9\\x03\\x03\\xc9\\x03\\r\\x14#\\x88\\x03\\t\\a{\\x12\\x06\\x03\\x06\\x06\\v\\x02\\x02\\x88\\x03\\x03\\x01\\x17\\x02\\x02Q\\v\\x80\\x13\\x14#\\v\\x04\\b\\x05\\x10\\\"\\x02\\x01\\x01\\x13\\x0e\\r\\b\\x18\\x0e\\x1d\\x1f\\x17\\x0f\\n\\x02-\\x05\\x03\\r\\a\\x03\\n\\x03\\x19\\vi?[?\\x13Y\\x03\\x03\\xb8\\x1d+\\x16\\t\\xab%\\x1a\\x11\\x1c\\x11%3%\\xf9\\x11\\x18\\x11\\x11\\x18\\x00\\a\\x00\\x00\\x00\\x17\\x02\\x80\\x01i\\x00\\a\\x00\\x18\\x00.\\x00?\\x00f\\x00{\\x00\\x8d\\x00\\x00\\x00\\\"\\x06\\x14\\x16264%2\\x1e\\x01\\x14\\x0e\\x01\\\".\\x0154>\\x04\\a6<\\x01.\\x04*\\x01#\\a:\\x02>\\x05\\a732\\x17\\x16\\x06\\a\\x0e\\x05\\\"#\\a73\\a262\\x1e\\x03\\x17\\x1e\\x03\\x0e\\x04\\a#67>\\x01'.\\x03*\\x04#\\a#%64.\\x05*\\x01#\\a:\\x02>\\x04\\a732\\x17\\x16\\x06\\a\\x0e\\x04\\\"\\x06\\\"#\\a\\x01\\xbe\\xfc\\xb1\\xb1\\xfc\\xb1\\xfe\\xd1W\\x93VV\\x93\\xae\\x93V\\x17);GR:\\x01\\x05\\x03\\b\\x05\\f\\x06\\x0f\\x03\\x0e\\x02\\x12\\x05\\x0e\\x05\\n\\x05\\x06\\x04x!G \\x0e\\x0e\\b\\x14\\x05\\n\\r\\b\\x13\\x06\\x1a\\x03\\t\\x95%\\t\\x04\\x12\\t\\x0e\\t\\n\\b\\x03\\x02\\x04\\x01\\x01\\x01\\x01\\x04\\x03\\x05\\x03%\\x03\\x05\\a\\x01\\x03\\x01\\x02\\x03\\x04\\x05\\x04\\b\\x06\\n\\x04\\x13%\\x00\\xff\\x01\\x01\\x04\\x03\\b\\x05\\f\\x06\\x0f\\x03\\x0e\\x02\\x14\\x05\\x0f\\x05\\v\\x05\\x06x!G \\x0e\\x0e\\t\\x13\\x04\\n\\a\\r\\x06\\x12\\x06\\x17\\x03\\t\\x01X[z[[zk-M\\\\M--M.\\x17,$ \\x15\\f\\x9a\\x05\\t\\a\\x05\\x04\\x02\\x01\\x01G\\x01\\x02\\x03\\x06\\a\\ve\\xa8\\x10\\x106\\x12\\x05\\a\\x04\\x02\\x01\\x01,\\xd5-\\x01\\x01\\x01\\x03\\x03\\x03\\x03\\x04\\a\\x06\\f\\t\\x13\\x0f\\x1b\\v\\x0f\\x17\\\"\\x0f\\x05\\x01\\x01\\x01\\x01`?\\x05\\t\\a\\x05\\x04\\x02\\x01\\x01G\\x02\\x02\\x06\\a\\fd\\xa8\\x10\\x106\\x12\\x04\\x06\\x05\\x02\\x02\\x01,\\x00\\x00\\x00\\x03\\x00\\f\\xff\\xc8\\x01\\xf6\\x01\\xb8\\x00\\x1d\\x00\\x1f\\x00'\\x00\\x00\\x05\\x16\\x17\\x06#\\\"#\\\"&462\\x16\\x15\\x14\\a&'6.\\x02#\\\"\\x06\\x15\\x14\\x1e\\x0137\\x1562\\x16\\x14\\x06\\\"&4\\x01:\\n\\x03\\\"#\\x01\\x01e\\x8f\\x8fˏ\\x14\\x02\\t\\x04\\x16*?\\\"B]+I+\\x01%R::R:\\x1b\\n\\x02\\n\\x8fˏ\\x8ff3.\\x03\\f\\\"A0\\x1e]A+I+\\x01\\x01\\xa9:R::R\\x00\\a\\x00\\x00\\xff\\xee\\x02@\\x01\\x92\\x00!\\x00-\\x009\\x00E\\x00Q\\x00]\\x00i\\x00\\x00\\x01\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\a\\x06\\\"'.\\x02+\\x01\\\"&=\\x0146;\\x012\\x16\\x17>\\x013\\x0354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02\\x10\\x14\\x1c\\x1c\\x14ZI>\\f\\x01\\x04\\x01\\b\\x1c=2Z\\x14\\x1c\\x1c\\x14\\x8c$8\\b\\b8$\\x92\\x03\\xa1\\x03\\x03\\xa0\\x04\\x03\\xa1\\x03\\x03\\xa0\\x04\\x03\\xa1\\x03\\x03\\xa0\\x04\\x01\\x03\\x03\\xa0\\x04\\x04\\xa0\\x03\\x03\\xa0\\x04\\x04\\xa0\\x03\\x03\\xa0\\x04\\x04\\xa0\\x03\\x01\\x92\\x01\\x1c\\x14\\xf5\\x14\\x1c#(\\x02\\x02\\x1b\\x1f\\x11\\x1c\\x14\\xf6\\x13\\x1d.##.\\xfe\\xf6\\x17\\x03\\x03\\x17\\x03@\\x17\\x03\\x03\\x17\\x03@\\x17\\x03\\x03\\x17\\x04v\\x17\\x04\\x04\\x17\\x03@\\x17\\x04\\x04\\x17\\x03@\\x17\\x03\\x03\\x17\\x04\\x00\\b\\xff\\xf2\\xff\\xbc\\x01\\x89\\x01\\xc0\\x00\\x12\\x00'\\x00=\\x00O\\x00h\\x00v\\x00\\x82\\x00\\x92\\x00\\x00%\\x06'&767>\\x01;\\x010\\a\\x06\\x17\\x16?\\x01\\x06'.\\x0367>\\x03'0\\x17\\x16\\a\\x0e\\x01\\x1e\\x027\\x0e\\x02\\x1e\\x01\\x17\\x16\\x17\\x16\\x06\\x0f\\x01>\\x03&'&76\\x136'&'\\\"\\a\\x06\\a676\\x17\\x16\\a\\x06\\a6\\x17\\x16\\a\\x06'&'&7672\\x17\\\"\\a\\x06\\a\\x14\\x17\\x1667>\\x01/\\x010\\a\\x06\\x17\\x167\\x16\\x17\\x06'&76\\x17>\\x01?\\x01\\x0e\\x01'&'\\x1667\\x16\\x17\\x06'&767\\x0e\\x02\\x14\\x16\\x17\\x16\\x01\\x16Of9\\x04\\x01\\b\\x14(\\v\\n)\\x1d%)RM\\r`\\x10\\x16\\x15\\t\\x01\\a\\v0%\\x16\\a\\n\\x15R\\x17\\x15\\x06\\f\\x16w %\\x11\\x02\\a\\t\\x03\\x01\\v\\x0f\\x0f\\x0f\\x01\\x04\\b\\x04\\x04\\a=e\\x1a\\x14C\\n\\x06\\x16\\x04\\x05\\x05\\x06\\x04\\x05!\\x14\\x14\\x19\\x15/\\x010\\x1b'G\\x8822+\\x1a\\x19!\\v\\x04\\a\\v\\x1e\\x02\\x05)\\xcd.\\x0e\\b\\x03\\xe3\\x05\\x02\\x1546\\x0e\\x0fEF$\\x02\\x01\\xcb\\x1f&\\x04\\x03\\x02\\x98S4\\x14(\\x89\\r\\t\\fYK$\\x03\\x02\\x19\\x01\\x02\\x04\\t\\nB\\x87\\x15\\t\\x05\\f\\x03\\x04\\n\\t\\f\\r\\x05\\x05\\x06\\v\\x06\\x19\\x0f\\x16\\x1a\\x16\\x17\\n\\x10(\\x1c2\\x1d\\x107@\\x13\\\"\\x1e\\x17\\x1e\\xa6\\x12\\x1d\\x14\\x17\\r\\r\\x03\\x02\\x15 \\n\\n\\x01\\x04\\f\\f\\x11\\bG2\\f\\xfe\\xf9##\\x14\\x02\\x01\\x01\\x02\\x05\\x02\\f\\x18\\x17\\x1c\\x16\\r\\x01<\\f\\x10\\x1c\\x06\\x03\\b\\a\\x11\\x12\\x01\\x03\\x02\\a\\t\\x03\\x02\\x10\\x02\\x0e\\x05\\n\\x03-\\x06\\a\\x02\\x06\\n\\b\\x05\\x1e\\x11\\b\\r\\tZ\\x06\\x0f\\x04\\x04\\x1d\\x17\\x06\\x03\\n\\b\\x01\\x97\\t\\x04\\x1a\\x0f\\a\\r\\t\\b\\x01\\x02\\x06\\x05\\x05\\x01\\a\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xd8\\x02\\x80\\x01\\xa8\\x00G\\x00\\x00\\x01\\x0e\\x04\\x15\\x0e\\x01\\a\\x0e\\x021\\x06\\a&\\x0e\\x06\\a7>\\x04\\x16\\x170\\x161\\x16\\x0f\\x01\\x06'&\\x0e\\x02\\a\\\".\\x0154327>\\x0132\\x1e\\x03\\x1770>\\x027>\\x02\\x02\\x80\\x17\\\"\\x14\\v\\b\\x03\\x0e\\a\\x05\\x19$\\r\\x1d\\x14&\\x1c'\\x13,\\f5\\x06+\\x0e:\\x193'<#\\x02\\a\\x045\\x05\\t)bBU\\x1c!1\\x10\\x02&A5f7\\x03\\n\\x1b\\x16\\x18\\x05\\x1c\\x11\\x12\\\"\\x12\\x172\\x1a\\x01\\xa7\\x0f\\x1d\\x19\\x11\\x11\\x01\\x05B\\r\\n\\x14\\x14\\t7\\x01\\x04\\x03\\x0f\\x06\\x18\\a \\x04\\x11\\x05\\x18\\t\\x0e\\x03\\x01\\x05\\x01\\x04\\x06`\\b\\x02\\t\\x04\\v\\f\\x01\\x11\\x10\\x02\\x02\\x0ffX\\x01\\a\\v\\x1a\\x111!\\\"4\\x16\\x1e(\\x0e\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x0e\\x00\\x14\\x00 \\x00-\\x00\\x00%\\x15#\\x15#5#546;\\x012\\x17\\x16'42\\x15\\x14\\\"72\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x01;\\x1cM\\x1d\\n\\x06f\\x06\\x05\\x05fEE#i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\xfefxxf\\x06\\n\\x05\\x059##\\\"\\x9d\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00)\\x00B\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\a\\x06\\x15\\x14\\x1632>\\x057'\\x0e\\x01\\a\\x15#5\\\"'7\\x1e\\x0174'&7\\\"\\a\\x17>\\x01753\\x15\\x16\\x17\\a&\\a\\x06\\x17\\x16\\x1f\\x01654'&\\xf8i\\x8f\\x94df\\x92\\x8eV\\vxS\\x19/\\\"\\x1f\\x13\\x11\\x04\\x02]\\x06'\\x18\\x1d)\\\"\\\"\\x19=\\x01\\a\\x1c\\x01j@_\\a$\\x14\\x1d\\\"\\x1c #\\x1c\\x10\\t0-\\u007f\\x06;;\\x01\\xb8\\x8fik\\x8d\\x92fe\\x93\\xb5\\x1f$Sw\\v\\x11\\x18\\x13\\x17\\x06\\x04)\\x19\\x1c\\x02&&\\x1e\\\"\\x16\\x01\\x19\\n\\x06\\f\\xde]+\\x16\\x15\\x01''\\x01\\x15\\\"\\x19\\x0f\\b\\r\\x15\\x149\\x1a\\x1bV:<\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x0e\\x001\\x003\\x00M\\x00\\x00\\x132\\x16\\x15\\x14\\x0e\\x03#\\\"&546\\x132>\\x03741'#\\x16327\\x17\\x06#\\\"&'#53<\\x015#53'\\x06\\x15\\x14\\x167#7\\x17654&#\\\"\\a\\x1767632\\x17\\a&#\\\"\\a\\x06\\a\\x173\\x15\\xf8i\\x8f\\x1a0>J&f\\x92\\x8ej!<%\\\"\\n\\x05\\x80[\\f8\\x1b\\x14\\n\\x1c%-G\\b\\x1b\\x17\\x17\\x04A\\vxC\\x01N\\x88\\x06vUl>Q\\a\\a&:\\\"\\x1c\\v\\x18\\x16!\\x13\\x04\\x04\\x1cF\\x01\\xb8\\x8fi+N<,\\x17\\x92fe\\x93\\xfe=\\x15\\x19#\\x0f\\b\\x0182\\v.\\x1050\\x1e\\t\\t\\x01\\x1e\\x1d\\x1f#Sx\\xbf\\x13<\\x19\\x1cUv]$\\v\\t*\\f0\\n\\x16\\x05\\t\\r\\x1e\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00!\\x00%\\x00:\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x1327'\\x15#\\x15#5#535'#53'\\x06\\x15\\x14\\x167'\\a\\x157\\x17654&#\\\"\\x0e\\x02\\a\\x17'3\\x1f\\x0173\\a3\\xf8i\\x8f\\x94df\\x92\\x8ejlDR@=@@\\x06:\\x1c\\u007f\\tx\\xab7\\x03@e\\bvU :*\\x1e\\vQ\\x1bB(\\x17+B?&\\x01\\xb8\\x90hk\\x8d\\x92fe\\x93\\xfe=c$$88'\\x12\\f'8\\x1c Sx\\x8a\\x18\\x06\\x123-\\x1c\\x1fUv\\x11\\x1f\\x1f\\x13$3V\\n`t\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00\\x1c\\x00 \\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x17\\x15#5\\x17\\x15#5\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\t\\xb4\\xb4\\xb4\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\x90++P**\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00#\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x132>\\x017&'\\x14\\x1e\\x01327\\x17\\x06#\\\".\\x02547'\\x06\\x1e\\x02703654&#\\\"\\x06\\a\\x17632\\x17\\a&\\x06\\a\\x91Α\\x91Α\\xf8%E5\\x12\\x01\\xd9\\v\\x19\\x12\\x15\\x0f$!.\\x14&'\\x18\\x04O\\x13\\x133X\\xf5\\x01\\awS4Y\\x1bJ!D. (\\x0e0\\r\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xcf\\x1b/\\x1f\\x01`\\x11 \\x17\\x11,\\x1d\\f\\x1b4#\\x11\\x10#0`L0\\x96\\x1a\\x1aSw2*!4\\x1c)\\x10\\x04\\x18\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00\\x1e\\x00(\\x004\\x00;\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x132>\\x0154&#\\\"\\x06\\x15\\x14\\x16\\x132\\x14+\\x015\\x17254.\\x02+\\x01\\x15'2\\x15\\x14\\x0e\\x02+\\x01\\x15#5\\x1726&+\\x01\\x15\\xf8i\\x8f\\x94df\\x92\\x8ej4]:vUVuw\\x99FF56\\\"\\t\\x0f\\x06\\x05\\x13^2\\x03\\n\\x19\\x13\\x1b\\\"?\\r\\f\\f\\x0e\\x1c\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93\\xfe=2^;UvzQSx\\x01\\x11\\x89\\x89l'\\x0f\\x12\\x06\\x01Ol.\\x06\\f\\x12\\v,\\x89C\\x15\\x14)\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00,\\x003\\x007\\x00;\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x1f\\x01\\x15\\x0e\\x02#\\\".\\x01'\\a'57457\\x17\\x15\\a5#5'\\x15\\x17?\\x01'\\a\\x175\\a\\x15\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:vM\\x05\\x03 \\x1e\\x02\\x03:D\\t@?;C\\x98\\x15\\x01qq\\b(%'Y-\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\xcf\\x03F\\x01\\x0e\\r\\x18\\x1c\\x04\\x1b\\x1c@\\x18\\x01F\\x1d>>f,\\x02.-/:\\x10\\x10\\x115+\\x13+\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00<\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\a>\\x0332\\x1e\\x02\\x15\\x14\\x0e\\x01#\\\".\\x01'3\\x1632654.\\x03#\\\"\\a3\\a'\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\xc3\\x04\\x1b$\\x1c\\x0e#5\\x1b\\f\\x1b<*\\x16+'\\x05>\\x034\\x16$\\v\\r\\x14\\b\\x052\\x06\\x1211\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\xa8\\x1d*\\x12\\a\\x1b++\\x16!;(\\x0f.$.(+\\x17\\\"\\x0f\\b\\x01,11\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00s\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\a2\\x16\\x15\\x17742\\x15\\x14\\x177632\\x15\\x1776;\\x01\\x15#\\a\\x06&/\\x01\\a\\x06#\\\"'4'\\a\\x06#\\\"'4'\\a\\x14\\\"5'\\x06\\x15\\x06#\\\"'0&5'\\a\\x06#\\\"/\\x01\\x06+\\x015376\\x16\\x1f\\x0174632\\x15\\x1774>\\x012\\x1e\\x01\\x15\\x1776\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:vQ\\x04\\b\\x06\\x05\\x15\\x06\\x06\\x01\\t\\n\\f\\x05\\x03\\b:3\\x13\\x03\\x10\\x01\\x04\\b\\x01\\t\\n\\x01\\x06\\x05\\x02\\t\\t\\x01\\x06\\x06\\x15\\x06\\x05\\x02\\t\\t\\x01\\x01\\x06\\x05\\x01\\n\\b\\x02\\v\\x04\\a4-\\x0e\\x03\\x0f\\x02\\x03\\b\\x06\\x05\\n\\x05\\a\\x05\\x04\\x02\\x04\\x06\\x05\\x06\\x01\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv5\\x05\\x06l<\\n\\n\\x02P@\\n\\ta\\r\\a\\x16,\\b\\x02\\t \\\\\\n\\n\\x01LH\\t\\t\\x01W_\\f\\fWT\\x01\\n\\n\\x01\\x01Y9\\t\\tL\\b\\x15\\x1c\\a\\x02\\b\\x14b\\x04\\x06\\fE\\\\\\x05\\x05\\x01\\x01\\x05\\x05Pb\\n\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00_\\x00s\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x173\\x15#\\a\\x06&/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"5'\\a\\x14\\\"/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"/\\x01\\x06+\\x015376\\x16\\x1f\\x01762\\x1f\\x01742\\x1f\\x01762\\x15\\x177>\\x01\\x1f\\x01742\\x1f\\x0176\\a24+\\x0154\\\"\\x1d\\x01#\\\"\\x14;\\x01\\x15\\x142=\\x01\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\x16;3\\x12\\x03\\x12\\x01\\x03\\x06\\x01\\x16\\x01\\x04\\x05\\x01\\x16\\x05\\x05\\x16\\x01\\x05\\x04\\x01\\x16\\x01\\x05\\x04\\x01\\x15\\x01\\v\\x03\\a3+\\x0e\\x03\\x11\\x02\\x01\\b\\x01\\x15\\x01\\x04\\x06\\x16\\x01\\x04\\x05\\x01\\x16\\x06\\x04\\x01\\x15\\x01\\x05\\x05\\x15\\x02\\v\\x04\\x02F\\b\\b\\x15\\x10\\x15\\b\\b\\x15\\x10\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\xcd\\x17,\\b\\x03\\b\\x17S\\v\\v@:\\v\\vHQ\\v\\vIF\\v\\vN+\\v\\nI\\x06\\x17\\x1c\\a\\x02\\t\\fZ\\n\\n9P\\v\\vCT\\v\\v^-\\n\\x01\\vE3\\v\\n]\\t\\b\\x06\\x10\\x15\\b\\b\\x15\\x10\\x15\\b\\b\\x15\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x004\\x00<\\x00@\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\\".\\x02=\\x014732\\x1e\\x01\\x1d\\x01\\a354735#\\x17#\\x153\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:v\\x10\\x06\\b\\b\\x06\\x87\\x05\\b6\\x03\\x05\\x04\\x02\\f\\x89\\x03\\a\\x03\\x87)\\f7l\\xb0ll\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv\\x84\\b\\x06\\xb6\\x06\\b\\b\\x066\\x02\\x03\\x06\\x02\\xb7\\v\\x03\\x04\\x06\\x046se\\f\\x02(C\\x9c\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\v\\x00\\x18\\x00(\\x001\\x009\\x00\\x00\\x132\\x16\\x15\\x14\\x06#\\\"&546\\x17\\\"\\x06\\x15\\x14\\x1632>\\x0154&\\x062\\x1e\\x02\\x14\\x0e\\x02\\\".\\x024>\\x01\\x17\\\"\\x15\\x14\\x1776'&\\x17\\a\\x06\\x163254\\xf8i\\x8f\\x94df\\x92\\x8ejVuwT4]:vr:*\\x16\\t\\t\\x16*:*\\x16\\t\\t\\x16G,\\x026\\b\\v\\x05%=\\t\\x10\\r,\\x01\\xb8\\x90hk\\x8d\\x91ge\\x93-zQSx2^;Uv<\\x1a+/6/+\\x1a\\x1a+/6/+\\x1cY\\x14\\x0ed\\r\\t\\x01.i\\r\\x0eY\\x19\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00?\\x02\\x80\\x01A\\x009\\x00A\\x00M\\x00a\\x00f\\x00\\x00\\x013\\a#7'\\x16\\x1d\\x01\\x14\\x17#&5\\x06#\\\"&547\\x0e\\x01#\\\"'\\x14\\a#6=\\x013\\x15632\\x16\\x15\\x14\\a672354#\\\"\\a#632\\x17'3\\x17\\x04264&\\\"\\x06\\x1475\\\"\\a\\x06\\x15\\x14\\x1e\\x01326%\\x1e\\x01673\\x0e\\x02#\\\"&54632\\x16\\x1d\\x01'.\\x01\\x06\\a\\x02^\\\"c$\\x1c=\\x05\\x01\\x1e\\x01\\x15)\\x1d \\x01\\x06(\\x1b'\\x14\\x01 \\x02 \\x14&\\x1e.\\x02\\nC\\x12\\x18)!\\x02\\\"\\x04C0\\x10\\v%7\\xfe\\xb6-\\x1c\\x1c-\\x1b\\xfb\\x18\\x10/\\a\\x10\\f\\x19\\x1b\\xfed\\x01)+\\x06!\\x03\\x19\\x1d\\x11*)*)$+\\\"\\x01--\\x04\\x01\\x02\\xc26t\\n\\x0eB\\x0f\\v\\t\\v\\x1a\\x1a\\x13\\x05\\x04\\x18\\x1e\\x19\\t\\n\\x16\\v\\xa9P\\x18($\\t\\b!\\x02\\x04!\\x16+\\x1a\\x14m\\x0f\\x1e0\\x1e\\x1e0\\x12\\x03\\x01\\x01\\x18\\a\\v\\b\\x1a\\x15\\x1b\\x18\\f\\x11\\x10\\x16\\b)!$*&&\\b\\x15\\x1a\\x16\\x15\\x1b\\x00\\x00\\x00\\x05\\x00\\x0e\\xff\\xdc\\x01\\xb2\\x01\\xa0\\x00\\a\\x00O\\x00`\\x00\\x8b\\x00\\x93\\x00\\x00$2\\x16\\x14\\x06\\\"&47\\x16\\x15\\x14\\a\\x06'.\\x017654'\\\"\\x15\\x061\\x0e\\x01'&\\x06\\a7\\a\\x16\\x17\\x16\\a\\x06'&'\\a54>\\x02767'.\\x01?\\x0147632\\x172\\x176?\\x01\\x17\\x06\\x176\\x17\\x1e\\x02\\x14\\a\\x16\\x17\\x16'67'&\\x0f\\x01\\x14\\x163\\x17&545'7\\x17654/\\x01&#\\\"\\a\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x1632?\\x01\\x17\\a\\x06\\x15\\x14\\x1f\\x01\\x1632?\\x01\\x17\\x1632\\x062\\x16\\x14\\x06\\\"&4\\x01\\x17\\x0f\\n\\n\\x0f\\v\\x82$\\x0f\\x05\\r\\x05\\x05\\x01\\x0f\\x02\\x01\\x01\\r.\\x1a<\\x84,\\x18.\\x03\\f\\a\\n\\r\\a\\n\\x05\\x17\\x02\\v\\x1b\\x17\\x14\\x1a\\t\\x15\\x1c\\x01\\x03\\x0f\\r\\x16\\x02(\\x04\\x04\\b\\x10\\x06\\x17\\r\\x03\\x0e\\x13\\x0e\\x19\\x0e\\x06\\n\\t7\\xe0\\x03\\x04\\x1d\\f\\x01\\x02\\x06\\x05\\x17\\x01\\r\\x02\\xa4\\x04\\x02R\\x03\\x04\\x04\\x03\\x04\\x02\\x13\\x11\\x03\\x02\\x01\\x03\\x02\\x03\\x03\\x02\\x11\\x0e\\\"\\x03\\x01\\x10\\x03\\x03\\x03\\x02#\\t\\x04\\x04\\x04l\\x0f\\n\\n\\x0f\\v\\x1d\\v\\x0e\\v\\v\\x0e\\x9f5:0'\\r\\x02\\x01\\n\\x05&,\\x0e\\x0e\\x01\\x02\\x13\\f\\a\\x11\\x17!K<\\x1c\\x19\\x10\\x04\\x06\\r\\x12\\x13\\x1d!\\x1d\\\"70\\x17\\x15\\x0e\\x01\\x01\\x1e\\x15$\\x12\\x0f\\r\\x02\\x01\\f\\x16\\b\\x0e\\x19\\n\\x01\\x06\\x05\\x18\\x1e\\x1f\\x0e\\x04\\x04\\x18]\\n\\n\\x01\\x01\\f%\\x05\\a\\x02\\x06\\x06\\x04\\x04\\x01\\x15\\xad\\x03\\x05\\x03\\x03`\\x04\\x03\\x03\\x04\\x03\\x03\\x16\\r\\x03\\x03\\x03\\x02\\x01\\x03\\x03\\x02\\r\\x11\\x1b\\x02\\x04\\x02\\x02\\x13\\x03\\x02\\x1b\\v\\x04t\\v\\x0e\\v\\v\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x0e\\xff\\xdd\\x01\\xb2\\x01\\xa1\\x004\\x00`\\x00\\x00\\x01\\x16\\a\\x0e\\x01\\a\\x06'\\x14\\x17\\x1e\\x03\\x172>\\x0473\\x17\\x06\\a\\x06'.\\x0645454>\\x02?\\x0162\\x17\\x1e\\x04\\a<\\x03.\\x03'&\\x06\\x0f\\x01'.\\x01\\a\\x0e\\x03\\x1c\\x02\\x1535476\\x17\\x16\\x1d\\x0135476\\x17\\x16\\x1d\\x01\\x01\\xb1\\x01\\n\\x05A)fM\\x01\\x02\\x10\\x1d\\x17\\x14\\b\\x11\\x0f\\x0e\\n\\b\\x03\\x02\\x01\\x1c316\\x14\\x1f\\x16\\x0f\\n\\x06\\x02\\r\\x13\\x13\\x06\\a.\\xc5/\\x03\\b\\x16\\x11\\x0eK\\x01\\x02\\x05\\x06\\x05\\x12D\\x11\\f\\f\\x11D\\x12\\x06\\x06\\x05\\x02/\\x18\\x18\\f\\x04.\\x1a\\x17\\v\\x04\\x01\\rH2\\x18,\\x05\\f\\x13\\a\\a\\x11\\x17\\n\\x03\\x01\\x01\\x02\\x02\\x02\\x02\\x01%\\x0f\\x03\\x02\\x0e\\x05\\x13\\x1e\\x1c-\\x1f7\\x1d\\x1d\\f\\x06\\x1b.\\x1b\\x13\\x03\\x04\\x15\\x15\\x02\\x05\\x14\\x1a.\\x98\\x12-\\x18\\x1d\\x0e\\x12\\v\\n\\x06\\x16\\x01\\x1b\\x14\\x14\\x1a\\x02\\x16\\x06\\v\\x12\\r \\x174\\x14r\\x1f\\x05\\x06\\x19\\v\\r??$\\a\\x06\\x16\\b\\fr\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02E\\x01\\xa0\\x00\\x13\\x002\\x00E\\x00K\\x00\\x00%\\x14\\a\\x17#'\\x06\\a\\x15#5.\\x0154632\\x1e\\x01\\x05\\x14\\x16\\x1753:\\x01\\x1e\\x04\\x15\\x14\\x0e\\x02\\x0f\\x01\\x16\\x17\\x16\\x17654&#\\\"\\x06\\x172\\x162>\\x0354.\\x04*\\x01\\x06#\\a\\x1527&#\\x02EXCp(!%cf\\x89\\xaaxO\\x86N\\xfe-E8\\xc7\\x02\\a\\x13\\x11\\x15\\x0f\\n\\x12\\x19\\x1a\\t\\t\\x12\\n\\x03\\x04Ft`[\\x82\\xe1\\b\\x19\\r\\x13\\t\\n\\x04\\x02\\x05\\x05\\v\\t\\x0f\\f\\x15\\b\\x01\\x1c\\x17\\r\\v\\xddR9rK\\t\\x04>>\\flGQr4ZC'A\\x10\\xd0\\x04\\x06\\r\\x12\\x1d\\x12\\x18%\\x12\\v\\x01\\x01\\x06\\x05\\x01\\x03#HBCN]\\x01\\x01\\x03\\x06\\v\\b\\x06\\b\\x06\\x04\\x02\\x02\\x01\\x80\\x16\\x03\\x13\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00<\\x00_\\x00i\\x00\\x00\\x11!\\x11!%5\\\"'&'>\\x0154&#\\\"\\x06'\\x152\\x162\\x1e\\x02\\x14\\x16\\x1d\\x01\\x14\\x06\\x14\\x0e\\x04#\\x1523235\\\".\\x054=\\x01\\x163\\x16\\x17\\x1e\\x0172>\\x03<\\x011#\\x153\\x14#\\\"=\\x014632\\x16\\x1f\\x0174.\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16\\a\\\"'5632\\x15\\x14\\x06\\x01\\xc0\\xfe@\\x01\\x06\\r\\x0e\\x17\\x13\\x11\\x16\\x1f\\x19\\x02<\\t\\x02\\a\\x02\\x06\\x01\\x03\\x01\\x01\\x03\\x02\\x05\\x02\\a\\x02\\x1e\\x04\\x11\\x12\\x02\\t\\x02\\x06\\x02\\x03\\x01\\x06\\x0f\\x17\\x13\\v$\\x1a\\b\\f\\a\\x05\\x02\\x1e\\x12\\x16\\x12\\r\\a\\x06\\n\\x02\\x02\\n\\x03\\x10\\v\\x11\\x11\\x10d\\n\\n\\x06\\x10%\\x15\\x01\\xa0\\xfe@r\\a\\x0f\\x19!\\x04\\x1c\\x10\\x16\\x18\\x02\\x01\\b\\x02\\x02\\x02\\x03\\x04\\a\\x04m\\x05\\x06\\x04\\x04\\x02\\x01\\x01\\x01\\b\\b\\x01\\x01\\x01\\x02\\x03\\x05\\x06\\x05.\\x01*\\x15\\r\\x06\\x8c\\x02\\b\\x05\\x0e\\x03\\x11\\n\\x1b\\x17\\x1b\\t\\v\\x06\\x04\\x03\\b\\x02\\x05\\n\\x13\\v \\x0e\\x12-\\x01E\\x01#\\x10\\x14\\x00\\x00\\x04\\x00\\x00\\xff\\xbc\\x02\\x00\\x01\\xe0\\x00\\x0e\\x00#\\x00[\\x00g\\x00\\x007\\x06\\a\\x06'&'&7>\\x01\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x0e\\x01\\a\\x06'&'47>\\x0376327\\x14\\a\\x0e\\x01'&5<\\x025&'&\\\"\\x0e\\x01\\a\\x0e\\x01\\x16\\a\\x06#\\x06&=\\x0176767676'&7676\\x170\\x17\\x16\\a\\x06\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\a'.\\x0167276\\x17\\x16\\x06\\xf4\\x03\\x13\\v3\\x1d\\x0e\\x16\\a\\x04\\x1a\\x10\\x1c$#\\xca\\v\\x01\\x10\\x0f\\x10(f4\\x012,E%\\x11\\x05\\x01\\x04\\x02?\\x01\\x03 \\x12\\t\\x03d(\\\\N;\\b\\x03\\x01\\x01\\x01\\x01\\v\\x17\\x1d\\x01\\x03\\x16\\x05\\x01\\t\\x1e\\x04\\x03\\x04\\a,:\\x90m\\x01\\x0e\\b\\x01\\x03\\r\\x17\\x04\\x01\\x05\\x1a\\x9f4\\x0e\\x0f\\x12!\\x01\\x04Q\\x02\\x01!e\\x11\\a\\x04\\x03\\x02\\x16\\\"(\\x12\\r\\b\\x0e!!%\\b\\x18\\x17$\\x0e\\f\\x1f\\x04\\x03\\a\\a\\x04\\x03\\x1e,\\x1e\\x0e\\x04y.\\x06\\x12\\x16\\x03\\x03\\f\\t\\\"\\x1d\\fs7\\x16%G.\\r\\x1f+'\\v\\x01\\x1b\\x17\\x15\\x1a\\x18\\n\\x03\\x051+\\x05\\x04\\a\\b1\\x12,i\\x01\\f\\v\\x01\\x04\\x117\\x16\\x04\\x02\\r\\xa1\\b\\x04\\x10\\x1c\\r\\x02 *\\x1a%\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00c\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\a'\\x17\\x06\\\"'7\\a&'7\\a&'7\\a&'7\\a&47\\x17'67\\x17'67\\x17'67\\x17'62\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x17\\a7\\x16\\x14\\a'\\x91Α\\x91Α\\x95ƍ\\x8dƍ\\x95\\xb6\\x81\\x81\\xb6\\x81\\x84\\xb0||\\xb0|\\x01\\x8e\\x06\\x0eJ=\\x10\\x157$\\x17\\x19\\x1c\\x05\\r\\x1a\\r\\x04\\x1b\\x1a\\x17$6\\x16\\x10>J\\x0e\\x06MR\\x02\\x02SN\\x06\\x0eJ=\\x10\\x157$\\x17\\x19\\x1b\\x04\\r\\x1a\\r\\x05\\x1c\\x19\\x17$7\\x15\\x10=J\\r\\aNS\\x01\\x01R\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xa9\\x8dƍ\\x8d\\xc6\\x01?\\x81\\xb6\\x81\\x81\\xb6\\xfe\\xd1|\\xb0||\\xb0'\\x19\\x17$7\\x15\\x10=J\\x0e\\x06NS\\x02\\x02SN\\x06\\x0eJ>\\x11\\x157$\\x17\\x19\\x1c\\x05\\r\\x1a\\r\\x04\\x1b\\x1a\\x17$6\\x16\\x10>J\\x0e\\x06MR\\x02\\x02RM\\x06\\x0eJ>\\x10\\x166#\\x16\\x1a\\x1b\\x04\\r\\x1a\\r\\x05\\x00\\x00\\x04\\x00\\x19\\xff\\xc0\\x01'\\x01\\xc0\\x00\\x03\\x00\\v\\x00\\x0f\\x00\\x17\\x00\\x00\\x13\\a'?\\x01\\x15\\a\\x17\\x15/\\x01?\\x02\\x17\\x0f\\x015\\x1f\\x01\\x0f\\x0157`$##T))\\x1433d#$$T\\x1533\\x15)\\x01\\x1c,,+y\\xd3--\\xd3\\xc6::\\\"++,\\x03\\xd3\\xc6::\\xc6\\xd3-\\x00\\v\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x16\\x00\\x1c\\x00D\\x00L\\x00R\\x00X\\x00^\\x00d\\x00j\\x00\\x00\\x04\\\"&462\\x16\\x14\\x02\\\"\\x06\\x14\\x16264'\\x16\\x17\\a.\\x01/\\x01\\x15\\x06\\a'6\\x173\\x15\\x16\\x177\\x17\\a\\x16\\x173\\x15#\\x06\\a\\x17\\a'\\x06\\a\\x15#5&'\\a'7&'#5367'7\\x176?\\x01\\x16\\x17#.\\x02'%\\x17\\x06\\a#6\\a3\\x16\\x17\\a&%3\\x06\\a'6\\x05\\x16\\x17\\x15&'7\\x17\\x06\\a56\\x01_Α\\x91Α\\x98\\xc0\\x87\\x87\\xc0\\x87\\xcb8-\\x12\\x0f1\\x138.%\\x12-D \\x0e\\r;\\x16;\\t\\x03RR\\x03\\t;\\x16;\\r\\x0e \\x0e\\r;\\x16;\\t\\x03RR\\x03\\t;\\x16;\\f\\x0f\\xb8\\\"\\b\\x19\\x02\\n\\x0f\\b\\xfe\\xc2\\x12\\x1c\\a\\x19\\b\\b\\x19\\a\\x1c\\x12\\\"\\x01\\x83\\x19\\b\\\"\\x12\\x1c\\xfe\\xdf%.8-\\xf0\\x12-8.8\\x91Α\\x91\\xce\\x01N\\x87\\xc0\\x87\\x87\\xc0r\\b\\\"\\x12\\f\\x14\\x03\\x19\\x19\\a\\x1c\\x12\\\"+R\\x03\\t;\\x16;\\r\\x0e\\x1f\\x0f\\r;\\x16;\\t\\x03RR\\x04\\b;\\x16;\\r\\x0e \\x0e\\r;\\x16;\\t\\x034-8\\f \\x1d\\n\\x12\\x12%.8p.%\\x12-88-\\x12%L\\x1c\\a\\x19\\b\\\"\\x12\\x12\\\"\\b\\x19\\a\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe3\\x02\\x00\\x01\\x9f\\x00\\x1a\\x002\\x00J\\x00s\\x00{\\x00\\x83\\x00\\x8b\\x00\\xaf\\x00\\x00\\x133\\x15\\x1e\\x01\\x17&=\\x014'&'&\\\"\\a\\x06\\a\\x06\\x17\\x15\\x14\\a>\\x027\\a\\x06\\a\\x06\\a\\x06#&#67\\x1626&'67\\x1e\\x016&'67\\x16\\x17\\x0e\\x01\\x1667\\x16\\x17\\x0e\\x01\\x1627\\x16\\x17\\\"\\a\\\"'&'.\\x012\\x1d\\x01\\x14\\x1632\\x1e\\x01\\x17\\x15\\x06\\a.\\x01#\\x0e\\x01\\a\\x06\\\"'.\\x02#\\\"\\x06\\a&'5>\\x02326=\\x01\\x16\\\"\\x06\\x14\\x16264&2\\x16\\x14\\x06\\\"&46\\\"\\x06\\x14\\x16264\\a2\\x17\\x16\\x173\\x1627367632\\x17\\x06\\a&#\\x0e\\x01\\a\\x15\\x06\\\"'5.\\x01'\\\"\\a&'6\\xfa\\f\\n\\x0e\\x01\\x13\\x03\\x01\\x01\\x03\\b\\x03\\x01\\x01\\x03\\x01\\x14\\x01\\x06\\v\\a\\x1a\\x03\\x01&\\b\\r\\x1c\\f\\x0e\\x03\\t\\v\\x15\\a\\v\\v\\r\\x11\\b\\x12\\f\\x01\\a\\rO\\x0f\\r\\a\\x01\\f\\x12\\b\\x11\\r\\v\\v\\a\\x15\\v\\t\\x03\\x0e\\f\\x1c\\r\\b&\\x01)\\f=!(&?\\x0f\\x0e\\x13\\n:(!1\\t\\f\\x18\\f\\x06\\x19&\\x16(:\\n\\x13\\x0e\\x0f?&(!=\\x17\\\"\\x18\\x18\\\"\\x187\\x1c\\x13\\x13\\x1c\\x13,\\x16\\x10\\x10\\x16\\x10\\x8e\\x1b\\x16\\x17\\x1a\\x01\\b\\x10\\b\\x01\\x1a\\x17\\x16\\x1b\\x14\\n\\x02\\x05\\x0e\\r\\x1f*\\x06\\x10 \\x10\\x06*\\x1f\\r\\x0e\\x05\\x02\\n\\x01\\x9f\\x1b\\x0fxP\\x1a\\x16\\x11\\b\\b\\x04\\x02\\x03\\x03\\x02\\x04\\b\\b\\x11\\x16\\x1a5[=\\ny!'\\x13)\\x04\\x06\\x16\\x14\\x06\\v\\x12\\a\\x12\\r\\f\\v\\a\\x16\\f\\x06\\x03\\x03\\x06\\f\\x16\\a\\v\\f\\r\\x12\\a\\x12\\v\\x06\\x14\\x16\\x06\\x04)\\x13&\\x19\\x14\\x11\\x1f@\\x01\\x0e\\x0e\\x02\\x1a\\x16\\x11\\x18\\x01\\x17\\x11\\x03\\x03\\v\\x12\\f\\x18\\x11\\x16\\x1a\\x02\\x0e\\x0e\\x01@\\x1f\\x11L\\x18\\\"\\x18\\x18\\\"\\x10\\x13\\x1c\\x13\\x13\\x1c\\r\\x10\\x16\\x10\\x10\\x163\\n\\x1d\\x04\\x01\\x01\\x04\\x1d\\n\\x02\\x13\\n\\x04\\x01+\\x1f\\x05\\x03\\x03\\x05\\x1f+\\x01\\x04\\n\\x13\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xde\\x01\\xc1\\x01\\xa6\\x00r\\x00\\x00%>\\x027\\x14\\x0e\\x05\\a#.\\x05/\\x01\\x1e\\x01\\x1f\\x01.\\x02>\\x02?\\x01\\x0e\\x01\\x1e\\x01\\x1f\\x01.\\x01>\\x01?\\x01\\x0e\\x01\\x1e\\x01\\x1f\\x01\\x0e\\x01\\x1e\\x03\\x1f\\x0167\\a7'7'\\x17\\x12=\\x01\\x155\\x15\\x14\\x137\\a\\x17\\a\\x17&'\\x17>\\x03&'>\\x03&'\\x1e\\x05\\x06\\a>\\x034'\\x1e\\x03\\x06\\x01\\x8e\\x03\\n\\x1b\\n\\x02\\f\\x11#,F*\\x04*E-\\\"\\x12\\v\\x01\\x02\\v\\x18\\b\\a\\x14\\x17\\x05\\x02\\n\\n\\x04\\x04\\f\\x01\\x11\\x15\\b\\t\\x1d\\n\\x1d&\\x10\\x10\\x1b\\x12\\x0e\\x15\\n\\n\\x11\\v\\t\\x15\\x1b\\x17\\t\\b\\x01\\x01\\\"\\x18??\\x14\\x1f\\b\\b\\x1f\\x14??\\x18\\x1e\\x04\\x02\\x06\\x14,\\x19\\x02\\x18\\x04\\r\\x1b\\n\\x11\\x1b\\x03\\f\\x1e\\x18\\x16\\a\\x10\\x16\\x04\\v\\x19\\x0e\\f\\x03\\t\\x11\\x03\\x17J\\x02\\t(\\x1b\\x04\\r&#+\\x1e\\x16\\x01\\x01\\x15!''!\\n\\n\\x1b'\\x06\\x06\\x195,* \\x19\\x06\\a\\x185)#\\t\\t0[>0\\v\\v\\x1460+\\r\\f!<-'\\x1a\\x13\\x04\\x04\\x11D$0\\t\\t7.\\x01.\\x05\\x03\\x01\\x01\\x03\\x06\\xfe\\xd3.7\\t\\t0 \\x04U\\x03\\v*1P-\\x05\\x101-7\\x14\\x02\\b\\x1b\\x1f13D#\\x03\\r&'5\\x19\\x05\\x1044J\\x00\\x05\\x00\\x1b\\xff\\xbf\\x01\\xa6\\x01\\xc0\\x01{\\x01\\x94\\x01\\xb0\\x01\\xc5\\x01\\xd7\\x00\\x00\\x17&76567<\\x01'45&'&54545&567>\\x01767>\\x01&#0\\x06\\a\\x06\\a\\x06\\x14\\x1e\\x01\\x15\\x14\\x15\\x06\\a\\x14\\a\\x14\\a\\x06'&5&'&7674'&'&\\a\\x06\\a\\x15\\x17\\x16\\x17\\x16\\x15\\x14\\x17\\x16\\x06\\x17\\x16\\x17\\x14\\x17\\x16\\x15\\x14\\a\\x06\\x15\\x14\\x15\\x06\\a\\x06'&676567>\\x0175'&'&/\\x017<\\x015/\\x01.\\x02454'&'\\\"'&'&?\\x01'&'&'414767676\\x16\\x17\\x16\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16367654'45&5&'&'&'&'&'&'&'&/\\x015'7>\\x0132\\x17\\x16\\x14\\a\\x06\\a\\x14\\a\\x06\\x15\\x16\\x17\\x1e\\x01\\a\\x06\\x15\\x17674&'&76\\x172763676\\x17\\x1e\\x01\\x17\\x1e\\x01?\\x0132?\\x01\\x17\\x1e\\x01\\x06\\x17\\x16\\x17\\x16\\x15\\x16\\a\\x06\\x15\\x06\\x15\\x06\\a\\x06#\\\"\\x15\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x0e\\x01\\a\\x06\\x16\\x17\\x16\\a\\x06\\x17\\x16\\a\\x06\\x15\\x14\\x16367>\\x01767676767467676\\x15\\x14\\x15\\x06\\a\\x15\\x1f\\x01\\x15\\x14\\x17\\x15\\a\\x06\\a\\x06\\a\\x06\\x0f\\x02\\x06\\a\\x06\\x15\\x141\\x14\\x17\\x16\\x17\\x1e\\x01\\x14\\a\\x06#\\\"\\a\\x06\\x15\\x06\\a\\x06\\x17\\x16\\x0f\\x01\\x15\\x14\\x17\\x16\\x15\\x06\\x17\\x14\\x1e\\x01\\x1d\\x01\\a\\x0e\\x027&54'&54'&5476\\x15\\x16\\x17\\x16\\x14\\a\\x06\\x15\\x16\\a\\x06'.\\x01'4'4'&54'&436\\x1f\\x01\\x15\\x06\\x15\\x14\\x06\\a\\x06\\x0f\\x010\\x03\\x1e\\x04\\x17\\x16\\x17\\x06\\a\\x06\\x1e\\x017\\x06&'.\\x016\\x17\\x166'&'67\\x1e\\x04\\x17\\x16\\x0e\\x01&\\xe8\\x02\\x01\\x01\\x02\\x02\\x01\\x01\\x02\\x01\\x04\\x01\\x01\\x05\\a\\x02\\x01\\x03\\x01\\x01\\x01\\x01\\x04\\x06\\f\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x02\\x05\\x04\\x01\\x01\\b\\b\\x02\\x03\\x02\\x02\\x01\\x02\\t\\x05\\x04\\x02\\x01\\x01\\x02\\x01\\x01\\x02\\x02\\x01\\x02\\x01\\x02\\x01\\v\\x04\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x02\\x02\\v\\v\\x02\\x02\\x01\\x01\\x04\\x02\\x02\\x02\\x01\\x01\\a\\n\\x0e\\f\\x02\\x02\\x02\\x01\\x02\\x01\\x01\\x04\\x02\\x01\\x03\\x01\\x05\\x06\\x02\\x06\\x01\\x02\\x02\\x01\\x03\\x04\\v\\x02\\x02\\x11\\x06\\b\\x02\\x03\\x03\\x02\\x01\\x02\\x02\\x01\\x04\\x01\\x03\\x02\\x02\\n\\b\\x06\\x01\\x05\\x04\\x01\\x01\\x01\\t\\x03\\x02\\x01\\a\\a\\b\\a\\n\\x02\\x01\\x01\\x01\\x01\\x05\\x02\\x05\\a\\x05\\x01\\x03\\x01\\v\\a\\x02\\x0f\\x01\\x02\\b\\x04\\x05\\x02\\x05\\x04\\x04\\x03\\x03\\x04\\x02\\x03\\x06\\x03\\x03\\x05\\x04\\x05\\n\\v\\x05\\x04\\x03\\x02\\x05\\x02\\x01\\x01\\x01\\x01\\x01\\x03\\a\\x01\\x06\\t\\v\\x05\\x04\\x02\\x02\\x03\\x02\\x01\\x01\\x02\\x01\\x03\\x04\\x06\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x02\\x02\\x02\\x04\\x02\\x02\\x01\\x03\\x02\\x02\\x03\\x01\\x05\\a\\x05\\x05\\x05\\x05\\t\\x06\\t\\x04\\x05\\x01\\x01\\x04\\x05\\x01\\x01\\x04\\x05\\x01\\x06\\f\\x05\\x03\\x01\\x04\\x05\\x02\\a\\a\\x02\\x05\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x03\\x04\\x01\\x01\\x01\\x01\\x01\\x03\\x05\\x10\\x04\\x02\\x04\\x01\\x02\\x01\\x01\\x01\\x02\\a\\a\\x1e\\x01\\x02\\x01\\x02\\x03\\x05\\x05\\x01\\x02\\x04\\x02\\x01\\x01\\x03\\x01I\\x01\\x02\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x02\\t\\x05\\x01\\x01\\x01\\x01\\x01\\x01W\\x05\\t\\x04\\x03\\x04\\x03\\x13\\x04D\\b\\x0e\\x02)!\\nI\\x0f\\x0e\\x02&\\xf9+\\x1e\\x1a\\x1b%\\x05\\x19\\x19&\\x11\\v\\x01\\x01\\x01\\x19#%@\\a\\x12\\x16\\x06\\x14\\x02\\x01\\x1c\\x04\\x05\\x10\\x13\\x05\\x03\\t\\x02\\x02\\x04\\x05\\x17\\n\\a\\x03\\b\\x1f\\x05\\b\\a\\x03\\b\\x05\\x06\\x04\\t\\x04\\x02\\x05\\x01\\t\\x05\\x03\\x03\\x02\\x06\\x04\\x04\\x03\\x02\\x01\\x02\\x02\\x03\\x03\\b\\x0f\\x06\\x03\\x02\\x03\\a\\a\\x04\\x05\\x03\\x04\\x12\\f\\x03\\n\\t\\t\\x0f\\x15\\x04\\x01\\x01\\x04\\x04\\x05\\x05\\x05\\f\\b\\x06\\v8\\x06\\x03\\x12\\x1a\\x02\\x02\\v\\x04\\f\\x1b\\t\\x03\\x0f\\x14\\x10\\x04\\x11\\x11\\x04\\x04\\f\\v\\x02\\x03\\v\\f'\\b\\t\\x04\\x04\\x02\\t\\a\\f\\v\\x01\\x02\\x01\\x0e\\f\\x01\\x03\\a\\x05\\x03\\x02\\x02\\x05\\b\\x01\\x02\\x01\\x04\\a\\x17\\x06\\x03\\x03\\x05\\x06\\f\\x06\\x06\\x04\\x03\\x06\\x04\\x01\\x02\\x10\\x01\\x01\\f\\f\\x01\\x01\\x01\\x03\\t\\t\\x03\\x02\\x02\\x04\\x0f\\x01\\x04\\f\\r\\x04\\x03\\x05\\x01\\x04\\x03\\x01\\x01\\x01\\x05\\a\\x05\\r\\r\\x06\\a\\x04\\x02\\x01\\x06\\x01\\x01\\x02\\x01\\b\\x03\\x03\\x04\\x03\\x03\\x04\\v\\x03\\x01\\x03\\x14\\x06\\x05\\x02\\x02\\x05\\x0e\\x06\\x02\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x02\\x03\\x03\\x02\\x01\\x02\\t\\x06\\x03\\x03\\x03\\x02\\x02\\x05\\x02\\x05\\x04\\x02\\x01\\r\\x04\\x06\\x01\\x02\\x02\\x01\\x03\\x02\\x01\\x01\\x01\\x03\\x02\\x05\\x01\\x01\\x02\\x01\\x01\\x06\\x03\\x06\\x05\\x04\\x05\\x04\\x05\\x04\\x05\\x06\\x05\\x01\\v\\b\\x06\\x03\\x03\\x03\\x03\\x02\\x04\\a\\f\\x16\\x04\\a\\x04\\b\\x03\\x05\\b\\x03\\x05\\x06\\b\\a\\x04\\x04\\t\\b\\x03\\x02\\a\\v\\n\\a\\x01\\x06\\x0e\\b\\x06\\x06\\x02\\x04\\x06\\x01\\x03\\x04\\x02\\x02\\x02\\x02\\x11\\x05\\f\\x15\\x04\\x05\\x05\\v\\x11\\x06\\t\\x0e\\x03\\x06\\x04\\x05\\x10\\x15&\\x06\\x03\\a\\b\\x13\\x13\\x03\\x01\\a\\x04-\\x01\\x0e\\x17\\v\\x04\\r\\x17\\x04\\x05\\x10\\x05\\x04\\x04\\x03\\x03\\a\\x10\\f\\f\\b\\x14 \\t\\x04%\\x05\\v\\x05\\x04\\x03\\x06\\x03\\x10\\x05\\x01\\a\\x04\\x18\\x02\\t\\x06\\x06\\x06\\t\\b\\a\\r\\x1f\\x01\\x01\\x01\\v\\x03\\x06\\x03\\x02\\x02\\x01\\x06\\v9\\x0e\\x1b,\\x17\\a\\x17\\x03\\x19\\x15:L\\x93\\x058'\\x1d'\\x1c\\x19\\x11, %\\f\\a\\x19%\\x0e\\x03\\x00\\x00\\x00\\t\\xff\\xff\\xff\\xc5\\x01\\xf1\\x01\\xb7\\x00\\u007f\\x00\\xd3\\x01\\x1b\\x01^\\x02^\\x02\\x9a\\x02\\xd2\\x03\\x12\\x03K\\x00\\x00\\x13232\\x172\\x17\\x162\\x163\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x170\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x17\\x16\\x15\\x16\\x15\\x14\\x06\\a\\x1c\\x01\\x06\\x15\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06#\\x06#\\\"'\\\"'*\\x01&#&#&'&'&'&'&'&'&'&'4&54&45&547<\\x0165<\\x01656167>\\x01567676767672636212\\x17\\\"\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x14\\a\\x06\\a\\x06\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17:\\x013\\x1672676767676767676767676'4&1&'&'&'&'&'\\\"#'&\\a67\\x0e\\x01\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\x17\\x14\\x17\\x16\\x17\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x14\\x15\\x1c\\x01\\x15\\x1c\\x01\\x15\\x16\\x14\\x15\\x1c\\x01\\x15\\x1c\\x02\\x15\\x14\\x15\\\"#\\\"'&'&'&'&#4.\\x015&'&'&7676767\\x16\\x17\\x16\\x17\\x1e\\x01\\x17\\x16\\x15\\x16\\x17\\x16\\x15\\x14\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\\"'041465<\\x015<\\x015<\\x015456767676767654'&'&'&'0&\\a67\\x06\\a\\x06\\a\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x15\\x1c\\x01\\x15\\x14\\x15\\x14\\x17\\x1e\\x013676745<\\x015<\\x015<\\x01645<\\x015<\\x035<\\x0154545\\x1c\\x011\\x16\\x15\\x14\\x16\\x14\\x15\\x14\\x16\\x14\\x16\\x14\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x1721\\x16747676767636\\x17\\x1632367676?\\x02\\x06\\a0\\a\\x06\\a\\x06\\a\\x06\\a\\x06'&'&'&'\\x16\\x17\\x16\\x17\\x16\\x17\\x163\\x06\\a\\x06\\a\\x06\\a\\\"#\\\"'&'.\\x01'&'676767\\x06\\a\\x06\\a\\x06'&'&'&'&'.\\x01'\\x1e\\x02\\x17\\x16\\x17\\x16\\x172\\x163032327636\\x17\\x16\\x17\\x16\\x17\\x14\\x16\\x17\\x16\\x17\\x16\\x1767676767464567<\\x015<\\x01545<\\x0154'&'&'&'&'\\\"'4767676761\\x14\\x1d\\x01\\x14\\x150#4&'<\\x01'\\\"#*\\x01#\\\"#\\\"#41>\\x0112676345\\\"'.\\x02#4&#41:\\x0136\\x1670254>\\x0172\\x15\\x1e\\x01\\x17\\x14\\x161\\x1663\\x163230\\x15\\\"\\a\\\"\\x15\\\"\\a0\\a\\x06\\x152\\x172\\x16\\x172\\x14\\x150#*\\x01#\\\"#\\x14\\a\\x15\\x0e\\x01\\x14\\a\\\"14=\\x014\\a61\\x06\\a\\x06\\x15\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x17\\x16\\x172\\x163\\x16\\x17\\x16\\x17\\x16\\x17\\x14\\x15\\x06\\a\\x06#\\\"'&'&'&'&'&'&'.\\x0150'&'67<\\x027676%\\x16\\x17\\x16\\x17\\x16\\x170\\x15\\x14\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\a\\x06#&'\\\"/\\x01476767676767676367676747654'&\\xec\\n\\f\\x05\\x06\\x02\\r\\x01\\x03\\x03\\x01\\n\\x0e\\x12\\x12(\\x1f\\x1f\\x12\\x03\\x01\\x04\\x03\\a\\x03\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x06\\f\\x18+\\x1a\\x1f\\v\\b\\t\\x02\\v\\t\\x06\\b\\f\\x04\\b\\f\\f\\b\\x06\\x04\\x01\\x03\\x03\\x01\\v\\x02\\b\\x04\\v\\x0f\\x11\\r\\x05\\x02\\x10\\x105\\x17\\x05\\x03\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x05\\n\\x01\\x03\\f\\x12\\x1e+\\r\\n\\x17\\x1a\\x01\\n\\x01\\x06\\x01\\x02\\b\\x02\\x0e\\f\\x0f\\n\\f\\x15\\x13\\x11\\x0e\\b\\x04\\b\\a\\a+\\x0e\\x03\\x02\\x01\\x01\\x01\\x02\\x03\\x01\\t\\x15\\f\\x12\\x18\\x1f\\r\\t\\v\\x05\\x11\\x11\\x01\\x06\\x02\\x15\\x14\\x01\\n\\x03\\t\\x01\\n\\x03(!\\x18\\x12\\x03\\a\\x05\\x04\\x04\\x03\\t\\x05\\x04\\x02\\x02\\x01\\x01\\x03\\v\\t\\r\\x14\\x1a'/\\v\\r\\x02\\x05\\x04\\vu\\x13\\x19\\x01\\a\\x02\\x11\\r\\v\\x06\\x05\\x02\\x02\\x01\\v\\b\\x0e\\x02\\v\\x02\\x04\\x03\\x04\\x02\\x01\\x02\\x01\\x10\\x10\\n\\a\\t\\a\\t\\a\\x03\\x01\\x02\\x01\\x06\\x02\\x01\\x01\\x01\\x06\\x04\\x04\\n\\x11\\t\\xbb\\x02\\x06\\v\\a\\x15\\x1f\\t\\x04\\n\\x01\\x01\\x04\\x04\\x04\\x06\\x05\\v\\x0f\\x10\\x13\\x05\\x06\\x04\\x02\\x01\\x01\\x03\\x04\\r\\t\\x06\\f\\a\\x04\\x02\\x01\\x04\\x02\\x05\\x06\\b\\x0f\\x14\\x04f\\x02\\x01\\x01\\x01\\x05\\x02\\x02\\x01\\x01\\a\\x04\\x03\\x01\\x05\\a\\x02\\x04\\x02\\x01\\x03\\x02\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x02\\x02\\x02\\x04\\x06\\x02\\x04\\x01\\x01\\x01\\x01\\x05\\b\\x01\\x01\\x02\\x04\\x05\\x04\\x06\\x0e\\a\\x04\\x06\\x05\\r\\f\\t\\x06\\x11\\r\\x02\\x02\\x01\\x03\\x05\\b\\t\\x06\\b\\v\\v\\r\\r\\x04\\a\\x02\\x06\\x04\\x05\\x03\\x05\\b\\x06\\x06\\a\\x01\\x03\\x01\\x03\\r\\x11 \\\"\\a\\a\\v\\x04\\x10\\x11\\x11\\x1b\\v\\x05\\x01\\n\\t\\t\\a\\x03\\x03\\x06\\x05\\x06\\a\\b\\n\\f\\v\\x05\\a\\f\\r\\x04\\a\\x01\\x02\\x01\\x02\\x03\\x03\\x01\\x0f\\x0e\\x0e\\v\\x01\\a\\x01\\b\\t\\a\\x02\\b\\x03\\x04\\x06\\x05\\a\\x05\\x03\\x03\\x02\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\x03\\x03\\x02\\x02\\x03\\x01\\x02\\x01\\x02\\x01\\x02\\x02\\a\\x06\\x06\\x06\\a\\x01\\x04\\x01\\x03\\x04\\x02\\x03\\x06&\\x01\\x01\\x02\\x01\\x01\\x01\\x04\\x02\\n\\x03\\x01\\x01\\x02\\x01\\x01\\x03\\x02\\a\\x02\\x03\\x01\\x01\\x03\\x01\\x04\\x03\\x02\\x04\\x01\\x03\\n\\x02\\x02\\a\\x01\\x01\\x01\\x02\\x06\\x01\\x01\\x01\\x01\\x01\\x01\\x06\\x01\\x06\\t\\x01\\x01\\x01\\x03\\x01\\x03\\t\\x01\\x01\\x02\\x01\\x02\\n\\x03\\x01\\x05\\x02\\v\\x02\\x04\\x01\\x01\\x01\\x01\\x01\\x01\\xba\\x03\\x02\\x01\\x01\\x02\\f\\x06\\x05\\v\\t\\a\\b\\b\\x02\\a\\t\\x01\\b\\x02\\b\\x05\\a\\x03\\x02\\x01\\v\\t\\x05\\b\\x0e\\x10\\a\\x04\\f\\v\\x05\\x03\\r\\t\\x04\\x02\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x05\\x01t\\x01\\x02\\x04\\x02\\f\\x01\\x03\\x02\\x01\\a\\v\\r\\x13\\t\\t\\n\\b\\n\\n\\f\\v\\x01\\x01\\x04\\x01\\x02\\x04\\x03\\x06\\x03\\x05\\x02\\n\\v\\n\\x0f\\f\\x04\\x01\\x06\\x04\\n\\a\\x03\\x01\\x01\\x02\\x01\\x01\\x01\\xb6\\x01\\x01\\x01\\x01\\x02\\x03\\x05\\t\\x12\\x1f\\x1f'\\x06\\x01\\v\\t\\x13\\x13\\x05\\x04\\x06\\x06\\t\\x10\\b\\r\\x04\\x01\\x03\\x03\\x01\\f\\x04\\x1c\\x192#\\x16\\r\\x05\\x03\\x02\\x01\\x03\\x02\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x02\\x02\\x01\\x03\\x05\\a\\a\\x03\\x01\\n\\f,A\\r\\x0e\\x06\\f\\x02\\x05\\x01\\x01\\x04\\x05\\x01\\v\\x12\\x06\\x04\\x02\\x03\\x04\\x01\\x01\\x03\\x03\\x01\\f\\x1a\\x16\\x02\\x06\\x01\\x1a\\x15&\\x19\\a\\x04\\n\\x05\\x01\\x01\\x01\\x01\\x18\\x02\\x01\\x03\\x05\\n\\a\\n\\x06\\x03\\x06\\x06\\x01\\x06-<\\r\\r\\f\\x0f\\f\\t\\b\\r\\f\\x02#\\x1f\\x13\\x11\\x17\\x10\\x06\\x03\\x04\\x01\\x05\\x03\\x02\\x02\\x01\\x01\\x01\\x01\\x02\\x01\\v\\x19\\x12\\x17\\x04\\t\\a\\t\\a\\x06\\x12\\x13\\x11\\x0e\\x12\\x17\\x02\\t\\x1e\\x1a\\x17\\x14\\x1d\\x15\\x1f\\v\\x03\\x02\\x01\\x012\\r\\b\\x01\\x04\\x01\\n\\x0e\\f\\r\\v\\v\\a\\a\\x14\\x13\\x0f\\r\\x01\\t\\x02\\x04\\x03\\x06\\x05\\x02\\a\\x02\\n\\x01\\x02\\a\\x01\\x02\\x04\\x02\\x03\\f\\x02\\x01\\x03\\x03\\x02\\x03\\x02\\a\\x05\\x05\\a\\a\\v\\r\\x06\\x02\\x02\\x03\\x01\\x0e\\x11\\n\\x03\\x18\\x17\\r\\v\\x15\\x11\\t\\x1c\\x01\\x02\\x04\\x04\\n\\x1e\\x13\\b\\x01\\x16\\x19\\x05\\t\\x11\\x11\\r\\t\\v\\b\\x10\\v\\f\\x03\\x01\\x01\\x01\\x06\\x02\\a\\x02\\x04\\x0e\\x03\\x01\\x05\\x01\\x03\\n\\x03\\b\\x01\\x03\\x04\\b\\n\\a\\a\\r\\x0f\\n\\b\\x06\\b\\v\\f\\a\\t\\n\\n\\x0f\\f\\x02:\\x02\\x02\\x02\\x01\\x06\\a\\a\\x03\\x05\\x03\\v\\n\\x05\\x02\\x01\\x02\\x04\\x02\\x03\\x06$\\x94%\\x03\\x01\\x01\\x03\\x03\\x03\\x01\\x02\\x02\\x03\\x01\\x05\\x02\\t\\x02\\x02\\f\\x03\\x02\\a\\x04\\b\\x02\\x02\\r\\x03\\x02\\a\\x04\\b\\x02\\x03\\f\\x03\\x02\\x03\\x04\\x03\\x01\\x04\\x06\\x05\\x01\\x04\\x04\\x01\\x01\\a\\x03\\x05\\x04\\x02\\x13\\b\\b\\x06\\x0e\\t\\x03\\x04\\x01\\x01\\x01\\x02\\n\\r\\x03\\x01\\x02\\x02\\x02\\x01\\x03\\x01\\x01\\x05\\x04\\x04\\n\\x11\\x02\\x03\\x04\\x06\\b\\x10\\f\\a\\a\\v\\x04\\x06\\x02\\x01\\x02\\x01\\x03\\x02\\x04\\x03\\x05\\a\\x04\\x04\\x01\\x01\\x01\\x02\\t\\a\\x0e\\x02\\x01\\x01\\x04\\x05\\f\\a\\x04\\x01\\x01\\x05\\x04\\a\\x03\\x04\\x04\\x02\\x03\\x02\\x02\\x01\\x02\\a\\x04\\x06\\r\\x15\\x06\\r\\x01\\x04\\x01\\x01\\x03\\x03\\x01\\x10\\t\\t\\x02\\x01\\x01\\x01\\x02\\x02\\x03\\a\\x04\\x05\\x01\\x05\\x02\\x03\\x03\\x02\\x01\\x01\\x02\\x03\\n\\v\\t\\a\\x15\\x02\\x04\\x05\\x01\\x19\\a\\x01\\x04\\x01\\x02\\t\\x02\\x04\\x03\\x03\\n\\x02\\b\\f\\v\\a\\n\\v\\t\\x05\\a\\x02\\x01\\x02\\x06\\f\\v\\x05\\a\\n\\x06\\x01\\x01\\x05&\\x04\\x01\\x02\\b\\x01\\x01\\x03\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x05\\x05\\x03\\x01\\x01\\b\\x02\\x01\\x03\\x01\\x01\\x01\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x01\\x03\\x01\\x01\\x01\\x01\\x02\\x02\\x02\\x04\\x04\\x01\\x01\\x04&\\x05,\\x06\\n\\r\\n\\r \\x1a\\n\\a\\x0e\\a\\a\\x04\\x04\\x01\\x02\\x03\\x02\\x03\\x06\\a\\v\\x03\\x06\\x02\\x01\\x04\\x02\\x01\\x05\\x03\\x02\\x06\\b\\x05\\x03\\x0e\\x14\\n\\a\\b\\x04\\x02\\x06\\x01\\x06\\b\\t\\f\\x06\\x01\\x04\\x03\\x01\\n\\a\\x10\\x18\\x01\\x04\\n\\x04\\x1d\\x1e\\x05\\f\\x10\\a\\x04\\x18\\x12\\x14\\v\\x06\\x03\\x04\\x02\\x01\\x01\\x04\\x01\\x01\\x01\\x04\\t\\a\\b\\x04\\x03\\x02\\x01\\x02\\x03\\x04\\a\\f\\x05\\a\\x05\\x0e\\x13\\v\\x05\\x02\\a\\v\\a\\r\\a\\r\\x00\\x02\\x00\\x00\\xff\\xc5\\x02\\x01\\x01\\xba\\x00j\\x00p\\x00\\x00\\x136\\x176\\x17&\\a\\x06\\a67676\\x17\\x06\\a\\x06\\a\\x06\\a\\x06\\x17\\x16327676765&\\a\\x06\\a\\x06'\\x167>\\x0476767\\x06\\a\\x06\\a\\x06\\a\\x0e\\x01\\a\\x06\\x17\\x16\\x17\\x167676'4&45\\x16\\x17\\x16\\a\\x0e\\x01\\a>\\x017654'\\x16\\x17\\x14\\x15\\x06\\a\\x06\\a\\x06&'.\\x01'&'5>\\x01\\x056767\\x06`I\\\\*,(!B.\\x04\\f\\x1d\\x1c\\x17%$\\a6!\\x17\\x01\\x01\\x15\\f\\x0f\\x05\\x05\\x15\\x17\\x14\\f\\x02\\x05\\x01\\x11\\x13#\\x1b\\x15\\x11\\x06\\v\\f\\t\\f\\x04*/1!-\\x02\\x11\\x17\\x01\\r\\x0e\\x1e\\b\\x0f\\x04\\x03\\x12\\x11\\x1a0!\\x1f\\x02\\x01\\x0e\\x02\\x03\\x04\\x01\\x06\\x01\\r\\x17\\x03\\x02\\x10\\x1e\\x06\\x05\\x19(M;\\x867\\x195\\x0e\\x16\\x03\\x033\\x01\\b\\b\\b\\t\\x01\\x12\\x01\\x819\\x03\\x01\\x10\\b\\x06\\b3\\x01\\x05\\r\\x02\\x02\\x04\\a\\x03\\x11-!\\\" \\f\\b\\x01\\x03\\r\\f\\f\\x02\\v\\x01\\x01\\n\\x05\\v\\n\\x03\\b\\x03\\a\\b\\b\\n\\x03 \\x17\\x17\\x01'\\x02\\x10\\x1d\\x02\\b\\n#\\x0f!\\x1f\\x19\\n\\v\\x06\\v-*6\\x03\\t\\a\\x04$\\x19\\x12\\x19\\x06\\x15\\x06\\x0f/\\x13\\x0f\\x0e($/<\\x13\\x144-I#\\x1c\\b\\\"\\x0f:\\x1a,1\\x1f4^0\\x02\\x03\\x03\\b\\n\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00!\\x00)\\x001\\x00\\x00\\x11\\x17'\\x1762\\x177\\a7\\a7\\a\\x16\\a\\x17'\\x17'\\x17'\\x06'\\a7\\a7\\a7&47'\\x176\\\"\\x06\\x14\\x16264&2\\x16\\x14\\x06\\\"&4w\\f[\\r\\x1a\\r[\\fwF;F\\x05\\x05F;Fw\\f[\\x1a\\x1a[\\fwF;F\\x03\\x03F;\\xcdgHIfI\\xa0H44H4\\x01\\xa0F;F\\x03\\x03F;Fw\\f[\\x1a\\x1a[\\fwF;F\\x05\\x05F;Fw\\f[\\r\\x1a\\r[\\f\\x13HgIIf%4H44H\\x00\\x00\\x00\\r\\x00\\x00\\xff\\xc7\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00+\\x005\\x00?\\x00I\\x00S\\x00[\\x00i\\x00q\\x00\\x85\\x00\\x8f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%#\\x153\\x15#\\x15#5#'353\\a#535#\\x15#\\x173\\x15353'7\\a\\x17'\\a7'7'\\a\\x17'\\a7'7'\\x177\\x17\\a\\x17'\\a7'7'\\x177\\a\\x17'\\a7'7'\\x17&2\\x16\\x14\\x06\\\"&4\\x05#535#\\x15#\\x173\\x15353'\\\"\\x06\\a353&\\x022654'\\x15#\\x153\\x15#\\x15#5#'\\x06\\x15\\x14?\\x01\\a\\x17'\\a7'7'\\x91Α\\x91Α\\x97\\u008a\\x8a\\u008a\\x01\\x86\\x92TT0v%\\x9b\\xc2IS\\x91\\xac\\x90\\x14|\\x1bS\\xa2\\x16\\x0f\\x0f\\x16\\f\\x02\\x17\\x17\\x02\\x11\\t\\r\\a\\x01\\x0e\\x0e\\x01\\b\\f\\x9c\\t\\t\\r\\a\\x01\\x0e\\x0e\\x01\\ax\\x0f\\x0f\\x15\\v\\x01\\x16\\x16\\x02\\f켅\\x85\\xbc\\x85\\x01BT\\x92Ɲ(u4T_Fp\\x15\\x9d\\xc8?\\xb3\\xb0}1\\x92TT@s,\\t\\x91\\x17\\x11\\x0f\\x15\\r\\x04\\x18\\x18\\x02\\x01\\xb7\\x91Α\\x91\\xce\\xfe\\xae\\x8a\\u008a\\x8a¿#/\\xc4\\xc5.R\\\\8\\x18P\\x18\\xc6\\xc6]\\t\\x12\\x12\\t\\x14\\x18\\x05\\x06\\x18\\x02\\n\\x06\\r\\x0f\\x03\\x04\\r\\f\\x06\\x9d\\v\\n\\x05\\f\\x0e\\x03\\x04\\x0e\\fR\\x11\\x11\\t\\x14\\x17\\x05\\x05\\x17\\x14\\xa7\\x85\\xbc\\x85\\x85\\xbc!\\x1f3R2\\xc5\\xc4\\xccRARA\\xfeU}XM<3\\x13?\\xc4\\xc58\\x1d XF\\t\\x11\\x13\\v\\x15\\x18\\x06\\x04\\x18\\x00\\v\\x00\\x1c\\xff\\xc0\\x01\\xe5\\x01\\xc0\\x00\\x96\\x00\\x9b\\x00\\xa1\\x00\\xa6\\x00\\xac\\x00\\xb2\\x00\\xb7\\x00\\xbd\\x00\\xc2\\x00\\xc8\\x00\\xce\\x00\\x00\\x05\\a'\\a'\\a\\x15.\\x04'4.\\x04'6'\\x0e\\x01\\a\\x17\\x06\\x177\\x177\\x177\\a'\\a'\\a4&467\\a&7\\a467>\\x01'.\\x01'\\x1e\\x01\\x06\\a.\\x0167\\x16\\x1f\\x02'\\a\\x1f\\x017\\x1f\\x01\\a\\x177'?\\x01\\x17?\\x01'\\a?\\x0167\\x1e\\x01\\x06\\a.\\x0167\\x0e\\x01\\a\\x06\\x16\\x17\\x1e\\x02\\x15'\\x16\\a'\\x1e\\x01\\x14\\x06\\x15'\\a'\\a'\\x177\\x177\\x176'7.\\x01'\\x06\\x17\\x0e\\x05\\a\\x0e\\x04\\a5'\\a7'67\\x067\\x06\\a&'67'67\\x167\\x16\\x17&'6'\\x16\\x17\\x06\\a4\\a&'\\x16\\x17'\\x16\\x17\\x06\\a&'47\\x16\\x17'\\x16\\x17\\x06\\a67\\x06\\x15&'6\\x01\\f\\f\\v\\v\\x05\\x05\\x06\\t\\x05\\x02\\x03\\x01\\x03\\x03\\v\\x0f\\x1e\\x13\\x0f\\r\\x19\\x1f\\a\\x1e\\x12\\x05\\x1c\\x06\\x12\\t\\x13\\x1a\\t\\x19\\a\\x1a\\x02\\x05\\x06\\x1a\\x04\\v\\x16'\\x17\\x11'\\x02\\x02\\x17\\x12\\x14\\x01\\x11\\n\\x03\\x06\\x01\\bY\\x05:\\x03k\\a\\x11,\\x10\\x1c\\x04\\x15 !\\x15\\x03\\x1c\\x10,\\x12\\al\\x04:\\x04Y\\b\\x01\\x06\\x03\\n\\x11\\x02\\x14\\x12\\x18\\x01\\x02'\\x11\\x0f\\x1d\\x11\\x16\\f\\x04\\x1a\\x05\\x05\\x02\\x1a\\a\\x19\\b\\x1b\\x14\\b\\x13\\x06\\x1b\\x05\\x12\\x1e\\x06\\x1f\\x1a\\f\\x0f\\x14\\x1d\\x10\\n\\x03\\x03\\x01\\x01\\x02\\x03\\x05\\b\\x06\\x05\\x06E\\x10\\n\\t\\x01\\x1a\\x01\\x01\\x0f\\x06\\b(\\x18\\n\\b\\x06\\x03\\x1a\\x04\\x19\\f\\a\\x02!\\r'\\x05\\xed\\x02\\x02\\t\\v,\\x0e\\b\\x05\\x10\\x01\\x19\\x05\\b\\v\\x1c\\x01\\x06\\v\\x1a\\x04\\x1c\\x02\\x05'\\x0e\\x18\\x15\\x15\\x0f\\f\\a\\x1e\\x02\\x10\\x17\\x16\\x1c\\x06\\x03\\x1e\\x10 \\x18\\x1f\\r((\\x03\\x15\\x1e\\b&\\\"\\a\\\"\\a!\\a\\x15\\x1c\\x05#\\x0e\\x03\\x1c\\x12\\x1a\\t\\x05\\x14%\\n\\x14%\\x02\\x01 \\x13\\x0f\\x1d\\x05\\x10\\\"\\x13\\x04\\b!=\\x1c2b']<\\a\\x04&\\x051x\\x10\\x10\\x10\\x10x1\\x05&\\x04\\a<]'b2\\x1c=!\\b\\x04\\x13\\\"\\x10\\x05\\x1d\\x0f\\x13 \\x01\\x01\\x13\\x1a\\r\\n%\\x14\\x05\\t\\x1a\\x12\\x1c\\x03\\x0e#\\x05\\x1c\\x15\\a!\\a\\\"\\a\\\"&\\b\\x1e\\x15\\x03((\\r\\x1f\\x18 \\x10\\x1e\\x03\\x06\\x1d\\x15\\x18\\x0f\\x02\\x1e\\a\\fn\\v\\x06\\x06\\x11,\\x14\\f\\x04\\x03\\b\\v\\a\\r\\x0e\\x0f>\\x11'\\t\\x02\\x0fL\\x04\\x18\\f\\x02\\n\\x8b\\x06\\x11\\x06\\x06'\\x11\\b\\x03\\x04\\f\\x0e\\x13\\x0f\\x0e\\rJ\\x1e\\x0f\\x01\\n'? \\n\\x02\\f\\x18\\x00\\x00\\x00\\x00\\x04\\x00\\x01\\xff\\xbf\\x01\\xff\\x01\\xc1\\x00#\\x00M\\x00q\\x00\\x93\\x00\\x007\\x16\\x15\\x14\\x06\\\"&4632\\x17.\\x014>\\x04?\\x01\\a\\x0e\\x01\\x1e\\x01\\x17\\x1e\\x013:\\x011\\x15\\x06\\x13>\\x01\\x1e\\x01\\x1f\\x01'.\\x01\\x0e\\x03\\a\\x0e\\x01\\x150\\x14\\x15#&7\\\"#\\\"&54>\\x0432\\x16\\x17\\x16\\x15\\x14\\x05\\x06#\\\"#\\x1e\\x01\\x0e\\x01\\x0f\\x017>\\x01.\\x02'.\\x01#\\\"\\a56\\x17&5462\\x16\\x15\\x14\\x0e\\x01\\x0312\\x16\\x14\\x06#\\\".\\x01'&5\\x0e\\x01.\\x01/\\x01\\x17\\x1e\\x01>\\x027>\\x015<\\x0113\\x16L\\x01\\x16 \\x16\\x16\\x10\\x03\\x02\\f\\r\\b\\x0e\\x10\\x11\\x0e\\x04\\x04\\b\\x18\\b\\x19\\x1d\\x12\\x0eM)\\x01\\x04u$\\x1f=,#\\b\\t[\\v\\x12\\x0f\\f\\n\\x06\\x02$4\\x16\\x016\\x02\\x01\\x10\\x16\\x03\\x04\\a\\t\\n\\x05\\n\\x14\\x04\\x04\\x010\\b\\b\\x02\\x02\\x18\\a\\x17\\x1e\\r\\x0e\\t\\x13\\f\\t\\x17\\x18\\x0e\\x0eM'\\x01\\bpH\\x01\\x17\\x1f\\x16\\x06\\nx\\x10\\x16\\x16\\x10\\x06\\x0e\\v\\x03\\x03 >-$\\b\\t[\\f\\x15\\x0f\\x0e\\a\\x04%6\\x13\\x02N\\x03\\x02\\x10\\x16\\x16\\x1f\\x17\\x01\\x12$\\x1e\\x1e\\x17\\x15\\x10\\v\\x03\\x03\\\\\\x0e\\x1a\\x11\\v\\x04&6\\x13\\x02\\x01}\\x15\\x04\\x18\\x1d\\r\\r\\t\\x10\\x0e\\x05\\x0e\\x18\\x14\\f\\x0eM'\\x02\\x01wG\\x16\\x10\\x05\\n\\b\\a\\x05\\x03\\r\\b\\b\\t\\x02\\x89\\x03 ?.$\\t\\t[\\f\\x15\\x0f\\x0e\\b\\x03%4\\x01\\x17\\x011\\x03\\x02\\x10\\x16\\x16\\x10\\x06\\x0e\\v\\xfe\\xfa\\x17\\x1f\\x16\\x06\\n\\x05\\a\\a\\x16\\x06\\x17\\x1e\\r\\r\\b\\x13\\f\\t\\x18\\x18\\x0e\\x0eM(\\x01\\x05m\\x00\\x00\\x00\\x00\\v\\x00\\v\\xff\\xdf\\x01\\xb4\\x01\\xa3\\x00\\f\\x00\\x1d\\x00+\\x003\\x009\\x00^\\x00\\x90\\x00\\x9a\\x00\\xb0\\x01\\n\\x01)\\x00\\x00%&'&76\\x1e\\x01\\x17\\x16\\a&\\\"\\a&#\\x0e\\x02'47632\\x17\\x1e\\x02\\x06\\a2\\x1e\\x01\\x06'\\\"#\\\"\\a\\x06'&6\\x17\\x06\\\"&76\\x1e\\x0162\\x16\\x06\\\"&\\a3\\x16\\x141\\x0e\\x01&'46&'&#\\\"\\a\\x0e\\x03#\\\".\\x014>\\x0276\\x16\\x17\\x16\\x06\\x17\\x16%2\\x16\\x15\\x14\\a\\x0e\\x02.\\x02'\\\"&'4547'&>\\x05\\x170\\x1e\\x01176\\x16\\x15\\x14\\a\\x1e\\x03\\x14\\x15\\x16\\x17\\x16\\a\\x16\\x0526'.\\x01\\x06\\x17\\x1e\\x01'67>\\x05?\\x01&'&\\x0e\\x01\\a\\x06\\x17\\x16\\x176\\x05\\x17\\x06'\\x16\\x17\\x166720\\x15\\x0e\\x01'&6\\x17\\x1676'&'&'&'&'4'&'&#\\\"\\a\\\"\\a\\x06#.\\x01#'\\\"\\x06\\a\\x06\\x1e\\x02\\x17\\x16\\x15\\x14\\a\\x0e\\x01\\x17\\x16\\x17\\x1e\\x0176767676.\\x01\\a&'\\x06\\a\\x0e\\x01&\\x06\\a\\x1e\\x0227'5\\x15\\x143>\\x022\\x17241&#\\\"15674#\\x06\\a\\\"1675#\\x06\\x01K\\x04\\x02\\x04\\b\\x03\\x04\\x03\\x01\\x03\\x03\\x02\\x058\\t\\b\\x05\\r\\x03\\x02\\x06\\b\\n\\x06\\x06\\x04\\a\\x02\\x02\\x10\\x05\\b\\x03\\x01\\x04\\x03\\x03\\a\\x06\\x04\\x01\\x02\\b=\\x02\\b\\x06\\x02\\x02\\b\\x06\\n\\b\\x02\\x03\\a\\x03\\xd4\\x03\\x01\\x02\\n\\t\\x01\\x04\\x01\\x05\\x03\\x04\\a\\x04\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x02\\x03\\x02\\x04\\x18\\a\\x04\\n\\x03\\x02\\x012\\x06\\n\\t\\r3=E>4\\x0e\\x18)\\x03\\x05\\x0f\\x0e\\x01\\x1a(22,\\x0e\\f\\v\\r,?\\\"\\b\\t\\x04\\x01 \\t\\x13\\x10\\x04\\xfe\\xc7\\x15\\x11\\x04\\x05,&\\x03\\x02\\x1e\\x01 >\\a\\x0e\\r\\f\\t\\a\\x02\\x02\\x12\\x06\\x108<\\x171\\x10\\x02\\x0e\\r\\x01\\x06\\x01\\x1c+\\x01\\x0f\\x17J\\x1f\\x01\\x16q\\x11\\t\\x0e\\x0f9,'\\x03\\x01\\x04\\a\\x13\\b\\x02\\t\\x01\\x01\\x01\\v\\x04\\x05\\x02\\x02\\x06\\b\\x0f\\x13\\x04\\x0f\\x04\\x05\\x0f\\x1b\\x02\\x02\\x06\\b\\r\\x01\\x02\\x02\\x0f\\n\\x06\\x01\\x02\\x0eH(\\v\\n\\x11\\x0e\\x15\\x05\\x01\\x05\\x05\\x03\\x02\\x05\\x15\\x1e\\x17(\\x13\\f\\x02\\t\\x15\\x11\\x0e\\x04\\x94\\x01\\a\\x13((\\x1d\\x01\\x13\\x16\\x01\\x03\\x05\\x01\\x1a\\x17\\x01\\x01\\x04\\x01\\x1d\\xcc\\x06\\t\\x12\\x01\\x01\\x04\\a\\x06\\v\\a\\x01\\t\\x04\\x01\\x03\\x01\\x01\\x03\\x04\\x06\\x02\\x02\\x05\\x05\\x02\\x02\\x02\\x04\\x02\\x01\\x02\\x02\\x01\\x03\\x06\\x10\\x03\\x06\\x04\\x03\\x01\\x06\\x11\\b\\b\\bG\\x01\\x01\\x04\\x02\\a\\b\\x03\\r\\t\\x03\\x02\\x05\\x02\\x05\\x03\\x02\\x02\\x03\\x03\\x05\\x04\\x05\\x02\\a\\x01\\f\\b\\x18\\x03\\x04\\x12\\r\\f\\x13\\x17 -\\x15\\x01\\x15/ #\\x19\\x04\\x04\\r\\r\\f\\f,37,!\\x06\\f\\v\\v\\x05\\x12\\x0f\\x1e\\x1e#\\a\\x14\\x14\\x12\\x10\\x02\\t\\n\\x14\\x17\\v:\\\"\\x18\\x1e\\x11\\x1e\\x1d\\x12\\x1bqT1\\x05\\v\\t\\b\\x06\\x04\\x01\\x01\\x16\\x01\\x05\\x1b6!F\\x1e\\x04\\v\\x13a\\x02\\r\\x0e\\v\\x06\\n\\x0f\\x15\\x01\\x1f\\x10\\x19\\x0e\\x1e\\x02\\a\\x14\\x12\\x14\\x06\\x04\\a\\x05\\x02\\x01\\x03\\v\\v\\x11\\x1b\\a\\x03\\x01\\a\\f\\x01\\x01\\x01\\x17\\x11\\f\\x15\\f\\x0e\\x02\\x02\\x03\\x02\\x02\\x10-\\x14\\x05\\x05\\x1f\\x19\\r\\x04\\x05\\t\\x0e\\x16\\x1d\\t\\t\\x01\\x01\\r\\f\\x11\\t\\x06\\x03\\x04\\x02\\a\\x03\\x04\\x01\\x01\\xc1\\x01\\x01\\x01\\x05\\n\\x10\\x04\\x02\\v\\x01\\x04\\x04\\x01\\x02\\x0f\\x06\\a\\x01\\x0f\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x05\\x00\\r\\x00'\\x00\\x00?\\x01\\x17\\x15\\a'\\x022\\x16\\x14\\x06\\\"&4\\x015'5'5'\\a\\x15\\a\\x15\\a\\x15\\x17757\\x17\\x15\\x17757\\x17\\x15\\x17\\xd6\\\"!!\\\"EΑ\\x91Α\\x01\\x89;<\\x1a\\x1a<;\\x1a\\x1a!\\\"\\x1a\\x1a\\\"!\\x1a\\xee\\\"\\\"B!!\\x01\\f\\x91Α\\x91\\xce\\xfe\\xf3W;X<K\\x13\\x13K<X;W\\x14\\x14A!!A\\x14\\x14A!!A\\x14\\x00\\x00\\x00\\x04\\x00\\x0e\\xff\\xc0\\x01r\\x01\\xc0\\x00\\a\\x00\\x12\\x00!\\x00,\\x00\\x0062\\x16\\x14\\x06\\\"&4\\x06462\\x16\\x15\\x14\\x0e\\x01#\\\"72\\x1e\\x02\\x15\\x14\\x06\\\"&5\\x11\\x17>\\x01\\x132>\\x0154&\\\"\\x06\\x14\\x16\\xeb\\x17\\x10\\x10\\x17\\x10j\\x10\\x17\\x0f\\a\\f\\b\\v?$B/\\x1di\\x93h-\\x15P $=#MnNN\\x95\\x10\\x17\\x0f\\x0f\\x17\\x17\\x17\\x10\\x10\\v\\b\\f\\a\\xc2\\x1c/B#JggJ\\x01O\\xe3!#\\xfe\\xcc#=$6MMmM\\x00\\x00\\x02\\x00\\x13\\xff\\xe0\\x01\\xae\\x01\\xa0\\x00\\n\\x00(\\x00\\x00%\\x14\\x0e\\x01#\\\"&462\\x16\\x17\\x15#.\\x0154675\\x17\\a5\\x0e\\x01\\x15\\x14\\x1e\\x012>\\x0154.\\x01'7\\x1e\\x01\\x01\\\"\\x12\\x1e\\x12\\x1b&&6'\\x8b\\xd2SuoPmm<S*IUH*\\x13!\\x14.\\x1e+\\xad\\x12\\x1e\\x11&6''\\x16\\xd2\\x02xSQv\\x06&??(\\x06Z=*I**I*\\x174,\\r\\x1a\\x18Z\\x00\\x02\\x00\\b\\xff\\xc7\\x01\\xf9\\x01\\xb8\\x00\\\"\\x00;\\x00\\x00\\x05\\x0e\\x01#0#\\\"&4632\\x16\\x17\\x16\\x15\\x14#&#0#\\\"\\x06\\x15\\x14\\x1e\\x03\\x17\\x16\\x17\\x16\\x147\\x16\\x15\\x14\\a\\x06#\\\"'&'.\\x055&7632\\x17\\x16\\x01\\x94\\x1cV!\\x01g\\x91\\x91g(`\\x1e\\x01\\x04\\x1c\\x1c\\x01dz\\x16\\x1d7%\\\"A\\x16\\x01b\\x01\\x11\\x01\\x02\\x01\\x01\\x1d@\\x14\\x13 \\x10\\x12\\a\\x01&\\x12\\x19HI\\x01\\a\\x15\\x1c\\x91Α%\\x1b\\x01\\x01\\x04\\x04QJ 4!!\\x10\\r\\x19\\x11\\x01\\x03\\xdd\\v\\f/+\\x03\\x01\\x10\\x18\\a\\b\\x0e\\v\\x10\\x12\\n\\\"\\r\\a=\\x01\\x00\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xf4\\x02\\x01\\x01\\x8c\\x00\\x15\\x00'\\x00=\\x00O\\x00\\x00?\\x0162\\x16\\x14\\x0f\\x01\\x06\\\"'764&\\\"\\x0f\\x01\\x06\\\"&46\\x16\\x14\\x0f\\x01\\x06\\\"'&462\\x17\\x162?\\x016\\a\\x06\\\"&4?\\x0162\\x17\\a\\x06\\x14\\x162?\\x0162\\x16\\x14\\a\\x06&4?\\x0162\\x17\\x16\\x14\\x06\\\"'&\\\"\\x0f\\x01\\x06\\xba\\x9d\\x1dR:\\x1dw\\x0f)\\x0e\\x9a\\x0f\\x1d)\\x0f\\x9d\\a\\x15\\x0e\\xf4\\x0f\\a\\x9e\\x1cR\\x1d\\b\\x0f\\x14\\b\\x0e)\\x0f\\x9d\\a\\xea\\x1dR:\\x1dw\\x0f)\\x0e\\x9a\\x0f\\x1d)\\x0f\\x9d\\a\\x15\\x0e\\a\\xed\\x0f\\a\\x9e\\x1cR\\x1d\\a\\x0e\\x14\\b\\x0e)\\x0f\\x9d\\ai\\x9d\\x1d:R\\x1dw\\x0f\\x0f\\x9a\\x0f(\\x1d\\x0e\\x9d\\b\\x0f\\x14x\\x0f\\x14\\a\\x9e\\x1d\\x1d\\b\\x14\\x0f\\b\\x0e\\x0e\\x9d\\b_\\x1d:R\\x1dw\\x0f\\x0f\\x9a\\x0f(\\x1d\\x0e\\x9d\\a\\x0e\\x14\\bp\\x0f\\x14\\a\\x9e\\x1d\\x1d\\b\\x14\\x0f\\b\\x0e\\x0e\\x9d\\b\\x00\\a\\x00\\x00\\xff\\xbd\\x01\\xc0\\x01\\xc2\\x00\\x15\\x00 \\x00/\\x006\\x00=\\x00F\\x00L\\x00\\x00\\x136\\x1f\\x01\\x1e\\x02\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01.\\x01=\\x01467\\x17*\\x01#\\x1535326&\\x17'>\\x01&'*\\x01#\\x15353\\x173'2\\x16\\x06+\\x015'2\\x16\\x06+\\x0157\\\"\\x0e\\x01\\x16326&\\x062\\x16\\x06\\\"&\\xcb\\x12\\x12\\xbf\\x05\\b\\x05\\x12\\xbf\\x12\\x12\\xb9\\b\\n\\n\\bl\\b \\b\\x13\\x1d\\x17\\x13\\x13u\\x1f\\x12\\f\\x13\\x16\\b \\b\\x13\\x12\\x1e\\x17*\\v\\t\\t\\v\\x1dC\\n\\t\\t\\n \\xe1\\x18\\x1c\\x01\\x1c\\x19!\\x1b\\x1b6*\\x11\\x11*\\x11\\x01\\xb8\\n\\nl\\x03\\n\\f\\x06\\xd9\\x15\\nm\\n\\nm\\x04\\x12\\t\\xd9\\t\\x12\\x04\\\\f\\x1e$$e#\\x04 \\x1d\\x01f\\\"\\\"T\\x10\\x11!\\x01\\x13\\x13&\\x13!(!55\\x12#$$\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x02\\x01\\x01\\u007f\\x00.\\x00S\\x00\\x00\\x012\\x16\\x15\\x14\\x06\\a\\x0e\\x02\\a\\x06#\\\"'\\x06#\\\"'.\\a4&54632\\x16\\x17>\\x0232\\x1e\\x02\\x17>\\x01\\x17654.\\x01#\\\"\\x0f\\x01#'&\\\"\\x0f\\x01#'&#\\\"\\x06\\x15\\x14\\x1f\\x01\\x1632?\\x013\\x17\\x16327\\x01\\xa9&1\\n\\x1d\\a\\t\\x0f\\a\\x1aC=\\x19\\x19=C\\x1a\\t\\x15\\f\\r\\a\\a\\x03\\x04\\x013%\\x1e-\\b\\t$\\x1b\\r\\n\\x14\\x1a\\x17\\x06\\b.8\\b\\n\\x11\\v\\x1d\\a,\\x01-\\n:\\n-\\x01,\\a\\x1d\\x10\\x16\\bA\\x0e !\\v'\\x01(\\n\\\" \\x0e\\x01~/$\\r N\\x13\\x17+\\x13F66E\\x1b7\\\"#\\x14\\x15\\v\\v\\b\\a\\x05 -#\\x1d\\x1a\\x1f\\a\\x04\\f\\x1c\\x14\\x1d#s\\x18\\x04\\v\\x10\\b\\x1d\\x8c\\x89  \\x89\\x8c\\x1d\\x11\\f\\r\\x16\\xaf%\\\"uu\\\"%\\x00\\x00\\x04\\x00\\x00\\x00?\\x02\\x80\\x01B\\x00\\x12\\x00:\\x00U\\x00q\\x00\\x00\\x010\\x15\\x14\\x0e\\x01\\a\\x0e\\x01\\x0f\\x01467>\\x0223\\a>\\x01\\x17\\a\\x06'.\\x01'.\\x02'&\\\"\\a\\x0e\\x02\\a\\x0e\\x01\\a\\x0e\\x01+\\x01'6\\x16\\x1f\\x017>\\x012\\x16\\x1f\\x017\\x1d\\x01\\x14\\x06\\a\\x0e\\x01'#5<\\x03>\\x037>\\x027>\\x017\\x1f\\x01\\x06'&'&\\a\\x06\\a\\x0e\\x01#'7'6\\x17\\x16\\x17\\x16767>\\x01\\x1f\\x01\\x01\\x89\\x01\\x0e\\r\\x05\\b\\x01\\x02\\a\\n\\x03\\a\\a\\a\\x02r\\x04 \\x13B\\x15\\v\\f\\f\\x06\\x03\\x0f\\f\\x01\\x03\\t\\x03\\x01\\f\\x0f\\x03\\x06\\f\\f\\x05\\x10\\x06\\x05B\\x13 \\x04#\\x1c\\x06\\x16)\\x16\\x06\\x1c\\x96\\x06\\v\\x05\\r\\x05\\x04\\x01\\x02\\x03\\x04\\x03\\x02\\a\\x06\\x03\\x04\\a\\x01\\xa5S$\\x12\\v*\\x06\\a+\\t\\b\\x1b\\n\\tSS#\\x11\\v+\\a\\x06,\\v\\a\\x1a\\n\\t\\x01<\\x02\\t\\v\\x11\\x05\\x01\\x05\\x02\\x01\\x17\\x15\\x05\\x01\\x02\\x01#\\x13\\x12\\x02\\xf8\\x01\\x05\\x06\\x11\\x18\\f=1\\x02\\v\\v\\x021>\\v\\x18\\x11\\x06\\x02\\x02\\xf8\\x02\\x12\\x13\\x85m\\x19\\x17\\x17\\x19m\\x80\\t\\x97\\x16\\x11\\x05\\x03\\x02\\x01\\x98\\x02\\n\\x03\\a\\x02\\x05\\x02\\x03\\x01\\x01\\x04\\x02\\x02\\x02\\x06\\x02S{\\x04\\x0f\\n=\\n\\n>\\t\\a\\x05\\x01{|\\x06\\x10\\t?\\n\\n?\\t\\a\\x05\\x01\\x01\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x056&'&\\x06\\a\\x0e\\x01\\\"&'.\\x01\\a\\x0e\\x01\\x17\\x1e\\x0126\\x91Α\\x91Α\\x01\\x88\\x02\\x06\\x06\\x06\\n\\x01\\vARA\\v\\x01\\n\\x06\\x05\\x06\\x01\\rPfP\\x01\\xb8\\x91Α\\x91Ό\\x05\\v\\x01\\x02\\x06\\x06'33'\\x06\\x05\\x01\\x01\\n\\x061??\\x00\\x00\\x00\\x02\\x00\\x17\\xff\\xc0\\x01\\xe9\\x01\\xc0\\x00\\x11\\x00L\\x00\\x00\\x01\\x16\\x14\\x0e\\x01#\\\".\\x01'&4>\\x0132\\x1e\\x01\\x0226'&#4&<\\x0174#\\\"#\\\"\\x15\\x16\\x15#6=\\x01276&#\\\"\\x0e\\x051\\x163\\x15\\x16\\a\\x143:\\x01325&53\\x14\\x16\\x15\\x06\\x15\\\"\\a\\x06\\x01\\xde\\n\\x15\\xbd\\x16\\x0ega\\a\\v\\x16\\xbc\\x16\\x0egb\\x9e\\x06%\\x02\\x02\\x10\\x01\\x02\\x05\\r\\x14\\x04\\x01P\\x02\\x10\\x01\\x02%\\x03\\x01\\x05\\b\\b\\b\\x06\\x03\\x02\\x10\\x02\\x02\\x05\\x06\\x15\\x04\\x06\\x02P\\x01\\x01\\x11\\x01\\x02\\x01@\\x13\\xda&m5?\\f\\x13\\xda&m5?\\xfe\\xd6$\\x02\\x02\\b\\x18\\x1bVB\\x05\\x05%/i\\x01\\x03\\x02\\x02$\\x04\\x06\\b\\b\\a\\x05\\x02\\x03ta\\x06\\x06\\x1b-\\x01\\x03\\x010'\\x02\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x0e\\xff\\xbf\\x012\\x01\\xc0\\x00\\x1d\\x00\\x00\\x05\\x17\\x06+\\x01\\\"/\\x01\\a\\x15\\x14+\\x01\\\"5\\x114;\\x012\\x15\\x1176;\\x012\\x16\\x0f\\x01\\x010\\x02\\x01\\x05C\\x06\\x05n\\x1f\\b3\\b\\b3\\b\\x84\\x05\\x06E\\x05\\x03\\x03\\x8c6\\a\\x03\\x05\\x8d\\x1el\\b\\b\\x01\\xf0\\b\\b\\xfeΆ\\x06\\t\\x02\\x87\\x00\\x03\\x00\\x00\\xff\\xfb\\x02\\x81\\x01\\x85\\x00\\x0f\\x00\\x1b\\x00\\\"\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x015#\\a'#\\x1535\\x177\\x15\\x177#5#\\x15#\\x02R\\x13\\x1b\\x1b\\x13\\xfd\\xdc\\x13\\x1b\\x1b\\x13\\x01$=>=>>>=\\xc5\\\\>==\\x01\\x85\\x1b\\x13\\xfe\\xd2\\x13\\x1b\\x1b\\x13\\x01.\\x13\\x1b\\xfe\\xd2\\xd2MM\\xd2xMMx\\x03lii\\x00\\x00\\x05\\x00\\x1c\\xff\\xc0\\x01\\xe5\\x01\\xc0\\x00\\r\\x00\\x16\\x00\\x1c\\x00#\\x00'\\x00\\x00\\x05#'\\x15\\a#\\x1173\\x17573\\x11\\x01\\x1175\\x1337#\\x01\\x1375'\\x15\\a\\x13\\x013\\x11#\\x11\\x03\\x1f\\x01\\x11\\a\\x01\\x9f_lVb(m{Wa\\xfeCH\\xd7U4N\\xfe\\xc44POI \\x016SPߌHH@\\x9b\\\\?\\x01\\xe2\\x1e\\xb0q?\\xfe2\\x01\\xab\\xfe35\\xf9\\xfe\\xcc'\\x01\\xc2\\xfe\\x17;er\\xdd5\\x01\\xeb\\xfeF\\x01\\xba\\xfe\\xc3\\x01=\\xb5f\\x01\\x165\\x00\\x06\\x00\\x00\\x00+\\x02\\x81\\x01Q\\x00\\x06\\x00\\r\\x00G\\x00T\\x00`\\x00\\x93\\x00\\x00\\x133\\x15#\\a'#75#\\x153\\x177'2\\x16\\x1d\\x01#\\x06\\a7\\x16\\x17\\x1e\\x02\\x0e\\x02\\x1d\\x01'\\x0e\\x01\\x0f\\x01\\x06'67#6;\\x0165#\\x06\\a\\x06\\a>\\x037>\\x0137\\x06\\a32\\x16\\x1d\\x01#\\x14\\a%'67>\\x01\\x1e\\x03\\x1f\\x01\\x06'\\x1e\\x03\\x1f\\x01\\a'>\\x02\\x17\\x16+\\x01\\x15\\x14\\x0e\\x01#\\\"'&'\\x1e\\x0123\\x166=\\x01#\\\"&/\\x0135\\\"\\a\\x06'&'26?\\x02\\x16\\x14\\x0f\\x01\\x06\\a\\x06#\\x15036\\xabz1*\\b\\x17aI\\f\\x05\\x1cZ\\x03\\x04=\\x02\\x06\\x0f\\b\\x1c\\x02\\x02\\x01\\x01\\x01\\x016\\x06\\x12\\x06\\x06\\x15\\x1e@\\aB\\x04\\f4\\x02\\x1d\\x01\\x04\\v\\x1a\\x06\\v\\a\\x06\\x01\\x03\\x10\\a\\x06\\b\\x05X\\x05\\x043\\x02\\x01\\xd0\\x13\\x1e\\x06\\x02\\x05\\x05\\x06\\x04\\x04\\x01\\x01\\x18\\xab\\x02\\t\\n\\b\\x03\\x02\\x13)\\x02\\x05\\x10\\xe7\\x01\\nz\\n\\x14\\x0f\\r\\r\\f\\a\\x05\\x11\\r\\x06\\v\\x0el\\n\\r\\x01\\x02\\x86\\x13&)\\b\\r\\x03\\x1et,+\\x17\\x06\\x03\\x02\\x1c<\\x10\\a\\x02o\\x01,\\xda\\x1a\\x1a\\x18\\xaa\\xaa\\x12\\x12^\\v\\x06\\x06\\x14\\x15\\f\\t!\\x03\\a\\b\\a\\a\\x05\\x02\\x01A\\x16\\\"\\a\\x06\\x13\\t1L\\x17\\x173\\x03\\f\\x13\\x03\\f\\x1c\\x12\\x12\\x02\\n\\v\\x01\\x15\\x14\\v\\x06\\x05'#\\x02\\x0e(\\t\\x02\\x02\\x01\\x01\\x03\\x02\\x01\\x01 !\\x02\\v\\r\\f\\x04\\x04\\x0e:\\x01\\x03\\x03L\\x18I\\x0e\\x15\\v\\a\\a\\x0f\\x01\\x01\\x01\\f\\nG\\f\\x05\\x06d\\x03\\x01\\x02\\x04\\x10\\t\\x04\\x05\\x04\\x03\\x10\\a\\a\\x02\\x03\\x01e\\x01\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x005\\x00>\\x00\\x00\\x012\\x16\\x1d\\x01.\\x01'>\\x01?\\x01#535#5#\\x15#\\x153\\x15#\\x153\\x06\\a&#\\\"\\x06\\x17\\x1e\\x013267\\x16\\x17\\x14\\x0e\\x01#!\\\"&5\\x11463\\x03&632\\x17\\x06#\\\"\\x01z\\x1d)\\x18d\\x19\\n\\x14\\x04\\x04Xmm3nn\\\\\\xb2\\n\\x11Q.:-\\x04\\x03.0-M\\x1aKa\\x13 \\x13\\xfe\\xcc\\x1d))\\x1d\\x17\\x01#-\\\"K7?C\\x01\\xa0)\\x1d\\xeb\\b$\\t\\x14-\\r\\r\\x1f\\x1333\\x13\\x1f\\x11\\x1e\\x1e\\x19/#\\x1d/-$\\\"6\\x13 \\x13)\\x1d\\x014\\x1d)\\xfe\\xdd\\x12! I\\x00\\x0f\\xff\\xfd\\xff\\xc0\\x01\\xfd\\x01\\xc0\\x00d\\x00\\x93\\x00\\x9e\\x01#\\x01n\\x01\\xe9\\x01\\xec\\x01\\xfe\\x02\\a\\x02\\x19\\x02'\\x021\\x02U\\x02k\\x02\\x8c\\x00\\x00%\\x16\\x17\\x16\\x17\\a'\\x06\\a\\x14\\x06#\\\"'&54&5\\a&7461/\\x01>\\x0336767\\a'767'36\\x17&'&547\\x16\\x17673\\a6\\x17\\x0e\\x03\\a\\x16\\x17'\\x16\\x17\\x16\\x17>\\x03\\x1e\\x01\\x17\\x1c\\x04\\x16\\x14\\x16\\x15676\\x172\\x16\\x17\\x1e\\x01\\x06#\\a\\x16\\x17'&\\a\\x16\\x17\\x16\\x0f\\x01\\x16\\x173&47\\x16\\x1767\\a2\\x176#\\a&5&#0\\x15\\x14\\x17\\a&'&\\x0e\\x02#\\x1627\\a\\x17\\\"/\\x01\\a\\x16\\x1767676'&\\x05\\x06\\a\\x177\\x16\\x1767\\x17\\a6\\x17\\a\\x1e\\a\\x17'\\x1e\\x03\\x176=\\x01&'\\x16\\x17/\\x04\\x16\\x177'7*\\x02\\x0e\\x03\\a#67654'&'&'&#\\\"'\\x15\\x06\\a#\\a&?\\x01#7\\\"&#572\\x1636323\\x17\\x156767'\\\"\\a'5767\\\"\\x06\\a\\x06\\a'\\x17\\x15\\\"'&#\\\"#\\x16\\x177\\x06\\a\\x06\\a?\\x01\\a7\\a\\x06\\a\\x01>\\x014.\\x015\\x06#\\x17\\a&'\\x1e\\x01\\x17\\x06'\\x17\\a.\\x03#\\x06'\\x0e\\x01\\\".\\x01'\\x16\\x17&'47\\x16\\x17&'\\x17\\x06'&'3\\x1e\\x0667.\\x03'\\x17'\\x16\\x17'\\x16\\x172>\\x037\\x17'2\\x17&/\\x01?\\x01&+\\x0157\\a'\\x17\\a'#\\x17\\x15\\a\\x0e\\x02\\a7\\a\\x15\\x06\\a7\\a6\\x17.\\x02'\\x16\\x17\\a&'\\x17.\\x01\\a'7\\a7\\x06\\a#6'\\x14\\a\\x06\\a.\\x01\\x06\\a2\\x1e\\x022\\x160\\x16\\x14\\x16\\x17\\x0e\\x02\\a7\\x17\\x1e\\x017'\\x17\\a\\x16\\x17\\x16327'\\x1e\\b\\x15'7\\x17'\\x173'\\x17'7\\x176767/\\x01\\a\\x17'\\x16\\x17\\x06\\a\\x06#\\x06\\a7\\x06#\\\"#'67&7\\x16\\x17\\x16\\a\\x06'&6\\x17\\x1e\\x016'.\\x01\\a\\x06\\x156\\x17\\a\\x06\\x177\\x15\\x06'&'&632\\x17\\x0e\\x01\\x17\\x14\\x0e\\x017'52\\x17&#\\\"#5\\a\\x16\\x17\\x0e\\x01#63'6\\x16\\x1747674>\\x017632\\x17\\x16\\x15\\a\\x16\\a\\x06\\a\\x17.\\x037\\x06\\a\\x1f\\x01\\x163230765654'&\\a\\x06\\a\\x06\\x17\\a6?\\x01\\x17#&\\a\\x06\\x173\\x06'&'&547\\x06\\a&'6\\x1f\\x01\\a\\x06\\x1e\\x0176\\x01\\xe8\\x05\\x02\\x06\\x03\\x03\\r\\t\\a\\x82]\\\\BA\\x01\\x14\\a(\\x01\\x1d\\x03\\x02\\f\\t\\f\\x06\\v\\x10\\x02\\x05\\b\\x01\\x01\\x10\\x1f!\\x04\\x17\\x1a\\x04\\x04\\x03\\x03\\a\\b\\x05\\x1d\\x02\\f-5\\x03\\r\\b\\f\\a\\x1c\\x06\\x18\\x16\\x03#!\\x04\\x11\\x06\\r\\n\\x0f\\t\\x01\\x02\\f\\x0e\\x13\\v\\t\\t\\x01\\x06\\x02\\x05\\x01\\a\\x17\\to\\x14\\b\\f\\x01\\x02\\f\\x05\\a\\x02\\x02\\x01\\x02\\x0e\\x02\\x17 \\x12\\x1a\\x14\\x04\\x01\\x05\\x03\\x01\\t\\x02\\x02\\x05\\x04\\x03\\f\\n\\x0e\\x04\\a\\r\\a\\x17\\x04\\x11\\x05(\\x14\\x10\\f\\t\\x03\\x02\\x01\\x01\\x05\\x04\\xfe\\xe6\\v\\x02\\r\\x01\\n\\x02\\v\\f\\x01\\a\\x0e\\x0e\\v\\x03\\n\\x03\\x06\\x03\\x05\\x03\\x04\\x02\\f\\x05)\\x16/\\x1a\\x0e\\x01\\x11\\b\\x03\\x12\\x01\\x01\\x01\\x01\\x19\\b\\x02\\x17\\a\\x01\\a\\x05\\b\\b\\b\\t\\x04\\x02\\v\\x05\\x03\\x0e\\t\\x15\\n\\n\\x03\\x03\\x06\\r\\x10\\t\\x02\\x05\\x02\\x06\\v\\x04\\x02\\x01\\x04\\x01\\x02\\x01\\x05\\x01\\x05\\x05\\x02\\x02\\x03\\f\\v\\x1f\\x12\\x15( \\x02\\x02\\x03\\x04\\x02\\x0f\\x03\\x01\\x05\\r\\b\\t\\a\\x06\\x0f\\x01\\x02\\x06\\x12\\a\\x04\\x10\\x0e\\x13\\x04\\n\\x05\\r\\x02\\b\\x02\\x01\\x14\\x02\\x02\\x01\\x04\\x1e\\x02\\n\\x01\\x11\\v\\x04\\r\\r\\v\\x18\\x03\\x04\\x02\\b\\b\\x06\\x028:\\x03\\n\\x1e\\x1b$\\x0e\\x170\\a\\r\\x01\\x1d@8\\r\\x10\\x04\\x06\\x13\\x11\\x01\\x02\\x05\\x12\\x12\\x1d\\x1c'&\\x17\\x0f\\x17\\v\\x0f\\x02\\x11\\v\\x12\\x14\\x1e\\x13,\\x01\\x04\\a\\f\\x16\\x81\\t\\r\\n\\f\\r\\x0e\\x1b\\x01\\x18\\x10\\x11\\x12\\x0e)\\r\\x04\\x03\\x06\\n\\x06\\x0e\\x04\\f\\x0e\\x05\\x01\\x01\\n\\v\\t/\\x11\\x12 6\\x15\\x03\\x0e\\x02\\x02\\f,\\x18\\a\\x1e\\x04\\x03\\t\\x16\\x05\\x06\\v\\x02\\x01\\x04\\x01\\x02\\x01\\x13 \\t\\r\\x04\\n\\x05\\x06\\x02\\x04\\x03\\x03\\x01\\x10\\v\\x0f\\t\\x16\\x02\\nI,\\x1a,\\x01\\x04\\n\\x1e\\x1f\\x10\\x10!\\x06\\v\\t\\a\\a\\x05\\x05\\x03\\x04\\a\\x01\\x13\\t\\x15\\x02\\x04\\a\\x0e\\x01\\b+&+\\x1c\\x03\\x03\\x13\\x0f\\xfb\\a\\v\\a\\n\\x02\\x01\\f\\x06\\b\\t\\t\\x04\\x03\\x01\\x1d\\x12\\a\\x02\\t\\x05\\x16\\v\\f\\x0e\\x0e\\x05\\x05\\x03\\x10\\v\\x03\\x06\\x13\\x02\\x03\\a\\x06\\x01\\x01\\x03\\x01\\x027\\x04\\x02\\x02\\x05\\x06\\x03\\x02\\x02\\x01\\x04\\x04\\x04'\\x04\\x16\\x06\\v\\f\\x02\\x01F\\x01\\x04\\x0f\\r\\x02\\b\\x10\\a\\x06\\n\\x04\\x02\\x03\\x03\\t\\x0e\\x06\\x04\\x04\\x03\\x02\\x01\\r\\v\\x02\\x02\\r\\x03\\v\\r\\x05\\f\\r\\x02\\x01\\x05\\a\\x04\\x04\\x02\\x02\\x06\\b\\x01\\x04\\x04\\x06\\b\\b\\x04(\\x03\\v\\b\\a\\f\\x02\\x0e\\x11\\x01\\a\\t \\x11\\x18\\x03\\x03\\x01\\t\\x06\\x04\\x02\\x0f\\x11\\x01\\x06\\x01\\x01\\n\\t\\x03\\xce\\x06\\a\\x11\\x11\\x01\\x0f\\x0e\\v\\\\x<=Z\\x01\\x03\\x01\\x16-#\\x01\\x02\\x01\\x04\\x01\\x05\\x04\\x04\\x16\\x12\\t\\x11\\x04\\x01\\t&\\x1d\\x0e\\x06\\x06\\a\\f\\x06\\x06\\a\\a\\a\\x15\\x18\\x16-\\x1b\\x0f\\x03\\r\\a\\b\\x02\\b\\a\\a\\x14\\x05\\x02\\v\\x02\\n\\x02\\x04\\x03\\x06\\x06\\x05\\t\\x05\\x04\\x01\\x02\\x01\\x02\\x01\\n\\a\\t\\x0f\\x11\\n\\x01\\x10\\x0e\\x12\\x17\\x16\\x8a\\r\\x05\\v\\t\\f\\n\\x04\\n\\r\\v\\x01\\x03\\b\\f\\v\\n\\x10\\b\\x14\\v\\x11\\b\\n\\x01\\a\\a\\x06\\x12\\n\\a\\x02\\a\\t\\x01\\x01\\x06\\x04\\x11 \\f\\n\\x15\\x04\\x04\\x02\\x05\\x02\\t\\a !*\\x05\\x1b\\x11\\v\\a\\x04\\x02\\v\\x06\\x05\\b\\x01\\x04\\x01\\x03\\x02\\x03\\x04\\x05\\x04\\x02\\x03\\x1a\\v\\x12\\x06\\x16\\x01\\x01\\x04\\x10\\x01\\x02\\x10\\x01\\x01\\x01\\x01\\n\\x12\\x1f\\x12\\x06\\x01\\x02\\x03\\x06\\x04\\x16\\x18\\x0e\\x0e\\x1d\\x1c\\x14\\x0f\\b\\x06\\x01\\x01\\x03\\x02\\r\\x03\\x04\\x05\\v\\x03\\x01\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x02\\x04\\x15\\x01\\x13\\x02\\x05\\a\\r\\f\\x16\\b\\b\\a\\x1d$\\x01\\x02\\x01\\x02\\x06\\x01\\x04\\x10\\f&\\x01\\n\\x05\\f\\x03\\f\\x03\\xfe\\xb4\\f\\x12\\x14\\b\\x1b\\x04\\n\\x0f\\x01\\x05\\n\\x0f\\f\\x04\\v\\x17\\x17\\x03\\b\\x0f\\n\\x06\\x11\\x1c\\x01\\x02\\x05\\x13\\x10<\\x17\\x10\\v\\x03\\a\\x1d\\x1f\\x17\\x06\\x15\\x02\\x03\\v\\x0e\\x03\\x06\\x11\\r\\x13\\n\\v\\x02\\x03\\a\\x16\\x0f\\x19\\x04\\b\\x18\\x19\\x14\\x11)\\x12\\x01\\x02\\x04\\n\\xdd\\r!\\x03\\x11\\x0f\\x17\\x03\\x02\\x04\\x03\\r\\x14\\x12\\x10\\x01\\x05\\x05\\x02\\x1b\\x0e$,\\x10\\x10\\x03\\x01\\x18\\x0f\\x16\\x15\\x14\\x01\\x05\\x16\\x0f\\x04\\x18\\x10\\x01,\\x1a\\x03\\t\\t\\x02\\x03\\b\\x06\\x0e\\x04\\x05\\x01\\t\\n\\x02\\x01\\x01\\n\\x03\\x03\\x05\\x02\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\b\\a\\x1b\\x1c\\x16\\x10+/\\x06\\x17\\x17\\x03\\x01\\x03\\t\\x03\\x15\\x01\\x04\\x04\\x05\\x06\\x04\\a\\x02\\x06\\x01\\x1d\\x03\\x1c\\x1b\\x0e\\x04\\x04\\x10\\x03\\a\\f\\x1c 0\\tH\\x02\\v\\x06\\r\\x06\\n\\x05\\x01\\r\\x02\\r\\x03\\x02\\x03\\r\\x06v\\x05\\t%\\v\\f\\x0f\\x1003\\v\\b\\n\\r\\x19\\x10\\x04\\x04\\x15\\f\\a\\x01\\x03\\x03\\x01\\x05\\x0f\\n\\x01\\x03\\a\\x0e\\x04\\x01\\x04\\x01\\x06\\b\\x012\\x03\\x02\\x0e\\x06\\x031\\x02\\x05\\x03\\t\\x10\\a\\x01\\x01\\x06\\f\\f\\v\\x03\\x01\\a\\v\\x03\\x03\\x01\\x01\\x01\\b\\x11\\x18\\x11\\v\\x05\\x01\\x03\\x04\\v\\x17\\x06\\x14\\x06\\x03\\x01\\b\\t\\x0e\\x02\\x02\\v\\n\\f\\x03\\x02\\t\\aC\\x06\\a\\x01\\x01\\b\\x06\\r\\a\\x17\\t\\x04\\a\\x11\\v\\n\\a\\x06\\x01\\n\\a\\x03\\a\\x03\\x02\\x01\\x02\\f\\r\\x02\\x01\\x00\\x00\\x02\\x00\\x12\\xff\\xc0\\x01m\\x01\\xc0\\x00p\\x00\\x88\\x00\\x00\\x05\\x1e\\x01\\x17!\\\"76743\\x16765&54'&'\\x0e\\x02\\a\\x163\\x15#67436\\x1727>\\x017>\\a46'4&#*\\x01#.\\x01'&3!\\x06\\a\\x14\\x0e\\x02#\\\"#\\x06\\a\\x0e\\x01\\x17\\x16\\x17\\x16\\x17\\x1e\\x01\\x1723\\x16\\x17#5232'0&'&\\a\\x06\\a\\x06\\x15\\x16\\x1c\\x01\\x15\\x16\\x17\\x1632\\x16&\\x162>\\x03767&'.\\x03'+\\x01\\x06\\a\\x16\\x17\\x16\\x01e\\x01\\x05\\x01\\xfe\\xaf\\x06\\x01\\x01\\x04\\ar\\b\\x0f\\x01\\x04\\a)\\x02\\x06\\x05\\x03\\x02\\\"s\\x03\\x01\\x05\\n\\x10\\x05\\x02\\a\\x1e\\x1e\\x05\\b\\x06\\x05\\x03\\x03\\x01\\x02\\x01\\x01\\x19\\r\\x0f7\\x1f\\x05\\x01\\x01\\x01\\x06\\x01S\\x02\\x01\\x02\\x01\\x01\\x040\\x0e,\\f\\n\\f\\x03\\a\\x1e\\r\\x12\\x1a\\r\\x0e\\x01\\x13\\x01\\x03t\\x1a\\x05\\x05\\x02\\v\\x02\\x03\\x06\\x0f\\x16\\x06\\x01\\x01\\x14\\rd\\x06\\x03\\xb3\\t\\t\\t\\v\\t\\v\\x04\\x02\\x02\\x10\\x03\\x03\\b\\x06\\a\\x03\\x02\\b\\v(\\x03\\x03\\a\\x14\\x04\\x1f\\t\\x06\\n\\x1d\\x06\\x01\\x04\\x06\\x11k\\x16\\x05\\x01\\x02\\n\\x05\\r\\r\\x05\\x03\\x1c\\x14\\x05\\x03\\x01\\x01\\x05\\x10IH\\v\\x14\\r\\x0e\\x06\\t\\x02\\x06\\x01\\x05\\x01\\f\\n\\x1a\\x11\\x03\\x05\\v\\x05\\x04\\v\\n\\t\\x01\\x01\\x01\\x10\\n\\x15D\\x1f-<\\x16\\x01\\x06\\x15\\x1b\\x04\\x19\\x06\\x05\\x02\\x04\\x05\\x02\\x06\\x19@'\\x01\\x14\\x03\\x03\\x01\\xc9\\x03\\x03\\x03\\x03\\x03\\x01\\x01\\x01)\\n\\b\\x17\\x15\\x17\\b\\x1ch\\x02\\x01\\x02\\x00\\x00\\x10\\x00\\x00\\xff\\xc0\\x01\\xbf\\x01\\xc0\\x00\\x1d\\x00\\xa1\\x00\\xec\\x01\\x19\\x01Z\\x01\\xa3\\x01\\xe3\\x02\\x03\\x02&\\x02G\\x02\\xfa\\x03\\a\\x03\\x1a\\x03!\\x03-\\x031\\x00\\x00\\x13\\x16\\x17\\x16\\x15\\x14\\x15\\x14\\a\\x0e\\x02\\a#.\\x045\\\"=\\x014547>\\x017\\a\\x06\\a\\x17\\x06'0.\\x01#\\x150>\\x0116\\x172\\x15\\x06\\a\\x06;\\x012=\\x01'#\\\"'&'&#\\\"\\x15\\x16\\x15\\x16\\x172\\x14\\a*\\x01&543:\\x0165654'&\\\"#&72\\x17\\x1e\\x01\\a0\\x141\\x1e\\x02\\x17\\x1e\\x01\\x172=\\x014\\x17\\x163272\\x150\\x16\\x15\\x14;\\x01&'272\\x17\\x1e\\x0215\\x06\\a\\\"5&'4327&'\\x17&'0.\\x01'\\x0e\\x02#\\\"#6\\x17272\\x15\\x14\\x15\\x06'&'4&'\\\"\\x150\\x161\\x143\\x16\\x17\\x16\\x17\\x16\\x0e\\x01\\a\\x06'&672=\\x01674#\\\"#\\\"\\x06\\a\\x06'676\\x17\\x16\\x1725654#&546\\x17\\x16\\x06\\a\\x06\\x1d\\x01\\x17\\x1432'>\\x01\\x1e\\x023\\x16\\a\\x14\\a\\x14\\a\\\"=\\x01&'&\\a\\x06\\x15\\x14\\x167>\\x0232\\x150\\x15\\x0e\\x02\\x14\\x061\\x0e\\x01&'&6\\x17#\\\"'>\\x015454'\\\"572\\x17\\x1e\\x01\\a\\x06\\a\\x16\\x17\\x16725454'\\\"4732\\a#\\x06\\x15\\x14\\x17\\x1432\\a#*\\x01#\\\"'&'&*\\x01\\x15\\x16\\x15\\x1432\\x17\\x06%\\x06\\a&+\\x01\\\"#&76'&'4#\\\"#\\\"#\\x061\\x06\\a\\x14\\x166\\x17\\x16\\a0+\\x01\\\"72676742\\x17\\x1e\\x01\\x17\\x16325454'\\\"7032\\x16\\a#\\\"\\x15\\x1c\\x01\\x15\\x16;\\x01276\\a\\\"'67236\\x16\\x15\\x14\\a\\x14\\\"54&#&#\\\"\\x1d\\x01\\x147636\\x15\\x14\\x06'05&#&\\x06\\x15\\x14\\x15\\x1c\\x02\\x163\\x166762\\x15\\x14\\a\\x14#\\\"#\\\"43656'\\x16\\x15\\x1c\\x021\\x06\\\"54'&\\x06\\x17\\x1e\\x01767456\\x17\\x14\\a\\x06'.\\x0176\\x172\\x16\\a\\x06\\x15\\x14\\x15\\x163\\x16>\\x0176\\x15\\x16\\x06\\\"+\\x01\\\"&3656'4'\\\"43:\\x01'\\x1432\\x14#\\\"#\\\"4;\\x01265454'\\\"#&6323\\x16\\a0#\\x06\\x15\\x06\\x03:\\x013>\\x017+\\x8d\\\"\\x150\\x1c\\x01\\x16\\x1c\\x02\\x15\\x14\\a\\x06\\a\\x06'&1&541474+\\x01\\x1e\\x02'\\x143\\x16676&'&\\\"\\a\\x14\\x17\\x14\\x17\\x14\\x06&565\\x06\\x16\\x17\\x163276&/\\x01\\\"\\x14326&\\x06\\x143\\x16645.\\x01\\x06\\x15\\x14\\x17'\\x06\\a\\xe2\\xd4\\x05\\x04\\x04\\tgi\\x02\\x03\\x16=81\\x1e\\x02\\x03\\v\\xcb\\x06\\taa\\x1f\\b\\x03\\f\\r\\x01  \\x01\\b\\x01.\\x16\\x01\\x02\\xbb\\x02\\x06\\r\\f\\t\\b\\x0e\\x02\\x0f\\x02\\x01\\x01\\t\\x03\\x02\\x02\\x1e\\x04\\x02\\x01\\x04\\x02\\x01\\x05\\x01\\x03\\x01\\x03\\x050\\b\\f\\x01\\x10\\x01\\x03\\x03\\x01\\x15\\a\\r\\x01\\x02\\x05\\x06\\x06\\x06\\x02\\x01\\x02\\xba()\\x01\\x06\\x02\\x01\\x03'#\\x10Z\\x01\\x01\\x02\\x01\\x04c4\\x90W\\n\\x02&(\\x04\\x04*'\\x01\\x01\\b+_\\x03\\x03\\x02\\x02\\x01\\x01\\x01\\n\\x1b\\x01\\x04\\x01\\x04\\x05\\n\\x02\\x01\\x04\\x10\\r\\x1c\\x06\\x04\\r\\n\\x02\\x02\\x02\\x01\\x03\\x06\\x13\\n\\x02\\x03\\x01\\x01\\x02\\x01\\x02\\x05!\\x01\\x01\\x01\\t\\x14\\a\\x05\\x01\\x06\\x02\\x01\\x01\\x13\\xb8\\x06\\n\\v\\b\\r\\x05\\x04\\x01\\x01\\x01\\x04\\x03\\x19\\\"\\n\\x03\\x1c\\x1a\\f\\n\\x01\\x02\\x03\\x01\\x01\\x01\\x01\\x01+.\\x03\\x02\\x15e\\x13\\x02\\x01\\x01\\x05\\x03\\x04\\x03\\x16\\b\\a\\a\\x06\\x02\\x04\\t\\b\\x04\\x06\\x02\\x03\\x03\\x03\\x13\\x05\\x04\\x01\\x04\\x01\\x05\\x04\\x02\\x02\\x05\\x15\\x05\\t\\v\\x03\\x01\\x01\\x04\\x04\\x01\\x03\\x03\\x01\\x01\\x01\\x11\\x03\\x02+\\a\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x03\\x02\\x03\\x03\\x04\\x04\\x02\\x02\\x03\\x04\\x06\\x03\\x04\\x02\\x02\\x1a\\x02\\x01\\x04\\x04\\x02\\x12\\x01\\x02\\x01\\x01\\x13\\x03\\x02\\x05\\x04\\x06\\x03\\x03\\x16\\x02\\x01\\x02\\x02\\x03\\x01\\x02\\x01\\x0e\\x02\\x02g\\x03\\x01\\x02\\x01!\\x04\\x01\\x01\\x01\\x03\\x04\\x06\\x04\\x02\\x01\\x01\\x0f\\x01\\x03\\x02\\x02\\x01\\x02\\f\\x01\\x02\\x02\\v\\x03\\x02\\x01\\x02\\x01\\x05\\\"\\x01\\x02\\x02\\x04\\x01\\x05\\x03\\x01\\x03\\a\\x12\\x0f\\x05\\x04\\x12\\a\\x05\\x02\\x02\\x01\\x06\\x15\\v\\x0f\\x01\\t\\r\\x01\\x02\\x01\\x03\\x05\\x01\\x03\\n\\a\\x01\\x01\\x02\\x01\\x03\\x01\\x02&\\x01\\x01\\x02\\x05\\x01\\x01\\x06\\x01\\x02\\x01\\x12\\x1c\\x06\\x02\\x02\\x0e\\b\\x02\\x02\\x01\\x02\\x01\\x03\\x01\\x01\\x02\\x01\\x02\\x14\\x01\\x02\\x03\\x01\\x03\\x01$\\x01\\x02\\x01\\a\\xb6\\b(\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\r\\x01\\x01\\f\\x02\\x01\\x02\\xb7\\x01YeV\\x03\\b\\x0f\\x03\\x05\\a\\v\\x03\\v\\x02j\\x01\\f\\r\\x01\\v\\x03\\x0f\\x03\\x04\\n\\x05\\x04\\x01\\t\\f\\b\\b\\x04\\x04\\x03U\\x02\\x06\\x06\\x01\\a\\x06\\xd4\\x06\\x02\\x04\\x01\\xc0{\\x02\\x01\\x05}~\\x04\\x01\\x06:<\\x01\\r# \\x1c\\x11\\x01\\x02\\x01\\xe2\\x1b\\x03\\x02\\x06t\\x03\\x1487\\f\\x06\\x01\\x05\\x05\\xe687\\x02\\x01\\x01O&\\x01\\x01\\t\\x01\\r\\n\\x13\\x02\\x01\\x1b\\x06\\x04\\x01\\x04\\x01\\x01\\x02\\x02\\x02\\x02\\rC\\f\\x01\\x01\\x02\\x03\\x05\\a\\x1b\\x13\\x02\\x01\\x04\\x04\\x01\\x19\\x06\\x02\\x01\\v\\x02\\x01\\x01\\x02\\x02\\x1a\\x01\\x01FG\\x01\\x01\\x06C=\\xe6\\x05#\\x01\\x03\\x03\\x01'\\x1eS\\x97\\x01\\x03AG\\x06\\x06JBJ7\\x01\\x02\\x14\\x01\\x02\\x02\\x02\\x03\\x04\\x02\\x01\\x01z\\x01\\x02\\x02\\a\\r\\a\\x0f\\x0e\\x01\\x01\\x19\\r\\x14\\x03\\x02\\x01H1\\x01\\x03\\x05\\x05\\x04\\t\\t\\x03\\x01\\x01\\x01\\x02\\x16\\b\\x02\\x05\\t\\v\\t\\b\\x06\\x0e\\x04\\x02\\x02\\x01\\x1e\\x01\\t\\x02\\x01\\x01\\x01\\x02\\x01\\x03\\x13\\x05\\x01\\x01\\x06\\x01\\x0f\\x03\\x04\\x1e\\a\\n\\x14!\\x02\\x01\\n\\n\\x03\\x01\\x03\\x06\\x04\\x04\\x02\\x06\\x04\\x17\\x1d\\x15\\\"R\\x01\\x02\\x01\\x04\\v\\x1d\\x04\\x01\\x01\\x02\\x01\\x01\\x0e\\a\\x03\\x04\\f\\b\\x04\\x01\\x02\\x04%\\x06\\x01\\x02\\x01\\x03\\x01\\x04&\\x05\\x02\\x03\\x0f\\x04\\x01\\x02\\x01\\x03\\x05\\n\\x01\\x02\\n\\n\\x01\\x01\\x01\\x01\\x02\\x02\\x04\\x06\\x02\\x01\\x05\\x06\\x02\\x01\\x01\\x01\\x01\\x02\\x03\\a\\x05)\\x01\\x01\\x01\\x01/\\x04\\x02\\x04\\x02(\\x03\\x01\\x03\\x02\\x01\\x03\\x01'\\x01\\x03\\x04\\x04E\\x02\\x01\\x01\\x01\\x01\\x01\\x03\\b\\x01\\x02\\x03\\x01\\x01\\x02\\x10\\x02\\x01\\x01\\x01\\x03\\b\\x06\\x03\\x02\\x03\\x01\\x01\\x06\\x02\\x03\\x04\\x03\\x03\\x01\\x01\\x02\\x04\\x02\\x02\\x05\\x05\\x02\\x03\\x01\\x023n\\x01\\x04\\x02\\x05\\x02\\x02\\x02\\a\\x02\\x05\\x16\\r\\n\\x06\\x02\\x01\\x05\\x01\\x01\\x02\\x04\\v\\x01\\x03\\x06\\b\\x1f\\x06\\x0eq\\x03\\x01\\x03\\x02!\\b\\x04\\x01\\x01\\x05\\x01\\x04\\x05\\x06\\x06\\x03\\x02\\x01\\x1c\\x14\\x03\\x01\\x03:\\x04\\x03\\x03\\x05\\x10\\x0e\\v\\x03\\x01\\x01\\x02\\x02\\x01\\x01\\x02\\x04\\xfe\\xc6\\x05g\\x05\\x01\\x05\\b\\n\\v\\t\\a\\x01\\x04\\x03\\x02\\x1f\\x02\\x02\\x1f\\x05\\x05\\x01\\n&\\x02\\x013:\\xba\\x03\\x02\\x02\\a\\v\\x19\\x03\\x01\\x02\\x01\\x1a\\x0f\\x18\\x05\\x02\\x06\\x04$\\x03\\x05&\\x06\\x01\\b\\x06\\x1b\\x06\\xc6\\x0f\\b\\ae\\x05\\x01\\x06\\a\\x01\\x05\\x05\\x01\\x01\\x02\\x17\\x10\\x06\\n\\x00\\x15\\x00\\x00\\x00Z\\x02\\x80\\x01&\\x00\\\"\\x00'\\x00[\\x00r\\x00~\\x00\\x83\\x00\\x9a\\x00\\xe2\\x00\\xe6\\x00\\xfc\\x01\\x17\\x01'\\x01<\\x01J\\x01X\\x01_\\x01l\\x01\\x88\\x01\\x98\\x01\\xab\\x01\\xd0\\x00\\x00%\\\".\\x015&\\x14\\x17&7'\\a46?\\x01\\x16\\x14\\x06\\x1567\\x06\\x156\\x17\\x06\\x16327\\x1e\\x01\\x17\\x066\\x14\\a6'\\x17\\x14\\x06'\\x167\\x06&5\\x06\\x17&'46&'.\\x01<\\x01.\\x015\\x14\\x172\\x163\\x16\\x15\\x14\\x170\\x16\\x17\\x1e\\x023\\x166'\\x1e\\x01\\a\\x1674'6\\x16'67&\\a67\\a2>\\x013\\a0?\\x012\\x17&\\a&\\a&\\x172\\x16\\x15\\x14#\\\"'75'6\\x17\\x1654\\a%'4>\\x01\\x172\\x15\\x14\\a&16&#\\\"\\x06\\x17\\x06\\x17&'\\x06\\x176'3&7\\x1e\\x01\\x174'&7\\x14\\x16\\x15&'&'&7\\x14\\x16\\a\\x16\\x1527\\x16\\a6&\\a5&\\a6\\x17\\x063\\x153\\x06#65\\x06#6'&\\a67\\\"'6\\x17&\\a2\\x17\\x06\\a61&\\a>\\x02\\x17&'\\x16\\x17707\\x15&#\\a&#\\x16\\a\\x06'5063632\\x17\\x05\\x1e\\x01\\x14\\x15\\x14\\a\\x0e\\x04*\\x02#75'35'32\\x16\\x15\\x14'\\x152\\x162>\\x02=\\x014.\\x02#\\\"\\a:\\x03>\\x045#54.\\x02*\\x02#\\x17\\x153\\a#75'3\\x17#\\x153\\a72\\x1e\\x02\\x0e\\x02#\\\".\\x01>\\x01\\x1726&\\\"\\x06\\x16'\\x15\\x17#75'3\\a\\x177'3'&'\\x1632\\x170\\x0e\\x02\\x1563\\x06\\x157\\x06\\x17\\x06+\\x01676=\\x014\\x17\\x150:\\x02>\\x024.\\x02\\\"&\\x06\\x173\\a\\x15#.\\x01'\\x15\\x17#75'3\\x1e\\x01\\x175'\\x1e\\x02\\x15\\x14\\x0e\\x01#6'254.\\x02*\\x02#\\x15&\\a63&\\a67\\x06\\a4'&'\\x16\\x01:\\x05\\a\\x04\\x03\\x01\\v\\x06\\x01\\x02\\x05\\x02\\x02\\x01\\x01\\x03\\b\\x02\\x04\\x04\\b\\x03\\b\\b\\x06\\x01\\x06\\x01\\t$\\x05\\x02\\x02\\x0f\\b\\x06\\x05\\x04\\x03\\x14\\x05\\x05\\x06\\x01\\x01\\x04\\a\\x02\\x02\\x04\\x01\\x03\\x01\\x03\\x01\\x01\\x01\\x05\\x02\\x01\\x04\\x04\\x01\\x04\\x05\\x01\\x03\\x01\\x03\\t\\x01\\x05\\x05\\b'\\v\\r\\v\\t\\x02\\b\\x01\\x01\\x03\\x05\\x02\\x03\\x02\\x06\\b\\x05\\b\\x05\\r\\t\\x05\\xf1\\x1b!;\\x18\\x1c\\b\\b\\x1b\\b//\\xfe\\xfa\\x04\\x01\\n\\t\\x11\\x05\\b\\x03\\x03\\x05\\x03\\x04\\x01\\x02\\x01\\x05\\x02\\x03\\x01\\x01\\x06\\a\\x02\\x01\\x02\\v\\x01\\x04\\x03\\x04\\x0e\\x01\\x06\\x02\\x01\\x01\\x02\\x0f\\x01\\x02\\x02\\x01\\x01\\x06\\x01\\x04\\x03\\x01\\n\\x03\\x02\\x02\\x03\\x03\\x03\\x06\\x03\\x01\\x02\\x05\\x04\\x03\\x05\\x01\\x05\\x02\\x03\\x04\\x05\\b\\x05\\x02\\x02\\x06\\x05\\x01\\x01\\a\\x01\\x05\\x04\\x1a\\x01\\x03\\x01*\\x01\\x02\\x02\\x03\\x05\\x03\\x02\\x05\\x06\\x01\\x01\\x01\\x01\\x03\\x04\\x03\\x02\\xfe\\xe3\\n\\t\\n\\x02\\x05\\x05\\t\\a\\x0e\\f\\x17\\t\\b\\v\\v\\b8\\x0e\\x179\\x01\\b\\x06\\a\\x04\\x03\\x02\\b\\a\\b\\x03\\x01\\x02\\b\\x04\\x06\\x03\\x04\\x03\\x02\\x01\\x01\\x02\\x04\\x05\\a\\x05\\b\\x01e<\\x0eQ\\a\\aI\\x0e4%\\x0e\\xbf\\x10\\x18\\r\\x06\\x06\\f\\x19\\x10\\x16\\x1d\\x06\\a\\x1d\\x15\\x13\\x0e\\x0f#\\x0f\\x0fJ\\a*\\a,-\\x06\\x15\\x14\\x06*I\\b\\x01\\a!\\x19\\a\\x03\\x03\\x04\\x03\\x06\\n\\x03\\x02\\x01\\v\\x0f#\\x04\\x04\\x02\\x13\\x05\\x03\\x06\\x03\\x04\\x02\\x02\\x04\\x03\\x06\\x03\\x05\\xe5'\\a\\x16\\x02,\\x02\\a'\\a\\a\\x1f\\x02)\\x03r\\x0f\\x11\\x02\\x04\\x12\\x0f\\a\\t\\x13\\x01\\x04\\x04\\x05\\x03\\x05\\x01\\x04\\x03\\x03\\x03\\t\\x06\\x01\\x03\\x03\\x03\\x03\\b\\x02\\a\\xce\\x04\\x03\\x01\\x03\\x04\\x01\\n\\x10\\x02\\x02\\x04\\a\\x02\\x01\\x01\\x01\\x04\\x03\\x05\\x03\\x03\\x04\\x05\\x02\\t\\x12\\v\\x01\\x05\\x01\\x12\\x19\\a\\x01\\x05\\x04\\n\\x05\\x06\\x01\\x04\\x02\\x06\\x03\\t\\x05\\x04\\x02\\x05\\x03\\a\\x03\\x05\\x02\\x03\\x03\\x02\\x03\\x02\\x03\\x03\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x03\\x04\\x03\\x04\\x03\\x02\\b\\x02\\x02\\a\\x05\\x01\\x01\\a\\x0e\\x0f\\x01\\x01\\n\\b\\x05\\x04\\x02\\x04\\x04\\x01\\x01\\a\\x03\\x05\\b\\x18\\x043\\x1b\\x161\\x02\\bN\\b\\x02L\\x06! \\x05d\\a\\x03\\b\\t\\x01\\x10\\b\\x06\\b\\x04\\n\\x06\\x04\\x04\\x04\\x03\\x06\\x04\\v\\x03\\x02\\x02\\x04\\x03\\x06\\x03\\x04\\x02\\a\\x04\\x05\\r\\x02\\x04\\x05\\x02\\x01\\x04\\x03\\x04\\x0f\\x05\\x01\\x01\\x02\\a\\x03\\x03\\x03\\x01\\x04\\x03\\x04\\x01\\x01\\x04\\x05\\x05\\x01\\x03\\x01\\x03\\x05\\x04\\x03\\x04\\x02\\x01\\x03\\x01\\x02\\x05\\x01\\x01\\x05\\x05\\x03\\x01\\x01\\x03\\x02\\x06\\x03\\x01\\x04\\x04\\x01\\x01\\x12\\x01\\x01\\x03\\x05\\x02\\x01\\x01\\x10\\x02\\x04\\x02l\\x03\\f\\x04\\x06\\f\\x06\\x01\\x02\\x01\\x01\\x01\\t \\x0f\\x1d\\t\\v\\x0e\\x10\\x18\\x15\\x01\\x01\\x02\\x04\\x03\\x02\\x04\\x04\\x01\\x01<\\x01\\x01\\x01\\x02\\x03\\x02\\x04\\x02\\x04\\x02\\x01\\x03\\x10\\x15\\tM\\b\\x15\\x0f\\x15<\\v\\x12\\x15\\x15\\x12\\v\\x15\\x1d\\x1d\\x15N\\x1c\\x1c\\x1c\\x1c\\t\\x13\\t\\t\\x13B\\a&&\\aU\\x06\\t\\x04\\x17\\x02\\x02\\x03\\x01\\x01\\x06\\x0e\\x03\\x06\\x06\\b\\x01\\x03\\x02\\x04'\\x05\\x04\\\"\\x03\\x03\\a\\b\\a\\x03\\x03\\x01\\x01O\\tU\\a,\\x050\\b\\tL\\t\\x04'\\b*i\\x01\\x10\\f\\x05\\x05\\r\\x10\\t\\b\\x11\\x04\\a\\x03\\x03\\x04\\x01\\x01\\x02\\x03\\x06\\x02\\x03\\x01\\x03\\b\\x02\\x06\\t\\x04\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\t\\x00\\x19\\x00#\\x005\\x00>\\x00\\x006\\x16\\x1d\\x01\\x14\\x06+\\x0153%2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\x1532675#\\\"\\x06\\x1d\\x01\\x14\\x16735#535#5\\x177#\\a'#\\x17\\x1e\\x01r\\f\\f\\x06\\x11\\x11\\x01(\\x12\\x1a\\x1a\\x12\\xfe\\x98\\x12\\x1a\\x1a\\x12n\\x17\\x180/\\x19\\x17e?\\t\\v\\f\\t>5  \\x9d&!\\x1d\\x1e &\\b\\x1d\\xf4\\t\\bF\\t\\bh\\xac\\x1a\\x12\\xfe\\x98\\x12\\x1a\\x1a\\x12\\x01h\\x12\\x1a\\xfe\\xfdG\\x11\\x1e\\xa5\\x1dj\\x1e\\f\\t}\\b\\f\\x01\\x1d&\\x1e&s\\x91rr\\x91\\x13\\x03\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00!\\x00G\\x00K\\x00O\\x00\\x00\\x01\\x17\\a'3\\x16\\x1767\\x1e\\x01\\x1767&'&7>\\x01\\x17\\x16\\x17672&1&'&\\x06\\a\\x06\\x1767.\\x04'\\x0e\\x02\\a.\\x01'\\x061\\x06\\a\\x06\\x17\\x1e\\x01\\x17\\x16\\a\\x0e\\x01'&'\\x06\\a\\x16\\x17\\x166\\x03\\t\\x023\\x177'\\x01\\x00\\xdf\\xdf\\xdf7\\x16\\x13:\\x04\\x06\\x19\\x06\\x0f\\x15\\n\\x1a\\x02\\x02\\f \\r\\b)\\x19\\b\\x01\\x01\\\"\\x1c\\x19A\\x1eJ\\xd4D!\\x04\\t\\b\\b\\b\\x04\\a\\x18\\x15\\t\\a\\x19\\x06\\x02\\x1c\\x04\\x02\\x03\\x06\\x17\\x03\\x03\\x03\\r!\\x0e\\x06&\\t\\x1b5\\x14\\x15=*\\x01\\x00\\xff\\x00\\xff\\x00\\x10\\xf0\\xf0\\xf0\\x01\\x9f\\xdf\\xdf\\xdf\\x15\\x149\\x04\\x06\\x19\\a\\x0f\\x14\\n\\x1a\\x03\\x02\\f\\x03\\n\\x06&\\x1a\\t\\x03&\\x15\\x14\\b\\x1eK|D!\\x04\\b\\b\\b\\b\\x04\\a\\x17\\x15\\t\\a\\x1a\\x05\\x01\\x1c\\x04\\x02\\x03\\x06\\x17\\x03\\x04\\x03\\f\\x01\\v\\x05%\\t\\x1b6\\r\\x0e\\t\\x01\\u007f\\xff\\x00\\xff\\x00\\x01\\x00\\xf0\\xf0\\xf0\\x00\\x00\\x05\\x00\\x00\\x00\\t\\x02\\x82\\x01x\\x00\\x04\\x00\\x0f\\x002\\x00K\\x00^\\x00\\x00\\x01\\x16\\x17\\a6\\a6\\x17\\x16\\a\\x06\\a\\x06\\a'6%\\x16\\x15\\x16\\x0e\\x01'\\x14\\x06\\a\\x06#\\\"&/\\x0145467'&54>\\x01\\x1767676\\x16\\x17\\a>\\x017>\\x01.\\x01#0#\\\"\\a\\x06\\a\\x177\\x17\\a\\x177'\\a'7\\x177'\\a'\\x06\\a\\x177\\x0f\\x01\\x177'\\a?\\x01\\x17\\a\\x01\\xa6\\x04\\x15(\\x0e\\xcd\\x15\\x06\\x06\\x15\\x06\\a\\n\\x18\\x05\\x17\\x01Wb\\x01o\\xb3o\\v\\tw\\x04\\v\\x10\\x01\\x04\\n\\b\\x02QV\\x8dR\\x05\\x0eO9\\n\\x12\\x05\\xf2\\r\\x1e\\b\\b\\x04\\b\\x1b\\x14\\x01\\vX2$\\x04\\x15\\v\\x14\\x04s\\x04\\x15\\x020\\xddm\\x04\\x15C=J\\x04\\x11!\\x15\\x04q\\x04\\x13\\x04:\\x06\\x0f\\x01\\x1c\\t.\\v>/\\x05\\x11\\x14\\v\\x03\\x02\\x03\\x06.\\x06\\x1f18'8\\v\\x16\\n\\x10\\x03\\x1f\\x0e\\v,\\x02\\x01\\b\\x0f\\x03\\x12-2$3\\x13\\a\\r\\x04\\x15\\x0f\\x03\\t\\t\\xd0\\x03\\x13\\v\\r$!\\x17\\x18\\r\\n,\\x05s\\x05,\\x1e-\\x06\\x18\\r\\v\\x1d-\\x06\\x91\\x10\\x14,\\x04~\\x06,\\x1e'\\x05\\x12\\x0f\\x0e\\x04\\x00\\x1a\\x00\\x00\\x00\\x03\\x02\\x81\\x01}\\x00\\x06\\x00\\x1c\\x00%\\x00W\\x00a\\x00h\\x00\\x91\\x00\\xa9\\x00\\xd9\\x01\\x02\\x01*\\x01=\\x01U\\x01`\\x01\\u007f\\x01\\x9a\\x01\\xb5\\x01\\xc6\\x01\\xe8\\x02W\\x02\\\\\\x02b\\x02y\\x02\\x84\\x02\\x8c\\x02\\x94\\x00\\x0076\\x17\\x16\\a\\x06&\\x05654&'&\\a#6'76\\x17\\x1e\\x01\\a\\x06\\a\\\"10'4?\\x01\\x06\\a\\x06#&'2\\x16\\x17\\x06\\a\\x16\\a#4'\\x06\\a\\x16\\x15\\x14\\a5654'\\x16\\x17\\x06\\a&'\\x16\\x15\\x14\\a654&#\\\"\\x06\\a#.\\x01/\\x01>\\x04\\x036'&\\a\\x0e\\x01\\x17\\x1e\\x017\\x17'\\a\\x177'\\x17>\\x0215\\x06.\\x01'675&'\\x06\\a#&'5676\\x177.\\x01#5\\x06\\a\\x156\\x17\\x1e\\x03\\x06\\x1575\\\".\\x01'56\\x175'#\\x06\\a\\x1734>\\x013\\x16\\a\\x1507&'.\\x01'&7\\\"\\a\\x152\\x1f\\x01#0\\x06\\a4/\\x015\\\"\\a2\\x17\\x14\\x1e\\x01\\x15\\x16\\a67&'4.\\x011767\\x17\\x16\\x17\\x156767#\\x0e\\x01'4.\\x0156\\x17461#\\x06\\a#&56\\x173&'5\\x06\\a#\\x16\\x17\\x14\\x1e\\x01\\x17\\a\\x1563765\\x16\\x17\\x1635\\\"'&'474656'.\\x01\\x06#\\a\\x176\\x17\\x16\\a\\x0e\\x03\\a\\x0e\\x01\\x17\\x1672\\x17<\\x0115&\\x06\\a\\x06\\x167507\\x06&7>\\x017\\x16\\x15\\a\\x06#\\a\\x16\\x177.\\x0176\\x177.\\x02\\x0f\\x017&#\\x17\\x1676&'&\\a\\x06\\x1e\\x01\\x17&561\\\"&'\\x1d\\x01\\x06\\x0f\\x012\\x17\\x16157>\\x0172\\x170\\x15\\a\\x152\\x1e\\x01'\\x06\\x163\\x16>\\x011\\a\\x16\\x177&67>\\x027&'\\a\\x16\\x0f\\x01&\\x06\\x1775.\\x01\\a\\x06\\x17\\x16\\a\\x06\\\"&7#\\x06\\x15\\x1e\\x0176'&762\\x16\\x177&'\\a2\\x17\\x06\\x0f\\x02\\x174767\\x16?\\x01.\\x02\\x0e\\x01\\x1e\\x023\\x16\\a\\x06'45'\\a\\x1e\\x023654&54\\x17\\x16\\a\\x14\\a73.\\x02#&\\a7\\a'7'\\\"\\a'\\x170#&7'\\x0e\\x01\\a'\\x17\\a'\\x16\\x17\\a'\\a\\x17\\a7\\a'\\a\\x17\\a'\\a\\x17&'.\\x01?\\x01'\\x06\\a\\x17>\\x02\\x17032\\x16\\x17\\x16\\x177'\\x17\\a7\\x16\\x17'\\a0\\x17\\x16\\x06\\a\\x1767'\\x06'&/\\x02\\x17\\a67'\\a\\x06\\a7\\\"\\a\\x17'7\\a6\\x17\\x1e\\x03%\\x1763'\\x17\\a'>\\x01\\x16'2\\x1e\\x03\\x15\\x14\\a#54.\\x02#\\\"\\a#&'56\\x05\\x0e\\x02#\\\"7>\\x01\\x17\\x16\\a\\x16\\a\\x06'&76\\x17567\\x06\\x15\\\"&\\xdb\\v\\v\\n\\n\\v\\x16\\x01\\\\\\x049+aW\\x01\\x01\\x05\\x01Yc.:\\x02\\x01\\x04\\x01\\xa4\\a\\x0f\\x01\\x01\\x02\\t\\b3o\\xa9\\v\\x03\\x06\\x01\\x01\\x01\\x02\\b\\b\\x04\\x10\\f\\x0e\\x04\\x03\\x16\\x05\\x04\\a\\f\\x1c\\x16I9E|,\\x01\\x1cr6\\x01\\b\\x19CIo*\\x11\\f\\r\\x12\\b\\x02\\x05\\x06\\x10\\v\\x02\\x04\\x0e\\x19\\f\\v\\t\\x01\\x04\\x04\\x01\\x02\\x05\\x04\\x05\\x06\\x01\\x01\\x03\\b\\x01\\x04\\x01\\x06\\x06\\x03\\x02\\x01\\x01\\x02\\x01\\x11\\t\\x03\\x02\\x04\\b\\x03\\x03\\x018\\x01\\x02\\x06\\x06\\n\\x03\\x03\\x01\\x17\\x05\\x01\\x01\\x05\\x04\\x01\\r\\x017\\x02\\x01\\x01\\x04\\x01\\x01\\x01\\x02\\t\\x02\\x01\\x03\\x01\\n\\x03\\x01\\x02\\x03\\b\\x02\\x01\\x04\\x05\\x01\\x01\\b\\x02\\x02\\x01\\x02\\x02\\x01\\t\\x03\\x01\\x02\\x01\\x04&\\x01\\x01\\x01\\x01\\r\\x02\\x01\\x01\\a\\x03\\x01\\x01\\x02\\b\\x01\\x01\\r\\x03\\x01\\x01\\x01\\x0e\\v\\x01\\x02\\x01\\x02\\x02\\x01\\x01\\x10\\a\\v\\a\\x02\\x02\\x12\\x03\\x04\\x01\\x01\\x01\\x01\\x02\\x01\\x01\\x02\\x0e\\x15\\r\\x05\\x03\\x0e\\r\\x06\\x04\\x02\\a\\a\\t\\x03\\x06\\x04\\x04\\x06\\f\\x05+\\v\\x10\\x02\\x02\\x14\\b\\x02\\x05\\x12\\x02\\x02\\x0f\\v\\x05\\x05\\x01\\a\\x01\\x13\\x12\\x01\\t\\x01\\x05\\t\\f\\v\\x01\\x03\\b\\x03\\x0f\\x01\\x0e\\r\\v\\x0e\\x04\\x02\\x06\\x06\\x0e\\x05\\x02\\x02\\a.\\x01\\x01\\x01\\x05\\x02\\x06\\b\\x03\\x02\\x02\\x02\\x01\\x01\\x02\\x01\\x01\\x06\\x02\\x01\\x03\\x04\\x04\\n\\x06\\x0e\\x02\\x05\\x02\\x02\\x0e\\x04\\x02\\x03\\x03\\v\\x02\\x03\\x06\\x03\\a\\x10\\x02\\a\\x02\\b\\x02\\x18\\x15\\x03\\x03\\n\\x02\\x02\\x04\\x03\\x01\\x01\\x04\\x04\\x01\\x01\\x02\\x02\\v\\x02\\x03\\x04\\x03\\x01\\x01\\x03\\x03\\x16\\x01\\x04\\t\\x03\\x04\\x02\\x03\\x06\\x02\\x01\\x06\\x01\\x04\\x05\\x03\\x1d\\b\\x01\\x04\\f\\f\\x05\\x01\\x03\\x04\\x01\\x02\\x06\\b\\x02\\x03\\x05\\x02\\x04\\v\\x04\\r\\a\\a\\x05\\x01\\x02&\\x01\\x0fHL%CA\\x15\\\"\\t\\a\\x03\\x03\\x04\\f\\r\\x01\\x10\\v\\x03\\x02\\x13\\v\\x17;\\x05\\x11\\x02\\x03\\x1d\\x1e\\x11\\x0e\\f_\\x04\\x01\\r\\x05\\x04\\x1a(\\x13\\f\\x11\\x1a\\n\\x03\\b\\x04\\x1b\\x1f\\x05\\x01\\x03\\a\\x02\\x01\\x04\\f!$\\x1c\\f\\x1c$\\x05*\\x1e\\x03\\\"\\x02\\x17\\x01\\x02\\x05\\x03\\x12\\x15\\x01\\n\\x02\\x02\\x13\\n\\x02=\\r\\x17\\x1b\\x01\\x05\\x01\\x12\\x16\\x1e%\\x04\\x19[UCB-K+\\x17\\xfem\\x03\\a\\x04\\t\\x8b\\v\\x16\\x03\\x11\\v\\x1bAnI3\\x17\\x01\\x01,MsB<2\\x01\\b\\x0e7\\x01\\x0f\\x04\\a\\x04\\x03\\b\\x02\\x01\\n\\x06\\n@\\b\\x03\\x03\\t\\t\\x03\\x04 \\x04\\x03\\x01\\x02\\x03f\\t\\x10\\x0f\\b\\t\\x1fD\\x0e\\a\\x19(\\x03\\x06P\\v\\n\\x02G\\v\\x05,\\x1d\\f\\b\\xb6\\b\\a\\v\\x1b\\x03\\a\\x01\\xa1sR\\x02\\x03\\v\\x05\\x06\\t\\x05\\a\\n\\x10\\x1c\\n\\x01\\f\\x14\\x19\\x10\\b\\n\\x15)\\t\\a\\x0f\\x17\\x1c\\x14\\x13\\x1c\\x1f1G9Si\\x0e\\x02\\t\\x192&\\x1e\\xfe\\xde\\x0f\\x10\\x13\\r\\x06\\x14\\a\\a\\x03\\x8e\\b\\x05\\x1b\\x1d\\x06G\\x87\\x01\\x02\\x03\\x01\\x01\\x01\\b\\b\\x04\\x01\\x01\\x03\\x02\\x02\\x06\\t\\x01\\x01\\x06\\x02\\x01\\x01\\x01\\x01\\x03\\x01\\t\\a\\x01\\x01\\x03\\a\\f\\x04\\x06\\x01\\x02 \\x01\\x01\\x0e\\x0f\\x01\\x03\\x01\\x01\\x05\\n\\x03\\x06\\x02\\x03\\x02\\x1e\\x02\\x01\\x16\\x01\\x03\\x03\\x15\\x02\\x03\\x02\\x02\\x01\\x04\\t\\x03\\x01\\x01\\x04\\x04\\x05\\x03\\x04\\x01\\f\\r\\x01\\x03\\x02\\x03\\x01\\x01\\x03\\x01\\x06\\x06\\x01\\x03\\x01\\x01\\t\\x04\\x05\\x02\\b\\x03\\x03\\x03\\x03\\x01\\x01\\x06\\x05\\x01\\x01\\x01\\x02\\x03\\x01\\x01\\x06\\x04\\x03\\x03\\x03\\x02\\x01\\x01\\x02\\x01\\x03\\x03\\n\\n\\x03\\x04\\x01\\x04-\\x04\\x02\\x04\\x04\\x01\\x05\\x01\\x02\\x04\\x0e\\a\\x01\\x14\\x02\\t\\x03\\t\\b\\x01\\x10\\x03\\x0e\\t\\x05\\x06\\x02\\x05\\x03\\x04\\x03\\x06\\x11\\t\\v\\x01\\x12\\x01\\x04\\x01\\x06\\a\\t\\f\\f\\x05\\x01\\x06\\b\\x06\\f\\n\\x04P\\x01\\x037\\a\\x05\\x03\\x04\\x05\\x02\\x0f\\x1d\\a\\x06\\v\\x01\\x03\\x04\\x01\\v\\x12\\ay\\x03\\x0f\\x06\\v\\x02\\x05\\x0f\\x05\\b\\a\\n\\x01\\x02\\x1a\\x02\\x01\\x01\\x02\\n\\n\\x02\\x01\\x01\\x01\\x03\\x01\\x04\\x01\\x03\\a\\x02\\x01\\x01\\x01Y\\x0f%\\x01\\x02\\x02\\a\\x06\\x02\\x04\\x04\\f\\x1e\\a\\b\\x10\\a\\a\\x0e\\x04\\x05\\x06\\x1a\\n\\x01\\\\\\x03\\x01\\x05\\x01\\x04\\x03\\x06\\x06\\x03\\x02\\x05\\x02\\x04\\x01\\x04\\x01\\x04\\x05\\x05\\a\\x01\\x01\\x03\\x10\\x04\\x03\\x06\\x04\\x02\\x06\\v\\x01\\x01\\x04\\x02\\x02\\b\\b\\x02*\\n\\x03\\x06\\t\\x02\\b\\v\\t\\t\\t\\x01\\x02\\v\\x03\\x03\\x02\\x0e\\x02\\x03\\x06\\x02\\x0f\\x04\\x15\\x02\\a\\x03\\x03\\x06\\x01\\x06\\a/B\\x1b\\x01%=A\\x15\\x02\\b\\x02\\x1d=\\b\\v\\v\\x01\\x05\\x04\\f+\\x02\\x0e\\x04\\x10\\r$\\t*\\x05\\x1d\\n\\x03\\x04\\x18\\r\\x1f\\n;\\f\\x12\\x1b\\r\\x06\\a\\a\\x13\\x18\\x06\\x01\\x02\\x03\\x01\\n\\x1e!\\x19\\b^+\\rXF\\tD\\x05;\\b\\x02\\x03\\x05\\b\\a\\x05\\x02\\x06\\x047\\x05\\b%+\\x06\\x04\\x1b\\x02\\x15\\x01P\\t\\x10\\x13\\x15\\t'\\x01\\x01\\x1f/#b\\t\\x02\\b(&\\x11\\f\\v\\x02|\\x1f2=;\\x1b\\x10\\x03\\n(P@(\\x0e\\b\\x04\\x01\\x0e\\xaa\\x10\\x10\\x03\\x0f\\n\\x18\\x01\\x017\\x02\\f\\r\\x02\\x02\\r\\r\\x18\\x01\\x06\\x04\\v\\x01\\x01\\x00\\x00\\x02\\x00\\x17\\xff\\xc0\\x02)\\x01\\xc0\\x00\\a\\x00\\r\\x00\\x00%\\v\\x01'\\x1b\\x0173\\x05\\x1b\\x01#\\x03\\a\\x01\\xd1\\xce\\xcc \\xec\\xce7 \\xfeF\\x96\\xec!\\xcbv'\\x01a\\xfe\\xa0\\x01\\x01\\x97\\xfe\\x9e_j\\x01\\x02\\xfek\\x01]\\xca\\x00\\x00\\x00\\x00\\x1a\\x00\\x02\\xff\\xbf\\x02A\\x01\\xc8\\x00\\t\\x00\\x13\\x002\\x00N\\x00e\\x00m\\x00\\x82\\x00\\x85\\x00\\x99\\x00\\xb6\\x00\\xc2\\x00\\xca\\x00\\xe1\\x00\\xe9\\x00\\xfa\\x01\\x02\\x01\\f\\x01Q\\x01l\\x01\\u007f\\x01\\xe2\\x01\\xf9\\x02\\x03\\x02\\r\\x020\\x02:\\x00\\x00?\\x01'37\\x173\\a\\x17'\\x177'37\\x173\\a\\x17'\\a2\\x16\\x15\\x14#\\\"=\\x01432\\x15\\x14+\\x01\\\"54\\\"\\x1d\\x01\\x142545<\\x0163\\a2\\x1d\\x01\\x14+\\x01\\\"=\\x014\\x1732\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15'\\x17\\x16+\\x01\\\"5'#\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14'54+\\x01\\x15327\\x17\\x16+\\x01\\\"5'#\\a\\x14+\\x02\\\"?\\x014;\\x012\\a3'\\x17\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x172\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x02\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15'2\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\x1754\\\"\\x1d\\x01\\x142'\\x17\\x16+\\x01\\\"5'#\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14'2=\\x014+\\x01\\x1572\\x1d\\x01\\x14+\\x01\\x153\\x14+\\x01\\\"=\\x0143\\x1754+\\x01\\x1532\\a3\\a\\x17'\\a7'3?\\x01\\x1e\\x01\\x0e\\x01\\a\\x16\\a\\x06#\\\"&'&'\\x06\\x16\\x17\\x1e\\x02>\\x017\\x16\\x17\\x0e\\x03&'.\\x017.\\x035467&7632\\x16\\x17\\x16\\x176&'.\\x01\\\"\\x0e\\x01\\a&'>\\x01\\x1e\\x01\\a\\x16%\\x0e\\x02\\x14\\x1e\\x0416767\\x16\\x17\\x06\\a632\\x17.\\x01#\\\"\\x016'\\x06\\a\\x06\\a&'67\\x06#\\\"'\\x1e\\x0132767>\\x02.\\x01'&'\\x06\\a\\x06\\a&'67&'\\x16\\x17\\x06\\a.\\x03'&#\\\"\\a\\x06\\a\\x06\\a&'67\\x06\\a\\x16\\x17\\x06\\a&#&'\\x0e\\x02\\x16\\x17670327\\x163\\x06\\a\\x16\\x17&'27\\x16\\x17\\x16\\x17\\x163276727\\x16\\x17\\x06\\a67&'675\\x163\\x16'32\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x142=\\x0143\\a3\\a\\x17'\\a7'37\\a\\x17\\a\\x17'\\a7'?\\x022\\x1d\\x02\\x14+\\x01\\\"=\\x024;\\x022\\x1d\\x011\\x14+\\x02\\x15;\\x012\\x1d\\x01\\x14+\\x02\\x157\\x173\\a\\x17'\\a7'3\\xfb\\x02\\x06\\a\\x02\\x03\\a\\x06\\x02\\x06:\\x02\\x06\\b\\x02\\x02\\b\\x06\\x02\\x06a\\x03\\x01\\x11\\x11\\x11\\x11\\x04\\x03\\x04\\f\\f\\x02\\x02N\\x04\\x04\\x16\\x03\\x03\\x16\\x04\\x04\\x0e\\v\\x04\\x04\\v\\x1c\\b\\x02\\x05\\x03\\x04\\b\\x05\\x04\\x04\\x03\\x03\\x0e\\x11\\f\\x06\\x05\\x05\\x06P\\v\\x01\\x04\\x04\\x04\\x02\\f\\x02\\x03\\x01\\x03\\x04\\x01\\v\\x04\\a\\x04\\f\\t\\x05U\\x04\\x03\\x04\\a\\x04\\x04\\x19\\x04\\x04\\a\\xf8\\x02\\x02\\x17\\x02\\x02\\x17\\x02\\x02\\x13\\x10\\x02\\x02\\x10J\\x0f\\x0f\\x01\\x0f\\x0f\\v\\x15\\x15.\\n\\x01\\x02\\x02\\x02\\v\\v\\x02\\x01\\x02\\x02\\x0e\\x0f\\x10\\v\\v\\n`\\x0f\\x0f\\v\\x01\\x02\\x02\\x02\\x02\\x18\\n\\n\\n\\n\\xc9\\a\\x06\\x02\\x06\\x06\\x03\\x06\\a\\x02\\xe6--\\a=8\\x19\\x19\\x0f \\\"b2-(\\x0e\\v\\x13\\x02\\x05\\x17\\x19*\\x17\\x06\\x05\\x13#\\x1d\\x1a\\x15\\t\\x18\\r\\x0f\\x0e\\x1c1\\x1fA7\\x18\\x18\\x10 \\\"a3+*\\r\\n\\x13\\x03\\a\\x16\\x19)\\x17\\x05\\x05(I3\\v\\x0e\\x12\\xfe\\xb2\\x04\\x04\\x02\\x02\\x02\\x03\\x02\\x02*+\\x17\\x1b\\x05\\x05\\x16\\x14\\x1b\\x1b\\x14\\x14.X\\x1d\\x18\\x01&\\x15\\x16%0\\x17\\x1c\\x05\\x05\\x17\\x13\\x1a\\x1b\\x14\\x14-X\\x1e\\x17\\x15T\\x16\\x02\\x02\\x01\\f$\\x1e\\x11\\x12\\x05\\a\\x06\\x03\\x03\\x04\\b\\x06 (\\x12\\x11\\a\\x04\\x04\\b\\x05\\x0f\\n\\x19\\x19 \\x1f\\x12\\x11\\x06\\x04\\x01\\x05\\x0f\\x12( \\x06\\t\\x01\\x01\\x05\\n\\a\\x054:\\x049:\\x06\\a\\x01\\x03\\x03\\x02\\x06\\b\\x06$$\\x11\\x10\\b\\x04\\x02\\x01\\x11\\x14\\x19\\x19\\x1f\\x1f\\x12\\x10\\a\\x04\\x03\\x03\\x0f\\x11$$\\x06\\t\\x03\\x03\\x03\\a\\am\\x01\\x02\\x0f\\x01\\x0f\\x02\\x01\\x02\\x14\\x02\\f\\a\\x06\\x02\\x06\\x05\\x02\\x06\\a\\x02\\x1c\\a\\x06\\x02\\x06\\x05\\x02\\x06\\a\\x02\\b\\x02\\x02\\x17\\x02\\x02\\x16\\x01\\x01\\x01\\x01\\x13\\x10\\x01\\x01\\x01\\x01\\x10\\f\\x03\\a\\x06\\x02\\x06\\x05\\x02\\x06\\a\\xec\\a\\x04\\a\\a\\x04\\a\\x04\\x04\\a\\x04\\a\\a\\x04\\a\\x046\\x04\\n\\x0e\\x0e(\\x0e\\x0e\\f\\n\\x06\\x06$\\x06\\x06\\x01\\x02\\x04\\x03\\x02\\x12\\x03\\x03\\x03\\x03<\\x04\\x01\\x03\\x03\\x03\\x13\\x03\\x03\\x03\\x14\\x13\\x18\\x04\\x03\\x17\\x17\\x03\\x03;\\x04\\x0e\\f\\t\\v\\t\\x06\\x15\\x1b;\\x04\\x03\\f\\f\\x03\\x04;\\x03*\\x1d2\\x03\\x036\\x04\\x02\\x03\\x03\\x02\\x045\\x02\\x01\\x01\\x01@\\x01\\x01\\x01\\x01\\x01\\x1a\\x02\\x01\\x02\\x1b?\\x0e(\\x0e\\x0e(\\x0e4$\\f\\f$\\v\\x19\\x1b\\x02\\x01\\x1b\\x1b\\x01\\x01@\\x01\\x0e\\t\\v\\x01\\v\\a\\v\\x1d!\\x0e\\n\\x0e\\x1b\\x01\\x01@\\x01\\x17\\b\\v\\x1e3\\x04\\a\\x04\\x04\\a\\x04\\a\\x81\\x1100/\\x10[+\\x1cHF\\x04\\t?@\\v\\x01\\x03\\x01\\t\\x1b\\x16\\x05\\x05\\x12\\x1a\\x0e\\x05\\x03\\x05\\x0eN>\\x03\\v\\x16$\\x14\\x1e2\\x0f[+\\x1cGG\\x04\\t>A\\v\\x01\\x03\\b\\x1b\\x16\\x05\\x05'\\x1e\\x1cQ;\\x04\\x80\\x06\\x11\\x11\\x13\\x11\\x10\\x0e\\n\\a\\v\\x04\\\"\\x1e\\x05\\x05\\x19\\x1c\\x02\\x01>@\\xfe6'T\\n\\x05\\\"\\x1e\\x05\\x05\\x19\\x1c\\x02\\x01>@\\x9e\\x18'\\x04\\x06\\x17\\x13\\x1b\\v\\a\\x04\\x13\\x14\\x01\\x05\\x03\\x02\\x16\\x16\\b\\x04\\x1b\\x1d\\x02\\x05\\x05\\v\\n\\x17\\x0f\\x02\\x03\\x1a\\x1f\\x02\\x06\\x05\\x03\\x1c\\x1b\\x04\\t\\x15\\x16\\x01\\x01\\x05\\x11\\x13\\x0f+--\\x10\\x14\\x14\\x01\\x01\\x16\\x15\\b\\x04\\x1a\\x1d\\x03\\x01\\x01\\x1e\\x1b\\x02\\x03\\x1a\\x1d\\x04\\x02\\x01\\x1d\\x19\\x04\\t\\x15\\x15\\x01\\x02\\x01\\x06\\x12_\\x014\\x0e\\x0e4\\x01\\x012\\v\\v2\\x01U\\x04\\a\\x04\\x04\\a\\x04\\a\\x0e\\x01\\x04\\a\\x04\\x04\\a\\x04\\x01\\x06\\x18\\x01\\x01\\x01\\x01\\x01?\\x01\\x01\\x01\\x01\\x02\\x1a\\x02\\x01\\x02\\x1bd\\a\\x04\\a\\x04\\x04\\a\\x04\\x00\\x00\\x03\\x00\\x19\\x00\\x00\\x01\\xe7\\x01\\x80\\x00\\x02\\x00\\x05\\x00\\n\\x00\\x00\\x013\\x11\\x01\\x03\\x11\\x1f\\x01#'#\\x01<\\xaa\\xfeު\\xe6lJ\\x1eO\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\x8e\\xf2M\\x00\\x00\\x00\\x00\\x03\\x00\\x02\\xff\\xe0\\x02\\b\\x01\\xa0\\x00\\x06\\x00\\x0f\\x00\\x12\\x00\\x007!\\x17!\\\"&'%\\x16\\x0f\\x01\\x0132\\x16\\x17\\a#7\\x02\\x01;;\\xfe\\xe3\\r\\x1b\\x06\\x01\\xc9\\x11\\x13)\\xfe\\xffX\\r\\x1b\\x06=\\xe7tGg\\x11\\vf\\x1b G\\x01\\xc0\\x10\\v\\xf5\\xc8\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xbf\\x02\\x03\\x01\\xc1\\x00\\f\\x00\\x1f\\x00\\x007\\x1e\\x01\\a\\x06+\\x01\\\"&?\\x01>\\x01762\\x17\\x13\\x16\\x06+\\x01\\\"'.\\x05>\\x01\\x982\\x1e\\x1d\\x04\\t\\xaf\\b\\t\\x04}\\x04\\x0fb\\x06\\x10\\x04\\xf0\\x04\\t\\b\\xae\\t\\x05\\t'\\x15\\x1f\\f\\t\\t\\x19\\xd46\\x9b;\\b\\x0e\\b\\xfb\\b\\x01\\xde\\b\\b\\xfe\\x1e\\b\\x0e\\b\\x12J*H3G<I\\x00\\x00\\x00\\x01\\x00\\x17\\xff\\xc0\\x01\\xe9\\x01\\xc0\\x00?\\x00\\x00%\\x0e\\x01\\x1f\\x01&'&\\x15\\x17#654\\x0f\\x01676&/\\x0176/\\x01\\x16\\x17\\x16?\\x01\\x16\\x17\\x166/\\x01\\x16\\x17\\x16?\\x01\\x16\\x17\\x16?\\x01\\x06\\x15\\x06\\x16?\\x01\\x16\\x17\\x16?\\x01\\x06\\a\\x06\\x1f\\x01\\x06\\x01\\x80\\x06\\x01\\x02\\n_\\n\\x13\\x06\\x1e\\x06\\x13i\\x05\\x05\\x02\\x01\\x06i\\x11\\v\\x05\\x150\\n\\b\\x05\\x0f4\\x03\\a\\f\\x02\\x1b\\x1e\\n\\v\\x06+&\\x05\\x06\\v(\\x1b\\x02\\f\\a7\\r\\x02\\x05\\b:\\x12\\x03\\x05\\v\\x11g`\\x05\\x04\\r#\\x14\\x02\\x02\\x0eqg\\n\\x0e\\x02\\x16\\x14\\x0f\\r\\x04\\x05]\\a\\x05\\rC\\n\\x03\\x02\\n <\\x02\\x05\\a\\b\\x82\\x12\\x05\\a\\fPH\\b\\f\\a\\x17x\\n\\b\\a\\x05>\\x1b\\x05\\n\\x02\\r<\\a\\r\\x05\\aZ\\x00\\x00\\x00\\x10\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1b\\x00#\\x00+\\x003\\x007\\x00;\\x00C\\x00G\\x00K\\x00O\\x00W\\x00_\\x00\\x00\\x01\\x17\\a5\\a73\\x15'7\\x17#\\x15\\a'5\\x0f\\x01#\\x15'7\\x153?\\x01\\x17\\x15\\x17\\a5#'735%53\\a\\x17\\x15#'%\\x15'\\a#57'\\x03#'7'57\\x1f\\x01\\x15#7'53\\x177\\x15\\a'\\x17\\a#5\\a'53\\x17\\a'357\\x17\\x15'\\x17#5\\x1773\\x15\\x01\\\"\\x1fLv -#78-\\v\\v\\x12\\v\\x8088\\x80ZL B8\\x80\\n\\n\\x80\\xfe\\xb9P [\\x10Z\\x01\\x1c Z\\x0fZ\\x1fd- M\\x8b!L\\xd0N\\x1fZ\\x0fZ  L/\\x1f-\\x93!mj87,\\v\\vz P!Z\\x10\\x01^\\x1fMl\\x1f\\x1flv88\\x80\\n\\n\\x80\\xa8\\n-78-\\nM -\\x157-\\n\\v-\\x18N\\x1f[\\x0f[.N [\\x0f[\\x1f\\xfe\\xc4 LG- MdO Z\\x10[[- Mj l/ -\\x9477\\x80\\v\\v\\x80* O [\\x10\\x00\\x00\\x00\\x00\\x02\\xff\\xfa\\xff\\xc3\\x02\\x06\\x01\\xbd\\x00#\\x00F\\x00\\x00767>\\x05\\x16\\x17\\x16\\x17\\x1e\\x01\\x0f\\x01\\x15\\x0e\\x01'&'.\\x04\\x0e\\x02\\a\\x06/\\x01&\\x01\\x06\\a\\x0e\\x04\\\"&'&'.\\x01?\\x01>\\x01\\x17\\x16\\x17\\x1e\\x02>\\x027076\\x1f\\x01\\x16\\x02\\x03\\x05\\x0e\\x11($<?W073\\x06\\x05\\x032\\x03\\r\\x06\\r\\x17'\\\"4\\x13!\\x0e\\x18\\x11\\r\\b\\x0ej\\x0e\\x02\\x04\\x03\\x05\\r\\x12($<?W119\\x06\\x04\\x023\\x03\\r\\x06\\r\\x183):\\x15\\\"\\x15\\x11\\x01\\t\\rj\\x0e$\\x04\\b\\x16\\x1a.\\x19\\x18\\x01\\x14\\x18\\x1a\\x18\\x03\\f\\x06r\\x01\\x06\\x04\\x03\\x06\\v\\x13\\x10\\x14\\x04\\x01\\n\\x14\\x1b\\x15\\x0e\\bB\\b\\x01F\\x04\\b\\x16\\x1a.\\x19\\x19\\x14\\x17\\x18\\x1a\\x03\\r\\x06r\\x06\\x05\\x03\\x06\\f\\x18\\x14\\x12\\x04\\x11\\x1f\\x1d\\x01\\r\\tA\\b\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x92\\x02\\x80\\x00\\xee\\x00\\x03\\x00\\a\\x00\\x13\\x00\\x17\\x00\\x1b\\x00+\\x00/\\x004\\x008\\x00<\\x00@\\x00H\\x00O\\x00\\x00?\\x013\\a%3\\a#73\\x06+\\x01732\\a\\x06\\a\\x06%#73\\x05\\a#576+\\x01732\\x16\\x0f\\x01#\\\"7>\\x02\\a53\\a3613\\a373\\x15'3\\x15#\\a73\\x15'3\\a#73\\a3\\x173\\a#\\\"&7\\xee\\x16;\\x16\\xfe\\xd7V\\x04R\\xadD\\x16#d)3\\a\\x04\\x01\\n\\x04\\x01F>(>\\xfeM\\x04[\\xce\\x05\\ap\\x15u\\x15\\x10\\a\\x0e-\\t\\x04\\x01\\x04\\x04\\xcdN\\x05\\xfa\\x16;\\x16\\xa3\\x05ZIIM\\t\\x04R\\xfa:'\\x90(:\\x16\\x1a8\\x85\\x16^\\x11\\r\\a\\x93\\x1e\\x1e\\x12\\x06\\x12\\x1e7\\x05\\x01\\x0e\\x05\\a5<\\x06\\x06\\x1b\\x06\\x1b\\x19\\n\\x12\\x05\\x02\\x05\\x067\\x06\\x06\\x1e\\x1e\\x06\\x06\\x1e\\x06\\f\\x06\\x06N55\\x1e\\x1e\\x1e\\x0e\\a\\x00\\x00\\x00\\x00\\x01\\x00\\x18\\xff\\xdf\\x01\\xe8\\x01\\xa1\\x00.\\x00\\x007\\\"\\x061\\\"&5064.\\x01'&>\\x01\\x1e\\x0112506162\\x1e\\x0232>\\x011\\x1e\\x010\\x06\\a0\\x16\\x150\\x06#0&\\xfc\\x01X\\x01VWAG\\x02\\x01 \\x01HI\\x01\\x02\\x01g\\x02\\x02\\x02\\x01\\x01EE\\x01\\x1f\\x8c\\x01SV\\x01Y]w<\\x01~\\x02\\x16\\x17\\x01\\x01e\\x01\\x18\\x18\\x02\\x95\\x01\\x01NN\\x18\\x17\\x01f0\\x01z\\x01?}\\x00\\x00\\x06\\x00\\x00\\x00Z\\x02\\x80\\x01 \\x004\\x008\\x00?\\x00K\\x00R\\x00^\\x00\\x00%\\x17#'\\a#5#\\x06#\\\"&'#\\x14\\x1673\\x0e\\x01&547#\\x15#53\\x15#\\x153\\x15>\\x01\\x16\\x17>\\x0132\\x17353\\x15#\\x153\\x1773\\x053.\\x01\\x1626&#\\\"\\x06\\x175#535#535#\\x1573\\x157'\\x15#\\x1f\\x013'7#\\a'#\\x17\\a3\\x02J6@\\x17\\x16\\xd4\\x01\\f\\x16\\x18\\\"\\x02V#\\v*\\r@5\\x0211m<7\\f32\\t\\x06\\x1e\\x15\\x16\\r\\x01\\x978w\\x16\\x16>\\xfe\\f/\\x04&\\x84!\\r\\x0e\\x0f\\x10\\x0e\\xc58878_18228\\x8a\\x1b(.-&\\x1a\\x1a(..&\\xa4=\\x19\\x19\\f\\x13\\\"\\x17\\x12\\f\\x10!\\x10%#\\n\\bM\\xb8)\\x1a\\x18\\x15\\x10\\x17\\x1c\\x14\\x19\\x0fL1\\x10\\x18\\x18+\\x13\\x01E \\x1f\\x1f3\\x1e,\\x1c\\\"\\x1f\\xa7(.99,\\\"\\x1e42\\x1d\\x1d33\\x00\\x00\\x00\\x00\\x16\\xff\\xff\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\v\\x00\\x12\\x00\\x18\\x00\\x1d\\x00$\\x00*\\x000\\x006\\x00<\\x00B\\x00I\\x00O\\x00U\\x00\\x89\\x00\\x8e\\x00\\x95\\x00\\x9b\\x00\\xa1\\x00\\xa7\\x00\\xad\\x00\\xb3\\x00\\xb9\\x00\\x00\\x122\\x16\\x0e\\x01+\\x01\\\"&=\\x016\\x054/\\x01\\x15\\x14\\a'\\x16\\x1f\\x01.\\x01\\a\\x06\\a\\x176'\\x06\\a\\x17&57'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x17&5\\a\\x14\\x1f\\x01547'\\x1e\\x01\\x17&/\\x01\\x1767'\\x06726&+\\x01\\\"=\\x0146\\x17\\x16>\\x0154&'&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x16;\\x012\\x16\\x1d\\x01\\x14\\x06#\\\"&#\\x0e\\x01\\x15\\x14\\x163\\x166=\\x01367'\\x06\\x1767'\\x16\\x17\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x06\\a\\x1767'\\x14\\a\\x17'\\x16\\x1f\\x016765'\\x06\\a\\x84\\xba\\x83\\x01\\x83]\\xaa\\x17\\x1f\\x01\\x01\\x8a\\x037\\x04\\x02\\x03\\x017\\a\\\"\\xe7\\b\\b\\b\\x03\\x10\\a\\a\\x1b\\x02\\x01\\x1e\\x06\\x05#\\a\\a5\\x06\\x04\\\"\\x05\\x061\\x05\\x03$\\x03\\x04.\\x03\\x03'\\x01\\x03.\\x02\\x024\\x061\\x037\\x038\\x06\\\"\\x12\\x03\\x01;@\\x04\\x06H\\x02\\xfd\\x0f\\r\\r\\x0f\\\"\\b+\\x17\\a\\x0e\\t\\v\\t\\n\\n\\x01+>*\\x10\\r\\r\\x10!\\x03\\x06!\\x17\\x05\\b\\x03\\n\\x0e\\x0e\\x06.OB\\t\\b\\t\\x03\\x10\\b\\x06\\x1b\\x02\\x01\\x01\\x1d\\x06\\x06$\\x05\\t6\\x05\\x05#\\x05\\x050\\x05\\x04$\\x03\\x05.\\x04\\x03(\\x0326\\a\\x01)\\x03\\x03\\x02@\\x04\\x06\\x01\\xa0\\x84\\xb9\\x83 \\x16\\xab\\\\\\x1a\\v\\v8\\x01\\a\\b!\\x04\\x066\\x13%\\x91\\x01\\x02\\t\\a\\x01\\x02\\x04\\x1b\\x06\\a\\b\\x04\\x03\\x04$\\x03\\x02\\x1c\\x04\\x05#\\x05\\x04\\x17\\x06\\x04$\\x06\\x05\\x15\\x06\\x06(\\b\\a\\x14\\x06\\b6\\r\\x0e\\x01\\f\\n8\\x01\\b\\x06 \\x13%\\b\\x04\\x05\\\\@\\x05\\x03I\\t,\\x18\\x19\\t/\\x1d\\x1f\\x05\\x02\\x06\\f\\b\\t\\x0e\\x01\\x02=,8\\x18\\x19\\x06\\x03/\\x17!\\x02\\x01\\x0e\\n\\n\\x0e\\n>38\\x01\\x02\\b\\x06\\x01\\x02\\x03\\x1c\\x06\\a\\b\\x04\\x03\\x04$\\x03\\x02\\x1d\\x05\\x04#\\x05\\x03\\x17\\x05\\x05$\\x06\\x05\\x15\\x06\\x06(\\b\\b\\x055\\f\\x0e*\\b\\f\\t\\bA\\x06\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x14\\xff\\xc0\\x01k\\x01\\xc0\\x00\\x1c\\x00$\\x00\\x00\\x01#\\x11\\x14\\x06\\\"&463\\\"&463\\\".\\x01546;\\x012\\x16\\x15\\x14\\x0e\\x01\\\"2\\x16\\x14\\x06\\\"&4\\x01\\x15U2G22##22#\\x17'\\x172#\\xab#2\\x17':F22F2\\x01\\x15\\xff\\x00#22G22F2\\x17(\\x17#22#\\x18'\\x172F22F\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00A\\x00I\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x15\\x142=\\x014\\\"\\a\\x15\\x142=\\x014\\\"\\a\\x15\\x142=\\x014\\\"\\a\\x15\\x142=\\x014\\\"\\x05>\\x01.\\x01\\\"\\a\\x06\\\"'&\\\"\\x0e\\x01\\x16\\x17\\x166754\\\"\\x1d\\x01\\x142\\x01\\x88\\x17!!\\x17\\xfe\\xb0\\x17!!\\x17\\xe4\\x1e\\x1eK\\x1e\\x1eK\\x1e\\x1eJ\\x1e\\x1e\\x01C\\x04\\x02\\x04\\a\\n\\x040\\xb62\\x04\\n\\a\\x04\\x02\\x04:\\xcd<\\x1e\\x1e\\x01\\xa0!\\x17\\xfe\\xb0\\x17!!\\x17\\x01P\\x17!R\\xc8\\x0e\\x0e\\xc8\\x0f\\b\\xd8\\x0f\\x0f\\xd8\\x0f\\x16\\xc8\\x0e\\x0e\\xc8\\x0f-\\x86\\x0f\\x0f\\x86\\x0f\\xf3\\x04\\n\\a\\x06\\x04))\\x04\\x06\\a\\n\\x040\\x01\\x8d\\x86\\x0f\\x0f\\x86\\x0f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00N\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x174&\\x06\\x15\\x14\\x1632>\\x01\\x1727'\\x06#&5676.\\x02\\x06\\a7#\\a3\\a\\x06\\a\\x06547#\\a3\\x06\\a\\x14\\x1667\\a37676\\x17\\x16\\a\\x0e\\x03\\x1e\\x02\\x01\\x97\\x11\\x18\\x18\\x11\\xfe\\x92\\x11\\x18\\x18\\x11\\x87\\x1b\\x1b\\x10\\f\\x03\\v\\f\\x9d&\\x0f\\x12\\v\\f\\t\\x01\\x0e\\a\\a\\x1a\\x1e\\\"\\f\\tD\\n \\x14\\r\\x1a\\x12!M\\t \\x17\\x01\\\".\\x0f\\b-\\x1a\\t\\x19\\x15\\x06\\x03\\x04\\x01\\b\\x03\\x05\\x03\\a\\x12\\x01\\xa0\\x18\\x11\\xfe\\x92\\x11\\x18\\x18\\x11\\x01n\\x11\\x18r\\x11\\r\\r\\x11\\v\\x10\\x03\\x0e\\xdd4\\a\\x1e\\x01\\f\\x065\\x19&\\x12\\x01\\x17\\x15($O\\x1e\\x04\\x03\\x0e\\b\\x82$]\\v\\x17\\x16\\x10\\x19 g$\\x04\\x03\\x14\\n\\f\\x03\\x1a\\x0e\\x19\\x0f\\x10\\b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xf0\\x01\\xc0\\x00\\x11\\x00\\x15\\x00\\x00%\\x16\\x14\\x0f\\x01?\\x02\\a&'&4767\\x1e\\x01\\a7'\\a\\x01\\xea\\x06\\x06I\\x01\\x01\\x01\\xac\\x1c\\xd6\\x06\\x06M\\xa5&\\xaa\\xd0LLL\\xce\\x06\\x10\\x06J\\x01\\x01\\x02\\xac\\x1d\\xd5\\x06\\x10\\x06M\\xa5&\\xaa|LLL\\x00\\x02\\xff\\xfd\\x00\\n\\x02\\x82\\x01s\\x00C\\x00R\\x00\\x00%\\x16\\x06\\a\\x0e\\x01.\\x01'&76'&\\a\\x06\\x17\\x14\\x17\\x15\\x16\\x06'\\x06&756'&\\a\\x06\\x17\\x16\\x15\\x16\\x06'.\\x01676\\x17>\\x01'&63\\x1e\\x0332>\\x0372\\x16\\a\\x06\\x16\\x176\\x052654&+\\x01\\\"\\x06\\x15\\x14\\x1e\\x013\\x02q\\x10\\x02\\x0e\\x0e#\\x1f\\x18\\x01\\x02\\a\\x171+-1\\x10\\x01\\x14(''(\\x15\\x121+,1\\x13\\x01\\x10)$\\x1c\\x1c\\x03\\v\\x19\\x1c\\x1f\\x10\\n\\x1255\\x19)\\x14\\x1d\\x0f\\x0e\\x16\\x13\\x15\\\"\\x1555\\x12\\v\\x11\\x1f\\x1d\\xfe\\xe4\\x1d\\\"%\\x1a\\x01\\x1a%\\r\\x1e\\x14{\\x12;\\f\\x0e\\b\\n\\x1c\\x14\\x11\\x100\\x16\\x13\\x10\\x12,\\x02\\x01\\x01\\x1fA\\x01\\x01@ \\x01-\\x13\\x11\\x12\\x15/\\x02\\x01\\\";\\x05\\x03,-\\v\\x19\\x03\\x0120-V\\x01\\x19\\x1f\\x19\\x10\\x18\\x18\\x11\\x01V-02\\x01\\x03\\x01(\\x17\\x1a%%\\x1a\\x0e\\x1c\\x15\\x00\\x00\\x00\\x0e\\xff\\xfe\\xff\\xc0\\x01\\x99\\x01\\xc2\\x00l\\x00t\\x00|\\x00\\xc6\\x00\\xd2\\x01\\x19\\x01 \\x01*\\x016\\x01>\\x01K\\x01W\\x01c\\x01m\\x00\\x00%\\x1e\\x01\\x06\\a\\x06\\a\\x0e\\x01\\a\\x06\\a\\x06+\\x01\\\"'&'.\\x01'&'.\\x016?\\x014>\\x017&'&'&7&7&7&7&6\\x17636\\x176\\x17632\\x1e\\x01362\\x16\\x176\\x173\\x16\\x17673076\\x17462\\x172>\\x01\\x16\\x176\\x176\\x172\\x176\\x16\\a\\x16\\a\\x16\\a\\x16\\a\\x16\\a\\x06\\a\\x06\\a\\x1e\\x01\\x15'6.\\x01\\a\\x06\\x17\\x16\\x06>\\x01.\\x01\\x0e\\x01\\x16\\x03\\x0e\\x01\\x16\\x1767\\x06\\a\\x1e\\x037&'>\\x017&'67\\\"'67&'67\\x06'67\\x06'467\\x06'67\\\"#\\\"57&\\a&7\\x06\\a&461\\x06\\a&7\\x06\\a&7\\x06\\a&5\\x06\\a&\\a&\\x06\\x15\\x14\\x16\\x172656&'\\x1e\\x01\\x17\\x06\\a\\x16>\\x017&'\\x16\\x17>\\x01&'\\x06\\a&'\\x14\\a&'\\x16\\a&'\\x16\\a&'0\\x16\\x06\\x15&'\\x16\\a&\\a\\x17\\x16#\\x16\\x17\\x06'\\x1e\\x01\\x17\\x06'\\x16\\x17\\x06'\\x16\\x17\\x06\\a\\x16\\x17\\x06#\\x16\\x17\\x06\\x17&\\x06\\x17\\x1676\\a\\x1676'&\\a\\x0e\\x01\\x16\\x176&'.\\x01\\a\\x06\\x14\\x17\\x1e\\x01&\\x16>\\x01.\\x01\\x0e\\x01\\x1726'4&\\a&\\x06\\x15\\x14\\x1e\\x01754&\\\"\\x06\\x1d\\x01\\x14\\x1626\\x176&'&\\a\\x0e\\x01\\x17\\x1e\\x0167>\\x01&'&\\a\\x06\\x17\\x16\\x01t\\x0f\\x15\\x03\\x13\\x01\\n\\x04%\\x0e\\x1b\\x19\\x1c$\\x01$\\x1c\\x19\\x1c\\r%\\x04\\n\\x01\\x13\\x03\\x15\\x0f\\x04\\x0e\\x12\\x0e\\x0f\\x02\\x0f\\x02\\x0f\\x01\\v\\x03\\n\\x04\\b\\a\\x05\\t\\f\\x06\\x13\\x04\\f\\b\\x0f\\x04\\x04\\x02\\x05\\x06\\x01\\a\\x04\\a\\x02\\v\\v\\x06\\x16\\n\\t\\x16\\a\\x01\\t\\f\\t\\x03\\a\\x01\\b\\x04\\x06\\x04\\x0e\\b\\v\\x05\\x13\\x05\\r\\t\\x05\\a\\b\\x04\\n\\x03\\v\\x01\\x0f\\x02\\x0f\\x02\\x0f\\x16\\x18\\x12\\x01\\x17%\\x17\\f+/:%\\x06\\x1d.$\\x06\\x1c\\x03\\n\\x0e\\x02\\x10)=D\\x1a\\x03\\x11\\x16\\x10\\b\\x06\\x01\\x02\\x14\\x05\\x05\\x02\\x14\\x04\\x06\\x04\\x14\\x04\\t\\x01\\v\\b\\b\\x02\\x0f\\x01\\b\\x03\\f\\x02\\t\\x01\\x02\\a\\x02\\a\\x0f\\x06\\t\\x11\\x03\\a\\f\\n\\x01\\x06\\r\\n\\x03\\x05\\t\\n\\x04\\x03\\n\\x06\\x02\\x03\\x0e\\x02$\\x13\\\"\\x1e\\x18\\x18\\x1d\\x01$\\x8d\\x05\\x14\\x02\\x01\\x06\\v\\x17\\x1c\\x03\\x19D=)\\x0f\\x03\\x0f\\t\\x02\\x01\\x0e\\x03\\x02\\x06\\n\\x03\\x04\\v\\t\\x06\\x03\\v\\f\\x06\\x01\\n\\f\\a\\x03\\x11\\n\\x06\\x01\\x19\\b\\x02\\x01\\n\\x03\\v\\x01\\x04\\a\\x01\\x0f\\x03\\a\\b\\v\\x01\\t\\x04\\x13\\x03\\a\\x05\\x14\\x027#1\\x02\\x01.+p\\t\\a\\x0f\\x06\\x04\\b\\x15\\x0e\\ng\\n\\a\\r\\x10!\\f\\t\\v\\x10-%%.\\x1d\\x06%.\\x1c~\\x14&\\x01%\\x13\\x13(\\x10\\x1cI#1\\\"#1\\\"R\\r\\x02\\t\\x15&\\x0e\\v\\n\\b\\x16\\x1e#\\f\\n\\x0e\\x15\\b\\x03\\b\\x0f\\t\\xd8\\n%2\\x15\\b\\x1c\\x1d$\\x03\\x15\\t\\x1c\\x1c\\t\\x15\\x03$\\x1d\\x1c\\b\\x152%\\n\\x06\\x16 \\x11\\t\\x04\\t\\x04\\f\\n\\t\\b\\n\\v\\t\\n\\v\\b\\x0e\\x01\\b\\x06\\x02\\b\\x05\\x03\\x01\\x03\\x01\\x04\\x01\\x02\\n\\r\\x1f\\x1f\\r\\x01\\n\\x03\\x01\\x04\\x01\\x03\\x01\\x01\\x02\\x05\\b\\x02\\x06\\b\\x01\\x0e\\b\\v\\n\\t\\v\\n\\b\\t\\n\\f\\x04\\t\\x04\\r# \\x02\\x17\\\"\\x0e\\x04\\x02%'^\\x17/+\\r\\x18/*\\x01\\x1f\\n\\x19\\x1e\\a!\\x14#\\x1b\\v\\x0f\\x05\\x02\\x01\\x02\\x03\\x01\\x02\\x03\\x01\\x03\\x06\\x04\\x02\\n\\x04\\x01\\x01\\a\\b\\x01\\x02\\x0f\\x02\\x03\\x03\\x02\\t\\x06\\x01\\x01\\b\\n\\x01\\x06\\x02\\x05\\x03\\x06\\x01\\x04\\x02\\x01\\x06\\x02\\a\\x03\\a\\x03\\t\\x05\\x04\\x05\\b\\x02\\a\\x02\\x0f\\x01l\\x01\\x17\\n\\v\\x12\\x01\\x10\\v\\r\\x16\\r\\x03\\x02\\x01\\x03\\x02\\x01\\x02\\x10\\x0f\\x1c\\\"\\x14!\\a\\x1e\\x19\\n\\a\\x01\\x0f\\x02\\a\\x02\\b\\x05\\x04\\x05\\t\\x03\\a\\x03\\a\\x02\\x06\\x01\\x02\\x03\\x02\\x06\\x03\\x05\\x02\\x06\\x01\\n\\b\\x01\\x01\\x06\\t\\x02\\x03\\x03\\x02\\x0f\\x02\\x01\\b\\a\\x01\\x01\\x04\\n\\x02\\x04\\x06\\x03\\x19\\x06&$\\x0e(%\\xb6\\x04\\x14% \\x0e\\x01\\v)$l\\b*\\x10\\x11\\x0f\\a\\x05'\\x13\\x17\\r\\x8b\\x17\\r+.\\x18\\r+\\xea\\x1a\\t\\t\\v\\x01\\x01\\x0e\\t\\x04\\x10\\r~\\x01\\x16\\x1f \\x16\\x01\\x16\\x1f \\x15\\x13-\\b\\x10*\\x10.\\n\\x04\\x02\\x10Y\\n$)\\f\\x02\\r\\x1f'\\x14\\x00\\x02\\x00\\x00\\xff\\xfe\\x02\\x00\\x01\\x82\\x00\\x1b\\x005\\x00\\x00%\\x15254'.\\x02'.\\x01#\\\"\\x06#\\\"&#\\\"\\a\\x06\\x15\\x14\\x1e\\x037\\x16\\x15\\x14\\x06#\\\".\\x01547\\x0e\\x03\\x15\\x14\\x1e\\x0132654&\\x01VR\\x15\\x03\\x06\\x11\\x10\\x16B\\f\\b\\x15\\n\\t\\x1f\\b\\x17\\f\\x1a\\x16*6I}\\x057+<p@\\x04\\x15\\x1e\\\"\\x13q\\xa9MSF,\\xa3\\x01/\\x05\\\\\\v\\v\\x0e\\b\\v\\x19\\x14\\x0f\\\"J\\x04\\b\\x1a\\x1d\\x1a\\x11\\x1e\\x16\\x05\\x1c\\x1f)9\\x19\\n\\t\\x01\\x05\\f\\x19\\x13)Y;;(\\x1a5\\x00\\x00\\x00\\b\\x00\\t\\xff\\xe0\\x01\\xf8\\x01\\xa0\\x00\\x03\\x00\\x06\\x00\\n\\x00\\x0e\\x00\\x11\\x00\\x16\\x00\\x1a\\x00\\x1e\\x00\\x00\\x137\\a#%\\x17'\\a\\x17\\x033?\\x01\\x1f\\x023\\x03\\x13\\x17#/\\x01\\x05?\\x01\\a\\x05\\x03/\\x01\\x1cN\\x06[\\x01\\x83\\a\\x87\\x9c{\\xe1[\\r\\x8e=Q\\x0eZ\\xe0\\x89XZ\\x06\\x01\\xfe\\xdc\\x02\\x81\\x88\\x01$\\x91f+\\x01\\x1ej\\x83\\x8d\\x85\\x93\\xba\\xf0\\x01\\x06\\t\\x9aBX\\t\\xfe\\xfa\\x01\\x85vq\\x12&0\\x0e\\x93\\x11\\xfe\\xe4\\xc9S\\x00\\x02\\x00\\x15\\xff\\xc0\\x01\\xac\\x01\\xc1\\x00\\x13\\x00\\x1e\\x00\\x00%\\x14\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x015462\\x16\\x05\\x14\\x1e\\x01>\\x0154&\\\"\\x06\\x01\\xabR;\\b\\x06`\\x06\\b;Rw\\xa8w\\xfe\\xf1\\x1c()\\x1c+3+\\xf5=q\\x13f\\x06\\b\\b\\x06f\\x13q=TwwT\\x1a#\\b\\b#\\x1a %%\\x00\\x04\\xff\\xfd\\x00\\x1e\\x02}\\x01b\\x00k\\x00w\\x00\\x88\\x00\\x8c\\x00\\x00\\x017\\x16\\x17\\x16\\x17\\x14\\a\\x0e\\x02&'\\x16\\x17\\x16367\\x17\\x06\\a\\x0e\\x02#\\\".\\x01\\x0e\\x01\\a\\x06\\x17#.\\x04#\\\"\\x06\\x16\\x17#.\\x02'&\\x06\\x17\\x1e\\x01676&'&\\x06\\x15\\x14\\x1e\\x0132>\\x0136\\x16\\x15\\x14\\a\\x06#\\\"&'47>\\x01\\x17\\x1e\\x01\\a\\x0e\\x02'&'&'&767>\\x03\\x17\\x16\\x1f\\x01\\x14\\x166&'0#\\\"\\x0e\\x0272\\x16\\x15\\x14#\\x14\\x06#\\\".\\x0154632\\x0624\\\"\\x01\\xd7\\x01[&\\x12\\x11\\x04\\r\\x13\\\"0\\x1f\\n\\x017\\x1b\\x19\\x19\\x04\\x04\\x03\\x03\\x134\\x1d\\n\\x1d\\x10\\x11\\t\\x02\\x04\\x171\\x02\\f\\t\\x10\\x18\\x10\\x18\\x17\\x02\\x02.\\t%&\\x1266\\x15\\n*&\\t\\x0f\\x13\\x18\\n\\x10\\x06\\x05\\x01\\x04\\x04\\x03\\x01\\x05\\f\\r\\b\\b\\x0f\\x1a\\x01\\x16\\r$\\x14\\x16\\x10\\x06\\x06\\x1a$\\x163\\x1b\\f\\x05\\t\\x0e\\x1aJ$D33\\x11?I<.$\\x12\\x19\\x01\\a\\x0e\\n\\x06&\\v\\x0f\\x01\\x0f\\v\\a\\f\\a\\x0f\\v\\x01\\a\\x17\\x17\\x01Y\\x01\\r\\x16\\n<\\x02\\x04\\t\\a\\x03\\x14\\x15\\x18\\x01\\x1d\\x01\\x0f\\x02\\x10\\x02\\x03\\v\\x0e\\x03\\x02\\x02\\v\\t\\x18 \\x04\\x1a\\r\\x11\\b\\x1c\\x1e\\n /\\x16\\x03\\tE&\\x15\\x12\\x06\\f\\x13-\\x02\\x01\\t\\t\\x05\\a\\x02\\x01\\x01\\x01\\a\\b\\v\\x03\\x03\\x17\\x13\\x19\\x0f\\b\\x01\\v\\x0e0\\x15\\x12\\x1a\\v\\x02\\x04(\\x11\\x13$#>0\\x16\\x1b\\a\\x03\\x02\\x02\\x184\\x1a\\x14\\\"/\\x01\\x06\\n\\r\\x12\\x10\\n\\x01\\v\\x0f\\a\\f\\b\\n\\x10\\x1d\\x10\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00)\\x001\\x00>\\x00J\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\x06\\x1e\\x01>\\x01.\\x01\\a2654.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x01\\x17\\x16\\x177&47'\\x06\\a\\x16\\x14\\x16>\\x01.\\x01\\x0e\\x01\\x16767'\\x0e\\x01'\\a\\x167>\\x02?\\x01&'\\x06&'&\\a\\x176\\x16\\x91Α\\x91Α\\x013\\r\\a\\x17\\x19\\x0e\\a\\x17\\xf6\\x0e\\x12\\b\\x0f\\t\\r\\x12\\b\\x0f%\\r+\\x18''\\x18+\\r\\x10\\xc9\\x17\\a\\x0e\\x19\\x17\\a\\r%%\\x04.\\x04R+\\x17/2\\x02\\x13\\x1a\\b.\\x04%\\x14%\\x032/\\x17+R\\x01\\xb8\\x91Α\\x91\\xce?\\x16\\x1a\\r\\a\\x17\\x19\\r\\xcd\\x13\\r\\t\\x0e\\t\\x13\\r\\t\\x0e\\t\\x032\\x1d(\\x1b^\\x1b(\\x1d2\\x0e+\\x97\\r\\x19\\x17\\a\\r\\x1a\\x16E$4\\x01//\\x14)\\x17\\x0e\\x0e\\x14\\x05e\\x014$\\b\\x16\\x15\\x0e\\x17)\\x150\\x00\\x00\\x06\\x00\\x04\\xff\\xe0\\x01|\\x01\\xa2\\x00\\x0e\\x00'\\x00;\\x00F\\x00S\\x00k\\x00\\x00753\\x15\\x0e\\x01\\\"&=\\x013\\x15\\x14\\x166'>\\x01\\x17\\x15\\x14\\x0e\\a\\a.\\b5!5&\\x0e\\x02\\a\\x15\\x14\\x1e\\x03\\x17>\\x05'>\\x01\\x1e\\x01\\x15\\x14\\x06'\\x15#7\\x1e\\x01>\\x0254.\\x02\\x06\\a\\x1746\\x17\\x15&\\x06\\x15\\x06\\x1e\\x02\\x15\\x0e\\x01'5\\x166'4.\\x02g!\\b\\x1e#\\x19!\\x0e\\x0e_J\\xd2[\\x06\\b\\x14\\r!\\x11,\\x14\\x1a\\x1a\\x16*\\x13\\x1f\\x0e\\x14\\b\\x06\\x01f'\\\\TY%\\x0f\\x151,*\\\"'-\\x17\\x15\\b\\xd2\\v $\\x1a/\\x19!!\\x03\\x05\\r\\n\\b\\a\\t\\f\\a\\x04O;\\x15\\r#\\x01\\x11\\x15\\x10\\x017\\x1b\\x0f$\\x01\\x10\\x13\\x11\\x91{\\x8e\\x05\\b\\x1a\\x1agh\\x0e\\v\\x03\\xe7(\\x04,\\xdd\\x11\\x1e\\x18\\x18\\x10\\x15\\v\\x14\\t\\f\\v\\n\\x14\\v\\x15\\x10\\x18\\x18\\x1e\\x11\\xd8\\x06\\x04\\x0f+!\\u007f\\x1a(\\x1c\\x1f\\x16\\x12\\x0f\\x13\\x19\\x16\\x1d\\\"\\x81\\x06\\x06\\x05'\\\"3#\\bE_\\x01\\x01\\x01\\t\\x18\\x13\\x12\\x17\\n\\x02\\x02\\x01\\x0e\\x1d\\x14\\x11\\x1d\\x0e\\x01\\x0f\\t\\r\\n\\x18\\x11\\x1f\\x14\\x11\\x1e\\x0e\\x02\\x11\\t\\x0f\\t\\x16\\x00\\x00\\x00\\x00\\x03\\x00\\x1b\\x00 \\x02%\\x01`\\x00\\x1b\\x005\\x00H\\x00\\x00%\\x06'&5>\\x06.\\x01#&\\x0e\\x01'4>\\x0176;\\x012\\x16\\a\\x0e\\x06\\a723$\\x17#\\x17>\\x017\\x16\\a\\x0e\\x04%!\\x03!$7>\\x03&'.\\x01#.\\x01'&\\x01\\xcc\\x02\\x01\\x01\\x01\\x02\\x01\\x02\\x01\\x01\\x01\\x01\\x02\\x01\\a/\\x1e\\x04\\x0e\\x13\\x05\\b\\x03\\x1b\\x16\\a\\x82\\r\\x1a%\\x1c:'Y\\x1f4\\x1c4\\x01\\x00\\x02\\xc4\\x1e%f\\\"\\x1b\\x01\\x01\\n\\x11\\x17!\\xfe\\xf1\\x01\\xc6D\\xfeY\\x01\\x92\\x05\\x01\\x05\\n\\x05\\x01\\x06\\x04\\x13\\x1d\\x01Q\\x86H\\xce\\x04\\x02\\x01\\x01\\x02\\x05\\x04\\x05\\x04\\x04\\x04\\x02\\x02\\x02\\x02\\x02\\x02\\x01\\x02\\x04\\x02\\b\\x125\\x05\\n\\x10\\r\\x1d\\x13,\\x10\\xf6\\x01\\x18]\\x11#\\x02\\x01\\x05\\x01\\x02\\x03\\x05\\t\\xa2\\xfe\\xc0\\x9e\\x02\\x02\\a\\x13\\x10\\x13\\x05\\x05\\x02\\v\\x16\\x1c\\x0f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00Q\\x00Y\\x00\\x94\\x00\\x00%\\x0e\\x02\\a\\x06\\a\\x06\\a\\x06'&>\\x02?\\x01&/\\x01\\x14\\x0e\\x01\\a\\x06'&7\\x06'.\\x0167&7.\\x0276767>\\x013\\x17076\\x17\\x1e\\x03\\x1f\\x017\\x16\\a\\x0e\\x03\\a\\\"\\x1e\\x01\\x17\\x1e\\x01\\x0612\\x1667632\\x166\\x14\\x06\\\"&462\\x13.\\x01#\\x06\\a\\x06\\a6'676&'&\\a&'&\\\"&\\\"\\x0e\\x02\\a\\x06\\a\\x06\\a\\x06\\a\\x06\\x17\\x06\\x17\\x0e\\x01\\x1e\\x01\\x17\\x06\\x17\\x167\\x16327676767>\\x02\\x01\\x8a\\x10\\x1d$\\x17\\x03\\a\\x150\\x12\\x04\\x02\\x01\\x03\\x04\\x02\\x01\\x04\\x04\\x02\\x03\\x04\\x03\\f\\x17\\n\\v\\x06\\x05\\x04\\x04\\a\\r\\a/\\x02\\x05\\v\\x05\\x05\\x04\\v\\x04\\n\\x17\\a\\a\\v\\a\\x06\\x01\\x04\\x05\\x04\\x01\\x02\\x0f\\r\\b\\x02\\b\\a\\t\\x01\\x01\\t\\x0e\\x05\\x05\\x01\\x03\\x02\\x06\\x12\\v\\x1b\\x12\\f\\x03\\\\\\x91Α\\x91\\xceB\\x02\\x0f\\v\\x16\\x1f\\a\\x05\\x03 \\x12\\x05\\x04\\x04\\a\\x06\\x0f\\t\\x06\\x01\\x02\\x06\\x05\\b\\b\\b\\x04\\x1c\\x13\\x02\\b\\n\\a\\b\\x0f%\\x01\\f\\b\\x05\\x06\\x03\\x02\\x0e\\x18\\x14\\n\\x14/\\x1a\\b\\a\\\"\\x1c\\x14\\x11\\a\\t\\x04g\\x04\\x11\\x14\\a\\x04\\x01\\x05\\x01\\x01\\t\\x04\\a\\x06\\x03\\x01\\x01\\x03\\x04\\x01\\x02\\f\\n\\x03\\f\\v\\x06\\x0e\\x04\\a\\a\\x10\\x1c\\v5!\\x02\\t\\x18\\b\\r\\x01\\x04\\x05\\n\\t\\x01\\x17\\v\\x03\\x01\\a\\t\\b\\x03\\x03\\x05\\x1a'\\v\\x14\\v\\x0e\\x02\\a\\x14\\x0e\\f\\x1b\\x10\\x01\\b\\x06\\x11\\x14\\xbeΑ\\x91Α\\xfe\\xbd\\n\\r\\x01\\x13\\x04\\x02/ \\x1a\\x1b\\x10-\\x0e\\v\\x04\\x14\\x04\\x01\\x02\\x03\\x06\\r\\t\\x02\\x15\\x02\\x03\\x04\\x13\\x15\\x18\\\"1\\f\\x1c\\x16\\x0e\\x03\\x11\\a\\r\\n\\n\\x06\\x02\\x05\\f\\x11\\x0e\\x04\\x01\\t\\v\\x00\\x00\\x03\\x00\\x03\\xff\\xdf\\x01\\xbd\\x01\\xa0\\x00\\t\\x001\\x00K\\x00\\x007676'&\\a\\x06\\x17\\x16\\x17>\\x01'&'.\\x03#\\\"\\x0e\\x06\\a\\x0e\\x01\\a\\x06\\x16767&'&632\\x1e\\x02\\x06\\a\\x1670\\x1e\\x01\\x15\\x16\\x06#\\\"'\\x06#\\\"&767>\\x0132\\x1e\\x04\\xe0%\\b\\f#\\x1e\\x18\\x16\\t\\a\\xb0\\x1b\\x14\\n\\x1eU\\t\\x06\\x11\\x10\\f\\x06\\v\\b\\t\\x05\\b\\x03\\b\\x01\\x01j\\t\\x0e/&'.,\\n\\t))\\x14\\\"\\x15\\x02\\x1c\\x1eBd\\t\\b\\x12;179971;\\x12\\vj\\x12$\\x1f\\x0f\\x0e\\x19\\x12&(K.%-\\x10\\x0e\\x14\\x13$$x\\v2\\x19J\\xa5\\x13\\f\\x16\\a\\x03\\x03\\b\\x06\\f\\x06\\x10\\x03\\x01\\xd9\\x18%;\\x05\\x0438,);\\x10\\\".C%I\\x9f\\x13\\x13\\x022P>>P2 \\xd5%$\\x02\\x13\\x1dEU\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc2\\x00?\\x00G\\x00O\\x00W\\x00\\x9b\\x00\\xa6\\x00\\xae\\x00\\xb7\\x00\\xb8\\x00\\x00%\\x1e\\x02\\x14\\a\\x06'\\x06\\a\\x16\\x17\\\"'&'&'\\x0e\\x01'&7\\x06'&'&767&'\\\"\\a6767&6\\x17\\x16\\x17676\\x17\\x16\\x17\\x16\\x17\\x16\\x1767\\x16\\a\\x06\\a\\x1e\\x01\\a\\x06\\a>\\x02'&'\\x16\\a\\x06\\x17\\x167&'\\x067\\x16'&'\\x06\\a\\x16\\a676'&'47\\x16\\x17\\x16\\x17.\\x02#2\\x1e\\x01\\x1767&'&\\a\\x14\\x17\\x06\\a&'\\x06\\x15.\\x0167&'\\x16\\x17\\x16\\x1767\\x16\\x17\\x06\\a\\x06\\a\\x162>\\x061\\x0e\\x02#\\x16\\x13.\\x02\\a\\\"\\x0e\\x02\\a6\\a&'&\\a2\\x17&\\a\\x0e\\x01\\x16\\x17\\x1627&\\x17\\x01\\xc1\\x15\\x1e\\f\\x06\\x19{\\x1f%'\\x18\\x03\\x06\\x04\\x04\\x1b\\x1d 4\\x04\\a\\x104#\\x11\\x06\\b\\b\\t&\\x16\\x04W\\x19\\x04\\x0e%8\\x02\\x16\\x10\\x0e\\x0f\\x01\\x18\\v\\x10\\x13\\x16\\x1c!4)+\\x05\\x04\\x04\\n\\x1a!\\x1d\\t\\tl!%\\t\\x01\\x02/\\x02\\xb9\\x10\\x16\\x11\\x1b\\v\\n\\x0f\\xc9\\x1a\\x02\\x03\\x1f\\v\\v\\x11\\x8a1$\\x1b\\x02Dc\\x02\\x14\\x14;8\\a\\x15\\r\\x01\\x03\\r\\x18\\t\\r\\v4A0!\\\"\\x05\\x0e\\x1f\\x0e\\x14\\x01\\x02\\a\\n\\x14\\x13\\x03\\x1c\\x16\\\"DA\\x06\\n\\v\\x0e'.\\a\\v\\v\\t\\b\\a\\x05\\x03\\x02\\x01\\f\\x1f\\x13\\b$\\x04\\x10\\x1d\\b\\x06\\r\\v\\a\\x01$H\\a\\b\\x15\\x03\\x15\\x15\\x02\\x1d\\x0e\\t\\x02\\x01\\x06+$&\\xb7\\xde\\r\\x1c\\x18\\x15\\a%\\x05+\\x1aH\\x14\\x03\\x03\\x04\\x1c/\\x15\\x04\\x0f\\x0e\\x19\\x1d\\b\\x04\\x0f\\x10\\x1f&;2,\\n\\a\\x03\\t\\x02&.\\x02\\x02\\x18:\\x1a\\r\\x02\\x02\\x16\\x1b>\\x05\\x12D \\a\\x0e$1\\x11*\\f\\rj\\x02\\f\\f\\b\\x1d\\x1d+i\\x1a\\x03\\x03\\x0f\\x12\\x14\\f\\xa3\\x01\\x10\\x12\\x13\\x13\\x12\\b\\xbd 5)''\\x12\\b\\r\\x03\\x04\\v\\x14\\x0f\\x17\\t\\x05\\x16\\x11\\x11\\x10\\x1b\\x03\\x03\\x14O_\\x02\\x06JO\\x1d\\x1f\\x02\\x0e \\x10\\x03\\x01::+\\x12'M\\x04\\b\\x10\\x0f.&\\x01\\x01\\x02\\x02\\x03\\x02\\x02\\x01\\x02\\t\\n\\x13\\x01\\x0e\\x06\\x16\\x1c\\x01\\t\\x12\\x1e\\x13\\x17\\x05\\f\\x01\\x023\\x01\\x13\\x90\\x1b'\\n\\x01\\r\\x12\\x14\\x17\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\f\\x00\\x19\\x00)\\x00B\\x00\\x00%\\x14\\x0e\\x02+\\x01532\\x1e\\x02'#532\\x1e\\x01\\x15\\x14\\x0e\\x02\\\"7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4'565<\\x01.\\x03+\\x01\\x11:\\x0362>\\x0176\\x01$\\v\\x13\\t\\x05QQ\\x0f\\x14\\a\\x022KK\\x10\\x13\\x04\\t\\t\\x0e\\x05\\xcc,\\x1f\\xfe\\xd6\\x1f,,\\x1f\\x01*\\x1f,n1%\\x04\\n\\x10\\x1c\\x13\\u007f\\x13.\\x17\\x1b\\f\\x0f\\b\\t\\x045\\x88\\x0f\\x13\\x06\\x01Q\\t\\x10\\nDH\\f\\x0e\\t\\v\\x0f\\a\\x04\\x84\\xfe\\xd6\\x1f,,\\x1f\\x01*\\x1f,,\\xf29\\n\\x01\\x10(\\x04\\x06\\x13\\r\\x0f\\b\\xfe\\xfa\\x01\\x02\\x02\\x01\\x10\\x00\\x00\\x03\\x00\\f\\xff\\xe0\\x01\\xb4\\x01\\xa1\\x00\\x15\\x00+\\x009\\x00\\x00%\\a\\x06\\\"/\\x01&?\\x0162\\x1f\\x01\\x162?\\x0162\\x1f\\x01\\x16'\\x16\\x0f\\x01\\x06\\\"/\\x01&?\\x0162\\x1f\\x01\\x162?\\x0162\\x17%&?\\x0162\\x1f\\x01\\x16\\x0f\\x01\\x06\\\"'\\x01\\xac\\xc5\\x03\\b\\x03\\xc5\\a\\a/\\x04\\a\\x04\\x87\\x03\\b\\x03\\x87\\x04\\a\\x04/\\a\\a\\a\\a\\xc5\\x03\\b\\x03\\xc5\\a\\a/\\x04\\a\\x04\\x87\\x03\\b\\x03\\x87\\x04\\a\\x04\\xfe\\x97\\a\\a\\xc5\\x03\\b\\x03\\xc5\\a\\a\\xc5\\x03\\b\\x03Ca\\x02\\x02a\\x04\\x04\\x17\\x02\\x02C\\x02\\x02C\\x02\\x02\\x17\\x04\\x85\\x04\\x03b\\x02\\x02b\\x03\\x04\\x17\\x02\\x02C\\x01\\x01C\\x02\\x02[\\x03\\x03[\\x01\\x01[\\x03\\x03[\\x01\\x01\\x00\\x04\\x00\\x15\\x00\\x00\\x01\\xeb\\x01\\x80\\x00\\x12\\x00\\x18\\x00#\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x0153\\x11!\\x15#5463\\x032\\x16\\x1d\\x01#5\\x1532\\x16\\x15#14&#5\\x1e\\x01\\x15#4&#\\x01\\xc0\\x12\\x19\\x19\\x12\\x95\\x95\\xfe\\x80+\\x19\\x12+\\x1b%@\\x01=X+?,a\\x8a+pP\\x01\\x80\\x19\\x12\\xfe\\xd6\\x12\\x19+\\x01*@@\\x12\\x19\\xfe\\xc0%\\x1a\\x01\\x96\\x01W>->\\x80\\x01\\x89aPp\\x00\\x03\\x00\\x00\\xff\\xdf\\x01\\x81\\x01\\xa3\\x00\\x1a\\x00x\\x00\\x82\\x00\\x00\\x13\\x16#*\\x06\\x0e\\x01\\\"\\a#7\\x15\\x06\\x14\\x0e\\x01\\x1c\\x05\\x13&6\\x172\\x16\\a\\x0e\\x02\\x15\\x14\\x16326514.\\x01'0.\\x06'\\x0e\\x02\\a&\\x06&'&'&'467:\\x0462>\\x027>\\x015454>\\x01\\x17\\x16\\x1f\\x012\\x1e\\x06\\x17\\x1e\\x01\\x06#\\x0e\\a+\\x01\\\"&7\\x06\\x17\\x1e\\x0172'.\\x01y\\x01\\x17\\t\\x13\\f\\r\\a\\b\\x04\\x04\\x03\\x03\\x01\\x01m\\x01\\x01\\x01O\\v\\\"\\x1d\\r\\x06\\v\\x01\\x0f\\t\\x15\\n\\x13\\x1b\\x06\\x17\\x13\\t\\b\\r\\v\\f\\b\\x06\\x01\\x03\\b\\x14\\f\\b\\x1f6\\x14\\x13\\t\\n\\x01\\x0e\\v\\n\\x17\\x0e\\x10\\t\\t\\x06\\x05\\x04\\x03\\x02\\x06\\x02\\a\\x19\\x15 \\x05A\\x01\\x0f\\a\\x11\\t\\x0e\\b\\b\\x01\\n\\x04\\x05\\x01\\x02\\v\\x0e\\x11\\x11\\x11\\x0f\\v\\x04\\x03\\x12(H\\x03\\x04\\t\\x1f\\x05\\x05\\x02\\x03(\\x01<\\x16\\x01\\x01\\x01o\\x01\\x01\\x03\\x03\\x05\\x04\\b\\a\\r\\f\\x14\\xfe\\xc3\\x1c1\\x01\\x19\\x06\\x01\\x03\\a\\b\\f\\r\\x1b\\x13\\b\\x13\\x18\\x04\\x02\\x01\\x04\\x05\\a\\n\\x0e\\a\\f\\x19\\x1d\\x03\\x01\\x03\\x13\\x14\\x0f+.\\x10\\r\\x12\\x01\\x01\\x02\\x01\\x03\\x01\\x06\\x13(\\x17\\x0f\\x06\\v\\n\\x03\\x05\\x1a\\v\\x03\\x01\\x05\\x04\\t\\v\\x0f\\n6wA\\x13\\x1e\\x16\\x11\\n\\a\\x03\\x01\\x13\\xe2\\x06\\x01\\x04\\x03\\x01\\a\\x10\\x05\\x00\\x04\\x00\\a\\xff\\xdf\\x01\\xf9\\x01\\xa0\\x00)\\x00H\\x00y\\x00\\x87\\x00\\x00\\x13632\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06#\\\"&5\\x14\\x06\\\"&5\\x14\\x0e\\x01#\\\".\\x015\\x14\\x06\\\"&5\\x14\\x06#\\\"&=\\x0146\\x17\\x1e\\x0132327\\x1627\\x1e\\x017\\x1e\\x01\\x14\\x06\\a\\x06 '.\\x0167\\x1667\\x162\\x06\\\"\\x0e\\x05\\a\\x0e\\x01\\x1e\\x033>\\x015\\x167\\x14\\x16\\x17:\\x01>\\x034&'.\\x06\\\"\\x0e\\x01\\a&\\\"\\a.\\x01\\x17\\x16\\x17'\\x15\\x14'\\\"15\\a>\\x017H \\x98iO\\x101\\x1f\\x11\\x15\\x1e\\x1d)\\x1d\\x0e\\x17\\x0e\\x0e\\x17\\x0e\\x1d)\\x1d\\x1e\\x15\\x11\\x1f1\\x94\\a\\x1d\\x0e\\x01\\x01#\\x11\\x10C\\x11\\t$\\v\\x01\\x03\\v\\v;\\xfe\\xfb<\\x0e\\n\\x03\\x03\\v$\\t\\x11C\\x0f\\x15\\x12\\x0f\\n\\f\\x05\\v\\x02\\x04\\x03\\x04\\x05\\r\\n\\t\\x1e#NN#\\x1e\\a\\b\\n\\x06\\a\\x02\\x03\\x03\\x02\\v\\x05\\f\\n\\x0f\\x12\\x15\\f\\x12\\t\\x16,\\x16\\t\\x12G,\\b\\x1d\\x17\\x17\\x1d\\x03\\x1a\\f\\x01\\x9d\\x03\\x03\\t8\\n\\x15\\x14\\x1f\\x1e\\x14\\x14\\x1e\\x1e\\x14\\r\\x17\\x0e\\x0e\\x17\\r\\x14\\x1e\\x1e\\x14\\x14\\x1e\\x1f\\x14\\x15\\n8}\\f\\x11\\x1d\\x1d\\x1d\\x10\\x10\\x04\\x13G[M\\v\\x0e\\x0e\\x0e{f\\x1e\\x04\\x0f\\x11\\x1d\\x19\\b\\x13\\x10\\\"\\x12)\\b\\x10\\x16\\r\\t\\x03\\x01\\x01%\\x19\\r\\r\\x19%\\x01\\x02\\x03\\x06\\n\\r\\x12\\f\\b)\\x12\\\"\\x10\\x13\\b\\x01\\t\\n\\x03\\x03\\n\\t/)\\x0e\\x01\\x19\\x01\\x01\\x19\\x01\\x06\\x1c\\v\\x00\\x00\\x00\\x0f\\xff\\xfc\\xff\\xdf\\x02\\x80\\x01\\xa0\\x00\\x03\\x00\\x0f\\x00\\x19\\x00E\\x00h\\x00\\x89\\x00\\x95\\x00\\xb3\\x00\\xdc\\x01\\n\\x01\\x16\\x010\\x01L\\x01k\\x01o\\x00\\x007#6236\\x15\\x14#\\\"'&5462\\a6\\x17\\x15\\x06'&=\\x014%\\x14\\x06'\\x0e\\x02'\\x0e\\x02.\\x02'\\x06.\\x0267&>\\x0232\\x16\\x17632\\x1e\\x06\\x176\\x1e\\x02\\x054'&56\\x16\\x172506350'&\\x06\\x15\\x14\\x17\\x16\\x15\\x14#\\\"'&\\x0f\\x01\\x141\\x16327\\\"\\a\\x141\\x141\\x17\\x16130>\\x0132\\x16\\x15&\\x06\\x15\\x141\\x14\\x17\\x1676=\\x014.\\x0174+\\x01\\\"\\x1d\\x01\\x14;\\x01257&#\\\"\\a\\x06\\x15\\x14\\x17\\x1632765'4#\\x06#\\\"53250<\\x01.\\x01\\x17254'&5432\\x17;\\x01'06150'&#\\\"\\x06\\x15\\x14\\x17\\x16\\x15\\x14#\\\"'41\\\"\\x15\\a\\x143\\x1674+\\x0147632572'&\\a\\x06\\a#\\\"\\x15\\a\\x14;\\x01\\x06\\a\\x06\\a\\\"#\\\"\\a0\\x061\\x063\\x1676767325\\x17&#\\\"\\a\\x06\\x17\\x1632767&\\a54+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x01476\\x17256750\\x17/\\x01\\x06#\\\"43212\\x17\\x165656#&\\a\\x06\\x15\\x14327617&#\\\"\\a\\x06\\x15\\x141\\x1432765'4#\\x06#\\\"532505<\\x02.\\x012\\x17#\\xf9\\x1a\\x01\\x18\\x8a\\x0e\\x0e\\v\\x03\\x01\\b\\x04\\xf1\\x06\\x0f\\x0f\\x06\\x03\\x01\\xf5e@\\n&6\\x1f\\n#)-(\\\"\\b#:\\x1f\\t\\x1c\\x1d\\x0e\\t\\x1e8\\\"\\x19:\\x0f\\\"/\\b\\x10\\x0e\\x0e\\r\\v\\n\\t\\x04#E8\\\"\\xfd\\xf8\\x11\\x0e\\x01\\x11\\a\\x02\\x02\\x01\\x01\\t \\x12\\r\\t\\v\\b\\x01\\x01\\x02\\b\\x0f\\x15 \\x0e\\a\\x02\\x01\\x01\\x04\\b\\x05\\x06\\x06\\x16\\x0f\\a\\r\\x19\\x03\\x01\\v$\\x01\\n\\x01\\x01\\n\\x018\\a\\v\\x0e\\a\\x06\\a\\a\\x10\\r\\x05\\x01\\x03\\x01\\b\\b\\x10%\\x01\\x01\\x03\\\"\\x16\\x12\\r\\b\\t\\b\\x01\\x01\\x01\\x03\\x01\\b\\f\\t\\v\\x11\\x0e\\n\\n\\t\\x01\\x03\\x01\\bP\\x01\\f\\x05\\x01\\v\\x01\\x03\\x01\\x01\\x0f\\n\\x05\\x03\\b\\x01\\x02\\x02\\b\\t\\x02\\x02\\x03\\t\\x01\\x01\\x01\\x02\\x01\\x01\\t\\t\\b\\x04\\x02\\t\\f\\x026\\x06\\x13\\x14\\x05\\x04\\x04\\x06\\x13\\x15\\x04\\x04*\\x0f\\a\\x01\\n\\x01\\x01\\n\\x01\\x04\\x05\\t\\x01\\x02\\x01/\\x02\\x02\\x04\\a\\x11\\x10\\x01\\x06\\x05\\x01\\x02\\x01\\x01\\x10\\f\\x10\\x1d\\b\\a\\x016\\x05\\x12\\x15\\x04\\x02\\x1e\\r\\x05\\x01\\x03\\x01\\b\\a\\x11%\\x01\\x01$\\x18\\x01\\x1a\\xca\\x0e\\x01\\x15\\x14\\f\\x04\\x04\\n\\n\\x18\\x05\\x03\\x11\\x03\\x04\\x03\\x04\\x01\\x04\\x1aBT\\x0e\\x13\\x1b\\v\\x0f\\x17!\\x0e\\x01\\x10#\\x17\\a\\x1919:\\x11\\x1e>2 \\x1d\\x14#\\x02\\x04\\x06\\b\\t\\v\\f\\x06\\x10\\n#?D\\f\\x05\\x06\\x03\\a\\x01\\x04\\x01\\a\\x01\\x01\\a\\x06\\x0e\\f\\x05\\x05\\x04\\a\\x06\\x01\\x01\\b\\x01\\a=\\x05\\x01\\x01\\a\\x01\\x02\\x02\\x04\\t\\x02\\n\\t\\x01\\t\\x05\\t\\a\\x01\\x01\\\"\\x05\\a\\n\\x15\\x01\\x01O\\x01\\x012\\a\\t\\a\\x0e\\x0e\\a\\b\\x03\\x01\\x01\\a\\x01\\x03\\x11\\x01\\x03\\x05\\x06\\a2\\x12\\f\\x05\\x06\\x03\\a\\x05\\x01\\a\\x01\\x01\\x05\\n\\b\\f\\x05\\x05\\x04\\a\\x06\\x01\\x01\\b\\x01\\a:\\x01\\b\\x05\\x01\\x01\\b\\x01\\x06\\n\\x06\\x0e\\x01\\b\\x014\\x03\\a\\x01\\x01\\a\\x02\\x03\\x03\\x03\\n\\x066\\x01\\b\\x12\\x12\\f\\f\\x12\\x12\\f\\x1d\\x04\\n\\x05\\x01\\x018\\x01\\x01\\x1c\\f\\x03\\x05\\x02\\x01\\x04\\x04\\x015\\a\\x01\\x02'\\x01\\x01\\x01\\x05\\x03\\x01\\x05\\x05\\b\\x14\\x1e\\x03\\x01(\\x10\\x12\\x06\\x05\\x01\\x1d\\x03\\x01\\x01\\a\\x01\\x03\\x11\\x01\\x01\\x01\\x02\\x04\\x05\\b\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00 \\x02\\x00\\x01`\\x00 \\x00:\\x00\\x007#\\\"&46;\\x012\\x16\\x14\\x06+\\x01\\\"\\x14;\\x012\\x16\\x14\\x06+\\x01\\\"&46;\\x0126&\\x17>\\x01732>\\x01=\\x014&+\\x0164'32\\x16\\x1d\\x01\\x14\\x0e\\x01#\\xd6r);;)\\x85\\x10\\x18\\x18\\x10\\x87\\x14\\x14r);;)\\xac\\x11\\x17\\x17\\x11\\xae\\f\\v\\vH\\x12\\x1e\\x03A\\x05\\t\\x05\\v\\bv\\x0f\\x0f\\x89!.\\x15$\\x16\\x98;R;\\x17\\\"\\x17(;R;\\x17\\\"\\x17\\x14\\x14x\\f/\\x15\\x05\\t\\x06x\\b\\f\\x11.\\x11/!\\xa0\\x16%\\x15\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x80\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%>\\x01'4&\\a*\\x01\\x0e\\x06\\a0.\\x03\\x06\\a\\x0e\\x01\\x17\\x1e\\x05\\x14\\a\\x06'&74676&\\x06\\a\\x06\\x16\\x17\\x16676/\\x01&76\\x17\\x1e\\x02\\x17\\x06\\a\\x0e\\x01\\a\\x06#\\\".\\x0176&\\a\\\"\\x06\\x17\\x14\\x16767>\\x0274>\\x015\\x16>\\x0256&\\a\\x14\\x1e\\x01\\a\\x06'>\\x0536\\x15\\x16\\x06\\x15\\x14\\x16\\x99Α\\x91Α\\x01~\\n\\n\\x01\\x19\\x14\\x02\\x03\\v\\t\\x0f\\r\\x0f\\x0e\\x0e\\x06\\x0f\\r\\x17\\x14\\x1b\\r\\x10\\x06\\x13\\x03\\t\\x03\\x05\\x02\\x02\\x01\\a\\x1b\\x13\\x02\\x04\\x02\\x04\\x0f\\x14\\x04\\x04\\x12\\x19\\x1e1\\x04\\x03\\x18\\r\\x0f\\r\\v\\x15\\n\\x10\\x12\\x05\\n\\b\\n\\x12\\x11\\f\\n\\x02\\x05\\x01\\x06\\f\\v\\x10\\t\\x10\\x01\\x17\\x12'!\\x11\\x17\\t\\a\\x01\\x01\\x12\\x1f\\x12\\n\\x01\\x1e\\x03\\x06\\x01\\x05\\x10\\x1d\\x04\\x03\\b\\a\\f\\x0f\\n\\f\\x01\\a\\v\\x01\\xb8\\x91Α\\x91\\xce\\x01\\x01\\x0f\\b\\r\\x10\\x01\\x02\\x03\\b\\n\\x10\\x14\\x1d\\x11\\x0e\\n\\f\\x04\\x05\\t\\r*\\x19\\x03\\t\\x03\\a\\x04\\x06\\x05\\x03\\x17\\x06\\x05\\v\\x01\\a\\x05\\f\\x10\\x03\\f\\r\\x1e\\a\\n\\x1a\\x18\\x16\\x1c\\x0e\\x0f\\x10\\r\\x05\\x03\\v\\x11\\x04!144\\x0e\\t\\x02\\x05\\x05\\x06\\x1d\\x01\\x0f\\v\\x0e\\x11\\x01\\x01'\\x147'$\\x02\\x03\\x05\\x02\\x02\\x05\\v\\x0e\\a\\x12\\x02\\x0e\\x04\\n\\x06\\x05\\n\\x04\\x16\\x0e#\\x0f\\x14\\b\\x01\\b\\x02\\f\\x05\\b\\t\\x00\\x05\\x00\\x02\\xff\\xe0\\x02\\x02\\x01\\xa0\\x00&\\x00E\\x00K\\x00Q\\x00d\\x00\\x00%\\x16\\x06\\a\\x16\\x06#\\\"&'*\\x03'\\x0e\\x01#\\\"#.\\x017&'&632>\\x027>\\x0232\\x16\\x03>\\x0276.\\x02#\\\"\\x06\\a\\x0e\\x04#\\x16\\x176\\x16\\x17\\x1623>\\x0132&46\\x16\\x14\\x06646\\x16\\x14\\x06\\a&6\\x16\\x17\\x1e\\x017>\\x0176\\x16\\a\\x0e\\x01\\a\\\"&\\x01\\xf6\\v>>\\n\\x1f\\x1b\\x15\\x1e\\x01\\x02\\x16\\x18\\x18\\x04\\x01\\x1e\\x15\\x01\\x01\\x1a\\x1d\\b?%\\t\\x0e\\x10\\x11\\x10\\x04\\x03\\x03\\tBY0N|t\\x15&\\x1e\\a\\x0f\\x145P,@n\\f\\x02\\x03\\x04\\f\\x1b\\x15\\\"<\\x122\\f\\nH\\x06\\x06\\x1b\\r\\x12\\x9a\\x1a\\x19\\x19[\\x19\\x1a\\x1a\\x94\\x02\\f\\x0e\\x02\\x03$\\x19\\x19#\\x04\\x03\\x19\\x03\\x05.( 3\\xf6@r\\x1e\\x19-\\x1d\\x14\\x01\\x15\\x1d\\x01*\\x19\\x161\\r\\x1d\\x14\\x192\\x0f-I'`\\xfe\\xfc\\t\\x1e)\\x16.S>%M;\\v*\\x1e \\x10-\\x14\\x11\\t\\x16\\x01\\f\\x10\\xad!\\x0e\\x0e!\\r\\r!\\x0e\\x0e!\\r)\\b\\t\\x04\\b\\x11\\x1b\\x01\\x01\\x19\\x11\\f\\x06\\f\\x16(\\x01%\\x00\\x00\\x00\\x00\\x04\\x00\\x1d\\xff\\xff\\x01\\xe3\\x01\\x81\\x00\\x0e\\x00\\x1e\\x000\\x00V\\x00\\x00\\x01\\x0e\\x01'&6727632\\x16\\x15\\x14\\a\\x16\\x15\\x14\\x0e\\x01#\\\"'\\\"'.\\x0176\\x167\\x1e\\x01\\x15\\x14\\x0e\\x01\\a\\\".\\x02'&63:\\x01%&54632\\x1f\\x0137632\\x16\\x15\\x14\\a\\x03\\x0e\\x01+\\x01\\\"'.\\x01546303\\x163267\\x01\\xa6*P\\b\\b_\\x13\\x02\\x01\\x03\\x03\\n\\r\\b\\b\\x06\\n\\a\\x03\\x03\\x01\\x02\\x13_\\b\\bPT\\b\\n\\x05\\t\\x05\\x15-*\\x1c\\x02\\x04v\\x16\\x01\\x02\\xfeO\\x01\\x0e\\v\\x0f\\aQ\\x01M\\x06\\x10\\n\\x0e\\x01n\\x10&'\\x01\\v\\f\\x06\\t\\f\\t\\x01\\a\\a\\x16\\x19\\v\\x01(\\x17!\\x06\\x05I\\v\\x01\\x01\\x0e\\t\\v\\xe0\\a\\v\\a\\n\\x06\\x01\\x01\\vH\\x06\\x05!n\\x02\\r\\b\\x05\\n\\x06\\x01\\x02\\x05\\a\\x05\\b\\x12\\x8c\\x04\\x04\\n\\x0f\\x0e\\xcd\\xcb\\x0f\\x0e\\t\\x04\\x03\\xfe\\xef*&\\x02\\x02\\f\\x06\\t\\r\\x01\\x1b \\x00\\x01\\xff\\xff\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00+\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01\\x17\\x06\\x16\\x17\\x15\\x0e\\x01\\x17\\x16276&'5\\x17\\x06\\x1676&\\a'6&\\a'762\\x17\\x01\\xb8\\b\\b\\xc3\\t\\x17\\t\\xc4\\b\\b\\x872\\x05\\t\\x0f\\x11\\a\\r\\n\\x1c\\n\\f\\x03\\x12/\\v/\\x14\\x13\\x1d\\x1a2\\a\\x1e\\x143(\\t\\x18\\b\\xd4\\t\\x17\\t\\xc3\\b\\b\\xc4\\t\\x17\\t\\x863\\n\\x1d\\x06{\\a$\\r\\n\\n\\t%\\tz.\\x1a\\x1f\\x13\\x14.\\t2\\x14\\x1e\\a4)\\b\\b\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x06\\x00\\n\\x001\\x00=\\x00A\\x00E\\x00\\x007\\x14+\\x015327\\x11!\\x11\\x134.\\x01'.\\x025432\\x15;\\x014&#\\\"\\x06\\x15\\x14\\x16\\x17\\x1e\\x01\\x15\\x14#\\\"5#\\x15\\x06\\x1632>\\x0174&+\\x01\\x153532>\\x01\\x177#\\a7#\\a3\\xf5\\x16\\x13\\x13\\x16\\xcb\\xfe@\\x97\\t\\x14\\x11\\v\\v\\x04\\x14\\x15\\x1e\\x01\\x1a\\x19\\x15 \\x15\\x1e\\r\\t\\x14\\x19\\x1f\\x01\\\"\\x17\\x0f\\x17\\r~\\x1c\\x1a4!\\x13\\x10\\x17\\x0f\\x151\\x1f0\\x88\\x1f0\\x1e\\xd8\\x15*\\xb3\\xfe@\\x01\\xc0\\xff\\x00\\v\\x10\\r\\x05\\x04\\x05\\x06\\x04\\x0e\\x12\\x11\\x19\\x13\\x13\\x10\\x13\\n\\x04\\b\\a\\x0e\\x16\\x01\\x16\\x17\\t\\x11D\\x14\\x19\\x8a/\\v\\x14N\\x8a\\x8a\\x8a\\x8a\\x00\\x00\\a\\x00\\f\\xff\\xc7\\x01\\xf4\\x01\\xb8\\x006\\x00C\\x00N\\x00V\\x00a\\x00n\\x00w\\x00\\x00%3\\x0e\\x01#\\\"&54632\\x16\\x17#.\\x01#\\\"\\x06\\x15\\x14\\x1e\\x01\\x1754&#\\\".\\x015467>\\x01\\x16\\x172\\x1e\\x01\\x15\\x14\\x06#\\\"\\x0e\\x02\\x1d\\x01>\\x01'\\x16\\x0e\\x02\\a\\x1632>\\x0154\\a>\\x02&'\\x0e\\x03\\x16'\\\"\\a\\x16\\x1767&\\a3\\x0e\\x01\\x1e\\x01\\x17>\\x01.\\x01\\a327.\\x037\\x06\\x15\\x14\\x16\\x173\\x16\\x1767&'\\x06\\x01\\xda\\x19\\x13|`t\\x84\\x84t`|\\x14\\x19\\x13nVju1_C'$\\x1e-\\x184-\\x0fIJ\\x10\\x1e,\\x175.\\x12\\x1c\\x13\\nQhd\\x04\\x04\\a$\\x1d\\x13+\\x18!\\x11\\x92\\x19\\x1d\\x05\\x01\\x01\\x15\\x1b\\t\\x03\\x02\\x0e+\\x13+\\x13\\x13*\\x13r\\x01\\x02\\x01\\x05\\x1d\\x19\\x02\\x01\\x05\\x1d)\\x01*\\x13\\x1a\\\"\\f\\x04\\x04@&Y\\x01\\x15\\f\\f\\x16\\x17\\v\\fvS[\\x84tt\\x84[SHMujEb6\\x021$'\\x17-\\x1f.4\\x01\\x1f\\x1a\\x18!\\x18-\\x1e/4\\n\\x13\\x1c\\x121\\x03L\\xda\\b$%\\\"\\x06\\x1b\\x11!\\x18D\\\\\\x04\\x1b%\\x15\\b\\x03\\x14\\x18\\x1d\\x0f\\x8e\\x1c\\b##\\b\\x1c3\\a\\x17$\\x1b\\x04\\b\\x16$\\x1c\\x90\\x1b\\x05\\x1d#&\\x0e\\x06D$&\\r\\v\\x17\\x17\\v\\r\\x15\\x16\\x00\\x06\\x00\\a\\xff\\xe0\\x029\\x01\\xa0\\x00\\a\\x00\\x1b\\x00%\\x005\\x00<\\x00H\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1767.\\x0254>\\x0132\\x17676&+\\x01\\x03%\\a'#\\a37\\x1737\\x177#7#\\a\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"'\\a'2\\a\\x06+\\x01?\\x01232\\x1e\\x01\\a\\x0e\\x01+\\x017\\xac褤\\xe8\\xa4\\xc3X\\x1d\\x11\\x1d\\x11\\x15#\\x15\\t\\b\\x01\\x01\\x05%.\\x86M\\x01&\\t\\x0f \\x1a%\\b\\v$\\x16r\\x15h5\\\\\\x16\\x17\\x1c\\x15#\\x15\\x06\\x05\\x10_\\x1f\\a\\a\\x1f\\x19\\x0e.\\x01\\x02\\v\\t\\a\\x02\\x03\\x17\\x0e\\x15\\f\\x01\\xa0\\x83\\xba\\x83\\x83\\xba\\xe2\\x01<\\x04\\x15 \\x12\\x14#\\x14\\x02\\x04\\x03#&\\xfeݸ%%Z##Z\\xb6T\\xcdR\\b'\\x18\\x15#\\x14\\x01=x\\x1e\\x1b9c\\x01\\b\\t\\v\\x130\\x00\\x00\\x00\\x06\\x00\\a\\x00`\\x029\\x01!\\x00\\f\\x00\\x1b\\x00&\\x00<\\x00F\\x00P\\x00\\x00\\x133\\x1773\\x17#'\\a#'\\a#%2\\x1e\\x03\\x17\\x14\\x0e\\x02\\a+\\x015\\x172>\\x0354&/\\x01\\x17\\x1e\\x02\\x14\\x0e\\x02+\\x0253:\\x01\\x1e\\x02\\x17\\x16\\x15\\x14'\\x1530>\\x015.\\x01#\\a6\\x16654&\\a#\\x15\\x11/*)-\\r.\\x04\\x1a-\\x1c\\x05,\\x01#\\x04\\r \\x19\\x14\\x01\\x13\\x1c\\x1c\\n\\n0/\\x02\\a\\x10\\f\\n\\x18\\v\\f\\xee\\x04\\v\\x13\\x12\\x19\\x1a\\t\\t.4\\x02\\a\\x12\\x0e\\r\\x01\\x01<\\f\\x02\\x02\\x02\\b\\x03\\x04\\x02\\x12\\x16\\x15\\n\\n\\x01 vv\\xc0MMPP\\xc0\\x02\\v\\x12'\\x1a\\x1b(\\x12\\n\\x01\\xc0\\x93\\x02\\x06\\n\\x15\\r\\x14\\x1a\\x02\\x02\\x1c\\x01\\x06\\x1d&\\x1b\\f\\x06\\xc0\\x04\\x06\\x0e\\n\\x04\\x05\\x10\\x12\\x15\\x02\\a\\x03\\x05\\x04m\\x01\\x03\\v\\f\\f\\v\\x01\\x12\\x00\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\n\\x00\\x12\\x00\\x16\\x00\\x1e\\x00(\\x00\\x00\\x012\\x16\\x15\\x14\\x0e\\x02+\\x015&2\\x16\\x14\\x06\\\"&4\\x175#\\x156264&\\\"\\x06\\x14\\x172654.\\x01+\\x01\\x15\\x01')+\\a\\x11#\\x18/`Α\\x91Α\\xa7\\x1e\\a\\x10\\f\\f\\x10\\v\\x9f1=\\x164$Q\\x01\\x04,!\\v\\x18\\x1a\\x10\\x9a\\xb4\\x91Α\\x91\\xce\\xd8\\xd0\\xd0\\xe7\\f\\x10\\f\\f\\x10\\xf3>*\\x1a. \\xd0\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa1\\x00E\\x00w\\x00\\x00\\x01\\x14\\x1d\\x01\\x14\\x15\\x14\\x06\\a\\x0e\\x01\\a\\x0e\\x01#\\\"+\\x01\\\"#\\\"&'.\\x01'.\\x0154=\\x01454>\\x017676767>\\x017232;\\x01232\\x16\\x17\\x1e\\a\\x17\\x1e\\x01\\x15\\x14\\a\\x1676'&'656&'\\x1e\\x01\\a\\x06\\a&'&'\\x17\\x16\\x17.\\x02'\\x16\\x17\\x16\\x17\\x0e\\x01'&'\\x1e\\x01\\x17\\x167367>\\x02\\x1e\\x01\\x01\\xc0\\x05\\a\\x06\\x18\\v\\r\\x1e\\x0f\\a\\x06\\xc8\\b\\x05\\x0f\\x1e\\r\\v\\x18\\x06\\a\\x05\\x05\\x0e\\n\\x03\\x03\\b\\n\\x04\\x03\\n\\x16\\v\\x03\\x05\\a\\x06\\xc8\\b\\x05\\x0f\\x1e\\r\\x03\\x06\\x05\\x06\\x06\\x05\\x05\\x04\\x01\\a\\x05F\\x02\\x02\\a\\x19\\x04\\x05\\x01\\x0e;:\\x1a\\x13\\n\\x02\\x02\\x03\\x04LS,\\x1c\\x19\\r/9\\x15\\t\\nN?\\x1eP+\\x15\\x12\\x10>\\x1bQA\\x01\\x03\\x02\\x06\\x0e\\x12\\x10\\x10\\x01$\\v\\x05\\xb8\\b\\x05\\x0f\\x1e\\r\\v\\x18\\x06\\a\\x05\\x05\\a\\x06\\x18\\v\\r\\x1e\\x0f\\a\\x06\\xc8\\b\\x05\\x0f\\x1e\\x1a\\v\\x02\\x03\\a\\x05\\x02\\x01\\x04\\x04\\x01\\x05\\a\\x01\\x04\\x05\\x05\\x06\\x06\\x05\\x06\\x03\\r\\x1e\\x0f\\a\\xf7\\x04\\b (\\a\\x05\\x05\\x017v\\\"#N$\\x06\\x06\\x01\\x03/S<#\\x1a\\a!-\\x13\\x0e\\fc0\\x13\\x01\\x14\\t\\x0e\\x1a5\\v#\\\"\\x02\\x01\\x04\\x04\\x02\\x05\\r\\x00\\x00\\x00\\x02\\x00\\x06\\xff\\xc8\\x01\\xf8\\x01\\xb9\\x00\\f\\x00W\\x00\\x00\\x122\\x16\\x15\\x14\\x0e\\x03#\\\"&4\\x05654'4'&'&5&+\\x01\\a\\x06\\x151\\x15\\x17\\x16\\x17\\x16\\x15\\x14\\a\\x0e\\x04#\\x06#\\\"+\\x01\\\"#\\\"'.\\x01'&5476?\\x01514/\\x01\\\"\\a\\x06\\a\\x06\\a\\x06\\x15\\x06\\x14\\x17\\x1e\\x0273\\x16>\\x01\\x99͑\\x19.=L(g\\x91\\x01\\x89\\x01\\x01\\x03\\x02\\x04\\x01\\x01\\x04\\x01 \\x04\\x01\\x03\\x02\\x03\\b\\x02\\x05\\x06\\a\\b\\x03\\x19\\x1a\\x03\\x04\\n\\x04\\x03\\x1a\\x18\\n\\x12\\x04\\b\\x03\\x02\\x03\\x01\\x04 \\x04\\x01\\x01\\x01\\x03\\x03\\x03\\x01\\x01\\x01\\x1a=7\\x047=\\x1a\\x01\\xb8\\x92f)K=.\\x19\\x92\\xcdy\\b\\b\\a\\b\\x16\\x16\\x0e\\x12\\a\\x01\\x04\\x05\\x01\\x04\\x01\\t\\r\\x14\\x15\\x15)\\x13\\x04\\x06\\x06\\x05\\x04\\x06\\x06\\x01\\x0f\\t\\x13)\\x15\\x15\\x14\\r\\t\\x01\\x04\\x01\\x05\\x04\\x01\\a\\x11\\x0f\\x16\\x16\\b\\x0f\\b)0\\x16\\x01\\x01\\x160\\x00\\x02\\x00\\f\\xff\\xc8\\x01\\xfa\\x01\\xc0\\x00\\x00\\x00\\x85\\x00\\x00\\x13\\x05\\x16\\a\\x06\\x15\\x0e\\x01#\\\"&=\\x016505656567676767>\\x011\\x06\\x1767\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x17\\x1e\\x02\\x15\\x0e\\x01#\\\"\\x0e\\x02\\x0f\\x01\\x1e\\x01\\x17\\x16\\x17\\x16\\x17\\x163\\x16>\\x01&'6\\x17&'&#&'\\\"'&'\\\"'&'&#0&1&#\\\"1\\\"#\\a\\x06\\a\\x15\\\"#\\\"'454767>\\x0179\\x0130\\x15\\x16\\x17\\x16\\x17\\x16\\x17\\x1e\\x01\\x175&'\\x1e\\x01\\x83\\x01_\\x18\\b\\x01\\x0f\\x88Ze\\x8f\\x01\\x01\\x01\\x02\\x02\\t\\x18\\n\\r\\v\\r\\x01\\a\\x03\\v\\x1c\\x1f\\x04\\x05\\x03\\x03\\x03\\x0e\\a\\x1e\\x16\\x01\\x17\\x06\\x13\\x1f\\x10\\v\\x02\\x01\\x02 \\x17\\x02\\x02\\x04\\x04\\x0f\\x10,9\\x0e\\x1a\\x1f\\x1f\\x1c\\x10\\x1b\\x02\\x01\\x02\\x03\\x01\\x01\\x03\\x02\\x01\\x02\\x02\\x02\\x03\\x03\\x02\\x11\\x11\\x01\\x03\\x03\\x01\\x17\\x14\\x01\\x01\\x04\\x02\\x03\\x17\\x1a\\x05(%\\x01\\x02\\x02\\x01\\x02\\x02\\x03\\rT\\x10\\x06\\x13\\r\\x1c\\x01E.8B\\t\\x01Ws\\x8ee\\x02\\x04\\x04\\x01\\b\\x06\\x02\\x03\\f\\v(\\\"\\x0e\\r\\v\\t\\x01\\x04/\\x0e\\x1f\\x0e\\x0e\\x0f\\x0f\\x10\\x02\\x02\\x03\\r\\b\\x10\\v\\x01\\x04\\x17\\b\\r\\f\\x04\\x05\\x19*\\f\\x01\\x01\\x02\\x01\\x06\\x02.?B\\x10\\x05\\x13\\x1b\\x11\\x01\\x02\\x01\\x01\\x01\\x02\\x01\\x01\\x01\\x01\\x01\\x05\\x01\\x01\\t\\x01\\x04\\x01\\x01\\x04\\x02\\v\\x01!D\\x16\\x01\\x05\\x04\\x03\\x02\\x04\\x06\\x14a(\\x01$&\\a$\\x00\\x00\\x00\\x00\\t\\x00 \\xff\\xe0\\x02'\\x01\\xa0\\x00\\a\\x00\\v\\x00\\x12\\x00)\\x005\\x00=\\x00I\\x00R\\x00V\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1753\\x157\\x14+\\x01532\\x173\\x06+\\x01532>\\x0254&+\\x01532\\x17#5#\\a5#535#535#\\x15;\\x01'#\\a373'2\\x1e\\x03\\x15\\x14\\x06#!\\x11\\x012654&+\\x01\\x11\\x013\\x17#i)\\x1d\\x1d)\\x1c\\tOI\\x13\\x0e\\x0e\\x13\\xc99\\x03\\xc1_\\x0e\\n\\x0f\\v\\x05\\x16\\x13\\x0e_\\xb9\\v\\\"\\x17m\\\"\\x1e\\x1e 7\\x83\\x18\\x1c \\x1c\\x18\\x05\\x1ec>^5 \\n\\x82y\\xfe\\xf4\\x01\\fpvym\\xf7\\x01K\\x01\\a\\x10\\x01\\x1b\\x1d)\\x1d\\x1d)荍\\xd4\\x18.D\\xa6\\xa6\\x06\\f\\x11\\v\\x15\\x18S\\x98E[\\x16\\r\\x17\\n\\x17[[[\\x11\\xd3\\x1f.@6\\x1cmt\\x01\\xc0\\xfeUgeee\\xfej\\x01\\t\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\xff\\xdf\\x01\\xbf\\x01\\xa0\\x00\\x1f\\x00@\\x00\\x00%3\\x0e\\x02\\x15\\x14\\x17\\x16\\x15\\x06#0#&'&#\\\"#\\x06#\\\"&4632\\x1e\\x01\\x15\\x14'654#/\\x01&\\\"\\x0f\\x02\\\"\\x15\\x14\\x1f\\x01\\a\\x14\\x15\\x1432?\\x01\\x17\\x1632545'\\x01\\x8f\\x01\\x06\\n\\x06\\x12\\x01\\x01\\x04\\x013\\x1c\\x03\\x03\\x01\\x02&)\\\\\\x82\\x82\\\\<g;t\\x02\\x06H\\x18\\x01\\n\\x01\\x18H\\x06\\x02:\\x15\\x06\\x02\\x02;;\\x02\\x02\\x06\\x15V\\a\\x14\\x16\\t\\x1d\\x18\\x01\\x02\\x04\\f&\\x03\\x0ex\\xa9x7^7G_\\x02\\x03\\x06\\x02D\\x04\\x04D\\x02\\x06\\x03\\x02,E\\x01\\x01\\x06\\x01))\\x01\\x06\\x01\\x01E\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00\\n\\x00#\\x00\\x007\\a\\x13463!\\x0e\\x01\\a\\x06\\x01\\x101\\x14\\x06#!>\\x017>\\x027>\\x027>\\x057  \\x01F1\\x01GE\\x881Y\\x01XF1\\xfe\\xb7\\r3\\x15\\v/#\\r\\x12\\x18\\x15\\b\\b\\x1f\\\"%!\\x1b\\b\\x1d<\\x01H1F\\x16Z9f\\x01\\x0f\\xfe\\xb71F\\x11&\\v\\x05\\x14\\x13\\f\\x124H\\x11\\x14) \\x1d\\x15\\x10\\x04\\x00\\x00\\x04\\x00\\x0f\\xff\\xce\\x01\\xf3\\x01\\xb2\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x00%\\a\\x17\\a/\\x01#'73?\\x01\\x0f\\x0137\\x03\\x17'#\\x057'\\a\\x01\\xf2\\x1e\\x1e5\\xc5\\x1d;\\x90\\x90;\\x1d\\xc5\\xddm\\xadW\\x97\\x97W\\xad\\x01.**W\\xf222\\xbf32\\x8c\\x8c23ml\\x91\\xfe\\xd3&\\x92z\\x92\\x92\\x92\\x00\\x00\\x00\\x00\\x1c\\x01V\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x006\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x1d\\x00\\x8d\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\a\\x00\\xbb\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x03\\x00$\\x01\\r\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x1d\\x01n\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x00&\\x01\\xda\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x1a\\x027\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\n\\x00,\\x02\\xac\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\v\\x00\\x17\\x03\\t\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x15\\x03M\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\a\\x03s\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x1d\\x03\\xb7\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x15\\x04\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\a\\x04'\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x00\\x004\\x00\\x00\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x01\\x00:\\x00Q\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x02\\x00\\x0e\\x00\\xab\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x03\\x00H\\x00\\xc3\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x04\\x00:\\x012\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x05\\x00L\\x01\\x8c\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x06\\x004\\x02\\x01\\x00\\x03\\x00\\x01\\x04\\t\\x00\\n\\x00X\\x02R\\x00\\x03\\x00\\x01\\x04\\t\\x00\\v\\x00.\\x02\\xd9\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x10\\x00*\\x03!\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x11\\x00\\x0e\\x03c\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x12\\x00:\\x03{\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x15\\x00*\\x03\\xd5\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x16\\x00\\x0e\\x04\\x17\\x00C\\x00o\\x00p\\x00y\\x00r\\x00i\\x00g\\x00h\\x00t\\x00 \\x00(\\x00c\\x00)\\x00 \\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00\\x00Copyright (c) Font Awesome\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Brands Regular\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00-\\x005\\x00.\\x001\\x002\\x00.\\x000\\x00\\x00Font Awesome 5 Brands Regular-5.12.0\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Brands Regular\\x00\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00330.752 (Font Awesome version: 5.12.0)\\x00\\x00F\\x00o\\x00n\\x00t\\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x005\\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00-\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00FontAwesome5Brands-Regular\\x00\\x00T\\x00h\\x00e\\x00 \\x00w\\x00e\\x00b\\x00'\\x00s\\x00 \\x00m\\x00o\\x00s\\x00t\\x00 \\x00p\\x00o\\x00p\\x00u\\x00l\\x00a\\x00r\\x00 \\x00i\\x00c\\x00o\\x00n\\x00 \\x00s\\x00e\\x00t\\x00 \\x00a\\x00n\\x00d\\x00 \\x00t\\x00o\\x00o\\x00l\\x00k\\x00i\\x00t\\x00.\\x00\\x00The web's most popular icon set and toolkit.\\x00\\x00h\\x00t\\x00t\\x00p\\x00s\\x00:\\x00/\\x00/\\x00f\\x00o\\x00n\\x00t\\x00a\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00.\\x00c\\x00o\\x00m\\x00\\x00https://fontawesome.com\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00\\x00Font Awesome 5 Brands\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Brands Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00B\\x00r\\x00a\\x00n\\x00d\\x00s\\x00\\x00Font Awesome 5 Brands\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xdb\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xb9\\x00\\x00\\x00\\x01\\x00\\x02\\x01\\x02\\x01\\x03\\x01\\x04\\x01\\x05\\x01\\x06\\x01\\a\\x01\\b\\x01\\t\\x01\\n\\x01\\v\\x01\\f\\x01\\r\\x01\\x0e\\x01\\x0f\\x01\\x10\\x01\\x11\\x01\\x12\\x01\\x13\\x01\\x14\\x01\\x15\\x01\\x16\\x01\\x17\\x01\\x18\\x01\\x19\\x01\\x1a\\x01\\x1b\\x01\\x1c\\x01\\x1d\\x00\\xd2\\x01\\x1e\\x01\\x1f\\x01 \\x01!\\x01\\\"\\x01#\\x01$\\x01%\\x01&\\x01'\\x01(\\x01)\\x01*\\x01+\\x01,\\x01-\\x01.\\x01/\\x010\\x011\\x012\\x013\\x014\\x015\\x016\\x017\\x018\\x019\\x01:\\x01;\\x01<\\x01=\\x01>\\x01?\\x01@\\x01A\\x01B\\x01C\\x01D\\x01E\\x01F\\x01G\\x01H\\x01I\\x01J\\x01K\\x01L\\x01M\\x01N\\x01O\\x01P\\x01Q\\x01R\\x01S\\x01T\\x01U\\x01V\\x01W\\x01X\\x01Y\\x01Z\\x01[\\x01\\\\\\x01]\\x01^\\x01_\\x01`\\x01a\\x01b\\x01c\\x01d\\x01e\\x01f\\x01g\\x01h\\x01i\\x01j\\x01k\\x01l\\x01m\\x01n\\x01o\\x01p\\x01q\\x01r\\x01s\\x01t\\x01u\\x01v\\x01w\\x01x\\x01y\\x01z\\x01{\\x01|\\x01}\\x01~\\x01\\u007f\\x01\\x80\\x01\\x81\\x01\\x82\\x01\\x83\\x01\\x84\\x01\\x85\\x01\\x86\\x01\\x87\\x01\\x88\\x01\\x89\\x01\\x8a\\x01\\x8b\\x01\\x8c\\x01\\x8d\\x01\\x8e\\x01\\x8f\\x01\\x90\\x01\\x91\\x01\\x92\\x01\\x93\\x01\\x94\\x01\\x95\\x01\\x96\\x01\\x97\\x01\\x98\\x01\\x99\\x01\\x9a\\x01\\x9b\\x01\\x9c\\x01\\x9d\\x01\\x9e\\x01\\x9f\\x01\\xa0\\x01\\xa1\\x01\\xa2\\x01\\xa3\\x01\\xa4\\x01\\xa5\\x01\\xa6\\x01\\xa7\\x01\\xa8\\x01\\xa9\\x01\\xaa\\x01\\xab\\x01\\xac\\x01\\xad\\x01\\xae\\x01\\xaf\\x01\\xb0\\x01\\xb1\\x01\\xb2\\x01\\xb3\\x01\\xb4\\x01\\xb5\\x01\\xb6\\x01\\xb7\\x01\\xb8\\x01\\xb9\\x01\\xba\\x01\\xbb\\x01\\xbc\\x01\\xbd\\x01\\xbe\\x01\\xbf\\x01\\xc0\\x01\\xc1\\x01\\xc2\\x01\\xc3\\x01\\xc4\\x01\\xc5\\x01\\xc6\\x01\\xc7\\x01\\xc8\\x01\\xc9\\x01\\xca\\x01\\xcb\\x01\\xcc\\x01\\xcd\\x01\\xce\\x01\\xcf\\x01\\xd0\\x01\\xd1\\x01\\xd2\\x01\\xd3\\x01\\xd4\\x01\\xd5\\x01\\xd6\\x01\\xd7\\x01\\xd8\\x01\\xd9\\x01\\xda\\x01\\xdb\\x01\\xdc\\x01\\xdd\\x01\\xde\\x01\\xdf\\x01\\xe0\\x01\\xe1\\x01\\xe2\\x01\\xe3\\x01\\xe4\\x01\\xe5\\x01\\xe6\\x01\\xe7\\x01\\xe8\\x01\\xe9\\x01\\xea\\x01\\xeb\\x01\\xec\\x01\\xed\\x01\\xee\\x01\\xef\\x01\\xf0\\x01\\xf1\\x01\\xf2\\x01\\xf3\\x01\\xf4\\x01\\xf5\\x01\\xf6\\x01\\xf7\\x01\\xf8\\x01\\xf9\\x01\\xfa\\x01\\xfb\\x01\\xfc\\x01\\xfd\\x01\\xfe\\x01\\xff\\x02\\x00\\x02\\x01\\x02\\x02\\x02\\x03\\x02\\x04\\x02\\x05\\x02\\x06\\x02\\a\\x02\\b\\x02\\t\\x02\\n\\x02\\v\\x02\\f\\x02\\r\\x02\\x0e\\x02\\x0f\\x02\\x10\\x02\\x11\\x02\\x12\\x02\\x13\\x02\\x14\\x02\\x15\\x02\\x16\\x02\\x17\\x02\\x18\\x02\\x19\\x02\\x1a\\x02\\x1b\\x02\\x1c\\x02\\x1d\\x02\\x1e\\x02\\x1f\\x02 \\x02!\\x02\\\"\\x02#\\x02$\\x02%\\x02&\\x02'\\x02(\\x02)\\x02*\\x02+\\x02,\\x02-\\x02.\\x02/\\x020\\x021\\x022\\x00\\x1f\\x023\\x024\\x025\\x026\\x027\\x028\\x029\\x02:\\x02;\\x02<\\x02=\\x02>\\x02?\\x02@\\x02A\\x02B\\x02C\\x02D\\x02E\\x02F\\x02G\\x02H\\x02I\\x02J\\x02K\\x02L\\x02M\\x02N\\x02O\\x02P\\x02Q\\x02R\\x02S\\x02T\\x02U\\x02V\\x02W\\x02X\\x02Y\\x02Z\\x02[\\x02\\\\\\x02]\\x02^\\x02_\\x02`\\x02a\\x02b\\x02c\\x02d\\x02e\\x02f\\x02g\\x02h\\x02i\\x02j\\x02k\\x02l\\x02m\\x02n\\x02o\\x02p\\x02q\\x02r\\x02s\\x02t\\x02u\\x02v\\x02w\\x02x\\x02y\\x02z\\x02{\\x02|\\x02}\\x02~\\x02\\u007f\\x02\\x80\\x02\\x81\\x02\\x82\\x02\\x83\\x02\\x84\\x02\\x85\\x02\\x86\\x02\\x87\\x02\\x88\\x02\\x89\\x02\\x8a\\x02\\x8b\\x02\\x8c\\x02\\x8d\\x02\\x8e\\x02\\x8f\\x02\\x90\\x02\\x91\\x02\\x92\\x02\\x93\\x02\\x94\\x02\\x95\\x02\\x96\\x02\\x97\\x02\\x98\\x02\\x99\\x02\\x9a\\x02\\x9b\\x02\\x9c\\x02\\x9d\\x02\\x9e\\x02\\x9f\\x02\\xa0\\x02\\xa1\\x02\\xa2\\x02\\xa3\\x02\\xa4\\x02\\xa5\\x02\\xa6\\x02\\xa7\\x02\\xa8\\x02\\xa9\\x02\\xaa\\x02\\xab\\x02\\xac\\x02\\xad\\x02\\xae\\x02\\xaf\\x02\\xb0\\x02\\xb1\\x02\\xb2\\x02\\xb3\\x02\\xb4\\x02\\xb5\\x0etwitter-square\\x0ffacebook-square\\blinkedin\\rgithub-square\\atwitter\\bfacebook\\x06github\\tpinterest\\x10pinterest-square\\x12google-plus-square\\rgoogle-plus-g\\vlinkedin-in\\ngithub-alt\\x06maxcdn\\x05html5\\x04css3\\x03btc\\ayoutube\\x04xing\\vxing-square\\adropbox\\x0estack-overflow\\tinstagram\\x06flickr\\x03adn\\tbitbucket\\x06tumblr\\rtumblr-square\\awindows\\aandroid\\x05linux\\bdribbble\\x05skype\\nfoursquare\\x06trello\\bgratipay\\x02vk\\x05weibo\\x06renren\\tpagelines\\x0estack-exchange\\fvimeo-square\\x05slack\\twordpress\\x06openid\\x05yahoo\\x06google\\x06reddit\\rreddit-square\\x12stumbleupon-circle\\vstumbleupon\\tdelicious\\x04digg\\rpied-piper-pp\\x0epied-piper-alt\\x06drupal\\x06joomla\\abehance\\x0ebehance-square\\x05steam\\fsteam-square\\aspotify\\ndeviantart\\nsoundcloud\\x04vine\\acodepen\\bjsfiddle\\x05rebel\\x06empire\\ngit-square\\x03git\\vhacker-news\\rtencent-weibo\\x02qq\\x06weixin\\nslideshare\\x06twitch\\x04yelp\\x06paypal\\rgoogle-wallet\\acc-visa\\rcc-mastercard\\vcc-discover\\acc-amex\\tcc-paypal\\tcc-stripe\\x06lastfm\\rlastfm-square\\aioxhost\\tangellist\\nbuysellads\\x0econnectdevelop\\bdashcube\\bforumbee\\aleanpub\\x06sellsy\\fshirtsinbulk\\vsimplybuilt\\bskyatlas\\vpinterest-p\\bwhatsapp\\aviacoin\\x06medium\\fy-combinator\\roptin-monster\\bopencart\\fexpeditedssl\\x06cc-jcb\\x0ecc-diners-club\\x10creative-commons\\x02gg\\tgg-circle\\vtripadvisor\\rodnoklassniki\\x14odnoklassniki-square\\nget-pocket\\vwikipedia-w\\x06safari\\x06chrome\\afirefox\\x05opera\\x11internet-explorer\\x06contao\\x05500px\\x06amazon\\x05houzz\\avimeo-v\\tblack-tie\\tfonticons\\freddit-alien\\x04edge\\bcodiepie\\x04modx\\ffort-awesome\\x03usb\\fproduct-hunt\\bmixcloud\\x06scribd\\tbluetooth\\vbluetooth-b\\x06gitlab\\nwpbeginner\\awpforms\\x06envira\\x05glide\\aglide-g\\x06viadeo\\rviadeo-square\\bsnapchat\\x0esnapchat-ghost\\x0fsnapchat-square\\npied-piper\\vfirst-order\\x05yoast\\tthemeisle\\vgoogle-plus\\ffont-awesome\\x06linode\\x05quora\\x0efree-code-camp\\btelegram\\bbandcamp\\x04grav\\x04etsy\\x04imdb\\aravelry\\bsellcast\\vsuperpowers\\nwpexplorer\\x06meetup\\x10font-awesome-alt\\x0faccessible-icon\\baccusoft\\badversal\\x0eaffiliatetheme\\aalgolia\\x06amilia\\rangrycreative\\tapp-store\\rapp-store-ios\\x05apper\\nasymmetrik\\aaudible\\aavianex\\x03aws\\tbimobject\\abitcoin\\x04bity\\nblackberry\\ablogger\\tblogger-b\\x10buromobelexperte\\ncentercode\\ncloudscale\\ncloudsmith\\fcloudversify\\x06cpanel\\bcss3-alt\\ncuttlefish\\ad-and-d\\tdeploydog\\adeskpro\\rdigital-ocean\\adiscord\\tdiscourse\\x06dochub\\x06docker\\rdraft2digital\\x0fdribbble-square\\x06dyalog\\nearlybirds\\x06erlang\\nfacebook-f\\x12facebook-messenger\\nfirstdraft\\ffonticons-fi\\x10fort-awesome-alt\\afreebsd\\tgitkraken\\x06gofore\\tgoodreads\\vgoodreads-g\\fgoogle-drive\\vgoogle-play\\bgripfire\\x05grunt\\x04gulp\\x12hacker-news-square\\rhire-a-helper\\x06hotjar\\ahubspot\\x06itunes\\vitunes-note\\ajenkins\\x05joget\\x02js\\tjs-square\\x06keycdn\\vkickstarter\\rkickstarter-k\\alaravel\\x04line\\x04lyft\\amagento\\amedapps\\bmedium-m\\x05medrt\\tmicrosoft\\x03mix\\x06mizuni\\x06monero\\anapster\\anode-js\\x03npm\\x03ns8\\vnutritionix\\x05page4\\x06palfed\\apatreon\\tperiscope\\vphabricator\\x11phoenix-framework\\vplaystation\\x06pushed\\x06python\\tred-river\\awpressr\\x06replyd\\tresolving\\nrocketchat\\arockrms\\x06schlix\\vsearchengin\\fservicestack\\asistrix\\nslack-hash\\aspeakap\\nstaylinked\\fsteam-symbol\\fsticker-mule\\fstudiovinari\\x06supple\\x0etelegram-plane\\x04uber\\x05uikit\\vuniregistry\\auntappd\\bussunnah\\x06vaadin\\x05viber\\x05vimeo\\x03vnv\\x0fwhatsapp-square\\x05whmcs\\x10wordpress-simple\\x04xbox\\x06yandex\\x14yandex-international\\tapple-pay\\fcc-apple-pay\\x03fly\\x04node\\x03osi\\x05react\\fautoprefixer\\x04sass\\x05vuejs\\aangular\\x06aviato\\x05ember\\x11font-awesome-flag\\x06gitter\\x05hooli\\x06strava\\x06stripe\\bstripe-s\\x05typo3\\namazon-pay\\rcc-amazon-pay\\bethereum\\x06korvue\\telementor\\x0eyoutube-square\\tflipboard\\x04hips\\x03php\\tquinscape\\x06readme\\x04java\\x0epied-piper-hat\\x13creative-commons-by\\x13creative-commons-nc\\x16creative-commons-nc-eu\\x16creative-commons-nc-jp\\x13creative-commons-nd\\x13creative-commons-pd\\x17creative-commons-pd-alt\\x16creative-commons-remix\\x13creative-commons-sa\\x19creative-commons-sampling\\x1ecreative-commons-sampling-plus\\x16creative-commons-share\\x15creative-commons-zero\\x04ebay\\akeybase\\bmastodon\\tr-project\\fresearchgate\\tteamspeak\\x0ffirst-order-alt\\afulcrum\\x11galactic-republic\\x0fgalactic-senate\\njedi-order\\vmandalorian\\fold-republic\\x10phoenix-squadron\\x04sith\\x10trade-federation\\x13wolf-pack-battalion\\bhornbill\\tmailchimp\\bmegaport\\x06nimblr\\x03rev\\bshopware\\vsquarespace\\athemeco\\x06weebly\\x03wix\\x04ello\\nhackerrank\\x06kaggle\\bmarkdown\\x04neos\\x05zhihu\\x06alipay\\fthe-red-yeti\\x19acquisitions-incorporated\\rcritical-role\\x0ed-and-d-beyond\\x03dev\\x14fantasy-flight-games\\fpenny-arcade\\x14wizards-of-the-coast\\vthink-peaks\\vreacteurope\\x05adobe\\nartstation\\tatlassian\\x13canadian-maple-leaf\\x06centos\\nconfluence\\x03dhl\\bdiaspora\\x05fedex\\x06fedora\\x05figma\\bintercom\\binvision\\x04jira\\bmendeley\\fraspberry-pi\\x06redhat\\x06sketch\\nsourcetree\\x04suse\\x06ubuntu\\x03ups\\x04usps\\x04yarn\\x06airbnb\\nbattle-net\\tbootstrap\\x06buffer\\nchromecast\\bevernote\\aitch-io\\nsalesforce\\fspeaker-deck\\asymfony\\x04waze\\x06yammer\\agit-alt\\tstackpath\\rcotton-bureau\\vbuy-n-large\\x03mdb\\x05orcid\\x05swift\\aumbraco\\x0ffirefox-browser\\x05ideal\\tmicroblog\\x11pied-piper-square\\x05unity\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x01\\xb8\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\xd9k%\\xf9\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\"\nvar _Assets88d58097382a74c60911983bc1037b4ca4d863cc = \"wOF2\\x00\\x01\\x00\\x00\\x00\\x01(\\xa0\\x00\\r\\x00\\x00\\x00\\x02\\x02(\\x00\\x01(G\\x01J\\xc0\\x83\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00?FFTM\\x1c\\x1a\\x1e\\x06`\\x00\\x8bZ\\x11\\b\\n\\x87\\xabd\\x85\\xe1\\r\\x016\\x02$\\x03\\x8dd\\v\\x86t\\x00\\x04 \\x05\\x8b\\x05\\a\\xa9\\t[t\\x98q\\x06ǆ[t\\x1e\\xaanC\\x00\\x80g\\xd6\\xd4M\\xe3~\\x06\\xc7y\\xb7\\x03I)\\xe6\\r\\x17\\x1d\\x8da\\xe3\\x00`\\xfe\\x9d~\\xf6\\xff\\xff\\xff/H\\x1ac\\xac\\xdb\\xd4\\x1d\\x80@jjUY_\\xbd\\xc9\\x1dE\\x82 ʕ2xV\\x1cK\\xb5d\\xcdt\\x9aN5\\xce\\vƠ\\xc5\\n\\xf8\\xcc\\xcf4Q\\ra\\xddV\\xdb5\\x91\\xdc\\xf5\\x12,\\x14A \\v\\x88\\bD\\x04\\\"\\x82%\\xe1\\xd6\\xcbn^\\x8b\\xad\\x16\\xc9\\b\\xea(\\x10_\\xb7k\\xe9\\x14\\xbb\\xd4[2\\xafp\\x1f\\xdcymN\\xbd\\x8e\\xf3\\xc3R\\xe6O\\x9a\\xd5_\\xa0\\x8f\\xf2da\\xc7\\xcb\\t\\x1c\\x92l3A\\x85f~\\x8c\\xcc_\\\\4\\xd2Wz\\xcbQ\\x96t\\xa0c\\xc4`.G\\xc7y\\xea\\xb5]\\xc5De\\x12\\x95z\\x92PR\\xf5\\x9cc\\x80&7\\xc1!\\x97\\t4\\x80\\xb9\\x84\\x00rh\\x1e\\xb2\\xc01\\x9b\\xfap\\xa1\\xd4E\\x02\\x99\\xb2H\\x16\\xb9\\x91\\b\\u007f\\xdb\\x04\\x85\\xbbE\\xf6\\xb1DCo7~\\xfd>X\\xbc\\x1f\\xbfOY\\xe0\\xc7\\xdbp\\xdaȼx)V-\\xbf\\xb9\\x06x\\xb1\\x85\\xecN\\xcf\\xff\\xf4\\xdb\\xfb\\x12\\x1c\\x87\\xc7h@\\x97\\xe2\\x8a\\x0f\\xffO\\xfb\\xb5\\xf3\\xee|\\x93\\x15\\x9b\\xf5F\\xb3$\\xde\\xd4Z\\x85\\x90)\\x91ؠ\\x04\\x1a\\xd4\\xe1\\xff\\x89{ڹ\\xff\\xef\\xee\\xecDK\\t\\xa4I\\x86\\x01\\xc7\\x19&\\x92e\\x14\\a\\xd4\\xf3\\xe3\\xf3\\xaaW\\xd5Y\\xf2,܈\\xbf\\x00n +Y\\x00\\xa7\\xf4\\xac\\x95\\xf4\\xe8g\\xe1#\\x8f\\xd4\\xc85<?\\xb7\\xde_\\xe5_$\\x1bkb\\xe4\\x8a\\xc85Q\\v\\\"R\\\"MJ\\x05\\x14\\x95\\xb0\\x02\\xa3\\xe2\\x14#ꬼ3\\xf2\\xd4+E\\x15\\xee)\\xe9\\x89`?\\xe52\\xbfzת=\\xbe\\xf7\\xaa\\xe1\\u007fn\\x98ğx\\x01\\xa8\\xd5ʌ\\x972\\xbdY\\x1f\\x97\\x0e\\x17\\xe9*]\\v\\x04\\x86\\x80\\xa0\\xc1\\x10\\xf0\\xd8m{ \\f\\x86E\\xb0\\x98Τ\\xcb:\\x88\\xf2u\\xea\\x1eYՀ#\\xfe\\xbd\\x15\\xea=\\bU\\xfd\\x9b)=;\\xe2\\xcd\\xedw\\xb6\\xbcv\\xed\\x95kɥ\\xbc\\xbb\\xcb%\\x1d\\xee\\xd2\\t\\xc5+\\xa9$\\xc0\\xa54JH\\xa7\\x8aI(\\x81\\x1e\\b]\\xa3\\xa1T[\\x00\\xd1\\xfe\\x05\\x14\\x1b\\x8a\\x80\\xa2X\\xf0#`\\xc1\\x8f\\x8a\\xa5\\xd5\\x1f\\x01\\xf0\\xdf\\xff\\xdc\\xfb\\xa7W\\xdeT2\\b\\xddU\\v(\\x1f\\x1aWa\\xf7\\xd8\\xc4\\xce\\x04\\x8a\\x1f\\x00\\x8d/̛\\xd3>\\xe9\\xfd\\x9btu\\xec0\\x14\\x06Ҹ)p\\x92\\xb6\\x03$h'\\xff\\xff\\xdd\\xd43\\x9b%8\\\\\\x9ck\\xbc\\xc7A\\x04\\xc1\\\"\\xf4=\\xbe}\\xfeC[\\x95?\\xa3\\x92T*\\x95ԥ\\xc6\\xe9\\x99\\x1e\\xa0%>\\xc6}\\x00\\x8cL\\x9c!\\xa4N\\\"G\\x1fd\\x8e\\x1d:\\xfb\\xc8\\xe6\\xd4A\\xf4ö\\x8d\\xbd\\x053\\x1a\\xa6l)V\\x81=\\xeb\\xff\\xff~\\xbd\\xbe\\xb3\\xbe;\\xf7\\x8f\\x9by/\\fB\\xd5#\\r\\x04Tx\\xf9\\n\\xf3\\xb6\\xdd\\xdb^\\x18\\bw\\xb0\\xc0?iY\\xd1\\xf2\\t\\xab\\nU\\xb5%Zɲ\\x8d!\\x10\\xb2\\xddJ\\xaf\\x8f\\xcf\\x06\\xe6\\x19j\\xde2\\xe8\\x8bhP/(\\x180\\\\f\\xab\\xeeūZ\\xb4,\\\"\\x04\\x19\\x02Y\\x82\\xdc\\xec༐G\\x1cD4\\f۶\\x1eg\\xfd\\n\\xab\\xd1Ɗk\\v$ \\x00<\\xb2iU%=Və\\xc0KlX`\\xb4\\xbb\\xbad+\\xb1<\\xf7\\xafp\\x83\\xb4;\\xedN\\a$\\xeb\\x8e\\r\\a\\xc8\\x1f\\x1dH~\\xe0\\x9d\\xaf|\\xe7\\xf7U\\xf3vU3\\xbb\\n7(\\x10\\xbao\\xdf\\x00\\b\\x8c\\x90D2\\x0e\\xe4g\\x1c;\\x18kcYgF\\xf3\\xe3\\xa4Ŧ{\\xdb}\\xfe\\xae\\xc2\\r\\n\\x84\\x9b%!\\x82\\x84P\\xc4\\x19\\x1bcb\\xf7\\xed\\x1fV3s\\xf6\\xff\\xffϕ~R\\xbc\\x93\\xe2A\\x95d\\xc0I\\x839\\x04\\xa6\\x0fhs\\\"\\b\\f\\xfb\\xff\\x93\\xcd\\xf6\\xbdY\\xbe\\xb7\\xbd \\xa8\\xee2\\b\\n\\x1a\\xd2qA\\xa3;\\xe06&\\\\0\\xb0D\\xf3u\\xf5R\\x95\\xee\\xfe\\xcf\\xc1v9\\xbbN\\xc0\\x04\\xcf[\\xe3q$y\\x8f\\x06\\xa0{C\\x1b\\x02\\x03\\xdb\\xed\\x1d\\t\\xdfl\\xd9\\xffW݀\\x99\\x92t\\xbfi\\\\\\xec\\xfc\\x87y\\xb7\\x15\\xf6\\x01tc,\\u007fY\\xa4CO\\xa9Z\\xb6\\xe0G~\\x96\\xde9\\xe9\\x1c\\xf2\\xf4\\xa9h\\xdcT\\x1e\\u05eevA\\x05,(\\xc9\\x04u\\t\\xe4\\a\\x92\\x97H\\xf1\\x03!\\xe8~H\\xe9>\\xe4P9\\xa5\\xca\\xe3jAJ6p\\x11+^\\x00..\\xc4\\x0f\\x00\\xe5\\x008\\x02\\x8e\\xa9\\xbaW\\xe5\\x10r\\xe9\\\\\\x94\\xaeJ\\x17%\\xe8(9\\xa5\\xb6p[}\\xe8\\xfc~\\xb5\\xd7\\xe9Ta\\x10\\xaa\\xad\\xf2\\x8cǙ\\xbf\\xf7r\\x99䱴vw4\\u05cb*]18\\x1c\\x92A8t\\xebҢu\\xbc\\xe5\\xe7\\xd5\\xd4jAɁ\\xdeK\\xb2/%\\xf9\\xa2.\\xbb(}[\\xb4[\\x94\\xd74x\\xff\\x03\\xc3\\xf9\\xffcH\\\"\\fE\\x00341\\x18\\xca\\xc4\\f%\\x13\\xc0P&\\x00J\\xa6\\xe8DK\\x1btY\\x97\\xb5\\xf9B\\b\\x03\\x80\\x94\\x88\\x19\\xd2&\\x06\\n\\x1c\\xc9\\xf6Y\\x94\\xbc)\\x16ͮ\\xab\\v!\\x17\\xe5^\\xd3\\\\\\xd1\\xd6\\a\\x99\\xbe\\xaf\\xedH\\xed\\xdf\\x1dJR\\xaf8v\\nTݴI\\x86^;Ɛ\\x1e\\xc3CJ)\\\"\\xf3\\x9d\\xd5o\\x16\\x97\\xd3\\xfeW\\x972\\xd4\\x12k\\b\\xcf\\x18B\\x88\\xe5_.:Ȝe\\x00\\xb5j{\\x05\\xc3Rf \\x11\\xc2\\x14\\x11p\\xa1\\xb2\\x1c\\xed\\xfd8lӊ\\xc9\\xf0b\\xc1\\x02\\x11\\xbd\\xca\\xe3\\xb3%\\xdc*\\x03\\xee\\xdf\\u05fb\\x98\\x94kW\\xc1+#\\xc9$\\x19Y\\xaeز\\x8a\\x9c\\xf8\\u007f\\\\\\x81\\xa0k\\x86\\xb7\\x0f\\xb3A\\x80\\x01|\\xcf\\xf3\\x15\\x02\\xfc\\xd4\\xe3\\xfe\\x14O\\xd5z*`t@\\b'\\x05\\x84K\\xb1!\\x88\\xe8w\\a\\xc4`C\\x9b\\tΗ\\xf7\\xfb\\x1f\\u007f[ \\\\cxܨ\\x87\\x99\\x96b\\xf0\\xf1g?\\xb5\\xa3\\xdb\\xf4\\xca\\v\\xc2(\\xebBg\\xc1z\\xeds\\xbb\\xdey}Q\\xf4\\x9a{\\t\\xd5\\xf99N\\x00kE\\x90\\xe2E\\x88\\xd7\\xf5\\xa8'<\\xf3\\xdd\\xdf\\x13\\x18\\x04\\x10F&\\x15\\x8c\\xa1\\x9e&&\\xd1\\t\\x04\\x8d\\x84\\x86\\x89C\\x86&\\x03v\\xdc\\xe6\\x0f\\xde\\xf3WV\\xccr\\xf9Vm\\xa0\\x11ƛk\\x95c\\xacs\\x92]\\x12J\\xea&,X\\xb3\\xe5\\xc2\\xdf}\\xe8\\xe3\\xb2knb\\x1d\\xc1a\\xb1\\xa9\\x19\\xb9EU\\xea7\\xeaDg\\xbaЕ\\xee\\xf7\\xa8\\xe7\\xbd\\xedC\\xfaMS\\x98]\\x96Snsg\\x92ɦZ\\xc2\\x1cK[\\xc6n\\xee\\xc5\\xfeέ{C\\xe7\\\\x\\xa9\\xab\\\\\\xfd\\x06\\xb7\\xb8\\vw\\xf9>\\xe5j\\xf1\\xdb/\\u007f\\xfej\\xc9\\xcb\\x179\\xe3\\x96l\\xeb\\xce\\xed\\xc2\\xeeC\\xe5\\x1f\\xcb\\xd1f\\xbc)\\xfa\\xcc0h\\x81\\xedv:\\xe4\\x94\\xebny\\xe2Y\\xe1\\x19[ښ\\xceu\\xad'\\xbd>\\xb6\\xb08\\xff\\xae\\xc7Q\\xcc\\x1f\\x0f6\\xddE\\u007f\\x97H\\xa8R\\x19U\\xd4\\xd1\\xc8X:lW<b\\x90{\\xd4\\xe8\\xb1\\xe1\\n\\xafx\\xc7\\xc7,\\xb69ݪ\\xac=ĸ\\xf6|k\\xb4&\\xd8!\\xa4\\xa8blڒ=h\\xe6M\\x1f\\xccY^[\\xedu+\\x93\\xf1\\xe9\\xd9\\xf9%\\xaa\\xd9\\x03\\x8ew\\xaas\\x91k\\x0fx\\xd2\\xcb\\xdeGr\\xe7\\xe4\\xe5\\x9e\\xf1\\x9eT\\xf1\\xf4x\\xbeWGHEi]\\xf86m\\x97\\x9e\\xcd\\x03\\xe6\\xd9Z:\\x98{\\xd4!m\\xe3\\xff\\xe6\\x80\\x00iʘ\\x04\\xa5\\xfc\\xe6\\xe5\\xa6#/'+#!\\x16r\\xe9\\x142\\x91\\x00\\a\\x03\\xb5*W\\xa2X\\xbadv6\\x01\\x9e\\xebؖi\\xe8\\x1am\\x88\\xe9\\xaf\\xca\\xff\\xe6\\xeb/\\u07bb\\xf0\\xda\\xf9\\x9aFmfjb\\xec\\xb9\\xcfcߖi\\x1cڦ*\\x8b<\\x89\\xbdт\\xb3\\xbb\\x92\\xfd\\u007f9\\x9f\\xb39\\x8bW\\xbd\\xe2\\xe5Ow\\xcf\\xc1\\x06Ǥ\\xba뚋\\xce\\xdbƵI\\x95\\n\\xe1B{ҡV\\xf7:\\x9f4.ep\\xd4\\xd6\\x1f\\xcd\\xf9\\xa4\\xfe\\xfb\\xb3\\xfd{tmټ~\\xf7\\xfayU\\xc1y\\xdd\\u007f\\xff\\xfe\\xf9\\xdb\\xe7\\u007f\\xe4\\xfb\\xbe\\xfb\\xbf\\xcaeC\\xbcLt\\xf3c\\xc5\\x0eCt\\xff\\x87\\x8d\\xcf\\x12\\xdbT\\xbf\\xd5\\xf7p~\\xcc\\xfd\\r\\xbe|\\xe0;gn\\u007f\\xfb[y\\x00\\xa9\\xd1\\x04m\\xaf!#\\xa8k\\xa1\\xb7s&\\xf8I+z\\x93S겥\\v\\xf3\\x02\\xb2V\\xa8\\x89M\\x00\\xef \\xefv\\xbaF$@=\\x05X\\x92\\xda3ZR`a4\\xe8\\x02\\x0f\\x85\\xa3\\xf2\\xa7\\xd4Ei\\x04;\\xe2\\xc1\\xfdwz\\xc89\\xfap,t\\x88`\\xba\\x12\\xbd\\xb1G\\x91\\x16\\x10\\xc6\\f\\n\\xc5\\x01\\x1aX\\x93\\x94\\xae}\\x9a-\\xf8Fit\\xfa\\xcaT\\x00\\x95!\\\\T\\x9a~\\xddu\\x0f\\x1e\\xf3\\xde \\xbe&\\xf3\\x88Y\\x98\\xa5'\\x13\\xce\\x1cur\\xa4\\xbbA\\x03\\x11\\xab\\xb1\\x8f?[\\xa0-\\b\\x9c6s\\xb12T\\xab\\xa6\\x03y\\xb7\\xe0\\xe4\\xd6A\\x83\\x83b(зD\\x1b\\x02O\\xb0\\xd0.\\x13r\\xc7J_\\xb7م\\x1047\\xb2x\\xbb\\x87f\\xad\\xda\\fH\\xbfY\\xfd!\\xb5\\xaa7\\x8d\\t\\xccF0\\xb3\\x80\\xd6kf\\x18\\x9e\\x8c\\xf59'\\x83j\\xeeS\\x98\\xc6\\xd6\\f\\x99R\\x897B\\x84\\x01\\xb4@\\x9b=\\x1f1վ\\xbd\\xfb\\xebons\\xba\\xc07\\x1cm\\xe6\\n/\\xb8\\x002a\\xca\\v\\x8a\\rfj\\x97\\xb6-bABe\\xfa\\xedco-\\x1a[y\\xa4\\xd1Xk\\xf0x\\x8aּ\\x84ܴ̞\\xbf\\\"\\x1d\\xfb\\xb7\\xc0\\xad\\xdfn\\xb1\\xd4I\\x0e\\x8bb\\xadR!)!\\x94\\x82\\x1c~\\xd6]\\x16D\\x85v\\x00;\\xb25sv\\f\\x14&\\x1c_.\\xf2A\\xf7p:Dr\\xc8h\\xba\\xcb\\xcdv\\x91r,\\x9f\\x8f-E\\xa6R&\\xffJ\\x00 Y;v\\x91ɰ\\xd9A0\\x98\\xbb\\xf1\\xd8\\xe1nd\\xc6d\\xd9\\xc5I\\x99\\xe6\\x1b\\xd1@p:\\x88$\\x13\\xcb\\a\\xf0m\\x80\\xd0J>l5d\\xc4\\xd6B\\x1ds5\\x01\\xae\\x16\\tQ6\\xd1c^\\xc1\\xb06\\xb1\\xa7\\xbc\\xf2\\x05\\xb3\\xdf\\xcb\\x01\\x14\\xc0\\xd2\\xf5\\xfa\\xe2\\xbbA\\x02\\xd6 f\\xdb\\x1e\\x05\\xe7\\xf9l+`\\xed\\x17Г4>\\xad\\x88bb\\xc4K\\x03\\x00\\x87\\x89\\x051\\xb2\\xdc\\xf6\\xdeD'\\x01\\xa6\\x1e\\f\\x98y\\x146۱L\\xc1\\x9b\\xb2'\\x9cq\\xb0\\x92\\xd8b\\x1a\\x10 \\x95\\xb6t\\xcar/\\xb7\\xa5\\xfa|\\xf0a\\xdf[* rR5C\\x9c\\t\\x84,c!\\x80\\xac~KޜLx\\v]\\xb8n\\x94\\xd8s\\xa5\\x83UZ\\x81v`\\x8dVڢQ\\x9a\\xa2\\x10\\xff\\xccgM5\\x16I\\x02\\xa2\\xc1\\x99t>\\xad\\xcd$0B|\\xfb\\x8e\\xa4\\xadF\\xc1\\x1a\\xf8\\x8f\\x9e\\x9cw\\x8a\\xec}\\xa0uJy\\xc16Df\\x8f8\\xc7NX\\x10\\x1dʨ\\xa8АdU\\x95qG\\xe8\\xa4\\xe0'\\x98#\\x06\\x8f\\xdbFe\\xc1u6~Na\\x9e\\xa3\\xb0dqĜ!\\xc7\\xe8\\x89\\xfe<X\\v\\x87TMΫ\\xbc;p\\x83\\x9a6\\xc1\\xc2v\\x91\\xedf1\\xa8\\xb5\\x8b\\r\\xb0do3\\xbf\\x8dH\\xe5*˺\\xa9R\\x15\\xb3R6\\x85r3\\x01\\x04Iy\\x93Q0\\x1c\\xa0\\xe7\\xe9\\x93\\xd6\\xecUr\\\\\\xe1G_\\x93\\x0f6\\xa9\\xf7\\xc8\\xf4\\xfa\\xa8\\x1cy\\xff\\xbcϳ\\xc8<\\xcdp\\xc2rp\\x0fF\\xf4\\x1c \\x8c\\x86m\\xbf\\u007f\\xad\\xc5\\x1a\\x81\\x11\\v\\xc4\\xef\\xbe%=\\x88I\\\"\\xedk\\x17\\xb6\\xd3\\xe6\\xba\\b\\xb8\\x1b<\\x80Ft\\xe4\\x82u\\xb3\\x87t \\xb2\\xe3ӨY\\xc8I\\xb3\\xe2\\x1a\\x13R\\xca\\x13\\x9e\\xd59\\x9cd\\x0e\\xd4mW\\xa9\\xa1\\xab\\x90\\xc5\\r\\xab\\x85\\xaf\\xb8\\f\\x1d5Gh\\xa2\\x8b=\\x99\\x9f\\x84\\xad\\x1b\\x95H\\x99\\xf0rQE\\xee\\xcfC\\xe7p\\xa8ÔM\\x17\\x9b\\xe99!\\xd0\\x1c\\x14\\xee\\x00\\xd1\\xd7;\\x87\\x128\\x1b\\xd7s߮t9:<?\\xf9\\xe8\\xb7K\\x9c\\xb3H\\xabw4\\xc0HG\\x94\\xcb>\\xa8\\x1cF\\xfcP$:R\\x98Y\\xeb\\x82A\\xc1&\\xb2\\xc7ߤ_\\x13aO\\x06[#&\\x83;E\\xc6\\xfc\\xe51\\x93i\\xbf\\xe6\\xe3\\xa13\\xc9\\xdeq\\x06\\x00\\xcaZ\\xb5\\xbb\\xb9i\\x176\\xfe1\\x9fn\\xfb*\\x1b;\\x02\\xc5\\xf8\\x972HO\\xd2w֗<\\x1e\\b\\xdf|\\xae\\x91\\x87%#eJOr\\xddR\\x18n\\xb6\\xce&n\\xba1\\x84\\r\\x89em]\\x0f8\\xf4d9{\\x15Le\\xb4\\x01=\\xe4\\xd4IM\\xf3\\t\\xd1)\\xe2\\xc9:\\xcb\\xe2\\n\\xf8\\x8f\\xeb\\x18\\x9dw!Ӊ\\x9aT\\xf1\\xf5C@4L\\xd7\\xc8]\\xcepDB\\xa4@YǄ\\x85߾ꡐ\\\"\\x8b\\xf5\\xe2#;m\\a\\xa3vX\\x0eR\\x91\\x1b\\xe3\\xf5\\xc8/2\\xa1#>/\\xf9\\xd4\\xd2\\xfd;\\xb5j\\xfc\\x05cY\\x16\\fd{\\xe0B\\xc4\\xe7!m\\xce&\\xd8\\xe6\\xdc\\xfb۩d\\x8b\\xc8֯\\xbe\\x9e`\\xa8\\xa5e\\x004\\xa6\\xa4t\\x8aXc\\x10\\x0e\\xba5}\\x17\\x91\\xe5·\\xd3\\xf5\\xfal\\xd3ǰ/\\xcb\\xfd\\xed\\x9dt\\\"ّ\\u007f\\x8c\\x06w\\xa9\\x1c\\xd4\\x12\\xd0\\xe1\\x16c\\xebsC\\x82c\\x1e橱t}\\xed!7\\xab6\\xdf\\xc8˾:ؾ\\x11\\x11\\x1bD\\x13\\xb3\\f%\\u05cb\\x05\\x80\\x9d͓\\xadR\\xf7\\xfe%\\x05\\xa15\\xcaX\\xab\\f`U~\\xcf\\xfc˽\\xe6\\xc3\\xe80Ԩ\\x15\\xbe\\x8ahLN0-m\\xe6aY\\xc7\\xc3\\xfd\\xfa\\xde\\xf0\\xe4JQ\\xcb\\xd5;G\\xbb\\xdb\\x00b\\xed\\xc1\\xa0^%3@^\\xed\\x15\\x8c\\x98\\xea\\xb4Y\\xe5\\x93>.\\x98\\xa5\\\\Tu\\xdeF\\x96Ǚ\\xe1\\xc0\\x936[\\xf6\\x87\\\\C\\xc5\\x01\\x00\\xbb\\x92\\x83!\\xb6\\x1cJ\\v\\xc0aՙw\\xd0#\\x84Сޔ8\\xbc\\x8a\\\\j|\\x9cv\\xf1\\xc2^9-\\f\\\\YRV]fd\\xb3\\xf7\\x01A\\x1e\\xb4f\\v\\r\\xb8\\xffh0\\xd8F\\xc2\\xd5w\\xbe|\\xf7]\\x95\\xff\\xd8D\\xdf\\xfbҍ\\\\\\xbe}\\xe5+f\\x81\\xa3\\xf6\\x18\\tP\\x82%\\xfdI\\x1bǍhj\\xb5\\xb3Z\\x84\\x14ѬO\\xa8~{jp\\x88>\\xf3~\\xb2l\\xeb\\x1c\\xf0~\\u007f\\xf7\\xb19\\\\\\x17[\\xa3\\x0e\\xeb\\xfc\\xdaD\\xd8Fg,X{5\\xf0\\xe9E\\xf7١\\xff\\xc5\\xf9x\\x95\\xbb<Ҫ\\x9e\\u007fk0\\xf9\\xf9-\\x9f;Onϖ\\xf3\\xcfG\\n˰\\xd4g\\r\\xeb\\xe61\\xd4#\\xa9b\\xb4\\xa1\\x93bMB\\xb9\\x83\\xc9\\x06\\x80\\xf6˶\\xb0\\xb5;!\\xbb=8\\xda\\xde*\\x06~:\\x1a\\xa5\\xc57\\xb4i<\\xaaQ\\x86h\\xda5X\\xa9r\\xcc\\xd8`Bz0*>i\\x88\\x96\\xa4\\x94\\xb6N\\x85\\xe26\\x00n\\a\\xa8\\xf0\\xa0UY-\\x01\\x18@@\\xcfJ\\xec\\xe1\\x05\\xb0l\\x90\\xa8\\xd1\\xff\\v#\\x1e\\xa4\\xca\\xd9\\xda1c\\x14d\\x8a\\xe7(\\xfe,\\x87\\xfb\\xd9\\xd7\\x10\\x9f\\xf2#K\\x8c\\x81\\x99\\xba\\xe111Q\\x03\\x94\\xfe\\xab\\x9c\\x001\\xda\\xf6\\xcc\\xda҇A7,^\\xc6k\\xb45\\xbc\\x9d\\x13\\x1f\\xff\\x1e]/\\x04i\\xeb:\\x16\\xc6\\xe3\\xe8}ڙ\\x1eG`\\xda[\\xcey\\xb2}\\xc0\\xc3n\\n\\xf3!\\xfehsjL\\x91I\\xbe\\xb1ga\\x93\\x01.\\x05\\x8f>8,I,\\x87\\xcc\\xd7D\\x1e\\x01\\xe9\\xe1I8\\xef\\xfd\\x02\\xc16\\x8c\\xec`v\\xa0\\x9ad\\xd0`\\xfe\\x8e\\x06\\x00\\x9d\\xd8\\x13\\xc9u\\xe5v\\xe8Ö_V\\x97V\\xf2\\xb9\\x01\\xf7\\xd4F\\xdc\\xfd\\xfcx#\\x00j9\\x113\\xc4\\xea\\x10X\\xb2\\xa5~Bd\\xeb\\x84R\\r\\xe1\\xed*\\x1dY\\t=\\x0e\\xb8\\x8c\\xf8d_(\\x03\\x03\\xf9\\xb6\\xa6\\xefy\\xce3\\x12\\xaczg\\xe3e2\\x8f\\x9e2\\xfdbq\\xb2\\xc1\\xfdh\\xc1\\xd7\\x18}CI\\xe6VhL\\xfe\\x12\\xd6\\xf2\\x01b\\fH\\xe6\\x90nu\\x88\\\"q\\x8eS&\\xbd\\f'ڲ\\x98\\x97\\xdac\\x01ȧynQ\\xad\\x13\\rY\\xb7\\x94dZ\\x80jU\\r\\x10\\xe0g\\xb8\\xc1\\xb6\\x1d\\xaa\\x10\\x89\\b\\xc0R\\x86I\\x93\\xab\\x15\\x02E\\xc6L\\x91\\xa5㈰*L\\x8dɜ\\x87r\\xac\\x18D\\x17\\xb1>S/\\x83r\\x90\\x97ۇ`K\\xe6z0\\xb3_\\xca\\x1a\\xf1\\xa7\\xf9\\x0e\\xeb\\xe8\\xa0R\\x9f\\xaa\\xac欈ɖ\\x88\\x1b*\\x88ԓ\\\\\\xa0h\\x1fS\\xd6=!\\x01\\xf6v$\\xb9ԦN$\\xf0B\\xc0\\x9fr\\x10W\\xa1Ꜯ\\xf6R\\xf7A\\xe1l\\x84\\xd6\\xd1i\\x87\\x03j\\x9f`=\\xdb\\x04,,\\xee\\xd5C\\xc8@\\xb3\\xe9Q\\x9b\\xdd\\xd0\\xc4\\x1a\\xd5d\\xabN\\xb5\\xe7/\\b\\x04\\x87!-P\\xae\\x12S\\xee>\\u007f0\\xa7\\xab\\xffw\\x13\\xf3\\x84\\x89\\xe5\\xfcK\\xb2\\xa5\\x94\\xa1\\x8b\\x1e\\f\\x91s#2k{va\\xbd\\x01\\xdc\\xcf\\xe5^\\xfd>/\\x95\\x00\\xe5$W\\x04\\x92\\xef\\x10ӱ?\\x1eN\\fk\\xe7\\xbc\\xe8\\xcfs_\\x8d\\uf5af\\xf7\\x9d](3\\x00\\x02T\\xab\\xde\\xca2\\x93E\\xbfTL\\xb8\\xceڳ\\x98\\xf8\\x0e\\x82Y\\x80\\xd3.\\x01\\xf8\\xc6=M\\xa0'\\xfb\\x88\\xaf\\xddώY``\\nS9\\xe9e\\x9f\\x818\\x88\\xb8\\xfc\\xc5\\r\\xb7\\xf8\\xdf.\\x01\\x12\\xacw!\\v\\xb6\\x19\\x83\\x10f\\f#3\\x95\\xf9lا\\xaa\\xab\\x95\\x17\\n\\xefS\\x16\\xfazѤ\\x8d\\xc8>\\x1e\\xb8\\xbf\\xa3\\xb4u\\xb0#\\x9e\\xdcs\\x81qE\\xee\\xb5\\xf4Iq$\\xee\\x1eW\\xaf\\x1fC\\f\\xdf<q\\xa3Y\\xf2\\x12\\xc4\\x05\\x10\\x97\\u05ff\\x14\\x06X\\xa7:\\xcfp\\xd0[e\\xb6l\\xb9/9\\x9e\\x87\\xa3>\\xe2n\\xdd\\xd0\\xea\\xe2\\xde=\\x15\\xe2\\xe6\\xc5ѵw>\\xdaO\\x0e㙥E]z\\x93Zp8;\\x12\\xcfo\\x1d\\xd8\\xf5wMc;\\x9b\\x90Û/^ވ\\x1caU\\xda:g\\xd3Ey\\xbd\\xe3iEG\\xb6\\x91\\x96\\f\\xc8\\xed\\x98\\x18\\x84\\x01\\x89\\xf9\\x8eFx\\xa1\\xbd6U{\\xa0\\x90\\r,\\x13\\xc3\\n\\x1e\\x95\\x97\\xd4}\\x91\\xd3\\x1d\\u05c8-\\x9f\\xfa\\xd6\\x17\\xa4\\xadܠ\\xbbjbyX˝d\\xcaO\\xb3\\x85\\x9d\\\\\\x88\\xa1\\xb8;\\xc8\\xe3\\xf2>\\x91\\xd1\\x1fI\\aA3\\x18͖\\xc7Uj'\\xeb\\x06\\x8a\\xde_DV\\xbd\\rȃґ\\x9bk\\x15\\\"\\xbdeK\\xc6xX\\xa8\\x1f\\xdd\\xf0\\xf19\\xe4N\\xeb\\xcd'\\xd6k\\ny\\x10\\xf4\\xaa-\\xa4\\xbaR\\xe8\\x1c24\\x02I\\xea\\xd2\\x1c\\xce\\x19I\\x1fo\\xa7\\xa4bP!b\\\\\\x9e\\xacwG\\xbd\\xa2[q\\x98\\x1e\\xf3\\x9c\\xef\\xe0M \\x14d\\xa8\\xc0a\\xff\\xe1IWtUGz\\x0f\\xe3\\x87\\xc9\\xfd\\xe8\\xc6ݖ\\xb8اA\\xe2wn\\xc73\\xdb<\\xfe\\xd1\\x18\\xd5\\v\\x98\\x06\\xfd{\\x17\\xb6\\xafT~\\xef\\x8e\\\\\\xe0\\xc6^\\xcc;\\xbb\\x05\\xa7\\x85R4\\x9b$\\x92t=\\xae0\\xcf@u;\\x8a\\x04\\xc5\\xe5](1\\xb1u/M\\x95\\xeam\\x9e\\xb6\\xbaJI\\xe5yx\\xa5p\\xed̀\\x1eE$]{\\x8b\\xa1\\xe1K|\\xa15\\x12q\\xd5p\\x00\\xe3Tl\\xb4;\\xc5\\x1f\\a\\x10\\xfa\\xa9\\x88\\xa4\\x9d\\xfe\\x86\\xf8\\xfc\\xc2\\x010\\xbc\\xd0<\\x1f\\xa4\\xb1\\xecR\\x80\\xe0!\\x90\\xff\\xf2\\xb7~\\xc8\\x14\\xe9\\xab\\x19\\xb8ŵ\\x82\\x1dR\\x8cH\\xde\\x06\\xe3\\xc8\\x03\\x1e\\xb9\\x13\\xc8\\xed\\xab\\xb0\\xd9(\\x0e{\\xad-Δfŵz\\x9cVےO\\xe4\\xfc\\xed\\x95\\xe0<Dj\\xeb߱:\\xcaI;\\xbdO\\xd8\\xc2\\xc4|\\x85w\\xc6s\\u007f\\x19\\x01\\x012\\xec`Ȭ\\xc6\\x1em\\xbf\\xba\\x8d\\xfeC\\xd9\\xdf0* \\x10\\x89\\xaf\\x1e\\x9fH\\xc6\\xe9P!\\x02h\\xf0B\\x90\\xbf\\x1c\\xaa\\xa6U\\x0f8S\\xf4%\\xd5@AF\\xd7\\x02\\xd5/\\x11\\xb7\\x13`A\\xb3\\xc2B\\xb4,G\\f\\x1e\\xa3\\x12\\xea\\\"\\xa3\\x91\\x97\\xa9\\xdd0\\xb9\\x91gF\\xc4\\b\\xf0\\x19.\\xcd7>\\xee\\x8c\\xcaz\\xb1W\\x9e*\\xf5\\xf2\\x9dm\\x82\\x9a\\xa5\\xad\\xe1\\xc5!\\xa4\\xc0\\xca\\xe27\\xa0\\fEZ\\xa5\\x1a*\\x824\\xcbQ\\xf8=5O\\x1c05\\xb4\\x96V\\xd0P\\xea\\xdf\\xc2(\\xa3d\\x95v\\x18\\xe1\\xd4!\\x90 \\\"Q_\\xf3\\x8f\\xe6\\x19\\xcd& PphBb\\xba{\\xe3\\xa8x\\x067\\xcfJ\\x19\\x9cq\\x90\\xefTA\\xec\\xc6D\\x96\\x9b/+\\x8a\\x0f:\\x84\\xa6ǖ\\x0e\\x11\\xf220/\\xd0\\xd1\\x19TA\\fƙ\\xf6Ɍ,d\\xe2\\\"\\x92Zd\\x91\\x00J\\xb3\\x92Q\\x9d\\xba\\xab\\xc9eN\\xc1)\\xc9X\\xa8\\x14\\rD\\x13\\xab\\xaa\\xf0r{\\x87\\xb8\\x96\\x90(bY\\xb5\\xd5I\\x13z\\xc7\\x10\\x19\\xd1\\xf0\\aˁ\\xee\\xfb\\xe5$;\\xa1c\\xf6`0\\xf3%\\x1d\\xbc:\\xcb\\xf2ݗ\\xc3#>&\\xe2\\x8b\\xce;m\\xa7\\xb9!\\x13\\xceV\\xb2j̞\\b:\\xe1\\xcf\\xc8\\xc8i\\xc98R\\xa6\\xd2\\x1c@\\xe4%\\xf5֥\\n+\\x01\\xd8:\\x85p\\x89\\x95\\xca\\x11\\x00Vk\\xa1$\\xe8\\xe1AW\\x00j\\xd6\\xd6}\\x17\\x15\\xd2\\n\\xbcҶ³\\xaa\\x82\\xa4\\xb8M\\u007f\\xce\\x17ڠ\\x92\\x1e\\b\\xd8P(A\\x00\\x16Ր\\x10\\xc9\\xf1H\\xeb\\xb9\\xedu6\\xeas\\\\\\x81y=r<܈{\\x18\\x81j%\\xb7\\xc3>\\xc0~\\xe1\\xa9:\\x8f>aCH;\\xa9\\x84\\xaeU\\xe3\\x12\\x0ez\\xb5X\\x97\\x05\\x97\\xeb\\b\\xebL\\x8f\\a\\xa6\\xa0k\\xf0oi\\xfc\\xc8\\x00\\x9f\\xa4\\\\\\b\\xaa%B\\xc77c\\xc9\\x0f\\xb2\\xcb\\x15\\x00!9\\x98z08\\x00\\x81C\\x94\\xb4\\x92|x\\xc0\\xf2\\xbasU\\xc2B\\x15 \\xda\\xe8\\xfc\\x14\\xda\\xdf\\xd0\\xf5\\x9a\\xcb\\xfa\\x03P\\xa5\\x1e\\xbc\\tC\\xd3=\\x81\\xb5={\\x93\\xc6`\\x183\\xc0\\x9f\\xcbe i\\x14\\xbf\\xfd\\xc9P+5\\xf3PH\\xd9x\\xdc|\\xbcn>\\x1c?\\xee\\xdf\\x1f\\xcc@\\xbd|\\\"\\x8e\\xb3\\xe5\\xc3~\\xf6G\\xa6x0\\xa5&B\\xadn\\xcbb\\x030x8O\\x8b\\x98\\x98\\xc1At\\xe3\\xa3p}#\\x8d\\xcd%\\xd5'\\xbc\\xff\\xf6\\x89\\x82\\xa6Ӈ\\x9f\\xad\\xbfxv\\xc3t\\xefǈ\\x81R\\xba2_?y\\xf8\\x85\\xea\\xd9\\xf5\\xd3\\vj\\x8c\\x82H\\x1a\\xfe}\\xba,z\\x83_n\\x9f\\xa6\\xda\\x12\\xcc\\xeap\\xf7\\xb9\\x8d\\xde\\xde\\xce6:\\xbe/L\\x97\\xbem\\xd3a\\xfd\\xfe\\xfa\\x98\\xdd\\xf9!\\xd6\\x17\\xa7o\\xf0\\xdd\\xe0v\\xa5\\x1b\\xa4\\xb0\\x0f\\xa5\\x8f\\xc0<\\xf4ظ'4\\x89\\xf7\\xb5\\xad\\xb9]<wyLx\\xa3\\x03Ņ\\xfe4\\xed\\x0f\\x94\\x98\\xbb\\b\\xee\\xed`ɝ\\xfc\\xf3\\t]\\xc1\\xf2&\\\\t͡\\x15\\xf6\\x04\\xcb^\\xa9\\xfe*pэ\\x16\\xe5]\\xc0\\xb7\\x11?\\x84F\\x8b\\xd6\\xc8\\xc9\\xf6ƐL\\x8f*b<DC\\xe9T.8\\xfa\\xda/\\xce\\xfc\\xa8 f\\xc4\\x01\\xdfݥ\\xeb\\xd8E\\xaf\\xe7ª\\x84\\a\\x03\\x83\\xe8\\x1bm\\x1d\\xab\\x10\\xbb\\x82\\xa3-;Ȩͦ\\x85OV\\x01\\xf1`\\xb4\\x04\\xf1L\\xc1\\xd2?2pە\\x9e\\xe3\\xdb\\x1d\\x067\\xbe\\xb6\\x03\\xf3\\xd6viI\\xed\\xa9\\xfe\\x84\\x99̝\\xf5\\x9ceD#\\xaa?<\\x14\\x90\\x9d\\xe6\\xb6V\\x1cNu\\xff\\xea\\x11\\xfe\\x85\\x03\\f|\\x8e\\xff\\xe2@\\x88Q\\xc2\\x1f\\x17/j\\vr/\\xedR\\xcdLj#u\\x9e\\x93*\\xb2~9\\xba\\xe2d\\xeac'I~\\xa7\\x88\\xff\\xf3\\xe0\\xca\\xee\\xe6\\x04\\xc9\\xf2<\\xbb{\\x11\\xc0\\xb8\\xb1\\x9c0E\\xd2\\f\\x1f'\\xae\\x1a\\t״\\x89\\xb3:\\xcfς\\xbee\\xa4\\xd9\\x15B֔d\\f\\xe1\\xefs\\u008e:։\\xbd\\tڪU\\xd3{ûwh\\xda?oi\\xa9\\r=ۅ\\xb6'\\xa1Q\\x92\\x04\\xead#p{JO\\xc1\\xbc#\\xff`\\x1f\\xf5pa\\xdc\\xd89\\x9a\\x19\\x89ZЎ\\\\\\x01\\xcd\\xf3\\x81Y\\xf4\\x8aWQ\\v\\xe9\\xd0\\xd8N\\xe0l\\fY\\x8f\\x03\\x1dt2\\x86Br\\x9c7/\\xb1\\xaam\\xaa%\\xa1\\xb2F\\xc3C_\\x9b\\x84\\xf2(\\x17\\xe8Qo\\x02/\\xa1 Ar\\xe3\\x98\\xe8L38\\x96-@X\\x03\\x99L\\xff\\xf0\\xd7Ofj,\\x87e\\xd0sM\\xac\\x90\\xbfHI\\\"\\xee\\x9dK\\x1a\\x16\\xb8\\x86Y\\x02\\xb3d\\x12\\x9fk\\x90Ç\\xe5M\\xb1(mY*GNO\\xea\\x87\\xf4\\xb3\\xcd\\x14\\xa7\\xd9\\xe2\\x8e_i\\x1b\\x9f6\\xec\\xd5a\\xee\\x97K\\a\\xb4'2C\\xa2\\x04ȏ(\\x05\\xa4\\xed9\\xc0lf\\xbd\\xfa1X_c9PO\\x10\\xf2(\\xc5~O\\xa18@?\\x9b2\\xd0\\xf2)d\\x02\\xf6,\\x8f\\xcdĆ\\x9d8\\xcf#\\xa5<\\xb2\\xd22\\x81\\x0e\\xb0j\\xf8\\x1b\\xe0~\\xc0?EK\\x85\\xc1g\\xf4H\\x85ժ\\xd8P\\x9eh\\x1a\\xa1\\xb7\\x1b\\x8b\\x83\\xc5\\xc4^C\\\\~\\xc2pt\\xa7U\\t\\xb6\\x82_\\\"od\\xbd\\aWd\\xe8\\x85\\xf4\\xe1Y\\xbd\\xc1\\xab\\xd1E\\x8a[\\xb7\\x19\\x06(\\x88\\x96\\xbfWP+eД@\\x14\\xd7x\\x00͊)\\f\\x8a\\xd1F\\x8e\\x10_ n\\x03\\x01y{\\xe7l\\xe7\\xb9{\\x97\\xf4\\x0fM\\xbb\\xf9\\x06\\xb6\\xba\\x8fGϵ\\xc3yD\\xc1\\xb9\\xb7\\x0f\\xcc\\xf6\\x9d~y/\\x98X\\x9dg\\x19ț\\xb4'X\\x19\\xdc9wA\\aK#`\\x04K\\xabrf\\b\\xb6\\x97\\x9c\\xffZ\\xbc(\\xa3U\\xcc\\xe1\\x85ķeo\\xee\\xe2\\xe6e\\xa8\\xc6\\\"a\\x1f\\xb06\\xbe{\\xe1\\xbc\\xf0\\x19ܜXQ\\x95'\\xbdL\\x02\\xc058B\\xa0\\xc1)\\xc1!!dq\\xc4b\\xbe\\xb9N\\xab\\xed\\x86m\\x8f\\x95\\x10\\xfbY\\xc4n(\\x90#\\xc7C\\x97_\\xb6\\xa3\\xb3\\x96\\xeep\\x86\\xdfF2~\\xa2\\xca\\xcc\\xe6\\xb8\\x13\\xd2{\\x16\\xb5E\\xad4j\\x89\\xa6$\\f\\xbe\\x9c\\xa3\\xf1\\xa0,\\xe8m)=\\xedE\\x1b\\xef \\xdev?\\x01\\xf5\\x97\\x8d0E&\\xff\\x10\\x8f\\xde:\\xcft\\xce\\xe3;%+\\xebQ\\x99\\x9bt\\x1fď\\xd2\\a\\xd1\\xe5'i\\xe5&L_\\xd8>\\xe6.\\x9c\\x96\\xd3\\x12\\xd50\\xc9P\\xad\\x99\\xe9q\\xe8\\x97\\xd5\\u007fY\\xdc\\xf5\\x1b\\x10\\xa9\\x89Z\\xc7E\\xb4\\x06\\xb01\\x01\\xa1Z\\xe0\\x13\\x8a\\x9e\\xa7\\x8e8>\\xbd౬\\x8e?\\xfbb\\xfe^{.\\xe7pίa@U; \\x16\\xd4:\\x82\\xdc\\xf08\\xf6\\xc48D8T\\x8f5\\xa6\\x81c}e\\x92\\x19{\\xbe\\x83C\\\"\\x84\\x03\\xa3\\x95\\x88\\x1e= \\x10\\x17\\x1d9\\x1ct\\\"\\x85\\a\\x1a\\x8djF7\\xfb\\xb4\\xf6\\xe4<\\xe8\\xe9\\x89\\x167\\x01 \\b 2r%\\r\\x04\\x89\\xa8\\x99\\x81\\x9d\\xa6\\xa3mZqv\\xa5\\xe7\\x90\\x14\\x81\\x8f\\v\\x13\\xfc]\\xb1\\xeb&b\\x9d\\xe7[AW\\x96\\xc0\\\"\\xfa6\\xbe\\x95\\xa5\\xfe\\xabJ1{ '\\xb7O\\xae\\xb3@\\xda\\xde3Ow@\\x9cp\\x06\\xa1\\vҒ6\\x02A|\\xc1\\xc2\\xfc\\x8bD\\x9a\\x1e\\x05\\x81Z#j\\xe0\\x9e\\xa05\\xfa\\a\\x14\\vo'\\x1f\\x9c\\xae\\x1b\\xdd\\xf9\\xb1\\xd4\\x1d[\\xf5_F\\xe7\\xd3\\x12\\xb3\\xbbg7NK\\xba\\xbc\\xe6S\\xf99\\x82\\xfe\\xc08˃!\\x82Ӈ\\x0f\\xcf\\xdf|\\x96^=\\x02\\\"I\\x1c\\xafO\\xad\\x0e#iƁ\\x15\\xfc\\x18\\n?t\\xe3'\\x92e\\x1a\\x98\\xed\\\"\\xcc\\xe7\\x8bS\\xa0j\\xb1ĸ\\x88\\xbc\\xc2\\xf7\\xe0\\xceٍR+\\xf1\\x15\\x9b\\xfdlqyr\\v\\x04\\x82\\xd2\\xdb\\u05ca\\xd5@\\r\\xf8\\xbdt\\x9d\\x86\\xb1\\xfb\\xfc\\xd3W\\x05l\\xd5^\\x99\\xdaӍ\\xb2(\\x1c\\xbb\\xaa\\xcfnE\\x8eҩ\\xa6\\xeb\\xec~\\xfcaZE\\x83{\\xbd\\xb4W\\x12]t\\xc4\\xfc3]l\\xd9\\xd6\\xf5\\x19\\xd9rz\\xe4\\n\\xbb\\x1anz\\xaf\\xc8\\xc8H\\xb4\\t\\xd97\\xb2\\xd7Qlj\\xff\\xb2ߣ\\xceC\\x88\\x935A\\xa6\\xab\\x80l\\x90i\\xe1\\xea[\\xd5\\xe7I:\\xbb\\xf7\\r\\x10w-m\\x18\\x81\\xec\\xfdy\\xe4_4\\xaf\\xad\\xc43f\\xb4\\xf6=\\x1b\\x9f\\x98\\xd0\\xcf(\\x9b+\\xfe\\xb7\\\\\\x9d\\x9fi@\\xe4f\\x15\\xf3\\x9d4䨝\\xbb\\xd2\\xcf]V\\x81\\xbeԨ\\\\mX\\xa1Ƣ~+{\\xbd\\x97\\xfd\\x83\\xf4\\xf1\\x8f\\xd5\\u2d6a\\x87\\xb4\\x90\\x82\\xf5\\x13\\x80\\xa7k\\x99d\\xbd\\x9cq(\\x13<\\x1f\\xa4m\\xe5\\x8f\\xe7\\x02\\x13\\x8eR\\x809\\x044H\\xfb\\a\\x84\\x1a\\xb9\\xb1\\x02\\xb0Y\\x87\\x85\\xd0hT\\xc2\\xe6\\x13B\\xa0a\\xebZ!\\x9c\\x03@c\\xa4\\xa0,\\xf7nu`h,\\xa0,zJ\\xd3\\xc6\\xe1\\x1a\\xa0[\\x1d7\\xbc\\x89S\\xb4\\xee\\xd9\\xdaH_\\xbc\\x96Q)!\\x1a\\x1b\\xeb\\x10k\\xa7\\xa7\\x14\\x841\\xa0R\\t\\x03\\xe0\\x97\\x97L\\xaf\\x1dJ\\xae\\x1c\\x04f\\xe4\\xbc\\xf3\\x81y5:l\\xde\\x1a\\xc7A\\x18\\x90\\xc9X~\\xd2@\\x9eS\\x88\\xd8\\x1a\\x15\\xb2\\xa2\\xe3˾}\\x1b\\a \\xf0U\\x96\\xba\\xe9v\\xbc\\xeb\\xefJ\\x15\\x15\\xa5\\x97W2\\xa4zq\\xf8\\r\\xcb\\x01\\x96\\xac\\xc9c\\xbd)}$=[\\xbf\\x15\\x87M-\\x01\\x17\\x185h\\xe7wH\\x97\\x17\\x8fD/\\x8a\\x84\\x97\\xd2~\\xe8\\xdf\\xdbv\\\\)\\xbb\\xfe\\xfd[(k\\x8b\\x10\\xfe\\xa0\\x1b2-\\x8f\\xdb\\x0f!\\xf6\\\"\\xac\\xea{\\xfd\\xcc\\x1b\\xcb\\xc5\\x1dG\\x81daKŀ, ^\\xf6\\x0f\\xc9K\\u007f\\x82\\\\Ռj\\xfb@\\x9a@\\x04\\xd0/yR\\xd8\\a\\xaf\\xafC\\x1c\\x92\\xa0\\x98\\xd7<\\x9a\\xe4\\xcf\\x16I\\xb9`\\xb2Yd\\xffٻ\\x1f\\xddO\\x1e\\xc67\\u05cd\\x03\\x96\\xb8i\\x8f\\xd6oN\\xf4G\\xe5\\xee\\xeb\\x80J\\xb6I\\xe2f\\xbc\\xfb\\xfeO|<FZ\\xdb3\\xb3\\x93a\\xbbOj\\x8b\\xa2\\xf5Fn\\x87\\xae\\xd0\\xeb\\xe4&^Q\\xa4\\x99\\xa97n\\xda\\xc6w\\x99\\xe1Ў\\x94\\f\\x19\\xa4r\\x1b+%\\x06e\\x95\\xac\\x8a\\xbe@T<\\xf7\\xe5Y+9\\x86\\xd3\\xd1-\\xd1w(?z\\xe0\\xd12\\x05\\xe6X\\x85\\x15\\xc5C\\\"\\r\\x99h\\xdd\\x17}\\x92\\x9eX\\x14W\\xef>oh,)ĺbh\\xc0\\x13\\xd5\\x1d\\xe0\\xb6<(\\xfdI\\x96r\\xea\\x15\\x8clZKz\\x86D\\xb5Me\\xc25{\\x88\\xc8\\x1e0Uq\\x1f\\xef\\xbe\\xcc\\xe39\\xd4\\xfa\\xf6\\x06\\xcbU?\\xe3<=\\xa2\\xb7\\x8f\\x8fWp\\xa3\\x88\\u007fA\\xd3\\x11\\xb5\\x86\\x8c\\xb4\\x1a\\xf1\\xdd\\xdf\\x1c\\x01\\xec1\\xf3\\xbc\\x96!\\xce\\xceQk4\\xd0^\\x9b\\xa8\\x8c\\xbf\\x8cȬu\\x15\\xb3H\\xcb\\f\\xb0.I\\xfd\\x99\\x12\\x16\\\\hm\\xb4\\x9bn\\xe3\\\\\\xb4\\xa7\\v\\xe0\\x88\\x05w\\xa8e\\xea\\x9d \\xa4@|\\xdc\\xe7v\\xf6?\\xddn\\xfcS\\xf2%\\x83\\x1b\\xcfgy\\xf7S\\x03\\rL@\\v\\xb9\\x17~\\x12Z\\x180\\x88\\x0eN\\x10D\\x01\\xcbo\\v90\\xd6\\xf0tEr\\xff\\x87+\\xb1\\xce~\\xa7\\u05ed#:\\xdfw\\xd6~\\xe3\\x12\\x89H\\b:&\\x02\\xf6<\\x06-\\xa6\\x148\\x1e\\xe6k\\xe7\\x10`\\x95i%N\\xd1cA\\x1b\\x10\\x91\\xa7\\x9a\\x82\\x96 dGvT-\\x04U\\xfc\\t\\xd7v\\xad\\r;\\xa06\\u007fK\\xbbB\\xfd6e\\xef\\xa0ה@!\\x15\\xd8\\xd6\\xfej\\xc1\\x03\\xfc_\\x15N\\xcf\\x06\\xe0\\x91\\xa1\\xc0\\x19\\x0e\\x01\\xe2a\\x869\\x90\\fd\\x84\\x11\\xb6\\x00\\xd8\\xe2\\x14)}$\\xc7\\x1e\\xe0YU\\x86\\x00\\xd6p|\\xc4g\\x8d\\xa9o\\xe5\\xeao\\xd3үl\\x88\\xb3z\\x1fB(O{\\x0f>\\xd6\\xe1\\n\\xdd%\\t[G\\xc2#%2\\xa5\\xee\\u007f\\xdb=\\x15-\\xd2U<\\xa5\\xa6\\xfe\\x8e\\xa9\\xb5)\\x1e\\x03:\\xe4'֮m\\x02\\xe8\\x96t\\x12\\u00ad\\xfbM\\x94f\\xa2\\x97y\\x00\\xe7\\xd3\\a\\xda\\xf8\\xbd \\xbb\\xa3\\xbe\\x8b>B\\t\\x96\\xcd\\t\\x82@ًs\\x86t\\xf0JE\\x8bH\\x95H\\xd7ԔB\\xa7\\x89\\xe2\\xb8=^\\xf9\\xbcR\\xb6\\x88\\x17@p\\xec\\xca+\\x92u\\x01l\\\"\\xb7MV\\x04\\xb9\\v\\xa5\\x8f\\x8e\\xb2,\\xe1~\\xf4\\x1e\\xb0\\xea\\x88 \\x8f%\\x91\\x8bǰ\\xcdkg\\\"\\x1d\\xf3^\\x1b\\xd0%\\xc0\\x05\\xb7%\\xb5!\\xa4:\\xa8ecĭ\\x93\\xe1\\xb5\\n\\xaa9:\\xd9\\x049;j!d\\x13)\\xc7\\x18L=Ni\\x86\\xea\\x110n\\x8ay4\\xe9\\xcc\\x10*c\\t\\x02&\\xc6>\\x90\\xc0\\n\\x16\\xc8\\a>\\x80i\\x00.x\\xfe\\xbe@\\x83\\xb8`9T\\x86y\\x00\\xa8\\xb8\\a\\xffu\\b\\x905\\x19\\x80\\xbc\\x81#\\b\\x958\\x00\\x0e`\\x9ew\\x19J\\xd1_\\xe2\\xad@Íms\\xe0\\xc8\\xf3\\xd9\\x02#R\\xbbBF\\xc1\\xd8\\xc5@\\xd8[\\x02\\x1c\\x0ea\\xe4\\xd8\\x01\\x88\\xa1\\x85\\x92C\\bg\\x0fv\\x19H\\x9dpx\\xb4\\x92\\xab%ɔu\\xc1\\x87\\r\\x13\\xb7\\xb5\\xdfC\\xf0\\xf7\\xb7.\\xbe\\xc0!\\xf2\\xfd\\x81N\\xd5TZ\\x0e\\xf9\\x89u\\xb5\\x14\\xe3E\\xf9\\\"\\u007f)p\\\"\\xaet\\x0295\\xa2d\\aX-'w\\x0eK^\\x0e\\a\\xfd\\x03\\xfa\\xf5\\xc2=\\x82^\\x98i\\xa0\\xff\\xb7\\x1eF\\xa0\\xa2\\xdbʹ\\x14\\xd9k?\\xd1\\xd2\\n\\xaa\\x9fLk\\xd1{\\xd6\\xc0\\xf7\\x1b\\x00\\x96i*\\xc4f\\xe6k\\xa8\\x16 \\x16\\x8c\\xa2\\xc4M\\x93\\xf0\\xf0,l\\x8a6\\x98\\xe0r\\xa6c\\xdcX8&\\x81\\xa2CA\\\\\\x03ܓ\\x141\\xe3\\x18\\x94\\r\\x01\\x83\\xd1\\xcc2\\xbe\\x98W\\xb2L\\xc1ɹH\\x88\\xaa:\\xb6\\xe6\\xe5\\x8d\\x1a\\xd56\\xe5\\xd9y\\x17),\\x89ϲrc\\xc2\\x0e\\xdc+\\xdd\\xf9͓\\x9b.\\x18\\x81\\x1c\\x82Qe\\xabr\\x0exs\\xa2\\xb4\\xe8\\n\\xa1\\xd2\\x00\\xe7o;\\xbd\\xd0\\x1e\\x16*\\x14\\x85o\\xd5\\x06\\xbe\\x93\\x9c}۷\\x9f\\xf4DpJ\\x9bi\\xf0\\xc9F\\xfe\\xa0\\x05\\x89P\\x16D\\xa3\\xd1\\xd1^\\xae\\r\\x01\\xe3\\x15\\b\\xab\\x9c\\xbbL\\x81\\xf2\\xbd\\xf4\\ufd4c\\x8ct\\a\\xc2Jf\\x05\\x15{\\x15\\x16\\x1a\\xda6\\xf5}\\xee\\xc5)\\xad\\xf3*\\xb9\\xa1fw\\xe7U\\xb6_\\xb9\\x12ז\\xec5\\x91\\xeb̬\\xb7j\\xb3\\xd1+\\xdd\\x06\\xba\\x12]\\xc76|\\xab\\xe4 \\xe5G{G\\xa1\\xfa{\\x02\\xdb?\\x92\\xeaG\\x1b\\t\\x87\\xcdp`\\x80\\xad\\x84]\\xcfiy@/\\xfel\\x93\\x06hZ\\xf6t\\xfa\\U00082453|E\\xb0 L\\xc0\\x83C\\n\\xa5\\xae\\xe4\\xa0\\x14yܤ{\\x01?\\\"\\xce\\u007f>*\\xbf]7\\xa1\\xcc\\xcb\\xe9\\x80T\\xb2K?\\xf115Y\\xe5a\\x06 \\xfe\\x93W\\x18If\\t(X\\xb0\\x13\\xe1\\x8d\\x1a\\x05]\\x01Nk\\x88\\xda\\x1a2|\\x90\\x19$\\x88\\xd8^\\u007f\\x82t\\f\\x9e\\x93`\\x1f\\xa7R\\xd4w(9\\xa0\\xc5%\\xecÖ\\\\\\x84v\\x1bk\\xe9F\\x15\\xe7j\\xe8\\xce8λ\\u07b7\\x91C;'\\x1e\\xb6\\x1fXz\\xb0\\x974\\x9c\\x18\\xb7\\xa6\\x02\\xf1\\xc1\\x19\\xefK\\x03\\xe7>\\x00<\\xe9ڬ\\x045\\x06\\xb5-\\x19.\\xa20\\\")\\xf8ɏѮ\\x80\\x9f\\xc8xA\\xdcz\\xd8\\xe3\\x9a\\u007f\\xea\\x95\\xdc\\v\\xe4\\xe1%\\xec`j\\x9e\\a\\x9e\\xaa\\r;CW\\x88^\\xb8\\xdff͡p\\x92\\x83\\xb4\\xcb\\x13\\xcd[7\\x17\\x0f>\\x9a_\\x1d\\x9f\\xf0\\xbag\\xbd\\xaf,\\f\\x9b\\xcc\\x05\\xf4\\xed\\xe0:\\xa2\\xfd\\xc9GX\\xe7\\xb7o\\xaa\\x89g\\x88\\xe7\\x1e ^\\xed\\\"o\\x15Ur\\x1aռ\\xf1\\xe1쇽\\x85\\xa9\\x0f;\\x9bou\\xcc_~ճs\\xe9\\xf6\\x8e\\xd6\\u007f\\xca\\xd1\\x18\\x10J\\xe9^a\\xb9\\x10\\xf0-\\xfayF\\xe7\\x8c\\xf1\\xa7\\xb1\\xd0\\xf2LB\\xa1\\xe3Y\\u0530\\x15\\xe2\\x02\\xe2hd\\x1c k\\xe5\\x1b\\xed\\n1\\x0f\\xe7\\xd2\\xf8\\xc8c#z\\xf0p\\xea\\xa0\\xfb\\xa5\\xf3\\xd5\\xfb\\xec2\\xd1jO\\xfd\\xfb؞v\\aЮN\\xa0lj\\xf36b\\xb3\\x9a\\x1a\\x84md\\x98W\\xc8l\\xbdm'\\x9b\\x94+%ia\\x05\\x04\\b7\\x94\\x87\\\\\\xc9Ư\\x8a%f*f(B=\\xf05r\\xb6ՉR\\xa4\\n\\xd2\\x0e\\n\\xb6\\xbc\\x83H\\xb5\\xa2\\x91\\xff\\x9e\\xd43W\\n\\xfd\\xeb\\xea\\xa2<\\u007f\\xc0ö\\u007f\\xfc\\x8bC\\x87?\\xc0\\xfaL\\x05\\xa9\\x1aM\\x9c\\x00\\xc6\\xca\\xef\\xf7yי\\xd2\\xce\\xden~\\xb0\\xf5#\\x9654l\\xf5\\xc9|D\\xe1\\xdb\\x04\\x8d\\xcb\\x02rE*\\xe8\\xe1\\xf4ѽ\\x10O\\x0f\\xe6Mf.\\x10\\x8d\\x90\\xe7)\\x05\\xac\\x14b\\xb2*\\xa1#\\xae\\xfefv^z\\xce}\\xc9VkR\\xf2#\\x81\\xd4\\x06a\\xec뾾y4y\\xbf\\xd6)|\\xba\\xf1'\\x8c\\xbd\\x1f\\xad\\xd9^m\\xcbC\\x8a\\x19\\xe8b~\\xe6\\xd9T\\x1b\\xa2\\xc2XXt\\x11&\\x022(\\xd9jU\\xe5\\x1d\\xa08\\xe73\\xd0(\\xfc&\\xc6\\x12\\xf2ڐeam\\x1eB7\\x14J\\aQ\\xf3\\xb0G\\x12#\\x81S\\xc0ƽ\\x8a\\x9bN\\x168r\\xcc02\\xc1\\xb7|\\x9f\\xfeM\\xa5,J&%\\xfb\\\\$\\xc0\\x0f3\\x92\\xbc\\xe8j\\xc9\\x1a\\xb2\\xb8P\\xbe\\x84\\x85\\x93&\\xe6)$RU\\xa8\\xd9hc\\xccOrл\\xd3Tk\\x95\\x19\\x15$|\\x90K\\xd3\\x1cK\\x12R\\xd4\\v@\\xba\\x1d\\x8dw\\xac\\x8dI\\x9a\\x98\\xd0\\xd60F\\xa9\\x894p\\xd1T\\f\\xcf\\x15\\xe3qC\\x11 Z\\xaa\\x82\\vEI\\x9d\\x1fNܕ-\\xf0\\xa4K\\x11\\xe2\\x01\\x8c\\x9b\\x16Y^dRF\\x80\\xab\\xb7\\x86\\xaa4'\\xce_Vh2\\xacy\\xb6\\xf8\\x17Y\\xf9\\x18\\\\!\\xcc\\u007f\\x1e\\xcd\\xf9\\n\\xb1|\\b\\xaf5\\xf2@\\x1cX͢\\xd7N^\\x94\\xbd\\xf4\\x11`? 4\\xc9&X\\x9c\\x97~K\\xa1X\\x83N{\\x05\\x13\\x0eX\\x85\\x95\\x8c\\xf3\\x84\\x1bS\\x04\\xb8u\\xd7\\xf9U$#:Hǉ\\x93\\xdc\\xf2\\xa6\\x01\\x8c\\u0601r\\x92\\x01\\x1e|h\\xc6\\x052v\\xb3\\x19\\xe6z\\xc1\\xe5\\x8b\\x00ү&ݙ&\\xd9\\xe7\\x8d\\xf5/\\x81\\x80t\\rY\\xf1\\f\\xb5\\x81̹\\xd7\\xe4\\xb2\\xf0p\\xb5\\x81\\x03\\x9e\\xe5\\xad\\x06\\xe4\\xc0_P\\x8a\\xff0\\xfb\\x94f/\\xd3\\xd0툞*;wڃ\\xc1\\xec\\xd9\\xeb-\\\\#\\x8a\\x92\\xa0\\r\\xd8\\tս>n\\xb6\\xdfwl\\t\\xba\\x13\\t\\x1a\\x80\\x83\\xaefh\\xa1\\xcd\\x06\\x00/5>\\x87=\\x14Q\\xac\\x91\\xfeo\\xc8]K\\x13\\xdc\\xfc=\\x10o\\xe9_\\xae\\x1f\\xcf\\xed\\xdcܟ\\xdf\\xfa&\\x9f\\xbd{xqyM\\x1e*\\xf5\\xe6̙b\\xc9[\\x89D\\x92Tji\\x01\\xa7A\\xf3˧\\xf7\\x16bD~\\x8b\\xb6\\xe1قJD\\x9f\\x1aN\\x0f.\\xf0Yw\\x84\\xd1%˛\\xd5\\xd3\\xc5?\\x95e\\xfe\\xd1Ә@\\x8ac2f\\x00\\xa2\\xb2\\x8a\\xeb\\xf7lQ\\xebYd\\xb9Z\\x94\\x19\\xa1\\x8b\\x87;\\x80-\\x9b\\xaa^\\xd4i\\xbd/\\xe3ݰ\\xfc\\xf5\\xd9=\\xc0\\xde\\x1b/sf\\xf3\\xe7;\\x9d\\x8b72A;\\xbd\\x98\\xb9\\x01P\\r\\x8f!\\xe0\\xb8\\xfc\\xf9C\\xe6\\xe2\\xf7\\xeecZ\\xfd\\xd4\\xfa\\xfe\\xb6\\x97\\rG\\xcd<6\\x9c5\\x0f@}\\xdf\\xd1\\xf1:\\xa2\\xaf\\x94\\x9f^Al7\\xbb\\\"\\x80s:3\\x98{\\xba\\x8f\\x8b\\xfab\\xdd\\\"\\xc3AIxg\\xb3\\xe7L\\xb1l;ӓ#\\xcfVJ\\x9e{_\\xc6>OJdǾ(\\xba^\\xad\\xf2>\\xa8\\x14\\x95\\xc9/+\\x8e]/z\\x8d$&G٬\\xf5\\xa3B7H\\xb09\\x18;ul7\\x1e{0\\x18O\\xcb\\xf6N\\x8a%\\x9c\\x92T\\xednf+\\xfe\\x17\\xca\\x12\\xe2\\xf7\\xd2F9@\\x04J\\x9c>,E\\xffS)!\\xa4\\xd4\\xff\\xb2\\xba\\x97<J\\x03\\xd3\\xf7\\xd52\\u007f\\xba\\x9a\\x89\\x95\\xb9\\x9c\\xa5>x\\x1e\\x87\\xfc ,\\xd2\\xd9\\xea\\xc5㎜\\xaf\\xb8\\xfd\\xa5\\x9f>.\\xf4\\x04\\x9e\\xfd\\xb5خ\\xf7\\xb93D\\xf9\\x86wS{\\x9d\\x16\\xa14\\xe6\\xaeL\\xb1\\xfe|\\f\\xecW\\xf8\\x99\\xb4 ٝ߸k\\xbe\\xe7$4\\n\\xc1=\\x12?L\\x02R\\xd8D\\x94\\xa9*\\x0f\\x03Z*N9\\xfe9\\xe8\\xe9\\x8b{\\x14\\x97\\xf9\\x02۴*}\\x19V\\xa2\\x06`\\xde>\\xff\\xd2\\xd9\\xedƇ\\xee\\x14?\\xd3,\\xb6\\xcbm\\x8d\\xb5k\\xedg\\xd7J\\x18\\xfd\\xbd\\xf1\\xf6\\x11\\x885\\xdbc\\xb9\\xe9\\x1cN(\\xf8~\\xb0\\\"\\xdd\\x1f\\xc8\\x00\\x02,v\\t\\x93\\x00?z͢\\x81\\x99\\\"˗\\xa4MJ\\xba\\xdc\\x1fc\\xd5H\\x04\\xa0\\x16T\\xd5\\xdbE_&\\xbeO\\xc0\\tK\\x8c\\x0e\\x11\\xd4T\\x00P\\xc4\\u008d\\x86 y\\xb5п\\xb9\\x97\\x87\\x9fu\\x81\\x88\\xc0\\f\\x19\\x1a\\x1b\\x10p\\xa2\\xbcئ\\xd7#\\x1f\\xa7\\xf0\\xd4\\xd8\\xc5!\\x06\\xd2e\\x8d*\\xea\\x16\\xfa:\\x1e\\xe1.^\\x97\\x8b8\\x87\\xe0\\x0f2\\x82\\x9b\\x19@_\\xf6\\x99y(،\\xbd*\\x95\\x85\\xef\\xd0v#c\\x92\\xa5\\xe3a)\\x00\\xa8\\x17\\\\\\x81\\u0ad1\\xfd,ź\\xf1-\\r\\x97\\xd7\\xd7\\xfb\\xdf\\xd6\\x19\\x8a\\xbcq?u\\xbf8#A\\xbea\\xd1k\\x83>\\u007f5\\xb1I\\xae\\xb9\\x8fo9\\x80e\\x0f%\\x15<Y\\x99\\xad酡\\xfb\\x176\\xd2B7N$\\xd9\\xf4n?됪\\xd2\\xefi\\x80\\x05\\xdaJ\\xfb;\\xc17R\\xf6`P\\x8e\\xb0K\\xa2n\\xd30\\xf9\\xeb(\\xb4\\xfa\\xe2J\\x85C4e\\xa4 \\xd5¤kd*\\x97q\\xb4&\\xfd\\xd4B\\x02ӾnTR4\\xed\\xd1J\\xaa\\x01\\x04\\xe1ۈ\\x04$\\x83o]\\x02\\xe3d\\v\\xb6Ĝ\\xc1\\bN\\xc9У\\xb5\\xac!\\xe6T,\\xe4hC\\x83=DD$ݍ\\xe1\\x10\\x9d\\xf5\\x9b\\xcdAq\\x90vT\\xa5\\x93\\x16Fn{D^t?<\\xd7%;QNa\\xf5\\xb7\\x17\\x17\\xb0¥\\t\\u007fB&\\x9aNjN\\xf2\\u00adaN\\xed\\xd3\\xf1\\x98\\xdb\\xee\\x9e\\xf6k>\\xa2\\r\\xfb\\xfa$zs\\vW\\x05\\xb6\\x10\\x94\\xb2\\x93\\xe2\\xf9\\xedg\\xf2\\x99\\bm\\xd0_\\x98\\xff\\xf4\\xc5n\\x99\\x1eN\\xe7\\xef\\x94:\\x9b|\\xbc<zx,R\\a\\xe1fN\\xe6\\x92\\x10)#\\xaeS\\x83\\xf4\\xe6\\n\\xb0\\xffz\\x1ex.\\xda^\\xfcOK\\xdb\\xc1\\xcf=@<\\a\\xc4\\x12\\x8c*K\\xbf/\\x1d\\xf8\\xb3T\\x9c\\xe5z'ԗ\\xa6\\xfc\\x90\\xef\\xdd+\\xde{\\x10F\\xb2\\u007f~~Y\\x86\\xfam\\xee\\xe1\\x0fB\\xa9$i+n\\x12ej&+'\\x94\\xf6J\\xa5\\x93Z\\xe21¦d\\x19`tmN\\x82\\x00h\\xe6ehL\\x86a\\x99\\x9d\\xddZ䂤\\x1a\\xd5>\\xdfg\\xf1\\x93\\xd7o\\\\\\xa8K\\xf6x\\xeb&5\\u007f\\x05\\x98E\\x85\\x1dxR\\x00r|\\b\\x92N\\xa9h\\xbds\\xfd\\xf9K=\\xcc2\\xfa~\\xbe\\x13u\\x1at1\\x8d\\x83\\xf2\\xbc_\\x0f(Vg\\x96\\x90\\xc9\\xd5.Q\\xe7W\\xe2\\xe5\\xc6\\xddtd~\\xf1\\xb0\\x90,\\x9e\\xd0OW\\xabV?\\xa6\\xa3\\f~\\xec\\xad\\xe5\\xb3~\\x85\\x13:\\xaa\\u007fx\\x13\\xab$F\\xd6\\xdeV\\x94V\\x1c\\xfb\\xda\\x15\\x9b\\xf3׆\\x8d@\\x90)`\\xe3Q\\xc5%4ބ\\x02n\\x06\\xda\\a6\\xd6\\xc3\\x00\\xcc6\\x8d\\x9ar\\x85+\\xf3*\\f\\xe5P\\x06\\x91\\xd2\\x10\\xad\\x94\\xf8l\\xb4\\xfa\\xf4\\x00k\\rN\\x19\\xbc\\\\\\xbc!\\xea\\xfc\\x9eG\\x05\\r\\x1a.\\xe2K\\xb0\\x0fC3X\\xc3\\xdf\\n\\xbe\\x02\\xae\\v\\xed\\x80\\x19\\xb9O}\\x04h+\\n\\xb1c\\xa9o\\x17g\\x84\\x12^\\x82\\xca\\x13o\\xa4.\\x19y|\\xc1\\xdeW\\xc1'|a\\xc8n\\xdc[6l\\xc5b\\x82\\xe21\\x96\\xaf\\xcc6O\\x9f\\xec@(/\\xc7\\xce_\\x92\\xa4o\\xe2&\\xf1\\xa4~xݞ\\xc3.\\xd5\\x02λ l\\x19\\xbbϱO\\u009bj(\\x89\\x18\\x8b\\xb9\\x9d\\xac3\\x81\\xaf\\xf3d\\xd7I\\x96\\a\\xdeFh0V\\x8dZ\\x10\\xf4\\xfc\\xaa\\xb0-I\\x8c\\xdc\\xec2\\x1e 4\\xda뽡\\xfa\\xff]`\\x14\\xb8\\x93\\x8c\\xb2\\a\\a*\\xbf\\xd0`{)\\xec\\xbfx(\\xbduB\\xda'\\xf2\\f\\xdd\\xf2<\\xec\\xe7\\u07b5\\xb6\\x1dj\\\\Z\\xe2y\\x14A\\xb7\\\\|\\x9f\\xadp\\xe5y\\xdc\\r\\xbd\\xa6\\xa0\\x9e\\x81\\x81\\xa8\\x92\\x13@\\x97\\x9d/\\x9f#\\xdc9[l\\x1d\\b^\\x1b1\\xb5w\\xf6}\\xdcX\\xe9\\xf8\\x8c\\xeed \\xd0l\\xb4r\\x1dz\\x11.JX\\xad\\xb8_h\\xb1\\xe8\\x81\\xfaߝ\\x00ĺ^\\x0e\\xbeA\\x8d\\x96\\x86n\\xcf\\xe8\\x03\\x9d\\xe0q\\x16\\xc9Rn\\xd7\\xc3_^\\x1f\\xcf\\xf8g\\xc6^\\x12\\x15\\x03\\xacA\\xa9u\\xebVs\\xe0\\xe0\\xc2\\xce\\xf6>~\\x83\\x1e1\\xd7;}\\xeeO\\\\\\x95\\x0eft\\xcb\\xed\\xbc|:\\x1c̝s\\xffF\\xcfx~|\\xe9\\xdc\\xfa\\x8e\\x02\\xf9\\x12W\\xf2\\xf5\\xbbW\\xf2Y\\x92Ȃ\\x1ds\\xecq\\xcf\\xd1\\x13y73ṓ\\x0e\\x14\\x9a\\x02m\\xd5k\\r\\xa0k\\x11=\\x11\\xcd\\xd8ܳ\\xb7'#\\xfe\\xb4\\x15scֺ\\xbd?\\xfc\\xaa\\x15T\\xa1\\x1c\\xab΅\\xa3\\x1bK\\x03\\x8a\\x88\\xcb\\x10K6\\x92\\xe0ۃ!c+a\\xdaY;fs\\xfc.\\x8f\\xdcLݷ\\x14@r\\x16\\xfa\\x0f\\x85\\t\\xe0Ez\\x8fڃ\\x91\\x99\\x8crL\\xe4\\xe7\\xcb\\xf2\\xd0>1 \\x1b\\xee\\x88\\xecSsr>j\\xef_\\x1fQ\\xb4\\x14Tk\\xed\\xe5_\\x1f\\xd1\\x1e,\\x8cغ\\x9b\\xd6\\x0f\\x97盂ԇ2\\ru\\xa2~όխ\\x8e\\xcb\\xce\\x05&\\x84X{\\r\\xba\\xfa.\\xe0\\x12O\\xda&<S\\xb0\\x80û\\x060\\x17\\xb25\\x00m<\\x11\\x981\\xdeŘ\\a\\xe4\\x8ez\\x03˼%\\u007f\\x00\\xa0\\xbf\\x11\\xafµ\\x9d\\xe1\\xed\\xd8\\xc4i>R\\xdaB!iv\\xa8yl,\\x1b\\x95\\xa1\\xbd\\x85\\xf6\\r36j\\xb2A\\x98\\xcd)\\xb9\\x19\\xa5\\xa0\\x93f\\x1c\\n\\xb7\\xc0\\xe6\\xc2@\\xfaޜ1d\\xad\\x84VV\\x92\\x88\\xfc\\x0fݍ\\x0f\\x06^\\x9bf\\x9c)Y\\xa1\\xb3\\x1f\\f\\fR\\x85 \\xd8\\n\\xc0v:FzM/&\\x02\\xb1<\\xe9g^\\x8f\\xcb\\xe9\\xad\\xd3\\xf7\\xbcy!#\\x8c{)\\r\\x02A\\xc0\\xeb\\x8aM\\xde\\u007fĬ/\\x1e\\xf2ʰ\\x00\\xcc?\\xbd?(\\xf79\\xa6\\xe8\\x9eG_\\xc4\\x17\\x97da1\\n\\xf5ڳ\\xbd\\xb8Y5\\xbb\\xbfI\\xb5\\xd3\\x17$\\x9eB\\xb1\\xd1\\xf0\\x8cڮpl)\\xce\\x16\\xe3\\x15\\x04#\\x02D\\xb1{\\xb9\\xb4\\xdfH\\x84\\xb0\\xd3\\xe0\\xac\\xc2\\x0e\\x9e\\x85.a\\x84\\x9b\\xc8{\\t\\t\\x88\\xcc\\xf8\\xa8ũ\\t|\\xa2;f\\xcb**\\n\\x18\\x18\\xaf{۳\\xf1E!jzt;\\xed\\x19\\xacN\\xe4g\\xca\\x15\\xa2ċ\\xc2P\\xb8\\x90\\x84\\xe0\\xdciW\\xa4T\\x16\\x04`e.\\xcdX\\x01)\\x90\\x06\\xfd\\xec\\xe9i\\xab\\x10)m=\\xe8&~\\xa7\\\\Jo\\x83e \\x81\\x1f\\xa2\\x02\\xea\\x8b\\xc5Y\\x9c\\x9eL,hP\\xdb\\xf1\\xe7\\x84\\xefv\\xf6\\xed\\xce\\xdbA0e\\xef)u\\xb6\\x99c\\x89Cr\\xfb\\xfez\\xfd~\\xbe\\xf8\\x85=\\xdcYd\\x9e<xFT*\\x9b`mܣɖ\\t_W\\xb7oC\\x14\\xa9\\u007f\\xb2e\\xbe\\xf2q+{寽\\xec\\x1f\\xbc\\f@\\xc2k\\xdd̥\\x1b]\\xe3W'\\x9aFH;~0\\x8e\\xb7\\v\\xaf\\u007f\\xd0\\xce]\\xbf\\xba\\x90\\xbbl\\xe7\\x10<\\xb8\\xde\\xcf\\xff\\xf1Ӿ\\xf5\\xcb\\xf7:֫\\xaev^0\\xb6\\xacb\\r\\x88\\xce\\n\\x18\\x8b\\x8f\\xcaF\\xa1\\xdb\\xd3\\xf6(\\xe2\\xbdx\\xf7TE\\xe1-<mΆ\\xf6\\xeb\\xb1_\\x95}\\xfb\\xb2\\xcc\\x18l\\x8e\\x9b\\x9bk\\xd0\\x04\\xf5\\xe9x\\x85\\xedh\\x89\\nn\\xff\\xc5_\\xdf\\xff\\xfb\\x9f;;S\\blŌ\\x88\\xf3\\xcd8m\\x8di\\f\\x1e\\x02\\x88\\xca\\xc1\\x1a1}\\xa9e\\xb9W\\xf9)J\\x10w_zt\\xa8\\xb9Y\\xebe\\xf8E\\xaay;X&\\xfa\\x98*}\\xcba\\x93\\xd2\\xfa\\x8fz\\xbc \\x9a\\xde\\xc0\\x91\\xa3\\xcd\\xf8\\xf2}\\xa5\\n\\xaf\\xb2\\xfe\\xf0\\raڈ\\xc0\\x1d{g\\x15<!\\xfc\\xf1\\xe4\\xbd樻\\xfb\\xb6\\xe0\\x0f\\rjV\\xaaY\\xf0\\xc2\\x03\\xfaTR~\\xe3w\\x99sC\\xacN[\\xe7\\x9dmk\\xa6\\xa6\\xff\\xb8ʞFg\\f\\xb3\\xbd,\\xfeVJ\\x17s\\xe6\\\"W:\\xf6\\xdfk\\x1fD(\\xa2I뒬\\x8f8\\x0e\\xc4<#\\xa3\\xf3\\xaeDY\\t`4\\xac\\x88\\x8e)\\x03n)Y<\\x8b\\xb6@\\xef\\xa6lf\\xc8G\\xfd\\x94\\x9d\\x18\\x96\\xe7Q\\x86\\xc3\\xdc\\r>ۇ\\xd2}\\xdbl\\xa8(\\u0083\\f\\f\\x1cy\\xe7t\\x04\\x96\\xcfj:\\x9d\\x0f\\xf8uM\\x03i\\xfb\\xb9\\n\\xf0\\b+\\xd6\\xce<\\xe0\\x84M\\x11\\xfb1\\xe3\\xb0쓩\\x92\\xf4\\\"\\x97,\\xbd;zZ\\x92\\x03\\xde\\xe1O\\xec$\\xabn'\\xa8\\xfe\\xd1CE\\x886\\x01\\xf6\\xa2\\xf2pt\\xf8\\x9a\\xbd\\xd7\\xc0\\xe2T\\xa6-\\x92}\\xcb\\x11\\xed\\xd8\\x1c\\x82\\a\\x8a\\x92\\x06\\xebؘɋe\\x05\\xabR\\xed\\xf2f\\rC\\xcdt\\xa9[\\xb7\\xb7\\xf7\\r\\xf2\\xa3\\x9e\\x14\\xc6)\\xbe\\xd0\\xdcp\\x8e\\xddj7\\xc3\\xf8\\x88۰D\\xed\\x01z\\xd3\\xd9Z\\xd9\\xfa{v{{y\\x9ee&\\\\L\\xc0\\xfd\\xfa\\x85v\\xdb\\x03>\\xe1\\xd2U.`\\xac*\\xe7\\xba\\x14\\xfaB\\xd0\\x1f\\xbd\\x82\\\"\\xf1\\x0fD\\xfc\\xe4\\x8dV~\\x89\\x1cQZb\\x89#\\x98\\xab\\xb8\\xa7\\xe9\\x8c`\\x01\\xabb0\\xf7O\\xf2h\\xb1\\xdf9\\roG\\x8c\\xc1x\\xfd\\x97I\\xf0\\x0f\\xc7\\x13\\x16\\xf2\\xc0\\xdc\\xe6\\xb4=`\\xad\\x82g\\xacc\\au'\\x9f\\xdd\\x1b\\xd11\\x90V\\xe3\\\\\\xb0\\xcfi\\x85\\x98\\\"\\xacU\\x130\\nQ\\xc2x\\xbb+u\\r\\x18t\\x9a\\xaf\\x03\\x82\\xea\\x06\\xa9\\xe9*/\\x95\\x93\\x0fqj\\x80y\\xd6\\x1a\\x12n\\xc4\\x12˙\\xae)'b_d\\x8a4\\xb61\\xb6xzm\\xf6\\xb6=&f\\xab𨇧\\f\\x9a_\\xea\\xd8\\xfcw\\xee\\x13\\x00_\\x02:루\\uf596ڎ]j-Ѹ\\x843\\x10\\x95\\x1f\\xbe\\xf4{\\xa0\\xbf\\xda\\x17\\aa\\x836/\\xe6\\x14*\\u007fB\\x11K\\u007fAB\\x1c\\xecxj\\xc8\\xe5\\\\î\\xc4Ɇ$\\xea\\x1a\\x0e\\xe0\\x1bi\\xe6z\\xd9\\x01c\\x83IXsOe\\xbc\\x9e\\xf9,\\x9e\\x1d\\xe0\\x8bNq\\x1f:\\xa6B9\\xbeݭ\\xc9l9\\b\\xee\\x1b\\x98k\\xa7\\xbc\\xa5\\xb1{\\x17\\xb2<\\xf3\\t\\x81\\fs_\\xd27\\xeb\\x8b\\xecv\\xed;IM1R\\xcb\\xe5a\\x8f\\x9c\\rTa\\x1f>\\x87L'\\xcdL\\xb72\\x8f\\xc4\\xe0\\xa8\\xd0Ks\\xb3\\x9dlB\\x9e\\xcct'\\x92\\xbd\\xb3\\x9aj\\x1bs\\xa7O\\x96\\xd4+\\xf26%q\\xef\\xf0s\\xad\\x86H\\x01\\xc24\\xefqe\\x88\\xb4X\\xd8?\\x1e\\x91J\\xe2\\xd815qO\\x95\\x16\\x15\\xe6k\\xd3\\\\'\\xceَ\\x85\\xac\\xa2Tm\\x80\\xa5\\xaf\\x8df.\\x9eC\\xa7C\\x94 \\xdf\\xee\\xfa\\x97?\\xe7\\xffD\\x86\\x82tcQ\\x8e\\xde\\xf2\\x89惔\\xdc\\x1b\\xd4\\xfb\\xf1\\xa3\\xf0\\xed\\xa4\\xb6\\xa3\\xff/g\\x14\\xb1\\x88l\\xbd\\x14\\x18+B\\u0590\\xee\\xe4\\x0eq\\xf5\\x0f\\xd1\\x1b\\xfb\\xaf\\xa7\\xbb\\x8f\\x15⡦\\xfc\\xdfc\\xfb\\x9eW\\xd2p\\xfbnS\\xed\\xff\\xe9\\xff\\xb9\\xed\\x04S\\xc3ׄ\\xf1\\xb6\\x1d\\xb6\\x94l\\x9ftKA\\x81\\xa0\\x98\\xb4\\xff\\xe5u\\xe4\\xce5\\n\\x99u\\x17,\\x1eI݅z\\\\\\x94B\\\\\\xf9Yi\\xae\\xfc\\xb1\\xb6EҚe\\xd7\\xeas\\x19/nO\\xe81\\xa7i\\x94\\x82\\xf2\\xa2\\xa0,I\\xec(\\x85õ\\\"ڇy\\x14N\\v\\u007f\\x90\\x88\\xd8\\x00\\xd9j.m\\xa8*\\xe1q\\xa5f\\x9fyQ|\\x10\\x99|UӸrKK4\\x04\\xc9\\x11\\x1fKN\\x01Ҙ\\xe1\\xce 6A\\x03X\\xc1\\xa8h\\xfe\\xa0\\xc6\\xdbF\\xacM\\x9c\\x89\\x9fD鈰I\\x94\\xaa\\x13\\xf5\\xcc\\xef6\\x97\\xfd\\xa8\\xa7\\xc9\\xcb>wa\\xf9\\xee\\x8b\\x1f\\\"\\x16/\\xecLFg>\\x11\\xedBG\\xda\\x1c\\xc1TC\\xdf+z\\xd7a$E\\x05_\\xeb\\xca\\xf9n\\xac>(\\x88\\v竷\\x0e\\xcefr\\xf7>\\x04q\\xb8&\\xee\\xd1\\xdc\\xe1\\x9c\\xea\\x9d\\xfcMiۑ\\xfc\\xff\\x9a\\xa4|\\xaa\\xfe\\xc1\\x92\\xd4r\\x12\\x02\\xb1\\x01*\\xc4\\xec_\\xa2p\\xae\\x91y\\xa0P\\x86\\x99\\xcb\\xd4b\\xae/\\x05/X\\x91lY@\\xbd\\xcf \\xcb\\xc0\\xfa\\xebF\\xbe\\xd2M\\xfe\\xd4%h\\xb6\\vnhf\\xb4X\\xb2\\xec\\xf8\\xc4s\\xf3\\xb3Y\\xe8f\\x84\\x8ch\\x9d=kI\\x95\\x00QX\\xabѥ\\xf5\\x89\\r\\xc9\\xd4o\\x9a\\x9e(\\xdb^B\\xe8\\xcd\\xe3j\\x9e\\xe1g\\a\\xe7V\\xcfN\\xf3\\xa0xD([%\\xf8qw\\xfd\\xa4\\xf7\\xf9\\xc9\\xecY I~(U\\xe2\\ued86\\xa9\\xc5\\x1eK\\x01\\xe8v\\xffY\\x88\\a\\xba\\xea\\xb7[\\x88X\\xac\\x1c{\\xacW\\xde9\\xfd\\xad\\xfe3\\xba\\x91ء̖&\\x14\\x10<\\xdabfr\\xbb\\x9cq\\xb25\\x91\\a\\x8c@\\xf5\\x8d*B\\xf8\\x92M\\x80\\x14\\xc1_`\\tsU\\x88#\\x8c\\x125\\xe8\\x934\\x17\\xac$\\xf2| \\x8b\\xb6\\x97E\\x01\\xd0d\\xe9}\\xdc\\xeb*\\xe5>=\\xdb\\xc6yPL9\\xe2\\x93Es1N\\xc3\\r\\x17\\xa5\\n\\xa4\\xad\\x95\\xfei\\xcfxf\\xf21\\xdfE\\xcflw-\\xc73\\xba\\xcb\\xfev\\uf411_\\x19Ϸ\\xeb`\\x95q\\x85\\xfbx\\xd8;\\xb9\\x99\\xdd\\xef\\xe5%\\x1e\\x19\\xd9nL1\\xec\\x8b\\xf5q\\xe2\\x1au\\x83\\xee\\xee\\x0e5\\xcd\\xf9\\xd9ϴ\\xc2=\\x91Vb\\xf0RՈF\\x86\\xdc\\xdcx\\xc6 \\x9e\\xdc\\xf5a\\x9e0\\xa4\\xf5j\\xccҖٳC]kx̲\\x87\\x8cё\\x85\\xf1\\xd3\\xe3!K\\xe2nZ\\xfe8\\xf2\\xa8}d\\xeb\\xf7\\xaf\\x91\\xe1o\\x8a\\xe8\\x1b\\xf9+\\xdcP\\x8c\\x90g\\xc3N\\xf6\\xec\\xc84\\xd7\\x1dk\\xd1Ǳ\\x86\\xc4\\xe5κWi_\\x93\\u007fD\\b\\xe7\\xf4\\xfe\\x8eGQ^~\\x8f\\x14\\xa6\\xe1\\xf6\\xc0L\\x97t\\x82\\xaa\\xadj*Ϟ\\xaaޑ}uc\\x8f\\x90\\xd6{.\\x05\\xb4PΠä\\xa6\\xa1Ӷ0\\x04\\xaa\\v\\xda]\\x8b\\x17\\\\\\x98\\xefb\\x12\\x9f\\xf4\\x9e\\xcfx<!\\x866\\t\\xb3\\xda\\xc1H\\x16\\x81\\xf2:$\\x80\\x93\\x05\\xc0\\xf2\\xcfj6\\x12\\a\\xec\\xd0\\x1e\\xc5NF\\xb1]^\\xaa\\xd8\\x02\\xa4\\x9e\\xb9\\x04\\x13p|\\x8a\\x1d\\x04\\xd8o\\x17Oz\\\\\\xc5MMA\\x90.\\xaa\\x9e|\\x8f\\a\\x04\\x1a+\\x1aX5\\x01\\xc83d\\x02\\xf8\\xd9\\x0f\\x9f/\\x06\\xc8.\\x1a\\xbfD\\xfb\\xd6'N\\xa1\\x8f\\x87\\xdd\\xed\\x83\\xfc\\xcc\\xf3\\xa9'=\\x9b\\xc9\\xdc'\\xb2\\xc2'\\x8a\\x8d\\xc9\\xf0\\xeeT\\xf1\\x1d\\xf9\\x18<\\xb3++\\xb4ߙ\\xfc\\xf5?\\xc1\\xdc<\\xb6u\\xa8\\b\\x10\\x19{\\xcf\\xe4}\\xe1\\x9f\\u007f\\xc2\\xfa\\xf0\\x9d}D\\x17\\x8a_\\x9b{L\\xfe\\xa1>P\\xa2\\xf5i\\xdc\\xeb|X}\\xb1\\xb7\\xaf\\xec\\u007f\\xd2x\\x85\\xcf7\\\\\\xe6d\\xc9Sw\\rB\\xd1uI\\xd1)u\\xc9%r\\xe3\\xc3]5^3\\xf0\\x1cъ\\xa2\\x1f\\f\\x1dC\\xb3\\x92\\x84\\xc5q\\xd0\\xf4\\xe9P\\x9bf\\xa3?P\\x06\\xa0\\x1ch\\xdeT\\xc2*\\x1d\\xdf\\xfa\\xf8Ѳf\\xb8D\\xb9م^ \\x9a\\xbc\\x14!p(h\\xe0\\x15\\xf4%\\x18EV\\xb8\\r\\xccr\\x04\\xf0|AX h\\x9e\\x16\\xb4gq\\x83\\x9bn\\x9e>K\\x98>UjՄ@ \\x12\\x1d\\x8b(P\\xa7=\\xe2C\\xd4\\xca,\\xd8\\xdf\\bt\\xfe\\fo$M\\xdfJ\\x1cb\\x83\\x94\\xde.'\\x1c<\\xe3\\xa0\\xf8\\xb0\\xf4\\x9dK\\xeb\\x95\\v\\xfb\\xd2\\xc3P\\xc0\\xa7\\xccOlb>\\x9d\\x1a\\x0etڎ\\x06\\xe9\\x98&d\\xa3\\xe5o\\\\?\\\\\\x18R\\xeci\\xfe\\xadL\\x10Y\\xf5M!\\x91#\\x12#d_\\xb0\\x12\\xee\\xb2\\xc5\\\\j\\x9f9*)\\x13\\xd8x\\x16j\\x9c\\xa9>\\a\\x06\\xd7O5y4b\\x19(!0\\xb8Қ\\xe2\\x97\\x14)\\xb2\\xe9\\xff\\x9dª\\u17fa\\xeb\\xa1\\xedn\\x8f\\x15\\xe7\\x8eš\\xa4X3!\\xa8RO4#]\\xd3H0\\x0e=\\xb6\\x17.\\x1aym\\xb1p\\xd0\\x06\\xb8\\xbe\\xbds\\xa6\\xb4Y>\\xb7)\\x9eHW\\x8e\\xbd3\\f\\xbe\\xa6F\\x15\\xa6qvw¤\\xcd\\x10\\x16\\x1e\\xc0I-4\\x9e\\x1e߾\\x90\\xa9\\x1e\\xe8\\xf6Uq\\xc6u\\x1d\\x9ag\\xa0:?\\x98\\x85\\xfbX\\b\\x9e-\\x8f\\xf9\\u007fQ/\\x8b\\v\\xe2\\x9ai{\\x96Zn\\x17hB\\x19\\xdd!8 \\u070f\\xbd\\x13\\xab\\xaap\\x9eS\\ac\\xa3^\\x84n\\xe5\\xb7\\xdc\\u007f\\xdb\\xdf\\\"\\a<\\xb5\\x1a?\\xe5\\xaaM\\xf5\\x97\\xafW\\xda:((\\xee0\\xf3;\\xa8\\x19\\xa1\\\"4\\xae4\\x83}\\x82\\xb4U\\x86\\xa1Vm/*30\\xf9Ϧٛkn^ңC\\xf7\\xde|p\\xf4\\xd1\\x1b\\vc5l\\x96\\xac\\x1a\\xa0\\xcb\\xcbI\\x8c\\x04o4\\xf6\\x84\\xdfd7c\\xba\\xa3\\xdb|@[!\\t\\x84\\xcbX\\xb3ק\\x1a!M\\xff\\xc4\\xf9\\xe1\\xd93\\xf3\\xaa\\xab\\xd4(,8be-i\\xee\\bS\\xbb\\x82\\xdd\\xe4C`\\x80=}\\x9e\\xfb\\xc1}\\xc4\\x03\\x97T\\x15TMX$\\x9bG+\\xab\\xf1\\x93]\\xfd\\xf2\\xfc~\\xa0V(Ǩ=\\xe7\\xe5>T|\\xee\\xf7\\\\\\xf5\\xb4\\xdf8\\xb6\\xaf\\xb62X\\xbe\\xf3a\\xe5\\xd1\\xfa\\x11M\\x9f_K\\xe7\\xf7\\xbbx\\x17\\xa5\\xf4\\xee8\\xbe\\xfd\\xe0\\r[.\\\"\\x14\\x8a9\\x89U1u\\xb7!\\xdd\\xf9h\\x04\\xe1I\\xf61^Z1\\xe4a5\\xab\\xa4\\xaf\\xd3\\\\\\x9a\\t\\xb9q\\xa1\\xfa\\xd5ٲv\\xa2\\xaa9e>\\xc0\\x1c\\n\\xef\\xf5\\xb3e\\x15F\\x05\\x1a\\xc5\\x1e\\x1e\\xa9z\\x97\\x8b\\x92\\xc3,FQ@\\x84l\\xc2ڛ\\x8d\\xa4\\xe8\\xa7]?:\\xfa\\xb1\\x97\\xe3\\x817Þ[\\x95\\xfdA\\x9cԡ\\xb2\\u086f\\x0f\\aq\\xe9=t\\xfc\\xa3\\x8d\\xb5\\xce==\\xaf\\x91=\\xc2/\\xf5\\x14ڀ\\x89=\\f\\x1d\\xdfT\\xe0\\x1e\\xd3d@7\\xa1\\xd4\\xf6萤Ͻqo\\x1aks\\xb5\\x99\\xe6\\x916\\xce\\x02\\xedX\\x95\\xb9\\x93H\\x86bB\\x8aیx\\x96Slg\\xe3\\xac\\x00c^\\x02\\xbd\\x19ٷ\\xba=#ii\\x00\\x01B\\xac_l\\x1eq|\\x98\\xfb\\xac\\x03\\xf8\\xf3lei\\xaeм\\x98g$\\x91\\xacq\\x16a\\x04X\\x15\\xcc\\xe0u\\xb4\\x86!x\\x91\\xa01\\xccU\\x99\\x85\\x8ddH\\xba\\x13eY*\\a\\x91J\\x18\\xe4\\x87<w\\xf7$\\x90\\xc6\\x05$1\\xedLB\\xa6c.d\\xea\\xa5\\x16\\x96թ0L^\\x91M\\xe6\\xb19\\xa1\\xd0\\xc6\\x12\\x02s#\\xdf\\xeeI\\x06URL\\xa1\\xdc\\xefs\\x1d\\x94A\\x82*Y\\u007fi>1ud\\x15iB#Yo-\\xc8ԫ\\xc1\\x12&\\x10\\v\\xa8\\b\\xe2\\x05/-n\\xc6\\xdf\\x11\\xab̭a\\x98\\xb8\\x85\\x1bR\\x90\\x19\\xc1i>\\xb2VR\\xc2\\xd2F\\rJej\\xa1\\x06\\x8b\\x1ba\\xea=\\x86t\\xe6\\x10A\\x11\\xccoE53\\x98\\x15\\xa8\\x90\\xb1\\xb2\\x89\\x9a\\xc6\\xc0\\xa5\\xd6ZE\\x80\\xd4\\xd0e\\xe6@D\\x14C\\x9ddV0)\\x16\\xb5\\x8f\\x11ͼ([\\x14¨v!\\n\\x95N\\xab\\xd9A\\xa5\\xeat\\xce\\x06\\xc2\\xee:\\x97\\xf7\\x80\\xc6\\xda\\x06݀(\\x96\\xf4%\\x85\\x99.\\xf8a\\xa8_t=\\xcaIvg=|\\x9d\\xe4z\\xaac\\xb6\\xb7|\\xbf\\x17\\xf0\\xb7Zs\\xd3\\xf6uv\\n\\xf3\\xd6\\x18\\xafA\\xd8\\xf63\\xf1\\x8b2x\\xd6$\\xee\\xba\\x06\\x9d\\xa7\\xd0\\xe0V\\x00r\\x93\\xe6JV\\xf8\\xf8\\xfc\\xb0o\\x06\\xdc\\xc6Q\\xbe=@\\x04\\xc8\\xd9\\xd1\\xef\\xe7\\xf7O\\xfe\\xd8\\xef\\x1f\\a&CT\\x94\\xe4\\x8d.\\\\\\xc70\\xa6\\xba\\xebp\\xd9\\xe8\\x99\\x10 \\xfbTisO\\xe5\\x82Iȏ\\xdc]\\xe0\\x8c ]\\xfd\\xf4\\xc2\\xd4FYRĳ\\x17~\\xdex\\x10\\xba%\\xf2\\x86έڍ\\x93^\\xddQ\\xbb\\xafm\\x0f\\x06\\x9d\\xe5I7\\x9c\\x82\\xea%\\by\\xa6\\n\\xa76\\xbbRa\\xf89\\x19f\\x1e\\x8f\\x1fo\\xd1V\\xf4'\\a\\x96\\x16r\\x0fт\\x8c\\xbe_2 \\xeb{Ks\\x16\\n\\x83C\\xfe[\\x8e\\xa6A\\xc8K\\x1c\\xe1\\x15BF\\x1c\\xb8$\\x83\\xf1\\xb5k\\x02|r\\xa3\\a\\xb8\\x96\\x06\\xb1ݑ\\xd5V\\xf7\\x8b{tk\\xb8ڸ+\\xd6A\\x84q\\x89\\xc1\\xca*g\\xdeY>j\\x9ek\\x0f\\xa0\\x89\\b\\xe1\\aw%\\xf7\\xfbY\\xfek\\xde\\xe1\\xf4\\xb1Pזp\\xf5\\xe9[_\\x10\\x1b/\\xc0\\xa9\\xff\\xe8\\xecHLdӉ\\xbd\\xca\\x1bw\\xd8ݟ\\xc0\\xec\\xca\\xe7C\\x9e\\xfd\\x94[<:\\xe4ͫK\\xc7\\x06\\xbf\\x10^\\xbe\\x18\\xaf\\x1c\\xcc\\a<\\u007fr\\xbf\\U000c0fc9\\x01<\\xe6xzp\\xea\\xf6'\\xf3\\xee\\xf3\\xd2\\xe2p\\u007f\\x9c\\xc0\\xe6\\xca?\\x18\\x89\\x8doBt:ʴO\\xc2i\\x80\\x89\\xf8e@\\x9d\\xa2CZ\\xea\\x10\\x92\\xe8\\xe3d\\xeehn\\x11\\n\\xe7\\x9a+\\xdd\\x12\\xef\\v:X\\xef6q\\xf1\\x93\\xf1\\xf5!\\x11Xx\\xe7\\nս\\x96\\xd2\\x12w\\xdbZ\\x832\\x92\\xe2D\\x8dw\\xed\\x9al\\xb2\\x10\\x0e\\xba~\\b\\xb1\\xad\\xbd\\xb0i@{\\xb5$k\\xf5ث\\x1e\\xa4\\xe5\\x1d2͜\\xa4\\x16lB\\xf1\\x94\\x15N۪?'}\\\\\\xe7;/\\xbc3\\xda\\xdb\\xe8jiE\\x80\\xb6 \\xe61\\xa9\\xa4{Dw\\xb9\\xde4\\xd8%\\x90\\xf80}$C\\xfeC96)D͔iY|+\\xa4\\x89r\\xfd\\x15\\vC\\x12&\\x16\\xa7\\xcd!\\xc0\\xb1\\xca\\xed\\xb8\\xf7yk\\xe9\\x95cr\\x89^\\x1b\\vc29\\xd1\\xf1\\xf0\\xa9\\x93N \\xea\\x1f\\xbd\\x87\\xb5A5\\xc0;ӊ\\x0e\\xf7`\\x8a\\x11Ϝ\\x18\\xae\\x83\\n\\x108ʏ1\\xa4\\xaej\\x8a\\x05\\r\\x16\\xf25\\x85\\x98\\xf1\\x85\\xb4:\\xd2\\x11]\\x95Xy\\u007fa\\xca\\x03\\xc2\\xd4~<d\\a^\\x95?\\x8f\\xc8<1ʛ\\x11p\\xc0\\xe9omخ&\\f\\u007f\\x10\\xfa\\xaa\\x11\\x9f\\xf5\\x15\\xddS\\x8c\\x10\\xc2DO-S\\xd8[\\xcf;\\\\\\x1fpI\\xd3\\xdf\\f\\x933Sl\\xf4\\x18\\xc7c\\xf8(\\xa6\\x1e\\xb9t\\x06\\xd1dy<\\x1a\\x90\\\"\\xc12\\x1f\\xba\\x10C)H\\x87\\x9fb\\xbb\\x01\\x80\\b_\\x94~lP0#`\\x04\\x0eWҲ \\x88e\\x06\\xba\\x04\\x00\\x98\\x02\\\\\\x80\\x99\\x85\\xad@t\\\"\\xa0N1\\xf2%\\xe1\\xb6%\\xf2\\xafDn-\\x80\\x04>\\x91\\xcc\\x11\\xf4e\\t\\xc1\\x1f\\xa4\\x80\\r0\\x98K\\f3\\x15\\xf2$\\x92s\\x84\\xf2\\t\\x9303\\xa9\\x9cD\\xc0\\xa4`I`o1\\t\\xa1c\\xc1\\xbd\\x05u\\xa8\\\\\\xa8k\\xe1\\x01\\x19\\x80\\xc2@\\x03;\\xe6^q\\x17d@ju0\\x85\\x1fľ0*q&\\x98c⽲q媵\\xbdS\\x95\\x12\\xa4Q\\x95\\xaf\\xe9\\xbcs\\xe5L\\xb5\\x02K'p-\\x91\\x1e\\xc0\\xc0*\\r'Oeu\\xa4ܙ\\xae\\xd4:]\\x98f\\xb0s&\\xf4\\xd6ڨt\\xe68=-\\fx\\xfcpw\\xbaz|\\\\\\xea\\xcc0_\\t\\xe9ĄM\\xd2i e\\xb5\\xbb\\x98X\\xfcov61S\\x96\\x82\\xa4\\xd7I\\xa6H\\x16\\x00\\t5sf<2+\\xe9\\xaa1{\\x12Ye\\xd2\\xcc\\xe5\\x00\\xac\\xb4.\\x03\\xb2\\x9d\\xd3x\\x91\\x1cCQ\\x93u\\n@\\x15\\x8d8,+\\xe6\\x893]{#K\\xb5\\x88\\xf1X#\\xc81n\\\"\\xb6ŴxB\\xe3\\xe2*\\xeaq3\\xdd\\xcas\\\"\\\\k\\u038dO{\\xf1\\x17L/\\xbe\\x01\\xfa\\x82\\x1c;\\xbd\\xee@\\x1d\\xd6\\xf9Ak\\xdah\\xd9\\xfcn\\aaے؉{\\x13\\t\\x1d\\x02K\\xb7\\xdb!o:\\x06\\xcf\\xdf4\\x06c\\x92K\\xdc\\xfa\\x82L<\\x9e\\x17\\xfa9\\x89\\xbcG[\\x89=\\x19w\\x8be\\xdd\\\\\\xeaM>^\\x99\\xc1\\x12\\xb0\\xeb\\v\\xf1\\xb0=y\\xd8F\\xaf\\xc8|\\x0f\\xcd\\xc0\\xef\\xa7\\x03\\xc8M<S_ \\x83\\xbbS\\xf2\\xb4j\\xd3\\x18.\\xa9\\x16ii#\\x8d\\xde}\\xeb|\\xcc3s#\\xa6Ғ\\xa6Ml{\\xbe=\\xb7\\x1c\\x85\\x8dgp\\x01\\xaf\\xb8\\xfa\\x98>P'\\xef\\xbeD\\x04M\\x02\\x82\\xa2\\xd4\\x00\\xb7I\\xb0\\x05x\\xf4\\xda\\xc3\\xe6\\xf6\\x81\\xb0w \\xf8\\xfe\\xde#\\x8e\\x00\\x1b \\xefAi\\xa0(\\xf4\\ue84a\\xb7\\x00\\\\\\x1e\\xed\\xc1Z\\xc0m%M\\xe6\\xc4\\x06籥=_\\xc8\\x04Ǿ\\x02:\\xf0>fb\\xd0n\\x98r@\\xa4rc\\xa8Qa\\xa5\\x8eR\\xb0\\xa8l\\x9fBG*\\x88\\xe6\\x15\\x8b\\t\\xa8P\\xc3@@RM\\xa9⏛\\x99\\xc2\\xe2\\xc6D\\xf3ϰ\\xb9\\x90\\xa4\\xd5(\\x93;\\x9d\\xfa\\xf8\\xc2x{Fj\\xffX\\xd9\\xef\\xa5Kګ\\x95\\xb2\\x80\\x06\\xc26A\\xf1\\x915\\bf\\x83\\xdbJJCr\\x86Ȇ\\x935\\xbfO\\xbe\\xa7\\xa2\\xc4x\\xba\\xac\\xa5o-e\\x93q\\x96;\\xaa'DFH;\\x16\\xd9jY1MBa\\x10\\x80S\\x01\\xaa\\x89\\x8cU\\x03\\xa9\\xa90\\u007f\\x1d`\\x1aE\\x81\\x93\\xed|\\x93\\x17]t\\xca\\xdc\\vH\\xf3\\x84\\x98U02\\xd5\\xd9\\xd0\\xfc\\x9d\\xe6z\\x91\\xceۅ\\xc9b\\x827\\x88\\x11\\x82\\xa2O2\\xdb5\\xb7\\xe8\\x014\\x99/\\xf3\\xfa\\x91\\x98$iK#\\xc90Ҋ\\xdf\\xcdg\\x11\\x17\\xb0\\xf8&-P\\x90(\\xe5Ҽ\\x00\\xf0I\\x06#D#\\x9fr\\xf8\\x9aE\\x85r}\\x04)\\x8e\\xd6\\xd86C\\xaa$P}\\x88\\x84\\x93\\fT\\xd1a\\xc0\\xf9),\\t\\xed\\x16\\x9erO\\xf3GQX\\xf8\\xc3\\xc4$\\xa6\\x1c}RU\\xcf\\f\\x82V\\xbc*\\x0f(z\\xbc\\xc4\\xf5\\x8b\\x98\\u007fl\\x982\\xdaU\\x8a]\\x89\\xc5c\\a7~\\x81Q\\xdb_\\x97l70\\\\ۊ\\xee\\x14i\\xceo\\x1b\\x184\\xb4\\x88\\xd2$B\\x10\\xe1\\xdas%\\x89\\x119\\xe7ec\\x1f\\xa0h+\\xe43J\\xa0\\xab\\xe8?%\\xb8GX`\\xb9_\\xa2\\xccb\\xcb\\xcd\\vR\\v\\tɛJ\\xea\\xec&\\xb4>\\xaa\\xe3*\\xcbC\\x05\\x89\\x01\\x88\\xb0/\\x9a\\xc7\\xc9Iá\\x97&\\xf3\\x98\\b\\xa14Ο\\xbd(\\v\\x04\\x9b\\x13\\xef\\x14\\x84ހQ\\x1b\\xa1ۉ\\xfc\\xf8l\\xd6\\xe9K_\\xa1\\xfe\\x16\\x10\\xe3\\xc6\\xfa\\x84H\\xe6\\xf8!\\x18\\xa7\\x80\\b\\xc4_\\xcbw.\\xa6\\xd3\\xeb-\\x86/4w;/\\xd6\\xeeȮ\\x9b\\xad\\xa4?GJfFw\\xc0|\\x02\\x81c\\xcd\\x1arF\\x90\\xe4\\xf6[D\\b3g\\xaa\\x16g\\xfa\\xee9\\xb0\\x12\\xf6&\\xbc\\xb6[\\bD\\t\\xa5NZ+\\x05\\\\2\\xaa\\xc7{\\xd6Y\\x94\\x85(C0\\xc0_\\x96\\xb1\\xb5\\x98\\x84\\xeb\\xf1\\xecr\\xaa*+G\\x16\\xae\\x1fv\\x01ի\\xc0\\x98}\\x9e\\xae\\xdb\\xf8\\xe9\\xc8\\x01ve\\xebJsN\\x98\\xa2x\\bK!\\xad\\xc4WY\\x02ʦ\\xc00d\\xe03<s\\xc3l\\x87dzE?\\xb8\\a\\x91\\\\y\\xb2\\xbe\\\\b\\xcc!\\x97\\xce\\x10Dي\\x00\\xf0\\xc4 s\\xa1D\\xa3\\xdc\\xd8\\x04\\x82O,\\x06\\x80\\x9b9\\r\\xb4\\xaa\\xe9\\x83c\\x8d\\u05c8Ԅ~\\xee\\x1d1\\xd5\\x1d\\xa5\\x9cwr\\xdc\\xed3\\xe1)\\x17\\xc7\\xdci\\xf7\\xf7\\x02\\r\\xb8\\x0fa\\xf8B\\b\\xc0\\x83!AkT\\xa6\\x95\\x8dEt@\\xdf\\xc2O\\xf1\\nl\\f\\x11\\xb38\\x14g^TLB\\x13'\\xa4[\\xcdg+X\\xa6-V\\xe6\\xd2\\xc5]\\xcf鐃\\xfb\\x167|\\xeb\\xa6X\\x83'[\\xf5<\\xa7텫\\x1b\\xd3\\xda:@>\\xe1\\xaf\\xf2\\x17~\\xee\\xa8\\\"\\xf5\\x06\\br:\\x05\\xb2\\r\\a\\xab-QiһGjv\\x9d\\xb9Rr\\x89M*\\xb7s\\xad\\xd7\\xde\\xdeg\\\\\\xf9\\x9a\\xdd-H\\v\\xa4=\\xd1\\xdd\\u07b8=H\\x0f\\xc3X\\xcb2\\x145\\x82\\xc2|\\x81\\xba\\x18\\xaf\\x8eY\\xab$*U\\xb8\\x03\\x12\\v\\x93\\x99\\xac;\\f\\x06A\\xd0P(\\xb3\\xd6\\xd04,B\\x11Y\\xac\\x18\\xaf\\f\\x01Wj\\xc8mǰ5\\xb1=K\\xd9:S\\xcaa\\xf7\\x93đ\\xb0\\xc1\\x8a\\xa9\\xbcl\\x06d\\x94\\xc4e\\x01\\x90\\x95\\x05\\x12d\\x93\\xc8\\\"E\\x8b\\x97\\u007f\\xd3\\x13Jf\\xc1\\xa0'\\\"\\xb5\\x83H\\x14\\xbc`\\x80\\x971\\x99=\\xac?s\\xff\\xaa\\xe1$\\x83\\x92\\x80؍ox\\x99Pb\\xff\\b9\\xdc\\xd1)\\xd7\\xf0+\\n\\xcdf\\xda\\xe6X#\\xf1\\xa5F(\\x14V\\xb4\\xd61o\\x92\\xa9\\x84\\x1bU\\xd2x[\\xa4\\x80B\\x05\\xe8\\xceϔ\\xab\\xa2J6\\x99\\xea\\xd3\\x00N\\x01\\xb46꺎`\\x14\\xb3\\x8d.\\xce,\\x8c\\x93\\xc9\\x15\\x9d\\x14W\\x10\\xbcz\\x1c@\\n\\x15\\xc1^Mĩu\\xba5\\x92B(ś \\x97\\xdcd\\xae\\xe2g\\x00x\\xd9j`\\x98\\x94\\x10+e;\\xf4\\xde`\\xedX\\x90!\\xcd\\xd6\\x1e\\xdd\\u0603jN\\x9aB\\x1c6\\xb7B\\x94h\\xbcco\\xee=\\x92G^q\\xa3\\xe4\\xbb\\x12P\\xe6\\xdf\\a\\xc2vG\\x02\\x87\\x98{g\\x15k'\\xc8q@\\u007f\\xe4\\xa6`\\xd9Hٳ\\xf7\\x10\\x9fD\\x8ba\\xed\\x94eb\\xa5\\xb5\\xa1\\xe5gx}\\xcfg\\x1f\\fh\\xef\\xec\\xf6\\x89>\\xa9\\x8f\\xd7\\xea]LV\\xc0\\xe4Wyg\\xb6r`8!{P(\\xfa\\xf3\\x84\\x89_x\\xc7\\x1b\\xc7\\xfeU\\x92_\\n\\xb2y\\xa0~\\xf4\\xd8\\xc3Ó\\xe9\\x13\\x82QcU\\xcf\\xe2L\\x14\\xba1`\\xfd\\xa9\\x13\\u007f\\xd4Fk.*\\x88F;\\xd1tg\\x83\\x85S\\xf7R2g\\x1e\\xc1\\x87\\x06\\t\\xfe\\xe4Q\\xbe\\xfb\\xfb\\xffb!\\xa1\\xe8\\x9bwd\\xdd.f\\\"\\xb6\\x0eQ\\u007f\\x1a&\\xd9\\xc6m\\u007f\\xbe\\xf7?.\\xeaL\\xeb\\x9d_L\\x83\\xbe\\x94\\x16Z\\xb7;\\xbe\\xd3\\xeb\\xf7T\\xfb\\xb5\\x18\\x1at\\xe0\\a\\xea\\xf3Y\\xd9\\voG0#$\\x122\\x94P@8\\xcc\\x1d\\x19\\xf7\\xf0̩S\\x18\\x15\\x11\\x05~d\\x85\\xe1VB\\v4B{\\xa2E\\x12d\\xc9/+\\x1aP\\t\\x93\\xafZ\\x88\\xef|\\xd1\\xda\\xd4\\x148{\\x16\\x98V\\xb7]\\x04`\\xa6\\n\\x94\\x05v\\xf2\\xcc\\xdfxz\\xcf\\x1a\\xd3\\xc6\\xe36\\r\\xfeS\\x03\\xef\\xfa\\xd0\\xf3\\xa8S\\xb3Z\\xff\\xf9\\xec\\x82!\\xa0\\xd2\\xd3/\\xeb\\x91EP94\\x1cW\\xa6\\x82h:\\x8c%\\xb2:\\xd3|X[\\u007f\\xc3&\\xf4\\xae\\x93\\x1aʎ\\xf0\\xad\\u05fc\\xf3Qh\\xfb/\\x01\\\\\\t\\xd6G\\xedj9\\xa9\\xaa\\xf0z=Ƿ+\\xa1\\xb9\\f\\xae\\x15\\x11Cw\\xf2\\x9f\\x11\\xbd<\\x8fdIߗ\\xbb\\x13f˪\\xf2R\\xf0\\r\\xc7}h\\xe7\\x8a\\xe0F\\xe96&\\xc4s\\xb7\\xac3xg\\xb0H\\xeb^i\\xdcӬ_%\\x99\\x13/E\\x17\\xe4\\xe9#\\xa2E5)L\\x82P5\\xa8\\x89\\xf5b_䈹a\\xd88\\x1d\\xa0\\x90\\xac\\xaa\\xff\\vن!4\\x9dnp~T\\xee\\xc1\\x87\\xdf~!\\u007f\\x81p\\x18E\\xc3\\xf3,ͥ\\xf5]\\x85{\\xeb\\x040\\x9fub\\x02Ӓ\\xfd\\n\\xb2(\\xb3\\xa7\\x05}!Y灅\\xe74\\xb4&\\xcdBJo\\x1aN\\x9b.\\xd8\\u007f\\xb9\\x92\\xe6\\xeap\\xc8\\x1c.~\\xafW\\x14\\xd9\\xfd\\xee\\x9aX\\x9a\\xdbJ6\\u007f/'\\xb7\\xe2\\x91Ơoi0\\xe39[tl\\xbb\\x8e\\xed\\x9f1\\x93\\r#\\xb2\\x00+&s\\x95G\\xc0=9w\\x9a\\xdb^w\\x8cD=v\\xbf\\x99w欒\\xe0cIG-}\\xe4\\xbdv\\xe8-\\x96\\xb3\\xebW\\xed\\xf7\\xac-\\x99\\xf4N\\xd9(:G)D\\x93\\x0fȐ\\x05\\x8dM\\x9e7\\xcar\\xb4\\x1d\\xfe\\xa8=a\\x88\\xe4\\xbd\\xd4\\x1f5\\xb4\\xb7]\\xa4\\x1bя\\x99?\\b'\\x859\\xf1he\\x19k\\xfe\\x8f\\x8c\\xdbqe\\xbalr=\\xf8\\xe9`iS%\\f\\xdf.\\xbe\\xe40\\xe2U\\xab\\xb6yW\\x15\\xc8\\xf1\\xd0#\\x0e\\x90\\xe6ሹ\\xb71\\x89\\xc9\\x152\\xd6U\\xe8\\xbb\\xe0\\x05\\xa1y\\x16*\\xe2\\v \\xe8\\x1f[\\x9d\\xaf\\xee\\xeaJ\\x16\\xdek\\xeb]V\\xd41\\x83\\xd6\\xcc0|\\xaf\\xa2\\tG\\xf1T\\xd2\\xf3D4F\\xe5\\xe3\\x03\\x05\\x0f;\\b\\xc3R\\xd6J\\x98\\x0eh}\\xbf\\xb75\\xb3\\x90\\x13\\xa8X\\xf5Lh\\t\\x13X3\\xe1Yx4[l\\\\\\xe7EY\\x92ޓAr\\xbb\\xb3\\x10W\\xa8]0\\xc1HrtP}\\x12\\xa2d\\xa1=\\xa6l!\\xed\\xd2\\xd1\\xf2K\\xabB\\xccn_1\\x17^\\r\\xf4\\xec,\\xf70\\xdf\\\\\\x18\\x16;aE(s\\xc9\\xea:\\xaa\\xf9#\\x16yޑ\\xdan\\xdbz\\xb8\\x89\\xb4\\xaa\\x12\\xf6\\xed\\x83o\\xb5RU5GR\\xbb\\xcb\\xf3\\x11\\xcazq\\xd0\\x15\\xbf~\\xd9*\\x8e\\x0f\\xbb\\xecs\\bﺪ:\\xfa\\a*\\xc4n\\xb2{\\xf3\\xff\\vW\\xf36\\n\\xe7sϺ\\xb304\\xf1(\\xfc\\xbb\\x8d\\xf9'\\x8c\\xa4\\u009f\\x93\\bv\\x0e3f#\\x9e8n\\xfd\\xe5\\x9d?\\x1f\\xb3)Kaj\\x9c\\x18\\x1e\\x91\\x89Z\\x03\\x82u\\xc8\\xddM\\xba\\u007fYU\\xb2\\xae]Q](\\xad\\xcd\\xc4kD\\xd6\\xf0\\xaa\\xcd\\xc5DB<\\x1d\\x0f\\x13(\\xbdfx\\x1b\\xee\\\\w\\xd2\\xd9Zg-\\xb3\\x1a\\xcb\\x1b\\x95|v] \\xb9\\xa9\\xc8,.\\x1a-\\xefS\\r\\x86^\\xe3\\x8a\\xd9T\\x03vt\\xecأ\\x9a\\xdfE\\v\\x19\\xe9Ss\\xfe6l;\\af)\\xf49*TF\\xb2e\\x17\\x97:?\\x01l\\xe8\\xde_\\xdbT\\xfb\\xc6\\xc1^\\xe7\\xbd\\xd3\\xfe#\\x86\\xfc\\xdc$n\\xbe\\xbc\\xa2K\\xc8\\xe8\\xad,\\f\\x92\\xc7\\xce\\xf1\\f\\\"`\\xaa\\x8c\\x8a\\x85\\x11\\xd6d\\xfb*\\xb0\\x9c\\xc7\\x1cZ%\\\\1\\xb34\\x02\\xf3\\xc5\\xf1\\xa0_\\xcd\\v\\x1f|\\xb9\\xc2\\xc2\\x1f\\f\\x8d\\x81\\x91\\xfd\\x8cO\\xbf,\\x83\\xf1\\xcf\\xfd?{\\x1b\\xcc\\xffJ\\x89.Fyw\\x90L\\xef\\xf0\\xb8\\x82\\xda\\xee#\\xef\\xa4\\x03\\xbd?\\xef\\xdf\\xff \\x83R!\\x82\\xd8ļ@}\\xa6fv0l%9\\xc9%^\\xff\\x96-\\xf7\\x1f\\x9eh\\xc6!QQ&\\xc4o\\xb0\\xa3s\\x03o\\xe6\\x83\\\"1\\xf3\\x12\\x8bMbd\\x8br\\x02&&\\tS\\t\\x97\\x8c~\\xe6\\x837\\xd99\\xa0\\x04\\x06\\xef8\\xcay\\x88\\xb9\\r\\x97\\xb4u\\xaa\\xe7\\xa8f\\xb6\\x1e\\xe4\\x05\\xed\\x9b7\\xe9`\\x1d6%\\xa8\\xcb\\xf5e\\x88g\\xad\\xab[ \\xb8\\xe88`V\\xe0\\x9c+\\x99\\xe6H\\x06-\\x1dy%\\x1c\\xa1\\xbbu\\xa6\\x9c\\x81\\xe8\\xf2\\xf21\\x15\\x18\\xae\\x96\\\"\\x16\\x18'\\x9e x\\xd3I5\\xc3p\\xf1\\xa1M\\x11\\xffT\\xecǬcC-4\\x97\\x86\\x0fߛ\\x9c\\xcc\\x15\\xbdhj\\xfa\\x02\\t\\x91l\\xf9\\x1b\\xfa\\xf41\\xe0\\xc5\\x0f\\xcb{c\\xeeh\\xcf\\x03&\\x15TXg\\xc1\\xb0]\\xd4з\\xd3\\xc7\\xfc\\xb1j\\xe8[\\xba\\xd79p\\xc8v\\xf6i\\xf5\\x17\\x81\\xda\\\\\\xdcf]\\xf6E:\\xbc\\x99\\xc9-\\xfa\\x87v\\xf2\\xccPܕ\\x0e\\f\\xee\\xe2\\xc3\\xfa#\\x8f\\x16\\x9c,\\xab\\xc6\\xf1\\u007f';\\x88\\xd5\\x1e\\xe0\\xaa\\xee\\\\(\\x87N\\x84\\xc8\\xe1lG\\x05$<-m\\xfd\\xb8VDI\\x93\\xe5\\x90d]\\x1ca\\xe3\\x87n\\xe97<\\x9f\\xc6 \\xd7T+@nD\\xca\\xfa\\xc1\\x90\\x18z\\x157\\x8c\\xa10\\x11_\\x06\\xb0\\xb0ܽ\\xa0\\xc7L\\x90G5\\x9f\\xe4\\xeb\\x15Jg\\xf9\\xfbyV\\xbf\\\"\\xb1\\xbd@\\x80b\\xcf#\\xa6->\\x81%Ӗg\\\\\\x92J\\x8aOG8\\x12\\t\\xae}\\x98Ŝ\\xc2J\\x1c\\v\\x8c\\xb9v\\xbdgkH\\xf0\\tF1zH\\x1aW]\\xa7\\x8d\\xb7\\x1b\\x96n\\xa8\\xc7\\tȄ\\x8d\\x81\\xfb\\x1b\\xcd|\\xabﵺ\\ae\\xf5N\\xdcZ7\\xe2\\xa7a\\xfb\\xd8\\b\\\"\\xb3\\xb2=rhq\\xa2?\\xee\\xa7z\\xe1+x\\xe3\\x83d\\r1\\xf8\\x8d\\xa8\\xaf\\xc6/n\\x98\\xacW\\xab=n?|\\xf6\\xa6\\x94=|\\xfc\\x84\\xde|\\xd7\\x11\\x9f\\xf1\\x05P\\xbd\\xc0\\x8d\\xb9\\xe3R`eU\\xfc\\xe4\\x06\\x96\\xab\\xfa\\x8cr\\x99t\\u007f?\\xfbE\\xa2Z5E0\\xa7\\xb4\\xc9\\xde\\u007f[\\xc3U\\xb8X\\xeb\\x85*D\\x1f\\xabPX\\xa1`\\ueb8a9u\\xfe\\xaa;Y\\x9a\\xfa`\\xa42\\xecV\\xb2\\xc5\\xe39+{\\xd5\\x1a6\\f\\vL]3F\\xacI\\xb8\\xc8\\x19?4靘\\x89\\x8ek\\xaf\\xd9SG\\xaf\\x9e\\xf8\\xabc\\x06\\x94\\xf7n\\x19\\xbc\\xae`\\xab\\a\\x9a\\xdf\\x03~\\x180\\x1e\\x1d\\x03\\x8e\\xff\\xf7\\x94)?\\xb5L\\xfa-M\\xb8OƽÛ?A\\xbc\\xad\\x98\\xad@S\\xfbHm\\xe14\\xbd\\x1c\\xa4/\\xe1:H\\xa2\\xb0ג\\xe9\\xbc\\xf8Lk\\xa6\\xceKj=9Pge\\xd2:\\xe6\\xee\\\"\\xe9=\\xe0\\x8f\\x0f\\tK\\a\\xab\\xf8ư\\xe8@\\x9b\\x0f\\xd9*3]\\xcfo\\xa6j3U,\\xedm\\xf7_\\xd2\\xe0\\xd8\\xc8\\xd4<\\xb7蠇\\xd1\\xd0\\x1c\\x9cspR\\xb7r\\xef\\xc4Q>\\x0e\\xec$\\xb2fz\\xa8\\xb5\\x94\\x82\\xc0\\xe9\\x82\\n\\xb2\\x1a\\xab\\xe6\\xc5\\xfeD\\xffE\\xb8^\\u008d\\x1a\\x850\\xac\\xca\\xe7\\xf6p\\xd2m{\\x04w\\xca\\xf4\\xb8\\x01t\\xbc\\xd2\\xecyI|\\x97\\x90\\xeb*~Q\\xd3\\xe0\\\\\\v\\x1fT\\x18G\\xae7\\xbc\\x8c\\x9c\\xfb\\x00\\f\\x9e\\x80\\xd4tS\\x12\\xe7\\x13\\x93\\xfc\\xbe\\u009a\\xa2\\xff\\xef\\xcd\\xe6\\x131\\xea?\\xfeBj\\x1a\\xe2KPV\\xcch\\xa9\\xb1M\\xbd,\\\"\\xb6\\t)\\xb5tj\\xf3~FS\\v\\x0e\\xfb\\xb4\\x95\\xfe)\\fegQ\\xe8h[\\x11`\\xd2\\xc2\\u008f\\xe8{\\x16\\xbas4\\xb6\\xfd\\xac\\xf9\\x0eT\\xa56\\xa1$i\\x12\\xa8\\x06\\x96bt\\xa2\\xaa\\x12\\xe7x\\xbe%(u\\xcd:\\xf61\\xe4\\x86g\\xb5~<*\\xdb3\\xc0\\xeaX\\xd9\\xc7xX\\xd6B\\x84\\x04T\\x12\\xc0\\x8e47Ѥ~\\xbf\\x1aDήrA\\x0e\\xe1\\xf6\\\"\\\"\\xb1^\\xe8̪:o\\u0530\\xf5ց\\xe7\\nx\\xf9\\x91\\xe6NjUi(IC\\x88\\x1d\\x13\\x1d\\xa9\\x9a\\t\\xa35\\xdc\\xfc\\xd6^p\\xca\\xd6n\\xc7\\by\\x84\\x8f{\\xf6\\xed1\\xe2q\\xd3\\xfbJ\\xcd:׳\\xe2-\\xf7:\\xee\\x9e\\xeb\\xae\\\\\\x94Fyt\\xb2DI\\xa9\\x99\\u007f\\xe2M\\xa9\\x13\\x9an\\x89|\\xda{\\xf3Kq\\xa3\\xff\\xb6\\x19\\xf2\\x9f\\\"\\xf4HPϣMk7\\x91\\x04\\x05t\\x98\\xb1\\xe2\\x11\\x12\\n\\xd69\\u009a\\x1eև\\xe7^\\x81\\by?\\x04ԟ\\x01\\x02\\xb9LJ\\x0f\\x9c\\a\\xe3ѓ\\x14;\\xb7j\\xe1\\x8a9\\x8d\\xfc\\x97\\\\\\x13_\\xbd\\x84x\\x1c\\x98\\x1dj`\\xca\\xe7\\xf9\\xb1\\x8a\\x18\\xb0:\\xcd\\xc7\\v\\xe1')\\x1ai\\xc1\\x88\\xf8\\xeerc|\\x1c^;\\x9a\\xeeoK\\xeb\\xe4\\xddAWă[\\xe4g\\xe6j\\xec\\xfdQ@\\x14\\xad\\x9e\\xb4]\\x1dt\\x87lW\\xa6\\x93d,\\x99i)\\x16I*\\x89a\\xe8\\b\\xde-\\xa5\\xe1\\xc9\\xed\\x82ۂ\\x84A\\xe9\\xa2#qis\\x99\\xed\\x16\\xc6\\xc7s\\xac\\xb9<\\xb7\\xdb\\xdd\\xeep\\xbb\\x9aK,>\\x19:/ߟg\\xc6\\xe0\\x81*\\U0005fa06\\xbb\\x86\\x05\\\"\\xcdg\\xb5.W\\x9f\\x8d3.\\xdc\\r\\xb0\\x8e\\x96\\x15\\x8e\\xa0\\xc2%X\\x18\\x89\\x12\\x9d\\x11h\\x16\\x81\\xa59B3\\xe7\\xef\\x93L\\xdc=\\x83\\xfar\\xa1\\xca\\x11Wގ\\x1d\\xf5\\x99\\xb6~\\xac\\xf5B\\xa3t\\xa4\\x10g\\xd8\\xceęw\\xcf<>\\x84\\x9c.\\v\\xe3\\xe0\\xb1\\xe6CG\\x9ah\\xdfH\\xbbp`t\\xe4Է<6\\xa6r\\uf72dw\\xfd͕\\x1c\\x02\\xbe~\\xad\\x9f\\xffݥ:\\xe2ҵ\\x82_\\xbb1\\xfa\\xab\\x0f\\x0f\\x84[8+V\\xe4D\\x1a\\xd9K\\xf4\\xd7vV\\xdc\\a\\xa3\\xd7?9\\xe2\\xf2\\xd5^\\xf6\\xf7\\x17\\x95\\xdf^\\xac`S\\xbf\\x8d\\xe5\\xa0\\\"ϦM\\x04E\\xda\\x14\\\\\\b\\xe3\\xc4\\xf0\\xe1\\x86\\xdf!h]4\\xd9[I\\xf9\\b\\x10\\xa4\\t\\xb5\\xeaL\\xa5\\\"WJ\\x03\\x0e0\\xba\\x9d\\x14\\x03j\\x02\\x92\\\"_\\xab\\x8f\\x95\\x02\\xa5\\x82H\\xb4\\xb4b\\xb19P$v$E\\xc3\\xedh\\xacL[*q>\\xf0\\xc24\\xeb\\xb25n\\x84\\xa4\\x13\\x98K#ȏl\\xe0\\\"\\x81\\xfe\\xb0\\xa8\\x18]\\xe1h\\xda/\\x06\\xecޭ\\xdc\\xfecה\\x03\\x05\\xf3\\xb2R6\\xf0\\x1e2\\xb3\\x10bp:\\xeaC\\xe2\\xf9l^U\\xa6\\x92q\\xfd\\xb2R\\x97\\x98&1FG\\fԇQ{{\\xb9,v+y\\x8e\\xc9x'\\xc5\\xe1\\x1by\\x9aNT\\x91\\xda\\xd7\\x15u\\xecȽ\\xc6M;\\x99\\xdf9x0\\x1c\\x02\\xa4\\x8eZ\\xcfNZ\\xba\\xe3\\xdb\\xd3Z\\xbf\\xa9\\baZPʫ\\x9d\\x13\\x8d\\xfd\\x1f\\xbc\\xba~\\b\\v\\xe1\\xbe\\x0f\\xb1\\xea\\xa8\\aJ!{\\xbb\\\\\\xbe,\\xb6\\xcbW\\x8c>v\\xd5\\xf2\\x98y\\x04\\xe1\\x848B\\b\\x85l\\b\\xfd]\\xd2\\xdcӴ(a\\x1aW.\\xfe\\x0e\\x8cܻ\\xe30\\xb5\\xfa힢\\xda\\an^\\x98с\\x0f\\xaf\\xa5\\x81\\xc4\\xd2\\xda3\\x81\\xc1\\xa6\\x86\\x8e\\x9db\\x92uV|\\xa3\\xeb+\\x1d\\x14K\\x86\\xb1E5'\\x05//\\xf0\\xfd\\x11DQ\\x04\\x96\\x9b\\xe0\\xdf\\xe8h\\xd5Kot+>\\xb1\\xe5^\\x1ce\\x1f>\\x87\\x19\\xb1\\xd2\\xfb\\xa4\\x03X\\xd9\\xef\\x11h\\x8d\\xd1)\\xd13\\xb6^\\x92\\xf2\\xee\\x97M\\x85ŝ\\xcd$\\xe2\\xed\\x14\\xe2\\xa3\\a\\xc9\\x16>(\\xbe\\xf7\\xc1\\xdc\\x14)e\\n$k\\x94I\\x06\\xe5X\\xb1\\x90gF\\xae\\xc2\\n\\xd0\\xe2\\xe5\\xbc\\xc9sV\\x89\\xe7q\\x96V\\xcc\\f\\xb5\\xb2Ej\\xda!\\x83\\xe8\\r\\x13\\x1f\\xb0\\a\\xc1\\x9b\\xe07\\xa3\\xe7\\x8f\\\\&'\\xa6\\xde7\\x0e\\xa0C\\x85sg\\x0e\\xe7.\\x1e\\xbb\\x90\\xbb\\f\\xaf\\xad{\\u007f\\xec\\x12?t\\xf6\\xbcu\\x18\\x0f\\x17\\x18\\xc9\\x10Z\\x02S\\x048\\xeb߃^-֫\\x98\\x8di>\\xaeD\\xb9ř\\xd9\\f]eE>~\\xf9\\xa6\\x9e$\\x16\\xdaKӁ\\xbe\\x05Q^\\x82\\xb0\\xef\\xf6?!\\xc6\\xef\\xf2\\x1a\\xbfQ\\xd4\\x10H\\xe0\\xd9\\xc3B\\x18\\xc7?e\\x10\\xf7\\x1e\\x02\\x8e\\xdcJ\\xf2\\xf0\\\"]\\xf7\\xbcekK\\x05\\xf0:\\xaf|\\x98\\xb0!\\xa9g\\x91\\x11\\xfb\\x8a\\xa5\\xa3\\xbcT\\xae4k*\\xbe\\xc0\\x99\\xc4\\xef\\xc4B6\\xc0\\xa612f\\xdbV\\x85\\xd5{eɵ^\\x10\\xb9\\x8dj\\xbf\\x9eΙj7'\\xa1O\\xeau\\xfb\\xea\\xfc\\x86\\xb0L\\xe15\\x00\\a\\xc1Y\\x96\\x167\\xa1\\xd5-\\xa4\\x9c\\xadd\\xa8\\xc8J4\\xcf\\ny\\xa7B\\f\\xfe\\xf6J6e,\\xa7\\xad'iZZ\\xa5Nh\\xc7\\xd6\\\"\\xc5c\\vH\\x81_j\\xd9S\\x0eB\\x1fp\\xe5m\\x18 f\\xac\\xa0\\x11\\x83\\x9b\\x10\\xcaHݲ^\\x06;\\xdc\\x04H\\x1b(d\\x19VދpAx\\x9f\\xdf\\xe0\\xff]\\xe4\\xc8\\xe2\\xad\\xd9\\xe0\\x9a\\xb5\\xe3\\n\\xf4B\\xce\\f\\b8%\\x9cZT \\xf7Ķ\\x9cg\\xe2\\x05J\\xb0tJIf/h!`\\xb1\\xd5)\\x03\\xa9⺁\\x11E\\x81\\x05\\xb4\\xb5N9\\xf6\\xcc\\x1b\\xb6\\x92!KR\\x15\\x88\\xa8J\\x81\\xbf\\x1fme\\x84\\x0f\\x97\\x0f\\b\\xe8\\xac\\xc2\\\\O\\xaf\\xf4\\xf2r\\xad\\ab)\\xf6d\\xde\\xd0*8\\xe6\\x1bX\\xa7־\\u07b5\\xf8\\xfd\\xa1\\xc0\\x887\\x06\\xf5V\\x12\\x1e\\x92IK\\xb1\\x19ű۴&\\xf9u܁\\xbbv\\xf0\\xca\\x17פ6\\x11Y\\xb80\\xb8\\xab\\xf4*\\x9e\\xc7S\\xf5\\x04\\xec\\x80¯A\\x14b\\x15a\\xb8A\\x81\\x99\\xfbI\\x92P\\xfe~\\\\\\x01\\xbf\\x89\\x93H[\\xaa\\x99\\xc5M\\xae\\x0f\\xa2\\xa9P\\u007fz\\xe6\\xc1\\t~\\x8f:fA+\\x8eXT\\xdf\\x11o\\a\\v\\xf8>8\\vq\\x13?\\x03\\x0fp莉ߖ\\xf0D\\x88\\x8e\\x85\\x97v\\x1e\\x97\\xf0d\\x00G\\xebA\\xbaT2\\xf5=\\x94\\xabүU\\xbf\\x87?\\u007f\\x96\\xedE\\xb0\\x17\\x01\\x19q\\x02T\\x87\\xf6om\\v\\xe0\\xe5\\x03Ik\\xc8R\\a\\x0f\\x1d\\x18\\x13I/7Cl̈o\\x8c\\xf2\\x1dS\\xbd\\xdc\\xedܤV\\x91\\xcc\\x12\\xee\\x06\\x8b\\xddX\\xd6\\xc4\\xf3d\\x0e\\xf9\\xfd\\x93\\xcc\\xd6\\x0fgO\\xdf*\\xbcg\\xb68\\xa9O\\x01]9\\x81\\xfc\\xf9\\xf8\\x84\\x8d\\x15\\x19\\x8av\\xefO\\xc0\\x8br\\v\\x137\\xbf\\x8d\\xf9\\xf3!b@V\\xafw\\x13\\xef|\\x919\\xb1\\xfeK\\x88W\\xf6j\\xa8\\xf9\\xbb\\xe3\\xea\\xf7*R\\xe6\\x1b\\u007fd\\x8a$\\f\\x04] \\xadR\\xef\\x14\\xf3\\xbe1\\xbb\\xa3'\\x13bq\\xa60\\xc9M\\xb2̙\\xe7N\\x92eQ\\x81eeyÑ\\xd8ʕ\\xe1\\xa0bQ\\xe7\\n\\xe4\\x16\\xa69\\xf0\\xb2|Y@\\x8an\\x9c\\xa9\\xccԅ[\\x9fG:\\x98\\xecT\\b~\\xfe|\\xa1\\x91OG\\x80t\\x9f\\x88\\xeeFy?\\xd1a\\xde.\\xf7'\\x80\\xd4oSaU\\x9fey@d\\x89\\xd3\\xc8\\x11\\xeb\\x8e7\\x8bH\\x8b\\xadZ\\xb3W\\xed\\xdcE^\\xf9\\x03b\\xf5L\\x92\\xd5\\x03\\x1a\\xe9\\xc5E[\\x1f\\x91%Cʖ\\xda\\xe6\\xa0\\xf3\\xdd~7\\xffO\\xbei\\xe4\\x80\\x05\\x11\\xae\\xcb\\xd0\\n5\\x17\\x01\\xce&\\xb6Čg(#\\xad\\xcdOz~\\xbef\\xf9d\\xef\\xf0\\x82\\xcc\\x10cM\\xd5K\\xc7\\xda\\n!̬\\xbf\\xd0x\\xff\\x94A\\xab\\x13\\xd1\\xd4\\r\\xa3\\xf0\\bN\\x92\\xbaH\\v\\xa2h\\\"[y\\a\\xb2lU\\x9c\\xe7\\xeb\\x9bh\\xba=\\xa6zO@\\xac\\x05,ko\\x17ݵ\\x8d\\xbb\\xfdT\\x14\\x1eq6\\x8a\\u007f\\xd6}\\xfa!0ɹq\\xf8\\x83\\xbe\\x81\\xa0+6\\x00\\x81|VI\\x19\\xb1\\xd8`\\\"M\\x84\\u007f8Љ\\x8e\\xe5\\tBFꙘ\\b\\xe2@D\\x88y\\x04\\x93K\\x92Ѣ\\xceT\\xc0t\\x04L\\xb7:\\xf7<r\\xd0b\\xbf\\xe11ל\\xb6\\xcf\\x0f{食\\xfey\\xff\\xf3E\\xe6\\xe2\\xc1n\\x1cg\\xe5\\xb6r\\xa6\\xadɉ\\x8e\\xa6\\x03\\xb2\\xfa\\xe2\\xd4.\\x83\\xf1\\xea\\a>퓴*\\x8bw\\xd2\\x1c\\x1d\\x8d\\xa1}JH\\xa5'l\\x14\\x84\\x05q\\xe6\\x86o\\xe6!>\\xb1\\x1aP\\xb0\\\\\\xfc\\bTЯC\\x8a\\xde\\x11\\xa0\\x12Fx0[}\\xbb<\\\"E\\x82\\x8bH\\xde\\xdd&\\xdc\\f\\xef\\x1b\\x16V\\x06\\xaa\\xd1dRkŖA\\x05\\x01#9F\\xa4\\xb7\\xe2\\x98\\x15\\xcf\\xd9\\xcd\\x03q>53-2VU\\xac4\\x8d\\x9d\\xfd\\xd3l\\x93\\xd5\\xceڋ\\x8e\\xa0\\x8f\\xc9\\xddx\\x80\\x81O\\x13\\x19\\x94e\\xa4\\xc3\\xc0\\xbdhA\\xb7S\\x98\\nƟ\\xb9\\x8e\\xb4.a\\\"\\x10\\x1e\\x97\\x9f\\x84\\x91f=\\x89@\\xee\\xe6\\xa6\\r\\x99\\x9f(G\\r\\x10\\x19\\xea\\x17\\xc5\\xc3B\\xa03~a\\xce\\xde\\xeaUv\\xe6>υ\\x12\\x1cWr\\x98%\\xbf\\xc7Ek/\\xff\\xf1n\\x88\\xf6\\xa2l++\\xc1\\xf1eG\\x04\\x89l˛\\x86\\xf1\\xb1\\u007f\\xf2\\x05:\\xe2\\x16\\n\\xf8\\xc3l\\xa2\\xfd\\xc2v\\x0el\\xd2\\xd5f\\xb7y\\x11$b\\xe8\\xbaյ\\x87\\xaa\\x19\\x10\\xd2\\xd3\\x1ai\\xe8\\x99jue*\\xa8\\xe5X\\xa8\\xb7\\x03\\xc0+\\n\\xb4\\xa7)Jm7xfi\\x9a\\xac\\xe0T\\x102I:H\\xd7]\\xcdZ\\x05\\xc7EUt蘖AZ&L\\xa5|\\xa4\\x85\\xf4H\\x00\\xf2\\xa0C{wG\\xb9\\x91h7Q[Uv\\xee\\x03\\xa6\\xc5\\x02:\\\\\\xf7\\x00ީp\\xa7\\xee&]t\\xa44\\xads \\u007f\\xebt\\x10\\xe7\\xe7\\xf1Z\\x8bN\\x95\\xa2N\\xfd\\xef\\xc8\\xedl\\x8blv\\x9b\\x00J\\t\\x9c\\x1e\\x81d\\xefN\\xe78\\xc9ˍɲ(\\x12\\n\\xc9>\\xc4#\\x1a\\xe1̀\\xa0[>yx\\xb3\\x13\\xd1\\x06!\\xab\\x98\\a孠\\xb7\\xbc\\xa0\\xd2hh\\xed\\xef[:J\\xb0҉[\\x8c\\xa8\\xccR\\x12\\x11\\xcc\\x00B\\xc5%sv\\x03\\xffx}\\xf6?7\\xea@'\\xb5\\x824ꝷ\\xc0f2\\x8f\\x02݄@\\xbe\\xa0\\xf4\\xc52\\xa9\\\"\\x06\\x81\\xea\\n[\\x0f+v\\xd2\\x121\\x1f\\xf0%\\xf4\\x1d\\xc0\\x94\\xac\\xf3\\xb6\\xf9\\xbak\\xf4[s\\xedM\\x19\\xa8m\\xccl\\x97\\x8dw\\x85膅\\xc5N)\\\\\\xf2}\\xcf\\x06f\\xc1Ӫ\\x8bws\\xafz\\x1dwv\\xdb\\x00q\\xf0XP\\xfeƛ\\x1f\\x9154\\xc2Ʋ\\xb4LF\\x8fL\\xbd6 \\xbd\\x8bM\\xfa\\xa6Q\\x126BV8\\f\\xbfu\\xadzQ\\x83=P0[Z\\xbbA\\xe6\\x81 \\x0e\\xf1\\u007f\\bbհ,\\xc3\\r\\xf5\\xac\\xf1=Uڛ\\xd8 \\x14\\xaew\\x06ەdG\\xc6!\\xaeiG7\\x00uI\\x12\\xc8,\\xe9l\\xb9\\xad{\\xefܾ\\xcc\\xcf7\\xb2fB\\xb5\\xd9?y\\xf7N\\f/\\x8fc\\f\\x11\\xa7\\xef\\xe5\\x1e\\xc3\\xe2_\\xa4\\xa5p\\xf3\\x1f\\xda\\x06O\\x93\\xd3G\\xefY\\x00\\xf3 \\x9d\\x90iA\\x9f\\xd2\\xc2\\xeca\\xe1\\x955H\\xed\\xa28$\\x02Y\\xbd\\xda\\x1d\\xcf\\r\\x85<\\xa0\\x8c\\x96\\x85\\xfeD\\u007fP\\x94\\xec\\x93\\b'\\xb8'\\xa1\\x8b4\\xe8\\x94\\xf7\\x103\\x04\\x8c\\xceU\\b\\xb6\\xf7$\\x15\\x1e\\x16C{]Y\\xe7\\x02`>T\\x8e\\x16x'\\xcf\\x10,-\\x94\\x06xz\\xc1\\xd4\\xe5O<\\xc0\\x80\\x00^Cd\\x92)\\xf0j\\xbdM\\x1e*\\x01Ἠh6\\x9a\\xacx\\x03\\xdex\\x88X\\v\\x97(\\x00\\v\\xe6\\x11\\xdb\\xea\\xb5A\\xc0?N@h\\xa3<C\\xc5\\xe0\\u007f\\xb0\\t(\\xa5%\\xcf8S-\\x93u\\x03B3VK\\x84\\\"4\\x8bm\\xdcDWR\\x99\\x8f\\x02\\r\\x05\\x871:\\x8f\\x9b$.\\x84\\xb8v\\x04\\xa4#\\xd2T\\a\\xcc\\xd0\\xe9\\xbd\\x063\\x0e^P\\xbe{\\xe1\\xa3^ِ\\x06\\x89ܚC\\x14\\x8e\\xaa\\xa5\\xc2\\x04\\xfcۖ\\x91@\\xf4h\\b\\xb1\\x9e\\x04\\xf0\\xb2-\\x14峐\\xe0'\\xba\\xc83\\xbf\\xef1\\x97|\\xc0\\x8d\\x88\\x10\\xa2\\x9f\\x12\\t\\xf3C\\xe02\\x15\\xd1N(nj\\x86\\t`\\xa1x{\\xcb,u9\\xa4\\x94d\\xb0,\\x19\\xf0\\xd1\\xe0̫\\x84\\x81\\xce\\x17\\t\\x03%\\xfc\\x81\\x1d\\x95\\x80\\xbf\\xe8\\xd8zq\\x126V\\x95g8˥1w,\\xe4\\x05\\xb8\\x83 p\\n\\x1d\\xe4a\\x86\\xb6\\x85\\x9c\\x1b\\x03\\xce\\v\\x14\\x1e\\xcdS\\x81\\x88\\x81\\xf4[Z\\x9c*L\\x8d\\xddr\\xf2\\xca*.\\xa8着~\\x9aQ\\x81\\x02\\x90H\\xc7>١\\xfa0re\\x00\\xb6R\\xb9\\xcb<K\\xdck(g}\\xdb*\\xa9\\xb1\\x1dq5VjM\\x9ca\\xbadM/@\\xe9|h\\xec\\x14\\xe8\\xe3\\xf7,f\\x9b\\x12\\x99\\x86Q\\x1a\\xf4\\x0eF\\x9e\\x81y!\\xb2\\x89\\x89\\t\\x0e1\\x85\\xda\\x12\\xa4\\xa0\\xfb\\xc5+%F\\xc6\\x16\\xfd{\\xd4n9{\\x17\\xf5\\v3a\\xd3H\\x98\\x00_\\xb1\\xe6\\xeb\\xbcŚI\\xfa\\x94\\xd5,\\x81\\xfc\\x88\\x82\\x9aZX\\x9c\\v\\x97\\n*\\xa9\\xb8ę\\x1a\\b\\xd6\\x0f\\x11dg\\x1du\\x9f\\x03\\x9cA,\\x17\\xbfr\\xed\\xa2\\r\\xf4S@=\\xaaH\\xe5:\\x11\\x9a\\xf4\\xff\\xb0D\\xa4\\xb3\\xa4\\x13\\xe9\\nqv\\x8e\\xae=\\xaak\\xc2\\xd1s\\x8e'\\x89\\xec\\xc7Du\\x86\\x9fD\\xfb\\x1c\\xbb\\x15\\xcd\\xe7r\\x95I\\xe4>\\x0f\\xaf\\x8f:\\xa9\\xabaژ\\xcc\\vh\\xe9|#\\xd6\\x02M\\xf8\\x05\\xd9'-\\n:\\xb3{Ƶb\\x12\\xc0f.J\\xb2\\n\\xb7m\\x10k\\f^T\\x88\\xe9\\xa09܀\\x89wc\\xe5w.\\x014<\\xf1\\x14\\b9\\xed\\xbf\\x8b\\xfc'RP\\xe7\\xf5ōW\\xf8\\\\\\xaa\\x977\\x06\\x0e\\xdfԙ\\xe5\\x8d\\xd9!{T\\x84˛\\xe4\\xf0\\xe3\\xf9\\xa9\\x9e\\x17\\xa5.\\xf5\\x97E\\xa9\\xf9\\xe9œ\\xeb\\xe9t\\xc5n\\xae\\xe4\\xf9\\\"l>\\x99\\xe7\\xf8\\x02\\xad\\x9e\\xedx\\xb9\\n\\x1e\\xf3\\xeaf\\x9d\\x88\\x16\\x8e\\v2\\xf37\\xb2\\xb8\\x8b\\xcdq\\xfe\\xb0\\x18\\xa7\\x96Q\\xefW:\\x93\\x9a*\\x92\\x13A{G\\xba\\x9c\\x9aÀ\\x80\\xb9\\xd3@:d}\\xceN\\xb5\\xa9\\xbd*\\xd1\\\\\\xb6\\x97\\xf2\\xe9I\\v\\xb4\\xdb\\xc8\\xd2\\xe8w\\xf9\\x93y\\x96\\t\\x8f\\r\\xe8\\xae!\\x1e/\\xd7+\\xefrm\\xde6\\xce\\xea?N\\xbe\\xbc\\xf9|@JH\\xc4\\x17\\xac\\x1fc\\xa6\\xd5s_lś\\x9c\\xeb\\xe0\\x04\\xb0Y\\xf7\\xf5`\\xed\\xe8\\xb5R\\xe7\\xd5I\\xe7\\xc7ڄ\\xca\\xf27CWF\\x820ԗ\\xc3\\x18\\xa7a\\x8a?YC\\f\\x9a3U\\x12w\\xa67/Vҽ\\x0e;\\xb0\\xf2\\x1b\\x16\\x863\\x17{\\xbf\\x84$+=e\\a\\xfd\\x9d\\xb1\\x89\\xe1\\x9dҩ\\xd3\\xd5\\xe9t\\xedtЀ\\xf8\\xf2\\xa7\\x18\\x91b\\tً\\xfa\\x8f\\xbb\\x0f\\xbd\\x96pH\\xcf`Y\\a\\x9bv\\xee\\xa8\\x05\\xd9\\a\\xe0r%j\\xe9\\x1b\\xdc\\xd2\\xcdЩ\\xfc\\x8f\\x17\\x14|\\x1b\\xcb<\\xd0F,\\x02\\x99\\xc6 3\\x8f.j/\\xb4\\x9e\\x9b\\xa8G\\x9c\\xbbT\\x05\\x1f\\xfc\\xf83\\xf4ۭS\\x9d\\xe0=\\xec\\xec\\xf0\\xb0\\xe1V\\x01Kݛ\\xa5n\\a\\xff\\xa2N?\\x96\\xc8U^1\\xf2\\xe7\\x9f<LA^\\xe4\\xa6ÕD5.q\\xbc\\xafE\\xdc\\x13\\xfc\\x84U:\\xa7\\xd6;\\xf9Yݛi5\\xb5/\\x195B \\x8b\\xea\\xa0,\\xace\\x95b\\x92\\x1e\\x1b\\x85\\xfa\\x143\\xa4\\xd6\\x00#\\xf1\\xdf\\xc0\\xe7\\xca\\xfc\\xc3u\\xbc\\xe5\\xe1H\\xc0 \\xa1\\x05\\xd9691\\xe5\\xc0\\xe3\\xd1d\\x92UyL\\xf7\\xb0\\x04\\xf7ߏ\\xbb\\xfd\\xf0\\v\\xf6\\x02K\\x8b-r\\xf9\\xdf\\xc1!\\xfb\\U000e9432\\x96\\xfe\\xcf\\x06\\x91`\\x1d\\xa1\\xb1\\xc0\\xa0\\x11\\t@\\xbb\\x85\\xe2}\\xe2ISҽ\\xf4\\xb9\\x10\\x86\\xbf\\x82{\\r\\x05\\xc3\\xcdjz(\\x90#\\xafӒ\\xf6zAX`q\\xc7\\xe1\\x8fr\\xa0EAq\\xec\\a\\xdaN\\xc8\\u007fw@\\xd0\\x04\\x9f\\x15\\x0e\\xf5\\x17\\x84C\\\"\\xce\\xd8\\x16\\xd5<\\x1d\\xd1Q/\\x88\\xc87o$\\x06\\x9bt\\x87\\xa2\\x1a\\xa5\\x80k[\\aҫH\\x98\\xb1\\xf5\\xb3\\x04\\x17\\x81\\xa5'\\x10Ʉ\\r/\\x88\\xbc\\x9a`\\x9ew\\x83*}^\\xff,!\\t\\xc1\\\"C\\xc5\\x0f\\x19Z\\xd1\\xf6\\xfe\\xfa\\xba\\xac\\xefn\\xbcw\\x14(\\x00\\x8d4\\xa3\\xf3\\xbe\\xe8\\x90\\xf0\\xfc\\x9bm\\xe8\\x90\\x1b\\x82J-\\x95\\x13\\xbb\\x0f\\xe0\\xf6\\x17)\\x82X\\rh\\f/\\xe1\\xe6]\\xb3\\xe1i\\xdc\\xdes\\xca\\x12Vv\\x1fv\\xfek\\x942\\x17\\x9a\\x81t\\xbb\\xac\\\\\\xbe\\x9bl\\x9d\\xf6m\\xd1u\\n\\x83\\xeai\\x96\\xd0^\\xbd\\xefI\\xe5\\xbf\\xc9 7\\x12~\\t\\x18\\x02FJ7 \\x98\\x02\\x0e\\xc7\\xeb\\xa3gb$\\xfa\\xa0w\\xb6\\xef\\xcf\\xd2\\xdc1\\x18,=w\\xb4ѱ\\xdcv\\xbf\\u007f\\x98\\xcf{[Ni\\xcayϬR6\\xb1\\x97G\\x88\\xf4)c>\\xa3\\xc8\\x01_\\xaa\\xe3\\n\\x02\\xd6y\\x19\\xbf\\xf1P\\xb4O9nHX\\xc1\\xa6\\xc1g\\xb3S:\\xba\\x97\\xa3g-\\x958\\x1f\\xce\\xd6(\\x1e\\xc7\\xc7;E\\xd0\\xd7?\\xb3\\xa1\\xee\\x84\\xe3\\xb5=\\xdc\\xec\\nfe\\a0{\\xf6\\xe0\\xd9YZ\\xad\\xb4ףōr\\xb1ؙH\\x1e3\\xeaC\\xed8\\xbf'\\xd7\\x1f\\xe4O*\\xe5\\xa8Y\\xa2@\\u007f]!\\xc8\\xdb\\nח\\xbapv@\\xf6\\xedq\\xc3By\\x12\\xbf\\xfc\\xa1Hj&\\x83<6\\xcfs\\xc1ʼB\\xa7E\\x91\\xae\\x8c&խ<\\x8c\\xc3\\xde-R\\xc9>D+E\\xe2l\\x1d\\x18X\\xfbXE\\xd6Z\\xfc\\xb3ih\\x99Z\\xb1h\\xf1\\x10*\\xf2Ke\\x15\\xb1\\xb0\\xb1\\xf2W\\xc6`\\x19\\xfe\\xaa\\x84\\x1b\\x8a\\x1b\\xfe8\\x06\\av\\xfb[\\xa6q\\x11Gy\\x80]\\x93&\\xae\\x97n\\x18\\xd0\\rc\\x03.\\x97\\xb9\\xa5ѬC\\xc5\\xf9-\\a\\xb3b\\xde\\xe0\\xaa\\xfbȔW\\x06\\xbfD\\x048\\xcb=A\\xe2\\xee\\x88 \\xd4\\r\\x9e\\xb0\\xf5\\xf0R\\x84\\xa1\\xba3\\xdah\\xde\\aC^\\x0fqo\\x8c\\x19\\xf1\\xafWM\\xa8\\xa4H\\x80&\\x0f\\xbaH\\v\\xfbw\\xb9:\\xb5\\xe8|\\x12yO\\xc0Z£k><݉3\\xe1\\x17]\\xe3}G\\x1e\\x88\\xb3\\x8f\\x88>\\u007f1\\xf7\\x81\\xcdE\\xc0q\\xeeh\\xf0\\xe5\\xe8M\\x97\\v\\xeelD\\xbe\\xb7d\\xfa_-eox\\xbd\\xac\\xefe>\\x86ӧ߿\\xe0\\x81\\xd3\\xe7A85\\xad\\xe7Ο\\xb3\\xa1<\\xb8o\\xf0ܿ\\xefë\\ue7ea\\x17\\x1f\\u007flg\\xf4\\x98z\\x9e\\xbd\\x04ޞ:\\xf1Ա!\\xa3\\x1f\\x94>\\x97\\xd4\\x06\\x94\\x92\\x9b\\xc5/\\x051,\\xccٍ\\xf2W\\x8aY\\x90\\v\\xfe~\\xe5\\vͣ\\xbd\\x83\\x96\\xaa\\x17\\xfc\\xaf\\xa5\\x95!\\xeb\\xaem?q\\xf4\\xd8\\xfe\\xac\\xfd\\xf4\\xb9\\x13k߮u\\x18o7\\x16\\x95v/\\x9a\\xefMې%\\xb4\\r{\\xd8\\x05|y\\x9c!\\x8a\\xf7ң\\x96??\\xb4\\x9a]\\xf1\\x19\\xcd\\xf2\\x18\\xf9\\x823\\v[r\\x1c{H\\xa1j[]dG}R\\x9dd\\x15Ql\\xfe\\xcc\\xfcv*Z\\xa2w\\xb5\\xf1\\x86ψ\\x8b\\xe9s\\xf4\\xe3o~\\b\\x99\\xfa'\\x92צ휩\\x9f\\xdd\\xc4z\\am`_Py\\xf30\\x8a\\x9dbx\\x92}<\\xd1f˴e\\xa4\\xed\\xce%\\x99CcBhеc@\\xc8\\xe6\\xc0k\\x8f\\\"\\x94\\xe3\\xd96\\xaa\\xe1\\x84\\xd8\\u07bf\\xbf\\xbe,[\\x8f\\a\\x0f\\x1e\\x1c\\xee\\xb2[[\\xa5Z\\xff\\xe1\\xee^Yj\\xef\\xbd\\x16`\\b\\xde\\x1b\\\\}\\xa8\\xbd\\xee\\xfd\\x9d\\t\\xbc\\xaaq\\xff\\x0e\\x16\\v\\xaa5\\xbcsc\\x97\\xaf\\x1c<\\xfa\\xff\\xa0\\x01\\x82\\xbb\\xf9\\xf2\\xf1K\\x17\\xf7\\xf4Y\\xa0;\\x8f^\\xba\\xeec\\xfd\\xd2ދ\\x8fW \\xeb\\x85g.{\\x82p\\xf6\\xe2\\x1eJ\\xd6O)\\x9f\\xc1\\x19\\xa7\\xd5XSFpV\\x83SH\\x00\\xf0q\\xd6N\\xa2Ҏ\\x99\\xf0\\x98Vd\\v\\x02\\x8cH\\tnx\\x926\\td\\x8c\\xaa\\xbcNQ\\xa8 \\x87\\x00\\xe46\\x00\\xb4x\\x96\\xee3\\x84|\\xa8\\x89\\xe9c.\\x0f\\x02h\\xa6\\xb3x\\x8eP\\x85P\\xb9\\xf7\\xb2P\\x83\\x82@q\\x8f\\xb0\\xb0\\x01Qh!1\\x8c\\xcd6\\x99\\x84\\xa9\\x9ey\\xd2t!\\xe3\\xd0X\\xc5Ǹ\\x99\\x00\\xa2R?\\r\\xa6\\x1b\\xe0,6\\xa8\\xe6\\xbc1\\xd8\\xc1̥=\\x1cqOe&È\\b\\x84\\x06\\x01DiU\\x00K\\x9c\\x05!\\x1b8\\xf51ྚ\\x97\\x97xj,5j\\x14\\bj\\x84\\x91\\x9c:\\x8e\\x02[\\x06\\xc5\\xc6@\\xcc\\xf8݊)\\x12'5\\x06\\xb8\\xa6\\xd9\\b\\xa4\\xbc\\xd4oR\\x9f\\x1e>S8\\xc7y\\xc4/w,qI\\xb1d/\\a\\x03Uh\\r\\x00\\x80\\xc2\\x1cq\\x82o\\x06jn\\x17\\x1d\\x1a\\xf1\\xc2\\xd9\\x0f\\xe3A0\\xbdsC{\\x8f\\xbe\\xd1~?\\xab\\xb4\\xf6\\x16;\\x96\\x92\\x95\\xe3\\x93M\\x8dE5ź\\xac\\xbf0\\xd7J\\xad\\xa3\\xf2 \\x94f#@\\x83\\x92*\\xfc\\\\=\\x96\\xf9\\xec\\\\\\xd3(\\xb2\\x83\\\"\\\"\\x13\\xee\\x0f\\x9d\\x14\\x86\\x8e\\x00(\\xdf1\\x89I\\xb2\\x16\\xfa\\xb0\\xb8\\f<\\xe7\\xf6P\\xe0,ϢQY>{M\\x1de\\xae\\xb5*\\x11\\x88I\\xa2\\xe5Fs\\x8d\\x88\\u07bf\\x1307}s\\xa5\\xa4\\xd42\\xe7k\\xa7\\xa9#\\xb5\\xb0\\xf4$m\\x0e\\xcev*7\\xe1,\\x9f\\xf1,'\\x154\\vo\\xdb.\\xafO\\x10S\\xa8Vve\\x81\\xc0\\xf8D\\x908\\x93\\xbf\\x99\\xa8U\\xd6}\\x11\\xd7 \\x9f\\aJ\\x9a~\\x1c\\x82r\\x90s\\xc4\\xd2<]Z\\xa9\\xde\\x10\\xae\\xd3\\xeb\\\"\\xe8`\\x95L\\xb1\\xcb\\x06<\\x92D\\xf6\\x8e\\a\\xa7\\xeb!ͬ\\x84\\xd3YR\\x90j¼1;\\xa6\\xe3\\x8a\\xe6D\\b\\x1a\\xc5\\xda\\xe4X\\xf8j\\xe0\\xafJ\\xf19\\x80\\xad\\x0f\\xb8DrD\\nUJ\\u009f\\xd00q\\x99\\x12\\xc3<\\x0f\\x1c\\xcf\\xc9U\\xde\\xe3\\x82\\xc8\\xf9#\\x96IL\\x92\\xe2h\\xab\\xf9xYY\\xc1ի\\x10z\\xf5\\xfbH\\x0e\\xce)F\\x99\\x82)\\x15`J\\xf8?AUV\\xe4\\x01\\x89\\v6\\x8b\\xb7\\x06\\xab8wc+ZM1\\x198\\x93\\f[\\xc0\\x06\\fA\\xb1\\f8d\\x98\\x81\\xe0\\x02,\\x1a471\\xa0ޞ,\\xb1\\x8cBE\\xaaH-#D\\x9b\\xa1A\\x04\\u0600\\xa4U\\xea\\x1c\\x80\\x92(\\b\\x9f\\f\\x18\\x1aRM\\x13\\u007fV\\xa4%\\x06\\x88\\bU{\\x80a3\\xcclȯ\\xb1\\u007fcTpI\\xac\\xbe\\xa5L\\xb2\\xdc\\x05^uf\\x19s)\\x14_iv\\xd9g\\x12߂\\x9a\\x87\\x84\\x85\\x9d\\xe4I\\xa9H\\xab\\xa6{\\x8ds\\x9e{\\xc5!<=\\xa1\\x83S\\xfd\\xf1\\xe1D\\xe1N\\xaeNuɓ\\x91\\x85\\xa1\\xd8D,\\xa3\\xc3\\x19f\\xd2\\x04\\xd1(\\x14\\x16\\xf3Yz\\xe3\\xecs{\\x93\\xe4E \\xb0\\x82\\xf5[\\xfc\\xd4\\xc2\\x1a\\\\X>$U\\f\\xb7\\xb2\\xd4&\\xd4\\x13aP\\x88\\x91Ń\\x02<;2$O\\xd4\\xda\\xf2mp\\xe9\\x90y7m\\x05\\xfd\\xaa\\xe4\\u007f\\x19lutD\\xd1\\x01Ͼfz\\x99\\xe0\\xb2\\xd8-n\\xb3\\xe0\\x1f\\xb6\\xbd˚\\a:\\xbc\\xb4\\xba㬨z\\xef\\xda;o\\x01-r\\x98\\x90\\xcebf\\xecuL\\xa0q\\x00\\xed5\\xda]\\x99l!\\x93/X9\\x832\\xc2\\x19g\\x94;\\xe4v\\xdc{e\\\"\\xabM#F\\xbc\\xeb\\x82\\x1eb\\\"?a\\xf8\\aOC|i\\xa4\\xb1\\xf4b\\x17\\xe0\\xcd\\x16Cv\\x99\\xc9\\xe4\\b#\\x80T!\\x9de\\x9dMZ\\x8e\\x1a#y\\xb73\\xbd2<+d\\x15sƈ\\x11\\xd4\\xe3RO\\xd5G\\xa7\\x82\\xd6ԏ\\x9f\\x9d\\x1e\\xf5G\\xc5\\xc2\\x1ci\\xf1\\xb9\\xfe\\x88^\\x15[5\\xcf\\xf3\\x13\\x8eaN\\x16\\xbc\\x93\\xf4\\x82\\xc5l\\xef\\xde*Ono#\\xf5\\xf7\\xc6y\\x17\\xe3\\xad!\\xf6\\x16bg!3#kQ&v\\x86\\n\\x99\\xb29\\n\\xf4\\xa5c\\xb3\\x81\\x8dև\\xe7\\xb3\\xccd\\x18\\x90o=\\x9a\\x8cxL\\xf3x,&\\xc4xrFs<\\xdc\\x1a.\\x19\\xbb\\xbdl\\x97H\\x9brH/\\xd4(\\x10*H\\x8e4\\\\of4NƠ\\x9e\\xc8<\\x04\\x16\\xad\\x8bD\\xd3Ÿ\\xd4p\\xadמݬ.\\xea\\xe1\\\\\\x82\\x15A\\xf5k\\xb3\\xf3\\xec\\xf6m\\xaa\\xb9\\xaam\\xc2J\\xc3n\\f\\xcc\\x17y\\xc8U\\x95^\\x94\\xee<\\xb2E\\b\\x98\\x01\\x82ވ\\xea\\xdeG\\xc7\\xeb4\\\\u=m~\\x80H̔\\x8ae5\\x85y¤G`$\\xd4+\\xb4\\xfe\\xf9\\xce\\x1dv\\x9dZ˗\\xa5\\x1e\\xa4\\x10\\x01\\x84\\x81C,\\xe5,-!\\xa1\\xf0W\\bE1>\\\\\\x9f\\xa4\\b\\x06xH\\xa6\\xfd\\xd1\\xcbH\\xff*\\x84\\x8eL/S\\xbb\\xdahbg>D\\xe1Xjw\\xcd\\x04x\\x14L%\\x86\\xb6y\\xb0J8\\xab\\x0f\\x8b1\\xf1\\x8bW\\xea͇\\xa0\\xda\\xef}\\f\\xc4]\\xb5\\xf4\\xd2k\\x1f?\\xde\\xf4Ii\\xa1\\xd9\\xf9\\x05pn0\\xffh$Z\\xad\\f~\\xab\\x1f\\x9e?y\\xddMz\\xd3\\xc9&s\\xbd\\x1b\\xe83\\xfa\\xedS\\xcf0\\x804\\x9b\\xa95'\\x90\\x16iI\\a\\xe2]\\\\\\xfc}62\\xbc\\xc3\\x19\\x13`\\xb0\\x99̥\\xf9\\x80i\\x02\\xcaJ\\xd6a\\xb7\\x03\\xb5\\x949\\x00\\x02\\xf3^\\v&\\x89ͼ\\xe2\\x9d<+\\x87ĚF\\xbe\\xde\\x18\\xb4\\xdf\\xcf\\x1fBp\\xb8tNӡ\\x0e`\\x89\\b\\xad\\xe0\\x12\\xcd\\r\\xa5p&\\xd4<g\\xc0\\xb9\\xf7\\xc5\\xf6\\xf5\\xad\\xe6\\x94\\xf0\\xa5\\x13EpC\\x1f\\xaf@\\a\\xf1\\xa2\\x92\\xd6L\\xd6]\\xaaR\\x9a\\x9eN\\xac@\\x81ӷ\\xe4\\xb5\\x1b\\xf7ګ\\xa7\\x10\\xb43㈮P\\xbc\\x16\\x18Z\\xdbmn\\x8aAc\\\\&\\x1b\\u007f\\x97z\\xf8pt\\xb6\\x97\\xb4\\x9a1\\x02\\xc6\\xd9S@\\x00Z\\x1a\\x01\\xc7yp\\xf0\\xc1\\xf5\\x81o\\xea\\xef[\\xde#\\x80\\xc8\\xca\\xeb\\xbf\\x15\\xdfn\\n\\xb8=iY\\xa3{\\xd1K\\xa5ۗ\\xf7EȑSPXy]|\\xb3\\xddE\\xff\\xc5\\xcc\\xc1\\xc0\\xa7\\x84\\x91\\x8e\\xb4\\xc1\\xfa\\xb4S\\x8a\\xc6\\r_\\xf8\\x8bY \\xb2\\x11\\x0ewt\\xf4\\xc6\\xe0;\\xcc)}\\xb4\\xa7+3\\x90(\\x9d\\x8d\\r\\xbfY\\bU\\x1d\\xcc7t\\xe0\\x86k\\x13\\x8ek\\x87\\xc1\\x99Nc9z\\x98\\xb2\\a\\xbbQf\\xd2\\xd1\\xca8\\xef\\x195\\xacl\\x1f(=z\\xf1m\\xef\\xfc~r\\xb8\\xa5\\xff\\x04T'qu\\xbb3D|\\xef\\xb3JsӇ\\xbb\\xbbE\\xe1\\\\\\xec\\x98\\xf0\\xc6^7kb@MKf\\xf64pB\\xd0)\\x99\\xf1\\x91]\\xb8\\xc0bґl\\xb0\\x805\\x1a\\xe1K\\xfb\\xd3\\x000\\x10\\xb8\\b\\x9d\\xa0\\xa1Y\\xdeT\\xf5\\xfb\\xcbC\\xbf\\xc5\\xca\\xeeѝg+\\xf0\\x8d[Oc\\xecޒnWz\\x83\\x8b\\x94\\xe5T&\\x10\\x13@\\xd4ق\\x96j\\x9a\\xd7g\\xff\\xa4:p\\xde.\\xd0GD\\xbe0\\xa0)k\\xcf}\\xcf\\xc4\\x0f\\x91\\u007fmq\\x87\\x00\\xc0\\x18\\x99H\\xeaZ J\\nAН\\x1c\\xb4ۉ\\xbf?8a\\x9ai /E\\xe4o\\xa7\\x04\\x98\\x10\\xeaq\\x1c\\xb2\\x97F\\x047 \\xafB\\x8b\\x9c\\xf7U\\x82_\\x04$\\\\\\r\\x88\\xc0\\x8a\\x94\\xe0\\x14\\x06'\\xc55(\\t\\xcc\\xd4L\\xfb\\x9fS켕\\xfc\\b᾿\\xceLn\\xfcq\\xb7Y\\xea\\xb2$\\x91\\r\\x90*>\\xb8\\u007fp\\x886\\xa9\\x01%\\x13\\xc8XC=4\\x1ap7n\\x84f\\xc3\\x14\\xa9\\xbb9\\rBu\\xc9*!\\x12\\tO\\xadOA\\xbe\\xdbD$\\x15\\xc6*\\xfd؆\\x98\\x8cT\\x90\\xa2\\xc3\\x03\\x8dnƓG9\\xdcy\\\\h\\xd8]A\\xa7[\\xf8\\x99[}\\x1c\\xfa\\xd0S\\x12\\x1b\\xf0l?k\\xd5T3\\xf6\\x87\\x1d7t\\xab\\xb0f\\x11\\xdcfj]\\xf7J6>\\x02\\xcd A>d\\x14eİ\\x95\\xaa\\xa4\\xbbG\\xdc\\xecb\\x18ƻ6A\\x9d\\xdao[\\xd2G\\xa7ñ\\x85*\\x8f\\x9f\\xdeO\\xff\\xcd\\xf5f\\x90\\xcdִ\\x87\\x1c\\xd6\\xc1\\xa7\\xd1-\\x8e\\xff\\xb1\\x13\\xa1dO)\\xed\\x1f\\xd1RUju\\xa7\\xe7ހ\\xd5r\\x86\\x88\\xb3\\xa7m\\xc7a\\x82\\b]\\x96;\\x86Ppj\\xf1\\x82\\xd4p\\x82i~\\x1b5\\xcbs\\xdea|\\xa9\\xf2\\x16\\xee\\x98\\xd2LA\\xccf\\x15{h\\xe7\\x12\\x80\\x04,\\xe8L\\x8f\\xf6Nq'-\\n\\tP\\xccFV4\\xbc\\xa2\\xbaF(\\x8d\\xdc\\xd5ˆm\\x82,ܛ\\xa4\\xb6\\n4\\xd2ʚ\\x8a\\xcc\\fu\\xeb0#\\x00\\xa8Sg$\\xd8T\\xa6HO\\xd10\\xf7\\x9e!\\xb3\\xc2p;}[\\x1f\\xaa\\xe5k\\x94y\\x8dh\\xea\\xc8 \\x93\\\\\\xb9U\\x9f\\r3hy\\x01\\xe9\\f\\x1b\\x1doe\\xf7\\x97\\xb94\\x85\\x8cV\\x8c\\x19\\x1c\\x14\\x18e$3\\xc32\\bQ\\xdcC<T\\xd2\\x1a\\x91T\\x05\\v\\xf7\\\"8@e&,\\xba\\x90k\\xae\\xaa\\bd\\xdf0Pı(\\x99\\x9e p\\xc4\\xe3\\x84\\xdb\\xe5\\xfb\\xb3nĮ\\x809\\xea\\x916CIP\\xdeK\\x14\\xbf7\\xf9\\xef<\\x88\\xa49\\xe7\\x95\\xd3\\xc4$o]{f\\xee\\x15\\xac,\\xd8R.jË\\xfe\\xb7\\xa0\\xbe+x:\\xd7+\\x9dX=\\xadu\\xfb$h\\xc3\\xdaHDSv\\x82[\\n96\\xa6r\\x940D\\xc1\\x1e1\\xbf\\x8d\\x1e\\x011\\xd9?\\xb5l\\x96\\xcfO\\x98\\tu\\x16\\xcfL\\xab6\\xba\\xdc\\xe0\\x82X\\x9a\\t\\x02\\xa4l\\xef|^\\x96Mml#K \\xb2\\xceI\\xba\\x90\\xd8'N\\x13I\\v,\\xfe\\x9e\\f\\x8a\\x8a\\x05^ʙ\\x98Q\\xc6\\xe9\\xe6ٍ1\\xd75\\xa8+i=D&ތ\\xa2\\x17\\xeb\\x84=\\xa4\\x8b\\x04\\x18-=\\x8bҏ\\xd36\\x02h\\xa8#\\xa8\\a\\xe02\\xb1{\\x10Q\\x10$\\x84\\xf9e\\x17F\\x94\\x10\\x91\\x990#\\xb2\\xe0ZK\\x92\\xcck\\xc9\\xef\\x19}`\\xaa\\x96\\x89\\t\\xd7\\xd5\\xeeC\\xa6V\\xc1\\xe6 \\xe0\\xf0\\xd1g?\\xc7\\xd1ܣH\\x19\\x90\\xb5\\x9b\\x85\\x127\\xf9P \\xc4ج\\x11\\xe1\\xd7<\\x835z\\x91\\x19\\xee\\xc1\\x8f-\\x86O6\\x9a\\x9c\\x00E\\x11qE}.qsSK\\xf9\\x907\\xdf\\nĞe[2\\x94\\xd3:\\x13\\xee\\xa4D\\xecl\\v\\xa2\\x1f\\t\\bJ\\x9c\\xe4\\xe8J\\x8d4NY\\vF,Rm\\x02\\x01\\x03@\\xe7G\\xa2\\xbb\\xc4l\\xca\\xeb\\xed\\u07b6\\xcc\\xe4\\xf3\\xecp*\\xcdB]\\x1b)N\\x8f|\\xc8%\\xee\\x03\\xb10\\xac\\xf6\\xcb7o\\xce@B\\xabE\\x17N\\xad=1\\x99\\x16L*'+\\xff\\xe8%(T\\x83\\xfb\\x1e\\xe8Ǹ\\x82:\\n\\x19\\xe5\\b\\x11t \\xa8\\xf6Qi\\xb3V\\xa2I\\xd0=\\x94\\x99k\\x8a\\xb5\\x8e\\xf4!i\\x11\\xb5$i\\bn\\xd1\\xfb\\x12\\r\\xac\\xf6%8\\f\\x19\\xa7\\xb3\\x93\\xc7\\xd0R[\\xc1\\xcc$\\x96\\xf7\\x8c\\x05\\xaa>PflZ\\x88\\xe8)%5\\x01\\xdep\\xec\\x1c)`\\tl\\xab\\xeb\\xe9\\xc2`\\x9e\\xa3\\x86\\xd6\\xd0VS\\x9bQ[ \\xb0&\\xba\\xff\\x94\\x863\\bd\\xf3\\xc8\\x13E\\x00\\x9a\\xf7\\xb1\\xdc͐\\xaaR\\v\\x04Uթ\\xd5\\xcf\\x00\\xe0\\xb1\\xe4\\xc3^\\t\\x18O\\xaf\\xc8@\\\\?\\xef\\xa5k\\x81\\x15\\x18\\xebLh2\\x05\\x9b\\x9e\\xbe\\x0e\\x82\\x14\\xb9~\\xea\\n\\xb4\\x1d\\x11kS\\x85\\n\\xb5\\x12\\xd6\\x15\\x9d0\\x11\\x01,\\xc9\\x14f\\x81\\xf4\\x91\\a\\x949\\xc7\\x1b\\xd7l\\x16G\\x18\\x89\\x90\\x9e\\x1d\\x89D\\x1e\\xb8\\xd6z\\x99ˈp\\xd5\\xcdI\\x1a\\x98\\xe2\\x12K\\xa2\\x15\\xd6E\\xe13\\x85\\xb3\\xad\\x18s\\x8d\\vo\\xde\\x17\\x02\\x94\\xcc}H\\xfd8\\xe3\\x02\\x10,aFY\\x88&\\xabת\\xa45GD(0o\\xa0\\n\\xfc\\xccE\\xa4\\fq3\\x1f+\\xab\\x84\\xadf\\xa5]\\xa8 (\\x0e\\x93\\x1d\\xdd9A\\x817\\x00\\x01\\x10\\\"\\x91\\x1e\\xd4\\\\\\x99\\xe5\\x12\\xb9T)\\xfa\\x8e\\xc0\\x8a\\xad\\x1a\\xe2\\x04\\U00060b15p*\\xfe\\xbf#\\x02\\xffZG\\xaa\\xa4\\x96u\\xec\\v\\xc0\\xfc\\xc86\\xe4\\xfd\\x042\\xc0R\\xd86\\x15\\x1d\\x95ȳD21\\x9d\\xb6\\xaf3\\x85(\\x1c\\x91\\x15\\xc2\\xc1\\x1d\\x18\\x17\\x84\\x13\\x12\\xea\\x1c\\x86\\xbe\\x92v\\x978F\\f9s\\x87p\\\\An\\x85\\xcaA\\xf6\\x89\\xb8K\\x02\\xad=\\xe9\\x1b\\xd1p\\xa8S\\xa8mtU()މ\\x90Y\\xcd\\x17\\x8c\\x1c\\xda\\x10i\\x15YWq\\xfc\\xc5\\xda\\xe6\\xe6\\x1c\\x80ʑO|\\xe04\\xa3D䒱\\xfc\\x01s\\\"̝H{\\xd5\\r\\xb8\\x17Q\\\"\\x94!Go\\t\\x10\\v\\x1ed\\x1d\\xa7\\a1\\xfe\\xaf,Оr8D\\xb0(IA\\x01x\\x802\\xb3U蝒\\x11\\x17R\\x98_\\xe5\\x17\\x12\\x11T\\x1c\\t+4\\x15a\\n\\xb8\\xe2\\x14\\x15\\b)\\v*I1\\xa6D4\\x05\\xc2n\\xbc^ʐ\\x18\\x9e\\xf2\\x02n\\x10\\xea*\\x94\\b03Ъ`\\xd1\\u007ffw \\xc0%\\x8el \\xc3\\xcbS\\xa2\\x96\\xe0\\xba\\x11\\xa5\\xc7\\x01eՎI\\x1e\\xd0C\\xb1*\\xf8cDj\\x0f\\x80GC\\xc8Y\\xb4Bo\\x90U\\xf3\\xccхQ\\x94\\xab\\xae\\xaa\\xdd'Y>5j\\x88C\\x97\\xabG\\xc7\\x18vs\\x86XY)\\x94,\\x1a\\x1c\\xc1\\xac\\xa0\\x80\\xbc\\xe0!\\xd4LC~:\\x8e9ř\\xc0\\xae\\x02+\\xdf\\xe7\\xa8\\xd7\\xc1\\xb0\\xdc#\\xd3\\xcdZV *Y\\x98Nߩr\\xc2\\x18\\x9eʁHF\\f\\xd3\\x01\\x9a\\x1f\\x1e9!\\xb6\\vhUl\\xb3)踏kg\\xb3.Q2\\x96n\\xa6\\xfao\\x06\\xc6\\xf2\\v\\xa5\\x9f-\\xec\\x11W\\xa8L&\\x00\\x81\\xf3\\x1d\\xae\\x15\\xfcQ\\xeebh\\r\\xe9d\\x9cx\\xcaϿ,\\xa1>\\x03\\\\s\\xbe0\\xd7?\\xf4>\\x14\\u007f\\xcc\\x14\\xcf6\\xd3H\\x13\\xb5\\x9d\\xec\\xe8\\x1bw\\xed*\\x8b\\xab+n\\x1c\\xea̎\\xc0M,\\x98\\x108DT|(\\x80\\xd0z\\x9fF\\xd00\\x94\\xf9\\xa4\\xc1-\\xf2\\xf5\\xb2\\xe6\\xa5ݥ\\x04\\xa2\\xfd\\xb0|\\xd0r\\x8cg\\x8b,#7\\xe9H\\xd3\\xee\\xcf\\xe4\\xd7A\\xdb\\xce_\\xa1D\\xbc<\\x03\\xfaO2\\xc4\\xcbʘX\\x05\\xf3\\xee\\xfcE\\xff\\xf4\\x03Q\\x10\\xaeD\\xebţ\\xec\\xea\\x84\\x02Ab\\x05L6\\x01d\\x83\\xeeB\\xda\\x1c\\\"\\xa6\\u05ca\\x9dގ\\xe5\\x13\\xd6P\\xd5]\\xbd|\\xa3\\x02\\v\\x15K\\r\\xa8\\x12ʰ\\xc62%\\xee:\\xcb\\x01\\x97n\\xcd\\xccMŀX\\x8a\\x99\\x9a3\\xf5jA\\xda\\\"1\\x98\\x14\\x1e#\\xce1(\\xfb\\x1b\\xa6&CMRÁ\\xf6jB\\f\\xf9WbTg\\xe2\\x8a\\x18\\x9a\\xd6P\\xb0\\xab\\xda.\\f\\x89\\xee\\xfa,\\x1c\\x8491\\xa9\\x1c4\\x9a\\xd7$5x\\x92\\xb9%\\xc4cO\\xa1R\\x83\\a\\a\\xeb/\\xb5\\x153\\xa9\\xdc$D\\x0e`|P\\xc3\\xfaC\\x01\\v\\x8c\\x98\\xe4\\xb2\\x01\\x85\\x91\\xaad\\x97N\\x16\\xe0)\\xa6!\\xc0\\xf5i\\x19\\x80\\xe5\\x86<-m\\x06\\x1cښu\\x88`M\\xa0n\\xcb\\xfc\\xc3\\xfa\\xc5\\xe8t\\xe8\\xe4\\x15\\x1axo0$\\x01i\\xbfOp\\x06\\xa9\\xd80\\x9c8\\x11Eh\\r\\xad\\xb5\\xa6\\x12\\xfc\\x89\\x95v\\n\\v*i\\x0f]\\xe9\\x11˳l\\xa3\\x899\\x92\\xecQ\\xcd\\xc0\\x83Ju\\x15?$t\\xda\\x12 \\xe4(#9\\xb2a1\\xb6v\\xf2\\u0087!\\n\\x8e\\x05\\xab\\x19\\xb3+\\xf3\\x00\\x93\\xb0&Z|\\x81\\xa8\\x03(\\x12A\\xde\\xc6O\\xac\\xed\\x12=!\\xaf\\xdb9\\xceB\\xb2\\xef`\\x802wE\\x13gnd/\\x92N\\x1d3\\x86\\x89G\\x18ɒ\\xf2\\xf8\\tUn+\\xed\\xb1n\\xb1\\xa6\\xe5&\\x89%\\u007f\\xbc\\x95\\u007f\\xb1牗\\xf8B\\x12\\x9c@\\x81\\xf5\\xd8\\xe5\\xae`\\xf4\\x9e\\xcbn\\f\\xbd\\xe3\\xf6\\x91\\xaa\\x11\\x85㵲g\\xef;\\xfd\\x92\\xfb\\xe7\\xef\\xd64\\xae\\x9d\\xa1\\xb2\\xeeة\\x85\\xcab\\x00\\xb1\\xa0\\x1f(\\x8ax\\xd1ʙ\\xf9\\xacu\\xb8\\xe2\\xe1\\xdc \\xfc<\\xbe\\xbb\\\"\\xce%Ss\\x00\\xa5\\x9a}\\xdc\\xdc9}Syn\\xbe\\x00\\xcd\\x1am0\\xcc)&\\x94]\\xbaiڑ\\x14=_\\x1aV\\xcdG\\x00\\xaa\\xe1\\xae\\xc5\\v\\xbc\\xea+\\x16\\x9c\\x8d\\xaa\\x184`\\\"+\\x91\\xdf\\xc3\\x1e$\\x91Va>(\\xa8\\xde\\xd1\\xd7\\xee\\xaf\\x11iP\\xe0/\\x8d\\x8f\\r\\xd99ǲg\\xb5\\xa8\\xda\\xd9Dg\\xed\\xcc4\\xd6\\xdbW*\\x87\\xb3\\xf6\\xc6\\xfc$]\\x01\\a\\xb2Jx\\xa1\\xf4F\\xe5t\\x864\\xdbnK\\xdb7̽\\xad\\xbd\\xed\\xf7gF=1\\xe2\\x80\\xf5'n\\xdf\\x1e\\xa2\\xacۋ\\r\\xa4\\xcd'U\\xd5p9HQ\\xfb\\xdd\\xdf\\xdf\\xca\\xdb\\x18\\xf7gX\\t흺7ȒJ\\xaa\\xf5-b\\xdb\\xe9\\x1bQ\\x95\\xe2\\xbb\\x01\\x8d$\\x9f\\xb4,<\\x9c\\\\\\xf6F\\x8b\\xbdz\\\\_)Ŀ_\\xee\\xde$\\vDJ\\xa7҃o\\xf4K\\x99כ\\xf4\\xb3.\\x8b\\xf3QY\\x883@\\x88e\\xf9r\\xa2UZ\\xf1\\x8a\\x14\\\\\\\"\\x1a\\xcd\\xe2s\\x0fV\\xbaF\\x92u\\xa3i\\xee\\xe1\\xbb}\\xef\\x1fc\\x8a\\x95X\\x1c\\xf18\\xd3;\\xd5α\\x06m\\x95zh+\\x9d\\xfcןP\\\\\\x1cL\\xa69\\xe6\\xa6\\xc4\\x13מ\\x8a\\n\\x11\\xbb\\xaaȚA\\x83:\\xe7\\xf9i\\xac\\x06\\xf814&\\x13\\xfa)\\x82\\x19r\\x8c@kQ\\xc8\\xdc\\x15mL\\xb3,B\\x96tD\\x8e\\xe1\\xcf˷zE\\xff\\x1f8\\xb6\\xc8G\\xaa?I\\xf5\\xd4I\\xadӈ\\xe8#\\xa9\\xbf\\x95,\\x1d\\\\PG\\xd4Q퀠\\x83\\x03\\xb3\\x04\\x03Z\\x850\\xfc\\x06gš\\xa5Y\\xb8A\\x91\\xef\\u007f\\xe3\\xc3\\xf5HO\\x8e\\x92\\xc5\\xec\\xd9\\x188\\xf7}P\\xfbx\\xf8\\xfd}\\x02t:n\\x1f\\xb7\\xa1\\x99\\xc4\\xc0N? \\xa82hW\\x11\\x98\\x9a\\x06V\\x1d\\a\\xc1}\\xa4:\\xc7p\\x1ey\\xcc\\x01d\\x13\\x98\\xb0\\x11\\xea\\xc4\\xd7h\\xc2s\\xf1\\x94c͚t!\\x8b\\u0098\\xeb\\x8c!hN~\\xe5\\xbd?\\xc5ؠ \\x1cG\\xf0\\x84\\x87a\\x93\\xe6\\xd9\\xf2\\xa3\\x8b\\xf7\\x1e\\xbc\\xdd\\xdd\\xd39\\x94\\xe8\\x83T0\\x15\\xd6\\x1f\\xbf{↙\\xcf;\\xb8B\\xf5o@\\xe2\\xa7߹\\xb7\\xed\\xf9g\\xf3T\\xca[Ch>\\xbd\\xfd\\xfa\\xe4\\xddՆ\\xe4L\\x03\\xe9\\x9d\\xc4\\xc5\\xefp\\x15y\\xfc<\\xf2K\\x1c\\t\\x10\\x98Uw1WEP\\v\\xe4\\x938\\xaa\\xe1\\x1e\\x14r\\x96kbr\\x15/\\xc7WÜ\\x84ǪW\\xe4<n{\\f_\\xe3\\xb1\\ti\\x861\\x04.\\xa0\\x1a\\xbb\\x9bҝRB\\x19\\x16`\\x89\\xec\\x15\\x8c\\xa1_J:\\u0090\\t\\xb0\\x18a\\xf0\\xab\\x9bF\\xe9;S\\x17q\\xbfg\\xf9\\x1bڞ\\xff\\xf9\\x03\\x047\\xbe\\x05\\x00\\xbf\\xcb\\xd9\\x19Ȗ\\x95\\xa8\\xfd\\xe8\\x8f2^\\xc1\\xdf\\xf2\\xc2\\xe3+oo!Y\\rܽ\\xe7\\x82{\\f\\xd3S@2\\x8e?\\xbaDce\\xf4\\xe1y\\xbe\\x17\\xa3\\t\\x01\\xd9\\xfa\\xa7_mI\\xf6>p䐤7\\xeb\\xfb\\x13 5̀\\x1cW\\xb0)\\br^\\xf3K\\x17\\xf7\\xbc7\\xe8M\\x05_u\\xf4&\\xf4\\xfcRmoH,\\xfc\\xa2\\xe0\\xa1\\xf0\\xc2ŋ\\xaa\\xb93\\xc4\\xc1}\\x99\\xc98\\xf7\\x1a(K\\xfc2\\x01e5\\x95\\x8c=}\\x87wRh\\xdc\\xd7\\x15\\x94\\xf9\\tI\\x1dS\\xf3\\v\\x82\\xfc\\xf1\\xe2\\xdew]>\\xf9\\xed\\x97\\x19\\r3\\xc2p\\x98\\x92OQ\\xa9\\x1d^\\xfb\\x8a\\xcf\\xf5\\xedC\\x90\\xb1û\\xfa\\xca:\\xe9\\xa2\\u007f\\x12P!^m\\xbe/\\xe1\\xe4\\xeaj\\x9ed\\xed\\\\\\x82\\x9b\\xe1\\xefQh\\x8c\\xa5o5\\xdf.\\xadIN\\x9b\\x1b\\xf8v5n\\x94a\\x02}x\\xa6\\x8a2,\\x87\\xb3\\xc5e\\xb3\\xee\\x1cFC\\xd8\\xee\\x1a9\\x84\\xb7\\xd2cC\\xf4\\x12i\\xec\\xc1\\xdeS\\x83$\\xa6\\tT\\xbd\\xdc\\xdaz\\x86>\\xfa\\\\a\\xbb\\xefR\\xa0'|뷾\\xbc\\xe6a\\xef\\x16\\xc2\\xfak\\xea\\xb2\\xf9\\xf2\\xf5\\xf5\\xf1'\\x11A\\x8dV\\\\\\xe9\\xfeX2\\x8dwj\\xeaI/\\x82\\x9b\\xef+\\xe5\\xbd=\\xdd1\\xab\\xbb_XJ\\xf1bk\\xb1P\\xea\\xacV\\x17c\\x9d\\xf4\\xd4\\x1f\\f\\xabo\\xdd`J\\xee)\\x88\\xa2\\xae\\xbcC5\\x00\\x99x\\x17\\x9bF\\x13\\xb1s\\xb9,\\xd3~/e\\xed;G\\xda\\v\\x1a+\\xed\\xf2U8\\xb141\\x86 \\xb9%\\xad*\\x91\\xd5<v+\\x9bYvI\\xf0J\\x9d\\x92\\xd6\\xde\\xc6d\\xaa\\x8dpœ\\x11آX\\x15;\\x8d{'\\x038\\xbf\\x15\\xdf=\\xf8ʷ\\xde>\\xb8\\x03՜\\xb6\\xff:\\xccc\\xab\\xb6\\x9a\\x18wD\\xbd\\xe2\\n\\x82N\\xe5\\x10H\\xf2:K!\\xc2F\\x19āP\\xe0A\\xaa\\xf0#\\xa4\\ri\\x97O\\x04\\xbd\\xa1\\xee@ٞb\\x8b\\x80`\\xa7\\xd5m\\xf7\\xe9(7\\nv\\x94\\x99`\\xeeƆ\\x94F\\xac\\\"%\\xa9I\\x94(t\\xccT\\xd8у\\x04M@\\x1f\\x8ek\\xfd\\x17\\x11\\xbc\\xb0mc\\xbe\\x91#\\x92\\xcf\\xef\\x04\\xbc\\xc8\\xe9c\\x04\\xbf\\x9bl\\\\߾y\\xb4{~\\xbc\\x1f\\xe8\\x1d\\x96\\x8f\\a\\xe5\\xba@֡9^6[\\xe9E\\x90-ry\\x0e\\xe6\\t[mx)\\xd9cD$\\x1eNf\\x8d\\b\\xe1\\x92:\\xcbh\\x88\\x143yh\\x18k\\xef\\xd9;\\x92'\\x80\\x01\\xf1\\x91/\\x10<o\\x1eϑ\\x94\\x93Jy\\xaf\\xfc،\\f%b\\x8d\\xccr\\xc3s\\xa4\\x86\\xbfn\\tٵߎzv\\xbbim\\xe2\\xe2YT\\x94\\xf4\\xa3o]\\xbe\\x1f\\x8a\\xd5{\\xa7GD\\xbf\\xc5[^R-N\\bb\\x9b\\xc7\\xe7\\x8f'\\xf4)^Y5a \\xaf\\x87\\xecs\\x95\\xc1\\xb8䔆5\\xe3\\xb9I\\xb4\\xea\\xfb\\xe7\\xa3G\\xa27\\xd9:\\xd5?\\x96SR\\xaf\\x94|m\\xf9\\x0e\\x01b\\xbf'-\\xde\\x1c\\x16\\v\\x9d\\xb8{<zԗ\\xe6\\xe6G\\xef{\\x1b\\xe9˗\\x99\\x1dz\\xd3m=:\\x1c\\x99\\x1c\\xb0\\x9f>\\xc0(I\\xe0\\x9e\\xac\\x95\\xaai\\x9c\\xb4\\xed\\xaa\\xff\\xde\\xe57\\xd0\\xd1f\\xa2\\xa8\\x8c\\x02I\\xfe\\xfe\\x9d\\xd3/o\\a?}\\xe6\\xc9\\x01\\xf4\\xaf\\x9cn\\xae\\xca\\xf2p\\xfb\\xf0[\\xf3\\xf1Щ\\xad+\\xbc܆o\\xdfy?\\xdf\\xee=\\x1a<\\xbd\\x93pW\\xa9\\\"\\xaf{\\v\\xe9\\xa7\\x13M\\rW\\xcd\\xe6f]9yP\\xb6ϛ\\xa5[\\x16\\x05t\\xb0\\u007f%\\x1d\\xf9\\xe7\\x82y\\u07b9]\\x1d\\xec\\\\<\\x9d\\xaap\\xe7\\xa7\\xe9SvG\\x86\\xa5\\x99\\xf4\\xbe\\x84\\xfb\\xbdh\\x83A\\xf0G\\xc1\\xa0u\\xe1\\xad:\\x17\\xedoESn\\xf6\\xa4j\\x963`\\x04\\xcbq\\x8as2\\xafW,u+\\x0fNk/\\v\\xec_\\xbd}K\\xa4\\xa3\\b?\\rX\\xceG\\xa9]\\x10\\x0f\\x00\\\\ww7+\\x8f,\\xca\\xe8\\x9ax۶\\xcc\\x036v\\xa0\\xbb\\x1e\\x00\\xc9\\xc7s)\\x03\\xdbS\\xcce)\\xa4\\x15\\x88\\x03#U\\xea\\xbb\\x17L\\x96\\x900\\xd7Q\\xbd\\x80\\\"\\xed\\xa6\\x1a\\xaf\\rA\\x95\\x88)\\x93~\\xb7\\x01\\xc9Vw\\x82.\\x91\\x95\\x1b\\x8b\\xa4d\\vg\\xb0Q\\xee\\xe4y\\x91\\x89\\x84\\xa7\\x84n'\\bÞ\\xedL\\x9c\\xdd<h|Ԍia\\x8d\\xc4izP\\xa9\\x16\\xaf\\xeb\\t\\xb7G\\x1b\\x13e\\xb19<\\xe7T\\x8fzc\\x96\\xaa\\xa5\\xc5\\x1ex\\xda\\xef\\xd8_\\xff\\xc1\\x1e|\\xfcUt\\xfe'\\xac\\x8d\\x83\\x9d˞\\x11\\x97\\xb5\\\\|\\x8f\\x11\\xbf\\xfc\\x01q\\xb02\\xf3\\x96\\x9f*\\xc9\\xc5\\xe2J:E\\x9f4}\\xc1]\\xf8\\xed\\x9f\\fň\\xb5\\x8f5\\u007f6)\\xff\\xa4RJ\\xae\\xc6ǟ\\x8f(#\\xccЕ\\xf95\\xc2\\xec\\xbd\\xcas\\xbd7\\xd1\\xfap\\xa7:\\t!\\xa9\\x1f_[E\\xb0\\a\\x9b\\x9e\\xd33svl\\x16ĳ\\x81\\n\\x96\\x96\\xe3La?\\x9f^\\x1e\\x193\\xc9\\vsg.n\\x10\\x94\\xd5\\xcd\\xf8\\xb3\\x97\\x95\\x85\\x84\\x03d̚ \\xe3Be\\xe1Ή\\xc5\\xd3\\x13^\\x85\\x176\\xcfa\\xe4\\x8f\\xef\\x14DQ\\xc9\\xc94\\u0557\\xa8D\\x96u6lb\\xe5\\x01m\\xa6v<o\\t\\xa3\\x9f^wn\\xb9j5B\\x89f\\xcb\\xda\\xe9\\x15\\x16z=G\\\"\\xdaպl\\xbe\\aQX\\x9cFz)\\xf2~\\x9fz\\xaf\\x1f;\\xd8G\\xbf\\xe2guDA/Я,\\xa2w\\xa5\\x8b\\xe4%\\xf5_ե\\x14\\xbc\\xb2\\xdaw8\\xbd\\\\\\x81\\xa9\\xb1\\xac\\xceݝ\\xf7d\\x04\\x8e\\x89\\xa9\\xfc\\x162P;\\xfd\\x00]\\xec!\\x1e/7&A˃ԇEA\\xfbv\\xfaSF[p\\x9b\\x82\\x96\\x00\\xdb1__\\x8e\\\\P=?Cu\\x8e\\xd4|\\xb7X\\x8e\\xcc3\\xd9\\xd0:\\xd7X)\\x91\\x03\\xd5O'ԃH\\x92\\xf1}w\\x12\\x81\\xc6Uvx_#=l\\x87@\\xb1\\xa55\\xa3Ǜ\\x03a\\xd57\\x80\\xb6\\x83\\xd5\\x15p\\xdfC\\xb5]\\xdc\\xc3/u5\\xff\\x8ebO\\t\\xab\\x92$\\x1e7t\\x92\\xb8\\xc2x\\xf8\\xfb:\\rvv\\xe6f\\xbf\\x15eI\\x95\\x99\\xedl\\x1b\\xa1j\\xf9\\x95j\\xf5\\x14\\x1es\\xb17\\xec\\xe6\\xd88.\\x98\\x16\\x8b]W4\\x89\\xa9\\xc6\\xfeV(آ3@\\x14\\x14\\xb4\\xedzYG\\xa8\\x88T\\xa1\\x9b\\xae$\\b\\x9dN\\x98\\x1af\\xb5\\x83Ί\\xb8\\x1e?y=\\x1b\\xef\\x1e\\x9f\\x9c<\\xecu\\x9f_9\\xf2\\xd2Fz\\xf7\\xdd\\xd4\\xca\\xef\\x81b*\\x1c\\xbf\\x18\\x1a$\\xef\\x1f\\xff\\\\\\x16\\b\\x96\\x16i\\b\\xad\\xcc3j\\nL\\xfc\\xc4 q|\\x98\\xb0N*\\xa5\\xdd\\u009e\\x84\\xb5\\xe99I\\xf1\\x06R$Y\\xed3\\xeb\\u007f\\x1a\\x94>\\xfe\\t\\xecRp\\x19\\xe1\\xae\\x03\\x14\\x11\\xa1-vt\\xcb~\\x91>(x\\x19`\\xe0z\\xb0\\xa9\\xc4\\xe4r\\xc4\\xf46\\x92\\x90`\\xca\\xc7ɓ\\xc8&\\x86\\xc2\\xec\\xb6\\t\\x10\\xeb%\\x16\\x84<#\\x88D\\n\\x88X\\xee\\x9f\\x1cv\\xff\\x93xm\\x011\\x034\\xc1\\xca\\xf3Y\\\" \\xf9t\\xceT\\xc3\\xc2\\xcd\\xe0C\\x97\\t\\xe6\\xfd&P\\x14a\\x81\\x05eG\\xce\\r\\x86\\x1f\\xe4\\x9eQ\\x8a\\xd6\\xcc2\\xfe\\xe1;I\\xc9\\xf2\\xa8\\x1aU\\t\\x1ePQ\\xff\\x1bKq\\n>N-i\\x14A\\xb5ַ\\x91\\xf0)\\xe9\\xfd\\xa0\\ayE\\xbfB1\\xe6\\xe7\\xd7\\x12\\xd6,\\xdb\\x031p(\\x87iR\\xb9\\xa6\\xa9\\x10\\xe6\\x1f\\xc3\\xe3\\xb8\\b\\xe3Bɥ֬\\x10\\xc5z\\xc3\\xe2\\x8fPVv\\x15g\\x13\\xe5\\x82\\xea\\an\\xdf\\x1f\\xecN\\x82\\x9a\\xeb\\xa8\\x04\\x89\\xde@\\x8ee\\x9dG{_\\x94\\xda\\x03\\x03\\xb6\\x1efm\\x14\\xd2\\\"\\x142\\xbd\\xe7K\\xaf\\n\\x883\\x98=\\xbb\\x13\\xcf\\xea\\\"\\xca=\\xc5\\xc7sܕD\\xcb{\\xfdgSԈ\\xb5]>\\xa7\\x1b\\x8au\\xad\\x85j\\xe7\\xa8\\xff\\x93\\x1b\\x16b\\x1c\\xdf/\\vf\\x95\\xfc\\xfdZ\\xe7\\x97\\x00F\\xaat\\x94\\x06\\x9d\\x93uT\\xdd\\\\\\xdcԄ\\xb4\\xa5dk\\\\\\xed\\xf4\\xb9\\x85\\xf1\\xee\\xf7\\xd4\\xcb\\xf6jlR\\x9a\\xd3|\\xf9\\x98\\xc0\\xa7\\b\\xde\\xfer`q\\xc2\\xf1\\x91\\x83\\xea\\xf1IC\\xd2Ċ\\xee\\xee\\x16\\x9b4\\xc0\\xfa~\\x87|8\\xbf+9a\\u007f\\xe9\\aNX\\xcb\\xfd\\x8a \\xde~\\xa4\\x04:\\xfa\\\"\\xad\\x91\\x91\\xcfs\\x1b\\xbb/\\x8e\\xcc\\xf3խ\\x8dν\\xc1\\xfb\\x8d\\xfe\\x98\\xbb\\xa0#\\x1a9\\x12\\xf5\\xfe:\\x82\\xe3^5#\\x1a\\xd1\\xcdT\\xc1\\u0382a+\\xe2\\x86\\u007fá\\xbb\\xf5\\xe4\\xf8\\x99,r=\\\"\\xb3\\xbc\\x88\\x13\\xfe\\xd5#\\xa5\\x19j\\r\\xe5\\xbe\\x18u\\xa1\\x8e\\xab\\xd1\\x1dv\\x96ʈ6\\xcb\\x1d\\x86\\xcdy&\\xf4\\xa4\\x19\\xceo\\xdf\\x1f\\xb4\\xb0v\\x8e\\x00v\\xb5\\xbcW02Gf\\xa7\\xaa\\xd8;\\xba<ٶ\\xed\\xb4\\xba\\xb3\\x18\\xf2Ep\\x9f\\x89\\x1d+\\xe5\\xf6\\xee\\xae~\\b\\xd8\\v\\x0e \\x1f)s\\xb1\\x96\\xc0\\xc2de\\xd9_\\x8e\\\"\\\"\\x8e2o\\xecKo&\\xebGbem\\x1a\\xc6^\\f\\x81C\\xcfHC\\xa1J!;\\xe2F\\x99\\x18\\xf96\\xaaX\\xc4\\\"t\\xa5o\\x9a\\xa6\\x8b\\x1ad\\xcdRK\\xa26\\x1c\\xea_\\x8c\\xd1\\xfd\\x9a\\xf6\\xee|-ב\\xb2\\x18\\x9bU%'\\x18:\\xec+\\x84\\r\\xaf\\xa8\\x8c\\xf7\\x80\\xacd\\xbfh\\xb5\\x806Z\\xe0:\\x81p\\xb9\\x03X\\xe3\\xc3\\fb\\xdf\\r\\xd9N\\x1d\\xb8@\\xa0\\xdfA\\xdc{\\x17\\xb1\\x18\\x85%S\\x8d\\x03\\x1f\\xb5))q*\\xdb\\x14\\\\V\\aM\\x1d\\x83h\\x94\\xa8&WGk,\\xbc\\x9c\\x90\\xea\\x17\\x84Nk\\xfb\\x8d\\x9bgǈ1|\\x19)]|~{\\bbc\\xf6\\xcbWJ\\xb4\\xffa\\x11\\xe9hM3\\x1e*\\vɛۣ̈\\x9f\\xac[k\\xff\\x99\\xb4A;\\x8d\\x91\\xb3L\\xe6ȱ0#\\xdf.\\xc0\\x04\\xd4d\\x96\\xa6\\x92\\x01~\\\\\\xe6\\t\\xbdw\\b>\\xed|\\xc6=\\x02\\xfc|H\\x80ľ\\x02\\xe0>ͭ\\xbeӰ\\xbfy{\\xb1\\xf9/o\\xd8\\x00\\x16\\x05b~\\x02\\x04\\xd6䍱\\xcc?N\\xc3Mڱ@wz\\xab\\x16\\xdb\\x1e=\\x14\\xd5F\\xa7\\xb6:|\\xaa\\xe3\\x9dW\\xcd'\\x1dU)-\\x13B\\x97\\\"h\\x13\\x82\\x02\\x86\\xb4\\x89\\xbaM\\x03\\x1bH\\xe5\\x03rQ\\xab\\x91\\x0e\\x9b\\x90=\\x88\\xb6\\tM\\x92\\x88\\xb9x\\fW\\xff\\x19\\xbb\\x8b\\x19\\xc0\\xc2\\xe2m:\\xf6\\xafW\\xc2|\\x14\\x1e_l!\\x99\\xc6,c\\xaf9|\\xeb\\xb0\\x1b\\x93\\xf7.Yg\\xd0vٓ\\x82\\x01K\\x1d^\\x83f9\\xadf\\x82\\x12\\x02G@\\u007f\\xf7Q\\x1b`\\t\\x19\\x02Y\\xe9s\\x19\\x02\\r\\xf5\\xb4d;$мj\\xbbM\\xa5v\\xfdF\\xff\\x925\\x9c<>M\\x16\\xea\\xfc*\\xd6\\x0f\\xdb\\xff\\x06}ߢ\\xff*\\xc7;\\x17\\xba\\xf3\\xe8&\\x94\\xad](o\\xabo\\x1d?a\\xbb\\a\\x91\\xab|ȳ\\rkS,\\xb5\\xaf\\xe5~\\xd1\\x0eVg-c\\x1ed柽\\xf7}\\x97\\xfa\\\\w\\x97ķ\\x84:\\xe5\\x02Q{\\xbe\\x035e&\\x9d\\xd0t\\xb5\\xf9\\xe3m\\xc8y\\xbd\\xf8ڧZ.+\\xd4\\a\\x9f\\xff 08-\\xd8\\xc3\\xe9\\x83\\x06\\x91\\xaf\\xb6o~\\b!\\xca\\xe2\\xe7\\xe6!\\n\\xdf\\xe5\\\"\\x9c2\\xde502:r~\\xdf\\x1b\\xbf8\\xb8s\\x19\\xd9C\\xee8\\xfa\\x1f\\xbc\\xb4\\x1dz\\xd3t\\v\\xfe,.\\x15\\x95\\x8aSE\\x91\\xf8f\\xae\\xfd?\\n\\x97\\x83\\xac\\x81\\xe2\\xf5\\xb7L\\x95\\xbc\\xff9\\xa4\\xbf#\\xae\\xa4r\\x90\\xc1O\\xc4\\xe7\\xedpXj\\xa09?\\xdbb\\xc9\\xce6\\a\\x86\\xa7\\xc2\\xdb\\t@\\xc5\\xc16ڵ\\xbb\\x1e\\x85\\xab@)R\\xf8x\\v\\xe9߄\\x16\\x9av\\xc6f6\\xfbc\\xf7|{\\xf9\\xe4&\\xad\\x97V\\xb5\\xa6\\xcf>\\xaf\\t\\xb2\\xb1\\u007f[\\xa2\\xa5\\xadcQ<!\\x82#2\\x1fE\\xfcw\\xfd\\x1d\\x98\\x1cb\\xf6$S\\xec?\\b\\xc8.:\\x81\\x85\\x06\\xd1%\\x950\\x9dN\\x83\\xb5\\xe9R\\x1a\\xad\\xfe\\xf7\\x14\\x00\\x14\\x04@b\\x1ax\\xd9\\x1d\\x89\\u05f9\\x97G\\xa76\\xea\\xac\\xe9Ѿ#\\x94\\x8aŲ\\xe8\\xa5\\x03x\\U000f599cL\\x1e\\\"\\xbb\\xe3C\\x90\\xe0u~]\\xf0g\\x17\\x92\\xd7E/\\xdf\\xc7\\x01Ov1\\xaf\\xdf\\xcf\\x03\\xdf\\x1ff\\xb7NK'?\\x94A]6\\xa7\\x93\\xfb\\xa7e\\x97\\r\\f\\\\b\\x19X\\xadF\\xa1mh2\\xba S\\fz$1\\xb4\\xa0\\xd9\\xf9\\x04ǖ\\xb6\\x9b\\x1b#\\x8d\\xb5fgvW,\\xb7\\xbe\\a\\x03\\x91L1\\xd9\\xd1\\x18\\xae\\xb8-`\\xec}x\\xf8Ɛ\\xe0\\xf4\\xbe׆;&~b\\xd7\\xf3\\xc3\\xe5\\x12\\xc1m\\x96p\\xb2\\xe1\\xbcb\\xd8\\xf4\\xef@\\xa6w\\xbe\\x8d\\x1dQt\\xd5-04\\xb2\\x91\\x9d\\x9fO\\xb2@\\x98\\x9e\\xfa8nN\\x97\\xb3\\xbc\\u007f\\xbaW:M\\x9a\\xb8\\xad\\xa4}4\\xb1\\x04BHT0]\\xa3\\xa1K[L\\x87T.\\x93H\\xa2\\xc1\\a\\xb7\\x18}B\\x95\\xb9)[\\xd3\\xff\\xc9\\xfa\\xc5\\b\\x8cN7\\x84\\xa7\\xd9\\r\\xf1\\xa9i\\x11\\xc2}\\x19\\x85h\\xb0\\\"\\x88\\x94-\\xf5\\n\\xd3k|\\xe7{KLa,F\\xa6\\x8a\\xb73\\x93 \\xe6\\xbd&h\\x83|\\x14\\x0e\\xc3F2 \\xe0,5E'X\\xf9\\xa9\\x13\\x13\\xd3h\\x80#\\xb5;q\\xa8o\\xce\\xd4?\\xb3~\\xd1\\x15\\xf3\\xc4\\x16ex\\xaa\\xcd\\x10\\x97\\x9a\\x1a!؛Y\\x88\\x81\\x14$\\xc5\\xff2\\x12\\xaf\\xcbj\\x9fy\\xdeb\\x93\\x17\\x9b\\x9e\\xa1⯨\\xc4't\\xaf|3\\x89\\x89!rY\\x10d>e\\xaa%2`\\xd43\\xf6\\x8b')&\\x96\\xe8\\xe3\\xd6h\\xf2\\xb2x\\xe38\\xb9\\xd2`߃|\\xda6\\x92\\xc2\\xd7\\xf2\\xb9?\\xd7\\xefw\\xf7\\xdc\\xe0\\u0600\\xaa\\x16\\xf2x\\xb0\\xf6\\x9e\\x98\\xea,)w\\xd8jkGR\\xa7-Π\\xba\\xef+\\xae\\xfd.Q[\\xac*uJ\\\\\\x8d\\xa9\\x06S\\bP\\xa0\\x10\\x02A\\xa03\\xc7+\\xe7\\x0e\\xfbW\\xe6/;e\\xc6k\\xe1\\xeb\\x99\\xe3\\x9d9C4\\xe6\\xb8\\x04\\x9a\\xa4B6;\\xc7+\\xd3\\x13\\x1a\\xbe/\\x96\\x9e(\\x9f%\\x01O\\xf6\\xb9\\xc9\\xe8$d\\x19Q\\x93ɂ\\x90\\xa1\\x8c\\xae\\r\\xb3~\\x14\\xd6\\t\\x04TG\\xe3\\xb9\\xf6}큁\\x86e\\xad<\\xce}\\x19\\xb5{\\x81\\x9f2\\xbd\\x9b\\xe2y\\xcb\\xe1\\xb5\\xd4D\\xb6\\xc8ڥ\\xa4\\xddF\\u007f\\xe3j\\xb2\\xa7]\\xc6S\\xecZ\\xec\\xe4\\xfa\\xbb~{\\xb6\\xb0(E&sk\\x04\\x1a7\\xf0*\\xaaM\\xf3\\xd9\\xef3\\xac\\ne\\x15\\x84\\xb0\\x9c\\x12@\\xc5;\\xaf)\\\",\\xfe\\x02\\x18\\xe9\\x90N_\\xac\\xe9\\u007fhab\\xd2'\\xe2\\xe0ڜ\\x84\\x1c\\x9d\\x1f:\\xae\\x90\\x0f\\xe5\\xf3ɳ\\xb7\\xf9\\x83\\xf7\\x97E\\xd6>L\\x1aMb\\xe4:\\xda\\x1a\\xbd\\xa6x\\xd1\\xf3\\x13\\xa8\\xd5\\t\\xab\\x12a;\\xd0]\\x88\\xa7a\\xec\\xc9V/\\x03\\xb2Xe\\xe2\\x91M*3\\xbei\\x01\\x92\\a\\xa7\\xf6b\\xaf\\xf8\\x95\\x8e\\xa2\\x89\\xd6\\tF\\x93T\\x89\\x1d\\xe4I\\xaa$ɷ\\xf3\\xaas\\xd4\\xe6\\x8b\\xce|H\\x1f`]\\x93\\xed]\\x9f\\x837v\\xf0\\xd1\\xcb\\x1f\\x0f\\x80\\u007f`\\xfe\\xb6\\x8e\\xcf\\xce;gk\\t\\xa6\\x15\\xb1\\xee\\xd0\\xc7\\xef!\\xf0\\x99\\xbcLt2\\x01\\x9f\\xb9A\\xbf\\x80)\\xaf@\\x1d\\xf1\\u07b8\\xb0r\\xb6\\x11\\x15\\xc6836\\x18\\xcc\\xdf*\\x98\\v\\x82^ʹϴ\\x81\\x15\\xef\\x80e\\xfcxB\\bS\\xce4\\x8f\\xf5\\x8a\\x93\\xa7cB\\xc4y\\xb8\\xfaY\\xffe\\xae\\x91Gc\\xc2\\xc4yY\\xeb\\xa0O\\xa2&yDU\\x11\\u0098\\xf2\\xfc'\\xcc\\x12\\xe1\\xa2\\xfd\\x92\\xe9ߢq\\xa3\\xd0\\n\\xc6\\v\\xffT\\x86\\x0e\\x85\\xbf)\\x92\\xfaa\\xa3Kv\\xd0\\r\\xadѸ\\xd1(\\x1d\\xc3\\xd0\\x02\\xb0\\x95\\xdd\\xc9\\xddN\\xb6S\\x12\\x9c\\xd5*\\x9c\\xf6\\x9e\\x98u\\xa3t\\x03i\\xef\\xd4c\\x1e-\\xdf|\\x96\\xce\\xef\\x981v\\xed\\x97\\xddN\\xd4\\xfa\\xa1\\x96e߳A\\x1a?\\x8f3\\x1e\\x1f\\x92\\xda<F\\xcaF<\\xda\\xc0Vu\\xbe\\xd18Z\\xe4\\x1c\\x17qP\\xf0\\xc6\\xfd\\xe5\\xec\\x0f\\xec_\\xf6\\x9f\\xec,\\x1d\\xa1\\x8b\\x90i4\\x1e]\\u07b5\\xfc\\x188\\xff\\xab\\x86\\xc9\\xefr\\xf1\\x02pf\\xa4k\\xe4\\x98\\xd1\\xe8-p\\x0f\\xa2\\xb3=\\xd0\\xeelz\\x90\\xfb\\xe17\\r\\xdd\\x12\\x96'\\x02\\xe1\\xc1\\x96t7\\xbc9l\\x0f\\r+\\xa2\\x84\\f2SǾt\\xefko\\xa4\\xfb\\x99\\xbcM\\xfc\\\"\\x8b\\xab\\xce,\\xcc;.WG\\x83\\xdf,}AWPݥ\\x03\\x0e+e\\xbcc\\x87\\x1fv5W\\xc6:\\x06\\xb0-\\xbb\\x0ea\\xb1Z\\xc3Dn\\x9bL#\\xa8M\\x98R\\xec˘\\xc8\\\"\\x04`{\\xe5\\x9eܡ%.C@':d\\x94(\\xef=8\\xcf\\x19\\xf0#\\x10̤CK\\xdc\\rr*\\xd5J\\x90\\x1a\\x93\\t\\x92\\xa3\\xde\\x1f\\xc9S\\\\\\xe4\\xc4n\\x95\\x9e\\x9d\\x17\\x1c\\x97\\x95\\x92\\xabh\\xec\\xdbH]l\\x88ʦ9\\xb5\\x18̒\\x8b\\x1e\\x1e\\xf3\\xc6\\xe3\\x03A;6\\x03\\x83qͤ\\xac\\xf0\\xb2\\xbb(\\xc1\\x84\\x1d\\x91\\x17v\\a'}\\xa4\\\\\\xa5ў\\x10\\xa3\\xd0\\xd9\\xe6\\xbb\\xee\\x91f\\xcb\\x15\\xeaB\\f\\xb5\\xa6\\x9f\\xdc6y\\xafO`\\xcd_\\xc6\\xc0˿9awо\\x97\\xb7cߦ\\xb9\\xfb\\xb6\\xa9v|\\xbd\\xf1Odג\\xdc\\xfa\\x8a\\xae\\x0e2\\x1e0\\x1f0\\xde19d\\x11\\xbd\\xd3\\xe9\\xfa\\xbb\\xcb\\xcfAC\\x12\\b\\x18\\xb9\\u007f\\xf2\\xf7\\x83\\xa7\\xe8.Q\\xd4嗊\\x1cC  i~\\x8e'\\t\\xad\\xe8r}\\xc0\\xd6\\x02\\xf7\\xcd\\b\\x19\\x02\\xb2J\\x8cDB4\\xfb\\x96\\x10\\xc5*\\x9a\\x11t\\xb7!\\xda=\\xf6'\\x12\\xfe\\xb4\\xa1\\x92ؐ\\xb1|\\xf9\\x19\\x04\\xd9f\\xc9\\xc7~8\\xb8\\x1du\\x83l\\xca\\xe3FS\\x83\\xeditl1\\xd3\\x0f\\x8b\\xc2\\xcacN\\xdcPC[ԁ\\x8b߭\\b\\x95\\xa3E\\xb8\\xfa\\x97\\xd4\\x18\\xce\\xe7\\v\\r\\x90\\x89|p\\xd9o\\xd83\\xf8\\xe7a\\x99\\xa6\\x15\\xfbG\\x8e\\x06\\xc5\\xf2\\xeb\\x8d\\xdcI\\x98\\xa8\\xdd\\x03\\x92uI\\x1e\\xcfm\\x17~\\xa5\\xa4\\x1fH\\x06\\xc0|&\\xb8\\xc5W\\xc2E\\xab\\xed\\xe4cY\\xc9\\x1c\\xf7=\\x92s\\x8d\\x98\\xe1\\xa503,\\xee\\x85\\xea\\xb9\\xea\\x0e\\xc9\\xf8\\x0e\\x12\\xd3\\b\\x8b\\x18\\x9a%\\xdb\\a\\xdbh\\xfd\\xd2\\xe4\\x13+\\x03\\x14B\\t\\xab0Pѭ\\xdd=\\x89\\xa3~<eE2\\xce\\xe5e\\xfe\\xcb\\xcb\\xef`\\x02\\xba6\\xd1\\xdfذ\\x16\\xd5}^\\xdccGO\\x86g\\x1c\\xadx\\x0e\\x1b\\x8aቮ`\\x93\\x98\\xa6&D\\xafo<\\xc0\\xb8DY\\xb3b\\xb7\\xbf3ʘd\\xf7\\x9aqt\\x8bg\\x10y\\x11\\x9a\\xe0\\x1fi\\f\\x91\\ua48f\\xa9\\x95\\x9dH'\\x04vF\\xf2]\\x90sR\\xe3W\\x15\\xd4\\aL\\xfb\\x18\\xf7S\\xaa\\x91BrP,\\xd9O2\\xf2h{a9\\xa0]\\xa5\\x8d\\xc1D\\xca])ػ\\xb7\\x90\\xfd\\xf0\\xb7\\xc85M\\xb6\\xc0\\xa7{J4~\\\"\\x15UX\\xed\\x85E\\\\\\xafu2\\xa3K\\t\\xe2\\x9a\\xfb\\x83\\u007f\\x05[\\x0e(\\xe6\\xcb\\xf4+\\xa78\\xaaȍQ>1\\x05\\x83U\\xa2\\x1a\\x88\\xd8\\xd7\\xdfh$'\\x93\\xe2E\\x8e\\xe3\\xe9\\xb1/|\\xe25\\xe4\\x8cgfB\\\\\\x12X7\\\\\\xe3\\xe6k0\\xf8\\xba\\xddr\\xb2SZ[SX\\x01Ɩs\\xaa\\xde\\xc7\\xe8\\xed\\x19\\x9c\\xc9\\xd4/G^\\u0094a\\xedJ\\xe6,1\\x11\\xbb\\xab<\\x16\\xeb4\\xb9\\xa6\\xe9\\xdd=\\x89\\x92\\x19cyS\\xa6\\x0e\\xbdԣ\\x8e\\x9d\\xc3\\x1b'1迍\\xfa\\x10(\\x8f\\xc9.\\xab\\x02\\x84\\x0f\\t#\\xf3\\xfd>s\\x03gaLN\\x94\\x87\\xde1\\xfbR \\x9b\\xb3\\x83\\xd6\\xcf\\x03\\x15\\x98\\xe5\\xd8\\xffa\\xb7bj\\x11JzU\\xd9db\\x05\\xbaS\\a\\xe9\\x8a\\xd9\\v\\xb1S\\xf1\\x0f\\xe0M(ws\\x03j.\\xb2\\xc6(G\\x82M\\xcb8\\xc0a\\xa3~\\xb1\\x94\\x1aUō\\x13=$i\\xbf\\xe3'\\xf1\\x17;a\\xe1\\xa70~\\x0f\\x96\\x11?\\u007f\\xce4\\f\\xb1c_\\xac\\xc2\\xdelf\\xaa\\xcf\\v\\x03\\xdb\\xed7c\\xa5M\\x9e\\x84:\\xbe\\xb6\\x12\\xf7\\xcc!\\xdbo\\xbfq+\\xef.K\\xb5\\xd6\\xcd\\a\\xe2\\x18_\\x0f\\x13\\x1d4\\xe1\\x9a\\xc1EZ\\x9a\\xdb+\\xf7r\\x97P\\xec\\xf0\\xfeE\\xba\\x05\\xcd\\fR\\xb8\\x84J \\xfd\\xe3\\xf2\\xcb\\v\\xd4\\b\\xbd3\\x1f\\x11\\x14f(q}X|X\\x1e\\x8c\\x89&7\\x92\\x17\\xb6U\\xa0\\xa8\\xae\\b5\\x03f7\\xd1\\x184yhwW>=\\x94\\vv\\x93\\xab\\xa73\\x96\\xfff\\x1cL\\xf3\\xd8\\xe9)\\xbdp\\bQ\\xdf\\x19\\x17n\\x8a\\x8b\\x8b\\x8aڹÍ\\xecT>?\\x10-\\x10\\xb35\\x0e\\x03C+\\xff\\xc7\\xe4\\xa3)\\xc7\\xd5䪿\\xfd\\xb5фU\\xdc5\\xd3\\xc2K\\xf6Qd\\xfcr\\xc49P\\x15\\xf6\\xca\\x1dW\\x92\\x8d\\x9aCz\\x97\\u007f\\xee\\x14\\x9f;\\xb7\\xff\\xf6\\xf7\\x83\\x85`8-=\\xc3\\x18\\\\\\xb6әߕ\\x16\\xdd=\\x1c\\x1d\\x03n\\xb2\\x1d\\xf6\\xc9\\x06Q\\xb093\\\\W\\x9ec^\\xe0\\xf1&r\\xe2\\xf9\\b\\xdb\\xe6\\xcd\\x03w\\xbefR\\x1a\\xa5f\\f+\\xdes\\t\\xc1[ܗ\\x9d\\tڧ\\xbe`Cgo\\xdfz\\x97\\x1f\\x15L\\xe2\\x92\\xfcm!\\xc7\\xdcL\\xaf\\x0f\\xbd|[\\x12\\xf3\\x1c5\\xefY\\x15lc\\x88\\x87\\xcbj\\x19\\x87\\x19a:\\xafİ8\\tC\\xfd\\xfb\\xf1g\\x16O\\xef\\x8cب\\xacx(\\x06\\x8bЍ\\xbeo\\x9f'sC]\\x1d\\x98r\\xf5j\\xf9\\t\\xd9\\xf9\\xd4\\xcc\\n@k\\\\\\xcc\\x16\\xa6\\xba0R32\\xb7\\xb9\\xa4\\n}R\\x16\\xa7,\\xaa\\x11\\xdf\\x1f\\xfaS.i\\x02\\xf6b\\xb6 \\xcd\\xe5X\\xe6\\\\\\xd2\\x1c_\\u0600p$\\xbc\\xc6\\xf9\\xa8\\x91\\xeb'R\\xbbB\\xcb%\\x98\\xef\\xc1\\xb7gK\\x9e&\\xa2\\xf8E;\\xa6ו\\x87K\\x05>zg\\xa4\\x1d\\xe4Lf\\x1ep;\\xe0~\\x90\\xe17\\x89\\xb1Q\\xae\\xd6\\xc28辑\\xe1\\xabfnt\\xd3/\\xf6{\\xc58\\x80x\\xf9\\x19\\xe4\\x93q\\xe4l_\\xc2\\x17\\xc4 g\\xef\\\"O\\xbfO\\xb9\\x1f`\\x80\\xf1\\xecbV\\x86\\xa14§XB\\xfb²\\xc6=\\xaf\\xaf\\x03\\x1d4v\\xbd-:\\b\\xbd\\x9c\\xa4g\\xfaN\\x8f\\u007fY\\xdf\\x01\\xd7I\\xd8\\x18\\xdc\\xf9\\x1cM\\xa0\\xf34\\x02\\xa8V\\xaal\\x10N\\x0f\\xd6\\xef\\x00P\\x86\\xdc\\xf5η\\xc0\\xd2\\xc0\\x90\\xe0\\x82\\u007f\\xf5\\a\\xbf\\xcbI\\a\\x8a\\xdd\\xe1S2NL\\x9b\\xb6\\xa4\\x0f\\xa8\\x16\\x93(\\x15\\xbb\\xc8\\x1e\\xa4\\xab\\xb69\\xf0\\x19\\xe5\\xe6@\\xb9[|\\xf0\\xdcd\\x93\\xb8c[\\u007f\\x97\\xc0t\\xb5\\xc5ˌ\\x1d%\\x05\\u007f\\xedE\\xfe\\xaf\\b/6\\xae\\xad^\\xf1c\\xec\\xb7M\\x9f\\xbf\\xfd\\x9b\\x013~\\x94\\xae\\x9b\\x19\\x92盨yFg<3\\x81W\\xfb+'\\xf7T]\\xfa\\xd2(+0\\xeb\\x8d\\xfa\\x9f\\xe9\\x84*q@\\xbcڐ\\x91\\xa5\\x97\\x95>\\x85F\\xcdH}\\xab\\x03\\x97f\\xb0\\x1e\\x12\\xa4\\x87\\xf32LV_\\x94\\x94H\\xafQ\\xf6\\x05\\xd1\\xe0\\x84\\xf1\\xc4w\\x91\\xaf\\x91\\x87DK\\xcdE=\\x8b\\x9eB\\v\\xea\\xa3\\xca\\uee6f\\xd88\\x8f\\x84\\x80\\x00\\x17J\\x90\\x86\\x81þLtOn\\xd4h\\xcc&\\x10\\x0fLf\\x8d\\xe6\\x82\\x110Ӊ>\\x1a!\\xf0\\x99{\\x00\\xbf\\xc4d\\xa69hf\\x93\\xd6\\xfc \\xfa\\x819՟\\xf8\\xd3@|\\x1f\\xe6C\\xea\\xd7,U\\x86\\xba\\xc8\\xcf+xm_~\\xfe+\\x14\\x8dP\\ueaf4ѓ7c\\xcb\\xec\\x17\\xa4\\xe1\\xa7\\xfd\\x97\\x01\\x9ed\\xa0\\x04Y\\x8cl{\\xe6\\x06\\xaa\\x1a\\x93\\xff\\x9d\\x83W:CCB\\x1d\\xa1J\\x02\\xfb{~\\xcc\\xe1Т\\x8f:e=\\xd6V\\xc1\\xe3\\xb8\\x1e\\x88\\xd8\\xefZ\\x8d\\xdbG݇\\xcb\\n\\xf1\\x15\\x1d\\x14\\x89\\x0e\\x88\\xaa\\xb0O\\xd6\\x01\\xdf\\x10\\u007f,\\xa2\\x80\\x1dͫ\\xf4\\x9bH\\x9925\\xf8\\xf5\\xba\\xf5\\x18g&Ǡ\\xf7\\xb5\\x8a\\\"\\xa3\\x88߲\\u007f\\x12\\xa3\\xa7\\x05\\x8b\\x88\\x1f8\\x1f\\x88#\\xbe\\x06\\xbd\\x9fK\\xd6ךj\\x89l]\\xe8\\xe1\\xd2`\\xf4J\\x1fcD\\x961\\xd2G\\x1e\\x01\\x9e\\x19\\xcf\\xc4Fz\\fLtE\\x0f\\x8d&\\xcb\\xf0\\xc2\\xe8\\u05f7\\x1a\\x19\\x92\\xc0j\\x90-\\x930\\x18H\\x84\\xb0z\\xdb\\xe8\\xe86\\xecf\\xacL\\f\\xec\\x8cxͿS\\xb6ڧ\\xe4\\x88r\\xa2\\xa6L\\xf9:\\xc5\\xd3!p\\xd8=\\xe6\\a]\\xf0\\xd8\\xca\\xf0\\xaeh\\x83\\v\\x9a\\xb4\\x1a-O\\xbbU\\v^\\x15\\x8b\\xd8db\\x91\\xb9\\x88h\\xb2\\x96\\x93}\\\"72\\xd1\\xf9\\xef\\x82N/ϸ aΈ\\xb6\\x88\\xd9Z&\\x93\\x8e\\xf3\\xb9䩹\\xb1)ظ\\xd9\\x15\\xe3︘zuq\\xb0f\\x17,\\x02?\\xbdލ\\\";Q\\xac\\xff\\fr\\xf6\\xac\\xac| -\\xaf^\\x9b\\xc5!Ȣ\\x11s'\\xb1\\x87\\x84\\xad\\x01Ru\\xff\\xbc:6\\xd6\\xcaW\\xb6\\x9c=P\\xbaX3 \\xdf-\\xa3S\\xf7ze\\x95r\\x91\\xf5uu\\x85\\x12\\xd4a\\x04-f\\\\-\\xe0\\x01\\x81\\x90\\t˖R\\x02w\\xfc\\xb6\\xcdve&\\xe1&\\xba\\xb8\\x8aa\\x98N\\x9b\\xaaN\\x91\\xea\\x18n\\x18,\\x06OZ\\x91\\xff\\xba\\t\\xe3\\xc2!\\x01ߚ\\xb6\\xf4\\x00\\r\\x13\\x15Z㤥\\xf6\\x8a\\x88\\xa8\\x12\\xb4\\xd49]\\xc8d5\\x19\\x96CP\\x04\\x89\\t\\u007f#\\x88\\x8c\\xc18\\x94\\xf0\\fc\\x9eA\\x91\\xce~|\\x1e˘\\x8a_\\xa1\\xe2+G{Ϻ-\\f\\xbaE\\x8e\\xf9\\x84\\xc6ت\\x8f\\x1fS\\xee5\\xe2Sv\\x98\\xb7]\\u007f\\x1a\\x1e\\x9a\\x93螺P\\x00\\xef\\xf8\\xfc\\xf4\\x13\\x80\\xeb\\xe2'7gq\\xcd\\xee\\x8eڲ\\xc4\\xc4\\xc6j\\xbb\\x82g\\xca\\xd8\\xf3\\xfb\\xd7\\xce9\\x1f\\xe9_\\u007f\\xacYI\\xaa4k`\\x89\\x8f\\x9c:\\xd7hB\\x97K\\rIh\\x9f\\xa9\\xc1O'\\xed\\xf9\\x9d,\\xcea\\xcb\\xe0\\xe4Z\\xa3\\x89\\x97\\xc2(8\\xf1\\xc7\\xd7Y$\\xe9,Q\\xe2\\xaccq=\\xaf\\x16\\xdd\\xf5\\xf1l\\x99\\xd7A\\xf8\\x1e\\xa1\\x88'\\xe5rHڬ\\x05\\a\\xc9q\\x16ׅEE\\a%Я\\x83'\\xc7j\\x06:rS\\x92\\x1fȲ{\\x14B\\x0eW\\xca\\xe3\\\\q~\\xbfp\\xe8\\x83 \\xc5uÂ\\x8c\\x8c\\aU\\x8e+\\x1c\\x9e\\x94G\\xe9Gg\\xf6\\xcc\\xd0\\x1d\\xfc\\x1fEPTt>3\\xb3\\xad\\xb5\\x00\\xfc\\xfa\\xd1\\xc1\\xd6\\x1a\\x9f\\xaf\\xd3)\\xae?j\\xb1\\x064\\xb7\\x0e\\x1ez$X\\xb8A\\xb40=m#xuMO\\x8b\\xd6Dit\\x9b\\x8a\\xd6֧k\\xce&8\\x93\\xfc\\xbc<t\\xf8?B\\xfc4A)\\x85\\xfb?\\x0e\\xc8\\x06\\x02\\xaf\\xa1\\xf9\\xfdbȕX櫌pI\\xc9\\x0e\\xb3Ƅ\\x85FǇ\\x84\\x18\\x93\\xf6\\xbb4Z5\\xbc\\xffA\\xb8\\x90'\\xf2\\xd1\\xfa\\xba\\x96r\\xf8^>\\x1e\\xc2no\\x81O$\\x99:w\\xc1\\x9e\\xe3ɭ\\x13\\x12\\x19\\x89\\xca\\x0eO\\xcf\\xc5\\\\\\xff\\x88\\xcc\\xd1\\x1ca\\xd5\\\\\\xa58$r\\xac\\x18^H\\xdf\\x00\\xab\\u007fJ\\xddy\\x89\\x00\\xef\\xf1\\x16c\\xd1wGL\\x86\\x86\\x06\\x83)\\xa5\\xbb\\x98\\x95\\x98\\xeb\\x16\\x95\\xc7\\x17.$\\u05ce\\xadkuw/I(q\\x87\\x8a\\xea\\xeb\\xc2&\\a`g\\x0eu\\x17\\x1e\\x89\\x88\\x9d/_\\x9c\\xbfx\\xe1\\xe6\\u007f\\x81\\xeeAݍ؞2N\\xe7\\x8bf\\x8dIk\\x82);\\xd3\\xfd\\xc8\\vة`G\\u0081\\x8d7\\xef\\xb1\\xd9\\xee\\u007f\\xfd\\xd5\\xe2\\x8e\\xe9y\\xe5\\xe6\\xf7\\x9c\\x88\\x99\\xaaO\\x97\\xfbr~\\x83]\\xcaH\\x93\\v\\xf4&\\x85\\\\\\x1a#\\x95C\\x05Q\\xbb\\xa0\\xc9o\\xb9S\\x96\\xf1\\xc0\\x9f&\\xbc\\xf7\\x12\\xff\\x95\\x8c>y\\x9fb\\x01\\x9d\\xf4H\\xe8\\xa9>@\\xd9\\xf70\\x9b1\\x86]yA\\xfd\\xae\\xc7(\\xdcR\\x1eo\\x1b\\xcfs\\xa8\\x9c\\\"\\x03\\xee~\\x9c\\xe9\\xeex\\xefb\\xf5\\u007f_e\\xdcS8\\xbc\\xed\\xc3$\\xf8\\xdfFY\\x1c\\xfe*\\xc1\\xf2\\xa2\\xddo\\xbc1\\x12\\xa5J\\xe7\\td\\xdb\\xf6\\xb5\\xd4ɵ \\xb2\\xb0`GEV\\xc7\\xf23^NЛ\\x93\\x93\\xbd\\xb3<\\xb5c\\xf1\\x1d\\xa5\\xb3\\xb7\\x10\\x8c9\\xb2\\xcbX\\x90\\x15S\\x1e,\\x81\\x05\\xc7\\x15M\\x8c\\xd1ٴ\\x981\\xa0)\\xd2\\xd9\\xec-\\x8eѵ4\\xc28#\\x17\\xb90l\\xc7L\\x8a\\xc3aL\\xc9$ڋ\\xf1\\xecـ\\til\\\"[9\\xc2E\\xb8\\x10\\xe1\\xdd\\xc4B,\\xb2\\x9e'\\\\\\t\\x17\\xa1<e\\x11V\\xf2so\\x80\\x91\\xa3\\xd7\\t\\x82($&\\x92#@=\\n\\xc5\\x03\\x01\\x86\\x0f\\xa6\\xf1ĭ\\x12\\xea\\x01\\x82C0\\x82ʹu\\xda\\xe700z#\\r3\\xc6q\\x8b6\\xbdqU\\x81\\xfb=\\xdd\\xfd\\xae\\xfb\\x9d\\x01\\xf1\\x0f\\xbeoil\\xc1\\xe4\\xf2\\x92O\\x9dcy\\x81l&A\\x81\\x17\\x04\\x1cě\\x85\\xb78\\x8e\\f\\x93pE9^\\x89\\f\\xf3;\\xcc<i.\\xfd\\xc80\\x16@\\xa3+n\\x02\\xed\\xa3\\xdaռ\\xeeĬy٫\\xd7n\\x90\\xc7\\xca&\\xe2'ƒ\\xe6\\x87L[u\\xfe\\x9dQ\\x99\\xa0R\\a\\xe8\\xfd<~,ʘc\\xfbě0\\x8e\\xed+\\xa0\\xe0\\xb9!qA\\xe0\\x97\\xd8\\x1c\\xd2m\\xa4]\\u007f,ڻw\\xf4\\xac1\\v\\xcbr#\\xe2շ\\x1b66,p\\xc9~\\xd3\\xc6\\x16O\\x1d5\\xe7\\x8e\\xf2\\x124\\xc2y\\x8aF\\xedgE\\xe0\\xe7\\x17\\xba\\xab\\xa9[\\x1d\\xb9'\\x8c)\\xbe\\x1b\\v\\xfc7\\x0f\\xae`\\x1bO9QѪ\\xac\\xa7\\xa0\\xb1\\xb7\\x85\\x1e\\x8f\\x8apKN\\x04Eac\\x97\\x1eg\\xa6\\xad\\x9cM4Y\\x98\\xaf\\xb9\\xe9\\xd5\\xcdQ\\f\\r\\x1a\\xd1\\x04\\x9cl\\xf7\\x16\\xdf\\xd3\\xc7膇\\x1b\\xcd+!\\xbc\\x10\\x1e\\ti\\b\\xa8\\xe5\\xf2$-\\xd1q\\u007f\\xdc\\xfa\\xfd\\x9e\\xed\\xcf\\x06\\xf0\\x96\\xd6&I\\xde\\x13}l[j\\xeaj\\x9e\\x022\\xdf\\x1a6D\\xbd\\xf6\\xaaX1شK\\x03P\\x1b\\xdcԧuE\\xb4\\x8e\\a\\xbf척s\\x10\\xb3\\\\B\\xcb\\v!\\x94\\xe3ѵ\\x1a6\\x1cX\\x10\\v\\xfdx|*M:\\xb6\\r\\x93b\\xcae0C\\x8a\\xbag_.\\xbc\\xbb\\xb0\\x8dN'mIO;\\xb6\\xbd\\u007f\\vNb\\xb6\\xb5N-v\\x02\\xf8\\xf2qgZT\\xfbB\\xc7h\\x06\\xee{rku:\\x06\\xa9\\xe4,]\\u007f\\xa7~\\xe6A\\b\\xd6\\xfe^\\xc70\\x11\\xd0\\xfc\\x9e\\xe9@\\xd4\\xf7Ye\\f\\xe6\\a=\\xfa\\xb1l\\xa1\\xeb\\x8c\\xf3/\\xbe\\xe4\\x8f\\xf9\\xb1<8x\\xe4\\xc7\\xea\\xbc\\xd2E\\\"\\xd7Ž-QR\\xaa\\xb6\\xad \\xe8\\xf2\\x8f\\t\\xbf\\x89f\\x86x/\\\\\\xf6\\xe3\\xfd\\xfc\\xa0A\\x06\\xfds\\xd4\\xf9\\x19\\xb2\\x9f\\xbfM\\xf8q\\xb9@\\x1f\\xa5z.3s̃\\xcap\\xf8\\xe4\\x8c\\x13}}K\\xbd\\x85\\xa9\\xcb\\x1bF~\\xac\\xb2\\x95.v\\x15-*\\xcdk_\\xb3\\x8e\\x14\\xbeȿ6\\xf5\\xad\\u007f\\x12\\xca\\xec\\xfd+\\x83\\xeb\\xf5W/3\\xf4S\\x13)|\\x8cj>\\xf3}\\xbeE\\x9f\\xec\\xa6\\x1d(\\xae\\xcf\\x1f\\xed\\xb8\\x86\\x91x^\\xe0<+(\\xc7wS\\xe5\\xe3'\\x13\\xfb\\x0e,\\xe2\\xd3t\\x0eϱ3\\xe3a\\x99TO\\xfc\\xff\\xe0\\xbad\\x16\\x13\\x8c\\x87\\x1e\\x90\\xf4 \\xfb\\xcf/T\\xc7_\\x9f\\aЫ\\x86\\xa1Oٔ\\x1b\\xf3\\x93ӎ\\xa2ٜ\\\\\\x99ؿP\\x82\\xac\\xa4\\xfa\\xeb\\xcc\\xe8b|\\xd7\\xc5O\\x95h\\nh\\xbc\\x1bO\\x8e\\x90M\\x92\\xd3\\xfa\\x14\\xb2SN\\xc2\\x10\\xb6K9Lp[\\\"3>e\\xb3#~c.\\x1f<Q\\xf7x۠\\xf9\\x15)l\\xf2\\xeeҕ\\xaaY\\xc9\\x18\\xab\\xf4\\xa1S\\xec-<\\xd9w\\xec9\\xf5\\a|]\\x1f\\xa6\\xc7\\x14|\\x10o.\\xaaR\\xcf\\xe6ɤ\\\\\\xaeQ\\xb6\\xa4H\\x8c\\x8eF\\xfd\\xf5\\x10\\x90~.<K\\x9f\\xbc\\x1e\\xad\\xb2l=\\xe2\\v\\xe9\\xf7Y$\\xafO!\\xa3\\xab/=\\x03\\x12\\xf9{Y%D\\xfcG\\xf0\\xbc\\xef\\x82\\xc7\\xe5R\\xd8M\\x88\\x18\\x93\\x16^\\x00 \\xc6\\xcf8\\xdc\\xc1\\x02#\\xa3\\xb4t\\xe6?wu\\xb6\\x85\\xb2\\tc6\\xb2\\x98S\\xf2k%\\x8a\\xa4\\xf9e\\\"\\x10\\xe5G9M\\x16Z\\xf2G\\xca\\x0f|Nd\\x03\\x8edˎʆ\\x1e\\x93\\xa5\\xa0\\xc0\\x928\\xae\\xd8\\x06?\\xab\\xba\\xf6\\xa8\\xc2n\\nNJ\\nV\\\\\\xe7bJ\\xd5\\xc0%pP\\x19\\xae>\\xd9\\x1a\\xef\\rv\\xb9\\xd8\\x0e\\x1cު\\x93\\xf3\\xe6Nnx\\xc1\\x1d/\\u007f5F&\\xab\\xf9\\x9e\\xf1)`\\xf2\\\\\\x1e`T\\x8e\\x9d\\xdeV\\\"Ff߰\\xac\\\\lC̈\\xb69\\xec\\xf6VD\\x8bn+_V\\v:8\\x96\\xbc\\f=\\xd39\\x80ӄ\\x88[\\x99\\x10\\x90`\\xa9ϳG\\xd5%\\x1c\\xe8\\xa8ג\\xe2\\xec\\x02\\x92\\xe1U\\xf6\\x85a?\\xe2U\\xf6}\\xa2\\xc1\\x88\\u07fc(ܤ\\xf9\\x90=\\x96n\\xcds4\\xb7\\x89Z\\x8d\\x85\\xce\\xdf\\xc5\\xd8\\xc3\\xe9h\\x92\\\\?\\x84\\xe6O`irIa\\xed\\xa2\\x1e\\xfe\\u007f\\x04\\xfe\\x04\\xf5\\x04X\\xae\\xd0\\xf8\\xfb\\xab4*\\xff\\x9db\\xb5e\\x1b\\xfc\\u007f\\x0fZ{\\xb8\\xd2\\xd3*\\x14\\x968\\xe1q\\x19x\\xe0\\ffEe\\xe0\\xc8:\\x84\\xa0\\xa9t\\xaa\\x91\\x03a\\xear\\xd8\\xe9Z\\x1a%PV\\x1c^\\v\\x85\\xd1)\\xd6&F\\x19\\xa9\\xea\\x05\\xca\\v3\\x8f\\xc0\\x8d8y<\\x17\\x11{\\xfa\\x83\\x81\\xbc\\x96)n]0\\x8f\\xff\\x891h\\xa2\\xa0\\x8d\\xe9c\\xdcƘǸ\\x8f\\x99PZ\\v6\\xafJ\\xc8\\xcf\\xccj\\x8a]7tVGOӛ\\\"\\x13\\x80\\xf2r\\x91\\xff-\\xbf/U<\\x18)\\xbe\\x82\\x95\\x8c\\xfa\\xed\\xec3X\\xe6\\xffa.Il\\xa8\\xb0o<\\x0f#\\x17\\x88W\\xf1\\x18\\xdfS=eb\\xd0\\xf3rIA?\\x96Y\\u05fc\\xfa=\\x19o\\x9c\\xd3\\xfc\\x94\\x99\\xbap,I\\x16W\\n\\x9f{\\xce\\bϬ$\\x89\\xf5\\xff;\\x13p8z\\x15\\x04ҫ\\x84\\vt\\xee̲]r\\x8c\\x05-\\x98\\x87\\xca-\\f\\v\\x0e@\\x03\\xaed\\xfd\\xac\\xa8\\x0f{/.\\xae\\f\\xf0\\xfc\\x9f2\\x86\\a\\x18\\x89.\\xae\\xe9Րpm\\x049\\xf7\\xa7\\xa9!Đ\\xadv,\\xc4cN\\x0e\\xd0e,\\x94\\xa9\\x81\\x8c2\\aY#\\x1do\\x9f\\x8e\\x93@7\\xfc\\xf0\\xe5M\\xfe̯R\\xb4\\xda\\x0f\\x81n\\xd3k\\x93]㷋\\xb9\\x85O\\x04B\\xac\\xe7\\x1f\\\\I~\\x9cKs\\xb9kMh\\xbc,\\b}SZ\\xcd\\xc4\\xcd\\xf0\\xd1\\x06\\xfc\\xe1\\xf1\\xe4\\xdf[VZ\\xc9͇\\xfbb&\\xa3+\\xb4(d\\x1em6\\xa27\\xee4c\\xdc\\u007f\\x02&\\a\\x9a_\\xeev\\u007f\\f\\x15\\x9dk)\\xd7\\xed\\xf7r\\xabБK3>\\xea\\x11]鲩}܅\\x1e\\xb1~\\xa7\\x8a\\x0fW⌎k\\xb7\\xfc\\xf5ߘ\\x8c\\xb7X\\xb3\\x10\\xa8\\xc0\\x9b\\x1d\\x9a\\xbbс=\\\"\\xaa\\xee\\xe7\\x89\\x16\\x8a\\xa9Ucg(\\v\\x91\\xb9\\xa5\\xe0\\xa9\\u007f\\xe9͈\\x89\\x0e\\x03\\xab\\xec\\a4\\x9c\\xb6\\bkt\\x18\\r\\x8eE<\\b\\xfe\\xa5(\\xdd\\x02\\xd4 w\\x1a\\xf8F\\xb4\\x15\\u0088$&\\xdc\\x05U4GMׯ\\x92F\\x9b-X\\xe9V\\r\\xfa\\xb3ܕ\\xc13\\xbf\\x95\\xf7D\\xc7Tz3\\xd5\\\"\\xe6\\xe7\\xe3\\xf8\\\\*\\xf8\\x04\\\"2NU%\\b.\\xcd\\xc8\\x11\\xde\\x10exo$\\x9bD\\xe1y\\x1c-\\xe6\\x85\\xfd\\xb4\\x858!\\x8f\\t\\xcb\\xc5\\x0eB\\xcda_I\\x11A\\xe8\\xc4L\\x8e\\xe8\\xa64\\xca\\xd8{\\x88\\x8a\\x89\\xff\\v\\xf2'(\\xf0\\x82b\\xf4 \\x17\\x0e\\r\\xb7\\x1fg\\xd9ԫKy\\xbax8\\xca\\u007f2\\x9b\\xb0\\x9d~\\x8dv\\xa28`j\\x1bټ\\xb9UW\\x9c\\x84\\xa3\\x8dk\\xf9\\xd2&\\xb4`\\xdd\\x19\\xed\\xac\\xce\\xef\\x90\\xce\\xc5i\\x8dm.\\xbd\\xd1h\\x81_\\xcd\\xc0E\\xa0\\xc0\\xafH},ɝJ?$\\xbf\\x93_%r\\x15&\\x1a0\\xaa\\x01\\xa1\\x98\\xd4\\x15%\\x95ɎV\\xbb\\xbdg6\\x1b\\xc0\\xfeE\\xb6\\xb0\\x18f\\xe1\\x05\\x9e\\xb7EbJ\\x03wNs\\xc0\\x12\\x84\\x8d9$ebܛ\\x1d\\xa3h9\\xc4\\xe1C\\x11\\xb2\\x05\\x14\\x01]Hi\\xa0I\\x9d8\\xaf\\x93\\x9e\\xba^\\xb1@\\bJ\\x0e\\xe3\\xdbnw*i%\\xaf`5\\xe3\\x01Y\\xa3\\xff|\\x97\\xefK\\xcaXpl\\x1f\\x9b\\xb0\\xe0\\xc6.\\f\\x8fh\\x1dw?\\x98\\x06[Wf\\xb5V\\x91\\xec\\xe50iG0\\x99\\xe3\\xc8r\\xc0\\x8e];\\a\\xfd>\\x97\\x8fe\\x0fb6\\xdf\\xfc\\xb6\\x91\\xdfSB\\xa5\\x01(*(\\xe6Pv\\xae\\xa4\\x9a`\\x04\\x1eŔ\\xdaQ*\\x0f\\xb6\\xb8\\xbb\\\\\\xcc>\\x1b\\x88,*2C\\xc0\\xc6x\\x14\\x17\\x8e`L\\b\\x8e$\\xc0j\\xb4\\x98t\\x16\\x85\\x8c\\xe1I\\x92S\\xe5\\xe4\\n\\\\ᴧ\\x04\\x11G`\\xd1\\b=\\xee$7\\n\\x13t\\xa7\\x04Z\\x02\\xa3+\\x8e\\x89(\\xab\\x86)f\\x98\\x84V\\xd81\\n\\x8e\\xda.\\x17n &u~\\x12\\x1c\\xd0L]\\x1c ͕\\xe5Z,5\\xbe\\xd8\\xe9\\n\\x85]-\\x13\\\\;R\\x1c'.\\x1e\\xe0\\x9cҵ>\\xd5\\xd4-\\xb39\\xaf\\xbal\\x85Z\\xa1/\\xcf\\x00\\x85\\xf1\\xa0\\x120l\\x8e\\x11\\xc0`\\n\\x8b\\xf7j\\xc8\\xd7Z2\\x00Qs\\xed\\xf3Jմ\\xe9\\xa9Zys\\x86-e\\xbaN\\x90K{BLe\\xb2\\x1e\\xd4[\\x99\\x81\\x97\\x99qVe\\x9bz\\x0f\\x1ee\\xabH&\\xa9\\xda/\\x95\\v(\\a\\xeea\\xcay\\xd73\\xd1.\\x1c\\t\\xb6)\\xdc\\x14&\\xfbC|\\xd4$Y\\x05n\\x97\\xa5\\br#y(\\xb7^Q\\x95\\xda\\x195\\r\\xfbg5x\\xfc\\x02\\xcf;\\xee\\x16d.E\\xe2E\\x01\\x03\\x11M;j\\xc0=V\\xe4\\xd95\\u007f^l\\x93\\xa2\\x9bu\\x81c\\xa7\\xe5+\\x06\\xab\\xd3mnH\\x119v\\xf1\\xfb\\xd7\\x06\\x9b\\xd3mI\\x14y\\xfa\\xbaV\\xb0\\xc7\\xea\\x96=YDlI6\\xb5\\x9a\\vK\\n\\vg \\x1ea\\xe8\\xc1\\b\\x99\\xa6\\xfd+[2\\xbf\\n\\xef\\x0ek\\x1c\\xb5\\xca\\xfc\\x92L1\\x13{*\\xa0\\x948?\\xca\\xf5,\\xf0\\xb4hn\\x8f\\xb7\\xd2p\\xc2qC\\x8aR\\xa2\\xa0'\\xff}<\\x9f\\\\\\x92l\\x11_\\x15\\xe59\\xbaa}L\\xbcU\\x98\\x88\\x89\\xaeJ\\xaa](\\xc2䭵eo\\xf3\\x9f\\xdd\\x1f\\xe7Ie\\xd4\\xd2E\\xa8\\xc6\\xd8\\x18\\xeca\\x94\\x81\\xbd\\xbf֨R~\\x8e\\xac\\xee\\xd7\\xfe\\xa3@V<\\x80\\t%\\n\\xb5\\xddI\\x93ڮ\\x9b\\x06@\\x89F\\xd4݇5\\xaaR\\x8an\\xfb\\x0fT\\x11b\\x997r\\xbd?\\xe3Rb#x\\x1cx(\\xe5\\xd0\\xe8\\xee͊\\xb6\\xf5Q\\xc0\\\"\\xdfʀ?B\\xa1@,\\xb3\\x80\\x18E\\x96\\xe9G\\x85?\\xc2l\\xac?\\x99\\xa4W\\xc0\\x9b\\xa7\\xb8\\xfd\\xa4$a\\xe2`\\x1d\\xc4\\xed\\xcd\\xc5[\\x8e\\x11\\xa4\\xee\\xbcԕ\\x87\\xab\\x86\\xad1?\\xe8+\\xd6bx\\xa3*x~aP\\x9a\\x8e\\x91\\x94\\x03\\xeb0\\xa2Y\\xa9\\x94r\\x98\\x9cU\\xe68W\\x17\\x91{\\x03\\xb5X\\xa65\\t\\xa4\\r\\xe4\\x9cN\\x84;\\u007f\\x90/\\x9a(OY\\x1cV\\xb0n_\\x98(\\x9b)\\f\\x10\\xd6\\xf4\\xb1\\xb6\\x89]\\x8f2\\xa9Oq\\xc5k\\x02=\\xcelR\\xe3X\\xfc!.y̅V\\x8a\\xed\\xef%4\\x0e.\\xfe7\\x06\\x9f\\t\\x9e\\xd8@2/Ѝ\\x1ea\\xb0\\x98\\xac\\xa6x=Ǻ\\xb0\\xf4\\xcaג\\xd6\\x04NKb\\xb7 \\\\\\x84I\\xdf\\xd3\\xc4\\x1a\\x9am0Q\\xc7e\\xed\\xf1\\xc9\\xc5T\\xdc-\\xf5\\\"\\xdbo'\\x98ߗ\\xc1\\xbb\\xf5S\\x8b\\x82\\xd2.$\\xa8\\t\\xd5˭fݯ\\xe2\\xe9\\xf0\\xc3c\\xaf\\xbdБ\\x12oָ\\xe0\\u007f\\xf1\\xb0\\xf5\\xf46\\x83\\x05\\x02YX\\xa5\\xc1d8{\\xb4\\xbbU_\\xc42`\\x86\\x99|\\x17\\x96&\\\"D\\x18-Pl@n\\xb3\\xd7\\x1b\\xecj5\\x83\\x89Ԓ}\\xffG\\xdcȚ\\xaa\\x1dh\\xbc{\\x8dNL}\\xd8[\\xa0\\x90\\xf1\\xe9\\u007f$;\\xb7j\\x05\\x8cI|\\xf1\\x12\\x06\\xf6\\xb9\\xee\\xe9\\xd6B\\xf7\\xb1L\\xe5\\xe0\\xe3\\xd8S\\xa0LDx\\x97\\xf9\\x80\\x90Wʻ1{\\xf9\\xcb\\xe2\\xc7;\\x05&\\x93\\xa5(\\xc8\\xe3\\xa6)\\x11\\xaf\\xac\\U000ce720 gS\\x93s\\x9e\\xf6\\xab\\xbc\\xc2Ť\\xdb\\xca@\\xe6k\\xec\\xcc\\xe4\\xf4\\xf2\\x86TknVp\\xb0O3N\\xfd\\x90\\x8e{\\xd4w\\xb2\\x90X\\xf3\\x10\\xd6\\xe8\\xcb_\\xcd\\x04\\x90\\xfa\\xf3\\x98\\x05d\\xeb<\\x96(\\x89.\\xcea\\xf9v\\xd2a\\xa2|\\x12\\x19\\x9f\\xd5\\xea<&)f\\x1b\\xbf\\xd6C\\x17P\\x1b+P\\xca8\\x1b\\x955R\\xcb\\xe8i\\xab\\xf6/b&e\\xcc\\xfb\\xbf\\x89\\xea\\x16\\x16\\x11\\x96\\xda\\vP\\xd8b\\xedwwk\\xf6\\x9e\\xcač\\xe0\\x91\\x1d\\xd4\\xf3\\x11\\xd2\\xf8y\\fW\\u007f\\xbd%\\xfdk\\xf9\\x82B4Y\\x8f\\x92\\xde\\xc3[~\\x1a\\xc1\\x85G\\xf9\\x18t[\\x8a\\x98\\x1b\\xa7\\x9e\\x04\\x8f<\\x94\\xcbR\\t\\x9f\\xd6H\\xf3\\xfa\\xf4\\\\ώ\\xa8f\\xd5fr2\\x81\\xe2\\xd2v\\xb2\\xf1X@.\\x027RM\\x06\\x84i~\\a\\x8aϙg\\xa6\\x14\\xcf5c\\xb9\\xcd\\x18Lr\\x8aW\\x06\\xe3\\xfc\\x16\\xb4LGuY\\x10B\\x84\\xc1\\xc0|\\x04\\xa6\\xa5X\\xf9\\xbc\\xb9\\x16J\\xc90\\x85\\xa5\\x1d\\xf9(\\x8c\\vfb\\x96rDk\\xf6\\x88\\xf7ޫ\\xb9\\f\\xc1\\xc9l\\x99\\x04\\xe5\\xa3\\r\\x04C\\xc1L\\xa0R/\\x8a>\\x02!\\xaa]\\b\\xf3\\x8a\\xad\\xe7@m]\\x91F\\xe9\\x9aC\\xa3\\a9{\\x92쎴$gz\\x16\\x98\\x90e\\xb2J\\x1e5\\x8d\\u007f\\xda[P\\xcc@\\xc1\\x98\\x0e\\xb0\\x03u8\\xb4\\x1f\\xbft\\xb6bX\\x17\\xa7%\\xf5\\xa3(\\xa7\\x02B\\xc8朖\\x98|8\\xb4!^\\xa7\\n\\xad\\x82\\xaa륗\\xa0\\xa9-E\\x99@܍\\x983-\\xd7-A.ВVpJMcF\\x16\\fH\\x99\\xf64\\x04\\x82\\xdc\\xfa*\\x04\\x00ɚ,]i\\x01b`M+)ۨHr{\\ue5a4x\\xe1nu\\xf3\\n\\x84\\xae\\xc9\\xc7\\xe3o~\\x8d\\x1b\\\"{M\\xb7\\x90=\\b\\xbd%\\x83\\x9f\\xddՕ͝\\x9c%\\x9b\\xde_\\x9a_'^\\xb3N\\\\ߐ \\xae]\\xb5\\xa6V\\xbcB\\xc6\\x16\\xfd_\\xa3i;e\\x9c\\xd0f\\xc8Fϭ\\x93vvKS\\x9e-\\x94\\xfc\\xf2\\xbd;K%\\a@\\x97\\x8d\\xf2;\\xb1\\xe7\\xeb\\xf3!AF\\x17W\\xe8\\x98\\u007f\\xf8\\xc2\\xde\\x0f\\x89rQ\\xb9.\\xa2\\xb77BW\\xee'\\x85Ҧ_\\x8b\\xd2/^\\xac\\x8f\\xba\\x06\\xfc$\\x9c\\xe7\\x01\\x11S\\xa6D\\x04<\\x97p\\xce\\x13\\x05g\\xe1۷A\\xb2Y\\xc0\\xe5Z\\x9f\\xd6襉\\x8eROROC\\x1ay\\xd5O%\\xc9Q_\\xca\\x115\\xddΌ\\n\\xb1\\x14\\x16Z\\x98i\\xbbk\\xb1\\x9b1\\x89\\xa3\\r{\\x03\\xc7$f\\xd3\\xd1\\xeb1&\\b\\xba\\x94T\\x06\\xfaP\\x8eB\\xe7}1\\x87\\xa4\\xa9\\xe8\\x0f0[0\\xf1,\\xfa\\x000\\xf1:A\\x91\\\"\\xf8]pc\\xcc\\xfd\\xe0\\x19\\xfc\\a\\xc1\\x0fz\\x991\\x0fbf\\x1b\\xe6\\x86\\x05\\xed\\xe2ޏy\\xbb\\xf7]̻\\xfa\\xf0w\\xc1o\\xf7\\x95\\x12<\\x92\\x89)<LpK\\x03\\n\\xaa\\x06h\\xbc\\x16y\\xb8t\\xc2h)\\xd1\\x13\\xbdM\\xdeP\\xe4 z\\xc8>\\xfe,>Y 1\\xc7O\\v\\xa6\\xae8݄\\xb3\\xb8\\xe3&uz\\t\\x18\\xff\\xd3Z\\x8d\\xb4\\xba\\xb0\\x96\\x04W?\\xb4\\xe6\\x15\\xaa1Ǽ\\xb4\\xdcS\\xb2\\xf5\\x92h\\\"^Bt\\xa7\\xf9\\x8d\\xce}R\\xf0\\xa0`\\x05\\x9d\\xb2\\x91r*\\xf9D{\\xe8\\xd4PN\\xa7-\\xba\\x1f\\nk:}\\x9f\\x87\\x0f\\x1a\\xa4O\\xb7\\x12݆\\x8b\\xf1\\x9e\\x04i\\xad(\\f]ңj\\xc7\\xd4\\\"7'|\\xf4d-E\\xd7ډ\\xff\\x12\\xab`\\xdf\\x19eUs\\xf9Ǫ\\xb0\\xa9Oy\\x10\\xbf%\\xfe-\\v,\\x15\\xe6\\xfd\\xeb\\xa6z\\r\\xb4\\xb7\\xa8L\\x06\\xb50\\xa5\\xa1\\x9frc\\x91Y\\xa8\\x9c~\\xf1\\xc1A/\\xd3zP\\x9a\\xecD\\xb0\\x06*$\\xfe\\xe5\\x90x\\xe83\\xec\\x91J\\x0f\\xb3E\\xa1\\x94\\xec\\xda~е\\xcap\\x93'\\xc8\\xee\\xed\\x8d\\xe7\\xe3%\\xc6\\xed\\xc5p\\x8d\\\\vX\\xaf\\xe6\\xd6\\x17\\xe2;\\xce\\xd8\\xd2izW\\xb9\\xd9($\\tV\\xd5\\xd7\\x10\\x0e\\xce\\uf3e9̊\\x91\\xd3M\\xc1Gݘ\\r\\x1d^\\x1b\\xbdgT\\x9f~\\xb1E\\x02y\\xaeû\\x8cűe\\xdc!\\xb1\\u007f\\xd2}\\xd6t:\\x83\\x17\\xcbhU\\xa5\\xcb͓t\\xb0\\xb5\\xfa`]XRB\\x18\\xa7\\n\\x12\\xb6bl\\x0f\\xf9\\xdb\\xc6\\x15\\x81\\t\\xb9Fcfvwgv0aq\\x82\\xa8\\xe1ZXv\\xe7\\xed\\xb6쬹\\xf15\\xd5\\xf1 \\xa6'e~uU\\xbc\\xeeB\\x00\\xddd\\xa1\\x15\\xad\\x9f7m6\\xe4\\xebt\\xef\\xe8\\x18\\xeeD\\xbd6\\x86\\xcfS\\x94\\xe0\\x04\\\"\\xa6\\n\\xc8\\xc7\\b:Dc\\xdd\\xc5?Ө\\xbdd\\xd554\\x80\\xf6e~\\xb5\\xfe\\xfe\\xe6G\\x0e\\xff\\xb2\\xf4\\xcbƗ\\xf9;\\x1e\\x99\\xfd\\xfd\\xfdj\\xf5\\xb6#\\xb9Y\\xd4\\xee\\xb75એFc\\n\\xba\\xb6h\\xd84\\x9c\\x86>jBo\\xc0\\x94\\xfc\\x82\\x9e\\xca~\\xb1`\\x16Nހ\\x0f\\xdf߇R\\xfa\\xd1KZ\\x85\\ay\\x1f҃\\x8e,#\\xfd;ě_\\t\\x83\\x12\\x9f̚\\xec\\x03ޙ\\xb2\\xb8Y\\xb9\\xae \\x8c\\xcfFr\\xa9\\xadW\\xcf\\xecC\\xefG\\xbf5\\x9a\\xef\\xc1A\\xd3|{C@\\xa9\\xff\\xab\\xe2n\\xe2)\\xdd\\xe7uLl\\x8a̯'\\x93-\\x86\\xa10Z r\\x04\\x99\\x1d\\xa8\\x84!\\xe8\\xb9\\xf6\\t[:\\xd9\\xf9\\x02\\x8b\\x05\\xc4#\\x9f$٩:\\u007f{\\x04u\\xe2R\\xa1\\xe9ğ#\\x12\\xa7u\\xee\\xd7\\x1e\\xa2\\x10\\xd69\\x90\\x88\\xb9O\\x8b}\\f&ĵ|\\xa46W\\xa5F\\x1e@\\xa6\\xaa\\xa1\\x83\\xfa>T\\xb9\\x9f\\xcf\\xf7\\xbfF2\\xf1\\xf7|\\xca\\x1b%\\x0e\\x167Zح\\x8a\\x06v·\\xf4q\\xf8\\xd6~i\\x81\\x1a)\\xcc\\xcf\\x19\\x8cja\\xb4\\xca\\x18\\x1c\\x15\\x8e\\x9e\\x14\\xa3\\xa3\\xa1\\ueb64\\xe5MnX\\xd6SWV\\xb7\\xba\\x95Q\\x1a8\\xa8Y\\xe7.\\x87U\\xff\\xe9\\x87wA\\xe7\\xaa\\xea\\x0e\\xad`\\xc9\\xd5L\\xf1\\x85\\xc8Cb\\xd1!\\xe7\\x16\\x9bTŁQX?\\xbc\\xc2 \\x14`\\x12ݍ\\xb2\\x06\\xb90\\xc6G\\xe1\\x86\\xe7\\x1d~\\\\\\f)\\x1e\\xf4\\xcf\\xd7%\\x1dy\\xd9\\xc8E:\\x1c\\xa0=\\xeaDl\\xa2\\x8d\\xff6V\\xb3`\\x98\\xed\\xdf1\\x80\\x1c̢֭{\\xbb\\x19\\x8e>g5\\xe7\\x0f\\xa0f\\xf2+\\xdf̌\\xe2}\\x12lF\\xd2\\xcc]W\\nX\\xf2\\x82\\xf5\\xc1\\x0ft\\xab\\xf9\\x066\\xf9KnbҚ\\x12`\\x87\\x96h\\x8a\\x1dR#\\xa6\\xa6\\xfaT\\xc8\\xf8\\x8cޝA\\xa90\\x8cr\\xdcR\\x0f\\xc1\\xcd\\xe8#4\\xfek\\x88Z\\x03\\xda\\xe5:V\\x13\\x80\\xfc\\xeeB\\\\\\xebA9\\x05\\x8f\\x0f\\xf9\\x19i\\xdd\\xf0\\x15\\xed\\xf6\\xbeM\\x06\\x12>q8ҽfdO4\\xf3\\xc0\\xdf\\xc1\\xe3\\xc1x㤏\\xb7q?G/\\x8b\\xa1\\xd1P[\\xfe\\x8de\\xbd\\xf9\\xf2\\x99\\xde\\u007f\\xc7ߖ\\xc3\\xccZU\\xf0r[\\xd4h\\x02I\\x1c\\xf3\\\\gA@О\\r\\xf9\\x05h\\xf6\\xa9\\xfdD\\x1c3\\a\\xac\\xe1\\xb9-p[\\xef\\xb6\\xc1\\xed;D\\xeb\\xb5\\x1b\\xd8\\xe6ᾼ\\xf5f]&\\xefHa\\xd3\\x1a\\xaf}\\xbbݓ\\x03J\\xd3HQ4\\x90\\x8f\\r\\x196>y\\xb0\\xcdO\\xbe\\xa8\\xd8c\\t\\x19\\xdd9{ۄ\\tˎ\\x8dXp\\x89\\xa2*u9fE\\x05.\\xe3,\\\"\\x8arj\\xaf\\a\\xff\\xec\\xe2\\xf7/fb\\xef\\xc3\\xfeΊ7c\\xefW\\xea\\xb9\\xff\\xfb-SPL\\xa4t\\x03\\x9a\\x8a\\xec&-\\v\\x9f\\xe8\\xed\\x15%ư(\\xc5\\t\\xda>\\xd2ݠ\\xc3\\xe7\\xc7\\x1f\\x9e:u9\\xbd\\xc0\\xd6\\xf3b7p\\x8cl>\\rE.\\n\\xaf\\xc2\\x1e2\\x8f\\xb2\\xbd\\x97\\x8c\\xae\\xeb\\xeb\\x0e&Z\\x14\\xaeh\\xf9\\r\\x82\\xeb=A\\x83\\xf1\\x13\\x95\\xfa\\xd5լ#Y|\\x1a\\xea(zc\\x81\\a\\xe0\\xbb\\xc0i\\xc6\\x12\\xc1\\x04\\xa4=\\x9b\\x8d\\\\\\xf9x\\x18*%\\xbf\\xa4{P\\u007f\\xf5#Q\\x1a\\u008c4#\\a\\xc6\\xd3\\xeb\\xc1\\x9aڡ\\xd2\\xd2\\xc1Ҳ!\\xa6\\xd7`϶+\\xff\\xb6Y[kI_\\xb7\\xca(s\\x1fc\\xe4\\xed\\xfc\\xde_\\xdbk<oYR[]BrK\\x8d=K\\x97\\xe6\\xa7\\xc9\\bJ\\xac\\xafM\\x02\\u007f\\xbd\\x06\\xc3tI\\xba\\x84=\\xf9\\xa1՛P\\u007f\\xfb'\\x87\\xc7\\t\\x81\\xef\\n\\x19\\xe8f \\x1e\\xeb}\\xaa\\x17\\xb1~裓\\xb2\\x8boۆ\\x8a\\x99\\xb3\\xca\\x03<r\\xcc\\x11\\x19r\\xff\\xd2\\xc1\\x812cD}\\x83\\xc9r\\xcc>\\xb6!=\\xa5\\xb99%\\xb5i\\xac\\xdd\\xd9\\xd2\\nv\\xdc-\\xd5^%;\\xeeqa\\xbe\\xb4\\xfd\\xf9h\\xe2\\xe3v\\xec0>w_i)X\\xd0Ĭp\\xeaELl|B\\x9by}<\\xf38\\x1bzd\\x13'>\\x1a?\\xb1\\x13\\x91X\\x90\\xb0\\x00\\xb8V\\xb0z\\rf\\xeaa\\xac\\xf8\\r\\xc3#\\x1e\\xe0L\\xfc\\xe1L\\xac8\\xa8b\\xc2\\x0f\\x8a\\xa6=o\\xa1L\\xfe\\xf6AX\\x03\\xe5\\x83ϴf\\xbf\\x99\\xcaL\\xdd\\x18\\x91W\\u007f:\\xed\\xb4\\xf9\\\"]\\xbe\\xe7R_ʢ\\x1c\\xd7<\\xa31ϴl\\xa8)/ob@R\\\\\\xc1\\x86\\x04\\xd8\\x15A\\x00'L\\xa1> `\\x19\\xeb\\xc8\\xe9zz\\x8a{\\x86\\xd8=E\\x9c\\x91\\xea\\x9e.\\xf6\\x19\\x17\\xba\\x80\\xc5\\xc0Q\\x90v?\\x934\\xed8y\\x8ft\\xdf\\x10Lg\\xf8\\u007ff\\nm\\x17\\xf5չo`4\\x00\\xbd\\x1e\\xb5\\xc1\\x1c\\x17wa\\xc7\\xeb?5\\xbd\\x8a>\\xaf\\x99\\x87\\xe3\\xe2\\x81i\\xf5\\xd7\\x03\\xdf\\xd6f\\xafIP\\xffM\\xcd\\xfdg^\\xa9\\xaf\\xa9V\\xba\\x1c\\xf9\\x1dq& ..@\\xb6C)\\xd7\\x15W\\x9d\\xc72h\\xf9^\\x97\\xacM\\xe6\\xbb|\\xachWH\\xe8\\xf1\\xff%\\xad\\xe2VI\\x8b\\xf8C\\xef\\x05W\\xc6\\xdfa~ߛb\\xfa`\\x9e\\xb41\\xf0\\xcbm\\xbb\\x02\\xbeS\\x94|\\xfbKAjN\\xcf\\xde0\\xd3y\\xe8\\xdfW\\x0f]\\xf8\\xa59x\\xe1\\xe0\\xc5\\x0f\\xe7e\\xf1\\x84;\\xc0\\xbcvZ\\x19\\xad'\\xa7\\xab+\\a\\x06\\xa5\\x87\\xd6J\\xbb@\\\\\\\"\\x9a\\xfa\\x84h\\xa4\\x91\\b\\xff\\xca\\xeb%\\xd2\\x03?\\xffEd\\x1a\\x89\\xf8x\\x9e\\xa8\\xa5\\x97\\v\\xd6\\xf4\\x93Z\\xb1ӕ\\x85\\x8a\\fU\\x03\\x97b\\x1f\\xad\\x89\\x99\\xc1\\x84\\x1e\\x83\\xd2\\xfc\\xbbes~\\t\\x82\\x80XA\\x96\\xbf\\xe4\\xd4T\\xfcu\\xbe\\xfa4izL\\xc8\\xd4I+|(3\\xc9\\xdfgfu\\v\\r]\\xa7|b\\xb2u4\\x82\\x8f\\v-\\xcc\\x13M\\xb6\\x87\\x87\\x8c\\U000c8709\\xce0\\xc6\\xf2\\x12\\xef\\x93\\xccH\\xddTm\\xb5V;\\x9f\\xe7\\xf7x\\xc3B\\x03\\x1a#+\\x1aç\\xea\\xf8\\xa8\\xc7\\x01a\\x16B\\bfm\\x01\\xa3\\xf4:\\x18'$k0\\x18\\x15-L\\xb4 \\x00^\\x80\\xb9\\x86\\xb7\\xcd\\x18\\xf5)\\x1a6\\x87W\\x1e\\x90\\x18&/.8\\xd1F/\\xa9\\xce\\xf0\\x87\\xffd\\xcc2\\xe8S겙\\xffC\\x80 \\xccXy^9a\\xbe_\\x98\\\"`\\xa4\\x9e!|\\x95\\x14\\x8diܺ\\xb5q̷Z}\\xe9\\xb7\\xfa;W(\\xf3lN@\\x83/⛽J\\xfc\\x02M\\x03_u\\xc3\\x05Bt\\xab|d\\x1a\\xa7$\\x95#\\x03Va3BƋ\\x1d\\xa1[\\x92|\\xbe\\xc6 ox\\xb0\\x1b\\xd1x\\xe4bg@\\xbcǼ\\x88\\t\\x19\\xbd/\\x87\\xc7N\\x04\\xdf/\\xa1\\xc5\\xee\\xa17\\x86\\xec\\xbe&J\\x13f\\x98\\x0f/m<q\\xb2\\xca\\x1dw:6\\v\\xe3\\xb9=\\xac\\xa0O\\xdeU\\x0f\\x8fl{\\xbb\\x1duL\\x91\\x03\\x03\\xc8\\xfc\\xe1z\\xff<x\\x1d/չ\\xfd\\x9d$\\xdf\\xe5\\a\\x80\\xb0\\x8e\\xa0\\xea\\xb3\\xf1\\x80\\xdf*\\xe8\\xeb\\xe0d\\x0eQ\\xf3\\x02\\x04 ?\\xf4\\xc2&\\x03\\xed\\xe4\\xbed缶\\v\\x9b\\x01\\xfd\\xde\\x13\\x00ʼ\\\"\\xc2\\xe5\\\\\\xc0w`\\x8e\\xd7$u0\\xe4\\xb3Y\\x00<v\\xee\\xb9O\\x05\\xd8l\\x82\\\"L4\\xa01K\\xc3\\xf3b<+I\\xabf\\x86Ŧ\\xe9\\x1eX\\\"\\xf2p\\xb4\\x9dn\\x9eY|K\\x14\\\\\\xa8\\xa5$\\xe2\\xa2_\\xffS+\\xe2\\U000b2002I\\xba\\x82\\xadϭ\\x88\\x0f\\x13c\\ue0a7\\\"\\x85\\x89P^!\\u007f\\xfa\\xc1\\xc4\\xf1\\x1b\\xcb1\\xb5$\\xc4Z\\u007f\\xc2W\\x8c/db\\x9eM\\x14T\\x9ah\\xb1\\x98\\x13\\xe9ɽ\\x956Tkz-7\\xd8}\\xcf\\x1b晎B\\xc9\\xf4\\xeah\\xcf\\xf4\\xdf.\\xbb\\xdc{\\xc5W\\x9e\\xdc3d\\xe4yǼp\\x85oϠ\\xba\\x90\\xf7\\xcc-\\v\\\\\\xf4Z\\x1b%Ǽ\\x12\\x8eS\\x14\\xfeq\\xfc\\x91\\xb4&s\\xef\\x1bS\\x88\\xe6^Euo\\x16\\xfaT\\xba\\x17\\xde3\\x92\\x8b\\xef\\xa8t\\x8b=\\x17\\x90\\xb5\\xa7W\\xa0\\xfe\\bJ\\xcbb\\xb8+WX.>\\xcaEm\\xf4\\xf0\\x98\\xef\\xa1J\\fqm\\x98\\xde \\f\\x9a\\xc8\\x17ΩSX\\xd2\\x13]\\\\\\xd8~\\x8c\\xb2\\f\\xe2\\xff\\x83\\x9aԒ\\xc0\\xc0\\x94\\xf7\\xe9P\\xf3\\xc5\\xeb\\xb8\\x13\\x04\\xe9G\\\\\\x82pm\\nT\\xd6IO\\x96\\x84\\xd8tJ\\xb9yj\\x14)b:\\xe2\\xe7\\x89v\\xbc`\\xdcu\\xfe\\x8eT\\x931\\x0f\\x01\\xd1\\xe2\\x8fF(\\xb3\\xa6\\xf3\\xa9%Ec\\x01\\x1d\\xbc1\\ng\\xeeLԧO\\xd1wjc\\xa2\\xe5vlu\\xfc\\xd0td\\x8e\\\"\\r\\x9c\\x8a\\xc0\\xfb7\\xbd\\xf6\\xd78\\rX6\\xa1qNNJ\\x1f\\x92\\x16\\x17\\x03 @Yx\\x13s\\xe6Z\\xea;1\\x98}r\\xe6Yx\\f&\\xb5<2Btu\\xfc:\\xe2\\x0e\\xf2\\x1f--=\\xce\\xca\\x13wh\\x97ω\\x85\\x8b\\xa2|ʹTO'\\xa2 ~\\xdfY\\xfc\\x1d=\\xd3\\xcaC\\x9c\\xae~\\xfe9\\x1e\\x1e\\x9fe(&\\xafʮ\\xc8\\xf8gj\\f\\xbd@l\\xc3\\xe6\\xaf߯123W\\xebR\\x87G\\xe9\\xa6\\xc6\\xe1\\x15z\\xe7XF\\b`4U\\xccY8ZS\\xaeJA\\xdc\\x06\\x8e(\\x10\\xc1\\xa6\\xfa̖Hw~\\xb4\\xa3\\xeb\\xd0>\\xea5<\\xbb\\x1c;\\xaf\\xc9p;\\xa3CK\\xact\\xcc\\x15\\xfdd\\xd2\\x0e\\xb1\\x99\\xc6c/\\xc4Uوb\\xa8ו\\x86\\x8e\\x8b\\xdc\\x1b\\x99\\xb2/\\xa0\\rd\\xa5[\\f\\x1ePc:\\xd2\\xf0\\xbeD\\x85+\\x9f\\x9c\\x10\\xc3\\x12(\\xd8\\x18r\\x03\\xdf\\x1a\\xe2w\\xf3v\\xfa#\\xe4\\xdb\\xde\\xc2Uf\\x048\\xa5\\x98%\\x8eOe\\xbc\\xcfH\\f\\x04\\xf6\\xdaj\\xa6\\xd81\\xf3\\xb9ְ\\xed\\xa5\\xe7\\xa6\\x05\\xbb\\xfc\\x8b\\xff\\xd7\\x15\\x9c\\xd6Q\\xf6\\xf1q\\x19\\xd8\\xfb\\xc5\\xe5f\\xc7x%%r\\\\zzp\\xbeG\\xa0YIV\\xf6Ϻ\\xe5\\xc2\\xfe\\xb5)\\x11\\x91\\xd0\\xc7\\xed\\xccg\\xed\\xe6\\xd0J%\\xa54\\xb8\\x14Nc\\xb8LHBl\\xfc).\\x87[`܋\\x8598\\xa5\\x14&\\xf2\\x97\\xdf*+)\\xad\\xac\\xb9ʜz\\xde\\xc2o\\x1c˷\\x13c\\x96\\x13\\x95\\x16\\x18.˛Q)\\xe0\\xdd\\x03\\xe0<57\\x84t3\\x157\\x8d~\\xb3bf\\x02\\xb3p\\x8c\\xc6T\\x10\\x00u\\x8d\\r\\x1a\\x98\\xb8\\xcdGy\\xfd\\xcf\\x11R)\\xd4c\\xd5\\x10\\xb3\\xc7N*җ\\x85\\xdc<\\x0eV\\u007f\\xa5\\x9e=\\x00\\x13ٕ\\x19[\\x90:'AoLS\\xa8\\xfb\\x97\\xac<\\xaa6Z\\xaa\\xdf_\\xbd\\xa0\\xe6\\x922*)\\\"55\\x02\\xe2\\xa2/\\xadx\\x9f\\xad\\r\\xcc\\xea\\xe8\\xd8\\xd3\\fd\\x85\\x14\\x84\\x80\\xa2\\x8bQ\\xb7&;w\\xea\\x1dS\\x16\\xe4\\x95L\\x98\\xf9\\xf7\\x98\\a\\xb7<\\xd1k[&\\x9c\\xb9\\x05^/Cӫ{\\xf3\\xf9\\x02\\xa5\\x80\\x9f\\xbf\\xf7>\\x8a\\xb9\\x18Փv(\\xbb\\x89\\x19\\xdf\\xca\\f=\\x83\\xcc\\xef߭óag\\f\\\\-c\\x83\\xcbk\\x8c\\x13\\\\\\\\\\x0eg\\xf8(\\xd9蚦q\\x94a\\x89\\xf9c\\x9eҔ\\x06uB\\x90I\\xa7\\xdb\\x0e6\\x1a\\xad}\\x9e\\x10n\\xca\\xd51\\x96C,\\xe9ە\\x8b\\xaaM.\\x97(6/\\x01\\xdf7b\\xe6\\xe5\\xddj\\xeej\\x98\\x11\\x13\\xbf\\xafh_|̌\\x06\\x86\\x82\\xdbr7\\xadZ7\\xfd\\xbd\\xd0L\\xd5\\xcfӒ\\\"o%\\x8d\\x18\\xf4\\xa0\\x9bh~=\\x91\\xaa\\xac\\xccu%\\xdb\\x16\\xf5\\a\\xc8\\xd0S\\x8c\\xe9:P\\xf2U\\x94B-\\x8d\\xb5R_\\x14\\x9c \\xdc\\x0f\\u007f\\x8b\\x96\\xca\\xdb~\\xa8c\\xadrp\\xcf3\\x13?\\x80\\xed\\xde\\xea.\\xf53\\x18}\\xbd\\xc6\\xccA4F\\x04\\x18\\xf2\\xd2\\xc8\\xff%\\xa6<\\xe8\\\"\\xca\\xca\\x17\\x82\\xb0\\xd0Fj\\x95\\x93\\xa9\\x8d\\x89\\xd1*^?\\xbe\\x9d2\\xbfŲ\\xd6,\\x14\\xce\\x0f\\x9d/$\\xb5\\xf6D\\x95\\x13\\x8d\\xbb+\\xefW\\xdf\\x1f\\xb7\\xcb>M\\x12]\\xb06\\x9dh\\xfaqghtX\\xc5n}\\x1f\\xf0<6A\\x13\\x93\\x93\\x14\\x03\\x1fJ$NPGE\\xadi2\\x02O\\xab\\xa7\\x8c{\\x06\\xd3)EKS\\xad\\xa8\\x14Ƣ\\xe3\\xbc\\xca\\xf4\\x9f\\xa1\\x8ej`\\x8f~\\x17\\x16\\xe5\\x85\\xf9u?\\x8f\\xa7ga\\xb8\\xa79)*\\x82p\\xdeQ\\x1b\\x9037\\x80\\x14lw|\\xe1\\xf8t\\r!\\xb1\\xe5\\xe6\\xae;\\xae\\xbeF\\xd6\\x14A\\xc9\\x1cAy\\x99\\x89\\xe3\\xe3m\\xe0x\\xf0J\\x97\\xc4&\\xa6M\\x98\\xba=&z}vNvֆ\\x98h\\xe8\\xbeI\\xed\\xe0\\xf8\\xc1\\x82\\xd2\\xe1و\\xb3))\\x1f\\xaax\\xeeátip\\xb1\\x96V\\\\YL\\x03\\xb3\\xd7\\x04m\\x01\\x93\\x03\\xb7\\xb8QJ\\xc8qiO\\x14\\xdf\\xf7\\xae[U|(G\\xf1\\xf3bغ\\x1b|&\\x02\\xb7\\x98\\xca\\xe4\\xa0-l\\nxmb`\\xe0\\xd212\\u05caWh+\\xfaU\\x85\\xabl\\xcc\\xd2\\xc0\\xc0\\x12T\\xad8\\xe6\\\\\\x86\\xb44\\x1f\\xffs\\xe2\\x18Tm\\xa5\\xb72Dyg\\x16\\xe7r1m\\x16\\xcf^E\\xab\\xaeX\\x13\\xb2\\x06\\x1ci\\xaa\\xa4\\xf7\\xd2!F>\\xbe\\x12\\xc3\\xe1\\xc7\\xc4\\x1e=Z9<\\x87\\xa9\\x04e\\x14\\xf8b\\x14\\xd11n\\xfdG'\\xe7PV\\v\\xadIqBq<\\xc6\\xed\\x84[\\xedп-}x_\\x91\\x02\\x8c\\xa4NvI\\xf2J\\x88\\xc7\\x14\\xdbj\\xd1Q;\\xdfb\\xc5\\xdcU\\x88\\xf8\\xa9\\xdc\\xe9;ۇ\\xa3\\xbfë2!\\xe60\\xe6M\\xcd\\r}\\x03[{\\xa3]\\xf3 t\\xeetI\\xac\\xae\\xf4\\xee\\xae\\xf3\\xbd\\x93\\xc0\\u007fEB\\xe4\\xf4V\\x94\\t\\xbeG\\xe7\\xf9yF.\\x1a1\\xa63ꋠ;\\xa2D^\\xc3U\\xfb\\x8d(6\\xd0e_\\xed\\u007f\\x1a\\x00\\xcc{\\xb4H3o\\xed컞G\\x92\\xffeA\\x98\\x02BU\\xe7\\xfe\\xf2A\\xf2\\xd3\\xfb\\x9b\\x9d\\x00\\xfd\\nVx\\xa9\\xdd\\x1f+\\x9f\\x9b\\bKݻY^X\\x1b!H\\x06\\x80\\x87\\xfe\\x19\\xcc}kw\\xc32\\xde!\\xa6N\\x84a\\x04\\xd8XL\\x86?\\xef\\x95==\\xc0\\xe3\\x8a;\\xef$\\x87\\xf4!\\x0e:v\\x1fXd\\xc3[\\xdd\\xdb2\\xfe\\xcfFa1\\\\n5\\xfa\\xc8\\xd3\\xec\\xfa\\x00\\xf9\\x97~\\xb9\\x80U\\xc2\\x03\\x12\\\\\\xedg\\r7\\x06\\xafb\\xb9\\xc3I14\\x8c\\x90:\\x885\\x1c~\\xec\\x1a\\xefA\\x9fXN\\x878\\x1a\\xd4\\xe9\\x88\\xd7\\x00\\xc3\\x13rV\\xf8\\xc4?\\x93\\xa7\\xc9V:\\xc3.!\\xc2ΘM\\xeeK\\xdd\\xc7Ro\\xf0\\xe5\\xa4\\x1bB%\\xe7V\\xb1\\xca\\xf9!\\t\\xce\\x10\\xe9\\x017t\\x96_\\xcfN\\xc6U\\xa5p\\x89\\xc9c\\xfa\\xaaM\\xfe#\\x89\\xf6P\\xd7\\x02\\xd7n\\xa8}T\\xb4\\x9b`}\\xacǴl\\xcc5\\x83*j\\a\\xd3Us\\xfe\\xff\\xf9M\\xa0?D\\xbcΞ\\x86/{\\xf2ԵZ\\xa6\\x02\\x11đ\\xf4\\x14\\xf9rH\\xde\\xee\\u007ff\\xf4\\u007f\\xac%\\xa6\\xe5\\xe6\\xab\\xf4\\x9b\\xb5b9*I\\xbe)\\xacvc*\\xda\\xc6\\x11J\\x96}.\\n\\xddͽH\\xfe\\xb5a靖\\v\\f\\xf2\\xf2Ιݨ\\x82?\\xef\\xf6\\xff\\xbc\\xc3\\xd1\\xf2\\xa3\\x1e\\xf5G'\\xde?ꆀ\\x14+\\v\\x15\\x00N\\x12v\\xd4\\xdb\\x1b\\xf3\\x91JF~\\xfd\\xda\\u007fU\\x80A\\x02\\xbe\\xaf'\\xbf.T\\x82\\xe2\\aU\\x9dͨ\\xf4|\\xd0eO\\xa61\\x03\\x11\\xf9G\\xdfU\\x1f\\xb5aM\\x8f\\x01\\x04\\xa5\\xc0x\\x8cy5k\\x87\\u07b6\\u0087\\x8e\\xfb\\x11\\xc13pP\\xd4\\x05~\\x06\\xd4\\xef\\x83\\x1c\\xe9\\xc8T\\x91.2h\\x85.\\x13hז\\xb8\\x041\\b;\\x91b*\\xcep@?4\\x1f\\xc6!\\x10\\a\\xaem\\xf0\\xa5m\\x99\\xa5\\x80\\x10LMf\\xce\\xed\\xba\\x0e\\xce\\xfbq+\\x1ao\\x12\\xb8@JL\\xc3~Ӥ\\xd9$$\\x82\\xeb\\x83\\xc9\\a\\x1ab\\xdcUh\\xe9\\xf8\\xecU\\xcf\\xc9\\xe6\\xfd\\xb0\\xbe'\\xd8-\\x13Bdj\\x9aY+\\xd5\\x0f\\xd5\\u007f\\u007ff\\x84x\\xd4\\x0fp\\xf6\\x1f\\xac\\xa8\\xa4'\\xf0\\n\\xf6\\xdfs\\xe1D\\xe3K4w\\xf9\\x1bMt\\ue8a1\\x1c\\\\CN\\xaf+\\xc8q\\x8e\\x89\\xa1\\xd4\\xef:\\x1cf\\x93f\\xe3\\xc6k1ee1\\x02\\x9eY6f\\xf1\\xc7\\x03\\xdf\\x1c\\xa9c\\xc7nZ\\xae,\\x95ZZ\\xb9\\xd7\\x10\\xc0\\xab\\xcf:U\\x94c\\xf0 \\x98\\x02\\xa9,\\x11\\x90\\u07b9\\xd6M\\x1aFFf\\x9a\\xbd.\\x1c#\\x9d\\x16\\\\\\x1cL\\xfd˄\\x14L&!L~I^qA\\xb0Mx\\xec\\x02\\xa1˦G\\x16\\x8f\\xb0G\\xa6\\x8fs\\xff\\x18\\xf1\\xa2\\xf7ŝ\\xe6\\x8cQ4H\\xab\\xe4W\\xd3\\u038bޣ`\\x1f(\\xcdy\\x88\\xc8\\xf0\\vW\\xf0{\\xbb\\xa1\\x989\\xdbw\\xb6\\x89\\xf67g\\x9b;$\\x1d\\xac\\xbew\\xb0\\x06\\xf3;\\b\\x99VP`\\xb5\\x14\\x14n|\\xa1\\xc5\\n2\\x1b\\x0f\\x14\\xee\\x14\\xae\\x13^\\x1a.\\xf6d\\x90|u\\x8a\\x8bܶy\\xff\\x17\\x98$\\xee\\xe5\\xed<\\xf3\\x8b\\xef\\xb3g\\xf7O/y\\xf8I\\x83\\xfa\\x86\\v\\x88\\xfb]\\xac<\\xbd8B\\xb5\\xf8E\\xaf\\xf2\\xd6\\x12\\xe9\\xc8\\xdc\\xcb\\xf1\\x05m\\xc7\\xc1\\xe5\\\\\\xdab\\xb8\\x1f\\xc7\\x05\\xb5\\xa0\\x05E\\x9f\\x98\\x9e\\x88\\x80\\x04\\xefy\\x90\\x8e\\x9fx\\x1a'Ϙ!\\x9e11\\xce\\u0380\\xf1g\\xc6\\xe0w\\x88\\xa4s\\x1f?\\xffQ\\x14\\xf84\\xf5J\\xad+\\xab\\x93\\xa9\\xe1\\xd0r\\xd3RA\\n0\\x80YV\\x85;\\xa1\\x0e\\x8a\\xe1P!\\xd4ů<\\xc2|\\x9a\\x18)#\\x98\\xde\\xcd15v\\xf5Y\\xefFŷ\\xffI0\\x8b\\xfayu\\xde\\x18\\x83\\ue62bxg8\\x8e\\xcdB\\xd7\\aWx\\\\\\u009f\\xa0\\x1d\\xc4\\xebh\\xb7\\x94\\\"\\x94x\\bo\\xc1D\\xcfA\\x8b&p#\\xda\\xf4 \\xfcF\\x1a\\x107\\xe1\\x13\\xb1\\xd0F\\x806\\xa1\\xf4W\\x1d\\xfb\\xff\\x9b?%\\u058c\\xf2h^\\xfa\\xd5\\b_y\\x8a\\xa0\\x83\\x06Ϝ)\\x9e\\x14\\xb0nn\\x98\\xd6\\xfe\\x8f\\\"\\x81x\\xb3\\xd2\\xd7Ӈ\\xe1\\xd1\\xeb\\xc0\\\\6\\x147J\\xcfT\\x1c\\xa3۞\\xcaƜ\\x92\\x11y\\xcd^V\\xf7~>|\\xc8|\\x10\\x16_\\x14\\xbb\\xaaA\\xa2J\\x13\\x1d]\\xda\\x1e\\xc0\\xab\\x90\\xc9e\\x82\\\\\\x0e\\x9f1\\x18Z\\xc6|\\xc0\\xcc\\x0e\\x80\\x8fK?N\\x80\\xdaɂ!\\x81+\\x10\\xd2Č34\\x8aZ \\xa5\\xc0g\\xef\\xe1N\\xe0,\\xe1\\x10\\xa0Y\\x00\\xa3\\xa8\\x906@\\xb6\\xff_\\bv=\\x00\\xf82\\x04T\\xc1p8\\x8c\\x80\\x8c:\\x1am\\xaf\\x10\\x019\\x8d\\x00\\x92A\\xd0\\fS\\x12 \\x99\\xbf\\x0e\\xb2\\x16A\\xeeM\\xd9P\\xecdH\\x1fW\\xa5q\\x19^0\\x02ݍ\\x90\\xe1 \\x84\\x82-\\ar;\\x15\\xc0!\\x18\\x94(\\xa0\\xf3\\xa8\\xce r~f\\x18\\x11n\\xf3eL\\xa9\\b؏,\\x0f\\xa2ON\\xf2\\x0f\\x82\\xff#\\xe5X\\x82\\x95W\\x16\\xe3#\\xf7\\x12\\xba\\x12Ñ\\x96\\xe4\\xb0,\\xaf5\\xe6[X\\xd4\\xd2\\b\\xe7\\x02d\\xd8\\xe0\\v\\\"i1\\xe8\\xf0w\\xf24\\x18\\xa2\\xc5\\xf0'\\xc9Pz\\xb07\\f\\x17\\xfb\\xa9E\\x10\\x9a\\xb0\\xac\\xd1=\\xb6Ȑ\\xd2Z\\x9b\\x98\\xd42&5/&\\xb8\\x88\\x8f;Y\\x11\\x93K8T\\xa4M\\x9b\\x10\\x14\\xa4N\\xb0%\\xf5[\\x9dA\\x8c\\x1b\\xd5ۑ\\x15dC\\xe3\\xe95^\\x92i ?O\\x1f\\x91\\x05\\x8a\\x8d\\x91\\xe7\\xf1D+CS\\x8fk\\xf4P\\xabJ\\x18\\xf3\\xb5\\x82̤\\x1a$f\\xa2\\x13\\xe4@xI\\xfd\\xc6Ah\\xf5\\xe6\\xdb/\\xff\\xed\\x98;|\\x05ԍ\\\\\\xd9=].\\x12\\xe0\\xfcBi\\x88:\\xfcoI\\xff\\xdcs\\x99ܪ*\\\"\\x1d;1?\\xfe\\xdb\\xd8K\\xe3h$\\x04\\xa2\\x01\\xf7l\\x9eU\\xe6\\xbec\\xfdWa\\x8c\\n*\\x88<Ne2-\\x12\\u007f\\xde\\x18\\t:\\xb3\\xf4\\x11\\xbf8$\\x0f;r<hS\\xbe~\\x02\\xeb\\xb9.\\x1b\\x1a\\xdeg\\x1f'\\x1e<6#\\xdd)\\x05\\xb4\\x86\\xb2Dl\\xfd\\xd5\\a<\\rN\\xd6}W\\xf2\\xa2\\xbf\\xf6\\xc4\\x04\\xf0~\\xd3ں\\xa0\\xadm}yق֞ s\\xb2ٜb1\\xffi\\xb1$\\xaf>^\\xc9\\t\\xf4\\u007f\\x87\\x9f-\\xa1@\\xbdb\\xa1\\x05 8jW;\\xa7cr\\xef\\nѦ\\xcdi\\xe9\\x84|j\\x1d\\x89R\\xfc\\x10th\\xa6̸\\x03I\\x8d\\xb7\\\"9F\\x01\\xdd\\x1e\\xc6>Q8b&\\x95\\x0f\\xb9\\f?\\xec\\x1e-\\x88\\x98H-\\xf6P\\uec9eB馔Bv\\x16\\x84\\xf2\\xa7\\xed*Jq\\xfc|tY\\xae\\xeb\\xa5\\x1bѪǼp\\u05f7\\xb9ǁ\\xa4\\x1e=\\x9b\\xf7\\xfb\\xf1R܃\\xe7\\x01\\xba W\\rC\\xb0j^\\x9dM\\x059\\x86\\xb0\\x1fWyf\\xd7ܽǤ\\xb7\\x95\\x82\\xf6\\xa2E\\xe8\\xb2\\xfb\\xd1ϣc\\x83\\x88\\x9ec\\x86\\\"\\xa9\\\"T\\v\\xff\\x8b\\ua95c\\xd5++0,\\xaf\\xff\\xac\\xe7!\\xf8Y\\x06~\\x95\\x03\\x19I5\\x04e\\xa7N\\x1d\\xc2l\\xc1z\\xb9\\xbb\\xd2\\x10,\\x1a=F|)`xsT,\\x1eb\\xa2\\x11\\xcacQŎpMKg\\xbe\\xc14\\xdd\\xdd'\\x83\\xe4=}?yo\\xf43\\xb7\\x83\\xb2\\xaf\\xf8'\\xe22;$\\x1dC\\x1d^U\\xe9R\\xaf\\x0ea\\n\\xb1\\xceFlh\\xf4@K\\xa3\\xbe\\xc1+\\x92j\\xe3\\xe1/\\x90\\b8\\xef,\\x94\\x13\\xa5{\\t\\xc6-JQ\\x87+v\\vɾ(K\\x05\\x11ƊY\\x1d\\xcb!\\f\\xd7\\xc5J(\\x1cNJ'3\\x0e\\xed\\xee\\xcc\\n\\xac\\xce\\xf1w \\xf3#^{\\x1bXv\\xbcX:?\\x99f\\x80\\x14@\\xf5\\xb9\\xbaY\\xf4\\x91\\xc3\\\"\\xbd'\\xd7\\xc4\\x1b?E\\x8e\\xb5\\x86\\x06\\xb1\\xf3_\\xac>9.h͂\\xadM\\v\\x9b\\x85%\\x94̍\\x8e\\t$c\\x0eJ\\xf8\\xe2\\x88)C \\xf7\\x9e\\xd7\\vϔ\\xe8_U}\\x0f\\xc9\\t\\xb2\\xd5\\xd5\\xdbbm\\x13\\x83\\x1a\\xa2\\xe1\\x8ez\\x1b\\xe1\\xae\\x18~\\x04nR\\xe2\\xa7\\\\ޤ\\x1a\\x1fZ\\xe0I\\xf7\\x1f\\xa8S\\xf3ؘ\\uf1bat \\u007f\\x19\\u007f\\xdft>\\xe2¶\\x1b6\\xfb@\\xbeg4˦U\\x1b\\x00\\x04\\x81l\\xa5\\x85?yv襶\\xb7\\xa1F\\x15\\x84 \\x94݈,\\xf8\\xb3\\xe3wW<\\xa0\\x9c\\xf1\\xf8y\\x97\\xd9\\xe3\\xa2L6\\x96G\\x14\\xd3fV\\xab @!\\xe2\\xb4g\\xdca\\x8e\\xf5\\x9c\\r\\xbf\\xdc@\\xbbsN\\x9e\\x9a\\xfa\\x0e]OJZ\\x8a\\u0378\\xa4fb\\xb3\\x94Ԑ\\xfa\\x16\\xd5@Jf\\x9a\\xb6\\xe5\\x97\\xcdlͳ\\x90\\xa4\\xb4\\x9d\\x05&\\xc9\\x11\\xb6WR\\xea\\xce\\x15\\x19\\t\\xe0\\x97\\xe7\\x8d9s\\x96O\\xd4\\xfckzW\\xf7\\x81\\xae\\xaelģT\\xb9W\\\"\\xf9\\x90\\xdd7\\x87\\x1a\\xe8\\xf0/\\xa2d\\xcf\\xcd\\xc81\\tr]\\xc6\\u05f7\\v&\\x93\\xa0\\x9aw;e\\x14\\xe4{i5\\xda\\xc1\\x85I\\xfbƏ\\u07fbnzUĝb/\\xfe\\n}\\x13j\\xcb\\xf5?%K\\x19\\xe3\\xff\\xa3\\xa2\\xac\\xfe\\x9b_3\\x02\\xa3T?\\x90ee'\\xe3\\xd6^\\x1d\\xefcr\\\\\\xad\\xacެ\\x9f\\x8bb\\xcdQ\\xfd\\x1c4\\xb1\\u05ed\\xf3\\x18Z\\xce\\xe3i\\x9c\\xa1\\xfb\\x9e\\xf6\\xfb9\\x9d\\x9f& \\x96\\xf8\\xa9\\x13?\\xee|\\xdcma\\xae\\x05\\x12蒙Tu\\x19\\xff\\xb1=\\xa2\\xd9(\\x8d)Q\\x95Ȗ\\x89\\x9dz\\xed\\x1f\\x97s\\xf2x\\xcd\\x049\\xbd\\x804\\xee\\x02yQ\\x87\\xf9 \\xf6̽{\\x8e\\x97\\xdd\\rRb\\x99o\\xd1\\xf2\\xe9\\xe3\\x10\\x1d+\\xfc?\\xcebxT\\xd2b&7\\xf2Ѯ\\x12\\x84tE\\x97\\t}\\v}\\x035rb,K\\x9a\\xc8\\xe1\\x99.O6h\\xf4w\\x905\\x8beiQ\\xd2\\u007fd[4\\xc0\\xc1DE\\xf0&T\\xfb\\xbbl\\xf2\\x1a\\x85\\x9f\\x0f\\x10\\x99\\x04`\\xbcY8\\x81\\xbb|\\x16&{\\\\R\\xb2\\xf2\\x04\\x1drg\\xf2x\\x02\\a\\xd64s\\xec\\xb4#\\xb8\\xacbF6\\xa6\\x9f\\x03I\\xb6T\\xb1\\v\\xad=B\\xba\\x8d\\xfe\\xf6(B\\\\\\xb6\\xf6\\x97<bqi\\xc0x;\\\"1\\xe5l\\xa9\\xdf\\xed\\xb8\\x94u>o\\xff\\x1bs\\xd1\\x14\\xf6\\xbfr\\xba\\r\\xecM\\xda\\x18l\\xac@_\\x90yOW>\\xf0,\\x82E\\xb9\\xfeM\\x8a\\xed\\x93vׁ\\xb2S\\x16rPI\\x15\\xeb\\xddt\\xf8%\\xbfq&\\xbe\\x03\\x86\\xe3\\xe0\\xee>\\x90-)\\xc4\\x00Oz\\x93 \\x1b\\x01\\r57\\xb6\\xb5\\xb6\\x948\\f0\\x94\\x1dZ\\xd6&}\\xad\\xd4X1}\\x824\\x1c\\xc2\\xd8Y\\x8e:\\xf9\\xf4i#\\\\\\xe7+.~:\\v\\xb7\\xad\\x19\\x1e\\x1b\\a\\x1b:\\x1f\\xdb\\x18\\x90\\xbeW2W\\x02\\x050~\\x04\\f\\xe9Ć\\x0e\\xec}A1\\n\\xec\\xe2\\x1c\\xbd\\xec\\x18x\\xb2\\x8c~\\x90>\\x99q\\x80~\\x92\\xbe\\x81>\\x95v\\x906\\xfb\\xe0]\\x1a\\xb6\\xfb\\x9e\\x97\\xb1V\\x96/0\\\"\\x8e6k\\x01\\x03X\\xe5\\xc5&E\\x8e\\x04o\\x16\\x13\\xcdBl\\xb0m]\\xe3ߗ&g\\x8c\\xbbY\\xf4\\xc9\\xde\\xe0\\xd63F\\xfd\\x16}`\\xf5\\r\\xbcp\\n\\x1a\\x10k\\xd14\\xd7\\xdf\\x01\\xdd\\b\\r\\xa0rI3X.@\\x84\\x82\\xb5\\x81\\x11U=\\xf7t\\xc7hPg\\xa7\\xed\\xff\\xae\\xa3!\\x00\\xa6\\xa1\\x93\\xf2\\x96Ӑ\\x82\\xb9hc\\x92oWa\\xfd~÷k \\xca\\xdb\\x1bؐmn\\x87F\\xceB\\xd1b\\xbf\\x99\\x1c\\xf4\\xa20\\b\\xd5\\xe8$\\xb6jn\\xb2f\\x1b\\xa7 \\xbebo\\xd9\\x11q\\x0e\\xc9XY>qBLlx\\x95&;!\\xc5\\xd2q, \\u007f\\xa1\\x13\\x1c\\xc1M\\xcca6n\\x1eR\\x86\\x9c\\xb5H\\x12\\xa1\\x81[\\xdf\\xc1[\\xff\\x91c\\xb9R.T\\x9e\\x94\\fY\\xa8\\x9e\\xc4d\\xca\\xc5(K\\x8esYl\\xa8\\xd3;\\x19Ni\\xa5\\xd1\\xcb[\\xcb\\xe6J$e\\xc9p\\xb2\\xe1\\xff\\x8a\\x98\\x98\\xa5\\x0f\\xc1\\x87e\\x05\\xb9ё\\x9e\\xd8\\x10\\t\\xe6\\xd9\\xf3q1\\xd7ҸRѧ\\xbe\\x9f%X\\x90\\x8d$!\\x9c\\xb3\\xa80}\\xbeЄK\\xb61ִ\\xb1<R\\x04\\xcb5\\xc7\\xdc\\x02s}\\xe6\\xc4\\x05,ɪzjf\\x84\\x88\\xcd27&\\x86\\xf2\\x8ca6\\xee\\xe1\\x05t\\x0f\\xd0~\\xd5KJ\\x93zK\\x184\\xcf/ĞQ\\r\\x9f8\\xcdOHS\\x12\\x1d\\xad\\xed\\xa4\\xfe\\xa3\\xd5\\xea\\x92h2\\xdd6o\\x83j\\x80\\x1a\\xeb\\x88:\\x8a;=\\\\\\x9c*\\xd7\\x01\\xdf\\x02c\\xacR\\x8f\\xcc\\b\\xd0T|#\\xc3\\xc8\\xd45Ջ\\xc6\\xe0\\uaafdbQ\\x19\\xbd\\xf8i\\xdb#\\xea\\xdbׇ/\\xef\\x00\\xd8\\xe3}\\x99h㇏?\\x1e\\x1dY\\x8d{\\xe4\\xb1\\x17\\xb6u{\\x00ːU\\x10\\xbd\\x98\\xb8\\xf8\\xb3\\xa1x\\xff\\xfa\\x86OAc\\xeb]K\\xf0\\xb3\\x0e\\xe4\\xa2C\\xa7\\x83\\xb2\\xfao\\xc0\\xf9ۻ\\x1a\\x93\\xcdr\\x06\\x1d\\xf8\\x15\\x0en\\x8c\\xfbt\\xae\\xe6\\x892!\\xfeh\\xfc?\\f\\xe1\\\\\\x83<`\\xbb\\x1f\\x88Ҷ6\\xaf\\xbe\\x8e_w7\\xb0\\xd3Ô\\xfc/\\xf1\\xb1\\xa3\\b\\xcbg׀\\xdaȶ\\xd1|GS9\\xcd\\xfd\\x19\\xf1\\x83\\x12U!fd\\xedzW\\xf2)\\xb8\\xae\\x19\\xfc\\xb2\\xce\\n@\\xbd\\x9d\\x14\\x95:7\\x92\\xfaU\\xf5\\xfe\\x1a[\\x9d\\xb9\\xa1\\x06MT\\xd2\\x1dT~\\xc9\\x1f\\x12\\xeb\\xd7ב\\x81\\xaf[\\xf6)u\\xf6\\xa9\\xf8@\\xe0\\xe4=0\\a\\xea'\\xae)^\\xb7k`\\xffyr\\x9c˥\\x99\\x93&fdN\\x9c\\x94\\xa1\\x9c\\xc8\\xc9ű\\xc4<\\xf1\\xd3\\xd6W\\x81I\\xb7\\xbf\\xcc\\f\\xab\\xfe\\x93:\\xa1~v@\\xe4\\xab/\\x013g\\x06|\\xb9\\x1d\\x19\\xa0\\xd6\\xd7kpO\\xd1\\x0e\\xe2\\x9c\\xc2\\t\\xda\\x01\\\\\\xee_ʘ\\xb5Ekf\\xa9\\xd3n7\\xc5{8)\\xd0\\x1fx^\\xa1\\x9d\\f\\xe2\\xc0tT0\\x1bE\\x92Ք\\xe9\\n\\xef\\xa1 jU\\n\\x1dJ\\xe9\\xbfNt\\xc8L\\x86\\u007f-\\xa1S\\xe0\\x17\\x19\\x15\\xa3\\xb0\\xa89\\xd7\\r\\x05\\xd3?\\x83Y\\xeb\\x0e(<\\x0e\\xf5q\\xa9\\x9f\\x87B\\xa5)\\xb6*\\xd6x\\xb2i\\xb9ʚ@1\\xae\\x18\\x93膚\\xef\\xba\\xcf\\xfcsO\\v\\xbf\\xf6\\n\\fu\\xdcb\\xbciE\\x89\\xec\\xdc\\x01\\x89\\xb8UL\\xac\\xc2D\\x18\\xb3\\x10g\\xe8\\x12\\x92\\xb1<{\\xb1\\xcc\\xed\\xe0\\x81x5\\x02\\x8b\\x8b\\x8d\\x86z\\x81N\\xcfrg@\\x83L\\xda5.\\x9ay16\\x16pR*\\x11\\x8bS\\x00z\\xabe{tM\\xa9\\x8f\\xb5\\xef4js\\xb1\\x06\\xd8K\\xe8f\\x17LھM%\\xa2\\xb3(\\xe1\\xc2fbͿ\\xc2\\xcf\\xecܧ\\xbe\\xbf\\xae&\\x04\\xf7\\xd4Õp\\xbd\\xab\\x93ܐ\\x91\\xa1\\xba\\xef\\x93Gn\\xacrK\\x95\\xe0~~\\xb5\\x1e>ql\\xc9R\\xa0C\\xa15\\xdf\\x03\\\"O\\x1b\\x8a\\xb4&\\xb6\\xeb\\xac똦@\\x13\\rz)S\\xa5\\x93\\x19\\xd8\\xd1^D\\xbf\\x1e\\x16&\\xbe/Ҋ\\x86\\xc7\\xfcn\\x9999:!al\\xecL2\\xf2\\x9b\\x06\\xf5K\\x18CNpb\\x99\\x90\\x1b\\x1f\\xa4\\x89\\xc7\\xc5\\x17\\xaa\\xa1\\xf0OfZnK@\\xf1\\xd9\\xe6b\\x90L{\\xc44\\xbf\\x93\\x98J\\xeb&{\\x9b\\x8b\\xe2-\\x87\\x96\\xfe\\x8a\\xec\\x17\\xe4\\x11ni\\xa8\\x01;\\xbfJS\\xa6\\\"h\\xe0\\x1c\\r\\x89\\xf1\\x83Yi\\xf1\\xad\\x04@z\\x9f\\xab\\xcb\\xf6\\xed\\xac9\\xb0\\xac\\xcf\\xc1곣\\x83\\x1a\\xc3<\\x81\\x85\\xa4\\xae(\\xc3\\x05\\x89\\xeb;\\xd9\\rJ\\x0eC\\xcbx|\\x182\\xc2\\x13\\xac\\x01\\xa5j\\x15\\x92\\x02P\\xea\\x18\\xe6\\xcb\\xfa\\xc5\\xfd\\xfc\\x11\\xda\\b_<S>\\xb3\\xd4\\x18\\x10\\xf6Rȹ\\xc7e\\x84>\\xe2\\\"\\xee\\xed\\x12\\x97\\xe5?\\x99{EV\\xff8 \\xaes\\x1ft˚\\xecVJS9$C\\xf6\\xaf\\xf6\\xfcW\\x194t[\\\".ܭ\\xa3\\xa3$\\x9eɗ\\xcd$:\\xf2l\\x1a^{\\xcb_\\xa7?\\xa1\\x9al\\x91\\x06\\xbd\\xa7\\x13f\\xf9\\xfa=L\\b\\xa8|\\xdcZ`Js\\x1c\\xdb\\xe7o\\x85r\\x87\\x04φg<bG\\xe3\\x82\\\\NFP\\x8a\\xb9\\x9c\\x15?Y]\\xc8xs\\xc5\\xe7\\xd1uH\\xa6l\\xd5\\xd3\\xf4\\xa9Pe\\xf0\\xb5^\\x06\\xbd\\x10LӷFFq\\x18\\x0f\\xb9\\xbeT\\xeb\\xc3\\x14\\xab5\\x91\\xe3\\xcb}\\b\\xbe\\xbb\\x15\\xfd\\x96\\x89\\xb8\\\\qb\\xd3\\xea\\r\\xf5\\xd76\\xaeٴ\\xdd\\x1e]\\r\\x10\\xc1\\xa0\\x01\\x81.\\x11\\xcf\\xc0\\x10\\xc2H\\x89r\\xefԂK\\x1e\\xb0\\xcd߀xp\\xcd\\xc1\\xc1\\x15\\x9bV\\x1f\\xe2\\xfamz\\xdbtj\\n\\xaaqp\\x88<|\\xad\\xe0\\x18\\xf4\\x15\\xa4mg\\xcd]獉Zu\\xc9\\xf5u\\x03\\xd8\\xed\\xb6Np\\x13:Vp\\xbch\\x8f[,H\\x98`5\\x9e\\x89\\xb6\\xa6꿴\\xbc\\xddr\\xb7\\x14=a\\xf6\\xc2<A\\xc1&n\\x1e\\x0f\\xf9\\n\\x97\\xe5L\\x9e\\xeb\\xe4\\r\\xf9_\\x98\\x86ZwP2\\x94ȳ\\x0f\\xd2l\\x9e\\xf7\\x901\\xd6융\\v\\xfd1K\\x8d\\x9b1\\xe5\\xdcf\\t[\\xfa<\\xe1\\xb7\\xefR\\x99߬T\\xa9F\\xd2?ʠ\\x17\\xc9W\\xf4RI\\xd2\\a\\x1aX\\x1d\\xcb\\x14\\xb8E1\\xd3\\xcd\\xc2މ\\\\&@\\xb5\\x1a}\\xa5\\xb4\\xf4\\xa9]\\x82\\xf9\\xd4@\\x85\\x95\\x99\\xfeC\\x95\\x94Y\\xe9\\xe9@\\xe7\\\"\\x04J9\\x99{\\x1fsF\\a~\\x9dk\\xd3\\t\\xe6\\xd9@'7-\\xffW\\x91t\\x10Lq\\x81F\\x82\\xd0\\xe9\\x0e\\x16\\xd7\\xfb\\x1b\\xd3<\\x9f\\xa8\\x93EE\\x1d\\x1fsU\\r\\xe2b-\\xbbKx\\xcav\\xad~\\xf5\\xea\\x82\\x1dsפWx\\xb1\\u05eea\\x1b\\xd7\\xcb\\xf516\\xcc7\\xb1\\xa2\\xbe\\x15)\\xdb8\\x0exD\\xddH\\xb9\\xfd%I\\xd5\\xc3j\\xccÛ\\xd1b\\xd9\\xf8\\x92$S~3\\xe88n\\xf9\\xd5\\xc0\\x06\\x0ep\\xf81\\nm\\xf0\\x9a\\xdd{\\xa8\\xe3짫G\\x96\\xb3W\\xacJ\\x14ă\\x1c^\\u05c9\\xff\\u0605ں\\x82؋m\\x90\\xfd\\xb1\\xe2m\\x92ّ\\xaa\\xde\\xf1;m>>ƽ\\x14\\xcb\\v\\x0e_9\\xf4\\xe4\\xc5\\xd5\\x1e=)\\xf5&\\xe3\\xa0s\\x81@x\\xa2\\xd0\\t\\xe2\\x01\\x18\\xe9P[+\\xb6\\xe7B浮.\\xf9(w\\x97R\\x10w1\\xb9Ì\\x1f.\\xb4\\x04\\xfaZ\\x91}S\\x02'\\xe2J\\xd6\\xc4\\x16\\x8f{Q\\x82l\\xf2F\\x85+\\xb3\\x19\\x88\\xf9\\xb7\\u038d\\xdaW/4\\x1ab}6\\xec_\\a\\xef\\xe75y\\xcd\\f\\x01\\xe1\\ni\\x01\\x9b\\x11\\x97&\\\\\\xd0\\xca\\x01\\x9c\\xd6\\x05\\xa3\\xc3\\xeb\\xe4\\xeeex\\xc1\\x90_\\x99\\xa0\\xf3)H\\xae\\xd3\\xf4\\x05\\xd1\\x0f/\\x19\\x97;\\xb0\\xe4\\xbf\\xf599\\xcb\\x14\\x88s\\x19\\x86\\xa4C\\n[a\\vp^\\x91ޗI\\xff\\x8f\\\"{\\xbcL\\xd4{eR\\x83L6j\\x1d\\x05\\xb3g\\xa9\\xd0\\xdd,u\\xbc\\xb1\\xd3Ѽ\\xac11\\xeb\\xa3\\xd16\\x8d\\x9ap\\xef\\xc6\\x1b\\x8b\\x03\\x8b\\x12\\xff\\xdcbS\\xa5o[h\\rRk\\xeb\\xa0\\xd0A[\\xf8}\\xaf\\xe4\\xe9'O\\xee\\xabn\\xa6\\r#\\x87\\xc6=m\\x1f\\xa3\\xb9\\xa3\\xb1c\\xb5\\xf0\\xad\\x8cO\\xac͟\\xe3\\xb0Y\\xd3b\\x16X֚\\xd6\\x00˾\\x9c\\x93\\r·\\x13L\\xc2?G<0\\xfb0#\\x81ߢH\\xb6Lp'Hq\\x8cH\\xeb\\xa9|\\xc4Z.\\x1b/\\x02\\xf1\\x86Zn,r\\xb1\\xb4\\x9b)\\x86b\\x8c\\xe8\\xf5gJ\\xeb\\xb5l\\xb2ި$\\x1ać\\xb8>TkL\\xae\\x92\\x18\\xe3\\xe9\\x9c\\x1e\\xf5\\x89\\xec\\xe5\\xa5\\v\\xe4\\xa4\\xedC$\\x03\\x0e\\x10\\xbc\\xcc\\x18\\xf3[\\xb9i\\x17\\xdd#UI\\xfaXJ\\xe5\\xb2.\\x19\\x18\\xc1\\xa4\\u007f$\\xea\\xffH\\xfeqJ\\xa2\\x8d\\n\\xd4K\\xd9\\xcdhR\\xc4oe\\xfb,\\x90 sIl{D\\x17,\\x9b\\xcc\\xc1\\xbd-\\xa5\\r\\x1eN\\xea\\xe0\\xe04\\x84\\xe4\\x1e\\x8f\\xc3x\\xabE\\xbb\\ti.\\x8ei\\x1b\\x8a\\x891\\x87\\x10\\xc3\\x16n\\xfc\\x1e\\xf7\\xcd\\xdf\\xc4\\xd1\\x166>C\\xc5\\xd0y+\\x89v\\x82\\x8127\\xcfV\\xd9^\\xc5qC\\xb1B?\\xe7\\x8e/\\xac\\xf5\\r\\a\\xabAXn\\xbcB\\x85\\xaeh\\x17\\x14\\bH\\xdbj\\x1bT m\\x06ˮ\\x97*r\\x95\\xba\\x96\\nN\\xf7\\xf6\\xaaB/e\\xd9O\\xe5\\n\\x95\\x0f\\x92\\x1f(\\x199w\\x80=\\x9b\\xfc:)e3'\\x04\\x1d\\xea0\\x99'\\xfc^\\xf3\\xbc\\xeb\\bЀ\\x03}4\\xda.\\xb6h\\xc1\\xc6\\xc7\\x1b>U \\xa1\\xde\\v \\xf8\\xff\\xbd\\xf3\\x19\\x9a\\xebi\\x80\\xc6X\\xf5l\\x15\\xec\\xfc\\v\\x8e\\x9a\\xbe9\\f\\x02$\\xcf\\xe9\\x92\\xfc\\x17\\u07fbt\\b)\\x1b\\xe1\\xd8\\xe3\\xec+\\x00B\\xe8\\xbf~\\x00dP\\x01X)\\xad\\xf5\\x9c+\\x9e3l\\x83\\x10\\x01t\\x8eN\\x97\\x8b\\xf5\\xe2\\xbfF\\xfd\\x83\\xca\\xef\\x8e\\u0088\\x8c\\xfa(\\xd2\\xdd~\\xf7ِ\\xe2\\x85D\\x17\\x02\\xbd\\x00\\xb5\\xe0\\x88v\\xf5\\xb9?\\xfbԨ\\x16\\xe3\\x03I\\xcb\\xd0]\\xb3>\\x8ei$H\\xba\\xcc\\x1f\\x14\\xd2A\\xf2\\x15\\xea\\x9f\\x1b\\xf3'\\xbfi\\x84\\xd4\\xcaz\\ue18a\\x11e\\xe7\\x8d\\xffk\\x01f\\xa3\\xeb\\x16\\b\\x01\\xfcʇ\\x12ǯwޛ\\xf7\\xd6\\xf4\\xbb\\x0fR\\x14\\x17\\xcb\\x1a'\\xf4w\\x9dJ\\nq~|ԅ\\v8u\\x80\\xa8\\x8fL\\xed\\xf1k(\\xe9!\\x9cz\\xe6\\rA'\\xec\\xb3UCs\\x10\\xd4\\xf6\\xe7^崔\\x93ۛ\\xd6d\\xfe\\x9d\\x8f\\xdaf\\xae%\\xd4j)\\xa0\\x0f\\xd2`\\xc1\\x1f\\x12d0\\a\\x95N<\\x19P\\xff^I\\x9a\\f\\xe4\\xd1\\x0ePs\\xb8\\xc4\\x19\\x00\\x92\\xd0(V\\xb1\\x86\\x06\\xd7Lr\\x85\\xd0\\x0eºJ\\xb6*\\xff\\x90\\xa3\\f8bX9\\xa8\\xfa\\xe2\\x80\\x1b쐵\\xd1\\x04)0\\x1a\\xf3\\aT\\xb8\\x1f\\xb6\\xed\\r\\x1e\\xe8\\x04Ły/?>^=\\xa5j\\xe7\\x0e\\xaf\\xe5z\\xbd\\xcbB\\u007f\\xe9\\x8f\\xdf\\x11Dh\\x0e\\xc7\\x12`\\xe0)\\x02\\xba\\xd3c\\x93\\x9b\\xc7Ӱsw\\xd9\\xea\\xc0\\xc4@\\xedG-\\xeb\\xca\\xc9WA\\xcd<Ni\\xd0\\xed\\x1b\\x1f\\xfe\\xa6\\xa8\\xf12\\xb2\\xc9k\\x96\\xbe\\x98Թ\\xc0Eq\\xf4\\xe6\\xed\\x93\\xdaC0\\xa74\\xfa\\xf6\\x89q\\xd4\\x137BX\\xfd\\a\\xde\\xec\\x8d\\x1c:\\xc3\\xf4\\xa13\\rT\\n\\xff\\xe5\\xa7\\xf0\\x01\\xec\\xeb\\x00.\\x05\\x17#_\\xe4\\xdf,:7.\\x9b\\xc7E\\x03}_*K\\x95&i\\xe6O\\x0ea\\x8e,[\\xdbJ9\\xb2%\\xe3\\xd1\\xfaX\\fg\\x99v\\xb2\\x88\\x8b\\x14\\x03\\xa2\\xa7+\\x8bdh\\xbc\\x99\\xf2\\x06\\xfc\\xd8\\x01\\x91S\\x01\\xd7a\\x82Ur}\\x9f\\xec\\x96\\xde;<9\\xe6\\xff\\x92Ij\\x90*\\x89\\x15\\xf5\\x9e\\xa9\\x11\\xe1\\x11\\xd7^&q\\x9b\\r\\x99\\x15\\xba\\xb0|\\xa0I\\nu\\xc9\\xc6<t\\xe1\\xf7\\xfcl\\x97P\\x9b:?LW\\x91ih\\xe6~\\xadw8\\uee82\\xbc\\xa2\\x05<\\xeep\\x1f\\x13\\xf9ǫqܘY\\xc3h\\xc3B\\xfb\\a\\xeec\\xf6c\\xae\\xfb\\xf6\\xf3Cg\\x1e\\xc9X\\xefٙ\\xec\\xf7\\xact\\x9c\\x8d\\xc6&)\\xb1C]\\xf3*Q\\x17Q\\xd4\\xeb\\xfb\\x98\\x9c\\xbc\\xaf\\f:\\xf8\\xca\\xf4\\x80.\\x8b\\r\\xdc\\xcfL\\x94376\\xf3\\x16V\\\\\\x1f\\xa3\\xd3\\xc2F\\x15\\xa0;0#\\xcf\\xef\\x9e\\xc0\\x13\\xf9^\\xc2ˌ[\\x9cz\\xb2;\\xbb\\xf7vN\\xce~\\xfa\\x185mCGF\\x9e.6\\xb6r\\xe9\\x8cN\\xf2\\x86\\x1dkgL\\a3D3\\xfb\\xfd6\\xe6O:v\\xfd7\\xf0\\x1b\\x1dQ\\xf7\\x01=ϞW_\\fr\\xae\\x1bC\\x8d\\x83\\xe1\\xc6\\xf0Y\\x03\\xa1\\xc6Ќ\\xa80c\\xd8\\x00\\xb4 \\xb5\\xe8\\xcc$Đ\\x11x\\x14\\xae+o\\x19\\x13h\\x18ag\\xa4\\xee\\x14ľ\\n\\xbe9\\xe3n\\xacI\\xba\\xf2\\x8bF\\xd87\\x00x\\xa2\\x87\\xdb$\\xc1#\\xd5,\\xbbޖ\\x9e\\x1de\\x97\\xa6FUEH\\x02\\xbe\\xbd)\\xf4C\\x8f\\xf0\\x0f\\x17\\x12\\x1d\\xe0t\\xf1\\x82\\x82n!\\xcḃ:ǷնH?\\b\\xc3I\\xf1UiY\\x06v\\xc0\\x9f\\xfc\\xa7\\x8c\\v\\xf4\\xfb\\x8c\\xfbt\\xb7\\xe3\\x8d\\x19\\x05\\n\\xd3G\\xfaҙ\\xb2Oo\\xe6iHy!\\x90qoL\\xc3\\xc5\\xe1\\xe9FxUl.\\xadr\\x17\\xe6\\xff\\xf0jґ\\a\\xf3\\xadu\\xff\\xc7\\xe2\\x8a\\u05f5ܗ\\xedt\\xd7\\x02$D\\xa0\\xdcZS~jB\\x1f\\xadƭH\\xd7~\\x83\\xfa\\xe5_9\\a\\x17u˜\\x16}d\\xf7\\xd0\\xc8\\xc6\\x06\\xb3\\xe5a\\x96R\\x94t$W\\x11\\xb2Q\\xbf157?R_\\x94g\\xaf\\nԃ\\xa0Y\\xf8\\x85\\x8fB5;\\xb5\\xb4\\xceO\\x17\\x97'\\x9f5\\x86\\xdaN\\f\\xe3\\xf9Σ_\\xe0d\\x15y3e3\\x96v\\x94\\xa1\\xf8]8\\xd3^\\xca^\\xe3\\u007f)&\\xed\\xdb\\x10\\xc7(\\xab`@X0\\xc3\\x1f\\xcd\\x0e/\\x18\\xd4͑\\xebn-\\x97\\x10Fw\\xd7#B\\x05\\x8a\\x0e\\xc4\\xcbg\\xa3 C\\xfca\\x1f\\xfc\\x8b/\\x89\\xd4\\x1cgnn \\xba\\x94\\xa3\\x1f\\x01n\\x99q\\x99\\x00\\xd7>Qۜpv\\xff\\xc6ܱ\\xac\\xb9&\\xbcP:\\x85\\xcf`\\x17\\xb9\\x90T\\xa4\\xb7A\\xb1\\xff\\xbc4\\xb0\\x02ϔ!\\x8b\\x94\\x95\\a9\\xb2\\xc9\\x050\\xc7۔\\xbc\\x04\\x9e(\\x85Z\\x83\\x90j\\x14kpq\\xa1?\\\"\\xf2\\xf6\\x94}%-\\x01\\xeeX\\xf9\\x0e\\xea\\x99\\xe4\\xa3O\\xf2\\xab'\\xd1\\x12O\\x15YA\\x9f\\xb6\\\"T\\x8c\\xa8-\\xf7\\a8\\x99\\x94\\xa7\\x863\\xf1oCP\\xdcߟ\\x9c]\\xa7\\x17;X\\xd4U\\xa5}QP\\xddqf\\\"H\\xed\\xd3'\\xd6w&8\\x8ag\\x9bq\\xde\\xf3\\xa8\\xfbe\\xbex\\x01\\xd5ͱ\\u007fZ\\x9a\\xe7\\xa7/O\\x05V`\\xaa\\xc8h\\x86q\\xb8\\x05\\xb1\\x97\\xc5=.~lϱ[=nW\\xcba\\xf5\\xe0@\\x92\\x87\\xa0\\x9f\\x15\\x96\\x01\\xc0ފ\\x19\\xbd\\xe5\\xc9y\\u31bc\\xe3\\x980\\x02S=d\\x1cn|Q\\xa8B\\tO\\xe1x\\xb3 2\\x8aU\\x90'Y\\xaa5n\\x19\\x86\\x88,\\xf9\\x99}Q\\xf7\\x9b\\x13CԄ\\xec[\\xe7\\x92l#э\\xf2\\xd8!cb\\xe8(\\v\\xda\\u007f\\x05k\\x00\\xe2(\\u007f\\x8d\\xb4$s\\x19\\u007f\\xa1\\x06\\xae\\xe1z=?S\\xb1\\xba\\x83\\xb7\\x10\\xd4?\\xcay\\x9a\\xb0\\x14AH\\xf4\\xb0t\\xa7\\xecX\\a\\xe16\\xa4\\x90\\x90\\xe3&T'\\xe8\\x94\\xef\\x95f\\xacv\\x1b\\xd9\\xf8\\xa4\\x90\\xa2\\xc3\\xc8\\\"3\\x1e\\x92\\xee\\x1c\\xc1\\xef\\xc4m\\xc7m\\x1as\\x05AA֝\\u00a0C\\v\\xe6\\xac^p\\xe8F\\x8c\\x9b\\x85\\\\\\x92\\x9c\\x00.\\x97\\xc4\\xf70\\xf7\\x18Ĝ\\xfaN\\xac\\x9d\\xe3\\xeca\\xcbN~\\x96\\x19\\x81bjH-\\x86\\u007fc\\xbfr\\x92\\x018z\\x88\\xea\\x15_\\xc8I\\x89\\xac\\x84\\x14\\x983\\x96k\\fd\\xd8:N\\x03Z\\x00Vw_%=\\xa0\\xd1\\x1d\\xf8\\xe2\\xa7.\\xe3\\xa6\\xc3`\\x1a_\\xc0xpG\\xb5&\\x85m\\xe5\\x90c%<\\x87\\x05\\xac0\\x0e\\xe1)\\x05\\x17\\xa5i\\x8f\\xae\\x0eX-\\x841&\\xf0R\\x1bw\\xa4->\\xd8$0\\xc2\\u007fV\\x9f\\x90\\x84\\xe9K\\xec\\x00Z\\x05\\xa1[\\b'\\x1c\\xbf&S\\x98 G\\xf5`\\xbd3\\x13\\x815\\x0e\\xa1\\xbbS\\xb2\\xf42\\xed\\xd8V\\x8d6YZ\\\\\\\"\\x81\\x97(\\x9b\\xf8\\xbcɞ[\\x80\\x1a4'\\x8b\\x9eJ\\xd1b9\\xcd\\xc6%46~@ٓ\\xff\\t\\x96\\x12\\x8e\\xe1ُh;\\x17 \\x14\\x9fAQ\\x95\\t\\aP}\\x82)\\xd6$\\xf4M%\\xe0\\xb1`\\xf7a\\x1b\\xca\\xdfT\\xbf\\xaf\\x8bN\\x8e\\x17\\xec\\xd9#\\x88O\\x8e\\xae{\\xaf\\x06~y\\ufaf5\\x0f\\xb4\\xd5\\xef{\\x13\\xa47\\xf6\\xc9\\xff\\xdf\\xe6\\x9fl\\xd6L\\x98\\x9f\\x11=\\x12\\x9c1q\\xd2\\xce\\x18\\xcf\\b\\r.,\\f\\x0eվ\\x9e<G=\\xfd6\\x88\\u05fco\\x05\\xba\\x18X\\xd74\\xb2\\xa6\\x01\\xb9}۶\\xa1\\x05.[\\x9btp\\xec\\xaa\\xe1`R\\xa0\\xb3{v\\x01i偝\\xe5\\xf1N\\x93\\u007fa\\x90\\xd9\\\\?kul\\xcc\\xec\\xb0\\xf0\\xd2\\bK\\u0098;م\\xebjp\\xd6\\x18\\xe5\\x87W\\xfbp\\x96\\x84\\x8e\\xc9GQ\\xf44\\x0e\\xb8R\\xb9\\xfe\\xbb\\x0fnR\\xf0\\x98\\xa4\\xd7Wf\\xdfI\\xa8\\xb5\\x84\\x87\\x97\\x86͎\\x89]\\x9d\\xdc.r\\xf8\\xa4\\x96w\\xdb\\xe8\\xe5;\\x97O\\xf8^\\x1e\\x13Vo\\xf2'\\x8d\\xd9\\xf1ϒ\\x10\\x99\\xf7\\t'I%\\xac\\xf4.s\\xa5\\x04=\\x98\\x12\\x84f\\xa1`\\b\\x98\\xda\\x19G\\ue992\\\"\\xd5e9\\xed\\xdd\\xd99\\x1d]\\xd9Yz\\xc3\\xfb\\xd41\\t\\tu\\x99\\x8c@\\xadS\\n\\xea\\x14r\\u007fױږ\\f\\xe0\\x05d\\xc9\\xf0\\x9f\\xff\\f\\x9eZ\\\\,\\xf2<$\\xe4 ݻ\\x13߭s\\\\\\x18B\\xcdߥ{\\x85\\x1e\\x10\\xea\\x1d/p\\v\\x1eN\\xe6\\xe2O\\xa8\\xaeV\\x01\\b\\x01\\x8d\\xa51\\xedG0\\x87\\xe7z\\xe6A\\u0605\\xaaH\\x93U|X\\x06\\x9b\\x10\\xb1&B\\xeeL\\xac\\x9cχ7\\xbac\\xd21\\x02\\x15,\\xed\\x8a$\\xceMi\\xe3+f}\\x9b\\x1c\\x19*`?\\xa8C\\xa0\\xf1\\xde \\x0e\\xf4\\x96p\\xad\\xd1\\xc0,!\\x1d\\x9c\\xd5\\xebe2#\\x83\\xba\\xc4\\xd6\\x10\\xa2G\\xf4\\xd8\\xf9\\xc95eG\\x80c\\xf2J\\xfe\\x8a\\x15|Ov\\x80mF\\x80x\\xb1c\\xc6\\\"\\xca\\v\\a\\xcc7\\xef\\xdd\\xe7\\x8c\\xd87\\x83_\\xc6fr\\x0fp\\x0fߺ\\x8b\\xbd\\xb2]\\x1fY\\t\\x8d\\xfaϿ\\xd3\\x1e\\x04\\xb5C\\xe8X{&s\\x02m\\v\\xa4x\\x8f^\\xff\\x8d\\x14\\xc3\\xf0d\\x9689\\xd0\\xd0\\x16\\xc3\\x11?ض\\xf5\\x06\\x0fM\\x03v\\x17\\x96\\vn);O\\x893F\\xc2\\x16\\t@\\xfd\\x8d+\\xb9\\\\D\\xa7\\xcd\\\"\\x9f8\\x04\\x81'/0\\x88\\x8f\\x16R\\x902\\x12o\\x91\\x92\\xf3\\xddLI \\f!Դ\\xd9\\u007f\\x8f-g\\x18츗\\xf14\\xb5 \\x80F\\x03\\b\\x1b\\x130\\xd16\\xd7c\\x8b\\x9fF\\xf9DP\\xd3N*ܓ\\x05\\xa1\\xdbk\\xf8\\xf8\\x97qix\\xe2;\\xf6B;\\x8e9UHH\\xb6n\\x92\\xee\\xf9\\x8a\\xbb\\xac\\b&QM\\xb1\\xd6=\\xfb\\xb4\\xddKP\\xec\\xde\\xfb\\bSB\\xc6l1\\x91#{\\x83X)\\xd8+\\xc5\\xd2\\x05\\xbb\\xb4e\\x93\\u009e5zx\\x14=\\x8bw\\x1b\\xa7ծ,-\\xf5\\xb4+e\\x84!\\x89\\xc4x\\xea\\xf4\\x13\\xa2\\xfc'$#5\\xc2gTH8cU\\xe36\\x04\\xa1DP|\\xaf\\x87\\xa0\\xa3m4\\x01鑵cT\\b\\xa8\\xea\\x01\\x04.U\\x0f\\xf5\\xb25\\xf6`\\xa9_\\t2\\xb1\\xf5\\xaa1kw\\x92L\\xb3wCˎB\\xdb\\xef\\xe8hxl\\xa5ظ\\xf0\\xb0\\x17ǙN\\xa3\\x91|\\xe0\\x01\\xf4\\x17L\\xf8\\xf0\\xf4\\xa9\\\"\\xc83D\\xf0\\x16\\x19\\xdc\\xfd-xYWI\\xb2~?\\x03\\xa3\\xfda\\xc3.\\xb2\\xf8<q\\xe3Ԉ\\x14\\x9d!_Ε\\x036\\x89\\x06\\xe5}\\u007ff\\x19aX\\x8c/\\xe9Û\\x1e5\\x10&ll!)H\\xc1\\x91\\xeb\\v\\x14\\xdcu<\\xac3\\xfc\\xa2.\\x80E\\x1d\\xca$G\\xb9E|\\xd04u\\xe4-+\\xa0\\ue151\\x8b\\x8d\\xe9\\x00\\xb3\\xe7l\\xc2\\x186\\x02\\x00Cqp2̣\\x1e# tX\\x89\\xae\\x0e\\x13̾=9N\\x9d\\xed\\x9d\\x05\\xf7o\\xf2O\\\\\\xc9?z\\x9d3g\\x9e\\x82\\\"\\xd6T\\xa3\\xd3O\\x02\\x80\\xe3zS\\x05%r\\r\\x8d\\x84\\xd4B[\\x88\\xe2ׯ\\x9c\\xccA\\x81G\\xd1F`\\x96\\x1f\\xbbk \\x94\\x9f\\xe6\\xa4\\xe7\\xe2\\xbbFG\\xd4&\\xa5\\xa52Z\\x18\\x87\\x93jgr8G\\a\\xf1-%\\xa1\\x13\\t\\xa1+;\\xe4Z\\x006\\x16yN\\xff\\x8b;\\xa7՜\\xa6\\x98_\\xbc\\xea\\xff\\u0096\\xcc\\f\\x9eg&\\x17o\\tB\\x96p\\xe8\\xf5\\xa0;\\xa8)|y,\\xed8\\x96\\xb2)\\x9f\\xbf\\xadX\\x8d\\x9f\\u007f\\x1cTQ6\\x1dP\\x17\\x0f\\f\\b\\x86\\x92\\xff\\xf2\\xb4\\xeeh\\x97G\\xc1\\x84R\\x90\\xd5T\\xd0\\x10\\xfa\\x9e\\xc7Lkû\\x93\\xad\\x1a \\xa2\\xc8\\xc0\\xac\\xb7\\x90l\\xbd]H\\xc1\\x13\\xc1\\xaa\\x90\\x85\\x84\\x15\\x03-(\\xaf\\r\\x10괮\\xb6\\xb9\\x11\\x84|\\x85\\xc9\\xedV+o^\\x9duq3 \\xe4|\\xb4\\xbd\\x1f\\xe1k\\x80\\xb1\\xac\\xf8\\x15\\x15\\x10ص\\x94\\x19\\x85%\\xf9ٻ5R|\\x91p\\xa7\\x03\\xed\\xafH-\\xd0xw\\xd6\\xeeF৸\\x99x\\u009d\\xd3I\\x18\\x02L\\x1d\\xb6ZG\\x8b\\x9d\\x92\\xec\\x10\\x99\\x9c\\xbfy\\x1fG\\xd4\\xe4q\\xe3\\xff\\xdep\\xcf\\xd4|\\xc29\\xb9\\x98\\x1dg\\xf3\\xf4oo\\x90\\x16\\xf2\\xfdSV\\xe2\\\"\\xa2\\xdf2r겴k\\x89\\x1bn\\xdc\\x1b!%f\\x90\\x11\\xb6c\\x00?PZ\\xb5\\xb8\\x0e\\xac\\x13}\\xc6\\xdd[\\a\\x8e\\xd0|\\xaf\\xd3\\x1bV\\x94\\xf1\\x9bbKv6\\xee\\xe8\\xf5J\\x98\\x8d\\x91\\xd8\\xe5\\xb6h\\xb1\\xb5\\x840\\xb4\\xba\\xd3\\xee\\x89RCt\\x18\\x92Ij\\b\\xd8$E\\xda(\\x17l\\x91\\x04\\xac\\x8b.\\xa0]\\f\\xa4\\\"\\xdeU\\xa6-\\x92\\u0600\\xc1\\x03I\\x00\\xc9|\\x87J\\xab\\xbe\\xf6\\x8e\\xdaU*\\x8en\\xbb\\x81\\x968\\xd5-7\\xd0P\\xa2?\\xdf\\\"\\xf7\\x15\\x108\\xba\\x94\\xf5\\xb0\\xa5\\x94\\x93\\xe2F\\xc9uV\\u007f<UBr\\tX*,#\\xb7<\\xf8[\\xa2}p5ifb\\x8c\\xfb\\xb7\\xb7]);\\x13\\x95\\xd5P\\xf0\\xdc\\x18\\xaa\\xbbj\\xbag\\xe9\\xdd |\\xf4\\x8f\\xe9\\x8b:n:9Q\\xe2\\x84P@\\xf8jE\\xc3)\\x8a\\xed\\x1b\\xaf\\xf7\\x9e0\\vk?ۙ;/\\xc4\\x11~P\\xc4\\xdc\\xe8~\\x90):\\x18\\xf12\\\"ڿ\\xb7\\xb3\\x85ޞ4&Vy\\xea\\xa0t\\xe3\\x01i)\\rۦ\\fz\\a\\x15O\\b\\xee\\x112|\\x9f2\\x84m\\xc1`~\\xed\\x8c\\xe2\\xe2\\x19E\\xc53\\xa5\\xaf\\xdb\\u007f\\xb6\\\"\\x0f\\x11\\x06\\xa0^+2ۍ\\x02\\xb4NL\\xb7\\xddh]\\xbf\\xe43~{\\xb77\\xba\\x97om\\xa4\\xfa{qZ\\fT\\x12\\xbd\\xd1Ҋ\\u07b8\\xce\\xe4\\xf4\\xd5x\\x1d\\xf4\\xfa\\f\\xcb\\xda\\x16i\\xd35괊\\x80\\x9d\\xd7\\xda\\xea\\xea\\x961\\x1b\\a\\x13CM\\xa7M\\xf3\\n(.s\\xff>\\xe4\\xe0r\\x8b\\x06\\xca\\xc5\\xc9\\x16\\xfc\\x84\\xb4.\\x15W0\\x11\\x14*\\x014uũ\\x94\\xa3\\u007fy%\\xb7\\xaeG\\xac_n\\xb6\\x82\\x9fX\\xa1\\xb6\\x1e\\xfb\\x89\\x12)k\\xce\\xeai\\x1c\\b}\\xca\\xc6\\f\\x8fM^\\x03\\x10\\x00ڤ`o\\x940\\xb7P2\\xf7\\xf7\\xad\\b-m<\\xb4\\xc0<xcdB\\t\\x902 \\xc2;H¿\\x1e\\x1d\\v\\x05\\xab\\xb3L\\xab\\xcf%\\x94b\\xdf,\\xa6\\\\\\xbb\\x1a\\xe0\\x0e\\xad\\xf8.9\\x16ZU\\x81>AF\\xca\\xfe\\xd2rn\\xd7^\\xd5d\\u007f\\x16\\x06\\x1d\\x00\\xfe\\xd3&I\\xa5%Mt(\\xe4Ax\\xe6\\xe6<҄\\x0e\\xb3\\x919\\x8c\\xa6\\xe2QR\\xc9|:\\xf5\\xfdn\\xdcGΜ[\\u007f\\x8d]\\x8c\\xe4IF\\xe9\\xa5\\xd4\\\"\\xdea\\xd4\\f\\xa5\\xba\\xe6߳\\x9c韷\\xd1\\xc6Y\\xdaR[J\\f\\xdb,\\x84\\xaf\\x8c\\xe2\\xaf\\xc1\\xd8@\\x05N\\\\\\xcd7\\x05\\xf3i\\x9fJ\\xa8\\xf8^\\x9a\\xfe.ڛl\\xb6 ȵ\\x1eH$\\xf5\\xa7\\xacTCi\\xd8\\xe1\\x9e \\xf1\\x80\\xb6O~\\\"\\x91\\xde3\\xda\\xd6\\\\\\xd9\\ta\\xf8k\\xd9\\xd7x\\xef\\xe5\\xfab\\xa83\\f\\xff\\xe3\\xa0~T]\\x02/\\x0e\\xd9\\x05\\xd8%\\xe4\\x1d\\u007f@'\\x0f\\x81Y\\x97\\xea\\xbe\\xf1 \\xb4\\b\\x8fTh'D)\\x1c&\\xb9?TA\\x04\\xb8\\xdf\\xe3\\x8a\\xf2\\xcb\\x04T\\xc6?\\xe4\\x01/\\xaf*rL!E\\xffD\\xeao\\x1a\\x00\\x8d\\x0e\\xb4V\\x1a\\xc6\\xc89\\x92nĠk\\x12-\\b:\\xeb%`\\xb2\\x94\\xc8Z\\x9a\\xe9\\x99)yC\\xc8\\xcd\\b\\x04q\\x9d\\x1f3\\xe2vm+\\xe8ӹ{t\\xfe櫲\\xa9\\x17\\xe2\\xcb\\x18γg\\xc8\\xf2p\\x13&\\x81\\r\\xc9P\\xb6\\xc2@0\\xc0\\x8b\\xf5\\xe3\\xaf\\xc7#\\xa2A\\x1b\\xbe4\\bLPl\\xbe>\\x1f\\xf9<\\xce\\xef\\xc5\\xd8=e\\xe0\\xf2懔\\xdaX\\x04\\xdc\\x13\\x00\\xd5y\\x00*\\x8a\\xdf\\xe6a\\u007fH\\xa6\\x1d\\x87ű\\xd1(\\x1c\\xb0\\\"E&B]l MES\\x03E\\x94\\x1c\\x9d\\xe6\\x8d\\x02\\x14\\xd2\\xf3\\xf3\\x9cW\\xbd\\xf8y\\xbdL\\xea\\x91w)B\\x0f\\xfbJ\\xc3\\vc\\xeb\\f\\x00h\\xeb)-\\xff\\xe8\\xc1ء4\\x9d\\xef\\xe9\\xaa-\\xa7}\\xb7T\\x9d\\xb7\\x13]\\xaa{]x\\xa4\\xb5\\xb6l|\\x0e\\xa2\\x14I\\x8cXۡ?zB0.-\\x16\\x14\\xe0F\\xf0\\x05\\xad\\xba\\rS\\xc4;\\x90Cڦ\\x82X\\x9f\\x8d\\x1e\\xbe\\xb1J3eJD\\x97k\\x11\\x1d\\xeb\\xf2\\xe3\\xee\\xa1y\\xce%|\\x93\\x86\\x94>\\xd0\\r̓ț\\xeb\\xa1؏\\x8dak^\\xef@\\xb3PXg1\\xae\\x06\\x12`\\xef\\xf8qm\\xb8\\xac\\x13_\\ng)g\\xf19\\xd4G\\x19l\\x1f\\xa1\\xa8P$\\x1a#\\xe0m\\xbc0\\xfcr=\\x9e\\x95\\xad\\xc7(\\xdbP\\xee4\\x81\\xc8\\u007fq\\xdf\\xec\\xee\\xee\\xb9\\xeeh\\xf1/r\\xcc\\x1f18\\xe1\\xa3\\xce%~<\\xdb\\x0f\\xaf|;\\xe0oH\\x80\\xae\\x95I{\\xdb\\x00u\\xc4\\b\\xa5C\\xb6\\xa7\\xf4\\x14\\x97\\xb5\\x91ɟ>\\xf6\\xcb\\x1560=\\am\\xe0Ɇ6\\x1e\\xcc\\xeb]\\xe8{\\xf9\\tT!6&M\\xd8\\xe0{\\xe5ϱU|bI\\xfd(\\x16\\\"\\x97\\x17:jaa\\xa0^\\xc68\\xe4~\\x90A\\f}\\xe5\\xaf\\xf71Uj\\xa1|\\xe8\\xd9\\xc8ƙ\\xcef\\x1f+\\xc7\\x0e\\xac\\x8d\\xca&/\\x9a\\x11\\xddD9Ӭ\\xb2\\xc4fA.!߭\\x8c]\\xf9\\xd1˃\\xeb\\xea\\xe0e`\\x96\\xe8VӺ{>\\xc4\\xd6\\xfd/pZ\\x05c\\x11>x\\xeb7Qm`+C\\xe3\\x16\\x82\\xf3\\x1b\\xc8\\xcb\\xcc˖\\t\\xd6\\x1f\\xb2o?\\x02\\x86\\x12\\xa2\\xde\\xc7\\xd1h\\v\\xb2![{5\\xb62\\xb3\\xe1\\x89B\\xd6r\\x95Y\\xdb\\x17\\xaf\\x1c+\\x96\\x8fQ\\xb8p\\x906\\x87\\xb8\\x0f|\\x8f\\x03\\xd0\\x02\\x9a=][\\x81\\x0e<;\\xe6u\\fq,-\\x87N\\x8dQ\\xa1'\\xbe\\x9a\\x00\\x82\\xe1\\xad\\xf9\\x00-\\xcf\\f\\xb8̏]K\\x1c\\xf9Z\\x92O\\x05\\xf4\\n\\x03\\xc8\\xe7\\xf2\\x02hh\\x92\\x1e\\xf3\\xa6\\xf4\\x14\\xd8|l\\xbeI\\xbe\\x13\\x19\\xbf\\x9fE~q=;K\\x03\\x18\\xd6\\xd1\\xec[\\u007f2\\x02\\xf7!\\x17\\x85\\x97'\\xf9di\\x9d\\xfeX\\xff\\xb4\\xb3]\\xb1\\xd9[\\xefg\\xfdN\\xcf\\xfa\\xd3#eüO\\x92O\\xda\\xdcE\\x98E\\xff\\x13P\\u007f\\x8aB\\x12\\x03F\\x86tJ\\f\\x94\\x96\\x11\\xaa\\x1b\\xf9\\x97\\x12I\\x8c\\xa4\\x86\\x10t\\x8c\\xe1\\xffR\\ai\\x16\\xc8\\xd8<Hɘ\\x17C\\x9d\\xafC\\x12\\x8d\\x89\\nċ\\x8f\\x9a\\x95\\x1cH\\x15J\\u007fJǼ\\x0fR\\xd6\\xdf\\xe1\\x8b\\x02r\\x13z\\xf2\\x12\\x02T\\t1k\\x8f\\xf9\\xaa\\x91\\x98k\\xab\\x1e\\xbe7\\xfd\\x93\\x1d\\xd4&^\\xf5Z\\xbe\\u007fG{\\xb7\\xfb\\v\\t\\xe1[⤸7\\x87\\x05\\t\\xf0\\x92%0\\xc7=\\xc1\\x1d\\x9b2h\\xb8\\xbe\\xd3\\xeb\\xa0R1\\xb1\\x81\\x9f\\xc0U\\xc4C\\x93\\x8ey\\xccqK\\x1do\\x1dk\\xf8\\xac\\x00\\xb0ӱr\\xe4J\\xfdy\\xed\\xe4\\x84z\\xa2Ӏ\\x9e\\x89\\x04_~-\\xc9Z\\x9a\\x05~}\\xe5A\\xbbh\\xe5\\xafg(7\\xc0\\x1c\\xd8\\xce~\\x02\\xcdW\\xa1t\\aG\\x83\\xd0+\\v\\xe4\\x1c\\x9f$\\x14\\x99^\\xa2\\xd6A\\xa1\\xbe\\x81\\x01\\xa8\\xe3\\x1aa\\x00\\xe9σ\\x11\\xb6\\xf4\\xd0\\b\\x05.\\x98ڠH\\xf0\\xc0Jۆ\\x8c\\xfd\\x17za1\\xcc\\n\\xed\\xe9,\\x04\\xea\\xb4\\x19\\x04뗼\\xaa\\x89\\xedW\\xfe<\\xcd\\xd4\\xc4F\\x95\\xe7\\r\\\\\\xc3<\\xfd\\xe7\\x95\\xf6IU\\xdc?\\x99\\xf8\\ue28eW\\xff\\xbcy\\xcfU*\\xad1\\x9e^ƜL=\\xf7\\xfd\\x9b\\u007f\\xfe^\\x1d\\x03\\xa2T\\xf8\\uecf8\\x9b\\xaa\\xdf徛\\x8a\\xeb\\x8c`d.R\\x87;\\x89\\xeb\\xca\\xc1^\\xadbPWk\\xfb\\x89KE\\xf3\\xc1\\r\\xe0\\xb2z]@/\\u007fOM\\x8f\\x83\\xfc\\x98k\\xd9\\xe0@\\x19\\xb0\\xc5u\\x8f\\x83\\xfc\\x94u\\xbeb\\xca9\\xeaE\\x1f\\x03\\u007fiW\\xce\\x12\\x17_ñ\\xa6\\x87=\\xb8\\x11ay\\a1* \\xd7/\\xbcI\\xac[\\xf1w\\x81\\x88\\x04W\\xd4x\\xe0p\\xfe\\xec\\xeaqRԅ`䶒\\xafo\\x89\\xfd\\xb4\\xd5'\\x18t\\x8c^pٳ[\\xc0u\\x99\\xbbҳ\\x89uK~\\x8b\\xb5\\x95\\xd9\\xf3i\\xa7\\xf4\\x83\\xcb\\xee=\\xfcaG\\x85\\xb5\\x97\\x1e\\xd3JϼE\\x98\\xba\\x86w\\x8b\\x91\\xdfR3\\x99\\xd3\\xc3\\xe0\\xa9\\xf4\\xf1\\a\\x90\\x17Ym\\xea\\x9c\\xc6\\b\\xbd\\x8duz\\xcc\\xfc\\x8e\\xb2r\\x1f\\x8e\\x9d\\x12wʳ!\\xb8\\xc4\\xf3Tܕ\\x91\\xa5\\xd2\\a<c\\x92\\xf7\\x9d5\\xcd:\\xbd\\xa4|\\xf3\\x1f\\x19\\xcb}d\\x96\\xd9\\x16\\xb8\\xe9\\x1e\\x96Y}\\x96W\\xbc\\x17͞\\xb3\\xa7xϜ9\\xffM\\xeecwL\\r7\\xef\\vIˀ\\xe5`\\xd9AhN\\xb83EQ\\b\\x92\\x15\\x11əFkn\\xfd\\xd6Co\\xe4\\x17\\x92\\x8fB<\\xe6m\\xf9\\xd6f\\xe3\\x1c\\xf8\\xb8\\x16\\xc5\\x0f\\xdbvm\\\\\\xe5/\\x1fx<\\xc7\\xd8l\\r`9Lҽ\\xe3\\x18\\xa8\\xe9\\xb9\\xd9ho}f\\xa6\\n\\xfc\\x11ʜ|cv\\xc3\\xf3S4\\xc9\\x1b\\x89d_\\x05\\r\\xf5\\x06\\xd2\\xfdx\\x85\\x04\\x9aC\\xbe\\x81\\xd2\\xe3\\xa3&P.b\\x98\\x83\\xe3.\\xba\\\\\\xe23\\xc6\\xff\\xab\\xe4\\xdcd+\\xf7U*G\\xf9\\x10\\xf6MN\\xc8vI\\xe7\\x05\\u05cfޅf4\\xe7`\\xc4; \\v\\x14\\xa2\\xe9\\xe2\\xe7\\xbbi+x\\x81L\\xc1a\\x8f\\xd4<\\xa4\\x878)ɾY\\xe0\\xcf'4m\\xb8\\x99\\x06D\\xcb\\xc4z\\xb1(rT,\\xee\\x10\\x8f\\x8c.\\x13ut\\xe8\\xf3\\xc5\\x1ecY{ǈ^\\xac\\u007f\\xd4>jdA(\\x82\\x03\\\"\\x1f\\xbfe\\xc1\\xea\\n\\xd7\\n\\x1f\\xffe\\xaa\\x80\\xfa\\x97\\rҾݷ\\x14\\xf7\\x14\\x89n\\xd1\\xcfj\\xbf\\xfb\\xa2\\xb8\\x8e\\x11\\xfb\\xf4\\xb5\\xed\\xc4\\xe4d,\\xf6\\xb0&煤\\xe1\\xca~\\xfbȜeS\\x88\\xc9\\xd8\\tZ\\x14\\xd5\\x14\\xafG\\xbe\\x02\\r\\x1d\\xb3\\xa6\\x94w\\x06\\xacC\\xe7\\xaa}E\\xea\\x18^Y\\xe3\\xea9~\\xdb\\xcd\\x1b\\xfb@\\xda^\\x04'Cw\\xaa\\xff\\xce\\x1c\\x1ad]\\xb0\\x90\\x98w\\x11\\x03֙\\xd3\\x1e\\xb1\\x9b\\x9eCZeƦ3n\\x03\\x88\\xa0\\x873\\xf7\\b2\\xf3\\x9a\\xa7\\xc2 ^\\xb9L\\x87\\x15HYQ\\x10r\\xca\\xcf\\x06\\xbf\\v)\\xff\\x9adt7\\x18\\xfcss\\x87\\xcc\\xdd\\xc0\\xd9\\xcd\\xfdň\\xd4\\x1a\\x87|\\x1e\\xfeQ\\xfdeJk\\xb4_\\x93\\xbb\\xa9\\xa5\\xeeѪG\\xb5=\\x89\\x94\\x83\\xe0{\\xe0^EWt\\x9b\\xd0\\xff\\x9ax\\xce\\xec\\x1by_kgZ\\x84A/\\xe1(\\xb2`\\x90d\\xc1\\xb4<'0\\xbf3\\x81\\xbcz\\v+\\xaa'\\xc6\\xe2Oq\\x9b\\x13̙\\x96j\\xe4s>1\\xc6\\xc6\\xe2\\xf3,T\\xd4m\\x12\\x92\\xe2+\\xdaM\\xfeMd}\\x92\\v\\xc5h\\x98w7U\\xbeq\\xc1\\xfe6\\xa1\\a\\x9dGD\\x03\\xff'g\\b)63.o\\xec\\xfa|&\\a\\\"\\xea\\xb4p\\xf4\\xd3fʷO,)\\xe4\\x94q\\xbf\\xe7d\\x86h\\x13\\xe5u|\\xb7\\xa9SQ\\x8f\\x05E\\x89\\xc8ۉ\\x92\\xb3\\u0381\\x941}\\xc6N\\\\}\\xf7J\\x14\\x8d\\x9f\\xf0-wz\\xb1\\f\\x13\\x8dc\\xe0\\xeeգ\\x1b\\xa6A\\x14\\xd1\\xe2\\n\\x99\\xb1\\\"\\x9a\\x04/(\\x9e\\x01|\\x82\\xfd.#e\\xf961\\xd9yS<\\x9a>\\x90\\xab\\xad\\x14\\xfd\\xff\\xbf\\x9b\\xaa\\xaax(ί\\xaa\\x96\\xe9W\\xffZ\\xfd6\\xf3-\\xa8o?\\x9c\\xe6\\xb4הGW\\x8e\\xa78K\\\"\\xfevT'\\xa7\\x8f\\x9b\\x98\\xeat\\xbc\\xa3\\x9c\\v\\xb7\\xf9\\x96xت\\x1b\\xe3l5\\x8d6\\x8f\\xdb\\xd2\\bۏI\\xae\\xde\\x06\\xbd\\x8f\\xbc{6*8\\x91\\xbeA\\xb1\\x90.\\xdc\\x18m\\xe0g\\x02\\xe3~s\\xa3k\\xaf80\\x8d\\\\P\\x00\\xf7\\x8eB\\x83\\xd7[\\xd0T*\\f4Sr\\v\\x05\\xc7\\x14\\xb4\\xc3|\\x9c\\x14\\x18F\\x88\\xbai\\xe0N\\xcd\\x19\\x1f\\xaa\\xdf2\\xa3\\x05\\xb4.m\\x81\\xb6\\xb4\\xb2\\xc9o?r\\xd8\\xf8s\\xe9\\xe9\\x13AFƤ\\x8c\\xf4I_+\\x037\\xca`[\\xc0q\\x132^\\x8c\\xbc\\xdd\\xd1q\\xe2SY\\x19K\\xa3K\\xebg\\x8e\\xd1\\xde\\xf0\\x1fE \\x13(\\xd3:N\\xd6J\\xd6t\\xeeL\\xf7>8kԎ]\\x86\\xbeDۗ+έvܹ\\x13L#.\\xa8\\xb8\\xbc\\xff\\xd4\\xcaz\\x1b0,a/\\x98L\\xf4\\x13\\xf4|\\xeec\\x93t\\xdc\\xc3(\\xc8Z\\x12\\xeb\\xd3\\xf0iE!\\x94\\x933\\x1f\\xbb\\xb0\\x045\\xbaK\\x8e\\xf2\\xda\\xd1+n\\xcb\\xff\\xbd\\xad/}A<\\x15xW\\x86#\\xf3ׅ\\x1b\\x05Y4\\x00\\xb9w\\xb0Kg\\x95\\x13G\\xff\\xccj\\x9a#\\x86\\xd0\\xf6S\\xa5%\\xbfΛ\\x8cn\\x9d\\x80`\\xdd<\\x004\\xd2\\xdb\\xe0\\xb6\\xfad\\xe7\\xf5\\xfc\\xa6\\xc5\\x00 ֞R\\xf1'\\u007f\\xff\\xa9gʻ^ \\x91D\\x15ޙ\\xfa\\xa7\\xf1\\x0f\\x03\\x82\\x05\\xa1\\x82*\\xa3\\xddW4\\xc6\\xc3Y\\xb7\\xd4Ɉ\\xd0\\xee\\x83\\xea\\xb94\\x00jZ\\xc5\\x0e\\xb5Y\\x93BSO\\xd6\\xdb\\xc0\\xf5>\\x00\\x9da(N\\x01P\\xf7\\xd4\\xd0\\xdddN\\x93FA%($N\\xb6vN\\xb7Xr!:`\\xae\\xee\\xb8\\xd7P\\xef\\x9bbiP|\\x91\\x19\\xfb\\x82\\xd5N{\\x91<]\\xc4l\\xd8L\\x9e6C\\xb0,#\\x8e\\xbb\\xeaMp\\xe0\\xd9̪\\x1f\\bi\\xf1\\xad]\\xddS|\\x03\\xf2\\xa5\\xc4~\\x99\\xff\\xe6\\x8a*\\x89\\x82v'\\x81Ç\\xfe|)\\xb5M\\x90%\\x95g\\xf9\\x9cXN\\xcd|=\\xb5\\xee\\xca\\xc0!\\xd7mT^\\xcba\\x05,\\xf9\\xd2\\xfa\\xe2\\a\\xdb\\xdfҘ\\a\\x15\\xde\\xd30\\x991鄃\\x8e\\x88\\xaaa)]\\x15\\xb8\\xe6\\xcb`\\xef\\xf7o\\xdfM\\xaf`\\x8fP楹%\\xe5&湕\\xb2\\u007f\\xb1*~\\x9b\\x8b\\xbf\\x87G\\x17\\xa4\\x9c\\xb0\\x958nC4Fز\\x96\\xfeĕ\\xa6R\\xb0\\x0f\\xa5\\u07fc\\x95\\x1e\\xc6\\x1d&\\xcfK#d\\xcd_\\xe7vͣ\\xcd\\xf9\\x9eU\\xca\\xfe\\xc0\\xae\\x9fA\\xf4\\x11\\x12+\\xd6c\\x84\\x138\\x9aRW\\x04\\xf2\\x97\\xf5:d\\xa1\\x86j\\x1d\\xee\\xff\\\"\\x88y\\x81\\xb9\\x90\\xf0.a\\xbfrޭT\\x1d\\nr8\\xfe\\x19\\x05\\xb3\\x82\\\\(\\xae\\xe49_\\xca\\xc3\\xee\\xa5q2>Ŋ3噄\\xe4x\\v\\x1dћ\\xcbB,*$\\x90\\x14´8\\x03\\x94tȭ~\\xf2\\xe1\\v\\x8c\\x004\\xf5R\\xce\\xd6\\xebjQ\\xd62e\\xf4i\\xa52\\xf4\\xa8i\\x18k\\x82\\x19\\x91,АX\\xc0\\xd0u\\xa2\\xd1֕3Љn\\xd8y\\xa9\\vkX\\xbc(\\x16ʎ\\x9b.\\xcf\\xe4\\x9c%\\xf0\\xebZ-\\xc6\\xee.\\x92\\xfa\\x03p\\xb2\\xb1\\x8c\\x93'Ɩ6\\x0f\\r\\x11\\xf4$\\x85\\xf4\\xa5\\x14\\xbe\\xf1\\xacŽd+%\\xc7t\\x812\\x8d\\x9e H\\xaf0\\xcfU\\xf2\\xa9\\xb6\\xd5.\\f\\xfb\\x01w\\xfd\\xc9 \\x97\\x82\\x83\\xbaqs\\xf5k\\x92>\\x19PŽ\\x06C\\x83\\xa9tp\\xb0\\xd42\\xc4Nr\\x95\\xff7x\\x8f\\x9f\\xcd\\x0f\\x9e*\\xde7\\xfb\\xd1wƅ\\a\\x91\\fǔ\\xcaq\\x13r\\xac\\xe0\\x85\\xf3\\xa0O\\x92=\\x14\\x0f\\x16\\rs.P+]7Ǯ\\x91\\xce\\x1fG8\\x18I\\x1f\\xdc̱\\xbc\\x8f\\xbe\\v\\xc3kƾ\\x88\\x15P\\xae\\x0eqz\\xe3\\U000e698e+\\v\\x0eOI\\r\\xd7\\x05\\x9d?\\x05\\x18`y\\u007fȯ\\xf76xC\\xd7\\xf7P\\xb2MvÊ\\xcc9Gؐ\\xf2Ҍ\\xafkLWg2펿\\x9dC|6\\xbd\\xb8%\\x06\\x00[\\xe0\\x15q\\x96\\xec[,]<\\xbc)3\\xb9\\xd0Y\\x18\\xc7\\xe6^\\xaa\\xed\\x069\\x92\\x9c\\x18\\xb7\\x04\\xaf_\\xf4\\x1e\\xad&C\\xf0\\x17Ѫ\\xec:z-\\xd0P߳|4tLV{\\xbc$\\xeb|\\xb0[\\xf4\\xee}\\x94\\xad[\\xdeFo\\x16/\\x9a\\xd2\\uea4c\\x8a~ps\\xfcM+ґW\\xe6\\xbdq\\xf5!\\x85\\xfd\\x9865\\x89 \\xaf2\\n\\f\\x86t\\x1e\\xb8\\x1an\\xbaڝ\\xae;\\xdcH]\\x81\\xfc\\xf8M\\xaa\\xd4\\xfdπ\\x80y\\xf1\\x99aa\\x89\\x19\\x1dk\\x1f\\xdc\\x00\\a\\x9b\\x0f\\xb4f(\\xe2\\x11l\\xc6̌\\x1d\\xec\\x8fAg\\x15ʄ\\x95\\xda'\\x95c\\xcb\\xc5\\xfeg\\xff\\xb8m\\x13cL\\xa7\\x0fU\\x1c\\x04jX\\xf4A㫓\\x13\\x83Z\\xaa\\xef\\xf52\\xe2\\xe3ѝ\\xa4\\x97\\xa6Ԇ7\\xe4\\xe5\\xcc\\\"W\\xe6\\xf7k\\x9d\\xe6\\b\\xb3\\xb7\\x00\\xb2\\x81#\\x00n?\\x1c\\x1c\\xbe\\x19f.(\\xec\\x0f\\xd37\\xd4\\x1a\\xf8\\xef\\x01\\xd7\\xca؇\\xa4\\xb9\\n\\xa6\\xa2\\x1a\\xfc\\xb6=\\xf1\\xf7\\xeb\\x97~F\\x9c\\xbd\\xf1ui\\xd8\\xcf\\x1c\\xd1\\xff\\x9e\\xea\\x8b]ϗ\\xc4\\xff\\n\\xe8\\x89Ycؔi\\xf7\\x15\\\\\\x12f\\xe8\\xf5\\xc4\\xcctO\\xd5\\xe1\\xa1K?\\xcd!\\xf9|s\\xf8\\xcfl\\xd7\\xf7\\x89wo\\x14^=\\xb9\\x90\\xfd\\xf3ҍM\\xfd\\xe7n<t\\u03784D\\u007f\\xfbOP\\x8e\\xc85#\\xdb\\x15|\\x0f5\\xe0\\x8fMnَ[2\\x88;j\\f\\x9d\\x8f\\x9cA\\x89\\xff\\xd8X\\xd4f\\xe5z\\xe4\\xec\\x97\\x1ewT\\xa2\\xc9\\xc5S\\ufdd2\\xa5\\xaf\\xbe䋰\\xcbd\\xb5\\xed\\xe3\\x8f\\xd5\\x12\\x0e\\xfa\\xf4\\xe9w3(R\\xdc\\xeb\\x98X4i\\xd1\\xfe\\x92\\xe6\\x93+\\xd5\\x1d4\\xf8\\xca\\xf1\\xd4\\xe6\\xa3\\xcd)\\xf3\\x86KJ\\xb2c\\x9aK\\x9c\\xf6\\x947%&}Jɢ\\xe2\\x94\\xf5k4)%\\xcdǛSF\\x96\\xa66gE\\x95\\xa4\\xe4f\\xa5\\xfc\\x9b2\\xb5\\x12%l\\\\\\xbda\\xd5\\xfa\\x94\\xe6\\x8b˧6\\x81\\xe9\\xee\\x1a\\xb5F\\xaa\\x91i\\xd2\\xc2\\xfd\\x8cF\\xbf\\xeaD1\\xd1m~\\xd2\\xfe\\xdagnU\\xbe[\\xcdQk1%\\x14\\xf2\\x13%\\xdc\\xf8\\xfa)W\\xeb\\x82i\\xdb\\xe7\\xfe\\u05cb<w\\xffh;M\\xe1\\xf2\\xf9N\\xe4A1S\\xa3f\\x89.\\x88\\xc4@\\xf5\\x1d=il}\\x90\\x1bB\\xc1\\xa3\\xf3\\xf3\\xc5\\xd0\\xe9\\xe5!\\bF\\xca\\\"\\xe6U'$\\x12\\u007f\\x15M\\v-\\x8d\\xf1(\\x9f5\\x8b\\x1e\\x1e\\n\\xa5.q\\xa2gᔘ`h\\x90\\x06\\x82b \\x12\\x8a\\x02\\t\\x1dB\\x01\\xa1\\xd4\\xe8\\xc5d\\\"8ٍ\\x05`\\x83PV<\\x82X\\x81\\xf2\\x82\\xa4QL\\xef\\xd2\\x1f\\xd7\\\\|\\x03\\x1a\\xbe\\xca\\x01\\xb2\\xc8Q\\xb2\\t\\xb8\\xc5ЀX\\x02\\xa4-\\x95!n$\\x00A\\x8a\\xbaЎ\\x00QF\\xf5\\xc9\\f\\x967\\xad\\x9f\\xcb\\x06\\x10\\xd80\\xa2\\x10I\\xc3\\x1ah\\x95L.\\x19\\xed7\\xedj\\xbc}wwؔV\\x1a|g\\xdb\\xee\\xbf_\\x82\\x8fB\\xf29\\x04\\x96$B\\x19\\xbaK\\xd2V\\x82\\b\\x0f\\xbcF\\xa0r\\x85\\x8f҃\\xe6\\x0e\\x1e!\\xc7\\xc6MwK\\b4%)\\xb0+v\\x88\\x10\\xfe\\xb0[6\\xbf1\\xab\\x80\\x19S\\x1c\\x96\\xee\\xd3E\\x8e\\xacd?٤\\xb3\\xe3\\x0f\\x8fk\\xa0\\x95T\\xfd7\\xe9\\xc5\\xf8\\x98\\x99\\x85,(\\xab\\xf6\\xd8صU\\xf9\\xfb\\xf4\\xda\\xcc3;KƟ\\x1e\\x06\\xed\\xfb\\xc5z]\\xad\\xabI\\xa6%\\x19\\xbb\\x86bt^\\xd2G\\xfa$t\\xa6{yC\\xe0?\\xc3\\\\\\xa2`\\x8e\\x12:ь\\x98\\xd0\\xeci}D\\x93\\xc4\\x15\\x8e'J\\xff\\x90\\xc4\\xdf\\xf0\\x82\\x99\\xf2\\x06\\x93\\xc8^xq\\x9e`\\xf8\\x87,|*m\\x8e\\xa7\\x16\\x98\\x95\\x04\\t\\xa5@\\x0e\\xa4\\xc9i\\xae\\xd18s\\x8a\\xf1\\xb2\\xa7\\xe6\\xdfR\\x132\\xc8f\\x8b\\xd9l*,\\xb3\\x1e\\xf8\\x1d\\xf7\\xc3.$\\x15\\xe3\\xcd\\xe1o\\x01\\x95\\x8e\\x99Û\\xfd~\\x11r\\x93\\x05\\xe7\\xd6\\xf8\\xbf[\\x18\\xcf\\x10C\\xd4}U\\xd4]\\xe8*ň\\xea\\x9b\\x18\\x1cn\\xe2\\xd5WU\\xcf\\xf6\\xfa\\xa6\\xffz\\xbf,\\x95\\xed\\xeb\\xb2n\\x10ݣ\\xd8\\xe8d\\xb6)\\xbc\\xferi\\x9ch\\x01\\x91\\x9f}rci\\xbe\\xbd\\xf8\\xcd\\xec\\x12\\x11J\\xcb\\xef_\\xf0\\x1c\\x06K\\x96=\\x05\\xdd\\rq;\\xaak\\x89\\xa5\\ri\\xa6\\x04Ky\\u007f4S.\\x13\\xcb\\x17\\xbb\\xd1ڒ\\x06\\x0eF\\x82'\\xedw\\xdbo\\xa5y7O\\x8e퉝W\\x1c\\x9c\\xaae\\xa6iS|\\xd3\\x03\\xc0?\\xa2\\x96_o>7\\x82\\\"\\xb303\\xcd\\xd2,\\x8f<\\xa6e\\x85\\x15H\\xbd2\\xc7\\xf0]J̴2Z\\xe9&\\xf4,\\xd6\\xedA\\xcc\\xc2\\xddŸYB\\xf7,\\xaa'\\xd2]L\\x98%u{H\\xb3\\x8cƑL\\xaf\\nbz\\xdb~S$)\\xd9]\\x81Q\\xbd\\xaa\\f1\\xeb\\xe5\\xf9\\x11\\x97\\x14\\x8f\\x84\\xdc\\x06\\xafh\\x87\\a\\xe2\\xa6'\\xb5{\\x9c\\x93\\x167\\xca=.7\\x151S\\xec\\xe4Y&\\xccf\\x11O\\x00ւ\\x81\\x19\\xcc?)/ĸ\\xa3\\x82\\xee-×G\\r\\xd7u纶;\\xbc\\xe5\\xc7k\\x8e\\x94\\x8fQV\\x1a\\a\\x11\\x06B\\xa9\\xe1\\xca\\x1fJ\\xc4%<\\x05\\f>\\x8ao\\xc7EW\\xee\\x92\\bO\\xda0\\xbf\\xef\\x17\\x8d\\xae\\xb1РǇ\\x01\\x14\\xc6ܺ\\xfam\\xc9=0\\xa8\\r\\x9b\\xfb[\\xe2\\xe7\\x83\\xd4lU\\xb3h+\\x11\\xaa\\xa7Mc\\x96\\x1a%*\\xaec\\xaf\\xb9E\\x0e\\x16\\xafH\\xc4\\xd9U\\x16C\\vP\\x19NYњc\\x8d\\xdb\\\\c\\xb7\\xff\\\\{\\xf9g\\xc8WYHr\\xe9\\xea\\x146\\x8beK^]\\x9a\\x1c,}\\xae$\\x9f\\xec\\xfcy*X\\xb8\\xbd\\xf1ؚF\\x99\\x87\\x8f\\x80\\xcc\\t\\xed}tǲ\\xf5\\xb6\\x8e\\x9au\\xb3~#6<}\\xb7\\xf5\\xfa\\xdd\\xef|\\xbd\\xeb\\xb7/\\x86RՂ@\\xa4\\xcc\\x19\\xe5\\v\\xc3\\xf2a\\r\\xf9ԕ\\xaf\\u007f\\xf5\\xc7\\xf5\\xd6\\xdf\\x0f\\xa6\\x12\\x9f\\x99\\xb5nb\\x87\\xfd\\xc02\\a\\xbd\\xa1\\x01\\xcb\\x1bMY\\x15\\xe2\\xa1Ҳ\\xa12\\xf6\\xb1J\\x87\\x12\\xdfOJ\\xcfhg\\xa5\\x8fp|\\x1b2\\x10\\x96\\a\\\"\\x89\\u05cb\\xda7K{\\x12\\xa9%\\xfb/d4\\x90{Π\\xd7c\\x83ˇg\\xaa\\xf59\\xe5\\xc6l5J\\xc4\\xf6*\\xbcգB\\n\\x88\\x10\\xc5V\\x0fb@H\\xb5\\xceL#\\x94\\\\\\x10\\xe8~L\\xe0gb|`\\x06cvT\\x02\\xa0\\x00\\xa3\\a\\xc1j\\xc5\\xe86u\\xce\\xd8\\xe4\\xd2\\t\\xf4a\\xee\\xe9\\xb2y\\\\O\\xd7i~\\x17\\x1f6>n4*\\xb2_Gv\\xf4\\xbeZ\\xcc\\x1cl\\xb6t\\xe8v\\xe3\\xd3V6q\\xbb\\x9a9\\x9fn\\xf2t\\x1a.5q8\\xc0\\xe2U\\xf5\\xaa\\x04 \\xa4\\xfdn\\xea\\xf2\\x98t\\x1f\\u05fc˸\\xa1\\x993\\xda\\xf5\\x0ey\\xe2\\xbaL\\xb58i\\r\\xf8\\xeb\\xfcX0\\x14\\xaf\\xda\\x06Ë[̠M\\x8d\\x1fB\\x93\\xd7\\x03:1dt\\xad\\x94\\xa6%\\x9f\\xfd\\xb3\\x96\\xd9|\\x99@\\xbb\\xad\\x82\\x8b\\x94n\\xf1\\xec\\xcf\\xd9Lw\\xa8\\xfez;\\x87\\x81@I\\xee\\x9cQ\\xb7\\xb4YL\\x06\\x98\\xff\\xff\\x17\\xf1\\x92\\xbc\\xfe:돎_\\xc4I\\xf6\\xf9\\x8fw\\xbf_N=B\\x953\\x1b\\u007f\\xfcv\\x13L\\x05\\xe7\\x1dBߋh8\\x96\\xefˍL\\xfe\\xe0gY\\r\\x91盁\\xfdئ.\\xde\\xc4%~@\\x93\\xf3\\xe8\\x81F\\xb4\\xc2H\\xed>\\xba\\xfd#4\\xadi\\xff\\x1c~\\xddӱ\\xc5\\xe1\\\\\\xce\\xc4\\x15UN\\xe2b\\t\\a\\x06v\\xdd@}`kp\\xffzg\\xe0<\\v\\x95\\x10\\x87\\u007fs\\xe1\\xe1Ԋ\\x89\\x1dg\\xf7I\\xd8H\\x04\\xc2\\xe3\\f\\xea\\x139\\u07b2h\\xf1\\x8f#\\xf0z0\\xb4\\x8c\\xb1\\x80Q:\\x92\\xc5\\xcd\\xf6\\x83\\x8d\\xd0\\xcf90`\\xce\\xdf\\x0e\\xc3e=\\xa6\\xfc\\xb6\\xbb%_\\x14\\x8c\\xae\\xe4r\\x1f\\x8d\\xc0א21V\\x9eG]\\x10h\\r\\xa8\\x05\\x10C91n\\xa4JC\\x8f\\x02\\xb2\\xd8l*\\xbf\\x86N?D \\x90\\xae1 \\xdd\\xf8h&#\\xb0\\x16\\xd2\\xc6\\xce\\xfbF(\\xc7\\xe6\\x02\\x1e\\x17\\xb0\\x9c\\x85\\x19E\\xc8\\xef\\x1d\\x85\\x88\\xa8\\xa0o10\\xf7Ĳ\\xf1^\\x83L\\xbcDFW\\x80\\xa4\\xd8x\\x18\\xbb\\x06\\xa1\\x1e\\x01*\\xa3{'\\x84\\x9b\\x00q\\u007f\\xa8\\xea\\xc1\\x88\\xe0^sMi\\xab. !>P\\xfe\\xc4(\\xb8,\\x8ft\\v\\xbc:&\\x9c\\tڳ\\xf4\\x0e\\xb9\\xbcO\\xe6\\b.\\\\\\x8eB[\\x14t:(ʥ\\xb3lH\\x861?\\xa43Q I\\x96V\\xd63\\u007f\\xde)\\xc7}\\xba\\x8d_,\\xbco\\x89\\xdb:\\xc1\\x98\\x93m\\xd0\\u007f|09{\\xbb\\xc1\\xcb̲;YR\\xf0\\xac\\xeb)\\x17\\xe3\\xca3e\\xd3\\xe3\\xcc+\\xaa\\xd9\\xd5;\\xe4\\xa1\\xe3\\xcan\\rj\\xbc\\xf6\\xb2\\xf7(\\xb5+\\xf6\\xb6\\x8d\\v\\x91\\xef\\xac`W\\xac4+\\xab\\xcaN\\x0fk\\x94\\xfbZ\\f\\xd4;\\xfe\\x869\\xb0\\x1f\\xf0\\x0fΙ\\xf0;\\x8f\\xea\\x80B]\\xdeCdw\\x99\\xe5\\xa4\\xf2dJ\\x80\\xe5ɕ1\\xea\\x14K\\x8eg\\xae\\xb3Ԕ\\xf0\\xe1\\x99)\\xa0d\\xa7\\xf2\\xb7\\x12\\xbbn\\x85\\xc2\\x04A\\xb3\\x1dc\\f\\xfc\\xc3\\xcd끷bi\\x03\\x99gG!P\\xb1#\\xd4\\xc9\\xfa\\x15\\x85\\xa9\\xe7\\x96\\x1a\\xccU\\xd3+eʇ\\x94\\xe40\\x00\\x91\\x03ƣ\\xaf#\\xacI\\xef\\xd91h\\xd5\\xd5\\xcfA\\x83\\xd3`\\b\\xfe'\\xcd\\xcd\\xca\\xed\\x8f\\xc0avt@\\x03ۯ\\xd8?\\xfa\\rJr\\x1bЅј0\\xcb\\x1cv&O\\x9fВ\\xf0\\xe0\\xe5\\x04\\xa3\\x82\\x00z;\\xad\\xa9ԩ+\\xd7QrW\\x8b\\x13.\\x91F\\xa7\\xe7\\xb6\\xe5\\xf9\\xe7;\\xedˆ3\\xaa]\\x93\\xff+d˥\\xd1\\x10o\\xa5\\xa7\\xfb-\\xffu}co\\xfd\\x8au6M\\x90\\xde?L\\x9c{\\xee\\xc0\\xa8\\x14bK\\x96\\xf3\\xedy\\xadk\\xb3s(\\xf47\\xbf\\xbc\\xf6\\x0e\\xcf7m\\xb8\\x04\\x82\\x8at1\\x18\\xc0\\x8do\\xa7\\x81\\xf9ݩ\\xc7\\xf5yWc\\x15e\\t\\xc9N\\xbd\\x03\\x04\\x9e\\xa0ĻqBk҅`m\\xe4\\x9aZ\\xcf \\xfb\\x8b\\x1c\\x96\\xb6-k\\x15h\\x92\\\\\\xa1\\xc1\\x0f\\x0f\\x8b\\xe7m\\x8c\\x83\\xc7\\x00\\xb4\\x00\\xc7xn\\x01f\\x8dA\\x02\\x83\\xac\\xad<*6\\x10\\x87\\v\\xc4<\\xf6z1\\xff\\xc0\\x1f\\xdb0\\x97w!Ɂ\\x1ai\\f\\xe32I\\x13\\x98\\x84J\\xa3\\xabp]\\x82\\x8c\\xe9T8\\x99\\xed\\x1bXk\\x18nN;\\xd1)\\xe4i\\\\\\xc8\\xcf\\x16\\xc2\\xfc\\u05ec\\x02\\x01\\a:SJ\\r\\x91\\r\\xb4Q\\x06\\xa6|WM\\f\\x8ep\\xf5(\\xcd類!\\x925@\\x9e\\x06\\x91vv_\\x03\\xf0\\x01\\x05Bn 7>\\x83\\xec/\\xc0q\\x19\\xbb\\xb1\\xea\\x93ۯ\\xe5l\\xfd}\\xdb\\x16N#\\x9d\\xea[\\x18\\x9e\\xea\\xc1\\x02\\xd2\\xed\\xc0\\xb6r\\x18\\x811h\\xfd`Cٖc\\x04z\\x93\\xf4\\x06Zڞ>\\xdd\\xc0\\xecajzY~Br\\xec\\xae\\f\\x82\\xb4\\x84C\\\"\\xb27\\xe35\\x1f\\x1a\\x93\\x86\\x1bp\\xb8\\xe0f\\xbc\\xc4;:\\xccQ\\xb6v\\xb5\\xdb\\x1dQpF\\xed\\xdev\\xdbx3\\xa62\\xe2eS5:ˈ'\\x80\\x91)*\\xabuf\\xfc\\x97G\\xa6\\x9b\\xbb>\\xbe\\xf5\\x8e\\x96~]\\x96\\t*>\\xf0Pv(!\\x98\\t\\xadu\\x99\\xc3)\\xa9\\x93\\x0f\\xad\\x1cWzP\\xd9\\x1bK\\xcb\\xce\\xe7\\x9fϞqu\\x9b\\xbd\\x82\\x83\\xd2\\xe0\\xd2\\xf6\\x0e4\\x96\\x10w\\xba[\\x0ef\\x03z\\v`\\x18Q\\x18\\xa4\\x01\\f\\xa8\\xa4\\x9f\\x17\\x16\\xd30`\\x1eCXU\\xb8\\xf6\\xdfk\\xf90_;\\\\\\xbb\\x04\\x98\\x14j\\x86\\x95\\xf4\\x905>ц\\xb1\\x00\\xe0RU\\x91\\x0f\\xad\\xb5h\\xb1.\\r\\x10\\xe0\\x1b\\x8a\\x95-\\x02i?\\xfd\\xfa\\x9e\\xd9$\\xa9\\x86\\xd0.\\xa9K\\xec\\x8aW5\\xed\\x12\\xc6 ë\\x912\\x82u\\x8cIr2@\\x8c\\x18o\\x99\\x89\\x03\\xa8XB3Y\\xe0wD\\xe5\\xdf\\xdd,\\x93\\x06r\\xe5\\x00\\x9e\\xb9\\x85\\xe7d|\\x1c\\xba$\\x99\\xdcq\\x94\\xba\\x9f\\v\\x04\\x1a)-\\xa3\\xd9g\\x02\\x81\\xcf\\x03\\xb4\\x05{\\xe4bw\\xd6z@U\\x10\\x8c\\xaa91T\\\"\\x98\\x86\\xf0\\xeb\\x0e\\x8f\\x05\\x15\\xcb\\xe92\\xa8\\x8a\\xedX\\xb9(S\\xb98\\xe0>\\x03\\xa0w䞕*4\\xca\\x1e\\x03\\xd4\\x17\\x82\\x19\\xad\\x01Dj\\xe2\\xef4\\x10\\xc6\\x19t_\\f\\xb0\\xd2\\x19\\x9c5\\x81Ñʵ\\x88\\x10\\u007f\\x1cڗm\\x8e^g\\x10\\xbb\\x8cw4\\xc3yԦ\\xfayv\\xf1\\xc9x\\xbe\\x85g\\x8eۥOEq\\xae\\xe6\\xe5ǎ\\x85\\x06VV\\xd8\\x00\\x87mȪ4\\x8929\\xb061L\\xc8\\x13`\\fa\\x04\\xd0e\\xe1\\x82M*fF%2\\xfb\\x1fw\\xea\\u007f\\xff\\x1e\\xf5\\xdc\\xc2F\\xb3\\xaa\\xa5*\\xe4\\xdcf\\xa6\\xaa\\x82\\x9c[Nh\\x14\\xa7nk-$U\\x8b\\xbd+\\xc1r\\xca\\x1dA\\x1cN\\xd5E\\xbb\\x98\\x8d\\x99\\x9e\\xf8\\xecT\\xc8JB\\u007f\\xb19\\x99\\xf4qH\\xc8oc\\xb9\\\\}ז86\\x9b\\xb7\\xa4\\xab\\x8b\\x83\\xdbr84\\xe4/W\\x8d\\xa64\\x99t($\\x96\\x18\\xbe\\rCzWۓS\\xcaC\\x11\\x0e\\u0096t\\x9d>\\xf5e\\xe6\\xfb\\xacI\\xf3\\x92\\x93\\xeb+\\xdczJ\\xa6dM\\xac\\x9a\\u0600\\xae8\\xbcb\\xe5\\xb1|\\x0e\\xd7vch\\xe7\\xf0\\xfd\\xf6\\xbd\\xe2X\\x81o\\xc1\\xf5\\xa1]\\x1b,\\xb3*\\x1a\\x8aK'O\\xc2\\x04w\\xa5\\x98\\x1b\\xaa'd\\xe4\\xe6\\u007f\\xbcv\\xe5ʵ\\xee\\x84=\\x85E<\\x94\\x1d\\x8f\\x9d]\\n\\xcej\\xe5\\xd4m\\x0f\\x1f\\x0e\\f\\x15z-\\xa3\\xa8\\u007f\\xd6W\\x17\\x8c-2\\x99\\xc7z\\xd18\\x1c\\xae3\\xff\\x14\\xc6\\xf1\\x95\\xe8\\xd3\\xd1+0\\xf5ڳ!\\x1fU-\\xda\\xc6y2*Z\\x8dT\\xcf`\\xf7\\x1bƤ\\xd6\\x12\\v\\xc1tī\\xbe`\\xe0\\xc1\\x87\\xa5ȕ\\xb2\\xdb\\x06P\\x0e·\\xae|\\x94\\xc0\\xb5\\xb5E=\\xb1\\xad/٣\\x13\\x11<\\xb2\\x04Wp\\x0f\\xf59j\\xc1\\xf1\\xe8\\x1d\\xa0\\xf89{D0\\xc2&\\xe8\\xc6\\x18/\\x9b\\xc9\\xc3\\x00ߑ\\x8a\\x17\\x91\\xa4w\\\":u\\x02\\xf0\\xe6&\\x03紲e<\\x92>\\xc7s\\xb3\\x94\\xf2\\xe6\\x03\\xa6tN\\xa2\\x9e\\xc1\\xa2\\x88/\\xc3`\\x99+q\\xed\\xdbRrܡ8\\x01L#\\x11\\x9c\\xe3.Tu\\x15\\x97\\x02\\xe5\\xea\\x1d\\x94\\x8c\\xfc\\xb9\\x14i\\xb6I\\x00\\x91N\\xb4+\\xf1^\\x82i\\x8e$\\xe1\\x13u\\xd1\\xe1\\nqo\\xbc\\xfb\\xa3\\x8c\\xdbA\\xfe.d\\xb3\\x94\\xb8\\xf6\\xff~X\\xb2\\x9a\\xee\\xfd\\xffk \\xc7\\xef؛\\xaa\\xce:\\x02\\x0eC\\xd7|\\x93X)\\xc1\\xbaf:d4\\xfc\\x9f\\x83\\xae\\x1c\\xa9\\x85\\x87:o\\f\\x16\\xb9\\xf0\\x80\\x8f\\xf9G\\xaa'QB\\xb5\\x05z\\x04\\x0e\\u007f\\x91x\\xdd$\\xdb\\x10O`\\xbd\\xbbw\\xae\\xb2i6\\xb5\\xcc\\x1ef\\x85\\t>\\x84\\x01F\\x1eQ\\x98\\xb0k\\xe5\\xe4+#\\xa6d\\x0f\\xfa\\xf6\\x94\\x00\\xba\\xf6\\x00b\\\\\\xdc\\xf7_\\xef\\xee\\x84\\x10\\xc01\\xa2a\\x991\\xae\\xaf=(}\\rF*\\u07b4\\x8b\\x1a\\xd3z{v\\x93\\x1aB7\\xf9|'<q\\xfb\\xf8\\x8d\\xcd_\\xaa\\x14\\x00\\x86\\xd0\\xc6\\xcb\\x1e?4\\xe2R\\xf2\\xfa\\x1c\\x89\\x81\\xd3\\xc2[??$\\xe5Ib\\x14b\\xd7s\\xb1\\x9b\\xbbDl\\xd1\\x1e\\x8f\\xc254\\u007fZ_\\x86\\x98\\xe8\\x86\\x11[\\xde\\xf8`٧\\v7B\\x80\\xa0H\\xb8}\\v6v'\\x9f\\xaf\\x9b\\x88\\\"A\\xeb5X\\xe4\\f\\x8f\\xf4\\xc7P\\x91\\\"\\xec\\xc3\\xe5\\xdd'\\b\\x05f\\xbb\\xa5x2\\xbc\\x11>\\a\\x99C\\xa9a(a4\\xbfz\\x8c?\\xbe\\xd0ơ\\xf0P8\\x0e-$\\xb2\\xc77\\xcd\\x18xr\\b\\xd0 $7\\xc1[\\u007fn\\x98\\xdd\\xe42Ta\\x8cB~R\\xf6\\xa8\\xcd]B\\x8dK\\x86\\x11\\r\\xd7\\xc7\\x15Ԫf2!T\\x9a*G\\xa0\\xa9\\xac\\x05<\\xb4\\xf5\\xe5\\xecNPܞ\\xf5\\xa8ݏ\\xb3\\xcd/=0\\xfd\\x91hm[@\\xfd\\xc9\\a\\x80\\xfd;\\x15Y\\x1d\\xdf\\\\\\x8e\\x111\\xb6\\x16\\x80\\x95\\xb1\\x13\\xd7\\xca\\xd0\\xf2\\xe7\\x1b\\xc6\\xf0\\f\\xa0r\\xa5\\xa7֓\\x16\\xde=\\xca\\x17*ݳC\\xcfB\\x9aw\\x1e\\xfai\\xf4\\xf6\\x0e\\xea\\xc0\\xd1\\xc6&z\\x93'\\xa9ӸA.\\x98G\\x1b+\\x18K\\x9f\\x8b\\xde^\\xf3\\xb7]\\x82]ߊ{\\xe3V\\xb1\\v\\x1ft\\x0f\\xb3\\xba\\xbb\\x1f4\\xb0믶nְ\\xa1T\\xd3\\x00\\x91uK\\xdd\\xcc0\\x8c\\x99\\\"\\xb0mL\\x1es\\x10}\\x86\\x8b1s<kef\\xe6\\xa8\\xd5N\\x15\\x8bYh\\xa4L+P#\\xe3\\x0f\\x8cwr\\\\\\xa0$8\\xcf\\x10\\xd7\\xe22;\\xd1S\\x04n\\x84ȖА`\\x9b\\xc4\\x1fɄ\\xbf{\\x90\\x0f\\xc2?\\x8a\\xf8\\x13v;\\xde\\xe9\\xa4Gt\\x85w\\xd1<\\xb8\\xf8.7\\x80~\\xf8N0%?\\x92\\x9b\\xc4s6:֡\\x86\\x80\\xf6Q\\x94C\\x06\\x929=\\x9d\\xf6\\xbeP\\x17$\\xc5cpძ\\xd2QD\\xd9x\\xe0Ӆ0\\x9d\\\"aѶT\\x87\\x89\\x9713\\x80j4\\xc0Ke\\x9e\\x95H|-\\x14\\x1b\\x9b!@<>oWc\\xbe>\\x1dI~\\x87j>\\xba\\x82\\x88\\xfc\\xa5\\x02\\xab\\f8\\xaf\\xa6M\\x96t\\xfa#\\xd5\\xe9\\x8fFX[\\x9a:\\xbf\\xf1\\bkj=ZX\\xd6\\xd9D8\\xac@\\xb4\\x132\\x80#)1\\\\(\\x82K\\xbe\\xccG\\xa7'\\xfa\\xb2\\x984\\xe8i \\x9b\\xed\\xdfE\\xe8Dl\\xa6\\x18\\xbdӊK%\\x15\\x89\\xf8줜\\x98\\x00\\b\\xaa\\xc04\\x8e\\xd9\\xf4߃\\xd3.\\x81cj\\xf4?\\x9cN\\f\\x14\\xdfR\\x9b\\xab\\x90x\\xf3\\x89\\x1b\\x90v\\xa2\\x13sv\\xce\\x14\\t\\x8d\\xb8\\x8d\\xcd\\xf8\\x88@A̘@\\v\\x80d\\xe9p\\x81/\\x06\\x13q\\xc5\\xf6\\\\\\xad\\x1e\\xd6S\\xab\\xef\\xce5&\\xab\\x8e\\uf1ab\\xbfQ\\xe9\\x19o\\u058ce\\xe9\\\\\\x10\\xf4\\xe1B\\x91\\xa7\\x1b\\r qG\\xc3B\\x83?\\x1e\\x8b\\x80@p\\xdbP\\x91\\xe4\\xe3R+I\\xa5O[\\x19\\x1d\\x89\\x00'\\xd2qgK\\x15\\xec(\\x17\\xa1\\xda \\x00~(\\x11VS(\\x1ajk\\xbe\\x80C\\xf3\\xa3q\\x84\\xb5bhՋҒ\\x13d_\\x92\\v\\x81ctA`z0(4QmT\\x17\\xc7\\xed\\xd2\\xec\\x9a\\x0f\\xf5\\xcd\\xfb\\xae\\xfe\\x0e\\xf6\\xe7\\xc1\\x9e\\x01\\x8al\\xb7iv\\xf1\\xaaV.0\\x92\\xe0\\xfd\\xc7V\\a\\xf7\\x8e\\t\\x193y\\xdd\\xc2\\xe3\\xe9-%Ub4\\tB\\xe2\\xf0>\\xe3S̷\\x8e-G\\x91\\x8fJ\\xa9u}\\x88\\x84\\xfa_\\xbd8\\xf1\\x935Ã\\xc8&z\\x90ٕNBE<\\x02\\x87\\xc0\\xd0\\xd9\\x1a\\x9d\\xc4|\\x9b8\\xad\\u007f\\xa2\\xa3np\\xd7\\x19\\x9ezQ\\xc0I>\\xc3\\x02\\xe7\\xde[\\xae\\xa2\\x12\\x89\\f\\xa1\\x9a\\x10%\\x12%M\\x9d#\\f\\x89\\xa5\\xdev\\xb3\\x80$@`\\x01<3\\x83\\xf53G*\\xddp\\xbc\\uf44bW\\\\\\xa5\\x02v\\xdaӠ0\\xca\\xc0\\xedG\\xe6\\xca2\\xc2\\x1b\\xad\\x96\\xe1k\\x1as\\xaf\\xee\\x9e\\xd9;\\r\\xac\\xf2u\\x93V \\\"\\xf1}\\xa4mb\\xe9j&s\\x1esf\\xb7\\xe7\\xee^O\\xeb\\xe52\\xef\\x05n\\xb9!\\xf2\\xfdr0\\x03[>\\xd7J\\xa7\\xfe\\xf5\\x14\\x83W鱔C#bc\\xe6\\x99i\\x1c\\x82\\v7P\\x19ˡ:\\x94xL\\x9a\\xa7\\x98\\x1b$\\x89\\x13\\xb2?\\xca\\xf8\\xb2\\x04\\x91\\xab0\\x8d\\xeeK\\xb9\\x84\\x97\\x1e֩y!\\n\\x0fw>\\xfc\\xe6\\xb1!\\xb0g!\\xff\\xe3Ƒ>\\xa3\\xd3_\\x92䰹\\x1f\\x85\\xdaz\\xf5}\\x99\\xfbЩ$3\\xfbg\\xd3?\\u007f\\xa6VΛ<\\xdd3U\\xfdzmmVy\\x81W\\xfe\\xed\\xdfM\\u007f\\xff櫜]\\xdfT\\x15\\x8a\\xd9\\x18\\xf1N\\f\\xa0c\\xbd1\\xae\\xa6Ԇ\\xd1Vc۴\\xeaɮ\\xa4\\xa6UEw\\xe6:\\x86^[T\\xa2漳\\x9c\\xb657\\xc5\\xd5XfR+_U\\x8ac\\xec\\xf1ȴ\\xdc\\xd7q\\xd2}>D\\xfd\\xf5\\xe7E\\xa9<\\xdfs\\xc6\\xdb\\xe24\\x85\\xfc\\xc1Ԝ\\x9c\\xf0Ck+\\xeb\\x0f\\rc\\xb0\\x01\\xf8\\xf9\\xe1\\xc1\\x8d\\u05fb\\xea\\xb2\\xef\\x81\\xdc\\xdb\\x19\\x87\\xb7\\xa1\\xaf\\x97\\xba\\x8d\\xc2\\xe0\\xd7'؇\\x11*\\x10\\x88Q\\x83\\x14d\\b_d\\x1ef\\xe09\\xcc\\x00\\x90GG\\xc6н\\xa8\\x153u\\x80Q\\xa6\\x06Cc5mR\\xffڞ\\x16\\xf4\\xaa\\xbb@q+>\\xbd\\xfe\\x8f$\\xc6!\\x98\\v\\x98PA`\\x14;\\x01F=\\xf6{\\x8cO\\x9e\\xbe6\\xff\\xb2\\xff\\xfb\\x9fZ\\xea\\xf1\\x1a\\x93n;\\x8as\\x82Im<氼\\xfa\\x92\\xfe\\x91\\x19a\\xcf\\x1a\\\"\\x81\\x05c\\xf0\\x04\\t\\x15\\xfb\\x9e+\\xa2\\x12M\\xdd\\xd1>\\x10\\x88Cd\\xb5\\x8axh\\xb35\\xd4+:v\\a\\xac\\xf6̄\\t\\x82\\xd0\\xd6\\xdbz!\\xa0\\x8b=:\\x88\\x9c`\\x840R\\xe4\\xbf\\x16\\x9e1sё\\xed\\xbd\\xeb\\x16!@\\x8b\\xa5\\x1d脕\\xc5\\x1c%\\x04{\\x9a\\xbdMc\\xca\\xcf\\x0e\\x8b\\xbd=\\x02\\x93\\x82\\x98!LX\\xf0\\xe0Dr\\x05$\\xb5ŗǕ\\xa94ƴ,\\xd4ڂs\\xd1ʿP\\x92\\x17#\\x97?\\xd4Q\\xa4XҖ\\x1d\\xb5\\xfc\\t\\xfb\\x8d}S\\x1ci\\a\\xd7\\x1d\\xa1\\x17\\xb1\\xdeWF`\\x94\\u0097?\\xfcڽ\\xb5\\xe6K\\xf5\\xbf^\\x18\\n\\xbdM{\\xacV\\\\\\xa9\\x15\\xac\\x8b\\xf2(\\bQ\\x81\\xf2\\xd1\\x01\\x16=X\\x96\\x1cH\\xee\\x04\\xa0\\x14Ɉi\\x80ٸڔ1\\x00-\\x95-\\xb6\\x14\\x8d\\x1ay\\xb2j\\x8e\\xfb\\xf37-o\\x10\\xec\\x98\\x10\\x9e\\xc7\\\"\\xc3͌\\xc9ou,\\x87(\\x960\\xba\\xb0B~$ȰP=z)H\\u007f}\\xa0$W \\xbc\\x88\\xb7\\xaa\\xd2\\xc5яW\\xb9\\xeb\\xa7\\xdeT\\xfb0\\xf6]\\x10Ÿ\\tx\\\\\\x18$5'\\x17\\xed\\xbd\\xc5\\xc6\\xf7\\u07b7\\x1e\\xfb\\xb1\\x80t\\x04_dS\\xe7\\x8fZ4\\x95q\\\"\\xbf\\xf5[q(\\x18[&T\\a{\\x16\\x1d\\xda5\\xe4\\x94W\\x86\\x93\\xb0\\x17\\xcd49\\xff\\xf4\\x85C\\x1cAX\\xc5(Z\\xf8\\xf3\\x17\\xdf\\x06\\xd5*\\x1e\\xc7U\\xd2\\xde6\\x8c\\xb2\\xb2\\xaf\\xd4E\\xe1\\xe6&\\xc1#\\x8f\\xb0\\xb6\\xa89c\\xc2n@X\\xc1\\xb2ܯ~8\\r\\xc1\\x18*xj\\xcft\\xa1\\x03]\\xb3gڞ\\xab\\xa5\\xc0\\xbd=\\xc6\\x13\\x13:[Ǿܨ\\x8f'\\x8f\\x9f:\\xf9\\x90\\xad\\xbb6\\xbc\\xb1\\xc9@]\\xd2\\xd85ڝ\\xdf\\x00\\xd6/ÿ\\x8a\\xdf9\\xca\\x0f\\x99\\xcex\\x9c\\xc9\\xd26\\x8f\\xd6$1\\x0f\\x0e\\xfcբ\\xeb\\x17\\x84\\xfa\\xa4'ʦy\\x1e\\x0f\\x9d\\x901g\\xa7\\x15\\x99\\x10߰wNFX(L\\x1d\\xb7\\xc2\\xd467=4֗'SBj6\\x06Ӝ\\x99\\t\\xfe\\x95\\x9cE\\x92\\xb4\\x8aId3\\x8d\\x8f\\xc8z\\x918\\x8eۋ]\\x01\\x8b\\xdb\\xc9y\\x8bC \\xccB\\xb7\\xa8\\x03O-\\xc6\\xd5s]\\xe4\\xdf\\xda\\x1bL]!\\xd0%6\\xaf\\xec9,E\\xe8r\\x97D\\x94\\x13ω\\xfa?>wO\\xa2\\x9b`=\\x02g\\xb1lc\\xc6\\x12#\\xbef\\xef\\xb4\\x1f\\xb3}\\xdfg\\xfd\\xf4\\x91tePPyBX\\xa9\\xf8A\\xbe\\x9f\\xaf\\xe5\\xd3\\xfe\\x1d\\xa5\\xeda\\x1a\\xed\\x94\\x1fN \\x94\\xfc\\x96\\xf6߶\\xccqa\\xa52\\xdfʴ!\\xef\\x94\\xf8l\\xc0淬\\xbc\\xe2˩\\xea\\xdejeډc\\xf6\\xa1D\\xbe\\xd8[\\xaf߆\\xb1\\x10S)V\\xd9\\x05Ð%5\\xa4\\xb5X\\xbc6J\\xfc\\xe8Q\\xb3\\xca<\\xf7x\\xbd\\xd8\\xc6G\\xde8\\xfb\\x86\\xa2\\x1f%\\x8b\\x17:\\x86\\x1a\\xa4t\\r\\x86\\x19\\x84\\xec\\xfeO;O\\xe1k-\\xa0$!X쏦\\x02'Qu\\xa6\\xe2g\\x04J\\xe4r\\xe9\\xadhe\\x1f\\x18V[\\xb3Z\\x8b8\\xcc\\x14\\x89fN\\xf1Q;\\xddơ6\\b\\xe6/\\x90\\xf0d\\x10t\\xdd<\\xf3\\xfc\\xb2j\\xa9&\\x9c>]\\xc5\\xd2/{'56\\n\\xd4RFG+\\xbd\\x00\\x94t\\xafc\\x81 \\x05\\xd4m\\xfe\\a\\x99\\u007f\\xe5\\x8dbf̵\\xbd\\x10\\x85\\xe5'Gՙz\\xf5o\\x8cC\\xcc~\\xf9Ć\\x86\\x89\\xf2A\\xbc\\x83\\x90\\x03\\x81ҕ\\x8d\\xa0\\x82Z\\x84\\x0e\\xe0\\xc5\\xf2˦\\x0eBG\\x90A\\xc0\\xe2A\\f\\xc8\\xcc>\\x90mj\\\"\\xb3\\x04\\xb7>\\x14\\xb1pL\\x1bQB7^0O\\xb6\\xa3\\xab\\xa4\\xb3yܟ)1S0s\\x1e\\xfe^i\\xaf\\x06ˬ\\xf6\\xc8BCΞ\\x9c\\x96՟\\xaa\\x90\\xf6\\xf9\\xfdR\\xe8\\xae\\x0f\\u007f\\xfc\\x014\\xe3C\\xfd\\xcb¬ŪE\\fL\\xd83䴣\\x82A\\xbb\\xd6@,ȟny\\v\\xfe\\xddXku\\xe9A\\xab\\x8e5\\x03\\x9d\\x80\\x98\\xcd\\x1f\\xb8\\xc5E\\x86n\\xb9\\x00\\xbd{c\\xac\\xf4\\xa97\\xb0\\xb0\\r\\xba\\x8c\\xdb\\xcf\\xcdB\\v\\x1c(\\xc0\\xbd\\x9c\\xf1\\\"W#\\x13\\xccc;\\xd0\\xd9cZ{\\x01iw\\xef\\xcet^,%?\\x93\\xdb\\x03h:\\xf4\\xfa\\x01\\x03\\x06\\xadY3F\\x104R\\a%\\x99B\\xf3c\\xba5\\xe0\\xcc)\\u007f\\xe7\\x8e1\\x8a\\xbd{\\x92\\x9c#7\\xe6\\xf5\\xfa\\x14n\\xcb%=\\xa0H\\xa7͋\\xea\\xec-@\\x86\\xa4:\\xc3\\x11\\t\\xf8\\x85\\x10\\x95\\xe4 %\\xb7\\xab$-\\x109\\xbc&s\\xac~\\x1b\\x004\\x06\\xab\\x86\\xb3\\x04\\x84\\xfc_*hKh\\x13\\x96b\\xf6aF\\xb5\\xe2\\xe2\\x92 \\x99E&\\xb5H\\x17\\xbf98W5\\xdc_\\xfc\\xd6\\xe0\\xc3Kf\\fUx\\xbf+x\\xf5\\xc9\\xdalUpNhJs3\\xf8\\xbe\\xb7b\\xe6L\\x91*0\\xf6\\x1a,}-\\xa7\\xec\\xda\\\"w\\xb6\\xb68y\\u007f¯\\xa4\\x18\\x1d#\\xdb#\\xbd\\xaa\\xdeM\\xe8\\xe6)\\xa4M\\x19\\xc5I%\\a\\xc1\\x83\\xca\\xc8\\xec\\\\e\\x89\\xd6\\xdf]\\xe8\\x0e\\xef\\xfa\\xe4q\\xf8{\\xff\\xd7㓂2\\\\R\\xd7o\\xa4u4/^¿\\xf7b\\xd8n\\xf4\\xac\\xaf8&\\xd9\\x15M_\\x1a\\x05\\xa15\\x81Yۃ\\\\B\\x96\\x1cQ\\xf8X\\xb5\\xed.\\xae\\x1c<\\x1e⸢\\xf4\\x82-2gk\\xab\\xf104\\x89\\xde\\x13\\x9a.\\x88U\\x9d)\\xd5\\xe1\\xd96YeyF\\x88\\xf4\\xe0ֱl\\x89B\\x1bt\\xc8\\xeaJ\\xbb;A]t\\t\\xabM\\x85v\\x99\\\\\\x1f\\x14\\x1e\\xa4w\\xd7ӳB\\xdc\\x05\\x93\\x02\\xa7\\x8b\\xfd\\xaa\\xb2\\xa1\\xafLA\\xff\\\\\\xec=^4\\xbe\\x19\\xc5\\x03K\\x1f\\xae\\xb0\\xc9V\\x18\\xddS*\\x94yƈF\\xb7\\x8f\\x93\\x949\\xef%\\xee\\x16\\xaf]^;\\x93\\x94\\xbb\\x94݁\\xdfʾ\\xfb\\x15f~\\xa2+x;\\x8f\\xb6u*\\x9dcY\\x8fCI\\xa3\\xacY\\x95\\x8d2Zd\\xa2ԏ\\x9e\\xa7\\x8eK\\xf3\\xfb:\\a@sb\\x9d--Nm\\xbaj}\\x8c\\x18Y<\\xea߶G_N\\a\\xf9\\xaccAu\\xbf\\xce\\xf9+\\xf5\\xf9\\xb0\\xb5Ϫ\\xeb\\xd3UIݩk_\\xd8\\xd0ڔ\\x9c*\\xb5/&c\\xdb4\\x86\\x8b\\xb7\\xb4/\\xc2H~t'%.-\\xfa_\\xc9\\xc7_2Z\\xc5\\xff\\xdfG\\x90=&\\x97\\xee\\u007f\\xbeү\\x85JÂy\\xe1\\x11\\xcc\\x12o\\b\\xf7d\\xf9\\xd4\\xf9\\x8emO\\xcaO\\xd7z\\x1d\\xf3\\xa2\\xf5\\x95\\xf9\\xb1\\xb5a\\xebU{(މ\\x1b\\x0e\\xb0%\\x1b\\xf6*\\xd9[jL\\x11>Zv\\xa0\\x17g\\xf9\\xa5\\xc0:t\\xf64:\\x00T&\\xc1\\xa6}\\xd7\\xc0w\\x8d\\xfe\\xca9U\\xd4\\xd7/|\\xe0\\x1c9\\xff\\xe1\\xb3\\x1bx\\xb5>\\xdd\\xdd\\xfc?\\x8e\\xdbw\\xcc\\xea=}\\x0e\\x8f\\x06\\xceaO\\xbf\\xae\\xdf\\xe7\\x8aw\\x1e^\\xe9\\xb5N_\\xd9?\\xf3\\xba\\xbe\\xf9\\x18\\t\\at~ɞU\\xfb_\\x14\\xfeΗ\\xf6#xM\\x13\\xc3}\\xf3\\x8e\\xbe\\u007f\\xd4?zU\\xc3\\v\\xfa#\\x17\\x1b\\xf5\\xea\\xafg\\x9b\\xd3\\xd1fn7\\xf4\\xcbTӭ'S\\xd1\\xc3#x\\xd1\\xd7\\x04\\x8f\\xd5\\x03\\xb3\\tx\\xee*U\\x8e\\x1e\\xaf\\xedi\\xb3\\xfbE\\xa17\\xf0\\xf6-W\\xb9\\xcb\\xfa\\x05\\xf7\\xbb\\xab\\xbb\\xf0ʴ\\xf1\\xfa\\xbd\\xeb\\xee6\\xc1\\xfd\\xbb\\xbej\\xe9\\xdd\\xcb\\xcd\\x03\\x8d\\x82UŜ\\xfc\\xb8H2\\xb4}\\x10\\xd3\\xcf=\\x06\\xa3\\x9bП\\xe1\\xf3\\xf3\\x91\\xa1l\\x16\\xe2q\\xe2\\xb1>d\\x87\\x0f\\x95\\xbf\\xb1\\xc1\\xb3\\x84t4Уz\\xab\\xb1zq5\\xadq\\xeaCC\\x16d\\xce\\f\\x98\\x99\\xb9@Q\\xb7\\xbaxg0\\x85\\xba\\xa2\\t\\xeb\\xf4\\ta\\xe5\\xfd\\xff\\x9b\\x9ea\\xc2\\x039\\x90\\xa7\\xfd\\xa8|wXc\\f%l\\x91\\x12\\x04CE\\x9a\\xf0o\\x06\\x9a4\\xaerq\\x0f\\u008b\\xba\\x8dx\\x9f\\xd8\\x16\\xe8\\xe6z[\\x8ew\\f\\x1b!Չr\\xa7IX\\xd2\\x10\\x93\\xff\\xdf+\\x15\\x01\\xd51\\x94\\xacg\\xfc\\u007f\\xf3\\xd9\\xec\\xff\\x0f\\r\\xe9\\xfc\\xfe1\\x17;\\xf77R\\xcc}\\x8b\\x98\\x84M\\x1bm\\x12\\xbf)\\xa7i\\xca^\\x89|\\x81\\xa7|\\xb5\\x1b\\xce*\\x9e=\\x11\\x02\\xd8\\x02\\xea~\\xca~\\xea\\xfd\\x94\\xb5K\\xb5!\\xfe/\\xe3\\x8f\\xeacP\\x9fxS\\xe2AΣ3\\xf7\\xe6n\\xebfo\\xe3\\xc4\\xde\\xf3\\xdaW;|\\xb2z\\xd0X-\\x11\\xd2\\xd6l-\\xd5.\\xe9\\xd0\\xff\\x86\\xf2\\xaa\\xef/\\xb0\\x11\\xbdԿ⯴\\x9a3\\x9eW\\x147z\\x1e\\x88r\\x86\\xbb\\xcb\\x1ee{\\x06\\x8fn#Z\\x8b\\x8b\\xe96\\xc6Qz\\x8a\\xb9r\\x93\\x1aM\\xd4\\xea<\\x19\\x8az\\xb2QD\\xf5\\x91<\\x84(HJ\\x97F\\x18/\\xf0%(\\f?Z\\x96O\\x9f\\xa6A\\xd1y\\v\\xa3Ӳ\\xd0\\x11\\x12*\\x1b\\x8c\\xd2{M.!V\\xa9XN\\xfe\\xf5l\\xa1?\\x0e}pu\\xb0^\\x8c\\xa0'\\xa5Ќܧ9o\\x16粅B\\x12\\xe7:\\xaf\\x94:\\x8an\\x9c|.ir\\xe2ߍ\\x9dG\\xf7\\xe1\\n\\xc9\\xca\\xc4\\f\\v\\xcb\\x04\\b\\x8f\\xec\\xc4G\\xc0V\\x9fi\\x10\\x889Z\\xa6_\\x83\\xa8\\xa9y_\\b\\xf9\\xbaQ\\x91\\xf2\\xb9%\\xab\\x03I}\\xc8|ߑ\\x16d\\xac\\xafs\\x8f\\xc5E&\\x14E\\x94\\x107WE\\xd9\\xd7\\u05f7%M\\xd1$d\\\\3\\xba\\x9b\\xf5\\xedWN#x/\\xab\\xfa`1\\xfdJ\\x1a>+\\xd88\\xd6l\\xb1\\xda\\\"\\x8d66\\x1a\\xf3\\xb3:\\x13\\x1eg\\xe3\\x06\\xc8\\xfa\\xba9!8\\xceQbZ\\xdeI5\\x06\\x05\\xb4\\x86-(<F\\xac\\xffX\\x8d\\xee\\xe5M\\uf54b\\x91\\xd3d\\xf6+\\x1e\\xe2h\\a\\x0e\\xb7\\xe1j\\xf0P\\x8e^\\xcf\\x18\\xf5*z8\\x1f!$PE\\xc5\\xe1\\x01\\xd8F\\xb3\\xbdm\\x85\\x8d\\x8aR\\xe7$m\\xd2\\xf1\\xa6㎖\\x99\\x85H\\x05\\xb9\\x12T\\x17\\x9b\\xceq\\xc1\\xbf\\x8c\\xe5v1\\xe8\\xf3\\x10I\\u007f\\x10\\x15l\\xd0\\xcd?\\x14y\\x13\\x86-6X!\\x83M\\xe0K\\xb1\\xd8m\\xa5\\xf4\\xe8M{\\x99j\\xf1\\xf7g\\xfc\\xc5g\\xe5k\\xb1\\x8e\\x9f\\xde\\xfd;\\xa9\\x04\\x99\\xcd\\xf1\\xda1\\xb30\\x8e<\\x89P<a\\xa9/\\xda\\xfd\\v\\xbd\\x8b$z\\xe2I\\xb8\\xaf#\\xa09;A\\x1eb\\x9d\\xe8M\\x918\\xc9\\xd0\\xfa2\\x87\\x85Oi6\\xa2\\x06~\\xd7\\xca\\x02ʶ\\r\\xce\\xf2\\xaa.\\a\\xe0\\xde8 \\x1b-\\xd5!C\\xb7-\\x1d\\t\\xbc\\xfe\\xc1\\x85\\x04\\x81\\xa8\\x88\\x87\\xa7\\x036\\x96\\xa4\\x9e\\xea\\xef_\\xa6gG\\xecy\\xbf/\\v\\x1e\\xd2\\xed\\xbbm\\xfcx\\xd33\\xdc\\xd2o\\xc5\\xc8N}M\\xaa\\x96\\xc5\\xd4LqI@՜\\xe6\\x1fE\\xd6\\xc4&̩\\x91\\xc5\\xe4ؾ:h\\xdcJ\\x8fw\\xb1\\xa3\\xe2b\\x05\\x0e\\xe4\\xa4\\xd8\\fS\\xee\\xe4_I5\\x84\\xf7\\xe0\\xc7#\\xab\\aQծ\\xf8)\\xc0\\xba\\xa4\\xbfN\\xc6HOV$\\xf0\\x1dHc\\xac\\xb1\\x9a\\xa2\\x99.\\xa1^Jg\\xdb\\xf5\\xfe\\xfe댓\\x9e\\x9eE\\x12eH\\xa8\\x13q\\x89\\xa9\\x81\\xf1\\\\\\xd7\\xfbAn`D\\x0f\\x9f\\x970:u\\xea\\xd2\\xe4\\xb9\\xfa֣\\xb47H\\xcfRޭ8\\xdaQ\\x93R\\xec\\xb8vfCʆ~\\x1f\\x87\\xc8\\xe1ۿ\\x1a~\\xe6\\x9aC\\xec\\xb8~\\xda\\n\\xe0}\\x00\\x95}O\\xf7j\\x04\\xad<\\x97eoǆ\\xd3h\\xbbjx\\xad\\xd8\\x1bbjv\\xd1\\x04]\\x81\\xbcV\\x01m\\x978.\\xeeV\\xf9\\xf9\\xe8\\a\\x1a\\xedh+\\xef\\x16\\xf8{)\\xc9u\\a\\xb9\\x1f%y\\xb2i\\xb8\\x14\\x02\\x1e\\xc1\\x03$\\x85W\\xec\\xc1(6\\xf5\\xc1\\n^\\x9b\\x18S\\xb3\\xf4\\xb8`7\\xc57\\xb8\\x9aU\\xb9|\\xcdQҊ\\xd8=\\xe8yg\\x13\\x11\\x1f\\x9e\\xacB?\\xc6\\x1fO:\\xbdfy%ku\\xb7\\x82r\\\\p\\xbć\\xdeL\\xb2*\\xa2\\xcb\\x12\\x0fۻw\\x88+\\x8a\\x81y\\x1e\\x003\\xb0\\x83\\xbb#\\xb33\\x8b\\xed1o@q\\x17\\xf1W\\r\\x9b\\x87䲈Ǝ\\x93\\xb6\\nw\\xaa\\x15H\\xeft\\x88\\xfd\\xcb\\xcf3\\xd4.\\x19\\xd5\\xc3P\\x8f\\\\\\a\\xed\\xa8\\xcepa\\x0e\\xd2c\\xae\\x93\\xaf-\\xccE\\xff(\\xfe\\x8cn\\xd9\\xff\\x98|)\\x86>\\bf\\xc4H\\xe6\\xaf]\\x88\\x8a;\\x8eH\\u007f\\xc6\\xc2\\x1a@\\r\\x9b\\x99\\xa3l\\xf6\\b>\\xe6\\xfe\\x96撠\\xe28\\u07b2\\xf9\\xba\\x80\\xbd(!\\xbc\\xb4\\xf72~\\xea\\xf9\\xbc\\u007f\\xfe9\\xc4z\\x14\\xbbx\\x11\\xd8\\xd8o]_\\xd8\\xdd\\b\\x80\\x89\\xd1\\xfe\\xfau\\xc0;l\\x16#\\x00\\x84\\xe33\\xbf\\t\\xf8\\xf4f\\xfb#\\rTW\\x13\\xb2\\xbf\\x03\\x9a\\xb2R{yd1\\xe6\\x90d\\xef\\xef\\x93l\\x85\\xd4H\\x8dzӔ[\\xba}\\xf2YH\\xaf=\\x06\\xbc\\x8a\\x9cLہq\\x9a\\x02q\\x84\\xc9؊E\\x8c)˗8\\\\\\xb6\\xc0\\xca'c\\x9e\\x02ʫ}\\x82\\x00C\\xa9\\x8c\\xc8<=\\xb8\\x94\\x01\\x10옜\\x87\\xf1\\xfb\\x92%Z\\x92\\xaa\\x81Q\\xddR^h\\xb1i\\bi\\x842\\xabK\\xe0$\\aGTQ\\x81\\xfbs\\\\\\xb1\\x021k\\x16\\x82\\x14M{\\xe0~E\\x95\\x8c)\\x82\\x90\\xa3)N\\xdeh@\\xd0*\\xbd{BV\\xedT\\x05\\xc8u\\x00\\xc2\\xc8˕֫5\\xd4\\xe6b\\x1c\\xf5\\xe4\\x1d\\x92\\x15K\\xb4ǕAd$\\x13\\xd1I0\\xd0\\t\\xc8\\xeb\\x8a\\xdb\\xd1W\\x87\\\"j${\\xd7'[MƮ\\ue17c\\xa4 \\x0e!\\x802\\x95D\\xda\\xc3$\\x1d\\xc3\\xc1\\x0e\\x1b\\xfb\\x00\\xac\\xab\\xf2B8䧺\\xee\\x97\\xf5\\xa8\\xee\\x0e\\x06\\u0092!\\x1cЕr\\x1b.,`\\xea\\xee\\xa4\\x00\\xd3\\a\\x0f3h(\\x8a\\xae\\x02\\x92\\x91'P'#\\x05\\xc9\\f۬Z\\xaef%\\x8cK\\xc2r:_\\xd2\\x1e\\x86^h\\xb0\\xe1\\xc6<ZJ\\xf8\\xecb\\x810\\xc6\\xf39\\x11Q\\xc0\\xb8ᩊd\\x947\\xc9\\xd1եD8@D\\x83Z\\xac(\\xd4\\xf0\\u007f\\xf3\\xa5,!_\\xf9?\\xd9\\x1c\\xb5^gc\\xb6\\xfc\\xb1QӰ\\xdc\\xddq\\x15Uw\\xc4\\x12\\x93CK\\x92Y$B\\xb0\\xfd:\\xa3\\x8b\\xb7ZRIy\\x12\\x8d\\xa5\\x14sx4\\x03\\x8e8A\\xd9\\\\\\xc21Q\\xe0\\x8cfԼ\\xd3@\\bo\\xc8v\\at_Q\\xa4p\\xd5;\\xae\\x8d\\xdc\\xeer\\xfc\\xf9e\\x9e\\xaf\\xf2\\xf7\\xedw\\xbd5\\xf7\\xc1\\xd2\\xca\\xcd\\x03\\xd3,w\\x198a}V\\x18}\\xb5[2\\xb2(>\\x85b:l\\xbb\\xc8t\\xf6~\\xfb-\\x1b\\xf9PQj\\xbb\\x87%\\xc9\\x02A\\x16\\x8c\\x04\\b\\x06\\x17\\x99\\xf6D\\xef\\xc1]_\\xaf\\xea[+\\x1f\\\\\\x1b\\xed9J{\\x8c\\xc6\\x1e\\xce\\x0f^\\xf4\\x1e\\xc0\\xbd\\xfe\\x83\\x1fc^\\b\\xc3\\u007f\\xfcUi\\x0fVe1\\x17\\xa6\\x00\\x8c\\x06I\\xe5\\b&\\x04<\\x87\\x10\\xaa\\x98\\x03>x\\xd2\\xfaƽ/\\f\\xcfى\\x0e@\\x14d\\x01᷌\\x1f\\f\\x1f+N\\xe3\\xae,V/\\ue0ae\\a\\xff\\xe7\\x1dg\\xb0\\x18\\x05>.\\x03\\xd6M>&/\\xf9\\xeelס \\xc5\\xc0\\xe1P\\x00\\x86\\xf5\\x01tP_.\\xf4ڽ\\xb3K\\v\\xf3}k\\xc3\\xfex\\x85\\xc3\\x02ʺo\\xe3sa;\\x17|y\\xf04\\x82\\xf9G\\x16\\x0527\\xa1i\\xb0x\\xfe\\x81\\xe9\\x13c\\xed\\x9c\\xf5\\xe0\\xea\\xab\\xf2\\xbdJ\\x8e'ϊy,\\x01\\xe6\\x01(&FZ\\x04!\\x98`\\f\\xf2\\xaf;;7vo\\x9d\\xef\\x03\\xac`\\x98!\\x8b\\x98o\\x18W\\xb4\\x13\\xedx\\xca%W\\x1f\\xea\\xa8\\xf8f]\\x01\\xec\\x12\\xa8\\xa8\\xf8\\xc7\\x15N-{\\xf8\\xcb\\u007f\\x93\\xc1(\\x95\\x11\\x870\\x87\\xa9\\x99\\x00\\x03\\\"\\x11\\x01\\xb0\\xb7्\\rO/\\x18\\xe3`\\x82a\\xac\\xbd\\xbcyٷcQ\\xa0k\\x8c\\x02\\x80J\\xd8v°4'\\u05cdBEJ6\\x97\\xb4\\xd3G\\x00T\\xec\\xc12\\x84\\x17eX\\x01\\x1b\\t所\\xb1Ia(\\\"F)\\xa1\\x04(b\\xbe\\xaf\\x96\\x02p\\x84R\\xf08\\x1c\\xb6\\xf1Mj\\xce\\xefx\\xb6\\x8e\\x8a\\x95\\x18)\\x81\\x10\\x8d^lEq\\xecԣ\\x83\\xb5\\xe2)E%>T\\xd6~cÒ\\xfb\\x0f\\x9d=\\xea\\xdf&\\xd7\\x04\\\"\\x9e\\xe2%\\xb5\\xb5\\xad\\x88 \\xf79\\xee\\x1f\\x85\\xe7\\r\\xfe\\xef\\t}\\xe0\\xee\\b\\x1a^?\\xd8\\xed\\xf1ֆj\\xdaz\\x87\\x8f\\xde\\x1d\\xe9z\\xfay\\xdd|\\xa4!\\xd9\\xe3A\\xdfݹ\\xb3\\x1cZ\\x01\\t\\\"\\x8f{tZ\\x1dj/\\xf5&\\x81\\x15T\\xac \\x04jZ\\xbaӞ\\x84\\t\\x03'\\a\\x14\\xe2^I\\t\\x91\\xb0\\xe0\\x92\\xec\\xef.\\xd7Q\\xd7\\xd0\\x06~\\xcc2\\x8a\\xac\\xc9\\xcd\\xf5\\b\\x01Kfl\\x04\\u0601\\x80 \\xa0X\\\"?\\x00!C:\\xc2m\\xf23\\xfcR\\x1d\\xf9u\\f~\\x00)\\xa4\\xe4V4o\\xa7\\xd6\\x1a\\x86\\x97b\\x84\\xa2PT\\xd4A\\xac\\x1c\\x00Y\\x97\\xf0,Fx;3\\b\\x88a\\xc3\\xdeV\\x04\\f\\x84>\\xf0܄d\\xf6d\\x86\\x0f\\xc5\\x18ES\\xe2\\x93ͥ\\x0fm\\xec^\\xb8Pn[\\a\\xbd\\xb8\\xaf\\xa4;]e\\x18\\x0e\\xad\\r\\n\\xe6\\x9f\\xdb\\x03\\xc7\\xef)\\xf6\\x9c\\x1f\\x1ccw\\xe4\\xdf\\xcc\\x021^00\\xa0\\x04\\x89\\xf6)\\v\\x1dH\\x1b\\xa3=mB\\xcc8\\xdaNf\\x1dxN\\xb9aݎ\\xdea\\xe9\\xc8!@~ \\x8c\\x8a\\x9c\\xf9\\xeeN\\xa9\\x01\\x1e\\\\1\\xfc\\xf2\\xa0\\x16j\\xc8]R\\xa8Da.\\x967qF4\\xb3#:(\\v1|\\xa4\\x15\\x1d\\xe2/\\xfaﺰ\\xbd\\xc0\\x14Ph#\\xb5\\x82\\xa5\\xf2q*\\v\\x86\\xabC\\x0f҈A\\x84OJ_o\\xc4\\xd6ܽ\\xb7g\\xbfz\\xd9K\\fz\\x81F\\x9d\\x0f/\\u07bd6\\xe9q\\x84\\a\\x8f\\xb0\\xeb\\x1f\\xe3\\x17,\\xa4\\xc0\\xd3K\\\\I\\x10\\xba\\x8e\\xbd6F\\xeaJI\\xfd\\xe9a\\x16\\x83i\\xeaw\\x8f\\x8e\\x97n\\x9c\\x82m\\xbb9\\xe6n\\x96X$S\\xe7`G\\xf76tac\\xd0H\\x8b\\xe5@\\xa6\\xe5\\x18\\xffX\\xe6)o\\xb1XZ6Z2cb\\x06\\xd8\\xf1\\x16\\xdb\\xf3̞͉\\xde|o \\xbb@/\\x8b\\x8a*{!p\\xb1t\\x99<Z#\\\\\\x06\\f\\xec9K\\x1f>\\xd7~\\xac\\xafoi\\xe3\\x94\\xc3C\\xb2d\\xbf\\xe4\\x13\\xfe'[\\x12\\x169\\x8eEg9\\x83\\x06\\xb9\\x9bl\\x03\\x81\\x13N\\xb9\\x9cr.\\xcfN\\u007f\\xf2$}'\\xa7\\xb8\\x84\\x03m9YM\\xb9x\\x9d\\xb4\\xe2\\xf8\\xa2\\xc5\\xd3\\xfaNT\\x91\\xef\\r \\xcf\\xeb\\xb7?~\\x1c\\xbd\\x12SW\\xc7\\xde\\xf9f͡ɓ\\x819\\x838Y4\\xa49\\xe5XR\\xdf|R{\\\"9\\xf7\\xbc\\xb5\\xd6\\xce\\xd4/q\\x9c\\x89\\xd0\\xef\\xd8\\xf0\\x8bJ&\\xd2\\x13\\x889\\xdb\\x19ɑ\\xc9'\\xf4'\\x1b\\xf7\\xf6\\x8b\\xd3\\a,\\xe5\\xe0i\\xec\\x89\\xc0\\xe6\\xfc\\xf9\\xc7\\x04\\xd1\\xf1\\xe8\\xaa-qVW\\xfb,+\\xcb\\vM\\xb2Fo}\\xf5\\xd0\\xfb\\xd5\\xe9\\xae\\xe75\\xb7Y\\x86=vv\\x87\\xdb\\xec\\xe9\\x93\\v\\x97 ]jL\\xfalͪ\\ffq\\x01\\xa8\\xa5\\xbbV3#!\\xbc\\xc3\\xddFZѤB\\xb5\\xedFL\\x9f\\x1bZ\\x8a<\\xfe\\xf5\\b\\xb2\\u007f\\xca/K\\x12\\xee?\\xf2\\xf58\\xa3\\xb4*\\x149}7\\xb2\\xadI5\\x9e\\x14M\\x19F(\\xd71'P\\xd4\\x1b\\xc0\\xe3cxS\\xf3\\xa3\\x9a\\xd9\\xd11t\\x17\\xe4텓ǯ\\n\\xa8s\\xb3\\xaf1\\xb0n\\xe7<\\x1f\\xda\\xfb*\\xec\\xd2\\xf7e~>\\b\\x16\\x97\\x145\\xc9\\xeej\\xcd2\\xd7\\xfc3g\\nX\\x844|\\xe4h\\x1dײxb\\xae\\xcf@@\\xef\\xf61P%y\\xb1\\xca@\\xf8z\\x1a\\v\\x9e\\xb2zϕV\\xe3\\x17\\xe2\\x10#q\\xe2&\\x97\\x18r\\xcbȂ\\x80\\xc3\\\"Bh\\xdem\\x10\\x97\\x80\\xc0r\\xbd8E\\x94\\n#\\xe5\\xa3\\xc7]'\\xde\\xfaJ}G\\xad\\xc6N[5\\xb6\\xe3\\x1c\\xe3f\\xbc\\xce\\x13\\xa2Hk\\x82\\xbc+\\x9f\\x1f\\xdf\\xeb=\\xa1?\\x13\\xf7\\xb0\\xf0\\xf9o\\xf3\\x9c.\\xe1\\x9axw\\x80\\x00;j\\xd1Y\\x11 \\xd7\\xc3贂\\xd2\\xc9Chi\\\\A \\x1e\\x8f\\xde܀\\xc3x͂\\x9a\\xebg\\xee\\xe0\\xa6f\\xec\\x9aY\\xd3z\\xedF\\xbc\\xc6\\x1d\\xeaqԂ(\\xff\\xf0\\xaav\\x89R`̌\\xfd\\xadh$\\xa7\\xae+\\xdfX/w\\xc3\\xfer\\xf3T8}\\x1b\\xb1\\xc7\\xe2^\\xdf.\\vO\\xd0\\xc5{@\\fi\\xd0|\\x14{^\\xc7UՉ5n\\xe8\\xf4d\\x18\\xbdt\\x10\\x17<#\\x86\\x91\\xb5\\x8b\\t\\\\u\\xa0\\x98I\\xfb\\x84\\xee\\xf5B~B\\xf8\\x1fj\\x80\\xde|\\x99\\x8e\\xab\\xd7\\xe8u)\\x038G\\n6\\xe5\\x92\\x15\\x89\\x00i\\x83S\\xb1d\\x9c\\x10v\\xa3\\xf8\\\\\\xb0b\\x054K\\xc0\\x84jI\\xb4\\x80\\xba\\xaa\\xc0yR\\x86\\x8a\\x86\\xb9\\x8d\\xa4m\\xbc\\xec}\\xc2\\fnD<\\xe2vy\\xa0\\xa8\\xa9\\xea\\xab{\\xc4\\xed-.\\xf0\\xee{\\xe0\\xc0\\x06pb\\xfb{WWzK\\xb7\\x06\\x92\\xf1\\xef}\\xb2o!A\\xc1,\\xa8`Ҷ\\x1co\\xda\\xef\\xa0N\\xe4\\xbcR\\xfc\\xfb\\x99\\xbdS\\x8a`\\x98e\\xfb:nw\\xbe\\xbf\\xe5\\u007f\\xc6\\xef\\xc7Э\\xf0\\xf4f\\xc2'\\x151\\x94\\x8f!\\x04-=Ta\\xe8\\xc1\\x93\\xa9;\\vd\\xe8\\x9cny=\\xdcE0 \\xe9n5\\x1a\\xcbܒ\\xaf\\x18\\xfe\\x8fQA\\xcbݰK\\xf2\\xf8\\x8b\\x90B\\xb0\\xf2\\xddb'\\xca\\xfa^\\x14w\\xc2\\xcaٸw-\\xf1\\xb8\\xf2\\xa0X\\x10\\xa7\\xbfS\\xd2 \\xdb\\xce\\xee2\\x01\\x8a\\u007f\\xc7(4\\xfa\\xbc\\xe8Lk\\xf78\\x0ea\\x94Ά\\x10x#\\x10l\\x1b\\x03!\\x96\\x0f\\xf0\\x1a\\xb8\\xf9\\x8e\\x06\\x85\\x11l&\\x965\\xa2^R\\xe3\\xfd\\xe9\\aㆆ\\xe2\\x0e\\xa6oH\\x1b\\x1e6\\x00\\xd8 Ea \\x05\\u007f\\xce\\xe6\\xfc\\xe2?\\x05\\xa1\\x82\\xadR\\xfc@\\x14\\xe6=\\x863L8-7\\xb8\\xbc\\x17\\x18d\\xb1\\xe5\\xa5\\xc3e\\xa5\\xb1I\\xdeO\\xf5IR\\x91F~\\xcc[\\x1e\\x10\\x1f?&!\\xbe&\\x06\\x81d\\x13]x\\x85\\xee\\x92\\x12\\x90\\x1aP:\\x8du\\xed\\x9a\\x03Z\\xd4ﴏiNB'Ϗhx\\x8fݎ\\x8cp\\xa5gt\\xb4gJ\\x94\\xe7\\xde\\x00%GF\\x1cw\\xe5\\xb62\\x03\\fc\\x1eMq\\x91\\x00\\xe8\\xe9\\x19G=\\xf2\\xe4\\xbf\\x03\\x88\\xd2G\\x04\\x00\\xea\\\\f\\x8b\\x15;G\\xf3\\x93\\x04z\\xae\\r ۮ\\x12\\x8c\\xa3%\\x8c\\x01\\xfd\\xf7{\\x80\\xfb\\xff\\xff$\\x16\\x10`\\xba\\x9d\\x17\\x1d\\x1d\\x06\\xc0\\xfe\\xf2ŋ/4\\x91\\x1a\\xbd\\xd0\\xd2\\xf2\\xde\\xf3\\xe1\\x82\\x05\\xef=.x\\xbe[\\xbc\\xb8\\x8c\\xf5\\x90\\xf9\\xa5\\xf5=\\xb3tɒC\\x8e\\v\\xad\\xcck\\xa0\\xf5\\x01\\xea\\xc2\\xfe\\xc8%<j)\\xeb\\x01\\xb3\\xecm\\xed\\xf8\\xaeėxpn/\\x8fw\\xb8\\xca86\\x0es\\x85\\xf5\\xe2\\xaa\\x1f[\\xb4\\xaf\\xbaq\\x10\\u007f\\x05\\xbf\\xad\\xb1*\\v\\xa7\\vݚ\\xab\\x90#\\x935\\x15?e\\x1c\\U0007667c \\xa5_\\xe5x:\\x89\\xb7t\\x10\\xe3\\xddF@X\\xd7EГ\\x1fӹ۰Gx\\x92U\\xab\\xecJ\\x04I'\\xe8މn\\x94$ӝ\\x82\\x84©\\u007f\\x16\\xf2,\\xa6\\xf0)S\\xc2M<\\xf34\\xeb\\xf6cE\\xc5\\xca\\xdbM*L\\xcfT\\xb8\\x1e\\x9b\\xd0\\x17\\xb1\\x86,\\xe5\\xdcZ\\xe5\\x9cp-\\xb0\\xa1\\x15e\\xb8\\x13k\\x88\\x9f\\xef5\\x1d\\xcaܼ,d\\xd9䠷[\\xab\\x85\\xb0\\x8ddZ\\x1c\\xdcrC,Y\\xee\\xd6\\x04\\xa5,\\x1a\\x94\\x8ao\\x80\\xdeP\\x80\\x10\\xa5\\v'\\xf4M\\x90\\xec(\\x9e-.\\xc8\\xc7\\xe2^\\x8f\\xfa\\x93\\xc4\\xf0]\\xbfj\\xf7\\xb64\\xaf\\xb7۠t1\\x1d\\x8e\\xbcS\\xa6m\\xdbm\\xf8\\x84a\\xa1\\xdf$\\x9f\\xd4\\xd2\\xc9.\\xd5驞\\xa9\\xe9\\x9b\\xea\\x9cv\\xfc\\x1e\\xb6m\\x95\\xf1\\xa8\\x1e\\xb5\\x17!\\x11\\x1e\\xacn\\xb5\\x18.\\xb2KT%\\xd0]\\x0e\\xc78\\x8d\\xeb\\xfa\\xc5\\x19\\x15\\x9b{[V\\x11\\x06~\\xde7\\x8e\\xf1\\n\\xea\\xbd[*2\\x0e\\xaf+\\x9d=\\xf0h\\x05\\xb6g:3\\xd3f\\x9f\\x83\\xbe[\\xafv\\x04\\xb7\\x06\\xbdӦ\\xcf@\\x9fJ\\x8a(\\xadz\\xc0\\x83ȡ\\xdf-\\x87\\xaaٔ\\xee\\xdc\\xfc\\x88\\xaa\\x15\\xbf\\xa7\\x1c\\xd4\\\\X\\x10\\xb1\\xc4\\x13\\x13Qh0\\x8ew5@!\\xc6LV\\xca\\xe8\\xe8(4\\x1b\\x88\\fJ\\x04\\t\\x91ŭ\\xad\\xa9r@\\x83\\x91\\xb0\\x10Z9\\xc6\\xd9(\\xc7\\xc5f\\xd9 \\f\\x96\\x14\\x05R\\x90\\x9f\\x8e\\x8d`\\x11\\xae\\xf8\\xfa\\xfew\\xd58!\\x87\\xf8\\xf7\\x12A\\xf6\\xe0\\x14\\v\\xa6\\x84\\xa5\\xba\\xa7O\\x05\\xf6Ɍ\\r\\f_\\xd8'W\\xaa\\xca|\\xae\\x85\\x87Ǉ\\xc5G\\\\\\x8bh\\x1b\\x95\\xb5\\x9d@L\\x9b\\x17Q\\x11\\xee\\x19\\x13X\\x1a\\x99W\\xb50;%\\xa2\\xf0\\xe9Ěq[\\xebS#\\n.\\x1d\\xdap1J\\xfb\\xf7-MJ@b\\xe8Q\\xcd뤐\\x92\\xc4\\xfa\\a\\xd1Zџ\\xba\\xfd\\xce\\x03\\xb6\\xf0\\x87a\\xd3wE\\x95\\xb0\\xa3\\xb4`\\x83\\u05f8\\xdfU\\v\\xc6r\\xf29\\x1bb6\\x90BG3r\\x90E\\x1c7^K~Ӷ\\x8d\\xce\\xc6r\\x1cŐ\\x17L\\xa1\\xa5\\xa6\\x18\\xef|\\xc4T\\x86\\x03H\\xb9v\\x8d\\x101\\xf6\\xe0P\\xd6\\xc6\\x02;\\x94\\xf6'6\\xbaȔ\\x8e.\\xe2XN\\n\\xfd2\\x94\\xf5V:͠\\xb7\\xa9U\\x00\\xb4o\\x10Ӧ-\\x1e/c\\xf8\\xf4\\xc1\\xc6\\xcf/\\xe3\\xb0\\xd2\\xf2\\n\\xca\\xce\\x10\\xaa\\xe9\\x85=c\\xf4\\x80̍\\xdc#\\x94\\xcd'\\xbc\\x82\\xb2m,f8:\\xea\\x8f\\xfb\\xb96\\xe2\\x1eYU\\xe4\\x80\\xdd\\xd8\\xdbw|\\xe4\\xbb\\x10b\\x01\\x02c\\x97\\t{\\x85oZ\\x8bd\\xbd\\xc3a\\xea\\x90.\\xaaa\\xd4h̎a\\x8c\\x11e\\xd3v,!G\\x9d\\xbe!\\x97\\xd4\\xde\\x0f\\xfd}⽇c%\\xf9:\\x86\\xdfg\\x86\\x16\\x9f\\x85&\\xd8RHϒƊ\\x02\\xa2#M\\xe0\\xd5E\\v\\xdb&\\x16_\\x9aQ\\x99\\xdd\\xd9:б\\x95\\x87\\xea\\xc32!\\fy\\xf3\\x1b @\\xa7d\\xf0\\xae\\ue758ß\\x9c\\xfaF\\x80\\xfb\\xe5-\\x99v\\xed\\n\\bU`\\xf8\\xe4\\ue9a8\\x93\\x88\\xa7\\xcf%J/\\xb4\\xec-؛\\xda\\xe2\\x94K\\b\\x01\\xb1\\xfa\\xb9\\xa1\\x17S\\xd0\\\"\\xa3\\x00\\xa0\\xc0\\x93\\xb7<\\xb6\\xe0\\a\\xf0\\xd1\\xc4\\x04\\xa8\\xad{ʘ\\xbe\\xb0\\xa6\\x038ד\\xa6\\n\\x01B\\x02\\xf5-\\x97ʿE\\xfc@\\r4Qǉ\\\"\\x02\\xden3\\x04\\xbbm\\x9f{\\a\\xd5jj\\xed\\xd2\\xd0\\xf4\\xed\\xa1\\u007f\\xef\\xea\\x96\\xd1PP\\x9e\\xcf\\x13\\x8d\\xf0N\\x10\\x86\\xf9kvBs߸\\xb1V<,vH\\x8c2-c\\xbb\\xb1/\\xf3ɜ\\x9b\\x10\\x10K\\x8f[\\x04\\xd8I\\xeb\\xabw-(\\x81x\\xd6\\xd3\\xdb0E\\x838\\x1c\\xe5C\\x89\\xff_w\\xe2\\xbc9b$w\\n\\xf9C?\\\"\\xac%o@\\xa9\\xe0\\x8f\\xda\\x1f\\xfdA\\b1\\x8cu8\\xb2\\xfc\\x19S\\xef\\U000591b6g\\x86\\\">qǖ\\xbe\\xda\\b\\x89mQ*\\xe0j[\\xbe\\xe6\\xd7\\xff\\xf3\\xf9/0\\x9f\\xa7\\x8f\\xa73\\xe2\\\\hLl\\x11\\xbd\\x82\\xb8\\x03\\xa0\\xee\\x8b8\\u007f|C\\x8b\\x9b\\x9a3il\\n\\xa2\\xe7V\\xf1\\xa0\\xeb*\\xf5\\xa3\\xaao\\xb5\\xe7\\x90ܫ?[N~U9\\x94dPK`\\xc1\\xb1\\xfd\\x95\\xf6\\u0097%[^3\\xb0\\xf7p5W<\\xb6C\\xfe\\xb6\\x9d\\x19\\x1d\\xf7\\xfbG\\t\\xc7F\\x1f\\xaeA\\xf4\\xfeD\\xa3#\\xafv\\x1f\\x8d\\x14'\\x13\\xea\\xf0;\\xe1;\\xef%Q1\\xec\\xd92\\xe59R\\xfe9%Qv[\\x04\\x1f\\xdc\\xdfP~G%\\xedIIp\\xaeB\\xa0B\\x02\\xc8\\xc8\\xf3s\\xd7\\t\\xd46\\xbd\\r\\xe1GbHG\\xdf\\xd7\\xfc9=E\\xb40\\xdaw\\xf7\\xdc=\\b\\xff\\xf6;\\\"\\xf83*z\\xa8\\xbb\\xb8\\xc4d\\x95\\xe8\\xa0\\xf98ck\\x02\\\"\\xa7\\xe3\\x11b\\xc9\\x03Y[\\x8fx \\xca\\xdc\\u007f\\xfe\\x83\\x9e\\u007f\\xb8b6\\f=m\\x9fЅ\\xa7\\x04\\xce\\bJ\\xa0\\xc5룓7\\x1c|\\xf8(ɨ\\xfc\\xbe\\xde;ݏ!cU\\xa5\\x02\\x84\\a\\xa1\\x13\\xe6\\xf8\\xd3\\xd9\\t\\x18\\xa2\\xc9H?W\\xe0/P#\\xec3V\\xdf*\\xcddJ\\xfcP\\xee\\x87g\\x10k\\xe4Rۀ\\x8e\\xe4J\\x97B\\x1b\\u007fw\\xa8QDFЋ#\\x1c\\xf8\\x9c|\\xe4\\x98\\xe9\\xc0)\\x16\\xb2\\xa4\\xdd\\x1f\\x851jl\\xa3\\x006\\x8c\\x19\\xeb\\xa8o\\vp7*\\xd6\\xd4\\xe5\\xefE\\xbcA\\xe2\\xba\\xc5ߑKt%\\x81g\\x03\\x19\\x01\\xf4\\x97\\b\\x88\\x82\\xe1\\xb6N1(f '\\v\\xd5\\x1c\\x13\\xc7q|/j|A\\x03\\x95l\\xb4\\xbf\\xad\\x8f\\x99\\x1d/\\xa7K\\x05\\x8d2\\x14a\\xc3\\x1f\\x99\\xf5\\x06a\\xb40*\\xb61;A\\xe1\\x01ـ\\\"\\xe3\\x16\\xb2\\xa5 1\\x06 (W\\x1b\\x8b\\xa2\\xb1\\xa2@\\xfd\\xe6#\\xdb\\x06\\x8ex\\x16\\vM\\x97\\x04\\x8bN^\\x814\\x96\\xb4ȅ\\x8ff\\x1aZǒ۟%\\xdb1B0\\x05\\\"\\xd9g\\x8a1\\xfa\\xb13]\\xf8u+\\xec\\x1f\\u007f\\x18\\xfe\\xe1\\xe9ޒ\\\\\\xea\\x8e\\x10\\x1ep/\\x93\\x88\\v\\xc0\\x93#\\xd7\\xc7\\x19\\xfcѫV\\xa3\\xfc\\x1bJ\\x83\\xcbCa\\xe4\\xf43\\xed\\xc4\\v\\x10\\xc6\\xf0\\xa1\\v\\xd2}\\xf8\\\\\\xa3\\xa3;?0?\\xe0M\\xb3\\x18\\xec:\\x01}\\n\\xbe\\xa3^\\xbf\\\"\\xe8\\x01Ț\\\\\\x8f\\xf0\\t\\fb\\xd4d\\xbci\\xd9EłA\\xe2\\xc8\\x00\\xa12N\\xf0\\xe3ފ\\x80*\\xd8\\x181\\x06\\x11\\x01wؿ\\xe81\\xe9G\\x84\\x11\\xf2zQy\\xc9i\\x00\\x03\\x96\\x83\\x1cW\\x8d1\\x12\\x01\\xf0S)%\\xa9\\xa5\\x10\\xc5ȗ\\x1c\\xceD\\x9f~]\\xf4\\x00`\\x15\\x80\\xb6'\\x8f\\xbf\\xa5\\xa6a\\xf7\\xb0\\x8a|\\xc1\\x94Ҽ\\xbc\\xb4\\x8a\\xe4\\x10\\x80\\x90^ђOt\\x8c\\xad\\xa0\\x00`\\xbam\\x04\\x00\\x91e\\b \\x10\\xda\\x1d\\xc7M\\xf8\\xe7ԑ\\xa6q\\xcfm\\xc7\\x18\\xa0L\\x06 \\x9c\\xb6ݚD\\x04gxMB\\x80\\x99\\x80a\\xbdh(\\x9cUb\\xaaU0\\x98\\x00\\xb4ǅ\\xeaᑞ\\xd3̏5\\n\\x88r0j\\x9dv{\\xb2d=\\xb2\\xed\\xc8>\\x11\\x13\\xe2\\x01\\x11\\xe4\\x1b\\x04;\\xf4\\xa6\\xb75\\xd4Y\\xada\\x04Aj\\x88\\xa7:\\x05\\xb7\\xbd\\xa7\\xf5\\xfa\\x065\\xe7\\xc6\\xfe\\x9c(\\xc6\\xd4\\xc7\\xe9\\x04\\xeb\\x1a\\xcb\\x06?M\\xa6\\x98Q\\x153\\x1b\\x13\\xff\\xe3E@)`&QrX\\x16\\xd3\\xe4\\x11\\x1e0\\xc8\\b\\x80\\xf80&\\x84R\\x19Y}\\xd8\\x1f\\xd5\\xfd\\n±\\x18\\xd3|\\xab\\x13\\x01Fh\\x94Wa\\x94\\xe2T\\x12%\\x1ed\\xc7 \\x13b!\\x050\\x06\\xb3\\xa6u\\x17\\x13\\f\\\"7E\\b\\b\\x0f\\x04\\x13?\\xe7ǀe\\x8c\\xaeA:\\x11l*\\xc2R?\\x82\\xcacB\\t\\x91\\xf1\\x88[\\x03\\x8c\\x19\\x8a\\xcc\\x03\\x98`?\\xc6\\xf4z\\xddІ\\x118˷Y?\\xa9\\n\\xb6\\xb5\\x05\\xad\\x00\\n1DÇ?\\xa3l8\\x0f\\x16#\\xb0\\x1e\\xc6n\\x81\\x90\\xe1V\\x8a4\\xc6|\\x80\\x93\\x01\\xe3\\x10\\x18\\b\\x89\\x02\\xc1\\xa0>I9 \\x98\\x05\\xb1*`*\\x9b\\rD\\a\\x90!o\\xfew\\xa1#\\xd01\\xf1\\x8e\\x01\\f\\x9dǻ\\x17\\xa5\\x02?\\x88\\x01\\x10\\xfb?X\\xf4\\f\\x0f\\x14\\xc3k\\x00'Q]\\x06Hb\\x18?\\x8e&\\xaa;\\xc7\\xd4?IH\\xef\\a\\xc9\\x13g\\x1f\\xd4\\r\\n̉\\xb1\\xf0\\xec\\xe8Y\\x14!w\\xf9>ѩT\\x96'm0\\x9c\\x15,\\x02-H\\xae\\xebd8ZOc\\xa6\\xd1\\x19\\x05|\\xc9>\\xd36\\x06\\x8d9\\xcf:\\xb2\\xc1C\\xd1}3A\\xa1\\xa5\\x8a\\x8c\\x80\\x90\\xa4>\\x95\\xe6\\x06\\x96\\xba\\x05a*\\xaa\\x03k\\v\\xf9\\xa0U\\xfb\\x82-\\x8eF\\x02\\xbel\\xb18RM\\t\\x97ݩ\\xa8\\x04g\\x03!:\\xe8\\x800 \\x14\\x84Qv\\x0edG\\xb0\\x9bw\\xaf\\xe5X0\\xb8\\xe4\\xfa\\xff\\x9c\\x1a\\xd9\\xe2XD\\xc0\\x1d\\xc1^$G\\x85Ҿ\\xe2\\x177E\\xbe\\xcfvI\\xf6\\xc0X\\xe7\\xd1\\xfe\\xc9\\xfd\\a\\xf8\\xcaO\\xdc\\xfaǬ#\\x9f\\xf0{\\a\\x14Y(\\xe9G\\xde4F\\xf2\\x88F\\xc26\\xaf\\x84\\xaby\\x85\\xa8\\x871\\r$簫\\x98\\xd4)\\x88\\xa8\\xf4[*\\x03\\x06\\xae\\x06g\\xeb\\x14\\xefб\\x9c0\\x92\\xc4\\xe9\\x04\\xe1p\\xae7LBX\\xcf\\x0e\\xf6\\x16c9ZL\\x11nEa\\xd5.\\xac\\x93\\x1d\\b\\xb2*\\x93\\xa0\\a\\x17W\\xaf\\xc3\\x19\\x01x)Q\\xe2\\xe6m\\xbf\\x91r\\xc6]r(8\\xd0j6:ĥ\\xfa\\u007f\\f\\xf1K\\v\\xcds\\xcd\\xf2&\\x1b\\xf4p\\xad\\x01/\\xc1T\\xebi\\x15\\x88\\x01\\v\\x94\\xd3\\xfd\\xba\\x821P\\xac\\x05\\x82<\\x13\\xa0\\x13\\xcb\\xe3\\xe0\\xc8\\r{yBY\\xcc\\r-\\xd5w\\xf9p(<\\xeehr\\xf2\\xf6i0\\xfbDv\\xf5\\tf\\x02\\xe3\\xde\\x1bٛ718m\\xb6\\xb2\\x9c\\xe1e\\xf0I\\xb5\\xe8R\\x95\\xd1\\xc9\\u0378\\x0e7\\xaf\\x14H$jH\\xe7vQ<6\\xf4=T\\xaf_MC\\xa50\\xaf\\a\\xa0\\t\\xe7\\xc9f\\xe3\\xec\\xd9R\\x8c\\x1e|\\x9e\\xe8^\\x9e\\xc2f\\x1fd\\xfa\\x97\\xbd\\xbe\\xde\\xe3\\xcbE\\x8c\\xa9\\xee\\xca\\xfa\\xf2\\xc7T\\x17c\\xe3\\x12\\xa9\\xb371h(.;\\x1bM\\x18P\\xbf.A\\xaeK\\x81<\\xba\\x14\\xe7^\\xcc-\\x02\\xf5_\\xf6\\xe1J\\xc5\\xc71\\xcal\\x9a\\xfbF\\xfa\\x02z9\\xa4V\\x83(Sj\\xb8\\xfe\\xab\\xfdx\\xd5\\xc5\\x15\\xae\\x91\\xf8\\a\\xf0\\xab\\x84\\x13\\x1d\\x11B\\x9d\\x9b\\xd8U춸A1 \\x11\\xd4\\v\\xeb\\xc5G\\xd6p\\f\\xfcZ\\xfa\\x90\\xa7\\x16\\x98,\\x9b\\xafI\\xe9M}oZ\\xb0\\x80N;\\xf8\\xf9\\xa5\\xe6)}m\\x10F\\xb6]\\xddz\\xec\\xbb1\\xb1\\xd7ǛL@\\xd3\\xd3Z[\\xae)m1\\xf7\\x96\\xf6%\\xc3ࠆ&M)\\x95ʤ\\xe7\\xc1\\xef\\xc9ɽ\\x1b,a\\tg<'\\xfd\\x1a\\xed#\\x1f|\\x00V\\xbb\\x04%\\x8c{p\\xc1\\xd7ls\\xc6:\\n\\x86\\x9a\\x13JR]\\v\\xfc\\x830\\v\\nv\\x10\\x16\\xd8\\b\\x0fw\\xb5\\xb8\\xa2\\f\\xff\\x10\\xc6b\\x10\\xeeh\\xa0ټ\\xd5\\xf2\\x14u?ݎ\\xa9\\xba\\x94Ȝ9č\\xfet\\xf9صq\\x134uk\\x98\\x0024:\\x04\\xc1\\xa1fB_nh\\x830\\xcc\\xc2\\xf9\\xef>a~\\x1c\\xb3!\\xe3\\xc0\\xe5\\x18F(R_e\\t\\xad\\x13\\x06\\xc8UKs\\x9e\\x81\\xdfK\\xd6m]:o]n\\x96)\\x1c\\x1b\\xb3iE>\\xbaa\\n$U@Si!\\xe1\\xf2\\\"\\x01\\xb1\\x00\\x10Z\\xb9\\x1b\\xd7\\xfd%\\x01\\xdbŞ\\xec\\x91\\xdau\\r\\x84j\\xb7\\x83@\\x81s.j\\t\\x86\\x05\\u007fC'\\x98\\xbcG\\x81\\x9e\\xc9\\xd1A\\xa5\\x879\\x82\\x9d\\x0e\\x81(\\xda?\\xd82\\u07ba\\x0fr\\xd5ԗ\\xe7@K7\\x1bUъ1BO\\t\\xe5\\xd9c\\x82f\\x865\\xf53a\\x88\\xa3\\xfd\\xbd\\u007f7\\xa1\\x942\\b\\x1bQ\\xebl\\x04H.+\\x88D\\x01\\x83{1\\x14\\\"\\xa8\\xaf\\xd6e\\x84T\\x00a#\\xe8j\\xfe\\n\\xaf\\x0f\\xe15\\x00\\xf2\\x8c\\x16خC\\x12\\xcc\\t3\\xc0\\xe1\\x00\\x9c\\a@]0ƹ\\x80\\x01\\xaf\\x05LR\\x019\\xaa\\x11\\x8d\\x91>L`l\\x15`\\xe8\\x93\\xcb,\\xd8l\\b\\xadӑ\\x93\\xb0@#ƀ\\xcf\\xc8\\xc0(\\xb4\\xea\\x18#\\x90{4g\\xcfx\\x00\\x03\\\\8\\x002&11\\x98\\xc0O\\xfc\\x83\\x1dX\\xd3d\\xc2(\\x02b\\xe6@\\xc3\\x02v\\xbe\\x15$O\\xf1\\xbc{.Y\\xa7t\\xb6\\x0fz\\xea\\xfd\\x85S\\x8f\\xb0\\x03\\xb0p\\xc3\\xe1_\\x9d\\xae\\xb1\\x8b\\x00\\xd9\\xcal\\xae\\x98\\x8f\\xa4)AR\\xca\\xf1ԣѵ檍\\xc7\\xefG\\x8d\\x16\\xea_\\u009b&i\\xe9\\xc5\\t\\xb6\\xa9\\u0557'3\\x1d\\xddW\\x10\\x8b\\bB2\\xe0\\xe6en,˘\\xc5HCP\\x83x\\x05@\\xf7\\x93\\xa6;\\xea\\xccrHA\\xf67\\x02\\x9a7\\xe3!{\\xca\\xf3\\xef3\\xfd\\u007f\\xb4N۲\\x98\\x1e\\xeb4\\x0f$\\rkj\\x9e\\x0f\\x03\\xcd\\x05\\xd0@\\x1bђr\\x93\\x11\\\"\\x9e\\x99${\\x83\\x97*\\xbe\\xa92\\xaaE@A\\x99\\xfb\\xa5e\\x88\\xbc'\\x8e\\x96I\\xa9\\x85\\xe0\\x8c\\xf6\\xc6\\x12➤d\\x1f\\xa6\\xa7-\\xb4\\x13\\xf3\\xeda\\x06\\xb6\\x06\\x00\\xf1\\xdb(C\\x1c_a\\x04zy\\xbcD?\\xb9\\xc0\\x1d\\x19x\\xfa\\x02\\x80~۠\\x84\\xe5+\\xab6\\x18\\xc8\\xda\\xe8\\v\\xd7qWv\\xe5\\n\\x82\\x11\\xcfE\\x85-\\x1d\\xab<\\b\\xed_\\xach\\tX\\xf1\\xca\\x02$\\x850\\x80\\xe8\\x93d\\xff\\x13{]rB\\xe2=ӄ\\x16\\x0f\\x89\\x89\\t*\\xb1JXα\\xa2\\xb6\\xb1\\x18n\\xb39'Ε\\xac$\\x84\\xa8lKr\\x8d\\x8e\\xec\\xcad&\\xe3\\xc2\\xc9\\x060\\x1a뺥p\\xa8\\xc0\\xa3\\x00\\xb5i\\x9a\\xfbj\\x9b\\x17\\xe1\\x00\\u007f\\xbc\\xa1\\xc65Z\\xe5]\\xe9\\x02#@J\\xcdH\\x8a\\x8flp7\\x86\\t\\xa1\\xfeK\\xd0\\xf5\\xe6\\xfb\\\"k\\xd5H!A\\xdcc\\x1b\\xf8\\xd6\\xeb\\xe5\\xdd\\xd9\\xe9\\x1d\\xf6\\x1d\\xca\\xf3\\x12\\x00\\xeb\\xe8\\x8a\\xdb\\xc5\\xfc\\xf3y\\x1f\\xdf̽X\\x10\\x90+\\xde_1\\a\\xfaj\\xb6\\xe4\\\\v\\xf3Y\\xf0\\xcf\\x1b\\xb6\\x93\\xf3x{2_\\xbb\\xb9\\x1d\\xc9\\nv\\xbb\\xb0\\xaaҚG\\x88dV\\x14s\\xaaXi\\xa4\\x84J\\x9c\\x91K\\x82\\x18\\xc0\\x94(x\\x92B\\x89\\x12\\xd4\\u03a2qT\\xb7ki\\xb3fP:\\x18\\xac\\xc7\\xfa5&!K\\x98\\x83Psv,%f\\xef\\x8a\\xe2S\\\"\\xc71\\x1b\\xe3\\xa6\\xc4ޏ\\xcaS\\xe22\\xba@\\x80\\x05\\xf5R\\x9e>)V\\xd5\\x05&\\x00.\\x9f\\\"ń\\xc6\\xfc\\xf3\\x17k\\xf2\\xbf\\xe5b\\f\\x80\\x1d\\x18\\x82\\x12\\xe4\\xb3X\\x8b\\x95m\\xa4\\x18ˮ\\x8a\\t\\x96\\xe8\\rX\\x80U8\\x94d\\xb4\\x19\\x93\\f\\xb6\\xb7\\xf7\\xa3K0\\xdcop\\x011/\\xe5f\\x8bY4|o0\\xf0\\xa9\\x94\\xe2g\\xea\\x16\\xb3d\\xb6\\xb8\\xc4p\\xe0\\xa2d\\x89`\\x90\\xa4\\x84\\x9e\\xac\\xf0\\x9fQg\\x80\\xe0tˊ@\\xbf\\xe8\\x18\\xbd\\\\{\\xa9\\x9d\\x9b9\\xed\\x8dXZ\\x10\\xa5\\xb2\\x1co{\\xb8U\\t\\x1b\\xf3{\\x17\\x96$\\x9b%\\x9e\\x17g\\x1b'O$Mzw\\xed\\x00\\xfa#\\xa6\\xab^5\\x86\\x939\\xee_\\xb14ߪ\\xb6\\xae\\x9c\\u007f\\x11\\x1fT\\x8a\\v\\xd9=\\xd3J\\xcc\\xe6\\x96h\\xa1\\x17\\xc1\\xf6;#\\xa1]\\xe7\\x0f3`\\x91\\x0f\\x8f\\r\\xf6\\xaf,\\xd8l6\\xa7\\x87.wa\\xfa?H\\x8b\\x14r\\x15g\\xad,g\\xccׂ\\xdf\\xcc\\xe6r\\xafA\\x04s\\xf1\\xed˕\\xc3\\\\\\xe2\\xe4\\xa42X\\x98\\x1d!\\xbfc4c\\x91M.U5\\xa7|o\\xe4\\x93\\n\\xb4\\xdaq1/\\x97v\\xf2\\xc4Oy\\x14\\xbb\\x0ee|\\xc3o\\xfc\\x91<\\x05\\x003\\xa1\\xd5\\x18\\xb10\\xac\\u007f\\x99\\xb3\\b@D\\fc\\x9a\\x93\\x035\\xf8\\xff\\x045\\fLE\\x9d<\\xd1S\\xde\\u007fX\\x8dD\\xfc\\x16\\x97\\x13\\x94<Y,\\x81\\x14\\u0602\\xea\\\\\\bC\\xda\\xed\\x17;HT\\x81\\xd4D&Q\\r!\\x88\\xc9\\xd9\\xc0\\x9b\\x8a\\xc5\\xdc\\xdf\\xf2W\\a\\xe5\\xb3Z\\xb3>\\xcbA@\\x912\\xcf\\xd6\\xc5\\xdez\\xd7\\xcb\\u007f?.\\x9c,u!\\x16\\xb9m\\x14\\xe6hl\\xfb\\x86\\x0eI\\xfb\\xfa\\xf6\\x8e\\x173\\xaa>\\xc5\\n\\xe3\\x93\\x00T\\x1a\\x1aR*$\\x8fd\\x9e)!\\x8c\\xf6\\xb0\\x82#\\xe9\\xe4\\x873þ\\xbej<\\r\\xe6]g\\t\\x17\\x9e\\v\\xc4o\\xc5\\r\\x05N\\xf8'\\xf0q\\xc1\\x8348\\xf0Ó\\xc0\\x19\\xb8\\xff\\xe0\\xcb:\\xddbb\\\\\\xa3v\\xe0J\\xa7s\\xa3A{^22n(\\x971(\\xa1\\xa0\\xeb\\\\ѥ\\x04\\xb3\\xa4\\x9ceJ\\x14 \\x93˳1w\\xc53\\x8d\\u007f\\x0f\\xd5\\xc7|\\b\\x95\\x14\\xef\\xe1\\xf0;\\xaf\\xce^\\x93\\xa5LRDEe\\xadi\\xe1\\xb7\\x12\\x1c{\\x8ak\\xce1c\\xea\\x17\\xbb\\xb8ů\\xc2tg\\x00I\\xce\\xfb\\xb8\\xf8\\xeafן>\\xd5\\xd2\\xe6\\xb2V\\x9f\\x8e\\xf5\\xeb;hk\\x87\\xe0Ӣ\\x95g\\xe0+\\xe3\\u007f\\xf9\\x18\\x98-_z\\x16,\\xec\\xf0\\xb1r\\x12m?33\\xa9rF\\xa6\\x8bO⯕\\xa0Z:\\xd9\\xfb\\xa2P\\x9f_UqӬ>Ը\\xf8\\xcbEI\\x89\\x1f22`\\x94IQ\\xa6ϯ\\xcaxߊ\\x0f>\\xd5C\\xbeT\\x9f\\x9a\\x8a\\xe1\\x96R\\xef\\x8e\\r\\x1b:\\xc6z\\xfe\\x8a&9\\xfe\\xa9\\x00\\xc3@\\x93E\\xddį\\n\\xda\\xfb8\\x95\\xf1\\xbd\\xc2\\xdd\\x11\\xa7P\\xd5C\\xbe㎓\\x95\\x85\\\"\\x8d\\f\\\\i$<?\\xf1v\\x85\\xe16\\xb2D\\x16u\\x9271h_d*\\x03\\x83\\xeds\\x84\\xb1\\xd4\\xf5\\x8a\\x13\\x8e\\x93\\xe3ݻ\\aMp\\\"\\t\\xa1\\xfe3\\x15\\xfa\\xdb\\xe0\\xddPNh\\x8e\\a-U\\xe7\\xd8D3\\xe7Ȋ\\xa7j\\xb0Zp\\xbbւ\\x99\\xd0\\x14\\xb1#T\\x97\\x859Ϸ`{b\\x9bY?*\\xae\\xfa\\u0d50Vw!\\x00\\x93h\\xf9'\\a\\x84欴dbʅ1\\x98I\\xd3u\\x0e\\xcc\\x1f\\x93B\\x8a\\a\\x9aBr\\xf8\\x13\\xa7\\xe4\\xe4\\xd2.\\x96\\x82\\u007f\\xbf\\x85\\x1a[\\x00T\\x1f\\n\\x81\\x86\\x89\\x88 \\xcbʆAb1\\x88\\xe2Ds^>,\\xdd\\t@\\x19\\f%\\b>\\x033\\xc7\\xcc\\x06ȵ\\x04L\\xf7\\x03\\xc81\\x16B\\xf5\\x11\\x10h\\x9a\\x00bVf\\xeb\\xcb\\xd3o\\x90`\\a\\x9bKc\\xa7ҽ\\xb6*G\\u007f\\x99e\\x04\\x8e*A\\xb5\\xaf\\xc63\\x8c\\x1f\\xc8\\xdd\\xe5Ǟ\\xee\\xbc\\xc3b_\\x82\\xaa橂\\xe0ִ\\xb4\\x88/J?\\xb5\\xad\\xdb,\\xb9\\xfc\\x90*?<\\xa1v\\r\\xf2\\x0e\\x12\\x04J\\x83Dyk\\xb1\\x85\\xbe\\\\\\xeeG\\x88\\xf4I6{\\\\?\\xea\\xb6x\\xb1ǵkn`pف\\xaen\\xb0\\xaf\\xab+g\\x03\\xe7\\x03{#\\xc8\\xea\\xe3\\x11\\x95e\\x10\\x1f\\b\\xcb\\xd0%\\x85̗\\x03u\\xf5mn\\x1f\\v\\x8a6\\xb0\\xb0\\xd8\\xeb\\x0e\\x93\\xac\\xb0 Ω\\xa5\\x9b\\x9d\\x98\\x12\\x99F\\xa1\\xbd\\xa1P\\x94a\\x93\\xaf\\xb38\\xbal\\n2\\xa6\\x95A\\x82\\xa2\\xdd\\xc1\\xe4\\xc8P!Y\\xbf\\xb4\\x8e\\xa8h\\xee\\u007f^\\xd4\\xd3g\\xa8\\x1e\\x1c\\xdeO\\xb8\\xa5\\xb8\\xe0\\xe6t\\x9c\\xb8\\xb9c\\x90\\x00^\\xf7\\xbd\\x83\\x94🞃%\\xc8\\x14\\xe4h\\x0ep\\xa0\\xeb\\x91\\xc3\\x0f\\b\\xd2\\x03̕\\xc4pM\\x90\\xb1\\xa3\\xbeG\\xf1\\xb1ޱ\\x91\\x85\\xc1\\x1ew85\\xc6\\xcel\\xb3Ij6~3k5\\n\\xf3\\r\\x9d\\xa2\\x15\\x97\\xc2L\\xae\\\"oq\\xf7\\xe2\\xe2\\\"\\xf5:'`2S\\x80\\x8c\\x16\\xc5p\\xb2\\xcdYg\\x9eSZƑ\\x816B\\x19\\xb7\\xb44\\xc4J\\x13\\xba\\xfe\\x86\\xbf\\xe32\\xd8g\\xf63\\x94\\x04\\xca\\x19jB,\\xf6퉨`^,\\xcb\\xd2\\x1e\\xe3=\\x15\\x82\\r4~\\xd6\\xf0\\x02J\\b9?\\xf6p5\\x84\\x92\\x00\\x9ef\\xd9\\x05\\x10\\xda\\xef\\xf0\\xd2\\xc1\\xeee\\xb4V\\xda\\x18\\xe0ͩ\\xf5\\xb4M\\x9bh\\xc4_\\x15\\xe4\\x8a\\xdf\\x16\\xdfw{\\xc6\\xdeL\\x1a \\xb1\\x1b\\xe5%\\x83Wػz\\xcc\\xc3bF\\xe2\\xc5a:\\x05'\\xeeL\\xe8\\x16\\xb3\\xb3\\t\\x0e֣\\xd7\\xed>\\xbc\\xd2\\xeen\\xa3\\xd33\\x141\\xd6'ڷ\\x96\\x03\\xbe\\xb8\\x98\\x02\\xa7D\\xc7\\x00\\x00=\\xb0\\xf1\\xd0\\xcd\\x1b\\xba\\x1a\\xf1\\xf1\\xabV\\xa5\\xac_\\u007fy|\\x1c\\xef\\x02P7\\xee\\x13\\xff\\xde\\x03\\xf7?\\xc6#\\xe5\\xdaZ\\xf4\\xc1\\xcb\\xd0_\\x18\\xc0\\x04w}~~{\\x12\\x14\\x87\\x18\\t\\x17\\xb7\\xa3F\\x01\\xfc0M\\xbb\\xe3\\xa0\\xf7\\x86\\xde\\x1d\\x8f?-\\x13hSt\\x1d\\xbd\\x11g\\xa8\\xe6\\x99)Q\\xb0^\\xf7_C\\xb0\\x15\\xbav\\xcc\\x05\\b9\\x1c\\xbe\\x99\\x0f\\xb1\\xc1\\xa2\\xbcr\\x83\\t\\x1ao\\xffa\\x96ȱ\\xb7\\x86\\x99\\xae\\xad\\xea=(\\x87\\x92N\\xf4\\xee:f\\n[\\x84Mr\\x9b\\xffб\\x1f\\xc1w\\x9eq\\x9f\\xb9\\xfc\\x81\\xbb\\xc7sa\\xd0\\xd8ʨ\\x19\\xdb\\xd2\\x18\\xba\\xed\\xad\\xcf\\xd5(\\x1c\\xac\\x81Zi\\x87\\xbc|=f\\xfa\\x1d3\\xb3\\xb1\\b\\xf5\\xed\\x80\\x06\\x91\\xad\\xd0緩n\\xb4.\\xb70\\xa2FgDU\\x8e\\rZ\\xe8\\xb9\\x16\\xf7\\x85\\v\\x85?ɲ\\x1b\\xc44Lۤ\\xa2\\xed\\xab^\\x06\\xe7Xs\\xcf\\xdd\\x0f\\xccݏH\\xd8wG\\xf8\\xad\\xe3\\xb8I\\xbaPI\\xa9\\xfb\\xa1Ύ\\x90\\x03F=]\\xa7\\xc1\\x04\\xc6h:\\xc0\\x9a\\xd6:\\xda{\\xa8σx\\x82\\xd5\\x018\\x15\\b\\xde\\x02\\xf5kQ\\x9e\\xaem\\xc3\\x10ԣ\\xa3s\\xa5֮\\xf9Z\\xd9\\xec4\\x1a\\xd6\\xfd\\x1e,\\xab\\x12\\xb3\\t\\x86\\xd7븗\\x89Ƽ\\x9bH\\xe1\\x00\\x8c\\xa8\\x1e)8\\xe2;\\xdd$9\\xde\\xf1\\xd2\\xe7u\\x1f\\x1b<\\x94`\\x95\\xc6\\xd92\\xed\\xba\\xaeT\\xe9\\x9a\\xed \\x05 \\xb6o/\\x91\\xa2\\xb6\\xa5\\x00\\xdeX\\x0e\\x18P\\xac\\x83\\xb2ۡo%\\xf9\\xadk@\\x87\\xc6S\\x82\\x8d\\xe4\\xd1\\xcb\\x15h\\xcd\\xf4֪\\xda\\xdd\\xddE\\xcf\\xf3\\xc2\\xebb\\xef\\f\\x97Vͫ\\xb8\\xfc\\x91\\xf2\\xd8d\\xf7\\x15\\xdf^\\x95O\\xb3\\xde?\\x97\\x13u\\xff\\xc0\\xc4?\\x98\\x198q\\xa2.\\x9e\\x88\\xa7\\xffߌ\\x9e\\b\\xd9G\\xa9Dl\\xa9\\xa5ٙ\\xc7\\x04=I\\x19\\x8f6/h\\xb4?\\x92\\xa6\\xef\\x1f\\xbe\\x13W\\xef=\\xe9e7HY\\x01ՌF[\\xa7)3ɿe\\x1a\\xb8$!\\\"\\x89\\xdf\\xe2\\x1cGy1(\\xa1\\xf9\\xb6\\x8chx\\x82Ђ\\x8e[\\xe0\\x15V\\xeb\\xf1\\x83G(\\f\\xdep\\xf1`x֥\\xaf\\vIpZB<\\xf8\\xbb\\x80\\x8b0\\xa1\\x02\\xbd.\\xab\\xab\\x1f\\xb3~\\xeaТ\\xfd\\xe3><FO;7cA\\x98\\xc1\\x96v'\\xf3\\x11z\\xf3\\xe4\\xb4\\xe6Lt\\x0fx}\\xa2\\x0e\\xf2\\xa6!\\x19<\\xe0RrF\\xe9\\x00\\x1b\\xbe\\x8e\\xb7\\u05ed(\\xc5\\xf4s\\xadL\\xa2\\xfb\\xe0#\\x1f\\x9e\\xdcҲ.o\\x80\\x94\\xda\\xd8\\x1d\\xad=;\\xf8\\xe2U\\x9aU\\xe0V:\\xc8$\\xd5\\xc7\\x10q\\xce97\\xfa\\x97\\xe7\\xf3@\\xb5K\\xc7LU\\xa4D\\xaa\\f\\x17\\x12\\xce|\\x82\\xb6r\\x03kU\\x8c\\xfd\\xfd\\x1f\\xfban\\x95\\x90\\xe7;+1\\x85\\x9e\\xae3[f\\x0f\\xa6LWğz\\xd7\\x0f\\xfc\\xc0\\xa3S\\r\\xb7S\\x02\\xa4o\\xdd\\xf9\\xc1x\\xac\\x01g\\x99\\x8b\\x88\\xc9=\\xed\\x1f\\x92\\xf3+پ \\xc4.[\\xbb\\xcd\\xd8}mI\\x8c\\x9f\\xce\\xc4w\\x93BO\\xa29;\\xf9\\xd7U\\xae\\x1d\\x00\\xe2o.ȶ\\x13\\xbf#\\x00D|O\\xe4\\xf7T\\xe1\\xa4\\x0fD\\xa8\\xe6\\xc0\\x9cf\\xfez\\xd4\\x11'+\\xaa\\xa7\\xde*\\xaf\\xfe\\xeb\\x02E%\\xe3'\\xbeƛ\\xe4P6\\x1e\\xdd\\xd4Z\\x99[ٺ\\xe9\\xe8\\xff\\x19g\\xe6V\\x97ߚZ]qRn6i\\xaeD\\xd8}W\\x96\\xbf\\x14\\ne\\xb3\\xb1\\x9dW4\\xa6@\\x8b\\\\\\xf8\\xb2|\\x95\\xdd\\x0ft\\x0f\\x8c\\x97\\xccl\\xba-\\xeb\\xe3\\x97I\\xca)\\xef\\\\\\xcb}\\x19\\xe3~\\x159\\xd5\\xeb\\x01-\\xa75\\xf02J\\xda\\x19\\xb4haư\\xf2\\xf9\\xa3\\xc0\\xd6\\x1cZ青,d-\\xa5I\\xa9o翊\\xa3\\x1c\\x1ft-<S\\x12_\\u007f\\xb5c\\xf5_ڹR\\xcd\\xd3\\x1e\\x8bD\\x9c+֏\\xceoe\\xd0K\\xfb\\xb6\\x17\\xf8'\\x92\\xe3W\\xea\\x85\\x17\\xc5T\\x1c)\\xe6;\\x8dR4\\xe2\\xfaN\\x05\\xc4\\u007fS\\xd1\\xe0\\x95\\x8b\\f\\b\\x000\\x91\\x06z\\x03\\x86hP\\xc1\\x93\\xab*\\xe8\\xaa\\xccЊt\\xb1\\v:\\xb5'\\x16$\\x1dZ\\\\\\x98\\xee\\xf5A\\xf3\\x97@\\xfb\\vqN\\b\\xb3\\xf5%R\\xda\\b\\nmCt\\xe2\\xcc\\xcbO\\x99\\\"\\xd7\\x0e.1@\\xa5CI\\x88:\\xadDH\\xb0\\xb1\\xa6\\xb8DQЖ\\xd2/\\xa3\\x9aRY\\xbe\\xf9#\\x1c\\xc4\\xc0(ԍ\\n_\\u007f0\\xc2+Xz\\xb0r\\xcef\\xa75 \\xb2\\xea\\\\\\xf1cZ\\xf4ڨx\\xff\\x95\\xda\\x05\\xe5\\xd8V\\xb0\\xa6\\xd2\\x01\\x02\\xa2\\x03\\x11\\xf4\\xe7g[\\xf8\\x8d\\x953 \\x98z=!\\x8e0\\x1a\\xe0(g\\xf5\\b\\x9d$\\xcb\\xfam\\xab{\\xc2`\\xe4\\xbd%F\\x9f\\x16\\x19|\\u007f\\xc5\\xc4F\\x86\\xd5d>\\xebv\\x02D5\\xba\\xafyB\\xd0v9\\xada\\xb8\\xb0\\xe9\\x95\\x01\\x1c\\x1coɑ·&\\x04/`\\xfaͩ/v\\xd9\\x16\\x8e\\xcc\\xef\\r\\x01\\xef\\xc7&4\\x1d\\xf2{p\\xb7\\xd1梭\\xad\\x1bT\\xf3\\x851ɫ\\xba\\xb2п\\x1a1+\\x1az,\\xe3\\x15\\xed\\b4\\xe7Nύ?\\x93\\x8b\\xae\\xed]\\xd4;͓)2\\b]\\x8c7\\f\\xd1EKAW\\x03B\\tIR\\x05Θ\\x11\\xa8:\\xbf\\x8ei[+n05\\\"\\xea\\xd5.\\x81\\xc2\\xec\\x9e\\fF\\x1f\\xc4\\xdf\\xdb\\xcbJ\\x9d<\\x0e\\xf5e\\x8c[T#\\xb2F\\xad\\xd9x\\xe9kND͏0wdn\\xfb\\xa4)\\x99\\xf6д\\xbe\\x80k\\xd1\\xf5\\xac\\x9cOW_\\xe1\\x97m\\xfa$I9@\\xce\\xedT\\x9a\\x92\\x02\\u0087\\a\\xc0\\xd9\\xe9\\xfdU\\x15P\\xe5tl\\xdc[\\xfe\\xbe\\xf2\\xbf\\x1d\\x88\\xff,\\x1f~sfŀH\\xf2t\\xc5r\\xec\\x96C\\xd4\\xdcul\\x93[!\\r'Pk64\\x8e\\xb1\\x9e\\x81ȉ\\xe6\\x8eѭ!zď$I\\x92k\\xb8\\xe9\\x1aC\\x9e\\x1c&\\x82\\x84\\xb5\\xcb\\xd4b\\xcf\\xfd\\x994\\x93\\x9b>\\xde9o\\xebÚ\\x9b\\xf9đ\\xce\\xfa\\xc2G\\xffi\\xc3\\x13\\u007f0\\x1add\\xdd_\\xe7\\xeb0\\xe7\\x96\\xd7 \\xf2\\xa3P\\xf3\\xea\\fR\\x96\\x9e.\\x98\\xf5\\xfbT\\x1e\\x98\\xee\\xa5r\\xeea\\x03o\\x0f\\xf5\\xa0\\xa2\\x03]\\xad\\x9dN-\\xac\\xe5\\xa9Lq\\xd1q\\xb0W8\\x9e8s\\xeau\\xf4+\\xddJ\\xd1A\\x11\\xa4P\\xf3)\\x18\\x0f%y\\xa00\\xea\\xc5?\\xf72\\xda1\\x9a/\\xc7e\\x1b\\xb5\\xb7\\xd3?\\tl4\\x9eȗ\\xe0$\\xb3\\xa2\\xa8\\xe8\\xa5\\n\\xab\\x9aj\\xd4\\x01\\xe0j\\xc4\\xcb\\\"\\xcc\\xfa\\xa2\\xc2\\x13\\x05\\x0e\\xfb\\x15\\x14\\xdeI\\x8c\\x13K\\xca3\\v\\vOd\\x1a\\xfaO\\xa8R\\xf0l;\\xbd\\x97\\xae\\x84#\\xe6x\\xcdQv\\xe8\\xbd\\xf4z\\xcb\\\"]\\xcc|H?\\x17\\x82\\xf0\\xb4\\xd4\\b/\\x90\\xf5λ#\\x1f\\xf4\\xf5\\x16x\\xd9jkm\\xa0-\\x14\\xcd\\xc13Hd,\\xee\\b0\\x14\\t`\\xfe\\x18\\b]\\xb3\\xfc\\xe6\\xc1a\\xc9$fb\\xd8Fx\\x94ܴ\\x1a<\\x9d\\x8a3\\xc6\\x13\\xb4\\r\\f Ԕ\\xc9\\xc0ں\\xe3\\xab\\xf6\\x8c\\xcd\\xc1d\\xb4\\x85\\xed\\xa8{\\xea\\xd0\\xf8N[B5]\\x1d!8(0\\xbe\\x03\\x13\\xf2\\x97\\xc2)t\\x0f\\x0e\\x15S\\xd9g\\xfc\\x1a\\xa3'\\xc0\\xd3|\\xd4\\xe0\\x9dq\\x93\\xf0\\xbb\\x90KPAH\\xdd|\\x13\\u0e67#(Bo\\x88z\\xa2\\xf0\\xef~\\xaaG\\xdb\\xfd\\x9a@\\xd4\\xe2\\xcf\\xf3+\\x12\\x11\\xbf\\xf3\\x04\\x16\\xf3=\\x8d\\xf5\\x80ɼ\\xe8y\\x91I\\xbeUC1\\xd7\\xdc\\\"\\xeb\\\\\\xc0|\\xc0\\xa2\\xbdg\\xb2\\b\\xd8\\xe1\\tU\\xa3\\x14\\x80d\\xa4\\xff\\\"\\xa4[\\\"W\\\"\\xb05\\x8bP\\xb5a3\\xfa\\x99\\a\\xf8\\xe5\\x88.\\x9f\\x95\\x11\\x1d\\xa4\\xc8k\\x16\\xe7\\xe9\\xb2\\xed\\x86u\\x9cHEX\\xf4\\xb1\\x01\\xfc\\x059/\\x81\\xe40\\x8a\\x91_\\xc1\\n\\x83\\x8e\\x12\\x1eY\\xe2\\xc5Ygؾ\\xec)\\x87\\xb5\\x8d\\xdb\\xe7\\xf0v\\xf4q\\xad\\xbe\\xfb&\\x8e\\xf2\\xa0|\\x0e\\x88\\x19U,:\\x00~\\xbc擹Ӯ\\xb0\\x98\\x14\\xa2\\x17\\xc2N\\xa8\\xb4\\x8c~\\xcfI~J{ꔢ\\x80\\xfe\\xcc3\\x16;\\xff\\x1f\\xca\\xcc|?W<c\\xb4\\x9d\\xde\\xe26\\xffq\\xef\\xfe\\xd1\\a3\\xae\\xb6Ky\\x8b\\x9f\\xd1\\xfdp?\\\\\\xbfyz\\xdd\\xc2\\xe9:?3\\xbe/\\x01\\x1b1\\xd27\\x90\\x1c\\xea@\\x00\\xb2C\\x80\\xd0Կ\\xccF\\xeb\\xf3(^4,F\\x89\\x03\\xa1%T\\xdbߔN@N\\b\\x88[\\x14\\xa8Gs\\xb5b\\xf5\\x17x@b繩b\\xc8ø\\xfb\\xb4\\x10H\\x00SƓ\\xd7\\xdbM4\\xcfn\\xa0\\x98\\xbbg\\xc1\\xe40\\x82\\x92\\x01\\xfa\\x04YQ@\\x80\\bc\\xc9\\n\\x9bN\\xb2\\x9eE\\xf2\\x82\\xb8( \\xc1\\r0z\\x9bH\\xe2}8#\\xbd\\x8c\\xe2%i\\x03\\x84\\x00R\\x00\\x96L\\t\\xaeA\\xa3P\\x8c\\x88\\xfa\\x95\\xa3O\\x16X|p\\x00\\x0e\\xc0\\xc2 \\x9d-\\xc6{c\\xd8갮\\xab!\\x985\\x85\\x84\\xa1\\xb1\\x9a\\xc14\\x84\\x86.9K\\x15\\xba\\xf8Y\\x05:\\x1a\\xf1B@'Θ]\\xdc\\t\\x81F\\x00}̆UX%\\x05\\x86\\x10\\x17D\\x90\\x95 \\xf8y\\xd7w\\xab\\xab\\x10\\xd7ΫJK\\xa2\\xb3T,4\\xa0x\\xd78\\xef\\xc3+\\xd5\\x010\\xa5\\x05Nr,\\xba9\\xaf\\xe1\\xaf\\t\\x1e\\xcbs\\n\\xdc\\\"m\\x81{\\x98\\x1eLc|\\xd3K]?\\xd1[H\\x87VF\\xb5\\xba<\\x94\\x1b\\xd0\\xeb\\xa31K\\x85\\apK\\xae\\xf9>\\xee\\x93<\\x94\\x8c\\xb0\\xcdZ\\xf6\\xcbKf\\x80\\x13\\xc1\\xc0R\\xac\\xe9\\x16\\u007f\\x049\\xd0\\xf5\\xea\\xec\\x87\\xeb\\xf7m\\xe0\\xdd\\xd9*ͪ3\\xffexH{\\xa5V\\x06\\v\\x8d\\xbb\\x0f\\xcb\\xf9P\\xbe5\\xf4\\x83:4L8\\xf5.\\xbe\\xc07\\xfe\\xe2\\xfb˛\\xccC\\xffȦ\\x81\\xbaa\\x06\\xf9\\t\\x02\\x0eѺ\\xe3\\x9b>\\x8a\\xff\\x12̭r>\\x86to,B`\\x8a\\x95\\x8f\\xf9K\\xb0\\xf0\\xba\\x0f\\xaa\\x99\\x15\\xffq\\\\\\xe7\\xd30f\\xe7+\\xc2\\x11\\x1c\\xccc½\\u0bff\\x1e\\x0e\\xaf\\u007f0\\xff\\xad\\v\\xeb>\\x12\\u06dd\\\\\\u007f\\xd4U\\x16\\x04\\xc3g\\xdb^\\xe8\\xfb\\xefô/A\\x12\\xdf~Ct\\xba\\x9b\\u007f\\xe2\\xf8\\xbcFd\\xf9\\x8c;%\\xef\\x18\\x8e\\x84$\\xb9\\xb7\\xbe&\\xfe\\x00\\xdf3\\xfc\\xc8V\\x96`'\\xcc\\xdd=\\x10\\x8d\\x99\\xf60YݷI\\xb2d\\x86\\xa4?\\x93\\xe4\\x1eZ\\\"Y<\\xec\\xc1\\xd9w\\x9d#\\x0e\\xe9\\xe8\\xf0\\xf0\\xf7\\x9a\\xe2e\\xb9]'\\x96\\x83\\xd5\\xees\\x93\\xc4\\xcdM\\xb9\\xd1J\\x04ґ\\xd2y\\xbc\\x81\\u007f\\xbfeXҼ\\vKt\\x90\\xd3s\\xa3\\x9a\\x9b\\x92\\xc4Κ\\xfa\\xc58V\\xb1A\\xcf::{\\x0f3\\xb0\\x99Ɔ\\xf0\\x91\\xe9\\x05\\x9b\\xfdK?-\\x8e^\\x80\\xaa^΅\\t\\xef\\xe2)\\xbe^\\xfe;\\xc5\\x1d2\\x1c\\xb5OǈO\\xe3\\x11\\xb4\\xf2\\xf6\\xad[\\xc1\\xde\\xebm\\x9c\\xb6c\\xc7z8=Ǐ\\xaf\\xe8N\\x9dB\\x8f\\xe9\\u007f1\\x1e\\xd3\\xf1\\xea\\x02\\xc1\\x82}r\\xee\\xb8w\\xeb߫e\\x17\\xe7ӊ\\x1e\\x04\\xc8\\xdaz\\xb8\\xad\\xe0\\xebm\\x16\\x9b\\xa1d\\xb0\\xcf\\xed\\x18Us\\xe7\\xfe\\\"\\xce\\nC\\x1dZ\\xa5C\\x99\\xad6\\xba+\\xa4\\xec\\xe5\\xb1>3`\\xe3\\xdd\\xe3=X\\xb35\\x86-\\x82\\x98\\xddA\\x9d}j\\xa2\\x89\\xb9\\x8f\\xaf\\x9d&\\xf1c\\xc0\\x95Ϙ\\t\\xfe}\\\"\\xbf\\xbe\\x1eq%\\xae\\xe0n3\\x8f\\xee\\x18\\x9f\\x99\\xdf\\xd4\\xdd\\xdd\\x04\\xb9\\xfc;\\f\\x18\\x0e\\x1e=\\xaa&>\\xb5\\xb2\\xa9\\xa9\\xd2\\xe2_\\x90\\xab3B\\x81\\xa4R\\xb9\\xeb\\xa9\\t\\\"_\\xcd\\xe8\\xfbh^\\f\\xe7\\xa3\\xeb\\xdejW?\\x93/}\\xbft\\x11]eC̪,\\xba\\x1b\\xa8)V\\x9dTzq\\x01\\xe0\\x9a\\a\\xb3\\xbaϙQ|\\xf8P\\x8f\\xb7+y\\xc8\\xcbk\\xadT:ϫ^\\rٹ\\xc8\\xcb\\xdd\\x1ct\\xe4\\x15\\x8fYPz\\xfal\\xc1\\x0e]\\xf8_fyJ:\\t&>\\xb6'\\xb3z\\xd5n\\xb0q\\xd9\\xeb\\x95]\\a\\xc2J\\x0e\\x1c{\\x92\\x06\\xce#\\x9f\\xa7\\xaaV\\xa3\\x8c\\x85\\xef%8\\\\\\xe2;5^\\xaa\\xd8;\\xf9\\xb9\\x98\\x97\\xa1hX!ge\\xd4\\xeff:˵\\x17\\xb2Y\\xf6\\xb2=\\\\\\x16\\xc9-\\x03L\\xf0\\xef\\xdcVQM\\xa5\\x88wǧ\\x10\\u0086\\x812\\xae\\xb2\\x90b{\\x16\\xc0\\\"?\\xcff\\x8ff\\x1fҳ\\xbeȪ\\x98x\\x1f\\x97$ԔL\\xe9\\x11\\xd4\\xe9\\u007f:\\x03\\xf0\\xae\\x94\\xed\\xfb\\a\\b\\xfeS\\xbeC\\x88\\xb6_\\xf6\\xcf&[\\x97-\\xdf\\xfe\\xce\\xc5\\u007f\\xb5\\xb7\\x1b\\u007f\\xfa\\x1c\\xbc8\\xea\\x94\\x16\\xc1ko\\\\\\xc4\\x13&\\x1fe\\x91\\x90\\xc2FZ\\x17\\\"\\xc9|\\x99\\x9eI2N\\x1c&\\xa8\\xc8\\r\\x99\\xf6\\x80\\x848K\\x1c\\xed\\xf4[\\x98\\xb7\\xb3\\xb2T\\xae\\xb9}\\xc5\\xf5\\n\\xe6S\\xf8\\xa0`~#\\xbc\\xf4s\\u0892\\x9f\\x13)\\xb7_\\x01GdD\\xf6\\x04\\x8eY&\\xcd\\xcfl]}\\xea\\x06\\x95\\xe7\\xce\\x19\\x1e\\xf5\\xf2\\xa9խ\\x99\\xd5\\tk\\x99te\\xa1D\\xda2[%\\x1ev\\x8e \\x99kV\\xec4'\\xff\\x14|R\\x87 q\\xb2\\xe4W\\x06\\xa7\\xb6'\\xc0\\x8c\\x827C\\x9a\\a\\x87\\xe8\\t\\xc3,\\x96X\\x1d\\xe7\\xebp\\x1c\\xdc\\xd1wj\\x91<\\xee\\x0f\\x0f\\xdd:\\xa9\\xfd\\xbb\\x8bI\\xe0Py\\xfc\\x1f\\x97\\xef\\x8fz\\x82np˵\\x97\\x94\\x9f\\xff.\\xd7\\xf8\\xf3\\x03ۺӜ\\x13\\xaf\\x9e\\x8f\\xe3\\xa6κ-9\\u07fb\\x94\\x17x\\xde\\xee\\x8b\\x0fp@(\\xfc\\xec\\xa7\\b\\x84L-ɖ֧\\x95\\xd4w.$\\x1bb\\x8b\\xb5Ӕ\\xc4.\\x1eN(\\xecK\\xb3%i\\x99\\x02 \\xea\\xff\\x99\\x12\\xc4\\xe9\\xa3|v\\xde\\xc2\\vw\\x9e\\xcdG\\xb5\\x9e\\xbd\\x13y\\xc5-Y\\xfd|H\\x00sæ\\xbe\\xa9]7\\x0fuaB\\x11\\xf0\\xfe\\xda\\xef\\x8a\\xdd\\xd4{\\xfb\\xab\\x1b\\u0381i`\\xd4C'\\xbf\\t\\xb7X\\xa6\\xb8ݞ\\xab\\xb3\\x1eM\\x85H7\\xa7}\\xf6\\xf7Y\\x8d:\\xff\\x98'\\xcb\\x01\\xff'\\xf2ѡ\\xf7x\\xa1\\xef>\\xde\\xf1\\xe7\\x88\\f\\x8a\\x0eHW@\\x16\\x89N\\x90\\x8c\\xa8\\x02\\x88\\x10\\xd4\\x1a\\x04\\x00T\\x83\\xa6\\xdds\\x87\\x83)\\x91\\x12\\x84\\x00\\x81UÊ\\xe6{\\xae6\\xff7\\xa8\\xf5\\x11\\U00069760\\x9c\\xefyA\\xb0\\xf3\\x90'\\xee\\xb3\\x19I3\\xa2\\xafs\\x19\\x94Qf\\xed\\x9c)\\x18q\\xf8h\\xde\\x1a\\x8a\\xf4\\xc9F=\\xd1\\xd6Ƞ\\xd4\\xce\\xdcO\\xd8#\\xb5p\\xaa3\\xd9Rr\\x82Õ\\xa0;\\x02\\xb3\\xba\\xb9.\\x99\\xe24\\x98\\xabw-\\xbc\\x16\\x91\\xe3\\x9a\\xf0k\\x97\\xa0\\xa6\\xb3q,\\xe9\\x14\\xf1\\xfe\\xba\\xe6Ғ\\x92\\xb6\\xe2\\x9a\\xefscq0G\\x063S\\xa0\\x86\\x1d)\\xf8x\\aHkE\\xc6q)\\x12\\xf0\\x8c\\xb4!\\x1b\\xdc\\xfa\\xa6/;\\xac4 $'0\\xaa1\\x97\\x86\\xe4\\xb82pD\\x90\\x12\\x99\\nQ\\x10\\xc7\\x11\\xe5V\\xa6\\x19R5\\xb1|\\xef:\\x18\\xc1q\\x00\\xd6b\\xf0߿\\xa8\\xa9q%\\x16U\\x94\\x99Փ\\x81k\\xeaJ\\xa3T \\xa3\\xf1\\x98QE\\xec\\xaag\\xd2\\xf3\\xb4FfT]\\xe3kQ<\\xea\\xe1F\\xf0\\xe9\\xd3\\xebW\\xb5\\x87O\\xa8\\x8f\\x86Κ\\xeeD\\xe8\\xd1K\\xc7\\xfd\\xea\\xea\\xaaͩ\\x03s\\xbd\\xe7*R\\a7\\xfb\\x8c\\xf5\\x1c\\x04\\xbc\\x82\\x00\\x00*\\xee\\xfc\\x98;\\xa60\\xea\\xa8^\\x89\\ai\\xfe\\xb3S\\x13\\x9eF\\xfb\\x97l\\xba[5\\xbbhjjb\\x1e\\xfe\\xd1}W~*\\x1c;\\x02\\x9eO\\x02\\x84\\xc8{\\x93\\xbe\\xcc\\xfaP\\xd44/\\xf4t%\\x17\\xa8@\\xcb\\x13NɖF5\\xa06$S\\xfb\\xf3\\x1a!5l\\xcc\\x1f\\xb8BT\\\\R\\xf3\\x15*Be\\xaa\\xa4\\vYn\\xaeoC>8c\\xd36\\xb9\\x0e\\xec\\xee(\\xa8P\\xb2\\xd0\\xd4Tj/\\xb2\\xd2\\xea]\\x83\\xda\\xd1d`\\\\\\x89.PkEڣ;r\\xbdQC\\x8f\\\\\\x9e\\x93\\x00=\\x9f\\xc4\\xff\\x1c\\x85T;\\x05\\x13\\xad\\x11\\xf79Y.\\xed8(ٴ\\x02\\xe1\\xc7k\\xb1\\xc8\\xfaA\\xf4hР^y\\n\\xe5r\\x05\\xa6\\x14\\x86\\xf6\\x1bn\\xa8L\\x85T\\x99\\xfd|@\\xad\\xff\\xda\\\"\\x9b\\x99\\xf6\\xd5\\f\\xf8\\xda\\xd5J\\x89\\x1a\\x02\\xcdP\\x95>\\xd8\\t\\x8d\\xc8F\\xf6\\xf2\\x9b\\x12P\\x17\\xb4Z\\x13\\xb6ԩm\\xeb-Qx\\xb6\\xa5\\xb5H-d\\x94\\x1aT\\x8c\\x96\\xaf\\xb8\\x96\\a4\\x8fw\\xea\\t\\xab'L\\x9a\\x850\\x8d($\\xe5\\nz\\xd3\\a\\x99\\xda\\x1f8\\fO/ \\x00\\xf2\\xd5FN\\xb7\\x17\\t%#\\xd2\\x14\\xb2$\\xf1\\x15\\x92\\xef\\x85z#\\xffz\\xc8pai\\x82\\x15μ6GZ\\xa49ى\\x9dr\\xe8\\x9a\\x01\\xe2\\u007f\\xac\\x8b\\xfc\\x91\\xff\\xe74\\xf3\\x1bJ\\xadmL7EJR\\xac\\xa9eH4B\\xa0\\x1e\\x1a\\xd3V\\xe5\\xd1b\\x9e\\xc2J\\xadnt\\x8aLֳ\\xa1\\xb7\\xd4ok\\x83+\\x90D\\xb4[\\a\\xccM\\xc5\\xc9\\xdbNJ\\x04o\\xae\\x04\\x10\\x92zutu\\x86/\\xd7\\x12\\x86\\x8a\\xbcs\\xfe\\xee!2\\xac\\xd7\\aŇ\\xd3*\\x98\\x8e\\x15KF\\xe0\\x86I\\xab\\xa1\\xb1$o\\xf5\\xbd\\xb3\\x1b\\x19ϵ(%=\\xd4\\x00\\u007f%@\\xe2@\\xa3\\xbb\\xdb\\xff\\t\\xa0r\\xe1c!B:\\xa3\\xe9\\xd9(Q\\xb3\\vf{\\xd9\\x15\\x99N\\x1bX\\x82y%]Td\\x15\\xf3CBJ6\\x8a\\xa9\\x84\\xfb\\xdf]Hv\\xf0X\\xf5\\x15{q[a<\\xf2\\xb3G\\xf3\\xd6\\f\\x81\\x94\\xe6\\xe1\\xc4f&\\xbe\\\"\\x1b\\x87\\x16\\x8a4Ԇ\\x84\\xd1\\nR氷\\xd5B6\\x19\\xb0\\x94\\xd9\\x12\\xc2T\\xa3\\x1f\\x80\\xdd6\\x17\\xa5u\\xf4\\x81\\xf6\\xcbԨ\\x93\\x15\\b\\x19\\xb9\\xbbrvƲ\\xda?w[\\xb9j\\x0f\\xcf:K\\x8dgJ\\xa7\\xa9^\\xdc\\x11g\\xc3V\\x8b\\xf4#\\xb5ի7t\\xa8\\x13\\b\\x90\\x8c3Jgd\\x1e`\\a\\xadߪ\\n\\x06\\b\\x0f\\xdb\\\"\\xd5Ac\\xb5\\xa7\\x86\\xfe\\xd1p\\x14m2{\\x81\\xc5R\\x89N\\x14J\\x99\\xb8\\xa3$3?\\xa6\\xbaH\\xa6\\xdb\\x1cJAx\\x85\\xceMnU\\x19\\xbd\\u007f\\xd0ְ\\xdb\\xd8\\x11\\xa3u$U\\x87\\x1b0O\\x8bN]\\x93U*\\xd3\\x12\\xb9\\x91\\xd0\\xdf ^ڦ\\xa8e\\xa5\\xb7\\x14d\\xbc\\xa560\\x96\\xbfB\\xa5\\\\\\x9e\\xd64/ӡE\\xeb\\xeb\\xd3L\\x1ezp\\x1d8\\xf5\\x1b4\\xfau\\xcb\\xdav?Ї\\x11\\x11\\x8e:g6f\\xcd\\xfa\\x02\\x98\\xc9t\\x1fa\\x16Q\\\"\\xb3\\xce|\\xe4+G\\xcc\\xf9\\xa5GJ\\xc6\\xdfi\\xa5\\xfe\\f\\xd7\\x1a\\x91e\\xb8\\xc2M\\a$\\x11\\xedA\\x18xg\\x18\\x132\\x96\\xae\\x18#\\xe2\\xb7\\x1ae\\xd4h'\\xeaܦp˓\\xac\\x94z\\xc0\\x16\\xb4\\xd2Hz\\xa3 gO+qY:\\x91\\xe3\\xbeZ2y\\xd6\\xef\\x19\\u007f\\xb0\\xef\\t\\xa9Q\\xc5(\\xd4Yȑ\\xcb\\xd9#VmR\\xf9\\x18\\xf0yt\\xf8ń\\xeb\\u007fd\\xca5\\x18\\x99\\xd7i\\xf9\\x8a\\x13z\\xe3\\x14\\xd2NvL\\xae\\x86\\x02\\xfe\\b֯t4r/\\xdb\\xd0T\\xd1\\xca\\\\_Ҩ\\x1fI%\\x95\\xd8\\x1dK\\xdd\\u007fn+\\xa5\\xe2\\n\\xb5\\x89\\xcca$\\x8eO\\xb1\\x18\\xf4Ϲ\\x97\\x0e\\xd4\\xe3,\\xe4\\b0oԙ|d\\xbc{\\xa5\\xe1HA\\x97\\x164\\x02Y\\xe8\\xadS\\xc42V\\xd2G=\\xea\\xfd\\x97\\xd1\\xeaN\\xb6[\\fl\\xf0\\x0fL\\xa2\\xb2t\\x12\\xb5[nV\\x85\\x81?\\xc3\\x1d\\xe7rŔ\\x1e\\x83\\f\\x1f\\xc5\\x19\\x98\\x1d\\x1d\\x92\\x8b\\v\\xd7\\xfc\\xf3ƿ\\xc8\\xc2\\xe3\\xa7\\xf9\\x82ٝ\\xf8\\uf3f73\\xca8\\xe6R\\xcd\\x14՛\\xf4\\xa1}\\xd4\\xe4tرѨ\\x03\\x85\\xd5\\xdcN\\x88\\xef`F;!#\\x9dM\\xe1VfZ,\\x97A\\xcb\\xfa\\xc5\\xd4G\\x8c\\x1e\\x02\\x93e}\\x17MX\\u007f\\xb25\\xf4\\xa3\\xfcI\\x19\\x971\\xf0E~$\\xb7~-\\xb5J\\x0f:1\\xa3iL\\aU9\\x03E\\xbb\\xc4\\xf1\\xa5&\\x86;\\xa7l\\xd4\\f\\xc60!\\f\\x8b%=O\\xba\\x9b\\x80m#T6\\x11F\\xeaJ\\xff\\xedx\\xc2\\\"\\x91\\x19\\x8f0D\\xb9U\\xb6\\x9bf\\xa8\\xaf\\xcb\\xe0\\x15-u\\x10\\xe4\\xd1O.\\x19\\xe6Ә\\u007f\\x17\\vDC+]\\xe1\\x9ea\\xa7(\\xfd-\\x1b\\x06\\xef\\xfd\\x89\\x8c\\xa1Ǳ\\x8eu\\x8e\\xae\\xfd\\xf6|\\x98\\f\\x06\\xb1\\xa9\\xadY\\xffKRbT`uTd\\xe5\\xaa8U\\n;\\xc7\\x15\\xb3\\xd5^\\xaf\\xea\\x1d\\x8b\\xa3\\xc8[\\xb7&H\\xc7\\x11Vn\\xb9\\xce\\xd4T\\fpK\\xf4\\xb5!L\\xd4\\xc7b\\xf3C2\\x16\\xf0\\x8a5fs\\xdaPh6$\\x13\\b,\\xe0`#\\xea\\x85\\x1f\\x86\\xd8\\xd51\\x9f\\xb2\\xeeC\\xb9\\xc8,\\xce\\xceD\\x18\\x1d:\\xbc\\x0f3va#\\xbd\\xfb\\x80\\xb76\\xf7c\\xce\\x13\\xeb\\xbct\\\"_@\\xeb_Zw\\xeb\\x1fV\\x06c\\x19\\xf3\\xed\\xf0\\x11\\x19\\x10rU\\xd9&\\x91\\xf1\\xf2l\\x03\\x8dg3vg\\xac5\\x0e\\x05\\x91\\xf2\\xd9a\\xaf\\xac\\xcb<\\xbd\\xca\\rۮ\\\\\\x9d\\x1b\\x1f?W^\\xf0jL8\\xaf'\\x82\\t\\x89J\\x8c\\xf6G\\x85\\xc2\\u007f6\\xcd\\xeb\\xd9*'՜\\xbb\\xb1A\\xe8\\xc9\\xea\\xfd\\x93\\x92\\x13\\xc2\\xc7Ҁ\\xe9v\\xf0\\x18Q\\xa8\\xf2DGR\\xd6M\\n'\\x96\\xb1\\v\\xa2\\xe1\\xba\\xcb\\xc8(-\\x0e\\x9e/B%7\\xb48\\u007f'\\xba\\xab ԛ\\xf92\\xf7\\xf3\\x0e\\xe3\\xe7\\xbc\\xcf\\xcaukV\\xe2\\xcd\\xe6\\xf1dI\\xa7\\xf0t\\xf5\\xb5W\\xf3\\xd1-ԅ1\\xa3A\\xef\\x9a\\xdby\\x8f0E\\xf4,\\xdeoݨ1~w\\x8b\\xc1\\a\\xa2:\\x1e\\xf4Y\\xcdU\\x9ed<?\\x18\\xf1j=\\x8fg\\xa4\\x19A\\xce\\xe1\\x16\\xb81b\\xa3\\xeb\\xa6YN\\xebb\\xc50\\x8c\\xb0\\xf3\\xb7\\x1b\\xbe\\xde\\x16\\xc3\\\"\\n\\xea\\x03ӝ\\xcfa*\\xbb\\xa4\\x16\\xd7l\\x86\\xb3\\xef\\xf9\\x16\\x81\\x85g\\xbc\\x8d\\xc3\\xef\\xdef\\x04\\x9c\\xe1qbn\\xfce1M\\xaf\\xc3*\\x869\\x8dGC\\x82\\x11\\x8fN\\bAI`\\x12\\x8a\\xe2a\\x810\\x94\\f\\xef\\b\\x87bq\\x81H(\\x13?(\\x06\\xe4 \\xa2\\xc8\\xc8F&\\x89\\x82x\\xb2PT\\x14O\\x1e\\x17\\x1b\\xb2Q\\xf8Ȏx\\x9a\\x82\\b\\x02*\\\"\\x84r!t\\x16@E\\xa8Z02\\xa3\\a\\x84\\xa0r\\xf0\\x9cPT\\x04\\xd9\\xc2P\\x15t\\x93p(\\x17\\x83H\\xa8\\tQ#\\x064\\n_\\x11\\x19\\xa5\\x13\\xb7(\\xc8L:DEEdE\\xcd\\x16W\\xb2\\xfb\\x1b\\x8c\\xbd!\\xd4a\\xd0Ldxst\\xaaR\\xe1\\xa1\\xc8\\x17bV\\xd27R\\x83'\\x88\\xf6i\\xef\\x02\\x8b\\xe9\\xe3\\xed<k\\x16\\x8f\\xa2/b\\xabz\\x16\\xc3\\x13\\xa1\\v\\xcb'\\xb4\\v\\x1d1#g\\xbaC\\xb0\\xd2\\x01NS\\xeb\\x97s˗Lâ\\x13\\x1b\\xdd\\xfa\\x11Łs6\\xf3\\x85\\xd8S;\\x95\\xc4*W:\\xbeT\\xd4\\xe3\\xec\\xf8K\\xff\\xaa]u\\xbe*\\xb5\\xaf\\xff\\xb7C\\x9ag\\xb4?_\\x81t\\xd4\\x1e\\x9cD\\x19Ԃ\\xa2\\vl\\xc6\\xff\\n\\x1f\\xe7\\xb1\\xeb\\xf1^{\\x02\\x9aW\\u007f\\xdf@\\x9dZ\\xec\\x81p\\xc5\\x16xP\\xfd\\xafx{\\x1a\\xcf\\xf1\\tLN\\xff\\xa3\\x16Ou\\xed\\x1a\\xf5\\xfe\\x98칦\\x93\\xd5ʱY\\xa57\\x1fmP\\xac!фx\\x1d\\xabugR,*\\xec\\xc8Ţq\\xc2Fv\\\",\\x14M$l^sG\\xe9\\x06$\\x0f\\xa5\\x15\\xdbGc\\xa9Qd\\xa9\\xd3@\\xa6P*v\\xf5҈,Q\\xa8Q\\x9a\\xa4vg\\xde\\x00\\x1dW\\xa6!\\xfc\\xe5\\xc7\\xf6\\x95\\xaeOo\\x83\\xf8\\r\\xb5\\xe2e)/G\\xfc\\xf5\\xf3+ezm\\xf4l\\xbb\\x15\\xe9ڞ\\x84\\xae\\xfd\\x85cٓEE\\xbf\\xa0\\xd5\\xed\\xfa\\byA\\xbf\\foW7\\x14\\x02$\\x80\\b\\x83\\xe0\\b$\\x1a\\xea\\x9f\\xe0T\\\\\\x98X\\xb8Ѹ\\xda:@\\bFP\\f'H\\x8af\\xee\\x028^ \\x14\\x89%R\\x99\\\\\\xa1T\\xa95Z\\x9d\\xde`4\\x99-V\\x9b\\xdd\\xe1t\\xb9=^\\x9f\\x1f\\x00!\\x18A1\\x9c )\\x9aa9^\\x10%\\xf9\\x1e\\xea\\x1f\\x1d\\x9an\\x98\\x96\\xed\\xb8\\x9e\\x1f\\x84Q\\x9c\\xa4Y^\\x94Uݴ]?\\x8cӼ\\xac\\xdb~\\x9c\\xd7\\xfd\\xbcߏ\\x00\\x88b8AR4\\xc3r\\xbc J\\xb2\\xa2j\\xbaaZ\\xb6\\xe3z~\\x10Fq\\x92fyQVu\\xd3v\\xfd0N\\xf3\\xb2n\\xfbq^\\xf7\\xf3~\\xff{z\\x18@\\x84\\te\\\\H\\xa5\\x1d\\xd7\\xf3\\x830\\x8a\\x934ˋ\\xb22u\\xd3v\\xfd0Nv^\\xd6m?\\xce\\xeb~\\xde/\\x8c\\xe2$\\xcd\\xf2\\xa2\\xacj!\\x95\\xc9\\x0f\\xf5\\x9f\\x1e\\xa3\\xe8\\f&\\x1b\\x8b\\x9d\\x83\\x17'\\x17on\\x00\\x84`\\x04\\xc5p\\x82\\xa4h\\x86\\xe5x\\x81P$\\x96Her\\x85R\\xa5\\xd6huz\\x83qn2[\\xac6\\xbb\\xc3\\xe9r{\\xbc>?\\x00B0\\x82b8AR4\\xc3r\\xbc J\\xb2\\xa2j\\xbaaZ\\xb6\\xe3z~\\x10Fq\\x92fyQVu\\xd3v\\xfd0N\\xf3\\xb2n\\xfbq^\\xf7\\xf3~?\\x02 \\x8a\\xe1\\x04I\\xd1\\f\\xcb\\xf1\\x82(Ɋ\\xaa\\xe9\\x86iَ\\xeb\\xf9A\\x18\\xc5I\\x9a\\xe5EY\\xd5M\\xdb\\xf5\\xc38\\xcd˺9\\xb8ѓ͠\\xde\\xff\\u007f\\x90\\xe2M,`\\x16y8\\xd7\\xd8W\\xe6\\a\\\"\\xe7[\\xa4m\\xc7\\xec\\xd7ץ\\xe8\\xef_\\xedua\\x1fjr0\\xc0\\xeeQT{\\xbf\\x8b\\xafo\\xfam\\x14Y\\x13\\xbc\\xa5\\xa3\\xba\\xbf\\xd3m*Nh\\xe6|\\xce\\xe3|\\xbf \\x99S{\\x85\\x98۔{\\xfa\\xf7{\\x8a\\xfa\\xcfw\\x98\\xa1\\xbbu\\xd81\\xa3ye^\\xa7S\\xa9R\\xf9٥\\xcc\\xf2\\xba{Rx\\xf8\\xfe\\x84.I>\\x86\\xdcM/~Uڝ4\\x0e\\x0f\\xbd\\xc0\\x91\\a\\xa4\\xcdGx\\xc0ܜ\\xfb\\x9c\\xf4v)e\\xb3\\xfc0G\\xf9\\xa8\\x1d\\xb0\\x95\\nǶ2\\x1f\\xaf\\x9e\\x9dgm\\x9c\\xd0\\xfa\\xfd,\\x18E\\x87\\xc6\\x1d\\xceMGJ\\xd2G'\\xe3B\\xe7\\x97}o\\x0fx\\x167\\x90\\x97\\x9b\\ff+\\x12gԒ\\xed\\x10^a\\xa3\\xbc⺹C\\n\\xd4[o\\xe8\\xac\\xe1HcQ\\xd4\\xea\\xfa@\\x0e\\xb8\\xe3\\xb6Mĵ\\xd6\\n7\\x10#\\xdb\\xedR\\xc2.\\xf3\\x8a\\u007f\\xea8\\x8adO\\xac!ar\\xff\\x13\\x0f\\x8cā\\xe5\\xa8\\rs]oFDo\\\\\\xa0\\xde\\xca݁\\xda\\xfb*ُB\\xc9\\x15ɞ\\xa8Cl\\x94\\x03\\xeeױR\\xb6\\x13\\xb4_ϥ\\xd6ڃ\\x0f1^Α\\xf1d\\xcaFj\\xa3\\xeb\\xc81$\\xf6%6\\x9b\\x19\\x1d)\\xa2 \\xf7%\\x16\\x8e1\\xa1\\x1d\\x98\\x91\\\\\\xb8\\n+H.\\xe6C.\\xebbS\\xb2\\xf0\\x80\\xfa\\x86\\x8fz\\x9b\\xc8\\x01\\xd9<>\\xad/\\x8f\\xffN\\x9d\\u007fq\\x1e\\x1d.\\xb2\\r\\xfb\\xd3O6\\\\͍T\\x1c\\x98)\\x94\\xe8+\\xebPJ\\xb0\\x8ev\\xbf\\xb9\\xd2M\\x89S\\xaa\\x06\\r\\xa4q24\\x98k`\\x13\\x14\\xf9 \\xecx\\rBjt\\xdf\\xc6M\\xb9\\xc0U\\xab\\xb6\\xec\\xb7K\\xa9\\xbe\\xa1\\xac\\xd7&ՆN\\x8cI\\x89\\xab\\x8d8Ϻ\\xde_\\x8a\\xf5N\\xca\\x19\\xc1\\\"\\x9eHRz\\xb6\\xba\\x85cF/\\xd2c\\x9f\\x81\\xae\\x82r9f\\xf7\\xf2.\\xeby\\xf5\\xcaj\\x95\\xf3|\\xa4\\xc7\\xe4\\xdcK:\\xf9\\xd48Y\\xef\\xf7\\x93,Q\\x9dxj߭?\\x95\\xacR)\\xdd&\\x05\\xe1\\xec\\x14\\x91\\x8f\\xfdz\\xaf$\\xfb̙L\\xf4ևq\\xf6*\\xb9\\xaey\\xfb>\\x90\\x03\\xa9]ë \\xb2!֚\\xdc\\xc4.a\\xbe\\xb7\\xc1\\x00\\x19Z=\\xa5c~'\\x05\\x19?\\x91\\x13J;\\xfb%\\x9eCJt\\x85\\xf0Ѣ\\xf8\\xe4\\x9a\\xff\\xa7\\u007fdy$\\xaa5\\xf3\\x83\\xbfw\\x888\\xf2\\x8e\\x11\\xe6M\\xc4L\\x9e\\x8e\\x1dB|\\xd3\\xe4\\x8fs[H\\xd9QU\\xd9\\xd1\\t\\x15\\x8b\\xbc\\xda>\\xa0\\xf4M#G3\\xeeDx\\x95$\\nu\\xa4l$\\xed\\u007f\\xff/{9\\xb8\\xe8Sr\\x9bt|~v\\xc2c\\xec\\x019\\xc7\\xe5'c\\x102\\xc2\\xd8\\xd5z\\x15\\x90\\xa1 1r\\x13\\x8e\\x15=)2\\n\\xa3Q\\xc5\\xd7U\\xa4.\\x82\\x05S\\xec\\xb2b\\xbe\\x9aK<\\x82\\xf9td\\xeb\\x95/\\xc6u;ߕ\\xe7H\\xfd\\t\\aLĶ\\xe9\\xaex\\x94}ى\\xe6\\xf1\\x8c\\x19+\\xe7\\f\\xedΠ\\xd9w\\xaf.\\xf4'+\\xb5\\xb1qDw\\xde\\xc0G\\xb7I\\x11r\\x1b\\x97\\xe4\\xec\\xe9ީ\\x84\\x8d\\xec~S|d\\xaa\\x89\\xb7\\xbf\\\"\\x1eW\\x89\\xe9?\\xed$\\xd4j\\xbek\\x84\\xb6\\xb7\\xa8\\xda0+vpM\\x98$+$\\xefޜ\\xcbUf\\x89h\\x1fS\\x94\\xee\\xe2\\x80'\\xe3 \\x9eh/\\xfdDª\\xb4\\xf7h9NI\\xf3\\x19\\xfblBֳ\\xc9W\\x9c\\xbbQ~$={GJ\\x81\\xaaM>\\v\\xb4\\xc8\\a\\xb4&}\\xac\\x9b~)\\x05\\xec(\\xefH{zH\\xf6\\x06{@\\xad<'x\\u0090\\xdeX\\xf8\\xa8\\xb2X\\x0f\\xc7\\x13Z)\\xdd\\xe1\\xdf\\u0089\\xc9P\\x0f\\xa7\\x83\\xb6\\xca\\xdcpp\\x05\\x9ct\\x83\\xbe\\xeaɔ\\x97\\x1b`\\x14\\xef&\\x8a\\xdb\\xdd\\xf1Yjk\\xe8\\r\\x1d!\\xce}\\x87)?:\\x98\\xb1\\xb8a;x0e\\xbc.\\xf0\\xac\\x03r\\x97\\xf9+\\x82uH\\v¹Q\\xd4s\\xa4\\x9f\\x1df\\xa8\\x9e\\x1d6YW\\xe8\\xd0w{|\\xc7C\\xc5C\\x1e$\\xbc\\n\\xd40\\x12\\xb2A\\x83\\xc45\\xa2\\x91c5P\\xea\\u007f\\xedζ]\\xf1[S\\xc2r:\\x1a\\x94\\x91z\\x03\\xf6A\\xfb\\x0e\\xc9F\\x9af\\t\\v\\u05ed\\xe3\\x15r\\xf4<0J\\x923\\xca\\xda1꣨ܘ+\\x1b%\\xdf\\x03(wJ\\x8a(\\t\\xba&\\x1dZ\\xe1Xa;\\xe6\\xd1&\\x0f荝\\x16\\xfbG\\xfc\\xf17M%\\xb2\\xcd\\x1f\\xc2\\U0005b4acc0M\\xe7\\xcc\\x1a\\xab\\v\\x9e(\\xaf\\xa3\\xc9?*\\xdf>R\\x14\\xb5\\\"\\xafБ\\xc5p\\xae\\x13W\\x91z+/\\xfc\\xce7\\xa86\\xf9:q`\\xaeq\\x88\\xb4\\x87\\xd2\\x03\\xd9Ea\\\\\\x16C\\x94D\\x05\\xc5:\\xdd\\xeb>^\\xd9\\xf3bV~R\\xeb_5\\x9d}t.\\v+\\xda\\xe8G\\xb6&\\xceT\\xbe\\xd5\\x04%\\xeb\\xe1\\x8e$*<\\xf8\\x84T\\xa0.ɾ\\x92viε\\x88\\xb9\\x9cGF\\x9d.\\xd7\\xec\\x9b\\x18\\xba\\x82\\xfc\\xe0\\\\ۢ\\x15\\xf6\\xa5\\xc4P\\xb2\\xf9+u\\x17\\xce\\x10\\xf3t1<\\xaa\\x91\\x1a\\xf4\\xf6l\\xfb\\xab\\xab\\xc6\\xf6/\\xa6\\xa9\\xcch\\xea{\\xb1NmE6\\xe9\\x14\\x91J\\xa9\\xbd\\xecս\\xb6\\xea+\\xa26(\\x83J\\x95\\xc5.ʗS~\\x1e\\x99\\x9d*C\\xa5kV\\xaaU\\u05ee)\\u0097zic\\x1f\\xef\\xe7\\xf8߷6M\\xd9X2\\xbfZ\\xb3\\x15\\xff\\xfah\\x96\\x16\\xc4\\xce\\xcc\\x14\\x92\\a\\x83r\\rR0Y\\xa5Y9\\x90\\x89~c\\x9b\\x00?ɋҎ\\x0f\\xd1\\xc7ԂF5\\xca&\\xd6٬\\x1b\\xa2\\xb3\\xb7m\\x9e\\x1b\\x03ѷ5\\x92O\\xb1\\x8aZ\\xd5\\r\\x94tF\\xdbh\\x95\\xf4伎CJ\\xb7\\xc2F\\xd6=\\xa6u\\xaf\\x14߷į\\xc9A\\x1a6\\xe4\\x95\\xf3աO\\x0e\\x801\\xd1\\xceYM\\xf95\\x02\\x97+\\xf0\\x89\\xea\\xd6\\xf9\\x00=\\xa8\\x8c\\x9etº\\x92\\xa5\\xe0\\x9c\\xfb,IǸ3-=\\x12\\xc05\\x1c\\x91\\xe5ə\\x94\\x9d\\xcfR\\x12\\ue4a8\\xec\\x19\\x8c2\\x9a\\xb5A\\xdb\\xc5\\a۴:+Vt7tv\\xab\\x1b\\x95\\x12\\xfb\\x15\\xf5ș6\\xb7\\x8d\\\"\\xe7v3.\\xd6\\n'.\\xbb?\\xdf\\fe\\xc9vyܩ{\\xa8\\xef\\x10\\x8by]\\xbb\\r\\x9a\\xd7M^\\xee\\xb6\\x1c\\xf1\\xfa\\xfe\\\"y-\\x84\\xdbQ\\xa1\\xa4n.\\x93\\xe0\\x8d\\xce+\\xed\\xfe\\xcfm\\xbeH;\\x9b\\xa6\\x88K\\x0fn\\a(\\xd8\\x15\\xa6IQ,\\xfc\\x826n\\xb5\\xb6{\\xe2k\\xed\\xa0\\u007f\\n\\xff1\\x1d<\\x98L\\xdap\\xcd\\xd0o\\x94dC\\x12\\xad椧A\\xdb$I\\xec<\\x95\\x9et\\xf9\\n.\\xe8Wzo\\xe7\\xbb\\xc8?\\xbf\\xeaAT\\x06\\x04jV9^J\\x1fr\\x83\\xe2\\xd8\\xdd%}\\x1e\\x18BÎl\\xa2w\\xe8,b\\xe2\\xbf\\xcf \\x8d\\xcb,\\xa4\\xb1I,\\xf5b\\xb5\\f\\x8fɹ\\x06*p\\x03\\x14w4Şd%\\xbe\\xcdD\\xf6\\x1d<\\xf8\\x11<\\x9e\\xde7\\xd4\\u008f?\\xb2\\x0f\\xc7\\xfc{+%\\xf59\\xe2\\xe0\\rY\\xfc\\xe9\\xedxH\\x96\\xe5w1\\xb0\\xf3\\xebGr\\xfa\\xa5\\xff\\xab\\xb7\\x97\\xc4y\\xfd3\\x10\\xeb\\xd3'\\xc9\\x1f۟g\\xff\\xa1?\\xf0\\x13*M\\xd8\\xe8\\xec.\\x9c3U\\xf4j\\xd5$\\nap5\\x95\\xaf\\bv\\x9d`\\xae\\x8a\\xaed\\x18&h\\x17\\x9b\\xf5o\\xba]P\\xac\\xd7?S\\xd0c\\xff&R\\xa2`\\x1c\\xfc@9\\xe6\\xc4\\xe1ͳ\\x91#\\x93a,\\x88\\x9c\\xe8\\x05'\\xb5\\x1c)\\x892\\xe5ko1\\xfe\\xf8\\xbb\\xc4@\\xdd_,\\xaa\\xe4\\xc6i\\xdb\\xfbT\\x8a\\xf0\\x82\\bev\\xe7\\xbb#i\\xf9\\b\\x86\\x87G2\\xa3d\\xbd\\xf3}\\x92\\xe6\\x99S\\x1a\\xd48\\x85\\x8d\\xf7\\xd2+V*\\xa2\\xe6\\x1a\\xf79\\xe9e\\xe0\\xd9{\\x95\\xf2A\\x8a\\x89\\xc1|\\xb5P@\\xa7ӯ$\\x88;\\xc0\\x9c\\xce\\xcb\\xe1\\xab\\t-\\xc9(\\xdb\\x13\\x94\\xf2\\xc3]\\xb6\\xae\\tK\\x83\\xe9#\\xcaGn\\x1a\\xa4\\xb6\\xcf\\xca\\xdb\\xe1\\xa01\\xdf\\x15\\x99\\x15~ \\xfa\\x1bƿ@\\xf8\\xff\\xc1UffW\\x9fs\\x10-\\xa2d\\x887rĩ\\x81\\x92\\x1f\\x92pׯ\\x1f8\\x8f8%\\xc7\\v\\xe3\\xf9\\xbdP6\\xaa\\xa7\\x97\\xc4\\xebf>Ҏz5\\xe4|z\\xd0@\\x11\\xdf\\x1f\\xfe$\\x8d\\xd5\\xf7\\xc5#L$\\xa1jӬ\\x9c\\x1f\\x9e<j\\x9d\\xc4|G\\x1c*\\x05-\\x1c2c\\x047\\xb9\\xcb\\x06\\x8b=\\xa62\\xe5\\xef\\x882Eu?\\xbdRI\\xf0\\x15\\xb48B6\\xa9#)/\\xe9@\\x0e\\xb8pM=\\x93j\\x11\\xa5\\xb6\\x03䗓\\xf0\\x9f\\x0e\\xae;\\xf5\\x19h\\x90]-\\xfe\\xe4ʒ\\x9bB\\xa5^\\x91#\\x12\\xce\\xeb\\xb0Z`K\\xaa7v\\x03q#s\\xaeƧG\\x17\\xf9\\x03L\\x81\\xc6g\\x85[ۑ\\xed\\xb8\\xacQ\\x9b\\x15b\\xe2m\\x9a\\x1dP\\xe7<\\x8fD\\xbe\\xe2\\x04\\xdf`\\x03J\\xac\\x9aRq8\\x97\\x05:\\xc2\\xf4h\\xa0j}x@M\\xea\\x169\\xc3泌n\\tu\\xc1\\f\\xb82o\\v\\xea\\x19\\x86\\xa1\\xd0{_$\\x9fͱO\\xb8\\xdb\\xf6\\x1d\\xdaE8.۰\\xf8\\xf0\\x85G!\\xdbn$3\\xc9\\x1e\\x0f\\x05\\x1d\\x13\\xce\\xd37_IW\\\\\\xf4\\x98\\xdb\\xee\\x81c\\xebO^\\xac[\\u05ec\\x14\\xe4\\xedm\\xc1\\xe5Q売\\v\\xf9\\x00%\\xad\\x8b\\xe0\\xda\\xfao\\x14\\x95\\xa8\\xf0[\\xab\\xb3\\x9d\"\nvar _Assets2eaf811e78c039402383e125deb093600a999e32 = \"\\x00\\x00\\x00\\x01Bud1\\x00\\x00\\x10\\x00\\x00\\x00\\b\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x02\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\b\\x00\\x00\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x10\\x00\\x00i\\x00cbwspblob\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x06\\x00p\\x00u\\x00b\\x00l\\x00i\\x00cbwspblob\\x00\\x00\\x00\\xc8bplist00\\xd7\\x01\\x02\\x03\\x04\\x05\\x06\\a\\b\\b\\n\\b\\n\\r\\n]ShowStatusBar[ShowPathbar[ShowToolbar[ShowTabView_\\x10\\x14ContainerShowSidebar\\\\WindowBounds[ShowSidebar\\b\\b\\t\\b\\t_\\x10\\x17{{126, 43}, {770, 436}}\\t\\b\\x17%1=I`myz{|}~\\x98\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x99\\x00\\x00\\x00\\x06\\x00p\\x00u\\x00b\\x00l\\x00i\\x00cvSrnlong\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\b\\v\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00 \\x00\\x00\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x01\\x00\\x00 \\x00\\x00\\x00\\x00\\x01\\x00\\x00@\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x01\\x00@\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x01 \\x00\\x00\\x00\\x00\\x00\\x00\\x01@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\v\\x00\\x00\\x00E\\x00\\x00\\x02\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04DSDB\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00 \\x00\\x00\\x00`\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00 \\x00\\x00\\x00\\x00\\x01\\x00\\x00@\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x01\\x00@\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x01 \\x00\\x00\\x00\\x00\\x00\\x00\\x01@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\nvar _Assetsbea737c26084085e55f9d5af779b4b5af1c1e4f2 = \"V\\x86\\x00\\x00,\\x85\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x90\\x01\\x00\\x00\\x00\\x00LP\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x8a\\x1d\\xd9l\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00\\x00\\x0e\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00\\x00L\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00\\x006\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\r\\x00\\x80\\x00\\x03\\x00PFFTM\\x8d\\x96\\xb6\\x16\\x00\\x00\\x85\\x10\\x00\\x00\\x00\\x1cGDEF\\x00*\\x00\\xa0\\x00\\x00\\x84\\xf0\\x00\\x00\\x00\\x1eOS/2A\\x92S\\x1b\\x00\\x00\\x01X\\x00\\x00\\x00`cmapǠ\\xc8\\xf4\\x00\\x00\\x04\\f\\x00\\x00\\x03\\xdagasp\\xff\\xff\\x00\\x03\\x00\\x00\\x84\\xe8\\x00\\x00\\x00\\bglyfDڭ\\xd9\\x00\\x00\\t \\x00\\x00n\\xc0head\\x17\\a\\x91\\x1e\\x00\\x00\\x00\\xdc\\x00\\x00\\x006hhea\\x045\\x02\\xd1\\x00\\x00\\x01\\x14\\x00\\x00\\x00$hmtx\\x12\\xb0\\x00t\\x00\\x00\\x01\\xb8\\x00\\x00\\x02Tloca\\xe8\\x01\\xcbF\\x00\\x00\\a\\xe8\\x00\\x00\\x016maxp\\x00\\xea\\x00\\xaf\\x00\\x00\\x018\\x00\\x00\\x00 name2\\xd74(\\x00\\x00w\\xe0\\x00\\x00\\x05[post\\xfciA\\xbb\\x00\\x00}<\\x00\\x00\\a\\xab\\x00\\x01\\x00\\x00\\x01J\\xc0\\x83l\\xd9\\x1d\\x8a_\\x0f<\\xf5\\x00\\v\\x02\\x00\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\\xff\\xec\\xff\\xb9\\x02\\x87\\x01\\xc9\\x00\\x00\\x00\\b\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xc0\\xff\\xc0\\x00\\x00\\x02\\x80\\xff\\xec\\x00\\x00\\x02\\x87\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x90\\x00\\x01\\x00\\x00\\x00\\x9a\\x00\\xac\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x01\\xed\\x01\\x90\\x00\\x05\\x00\\x00\\x01L\\x01f\\x00\\x00\\x00G\\x01L\\x01f\\x00\\x00\\x00\\xf5\\x00\\x19\\x00\\x84\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00PfEd\\x00\\x80\\xf0\\x04\\xf5\\xc8\\x01\\xc0\\xff\\xc0\\x00.\\x01\\xcc\\x00T\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01:\\x01\\xa5\\x00\\x00\\x00 \\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xaa\\x00\\x00\\x02\\x00\\xff\\xfb\\x02@\\x00\\x0f\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\xff\\xfc\\x02@\\x00\\x0f\\x02\\x00\\xff\\xfd\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01`\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x17\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\xff\\xff\\x01\\xf0\\xff\\xed\\x02@\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfd\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfd\\x01\\xc0\\xff\\xfb\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfb\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02@\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfc\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf8\\x00\\x00\\x01\\xf0\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x1c\\x00\\x01\\x00\\x00\\x00\\x00\\x02\\xd4\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x1c\\x00\\x04\\x02\\xb8\\x00\\x00\\x00\\xaa\\x00\\x80\\x00\\x06\\x00*\\xf0\\x05\\xf0\\a\\xf0\\x17\\xf0\\\"\\xf0$\\xf0.\\xf0>\\xf0D\\xf0Y\\xf0n\\xf0p\\xf0s\\xf0u\\xf0|\\xf0\\x80\\xf0\\x86\\xf0\\x89\\xf0\\x94\\xf0\\x9d\\xf0\\xa0\\xf0\\xa7\\xf0\\xc5\\xf0\\xc8\\xf0\\xe0\\xf0\\xeb\\xf0\\xf3\\xf0\\xf8\\xf0\\xfe\\xf1\\x11\\xf1\\x1a\\xf1\\x1c\\xf13\\xf1D\\xf1F\\xf1J\\xf1N\\xf1R\\xf1\\\\\\xf1e\\xf1\\x86\\xf1\\x92\\xf1\\xad\\xf1\\xc9\\xf1\\xcd\\xf1\\xd8\\xf1\\xe3\\xf1\\xea\\xf1\\xf6\\xf1\\xf9\\xf2\\n\\xf2I\\xf2M\\xf2[\\xf2]\\xf2t\\xf2z\\xf2\\x8b\\xf2\\x8d\\xf2\\xb6\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc2\\xf2\\xd2\\xf2\\xdc\\xf2\\xed\\xf3\\x02\\xf3(\\xf3[\\xf3\\xa5\\xf3\\xd1\\xf4\\x10\\xf4\\xad\\xf4\\xda\\xf5V\\xf5g\\xf5z\\xf5\\x8c\\xf5\\x9c\\xf5\\xa5\\xf5\\xb4\\xf5\\xb8\\xf5\\xc2\\xf5\\xc8\\xff\\xff\\x00\\x00\\xf0\\x04\\xf0\\a\\xf0\\x17\\xf0\\\"\\xf0$\\xf0.\\xf0>\\xf0D\\xf0W\\xf0n\\xf0p\\xf0s\\xf0u\\xf0{\\xf0\\x80\\xf0\\x86\\xf0\\x89\\xf0\\x94\\xf0\\x9d\\xf0\\xa0\\xf0\\xa4\\xf0\\xc5\\xf0\\xc7\\xf0\\xe0\\xf0\\xeb\\xf0\\xf3\\xf0\\xf8\\xf0\\xfe\\xf1\\x11\\xf1\\x18\\xf1\\x1c\\xf13\\xf1D\\xf1F\\xf1J\\xf1M\\xf1P\\xf1[\\xf1d\\xf1\\x85\\xf1\\x91\\xf1\\xad\\xf1\\xc1\\xf1\\xcd\\xf1\\xd8\\xf1\\xe3\\xf1\\xea\\xf1\\xf6\\xf1\\xf9\\xf2\\n\\xf2G\\xf2M\\xf2T\\xf2]\\xf2q\\xf2y\\xf2\\x8b\\xf2\\x8d\\xf2\\xb5\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc1\\xf2\\xd0\\xf2\\xdc\\xf2\\xed\\xf3\\x02\\xf3(\\xf3X\\xf3\\xa5\\xf3\\xd1\\xf4\\x10\\xf4\\xad\\xf4\\xda\\xf5V\\xf5g\\xf5y\\xf5\\u007f\\xf5\\x96\\xf5\\xa4\\xf5\\xb3\\xf5\\xb8\\xf5\\xc2\\xf5\\xc8\\xff\\xff\\x0f\\xff\\x0f\\xfe\\x0f\\xef\\x0f\\xe5\\x0f\\xe4\\x0f\\xdb\\x0f\\xcc\\x0f\\xc7\\x0f\\xb5\\x0f\\xa1\\x0f\\xa0\\x0f\\x9e\\x0f\\x9d\\x0f\\x98\\x0f\\x95\\x0f\\x90\\x0f\\x8e\\x0f\\x84\\x0f|\\x0fz\\x0fw\\x0fZ\\x0fY\\x0fB\\x0f8\\x0f1\\x0f-\\x0f(\\x0f\\x16\\x0f\\x10\\x0f\\x0f\\x0e\\xf9\\x0e\\xe9\\x0e\\xe8\\x0e\\xe5\\x0e\\xe3\\x0e\\xe2\\x0e\\xda\\x0e\\xd3\\x0e\\xb4\\x0e\\xaa\\x0e\\x90\\x0e}\\x0ez\\x0ep\\x0ef\\x0e`\\x0eU\\x0eS\\x0eC\\x0e\\a\\x0e\\x04\\r\\xfe\\r\\xfd\\r\\xea\\r\\xe6\\r\\xd6\\r\\xd5\\r\\xae\\r\\xac\\r\\xab\\r\\xaa\\r\\xa7\\r\\x9a\\r\\x91\\r\\x81\\rm\\rH\\r\\x19\\f\\xd0\\f\\xa5\\fg\\v\\xcb\\v\\x9f\\v$\\v\\x14\\v\\x03\\n\\xff\\n\\xf6\\n\\xef\\n\\xe2\\n\\xdf\\n\\xd6\\n\\xd1\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x06\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00@\\x00|\\x00\\xc4\\x00\\xf8\\x01n\\x01\\xbe\\x01\\xe2\\x02*\\x02\\x84\\x02\\xce\\x03\\x04\\x03b\\x03\\xac\\x04\\x1a\\x04\\xa2\\x04\\xe0\\x05\\f\\x05H\\x05\\xb6\\x06*\\x06N\\x06\\xcc\\a\\x1a\\ab\\a\\xe2\\bb\\b\\xe2\\t^\\t\\xb8\\n\\x0e\\n:\\n\\x88\\n\\xe8\\v:\\v\\xce\\f\\x18\\f6\\f\\x82\\f\\xd0\\r\\x14\\r\\xe6\\x0e\\x1e\\x0eN\\x0e\\x88\\x0e\\xc6\\x0fD\\x0f\\x84\\x0f\\xc2\\x10\\x00\\x10>\\x10n\\x10\\xba\\x118\\x11\\xb6\\x12(\\x12f\\x12\\xa4\\x12\\xce\\x13L\\x13\\xce\\x14D\\x14\\xa8\\x15\\x00\\x15L\\x15\\xbe\\x16\\x1c\\x16l\\x16\\xe4\\x17.\\x17l\\x17\\xc8\\x18D\\x18\\xa6\\x18\\xf4\\x19f\\x19\\xf0\\x1a\\x98\\x1a\\xca\\x1b\\x14\\x1bZ\\x1b\\xec\\x1ch\\x1c\\xea\\x1dD\\x1d\\xdc\\x1e\\x94\\x1f\\x18\\x1ff\\x1f\\xbc \\x02 f \\xb8!\\b!H!\\x8e!\\xc0\\\"d\\\"\\xec#L#\\xbe$\\x0e$h$\\xd4$\\xfc%\\x14%N&@&\\xa4'\\b'N'\\x84'\\xba'\\xf0(&(j(\\xca)\\\")\\x80)\\xdc*L*\\xc4+4+|+\\xfc,H,\\xa4-\\x10-\\x98.\\x06.d/\\x06/\\x860*0\\x9a1\\x1e1\\xb42\\n2n2\\xee3\\x8e3\\xd6484\\x924\\xea5\\x1e5\\x906\\x006X6\\xc67\\x047`\\x00\\x00\\x00\\x02\\xff\\xfa\\xff\\xdf\\x02\\x06\\x01\\xa5\\x00\\x12\\x00$\\x00\\x00\\x01\\x1e\\x01\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01676\\x16\\x17>\\x01\\x1764'&\\x06\\x0f\\x01'.\\x01\\a\\x06\\x14\\x1f\\x01\\x167\\x01\\xca$\\x18\\x16\\x1b\\xaf\\x10,\\x10\\xaf\\x1b\\x16\\x18$+u**u\\x14\\x1d$\\x1eO\\x1c##\\x1cO\\x1e$\\x1d\\xb0\\x03\\x03\\x01\\x80\\x1fUN\\x1c\\xb2\\x10\\x10\\xb2\\x1cOT\\x1f$\\t**\\t\\xe0\\x1eW\\\"\\x18\\x06\\x1d##\\x1d\\x06\\x18\\\"W\\x1e\\xb2\\x04\\x04\\x00\\x00\\x00\\x02\\x00\\x0f\\xff\\xba\\x021\\x01\\xc1\\x00\\x18\\x00\\\"\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06&?\\x01'&6?\\x0262\\x1f\\x027/\\x01\\x0f\\x01\\x17\\a7\\x17\\x02\\x10\\x14\\f\\x0ej\\x19\\x03 \\x11\\x83\\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92A\\t(\\tA\\ad\\x8b>>\\x8bd\\x17||\\x01\\x14\\x02&\\x0eg\\x92\\x13\\x17\\tDD\\n\\x18\\x13\\x92g\\x0e&\\x02\\x16\\x84\\x12\\x12\\x84\\xa2b\\x14~~\\x14b\\x8bBB\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x13\\x00\\\"\\x00*\\x002\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014632\\x1626\\x1754&#\\\"\\x06#\\\"&#\\\"\\x06\\x1d\\x016\\\"&462\\x16\\x14&\\\"\\x06\\x14\\x16264\\x01:7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\r344b3#\\x039\\x1e\\x1e9\\x03#3\\xecxTTxThP88P8\\x90O7\\x1a\\x14\\x1c\\x1c\\x14\\x1a7O\\x10\\x10\\xa0\\x1a#3\\x10\\x103#\\x1a\\xb0TxTTx\\x9c8P88P\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x05'&=\\x014;\\x012\\x1d\\x01\\x17\\x16\\x0f\\x01\\x06\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x06U\\x05\\f \\fC\\t\\a\\x12\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\r>\\x04\\x06\\xa4\\f\\f\\x8e0\\a\\n\\x1a\\n\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00G\\x00O\\x00W\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x143%\\x15\\x14+\\x01\\\"=\\x014;\\x0125\\x15\\x14+\\x01\\\"=\\x014;\\x0125\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x06\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x9a\\x06\\x06\\xfel\\x06\\x06\\x01j\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\xfc\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x06\\x01T\\x06\\x06\\xfe\\xac\\x06\\\\\\x18\\f\\f\\x18\\fT\\x18\\f\\f\\x18\\fT\\x18\\f\\f\\x18\\f\\t\\x1e\\x15\\x15\\x1e\\x15u\\x1e\\x15\\x15\\x1e\\x15u\\x1e\\x15\\x15\\x1e\\x15\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc2\\x00(\\x008\\x00\\x00\\x01276\\x16\\x1d\\x01\\x14\\a\\x06#\\\"&#\\\"\\a\\x15\\x14\\x06+\\x01\\\"&5\\x11&546\\x17\\x1e\\x01\\x17\\x14\\x15\\x14\\a632\\x16\\x135\\x06#\\\"&#\\\"\\a\\x15632\\x1632\\x01P,A\\x18+\\x16=C%g\\x16A?\\t\\a\\x10\\a\\t\\x18\\x1e\\x15\\x11\\x1a\\x02\\x02')%g\\x96E;\\x1ef\\x1e9-4L\\x1ef\\x1e9\\x01p\\x1c\\n\\x1c\\x1a\\xf0\\x1a\\x0e( \\x1dS\\a\\t\\t\\a\\x01\\x96\\x0e\\x1c\\x15\\x1c\\x01\\x01\\x18\\x11\\x03\\x03\\b\\a\\x0f \\xff\\x00\\xf0   \\xe8\\x18 \\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\n\\x00\\x13\\x00\\x00\\x012\\x16\\x15\\x11'\\a\\x11463\\x01\\x114#!\\\"\\x15\\x117\\x01P\\x14\\x1c\\xc0\\xc0\\x1c\\x14\\x01 \\x06\\xfe\\xec\\x06\\x90\\x01\\xc0\\x1c\\x14\\xfe0pp\\x01\\xd0\\x14\\x1c\\xfeT\\x01v\\x06\\x06\\xfe\\x8aT\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00#\\x00.\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x14362\\x16\\x14\\x06\\\"&4\\x17576\\x1f\\x0176\\x1f\\x01\\x15\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x9a\\x06\\x06\\xfel\\x06\\x069\\\"\\x17\\x17\\\"\\x17\\b(\\b\\b(x\\b\\bX\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xb0\\x06\\x01\\x14\\x06\\x06\\xfe\\xec\\x06\\xf8\\x17\\\"\\x17\\x17\\\"\\xb10(\\b\\b(x\\b\\bXP\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc1\\x00\\x1c\\x00*\\x00/\\x007\\x00\\x00%76\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x0f\\x01\\x06+\\x01\\x11!547\\x01\\a\\x06&?\\x01\\x0162\\x1f\\x01\\x16\\x14\\a'\\x0f\\x017\\x13'&\\x0f\\x01\\x1776\\x01\\x92 \\x04\\n\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x12\\x05\\x04\\x04 \\x02\\x03\\xf2\\x01`\\x9f\\xfe\\xf9Z\\x14\\x1c\\x02\\n\\x01\\a\\x110\\x12+\\x11t:\\xba\\aA\\xfb+\\b\\a\\x1f:\\x1f\\ag \\x04\\x04\\x06\\x91\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\n\\x04 \\x02\\xfe\\xa0r\\x03\\xcc\\xfe\\xf9\\n\\x02\\x1c\\x14Z\\x01\\a\\x11\\x11+\\x1110:\\xbaA\\a\\x01\\n+\\a\\a\\x1f:\\x1f\\a\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00+\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01.>>\\b\\b\\x17\\b\\t>>\\t\\b\\x17\\b\\b>>\\b\\b\\x17\\b\\t>>\\t\\b\\x17\\b\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x91>>\\t\\b\\x17\\b\\b>>\\b\\b\\x17\\b\\t>>\\t\\b\\x17\\b\\b>>\\b\\b\\x17\\b\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\x14\\x16264\\a\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x1f\\x0176\\x17\\x99Α\\x91Α\\x01K\\xa6uu\\xa6u<\\t\\t\\xac\\t\\b[\\t\\t\\x17\\b\\t;\\x8e\\b\\t\\x01\\xb8\\x91Α\\x91\\xceau\\xa6uu\\xa6\\r\\t\\b\\xab\\t\\t[\\t\\b\\x17\\b\\b=\\x8d\\b\\t\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x008\\x00@\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x14\\x0e\\x02\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014>\\x027>\\x0354&#\\\"\\x0e\\x01\\a\\x06/\\x01&7632\\x16\\x06\\x14\\x06\\\"&462\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x013\\x16\\x1c\\x16\\a\\x05.\\x05\\a\\b\\x12\\n\\f\\b\\b\\t\\x03\\x19\\x0f\\v\\x11\\f\\t\\a\\t\\x1c\\t\\x06%@&?A\\x19\\\"\\x19\\x19\\\"\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x8a\\x17 \\x0e\\x10\\b\\x06\\x05\\a\\a\\x05\\t\\f\\x14\\x10\\a\\x06\\x05\\x05\\a\\b\\x05\\f\\x10\\a\\f\\v\\t\\a\\x15\\a\\n64\\xbb\\\"\\x19\\x19\\\"\\x19\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x11\\x00#\\x00/\\x00\\x00\\x012\\x16\\x14\\x06\\\"&547\\x1632654'6\\x05\\x16\\x14\\a\\x0e\\x01#\\\".\\x01'&47>\\x012\\x16\\a267.\\x01\\\"\\x06\\a\\x1e\\x02\\x01 /AA]A\\x04\\r\\x0e\\x17!\\a\\x0f\\x01-\\x03\\x03*\\x98[<oV\\x1c\\x03\\x03*\\x98\\xb6\\x98\\xf3J\\u007f%%\\u007f\\x94\\u007f%\\x18J[\\x010A]AA.\\x10\\x0f\\a!\\x17\\x0e\\r\\x05a\\a\\x10\\aPa-O5\\a\\x10\\aPaa\\xefMCCMMC,A#\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x81\\x01\\xc0\\x00\\x13\\x00\\x19\\x00\\x1f\\x003\\x00F\\x00\\x00\\x05\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'\\x01&54?\\x01632\\x17\\x05632\\x16\\x17\\a\\x06#\\\"&'7\\\"\\a'632\\x1e\\x01\\x17\\x16\\x14\\a\\x06\\a'67.\\x01\\x0327\\x17\\x06#\\\"&'&4767\\x17\\x06\\a\\x1e\\x01\\x02z\\x06\\x04\\n\\x04\\b\\x06\\x04\\xfd\\xaa\\x06\\x04\\n\\x04\\b\\x06\\x04\\x01\\x05\\v\\f-A\\x02Y\\v\\f-A\\x02p\\x1b\\x1f/54<oV\\x1c\\x03\\x03\\x16\\x1f&\\x1a\\x12%\\u007fJ\\x1b\\x1f/54[\\x98*\\x03\\x03\\x16\\x1f&\\x1a\\x12%\\u007f\\x17\\x05\\a\\x06\\x05\\f\\x06\\x04\\x01\\xd3\\x05\\a\\x06\\x05\\f\\x06\\x04\\x8e\\x02?-r\\x02?-\\x94\\a$\\x13-O5\\a\\x10\\a)\\\"\\x1e\\x1b!CM\\xfe\\xe0\\a$\\x13aP\\a\\x10\\a)\\\"\\x1e\\x1b!CM\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00/\\x00;\\x00G\\x00g\\x00o\\x00\\x007#\\\"=\\x014;\\x012\\x1d\\x01\\x147\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x157\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2\\x94(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xc0\\f(\\f\\f(\\f`\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06\\xa0\\f(\\f\\f(\\f\\f\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x88\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\xdc\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x02\\xff\\xfb\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x13\\x00&\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&7>\\x027&54\\x05264&\\\"\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\a6?\\x01\\x17\\x16\\x96Ԗ\\x96j/.AJ\\x10\\f\\n\\x02\\x0f\\x17\\a5\\x01\\x00Vzz\\xacz(\\x14\\n\\b\\f\\x1e\\x1b\\x14\\x17&\\x01\\xa0z\\xacz\\x0e.\\x1d\\v\\x02\\x11%\\x128FV\\xf6^\\x84^^B3*\\x16\\x1c\\x14\\x15\\n\\x14\\r\\a\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x13\\x00\\x1b\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01\\x135#\\\"/\\x01#\\x11\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x93\\r\\t7\\xc0\\xc7\\r\\t7\\x8c\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\t7\\xfe\\xf0\\xe0\\t7\\xfe\\xe0\\x00\\x03\\x00\\x00\\x00\\x00\\x02H\\x01\\x80\\x00\\x15\\x00\\\"\\x00&\\x00\\x00%2\\x16\\x0f\\x01\\x06#!\\\"&5\\x1146;\\x01\\x1732\\x16\\x1d\\x01%\\x15763!54+\\x01'#\\\"\\x017!\\a\\x02\\x10\\x1c\\x1c\\x0fP\\x0e\\x1b\\xfep\\x14\\x1c\\x1c\\x14\\xa0@\\xa0\\x14\\x1c\\xfeP?\\x0e\\x1b\\x01\\x18\\x06\\xae@\\x86\\x06\\x01\\x90P\\xfe\\x85M\\xe01\\x18\\x80\\x17\\x1c\\x14\\x01 \\x14\\x1c@\\x1c\\x140j\\xe9h\\x17*\\x06@\\xfe\\xe0\\x80\\x80\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1f\\x00/\\x00D\\x00T\\x00\\x00%\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x15\\x117\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01\\x8d\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05\\xd6\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05J\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05\\xad\\a\\t\\t\\a\\xfe0\\r\\x13\\t\\a\\x10\\a\\t=\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05`\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xc6\\x05\\b\\b\\x05\\xc6\\x05\\b\\b\\x05\\x86\\x05\\b\\b\\x05\\x86\\x05\\b0\\t\\a\\x10\\a\\t\\x13\\r\\x01P\\a\\t\\t\\a\\xfe\\xc00\\b\\x05F\\x05\\b\\b\\x05F\\x05\\b\\x00\\x03\\xff\\xfb\\xff\\xe0\\x02E\\x01\\xa0\\x00#\\x006\\x00M\\x00\\x00%\\x1e\\x02\\x17\\x16\\x06#\\\"'\\x06#\\\"&'&'\\x06#\\\"&767&54632\\x16\\x17\\x1e\\x01\\x15\\x14%\\x17\\x163264&\\\"\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\a67\\x05654&'\\x16\\x15\\x14\\x0e\\x01\\a\\x1632?\\x01\\x17\\x16\\x17&/\\x01\\x02\\x14\\a\\x13\\v\\x01\\n\\f\\x0fA<\\x1e\\x1e@g\\x18\\x0f\\x0e;B\\x0f\\f\\n\\x15\\x11,zV@h\\x18Ke\\xfeK\\x14\\x18\\x19A__\\x82_\\x1e\\x18\\x0f\\x04\\x04\\x16\\x15\\x01x\\x1e@1\\x01/R21R\\x19\\x18\\x14\\x11\\x15\\x16\\x04\\x04\\x0f>\\x0e\\x1b\\r\\x01\\v\\x1c'\\a6,\\x02\\x03'\\x1c\\v\\x14#+7B^6,\\tY<71\\x04\\x06B\\\\BB.#\\x1d\\x18 \\a\\a\\a\\x0e/\\x1d#$;\\v\\b\\x02(E,\\x052\\x06\\x04\\v\\x0e\\a\\a\\a \\x00\\x00\\x00\\x01\\x00\\x0f\\xff\\xba\\x01 \\x01\\xc0\\x00\\x13\\x00\\x00%\\x15\\a\\x06&?\\x01'&6?\\x0263\\x15\\x0f\\x01\\x17\\a\\x01 \\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92A\\t\\x14>\\x8bd\\x17?7D\\t\\x17\\x14\\x91g\\x0e&\\x03\\x15\\x84\\x12D~\\x14b\\x8b\\x00\\x00\\x03\\xff\\xfc\\xff\\xbc\\x02\\x04\\x01\\xc4\\x00#\\x00A\\x00Q\\x00\\x00\\x00\\x1e\\x01\\a\\x0e\\x01\\x16\\x0e\\x06&\\x06\\a\\x06.\\x027>\\x01&>\\x06\\x16676\\x176&\\a\\x0e\\x01&\\x0e\\x04\\x16\\x06\\a\\x06\\x167>\\x01\\x162>\\x017>\\x02&6&\\x16\\x06\\a\\x0e\\x01\\a\\x0e\\x01.\\x017>\\x0176\\x01\\xcf*\\v\\r\\x04\\x02\\b\\x04\\n'>D88(%\\b\\x166*\\v\\r\\x04\\x02\\b\\x04\\n'>D88(%\\b\\x165\\n,\\x11\\x1136<FD \\x03\\x06\\x01\\v\\n,\\x11\\x0f*(32;\\x1d\\\" \\x03\\x06\\x01\\xa0\\x02\\n\\t)`\\x05\\x01\\r\\x11\\n\\x01\\at7\\b\\x01\\xb9*6\\x16\\b%(88D>&\\v\\x04\\b\\x02\\x04\\r\\v*6\\x16\\b%(88D>&\\v\\x04\\b\\x02\\x04\\ri\\x12+\\n\\v\\x01\\x06\\x03 DF<63\\x11\\x12+\\n\\t\\x04\\x06\\a!\\x1c\\\"F<63\\x11\\x11\\r\\x01\\x05`)\\t\\n\\x02\\r\\b7t\\a\\x01\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x10\\x00\\x18\\x00 \\x00,\\x008\\x00\\x00\\x012\\x1e\\x01\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\\"\\x1d\\x01!54#\\x112=\\x01!\\x15\\x1437\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x17\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x02\\x10\\r\\x16\\r\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x06\\x06\\x01\\xe0\\x06\\x06\\xfe \\x06\\x8a\\fH\\f\\fH\\f\\xc0\\f\\x88\\f\\f\\x88\\f\\x01\\xa0\\r\\x16\\r\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06**\\x06\\xfe\\xa0\\x06\\xaa\\xaa\\x06d(\\f\\f(\\f\\f(\\f\\f(\\f\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x15\\x00\\x19\\x00\\x1d\\x00%\\x00-\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014?\\x01>\\x013!2\\x16\\x17\\x05\\a!'\\x135!\\x15$\\x14\\x06\\\"&462\\x06\\x14\\x06\\\"&462\\x027\\t\\x1c\\x14\\xfe \\x14\\x1c\\ti\\x06\\x17\\n\\x01\\x0e\\n\\x17\\x06\\xfe\\xcbN\\x01\\xaaNi\\xfe \\x01\\xc0\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1a\\xd4\\f\\x0f\\x89\\x14\\x1c\\x1c\\x14\\x89\\x0f\\f\\x97\\t\\f\\f\\t\\x1bpp\\xfe\\xe0\\x80\\x80M\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x002\\x00U\\x00]\\x00\\x00\\x012\\x16\\x15\\x14\\x0e\\x02+\\x01\\x06\\a\\x16\\a\\x0e\\x01+\\x01\\\"&+\\x01\\x06+\\x01\\\"&=\\x0146;\\x012\\x17327167>\\x0332\\x16\\x15\\x14\\a\\x172654&+\\x014654#\\\"\\x0e\\x01\\a\\x06\\a\\x06\\a\\x15\\x1e\\x02;\\x012'>\\x01'>\\x01'\\x064&\\\"\\x06\\x14\\x162\\x01\\xad\\\"1\\r\\x17\\x1e\\x11$\\x02\\x06\\x04\\x14\\x015.\\x15\\\"S\\n\\x03\\t\\r@\\r\\x13\\x13\\r@\\r\\t\\x03\\t\\x15\\x11\\t\\x04\\x12\\f\\x1a\\x10*2\\x02V\\x0e\\x15\\x15\\x0e\\x9f\\x1b,\\x04\\n\\x10\\x05\\v\\x14 \\x1b\\x11**\\x13\\x15=\\n\\f\\t\\b\\x0e\\x01\\n\\xfa\\x0e\\x14\\x0e\\x0e\\x14\\x0161\\\"\\x11\\x1e\\x17\\r\\f\\n\\\"\\x1d(3(\\b\\x11\\f\\xe6\\f\\x11\\b\\x18\\x13\\x0e\\x06$\\x13\\x12/$\\f\\vv\\x15\\x0e\\x0e\\x15\\a,\\x14#\\x11\\x1f\\b\\x12\\x16$\\x04\\xb0\\x02\\x14\\x12=\\a \\x0f\\r&\\n\\x8a\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x002\\x00V\\x00^\\x00\\x00546;\\x01&54632\\x1e\\x02\\x17\\x16\\x171\\x16;\\x016;\\x012\\x1e\\x02\\x1d\\x01\\x14\\x06+\\x01\\\"'#\\\"\\x06+\\x01\\\"&'&7&'#\\\"&7\\x14\\x16;\\x01\\x06\\x16\\x17\\x06\\x16\\x17\\x06;\\x012675&'&'.\\x02#\\\"\\x15\\x14\\x16\\x15#\\\"\\x0e\\x02\\x04\\\"\\x06\\x14\\x162641\\\"V\\x022*\\x10\\x1a\\f\\x12\\x04\\t\\x11\\x15\\t\\x03\\t\\r@\\a\\v\\t\\x05\\x13\\r@\\r\\t\\x03\\nS\\\"\\x15.5\\x01\\x14\\x04\\x06\\x02$\\\"10\\x15\\x0e[\\n\\x01\\x0e\\b\\t\\f\\n=\\x15\\x18L\\x14\\x1b \\x14\\v\\x05\\x10\\n\\x04,\\x1b\\x9f\\a\\r\\t\\x06\\x01\\x9a\\x14\\x0e\\x0e\\x14\\x0e\\xe3\\\"1\\v\\f$/\\x12\\x13$\\x06\\x0e\\x13\\x18\\b\\x05\\a\\v\\x06\\xe6\\f\\x11\\b(3(\\x1d\\\"\\n\\f1\\\"\\x0e\\x15\\n&\\r\\x0f \\a=&\\x02\\xb0\\x04$\\x16\\x12\\b\\x1f\\x11#\\x14,\\a\\x05\\n\\r\\x92\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x003\\x00U\\x00]\\x00\\x00\\x134632\\x1e\\x01\\x1d\\x01\\x16\\x176\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06\\x1d\\x01\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x014754'1&'.\\x0454632\\x1774&#\\\"\\x06\\x1d\\x01\\\"&#\\\"\\x15\\x14\\x1e\\x01\\x17\\x16\\x17\\x16\\x173>\\x01=\\x014\\a.\\x01\\a.\\x01\\a\\x16\\\"\\x06\\x14\\x16264j1\\\"\\x16'\\x16\\f\\n\\\"\\x1d(3(\\b\\b\\r\\b\\xe6\\f\\x11\\b\\x18\\x13\\x0e\\a\\x1a\\x11\\x13\\n/$\\f\\vv\\x15\\x0e\\x0e\\x15\\a,\\x14#\\x11\\x1f\\b\\x12\\x16$\\x04\\xb0\\x02&=\\a \\x0f\\r&\\n\\x8a\\x14\\x0e\\x0e\\x14\\x0e\\x01m\\\"1\\x16'\\x16$\\x02\\x06\\x04\\x14\\x015.\\x15\\\"S\\n\\x03\\t\\r@\\t\\x0e\\t\\x13\\r@\\r\\t\\x03\\t\\x15\\x11\\t\\x04\\r\\n\\x0f\\x15\\r*2\\x02V\\x0e\\x15\\x15\\x0e\\x9f\\x1b,\\x04\\n\\x10\\x05\\v\\x14 \\x1b\\x14L\\x18\\x15=\\n\\f\\t\\b\\x0e\\x01\\n\\xfa\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x001\\x00S\\x00[\\x00\\x00\\x17\\\"&=\\x01\\x06#\\\"&54>\\x0376716=\\x01&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\a\\x15\\x14\\x16\\x1d\\x01\\x14\\x06\\a\\x06'\\x06\\a\\x15\\x14\\x06'26=\\x01\\x1667\\x1667\\x16=\\x014&'#\\x06\\a\\x06\\a\\x0e\\x02\\x15\\x143263\\x15\\x14\\x16\\x12\\x14\\x16264&\\\"\\xbd\\\"1\\v\\f$/\\n\\x13\\x11\\x1a\\a\\x0e\\x13\\x18\\b\\x11\\f\\xe6\\f\\x11\\b(3(\\x1d\\\"\\n\\f1\\\"\\x0e\\x15\\n&\\r\\x0f \\a=&\\x02\\xb0\\x04$\\x16\\x12\\b\\x1f\\x11#\\x14,\\a\\x15\\x99\\x0e\\x14\\x0e\\x0e\\x14@1\\\"V\\x022*\\r\\x15\\x0f\\n\\r\\x04\\t\\x11\\x15\\t\\x03\\t\\r@\\r\\x13\\x13\\r@\\r\\t\\x03\\nS\\\"\\x15.5\\x01\\x14\\x04\\x06\\x02$\\\"10\\x15\\x0e[\\n\\x01\\x0e\\b\\t\\f\\n=\\x15\\x18L\\x14\\x1b \\x14\\v\\x05\\x10\\n\\x04,\\x1b\\x9f\\x0e\\x15\\x01\\x9a\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00*\\x009\\x00B\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x01546;\\x012\\x17\\x032=\\x01#\\\"&=\\x01#\\\"\\x15\\x11\\x143%2=\\x01#\\\"&=\\x01#\\\"\\x15\\x11\\x143\\x1354/\\x01&+\\x01\\x15\\x01\\xb2\\x0e\\x1c\\x14P\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14P\\x1c\\x14\\xac\\x14\\x0et\\x06`\\x14\\x1cJ\\x06\\x06\\x01T\\x06X\\n\\x0ej\\x06\\x06\\xda\\x020\\x02\\x02\\n\\x01~\\x0e\\x14\\xfe\\xf4\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c0\\x14\\x1c\\x0e\\xfe>\\x06*\\x1c\\x14\\xe0\\x06\\xfe\\xcc\\x06`\\x06\\xca\\x0e\\nX\\x06\\xfe\\xcc\\x06\\x01\\x00\\n\\x02\\x020\\x02@\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x15\\x00+\\x003\\x00;\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x17\\a#\\x153\\x1325\\x114/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"\\x15\\x11\\x14362\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01\\xb2\\x0e\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\f\\x14\\x0eN\\x80\\x80z\\x06\\x02N\\x0e\\n\\xb0\\n\\x0e*\\x06\\x06\\x86H44H4G\\\"\\x17\\x17\\\"\\x17\\x01>\\x0e\\x14\\xfe\\xf4\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x0e\\\"P\\xfe\\xf0\\x06\\x01\\x04\\x02\\x02Nd\\n\\x0e\\x0e\\nh\\x06\\xfe\\xac\\x06\\xc84H44HL\\x17\\\"\\x17\\x17\\\"\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x143\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01Z\\x06\\x06\\xfe\\xac\\x06\\x06\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x06\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00 \\x002\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x05!\\x15\\x16\\x17\\x14\\x1e\\x0232>\\x02567\\x05!5\\x06\\a\\x0e\\x04\\\".\\x03'&'\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\xfe`#d\\x1c\\x0e\\x17\\b\\b\\x17\\x0e\\x1cd#\\xfe`\\x01\\xa0#F\\x02\\x19\\x0e\\x1a\\x18\\x18\\x19\\x19\\x0e\\x19\\x02F#\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c0)\\x1cN\\x01\\x17\\t\\f\\f\\t\\x17\\x01N\\x1c\\xf7\\xba\\x1c7\\x01\\x16\\n\\x0f\\a\\a\\x10\\n\\x15\\x017\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc0\\x00\\x0f\\x00\\x1d\\x00B\\x00\\x00\\x132\\x16\\x14\\x06#\\\"\\x06\\x15\\x14\\x06\\\"&546\\x0353\\x15\\x14\\x0f\\x01\\x06+\\x01\\\"/\\x01&\\x132\\x16\\x15\\x14\\a\\x0e\\x01\\a#4767654&#\\\"\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x15#.\\x02'&546\\xb0\\a\\t\\t\\a\\x1a&\\t\\x0e\\t8(\\xa0\\x03\\x18\\x05\\tN\\t\\x05\\x18\\x03PIg,\\x0e\\x1f\\a0\\x02\\x13+ K54L +\\x13\\x020\\x05\\x13\\x14\\b,e\\x01p\\t\\x0e\\t&\\x1a\\a\\t\\t\\a(8\\xfe\\x85++\\x05\\x04%\\a\\a%\\x04\\x01\\xd0gIB2\\x105\\x17\\a\\a=1$05KJ60$1=\\a\\a\\x10%\\x1d\\n2BGi\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\xc1\\x01\\xc0\\x00%\\x003\\x009\\x00\\x00%\\x16\\x15\\x14\\x06#!\\\".\\x0154767>\\x0254675462\\x16\\x1d\\x01\\x1e\\x02\\x15\\x14\\x1e\\x01\\x17\\x16\\x05!&5414&\\\"\\x06\\x150\\x15\\x14\\x16\\\"&53\\x14\\x01\\xb7\\t\\x12\\x0e\\xfe\\x80\\t\\x0f\\b\\t\\x01\\x02\\x0f\\x11\\x14H8\\x13\\x1a\\x13%:!\\x14\\x11\\x0f\\x02\\xfe\\x8e\\x018,B\\\\B\\x8a4&\\x80V\\n\\f\\r\\x13\\t\\x0f\\b\\f\\n\\x01\\x03\\x0f\\x18C,:V\\v\\x15\\r\\x13\\x13\\r\\x15\\a,B&,C\\x18\\x0f\\x03\\a;d\\x01.BB.\\x01d\\xcb%\\x1b\\x1b\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00/\\x00K\\x00a\\x00}\\x00\\x00754;\\x012\\x1d\\x01\\x14+\\x01\\\"3\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x17\\x15!54;\\x01\\x1146;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x15\\x1132%354;\\x012\\x1d\\x013\\x11#\\x15\\x14\\x06+\\x01\\\"&=\\x01#7#54+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014\\x80\\f(\\f\\f(\\f\\x8c\\f\\f(\\f\\ft\\f(\\f\\f(\\fL\\f\\f(\\f\\f\\x8c\\xfe@\\f\\x14\\x0e\\nX\\x0e\\np\\n\\x0eX\\n\\x0e\\x14\\f\\xfe\\x90p\\f(\\fp@\\x0e\\np\\n\\x0e@\\xba\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\xcc(\\f\\f(\\f\\f(\\f\\f(\\fT\\f\\f(\\f\\f4\\f(\\f\\f(\\f|$$\\f\\x01{\\t\\f(\\n\\x0e\\x0e\\n(\\f\\t\\xfe\\x85\\x01C\\f\\fC\\x01_\\x18\\n\\x0e\\x0e\\n\\x180\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x1b\\x00+\\x007\\x00\\x00%\\x15\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x0154;\\x012\\x1d\\x01327\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\x01`\\fX\\f \\fX\\f\\fX\\f \\fX\\f`\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\xd0 \\fX\\f\\fX\\f \\fX\\f\\fX\\x94\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x14\\x16\\\"&462\\x16\\x14\\a>\\x01\\x1e\\x01\\a\\x06\\\"'&>\\x01\\x16\\x17\\x162\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13\\x1c\\x06\\x14\\x0f\\x02\\x06/\\x94/\\x06\\x02\\x0f\\x14\\x06!f\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\\\\\b\\x02\\r\\x14\\a99\\a\\x14\\r\\x02\\b'\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x000\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x1462\\x16\\x14\\x06\\\"&4\\x062\\x17\\x16\\x06\\a\\x06&'&\\\"\\a\\x0e\\x01.\\x017\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13o~)\\x06\\x02\\a\\b\\x14\\x06\\x1aR\\x1a\\x06\\x14\\x0f\\x02\\x06\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1am1\\a\\x14\\x06\\a\\x02\\b\\x1f\\x1f\\b\\x02\\r\\x14\\a\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00+\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x1462\\x16\\x14\\x06\\\"&4\\x172\\x16\\x14\\x06+\\x01\\\"&463\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13(\\n\\x0e\\x0e\\n\\xb0\\n\\x0e\\x0e\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1a}\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00K\\x00W\\x00c\\x00o\\x00{\\x00\\x87\\x00\\x93\\x00\\x9f\\x00\\xab\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x114#!\\\"\\x15\\x11\\x143!2%\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15%\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe8\\b\\xfe \\b\\b\\x01\\xe0\\b\\xfe\\x92\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f\\xfe\\xb0\\f\\x1c\\f\\f\\x1c\\f\\x01\\x80\\f\\x1c\\f\\f\\x1c\\f\\xfe\\x80\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\fb\\f\\xd8\\f\\f\\xd8\\f\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xb0\\x01 \\b\\b\\xfe\\xe0\\b\\x8a\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\fn\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x88\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\xba\\f\\f\\x10\\f\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1f\\x00'\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x1325\\x11!\\x11\\x143\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f*\\x06\\xfe\\xa0\\x06\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\xfep\\x06\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\f\\x00\\x14\\x00\\x1c\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06.\\x01=\\x0146\\x17\\x04\\x14\\x06\\\"&462\\x04\\x14\\x16264&\\\"\\x01t\\f\\f\\xb0\\t\\x10\\v\\x18\\f\\x014\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xd2\\a\\x1c\\ae\\x04\\x03\\r\\t\\xd0\\x0e\\x0e\\a\\x16Α\\x91Α\\xa5\\xa6uu\\xa6u\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\v\\x00\\x1b\\x00'\\x00\\x007\\\"=\\x014;\\x012\\x1d\\x01\\x14#7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2l\\f\\f\\xe8\\f\\fl\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\xa4\\f \\f\\f \\f\\xcc\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x11%\\a\\x06/\\x01&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\xfe\\xa0\\x01<\\xac\\t\\b[\\t\\t\\x17\\b\\t;\\x8e\\b\\t\\x16\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x01`\\xfe\\xa0\\xf2\\xab\\t\\t[\\t\\b\\x17\\b\\b=\\x8c\\t\\t\\x16\\t\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc9\\x00\\x1c\\x002\\x00Y\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01\\x0e\\x01\\x14\\x17\\x16\\x06'.\\x015476767546\\x17\\x037'\\x15\\\"\\x0e\\x04\\x15\\x14\\x17.\\x01>\\x057\\x17676\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1d\\x01\\x14\\a\\x06\\a\\x06+\\x01\\\"\\x15\\x11\\x143!2=\\x014\\x022\\x0e\\x0e\\x90\\x17;1+\\b\\v6\\x1c(-$\\x1e50I;\\x17\\\"\\x90\\x90!0<*&\\x13>\\a\\x04\\b\\x10\\x1a\\x1f))\\x1a\\x19\\v\\n\\x06\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x84\\f\\b\\x14\\x12\\x03\\x03V\\x06\\x06\\x01T\\x06\\x01\\\"\\x0e(\\x0e\\x90\\x17\\x19 6\\x04\\x13 \\x18 )\\x11\\x19K-;(!\\x11\\x0f\\x039 \\x18\\x16\\xfe\\xbe\\x90\\x90h\\x03\\b\\x11\\x19)\\x1aA'\\x16%\\x1c\\x16\\x0f\\n\\a\\x02\\x01\\xbc\\x03\\x06\\x04\\a\\a+\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\f\\x04\\t\\x03\\b\\n\\x02\\x06\\xfe\\xac\\x06\\x06\\x1a\\t\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\r\\x00\\x15\\x00\\x1d\\x00%\\x00\\x00\\x016\\x16\\x0f\\x01\\x06\\x0f\\x01\\x06&?\\x0167\\x1664&\\\"\\x06\\x14\\x16\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x01\\\\\\f\\x14\\x06B\\x05\\v\\x90\\f\\x14\\x06B\\x05\\v9\\x13\\x13\\x1a\\x13\\x13ZΑ\\x91Α\\xa5\\xa6uu\\xa6u\\x01>\\x06\\x14\\f\\x90\\v\\x05B\\x06\\x14\\f\\x90\\v\\x05\\\\\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\x18\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00732\\x16\\x0f\\x01\\x06/\\x01&6%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2}\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06\\x01K\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\xf0\\x0f\\x05c\\b\\bc\\x05\\x0f\\x80\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00%#\\\"&?\\x016\\x1f\\x01\\x16\\x067\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\x01C\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06u\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\x90\\x0f\\x05c\\b\\bc\\x05\\x0f\\xe0\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x007546\\x1f\\x01\\x16\\x0f\\x01\\x06&\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\xb0\\x0f\\x05c\\b\\bc\\x05\\x0f\\x01\\x10\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06]\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06\\x01\\x1b\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x17\\x00)\\x00,\\x005\\x00\\x00%\\x15\\x14+\\x01\\\"=\\x014;\\x012\\a2\\x1d\\x01\\x14+\\x01\\\"=\\x0143%\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01\\x16'\\x153\\x13\\x11#\\\"&=\\x01#\\x11\\x01 \\f\\xa8\\f\\f\\xa8\\f\\f\\f\\f\\xa8\\f\\f\\x01\\x14\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0eT\\x0e\\x80L\\x04h\\n\\x0e\\xa0\\xc8\\x1c\\f\\f\\x1c\\fT\\f\\x1c\\f\\f\\x1c\\f\\xbc\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0eT\\x0e<L\\xfe\\xb0\\x01 \\x0e\\nh\\xfe`\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xe0\\x01\\xc0\\x00.\\x00T\\x00\\\\\\x00\\x00%\\x16\\a\\x16\\a\\x0e\\x02#*\\x01#\\\".\\x01#\\x0e\\x01+\\x01\\\"&=\\x0146;\\x01>\\x027>\\x0232\\x16\\x15\\x14\\a32\\x1e\\x01\\x15\\x14\\a>\\x01'2654&+\\x014654.\\x03#\\x0e\\x01\\a\\x0e\\x03+\\x01\\x152\\x16;\\x012'>\\x01\\x044&\\\"\\x06\\x14\\x162\\x01\\xd2\\a\\x10\\x05\\x16\\x01\\x173&\\x03\\x10\\x03-E/\\x11\\x03\\x11\\v@\\r\\x13\\x13\\rc\\b\\x18\\x1b\\n\\x03\\f\\x1d\\x1b-3\\t$\\x18(\\x16K\\x0f\\x01\\v\\a\\x0f\\x16\\x10h\\x1d\\x01\\x05\\t\\x13\\x0e\\b\\x0e\\x10\\a\\x1c\\x16\\x1b\\n\\v\\x19m&%@\\n\\f\\n\\xfe\\xbb\\x0e\\x14\\x0e\\x0e\\x14\\xa1!\\x1e$\\x1f\\x1c*\\x19\\x14\\x14\\n\\x0e\\x13\\r\\xf0\\r\\x13\\a #\\t\\x04:/45\\x17\\x17\\x19'\\x16\\x1aN\\x0f)\\n\\x18\\x0e\\x0e\\x18\\x129\\x13\\n\\v\\x12\\n\\b\\bG\\x10\\a%\\x1d\\x18\\xba&B\\a\\\"U\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xe0\\x01\\xc0\\x00.\\x006\\x00[\\x00\\x00%\\x16\\x15\\x14\\x06+\\x01\\x16\\x15\\x14\\x06#\\\".\\x01'.\\x01'#\\x06+\\x01\\\"&=\\x0146;\\x012\\x1732>\\x013:\\x0132\\x16\\x17\\x16\\a\\x16\\x04264&\\\"\\x06\\x14\\x052>\\x0154&#6&'6&'6+\\x01\\\"\\x06#\\x1532\\x1e\\x01\\x17\\x1e\\x01\\x172>\\x0254&5\\x01\\xd2\\x0e2$$\\t3-\\x1b\\x1d\\f\\x03\\v0\\n\\a\\n\\x12@\\r\\x13\\x13\\r@\\f\\t\\v\\x0f.G-\\x03\\x10\\x0388\\x01\\x16\\x05\\x10\\xfe]\\x14\\x0e\\x0e\\x14\\x0e\\x01b\\n\\x12\\n\\x0f\\a\\v\\x01\\x0f\\b\\n\\f\\n@%&m\\x19\\v\\f\\\"(\\b\\x10\\x0e\\b\\x11\\x15\\b\\x02\\x1d\\xdf\\x18\\x1a\\\"4\\x17\\x1754/:\\x04\\v?\\t\\x10\\x13\\r\\xf0\\r\\x13\\b\\x14\\x143,\\x1f$\\x1eh\\x0e\\x14\\x0e\\x0e\\x14\\x1f\\v\\x12\\t\\x0e\\x18\\n)\\x0f\\x10\\\"\\aB&\\xba#6\\b\\x10G\\b\\n\\x14\\x0e\\r\\x139\\x12\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00(\\x008\\x00@\\x00H\\x00\\x00%\\x16\\x14\\x0f\\x01\\x17\\x16\\a\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x027'7\\a'\\a'\\x17\\a\\x17\\a7\\x177\\x17&2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01\\xee\\x12\\x12<\\x0e\\x04\\x0f\\x0f\\x15G(\\r+\\f(G\\x15\\x1e\\x04\\x0e<\\x12\\x12<\\x0e\\x04\\x1e\\x15G(\\f,\\f(G\\x15\\x1e\\x04\\x0e5MM\\x12[44[\\x12MM\\x12[44[\\xbaV==V=Q.!!.!\\xe2\\f+\\f)G\\x15\\x0f\\x0f\\x04\\x0e<\\x12\\x12<\\x0e\\x04\\x1e\\x16F)\\f+\\f)G\\x15\\x1e\\x04\\x0e<\\x11\\x11<\\x0e\\x04\\x1e\\x15G\\u007f54[\\x12MM\\x12[44\\\\\\x12MM\\x12\\xf7=V==Vc!.!!.\\x00\\x00\\x02\\x00\\x17\\xff\\xc0\\x01\\xf4\\x01\\xc0\\x00\\x16\\x00&\\x00\\x00\\x05\\\"&4632\\x17\\x1e\\x01\\x06\\a\\x0e\\x01\\x15\\x14\\x1676\\x16\\a\\x0e\\x01\\x03\\\"\\x06\\x14\\x163267\\x06&5467&\\x01\\x17j\\x96\\x96j\\x18\\x17\\x15\\x16\\t\\x13\\x1f%a>!\\\"\\x15$h;VzzV0U\\x1dT\\x842*\\x13@\\x96Ԗ\\x04\\x04#(\\n\\x12>$?P\\f\\x069\\x1a-2\\x01\\xd0z\\xacz)$\\x10mU2T\\x18\\x03\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00\\x01\\x15\\x14\\x06/\\x01&?\\x016\\x167\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\x01\\x10\\x0f\\x05c\\b\\bc\\x05\\x0f\\xb0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\x01#\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06E\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00\\x00\\\"\\x06\\x14\\x16264$2\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x01S\\xa6uu\\xa6u\\xfe\\xd1Α\\x91Α\\xd7B//B/\\x01\\x88u\\xa6uu\\xa6\\xa5\\x91Α\\x91\\xce\\x17/B//B\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00/\\x00;\\x00G\\x00Y\\x00e\\x00\\x00\\x1354;\\x012\\x1d\\x01\\x14+\\x01\\\"3\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\a\\\"=\\x014;\\x012\\x1d\\x01\\x14#3\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x17\\x15!54;\\x01\\x11463!2\\x16\\x15\\x1132%354;\\x012\\x1d\\x013\\x11%\\x80\\f(\\f\\f(\\f\\x8c\\f\\f(\\f\\f\\xa8\\f\\f(\\f\\fX\\f\\f(\\f\\ft\\f(\\f\\f(\\fL\\f\\f(\\f\\f\\x8c\\xfe@\\f\\x14\\x0e\\n\\x01P\\n\\x0e\\x14\\f\\xfe\\x90p\\f(\\fp\\xfe\\xe0\\x01,(\\f\\f(\\f\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\f(\\f\\f(\\fT\\f\\f(\\f\\f4\\f(\\f\\f(\\f|$$\\f\\x01\\xb8\\n\\x0e\\x0e\\n\\xfeH\\x01C\\f\\fC\\x01\\x9e\\x01\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x007\\x00=\\x00D\\x00J\\x00Q\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x13\\x16\\x06#\\\"'\\x06\\a\\x06'&76767&76\\x16\\x17\\x16\\a\\x16\\x176\\a\\x14>\\x017\\x067\\\"\\x14\\x16\\x1764\\a67&'\\x06\\x176&\\a\\x1e\\x017\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xfa\\n\\n\\x11\\x19\\x1f\\x0f6'\\x1b\\f\\x02\\x05.\\x10\\x14\\r\\x06\\x03$\\x03\\x05\\n\\f\\x193\\xb9\\a\\x0f\\b\\x1aN\\x02\\x01\\x03\\x03\\x1e-\\n\\x12\\f\\rx\\x05\\x15\\x15\\x0e\\x13\\x02\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\xf0\\b\\x1f\\x11\\x03\\x11D\\x11\\a\\r\\x16\\x18\\x1c.0\\x13\\x0f\\x02\\x13\\x0e*\\x1f\\x0f\\a[\\x01\\x05\\x11\\x0e\\x19\\xb4\\x0e\\x14\\x06\\x06\\\"\\x88\\x11\\x02\\r\\x17#\\x0f\\x03\\x06\\x01\\x06\\x04\\x01\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00R\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x1732\\x1e\\x01\\x15\\x06\\a\\x06+\\x01\\\"'&/\\x01\\x14\\x0f\\x01\\x06+\\x01\\\"'.\\x02'&6;\\x012\\x17\\x16\\x15\\x14\\x17476;\\x012\\x17\\x16\\x17\\x1c\\x011676\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xdc\\x10\\x04\\x06\\x02\\n\\x19\\x02\\n\\x18\\n\\x02\\a\\v\\x03\\x03\\x12\\x02\\t\\x19\\n\\x02\\x03\\r\\x0e\\x03\\x02\\b\\x05\\x11\\n\\x02\\x13\\x01\\x18\\x03\\t\\r\\n\\x02\\x17\\x01\\x01\\x14\\x02\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xd0\\x04\\a\\x04&b\\t\\t\\x1d+\\x11\\b\\tH\\t\\t\\v78\\x0e\\x06\\t\\n`\\x03\\x01\\x03\\x06b\\t\\ta\\x03\\x01\\x03\\x06a\\n\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00B\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x172\\x16\\a\\x06\\a\\x17\\x16\\x06+\\x01\\\"'&'\\x06\\a\\x06+\\x01\\\"&?\\x01'&6;\\x012\\x17\\x16\\x176763\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xd4\\a\\a\\x04#\\v.\\x04\\a\\a\\x1d\\a\\x03\\x02\\x1b\\f\\x11\\x03\\a\\x1d\\a\\a\\x04..\\x04\\a\\a\\x1d\\a\\x04\\t\\x13\\t\\x14\\x03\\a\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xb0\\f\\x06=\\x11N\\x06\\f\\x06\\x037\\x1b\\x1f\\x06\\f\\x06NN\\x06\\f\\x06\\x12(\\x16$\\x06\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x006\\x00>\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x1354;\\x012\\x16\\x15\\x14\\x0e\\x06*\\x01#\\x15\\x14\\x06+\\x01\\\"73264&+\\x01\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0H\\fE\\x1c#\\x04\\x06\\v\\t\\x0f\\n\\x10\\b\\x0f\\x02\\a\\x05\\x18\\f0\\x18\\v\\r\\r\\v\\x18\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\x9c\\xa8\\f%\\x1d\\v\\x12\\r\\v\\x06\\x05\\x02\\x01/\\x05\\ac\\x0f\\x17\\x0e\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00(\\x000\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x13576\\x1f\\x0176\\x1f\\x01\\x15&2\\x16\\x14\\x06\\\"&4\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0 (\\b\\b(X\\b\\b\\x18\\xc4(\\x1c\\x1c(\\x1c\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\x90@(\\b\\b(X\\b\\b\\x18\\x80\\xf0\\x1c(\\x1c\\x1c(\\x00\\n\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00!\\x00$\\x001\\x00@\\x00L\\x00P\\x00\\x00\\x133\\x15#7\\x15#5\\a3\\x15#3\\x15#57\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x17\\a\\x153\\x13\\x11#\\\"&=\\x01#\\x15#5#\\x117\\x17\\x16\\x0e\\x01#\\\"&?\\x0153\\x1532\\x062654.\\x01\\\"\\x0e\\x01\\x15\\x147\\x15#5\\x80  @    @ \\xd2\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e\\x1eL\\x04h\\n\\x0e0 P\\x92\\x12\\x03\\r\\x1a\\x10\\x19\\x1f\\x05\\x13 \\x16\\n-\\x1b\\x13\\t\\x0f\\x12\\x0e\\t@ \\x01  \\x80      \\x1e\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0e&L\\xfe\\xb0\\x01 \\x0e\\nh\\x10\\x10\\xfe`\\xc6W\\x10\\x1d\\x12'\\x18a  \\x86\\x10\\v\\a\\r\\a\\a\\r\\a\\v\\xb6  \\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x14\\x00\\x1d\\x00/\\x00=\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x13\\x14\\x06/\\x01#\\\"&=\\x0146;\\x0176\\x16\\x15\\x1764'&>\\x01\\x17\\x16\\x14\\a\\x06.\\x01\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\x90\\x0f\\x05$\\x1c\\x05\\a\\a\\x05\\x1c$\\x05\\x0f)\\a\\a\\n\\t\\x18\\f\\x14\\x14\\v\\x1a\\a\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\xac\\b\\x06\\x06$\\a\\x058\\x04\\b$\\x06\\x06\\bY\\a\\x14\\a\\n\\x1b\\x06\\n\\x15:\\x15\\v\\b\\x18\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x14\\x00\\x1d\\x007\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x176\\x16\\x1d\\x01\\x14\\x06/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xe5\\a\\x14\\x14\\a5\\f\\bh\\b\\f\\f\\bh\\b\\f\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xcd\\b\\b\\vp\\v\\b\\b4%\\b\\f\\f\\bh\\b\\f\\f\\b%\\x00\\x06\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x12\\x00$\\x00'\\x000\\x00<\\x00M\\x00\\x007\\x16\\x0f\\x01\\x06#\\\"/\\x01&?\\x016\\x1f\\x01\\x15\\x16\\x0f\\x017\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x17\\a\\x153\\x13\\x11#\\\"&=\\x01#\\x117\\x17\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x17&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06/\\x015&?\\x01\\x96\\x06\\x06\\x11\\x03\\x04\\x03\\x039\\a\\a9\\a\\x06\\x11\\x06\\x06!\\xfd\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e\\x1eL\\x04h\\n\\x0e\\xa0\\xa2\\x18\\t\\x037\\x02\\t\\x18\\t\\x037\\x02!\\x06\\x06\\x11\\x06\\a9\\a\\a9\\a\\x06\\x11\\x06\\x06!c\\x06\\a\\x12\\x03\\x036\\x06\\x066\\a\\a\\x12\\x01\\x06\\x06\\x1d\\xde\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0e&L\\xfe\\xb0\\x01 \\x0e\\nh\\xfe`\\xfa\\a\\x02\\t\\xbc\\t\\x03\\a\\x02\\t\\xbc\\bO\\x06\\a\\x12\\a\\a6\\x06\\x066\\a\\a\\x12\\x01\\x06\\x06\\x1d\\x00\\x00\\x06\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x16\\x00\\x1d\\x00$\\x00+\\x00\\x00\\x04\\\"&462\\x16\\x14\\x05\\x1627'\\x06'64&\\\"\\x06\\x14\\x162\\x1764'\\a\\x16\\a'&\\\"\\a\\x176\\x17\\a\\x06\\x14\\x177&7\\x01gΑ\\x91Α\\xfe\\xa1/p/522\\x82/B//B\\x8a\\x1d\\x1d5\\x15\\x15\\x0f/p/522\\xdd\\x1d\\x1d5\\x15\\x158\\x91Α\\x91\\xceD\\x1d\\x1d5\\x15\\x15UB//B/\\x17/p/522\\xdd\\x1d\\x1d5\\x15\\x15\\x0f/p/522\\x00\\x00\\x00\\x03\\xff\\xfe\\xff\\xbe\\x02\\x05\\x01\\xc9\\x00\\x15\\x00\\x18\\x00!\\x00\\x00\\x016\\x16\\a\\x03\\x06\\a\\x06#\\\"/\\x01\\a\\x0e\\x01&=\\x01'.\\x017\\x177'\\x17\\x13\\x05\\x1776\\x16\\x0f\\x01\\x01\\xb8\\x1a2\\x04<\\x04\\x14\\v\\f\\n\\tp+\\x0e) r\\x1c\\x04\\x1a\\xa8%%\\xd5;\\xfe`l\\xd3\\v\\x15\\b\\x8c\\x01\\xba\\x0e!\\x1e\\xfe|\\x17\\v\\x06\\x03.;\\x11\\x04\\x1c\\x16T0\\v<\\x0f\\xda2\\x0f$\\x01\\x83\\xf0-\\xb9\\t\\x13\\f\\xca\\x00\\x00\\x00\\x00\\x06\\xff\\xec\\xff\\xc8\\x02\\x04\\x01\\xb8\\x00\\x10\\x00\\x19\\x00 \\x00'\\x00.\\x005\\x00\\x00\\x01\\x16\\x06\\a\\x06#\\\"&'&67632\\x1e\\x01\\a6767'\\x0f\\x01\\x177&'\\a\\x15\\x177'\\x06\\a\\x1f\\x0175\\x037/\\x01\\a\\x16\\x1f\\x01\\x16?\\x01'#\\a\\x01\\xe4 ^a&'O\\x84\\x19 ^a&'4_H:\\f\\x05\\x15\\x01'G\\x19,4%=/@G\\xd6<&\\nG@]+\\x18G'\\x01%e:@\\x16,O+\\x01\\rb\\xb7 \\f^Mb\\xb7 \\f*N\\xf5\\x10\\n*/%\\x16L=\\xf24\\x14\\x1aJ/\\x16}\\x1445\\x16/J\\xfe\\xe0>J\\x17%?4I\\x13\\x130==\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x13\\x00\\x19\\x00\\x1f\\x00+\\x00/\\x00;\\x00G\\x00S\\x00_\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01>\\x013\\x03\\x142=\\x01#\\x01\\x11!\\x11\\x14\\a7\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\x1535\\a54;\\x012\\x1d\\x01\\x14+\\x01\\\"754;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x1554;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x02(\\n\\x0e\\x0e\\n\\xfe\\x10\\x17!\\x0e\\n+\\x05\\x19\\x0f@\\x10\\x10\\x01\\xe0\\xfe`\\x01=\\f\\f\\x88\\f\\flPx\\f\\x88\\f\\f\\x88\\f\\xc0\\fh\\f\\fh\\f\\fh\\f\\fh\\f\\fh\\f\\fh\\f\\x01\\x80\\x0e\\n\\xfe\\xb0\\n\\x0e!\\x17\\x01\\x10\\n\\x0e\\x0e\\x12\\xfe\\xb8\\b\\b\\xf8\\xff\\x00\\x01 \\xfe\\xe8\\x04\\x04x\\f`\\f\\f`\\fP((\\x8c\\x18\\f\\f\\x18\\f\\f\\x18\\f\\f\\x18\\f\\x9c\\x18\\f\\f\\x18\\f<\\x18\\f\\f\\x18\\f\\x00\\x00\\x04\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00\\v\\x00\\x1e\\x008\\x00@\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x17\\x133\\x17!\\\"&54767>\\x045\\x17\\x067\\\"\\a'675462\\x16\\x1d\\x01\\x1e\\x02\\x15\\x14\\x17'&5414&\\x03\\\"&53\\x14\\x0e\\x01\\x02z\\f\\n\\n\\n\\f\\xfd\\xaa\\f\\n\\n\\n\\f\\x80\\xb6>\\xfe\\xe8\\x0e\\x12\\t\\x01\\x02\\b\\t\\x10\\t\\t.\\t|\\\"\\x1d&\\x1f&\\x13\\x1a\\x13%:!\\x0e;\\x03B.\\x1a&\\x80\\x11\\x1e\\x17\\n\\r\\f\\f\\n\\x01\\xd3\\n\\r\\f\\f\\n\\xfe\\x940\\x13\\r\\f\\n\\x01\\x02\\t\\n\\x1a\\x1a*\\x18#D\\xe5\\x13\\x1d\\x19\\b\\x15\\r\\x13\\x13\\r\\x15\\a,B&7&/\\x17\\x16\\x01.B\\xfe`%\\x1b\\x11\\x1e\\x11\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x004\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x05\\x06#\\\"&54>\\x0132\\x17\\x16\\x15\\x14\\x0f\\x01\\x06'&#\\\"\\x0e\\x01\\x15\\x14\\x163276\\x16\\x1f\\x01\\x16\\x15\\x14\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x013)?=O$@(;&\\x04\\x02\\x12\\a\\v\\x1c!\\x18$\\x12*$$\\x1e\\x04\\n\\x04\\x14\\x02\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x10)Q<'@%#\\x04\\x05\\x03\\x03\\x1d\\v\\t\\x16\\x15%\\x16\\\"2\\x1b\\x04\\x01\\x04\\x1b\\x04\\x04\\x04\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1b\\x003\\x00K\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x1437\\x16\\a\\x0e\\x01&546\\x16\\x17\\x16\\x0f\\x01\\x06'&\\x06\\x15\\x14\\x1676\\x1f\\x01\\x16\\a\\x0e\\x01&546\\x16\\x17\\x16\\x0f\\x01\\x06'&\\x06\\x15\\x14\\x1676\\x17\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x9a\\x06\\x06\\xfel\\x06\\x06\\xc1\\x03\\x04\\x1aR@AR\\x19\\x03\\x02\\x11\\x04\\x06\\x1e@=\\x1f\\x05\\x04\\xd2\\x03\\x03\\x1bR@AR\\x19\\x03\\x01\\x12\\x04\\x05\\x1f@>\\x1e\\x06\\x04\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xb0\\x06\\x01\\x14\\x06\\x06\\xfe\\xec\\x06V\\x04\\x04\\x1c\\x056/.4\\x03\\x19\\x03\\x03\\x1e\\x06\\x04\\x18\\x15\\\"%\\x17\\x1b\\x05\\x06\\x1b\\x04\\x04\\x1c\\x056/.4\\x03\\x19\\x03\\x03\\x1e\\x06\\x04\\x18\\x15\\\"%\\x17\\x1b\\x05\\x06\\x00\\t\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00+\\x00/\\x003\\x007\\x00;\\x00O\\x00c\\x00g\\x00o\\x00\\x00\\x01#\\x1132\\x1d\\x01\\x14+\\x01\\\"=\\x01!\\x15\\x14+\\x01\\\"=\\x014;\\x01\\x11#\\\"=\\x014;\\x012\\x1d\\x01!54;\\x012\\x1d\\x01\\x14'\\x1535!\\x1535\\x115#\\x15!5#\\x15'\\x11#\\\"=\\x01!\\x15\\x14+\\x01\\x1132\\x1d\\x01!543'2\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x012\\x1d\\x01'\\x1535\\x175#\\x15\\x14+\\x01\\x15\\x01\\xf4\\f\\f\\f\\fH\\f\\xfe\\xc0\\fH\\f\\f\\f\\f\\f\\fH\\f\\x01@\\fH\\f@ \\xfe@  \\x01\\xc0 \\b\\f\\f\\xfe\\xc0\\f\\f\\f\\f\\x01@\\f\\x18\\f\\f\\xc8\\fT\\f\\f\\xc8\\f\\xb8\\x90`8\\fL\\x01@\\xff\\x00\\fH\\f\\f\\f\\f\\f\\fH\\f\\x01\\x00\\fH\\f\\f\\f\\f\\f\\fH\\f@    \\xfe\\x80    @\\x01\\x00\\f\\f\\f\\f\\xff\\x00\\f\\f\\f\\f\\xc0\\f\\xa8\\f\\f4\\f\\xa8\\f\\f4\\x18pp\\xb0pL\\f\\x18\\x00\\x00\\x00\\x00\\n\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00C\\x00G\\x00K\\x00O\\x00S\\x00g\\x00k\\x00\\x87\\x00\\x8b\\x00\\x8f\\x00\\x00%#\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\x15\\x14+\\x01\\\"=\\x014;\\x015#\\x15\\x14+\\x01\\\"=\\x014;\\x015#\\\"=\\x014;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x14+\\x01\\x15354;\\x012\\x1d\\x01\\x14'\\x1535\\x03\\x1535\\x055#\\x15\\x135#\\x15\\x17354;\\x015#\\\"=\\x01#\\x15\\x14+\\x01\\x1532\\x15\\x175#\\x15%5#\\\"=\\x01#\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\x1532\\x1d\\x013543\\x175#\\x15\\x135#\\x15\\x024\\f\\f\\f\\fH\\f\\xe0\\fH\\f\\f\\fX\\fH\\f\\f\\f\\f\\f\\fH\\f\\xe0\\fH\\f\\f\\fX\\fH\\f\\xe0   \\xfe\\xc0   @\\xe0\\f\\f\\f\\f\\xe0\\f\\f\\f\\f\\x80 \\x018\\f\\fX\\f\\f\\fH\\fX\\f\\f\\xe0\\f4   \\xe0\\xa0\\fH\\f\\f\\f\\f\\f\\fH\\f\\x18\\f\\f\\fH\\f\\xa0\\fH\\f\\f\\f\\f\\f\\fH\\f\\x18\\f\\f\\fH\\f\\xa0  \\xff\\x00     \\x01\\x00  \\xd8\\f\\f\\xa0\\f\\f\\f\\f\\xa0\\f\\x94  @\\xa0\\f\\fX\\fH\\f\\f\\f\\x18\\f\\f\\f\\f@  \\x01\\x00  \\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x14\\x00\\x1d\\x00\\x00%\\x14\\x0f\\x01\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x037#\\x13!\\x113546;\\x01\\x01\\xc0\\x0eT\\x0e\\x14\\xfe\\xf4\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x80LLP\\xfe\\xa0\\xe0\\x0e\\nhd\\x14\\x0eT\\x0e\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa4L\\x01\\x10\\xfe\\xa0h\\n\\x0e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00(\\x004\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x015463\\x132=\\x01#\\\"&=\\x01#\\\"\\x15\\x11\\x143%25\\x114#!\\\"\\x15\\x11\\x143\\x01\\xd0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xda\\x06\\xe0\\x14\\x1c*\\x06\\x06\\x01\\x94\\x06\\x06\\xfe\\xcc\\x06\\x06\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c0\\x14\\x1c\\xfe0\\x06*\\x1c\\x14\\xe0\\x06\\xfe\\xcc\\x06`\\x06\\x014\\x06\\x06\\xfe\\xcc\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00%\\x00+\\x001\\x00\\x00\\x01\\x14\\x06\\a\\x1e\\x01\\x1532\\x1d\\x01\\x14#!\\\"=\\x014;\\x01467.\\x015#\\\"=\\x0143!2\\x1d\\x01\\x14#!\\x14\\x16265\\x114&\\\"\\x06\\x15\\x01p2//2\\x04\\f\\f\\xfe\\x98\\f\\f\\x042//2\\x04\\f\\f\\x01h\\f\\f\\xfe\\xccKjKKjK\\x01\\x90?s\\x1e\\x1es?\\f\\x18\\f\\f\\x18\\f?s\\x1e\\x1es?\\f\\x18\\f\\f\\x18\\fLllL\\xfe`LllL\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00)\\x00p\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06\\x15\\x14\\x06+\\x01\\\"&5<\\x05&4&/\\x01&=\\x0146\\x17>\\x01\\x1762\\x176\\x16\\x1754&\\x06\\x15\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06#\\\"/\\x01&=\\x014&\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16\\x1d\\x01354?\\x016\\x01\\x99$C\\t+\\x04\\x13\\r\\xfc\\r\\x13\\x01\\x01\\x01b'8#\\x02I$\\x16@\\x16\\x18:H\\x1a\\x1a\\t\\a\\a\\a\\t\\x1a\\x1a\\t\\a\\a\\a\\t\\x1a\\x1a\\t\\a\\a\\a\\t\\x1a\\x1a\\t\\a\\x06\\x05\\a\\x05\\x1a\\x1a\\x17a\\x14\\xdc\\b+\\x05\\x01q\\x10,(r\\x18\\x15d\\t!\\r\\x13\\x13\\r\\x04\\b\\x05\\x05\\x03\\x03\\x02\\x01\\x01\\x01U\\\"49#,\\b)(\\x14\\x17\\x17\\x0e\\r\\xcfr\\x10\\r\\r\\x0f\\a\\t\\t\\a\\x1a\\x11\\r\\r\\x10\\x1b\\a\\t\\t\\a(\\x10\\x0e\\r\\x10)\\a\\t\\t\\a\\x1a\\x11\\r\\r\\x10t\\a\\t\\x04\\x06\\x04\\b)\\x10\\r\\r\\x0f9\\x1e\\x14U\\x11\\x1a\\n\\a\\x14\\x12d\\f\\x00\\x00\\x00\\x00\\x02\\xff\\xfc\\xff\\xbf\\x01\\xc0\\x01\\xc1\\x00\\x1d\\x00Y\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&676\\x17546\\x17>\\x01\\x176\\x16\\x15\\x1754&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06/\\x01.\\x01\\x0e\\x01\\x14\\x1f\\x01376\\x01u\\x1d.\\x05\\x1e\\x03\\x11\\f\\xde\\x11\\nw\\x10\\b\\x16\\x1d!3 \\x12P\\x14\\x1f4\\x1b\\x12\\x13\\t\\a\\x06\\a\\t\\x13\\x12\\t\\a\\a\\x06\\n\\x12\\x12\\n\\x06\\a\\a\\t\\x13\\x12\\x16\\a\\x1b\\x04\\f\\n\\a\\x04s\\xca\\x1b\\x04\\x01O\\x05)\\x1e\\x84\\x17\\x16\\x83\\v\\x0e\\r\\xa9\\x167\\x10\\x15\\f~!(\\b$\\x02%\\b)!ф\\f\\n\\n\\rL\\a\\t\\t\\a\\x9a\\f\\v\\n\\f\\x9b\\a\\t\\t\\a\\xbc\\f\\v\\n\\f\\xbd\\a\\t\\t\\a\\x99\\f\\v\\n\\f\\xce\\f\\a\\t&\\x06\\x03\\x04\\t\\f\\x06\\xa2w\\x11\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa6\\x00 \\x00]\\x00\\x00\\x05\\\"&7.\\x017#\\\"&463\\x17'.\\x01>\\x01\\x1f\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06#'32?\\x016=\\x014/\\x01&\\x0f\\x01\\x06#\\\"/\\x01&\\a\\x06\\x17\\x16\\x1f\\x01\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x16;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x16;\\x012\\x16\\x1d\\x01\\x14\\x06#\\\"\\x06\\x16\\x01\\x00\\\"(\\n\\x10\\x11\\x03X\\x1f++\\x1f^O\\x1d\\x18\\x168\\x1d\\x91+1b\\\"\\x1d\\x17w\\a\\bFF\\x02\\x02w\\x0f\\tb\\x0f\\n\\x16\\x05\\a\\x03\\x03\\xa6\\x17\\n\\v\\x13\\x03\\x02\\x9c\\n\\t\\a\\xb6\\x10\\x0e\\x0e\\x10\\xb6\\a\\t\\t\\a\\x1c\\f\\n\\n\\f\\x1c\\a\\t\\t\\a\\f\\n\\n 6 \\n#\\x14+<+\\t\\x13\\v88\\x18\\v85\\x1c7\\x13'\\xcd\\x17%\\x05\\x1b\\x020\\x01\\x1b\\x03\\x0f\\xcd\\v\\x057\\b\\f\\x1b\\x06\\x01@\\t\\x14\\x15\\f\\x01\\x02;\\x04\\v\\f\\x06\\n\\x19\\x19\\n\\x06\\a\\a\\t\\x12\\x13\\t\\a\\x06\\a\\t\\x13\\x12\\x00\\x02\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x1c\\x00A\\x00\\x00%\\x16\\x1d\\x01#5'&+\\x01\\\"&546;\\x017#\\\"&=\\x01463!2\\x17\\x1354/\\x01&#!\\\"\\x1d\\x01\\x14\\x16;\\x012\\x16\\x0f\\x01\\x0e\\x02+\\x01\\\"\\x06\\x15\\x14;\\x012\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x02-\\x13\\xe0d\\x04\\x04\\x84\\x17!4$r\\x12\\xc4!/!\\x17\\x01&'\\x15v\\f\\x92\\a\\r\\xfe\\xda\\b\\x13\\r\\xd5\\x13\\x16\\a\\x18\\x04\\x0e\\x12\\tr\\x11\\x17\\b\\x84\\r\\rc\\x0e\\x11\\x9d\\x1d$|H&\\x02!\\x17$40/!\\b\\x17!!\\xfe\\x91L\\x15\\x12\\xe2\\v\\b\\b\\r\\x13\\x1f\\x12@\\t\\x0e\\b\\x17\\x11\\b\\x05'\\x05\\x18\\x0f\\x18\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc3\\x003\\x00g\\x00\\x00\\x01\\x16\\x15\\x14\\x0f\\x01\\x0e\\x01+\\x02\\\".\\x02/\\x01.\\x025476\\x17'&5467&54676\\x1e\\x01\\x1f\\x017>\\x0232\\x1e\\x02\\x176\\a6&\\x06\\x0f\\x01\\x06&?\\x016&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x06\\x1f\\x01\\x16\\x06/\\x01.\\x01\\x06\\x1f\\x01\\x16\\x15\\x14\\x06/\\x01&\\x0e\\x01\\x1f\\x01\\x1e\\x01;\\x02267\\x01\\xf5\\v\\x02:\\tI*k\\x01\\f\\x1e\\x1c\\x1a\\t\\\\\\x06\\v\\x06\\x14\\x1c(\\x18\\x03(\\x1c\\x01!\\x17\\x15&\\x1a\\x04\\x0e\\x05\\x03\\x16\\x1f\\x10\\x06\\x0f\\x18\\x15\\x05+\\x0f\\x04\\x16\\x1c\\x04\\x19\\x03\\x1b\\x02\\x1d\\x03\\x16\\x1c\\x03 \\x03\\x1a\\x04/\\x04\\x1c\\x16\\x04+\\x03\\x1c\\x04 \\x04\\x1d\\x15\\x05$\\n\\t\\x044\\v\\x1c\\x06\\n[\\r+\\x11\\x01k\\x1a.\\x06\\x01L\\x12\\x15\\b\\t\\xf2(:\\a\\v\\x0f\\tV\\x06\\x13\\x14\\t\\x1d\\x15\\x1e\\bR\\v\\n\\x1c+\\x03\\x03\\x04\\x18*\\x06\\x05\\r\\x1c\\x116\\x17\\x10\\x1b\\x10\\x03\\t\\x19\\x11\\x02R\\x10\\x13\\a\\x10h\\x0e\\a\\r\\x8b\\x11\\x13\\b\\x10\\x9b\\r\\r\\xb8\\x0f\\a\\x14\\x0f\\xa5\\x0e\\b\\x0ei\\x10\\x05\\x14\\x0fz\\\"$\\x05\\x04\\x030\\f\\v\\x1a\\fV\\f\\x11$\\x19\\x00\\x00\\x05\\xff\\xfc\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1e\\x00^\\x00p\\x00\\x80\\x00\\x8c\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&676\\x175462\\x16\\x1d\\x016\\x176\\x16\\x05&\\x0e\\x01\\x1f\\x01\\x16;\\x012?\\x016=\\x014&\\x06\\x15\\x14\\x0e\\x01+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\".\\x01=\\x014&\\x06\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06'\\x17546;\\x012\\x16\\x1d\\x01\\x14\\x0e\\x02+\\x01\\\"&7546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&754;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x01f!9\\x02\\x1b\\x05%\\x17\\xb2\\\"\\x14m\\x10\\b\\x16\\x1d!'7'!\\x17\\x15-\\xfe\\xf9\\a\\x15\\a\\x06m\\x06\\t\\xb2\\x0f\\x03\\x1b\\x01\\x12\\x13\\x04\\a\\x05\\x06\\a\\t\\x13\\x12\\t\\a\\a\\x04\\b\\x04\\x12\\x12\\x05\\a\\x04\\a\\a\\t\\x13\\x12\\x16\\aD\\b\\x06\\x06\\x06\\b\\x02\\x04\\x05\\x03\\x06\\x06\\bL\\b\\x06\\x06\\x05\\t\\t\\x05\\x06\\x06\\bK\\x0e\\x06\\x0e\\x0e\\x06\\x0e\\x01\\r\\f(#T\\b\\aw\\x17\\x1d\\x1c\\x9a\\x167\\x10\\x15\\f\\xa1\\x1c''\\x1cJ\\x05\\x18\\n\\vw\\n\\x04\\x12\\n\\x9a\\b\\x0fw\\x02\\x02T\\f\\n\\n\\f\\x04\\b\\x04\\t\\a\\x15\\f\\n\\n\\f\\x15\\a\\t\\x04\\b\\x04#\\f\\n\\n\\f#\\x04\\b\\x04\\t\\a\\xaf\\f\\n\\n\\f\\xf1\\f\\a\\tR`\\a\\t\\t\\a`\\x03\\x06\\x04\\x03\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a`\\x10\\x10`\\x10\\x00\\x02\\xff\\xfa\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00#\\x00^\\x00\\x00\\x016\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&7'&676\\x1e\\x01\\x1f\\x01'462\\x16\\x1d\\x016\\x16\\x1754&\\x06\\x15\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"/\\x01.\\x01\\x06\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06\\x1f\\x01\\x16;\\x012?\\x016\\x01j\\x15(\\x19\\x02\\x1b\\x05%\\x17\\xcd'\\x137\\x1c58\\v\\x18\\x1c\\x14%\\x1f\\a\\x13\\t+<+\\x14#0\\x12\\x13\\t\\a\\x06\\a\\t\\x13\\x12\\t\\a\\a\\x06\\n\\x19\\x19\\n\\x06\\f\\v\\x04;\\x06\\x1c\\x13\\x06@\\x01\\x06\\x1b\\f\\b7\\x05\\v\\xcd\\x0f\\x03\\x1b\\x01\\x01\\x00\\a\\x0e#\\x16F\\b\\aw\\x17\\x1d\\\"b1+\\x91\\x1d8\\v\\a\\x05\\x19\\x13O^\\x1f++\\x1fX\\x03\\x11\\x96F\\f\\n\\n\\f\\a\\t\\t\\a\\x1c\\f\\n\\n\\f\\x1c\\a\\t\\t\\a\\xb6\\x10\\x0e\\x0e\\x10\\xb6\\a\\t\\n\\x9c\\x0f\\x03\\x16\\x10\\xa6\\x03\\x03\\a\\x05\\x16\\n\\x0fb\\t\\x0fw\\x02\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00,\\x005\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x05\\x16\\x14\\x0e\\x01+\\x01\\\"/\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x15\\x14\\a\\x16'254.\\x01+\\x01\\x15\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x016\\x02\\x03\\x06\\x03+\\a\\x030 \\a\\x05'\\x04\\b\\b\\x04Of(\\x02: \\x05\\x12\\x10\\x1b\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6#\\x03\\a\\x05\\x03\\x06ZT\\x05\\a\\a\\x05\\xf8\\x05\\aU3\\x16\\x03)!\\n\\r\\b@\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00;\\x00C\\x00\\x00%\\x15\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x0154;\\x012\\x1d\\x01327\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2\\x01P\\fL\\f\\x18\\fL\\f\\fL\\f\\x18\\fL\\fp\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06\\x9c\\x18\\fL\\f\\fL\\f\\x18\\fL\\f\\fL\\xa8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00+\\x003\\x00\\x007\\\"=\\x014;\\x012\\x1d\\x01\\x14#7\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2|\\f\\f\\xc8\\f\\f|\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06x\\f\\x18\\f\\f\\x18\\f\\xd8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00;\\x00C\\x00\\x00%\\a\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x17\\x167\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2\\x018\\x11\\t\\b66\\b\\t\\x11\\b\\b66\\b\\b\\x11\\t\\b66\\b\\t\\x11\\b\\b66\\b\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06I\\x11\\b\\b66\\b\\b\\x11\\t\\b66\\b\\t\\x11\\b\\b66\\b\\b\\x11\\t\\b66\\b\\xfe\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1f\\x00'\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x1325\\x11!\\x11\\x143%\\a\\x06/\\x01&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f*\\x06\\xfe\\xa0\\x06\\x01\\x1f\\x8e\\t\\bK\\t\\t\\x17\\b\\t,o\\b\\t\\x16\\t\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\xfep\\x06\\x01*\\xfe\\xd6\\x06Ɏ\\b\\tK\\t\\b\\x17\\b\\b-n\\t\\t\\x16\\t\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00!\\x00%\\x00*\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x0e\\x01\\x0f\\x01\\x06#\\\"/\\x01\\a\\x06#\\\"&5\\x114>\\x01?\\x01632\\x1f\\x0176\\x05\\x11\\x17\\x11\\x0173\\x11\\a\\x05\\x11\\a#\\x11\\x020\\x06\\n\\x05\\n\\x05\\x98\\n\\n\\n\\n\\xac\\xaa\\x03\\x03\\x06\\n\\x05\\n\\x05\\x98\\n\\n\\n\\n\\xac\\xaa\\x03\\xfe\\xb3\\x80\\xfe\\xd0\\u007f\\x01\\x80\\x01\\xe0\\u007f\\x01\\x01\\xa0\\t\\a\\xfe\\xa6\\x06\\f\\n\\x025\\x03\\x03=?\\x01\\t\\a\\x01Z\\x06\\f\\n\\x025\\x03\\x03=?\\x01:\\xfe\\xe2.\\x01\\x1e\\xfe\\xe6/\\x01\\x1e,\\xfe\\x01!/\\xfe\\xe2\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x16\\x00*\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\a\\x06#\\\"=\\x01#\\\"&5\\x11463\\x01\\x114&#!\\\"\\x06\\x15\\x11\\x14\\x16;\\x01\\x15?\\x01326\\x01\\xc0\\x1a&&\\x1a\\x90}\\x03\\x04\\f`\\x1a&&\\x1a\\x01\\x90\\t\\a\\xfe\\x80\\a\\t\\t\\a\\x90C\\r\\xa0\\a\\t\\x01\\xc0&\\x1a\\xfe\\xe0\\x1a&^\\x02\\fT&\\x1a\\x01 \\x1a&\\xfe\\xa0\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t<2\\n\\t\\x00\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\a\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01(\\t\\a0\\a\\t\\t\\a0\\a\\tp\\t\\a0\\a\\t\\t\\a0\\a\\t\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xa3\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x00\\x14\\x06\\\"&462\\x04\\x14\\x16264&\\\"\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x01\\xf8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xb3\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\x01'Α\\x91Α\\xa5\\xa6uu\\xa6ux\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xff\\x02\\x80\\x01\\x80\\x00#\\x00+\\x00L\\x00f\\x00n\\x00\\x00\\x013\\x11#\\\"&5#\\x06\\x0f\\x01\\x0e\\x01'\\x06#\\\"'\\x06&/\\x01#\\x14\\x0e\\x01+\\x01\\x11376;\\x012\\x17\\x00264&\\\"\\x06\\x14\\x056/\\x01\\a\\x0e\\x01&'&6?\\x01#\\\"\\x06#\\a#\\x153\\x17\\x166?\\x01\\x17\\x16?\\x01\\x17\\x16?\\x015#'&+\\x01\\\"\\x0f\\x01\\x06\\x14\\x17\\x166?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x17\\x16\\x17\\x16264&\\\"\\x06\\x14\\x02\\ay@\\r\\x13:\\x03\\b\\x1a\\f#\\x11\\x13\\x1e\\x16\\x13\\x17;\\x17U\\t\\t\\x0e\\t@v0\\x10\\x17\\xe3\\x17\\x11\\xfeQ\\x0e\\t\\t\\x0e\\t\\x01\\x96\\x05\\x06l\\t\\x12-\\x1d\\t\\x14\\x02\\x16'9\\x01\\x03\\x01>*\\x1ca\\f!\\n\\x10%\\t\\t\\x1e\\x18\\x06\\x05\\x84-=\\x03\\x03T\\x0f\\fA\\b\\a\\x06\\x15\\a7\\f\\v\\v\\v\\f\\rg\\x04\\x04n\\x0e\\t\\t\\x0e\\t\\x01@\\xff\\x00\\x13\\r\\r\\n \\x0f\\t\\a\\x18\\x10\\x11\\x02\\x13L\\t\\x0e\\t\\x01\\x000\\x10\\x10\\xfe\\xf0\\n\\r\\t\\t\\r\\x03\\a\\x05W\\a\\x11\\x03\\x0f\\t\\x16;\\x15#\\x02>\\x80X\\n\\x04\\r\\x13 \\a\\n$\\x13\\x05\\x06I\\x80>\\x02\\v<\\x06\\x14\\b\\a\\x01\\x063\\v\\f\\f\\f\\n\\fS\\x04\\x040\\n\\r\\t\\t\\r\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1d\\x005\\x00`\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x114767>\\x052\\x1e\\x04\\x17\\x16\\x1354'&'\\\".\\x02\\\"\\x0e\\x02#\\x06\\a\\x06\\x1d\\x01\\x143!2'\\x16\\a\\x06\\a\\x0e\\x05#\\\".\\x03'&'&?\\x016\\x17\\x16\\x172\\x1e\\x0232>\\x047676\\x17\\x01\\xef\\x11\\x1c\\x14\\xfe`\\x14\\x1c\\x12(_\\x03\\x12\\f\\x15\\x11\\x16\\x14\\x16\\x12\\x14\\f\\x12\\x03d\\x05\\x02Q4\\x01\\x1b\\x0e\\x17\\x10\\x17\\x0e\\x1b\\x01/V\\x02\\x06\\x01\\x94\\x06 \\b\\n7\\x10\\x03\\x12\\f\\x15\\x11\\x16\\n\\f\\x19\\x19\\x0e\\x1a\\x01\\x107\\n\\b\\x0f\\b\\t7\\x10\\x01\\x1b\\x0e\\x17\\b\\x06\\r\\f\\x0f\\v\\r\\x03\\x107\\t\\b\\x01\\x1b\\x0e\\x17\\xfe\\xfa\\x14\\x1c\\x1c\\x14\\x01\\a\\x16\\x0f!K\\x03\\x0f\\n\\x0e\\b\\x06\\x06\\b\\x0f\\t\\x0f\\x03O\\xfe\\xbd\\xfe\\x02\\x02B)\\x17\\n\\f\\f\\t\\x18%F\\x01\\x03\\xfe\\x06\\xc2\\n\\a-\\f\\x03\\x0f\\n\\x0e\\b\\x06\\a\\x10\\n\\x15\\x02\\f-\\a\\n\\x12\\t\\a,\\r\\x17\\n\\f\\x05\\a\\v\\b\\f\\x02\\r,\\a\\t\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00'\\x00+\\x003\\x00H\\x00\\x00\\x01#\\x1532\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1d\\x01\\x14\\x03\\x11!\\x116\\\"&462\\x16\\x14\\a\\\"&=\\x014632\\x1632632\\x16\\x1d\\x01\\x14\\x06#\\x01\\xb4\\x14\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c\\x14\\fP\\xfe\\xc0\\xba4&&4&\\x9a\\t\\r'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\r\\t\\x01 @\\f(\\f@\\f(\\f0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\xfe\\xd0\\x01\\xa0\\xfe`\\xd0&4&&4\\xa6\\v\\b\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\x00\\a\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x1b\\x000\\x00<\\x00H\\x00T\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x116\\\"&462\\x16\\x14\\a\\\"&=\\x014632\\x1632632\\x16\\x1d\\x01\\x14\\x06#7\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\xfe \\xba4&&4&\\x9a\\t\\r'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\r\\t>\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\b\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x01`\\xfe\\xa0\\xb0&4&&4\\xa6\\v\\b\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\\"\\x004\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14&2\\x16\\x14\\x06\\\"&4\\x1227&'\\x06#\\\"'\\x06\\a%654&\\\"\\x06\\x15\\x14\\x17632\\x162632\\xd0P88P8L(\\x1c\\x1c(\\x1c7Α\\x91Α\\xae\\x948\\x18.\\x1e\\x1e\\x1d\\x1f-\\x19\\x01%%u\\xa6u%)@\\x03%$%\\x03@\\x01X8P88PX\\x1c(\\x1c\\x1c(ԑΑ\\x91\\xce\\xfe\\xd10&\\x02\\n\\n\\x01'$4@SuuS@44\\n\\n\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x13\\x00\\x1f\\x00'\\x00<\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x11\\x13\\\"&46;\\x012\\x16\\x14\\x06#\\x06\\\"&462\\x16\\x14\\a\\\"&=\\x014632\\x1632632\\x16\\x1d\\x01\\x14\\x06#\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\xfe\\xe0`\\a\\t\\t\\a`\\a\\t\\t\\a\\x164&&4&\\x9a\\t\\r'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\r\\t\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe0\\x01\\xa0\\xfe`\\x01`\\t\\x0e\\t\\t\\x0e\\t\\xb0&4&&4\\xa6\\v\\b\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x0f\\x00$\\x000\\x00<\\x00H\\x00P\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x113&54632\\x1632632\\x16\\x15\\x14\\a7\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x06\\\"&462\\x16\\x14\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\xfe !\\x01'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\x019\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\b\\xfe4&&4&\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x01 \\xfe\\xe0\\x04\\x12\\x18\\\"\\b\\b\\\"\\x18\\x12\\x04P\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b`&4&&4\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x015!\\x15\\x143!2\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\xfe`\\x06\\x01\\x94\\x06\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfev\\xea\\xea\\x06\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x00 \\x00\\v\\x00\\x00\\x05!\\\"&463!2\\x16\\x14\\x06\\x01\\xe0\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x13 \\x13\\x1a\\x13\\x13\\x1a\\x13\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00\\x1d\\x00&\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x015463\\x135!\\x15%\\x11!\\x1532\\x16\\x1d\\x01\\x01\\xd0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xe0\\xfe\\xc0\\x01\\xa0\\xfe\\xc0\\xe0\\x14\\x1c\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c0\\x14\\x1c\\xfe0\\xd0\\xd0`\\x01@0\\x1c\\x14\\xe0\\x00\\x01\\xff\\xfa\\xff\\xc0\\x01\\xc6\\x01\\xc0\\x00\\xa2\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x06/\\x01\\x17\\x16\\x0e\\x01\\x0f\\x01\\x06&/\\x02\\x15\\x17\\x16\\x0f\\x01\\x06/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a\\x06/\\x01&4?\\x015\\x0f\\x01\\x0e\\x01/\\x01.\\x01?\\x01\\a\\x06&/\\x01&?\\x01'.\\x01?\\x01>\\x01\\x1f\\x017'\\a\\x06&/\\x01&6?\\x01'&?\\x016\\x1f\\x01'&6?\\x016\\x16\\x1f\\x025'&?\\x016\\x1f\\x01546;\\x012\\x16\\x1d\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x15?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x0176\\x16\\x1f\\x01\\x16\\x0f\\x01\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x1776\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xb8\\x06\\x03\\x03\\b\\b\\x0e'\\t\\x01\\x02\\x06\\x04\\x0f\\x06\\f\\x02\\x15H;\\v\\v\\f\\v\\v\\x19\\t\\x06\\x10\\a\\t\\x19\\v\\v\\v\\x04\\x04:H\\x15\\x02\\v\\x06\\x0f\\a\\x06\\x02\\t'\\x06\\r\\x03\\b\\b\\x0e'\\\"\\x06\\a\\x02\\x04\\x02\\v\\x06PHHP\\x06\\v\\x02\\x04\\x02\\a\\x06\\\"'\\x0e\\b\\b\\b\\x0e'\\t\\x02\\x06\\a\\x0f\\x06\\f\\x01\\x15H:\\v\\v\\f\\v\\v\\x19\\t\\x06\\x10\\a\\t\\x19\\v\\v\\v\\v\\v:H\\x15\\x02\\v\\x06\\x0f\\a\\x06\\x02\\t(\\x05\\r\\x03\\b\\b\\x0e'\\\"\\x06\\a\\x02\\x04\\x02\\v\\x06PHHP\\x06\\v\\x02\\x04\\x02\\a\\x06\\\"]\\x04\\f\\x06\\x0e\\x0e\\b\\x17\\\"\\x05\\b\\x06\\x01\\x04\\x02\\a\\x06Q*T;\\f\\v\\v\\f\\f\\x19.\\a\\t\\t\\a.\\x1a\\v\\v\\f\\x04\\x0e\\x04<T*Q\\x06\\a\\x02\\x04\\x02\\v\\x06#\\x17\\x03\\x03\\x06\\x0e\\x0e\\b\\x17\\t\\x02\\v\\a\\x0f\\a\\x06\\x01\\x16**\\x16\\x01\\x06\\a\\x0f\\a\\v\\x02\\t\\x17\\b\\x0e\\x0e\\x0e\\b\\x17\\\"\\a\\v\\x02\\x04\\x02\\a\\x06Q*T;\\f\\v\\v\\f\\f\\x19.\\a\\t\\t\\a.\\x1a\\v\\v\\f\\v\\v<T*Q\\x06\\a\\x02\\x04\\x02\\v\\x06#\\x17\\x03\\x03\\x06\\x0e\\x0e\\b\\x17\\t\\x02\\v\\a\\x0f\\a\\x06\\x01\\x16**\\x16\\x01\\x06\\a\\x0f\\a\\v\\x02\\t\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x000\\x008\\x00<\\x00H\\x00\\x00%\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11\\x14\\x06#!\\\"&5\\x11#\\\"&=\\x0146;\\x017>\\x01;\\x012\\x1e\\x01\\x1f\\x01'\\a3'&+\\x01\\\"\\x13\\x11!\\x117\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x01\\f\\f\\f\\x18\\f\\f\\x8c\\a\\t\\t\\a\\x10\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x10\\a\\t\\t\\aR\\\"\\x06\\x18\\fd\\b\\x10\\x0e\\x04\\\"\\xb2\\x12\\x8c\\x12\\x02\\x03^\\x03\\xc2\\xfe\\xe0L\\f\\f\\x18\\f\\f \\f\\xd8\\f\\f\\xd8\\f\\x01P\\t\\a\\x10\\a\\t\\xfe\\xb0\\x14\\x1c\\x1c\\x14\\x01P\\t\\a\\x10\\a\\t9\\t\\x0e\\x06\\v\\x069\\x1d\\x1d\\x1d\\x03\\xfe`\\x01P\\xfe\\xb00\\f\\xd8\\f\\f\\xd8\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x18\\x00$\\x004\\x00<\\x00G\\x00\\x00%\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15#\\\"\\x1d\\x01\\x143!2=\\x01\\x13!\\\"\\x1d\\x01\\x143!2=\\x01452\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\x14\\x06\\\"&462\\a76\\x1f\\x0176\\x1f\\x01\\x15!\\x01\\xe0\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x10\\n\\x06\\x06\\x01t\\x06Z\\xfe\\x8c\\x06\\x06\\x01t\\x06\\x14\\x1c\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14x\\x17\\\"\\x17\\x17\\\"1(\\b\\b(h\\b\\bH\\xfe\\xe0 \\x10\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c0\\x06\\xf4\\x06\\x06\\n\\x01P\\x06\\xf4\\x06\\x06\\xf4\\x060\\x1c\\x14\\xff\\x00\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c_\\\"\\x17\\x17\\\"\\x17\\x88(\\b\\b(h\\b\\bHP\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x001\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15&\\\"\\x06\\x14\\x16264\\x13\\x114+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"\\x15\\x11\\x143!2\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&6\\x14\\x0e\\x0e\\x14\\x0ex\\x06*\\f\\xa8\\f*\\x06\\x06\\x01\\x14\\x06\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x18\\x0e\\x14\\x0e\\x0e\\x14\\xfel\\x01T\\x06$\\f\\f$\\x06\\xfe\\xac\\x06\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1474;\\x012\\x1d\\x0132\\x16\\x0f\\x01\\x06/\\x01&6;\\x01\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\xa8\\f(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xc7\\f\\ft\\x0f\\x05d\\b\\bd\\x05\\x0f\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x006462\\x16\\x14\\x06\\\"$4&\\\"\\x06\\x14\\x1627\\x15\\x14+\\x01\\x15\\x14\\x06/\\x01&?\\x016\\x16\\x1d\\x0132\\b\\x91Α\\x91\\xce\\x01/u\\xa6uu\\xa6-\\ft\\x0f\\x05d\\b\\bd\\x05\\x0ft\\fYΑ\\x91Α\\xa5\\xa6uu\\xa6u\\xdc(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x00\\x00\\x14\\x06\\\"&462\\x04\\x14\\x16264&\\\"\\a54;\\x01546\\x1f\\x01\\x16\\x0f\\x01\\x06&=\\x01#\\\"\\x01\\xf8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6-\\ft\\x0f\\x05d\\b\\bd\\x05\\x0ft\\f\\x01'Α\\x91Α\\xa5\\xa6uu\\xa6u\\xdc(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x00\\x04\\\"&462\\x16\\x14\\x02\\\"\\x06\\x14\\x16264\\a#\\\"=\\x01#\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x15\\x14\\x01gΑ\\x91Α\\xa5\\xa6uu\\xa6u\\xb4(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC8\\x91Α\\x91\\xce\\x01/u\\xa6uu\\xa6\\xd3\\ft\\x0f\\x05d\\b\\bd\\x05\\x0ft\\f\\x00\\x00\\a\\xff\\xfd\\xff\\xbf\\x02C\\x01\\xc0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1e\\x00!\\x00$\\x00\\x00\\x012\\x1f\\x01\\x16\\a\\x01\\x06\\\"'\\x01&?\\x0163\\x05#\\x173%\\a3'#\\a37\\a\\x17'3\\x177\\a7#\\x01\\xd0\\x06\\x04d\\x05\\x06\\xfe\\xec\\x03\\f\\x03\\xfe\\xec\\x06\\x05d\\x03\\a\\x01M94D\\xfe\\xf74\\xc24\\xca?D4dxD3aa\\x11x4\\x01\\xc0\\x05\\x94\\a\\a\\xfe\\xab\\x04\\x04\\x01U\\a\\a\\x94\\x050``````\\x90\\xa0\\xa0\\xf3\\xf3\\xa0\\xa0\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\a\\x00%\\x005\\x00E\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x1754+\\x0154+\\x01\\\"\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\x16327\\x15#\\\"\\x1d\\x01\\x14;\\x012\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x015\\\"&5!\\x14\\x06#\\x152\\x16\\x15!46\\x01\\x18P88P8\\x88\\b\\x10\\b\\x0e\\a\\x06\\x0f\\x04\\x02\\b\\x03\\x04\\x03\\x02\\x10\\b\\b@\\b\\xf8\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x020\\x1b%\\xfe`%\\x1b\\x1b%\\x01\\xa0%\\x010B\\\\BB\\\\f\\x10\\bX\\b\\x04\\n\\x03\\x04\\x02\\x02\\x0e\\x03\\x017\\b\\x10\\b\\x01\\x00\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\xfe\\xf0\\xa0%\\x1b\\x1b%\\xa0%\\x1b\\x1b%\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x114#!\\\"\\x15\\x11\\x143!2'\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x06\\xfel\\x06\\x06\\x01\\x94\\x06l==\\t\\t\\x16\\b\\t==\\t\\b\\x16\\t\\t==\\t\\t\\x16\\b\\t==\\t\\b\\x16\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfev\\x01T\\x06\\x06\\xfe\\xac\\x06\\xed==\\t\\b\\x16\\t\\t==\\t\\t\\x16\\b\\t==\\t\\b\\x16\\t\\t==\\t\\t\\x16\\b\\x00\\x00\\x05\\xff\\xfb\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x17\\x00+\\x00>\\x00\\x0062\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06#\\\"'\\x06#\\\"&7>\\x027&54\\x05264&\\\"\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\a6?\\x01\\x17\\x16\\x83\\x1a\\x13\\x13\\x1a\\x13\\x83\\x1a\\x13\\x13\\x1a\\x13\\x83\\x1a\\x13\\x13\\x1a\\x13\\xbaԖ\\x96j/.AJ\\x10\\f\\n\\x02\\x0f\\x17\\a5\\x01\\x00Vzz\\xacz(\\x14\\n\\b\\f\\x1e\\x1b\\x14\\x17&\\xf0\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xc3z\\xacz\\x0e.\\x1d\\v\\x02\\x11%\\x128FV\\xf6^\\x84^^B3*\\x16\\x1c\\x14\\x15\\n\\x14\\r\\a\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00'\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$\\x1e\\x01\\a\\x06\\\"'&>\\x01\\x16\\x17\\x16276&\\\"&462\\x16\\x1472\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x02\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x016\\x0f\\x02\\x06/\\x94/\\x06\\x02\\x0f\\x14\\x06!f!\\x06\\x9d\\x1a\\x13\\x13\\x1a\\x13\\x80\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x0f\\x01\\x02\\x13\\x1a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6$\\r\\x14\\a99\\a\\x14\\r\\x02\\b''\\bA\\x13\\x1a\\x13\\x13\\x1a)\\x18\\x12\\b\\b\\x05\\t\\t\\t\\t\\x05\\b\\b\\f\\x14\\n\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00 \\x003\\x00H\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x17\\x16\\x06\\a\\x06&'&\\\"\\a\\x0e\\x01.\\x01?\\x01\\x14\\x06\\\"&547'.\\x01>\\x01\\x1f\\x01\\x1e\\x01\\a\\x066\\x16\\x06\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&5\\\"'&>\\x02?\\x016\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x93j\\\"\\x06\\x02\\a\\b\\x14\\x06\\x13>\\x13\\x06\\x14\\x0f\\x02\\x06'\\x13\\x1a\\x13\\x05\\x1c\\t\\n\\x06\\x11\\nP\\t\\n\\x03\\x05\\xb2\\x06\\n\\t\\x1c\\x05\\x13\\x1a\\x13\\x12\\x05\\x02\\x02\\x04\\a\\x05P\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x1b)\\a\\x14\\x06\\a\\x02\\b\\x16\\x16\\b\\x02\\r\\x14\\aq\\r\\x13\\x13\\r\\b\\b\\t\\x03\\x11\\x13\\n\\x03\\x18\\x03\\x11\\n\\x11@\\x13\\x11\\x03\\b\\t\\b\\r\\x13\\x13\\r\\x11\\x05\\t\\b\\a\\x01\\x18\\x03\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00+\\x00G\\x00O\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\x06\\\"/\\x01\\a\\x06\\\"&4?\\x01'&462\\x1f\\x01762\\x16\\x14\\x0f\\x01\\x17\\x166\\x16\\x14\\x0f\\x01\\x17\\x16\\x14\\x06\\\"/\\x01\\a\\x06\\\"&4?\\x01'&462\\x1f\\x0176\\x062\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\xac\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\x94\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x824&&4&\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6k\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06L\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\x84&4&&4\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4&\\x14\\x06\\\"&462\\x06264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x172\\x16\\x14\\x06+\\x01\\\"&463\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\aB//B/<(\\x1c\\x1c(\\x1c&\\x14\\x0e\\x0e\\x14\\x0eX/B//B5(\\x1c\\x1c(\\x1c&\\x14\\x0e\\x0e\\x14\\x0e\\xb8\\n\\x0e\\x0e\\n\\x80\\n\\x0e\\x0e\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xc3/B//BQ\\x1c(\\x1c\\x1c(,\\x0e\\x14\\x0e\\x0e\\x14\\x17B//B/\\x80\\x1c(\\x1c\\x1c(,\\x0e\\x14\\x0e\\x0e\\x14\\x82\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00-\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\x14\\x06\\\"&46:\\x02\\x16\\x14\\x06\\\"&4\\x062\\x16\\x17\\x16\\x06'&\\\"\\a\\x06&76\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x98\\x13\\x1a\\x13\\x13\\x1a\\x86\\x1a\\x13\\x13\\x1a\\x13N<=\\x05\\x01\\r\\t141\\t\\r\\x01\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x90\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a]\\\"\\x1b\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t\\x1b\\x00\\x00\\x00\\r\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00/\\x006\\x00=\\x00A\\x00E\\x00I\\x00M\\x00T\\x00[\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x14\\x16\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x175#\\x15\\x14\\x16375#\\\"\\x06\\x1d\\x01\\x175#\\x1575#\\x15\\x175#\\x1575#\\x15\\x175#\\x15326=\\x014&+\\x01\\x15\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13\\x10\\x14\\x1c\\x1c\\x14\\xc0\\x14\\x1c\\x1c\\x14\\x18(\\t\\a\\x18\\x18\\a\\th000p000h(\\x18\\a\\t\\t\\a\\x18\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a#\\x1c\\x14 \\x14\\x1c\\x1c\\x14 \\x14\\x1c`\\x18\\b\\a\\t(\\x18\\t\\a\\b(\\x18\\x18(\\x18\\x18(\\x18\\x18(\\x18\\x18\\x18\\b\\x18\\t\\x1f\\b\\a\\t\\x18\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00'\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01#\\\".\\x01'&6\\x17\\x162&\\\"&462\\x16\\x14\\x16\\\"&462\\x16\\x14\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05M)\\x1a6(\\x03\\x02\\f\\a)\\x82\\x84\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\".\\x14&\\x16\\b\\n\\x03\\rN\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\r\\x00\\x1b\\x00#\\x00+\\x009\\x00\\x007\\x06\\\"'&'6762\\x17\\x16\\x17\\x06\\x17\\x06\\\"'&'6762\\x17\\x16\\x17\\x06&2\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162\\xc8\\x05\\x15\\x06\\x0f\\x01\\x01\\x0f\\x05\\x15\\x06\\x0f\\x01\\x01q\\x05\\x15\\x06\\x0f\\x01\\x01\\x0f\\x05\\x15\\x06\\x0f\\x01\\x01\\xc6Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82\\xc8\\t\\t\\x16\\\"\\\"\\x16\\t\\t\\x16\\\"\\\"\\x16\\t\\t\\x16\\\"\\\"\\x16\\t\\t\\x16\\\"\\\"ڑΑ\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\r\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x004\\x00E\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01#\\\".\\x01'&6\\x17\\x162'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x067&7>\\x012\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05M)\\x1a6(\\x03\\x02\\f\\a)\\x82\\xc3\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\r&\\r\\t\\x03\\x9a\\a\\x01\\x02#&#\\x02\\x01\\r\\x03\\t\\r&\\r\\t\\x03\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\".\\x14&\\x16\\b\\n\\x03\\rV\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e))\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x06\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xc7\\x00\\n\\x00\\x1a\\x00+\\x00E\\x00Z\\x00\\x00\\x00\\\"&5476\\x17\\x16\\x15\\x14\\x03\\\".\\x01'&6\\x17\\x16276\\x16\\a\\x0e\\x016\\x06/\\x01&\\\"\\x0f\\x01\\x06'&7>\\x012\\x16\\x177\\x16\\x15\\x14\\x06\\\"&4632\\x17\\x06\\a&#\\\"\\x06\\x14\\x162654'2$\\\"\\x0f\\x01\\x06'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01\\x01\\xce,\\x1f.\\a\\a.\\xf5\\x1a6'\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x05M`\\r\\x03\\t\\r&\\r\\t\\x03\\x06\\a\\x01\\x02#&#\\x02d\\f\\x91Α\\x91gC:\\x0e\\x032:Suu\\xa6u\\v\\x1a\\xfe\\xec&\\r\\t\\x03\\x06\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\x01 \\\"\\x19\\x1cE\\v\\vE\\x1c\\x19\\xfe\\xee\\x14%\\x17\\b\\n\\x03\\r\\r\\x03\\v\\a\\\".\\xaa\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e))\\x1e,%(g\\x91\\x91Α\\\"\\x1c\\x12 u\\xa6uuS!\\x1f\\x03\\x16\\x11\\x06\\x02\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\r\\x00\\x1f\\x004\\x00<\\x00D\\x00\\x00%6\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162/\\x01.\\x017>\\x01\\x1f\\x017>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x067\\x16\\x06\\x0f\\x01\\x06/\\x01&676\\x1e\\x01\\x1f\\x0176\\x1e\\x02&2\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x01b\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82pF\\x10\\x0e\\x05\\x05\\x1a\\x0e\\a\\x02\\x04\\x18\\x0e\\x10\\x11\\x04\\x14\\x02\\xb5\\x05\\x0e\\x10F\\b\\x02\\x14\\x04\\x11\\x10\\t\\x12\\f\\x03\\x02\\a\\x06\\x0e\\f\\n\\xf2Α\\x91Α\\xa5\\xa6uu\\xa6u\\x8f\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\r>\\x12\\x04\\x1d\\x0f\\r\\f\\x03\\x02\\a\\x0e\\x10\\x02\\x03\\x1a\\x10F\\bD\\x0f\\x1d\\x04\\x12\\x02\\bF\\x10\\x1a\\x03\\x01\\x06\\x0e\\t\\a\\x02\\x01\\x01\\x06\\n\\xb0\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00,\\x00:\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01#\\\".\\x01'&6\\x17\\x162.\\x01?\\x01'&6\\x1f\\x01\\x16\\x14\\x0f\\x013'&4?\\x016\\x17\\x16\\x0f\\x01\\x17\\x16\\x06\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05M)\\x1a6(\\x03\\x02\\f\\a)\\x82\\xbc\\r\\a!!\\a\\x0e\\bP\\x06\\x06P\\xe4P\\x06\\x06P\\t\\x06\\a\\a!!\\a\\r\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\".\\x14&\\x16\\b\\n\\x03\\r/\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x0300\\x03\\x0e\\x030\\x05\\a\\b\\b((\\b\\x0f\\x00\\a\\xff\\xfe\\xff\\xbf\\x02\\x02\\x01\\xc1\\x00\\v\\x00\\x1d\\x00/\\x00;\\x00J\\x00Y\\x00h\\x00\\x0076\\x16\\a\\x06\\a\\x06\\\"&4767\\x06\\a&67632\\x17\\x06\\a&#\\\"\\a\\x0e\\x01%67\\x16\\x06\\a\\x06#\\\"'67\\x16327>\\x01'\\x06&76762\\x16\\x14\\a\\x06\\x04\\x16\\x0f\\x01\\x06+\\x01&/\\x02.\\x01?\\x02\\\"'&?\\x0163\\x16\\x1f\\x02\\x1e\\x01\\x0f\\x0167>\\x01\\x17\\x16\\x0e\\x02'&676u\\x05\\a\\x01\\f\\x13\\x10/\\\"\\x10\\x13)\\x1b\\x14\\x1f\\x1c7Hg<5\\a\\x05/6S:.\\x14\\x01{\\x1d\\x14$\\x189Ig30\\a\\x06)-S:1\\x10C\\x05\\a\\x01\\f\\x13\\x10/\\\"\\x10\\x13\\xfe\\xee\\n\\x02\\x17\\x02\\t\\x01\\n\\x01\\x054\\n\\x02\\nZ4\\t\\x03\\x05\\x02\\x17\\x02\\n\\n\\x01\\x054\\n\\x02\\n&.\\x13\\x04\\x0f\\x04\\x13\\x14:T\\x1f\\x06\\x01\\a&@\\x01\\a\\x05R\\x13\\x10\\\"/\\x10\\x136\\x06\\aD\\x986I\\x1b\\x15\\x1c\\x1c;-\\u007f\\x84\\x06\\x06E\\xa29I\\x15\\x13\\x1c\\x14;0\\x89T\\x01\\a\\x05R\\x13\\x10\\\"/\\x10\\x13s\\n\\aZ\\t\\x01\\n4\\x05\\x01\\x14\\x02\\x17\\x16\\x03\\x05\\aZ\\t\\x01\\n4\\x05\\x01\\x14\\x02p/%\\a\\x01\\x06\\x1fT:\\x15\\x14\\x04\\x0f\\x04\\x14\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x006\\x00P\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162'7'&6?\\x0262\\x1f\\x02\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06&%\\x1e\\x01\\x0f\\x01\\x17\\x16\\x0e\\x01/\\x01\\a\\x06&?\\x01'&6?\\x0262\\x1f\\x01\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82\\xbb\\x06\\x1a\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0f#\\x05\\x03\\x03\\x1a\\x06\\x01\\b\\x04\\x1f\\x1f\\x04\\b\\x01\\x04\\x05\\x03\\x03\\x1a\\x06\\x01\\x03\\x06\\x03\\x1f\\x1f\\x04\\b\\x01\\x06\\x1a\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0f\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\rG#\\x18\\x04\\t\\x01\\x05\\x1f\\x05\\x05\\x1f\\x05\\x01\\t\\x04\\x18#\\x05\\x05\\x02\\x10\\x10\\x02\\x05N\\x01\\t\\x04\\x18#\\x03\\x05\\x01\\x01\\x10\\x10\\x02\\x05\\x05#\\x18\\x04\\t\\x01\\x05\\x1f\\x05\\x05\\x1f\\x00\\x00\\x00\\a\\xff\\xff\\xff\\xc8\\x02\\x81\\x01\\xb8\\x00\\v\\x00\\x17\\x00%\\x005\\x00C\\x00T\\x00i\\x00\\x0076\\x16\\a\\x06\\a\\x06\\\"&476\\x05\\x16\\x14\\x06\\\"'&'&6\\x17\\x16\\a\\x16\\x17\\x0e\\x01\\\"&'67\\x1e\\x0126%&\\a>\\x022\\x1e\\x01\\x17&\\a.\\x01\\\"\\x06\\x16\\\"&'&6\\x17\\x16276\\x16\\a\\x066\\x06/\\x01&\\\"\\x0f\\x01\\x06'&7>\\x012\\x16\\x17&\\\"\\x0f\\x01\\x06'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01u\\x05\\a\\x01\\f\\x13\\x10/\\\"\\x10\\x13\\x02M\\x10\\\"/\\x10\\x13\\f\\x01\\a\\x05Rl\\v\\x12#l~l#\\x12\\v\\x19_r_\\xfe\\xa3\\v'\\x06Em~mE\\x06&\\f\\vp\\x94p\\xe3RM\\x05\\x02\\f\\a)\\x82)\\a\\f\\x02\\x05\\x13\\r\\x03\\t\\r&\\r\\t\\x03\\x06\\a\\x01\\x02#&#\\x02\\xc5&\\r\\t\\x03\\x06\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\xc0\\x01\\a\\x05R\\x13\\x10\\\"/\\x10\\x13\\x13\\x10/\\\"\\x10\\x13R\\x05\\a\\x01\\fP \\x0f2;;2\\x0f 1;;\\xad\\x01\\b>f;;f?\\t\\x01H``\\xf8.\\\"\\b\\n\\x03\\r\\r\\x03\\v\\a\\\"|\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e))\\x1e\\\"\\x16\\x11\\x06\\x02\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00;\\x00C\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x055'&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x0f\\x01\\x15\\x14\\x1632>\\x01\\x17>\\x0154&\\\"\\x06\\x15\\x14\\x16\\x17&=\\x01&'&6\\x17\\x16276\\x16\\a\\x06\\a\\x15\\x14&2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\x018\\x12\\v\\x15\\x02\\x03\\x02\\x0e\\x02\\x02\\x03\\x15\\v\\x12%\\x1a\\x12\\x1e\\x11\\x1c1;u\\xa6u;1\\x04\\x17\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x04\\x17\\xbd\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xff,\\t\\x05\\v\\v\\f\\a\\a\\f\\v\\v\\x05\\t+\\x1a'\\x11\\x1d\\a\\x19_9SuuS9_\\x19\\x0e\\v,\\x14\\x18\\b\\n\\x03\\r\\r\\x03\\v\\a\\x18\\x14,\\v\\xf3\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00;\\x00H\\x00U\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x055'&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x0f\\x01\\x15\\x14\\x1632>\\x01\\x17>\\x0154&\\\"\\x06\\x15\\x14\\x16\\x17&=\\x01&'&6\\x17\\x16276\\x16\\a\\x06\\a\\x15\\x14\\x12\\x16\\x0f\\x01\\x17\\x16\\x06/\\x01&4?\\x01\\a\\x16\\x14\\x0f\\x01\\x06&?\\x01'&6\\x17\\x91Α\\x91Α\\x018\\x12\\v\\x15\\x02\\x03\\x02\\x0e\\x02\\x02\\x03\\x15\\v\\x12%\\x1a\\x12\\x1e\\x11\\x1c1;u\\xa6u;1\\x04\\x17\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x04\\x17\\x1a\\x0e\\a!!\\a\\r\\tP\\x06\\x06P\\x94\\x06\\x06P\\t\\r\\a!!\\a\\x0e\\b\\x01\\xb8\\x91Α\\x91\\xce\\xff,\\t\\x05\\v\\v\\f\\a\\a\\f\\v\\v\\x05\\t+\\x1a'\\x11\\x1d\\a\\x19_9SuuS9_\\x19\\x0e\\v,\\x14\\x18\\b\\n\\x03\\r\\r\\x03\\v\\a\\x18\\x14,\\v\\x01\\x12\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x0300\\x03\\x0e\\x030\\x05\\x0f\\b((\\b\\x0f\\x05\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x11\\x00\\x19\\x00!\\x00)\\x001\\x00G\\x00e\\x00\\x00\\x132\\x1e\\x01\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x022\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06\\\"&4\\x055'&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x0f\\x01\\x15\\x14\\x1632>\\x01\\x17>\\x0154&\\\"\\x06\\x15\\x14\\x16\\x17&=\\x01&'&6\\x17\\x16276\\x16\\a\\x06\\a\\x15\\x14\\x98\\r\\x1a\\x13\\x02\\x01\\x0f\\x06\\n\\v&\\v\\n\\x06\\x0f\\x01\\x03%\\xa3B//B/<(\\x1c\\x1c(\\x1c&\\x14\\x0e\\x0e\\x14\\x0e\\x9fΑ\\x91Α\\x018\\x12\\v\\x15\\x02\\x03\\x02\\x0e\\x02\\x02\\x03\\x15\\v\\x12%\\x1a\\x12\\x1e\\x11\\x1c1;u\\xa6u;1\\x04\\x17\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x04\\x17\\x01\\f\\n\\x14\\f\\b\\b\\x05\\t\\t\\t\\t\\x06\\t\\b\\x12\\x184/B//BQ\\x1c(\\x1c\\x1c(,\\x0e\\x14\\x0e\\x0e\\x14\\xbe\\x91Α\\x91\\xce\\xff,\\t\\x05\\v\\v\\f\\a\\a\\f\\v\\v\\x05\\t+\\x1a'\\x11\\x1d\\a\\x19_9SuuS9_\\x19\\x0e\\v,\\x14\\x18\\b\\n\\x03\\r\\r\\x03\\v\\a\\x18\\x14,\\v\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x0f\\x00\\x17\\x00%\\x00-\\x005\\x00\\x00\\x002\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\x06\\\"&462\\x16\\x14\\x176\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x014(%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\n\\x06\\x0f\\x01\\x03Z\\x1a\\x13\\x13\\x1a\\x13\\x9a\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82\\xa8Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\f\\x18\\x12\\b\\t\\x06\\t\\t\\t\\t\\x06\\b\\t\\x12$\\x13\\x1a\\x13\\x13\\x1aT\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\r\\x016\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00)\\x001\\x009\\x00A\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\a\\x16\\x15\\x14\\x06\\a#\\\"'&?\\x0164/\\x01&4?\\x0164/\\x01&76\\x17\\x1e\\x03\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xa8##)\\x1e\\x01\\x06\\x02\\x01\\x06\\x11\\x15\\x15\\x11\\x04\\x04\\x11\\x15\\x15\\x11\\x06\\x01\\x02\\x06\\x10\\x1b\\x12\\v\\x9fΑ\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\v\\x1a\\x13\\x13\\x1a\\x13\\x01\\x10\\x13\\x1a\\x13\\x13\\x1aq\\x16\\x0e\\x0e\\x16\\x10\\x1b\\x01\\x06\\x06\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\a\\a\\x01\\x01\\t\\f\\x0f\\x01%\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xa3\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x13\\x00\\x1b\\x00#\\x00E\\x00U\\x00\\x00\\x132\\x16\\x17\\x14\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x04&2\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x14\\a\\x16\\x15\\x14\\x06\\a#\\\"'&?\\x0164/\\x01&4?\\x0164/\\x01&76\\x17\\x1e\\x0362\\x16\\x17\\x14\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\xa8\\x13#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\x10Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x00##)\\x1e\\x01\\x06\\x02\\x01\\x06\\x11\\x15\\x15\\x11\\x04\\x04\\x11\\x15\\x15\\x11\\x06\\x01\\x02\\x06\\x10\\x1b\\x12\\v\\x05&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\x01()\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a\\x90\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x1f\\x16\\x0e\\x0e\\x16\\x10\\x1b\\x01\\x06\\x06\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\a\\a\\x01\\x01\\t\\f\\x0f\\x95)\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xfc\\x01\\xb8\\x00!\\x004\\x00<\\x00O\\x00l\\x00\\x00%\\x14\\a\\x16\\x15\\x14\\x06\\a#\\\"'&?\\x0164/\\x01&4?\\x0164/\\x01&763\\x1e\\x037&\\\"\\x0f\\x01\\x06&7>\\x0332\\x16\\x17\\x16\\x06'&462\\x16\\x14\\x06\\\"\\x05\\x16\\x06\\x0f\\x01\\x06/\\x01&>\\x0176\\x16\\x1f\\x0176\\x16\\a\\x16\\x17\\x06#\\\"&4632\\x16\\x15\\x14\\a&#&'654&\\\"\\x06\\x14\\x1632\\x010##)\\x1e\\x01\\x06\\x02\\x01\\x06\\x11\\x15\\x15\\x11\\x04\\x04\\x11\\x15\\x15\\x11\\x06\\x01\\x02\\x06\\x10\\x1b\\x12\\vF\\v&\\v\\n\\x06\\x0f\\x01\\x02\\f\\x10\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\xf8\\x13\\x1a\\x13\\x13\\x1a\\x01Z\\a\\x11\\x12S\\n\\x03\\x17\\x03\\a\\x12\\f\\x11\\x1c\\x04\\x03\\b\\x10\\x1f\\xa1\\v\\x02/4g\\x91\\x91gg\\x91\\x11\\v\\b\\a\\x0f\\nu\\xa6uuS-\\x8c\\x16\\x0f\\x0e\\x16\\x0f\\x1b\\x02\\x06\\a\\x02\\b\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x19\\t\\a\\x03\\x06\\a\\x01\\t\\f\\x0fL\\n\\n\\t\\x05\\b\\b\\t\\x10\\v\\x06\\x18\\x12\\b\\b\\x05\\f\\x1b\\x13\\x13\\x1b\\x12\\xa2\\x12!\\x05\\x16\\x02\\tS\\f\\x17\\x10\\x02\\x02\\x13\\x10\\t\\x02\\x05\\x0f1(\\a\\x15\\x91Α\\x91g.,\\x03\\r\\v\\x1f Suu\\xa6u\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00-\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x166\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\xb0\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xa2\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\xe8\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1aS\\t\\x06-<<-\\x06\\t\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00=\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x16\\x122\\x16\\x17\\x14\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\a\\x06&7>\\x012\\x16\\x17\\x14\\x06/\\x01&\\\"\\a\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\x90&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\x93\\x03\\r\\x01\\x02#&#\\x02\\f\\x03\\t\\r&\\r\\xe2\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\x010)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e#\\x05\\x03\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16M\\t\\x06-<<-\\x06\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1c\\x00)\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x16\\x13\\x17\\x16\\x06/\\x01&4?\\x016\\x16\\x0f\\x01\\x06&?\\x01'&6\\x1f\\x01\\x16\\x14\\a\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\xb3!\\a\\x0e\\bP\\x06\\x06P\\b\\x0e\\a\\xf3\\t\\r\\a!!\\a\\x0e\\bP\\x06\\x06\\x94\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\x01\\x04(\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\bb\\x05\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x03R\\t\\x06-<<-\\x06\\t\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00!\\x00)\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x16\\x122\\x1e\\x01\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x01\\x06\\\"&462\\x16\\x14\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\x96\\x1a\\x1a\\x13\\x02\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x0f\\x01\\x02\\x13l\\x1a\\x13\\x13\\x1a\\x13\\xa2\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\x01$\\n\\x14\\f\\b\\b\\x05\\t\\t\\t\\t\\x05\\b\\b\\f\\x142\\x13\\x1a\\x13\\x13\\x1aS\\t\\x06-<<-\\x06\\t\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xa5\\xa6uu\\xa6uk\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xa3\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00)\\x001\\x00C\\x00O\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x162654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x15\\x14&\\x14\\x06\\\"&462\\a\\x14\\x162654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x172\\x16\\x14\\x06+\\x01\\\"&463\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x02<**<*7\\\"\\x17\\x12\\x02\\x0e\\x14\\x0e\\x02\\x12@*<**<F\\x17\\\"\\x17\\x12\\x02\\x0e\\x14\\x0e\\x02\\x12\\xc0\\n\\x0e\\x0e\\n\\x80\\n\\x0e\\x0e\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xbb*<**<F\\x17\\x11\\x14\\f\\x04\\x04\\n\\x0e\\x0e\\n\\x04\\x04\\f\\x14\\x11/<**<*H\\x11\\x17\\x17\\x11\\x14\\f\\x04\\x04\\n\\x0e\\x0e\\n\\x04\\x04\\f\\x94\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00!\\x003\\x00C\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05654&\\\"\\x06\\x15\\x14\\x175462\\x16\\x1d\\x01\\x16275462\\x16\\x15&\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x0232\\x16\\x1762\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\x062\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\x01\\x888u\\xa6u8\\x0e\\x14\\x0e-f-\\x0e\\x14\\x0e\\xb3\\x0f\\x06\\t\\f&\\v\\n\\x06\\x0f\\x01\\x02\\x13\\x1a\\r\\x14%\\x03p(%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\n\\x06\\x0f\\x01\\x03>.!!.!\\x01\\xb8\\x91Α\\x91\\xce\\xf1:PSuuSP:r\\n\\x0e\\x0e\\n\\x97\\x19\\x19\\x97\\n\\x0e\\x0e\\n2\\t\\x06\\t\\t\\t\\t\\x06\\t\\b\\f\\x14\\n\\x18\\x12*\\x18\\x12\\b\\b\\x05\\t\\t\\t\\t\\x05\\b\\b\\x12D&4&&4\\x00\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1e\\x00&\\x00.\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1472\\x17\\x16\\x06\\a\\x06&'&#\\\"&46&\\\"&462\\x16\\x1462\\x16\\x14\\x06\\\"&4\\a6\\x17\\x16\\x15\\x14\\x06\\\"&54\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\xd0<&\\a\\x02\\b\\b\\x13\\x06\\x18&\\n\\x0e\\x0eA\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x86\\x06\\x06$\\x19\\\"\\x19\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6#.\\b\\x14\\x06\\x06\\x02\\a\\x1d\\x0e\\x14\\x0e@\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1aP\\b\\b1\\x13\\x11\\x18\\x18\\x11\\x13\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x004\\x00E\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%>\\x01\\x1e\\x01\\a\\x06\\\"'&>\\x01\\x16\\x17\\x162'\\a\\x06'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01&\\\"62\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06'&76\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x1c\\x06\\x14\\x0f\\x02\\x06/\\x94/\\x06\\x02\\x0f\\x14\\x06!f\\xa3\\t\\x03\\x06\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\r&\\xa0&#\\x02\\x01\\r\\x03\\t\\r&\\r\\t\\x03\\x06\\a\\x01\\x02\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x1a\\b\\x02\\r\\x14\\a99\\a\\x14\\r\\x02\\b'\\x8d\\x11\\x06\\x02\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x16%)\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&46\\x14\\x06\\\"&46:\\x02\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\xae4&&4&\\x10\\x13\\x1a\\x13\\x13\\x1a\\x86\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6;&4&&4{\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1c\\x00)\\x008\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$\\x16\\x0f\\x01\\x17\\x16\\x06/\\x01&4?\\x01\\x06\\x14\\x0f\\x01\\x06&?\\x01'&6\\x1f\\x01\\x062\\x16\\x17\\x16\\x06'&\\\"\\a\\x06.\\x0176\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01C\\r\\a!!\\a\\r\\tP\\x06\\x06P\\x8e\\x06P\\t\\r\\a!!\\a\\x0e\\bP\\x02HC\\x05\\x01\\n\\a#r#\\x04\\b\\x05\\x01\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xc2\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x0303\\x0e\\x030\\x05\\x0f\\b((\\b\\x0f\\x050J6'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x00\\x00\\x1c\\x01V\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x006\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x1b\\x00\\x89\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\a\\x00\\xb5\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\\"\\x01\\x03\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x1b\\x01^\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x00&\\x01\\xc8\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x18\\x02!\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\n\\x00,\\x02\\x94\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\v\\x00\\x17\\x02\\xf1\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x13\\x031\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\a\\x03U\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x1b\\x03\\x95\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x13\\x03\\xd9\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\a\\x03\\xfd\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x00\\x004\\x00\\x00\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x01\\x006\\x00Q\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x02\\x00\\x0e\\x00\\xa5\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x03\\x00D\\x00\\xbd\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x04\\x006\\x01&\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x05\\x00L\\x01z\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x06\\x000\\x01\\xef\\x00\\x03\\x00\\x01\\x04\\t\\x00\\n\\x00X\\x02:\\x00\\x03\\x00\\x01\\x04\\t\\x00\\v\\x00.\\x02\\xc1\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x10\\x00&\\x03\\t\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x11\\x00\\x0e\\x03E\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x12\\x006\\x03]\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x15\\x00&\\x03\\xb1\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x16\\x00\\x0e\\x03\\xed\\x00C\\x00o\\x00p\\x00y\\x00r\\x00i\\x00g\\x00h\\x00t\\x00 \\x00(\\x00c\\x00)\\x00 \\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00\\x00Copyright (c) Font Awesome\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Free Regular\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00-\\x005\\x00.\\x001\\x002\\x00.\\x000\\x00\\x00Font Awesome 5 Free Regular-5.12.0\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Free Regular\\x00\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00330.752 (Font Awesome version: 5.12.0)\\x00\\x00F\\x00o\\x00n\\x00t\\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x005\\x00F\\x00r\\x00e\\x00e\\x00-\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00FontAwesome5Free-Regular\\x00\\x00T\\x00h\\x00e\\x00 \\x00w\\x00e\\x00b\\x00'\\x00s\\x00 \\x00m\\x00o\\x00s\\x00t\\x00 \\x00p\\x00o\\x00p\\x00u\\x00l\\x00a\\x00r\\x00 \\x00i\\x00c\\x00o\\x00n\\x00 \\x00s\\x00e\\x00t\\x00 \\x00a\\x00n\\x00d\\x00 \\x00t\\x00o\\x00o\\x00l\\x00k\\x00i\\x00t\\x00.\\x00\\x00The web's most popular icon set and toolkit.\\x00\\x00h\\x00t\\x00t\\x00p\\x00s\\x00:\\x00/\\x00/\\x00f\\x00o\\x00n\\x00t\\x00a\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00.\\x00c\\x00o\\x00m\\x00\\x00https://fontawesome.com\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Free Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xdb\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x9a\\x00\\x00\\x00\\x01\\x00\\x02\\x01\\x02\\x01\\x03\\x01\\x04\\x01\\x05\\x01\\x06\\x01\\a\\x01\\b\\x01\\t\\x01\\n\\x01\\v\\x01\\f\\x01\\r\\x01\\x0e\\x01\\x0f\\x01\\x10\\x01\\x11\\x01\\x12\\x01\\x13\\x01\\x14\\x01\\x15\\x01\\x16\\x01\\x17\\x01\\x18\\x01\\x19\\x01\\x1a\\x01\\x1b\\x01\\x1c\\x01\\x1d\\x01\\x1e\\x01\\x1f\\x01 \\x01!\\x01\\\"\\x01#\\x01$\\x01%\\x01&\\x01'\\x01(\\x01)\\x01*\\x01+\\x01,\\x01-\\x01.\\x01/\\x010\\x011\\x012\\x013\\x014\\x015\\x016\\x017\\x018\\x019\\x01:\\x01;\\x01<\\x01=\\x01>\\x01?\\x01@\\x01A\\x01B\\x01C\\x01D\\x01E\\x01F\\x01G\\x01H\\x01I\\x01J\\x00\\x8b\\x01K\\x01L\\x01M\\x01N\\x01O\\x01P\\x01Q\\x01R\\x01S\\x01T\\x01U\\x01V\\x01W\\x00\\x8a\\x01X\\x01Y\\x01Z\\x01[\\x01\\\\\\x01]\\x01^\\x01_\\x01`\\x01a\\x01b\\x01c\\x01d\\x01e\\x01f\\x01g\\x01h\\x01i\\x01j\\x01k\\x01l\\x01m\\x01n\\x01o\\x01p\\x01q\\x01r\\x01s\\x01t\\x01u\\x01v\\x01w\\x01x\\x01y\\x01z\\x01{\\x01|\\x01}\\x01~\\x01\\u007f\\x01\\x80\\x01\\x81\\x01\\x82\\x01\\x83\\x01\\x84\\x01\\x85\\x01\\x86\\x01\\x87\\x01\\x88\\x01\\x89\\x01\\x8a\\x01\\x8b\\x01\\x8c\\x01\\x8d\\x01\\x8e\\x01\\x8f\\x01\\x90\\x01\\x91\\x01\\x92\\x01\\x93\\x01\\x94\\x01\\x95\\x01\\x96\\x05heart\\x04star\\x04user\\x05clock\\blist-alt\\x04flag\\bbookmark\\x05image\\x04edit\\ftimes-circle\\fcheck-circle\\x0fquestion-circle\\x03eye\\teye-slash\\fcalendar-alt\\acomment\\x06folder\\vfolder-open\\tchart-bar\\bcomments\\tstar-half\\x05lemon\\vcredit-card\\x03hdd\\x10hand-point-right\\x0fhand-point-left\\rhand-point-up\\x0fhand-point-down\\x04copy\\x04save\\x06square\\benvelope\\tlightbulb\\x04bell\\bhospital\\vplus-square\\x06circle\\x05smile\\x05frown\\x03meh\\bkeyboard\\bcalendar\\vplay-circle\\fminus-square\\fcheck-square\\fshare-square\\acompass\\x11caret-square-down\\x0fcaret-square-up\\x12caret-square-right\\x04file\\bfile-alt\\tthumbs-up\\vthumbs-down\\x03sun\\x04moon\\x11caret-square-left\\ndot-circle\\bbuilding\\bfile-pdf\\tfile-word\\nfile-excel\\x0ffile-powerpoint\\nfile-image\\ffile-archive\\nfile-audio\\nfile-video\\tfile-code\\tlife-ring\\vpaper-plane\\x06futbol\\tnewspaper\\nbell-slash\\x11closed-captioning\\fobject-group\\x0eobject-ungroup\\vsticky-note\\x05clone\\thourglass\\thand-rock\\nhand-paper\\rhand-scissors\\vhand-lizard\\nhand-spock\\fhand-pointer\\nhand-peace\\rcalendar-plus\\x0ecalendar-minus\\x0ecalendar-times\\x0ecalendar-check\\x03map\\vcomment-alt\\fpause-circle\\vstop-circle\\thandshake\\renvelope-open\\faddress-book\\faddress-card\\vuser-circle\\bid-badge\\aid-card\\x0fwindow-maximize\\x0fwindow-minimize\\x0ewindow-restore\\tsnowflake\\ttrash-alt\\x06images\\tclipboard\\x15arrow-alt-circle-down\\x15arrow-alt-circle-left\\x16arrow-alt-circle-right\\x13arrow-alt-circle-up\\x03gem\\x0emoney-bill-alt\\fwindow-close\\fcomment-dots\\nsmile-wink\\x05angry\\x05dizzy\\aflushed\\nfrown-open\\agrimace\\x04grin\\bgrin-alt\\tgrin-beam\\x0fgrin-beam-sweat\\vgrin-hearts\\vgrin-squint\\x11grin-squint-tears\\ngrin-stars\\ngrin-tears\\vgrin-tongue\\x12grin-tongue-squint\\x10grin-tongue-wink\\tgrin-wink\\x04kiss\\tkiss-beam\\x0fkiss-wink-heart\\x05laugh\\nlaugh-beam\\flaugh-squint\\nlaugh-wink\\tmeh-blank\\x10meh-rolling-eyes\\asad-cry\\bsad-tear\\nsmile-beam\\bsurprise\\x05tired\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x00\\x99\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\xd9k%\\xf9\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\"\nvar _Assets20bbcb56854340073ddda797ede16b7f86c7d3a3 = \"package gateway\\n\\nimport (\\n\\t\\\"context\\\"\\n\\t\\\"fmt\\\"\\n\\t\\\"net/http\\\"\\n\\t\\\"strings\\\"\\n\\n\\t\\\"github.com/gin-gonic/gin\\\"\\n\\t\\\"github.com/textileio/go-threads/core/thread\\\"\\n\\t\\\"github.com/textileio/go-threads/db\\\"\\n\\t\\\"github.com/textileio/textile/v2/api/common\\\"\\n\\t\\\"github.com/textileio/textile/v2/buckets\\\"\\n)\\n\\n// collectionHandler handles collection requests.\\nfunc (g *Gateway) collectionHandler(c *gin.Context) {\\n\\tthreadID, err := thread.Decode(c.Param(\\\"thread\\\"))\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusBadRequest, fmt.Errorf(\\\"invalid thread ID\\\"))\\n\\t\\treturn\\n\\t}\\n\\tg.renderCollection(c, threadID, c.Param(\\\"collection\\\"))\\n}\\n\\n// renderCollection renders all instances in a collection.\\nfunc (g *Gateway) renderCollection(c *gin.Context, threadID thread.ID, collection string) {\\n\\tctx, cancel := context.WithTimeout(common.NewSessionContext(context.Background(), g.apiSession), handlerTimeout)\\n\\tdefer cancel()\\n\\tctx = common.NewThreadIDContext(ctx, threadID)\\n\\ttoken := thread.Token(c.Query(\\\"token\\\"))\\n\\tif token.Defined() {\\n\\t\\tctx = thread.NewTokenContext(ctx, token)\\n\\t}\\n\\n\\tjsn := c.Query(\\\"json\\\") == \\\"true\\\"\\n\\tif collection == buckets.CollectionName && !jsn {\\n\\t\\tg.renderBucket(c, ctx, threadID, token)\\n\\t\\treturn\\n\\t} else {\\n\\t\\tvar dummy interface{}\\n\\t\\tres, err := g.threads.Find(ctx, threadID, collection, &db.Query{}, &dummy, db.WithTxnToken(token))\\n\\t\\tif err != nil {\\n\\t\\t\\trender404(c)\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t\\tc.JSON(http.StatusOK, res)\\n\\t}\\n}\\n\\n// instanceHandler handles collection instance requests.\\nfunc (g *Gateway) instanceHandler(c *gin.Context) {\\n\\tthreadID, err := thread.Decode(c.Param(\\\"thread\\\"))\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusBadRequest, fmt.Errorf(\\\"invalid thread ID\\\"))\\n\\t\\treturn\\n\\t}\\n\\tg.renderInstance(c, threadID, c.Param(\\\"collection\\\"), c.Param(\\\"id\\\"), c.Param(\\\"path\\\"))\\n}\\n\\n// renderInstance renders an instance in a collection.\\n// If the collection is buckets, the built-in buckets UI in rendered instead.\\n// This can be overridden with the query param json=true.\\nfunc (g *Gateway) renderInstance(c *gin.Context, threadID thread.ID, collection, id, pth string) {\\n\\tpth = strings.TrimPrefix(pth, \\\"/\\\")\\n\\tjsn := c.Query(\\\"json\\\") == \\\"true\\\"\\n\\tif (collection != buckets.CollectionName || jsn) && pth != \\\"\\\" {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\n\\tctx, cancel := context.WithTimeout(common.NewSessionContext(context.Background(), g.apiSession), handlerTimeout)\\n\\tdefer cancel()\\n\\tctx = common.NewThreadIDContext(ctx, threadID)\\n\\ttoken := thread.Token(c.Query(\\\"token\\\"))\\n\\tif token.Defined() {\\n\\t\\tctx = thread.NewTokenContext(ctx, token)\\n\\t}\\n\\n\\tif collection == buckets.CollectionName && !jsn {\\n\\t\\tg.renderBucketPath(c, ctx, threadID, collection, id, pth, token)\\n\\t\\treturn\\n\\t} else {\\n\\t\\tvar res interface{}\\n\\t\\tif err := g.threads.FindByID(ctx, threadID, collection, id, &res, db.WithTxnToken(token)); err != nil {\\n\\t\\t\\trender404(c)\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t\\tc.JSON(http.StatusOK, res)\\n\\t}\\n}\\n\"\nvar _Assets4bf0d0667fe4719e513a3edfeb3a25a2377cf2b7 = \"{{template \\\"header\\\" \\\"404 Not Found\\\"}}\\n<div class=\\\"aligner\\\">\\n    <div class=\\\"aligner-item\\\">\\n        <i class=\\\"fas fa-sad-cry icon-big\\\"></i>\\n    </div>\\n    <div class=\\\"aligner-item\\\">\\n        <p>Nothing to see here!</p>\\n    </div>\\n</div>\\n{{template \\\"footer\\\"}}\\n\"\nvar _Assets5505a97055e70f2214132a49de39b49ea42721ef = \"\\x89PNG\\r\\n\\x1a\\n\\x00\\x00\\x00\\rIHDR\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\b\\x06\\x00\\x00\\x00\\xf4x\\xd4\\xfa\\x00\\x00 \\x00IDATx\\x9c\\xed\\x9dy\\x94\\x1ceٷ\\xef\\xc1]Q|U\\x14\\xdcP\\x16C'd\\xa7\\x93\\xccdB\\b\\x84\\xa0\\xa0`\\x14\\x905l\\xb2\\x88l\\xa2\\xa2\\xaf\\xbc\\n\\n*(*ۄ}O\\b!d\\x9f\\xee\\xec\\xfb2[W\\xf5\\x84LE\\x10\\x97O\\xc5\\r\\x95=\\x132\\xe9\\x9e\\xdf\\xf7GgB\\x92\\xd9zy\\xaa\\xee\\xaaz~\\xd79\\xd79\\xfe#g\\xd2]\\xfd\\xdcWwU=%B\\b\\xb1\\x0e@\\xf6\\x81#\\xcf\\xc0\\x956<%o\\xd3\\xfe{\\b!\\x84\\x10\\xe23p\\xe4\\xa7p\\x05{\\x98\\x95_h\\xff]\\x84\\x10B\\b\\xf1\\x01dd\\x12\\x1c\\xc9u\\x1b\\xfeo\\x99GVN\\xd0\\xfe;\\t!\\x84\\x10b\\x00x\\xb2/\\\\i\\xefc\\xf0\\xef\\xed6x\\xb2\\xaf\\xf6\\xdfM\\b!\\x84\\x902\\xc0\\r\\xb2\\x0f\\x1cYQ\\xc2\\xe0\\xdfӌ\\xac\\ad\\x1f\\xed\\u007f\\a!\\x84\\x10B\\x8a\\x04\\xae|\\xbb\\xec\\xc1\\xdf\\xdd\\xefi\\xff{\\b!\\x84\\x10\\xd2\\ah\\x91\\xe1pe\\xbb\\xc1\\xe1_Б\\x1d\\xc8JR\\xfb\\xdfG\\b!\\x84\\x90\\xdd\\x00d\\x9f\\x12\\xcf\\xf3\\x97k;\\xc0\\xdb\\x06\\t!\\x84\\x10u\\xe0ʌ\\x00\\x06\\xff\\u07bf\\b\\xcc\\x06\\xa4J\\xfb\\xdfN\\b!\\x84X\\a2\\xf2\\xf5\\xc0\\a\\u007f\\xf7\\v\\x05/\\xd5~\\x1d\\b!\\x84\\x10+@\\x8b\\x1c\\fW\\xb6\\xa9\\x0f\\xff\\xb7\\xdc\\x0eG\\x0e\\xd5~]\\b!\\x84\\x90X\\xb2s\\xfb\\xde\\x17C0\\xf0{;-\\xf0on+L\\b!\\x84\\x18\\x04\\x8eܥ>\\xe0\\x8b5+\\xf7j\\xbf^\\x84\\x10BH\\xa4AV\\xbe\\fW\\xf2\\xeaC\\xbd<O\\xd1~\\xfd\\b!\\x84\\x90H\\x81M\\xf2Q\\x04s[\\x9f\\xbf:\\xb2\\r\\x9b\\xe5cگ'!\\x84\\x10\\x12jp\\x83샬\\xfcA}p\\x9b6+\\u007f\\xe4\\xf5\\x01\\x84\\x10BH\\x0f\\xc0\\x95\\x1f\\xab\\x0fj\\xff\\xfd\\xb9\\xf6\\xebL\\b!\\x84\\x84\\x02\\xb4\\xc8\\xd1p\\xa5#\\x04\\xc39\\x18\\v\\x8f$\\x9e\\xa8\\xfd\\xba\\x13B\\b!*\\xc0\\x93}\\xe1\\xc8V\\xa5!\\f4\\x8e\\x04\\x1a\\xaa\\v\\xff[\\xe7oh\\xe7c\\x87\\t!\\x84X\\x03 Upd\\x83\\xda7\\xf0\\x96\\x8f\\x02\\x8b\\xd7\\x00i\\xaf\\xe0\\xe2u@\\xcb\\x01\\x9a\\xbf\\bdp\\x03\\x1f;L\\b!$\\xc6\\xc0\\x95+\\xf4\\x06\\xedہ\\x15\\xbfyk\\xf0\\xef\\xed\\x8a;\\x00\\xe7\\x9dz!\\xd0*\\xdf\\xd2~\\u007f\\b!\\x84\\x10\\xa3\\xc0\\x95\\xa1p\\xe5M\\xb5\\xe1\\xbanJ\\xef\\x83\\u007fo\\xd7^\\xa8\\xf9k@\\aZe\\xb8\\xf6\\xfbE\\b!\\x84TD\\x80\\x8f\\xe9\\xed\\xd9\\xe6O\\x15?\\xf8\\xf7\\xb6\\xf9 \\xbd\\x10\\xc8J;o\\x1b$\\x84\\x10\\x12I\\x90\\x95\\xb9j\\x034\\xf3~`\\xc9\\xe2\\xf2\\x87\\xff\\xae\\xeb\\x03\\x96\\x02\\x99\\xfd4C \\xa5\\xfd>\\x12B\\b!E\\x01W\\xa6\\xa8\\rLW\\x80U7V>\\xf8\\xf7v\\xe5\\xcf\\x01\\xa7J\\xef\\xdf\\xe4\\xca\\x05\\xda\\xef+!\\x84\\x10\\xd2#\\xd8$\\x9f\\x85\\xd6\\xcf\\xfd\\x8e\\x00\\x1bN6?\\xf8\\xf7v\\xfd)\\x9a\\xb7\\rnCF\\x0e\\xd1~\\x9f\\t!\\x84\\x10\\x11\\t\\xc1cz\\x9b?\\x01\\xa4\\xb3\\xfe\\x0f\\xff]\\xb6\\x16\\xae-\\xd0\\xfa\\xf7\\xf2\\xb1Ä\\x10B\\xb4\\x81+S\\xd5\\x06a\\xe6}\\xc0ҧ\\x03\\x1c\\xfc{\\xb9tn\\xe1Z\\x03\\xad\\u007f\\u007fV\\xee\\xd7~\\xff\\t!\\x84X\\x06\\\\9i疶:\\xc3o\\xf5\\xf7\\xf4\\x06\\xffޮ\\xbeN/\\x02\\\\\\xc9Ñ\\xafh\\x1f\\x0f\\x84\\x10Bb\\x0e\\x9e\\x93\\x8f\\xc0\\xd5ܾ\\xb7Z\\u007f\\xe0\\xf7f\\xc3Qz\\xd7\\a\\xb8ҎM\\xf2Q\\xed\\xe3\\x83\\x10BH\\xcc\\x00\\xa4\\nY٢\\xf6M\\xb7\\xe5\\x00`Q\\xa3\\xfe\\x90\\xef\\xcfEM@\\xcb\\xc7\\xf5~\\x11\\xc8\\xca\\x1f\\x01n+L\\b!\\xc4\\x00p\\xe4&\\xb5\\x81\\xe6\\xbc\\x03X\\xf6\\xa8\\xfe`/\\xd5e\\xd3\\x00\\xe7]z!\\xe0\\xc8/\\xb4\\x8f\\x1bB\\b!\\x11\\x05\\xadR\\v\\xcd\\xed{\\xd7^\\xa6?\\xc8+u͕\\x9a\\x11Ё\\x8cL\\xd0>\\x8e\\b!\\x84D\\x04l\\x92\\xf7i=\\xa6\\xb7\\xd3\\x11\\xech\\x18\\xa0?\\xb8M\\xdb8D\\xf3\\xfa\\x80\\xad\\xf8\\xa7\\xbcO\\xfb\\xb8\\\"\\x84\\x10\\x12b\\xe0\\xc8\\x12\\xado\\xac\\xffZy \\x8e\\x9a\\xf87\\f\\x1d\\x93\\xc7ks~\\xab?\\xb4M\\xbbx5\\xd0\\xf21\\xcd_\\x04V\\x03R\\xa5}\\x8c\\x11B\\b\\t\\x11p\\xe5{Z\\x83)\\x97\\xd9\\a\\x97^\\xb0\\x10\\x89$vy\\xe4\\xd8\\x1c^y:\\x86\\x11\\x90\\xf6\\x80\\xe5\\xf7\\x16\\x1eM\\xac\\x15\\x02Y\\xb9N\\xfbx#\\x84\\x10\\xa2\\fZe\\x10\\x1c٦1\\x88:\\x1d\\xc1\\x93\\xbf\\xb9d\\x8f\\xc1\\xbf\\xbb\\xc9\\xda\\x1c^\\x9d\\x1d\\xd3\\bH{\\xc0\\xba\\xb34O\\v\\xbc\\x89gd\\xb0\\xf6\\xf1G\\b!$`vn߫\\xf6\\x98\\u07bf.\\xf9l\\xaf\\x83\\u007fw\\x87\\x8d\\xc9\\xe3\\x8d8\\x9e\\x0e\\xd8ݖO\\xeb\\xfd\\x1a\\xe0\\xf0\\xb1Ä\\x10b\\rpe\\xba\\xd6\\xc0y}\\xc3\\xfb\\xf1\\xf9\\x13\\x9f+j\\xf8w9\\xbc&\\x87?>\\xfa;\\xfdA\\xed\\xa7K\\x16\\xebn+\\xec\\xca,\\xed\\xe3\\x92\\x10B\\x88O\\xc0\\x91K\\xe0\\xeam\\xdf\\xfb\\x9doN/i\\xf0\\xef\\xf1K@u\\x1e\\xcf=\\xfc\\xbc\\xfe\\xa0\\xf6ە\\xbfҋ\\x80\\xac\\xe4\\xe1\\xc8\\xe5\\xda\\xc7)!\\x84\\x10C\\xc0\\x95\\x83\\xa0\\xb4}o\\xa7#X|ߩe\\x0f\\xfe\\xbd#\\xe0_O>\\xa7?\\xa4\\x83p\\xfd\\x17u\\xb7\\x15n\\x92\\xcfj\\x1f\\xb7\\x84\\x10B\\xca\\x04\\x90}\\xe0\\xca_\\xb4\\xbeQ\\xbe\\xb0\\xec \\f\\xad\\xdefd\\xf8w9tt\\x0e/\\xc5\\xf5\\xee\\x80nf\\x81\\xe6Oj\\xfe\\\"\\xf0\\\"\\xaf\\x0f \\x84\\x90\\x88\\x01G\\xee\\xd4\\x1a\\x1c\\xed\\r\\xef\\xc1W\\xbe\\xe2\\x18\\x1d\\xfc\\xbb;\\xa2&\\x8f\\xff\\xcez6\\x04\\x03: \\x97\\xce\\x012\\xef\\xd5\\v\\x01W\\xee\\xd1>\\x9e\\t!\\x84\\xf4\\x03\\\\\\xf9*\\\\\\xe9\\xd0\\x1a\\x167]{\\x87o\\x83\\u007fwG\\xd5\\xe6\\xf0J\\x9co\\x11\\xec\\xc9U?Ҍ\\x80\\x1dp\\xe4k\\xda\\xc77!\\x84\\x90\\xbd@F\\xef1\\xbd\\x9d\\x8e\\xa0q\\xc6с\\f\\xfe\\xdd=rl\\x0e\\xed\\xf3B0\\x98\\x83\\xb6a\\x9c\\xee\\xf5\\x01\\xae\\xec\\xaf}\\xbc\\x13B\\b\\x11\\x118Ҭ\\xf5\\xcd\\xf0ŕ\\ab\\xd4Q/\\x05>\\xfcw\\xbf0\\xf0\\xf5\\xb9[\\xf4\\x87r\\xd0.j\\xd4\\xdeVx\\x13\\xb7\\x15&\\x84\\x10%\\xe0ʏ\\xb5\\x06@G\\xf3;0\\xe5\\xacUj\\x83\\u007f\\xef_\\x02^\\x98\\x1e\\xf3}\\x02zs\\xd9\\xe3\\x80\\xf3N\\xbd\\x10p\\xe5gڟ\\x03B\\b\\xb1\\x06\\xb8r,\\xb2:\\x8f\\xe9\\xedt\\x04\\xb7_\\xff\\x13\\xf5\\xa1\\xdfS\\x04\\xfc\\xfe\\x11\\v\\xf6\\t\\xe8\\xcd\\xd5\\xdfҌ\\x80\\xed\\xc8\\xc8$\\xed\\xcf\\x05!\\x84\\xc4\\x16d\\xe4\\xbdP<\\xcf\\xff܂\\xc1ꃾ/\\x87\\x8e\\xc9\\xe3%\\x9b\\xee\\x0e\\xe8\\xc9Ƅ\\xde\\xf5\\x01YيM|\\xec0!\\x84\\x18\\x05\\xae\\xa4\\xb4\\xbe\\xe1\\xe5\\x9b?\\x84ϟ\\xf0\\x17\\xf5\\x01_\\x8cG\\x8c\\xce\\xe3\\xff=f\\xe9\\xe9\\x80.\\x17\\xaf\\x06Z>\\xa2\\xf9\\x8b\\xc02\\xed\\xcf\\v!\\x84D\\x1e\\xb4ȷ\\x90\\x95\\xbc\\xd6b\\xfe\\xe6\\x92;0i\\xd2v\\xf5\\xc1^\\x8a#\\xabs\\xf8\\xcb4\\xcb# \\xed\\x01+\\xee\\x02\\x9c}\\xf4B\\xc0\\x91\\xefj\\u007f~\\b!$r\\xa0Y\\x92Z\\x8f\\xe9\\x85#\\xc0\\xba)\\xe8X\\xe8\\xe1\\xe4\\x13\\xcc\\xee\\xe4\\x17\\x94G\\x8e\\xb5p\\x9f\\x80\\xde\\\\{\\xa1\\xeec\\x87\\x1d\\x19\\xa3\\xfdy\\\"\\x84\\x90У\\xfd\\x98^\\xb4|\\x1cH{\\xc8\\xd5{\\x18{\\xd4\\x0e\\xf5A^\\x89#j\\xf2xs~\\b\\x06pX\\xd4\\xdcVؑv@\\xf6\\xd1\\xfe|\\x11BH(\\x81#\\x8f\\xa9-Й\\xf7\\x02KR@\\xdaC\\xc7\\x02\\x0f\\x93OlW\\x1f\\xe0&\\x1c^\\x93\\xc7\\xebs,\\xdc'\\xa07\\x97,\\x022\\xfbꅀ+3\\xb4?g\\x84\\x10\\x12\\x1a\\xe0\\xc8\\xf9pe\\x87ڢ\\xbc\\xf2\\xa7\\xbb\\x06\\xc4\\xf6\\xf9[p\\xcaI\\xf1\\x18\\xfe]\\x8e\\xaa\\xb5\\xe9\\x01BE\\xba\\xf2\\x16\\xcd\\b\\xc8\\xc1\\x91\\x8b\\xb4?w\\x84\\x10\\xa2\\x066\\xc9\\x00(\\xdd\\xd6\\aG\\x80\\r'\\xed1\\x14\\xda\\xe7m\\xc1\\xb1\\x13\\xa3u\\xc1_\\xb1\\x1e96\\x87\\u007f\\xda\\xf2(\\xe1R\\xdc\\xf0U\\xedm\\x85\\aj\\u007f\\x0e\\t!$0\\x00\\xa9\\x82+\\xbfW\\xfb\\x06\\xd6r\\x00\\x90v\\xf7\\x18\\x04\\xdb\\xe6m\\xc1\\x91cs\\xea\\x83\\xdaOGT\\xe7\\xf0\\xaf'-\\xdf'\\xa0G\\xddµ\\x1fZ\\xc7cV^\\xc0\\r\\xbc>\\x80\\x10\\x12s\\x90\\x95_\\xa8-\\xb4\\xce;\\x81\\xa53\\xba\\r\\x807\\xe6n\\xc1\\x98\\x88_\\xf0W\\xacC\\xc6\\xe4\\xf1\\xdb\\a\\u007f\\x1f\\x82\\xa1\\x1bB\\x97>\\x05dޣ\\x17\\x02\\x8eܦ\\xfd\\xf9$\\x84\\x10\\xe3 +_\\x86+\\xdb\\xd5\\x16\\xd7\\xd5\\xdf\\xefq\\xd1o\\x9f\\xb7\\x05GM\\xe8P\\x1f\\xccA:\\xac:\\x8fg\\x1fb\\x04\\xf4\\xea\\xea\\xffӋ\\x80£\\xacO\\xd1\\xfe\\xbc\\x12BH\\xc5\\xc0\\x95\\x8fC\\xf3<\\u007fCM\\xaf\\v\\xfd\\xb6\\xf9[0\\xfe\\x18\\xbb\\x86\\u007f\\x97#jr\\xf8\\xf7S<\\x1dЧ\\r\\xb5z\\xd7\\a8ҎM\\xf2I\\xed\\xcf/!\\x84\\x94\\x05\\\\٠\\xf6M\\xaa\\xe5#\\xc0\\xa2\\x8d\\xbd.\\xee\\x1d\\v=\\x1c\\x17\\xd3\\v\\xfeJ\\x89\\x00+\\x1f%\\\\\\x8a\\x8b\\x1a\\x80\\x96\\x8f\\xea\\xfd\\\"\\xe0HF\\xfbsL\\b!E\\x83\\x8c\\xfcHm\\xc1t\\x05X~\\u007f\\x9f\\x8bz\\xc7B\\x0f\\xa7\\x9d\\xbcU}\\x00\\x87\\xc1#\\xc7\\xe6\\xf0*w\\f\\xec\\xdf\\xe5\\x0f\\xe9n+\\xec\\xcaO\\xb4?ׄ\\x10\\xd2+h\\x95\\t\\xaa\\xdb\\xf7\\xae\\xb9\\xac߅\\x9cÿ\\xbb\\xa3\\xc6\\xe5\\xf0\\xda\\x1cF@Q\\xae\\xb9Jw[\\xe1\\xac\\x1c\\xa7\\xfd9'\\x84\\x90] +\\x1fDV\\xf1<\\u007fӐ\\xa2\\x16\\xefm\\xf3\\xb7X\\xff\\xb3\\u007fo\\x8e\\x1c\\x9b\\xc3\\xd6y<\\x1dP\\xb4\\x8d\\xc3u\\xf7\\x0f\\xf0\\xe4Cڟ{B\\x88\\xe5\\xc0\\x95YJ\\x8b \\x90\\xd9\\x0fX\\xbc\\xbc\\xa8\\x05\\xbb}\\x9e\\xbd\\x17\\xfc\\x15눚<\\xfe\\xc1͂\\x8aw\\xf1J\\xa0\\xe5CZ\\x11\\x00\\xb82_\\xfb\\xf3O\\b\\xb1\\x10\\xb8r%\\\\ɩ-~+n+z\\xa1~c\\xae}\\xb7\\xfa\\x95\\xebȚ\\x1c~\\xcb[\\x04Ksŝz\\x11PxT\\xf65\\xda\\xeb\\x01!\\xc4\\x02\\x90\\x95aм\\xado\\xfd\\xd7JZ\\x9c\\xb7\\xcd߂\\xea\\xf1vl\\xf2c\\xcaac\\xf2x\\xeeaF@ɮ;K\\xf7\\xb4\\xc032R{} \\x84\\xc4\\x10\\xfcI\\xde\\rG^Q\\xfb\\xa6\\xd3|H\\xc9\\vr\\xbb\\x05\\xdb\\xfb\\xfa\\xe5\\xe0\\xd1y\\xbc4\\x8b\\x17\\x06\\x96e\\xd3az\\xbf\\b8\\xb2\\r\\u007f\\x95\\xf7h\\xaf\\x17\\x84\\x90\\x98\\x00W\\xee\\xd1[\\xd0\\xde\\x05,\\x9d_\\xf2\\\"\\xbc}~|\\x1f\\xec\\x13\\x94ës\\xf8\\xc7\\f^\\x13P\\x96K\\xeau\\xb7\\x15\\xce\\xcaC\\xda\\xeb\\x06!$\\xc2\\xc0\\x95)\\xd0ܾw\\xd5Me-\\xbe\\x1d\\v=\\x9c\\x1a\\xb3G\\xfajy\\xe4X>J\\xb8\\\"W\\xfe\\\\/\\x02\\n\\xdb\\n_\\xa0\\xbd\\x8e\\x10B\\\"\\x04\\x1c9\\x14\\x9a\\xe7\\xf97N*{\\xc1\\xcd\\xd5{\\x98|\\\"\\x87\\xbfI\\x93\\xb59\\xbc1\\x87\\xb7\\bV\\xe4\\x86\\x13u\\xaf\\x0fh\\x95\\xcfi\\xaf+\\x84\\x90\\x90\\x03G\\xfb1\\xbd\\xe5/\\xb2;\\x16z\\xa8\\xb5\\xe4\\xa9~A;\\xac:\\x8f7\\xe7+\\fθ٬\\xf8\\xd8aW\\xfe\\nH\\x95\\xf6\\x1aC\\b\\t\\x19\\xc8\\xc8\\xcdj\\v\\x93\\xb3\\x0f\\xb0쉊\\x16\\xd67\\xe7o\\xc1\\xc9'nS\\x1f\\x94qv\\xe4\\xd8\\x1c^\\xe6\\xe9\\x80\\xca]6\\x13pޮ\\x19\\x02\\xbf\\xd2^o\\b!!\\x00-r\\x02\\\\ySm1ZsM\\xc5\\vj\\xfb\\xbc-8\\xfe\\xf87\\xd5\\a\\xa4\\r\\x1eY\\x9b\\xc3_\\xa6\\xfdN\\u007f\\x88\\xc6\\xc1\\xd5\\xd7jF\\xc0v\\xb8r\\x92\\xf6\\xfaC\\bQ\\x00\\x199\\x10\\xaa\\xe7\\xf9\\xab\\x8d,\\xa2\\xdb\\xe6oA5\\u007f\\xf6\\x0f\\xd4\\x11\\xd59\\xbc0\\x9dw\\a\\x18s\\xa3\\xe2c\\x87\\v\\xd7\\a|B{=\\\"\\x84\\x04\\x04\\\\٨\\xf6\\xcd#\\xf3?@\\xda1\\xb2p\\xb6\\xcfۂ\\x11\\xbc\\xcf_\\xc5!\\xa3\\xf3\\xf8\\x17\\xb7\\r6\\xa8Sx\\x84\\xb5\\xd6\\xe7\\xd2\\x11G{]\\\"\\x84\\xf8\\b\\x1c\\xb9\\x0e\\x9a\\xdb\\xf7.\\xbf\\xcf\\u0602\\xd9>\\x8f\\xdb\\xfbj;tL\\x1e\\xbf{\\xf8\\xf9\\x10\\f\\xcf\\x18\\xb9\\xfcA\\xbd\\b\\xc8J\\x1e\\x8eܠ\\xbdN\\x11B\\f\\x82\\xac\\x8c\\x85+\\xedJ\\xdf,\\x80u_\\a\\xd2m\\xc6\\x16\\xc9\\xed\\v<|\\x81\\xe7\\xfcC\\xe1ȱ9\\xfc\\xed\\t\\xfe\\x12`ܵ\\x97j\\x9e\\x16\\xd8\\x06W\\xc6k\\xaf[\\x84\\x90\\n@V>\\bG^V\\xfbF\\xd1X\\xdcczK\\xb1c\\xa1\\x87\\xe3\\x8e\\xe3\\xf0\\x0f\\x93#k\\xf8(a\\xdfl\\x1c\\xa6\\x17\\x02\\x8e\\xb4c#\\x1f;LH\\xe4\\x80+\\v\\xd4\\x06\\u007f\\xe6\\xbd\\xc0\\xa2\\xf5\\xc6\\x17\\xc3\\x1d\\v=L\\x9a\\xc8\\xe1\\x1fF\\x87U\\xe7\\xb1u.#\\xc0\\x17\\x17m\\x002\\xef\\xd7\\xfa5\\x00pe\\xb1\\xf6zF\\b)\\x02\\xb8r)\\n[\\x80\\xea,\\x16+\\u007f\\xe9\\xcb\\\"ر\\x80\\xdb\\xfb\\x86\\xddQ\\xe3rxu6\\xf7\\t\\xf0͕\\xbfь\\x80\\x1dp\\xe4r\\xed\\xf5\\x8d\\x10\\xd2\\x03pe(\\x1c\\xc5\\xf3\\xfc\\xebO\\xf1m\\xe1۾\\xc0\\xe3&?\\x111Y\\x9b\\xc3+\\xdc,\\xc8_ן\\xa1{\\xdb`FFh\\xafw\\x84\\x10\\x11\\x81'\\xefDV\\xfe\\xaa\\xf6͠\\xf9 _\\x17\\xbb\\xed\\v<\\x8c\\x19\\xc7\\xfb\\xfc\\xa3\\xe4\\xb0\\xea<^\\x9f\\xc3\\b\\xf0\\xdd\\xe6\\x835\\u007f\\x11x\\x11\\xab\\xe4\\xdd\\xda\\xeb\\x1f!ւ\\x8c<\\xaa\\xb6\\x008\\xef\\x00\\x96,\\xf6u\\x81k\\x9f\\xb7\\x055\\xdc\\xe4'\\x92\\x0e\\x1d\\x93\\xc7?f<\\xab?$\\xe3\\xee⥀\\xf3n\\xcd\\x10xB{\\x1d$\\xc4*\\xd0*\\xa7A\\xf51\\xbd?\\xf2}ak\\x9f\\xb7\\x05\\xb5G\\xf3>\\xff(;\\xbc:\\x8f\\xe7\\xb8O@0\\xae\\xfa\\x89^\\x048\\xd2\\x01G\\xce\\xd2^\\x17\\t\\x895xF\\x0e\\x86\\xa3\\xb9}\\xefq\\x81,f\\xdb\\x17l\\xc18n\\xf2\\x13\\v\\x87U\\xe7\\xf9\\xec\\x80 \\xdd\\xf8y\\xcd\\xeb\\x03\\xb6\\\"+\\x87i\\xaf\\x93\\x84\\xc4\\x0e8\\xb2E\\xad\\xf0[>\\x12\\xd8\\x02\\xb6c\\xa1ǟ\\xfdc\\xe6\\xb0\\xea<\\xde\\xe0-\\x82\\xc1\\xda\\xf21\\xcd_\\x04\\xfe\\xa0\\xbd^\\x12\\x12\\v\\xe0ʭp\\xa5S\\xedü\\xf4\\xa9\\xc0\\x16\\xad\\xed\\v<L\\xe2&?\\xb1t\\xf8\\x98\\x1c^\\xe5\\xdd\\x01\\xc1\\xbatv\\xe1Q\\xdbZk\\x87+\\xb7k\\xaf\\x9f\\x84D\\x12\\xb4\\xca\\xf1pd\\x9bR\\xc1\\x03k\\xae\\x0et\\xb1\\xeaX\\xe8\\xe1\\xab_\\xe2}\\xfeq6Y\\xcb\\bPq\\xf5w4O\\v\\xbc\\x89\\xac\\x9c\\xa8\\xbd\\x9e\\x12\\x12\\t\\xb0I>\\n\\xcd\\xc7\\xf46&\\x03_\\xa0:\\x16z\\xf8\\xe2\\xe7y\\x9f\\xbf\\r\\x1eY\\x9b\\xe3\\xe9\\x00-\\x1b\\xc7\\xe8\\x85@V\\xb6\\u0093\\x03\\xb4\\xd7WBB\\v\\\\Y\\xa3T\\xe9@\\xe6\\x030\\xf5\\x98\\xdeR\\x87\\xffx^\\xedo\\x95ê\\xf3h\\x9f\\xdb\\xf3\\xf1@\\xfd\\xd6\\x01Z\\xfeG\\xeb\\xd7\\x00\\xc0\\x91F\\xedu\\x96\\x90P\\x81\\xac\\xdc\\x00\\xd5\\xc7\\xf4>\\xa4\\xb2\\x18\\xbd9\\u007f\\v\\x1f\\xecc\\xa9#j\\xf2xi\\x16\\xf7\\tPs٣z\\x11\\xe0J\\x1eY\\xb9I{\\xdd%D\\x15d\\xa5\\x06Z?\\xf7\\xbb\\x02\\xac\\xbb@m\\x01zs\\xfe\\x16L8f\\xbb\\xfa \\xa2z&\\xf9(a}\\xd7^\\xac\\x19\\x02\\xed\\xd8$\\xe3\\xb4\\xd7aB\\x02\\x05\\xcf\\xca\\xfb\\xe1ʋj\\x1f\\xbc\\xa6\\x81\\xca\\vO\\x1bv,\\xf4\\xd0>\\xd7n\\xb7.\\xf9\\xb9\\xfaߠ\\xed\\xf6\\xa9ˀ\\x19\\x1b\\xf4\\a\\xa1\\xed6\\r\\xd6\\v\\x01G^EF\\xf6\\xd3^\\x97\\t\\xf1\\x1d\\xb8\\xf2\\x94\\xde\\a\\xed\\xdd\\xc0\\xe2\\xd5\\xea\\xc3\\x1f\\xa96\\xfd\\x05O\\xfb5h:T\\xf5\\x17\\x98\\xd0X\\x97\\x02\\x06\\x1d\\vL[\\xab\\xff\\xb7\\xd8\\xee\\xe2\\xb5@\\xe6}z!\\x90\\x95\\xb9\\xda\\xeb3!\\xbe\\x80\\x8c\\\\\\x05Gv\\xa8}\\xb8Vܡ\\xbf\\xc0p\\xf8\\x03\\xe9\\xcd@S\\xa2\\xf0\\x9e0\\x00\\n\\x010`<0h\\\"\\xf0\\xd8\\x1a\\xfd\\xbf\\x87\\x02+\\xa6\\xeaE@\\xe1\\xb1\\xc3\\xdf\\xd5^\\xaf\\t1\\x026K\\x02\\x9a\\xb7\\xf5m8I\\u007fAI{\\x85\\xc1o\\xfd\\xf0o\\x03\\x1ak\\xdfz\\u007f\\x18\\x00o\\x05\\xc0\\x80\\xf1\\xc0\\x90I\\xc0SM\\xfa\\u007f\\x13-\\xb8~\\xb2\\xeec\\x877\\xc9\\x11\\xda\\xeb7!e\\x81\\x8c\\xbc\\x03Y\\xf9\\xa3ZI7\\u007fZ\\u007f\\x01\\xe9\\xd2\\xfa\\xc1\\xef\\x01\\xa9\\xcd@c\\xf5\\x9e\\xef\\x11\\x03`\\xcf\\x00\\xe8\\xfa%`\\x8e\\xab\\xffwѷl\\xfe\\xac\\xe6/\\x02\\u007fCZޥ\\xbd\\x9e\\x13R4\\xc8ʽ\\x8a\\x1f\\x18`I\\xbd\\xfe\\xa2\\xd1e\\xaa\\rH\\x85\\xe0\\xefP}\\r6\\x03\\x8d\\xa3\\xbb\\xbfO\\f\\x80\\xee\\x010`|\\u1680\\xa7[\\xf4\\xff6\\xfa\\x96KҀ\\xf36\\xbd5͑\\x87\\xb5\\xd7uB\\xfa\\x04\\xaeL\\x81+o\\xaa}HV\\xfdL\\u007f\\xa1\\xd8]~\\xf3\\aқ\\x81\\x8d\\x93z~\\xbf\\x18\\x00=\\a@\\xd7逧\\x9b\\xf5\\xff>\\xba\\xa7+o\\x01\\xdc*\\xad\\x10؎Mr\\xa1\\xf6:O\\xc8\\x1e\\xc0\\x95\\x83t\\x1f\\xd3;A\\u007fa\\xe8&\\xcf\\xf9#\\xdd\\x06l8\\xa1\\xf7\\xf7\\x8e\\x01\\xd0{\\x00\\f\\x18\\x0f\\f9\\x9e\\xbf\\x04\\x84Ս\\xc7\\xea>vx\\x93|V{\\xdd'D\\xe0H\\x8b҇\\x00h\\xf9\\x90\\xfeBЫ\\xb6\\x0f\\u007f\\x0fh\\x1e\\xde\\xf7\\xfb\\xc7\\x00\\xe8;\\x00v]\\x13\\x10\\xfc\\x16մH[\\xf6\\u05ca\\x00\\xc0\\x91g\\xb4\\xd7\\u007fb)p\\xe4\\x17p%\\xafv\\xf0/\\x9b\\xa9\\xff\\xe1\\xefM\\xeb\\xbf\\xf9o\\x06\\x9a\\x86\\xf4\\xff\\x1e2\\x00\\xfa\\x0f\\x80\\x01\\xe3\\x81#\\x8e\\x03\\x1e^\\xa1\\xff\\xb7Ҟ]:K/\\x02\\\\\\xe9\\x84#\\xbfў\\a\\xc4\\x12\\xd0\\\"'\\xe8=\\xa6\\xb7\\nX\\xf3\\x1d\\x84\\xfa\\xdb5\\x87?\\xd0txq\\xef'\\x03\\xa0\\xb8\\x00\\x180\\x1e8b\\\"\\xf0\\xc0R\\xfd\\xbf\\x97\\xf6b\\x1b\\xb0\\xfa\\xfb\\x855J'\\x04\\xdeD\\x8b\\x9c\\xac=\\x1fHL\\x81+\\xfbÑW\\xd4J\\xb7\\xf1\\xc8\\x10|\\xc8\\xfbY\\x00\\xac\\x1f\\xfemom\\xf2\\xc3\\x00(κTq\\x01\\xd0u:`\\xc6F\\xfd\\xbf\\x99\\xf6mC\\x0fw\\xbc\\x04\\xf6%IڱY>\\xa6=/H\\x8c\\x80#\\x8b\\xd5\\x0e\\xe8\\xcc{\\x80E!\\xbf\\x1a\\xbak\\x93\\x1f\\xab\\x03\\xa0\\xad\\xf0\\x8c\\x85R\\xde[\\x06@i\\x010`<0\\xf0Xn\\x16\\x14\\t3@f_\\xbd\\x10\\xc8\\xcaJ\\xed\\xb9A\\\"\\x0e\\\\\\xf9!\\\\\\xc5\\xed{\\x97?\\x18\\x82\\x0fr?Z=\\xf4\\xbb^\\x83\\xcd@\\xe3\\x98\\xd2\\xdf_\\x06@\\xe9\\x01\\xd0uM\\xc0\\xccF\\xfd\\xbf\\x9d\\xf6\\xef\\xf2G\\xf4\\\"\\xc0\\x91\\x1c2\\xf2\\x13\\xed9B\\\"\\x06Z\\xa5\\x16\\x8e\\xb4+\\x1d\\xb4\\xc0ڋ\\xf4?\\xb8\\xc5h\\xfd\\xb7~\\xaf0\\xfc7\\xf6q\\xab\\x1f\\x03\\xa0o\\xebR\\xa5\\a\\xc0\\x80\\xf1\\xc0\\xd0\\xe3\\xb9O@\\x94\\\\\\xf3\\r\\xbd\\xdb\\x06\\x1dن\\xac\\x1c\\xad=WH\\xc8\\xc1zy?\\\\\\xf9\\x93Z\\xb16\\x1d\\xae\\xffA-V\\xdb\\a\\u007f\\xdaC\\xe1>\\xff/\\x96\\xff~3\\x00\\xca\\x0f\\x80\\xae͂\\xe6e\\xf5\\xff\\r\\xb4x\\x1b\\a鬭\\x05\\xff\\x86F\\xf9\\x80\\xf6\\x9c!!\\x04\\xae\\xccP;0\\x9d\\xb7\\x01\\x8bW\\xea\\u007f8\\x8b\\xb6\\r\\xa1\\xbe\\x13!\\xa8נ\\xa7\\xed}\\x19\\x00\\xa5Y\\x97*?\\x00v\\xed\\x13\\x90\\xd1\\xffw\\xd0\\xe2]\\xbc\\x1apީ\\x19\\x02\\xb3\\xb5\\xe7\\r\\t\\th\\x95\\x8b\\xe1\\xcav\\xb5\\x83qů\\xf5?\\x90\\xa5j\\xfd\\xb7\\xff\\xcd@\\xc31\\x95\\xbf\\xf7\\f\\x80\\xca\\x03`\\xc0x`\\xf0\\xf1\\xc0\\xe3k\\xf5\\xff-\\xb44Wܮ\\x19\\x01\\x1dp\\xe4r\\xed\\xf9C\\x94@V\\x86\\xc1U<Ͽ\\xfek\\xfa\\x1f\\xc0r\\xe4\\xf07w\\x9b\\x13\\x03\\xc0L\\x00\\f\\x18\\x0f\\f\\x9e\\x04<\\xb4\\\\\\xff\\xdfCKwݙ\\xba\\x8f\\x1d~FFj\\xcf#\\x12\\x10\\xc8\\xc8;\\xe0\\xc8f\\xb5\\xf2l9P\\xff\\x03W\\xae\\xd6\\x0f\\xff6\\xa0\\xe90s\\xc7\\x02\\x03\\xc0\\\\\\x00\\xec\\xbaE\\x90\\x17\\x06F\\xd6\\xe6OjE\\x00\\xe0\\xcas\\xc8\\xc8;\\xb4\\xe7\\x13\\xf1\\x11\\xb8r\\x0f\\xb2\\x8a\\xdb\\xf7.Y\\xa0\\xff!+ה\\xed\\xe7\\xfd7\\x03͟6{<0\\x00\\xcc\\x06\\xc0\\x80\\xf1@b\\x02\\xf0h\\x94\\xae\\xa7\\xa1{\\xb8$\\xa5\\x19\\x01\\x9dp\\xe5A\\xed9E\\f\\x03GN\\x83\\xd6cz\\x1d\\x01V\\xfd\\x18\\x91\\x1d\\x9e\\xbc\\xd5\\x0fHo\\x06\\x1aG\\x9a?6\\x18\\x00\\xe6\\x03`\\xc0\\xf8\\xc2>\\x01\\x8f\\xad\\xd6\\xff\\xb7\\xd1\\xf2]y\\x93\\xe6\\xb6\\xc2\\xdb\\xe1\\xc8Y\\xdas\\x8bT\\b<9\\x14\\xae\\xbc\\xaaV\\x94\\x1b\\xbe\\xa0\\xffA\\xaaD\\xeb\\a\\xff\\xce\\xd7`\\xe3$\\u007f\\x8e\\x0f\\x06\\x80?\\x010`\\xe7-\\x82\\xb3x: \\xf2n\\xf8\\xa2\\xee\\xf5\\x01\\x199\\\\{\\x8e\\x912\\x80#\\x8dj\\x83?\\xb3\\xaf\\xfe\\a\\xa7b9\\xfc\\x91n\\x03\\x1a&\\xfaw\\x9c0\\x00\\xfc\\v\\x80\\xae_\\x02\\xe6s\\x9f\\x80X\\x98\\xd9O+\\x02\\x00G\\\\\\xedyF\\x8a\\x04\\x8e\\xdc\\x04Grj\\a˲\\xe9\\xfa\\x1f\\x96J\\xe57\\u007f \\xdd\\x06l\\x1c\\xef\\xef\\xb1\\xc2\\x00\\xf07\\x00\\xba\\\"`6\\xf7\\t\\x88\\x85\\xcbf\\xe8E\\x80+y8r\\x8b\\xf6|#\\xbd\\x80V9\\x1e\\xae\\xd2cz]\\x01\\xd6|[\\xff\\x03bL\\xdb\\x03\\xa0\\r\\xd8p\\x92\\xff\\xc7\\f\\x03\\xc0\\xff\\x00\\x180\\x1e\\x18\\xfay>@(N\\xae\\xfe\\x1e\\xe0\\xaa]\\x1f\\xf0&Z\\xe5\\x8b\\xda\\xf3\\x8e\\xec\\x04\\x9e\\x1c\\x00G\\xfe\\xa16\\xf8\\x1bj\\xf4?\\x10&\\xb5\\xfeۿ\\x8f\\xe7\\xfc\\x19\\x00ݭK\\xf9\\x1f\\x00]\\xd7\\x04<\\xb1A\\xff\\xdfK\\xcd\\xd90N+\\x02\\x00W\\xfe\\x8bV\\xf9\\x84\\xf6\\xfc\\xb3\\x1a\\xb8\\x92V;\\x00\\x9cw\\x02\\x8bb\\xf6D2\\xeb\\xaf\\xf8o\\x03\\x1aF\\x04w\\f1\\x00\\x82\\v\\x80\\xae\\xd3\\x013\\x18\\x01\\xb1rQ3\\x90y\\xaff\\b,מ\\x83ց\\x8c|\\a\\xaet\\xa8\\xbd\\xe9\\xcb\\xef\\xd5?\\xf0\\x8dk\\xf3\\xe0\\xf7\\x80\\xf43@\\xd3\\xc1\\xc1^q\\xcc\\x00\\b6\\x00\\x06\\x8c\\a\\x06\\x1e\\x03ܿD\\xff\\xdfMͺ\\xfc~\\xcd\\b\\xd8\\x01G~\\xa0=\\x17c\\x0f\\xb2R\\x03\\xcd\\xed{\\xd7^\\xa8\\u007f\\xa0\\xfb\\xa1\\xd5\\xdf\\xfa= \\xbd\\x19h\\x1a\\x10\\xfc1\\xc5\\x00\\b>\\x00\\x06\\x8c/<@\\xe8\\x01F@,]{\\x89\\xeem\\x83\\xae\\x1c\\xa5='c\\a\\xd6\\xc9\\xff +\\u007fP+\\xbc\\xc6\\xc1\\xfa\\a\\xb6/\\xda\\xfe\\x93\\xff\\xceנ\\xf1H\\x9d\\xe3\\x8a\\x01\\xa0\\x13\\x00]\\xa7\\x03f6\\xe8\\xff\\xfb\\xa9?6\\x0eӊ\\x00\\xc0\\x95\\xbfb\\xa3|H{n\\xc6\\x02\\xb8\\xf2(\\n[4꼙\\x8b\\x97\\xea\\x1f\\xcc~h\\xfd\\xe0\\xf7P8\\xe7_\\xab\\xb7P0\\x00\\xf4\\x02`\\xc0x`\\xf0q|\\x94p\\x9c]\\xbc\\xa2\\xf0\\xa8u\\xbd\\x10xB{~F\\x16\\xb8r!4\\x1fӻ\\xf2W\\xfa\\a\\xb0oھ\\xaf\\xbf\\a\\xa46\\x03\\x1b?\\xaf\\xb980\\x00Ҟn\\x00\\f\\x18\\x0f\\f9\\x1ex\\xbaE\\xffu\\xa0\\xfe\\xb9\\xf26\\xa8\\xdd6\\xe8H\\a\\\\\\xb9T{\\x9eF\\x06\\xb82\\x10\\x8e\\xe6cz\\xbf\\xa2\\u007f\\xc0\\xfa\\xaa僿\\xeb5X?Yw\\xf83\\x00\\n֥t\\x03`\\xc0\\xf8\\xc2>\\x01\\xdc,(\\xfe\\xae?U\\xef\\xfa\\x00G\\xda\\xe1\\xc8\\x10\\xed\\xf9\\x1aZ\\x90\\x91\\xf7\\u0095g\\xd4\\x16\\xe3\\xe6\\xcf\\xe8\\x1f\\xa0\\xbe\\xcb\\xe1_\\xb8\\xcf_\\xf9\\x9b?\\x03\\xe0-\\xebR\\xfa\\x010`<0x\\x120\\xd7\\xd5\\u007f=\\xa8\\xff6\\x1d\\xaa\\xf7\\x99w\\xe4Yl\\x92\\xf7i\\xcf\\xdb\\xd0\\x01W\\x9eS{S\\x96\\xce\\xd5?(\\x03\\xd1\\xf6\\x00P>\\xe7\\xcf\\x00\\xe8n]J\\u007f\\xf8\\uf280\\xe3\\x80'\\xd6\\xeb\\xbf&\\xd4\\u007f\\x97\\xcc\\u05cc\\x80\\xbfk\\xcf\\xdb\\xd0\\x11x\\x008U\\xc0\\xaa\\xeba\\xcdP\\xb4\\xfe\\xa2\\xbf\\xcd@\\x83\\xd2\\xd5\\xfe\\f\\x80ޭK\\xe9\\x0f\\xfe\\xdd=\\xe28\\xee\\x13`\\x8dm\\xc0\\xaa\\x1b\\x83\\u007f\\xec0\\x03\\xa0;\\x81\\x06\\xc0Ɖ!8\\xf8\\x02>\\xd0\\xd5\\xff\\x06M7\\x03\\x8d\\n\\xf7\\xf93\\x00\\xfa\\xb7.\\xa5?\\xf4\\xf7vб\\xc0\\x03\\xcb\\xf4_\\x1b\\x1a\\x9c\\x1b\\x02<-\\xc8\\x00\\xe8N \\x01\\xd0\\xf2a ݪ\\u007f\\xb0\\x05\\xa9\\xf5\\xdf\\xfc\\xdb\\n;\\xfci\\x0f{\\x06@\\xcf֥\\xf4\\a~O\\x0e<\\x06\\x98\\xc5\\a\\b\\xd9\\xe53@\\xcbG\\x19\\x00\\x1a\\xf8\\x1e\\x00˦\\x85\\xe0\\x00\\vX\\xee\\xed\\x0f4\\f\\xd7\\x1f\\xf4\\f\\x80ޭK\\xe9\\x0f\\xfb^\\u007f\\t\\x98\\bL\\xe75\\x01ֹ\\xec\\t\\x06@\\xd0\\xf8\\x12\\x00\\x8e\\x00k.\\xd7?\\xa0\\x82\\xd6\\ua87f\\xdbk\\x10\\xd4S\\xfd\\x18\\x00\\xe5[\\x97\\xd2\\x1f\\xf4}9\\xe4x>J\\xd8V\\xd7\\\\\\xed\\xcfm\\x83\\f\\x80\\xee\\x18\\x0f\\x80\\x861\\xfa\\a\\x90\\x8a\\xdc\\xe4\\a\\xa9\\xcd\\xc0\\x86\\x93\\xf5\\a<\\x03\\xa0\\u007f\\xebR\\xfaC\\xbe?\\x87\\x1e\\xcf\\x1d\\x03mv\\xe3X\\x06\\x80\\xdf\\x18\\r\\x80E\\xb6~X-\\x1f\\xfc\\xbb>\\xb0\\xe3\\xf5\\x87;\\x03\\xa08\\xebR\\xfa\\x03\\xbe\\xa8\\xd3\\x01\\xc7\\x02\\xf3-\\xbb~\\x88\\xee\\xa6kn[a\\x06@w\\x8c\\x04\\xc0\\xf2{Bp\\xa0(ɟ\\xfdw\\xfe\\xec\\u007f\\x9c\\xfe`g\\x00\\x14o]J\\u007f\\xb8\\x17}:`\\x12/\\f\\xb4\\xdd\\xe5\\xf71\\x00\\xfc\\xa0\\xe2\\x00H;\\xfa\\a\\x87\\xaa\\xb6\\a\\xc0\\xe6\\xf0\\x9f\\xf3g\\x00t\\xb7.\\xa5?\\xd8K\\x8a\\x80\\xe3\\x81\\xc7V\\xeb\\xbfnTQ\\x97\\x01`\\x1a\\x06@\\x05Z\\xff\\xed_\\xf1\\x91\\xbe\\f\\x80ʬK\\xe9\\x0f\\xf5R=\\xe28`\\xda\\x1a\\xfd\\u05ce*\\xc9\\x000\\x0e\\x03\\xa0LS\\xb6_\\xf4\\xd7\\x064}F\\xef!\\x1f\\f\\x80ʬK\\xe9\\x0f\\xf4rL\\x1c\\x03\\xccب\\xff\\xfaQ\\x05\\x19\\x00\\xc6a\\x00\\x94\\xaa\\xed\\xf7\\xf8{\\b\\xed\\x0e\\u007f\\f\\x80\\xe2\\xadK\\xe9\\x0f\\xf3r\\x1dt,\\xf0 w\\f\\xb4O\\x06\\x80q\\x18\\x00\\xa5j\\xfb\\xf0o\\x03\\x1a\\xaa\\xf5\\x878\\x03\\xa02\\xebR\\xfa\\x83\\xbc\\x12\\x87L\\x02\\xa6\\xad\\xd3\\u007f\\x1di\\x802\\x00\\x8c\\xc3\\x00(V\\xdb\\u007f\\xf2\\xf7v^\\xed?Q\\u007f\\x803\\x00*\\xb7.\\xa5?\\xc4+u\\xf0q|\\x94\\xb0U2\\x00\\x8c\\xc3\\x00(\\u0094\\a\\x0e\\xff\\xcd@cĿ\\xf93\\x00\\u07b2.\\xa5?\\xc0M8h\\\"0ׂ5\\x88\\x82\\x01\\xe0\\x03\\f\\x80~\\xe4\\xf0߹\\xc3\\xdfI\\xfa\\x83\\x9b\\x01`κ\\x94\\xfe\\xf06\\xe5\\xd0で[\\xf4_S\\xea\\xb3\\f\\x00\\xe30\\x00\\xfa\\x90\\xc3\\u007f\\xe7\\xf0\\xff\\x92\\xfe\\xd0f\\x00\\x98\\xb5.\\xa5?\\xb8MG\\x00\\x9f\\x1d\\x10s\\x19\\x00\\xc6a\\x00\\xf4&\\xcf\\xf9\\x17.\\xf83\\xbc\\x1fw\\x18d\\x00\\xc4/\\x00\\x06\\x8c\\a\\x8e\\x98\\b̉\\xebzD\\x19\\x00>\\xc0\\x00\\xe8E>\\xd2\\x17h\\x1a\\xa4?\\xac\\x19\\x00\\xfeX\\x97\\xd2\\x1f\\xd8~8\\xf0X`:\\xef\\x0e\\x88\\xa7\\f\\x00\\xe30\\x00\\xf6\\xd6\\xf6\\xc1\\xef\\xa1p\\x9f\\xff\\xc0hn\\xf2\\xc3\\x00(κ\\x94\\xfe\\xb0\\xf6\\xf3\\x97\\x80\\a\\x96\\xea\\xbf\\xc6\\u0530\\f\\x00\\xe30\\x00v\\x97?\\xfb\\xef\\x1a\\xfe\\xdaC\\x9a\\x01\\xe0\\xafu)\\xfdA\\xedw\\x04\\xf0\\xd9\\x011\\x93\\x01`\\x1c\\x06\\xc0n.\\n\\xc1ߠm\\xc30\\xfd\\x01\\xcd\\x00\\xf0ߺ\\x94\\xfe\\x90\\x0e\\\"\\x02f\\xdb\\xfa\\x88\\xf28\\xca\\x000\\x0e\\x03\\xc0\\xe3\\xd5\\xfei\\xafp\\xda#\\x8a\\x0f\\xf6a\\x00\\x94g]J\\u007f@\\a\\x15\\x01\\xb3\\x9a\\xf5_oj@\\x06\\x80q\\xac\\x0f\\x00\\x0e\\xffx\\xde\\xea\\xc7\\x00\\xe8ۺ\\x94\\xfep\\x0eʡ\\xc73\\x02b!\\x03\\xc08V\\a\\x80\\xf5O\\xf4\\xf3\\n\\xc3\\u007f\\xe3\\x17\\xf4\\x872\\x03 X\\xebR\\xfa\\x839H\\x87L\\xe2-\\x82\\x91\\x97\\x01`\\x1ck\\x03 \\xb5S\\xed\\xbfC\\xf55\\xd8\\x1c\\xcf\\xfb\\xfc\\x19\\x00\\xfd[\\x97\\xd2\\x1f\\xcaA\\xcb}\\x02\\\".\\x03\\xc08\\xf6\\x06\\x80\\xed\\xdf\\xfcۀ\\x86Z\\xfda\\xcc\\x00б.\\xa5?\\x905\\x1c|\\x1cw\\f\\x8c\\xac\\f\\x00\\xe3X\\x19\\x00\\xb6\\x0f\\xfft\\x1b\\xb0q\\xbc\\xfe f\\x00\\xe8Y\\x97\\xd2\\x1f\\xc6Z\\x0e9\\x1e\\x98\\xb6V\\xff=\\xa0%\\xca\\x000\\x8eU\\x01\\x90j\\xe3\\xcf\\xfe\\xe96\\xa01\\xa6;\\xfc1\\x00\\x8a\\xb7.\\xa5?\\x885=b\\\"0c\\x83\\xfe\\xfb@K\\x90\\x01`\\x1c\\xab\\x02ࡕ\\xc0\\x91'\\x03#m\\xf6\\x8b\\xc0\\x91\\x93\\xacv\\xcdQ7\\xe3\\xe8\\xa3;\\xac\\xf6\\x98\\xa3\\xb6\\xe1\\xa4\\xea\\x17\\xad6\\xfb\\x85\\xfb\\xf0\\xcf'\\x9f\\xd3_\\x97h\\x912\\x00\\x8ccU\\x00\\xa4=\\xe0\\xe7ӀÏ\\xd6\\xff\\x06B\\xd5\\\\6\\xfc&$\\x92\\xa0\\xd6ډ\\xfa\\x9a{\\xb0u\\xd8)\\x18^\\x9d\\xc3ߟ`\\x04DC\\x06\\x80q\\xac\\v\\x80\\xb4\\a\\xdc\\xf4(#\\xc0b\\x19\\x00v[_s\\x0f0`<\\xb6\\x0e;\\x05\\x89$0\\xaav\\a^\\x9d\\xfd[\\xfdu\\x89\\xf6#\\x03\\xc08V\\x06@\\xda\\x03~>]}\\x10Q\\x06\\x00\\r\\xd2N,\\xab\\xbd{\\xd7q\\xd0\\x15\\x00\\x89$0\\xbc&\\x8fms=\\xfdu\\x89\\xf6!\\x03\\xc08\\xd6\\x06@\\xda\\x03n\\x9b\\xa3>\\x8c(\\x03\\x80\\x06\\xe3ʣ\\xa6\\xa2s\\xb7\\xe3`\\xf7\\x00H$\\x81a\\xd5y\\xbc1w\\x8b\\xfe\\xbaD{\\x91\\x01`\\x1c\\xab\\x03 \\xed\\x01\\xbf\\x99\\xad>\\x90(\\x03\\x80\\xfak\\xfd\\xd8{\\xbb\\x1d\\a{\\a@\\\"\\t\\x8c\\x1a\\x97\\xc3k\\xb3\\x19\\x01\\xe1\\x94\\x01`\\x1c\\xeb\\x03 \\xed\\x01\\xb7\\xceT\\x1fJ\\x94\\x01@\\xfdq\\xf9\\xb8\\xbb{<\\x0ez\\n\\x80D\\x12\\x18=.\\x87\\xd7\\xe70\\x02\\xc2'\\x03\\xc08\\f\\x80\\x9d\\u07b7X}0Q\\x06\\x005k\\xebqw\\xf4z\\x1c\\xf4\\x16\\x00\\x89$0\\xbc:\\x87\\xf6y\\x9e\\xfe\\xbaDw\\x93\\x01`\\x1c\\x06\\xc0nޓV\\x1fN\\x94\\x01@\\u0378\\xb4v\\xcfs\\xfe\\xa5\\x04@\\\"\\t\\x8c\\xa8\\xc9\\xe1Ϗ\\xffN\\u007f]\\xa2;e\\x00\\x18\\x87\\x01\\xb0\\x97\\xbfz\\x8a\\xb7\\b\\xc6\\\\\\x06@\\xfc]X}O\\xbf\\xc7A\\u007f\\x01\\x90H\\x16~\\t\\xf8\\xfd\\xa3\\xcf\\xeb\\xafK\\x14\\f\\x00\\x1f`\\x00\\xf4\\xe0-O\\x00\\x03\\x18\\x01q\\x95\\x01\\x10g;\\xb1\\xb4vjQ\\xc7A1\\x01\\xd0\\x15\\x01\\xff\\x9d\\xf5\\xac\\xfe\\xbad\\xbd\\f\\x00\\xe30\\x00z\\x91\\xfb\\x04\\xc4V\\x06@|M\\xd5\\xdc\\xdd\\xe7\\xcf\\xfe\\xe5\\x04@\\\"\\t\\f\\x1b\\x93\\xc3+O\\xf3\\xc2@]\\x19\\x00\\xc6a\\x00\\xf4b\\xca\\x03~\\xf2\\bp\\xf8\\x04\\xf5\\x81E\\x19\\x00\\xb4\\u007f\\x17Tw\\xbf\\xd5\\xcfT\\x00$\\x92\\xc0ȱ9\\xbc\\xf24w\\fԓ\\x01`\\x1c\\x06@?\\xde\\xfc\\x04\\xaf\\t\\x88\\x99\\f\\x80\\xf89\\xbf\\xc4\\xe1_N\\x00$\\x92\\xc0\\xe8q;x\\x8b\\xa0\\x9a\\f\\x00\\xe30\\x00\\x8a\\xf0\\xd6Y\\xeaC\\x8b2\\x00hOvb\\xdd\\xd1ue\\x1d\\a\\xe5\\x04@\\\"Y\\xd8,\\xe8M\\xde\\\"\\xa8 \\x03\\xc08\\f\\x80\\\"\\xbdo\\x89\\xfa\\xe0\\xa2\\f\\x00\\xba\\xa7\\uec77\\x15}\\xce\\xdfT\\x00$\\x92\\x85g\\al\\xe5\\xb6\\xc1\\x01\\xcb\\x000\\x0e\\x03\\xa0\\x04\\xeb\\x16\\xaa\\x0f/\\xca\\x00\\xa0\\x05\\x17\\xd5\\xf6\\xbc\\xc3_\\x10\\x01\\x90H\\x02\\xa3j\\xf9(\\xe1`e\\x00\\x18\\x87\\x01P\\xa2\\xb7\\xf1\\xd9\\x01Q\\x97\\x01\\x10}Sc+\\x1b\\xfe&\\x02 \\x91\\x04\\x92cs\\xf8\\xd3c\\xdc,(\\x18\\x19\\x00\\xc6a\\x00\\x94\\xe1\\xed|\\x8a`\\x94e\\x00D\\xd9Nl\\x18\\xdf\\xfb\\xf6\\xbeA\\a@\\\"Y\\xb8E\\xf0\\xd5ټ;\\xc0\\u007f\\x19\\x00\\xc6a\\x00\\x94\\xe9\\xedsxw@De\\x00D\\xd5N\\xa4\\xc7\\xf6\\xbd\\xbd\\xafF\\x00$\\x92\\xc0\\xe0\\xd1y\\xfcu\\x1a\\u007f\\t\\xf0W\\x06\\x80q\\x18\\x00\\x15\\xf8\\xe3\\a\\x81\\x81Ǩ\\x0f4\\xca\\x00\\xb0\\xc1٣K\\xbf\\xd5/\\xa8\\x00H$\\x81#krxa:\\xaf\\t\\xf0O\\x06\\x80q\\x18\\x00\\x15z\\xfd\\x03@b\\x82\\xfaP\\xa3\\f\\x808;\\xaf\\x8c\\xfb\\xfc\\x83\\x0e\\x80D\\xb2pa O\\a\\xf8%\\x03\\xc08\\f\\x00\\x03\\xfe\\xf2I\\xf5\\xa1F\\x19\\x00q\\xb5\\xe9\\x183\\xe7\\xfc\\x83\\b\\x80D\\xb2\\xb0c\\xe0\\xf6\\xf9\\x9e\\xfe\\xba\\x14;\\x19\\x00\\xc6a\\x00\\x18rjJ}\\xb0Q\\x06@\\xdc\\\\qT\\x9d\\xb1s\\xfeA\\x05@W\\x04\\xbc\\xc1\\x1d\\x03\\r\\xcb\\x000\\x0e\\x03\\xc0\\xa0\\xb7\\xf1\\xee\\x80(\\xc8\\x00\\x88\\x86\\xa9\\xb1\\xfd?\\xd27\\xac\\x01\\x90H\\x02c\\xc6\\xed\\xe0\\xb3\\x03\\x8c\\xca\\x000\\x0e\\x03\\xc0\\xb0w\\xcdW\\x1fp\\x94\\x01\\x10uW\\x8e\\xab\\xf3\\xfd8\\xf0;\\x00\\x12I Y\\x9bÿg\\xf2Q\\xc2fd\\x00\\x18\\x87\\x01\\xe0\\x83S\\xebՇ\\x1ce\\x00D\\xd5\\xd6\\xe3\\xca\\xdf\\xde7l\\x01\\x90H\\x02#kr\\xf8\\xcfS\\x8c\\x80\\xcae\\x00\\x18\\x87\\x01\\xe0\\x93w-\\xe0>\\x01!\\x95\\x01\\x10^\\xd3\\x06v\\xf8\\v[\\x00$\\x92\\xc0\\xd019\\xfc\\xee\\xe1\\xe7\\xf5ץH\\xcb\\x000\\x0e\\x03\\xc0Goy\\x02\\xbcE0|2\\x00\\xc2h'\\xe6\\x8c1\\u007f\\xab_X\\x02 \\x91\\x04\\x86W\\xe7\\xf0\\xfc#\\x8c\\x80\\xf2e\\x00\\x18\\x87\\x01\\xe0\\xb3?~\\x88\\x11\\x102\\x19\\x00a\\xb3\\x13s\\xc7\\xf8{\\xc1_\\x18\\x02 \\x91,\\x9c\\x0e\\xf8\\xef,^\\x18X\\x9e\\f\\x00\\xe30\\x00|6\\xe5\\x15\\\"\\x80\\xa7\\x03B#\\x03 \\\\.\\xab\\xf5\\xefV\\xbf\\xb0\\x05@\\\"Y\\xb8E\\x90\\x8f\\x12.G\\x06\\x80q\\x18\\x00\\x01y\\xebS\\x8c\\x80\\x90\\xc8\\x00\\b\\x8f\\xf55\\xc1\\u007f\\xf3\\xd7\\x0e\\x80D\\xb2\\xb0c\\xe0\\xeb\\xdc'\\xa0D\\x19\\x00\\xc6a\\x00\\x04\\xe8\\xafg\\xa9\\x0f?\\xca\\x00\\b\\x8b\\xf5\\x01^\\xf0\\x17\\xb6\\x00H$\\x811G\\xed\\xe0fA%\\xc9\\x000\\x0e\\x03 `\\xefZ\\xa0>\\x00m\\x97\\x01\\xa0m'\\x1a&ܮ~\\x1ch\\a@\\\"Y\\xd8'`\\xdb<F@q2\\x00\\x8c\\xc3\\x00P\\xf0\\xfe%ꋟ\\xcd2\\x00t\\r\\xc3\\xf0\\x0fK\\x00$\\x92\\x85k\\x02^|\\x92\\xfb\\x04\\xf4/\\x03\\xc08\\f\\x00%\\uf627\\xbe\\x00\\xda*\\x03@\\xcfz\\x9f\\xb7\\xf7\\x8db\\x00$\\x92\\xc0\\x91c\\xb9O@\\xff2\\x00\\x8c\\xc3\\x00P\\xf4\\xd7O\\xf3\\xc2@\\x06\\x805\\xd6\\xd7\\xe8\\x9e\\xf3\\x0fs\\x00$\\x92\\x85}\\x02~\\xcf}\\x02\\xfa\\x90\\x01`\\x1c\\x06\\x80\\xb2\\xbc0\\x90\\x01\\x10{;\\xb1\\xb4\\xb6N\\xfd}\\x0f{\\x00$\\x92\\xc0\\x90\\xd1y\\xbc\\xca\\a\\b\\xf5\\\"\\x03\\xc08\\f\\x80\\x10x\\x037\\x19\\xda[r\\x00\\x00 \\x00IDAT\\vb\\x00\\xc4\\xd5\\xc2&?\\x1a\\xf7\\xf9G1\\x00\\x12\\xc9\\xc2/\\x01\\xff|\\xf29\\xfdu)t2\\x00\\x8c\\xc3\\x00\\b\\x81]\\x9b\\x051\\x02\\x18\\x001sn\\xc0\\xdb\\xfb\\xc6!\\x00\\x12\\xc9\\xc2>\\x01|\\x94\\xf0\\xde2\\x00\\x8c\\xc3\\x00\\b\\x91\\xb7\\xcc\\x00\\x06\\xf0\\x9a\\x00\\x06@<\\f\\xf2\\xc1>q\\v\\x80D\\x12\\x18=\\x8e;\\x06\\xee)\\x03\\xc08\\f\\x80\\x9095\\xa5\\xbe0\\xc6]\\x06\\x80\\xff\\xb6N\\xfc\\xb5\\xfa\\xfb\\x1c\\xf5\\x00H$\\x81\\xe15yl\\x9f\\xef\\xe9\\xafK\\xa1\\x90\\x01`\\x1c\\x06@\\be\\x040\\x00\\\"\\xec\\xcaqw\\x85\\xf2\\x9c\\u007f\\x14\\x03 \\x91,l\\x16\\xc4\\xd3\\x01\\x1e\\x18\\x00>\\xc0\\x00\\b\\xa9w\\xccW_ \\xe3*\\x03\\xc0?S!\\xbb\\xd5/\\x0e\\x01\\x90H\\x16\\xae\\txa\\xba\\xed\\x17\\x062\\x00\\x8c\\xc3\\x00\\b\\xb1\\xdc,\\x88\\x01\\x10!W\\x1eu\\x97\\xfa{\\x1b\\xd7\\x00H$\\v\\x8f\\x12\\xfe\\xfb\\x136G\\x00\\x03\\xc08\\f\\x80\\x90{wZ}\\xa1\\x8c\\x9b\\f\\x00\\xf36M\\xb8=\\x12?\\xfbG9\\x00\\x12\\xc9\\xc2>\\x01\\xff\\x9ei\\xeb\\xb6\\xc1\\f\\x00\\xe30\\x00\\\"\\xe0-3\\xc0[\\x04\\x19\\x00au^ux\\xb6\\xf7\\x8d{\\x00$\\x92\\xc0\\xb01\\xb6\\xee\\x18\\xc8\\x000\\x0e\\x03 \\\"\\xde\\xf0 0\\xf0\\x18\\xf5E3\\x0e2\\x00Lى٣\\xc3{\\x9f\\u007f\\\\\\x03 \\x91\\x04\\x92cs\\xf8\\xfb\\f\\xdbN\\a0\\x00\\x8c\\xc3\\x00\\x88\\x90?y\\x98\\xcf\\x0e`\\x00\\x84\\xc4N,\\xae\\x99\\xaa\\xfe^\\xda\\x1a\\x00\\x89d\\xe1\\x01B\\xedV=J\\x98\\x01`\\x1c\\x06@\\x84Ly\\xc0\\xeds\\xd5\\x17Ψ\\xcb\\x00\\xa8܍\\xe3\\xa3w\\xce?n\\x01\\x90H\\x02ê\\xf3h\\xb7f\\xb3 \\x06\\x80q\\x18\\x00\\x11\\xf47\\xb3\\xd5\\x17\\xcf(\\xcb\\x00\\xa8\\xcc\\xf4\\xd8h\\u007f\\xf3\\x8fS\\x00$\\x92\\x85\\x1d\\x03_\\x9bmC\\x040\\x00\\x8c\\xc3\\x00\\x88\\xa8\\xb7\\xcdQ_@\\xa3*\\x03\\xa0|\\x17\\xc7d\\xf8\\xc7)\\x00\\n\\x11\\xb0Â͂\\x18\\x00\\xc6a\\x00DX\\xde\\\"\\xc8\\x00\\b\\xccNd\\x8f\\r\\xff\\xf6\\xbe\\xb6\\x06@\\\"Y\\xd86\\xf8\\x8d9q\\xfe%\\x80\\x01`\\x1c\\x06@Ľo\\x89\\xfaB\\x1a5\\x19\\x00\\xa5\\xbb\\xee\\xe8;#\\u007f\\xce?\\xee\\x01\\x90H\\x02\\xc3\\xc6\\xe4\\xf1\\xaf'\\xe3\\xbaO\\x00\\x03\\xc08\\f\\x80\\x18x\\xebS\\xbc;\\x80\\x01\\xe0\\x9b\\v\\\"z\\x9f\\xbf\\x8d\\x01\\x90H\\x02#jrx>\\x96\\xfb\\x040\\x00\\x8c\\xc3\\x00\\x88\\x89\\xbf\\x98\\x01\\x1c>A}Q\\x8d\\x82\\f\\x80R\\x86\\u007ft\\xf6\\xf6g\\x00\\xbc\\xe5\\xf0\\xea\\x1c^\\x98\\xfe;\\xfduɨ\\f\\x00\\xe30\\x00b\\xe4O\\x1fS_T\\xa3 \\x03\\xa0\\x18;\\x91\\xaa\\xa9S\\u007f\\xaf\\x18\\x00\\xe5;\\xac:\\x8f\\xad\\xb1\\xda'\\x80\\x01`\\x1c\\x06@\\x8cLy;\\u007f\\t\\xe0\\xe9\\x00\\x06@e.\\x1b\\x1b\\x8dG\\xfa2\\x00\\xfavxu\\x0e\\xafΎ\\xcb\\xdd\\x01\\f\\x00\\xe30\\x00b\\xe8\\xcdO\\xa8/\\xaea\\x96\\x01з\\vc\\xfc\\xb3\\xbfm\\x01\\x90H\\x16n\\x11\\x8c\\xc7>\\x01\\f\\x00\\xe30\\x00bꯟV_`\\xc3*\\x03\\xa0w\\x97\\xd5֩\\xbf?\\f\\x00\\xf3&ks\\xd8\\x1a\\xf9\\x1d\\x03\\x19\\x00\\xc6a\\x00\\xc4\\xd8{\\xb8O\\x00\\x03\\xa0x7M\\xfcu\\xec\\u007f\\xf6\\xb75\\x00\\x12I`xu\\x1e\\xeds=\\xfdu\\xa9l\\x19\\x00\\xc6a\\x00\\xc4ܻS\\xea\\vm\\xd8d\\x00twŸ\\xbb\\xd4\\xdf\\x17\\x06\\x80\\xff\\x8e\\xac\\xc9Ex\\xc7@\\x06\\x80q\\x18\\x00\\x16x\\xebS\\xea\\x8bm\\x98d\\x00\\xecij\\xac\\x1d\\xe7\\xfc\\x19\\x00\\x05G\\xd5F\\xf5Q\\xc2\\f\\x00\\xe30\\x00,\\xf1\\x8ey\\xea\\vnXd\\x00tى\\x95\\x16~\\xf3\\xb7=\\x00\\x12I`Xu\\x0e\\xffy*j;\\x062\\x00\\x8c\\xc3\\x00\\xb0H>J\\x98\\x01\\xb0\\x9b\\xcbj\\xe3\\u007f\\xab\\x1f\\x03\\xa0w\\x87\\x8e\\xc9㟑\\xfa%\\x80\\x01`\\x1c\\x06\\x80=\\xe6\\xea=\\xfc\\xee\\xbb\\xd7\\x01\\x87\\xeb/\\xbe\\f\\x00]O?\\xf1\\r\\xe0\\xa1\\x15V\\xfb\\xe2\\xed\\xeb\\xd5\\xdf\\am\\x87\\x8d\\xc9\\xe1oOD%\\x02\\x18\\x00\\xc6a\\x00\\xd8a\\xbe\\xdeÅ\\xa7\\xbf\\x86\\x05w}\\x13\\xb8\\xedp\\xab#\\x80\\x01\\x00\\x9cyr\\xbb\\xfa1\\xa9\\xed?\\xa7?\\xa7\\xfe>\\x84\\xc1Q\\xb5Qy\\x940\\x03\\xc08\\f\\x80\\xf8ۙ\\xf2p\\xcdy\\xaf \\x91D!\\x00\\\\\\x01\\xee:\\\\}\\x103\\x00\\x18\\x00\\x9a2\\x00\\xderxu\\x1e\\xdbB\\u007f\\x8b \\x03\\xc08\\f\\x80\\xf8\\xfb\\x8d3_\\xdb\\xf5A\\xdf\\x15\\x00\\xae\\x00\\x0f\\x1f\\xa4>\\x8c\\x19\\x00:2\\x00\\x18\\x00{;\\xac:\\x8f7B\\xbdY\\x10\\x03\\xc08\\f\\x80\\xf8ڙ\\xf2\\xf0ͳ^\\xdd\\xe3C\\xbeG\\x00\\xb8\\x02<\\xf4Y\\xf5\\x81\\xcc\\x00\\b^\\x06\\x00\\x03\\xa0'G\\xd5\\xe6\\xf0jh\\xb7\\rf\\x00\\x18\\x87\\x01\\x10O;S\\x1e\\xfe\\xf7\\xeb/u\\xfb\\x80w\\v\\x00W\\x80\\xfb>\\xa7>\\x94\\x19\\x00\\xc1\\xca\\x00`\\x00\\xf4\\xe6\\xa8\\xda\\\\H\\x9f\\x1d\\xc0\\x000\\x0e\\x03 \\x9e^=\\xe5\\x95\\x1e?\\xdc=\\x06\\x80+\\xc0\\xd3\\a\\xa8\\x0ff\\x06@p2\\x00\\x18\\x00}9<\\x94\\x8f\\x12f\\x00\\x18\\x87\\x01\\x10?\\xbf~\\xfak\\xbd~\\xb0{\\r\\x00W\\x80\\x99\\x9fP\\x1f\\xce\\f\\x80`d\\x000\\x00\\xfasDM\\x0e\\xff\\xef\\xb1ߩ\\xbfOo\\xc9\\x000\\x0e\\x03 >v,\\xf4pީo\\xf4\\xf9\\xa1\\xee3\\x00\\\\\\x01\\xee?4\\xf6\\xb7\\b2\\x00\\x18\\x00H3\\x00\\x8aqxu\\x0e\\xbf{\\xf8y\\xf5\\xf7\\xaa \\x03\\xc08\\f\\x80x\\x98\\xab\\xf7p\\xc6\\xe4\\xad\\xfd~\\xa0\\xfb\\r\\x00W\\x80\\xbb\\x0f\\x8bu\\x040\\x00\\x18\\x00H3\\x00\\x8auؘ\\x1c\\xfe=3\\f\\xdb\\x063\\x00\\x8c\\xc3\\x00\\x88\\x87\\xe7\\x9e\\xfazQ\\x1f\\xe6\\xa2\\x02\\xc0\\x11\\xa0.\\xbe\\xfb\\x040\\x00\\x18\\x00H3\\x00Jq\\xd8\\xe8\\x1c^V\\xdf,\\x88\\x01`\\x1c\\x06@\\xb4\\xedLy\\xb8\\xf8\\x8c\\xde\\xcf\\xf9\\xefmQ\\x01\\xd0\\xe5o\\x12@\\xe2h\\xf5\\x81\\xcd\\x000/\\x03\\x80\\x01P\\xaa#j\\xf2xy\\x96f\\x040\\x00\\x8c\\xc3\\x00\\x88\\xae\\xf9\\x94\\x87+{\\xb9ڿ7K\\n\\x00W\\x80\\xa9\\xf1;\\x1d\\xc0\\x00`\\x00 \\xcd\\x00(G\\xdd[\\x04\\x19\\x00\\xc6a\\x00D\\xd3Δ\\x87\\xef_\\xf8r\\xc9\\x1f\\xe0\\x92\\x03\\xc0\\x15\\xe0\\x81CՇ6\\x03\\xc0\\xac\\f\\x00\\x06@\\xb9&ks\\xd86O\\xe3=c\\x00\\x18\\x87\\x01\\x10M\\xbfuni\\xdf\\xfc\\xbb,+\\x00\\\\\\x01\\x9e\\xfe\\x98\\xfa\\xe0f\\x00\\x98\\x93\\x01\\xc0\\x00\\xa8\\xc4\\xe1\\xd5y\\xbc1'\\xe8_\\x02\\x18\\x00\\xc6a\\x00D\\xcb|\\xca\\xc3\\xe5g\\xbfZ\\xf6\\a\\xb7\\xec\\x00p\\x05\\x98~\\x90\\xfa\\xf0f\\x00\\x98\\x91\\x01\\xc0\\x00\\xa8\\xd4\\xe4ؠ\\x1f%\\xcc\\x000\\x0e\\x03 :v,,\\xfd\\x9c\\xff\\xdeV\\x14\\x00\\xae\\x00\\x0f\\x1f\\xac>\\xc0\\x19\\x00\\x95\\xcb\\x00`\\x00\\x98096\\x87?<\\x1a\\xd4>\\x01\\f\\x00\\xe30\\x00\\xa2a>\\xe5\\xe1\\xbcӊ\\xbbկ/+\\x0e\\x00W\\x80G\\xa2\\xfdK\\x00\\x03\\x80\\x01\\x804\\x03\\xc0\\x94C\\xc7\\x04u\\x8b \\x03\\xc08\\f\\x80h\\xf8\\xb5/\\xf7\\xbf\\xc9O1\\x1a\\t\\x80\\xae\\b\\x88\\xe8\\xdd\\x01\\f\\x00\\x06\\x00\\xd2\\f\\x00\\x93\\x0e\\x1e\\x9dǟ\\x1f\\xf7{\\xdb`\\x06\\x80q\\x18\\x00\\xe1v\\xc7B\\x0fgL\\xee{{\\xdfR4\\x16\\x00\\x8e\\x00\\xbfJ\\x00\\x03\\x8fV\\x1f\\xe8\\f\\x80\\xd2e\\x000\\x00L;\\xb2&\\x87\\xbfN\\xf73\\x02\\x18\\x00\\xc6a\\x00\\x84\\xd7\\\\\\xbd\\x87+\\xce)\\xff\\x82\\xbf\\x9e4\\x16\\x00]\\xde:\\x10Q\\xdb,\\x88\\x01\\xc0\\x00@\\x9a\\x01\\xe0\\x87ɱ9\\xbc:ۯ\\xd3\\x01\\f\\x00\\xe30\\x00\\xc2\\xeb5\\xe7\\x95~\\x9f\\u007f\\u007f\\x1a\\x0f\\x00W\\x80{\\x0fQ\\x1f\\xea\\f\\x80\\xd2d\\x000\\x00\\xfcrDM\\x1e\\xdb\\xe7\\xfb\\xf1\\x9e1\\x00\\x8c\\xc3\\x00\\b\\xa7W\\x97y\\x9f\\u007f\\u007f\\xfa\\x12\\x00\\xae\\x00OF\\xe7Q\\xc2\\f\\x00\\x06\\x00\\xd2\\f\\x00?\\x1dQ\\x93\\xf3a\\x9f\\x00\\x06\\x80q\\x18\\x00\\xe12\\x9f\\xf2p\\xd5\\x14\\xb3?\\xfb\\xef\\xaeo\\x01\\xe0\\n\\xf0H4n\\x11d\\x000\\x00\\x90f\\x00\\xf8\\xed\\xe8\\xda\\x1d\\x86\\xef\\x0e`\\x00\\x18\\x87\\x01\\x10\\x1e\\xf3\\xf5\\x1e\\xbes\\xbe\\xf9\\x9f\\xfdw\\xd7\\xd7\\x00p\\x05x\\xfc\\xb3\\xea\\x03\\x9e\\x01п\\f\\x00\\x06@\\x10\\x1e96\\x87\\x17\\x8d=J\\x98\\x01`\\x1c\\x06@x4}\\xc1_O\\xfa\\x1e\\x00\\xae\\x003\\xc2}:\\x80\\x01\\xc0\\x00@\\x9a\\x01\\x10\\x94#\\xaaME\\x00\\x03\\xc08\\f\\x00}\\xf3\\xf5\\x1e\\xce=\\xb5\\xf2M~\\x8a1\\x90\\x00p\\x05\\x98\\xf6\\xe9\\xd0\\xee\\x13\\xc0\\x00`\\x00 \\xcd\\x00\\bҡcrx\\xf6\\xa1Jw\\fd\\x00\\x18\\x87\\x01\\xa0\\xeb\\x9b\\v\\xb6`\\xf2\\x97\\xda\\x03\\xfb \\x06\\x16\\x00\\xae\\x14\\x1e%\\x1c\\xc2[\\x04\\x19\\x00\\f\\x00\\xa4\\x19\\x00A;\\xac:\\x8f\\xe7\\x1e\\xae$\\x02\\x18\\x00\\xc6a\\x00\\xe8\\xb9c\\xa1\\x87sN1\\xb7\\xc9O1\\x06\\x1a\\x00\\xae\\x146\\vJ\\xe8\\x0f}\\x06\\xc0\\x9e2\\x00\\x18\\x00\\x1a\\x8e\\xa8\\xc9\\xe1?O\\x95{:\\x80\\x01`\\x1c\\x06\\x80\\x9e\\x95<կ\\\\\\x03\\x0f\\x00G\\x80_\\r\\n\\xd5\\xe9\\x00\\x06\\x00\\x03\\x00i\\x06\\x80\\x96#ǖ{\\x8b \\x03\\xc08\\f\\x80\\xe0\\xedLy\\xb8\\xaa§\\xfa\\x95k\\xe0\\x01\\xd0\\x15\\x01\\xf7\\x1e\\x12\\x9a\\b`\\x000\\x00\\x90f\\x00h\\x9a\\xac\\xcd\\xe1\\xb5٥F\\x00\\x03\\xc08\\f\\x80`ͧ<|\\xf7\\x02\\u007fo\\xf5\\xebK\\x95\\x00\\xe8\\xf2\\x81p\\xec\\x18\\xc8\\x00`\\x00 \\xcd\\x00\\xd0v\\xf4\\xb8\\x1dx\\xbd\\xa4\\b`\\x00\\x18\\x87\\x01\\x10\\x9c\\x9d\\xca\\xc3?\\x91T\\x0e\\x00W\\nw\\a0\\x00\\xd4e\\x000\\x00\\xc2\\xe0\\x91csh\\x9f[l\\x040\\x00\\x8c\\xc3\\x00\\b\\xce+}\\xdc\\xe1\\xafX\\xd5\\x03\\xc0\\x15`\\xf6\\x81\\f\\x00e\\x19\\x00\\f\\x80\\xb08\\xa2&\\x8f\\u007f>\\xf9\\\\\\x11\\xef\\x19\\x03\\xc08\\f\\x00\\xffݱ\\xd0\\xc3\\xe5\\x01l\\xf2S\\x8c\\xa1\\b\\x00W\\x80\\xc7>\\xcb\\x00P\\x94\\x01\\xc0\\x00\\b\\x93#k\\x8a\\xd9'\\x80\\x01`\\x1c\\x06\\x80\\xbf\\xbe\\xb9`K\\xe0\\xb7\\xfa\\xf5eh\\x02\\xc0\\x95\\xc25\\x01\\n\\x17\\x062\\x00\\x18\\x00H3\\x00\\xc2\\xe6\\xb0\\xea<\\x9e\\u007f\\xa4\\xaf\\b`\\x00\\x18\\x87\\x01\\xe0\\x9f\\xf9z/\\xd0M~\\x8a1T\\x01\\xe0\\n\\xf0@\\xf0\\x0f\\x10b\\x000\\x00\\x90f\\x00\\x84\\xd1\\xc1\\xa3\\xf3}<@\\x88\\x01`\\x1c\\x06\\x80\\u007f\\x9e{Z0\\xdb\\xfb\\x96b\\xe8\\x02\\xc0\\x95\\xc2>\\x01\\x01\\xee\\x18\\xc8\\x00`\\x00 \\xcd\\x00\\b\\xabës\\xbd\\\\\\x13\\xc0\\x000\\x0e\\x03\\xc0\\xbc\\xf9\\xfa\\xf0\\x9c\\xf3\\xdf\\xdbP\\x06\\x80+\\xc0\\xaf\\x06\\\"\\xa8\\b`\\x000\\x00\\x90f\\x00\\x84\\xd9dm\\x0e/\\xcf\\xda\\xfb\\x97\\x00\\x06\\x80q\\x18\\x00fͧ<|\\xfb|\\x9dM~\\x8a1\\xb4\\x01\\xe0\\np\\xcfa\\f\\x80\\x80d\\x000\\x00\\xc2\\xee\\xa8ڽw\\fd\\x00\\x18\\x87\\x01`֫Bp\\xab__\\x86:\\x00\\\\\\x01\\x9e\\xf4\\xffQ\\xc2\\f\\x00\\x06\\x00\\xd2\\f\\x80(8\\xac:\\x8f\\xed\\xf3\\xbb\\xde3\\x06\\x80q\\x18\\x00\\xe6\\xbc\\xfa\\xdc\\xf0~\\xf3\\xef2\\xf4\\x01\\xe0\\n0\\xe3\\x93\\f\\x00\\x9fe\\x000\\x00\\xa2\\xe2\\x91c\\xbbN\\a0\\x00\\x8c\\xc3\\x00\\xa8\\xdc\\\\\\xbd\\x87k\\xce\\v\\xff\\xf0O$#\\x12\\x00\\xae\\x00\\x8f\\xfb\\xb7m0\\x03\\x80\\x01\\xc0\\x00\\x88\\x96\\xc9\\xda\\x1c\\xfe:}3\\x03\\xc04\\f\\x80\\xca\\f\\xd3&?\\xc5\\x18\\x99\\x00pŷ͂\\x18\\x00\\f\\x00\\x06@\\xf4\\xac>j+\\x03\\xc04\\f\\x80\\xca<\\xf3+\\xe1\\xd9\\xe4\\xa7\\x18#\\x15\\x00\\xae\\x003?\\xce\\x00\\xf0A\\x06\\x00\\x03 j\\x0e\\xad\\xde\\xc6\\x000\\r\\x03\\xa0<\\xf3)\\x0f_\\xfb\\xf2V\\xf5\\x0fE\\xa9F.\\x00\\\\\\x01\\xee\\xf9\\x1cL\\xde\\\"\\xc8\\x00`\\x000\\x00\\xa2'\\x03\\xc0\\a\\x18\\x00\\xa5۱\\xd0\\xc3y!\\xdc\\xe4\\xa7\\x18#\\x19\\x00\\xae\\x14\\xf6\\t\\x18h&\\x02\\x18\\x00\\f\\x00\\x06@\\xf4d\\x00\\xf8\\x00\\x03\\xa04\\xf3)\\x0fWL\\x89\\xc6\\x05\\u007f=\\x19\\xd9\\x00p\\x05\\xf8\\xcd #\\xcf\\x0e`\\x000\\x00\\x18\\x00ѓ\\x01\\xe0\\x03\\f\\x80Ҽ\\xec\\xec\\xe8\\\\\\xf0ד\\x91\\x0e\\x00W\\x80\\xc7\\x0eb\\x00\\x18\\x90\\x01\\xc0\\x00\\x88\\x9a\\f\\x00\\x1f`\\x00\\x14gg\\xca\\xc3U\\x11\\xb8Ͽ?#\\x1f\\x00\\xae\\x00\\x0fUv\\x8b \\x03\\x80\\x01\\xc0\\x00\\x88\\x9e\\f\\x00\\x1f`\\x00\\xf4o>\\xe5\\xe1\\xda\\v_V\\xff\\x00\\x980\\x16\\x01\\xe0\\n\\xf0ȡ\\f\\x80\\nd\\x000\\x00\\xa2&\\x03\\xc0\\a\\x18\\x00}ۙ\\xf2pE\\x84\\xee\\xf3\\xef\\xcf\\xd8\\x04\\x80+\\xc0\\xccO1\\x00ʔ\\x01\\xc0\\x00\\x88\\x9a\\f\\x00\\x1f`\\x00\\xf4\\xedE\\xa7\\xbf\\xa6~\\xe0\\x9b4V\\x01\\xe0\\n0\\xfbc\\f\\x802d\\x000\\x00\\xa2&\\x03\\xc0\\a\\x18\\x00=\\x9b\\xab\\xf70\\xe5\\xd4h\\xde\\xeaח\\xb1\\v\\x00W\\x80\\xfb>W\\xd2\\xdd\\x01\\f\\x00\\x06\\x00\\x03 z2\\x00|\\x80\\x01\\xd0ݎ\\x85\\xd1\\xdc\\xe4\\xa7\\x18c\\x19\\x00\\xae\\x146\\v*2\\x02\\x18\\x00\\f\\x00\\x06@\\xf4d\\x00\\xf8\\x00\\x03\\xa0\\xbb\\xe7\\x9c\\x12\\xad\\xed}K1\\xb6\\x01\\xe0\\np\\xc7@\\x06@\\x912\\x00\\x18\\x00Q\\x93\\x01\\xe0\\x03\\f\\x80=\\xbd\\xe0k\\xf1\\xfb\\xd9\\u007fwc\\x1d\\x00\\xae\\x00\\xf7$\\xfa\\xfd%\\x80\\x01\\xc0\\x00`\\x00DO\\x06\\x80\\x0f0\\x00\\nv\\xa6<\\\\\\x19\\x83\\xfb\\xfc\\xfb3\\xf6\\x01\\xe0\\n0u@\\x9f\\x11\\xc0\\x00`\\x000\\x00\\xa2'\\x03\\xc0\\a\\x18\\x00\\x85\\xe1\\xff\\xbd\\x98\\xdc\\xe7ߟV\\x04\\x80+\\xc0\\x83\\x871\\x00\\xfa\\x90\\x01\\xc0\\x00\\x88\\x9a\\f\\x00\\x1f`\\x00x\\xb8\\xf4\\xccx\\xdd\\xeaח\\xd6\\x04\\x80+\\xc0S=?J\\x98\\x01\\xc0\\x00`\\x00DO\\x06\\x80\\x0f\\xd8\\x1c\\x00\\x9d)\\x0f\\x97\\x9ca\\xcf\\xf0O$-\\v\\x00W\\x80\\x99\\x9fd\\x00\\xf4 \\x03\\x80\\x01\\x105\\x19\\x00>`k\\x00\\xe4\\xeb=\\\\\\x15\\xe1\\xa7\\xfa\\x95\\xabu\\x01\\xe0\\np\\xff\\x00\\x06\\xc0^2\\x00\\x18\\x00Q\\x93\\x01\\xe0\\x036\\x06@\\xae\\xde\\xc3\\xf9\\xa7\\xc5\\xfbj\\xff\\u07b42\\x00\\\\\\xd9\\xe3)\\x82\\f\\x00\\x06\\x00\\x03 z2\\x00|\\xc0\\xc6\\x00\\x88\\xeb&?\\xc5hm\\x00\\xb8\\x02<\\xfa\\x19\\x06\\xc0N\\x19\\x00\\f\\x80\\xa8\\xc9\\x00\\xf0\\x01\\x9b\\x02 Wo\\xf7\\xf0O$-\\x0f\\x00W\\x80\\xa9\\t,\\x1b\\xf9S\\xf5\\xf7A[\\x06\\x00\\x03 j2\\x00|\\xc0\\x96\\x00\\xc8\\xd7{8?\\xe6\\x9b\\xfc\\x14\\xa3\\xf5\\x01\\xe0\\n6M=\\r\\x83F\\xe5\\xd5\\xdf\\vM\\xcf\\xfa\\xc2\\xcb\\xc0\\xe9\\xdf\\x06\\xbe\\xf6-k\\xddv\\xf6\\xffb\\xd1}_\\xa3\\x11q\\xc9\\xfd\\xa70\\x00LcC\\x00t\\xa6<\\\\e\\xc1&?\\f\\x80\\xe2]s\\xdf\\xc5H$;\\xd5\\xdf\\x0f-\\xcf<\\xb9\\x1dx`9p\\xf8\\x84\\xb2\\x1e\\xa9\\x1c\\vGOR?\\x0ei\\x802\\x00\\xba\\x03\\v\\x02\\xe0b\\xcbn\\xf5c\\x00\\x14\\xa73m2\\x06Z\\x1a\\x01\\x85S\\x00m;#\\xe0h\\xfda\\xcc\\x00\\xa0~\\xcb\\x00\\xe8\\x0eb\\x1c\\x00\\x9d)\\xbb6\\xf9a\\x00\\x94\\xae\\xf3\\xf8)VF\\xc0\\x1e\\xd7\\x00ܽ\\b\\x18p\\xb4\\xfe@f\\x00P?e\\x00t\\a1\\r\\x80Δ\\x87k-\\xd9ޗ\\x01P\\x99\\x8d\\x0fOQ\\u007f_T\\x03 \\xed\\x01\\x0f\\xaf\\xd2\\x1f\\xc8\\f\\x00\\xea\\xa7\\f\\x80\\xee \\xa6\\x01p\\xc59<\\xe7ߓ\\f\\x80\\x9e}~\\xee8\\xf5\\xf7F5\\x00\\xd2\\x1e0\\xdb\\xd1\\x1f\\xca\\f\\x00\\xea\\x97\\f\\x80\\xee \\x86\\x01\\x10\\xf7G\\xfaV\\\"\\x03\\xa0w\\x9f}\\xfa\\x18\\xd8ra`\\xaf\\xb7\\x01\\u07bf̞k\\x02\\x18\\x00v\\xc9\\x00\\xe8\\x0eb\\x14\\x00\\x1d\\v=\\x9cs\\xca\\x1b\\xea\\x8bk\\x98e\\x00\\xf4m\\xd3#gYq\\x8b`\\x9f\\xfb\\x00LM\\x03\\x89c\\xf4\\a4\\x03\\x80\\x9a\\x94\\x01\\xd0\\x1d\\xc4$\\x00r\\xf5\\x1eN;\\xd9\\xeeM~\\x8a\\x91\\x01п\\xeb\\xee?\\x1f\\x03\\x93\\xf1\\x8e\\x80~7\\x02\\xbaoi\\xfc#\\x80\\x01`\\x97\\f\\x80\\xee &\\x01\\xc0o\\xfe\\f\\x00\\x93\\xae\\xbd\\xff\\x92X\\xdf\\x1d\\xd0o\\x00\\xa4ڀ{\\x16\\x01\\x03\\x8f\\xd5\\x1f\\xd4\\f\\x00jB\\x06@w\\x10\\xf1\\x00\\xe8Ly\\xb8\\xe8t\\xde\\xea\\xc7\\x000\\xefһ\\xae\\xc4\\xe0\\xd1\\xf1\\xfc%\\xa0譀\\xef\\xaaGl\\u007f\\t`\\x00\\xd8%\\x03\\xa0;\\x88p\\x00\\xe4S\\x1e.?\\xfbU\\xf5\\xc54J2\\x00Js\\xed\\xfd\\xe7\\xc7\\U0009a012\\x9e\\x0505\\x15\\xcf\\v\\x03\\x19\\x00v\\xc9\\x00\\xe8\\x0e\\\"\\x1a\\x00\\x9d)\\x0f\\xdf\\xe5}\\xfe\\f\\x80\\x00lz\\xe4L\\xc4\\xed\\ue012\\x1f\\x06\\xf4غ\\xf8E\\x00\\x03\\xc0.\\x19\\x00\\xddAD\\x03\\xe0\\xca)\\xbcϟ\\x01\\x10\\x9c\\xcfϭQ\\u007f\\xefT\\x03 \\xd5\\x06\\xcch\\xd0\\x1f\\xda\\f\\x00Z\\xae\\f\\x80\\xee b\\x01\\x90Oy\\xb8\\xec,\\xfe\\xec_\\xae\\f\\x80\\xf2m\\x9b\\xf9\\x05\\xf5\\xf7O-\\x00\\xba\\xbco)b\\xb3m0\\x03\\xc0.\\x19\\x00\\xddA\\x84\\x02\\xa0c\\xa1\\x87\\xcb\\xcf\\xe67\\xffJd\\x00T\\xa6\\xfb\\xf8\\xa9\\xb1\\xb8;\\xa0\\xec\\x00H{\\xc0\\xbdK\\xe2q:\\x80\\x01`\\x97\\f\\x80\\xee \\\"\\x01\\x90Oy8\\xf7T\\xde\\xea\\xc7\\x00\\xd0ם6\\x19Q\\xbf&\\xa0\\xa2\\x00H{\\xc0\\xb4\\xf5@b\\x82\\xfe\\x10g\\x00\\xd0be\\x00t\\a\\x11\\t\\x00n\\xf2\\xc3\\x00\\b\\x93\\xee\\xb4ɑ\\xbe;\\xa0\\xe2\\x00H\\xb5\\x15\\x9e\\\"8h\\xa2\\xfe g\\x00\\xd0bd\\x00t\\a!\\x0f\\x80\\x1d\\v=\\x9c>\\x99ß\\x01\\x10>\\x17\\xdd\\xf9-\\f\\x1d\\x93S\\u007fOU\\x02\\xa0\\xcb\\xdb\\xe7\\x01G\\x1c\\xa7?\\xcc\\x19\\x00\\xb4?\\x19\\x00\\xddA\\x88\\x03 W\\xef\\u16fcϟ\\x01\\x10bS\\xb7_\\x13\\xc9͂\\x8c\\x05@\\xda۹Y\\xd0\\x04\\xfd\\x81\\xce\\x00\\xa0}\\xc9\\x00\\xe8\\x0eB\\x1c\\x00W\\x9f\\xcb\\v\\xfe\\x18\\x00\\xe1w\\xe3Cg\\xab\\xbf\\xaf\\xaa\\x01\\x90\\xf6\\x80'\\x1b\\xa3wa \\x03\\xc0.\\x19\\x00\\xddAH\\x03\\xe0*\\xde\\xe7\\xef\\x8b\\f\\x00\\u007f\\xfc\\xed\\xac\\x89\\x88҅\\x81\\xc6\\x03 \\xed\\x01\\x0f,G\\xa4n\\x11d\\x00\\xd8%\\x03\\xa0;\\bY\\x00\\xe4S\\x1e\\xae8\\x87?\\xfb3\\x00\\xa2\\xa7\\xfb\\xf8)\\xea\\xef\\xafj\\x00\\xa4\\xbd\\xc2-\\x82ڃ\\x9d\\x01\\x10O\\x9b?[\\xd9\\xff\\x9f\\x01\\xd0\\x1d\\x84(\\x00r\\xf5\\x1e\\xbeş\\xfd}\\x95\\x01\\xe0\\xaf\\xcf\\xcc8Y\\xfd=V\\r\\x80\\xb4\\a<\\xb2:\\x1a\\xa7\\x03\\x18\\x00ѱ\\xe9\\b \\xddR\\xd9\\u007f\\x83\\x01\\xd0\\x1d\\x84(\\x00x\\xc1\\x1f\\x03 \\x0en\\x99u,\\xc2~:\\xc0\\xd7\\x00H\\xb5\\x013\\\"pM\\x00\\x03 \\x1a6\\x1d\\f\\xa47\\x01i\\xb7\\xb2\\xff\\x0e\\x03\\xa0;\\bA\\x00\\xe4\\xea=L\\xe1&?\\x81\\xc8\\x00\\b\\xc6gf\\x9c\\x10\\xea}\\x02|\\r\\x80.\\xefY\\x82P?J\\x98\\x01\\x10~\\x1b\\x87\\x00\\xe9gv\\x1eS\\f\\x00\\xe3@9\\x00\\xde\\\\\\xb0\\x05_>\\xb1]}A\\xb4E\\x06@p\\xae\\xbd\\xff\\x02\\f\\x1e\\x1d\\xce}\\x02\\x02\\t\\x80\\xb4\\aܹ\\x00\\x18\\x14\\xd2}\\x02\\x18\\x00\\xe1\\xb6q\\xd8n\\xc3\\xdfc\\x00\\xf8\\x01\\x14\\x03`\\xc7B\\x0fg\\u007f\\x95\\xdf\\xfc\\x19\\x00\\xf15}\\xe7\\xd58\\\"\\x84\\xbf\\x04\\x04\\x16\\x00i\\x0f\\xb8+\\x15\\xce͂\\x18\\x00\\xe1\\xb5頽\\x86\\xbf\\xc7\\x00\\xf0\\x03(\\x06\\x00\\x9f\\xea\\xc7\\x00\\xb0\\xc1Ew\\\\\\x83A\\xa3\\xc2uM@\\xa0\\x01\\x90j+<E0l\\xa7\\x03\\x18\\x00\\xe14\\xf3\\x81^\\xe6\\n\\x03\\xc08P\\b\\x80Δ\\x87+x\\xc1\\x1f\\x03\\xc0\\\"7>tV\\xa8\\xae\\t\\b4\\x00\\xba\\xbc{Q\\xb8.\\fd\\x00\\x84ϖ\\x8f\\xa0p\\xc1_O\\xc7\\x10\\x03\\xc08\\b8\\x00\\xf2)\\x0fל\\xf7\\xb2\\xfa\\x02h\\xab\\f\\x00=\\x9b\\x1f934\\x8f\\x12V\\t\\x80\\xb4W\\xb80P{\\xf03\\x00\\xc2i\\xf3\\x81@\\xba\\xb5\\x8f\\xe3\\x87\\x01`\\x1c\\x04\\x18\\x00\\x9d\\x1c\\xfe\\xea2\\x00t}\\xe6\\xc9\\x13Տ\\x01\\xd5\\x00H{\\x85[\\x04ðc \\x03 <6\\u007f\\xb2\\x8fo\\xfe]2\\x00\\x8c\\x83\\x00\\x03\\x80?\\xfb\\xeb\\xcb\\x00\\xd0\\xf7\\xf9\\xb9\\xb5\\xeaǁj\\x00\\xa4=\\xe0\\xf1u\\xfa\\x11\\xc0\\x00\\b\\x87M\\x87\\x16\\x86{\\xbf\\xc7\\r\\x03\\xc08\\b \\x00v,\\xe4\\x05\\u007fa\\x91\\x01\\x10\\x0e[\\xa7OV=\\x1d\\xa0\\x1e\\x00i\\x0f\\xb8{1p\\xf8\\x04\\x06\\x80\\xcd6\\x8cD\\xf7\\xab\\xfd{\\x93\\x01`\\x1c\\xf8\\x1c\\x00o\\xce\\xdf\\xc2[\\xfdB$\\x03 <6?r\\x86څ\\x81\\xa1\\b\\x80\\xb4\\xb7s\\xb3 \\xa5\\b`\\x00\\xe8Z\\xd2\\xf0\\xf7\\x18\\x00~\\x00\\x1f\\x03 W\\xefq\\x93\\x9f\\x90\\xc9\\x00\\b\\x97M\\x8f\\x9c\\xae\\xf2K@h\\x02 \\xed\\x01\\x0f.\\xd7\\xd9,\\x88\\x01\\xa0gӡ%\\x0e\\u007f\\x8f\\x01\\xe0\\a\\xf01\\x00\\xa6\\x9c\\xc2o\\xfea\\x93\\x01\\x10>\\x17\\xdd\\xf1\\xed\\xc0w\\f\\fU\\x00\\xa4ڀ;\\x17\\x06\\xbfY\\x10\\x03@\\xc7\\xe6O\\xa2\\xb8s\\xfe{\\xcb\\x000\\x0e|\\b\\x80\\\\=\\x1f\\xec\\x13V\\x19\\x00\\xe14u\\xe75\\x18<:\\xb8\\xd3\\x01\\xa1\\n\\x80.\\xef\\\\\\b\\f\\fp\\xb3 \\x06@\\xf06\\x1f\\x88\\xfe\\xaf\\xf6\\xefM\\x06\\x80q`8\\x00\\xf2)>\\xd27\\xcc2\\x00\\xc2\\xeb\\xba\\xfb\\xcfàd0\\x11\\x10\\xca\\x00H{\\x85\\x1d\\x03\\x83\\xda,\\x88\\x01\\x10\\xac-\\x1fA\\xdf\\xf7\\xf9\\xf7'\\x03\\xc080\\x1c\\x00W\\x9c\\xc3o\\xfea\\x96\\x01\\x10n\\u007f;k\\xa2\\xdd\\x01\\x90\\xf6\\x80\\xa7\\x1d\\x06@\\xdc\\xcc|\\xa0\\x82o\\xfe]2\\x00\\x8c\\x03\\x83\\x01p\\xe5\\x14~\\xf3\\x0f\\xbb\\f\\x80\\xf0\\xbb\\xe5\\xa9Iv\\a@\\xda\\x03\\x1e\\\\\\xc9\\x00\\x88\\x8b\\xcd\\au\\xfb\\xa2\\xc8\\x00\\b\\t0\\x10\\x00\\xb9z\\x0fW\\xf3g\\xffH\\xc8\\x00\\x88\\x86\\x9b\\xa6\\u007f\\xc5\\xee\\x00H{\\xc0\\xbdK\\xe1\\xebfA\\f\\x00\\xff\\xed\\xf6H\\xdfJd\\x00\\x18\\a\\x15\\x06\\xc0\\x8ez\\x97\\x17\\xfcEH\\x06@tl\\x9d>\\x19\\t\\x9fn\\x11\\x8cD\\x00\\xa4=\\xe0\\x91\\xd5\\xfem\\x16\\xc4\\x00\\xf0\\xd7\\xc6!\\x06\\x87\\xbf\\xc7\\x00\\xf0\\x03T\\x18\\x00SN\\xf9\\xaf\\xfaP\\xa3\\f\\x80\\xb8\\xbae\\xd61\\xf0#\\x02\\\"\\x13\\x00\\xa96\\xe0\\xf1\\xf5\\xf0\\xe5Q\\xc2\\f\\x00\\xffl<\\xd8\\xf0\\xf0\\xf7\\x18\\x00~\\x80\\n\\x03`X\\xcdV\\xf5\\xa1F\\x19\\x00qv\\xdd\\xfd\\xe7c\\xf0(\\xb3\\xfb\\x04D&\\x00\\xba\\xbck!p\\xc4$\\x06@\\x14l<\\x02\\x95_\\xf0ד\\f\\x00\\xe3\\x80\\x01`\\x95\\f\\x80h\\x9a\\xba\\xe3\\x1a\\f1\\xb8YP\\xe4\\x02 \\xed\\x01\\xb7\\xcf\\a\\x06Md\\x00\\x84٦C`\\xfe\\x9b\\u007f\\x97\\f\\x00\\xe3\\x80\\x01`\\x95\\f\\x80\\xe8\\xba\\xf8\\xae\\xab1h\\x94\\x99\\xd3\\x01\\x91\\f\\x80\\xb4W\\xd8'\\xc0Գ\\x03\\x18\\x00fm\\xf90\\xfc\\xf9\\xe6\\xdf%\\x03\\xc08`\\x00X%\\x03 ں\\xd3N\\x82\\x89k\\x02\\\"\\x1b\\x00\\xa96\\xe0\\xd15f6\\vb\\x00\\x98\\xd3\\xd9\\x17\\xe5m\\xef[\\x8a\\f\\x00\\xe3\\x80\\x01`\\x95\\f\\x80\\xe8\\xdb\\xf2\\xe8i\\x15?@(\\xb2\\x01\\xd0\\xe5=K\\x18\\x00a\\xb1\\xa2\\xed}K\\x91\\x01`\\x1c0\\x00\\xac\\x92\\x01\\x10\\x0f\\x9d\\xc7N\\xb3;\\x00\\xd2\\x1e\\xf0\\xc02\\x06\\x80\\xb6M\\x87\\x054\\xfc=\\x06\\x80\\x1f\\x80\\x01`\\x95\\f\\x80\\xf8\\xf8l\\x05\\xdb\\x06\\xc7\\\"\\x00\\xd2\\x1e0\\xc7Aٛ\\x051\\x00*\\xd3\\xd7\\v\\xfez\\x92\\x01`\\x1c0\\x00\\xac\\x92\\x01\\x10/\\x9f\\x9f;\\x16\\xe5\\\\\\x13\\x10\\x9b\\x00H\\xb7\\x95\\xbfY\\x10\\x03\\xa0|\\x9b>\\x87\\xe0\\xbe\\xf9w\\xc9\\x000\\x0e\\x18\\x00V\\xc9\\x00\\x88\\x9f\\r\\x0f\\x9d\\x83A\\xa3J{\\x8a`|\\x02`\\xa7S\\xd3(y\\xb3 \\x06@y6\\x8c@\\xb0\\xdf\\xfc\\xbbd\\x00\\x18\\a\\f\\x00\\xabd\\x00\\xc4\\xd3u\\xf7\\x9f\\x8f#J\\x88\\x80\\xd8\\x05@W\\x04\\f<\\x96\\x01্\\x83\\x94\\x86\\xbf\\xc7\\x00\\xf0\\x030\\x00\\xac\\x92\\x01\\x10_WL\\xbd\\xc2\\xee\\x00H{;\\xf7\\t(\\xf2\\x97\\x00\\x06@i\\xb6\\xec\\xaf8\\xfc=\\x06\\x80\\x1f\\x80\\x01`\\x95\\f\\x80x\\xbb\\ue04b\\x8a:\\x1d\\x10\\xdb\\x00(%\\x02\\x18\\x00\\xc5\\xdb\\xf2\\x11 ݪ\\xfc\\xde2\\x00\\x8c\\x03\\x06\\x80U2\\x00\\xe2\\xef\\x9a{\\xbf\\xde\\uf381\\xb1\\x0e\\x80\\xb4\\aܽ\\xa8\\xff͂\\x18\\x00\\xc5\\xd9|\\x00\\x82\\xbf\\xe0\\xaf'\\x19\\x00\\xc6\\x01\\x03\\xc0*\\x19\\x00v\\xd8\\xfc\\xc8\\x19\\xe8\\xeb\\xee\\x80\\xd8\\a@\\xda\\x03\\x1eZ\\xd5w\\x040\\x00\\xfa\\xb7\\xf9\\x00\\xe8\\u007f\\xf3\\xef\\x92\\x01`\\x1c0\\x00\\xac\\x92\\x01`\\x8f\\xcfΚ\\xd0k\\x04X\\x11\\x00\\xe96`f#\\x03\\xa0\\\\\\x9b?\\x0e\\xa4\\xb3!x\\x1f\\xbbd\\x00\\x18\\a\\f\\x00\\xabd\\x00\\xd8\\xe5\\x96Y\\xc7Y\\x1c\\x00;}hEϛ\\x051\\x00z7\\xd0\\x1d\\xfe\\x8a\\x95\\x01`\\x1c0\\x00\\xac\\x92\\x01`\\x9f\\r\\x0f\\x9d\\xd7\\xed\\xd9\\x01V\\x05@\\xda\\x03\\xee[\\xd2\\xfdt\\x00\\x03\\xa0g\\x1b\\x87\\x86p\\xf8{\\f\\x00?\\x00\\x03\\xc0*\\x19\\x00v\\x9a\\x9d\\xf6\\xe5=\\\"\\xc0\\xba\\x00H{\\x85\\x1d\\x03w\\u007f\\x940\\x03\\xa0\\xbb\\x8d\\x87C\\xf7V\\xbf\\xbed\\x00\\x18\\a\\f\\x00\\xabd\\x00ث;m2\\xba\\xae\\t\\xb02\\x00\\xd2m\\xc0\\xfd\\xcbފ\\x00\\x06\\xc0\\x9e6\\u007f*\\xc4\\xc3\\xdfc\\x00\\xf8\\x01\\x18\\x00V\\xc9\\x00\\xb0\\xdb5\\xf7^\\x82A\\xa3\\xf2\\x96\\x06\\xc0N\\xef^T\\xd81\\x90\\x01\\xf0\\x96\\xcd\\a\\x87|\\xf8{\\f\\x00?\\x00\\x03\\xc0*\\x19\\x00t\\xf9\\xd4\\xcbq\\xf6\\x97\\xdf\\b\\xc1\\x82\\xae\\xe8\\u074b\\x80\\xea/\\xa8\\xbf\\x17\\xa1\\xb0\\xf9\\xd3\\x11\\x18\\xfe\\x1e\\x03\\xc0\\x0fPa\\x00<rԓx`̜Hx\\xf3Y\\u007f\\u008d\\xdfx\\xc9j7\\xff\\xdfu\\xc0φ\\xd9\\xed\\x9c)\\xc0\\x9a\\xef[\\xed\\vO,\\x00R\\xda\\v\\xba\\xb2\\xb3V\\xe9\\x0f_m[>\\x82p^\\xf0\\xc7\\x00\\b\\x84J\\x03\\x00GԖ\\xf7,n\\ro_\\x10\\x82\\x83Xٳ\\xae\\xd5\\u007f\\x1f4\\xbd\\xf4g@\\xaaM\\xff}дk\\xf0\\xdb\\xfe:\\xa4[\\xf4\\a\\xb0\\xfa\\xf0wB\\xf0>\\x14+\\x03\\xc08\\f\\x00˴9\\x00.\\xfd\\xb9\\xddC/ն\\xf3߿\\xfbk\\xd0f\\xf1/\\x01\\x16\\a@\\xf3\\xa7\\x11\\x9do\\xfe]2\\x00\\x8c\\xc3\\x00\\xb0L[\\x03\\xe0\\xfc\\xeb\\xf5_{m{\\x8b\\x1fk\\xa3\\xc8\\xd2\\x00\\x88\\xc4\\x05\\u007f=\\xc9\\x000\\x0e\\x03\\xc02m\\f\\x80\\xcb\\u007f\\xa9\\xff\\xba\\x87]+#\\xc0\\xc2\\x00\\x88\\xcc\\x05\\u007f=\\xc9\\x000\\x0e\\x03\\xc02m\\v\\x80+~e\\xe9p\\xdb͢\\xff\\xfdm\\x96\\xbdV\\x96\\x05@S\\x02\\xd1\\x1d\\xfe\\x1e\\x18\\x00>\\xc0\\x00\\xb0L\\x9b\\x02\\xe0\\xa2\\x1b-\\x1bh{\\x99*c\\xa0\\x97\\xf3\\xff\\x89\\xac\\x16\\x05@\\xe3PD{\\xf8{`\\x00\\xf8\\x00\\x03\\xc02m\\t\\x00\\xdb\\xcf\\xf9W4\\xc8\\xf7\\xbeP0\\xaeZ\\x12\\x00\\xa1|\\xb0O92\\x00\\x8c\\xc3\\x00\\xb0L\\x1b\\x02\\xe0\\xfc\\xeb-\\xfa\\x16ۋ\\x95\\xfe\\xfbS6\\xdc\\x1d`A\\x00\\xb4|\\x1c\\xf1\\x18\\xfe\\x1e\\x18\\x00>\\xc0\\x00\\xb0̸\\a\\xc09\\xd7\\x01\\xf5\\x9b\\xf5_gMM\\xc5O\\xec#*\\xe6\\x01\\xd0r\\x00\\x90Ά\\xe0u6%\\x03\\xc08\\f\\x00ˌs\\x00\\\\\\xf8c\\xfd\\xd7W[\\xd3\\xdf\\xdac\\x1d\\x011\\x0e\\x80\\x96\\x03\\x80tk\\b^c\\x932\\x00\\x8c\\xc3\\x00\\xb0̸\\x06\\xc0\\x85?\\xd1\\u007fm5\\xf5\\xf5'\\xfb\\xb8\\x9e\\x0e\\x88i\\x00Dj{\\xdfRd\\x00\\x18\\x87\\x01`\\x99q\\f\\x80+\\u007f\\x1d\\xf3o\\xaaE\\xe8\\xf7\\xbf?\\x96\\xafo\\f\\x03\\xa0e\\u007f\\xc4\\xef\\x9b\\u007f\\x97\\f\\x00\\xe30\\x00,3n\\x01p\\xd9-1\\x1dN%\\x18Է\\xf3ؽ\\xce1\\v\\x80\\xc6#\\x10\\xfd[\\xfd\\xfa\\x92\\x01`\\x1c\\x06\\x80e\\xc6)\\x00.\\xf9\\xa9\\xfe\\xeb\\xa9m\\xe0C9N\\xfb\\x04\\xc4(\\x00\\x1aG \\xde\\xc3\\xdf\\x03\\x03\\xc0\\a\\x18\\x00\\x96\\x19\\x97\\x00\\xb8\\xf8&\\xfd\\xd7RS\\xd5\\r{\\xe2\\x12\\x011\\t\\x80\\xa6\\xcf!\\xfe\\xc3\\xdf\\x03\\x03\\xc0\\a\\x18\\x00\\x96\\x19\\x87\\x00\\xe0#}C\\xf0\\xef\\x8fC\\x04\\xc4 \\x00\\x9a\\x0fE</\\xf8\\xebI\\x06\\x80q\\x18\\x00\\x96\\x19\\xf5\\x008\\xe7\\a1\\x18<\\x15\\x18\\xa6\\xadz\\xc3\\xf4\\xb7\\x94e\\xc4\\x03\\xa0\\xe90\\xd8\\xf1ͿK\\x06\\x80q\\x18\\x00\\x96\\x19\\xe5\\x008\\xe7\\a\\xfa\\xaf\\x9f\\xaam@js\\xc8n\\xc9c\\x00\\xa8\\xd8| \\xec\\xf9\\xe6\\xdf%\\x03\\xc08\\f\\x00ˌj\\x00\\\\p\\xbd\\xfek\\xa7mX\\xbfm\\x87\\xf5\\xef\\xea\\u05c8\\x06@f_\\xd87\\xfc=0\\x00|\\x80\\x01`\\x99Q\\f\\x80+n\\x8d\\xf0\\x901d\\xe8\\u007fn\\x8f\\xe2fA\\x11\\f\\x80\\x96\\x0f\\x03i7\\x04\\xaf\\x9d\\x86\\f\\x00\\xe30\\x00,3j\\x01p\\xc9OC>\\xf8\\x020\\xe5!\\x12?\\xb5G\\xee}\\x8aX\\x00Xu\\xc1_O2\\x00\\x8cSq\\x00d\\x048q\\xb8\\xfe\\xa0`\\x00\\x14g\\x94\\x02\\xe0\\x1b?\\xd3\\u007f\\xbd\\xb4\\x8d\\xca\\xf0\\xdf\\xf5\\xf7F\\xe8o\\x8dR\\x004\\r\\x86]\\x17\\xfc\\xed岙\\x80S\\xc5\\x000M\\xc5\\x01\\xd0冷\\x01\\x83\\xc6\\xe9\\x0f\\r\\x06@\\xdfF%\\x00.\\xbb9b\\xc3\\xc4\\x0f#\\xfa\\xef\\x8f\\xcc\\xfb\\x16\\x91\\x00h:\\x04H\\xd9\\xfaͿ\\x15\\xc8\\xecg\\xe6ud\\x00t\\xc7X\\x00tY\\xb7\\xbf\\xfe\\xf0`\\x00\\xf4n\\x14\\x02\\xe0\\xf2_Dh\\x88\\xf8d\\xaa\\r\\x91\\r\\x80\\xb4\\x87h\\\\\\x13\\x10\\x81\\x00h\\x1c\\nk\\xbf\\xf9o8\\xd1\\xeck\\xc9\\x00\\xe8\\x8e\\xf1\\x00(\\xbc\\xd0\\xc07\\x0f\\xd3\\x1f$\\f\\x80\\xee\\x86=\\x00l\\u007f\\xa4\\xef\\xae\\xc1\\x1f\\xe5\\xe1\\xdfe\\xd8/\\\\\\fy\\x004\\x0e\\aR\\x16\\x0e\\xffU7T\\xfes?\\x03\\xa08|\\t\\x80\\xddC\\xe0\\x98\\xa4\\xfePa\\x00\\xbce\\x98\\x03\\xc0\\xf6\\xfb\\xfc#\\xff\\xad\\xbf'\\xc3\\x1c\\x01!\\x0e\\x80\\xe6\\x83`\\xdd7\\xff%\\xf5\\x80\\xeb\\xc3\\xe0g\\x00\\xf4\\x8e\\xaf\\x01\\xd0e\\xfd{\\x80\\xc4Q\\xfa\\x03\\x86\\x01\\x10\\xde\\x008\\xeb\\u007f\\x81\\xfa\\xcd\\xfa\\xaf\\x8f\\xaaQ\\xf8ټ\\f\\x19\\x00\\xa5\\xd9\\xf2\\x01 \\xed\\x84\\xe0\\xf5\\t\\xcaͅ\\xeb\\x1c\\xfc~]\\x19\\x00\\xdd\\t$\\x00\\xba\\xfc\\xe5\\x81\\f\\x00m\\xc3\\x18\\x00\\x17\\xdd\\xc8\\xe1\\x1f\\xd7\\xe1\\xdfe(# \\x84\\x01в?\\xac\\xba\\xd5o\\xfd\\x19\\xc1\\xbd\\xb6\\f\\x80\\xee\\x04\\x1a\\x00\\xae\\x14n\\x1b<g \\x03@˰\\x05\\x00\\x9f\\xea\\x87p\\xffLnҰEN\\xc8\\x02\\xa0\\xf9@ \\xdd\\x1a\\x82\\xd7%\\x00W\\xdc\\xe9\\xcfy~\\x06@i\\x04\\x1e\\x00\\xbb[3\\x86\\x01\\x10\\xb4a\\n\\x80Ky\\x9f\\u007f\\xfc\\xce\\xf9\\xf7c\\xa8B'D\\x01\\xd0\\xf2)X\\xf1\\xcd\\u007f\\xf1J\\xbdט\\x01\\xd0\\x1d\\xb8\\xb2?\\\\\\xf9\\x8bڛ2\\xf3\\x03\\f\\x80 \\rK\\x00p{_\\xc4\\xe7j\\xff\\x12\\r\\xcd\\xfb\\x1e\\x92\\x00h>\\x14Vl\\xef\\xdb8B\\xf3u\\xfe;6\\xc9G\\xb5\\xe7mhAFFÕ\\x0e\\xa52\\x03n\\xf8\\x14\\x03 \\b\\xc3\\x10\\x00\\x97\\xfe,DC@K\\xcb\\xff\\xfd\\xa90\\x9c\\x0e\\bA\\x004\\x8c\\x8c\\xff\\xad~k/.\\xac\\xf1:\\xafq\\a\\xb22V{\\xbeF\\x068\\xf2]\\xb8\\xb2C\\xe5\\xcd\\xca\\b\\xf0\\xd5!\\f\\x00?\\xd5\\x0e\\x80\\x8bo\\xd4\\u007f\\r4\\x8d\\xd5}\\xfe\\x06^\\v\\xd5\\x10T\\x0e\\x80\\x86#\\x11\\xeb[\\xfd\\x96=\\x1c\\xfcy\\xfe.\\x1d\\xc9!+\\xd7i\\xcf\\xd3\\xc8\\x02G\\xd6\\xc1\\x95N\\xb5\\x0fǈ\\x1a\\x06\\x80\\x1fj\\x06\\xc0E\\x1c\\xfe\\x1c\\xfcazM\\x14\\x03\\xa0\\xe9\\xb0\\xf8~\\xf3_\\xd4\\b8o\\xd7{m\\x1diО\\x9f\\xb1\\x00\\x19\\xf94\\\\\\xf9\\x97\\xda\\x1b\\xf9Ї\\x18\\x00\\xa6\\xd5\\n\\x803\\xbf\\xcf[\\xfd\\xac\\xb9ڿD\\xd5~\\tP\\n\\x80\\xe6O!\\xb6\\xe7\\xfc7\\x1e\\xad7\\xf8\\xb3\\xf2_4\\xc8g\\xb4\\xe7f\\xec\\x80#\\x9f\\x87\\xe6\\xf5\\x01\\xdf>\\x98\\x01`J\\x8d\\x008\\xe7\\av\\x0f\\xff]\\xb7\\xfa\\x85\\xe0o\\t\\xab\\xb6\\x04@\\xf3\\xc7\\x11˫\\xfdW\\u007fO\\xef\\xe7~W:\\xe0ȗ\\xb4\\xe7d\\xec\\x81+7Ñ\\x9cZ\\b\\x9c0\\x82\\x01P\\xa9A\\a\\xc0\\x857\\xe8\\xff\\x9b\\xd5\\xe5\\xf0/\\xca\\xc0# \\xe0\\x00h\\xd9\\x1f\\xb1\\xbb\\xcf\\u007f\\xe9,\\xf8\\xba}o\\xdf\\xe6\\xe0\\xc8o\\xb4\\xe7\\xa2u\\xc0\\x11O\\xe9\\r\\a\\x1a\\xf6)\\u007f[a\\x06@\\xb0\\x01\\xf0\\xcd[\\xf4\\xff\\xbd\\xea\\xf2'\\xff\\x92\\f4\\x02\\x02\\f\\x80\\xcc\\a\\x10\\xafo\\xfe\\x9b\\x81̾Z\\x83\\x1fp\\xe59\\xed9h5\\xc8\\xc8\\xe1p\\xe4\\x15\\xb5\\x03\\xe0\\xce\\xfd\\x19\\x00\\xe5\\x18T\\x00\\\\v3\\xcfw\\x87\\xe2V\\xb7\\b\\x1a\\xd8q\\x13P\\x004\\u007f\\x06\\xb1\\xda\\xdb\\u007f×\\xf4\\x06\\xbf#o\\xc0\\x95\\x81\\xda\\xf3\\x8f\\xec\\x04\\x8e|\\rZ\\xd7\\ad\\x04\\xb8d\\x00\\x03\\xa0\\x14\\x83\\b\\x00\\xde\\xe7\\x0f\\xde\\xeaW\\xa1\\x81\\x1c?\\x01\\x04@\\xe3p\\xc4\\xe6V\\xbf\\x95?\\xd7=\\xcf\\xdf*gk\\xcf;\\xd2\\vpd&\\\\ɫ\\x95\\xe1\\x84$\\x03\\xa0\\x18\\xfd\\x0e\\x80K,\\xdf\\xdb?큃ߐ\\xbe\\xff\\x82\\xe2s\\x004\\x0e\\x8dǭ~KRZC\\x1f\\xc8J\\x1e\\x8e\\xcc֞o\\xa4\\b\\xe0\\xc9;\\xe1\\xca\\xf3j\\a\\xcb\\xd2w1\\x00\\xfa\\xd3\\xcf\\x00\\xb8\\xfc\\x97\\xfc\\xe6\\x9f\\xf2\\xc0\\x000\\xf9z\\xfay\\x8b\\xa0\\x8f\\x01\\xd0t(b\\xf1Ϳ\\xf9\\x93z\\xc3ߕ?!-\\xefҞk\\xa4D\\xd0*\\xa3\\xe0\\xca6\\xb5\\x03\\xe7\\xe7\\x9f`\\x00\\xf4\\xa6_\\x01p\\xc1\\xf5\\x1c\\xfe\\xdc\\xe8'b\\xaf\\xabO\\x01\\xd04\\x18HE\\xfc\\x82\\xbfu\\xe7hn\\u07fb\\x03\\xaeTk\\xcf1R!p\\xe4\\x12h^\\x1fp\\xd6 \\x06\\xc0\\xde\\xfa\\x11\\x00\\xe7\\xfc@\\xffߥ*\\a\\u007f0\\xaf\\xb1\\xe9\\xff\\xa6\\x0f\\x01\\x10\\xf5o\\xfe+\\xee\\xd2<Ͽ\\x03\\x19\\xb9B{n\\x11\\xc3 +K\\xa0\\xb9\\xad\\xf0\\x981\\f\\x80.M\\a\\xc09\\xff\\xab\\xffoҔ\\xdf\\xfa#\\xac\\xe1\\x00h\\xfe\\b\\\"{\\xab\\xdf\\xe25ZC\\x1f;g\\xc3\\n\\xed9E|\\x04\\x8d\\xf2\\x01h>vx\\xee\\xfb\\x18\\x00i\\xcfl\\x00\\xf0j\\u007fp\\x93\\x9f\\x805z\\xbc\\x19\\f\\x80̾\\x88\\xec\\xf6\\xbeM\\x035\\x87\\xff?\\x90\\x91\\xfd\\xb4\\xe7\\x13\\t\\b82\\x0e\\x9a\\xdb\\n\\xaf\\xbdD\\xff\\x03\\xa7\\xa9\\xa9\\x00\\xb8\\xf8&\\xbb\\x87\\u007f\\xaa\\rHo\\xe6\\xf0\\xd7z퍼\\xee\\x86\\x02 \\xaa\\xdb\\xfb\\xae\\xfd\\xa6\\xf6m}\\x13\\xb4\\xe7\\x11Q\\x02\\x19\\xf9>\\xb4\\x1e;\\xecT\\x01\\xcb\\x1f\\xd4\\xff\\x00jh\\\"\\x00.\\xf9\\xa9\\xfe\\xbfC[n\\xb4#\\xe4V\\x00\\x00\\x0f\\x9aIDAT\\xf2\\xa3\\xff\\xfaW\\xfc\\xdf1\\x10\\x00M\\x87!r\\xc3\\u007f\\xf9#\\xba\\x8f\\xe9u\\xe4z\\xed\\xf9CB\\x02\\\\iP*\\xd0\\xc2#+\\x175\\xe9\\u007f \\x83\\xb4\\xd2\\x00\\xb8\\xecf\\xfd\\u007f\\x83\\xba\\x16\\xff\\xf2\\x11&+\\x8e\\x80\\n\\x03\\xa0\\xe90DꂿE-\\x80\\xf3n\\x9d\\xb5\\xb6`\\x8b\\xf6\\xbc!!\\x04\\x199\\x10\\x8e\\xbc\\xa8v`6\\x8c\\xd1\\xffp\\x06e%\\x01p\\xe5\\xaf\\xec\\xfe\\xd9?\\xed\\xf1\\xdf\\x1f6+\\xfa%\\xa6\\x82\\x00h:<Z\\xb7\\xfa5\\x8c\\xd5\\x1c\\xfc/\\xa1U>\\xa1=gH\\xc8AVN\\x84\\xda\\xf5\\x01U\\xc0\\xeak\\xf5?\\xa8~[n\\x00\\\\\\xf8c\\xbb\\x87߮Ac\\xf1k\\x10VS^\\x99\\xc7f\\x99\\x01\\xd08\\x12\\x91\\xf9\\xe6\\xbf\\xfa\\a\\xba\\xe7\\xf93\\xf2e\\xed\\xb9B\\\"\\x06\\xb2\\xf20\\\\\\xa5\\xc7\\x0e\\xbbU\\xc0ҧ\\xf5?\\xb8~YN\\x00\\\\\\xf8c\\xfd\\xbf[[\\xde\\xee\\x17n\\xcbz\\u007f\\xca\\b\\x80\\xa6\\xc1\\xd1\\xd8\\xdew\\xe9\\x1c(>\\xa67\\x0fW\\x1eӞ#$\\xe2\\xc0U|\\xecpf_ \\xbdY\\xff\\x83l\\xdaR\\x03\\xc0\\xfaM~<p\\xf0GE\\x9f\\x03 \\xb3?\\\"\\xf1\\xcd?\\xf3A\\xad\\xc1\\x0f\\xb8\\xf2;\\xed\\xb9Ab\\x046\\xcb!p\\xa4]\\xed\\x80\\xde8Q\\xff\\x03m\\xd2R\\x02\\xe0\\xfc\\x1f\\x01\\xf51\\x8c\\xa0\\x92\\xf4s/zjܒ~\\t(!\\x00\\x9a\\xf7\\aҭ\\xfa\\xff\\xbe\\xbe\\xdcp\\xbc\\xde\\xe0wd\\aZ\\xe5s\\xda\\xf3\\x82\\xc4\\x14d\\xe4Lh^\\x1f\\xb02&\\xb7\\xbe\\x15\\x1b\\x00\\xe7_o\\xf9\\xe0\\xdb9Hx\\xab_\\xf4,\\xfa\\xb8-2\\x00\\x9a\\x0fD\\xa8o\\xf5[y\\x8b\\xf6y\\xfes\\xb5\\xe7\\x03\\xb1\\x048\\xf244\\xb7\\x15^\\x92\\xd6\\xff\\xc0Wb1\\x01pэ\\xfa\\u007f\\xa7\\xa6)\\x0e\\xff\\xc8[\\xd4\\xdd\\x01E\\x04@\\x98\\x87\\xff\\x92\\xc5ZC\\x1fp\\xa5\\x13\\x8e\\xcc՞\\a\\xc4B\\x90\\x96w!+\\u007fP;\\xf8\\x9b\\x0f\\xd2\\xff\\xf0\\x97k\\u007f\\x01\\xc0G\\xfar\\x93\\x9f\\xb8\\xd8\\xef\\xfb\\xd8O\\x00\\xb4|\\x02\\xa1\\xfdٿ\\xf9`\\xbd៕?\\xe3y>\\xa6\\x97(\\x83\\xcd2\\x04\\xaelW\\xf9\\x108\\x02\\xac\\x9f\\xac\\xbf\\x10\\x94j_\\x01\\xc0\\xe1\\xbfS\\xbe\\x06\\xb1\\xb1\\xcf㹏\\x00h\\x1a\\x80P~\\xf3_\\u007f\\x8a\\xdecz\\x1d\\xe9@\\xab\\f\\xd7^\\xf7\\t\\xd9\\x03d\\xe5j8J\\xdb\\n\\xbb\\xfb\\x00+\\xa6\\xea/\\f\\xc5\\xda[\\x00\\x9c\\xff#\\xfd\\xbfM]\\x0e\\xfeX\\xda\\xeb/\\x01\\xbd\\x04@\\xe3\\xb0\\xf0m\\xf2\\xb3\\xfc\\xde\\xc2Z\\xa3\\xf3\\xad\\u007f\\a\\xb2r\\xad\\xf6:OH\\x9f\\xc0\\x91%J\\x1f\\x90\\x82\\x8bW\\xeb/\\x14\\xfd\\xd9S\\x00\\\\\\xfa3\\xfd\\xbfKS\\xde\\xe3\\x1f\\u007fS=\\xdd\\xcd\\xd1C\\x004\\rB\\xa8n\\xf5[\\xbc\\xb6\\xb0e\\xb9֚\\xe6\\xf01\\xbd$B #\\xfb\\xc1U\\xdcV\\xb8q\\xb0\\xfe\\xa2ї{\\a\\xc0%|\\xa4/\\x03\\xc0\\x12\\xfb\\v\\x80\\xe6\\x83\\x10\\xaa\\xe1\\xdf8Lo\\xf0g\\xe5%<#\\xff\\xa3\\xbd\\x9e\\x13R\\x16\\xd8$\\xa3\\xa1v}@\\x15\\xb0n\\x8a\\xfe\\x02ғ\\xbb\\a\\xc0y?\\xb4{\\xf8\\xef\\x1a\\xfc\\x16\\xbf\\x06\\xb6\\xb9\\xc7vλ\\x05@\\xf3!\\b\\xcd\\xc6_k\\xcf\\u05fb\\xad/+ۑ\\x95\\xb1\\xda\\xeb7!F\\x80+7\\xc2Q\\xdaVة\\x02\\x96=\\xa6\\xbf\\xa0\\xecnW\\x00\\x9c\\xfb\\u007f\\xfa\\u007f\\x8b\\xa6\\xbc\\xd5\\xcf^w\\x85\\xdf\\xce\\x00h\\n\\xc97\\xffe\\xd3\\x01G\\xed<\\u007f\\x0eY\\xb9E{\\xbd&\\xc4\\x17\\xa0\\xf9\\xd8\\xe1\\xcc\\xfb\\x80E\\xcd\\xfa\\vL\\xda+\\x04\\xc0\\xb9?\\xd4\\xff;T\\xe5\\xb7~\\xebM\\xed\\f\\x80\\x96\\xfd\\xa1?\\xfc3@f?\\xad\\xc1\\x0f\\xf01\\xbd\\xc4\\x06\\xe0\\xca\\xc7\\xe1\\xc8kZ\\x1f\\xb4\\xadk\\xc6b\\xe5/\\xff\\xa2\\xeaƫ\\xd6a\\xe5/\\xfe\\xac\\xfewh\\xfa\\xf7i\\xcf\\xf1\\x9b?\\x05\\xd2\\x0e\\x90vu\\xff\\x86\\x86Z\\xbd\\xc1\\xefH;\\x1a\\xe5\\x93\\xda\\xeb2!\\x81\\x82M\\xf2y8:\\xd7\\a\\xe4\\x9d*\\xdcz\\xdd\\xcdH$A\\x03\\xb7\\x13?\\xb8\\xe8%\\xe49\\xfc\\xa9\\xb6\\xab\\xaf\\xd5ܾw;Z\\xe5\\x8b\\xda\\xeb0!\\xaa +\\x0f\\xa1\\xf0\\xe8\\xca\\xc0?\\x84\\x9dN\\x15&OΆ`(\\xda\\xe3\\x95g\\xbf\\x8aN\\x0e\\u007f\\xaa\\xe9\\xd2yP|Lo'\\xb2\\xf2\\xa8\\xf6\\xbaKH\\xa8\\x80+\\xbfW\\xfa@\\xe2?\\xab?\\xaa>\\x18m\\xf0\\xeas_\\xd1_\\xfc\\xa9ݶ|Tk\\xf0\\x03\\xae\\xfcY{\\x9d%$\\xb4\\xc0\\x91C\\x91\\xd5y\\xda`\\xa7#Xr\\xffWՇd\\\\\\xbd\\xf1\\xb2\\xff\\xf0\\x9b?\\xd5s\\xc3\\x17\\xf4\\xb6\\xef\\xcdJ\\aZd\\x80\\xf6\\xfaJH$\\x80+\\xa7C\\xe9\\xb1\\xc3y\\xa7\\n?\\xbc\\xfa>\\xf5\\x81\\x19\\x1f;\\U00043bff\\xc4\\xe1Ou\\\\\\xf9S\\xdd\\xc7\\xf4\\xb6\\xca\\xd9\\xda\\xeb)!\\x91\\x04\\xaê\\xe2c\\x87'\\x9d\\xf0|\\b\\x06h\\x94\\xed\\xc47\\xcf\\xe29\\u007f\\xaa\\xe0\\x92\\xa5\\x80\\xf3\\x0e\\xad\\xc1\\x0f>\\xa6\\x97\\x10\\x03\\xe0yy\\x17\\xb2\\xf2\\x82\\xd6\\a\\xf9\\x8f\\xe9\\x01!\\x18\\xa4\\xd1\\xf4\\xd23_\\xe3\\xf0\\xa7\\xc1\\xdbt\\xa8\\xde\\xe0\\xcfʿ\\xb0Jޭ\\xbdn\\x12\\x12+\\x90\\x91\\x11P\\xdaV\\xb8\\xd3\\x11̼\\xedb\\xf5\\x81\\x1a%/8\\xedu\\xecX\\x18\\x82a@\\xedq\\xfd\\x19\\xba\\xb7\\xf55KR{\\x9d$$\\xd6\\xc0\\x95K\\xe1\\xea<v8\\x9f\\xa9\\xc2U\\x97\\xccR\\x1f\\xae\\xe1\\xb6\\x13\\x17\\x9d\\xfe\\x1ar\\xf5!\\x18\\b\\xd4\\x0eWܡ9\\xf8w #Wj\\xaf\\x8b\\x84X\\x05\\x1cY\\xa1\\xf4\\x81G{\\xc3{Q3\\xe1\\xc5\\x10\\f۰ىo\\x9e\\xfd\\xaa\\xfe@\\xa0v\\xb8h#\\x90y\\xbf\\xd6\\xe0\\a\\\\Y\\xa3\\xbd\\x0e\\x12b-\\xc8\\xca\\a\\xe1\\xca\\u007f\\xb5\\x16\\x80֧G\\x87`\\xe8\\x86\\xc7\\xef_\\xf82\\xcf\\xf9\\xd3`l\\x1c\\xae7\\xf8\\x1dy\\r\\x9e|H{\\xfd#\\x84\\x88\\b\\x1c\\x19\\a\\xa5\\xeb\\x03\\xf2N\\x15\\xee\\xfb\\xe9\\xf7Շ\\xaf\\xb6?\\xb9\\xec\\xbf\\x1c\\xfe\\xd4\\u007f\\xd7^\\xa6\\xfd\\x98ޣ\\xb5\\xd7;BH\\x0f\\xc0\\x91\\xeb\\xb4\\x1e;\\x9c\\xcfT\\xe1\\xc2)K\\xd5\\a\\xb1\\x86\\xdf\\xe37\\u007f\\xea\\xb7\\xcb\\x1f\\x82\\xe2\\xf6\\xbdyd\\xe5z\\xed\\xf5\\x8d\\x10R\\x04p\\xc5QZ(\\xf0ʺ\\x0fahu\\xbb\\xfaP\\x0e\\xc6N|\\xfbܗ\\xf5\\x87\\x03\\x8d\\xb1.\\xd0\\xf2a\\xad\\xc1\\x0f\\xb8\\xf2\\x8c\\xf6zF\\b)\\x114˧\\xe0\\xc8V\\xad\\x85cͣ_\\b\\xc1\\x80\\xf6\\xff\\x9b?\\x9f\\xeaG}s\\xe3\\x04\\xbd\\xed{\\x1d\\xe9\\x80+\\ai\\xafc\\x84\\x90\\n@VN\\x84\\xd6\\xf5\\x01\\x99*\\xdc\\xf2\\x83[\\xd5\\a\\xb5\\x1f\\xdf\\xfc\\xbfq\\xd6k\\xd8\\xc1[\\xfd\\xa8\\x1f\\xae\\xfe\\x81\\xee\\xf6\\xbdY9Y{\\xdd\\\"\\x84\\x18\\x04\\x8e\\xd4A\\xe9\\xb1\\xc3p\\x05\\xa7\\x9c\\xd2\\x12\\x82\\xc1mf\\xf8\\x9f\\xf5\\x957\\x90\\xe7\\xf0\\xa7\\xa6]\\xfa\\xb4\\xd6\\xd0\\a\\\\\\xe9\\x84#\\xf7j\\xafS\\x84\\x10\\x1fAV\\xfe\\xa8\\xb5\\xc8\\xfck\\xe5\\x81!\\x18\\xe0\\x95y\\xee\\xa9o\\xe8\\x0f\\n\\x1a?[\\x0e\\xd4\\x1c\\xfe/h\\xafK\\x84\\x90\\x80@F\\x0e\\x87\\xe2\\xb6©{NW\\x1f\\xe4\\xe5x\\xed\\x05/s\\x87?j\\xd6\\r_\\xd4>\\xcf?P{=\\\"\\x84(\\x00G\\u0382\\xe2c\\x87\\xaf\\xbb\\xeaA\\xf5\\xa1^\\xac\\xffw\\xf1K\\xfcٟ\\x9as\\xe5̀\\xbb\\x8f\\xd6\\xe0߁\\xac\\x9c\\xab\\xbd\\xfe\\x10BB\\x00\\xb2\\xf2\\xb8\\xcaB\\xe4\\nv\\xb4\\xbc\\x1d'|\\xf1\\xb7\\xea\\x03\\xbe\\xbfo\\xfe\\xbcϟ\\x1aq\\xc9\\\"\\xc0y\\x97\\xce\\xe0/\\xf8\\xa4\\xf6zC\\b\\t\\x19\\xd8(\\xef\\x81+\\xff\\xd0Z\\x98\\x9e]0X}\\xd0\\xf7\\xe4\\xf7/|\\x89ß\\x9a\\xb1)\\xa19\\xf8\\xff\\x8b\\x8c\\xbcW{\\x9d!\\x84\\x84\\x18\\xdd\\xc7\\x0eW\\xe1\\xc9\\xdb.Q\\x1f\\xfa]\\xfe\\xf0bn\\xefK\\r\\xb8\\xfel\\xed\\xed{\\xf9\\x98^BH\\xf1\\xa0U\\xbe\\x05\\xc5\\xc7\\x0e_v\\xe1|\\xc5\\xe1߉\\xef\\x9c\\xff2\\xcf\\xf9\\xd3\\xca\\\\~\\x8f\\xde\\xe0w$\\aG\\xae\\xd5^G\\b!\\x11\\x06\\x8e,TY\\xc0\\\\\\xc1\\xeb\\x1bޏ\\xf1\\x13_\\b|\\xf8_t\\xfa\\xeb\\xfaÃF\\xd7\\xc5k\\x80\\xcc~:\\x83\\xbf\\xe0\\\"\\xedu\\x83\\x10\\x12\\x13\\xd0$\\x1f\\x86#\\xedZ\\vZffm`\\x01p\\xc6䭼Տ\\x96o\\xc3(\\xbd\\xc1\\xef\\xc8\\x0e\\xb8\\xb2\\xbf\\xf6zA\\b\\x89!pe<\\x14\\x1f;|\\xf7\\x8d\\xff\\xe7\\xeb7\\xff\\x8b\\xcfx\\r\\x1d\\vC0Dh\\xf4\\\\s\\x85\\xe6\\xcf\\xfd\\x1d\\xd8$\\xc7h\\xaf\\x0f\\x84\\x10\\v\\x80+?\\x86Ҷ\\u009dN\\x15\\xa6\\x9c\\xb9\\xca\\xf8\\xf0\\xbf\\xe6\\xbcW\\xf8͟\\x96\\xee\\xb2ǡ\\xf8\\x98\\xdeN\\xb8\\xf23\\xed\\xf5\\x80\\x10b!pe\\xbd\\xd2\\u0087\\x17W}\\f\\xa3\\x8ez\\xd9H\\x00|\\xe7|>җ\\x96\\xe8\\xa2F\\xa0\\xe5cZ\\x83\\x1fp\\xa5I\\xfb\\xf3O\\b\\xb1\\x1cd\\xe4\\xd3P\\xdaM\\xb0\\xd3\\x11\\xac~\\xf4Ċ\\x86\\xff\\x8f.\\xe1}\\xfe\\xb4D7\\x1e\\xa3\\xb7}oV:\\xd0 \\x9f\\xd1\\xfe\\xdc\\x13B\\xc8.\\xd0*\\x93\\x91\\xd5{\\xec\\xf0O\\xbes\\x17\\x87?\\xf5\\xd7U7h?\\xa6\\xf7T\\xed\\xcf9!\\x84\\xf4\\xca\\xce\\xc7\\x0ek-\\x92\\xf8\\xeaW3E\\x9d\\xf3\\xff\\xce\\xf9\\xdcޗ\\x16\\xe9\\xd29\\x80\\xf3v\\xb5c\\x1a\\x8eܧ\\xfd\\xb9&\\x84\\x90\\xa2\\x81+\\xcfk-\\x98\\u007f[\\xf6i\\f\\xa9\\xde\\xd6\\xe7\\x05\\u007f\\xeaC\\x85F\\xc0,\\xd0\\xfc)\\xbd\\xc1\\xefʟ\\x01\\xa9\\xd2\\xfe,\\x13BH\\xc9\\xc0\\x91\\x04\\x14\\xb7\\x15^x\\xf7\\x99\\xdd\\x02\\xe0\\xe23^\\xe3\\xd5\\xfe\\xb4\\u007f7\\x9c\\xa4\\xf9s\\xffv\\xb4\\xca \\xed\\xcf/!\\x84T\\f\\\\\\xb9\\x00\\x8a\\xdb\\n\\u007f\\xe7\\x9bӐHv\\xe2\\x8c\\xc9[y\\x9f?\\xedە\\xbf\\xd6\\u07be\\xf7\\x12\\xed\\xcf+!\\x84\\x18\\a\\xaeLW\\xfaF\\x85\\xedM\\xefC~qZ\\u007f\\xc0\\xd0p\\xbad1\\x90\\xf9\\x80\\xd67~ +3\\xb5?\\x9f\\x84\\x10\\xe2+\\xb8A\\xf6\\x81#\\xaf\\xa8-\\xb4͟\\xd6\\x1f64\\\\6\\u007fVo\\xf0;Ҏ\\xa7\\xe4mڟKB\\b\\t\\f\\xb4\\xca(d\\xe5M\\x9dE\\xb7\\nX{\\x9e\\xfe\\u087a\\xae\\xbdH\\xf7<\\xbf+\\xd5ڟCB\\bQ\\x03\\xae|\\x1b\\xae\\xe4t\\x16\\xe1*`\\xc5T\\xfdAD\\x83u\\xf9}Pܾ7\\x0fW\\xbe\\xaf\\xfd\\xb9#\\x84\\x90\\xd0\\x00G\\x96(-\\xc8@\\xcb\\a\\v\\x8fp\\xd5\\x1eL\\xd4_\\x17\\xad\\x05Z>\\xa25\\xf8\\x01GVj\\u007f\\xce\\b!$\\x94`\\x93\\xbc\\x0f\\x8eζ\\xc2p\\x04h\\x1a\\xa8?\\xa4\\xa8?6\\x0e\\xd6۾ב\\x0e\\xac\\x97\\xf7k\\u007f\\xbe\\b!$\\xf4\\xa0E\\x8e\\x83\\xd2\\xf3\\x05\\xe0T\\x01k\\xae\\xd6\\x1fXԌ\\xab\\xbf\\xab\\xbb}\\xaf#\\x9f\\xd7\\xfe<\\x11BH\\xe4@VnBᑧ\\n\\x8bw\\x15\\xb0\\xecQ\\xfd\\x01F\\xcbs\\xd9t\\xdd\\xed{\\xb3r\\x8b\\xf6\\xe7\\x87\\x10B\\\"\\x0f\\\\iQ[\\xc8[>Zx\\xf4\\xab\\xf6@\\xa3Ź\\xa8\\th>Po\\xf0\\xbbҪ\\xfdy!\\x84\\x90X\\x81\\xcd\\xf21\\xb8Z\\xb7\\r\\n\\xd00F\\u007f\\xb8Ѿm\\xa8\\xd1;\\xcf\\xef\\xcavd\\xe4@\\xed\\xcf\\t!\\x84\\xc4\\x16\\xb8r\\n4\\xaf\\x0fX\\xf5#\\xfdAG\\xf7tՍ\\x9a\\xe7\\xf9w\\xc0\\x95ӵ?\\x17\\x84\\x10b\\rp\\xe5~\\xa5\\x05\\x1fp\\xde\\t,\\x9d\\xab?\\xf8lw\\xc9\\x02 \\xf3^\\xad\\xc1\\x0f8\\xf2\\xb0\\xf6\\xe7\\x80\\x10B\\xac\\x04\\\"Up\\xe5Oj\\x03\\xa0\\xf9\\x13@:\\xab?\\b\\xad3[\\xd8\\xd2Y\\xeb}\\xcf\\xca\\v\\xb8A\\xf6\\xd1>\\xfe\\t!\\xc4z\\xd0\\\"\\a\\xebm+,\\xc0\\xc6\\xe3C0\\x14-q×t\\xcf\\xf3;r\\xa8\\xf6\\xf1N\\b!d/\\x90\\x95\\x8b\\xa0\\xf4\\xd8a8U\\xc0\\xca[\\xf5\\ad\\\\]\\xf1\\x1b\\xcd\\xf3\\xfc9\\xb8\\xf2\\r\\xed\\xe3\\x9b\\x10BH?\\xc0\\x95YJ\\x83\\x02ȼ\\x1fX\\xb2T\\u007f`\\xc6\\xc5\\xc5ˀ\\xcc\\a\\xb5\\x06?\\x90\\x95\\xb9\\xda\\xc73!\\x84\\x90\\x12\\xc0*y;\\x1cyCmp4\\x1f\\xac?<\\xa3n\\xd3az\\x83ߑ\\x1d\\xc8\\xc8;\\xb4\\x8fcB\\b!e\\x82gd0\\x1cٮ3D\\xaa\\x80ug\\xe8\\x0fҨ\\xb9\\xee\\\\\\xdd\\xc7\\xf4fe\\x98\\xf6qK\\b!\\xc4\\x10p\\xe4:\\x14\\x1eŪ0T\\xaa\\x80\\xe5\\xf7\\xeb\\x0fְ\\xbb\\xfca(>\\xa6\\xb7\\x13\\x8e\\\\\\xaf}\\x9c\\x12B\\b\\xf1\\t\\xb8\\xb2\\\\i\\xc0\\x00-\\x1f\\xe6c\\x87{r\\xf1\\xba\\u0096\\xcbZ\\xef\\x8b+k\\xb4\\x8fKB\\b!\\x01\\x80g\\xe5\\xfdP\\xdbMP\\x80\\xa6!\\xfaC7,6\\rӼ\\xad\\xaf\\x03\\x19\\xd9O\\xfbx$\\x84\\x10\\x120\\xc8\\xcaX\\xb8\\x8a\\xd7\\a\\xac\\xfd\\x86\\xfe\\x00\\xd6r͕\\xba\\x8f\\xe9u\\xe5(\\xed\\xe3\\x8f\\x10B\\x882p\\xe5WJ\\x83\\bp\\xde\\x06,{B\\u007f \\a\\xe5ҧ\\n[)k\\xbdޮܮ}\\xbc\\x11B\\b\\t\\x11\\x80T!+\\xae\\xda`j\\xfeD\\xe1Q\\xb6\\xda\\x03\\xda/\\x175io\\xdf\\xdb\\x06p\\xfb^B\\b!\\xbd\\x00O\\x0eлmP\\x80\\x86j\\xfdamڍG\\xebn\\u07fb\\x85\\x8f\\xe9%\\x84\\x10R$p\\xe5$h](\\xe8V\\x01\\xab\\u007f\\xa8?\\xb8+uՏ\\xa1x[\\xdf\\x0e\\xb8\\xf2U\\xed\\xe3\\x88\\x10BHD\\x81#\\x0f*\\r0 \\xf3\\x1e`\\xe9|\\xfdA^\\xaaK\\xea\\x81̾Z\\x83\\x1fp\\xe5Q\\xed\\xe3\\x86\\x10BH\\f\\xc0S\\xf268\\xf2/\\xb5\\x81\\xd6\\xfc\\x19D\\xe3\\xb1í@\\xf3!z\\x83ߑ\\x97\\xb1Jޮ}\\xbc\\x10B\\b\\x89\\x19\\xc8\\xc8!\\xaa\\x8f\\x1d^\\xff\\xc5\\x10\\f\\xf9^\\\\\\xff\\x15\\xed\\xed{\\x0f\\xd3>>\\b!\\x84\\xc4\\x1c8r\\x1e\\xb4\\xb6\\x15v\\xaa\\x80\\x95\\xbf\\xd0\\x1f\\xf8]\\xae\\xfc\\xb5\\xe6\\xe0\\xef\\x84#\\x17i\\x1f\\x0f\\x84\\x10B,\\x03\\xae\\xccV\\x1a|\\x85m\\x855\\x1f;\\xbcx\\xb9\\xf6\\xf6\\xbd\\v\\xb4\\xdf\\u007fB\\b!\\x16\\x03\\xc8\\xdb\\xe1h\\xdd- @\\xd3!\\xc1\\x0f\\xff\\xa6\\xcf\\xe9\\r~G:\\xf8\\x98^B\\b!\\xa1\\x01\\xad2\\x1c\\xaa\\xdb\\n_\\xe0\\xff\\xe0_{\\xa9\\xde\\xcf\\xfdYَgd\\xa4\\xf6\\xfbL\\b!\\x84\\xf4\\b\\\\\\xb9F\\xed۱[\\x05\\xac\\x98j~\\xf0/\\xbf\\xb7\\xb0e\\xb1ֿ++\\xd7j\\xbf\\xaf\\x84\\x10BHQ\\xc0\\x95\\xf5j\\x03\\xb3\\xe5\\x80\\xc2#v+\\x1d\\xfc\\x8b\\xd6\\x17\\xb6(\\xd6\\x1b\\xfcM\\x80Ti\\xbf\\x97\\x84\\x10BHI\\xa0Q>\\x00W\\xf1\\xb6\\xc1J\\x1e;ܨ\\xfa\\x98\\xde\\xed|L/!\\x84\\x90ȃ\\xac\\x1c\\r\\xadm\\x85\\x9d*`\\xf5\\xb7\\x8a\\x1f\\xfc\\xab\\xafռ\\xado\\a\\\\9V\\xfb\\xfd\\\"\\x84\\x10B\\x8c\\x02WnT\\x1a\\xac\\x80\\xf3n`٣\\xbd\\x0f\\xfeeӀ\\xcc\\xfb\\xb4\\x06?\\xe0\\xcaϵ\\xdf\\x1fB\\b!\\xc47p\\x83\\xec\\x03G\\x9eU\\x1b\\xb4͟\\x04\\x165\\xefv\\x9e\\xbf\\x05h>Ho\\xf0g\\xe5\\x0fxJަ\\xfd\\xbe\\x10B\\b!\\x81\\x80\\xf5\\xf2qh^\\x1f\\xb0q\\\"\\xb0\\xe1\\x04\\xdd\\xf3\\xfc\\x1b\\xe5\\x13\\xda\\xef\\x03!\\x84\\x10\\xa2\\x02\\x1c\\x99\\fGrj\\xdf\\xc0\\x837\\x0fGN\\xd3~\\xdd\\t!\\x84\\x90P\\x00G\\xee\\t\\xc1p\\xf6\\xdb\\a\\xb4_gB\\b!$t\\x00\\xf26\\xb8\\xf2\\xdf\\x10\\fjӾ\\x04\\xf01\\xbd\\x84\\x10BH\\x9f\\xa0I>\\a\\xadm\\x85M\\xeaH\\a6\\xc9\\x00\\xedד\\x10B\\b\\x89\\x14p\\xe5Bd\\x95\\x1e;\\\\\\xb9\\x97j\\xbf~\\x84\\x10BH\\xa4\\x81#3C0Ћ\\xfd\\xd6?G\\xfb\\xf5\\\"\\x84\\x10Bb\\x032\\xf2\\x0edC}Z\\xa0\\x03\\x9e\\xbcS\\xfbu\\\"\\x84\\x10Bb\\t\\x9e\\x91\\x91!\\v\\x81\\x0e\\xb4IR\\xfbu!\\x84\\x10B\\xac\\x00Y\\xf9_\\xf5៑\\x1fi\\xbf\\x0e\\x84\\x10B\\x88u@\\xa4\\nYY\\xa60\\xfc\\xd7\\xe0\\x06\\xd9G\\xfb\\xdfO\\b!\\x84X\\r\\xfe \\xfb\\xc1\\t\\xe4\\xb4\\xc0v\\xfcI>\\xa8\\xfd\\xef%\\x84\\x10B\\xc8n\\xa0U&\\xa0\\xf0H]\\xb3\\x83ߑ\\x1cZe\\x92\\xf6\\xbf\\x8f\\x10B\\b!}\\x80\\xac\\xdcbl\\xf8g\\xe5\\xd7\\xda\\xff\\x1eB\\b!\\x84\\x14\\xc9\\xcem\\x85\\xb3\\x15|\\xeb\\xf7\\xb8}/!\\x84\\x10\\x12Q\\xe0\\xca\\xc7Qʶ\\xc2YَV>\\xa6\\x97\\x10B\\b\\x89\\x05p\\xe5\\f\\xb8}<v\\xb8\\xb0\\xe5\\xf0\\x14\\xed\\xbf\\x93\\x10B\\b!>\\x00G\\xee\\xeb\\xe1\\xe7\\xfe\\x87\\xb5\\xff.B\\b!\\x84\\xf8\\f o\\x87#\\u007f\\x81+\\u007fEFޡ\\xfd\\xf7\\x10B\\x82\\xe7\\xff\\x03#\\x94\\xff00\\xd1\\xddr\\x00\\x00\\x00\\x00IEND\\xaeB`\\x82\"\nvar _Assetsa778db74bb0610978d68bf45c1d84ed40dc5e19e = \"\\x00\\x01\\x00\\x00\\x00\\r\\x00\\x80\\x00\\x03\\x00PFFTM\\x8d\\x96\\xb6\\x16\\x00\\x02\\xf4\\xd8\\x00\\x00\\x00\\x1cGDEF\\x00*\\x03\\xcd\\x00\\x02\\xf4\\xb8\\x00\\x00\\x00\\x1eOS/2C\\x82V\\xa0\\x00\\x00\\x01X\\x00\\x00\\x00`cmap\\x19M%\\xeb\\x00\\x00\\x10\\xd4\\x00\\x00\\f\\xaegasp\\xff\\xff\\x00\\x03\\x00\\x02\\xf4\\xb0\\x00\\x00\\x00\\bglyfk\\x89U\\xec\\x00\\x00,\\xa4\\x00\\x02\\x93\\xc4head\\x17\\x15\\x91\\x1e\\x00\\x00\\x00\\xdc\\x00\\x00\\x006hhea\\x04C\\x06\\a\\x00\\x00\\x01\\x14\\x00\\x00\\x00$hmtxo\\xcd\\x02\\xe8\\x00\\x00\\x01\\xb8\\x00\\x00\\x0f\\x1aloca\\x04xڴ\\x00\\x00\\x1d\\x84\\x00\\x00\\x0f maxp\\x04)\\x01S\\x00\\x00\\x018\\x00\\x00\\x00 name\\x1d\\xac'$\\x00\\x02\\xc0h\\x00\\x00\\x05+post7\\f\\x86\\x8f\\x00\\x02Ŕ\\x00\\x00/\\x19\\x00\\x01\\x00\\x00\\x01J\\xc0\\x833f\\x864_\\x0f<\\xf5\\x00\\v\\x02\\x00\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\\xff\\xec\\xff\\xb4\\x02\\x95\\x01\\xcd\\x00\\x00\\x00\\b\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xc0\\xff\\xc0\\x00\\x00\\x02\\x80\\xff\\xec\\x00\\x00\\x02\\x95\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\xc6\\x00\\x01\\x00\\x00\\x03\\xc7\\x01P\\x00 \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x01\\xf9\\x03\\x84\\x00\\x05\\x00\\x00\\x01L\\x01f\\x00\\x00\\x00G\\x01L\\x01f\\x00\\x00\\x00\\xf5\\x00\\x19\\x00\\x84\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00PfEd\\x00\\x80\\xf0\\x00\\xf9A\\x01\\xc0\\xff\\xc0\\x00.\\x01\\xcc\\x00T\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01:\\x01\\xa5\\x00\\x00\\x00 \\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xaa\\x00\\x00\\x02\\x00\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfe\\x02@\\x00\\x0f\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01`\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x80\\x00\\x18\\x02\\x00\\x00\\x10\\x02@\\x00\\x00\\x02\\x00\\x00\\b\\x02@\\xff\\xfc\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x12\\x01@\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x01`\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00@\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00@\\x01\\xc0\\xff\\xf8\\x01@\\x00\\x1b\\x01@\\x00\\x1b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x05\\x01\\xc0\\x00\\x05\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x13\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02@\\xff\\xfe\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\xff\\xf9\\x02@\\xff\\xff\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x05\\x01\\xc0\\x00\\x05\\x02\\x80\\x00\\x03\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfb\\x02@\\xff\\xff\\x02@\\x00\\x0f\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x00\\xff\\xfd\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\xff\\xf5\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01@\\x00\\a\\x01@\\x00\\a\\x00\\xc0\\x00\\x17\\x00\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\r\\x01@\\x00\\r\\x01@\\x00\\r\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\xff\\xff\\x01\\xc0\\x00\\x00\\x01`\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x18\\x01\\xc0\\x00\\x18\\x01@\\x00\\x00\\x01@\\x00\\x00\\x01\\x00\\x00\\x18\\x01\\x00\\x00\\x18\\x01@\\x00\\x00\\x01@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfb\\x02@\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x18\\x00\\xc0\\x00\\x00\\x00\\xc0\\x00\\x10\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01`\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x01\\xc0\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02@\\xff\\xff\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\b\\x00\\xc0\\x00\\x18\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01@\\x00\\x00\\x01@\\x00\\x00\\x01 \\xff\\xfd\\x01@\\x00\\x00\\x01\\x80\\x00\\x13\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x00\\xff\\xfe\\x02\\x00\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x05\\x00\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x1b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x10\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\x80\\xff\\xfc\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\a\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x10\\x01\\xc0\\x00 \\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02 \\xff\\xfd\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01 \\x00\\x00\\x01\\x80\\x00\\x00\\x01 \\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xe0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01 \\x00\\x00\\x01\\xe0\\x00\\x00\\x01 \\x00\\x00\\x01 \\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01@\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfe\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfd\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01 \\x00\\x00\\x02\\x00\\xff\\xfa\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\xff\\xfd\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\xff\\xf5\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfb\\x02\\x00\\xff\\xfc\\x01\\xc0\\x00\\x00\\x02@\\xff\\xf9\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfb\\x02\\x00\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x10\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xff\\x01\\x00\\x00\\r\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x00\\x00\\r\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\r\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01@\\xff\\xfe\\x01@\\xff\\xfe\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01`\\x00\\x00\\x01@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x10\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfa\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xe0\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x00\\xff\\xff\\x02\\x80\\xff\\xfa\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfe\\x02@\\xff\\xfe\\x01\\xc0\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01 \\xff\\xfc\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\xff\\xfe\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xf8\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02h\\xff\\xf5\\x02\\x80\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xff\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\xff\\xfc\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xff\\x02@\\xff\\xff\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\xff\\xfb\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf8\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02 \\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf8\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xfe\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xff\\x01\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xf5\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x18\\xff\\xfc\\x01\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xf0\\x00\\x00\\x01\\xc0\\xff\\xf6\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfc\\x01 \\xff\\xfc\\x01\\x80\\xff\\xfd\\x01\\xc0\\xff\\xfd\\x01\\xc0\\xff\\xed\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xe0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xe0\\xff\\xff\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfe\\x02@\\x00\\x10\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xf4\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfb\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xd0\\xff\\xfb\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfd\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xe0\\xff\\xff\\x01\\xc0\\x00\\x00\\x02@\\x00 \\x02\\x80\\xff\\xfd\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02@\\xff\\xfa\\x01\\x80\\x00\\x00\\x02\\x80\\xff\\xf2\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x00\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\xff\\xff\\x02\\x80\\xff\\xfa\\x02@\\xff\\xfa\\x02@\\xff\\xff\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02@\\x00\\x00\\x02\\x80\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\xff\\xfe\\x02\\x00\\x00\\x00\\x02@\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfe\\x02\\x00\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\xff\\xff\\x02\\x80\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x02\\x00\\xff\\xff\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00 \\x02\\x00\\xff\\xfc\\x02\\x00\\xff\\xff\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02@\\x00\\x00\\x01\\xc0\\xff\\xf7\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00 \\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xf9\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\xff\\xfa\\x02\\x00\\xff\\xff\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00 \\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xc0\\x00 \\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x00\\xff\\xfe\\x02\\x00\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfc\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x1c\\x00\\x01\\x00\\x00\\x00\\x00\\n\\xa4\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x1c\\x00\\x04\\n\\x88\\x00\\x00\\x02\\x9e\\x02\\x00\\x00\\b\\x00\\x9e\\xf0\\x02\\xf0\\x05\\xf0\\x0e\\xf0\\x13\\xf0\\x15\\xf0\\x19\\xf0\\x1c\\xf0\\x1e\\xf0>\\xf0D\\xf0N\\xf0[\\xf0^\\xf0n\\xf0|\\xf0\\x80\\xf0\\x86\\xf0\\x89\\xf0\\x8d\\xf0\\x91\\xf0\\x95\\xf0\\x98\\xf0\\x9e\\xf0\\xa1\\xf0\\xae\\xf0\\xb2\\xf0\\xce\\xf0\\xd1\\xf0\\xde\\xf0\\xe0\\xf0\\xe3\\xf0\\xeb\\xf0\\xf4\\xf0\\xfe\\xf1\\v\\xf1\\x0e\\xf1\\x11\\xf1\\x1c\\xf1\\x1e\\xf1\\\"\\xf1.\\xf11\\xf15\\xf1:\\xf1>\\xf1D\\xf1F\\xf1K\\xf1N\\xf1Y\\xf1^\\xf1e\\xf1\\x83\\xf1\\x88\\xf1\\x93\\xf1\\x95\\xf1\\x97\\xf1\\x99\\xf1\\x9d\\xf1\\xae\\xf1\\xb0\\xf1\\xb3\\xf1\\xbb\\xf1\\xc9\\xf1\\xce\\xf1\\xd8\\xf1\\xda\\xf1\\xde\\xf1\\xe6\\xf1\\xec\\xf1\\xf6\\xf1\\xfe\\xf2\\x01\\xf2\\a\\xf2\\v\\xf2\\x18\\xf2\\x1e\\xf2-\\xf26\\xf29\\xf2I\\xf2N\\xf2]\\xf2l\\xf2w\\xf2z\\xf2\\x8b\\xf2\\x8d\\xf2\\x92\\xf2\\x95\\xf2\\x9a\\xf2\\x9e\\xf2\\xa4\\xf2\\xa8\\xf2\\xb6\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc2\\xf2\\xce\\xf2\\xd2\\xf2\\xdc\\xf2\\xe5\\xf2\\xe7\\xf2\\xea\\xf2\\xed\\xf2\\xf2\\xf2\\xf6\\xf2\\xf9\\xf2\\xfe\\xf3\\x05\\xf3\\f\\xf3\\x1e\\xf3(\\xf38\\xf3[\\xf3]\\xf3`\\xf3b\\xf3\\x82\\xf3\\xa5\\xf3\\xbf\\xf3\\xc1\\xf3\\xc5\\xf3\\xc9\\xf3\\xcd\\xf3\\xd1\\xf3\\xdd\\xf3\\xe0\\xf3\\xe5\\xf3\\xed\\xf3\\xfa\\xf3\\xfd\\xf3\\xff\\xf4\\x06\\xf4\\x10\\xf4\\\"\\xf4$\\xf44\\xf46\\xf4:\\xf4<\\xf4?\\xf4A\\xf4C\\xf4E\\xf4G\\xf4K\\xf4N\\xf4P\\xf4S\\xf4X\\xf4]\\xf4_\\xf4b\\xf4f\\xf4m\\xf4r\\xf4t\\xf4y\\xf4\\u007f\\xf4\\x82\\xf4\\x87\\xf4\\x8b\\xf4\\x8e\\xf4\\x94\\xf4\\x97\\xf4\\x9e\\xf4\\xad\\xf4\\xb3\\xf4\\xba\\xf4\\xbe\\xf4\\xc0\\xf4\\xc2\\xf4\\xc4\\xf4\\xce\\xf4\\xd3\\xf4\\xdb\\xf4\\xdf\\xf4\\xe3\\xf5\\t\\xf5\\x91\\xf5\\x9d\\xf5\\xa2\\xf5\\xa7\\xf5\\xb1\\xf5\\xb4\\xf5\\xb8\\xf5\\xbd\\xf5\\xc5\\xf5\\xcb\\xf5\\xce\\xf5\\xd2\\xf5\\xd7\\xf5\\xda\\xf5\\xdc\\xf5\\xdf\\xf5\\xe1\\xf5\\xe4\\xf5\\xe7\\xf5\\xeb\\xf5\\xee\\xf5\\xfd\\xf6\\x10\\xf6\\x13\\xf6\\x19\\xf6\\x1f\\xf6!\\xf60\\xf67\\xf6<\\xf6A\\xf6D\\xf6G\\xf6J\\xf6O\\xf6Q\\xf6U\\xf6X\\xf6^\\xf6b\\xf6f\\xf6k\\xf6m\\xf6o\\xf6t\\xf6v\\xf6y\\xf6|\\xf6\\u007f\\xf6\\x84\\xf6\\x89\\xf6\\x96\\xf6\\x9b\\xf6\\xa1\\xf6\\xa7\\xf6\\xa9\\xf6\\xad\\xf6\\xb7\\xf6\\xbb\\xf6\\xbe\\xf6\\xc0\\xf6\\xc4\\xf6\\xcf\\xf6\\xd1\\xf6\\xd3\\xf6\\xd5\\xf6\\xd7\\xf6\\xd9\\xf6\\xde\\xf6\\xe3\\xf6\\xe6\\xf6\\xe8\\xf6\\xed\\xf6\\xf2\\xf6\\xfa\\xf6\\xfc\\xf7\\x00\\xf7\\f\\xf7\\x0e\\xf7\\x15\\xf7\\x17\\xf7\\x1e\\xf7\\\"\\xf7)\\xf7/\\xf7=\\xf7@\\xf7C\\xf7G\\xf7M\\xf7S\\xf7V\\xf7[\\xf7_\\xf7i\\xf7k\\xf7s\\xf7}\\xf7\\x81\\xf7\\x84\\xf7\\x88\\xf7\\x8c\\xf7\\x94\\xf7\\x96\\xf7\\x9c\\xf7\\xa0\\xf7\\xa2\\xf7\\xa6\\xf7\\xab\\xf7\\xae\\xf7\\xb6\\xf7\\xba\\xf7\\xbd\\xf7\\xc0\\xf7\\xc2\\xf7\\xc5\\xf7\\xca\\xf7\\xce\\xf7\\xd0\\xf7\\xd2\\xf7\\xda\\xf7\\xe6\\xf7\\xec\\xf7\\xef\\xf7\\xf2\\xf7\\xf5\\xf7\\xf7\\xf7\\xfb\\xf8\\a\\xf8\\x10\\xf8\\x12\\xf8\\x16\\xf8\\x18\\xf8*\\xf8/\\xf8>\\xf8J\\xf8L\\xf8P\\xf8S\\xf8c\\xf8m\\xf8y\\xf8}\\xf8\\x82\\xf8\\x87\\xf8\\x91\\xf8\\x97\\xf8\\xc1\\xf8\\xcc\\xf8\\xd9\\xf8\\xff\\xf9A\\xff\\xff\\x00\\x00\\xf0\\x00\\xf0\\x04\\xf0\\a\\xf0\\x10\\xf0\\x15\\xf0\\x17\\xf0\\x1c\\xf0\\x1e\\xf0!\\xf0A\\xf0H\\xf0P\\xf0^\\xf0`\\xf0p\\xf0\\x80\\xf0\\x83\\xf0\\x89\\xf0\\x8d\\xf0\\x91\\xf0\\x93\\xf0\\x98\\xf0\\x9c\\xf0\\xa0\\xf0\\xa3\\xf0\\xb0\\xf0\\xc0\\xf0\\xd0\\xf0\\xd6\\xf0\\xe0\\xf0\\xe2\\xf0\\xe7\\xf0\\xf0\\xf0\\xf8\\xf1\\x00\\xf1\\r\\xf1\\x10\\xf1\\x18\\xf1\\x1e\\xf1 \\xf1$\\xf10\\xf13\\xf17\\xf1=\\xf1@\\xf1F\\xf1J\\xf1M\\xf1P\\xf1[\\xf1`\\xf1\\x82\\xf1\\x85\\xf1\\x91\\xf1\\x95\\xf1\\x97\\xf1\\x99\\xf1\\x9c\\xf1\\xab\\xf1\\xb0\\xf1\\xb2\\xf1\\xb8\\xf1\\xc0\\xf1\\xcd\\xf1\\xd8\\xf1\\xda\\xf1\\xdc\\xf1\\xe0\\xf1\\xea\\xf1\\xf6\\xf1\\xf8\\xf2\\x00\\xf2\\x04\\xf2\\n\\xf2\\x17\\xf2\\x1a\\xf2!\\xf23\\xf28\\xf2@\\xf2M\\xf2Q\\xf2l\\xf2q\\xf2y\\xf2\\x8b\\xf2\\x8d\\xf2\\x90\\xf2\\x95\\xf2\\x9a\\xf2\\x9d\\xf2\\xa0\\xf2\\xa7\\xf2\\xb5\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc1\\xf2\\xc7\\xf2\\xd0\\xf2\\xdb\\xf2\\xe5\\xf2\\xe7\\xf2\\xea\\xf2\\xed\\xf2\\xf1\\xf2\\xf5\\xf2\\xf9\\xf2\\xfe\\xf3\\x02\\xf3\\t\\xf3\\x1e\\xf3(\\xf37\\xf3X\\xf3]\\xf3`\\xf3b\\xf3\\x81\\xf3\\xa5\\xf3\\xbe\\xf3\\xc1\\xf3\\xc5\\xf3\\xc9\\xf3\\xcd\\xf3\\xd1\\xf3\\xdd\\xf3\\xe0\\xf3\\xe5\\xf3\\xed\\xf3\\xfa\\xf3\\xfd\\xf3\\xff\\xf4\\x06\\xf4\\x10\\xf4\\\"\\xf4$\\xf43\\xf46\\xf49\\xf4<\\xf4?\\xf4A\\xf4C\\xf4E\\xf4G\\xf4K\\xf4N\\xf4P\\xf4S\\xf4X\\xf4\\\\\\xf4_\\xf4a\\xf4f\\xf4h\\xf4p\\xf4t\\xf4w\\xf4}\\xf4\\x81\\xf4\\x84\\xf4\\x8b\\xf4\\x8d\\xf4\\x90\\xf4\\x96\\xf4\\x9e\\xf4\\xad\\xf4\\xb3\\xf4\\xb8\\xf4\\xbd\\xf4\\xc0\\xf4\\xc2\\xf4\\xc4\\xf4\\xcd\\xf4\\xd3\\xf4\\xd6\\xf4\\xde\\xf4\\xe2\\xf4\\xfa\\xf5\\x15\\xf5\\x93\\xf5\\x9f\\xf5\\xa4\\xf5\\xaa\\xf5\\xb3\\xf5\\xb6\\xf5\\xba\\xf5\\xbf\\xf5\\xc7\\xf5\\xcd\\xf5\\xd0\\xf5\\xd7\\xf5\\xda\\xf5\\xdc\\xf5\\xde\\xf5\\xe1\\xf5\\xe4\\xf5\\xe7\\xf5\\xeb\\xf5\\xee\\xf5\\xfc\\xf6\\x10\\xf6\\x13\\xf6\\x19\\xf6\\x1f\\xf6!\\xf6.\\xf67\\xf6;\\xf6A\\xf6D\\xf6G\\xf6J\\xf6O\\xf6Q\\xf6S\\xf6X\\xf6]\\xf6b\\xf6d\\xf6i\\xf6m\\xf6o\\xf6t\\xf6v\\xf6x\\xf6{\\xf6\\u007f\\xf6\\x81\\xf6\\x87\\xf6\\x96\\xf6\\x98\\xf6\\xa0\\xf6\\xa7\\xf6\\xa9\\xf6\\xad\\xf6\\xb6\\xf6\\xbb\\xf6\\xbe\\xf6\\xc0\\xf6\\xc3\\xf6\\xcf\\xf6\\xd1\\xf6\\xd3\\xf6\\xd5\\xf6\\xd7\\xf6\\xd9\\xf6\\xdd\\xf6\\xe2\\xf6\\xe6\\xf6\\xe8\\xf6\\xec\\xf6\\xf0\\xf6\\xfa\\xf6\\xfc\\xf6\\xff\\xf7\\v\\xf7\\x0e\\xf7\\x14\\xf7\\x17\\xf7\\x1e\\xf7\\\"\\xf7(\\xf7.\\xf7;\\xf7@\\xf7C\\xf7G\\xf7M\\xf7S\\xf7V\\xf7Z\\xf7^\\xf7i\\xf7k\\xf7r\\xf7|\\xf7\\x80\\xf7\\x83\\xf7\\x86\\xf7\\x8c\\xf7\\x93\\xf7\\x96\\xf7\\x9c\\xf7\\x9f\\xf7\\xa2\\xf7\\xa4\\xf7\\xa9\\xf7\\xad\\xf7\\xb5\\xf7\\xb9\\xf7\\xbd\\xf7\\xbf\\xf7\\xc2\\xf7\\xc4\\xf7\\xc9\\xf7\\xcc\\xf7\\xd0\\xf7\\xd2\\xf7\\xd7\\xf7\\xe4\\xf7\\xec\\xf7\\xef\\xf7\\xf2\\xf7\\xf5\\xf7\\xf7\\xf7\\xfb\\xf8\\x05\\xf8\\x0f\\xf8\\x12\\xf8\\x15\\xf8\\x18\\xf8)\\xf8/\\xf8>\\xf8J\\xf8L\\xf8P\\xf8S\\xf8c\\xf8m\\xf8y\\xf8{\\xf8\\x81\\xf8\\x84\\xf8\\x91\\xf8\\x97\\xf8\\xc0\\xf8\\xcc\\xf8\\xd9\\xf8\\xff\\xf9A\\xff\\xff\\x10\\x03\\x10\\x02\\x10\\x01\\x10\\x00\\x0f\\xff\\x0f\\xfe\\x0f\\xfc\\x0f\\xfb\\x0f\\xf9\\x0f\\xf7\\x0f\\xf4\\x0f\\xf3\\x0f\\xf1\\x0f\\xf0\\x0f\\xef\\x0f\\xec\\x0f\\xea\\x0f\\xe8\\x0f\\xe5\\x0f\\xe2\\x0f\\xe1\\x0f\\xdf\\x0f\\xdc\\x0f\\xdb\\x0f\\xda\\x0f\\xd9\\x0f\\xcc\\x0f\\xcb\\x0f\\xc7\\x0f\\xc6\\x0f\\xc5\\x0f\\xc2\\x0f\\xbe\\x0f\\xbb\\x0f\\xba\\x0f\\xb9\\x0f\\xb8\\x0f\\xb2\\x0f\\xb1\\x0f\\xb0\\x0f\\xaf\\x0f\\xae\\x0f\\xad\\x0f\\xac\\x0f\\xaa\\x0f\\xa9\\x0f\\xa8\\x0f\\xa5\\x0f\\xa4\\x0f\\xa3\\x0f\\xa2\\x0f\\xa1\\x0f\\x85\\x0f\\x84\\x0f|\\x0f{\\x0fz\\x0fy\\x0fw\\x0fj\\x0fi\\x0fh\\x0fd\\x0f`\\x0f]\\x0fT\\x0fS\\x0fR\\x0fQ\\x0fN\\x0fE\\x0fD\\x0fC\\x0fA\\x0f?\\x0f4\\x0f3\\x0f1\\x0f,\\x0f+\\x0f%\\x0f\\\"\\x0f \\x0f\\x12\\x0f\\x0e\\x0f\\r\\x0e\\xfd\\x0e\\xfc\\x0e\\xfa\\x0e\\xf8\\x0e\\xf4\\x0e\\xf2\\x0e\\xf1\\x0e\\xef\\x0e\\xe3\\x0e\\xe1\\x0e\\xe0\\x0e\\xdf\\x0e\\xdc\\x0e\\xd8\\x0e\\xd7\\x0e\\xcf\\x0e\\xc7\\x0e\\xc6\\x0e\\xc4\\x0e\\xc2\\x0e\\xbf\\x0e\\xbd\\x0e\\xbb\\x0e\\xb7\\x0e\\xb4\\x0e\\xb1\\x0e\\xa0\\x0e\\x97\\x0e\\x89\\x0ej\\x0ei\\x0eg\\x0ef\\x0eH\\x0e&\\x0e\\x0e\\x0e\\r\\x0e\\n\\x0e\\a\\x0e\\x04\\x0e\\x01\\r\\xf6\\r\\xf4\\r\\xf0\\r\\xe9\\r\\xdd\\r\\xdb\\r\\xda\\r\\xd4\\r\\xcb\\r\\xba\\r\\xb9\\r\\xab\\r\\xaa\\r\\xa8\\r\\xa7\\r\\xa5\\r\\xa4\\r\\xa3\\r\\xa2\\r\\xa1\\r\\x9e\\r\\x9c\\r\\x9b\\r\\x99\\r\\x95\\r\\x92\\r\\x91\\r\\x90\\r\\x8d\\r\\x8c\\r\\x8a\\r\\x89\\r\\x87\\r\\x84\\r\\x83\\r\\x82\\r\\u007f\\r~\\r}\\r|\\rv\\rh\\rc\\r_\\r]\\r\\\\\\r[\\rZ\\rR\\rN\\rL\\rJ\\rH\\r2\\r'\\r&\\r%\\r$\\r\\\"\\r!\\r \\r\\x1f\\r\\x1e\\r\\x1d\\r\\x1c\\r\\x1b\\r\\x17\\r\\x15\\r\\x14\\r\\x13\\r\\x12\\r\\x10\\r\\x0e\\r\\v\\r\\t\\f\\xfc\\f\\xea\\f\\xe8\\f\\xe3\\f\\xde\\f\\xdd\\f\\xd1\\f\\xcb\\f\\xc8\\f\\xc4\\f\\xc2\\f\\xc0\\f\\xbe\\f\\xba\\f\\xb9\\f\\xb8\\f\\xb6\\f\\xb2\\f\\xaf\\f\\xae\\f\\xac\\f\\xab\\f\\xaa\\f\\xa6\\f\\xa5\\f\\xa4\\f\\xa3\\f\\xa1\\f\\xa0\\f\\x9e\\f\\x92\\f\\x91\\f\\x8d\\f\\x88\\f\\x87\\f\\x84\\f|\\fy\\fw\\fv\\ft\\fj\\fi\\fh\\fg\\ff\\fe\\fb\\f_\\f]\\f\\\\\\fY\\fW\\fP\\fO\\fM\\fC\\fB\\f=\\f<\\f6\\f3\\f.\\f*\\f\\x1f\\f\\x1d\\f\\x1b\\f\\x18\\f\\x13\\f\\x0e\\f\\f\\f\\t\\f\\a\\v\\xfe\\v\\xfd\\v\\xf7\\v\\xef\\v\\xed\\v\\xec\\v\\xeb\\v\\xe8\\v\\xe2\\v\\xe1\\v\\xdc\\v\\xda\\v\\xd9\\v\\xd8\\v\\xd6\\v\\xd5\\v\\xcf\\v\\xcd\\v\\xcb\\v\\xca\\v\\xc9\\v\\xc8\\v\\xc5\\v\\xc4\\v\\xc3\\v\\xc2\\v\\xbe\\v\\xb5\\v\\xb0\\v\\xae\\v\\xac\\v\\xaa\\v\\xa9\\v\\xa6\\v\\x9d\\v\\x96\\v\\x95\\v\\x93\\v\\x92\\v\\x82\\v~\\vp\\ve\\vd\\va\\v_\\vP\\vG\\v<\\v;\\v8\\v7\\v.\\v)\\v\\x01\\n\\xf7\\n\\xeb\\n\\xc6\\n\\x85\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x02\\n\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\xc5\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00L\\x00\\x00\\x00\\xb0\\x00\\x00\\x01\\x18\\x00\\x00\\x01`\\x00\\x00\\x01\\xbc\\x00\\x00\\x02\\x14\\x00\\x00\\x03d\\x00\\x00\\x04\\x10\\x00\\x00\\x05\\x88\\x00\\x00\\x06\\x88\\x00\\x00\\x06\\xd4\\x00\\x00\\aH\\x00\\x00\\a\\xec\\x00\\x00\\bp\\x00\\x00\\t\\x18\\x00\\x00\\t\\xf0\\x00\\x00\\n\\xc4\\x00\\x00\\v\\x84\\x00\\x00\\v\\xd4\\x00\\x00\\f\\x90\\x00\\x00\\r<\\x00\\x00\\r\\xa0\\x00\\x00\\x0eD\\x00\\x00\\x0f$\\x00\\x00\\x0f\\xf0\\x00\\x00\\x10L\\x00\\x00\\x10\\xc0\\x00\\x00\\x11H\\x00\\x00\\x11\\x84\\x00\\x00\\x11\\xf8\\x00\\x00\\x12\\xf0\\x00\\x00\\x13p\\x00\\x00\\x14<\\x00\\x00\\x14\\x90\\x00\\x00\\x15\\x14\\x00\\x00\\x15\\xb0\\x00\\x00\\x15\\xdc\\x00\\x00\\x16|\\x00\\x00\\x16\\xfc\\x00\\x00\\x17\\x84\\x00\\x00\\x18\\b\\x00\\x00\\x18p\\x00\\x00\\x198\\x00\\x00\\x19\\xfc\\x00\\x00\\x1a\\xac\\x00\\x00\\x1b\\\\\\x00\\x00\\x1c\\f\\x00\\x00\\x1c\\xbc\\x00\\x00\\x1d\\xbc\\x00\\x00\\x1e\\x8c\\x00\\x00\\x1f\\\\\\x00\\x00\\x1f\\xb4\\x00\\x00 (\\x00\\x00 p\\x00\\x00 \\xa4\\x00\\x00!\\f\\x00\\x00!\\xbc\\x00\\x00\\\"\\x00\\x00\\x00\\\"\\\\\\x00\\x00\\\"\\xb0\\x00\\x00\\\"\\xe4\\x00\\x00#D\\x00\\x00#|\\x00\\x00#\\xd0\\x00\\x00$0\\x00\\x00$x\\x00\\x00$\\xd4\\x00\\x00% \\x00\\x00%l\\x00\\x00%\\xcc\\x00\\x00&\\f\\x00\\x00&\\x88\\x00\\x00&\\xe0\\x00\\x00'x\\x00\\x00'\\xe8\\x00\\x00(\\xcc\\x00\\x00) \\x00\\x00)\\x84\\x00\\x00)\\xe8\\x00\\x00*H\\x00\\x00*\\xac\\x00\\x00+\\x10\\x00\\x00+\\xb8\\x00\\x00,`\\x00\\x00,\\xc0\\x00\\x00,\\xf8\\x00\\x00-\\xa8\\x00\\x00.\\b\\x00\\x00.\\xc4\\x00\\x00/<\\x00\\x00/\\xa0\\x00\\x000,\\x00\\x001\\b\\x00\\x001t\\x00\\x001\\xf4\\x00\\x003\\x04\\x00\\x003\\xb0\\x00\\x003\\xf8\\x00\\x004\\xa4\\x00\\x004\\xf0\\x00\\x005<\\x00\\x006\\x00\\x00\\x006\\x88\\x00\\x006\\xc4\\x00\\x0070\\x00\\x008\\f\\x00\\x008\\xe0\\x00\\x009\\\\\\x00\\x00;\\xe0\\x00\\x00<h\\x00\\x00<\\xa4\\x00\\x00= \\x00\\x00=\\xdc\\x00\\x00>\\x8c\\x00\\x00?8\\x00\\x00?\\x90\\x00\\x00@\\x1c\\x00\\x00@\\x88\\x00\\x00A\\x04\\x00\\x00A\\x94\\x00\\x00B$\\x00\\x00B\\xb8\\x00\\x00C|\\x00\\x00D4\\x00\\x00D\\xe8\\x00\\x00E\\xa0\\x00\\x00FT\\x00\\x00F\\xc8\\x00\\x00G<\\x00\\x00G\\xb0\\x00\\x00H$\\x00\\x00H\\xf0\\x00\\x00Ip\\x00\\x00J\\x8c\\x00\\x00J\\xcc\\x00\\x00KD\\x00\\x00K\\xec\\x00\\x00L\\xb8\\x00\\x00M\\xa4\\x00\\x00M\\xfc\\x00\\x00Nh\\x00\\x00O\\x10\\x00\\x00O\\x90\\x00\\x00P0\\x00\\x00P\\xac\\x00\\x00P\\xe4\\x00\\x00Ql\\x00\\x00R8\\x00\\x00S\\xc0\\x00\\x00T\\xa8\\x00\\x00UP\\x00\\x00U\\xb8\\x00\\x00VT\\x00\\x00W\\x00\\x00\\x00W\\x88\\x00\\x00W\\xbc\\x00\\x00W\\xf0\\x00\\x00X$\\x00\\x00XT\\x00\\x00X\\xa8\\x00\\x00X\\xfc\\x00\\x00Y,\\x00\\x00Y\\\\\\x00\\x00Z\\x04\\x00\\x00Z\\x80\\x00\\x00[,\\x00\\x00[\\x84\\x00\\x00\\\\\\\\\\x00\\x00] \\x00\\x00]\\xc0\\x00\\x00^L\\x00\\x00_@\\x00\\x00`\\x18\\x00\\x00`\\x84\\x00\\x00a\\x04\\x00\\x00a\\x80\\x00\\x00b\\x8c\\x00\\x00cp\\x00\\x00d8\\x00\\x00d\\xb4\\x00\\x00eX\\x00\\x00e\\xe4\\x00\\x00fX\\x00\\x00f\\xe0\\x00\\x00gl\\x00\\x00g\\xf8\\x00\\x00h|\\x00\\x00h\\xc8\\x00\\x00i\\x10\\x00\\x00i\\\\\\x00\\x00i\\xa4\\x00\\x00j\\x14\\x00\\x00j\\x8c\\x00\\x00j\\xdc\\x00\\x00k,\\x00\\x00k\\xc0\\x00\\x00lX\\x00\\x00m\\x04\\x00\\x00m(\\x00\\x00m\\xac\\x00\\x00n(\\x00\\x00n\\x8c\\x00\\x00o0\\x00\\x00p\\xb0\\x00\\x00q\\xb0\\x00\\x00r$\\x00\\x00r\\xc0\\x00\\x00sT\\x00\\x00s\\x94\\x00\\x00t,\\x00\\x00u\\x14\\x00\\x00u\\xe0\\x00\\x00vt\\x00\\x00v\\xe0\\x00\\x00w,\\x00\\x00x\\b\\x00\\x00x\\xe0\\x00\\x00y<\\x00\\x00z\\f\\x00\\x00z\\xac\\x00\\x00{t\\x00\\x00{\\xec\\x00\\x00|\\xa0\\x00\\x00}<\\x00\\x00}\\x9c\\x00\\x00}\\xfc\\x00\\x00~\\\\\\x00\\x00~\\xc0\\x00\\x00\\u007f\\x94\\x00\\x00\\x80\\x1c\\x00\\x00\\x80\\x84\\x00\\x00\\x80\\xd4\\x00\\x00\\x81$\\x00\\x00\\x81\\xd0\\x00\\x00\\x82\\x1c\\x00\\x00\\x82t\\x00\\x00\\x82\\xe0\\x00\\x00\\x83l\\x00\\x00\\x84(\\x00\\x00\\x84\\x94\\x00\\x00\\x84\\xf0\\x00\\x00\\x85H\\x00\\x00\\x85\\xa4\\x00\\x00\\x86d\\x00\\x00\\x86\\xf0\\x00\\x00\\x87\\xa8\\x00\\x00\\x884\\x00\\x00\\x88\\xcc\\x00\\x00\\x89L\\x00\\x00\\x8ah\\x00\\x00\\x8a\\xbc\\x00\\x00\\x8b`\\x00\\x00\\x8cD\\x00\\x00\\x8d(\\x00\\x00\\x8e\\x10\\x00\\x00\\x8e\\xf8\\x00\\x00\\x8f\\xe4\\x00\\x00\\x90\\xd0\\x00\\x00\\x91\\x94\\x00\\x00\\x92\\\\\\x00\\x00\\x92\\xcc\\x00\\x00\\x934\\x00\\x00\\x93\\xe8\\x00\\x00\\x94<\\x00\\x00\\x94\\xa8\\x00\\x00\\x95h\\x00\\x00\\x95\\xc4\\x00\\x00\\x96\\x00\\x00\\x00\\x96\\xc8\\x00\\x00\\x97h\\x00\\x00\\x98\\b\\x00\\x00\\x98\\xbc\\x00\\x00\\x99T\\x00\\x00\\x99\\xec\\x00\\x00\\x9b\\x10\\x00\\x00\\x9c0\\x00\\x00\\x9d \\x00\\x00\\x9d\\x9c\\x00\\x00\\x9ed\\x00\\x00\\x9e\\xcc\\x00\\x00\\x9f\\x80\\x00\\x00\\xa0\\x80\\x00\\x00\\xa1\\x88\\x00\\x00\\xa2X\\x00\\x00\\xa2\\xe8\\x00\\x00\\xa3T\\x00\\x00\\xa4H\\x00\\x00\\xa5\\x10\\x00\\x00\\xa5\\xc4\\x00\\x00\\xa6l\\x00\\x00\\xa6\\xf8\\x00\\x00\\xa7\\xcc\\x00\\x00\\xa8\\xa0\\x00\\x00\\xa98\\x00\\x00\\xaaD\\x00\\x00\\xaa\\xd0\\x00\\x00\\xab@\\x00\\x00\\xab\\x98\\x00\\x00\\xac<\\x00\\x00\\xac\\xf8\\x00\\x00\\xadX\\x00\\x00\\xaed\\x00\\x00\\xae\\xd4\\x00\\x00\\xafp\\x00\\x00\\xb0`\\x00\\x00\\xb0\\xf0\\x00\\x00\\xb2\\xa0\\x00\\x00\\xb3X\\x00\\x00\\xb3\\xd4\\x00\\x00\\xb4\\xb0\\x00\\x00\\xb5D\\x00\\x00\\xb6h\\x00\\x00\\xb7\\x14\\x00\\x00\\xb7\\x80\\x00\\x00\\xb8$\\x00\\x00\\xb8\\xec\\x00\\x00\\xb9d\\x00\\x00\\xb9\\xe4\\x00\\x00\\xba\\xc8\\x00\\x00\\xbb$\\x00\\x00\\xbb\\x9c\\x00\\x00\\xbc8\\x00\\x00\\xbc\\x98\\x00\\x00\\xbc\\xdc\\x00\\x00\\xbe\\x04\\x00\\x00\\xbe\\xe4\\x00\\x00\\xbf\\xa8\\x00\\x00\\xc0D\\x00\\x00\\xc14\\x00\\x00\\xc2\\x00\\x00\\x00\\xc2\\xc0\\x00\\x00\\xc3\\xc0\\x00\\x00\\xc4\\xf4\\x00\\x00Ũ\\x00\\x00\\xc60\\x00\\x00Ƥ\\x00\\x00\\xc7\\f\\x00\\x00\\xc7\\xc4\\x00\\x00\\xc8`\\x00\\x00\\xc9T\\x00\\x00\\xca4\\x00\\x00\\xcb\\x14\\x00\\x00\\xcb\\xec\\x00\\x00̌\\x00\\x00\\xcd \\x00\\x00ͨ\\x00\\x00\\xcd\\xfc\\x00\\x00\\xce8\\x00\\x00\\xcfH\\x00\\x00\\xcf\\xf4\\x00\\x00Р\\x00\\x00\\xd1\\x18\\x00\\x00Ѩ\\x00\\x00\\xd2t\\x00\\x00\\xd2\\xe4\\x00\\x00\\xd3T\\x00\\x00\\xd3\\xc4\\x00\\x00\\xd40\\x00\\x00Ԕ\\x00\\x00\\xd4\\xe4\\x00\\x00ՠ\\x00\\x00\\xd6P\\x00\\x00\\xd7$\\x00\\x00\\xd7x\\x00\\x00\\xd7\\xe0\\x00\\x00\\xd8\\xf4\\x00\\x00ـ\\x00\\x00\\xda \\x00\\x00ڬ\\x00\\x00\\xdb(\\x00\\x00\\xdb\\xd0\\x00\\x00\\xdcl\\x00\\x00\\xdc\\xf4\\x00\\x00\\xddd\\x00\\x00\\xde8\\x00\\x00\\xde\\xdc\\x00\\x00\\xdf`\\x00\\x00\\xe0(\\x00\\x00\\xe0\\xa4\\x00\\x00\\xe1\\x18\\x00\\x00\\xe1\\xcc\\x00\\x00\\xe2`\\x00\\x00\\xe30\\x00\\x00\\xe3\\xdc\\x00\\x00\\xe40\\x00\\x00\\xe4\\x90\\x00\\x00\\xe54\\x00\\x00\\xe5\\x94\\x00\\x00\\xe5\\xdc\\x00\\x00\\xe6P\\x00\\x00\\xe6\\x9c\\x00\\x00\\xe7\\x18\\x00\\x00\\xe7\\xf8\\x00\\x00\\xe8\\xc4\\x00\\x00\\xe9T\\x00\\x00\\xea0\\x00\\x00\\xea\\xf8\\x00\\x00\\xeb\\xc4\\x00\\x00\\xec\\xc4\\x00\\x00\\xed\\xe0\\x00\\x00\\xee\\xf8\\x00\\x00\\xf0\\x84\\x00\\x00\\xf1p\\x00\\x00\\xf2\\xa4\\x00\\x00\\xf3|\\x00\\x00\\xf4\\x84\\x00\\x00\\xf5L\\x00\\x00\\xf6\\x00\\x00\\x00\\xf6\\xd0\\x00\\x00\\xf78\\x00\\x00\\xf7\\xd8\\x00\\x00\\xf8\\xb8\\x00\\x00\\xf9l\\x00\\x00\\xfa \\x00\\x00\\xfa\\xd4\\x00\\x00\\xfb\\x88\\x00\\x00\\xfc(\\x00\\x00\\xfe\\f\\x00\\x00\\xfe\\xe0\\x00\\x00\\xff\\xe8\\x00\\x01\\x008\\x00\\x01\\x00p\\x00\\x01\\x00\\xec\\x00\\x01\\x02<\\x00\\x01\\x04(\\x00\\x01\\x04x\\x00\\x01\\x05(\\x00\\x01\\x05\\xa0\\x00\\x01\\x06h\\x00\\x01\\a\\x14\\x00\\x01\\a\\x9c\\x00\\x01\\b$\\x00\\x01\\b\\xa8\\x00\\x01\\t\\x1c\\x00\\x01\\t\\xf0\\x00\\x01\\n\\x90\\x00\\x01\\v \\x00\\x01\\vl\\x00\\x01\\v\\xe4\\x00\\x01\\f$\\x00\\x01\\fd\\x00\\x01\\f\\xac\\x00\\x01\\f\\xf0\\x00\\x01\\r\\x9c\\x00\\x01\\x0e\\x14\\x00\\x01\\x0ep\\x00\\x01\\x0e\\xc8\\x00\\x01\\x0f \\x00\\x01\\x0ft\\x00\\x01\\x0f\\xc8\\x00\\x01\\x10\\x1c\\x00\\x01\\x10\\xb4\\x00\\x01\\x11(\\x00\\x01\\x11\\xac\\x00\\x01\\x128\\x00\\x01\\x12\\xc8\\x00\\x01\\x138\\x00\\x01\\x13\\x8c\\x00\\x01\\x13\\xe0\\x00\\x01\\x14L\\x00\\x01\\x14\\xac\\x00\\x01\\x15|\\x00\\x01\\x15\\xe8\\x00\\x01\\x16\\xb8\\x00\\x01\\x17H\\x00\\x01\\x17\\xc8\\x00\\x01\\x180\\x00\\x01\\x18\\x98\\x00\\x01\\x19\\b\\x00\\x01\\x1a\\x00\\x00\\x01\\x1a\\x88\\x00\\x01\\x1a\\xe0\\x00\\x01\\x1bp\\x00\\x01\\x1b\\xf0\\x00\\x01\\x1cp\\x00\\x01\\x1d\\b\\x00\\x01\\x1d\\xb0\\x00\\x01\\x1e\\x18\\x00\\x01\\x1f|\\x00\\x01 \\x10\\x00\\x01!\\x8c\\x00\\x01\\\"\\x1c\\x00\\x01\\\"\\xd4\\x00\\x01#`\\x00\\x01$4\\x00\\x01$\\xd8\\x00\\x01%\\xac\\x00\\x01&\\xbc\\x00\\x01'|\\x00\\x01'\\xbc\\x00\\x01(l\\x00\\x01(\\x88\\x00\\x01)\\f\\x00\\x01)\\xe0\\x00\\x01+\\x18\\x00\\x01+\\xc4\\x00\\x01, \\x00\\x01,\\xc8\\x00\\x01-\\\\\\x00\\x01-\\xa0\\x00\\x01.4\\x00\\x01.\\xc4\\x00\\x01/\\xb4\\x00\\x010\\xc4\\x00\\x011\\xac\\x00\\x012p\\x00\\x013 \\x00\\x013\\xb0\\x00\\x014L\\x00\\x014\\xd8\\x00\\x016\\x04\\x00\\x016d\\x00\\x017\\b\\x00\\x017\\xbc\\x00\\x018h\\x00\\x018\\xe8\\x00\\x019l\\x00\\x019\\xfc\\x00\\x01:\\xc0\\x00\\x01;\\xb0\\x00\\x01<\\x98\\x00\\x01=d\\x00\\x01>\\x00\\x00\\x01>\\x88\\x00\\x01>\\xe8\\x00\\x01?\\x90\\x00\\x01@@\\x00\\x01@\\xd8\\x00\\x01B\\f\\x00\\x01B\\xa4\\x00\\x01C,\\x00\\x01C\\xa8\\x00\\x01DD\\x00\\x01E\\\\\\x00\\x01E\\xf8\\x00\\x01Fh\\x00\\x01G\\x14\\x00\\x01H@\\x00\\x01I\\f\\x00\\x01I\\xc4\\x00\\x01J\\\\\\x00\\x01K\\xa8\\x00\\x01L\\x98\\x00\\x01M(\\x00\\x01M\\xe8\\x00\\x01N<\\x00\\x01N\\xb0\\x00\\x01OH\\x00\\x01O\\xb0\\x00\\x01PT\\x00\\x01Q \\x00\\x01Q\\xa4\\x00\\x01R\\x00\\x00\\x01Rp\\x00\\x01S|\\x00\\x01T\\x04\\x00\\x01T\\x94\\x00\\x01U\\xf0\\x00\\x01V\\x88\\x00\\x01W(\\x00\\x01W\\xd4\\x00\\x01X\\x90\\x00\\x01Y\\f\\x00\\x01Y\\x94\\x00\\x01Z<\\x00\\x01Z\\xb0\\x00\\x01[l\\x00\\x01[\\xcc\\x00\\x01]p\\x00\\x01^\\x80\\x00\\x01_\\x88\\x00\\x01`8\\x00\\x01`\\xac\\x00\\x01a\\xec\\x00\\x01bx\\x00\\x01b\\xe0\\x00\\x01cx\\x00\\x01d$\\x00\\x01d\\xd4\\x00\\x01e8\\x00\\x01e\\xd0\\x00\\x01f|\\x00\\x01gh\\x00\\x01h\\x10\\x00\\x01h\\xa4\\x00\\x01h\\xf4\\x00\\x01i\\xb4\\x00\\x01j0\\x00\\x01j\\x94\\x00\\x01j\\xf4\\x00\\x01kX\\x00\\x01k\\xd8\\x00\\x01l8\\x00\\x01l\\xb0\\x00\\x01mp\\x00\\x01n,\\x00\\x01o@\\x00\\x01o\\x98\\x00\\x01p\\x18\\x00\\x01p\\xc8\\x00\\x01qH\\x00\\x01r\\x04\\x00\\x01r\\\\\\x00\\x01r\\xd8\\x00\\x01s\\x9c\\x00\\x01t\\x84\\x00\\x01uL\\x00\\x01u\\xc4\\x00\\x01v\\x84\\x00\\x01w\\xa8\\x00\\x01x<\\x00\\x01x\\xe0\\x00\\x01y\\\\\\x00\\x01y\\xc8\\x00\\x01zX\\x00\\x01{$\\x00\\x01{\\xf8\\x00\\x01|\\xb4\\x00\\x01}d\\x00\\x01}\\xec\\x00\\x01~`\\x00\\x01\\u007f\\x14\\x00\\x01\\u007fh\\x00\\x01\\x80\\b\\x00\\x01\\x80\\xac\\x00\\x01\\x81\\x84\\x00\\x01\\x82 \\x00\\x01\\x82\\x98\\x00\\x01\\x83 \\x00\\x01\\x85T\\x00\\x01\\x86\\x18\\x00\\x01\\x86\\x94\\x00\\x01\\x87x\\x00\\x01\\x87\\xe8\\x00\\x01\\x88\\xd4\\x00\\x01\\x89\\\\\\x00\\x01\\x8aD\\x00\\x01\\x8b\\xc8\\x00\\x01\\x8c`\\x00\\x01\\x8d`\\x00\\x01\\x8e\\x10\\x00\\x01\\x8e|\\x00\\x01\\x8f\\x80\\x00\\x01\\x90|\\x00\\x01\\x91\\x04\\x00\\x01\\x91\\x88\\x00\\x01\\x92\\x00\\x00\\x01\\x92\\xc4\\x00\\x01\\x93\\x80\\x00\\x01\\x94\\b\\x00\\x01\\x95\\f\\x00\\x01\\x95\\xe0\\x00\\x01\\x96\\xb8\\x00\\x01\\x97\\x90\\x00\\x01\\x988\\x00\\x01\\x98\\xa8\\x00\\x01\\x99\\xa4\\x00\\x01\\x9a0\\x00\\x01\\x9a\\xc4\\x00\\x01\\x9bX\\x00\\x01\\x9c0\\x00\\x01\\x9dT\\x00\\x01\\x9e0\\x00\\x01\\x9f\\x18\\x00\\x01\\x9f\\xa4\\x00\\x01\\xa0(\\x00\\x01\\xa0\\xc8\\x00\\x01\\xa2t\\x00\\x01\\xa2\\xe8\\x00\\x01\\xa3x\\x00\\x01\\xa3\\xf8\\x00\\x01\\xa4P\\x00\\x01\\xa5t\\x00\\x01\\xa6\\xb4\\x00\\x01\\xa7\\xe0\\x00\\x01\\xa8\\xb8\\x00\\x01\\xa94\\x00\\x01\\xa9\\xdc\\x00\\x01\\xaa\\x94\\x00\\x01\\xab\\x88\\x00\\x01\\xacL\\x00\\x01\\xac\\xf0\\x00\\x01\\xae\\x14\\x00\\x01\\xae\\xf8\\x00\\x01\\xb00\\x00\\x01\\xb1\\f\\x00\\x01\\xb2\\f\\x00\\x01\\xb3 \\x00\\x01\\xb3\\xbc\\x00\\x01\\xb4\\xb0\\x00\\x01\\xb5\\xac\\x00\\x01\\xb6X\\x00\\x01\\xb7\\x10\\x00\\x01\\xb7x\\x00\\x01\\xb8\\xac\\x00\\x01\\xba$\\x00\\x01\\xbb\\b\\x00\\x01\\xbb\\xac\\x00\\x01\\xbc\\x88\\x00\\x01\\xbd\\xb0\\x00\\x01\\xbe(\\x00\\x01\\xbe\\xe4\\x00\\x01\\xbf\\x88\\x00\\x01\\xc0 \\x00\\x01\\xc0\\xf8\\x00\\x01\\xc1\\x90\\x00\\x01\\xc2<\\x00\\x01°\\x00\\x01\\xc3\\\\\\x00\\x01ì\\x00\\x01\\xc4@\\x00\\x01\\xc4\\xc4\\x00\\x01\\xc5H\\x00\\x01\\xc5\\xcc\\x00\\x01Ƭ\\x00\\x01\\xc7\\x18\\x00\\x01ǘ\\x00\\x01\\xc8P\\x00\\x01\\xc8\\xe0\\x00\\x01\\xc9x\\x00\\x01\\xca\\x14\\x00\\x01\\xca\\xec\\x00\\x01\\xcb|\\x00\\x01\\xcc$\\x00\\x01\\xcc\\xe0\\x00\\x01͔\\x00\\x01\\xce\\\\\\x00\\x01\\xce\\xe8\\x00\\x01\\xcf`\\x00\\x01\\xd0L\\x00\\x01\\xd0\\xc8\\x00\\x01\\xd1L\\x00\\x01\\xd2\\x04\\x00\\x01\\xd2l\\x00\\x01\\xd3\\x14\\x00\\x01\\xd4\\x18\\x00\\x01\\xd5,\\x00\\x01՜\\x00\\x01\\xd6D\\x00\\x01\\xd6\\xec\\x00\\x01\\u05cc\\x00\\x01\\xd8l\\x00\\x01\\xd8\\xe0\\x00\\x01\\xd9H\\x00\\x01\\xd9\\xf0\\x00\\x01ڜ\\x00\\x01\\xdb\\xcc\\x00\\x01ܠ\\x00\\x01\\xdd(\\x00\\x01\\xdd\\xf8\\x00\\x01\\xde\\xe8\\x00\\x01ߤ\\x00\\x01\\xe1\\x84\\x00\\x01\\xe24\\x00\\x01\\xe3H\\x00\\x01\\xe3\\xc0\\x00\\x01\\xe4\\xd0\\x00\\x01\\xe5\\xac\\x00\\x01\\xe6L\\x00\\x01\\xe7\\b\\x00\\x01\\xe7\\xc0\\x00\\x01\\xe8H\\x00\\x01\\xe8\\xc0\\x00\\x01\\xe9h\\x00\\x01\\xea\\xb8\\x00\\x01\\xec0\\x00\\x01\\xed|\\x00\\x01\\xeeD\\x00\\x01\\xf0\\xbc\\x00\\x01\\xf1\\x8c\\x00\\x01\\xf2d\\x00\\x01\\xf2\\xe8\\x00\\x01\\xf3\\x9c\\x00\\x01\\xf4P\\x00\\x01\\xf5\\xf0\\x00\\x01\\xf6\\xdc\\x00\\x01\\xf7\\xfc\\x00\\x01\\xf8`\\x00\\x01\\xfa\\x10\\x00\\x01\\xfa\\xf0\\x00\\x01\\xfbT\\x00\\x01\\xfb\\xe4\\x00\\x01\\xfc\\xe4\\x00\\x01\\xfe\\x04\\x00\\x01\\xfe\\xc8\\x00\\x01\\xff\\xa0\\x00\\x02\\x01\\f\\x00\\x02\\x02\\xb4\\x00\\x02\\x03\\xc0\\x00\\x02\\x050\\x00\\x02\\x05\\xc8\\x00\\x02\\x06\\x9c\\x00\\x02\\bl\\x00\\x02\\tH\\x00\\x02\\n\\xb0\\x00\\x02\\f\\xa8\\x00\\x02\\r\\x14\\x00\\x02\\r\\xa0\\x00\\x02\\x0eP\\x00\\x02\\x0f\\x00\\x00\\x02\\x0f\\x84\\x00\\x02\\x10h\\x00\\x02\\x11T\\x00\\x02\\x12\\\\\\x00\\x02\\x13\\f\\x00\\x02\\x13\\xac\\x00\\x02\\x14d\\x00\\x02\\x15\\x10\\x00\\x02\\x15\\xc0\\x00\\x02\\x16\\x8c\\x00\\x02\\x17\\xac\\x00\\x02\\x18T\\x00\\x02\\x19$\\x00\\x02\\x19\\xb8\\x00\\x02\\x1a,\\x00\\x02\\x1b\\f\\x00\\x02\\x1c\\x1c\\x00\\x02\\x1c\\x90\\x00\\x02\\x1dT\\x00\\x02\\x1d\\xec\\x00\\x02\\x1e\\x9c\\x00\\x02\\x1f\\x90\\x00\\x02 \\x8c\\x00\\x02!\\x04\\x00\\x02!\\xac\\x00\\x02\\\"\\x88\\x00\\x02#\\x18\\x00\\x02%\\x04\\x00\\x02& \\x00\\x02'H\\x00\\x02'\\xdc\\x00\\x02(d\\x00\\x02*\\x90\\x00\\x02+\\x1c\\x00\\x02,\\b\\x00\\x02,\\xc4\\x00\\x02-\\xa8\\x00\\x02.H\\x00\\x02/@\\x00\\x02/\\xd0\\x00\\x020$\\x00\\x021\\x04\\x00\\x021\\xd8\\x00\\x0228\\x00\\x023\\b\\x00\\x023\\x80\\x00\\x024`\\x00\\x024\\x98\\x00\\x026\\x14\\x00\\x026\\xf0\\x00\\x028D\\x00\\x028\\xfc\\x00\\x029\\x84\\x00\\x02:\\x84\\x00\\x02:\\xf8\\x00\\x02;\\xf0\\x00\\x02=0\\x00\\x02>\\b\\x00\\x02?4\\x00\\x02@\\xb8\\x00\\x02BX\\x00\\x02C\\xbc\\x00\\x02D\\x94\\x00\\x02E\\xa8\\x00\\x02F\\x80\\x00\\x02Gp\\x00\\x02H\\xe0\\x00\\x02I\\xa4\\x00\\x02J`\\x00\\x02K\\x1c\\x00\\x02K\\xc8\\x00\\x02ML\\x00\\x02N\\x10\\x00\\x02N\\xd4\\x00\\x02P(\\x00\\x02P\\xf8\\x00\\x02Q\\x90\\x00\\x02R(\\x00\\x02S\\f\\x00\\x02S\\xa0\\x00\\x02UP\\x00\\x02VP\\x00\\x02W\\x14\\x00\\x02X(\\x00\\x02X\\xac\\x00\\x02Y\\xf8\\x00\\x02Z\\xd0\\x00\\x02[$\\x00\\x02\\\\\\xa4\\x00\\x02]\\x04\\x00\\x02]d\\x00\\x02^\\f\\x00\\x02^h\\x00\\x02_\\xa8\\x00\\x02`P\\x00\\x02`\\xb0\\x00\\x02a\\\\\\x00\\x02a\\xc4\\x00\\x02b\\x88\\x00\\x02c$\\x00\\x02c\\xec\\x00\\x02d\\xdc\\x00\\x02e\\xb8\\x00\\x02f\\x94\\x00\\x02f\\xe8\\x00\\x02g\\x80\\x00\\x02hh\\x00\\x02iD\\x00\\x02j0\\x00\\x02j\\xec\\x00\\x02l \\x00\\x02m \\x00\\x02n\\x94\\x00\\x02o\\xc4\\x00\\x02p\\x1c\\x00\\x02p\\xbc\\x00\\x02q\\x8c\\x00\\x02rD\\x00\\x02r\\xb0\\x00\\x02s\\xb0\\x00\\x02tL\\x00\\x02t\\x9c\\x00\\x02t\\xe0\\x00\\x02u\\xa4\\x00\\x02v$\\x00\\x02v\\xc0\\x00\\x02v\\xf0\\x00\\x02w\\xac\\x00\\x02xX\\x00\\x02x\\xc4\\x00\\x02y\\xd4\\x00\\x02z4\\x00\\x02z\\xe4\\x00\\x02{x\\x00\\x02|\\f\\x00\\x02|\\xb8\\x00\\x02}X\\x00\\x02}\\xf8\\x00\\x02~\\xb0\\x00\\x02\\u007f(\\x00\\x02\\u007f\\xf8\\x00\\x02\\x80`\\x00\\x02\\x83\\x9c\\x00\\x02\\x84\\xf0\\x00\\x02\\x85\\x80\\x00\\x02\\x86\\xb0\\x00\\x02\\x87 \\x00\\x02\\x87\\xb0\\x00\\x02\\x88\\xac\\x00\\x02\\x89`\\x00\\x02\\x8a@\\x00\\x02\\x8b$\\x00\\x02\\x8c\\b\\x00\\x02\\x8c\\xf0\\x00\\x02\\x8d\\xdc\\x00\\x02\\x8e\\xc8\\x00\\x02\\x8f\\xcc\\x00\\x02\\x90D\\x00\\x02\\x90\\xdc\\x00\\x02\\x91h\\x00\\x02\\x91\\xb4\\x00\\x02\\x92\\x1c\\x00\\x02\\x92\\xdc\\x00\\x02\\x93\\xc4\\x00\\x01\\xff\\xfa\\xff\\xc0\\x02\\x06\\x01\\xc0\\x00\\x17\\x00\\x00\\x01\\a\\x1532\\x16\\x15\\x14+\\x01\\\"546;\\x015'&63!2\\x16\\x01\\xf6\\xd68\\x11\\x17\\b\\xf0\\b\\x17\\x118\\xd6\\x10\\x11\\x17\\x01\\xbc\\x17\\x11\\x01\\x86\\xd6\\xc0\\x17\\x11\\b\\b\\x11\\x17\\xc0\\xd6\\x10**\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00 \\x00\\x00\\x01632\\x1e\\x01\\x15\\x11\\x14\\x06\\\"&4632\\x175\\x05\\x15\\x14\\x06\\\"&4632\\x17\\x11467\\x01\\xd6\\x05\\x05\\t\\x0e\\t8P88(\\x10\\x10\\xff\\x008P88(\\x10\\x10\\r\\t\\x01\\xbe\\x02\\t\\x0e\\t\\xfe\\xa0\\x1b%%6%\\x04\\xb9K\\xea\\x1b%%6%\\x04\\x01\\x05\\n\\x12\\x03\\x00\\x02\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x19\\x00!\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x17&264&\\\"\\x06\\x14\\x01\\xf9\\a\\a\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\a\\xfajKKjK\\x05\\a\\x14\\a\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\a\\aKjKKj\\x00\\x00\\x01\\xff\\xfd\\xff\\xe0\\x02\\x03\\x01\\xa4\\x00\\x12\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x06\\\"/\\x01&676\\x16\\x1f\\x017>\\x01\\x01\\xce/\\x06+\\xc1\\n\\x1a\\n\\xc1+\\x06/)k&\\x14\\x14&k\\x01\\x81(|+\\xc8\\n\\n\\xc8+|(#\\t'\\x14\\x14'\\t\\x00\\x01\\x00\\x0f\\xff\\xba\\x021\\x01\\xc1\\x00\\x18\\x00\\x00\\x0162\\x1f\\x02\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06&?\\x01'&6?\\x01\\x01\\x03\\t(\\tA\\x92\\x14\\f\\x0ej\\x19\\x03 \\x11\\x83\\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92\\x01\\xae\\x12\\x12\\x84\\x16\\x02&\\x0eg\\x92\\x13\\x17\\tDD\\n\\x18\\x13\\x92g\\x0e&\\x02\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x1b\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x01\\x15jKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xc0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00/\\x00;\\x00G\\x00S\\x00_\\x00k\\x00w\\x00\\x83\\x00\\x8f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x0154+\\x01\\\"\\x1d\\x01!54+\\x01\\\"\\x1d\\x01#\\\"&5\\x1146;\\x01\\x15\\x14;\\x012=\\x01!\\x15\\x14;\\x012=\\x01\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\f(\\f\\xfe\\xc0\\f(\\f\\b\\n\\x0e\\x0e\\n\\b\\f(\\f\\x01@\\f(\\f\\xfe\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x10\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\fp\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x80\\x0e\\n\\xfe\\xb0\\n\\x0e\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\x0e\\n\\x01P\\n\\x0e\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\xfe\\xcc(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\xc4`\\f\\f`\\f\\xb4`\\f\\f`\\f\\x8c(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x0346;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x05\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01(\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0eF\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\x18\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x01(\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\x01\\xa0\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\xfe\\xf8\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\x18\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00 \\x000\\x00B\\x00R\\x00b\\x00r\\x00\\x82\\x00\\x92\\x00\\x00\\x13\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x17\\x14\\x0e\\x01+\\x01\\\"&=\\x0146;\\x012\\x16\\x15746;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5#\\x14\\x0e\\x02+\\x01\\\"&=\\x0146;\\x012\\x16\\x15\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a46;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5%\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#%46;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x95\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\xb6\\a\\v\\x06f\\n\\x0e\\x0e\\nf\\n\\x0e \\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e \\x04\\a\\b\\x05f\\n\\x0e\\x0e\\nf\\n\\x0e\\xce\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\n\\x18\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x01\\x83\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\n\\xfe\\xcd\\x0e\\nf\\n\\x0e\\x0e\\nf\\n\\x0e\\x01\\x88P\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\xfa\\a\\v\\x06\\x0e\\nP\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x05\\t\\x06\\x04\\x0e\\nP\\n\\x0e\\x0e\\n\\x88\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\xb8\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x88\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\xa0\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0eh\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x007\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\a46;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x13\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x01463!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x17\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x95\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x95\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e}\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\n\\xb5\\n\\x0e\\x0e\\n\\x01\\x1b\\n\\x0e\\x0e\\n\\xfe\\xcd\\x0e\\n\\x01\\x1b\\n\\x0e\\x0e\\n\\xfe\\xe5\\n\\x0e\\x18\\n\\x0e\\x0e\\n\\x01\\x1b\\n\\x0e\\x0e\\n\\xe8P\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\xaa\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x01\\xa8\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\xfe@\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\x01\\xa8\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\xb8\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x02\\x00\\x01\\u007f\\x00\\x14\\x00\\x007'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\a\\x01\\x06\\\"\\xae\\xa7\\a\\a%\\a\\x15\\bp\\xf0\\b\\x15\\a%\\a\\a\\xfe\\xd9\\a\\x16\\t\\xa6\\a\\x16\\a$\\b\\bp\\xf0\\b\\b$\\a\\x16\\a\\xfe\\xda\\b\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x0f\\x01a\\x01q\\x00#\\x00\\x007\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\a\\xf3d\\t\\t\\x16\\n\\x1a\\tdd\\t\\x1a\\n\\x16\\t\\tdd\\t\\t\\x16\\n\\x1a\\tdd\\t\\x1a\\n\\x16\\t\\t\\xc0d\\t\\x1a\\n\\x16\\t\\tdd\\t\\t\\x16\\n\\x1a\\tdd\\t\\x1a\\n\\x16\\t\\tdd\\t\\t\\x16\\n\\x1a\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x1b\\x005\\x00=\\x00\\x00\\x01\\x15\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x13\\a\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x1f\\x01\\x16\\x14&4&\\\"\\x06\\x14\\x162\\x010\\f8\\f \\f8\\f\\f8\\f \\f8\\f\\xc9\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\ad\\a\\xa8PpPPp\\x01\\x00 \\f8\\f\\f8\\f \\f8\\f\\f8\\xfe\\xd7\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\ad\\a\\x14\\xcepPPpP\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\v\\x00%\\x00-\\x00\\x00\\x01\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x13\\a\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x1f\\x01\\x16\\x14&4&\\\"\\x06\\x14\\x162\\x010\\f\\xa8\\f\\f\\xa8\\f\\xc9\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\ad\\a\\xa8PpPPp\\x01\\x00 \\f\\f \\f\\xfe\\xd7\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\ad\\a\\x14\\xcepPPpP\\x00\\x02\\x00\\a\\xff\\xc7\\x01\\xf8\\x01\\xc0\\x00)\\x009\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x06#\\\".\\x0154>\\x0176\\x16\\x1f\\x01\\x16\\x06\\a\\x0e\\x03\\x15\\x14\\x1632654&'.\\x01?\\x01>\\x01\\a\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x15\\x01\\x9008\\x91gCrC\\x1a. \\t\\x15\\x05\\x10\\x04\\x04\\a\\x10\\x19\\x11\\nbFEc$ \\a\\x04\\x04\\x10\\x05\\x15_\\x0e\\n \\n\\x0e\\x0e\\n \\n\\x0e\\x01\\x8a\\\"k=g\\x91BrD)L>\\x17\\x06\\x05\\t\\x1c\\b\\x12\\x05\\f\\x1d\\\"'\\x15EcbG'G\\x18\\x05\\x12\\b\\x1c\\t\\x05\\xd8\\n\\x0e\\x0e\\n\\xf0\\n\\x0e\\x0e\\n\\x00\\x00\\x05\\x00\\x18\\xff\\xc0\\x02h\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463%2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x1146372\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x1146372\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\xd8\\a\\t\\t\\a0\\a\\t\\t\\aP\\a\\t\\t\\a0\\a\\t\\t\\a\\x010\\a\\t\\t\\a0\\a\\t\\t\\a\\xb0\\a\\t\\t\\a0\\a\\t\\t\\a\\xb0\\a\\t\\t\\a0\\a\\t\\t\\a\\xa0\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t`\\t\\a`\\a\\t\\t\\a`\\a\\t\\xc0\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01 \\a\\t`\\t\\a\\xfe\\x80\\a\\t\\t\\a\\x01\\x80\\a\\t`\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\x00\\x00\\x00\\x02\\x00\\x10\\xff\\xc1\\x01\\xf0\\x01\\xbf\\x00<\\x00D\\x00\\x00%\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\a\\x06'&=\\x01&'\\a\\x06'&'&?\\x01&47'&7676\\x1f\\x01675476\\x17\\x16\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\a\\x06264&\\\"\\x06\\x14\\x01\\xe7\\t\\x03\\x11&\\x06\\b+\\x1b\\\"\\t76\\n\\\"\\x1b*\\t\\x06&\\x11\\x03\\t*\\x03\\x03*\\t\\x03\\x11&\\x06\\t*\\x1b\\\"\\t77\\t\\\"\\x1b*\\t\\x06&\\x11\\x03\\t*\\x06\\x06\\xdeB//B/\\x84\\x04\\n5)\\a\\x04\\x19\\x17\\f1\\n\\x02\\f\\f\\x02\\n1\\f\\x17\\x19\\x04\\a)5\\t\\x05\\x19\\x11$\\x11\\x19\\x04\\n5)\\a\\x05\\x18\\x17\\f1\\n\\x02\\f\\f\\x02\\n1\\f\\x17\\x19\\x04\\a)5\\n\\x04\\x19##-/B//B\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02A\\x01\\xa0\\x00\\x1e\\x00D\\x00\\x00\\x0162\\x1f\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x014.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01%\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"/\\x01&\\\"\\x0f\\x01\\x06#\\\"/\\x01&54?\\x0162\\x1f\\x01546;\\x012\\x16\\x1d\\x01\\x01\\x18\\x04\\b\\x04\\xb8\\t\\ap\\a\\t\\x04\\b\\x04@\\a\\t\\t\\ap\\a\\t\\x01\\xdc\\x04\\x03\\x19\\x04\\x05\\x05\\x03\\xeb\\x04\\b\\x04\\xeb\\x03\\x04\\x06\\x04\\x19\\x03\\x04\\xfd\\x0e\\\"\\rZ\\a\\x058\\x05\\a\\x01,\\x02\\x02\\x98\\xa4\\a\\t\\n\\x06`\\x04\\b\\x04\\t\\a`\\x06\\n\\t\\a\\xa41\\x04\\x06\\x04\\x03\\x1f\\x05\\x03\\xc2\\x02\\x02\\xc2\\x03\\x05\\x1f\\x03\\x04\\x06\\x04\\xd0\\v\\vJI\\x05\\a\\a\\x05\\x8b\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x16?\\x016/\\x0154+\\x01\\\"\\x1d\\x01\\x14\\x17\\x99Α\\x91Α\\x011\\n\\a\\x1c\\a\\t@\\f0\\f\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xcd\\a\\t'\\n\\a.\\x8a\\f\\f\\xa8\\x06\\x04\\x00\\x00\\x00\\x03\\xff\\xfb\\x00\\x00\\x02E\\x01\\x80\\x00\\\"\\x000\\x00B\\x00\\x00%\\x16\\x06+\\x01'4&+\\x01\\\"\\x0e\\x01\\x15\\a#\\\"&7\\x136;\\x01\\a\\x14\\x16;\\x01265'32\\x17\\x0f\\x01\\x06\\x16;\\x0126/\\x01&+\\x01\\\"\\x172>\\x015'4&+\\x01\\\"\\x06\\x15\\a\\x14\\x1e\\x013\\x02=\\a\\x12\\x11\\xc4\\v\\t\\aD\\x04\\a\\x05\\v\\xc4\\x11\\x12\\a\\x8c\\b\\x13b\\x03\\x05\\x03\\x1e\\x03\\x05\\x03b\\x13\\b\\xad\\x04\\x01\\a\\x06(\\x06\\a\\x01\\x04\\x01\\a(\\a7\\x04\\b\\x04\\x06\\t\\x06.\\x06\\t\\x06\\x04\\b\\x04-\\x10\\x1db\\x06\\b\\x04\\x06\\x04b\\x1d\\x10\\x01@\\x13\\x17\\x04\\x05\\x05\\x04\\x17\\x134,\\x05\\b\\b\\x05,\\a\\xb0\\x05\\b\\x050\\x06\\b\\b\\x060\\x05\\b\\x05\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x00+\\x003\\x00;\\x00\\x00\\x1332\\x16\\x1d\\x0132\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01546\\x01\\x15\\x14\\x06#!\\\"&=\\x0146;\\x01\\x17\\x162?\\x0132\\x16\\x064&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\xd8P\\n\\x0eX\\r\\n\\t\\x98\\x06\\x10\\x06\\x98\\t\\n\\rX\\x0e\\x012\\x0e\\n\\xfe0\\n\\x0e\\x0e\\n\\x931\\x0f*\\x0f1\\x93\\n\\x0e|\\f\\x10\\f\\f\\x10L\\f\\x10\\f\\f\\x10\\x01\\xc0\\x0e\\n\\xa8\\x19\\t\\x98\\x06\\x06\\x98\\t\\x19\\xa8\\n\\x0e\\xfe\\x88p\\n\\x0e\\x0e\\np\\n\\x0e1\\x0f\\x0f1\\x0ej\\x10\\f\\f\\x10\\f\\f\\x10\\f\\f\\x10\\f\\x00\\x02\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x16\\x00\\x1e\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014?\\x01>\\x023!2\\x16\\x17\\x05\\a3\\x17373'\\x028\\b\\x1c\\x14\\xfe \\x14\\x1c\\bj\\x04\\r\\x10\\a\\x01\\f\\v\\x17\\x06\\xfe\\xd4U{ p {U\\xcc\\f\\x0f\\x81\\x14\\x1c\\x1c\\x14\\x81\\x0f\\f\\x9f\\x05\\n\\x06\\r\\b+\\x80@@\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\a\\xff\\xc8\\x02\\x01\\x01\\xc0\\x00<\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146303\\x17.\\x01#\\\"\\x06\\x14\\x163267632\\x1f\\x01\\x16\\x15\\x14\\a\\x0e\\x03#\\\".\\x0154632\\x1e\\x01\\x17'41463\\x01\\xf4\\x05\\a\\a\\x05\\xc8\\x05\\a\\a\\x05\\x01e\\x16U'IggI\\x1cD\\x14\\x04\\x04\\x05\\x04\\\"\\x03\\x04\\x0e)-.\\x14CsB\\x92f\\x1fIA\\x14\\x04\\a\\x05\\x01\\xc0\\a\\x05\\xc8\\x05\\a\\a\\x05/\\x05\\a\\x05 .g\\x92g\\x1a\\x12\\x03\\x04\\\"\\x03\\x05\\x06\\x03\\r\\x18\\x11\\nBrDf\\x92\\x17)\\x17R\\x01\\x05\\a\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00*\\x00T\\x00\\x00\\x014146;\\x012\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x17.\\x01#\\\"\\x06\\a\\x06+\\x01\\\"&545>\\x0132\\x1e\\x01\\x17\\x032676;\\x012\\x16\\x15\\x14\\a\\x0e\\x01#\\\"&'\\x17\\x141\\x14\\x06+\\x01\\\"=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#'\\x1e\\x01\\x01\\xb9\\a\\x05/\\f\\a\\x05\\xc8\\x05\\a\\a\\x05f\\x16U':d\\r\\x02\\n1\\x05\\a\\x11\\x89Z\\x1fIA\\x14\\xbd9d\\x0e\\x02\\n1\\x05\\a\\x01\\x10\\x89Z0n\\x1f\\x04\\a\\x05/\\f\\a\\x05\\xc8\\x05\\a\\a\\x05f\\x15V\\x01\\xb3\\x01\\x05\\a\\f\\xc8\\x05\\a\\a\\x05/\\x05\\a\\x05 .O8\\t\\a\\x05\\x01\\x01Ws\\x17)\\x17\\xfe\\xafO8\\t\\a\\x05\\x01\\x01Ws3$R\\x01\\x05\\a\\f\\xc8\\x05\\a\\a\\x05/\\x05\\a\\x05 .\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x003\\x00?\\x00K\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x00\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1554+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1554+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xd0\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\xfe\\xad\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\xf8\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01h\\x17\\\"\\x17\\x17\\\"I\\x17\\\"\\x17\\x17\\\"I\\x17\\\"\\x17\\x17\\\"\\x9f \\f\\f \\fT \\f\\f \\fT \\f\\f \\f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01#54&\\\"\\x06\\x1d\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x18Y~YP*<*\\xe0\\x1c\\x14\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x14\\x1cH?YY?HH\\x1e**\\x1eH\\x00\\x00\\x01\\x00\\b\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00'\\x00\\x00\\x01276\\x16\\x1d\\x01\\x14\\a\\x06#\\\"&#\\\"\\a\\x15\\x14\\x06+\\x01\\\"&5\\x11&546\\x17\\x1e\\x01\\x17\\x14\\x15\\x14\\a62\\x16\\x01^0E\\x0f\\x1e\\x0e;?$h\\x1a>4\\x0e\\n\\x10\\n\\x0e\\x18\\\"\\x18\\x16\\x1f\\x01\\x04!Gh\\x01] \\a\\x12\\x12\\xf3\\x11\\t)#\\x17^\\n\\x0e\\x0e\\n\\x01\\x82\\x11\\x1d\\x18!\\x01\\x01\\x1e\\x15\\x02\\x02\\n\\n\\f#\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x001\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x0e\\x01+\\x01\\\"&=\\x0146;\\x012\\x1754&\\\"\\x06\\x1d\\x016;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&/\\x01.\\x01=\\x014\\x96Ԗ\\n\\b\\x0e\\x02A-\\x18\\n\\x0e\\x0e\\n\\x18/!q\\x9eq!/\\x18\\n\\x0e\\x0e\\n\\x18-A\\x02\\x0e\\b\\n\\x01\\xa0\\x96j0\\b\\x11\\x04\\a-?\\x0e\\n\\xb0\\n\\x0e\\\"\\x02OqqO\\x02\\\"\\x0e\\n\\xb0\\n\\x0e?-\\a\\x04\\x11\\b0j\\x00\\x00\\x01\\x00\\x00\\xff\\xfc\\x01\\x00\\x01\\x84\\x00\\x11\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\x01y\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e\\x00\\x02\\x00\\x00\\xff\\xfa\\x01\\x81\\x01\\x84\\x00\\x11\\x00#\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01\\x17\\x1e\\x01\\x14\\x06\\a\\x06.\\x016764'.\\x01>\\x01\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\xd4\\x15\\x19\\x19\\x15\\b\\x14\\t\\x05\\t\\x15\\x15\\t\\x05\\t\\x14\\x01x\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e\\x13\\f)0)\\f\\x05\\x06\\x11\\x13\\x05\\f.\\f\\x05\\x13\\x11\\x06\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xce\\x02@\\x01\\xb2\\x00\\x11\\x00'\\x00>\\x00P\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01%\\x1e\\x01\\x14\\x06\\a\\x06.\\x0167>\\x0254&'.\\x01>\\x01\\x16\\x14\\x06\\a\\x06&'&67>\\x024.\\x01'.\\x01>\\x01\\x17\\x16\\a\\x1e\\x01\\x14\\x06\\a\\x06.\\x016764'.\\x01>\\x01\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\x01B<DD<\\b\\x14\\v\\x04\\t!/\\x1a91\\t\\x04\\v\\x14(-)\\t\\x13\\x05\\x05\\x04\\t\\x13\\x1d\\x0f\\x0f\\x1d\\x13\\t\\x04\\n\\x14\\b)a\\x15\\x19\\x19\\x15\\b\\x14\\t\\x05\\t\\x15\\x15\\t\\x05\\t\\x14\\x01y\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e\\x8c'~\\x8e~'\\x06\\x05\\x10\\x14\\x05\\x16=J';h!\\x05\\x14\\x10\\x05\\xc2`S\\x19\\x06\\x05\\b\\t\\x13\\x06\\f$,.,$\\f\\x06\\x13\\x11\\x05\\x06\\x196\\f)0)\\f\\x05\\x06\\x11\\x13\\x05\\f.\\f\\x05\\x13\\x11\\x06\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00#\\x00'\\x00+\\x00\\x00=\\x013\\x15'\\x153573\\x15#75#\\x15\\x0153\\x15'\\x1535%3\\x15#5#\\x15#53\\x153\\x153\\x15#'3\\x15#\\xc0\\x80@\\x80\\xc0\\xc0\\x80@\\xfe\\xc0\\xc0\\x80@\\x01  ` @`@  @  \\xe0\\xc0\\xc0\\x80@@@\\xc0@@@\\xfe\\xc0\\xc0\\xc0\\x80@@@\\x80 `\\xc0 \\x80   \\x00\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00\\x001\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x11\\x12\\t\\t\\x12\\t$\\t\\x1b\\x12\\x1b\\t\\t\\t\\t\\t\\x1a\\x12\\x1b\\x12\\x12\\x12\\x12\\x12\\t\\x12\\x1b\\x1b\\t\\t\\t\\x12\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x11\\x00\\x19\\x00\\x00=\\x0146;\\x012\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&6\\\"\\x06\\x14\\x16264\\x1c\\x14\\xcc\\x14\\x0e\\xd4\\x0e\\x0e\\xcc\\x0e(\\x0e\\xd4\\x0e\\x84(\\x1c\\x1c(\\x1c\\xc4\\xcc\\x14\\x1c\\x0e\\xd4\\x0e(\\x0e\\xcc\\x0e\\x0e\\xd4\\x0e\\xd0\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\x11\\x00\\x19\\x00)\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x0146;\\x012\\x17\\x06264&\\\"\\x06\\x14\\x05\\a\\x06\\\"'764/\\x0132\\x1f\\x01\\x16\\x14\\x01\\xf2\\x0e\\x0e\\xcc\\x0e(\\x0e\\xd4\\x0e\\x1c\\x14\\xcc\\x14\\x0e\\xc2(\\x1c\\x1c(\\x1c\\x022\\xcc\\x0e(\\x0e\\xae\\x1a\\x1a\\xc51\\x14\\x0e\\xd4\\x0e\\xde\\x0e(\\x0e\\xcc\\x0e\\x0e\\xd4\\x0e\\x14\\xcc\\x14\\x1c\\x0e\\x92\\x1c(\\x1c\\x1c(\\xa2\\xcc\\x0e\\x0e\\xae\\x1bJ\\x1b\\xc4\\x0e\\xd4\\x0e(\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00#\\x00/\\x008\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x05\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x13&7!\\\"\\x06\\x14\\x163\\x01\\xc0\\t\\x03\\x03\\t\\x0e\\n\\xfe\\xb8(88(\\x01H\\n\\x0e\\xfe\\xc0\\x06\\xd4\\x06\\x06\\xd4\\x06\\x06\\xd4\\x06\\x06\\xd4\\x06\\xfd\\x03\\x03\\xfe\\xe3\\r\\x13\\x13\\rX\\f\\a\\v4\\v\\b\\v\\x10\\n\\x0e8(\\x01@(8\\x0e\\nn\\x14\\x06\\x06\\x14\\x06F\\x14\\x06\\x06\\x14\\x06\\xff\\x00  \\x13\\x1a\\x13\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\n\\x00\\x00\\x15\\x11463!2\\x16\\x15\\x11'\\x1c\\x14\\x01 \\x14\\x1c\\xc0@\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe0p\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00'\\x000\\x008\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01#\\\"&=\\x014635463!2\\x1f\\x01\\x16\\x15\\x035!\\x15%5#\\\"&=\\x01#\\x15\\x04264&\\\"\\x06\\x14\\x01\\xc0\\x1b%\\t\\a0\\x13\\r\\xfe\\xc0\\r\\x130\\a\\t%\\x1b\\x13\\r\\x01\\x13\\r\\t.\\t@\\xff\\x00\\x01\\x000\\a\\t\\xc0\\x01&\\x14\\x0e\\x0e\\x14\\x0e\\x01\\x00%\\x1bp\\a\\t`\\r\\x13\\x13\\r`\\t\\ap\\x1b%\\xa0\\r\\x13\\t.\\t\\r\\xfe\\x8d``\\xe0`\\t\\a0\\xa0H\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1a\\x00\\\"\\x00*\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x017>\\x02;\\x012\\x16\\x1f\\x0132\\x16\\x064&\\\"\\x06\\x14\\x1626\\x14\\x06\\\"&462\\x02\\x00\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14X\\f\\x04\\r\\x12\\n~\\x0f\\x18\\x06\\fX\\x14\\x1c\\x88FdFFd&4H44H\\x010\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c!\\t\\x0e\\b\\x11\\x0e!\\x1c\\xd6dFFdF\\x9cH44H4\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00-\\x000\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01'#\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x13>\\x01;\\x012\\x16\\x17\\x13'3'\\x01\\xb0\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x14\\x18\\x98\\x18\\x14\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x17\\x83\\x03\\x12\\t0\\t\\x12\\x03\\x83\\xe8^/ \\t\\a \\a\\t\\t\\a \\a\\t@@\\t\\a \\a\\t\\t\\a \\a\\t\\x01j\\t\\r\\r\\t\\xfe\\x96\\x90\\x81\\x00\\x03\\x00\\x12\\xff\\xe0\\x01\\x84\\x01\\xa0\\x00\\x1d\\x00%\\x00-\\x00\\x00%\\x1e\\x01\\a\\x0e\\x01+\\x01\\\"&=\\x0146;\\x01\\x11#\\\"&=\\x0146;\\x012\\x16\\a\\x06'\\x153264&#\\x11264&+\\x01\\x15\\x01M\\x1b\\x1c\\x04\\x05R6\\xd1\\a\\t\\t\\a  \\a\\t\\t\\a\\xc79L\\x06\\x03\\xd3W\\x14\\x1c\\x1c\\x14\\x18  \\x18W\\xd2\\x15?$4F\\t\\a0\\a\\t\\x01 \\t\\a0\\a\\tT9$a`\\x1c(\\x1c\\xfe\\xe0!.!p\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x00#\\x00\\x00\\x01\\x15\\x14\\x06+\\x01\\x0332\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x13#\\\"&=\\x0146;\\x012\\x16\\x01@\\t\\a?P/\\a\\t\\t\\a\\xc0\\a\\t\\t\\a?P/\\a\\t\\t\\a\\xc0\\a\\t\\x01\\x90 \\a\\t\\xfe\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02C\\x01\\xa0\\x00-\\x00I\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\x1132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x11#\\x15\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x015#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x15\\x010\\a\\t\\t\\a \\a\\t8(\\a\\t\\t\\a\\xa0\\a\\t\\t\\a(8\\t\\a \\a\\t\\t\\a\\x02 \\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v00\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\x01\\xa0\\t\\a`\\a\\t\\t\\a \\xfe\\xd0\\t\\a \\a\\t\\t\\a \\a\\t\\x010 \\a\\t\\t\\a`\\a\\t\\xfe\\xb0\\x14\\aP\\x05\\x05P\\a\\x14\\xe0\\x14\\aP\\x05\\x05P\\a\\x14\\xe0\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xdd\\x01\\xc0\\x01\\xa0\\x00-\\x00I\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\x15\\x14\\x06+\\x01\\\"&=\\x01463\\x01\\x17\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x013546\\x01\\xb0\\a\\t\\t\\a \\a\\tx\\x18\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x18x\\t\\a \\a\\t\\t\\a\\x01[P\\x05\\x05P\\a\\x14\\xe0\\x14\\aP\\x05\\x05P\\a\\x14\\xe0\\x14\\x01\\xa0\\t\\aP\\a\\t\\t\\a\\x10p\\t\\a \\a\\t\\t\\a \\a\\tp\\x10\\a\\t\\t\\aP\\a\\t\\xfe\\xfbP\\x04\\x0e\\x04P\\b\\b\\v00\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v00\\v\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x007\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\r\\x05\\b\\b\\x05\\x01\\x06\\x05\\b\\b\\x05\\xfe\\xfa\\x05\\b\\b\\x05\\x01\\x06\\x05\\b\\b\\x05\\x9d\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a`\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x01\\x00\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b@\\t\\a \\a\\t\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x11#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06\\x01\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\\\\\x05\\a\\a\\x05\\xe8\\x05\\a\\a\\x05\\xe8\\x05\\a\\a\\x05\\xe8\\x05\\a\\a\\x01 \\t\\a \\a\\t\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\a\\x05(\\x05\\a\\a\\x05(\\x05\\a\\xff\\x00\\a\\x05(\\x05\\a\\a\\x05(\\x05\\a\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x007\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x10\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa3\\x05\\b\\b\\x05\\xfe\\xfa\\x05\\b\\b\\x05\\x01\\x06\\x05\\b\\b\\x05\\xfe\\xfa\\x05\\b\\b\\x05\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\xff\\x00\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a \\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x06\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\x90\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463P\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\aP\\t\\a@\\a\\t\\t\\a@\\a\\t\\x01@\\t\\a@\\a\\t\\t\\a@\\a\\t\\xa0\\t\\a@\\a\\t\\t\\a@\\a\\t\\xb0\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\v\\x00\\x1b\\x00+\\x00;\\x00K\\x00\\x007'&4?\\x016\\x16\\x1d\\x01\\x14\\x06\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463e`\\x05\\x05`\\a\\x14\\x14\\x01D\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa3\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe3\\a\\t\\t\\a\\xfe`\\a\\t\\t\\aU`\\x04\\x0e\\x04`\\b\\b\\v\\xc0\\v\\b-\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\v\\x00\\x1b\\x00+\\x00;\\x00K\\x00\\x007\\x06&=\\x0146\\x1f\\x01\\x16\\x14\\a\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1b\\a\\x14\\x14\\a`\\x05\\x05\\x015\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa3\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe3\\a\\t\\t\\a\\xfe`\\a\\t\\t\\aU\\b\\b\\v\\xc0\\v\\b\\b`\\x04\\x0e\\x04\\x95\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x19\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x056\\x16\\x15\\x11\\x14\\x06/\\x015\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01\\xde\\x10\\\"#\\x0fn\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c&\\v\\x11\\x14\\xff\\x00\\x14\\x11\\vK\\x9e\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x17\\x00\\\"\\x00\\x00)\\x01\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x00\\\"\\x06\\x14\\x16264\\a!5'&\\x0f\\x01'&\\x0f\\x01\\x01\\xd0\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\xfe\\xa3.!!.!h\\x01\\x80X\\b\\b\\x888\\b\\bH\\x1c\\x14\\x01 \\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x01H!.!!.\\xe7pX\\b\\b\\x888\\b\\bH\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x01\\x80\\x01\\xc0\\x00\\x17\\x00\\x00\\x17.\\x065462\\x16\\x15\\x14\\x0e\\x05\\a\\x06\\\"\\xac\\x18=\\x1a\\\"\\v\\r\\x03p\\xa0p\\x03\\r\\v\\\"\\x1a=\\x18\\a\\x1a6#X$5\\x16\\\"\\x19\\x11PppP\\x11\\x19\\\"\\x165$X#\\n\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x006462\\x16\\x14\\x06\\\"7264&#\\b\\x91Α\\x91\\xcegLllLYΑ\\x91Α@l\\x98l\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc1\\x00\\x11\\x00!\\x00\\x00\\x13\\x1e\\x03\\x15\\x14\\x06\\\"&54>\\x02762\\x03264&#\\\"&54&\\\"\\x06\\x15\\x14\\x16\\xcd\\x106,!g\\x92g!-5\\x10\\a-\\x17\\a\\t\\t\\a!/\\t\\x0e\\tB\\x01\\xaa4_6I&JhhJ&H8^4\\x16\\xfe@\\t\\x0e\\t/!\\a\\t\\t\\a.B\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\f\\x00\\x1a\\x007\\x00\\x00\\x01\\x17\\x16\\x0f\\x02\\x06.\\x01?\\x0267\\x16\\x14\\x0f\\x01\\x06/\\x01&?\\x0162\\x17\\x034?\\x016\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x0f\\x01\\x06+\\x01\\x11!\\x01\\x93Z\\a\\a\\xdb\\\\\\x06\\v\\x06\\x01\\n\\xdb\\a\\xa9\\v\\v$\\a\\aZ\\a\\a$\\v \\f\\x84\\x04(\\x05\\x0f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x1e\\b\\x06\\x06(\\x03\\x05\\xe6\\x01@\\x01mZ\\a\\a\\xdb\\n\\x01\\x06\\v\\x06\\\\\\xdb\\a\\x10\\f \\f#\\a\\aZ\\a\\a#\\f\\f\\xfe\\xb2\\x05\\x03(\\x06\\x06\\b\\x9e\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x0f\\x05(\\x04\\xfe\\xc0\\x00\\x00\\x00\\x00\\x01\\x00@\\xff\\xda\\x01\\x80\\x01\\xa6\\x00\\x15\\x00\\x00\\x17\\x114;\\x012\\x1d\\x0176\\x16\\x15\\x11\\x14\\x06/\\x01\\x15\\x14+\\x01\\\"@\\f0\\f\\xc4\\x0f%%\\x0f\\xc4\\f0\\f\\x14\\x01\\xa8\\f\\f\\xb0\\xb5\\r\\x12\\x14\\xfe\\x80\\x14\\x12\\r\\xb4\\xaf\\f\\x00\\x00\\x01\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\x1f\\x00\\x005\\x114;\\x012\\x1d\\x0176\\x16\\x1d\\x0176\\x16\\x15\\x11\\x14\\x06/\\x01\\x15\\x14\\x06/\\x01\\x15\\x14+\\x01\\\"\\f(\\f\\xac\\x0f%\\xac\\x0f%%\\x0f\\xac%\\x0f\\xac\\f(\\f\\f\\x01h\\f\\f\\x98\\x9d\\r\\x12\\x14\\x84\\x9d\\r\\x12\\x14\\xfe\\xc0\\x14\\x12\\r\\x9c\\x83\\x14\\x12\\r\\x9c\\x97\\f\\x00\\x02\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\v\\x00\\x17\\x00\\x007&4?\\x016\\x16\\x15\\x11\\x14\\x06'7&4?\\x016\\x16\\x15\\x11\\x14\\x06'\\f\\f\\f\\xc0\\x0f%%\\x0f@\\f\\f\\xc0\\x0f%%\\x0f\\xa7\\n\\x1e\\n\\xa0\\r\\x12\\x14\\xfe\\xc0\\x14\\x12\\r\\xa0\\n\\x1e\\n\\xa0\\r\\x12\\x14\\xfe\\xc0\\x14\\x12\\r\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xb8\\x01\\xc1\\x01\\xc8\\x00\\v\\x00\\x00%\\x16\\x14\\a\\x05\\x06&5\\x1146\\x17\\x01\\xa8\\x18\\x18\\xfe\\xa0\\x1713\\x15\\xe9\\x0e6\\x0e\\xd0\\x0e\\x1b\\x1c\\x01\\xa0\\x1e\\x19\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe1\\x01\\xc0\\x01\\xa1\\x00\\x0f\\x00\\x1f\\x00\\x00\\x17#\\\"&5\\x1146;\\x012\\x16\\x15\\x11\\x14\\x06%\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15\\x90`\\x14\\x1c\\x1c\\x14`\\x14\\x1c\\x1c\\x01\\x1c\\x1c\\x14`\\x14\\x1c\\x1c\\x14`\\x14\\x1c\\x1f\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x00\\x02\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\v\\x00\\x17\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06&5\\x1146\\x17\\a\\x16\\x14\\x0f\\x01\\x06&5\\x1146\\x17\\x01\\xf4\\f\\f\\xc0\\x0f%%\\x0f@\\f\\f\\xc0\\x0f%%\\x0f\\xd9\\n\\x1e\\n\\xa0\\r\\x12\\x14\\x01@\\x14\\x12\\r\\xa0\\n\\x1e\\n\\xa0\\r\\x12\\x14\\x01@\\x14\\x12\\r\\x00\\x00\\x01\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\x1f\\x00\\x00\\x01\\x11\\x14+\\x01\\\"=\\x01\\a\\x06&=\\x01\\a\\x06&5\\x1146\\x1f\\x01546\\x1f\\x0154;\\x012\\x02\\x00\\f(\\f\\xac\\x0f%\\xac\\x0f%%\\x0f\\xac%\\x0f\\xac\\f(\\f\\x01t\\xfe\\x98\\f\\f\\x98\\x9d\\r\\x12\\x14\\x84\\x9d\\r\\x12\\x14\\x01@\\x14\\x12\\r\\x9c\\x83\\x14\\x12\\r\\x9c\\x97\\f\\x00\\x00\\x01\\x00@\\xff\\xda\\x01\\x80\\x01\\xa6\\x00\\x15\\x00\\x00\\x01\\x11\\x14+\\x01\\\"=\\x01\\a\\x06&5\\x1146\\x1f\\x0154;\\x012\\x01\\x80\\f0\\f\\xc4\\x0f%%\\x0f\\xc4\\f0\\f\\x01\\x94\\xfeX\\f\\f\\xb0\\xb5\\r\\x12\\x14\\x01\\x80\\x14\\x12\\r\\xb4\\xaf\\f\\x00\\x00\\x00\\x00\\x02\\xff\\xf7\\xff\\xe0\\x01\\xc9\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00\\x00%\\x15\\x14\\x06#!\\\"&=\\x01463!2\\x16%\\\"&?\\x0162\\x1f\\x01\\x16\\x06#\\x01\\xc0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfep\\x1f\\x19\\x15\\xb0\\x0e*\\x0e\\xb0\\x15\\x19\\x1f@@\\r\\x13\\x13\\r@\\r\\x13\\x1339\\x17\\xc0\\x10\\x10\\xc0\\x179\\x00\\x00\\x00\\x01\\x00\\x1b\\xff\\xe5\\x01%\\x01\\x9b\\x00\\x14\\x00\\x00?\\x0162\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06\\x0f\\x01\\x06\\\"/\\x01&4#\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\xd1\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\x00\\x00\\x00\\x01\\x00\\x1b\\xff\\xe5\\x01%\\x01\\x9b\\x00\\x14\\x00\\x00%\\a\\x06\\\"/\\x01.\\x01?\\x01'&6?\\x0162\\x1f\\x01\\x16\\x14\\x01\\x1d\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\xaf\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00#\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x99Α\\x91Α\\x01\\x88\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\x01\\xb8\\x91Α\\x91\\u03838\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x13\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17!2=\\x014#!\\\"\\x1d\\x01\\x14\\x99Α\\x91Αt\\x01\\b\\f\\f\\xfe\\xf8\\f\\x01\\xb8\\x91Α\\x91Ώ\\f8\\f\\f8\\f\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00#\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016\\x99Α\\x91Α\\x01rBB\\b\\b(\\b\\tAA\\t\\b(\\b\\bBB\\b\\b(\\b\\tAA\\t\\b(\\b\\x01\\xb8\\x91Α\\x91ΨAA\\t\\b(\\b\\bBB\\b\\b(\\b\\tAA\\t\\b(\\b\\bBB\\b\\b(\\b\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00\\x00\\x00\\x14\\x06\\\"&462\\x0376/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x16\\x01\\xf8\\x91Α\\x91΄\\xb8\\f\\f\\x16\\f\\v\\x96F\\v\\f\\x16\\f\\fh\\v\\x01'Α\\x91Α\\xfe\\x85\\xb8\\v\\v\\x17\\v\\v\\x96F\\v\\v\\x17\\v\\vh\\f\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00+\\x003\\x00\\x00\\x00\\x14\\x06\\\"&462\\a\\\"\\a\\x06\\x1f\\x01\\x167>\\x0232\\x16\\x15\\x14\\x06\\a\\x0e\\x02\\x1d\\x01\\x14;\\x012=\\x014>\\x0254&\\x06\\\"\\x06\\x14\\x16264\\x01\\xf8\\x91Α\\x91\\xce`J+\\x06\\t#\\t\\a\\v\\r\\x14\\r\\x11\\x1d\\x0f\\x11\\x12\\x11\\x14\\f8\\f\\x1a\\x1f\\x1aH &\\x1b\\x1b&\\x1b\\x01'Α\\x91ΑR@\\t\\a\\x1a\\a\\t\\r\\r\\n\\x13\\x0e\\v\\r\\n\\n\\f\\x1e\\x13\\x04\\f\\f\\x01\\t\\x12\\x10&\\x1a*<\\xf8\\x1b&\\x1b\\x1b&\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\x14\\x16264\\x1754+\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x012\\x99Α\\x91Α\\x01\\t\\\"\\x19\\x19\\\"\\x19\\x0e\\f\\f\\f@\\f\\f\\f\\f\\f\\fX\\f\\x01\\xb8\\x91Α\\x91\\xce#\\x19\\\"\\x19\\x19\\\"\\xe5\\x18\\fd\\f\\f\\x18\\f@\\f\\x18\\f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00(\\x00P\\x00X\\x00\\x00%2\\x1d\\x01\\x14+\\x01\\x0e\\x02\\a\\x15\\x14+\\x01\\\"=\\x01.\\x01'#\\\"=\\x014;\\x01>\\x01754;\\x012\\x1d\\x01\\x1e\\x01\\x17\\a>\\x017#\\\"=\\x014;\\x01.\\x01'\\x15\\x14+\\x01\\\"=\\x01\\x0e\\x01\\a32\\x1d\\x01\\x14+\\x01\\x1e\\x01\\x1754;\\x012\\x154\\x14\\x06\\\"&462\\x01\\xf4\\f\\f\\x1e\\a3N.\\f(\\fFe\\v\\x1e\\f\\f\\x1e\\veF\\f(\\fFe\\v\\xb6,?\\n)\\f\\f)\\n?,\\f(\\f,?\\n)\\f\\f)\\n?,\\f(\\f\\x13\\x1a\\x13\\x13\\x1a\\xe0\\f(\\f.N3\\a\\x1e\\f\\f\\x1e\\veF\\f(\\fFe\\v\\x1e\\f\\f\\x1e\\veF\\xb5\\n?,\\f(\\f,?\\n)\\f\\f)\\n?,\\f(\\f,?\\n)\\f\\fy\\x1a\\x13\\x13\\x1a\\x13\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x13\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04.\\x01\\a\\x016\\x04\\x1e\\x017\\x01\\x06\\x99Α\\x91Α\\x01\\xaa`\\x884\\x01\\x01&\\xfe\\x91`\\x884\\xfe\\xff&\\x01\\xb8\\x91Α\\x91\\xce\\x15`\\v&\\xfe\\xff4\\x1c`\\v&\\x01\\x014\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xe5\\x01\\xc0\\x01\\x9b\\x00\\x1d\\x00\\x00%\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01\\x16\\x06\\x0f\\x01!2\\x16\\x1d\\x01\\x14\\x06#!\\x17\\x1e\\x01\\x01\\x02\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x17\\a\\x01\\ax\\x01\\x1f\\n\\x0e\\x0e\\n\\xfe\\xe1x\\a\\x01\\x03\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe5\\x01\\xc1\\x01\\x9b\\x00\\x1d\\x00\\x00\\x13762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&6?\\x01!\\\"&=\\x01463!'.\\x01\\xbe\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x17\\a\\x01\\ax\\xfe\\xe1\\n\\x0e\\x0e\\n\\x01\\x1fx\\a\\x01\\x01}\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\x00\\x00\\x00\\x00\\x01\\x00\\x05\\xff\\xe0\\x01\\xbb\\x01\\xa1\\x00\\x1d\\x00\\x007'&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&/\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\a\\x0e\\x01#\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\x9e\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x16\\b\\x01\\ax\\xfe\\xe1\\n\\x0e\\x0e\\n\\x01\\x1fx\\a\\x01\\x00\\x01\\x00\\x05\\xff\\xdf\\x01\\xbb\\x01\\xa0\\x00\\x1d\\x00\\x00%\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x016\\x16\\x1f\\x01\\x1146;\\x012\\x16\\x15\\x117>\\x01\\x01\\x9d\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\xe2\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x17\\a\\x01\\ax\\x01\\x1f\\n\\x0e\\x0e\\n\\xfe\\xe1x\\a\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xdc\\x02\\x01\\x01\\xa5\\x00\\x1e\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01\\x0e\\x03\\x14\\x17\\x16\\x06'.\\x0154>\\x037546\\x17\\x01\\xf8\\b\\b\\xb0\\f\\x1c1D2\\x17\\r\\x04\\x15\\v#0\\x1e2LP4\\x1c\\f\\x01\\x02\\a\\x16\\a\\x98\\n\\r\\x0fX\\x01\\v\\x19*@+\\f\\x0e\\b\\x19U,,B)\\x19\\t\\x01P\\x0f\\r\\n\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00!\\x002\\x00C\\x00\\x00\\x11546;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"%4;\\x012\\x16\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\\"5\\x172\\x1d\\x01\\x14\\x06+\\x01\\\"=\\x014;\\x01543\\a\\x14+\\x01\\\"&=\\x014;\\x012\\x1d\\x0132\\x15\\x0e\\n|\\f\\fT\\f(\\f\\x01 \\f|\\n\\x0e\\f(\\fT\\f\\x94\\f\\x0e\\n|\\f\\fT\\f\\xec\\f|\\n\\x0e\\f(\\fT\\f\\x01\\f|\\n\\x0e\\f(\\fT\\f\\x94\\f\\x0e\\n|\\f\\fT\\f\\xec\\f|\\n\\x0e\\f(\\fT\\f\\x94\\f\\x0e\\n|\\f\\fT\\f\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00!\\x002\\x00C\\x00\\x00\\x01#\\\"&=\\x014;\\x012\\x1d\\x0132\\x1d\\x01\\x14%\\x14\\x06+\\x01\\\"=\\x014;\\x0154;\\x012\\x15\\x11\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x012\\x16\\x15\\x17\\x14+\\x01\\\"=\\x0146;\\x012\\x1d\\x01\\x14+\\x01\\x01\\xb4|\\n\\x0e\\f(\\fT\\f\\xfe\\xe0\\x0e\\n|\\f\\fT\\f(\\f\\f(\\fT\\f\\f|\\n\\x0e\\xc0\\f(\\f\\x0e\\n|\\f\\fT\\x01\\x00\\x0e\\n|\\f\\fT\\f(\\f\\x18\\n\\x0e\\f(\\fT\\f\\f\\xfeX\\f\\fT\\f(\\f\\x0e\\n|\\f\\f|\\n\\x0e\\f(\\f\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00#\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x01\\xa0\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\x90\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\xf0\\x13\\r \\r\\x13\\x90\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\x90\\r\\x13\\x13\\r\\x90\\x00\\x01\\x00\\x00\\x00\\x90\\x01\\xc0\\x00\\xf0\\x00\\x0f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\xf0\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\x00\\x00\\x00\\x00\\x01\\x00\\x13\\xff\\xc0\\x01\\xed\\x01\\xc0\\x006\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\x17\\x16\\x06+\\x01\\\"&?\\x01\\a\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x1f\\x01'&>\\x01;\\x012\\x16\\x0f\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xde\\t\\x05\\x05\\x13\\x05\\x14\\b\\x8b\\x03\\x01\\x0e\\v&\\v\\x0e\\x01\\x03\\x8b\\b\\x14\\x05\\x13\\x05\\x05\\t\\x8e\\x8e\\t\\x05\\x05\\x13\\x05\\x14\\b\\x8b\\x03\\x01\\a\\v\\a&\\v\\x0e\\x01\\x03\\x8b\\b\\x14\\x05\\x13\\x05\\x05\\t\\x8er\\x05\\x13\\t\\\"\\t\\x05\\x06T\\xa2\\v\\x0e\\x0e\\v\\xa2T\\x06\\x05\\t\\\"\\t\\x13\\x05NN\\x05\\x13\\t\\\"\\t\\x05\\x06T\\xa2\\a\\v\\a\\x0e\\v\\xa2T\\x06\\x05\\t\\\"\\t\\x13\\x05N\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00\\x00\\x00\\x14\\x06\\\"&462\\x02\\\"\\x06\\x14\\x16264'\\x17\\x14;\\x012574&+\\x01\\\"\\x06\\x01\\xf8\\x91Α\\x91\\xceT&\\x1b\\x1b&\\x1bZ\\b\\f0\\f\\b\\a\\x05@\\x05\\a\\x01'Α\\x91Α\\xfe\\xd6\\x1b&\\x1b\\x1b&\\xc0\\x88\\v\\v\\x88\\x06\\a\\a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x06\\x00\\r\\x00.\\x009\\x00C\\x00\\x00353\\x15#\\\"&\\x0553\\x15\\x14\\x06#\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01&54632\\x16\\x17>\\x0132\\x16\\x15\\x14\\a!3.\\x01#\\\"\\x0e\\x01\\x15\\x14\\x163264&#\\\"\\x0e\\x01\\a \\xc0\\xa0\\r\\x13\\x01\\x00\\xc0\\x13\\r \\r\\x13\\t\\a\\xfe \\a\\t\\x13\\r,\\n4$\\x1e.\\x1b\\x1b.\\x1e$4\\n\\xfe\\xe4V#!\\x12\\v\\x12\\v\\x17\\xdf\\x11\\x17\\x17\\x11\\f\\x11 \\x19\\x80\\xa0\\x13\\x13\\xa0\\x80\\r\\x13\\x01@\\x13\\rP\\a\\t\\t\\aP\\r\\x13\\x13\\x15$4 $$ 4$\\x14\\x145\\x1b\\v\\x12\\v\\x11\\x17\\x17\\\"\\x17\\a$%\\x00\\x01\\xff\\xfd\\xff\\xbd\\x02@\\x01\\xc1\\x00'\\x00\\x00\\x01\\x16\\x15\\x14\\x06\\a\\x06&'\\x06\\a\\x0e\\x01.\\x017>\\x043264&#\\\"\\a&546;\\x0126762\\x02\\\"\\x1e\\x97u8[\\x1b5\\x13\\x05\\x19\\x18\\v\\x05\\t @Q}G\\a\\t\\t\\a\\xa9u\\x02pPP/O\\x18\\x05\\x13\\x01\\xb6BN\\x83\\xb9\\t\\x06.%,.\\f\\v\\n\\x19\\f\\x15/>0\\\"\\t\\x0e\\tT\\x0e\\x06Pp/)\\b\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc4\\x00!\\x00\\x00\\x13\\x14\\x1e\\x03\\x15\\x14\\x06\\\"&5476\\x16\\x1d\\x01\\x14\\x1632654.\\x04676\\x16\\xd8#11#q\\x9eq7\\v\\x1e%\\x1a\\x1b&\\x13\\x1a\\x1d\\x13\\x06\\x15\\x1a\\n\\\"\\x01\\xa8\\x1c2,2M/OqqON9\\f\\f\\x11U\\x1b&%\\x1b\\x11 \\x1a\\x1c\\\"*=%\\x0f\\n\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x11\\x00\\x1b\\x00-\\x00\\x00%\\x16\\x14\\a\\x0e\\x01#\\\".\\x01'&47>\\x012\\x16\\a2654&\\\"\\x06\\x14\\x1672\\x16\\x14\\x06\\\"&547\\x1632654'6\\x02=\\x03\\x03*\\x98[<oV\\x1c\\x03\\x03*\\x98\\xb6\\x98\\xf3<TTxTT<(88O9\\x04\\f\\x10\\x14\\x1c\\t\\f\\xcf\\a\\x10\\aPa-O5\\a\\x10\\aPaa\\xefT<<TTxT\\xf08O99'\\r\\f\\t\\x1c\\x14\\x10\\f\\x04\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x81\\x01\\xc1\\x00\\x11\\x003\\x00J\\x00\\x00%27\\x17\\x06#\\\"&'&4767\\x17\\x1e\\x02\\x05\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'\\x01&54?\\x01632\\x1f\\x01>\\x0232\\x16\\x17\\x16\\x14\\a\\x0e\\x01\\a'654&#\\\"\\x06\\a\\x17654'632\\x16\\x150\\x15\\x14\\a\\x01@\\r\\r4)%[\\x98*\\x03\\x03\\x0e\\x17i\\x03'@\\x01_\\x06\\x03\\x14\\x05\\b\\x05\\x04\\xfd\\xb3\\x06\\x03\\x14\\x05\\b\\x05\\x04\\x80\\x1257\\x15[\\x98*\\x03\\x03\\r0\\x15I\\x0eT<\\x156\\x10I\\x02\\t\\r\\r'8\\x050\\x03)\\naP\\a\\x10\\a\\x1a\\x1dQ%=#:\\x05\\b\\x05\\x05\\x19\\x06\\x03\\x01\\xc7\\x05\\b\\x05\\x05\\x19\\x06\\x03c\\v\\x11\\naP\\a\\x10\\a\\x18<\\x129\\x1d\\x1f<T\\x13\\x0e9\\x05\\x05\\x10\\f\\x048'\\x01\\x0f\\x0f\\x00\\x00\\x00\\x00\\x03\\xff\\xf8\\xff\\xc0\\x02H\\x01\\xc1\\x00\\v\\x00\\x13\\x00!\\x00\\x00%\\x16\\x06#!\\\"&7\\x1362\\x17\\x02\\\"\\x06\\x14\\x16264'\\x17\\x14;\\x012574&+\\x01\\\"\\x06\\x02:\\r\\x1b\\x1c\\xfe \\x1c\\x1b\\r\\xf0\\x0e8\\x0e\\x17&\\x1b\\x1b&\\x1bZ\\b\\f0\\f\\b\\a\\x05@\\x05\\a\\b\\x1800\\x18\\x01\\xa0\\x18\\x18\\xfe\\xb6\\x1b&\\x1b\\x1b&\\xc0\\x88\\v\\v\\x88\\x06\\a\\a\\x00\\x00\\x01\\xff\\xfe\\xff\\xc0\\x02@\\x01\\xc0\\x00*\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\a\\x06+\\x01\\\"&?\\x01#\\a\\x06+\\x01\\\"&?\\x01'&6;\\x012\\x1f\\x013'&>\\x02;\\x012\\x1f\\x01\\x01\\xe0\\x1eBB\\x1eri\\x05\\tB\\b\\t\\x021g+\\x05\\b(\\b\\t\\x01  \\x01\\t\\b(\\b\\x05+g1\\x01\\x01\\x05\\x06\\x04B\\t\\x05i\\x01\\x00'2'\\xb8\\b\\r\\a\\xac:\\x06\\f\\bll\\b\\f\\x06:\\xac\\x03\\b\\x06\\x03\\b\\xb8\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x15\\x00!\\x00-\\x009\\x00E\\x00Q\\x00o\\x00\\x00\\x15\\x11!\\x11\\x14\\x06#!\\\"&%\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"'\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"'\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x012\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01@\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01P\\x14\\x1c\\xfe@\\x1c\\x140\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x01\\x10\\xfe\\xf0\\x14\\x1c\\x1c\\xd8(\\f\\f(\\f\\x8c(\\f\\f(\\ft(\\f\\f(\\f\\x8c(\\f\\f(\\ft(\\f\\f(\\f\\x8c(\\f\\f(\\f\\x01@\\x1c\\x1400\\x14\\x1c0\\a\\t\\t\\a00\\a\\t\\t\\a0\\x00\\x03\\x00\\x00\\xff\\xdb\\x02\\x01\\x01\\xa5\\x00\\x13\\x00\\x1f\\x00;\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\\"/\\x017\\x173546\\x17%\\\"=\\x014;\\x012\\x1f\\x01\\a'!#\\a\\x06+\\x01\\\"=\\x014;\\x0176;\\x01546\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&5\\x01\\xf9\\a\\aP\\v\\x1e;\\x05\\x04F55 \\x1e\\v\\xfec\\f\\fo\\x05\\x04F55\\x01  \\xdc\\x04\\x05o\\f\\fT\\xdc\\x04\\x05;\\x1e\\vP\\a\\aP\\v\\x1eY\\a\\x14\\aP\\v\\f\\x10(\\x04K:9(\\x10\\f\\vg\\f8\\f\\x04K:9\\xec\\x04\\f8\\f\\xec\\x04(\\x10\\f\\vP\\a\\x14\\aP\\v\\f\\x10\\x00\\x00\\x00\\x01\\xff\\xfe\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&'&>\\x027&54\\x96Ԗ\\x96j83AL\\x02\\x04\\x01\\x02\\a\\x11\\x1c\\x069\\x01\\xa0z\\xacz\\x133\\x03\\x02\\x05\\a\\x151\\x169JV\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xd3\\x02\\x00\\x01\\xac\\x00\\x10\\x00\\x1f\\x00?\\x00\\x00\\x13#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0e\\x01%\\x14\\x06+\\x01\\\"=\\x0146;\\x012\\x16\\x15\\a32\\x16\\x15\\x06\\x17\\x14\\x0e\\x01\\\".\\x0154546;\\x012\\x16\\x1d\\x01\\x14\\x1626=\\x0146\\xa4\\x98\\x05\\a\\x15\\x0fh\\x0f\\x15\\x03\\x06\\x01Y\\a\\x05\\x98\\f\\x15\\x0fh\\x0f\\x15\\xa4\\x98\\x05\\a\\x01\\x01Nt{tO\\a\\x05\\x98\\x05\\a2<2\\a\\x01,\\a\\x05P\\x0f\\x15\\x15\\x0fP\\x03\\x06\\x03\\f\\x05\\a\\fP\\x0f\\x15\\x15\\x0f|\\a\\x05,\\tHt;;tG\\x051\\x05\\a\\a\\x054-44-4\\x05\\a\\x00\\x00\\x01\\x00\\x05\\x00;\\x01\\xbb\\x01E\\x00\\x14\\x00\\x00\\x13\\x17\\x16\\x14\\x0f\\x01\\x0e\\x01/\\x01\\a\\x06&/\\x01&4?\\x0162\\xf1\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\x01=\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\x00\\x00\\x01\\x00\\x05\\x00;\\x01\\xbb\\x01E\\x00\\x14\\x00\\x007'&4?\\x01>\\x01\\x1f\\x0176\\x16\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\xcf\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14C\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\x00\\x00\\x00\\x02\\x00\\x03\\xff\\xfc\\x02}\\x01\\x84\\x00!\\x00C\\x00\\x00%\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x015#\\\"/\\x01&6;\\x012\\x16\\x1d\\x01762\\x1f\\x01\\x16\\x14\\x05\\x17\\x16\\x06+\\x01\\\"&=\\x01\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\x1532\\x02ve\\a\\x14\\ae\\a\\a\\v\\a\\x15\\a(\\xbc\\t\\b\\x10\\v\\f\\x10\\xf4\\n\\x0e(\\a\\x15\\a\\v\\a\\xfe\\xf0\\x10\\v\\f\\x10\\xf4\\n\\x0e(\\a\\x15\\a\\v\\a\\ae\\a\\x14\\ae\\a\\a\\v\\a\\x15\\a(\\xbc\\thd\\a\\ad\\a\\x14\\a\\v\\a\\a+\\xb6\\a\\x10\\v\\x1e\\x0e\\n\\xde+\\a\\a\\v\\a\\x14\\x16\\x10\\v\\x1e\\x0e\\n\\xde+\\a\\a\\v\\a\\x14\\ad\\a\\ad\\a\\x14\\a\\v\\a\\a+\\xb6\\x00\\x01\\x00\\x00\\xff\\xc0\\x02B\\x01\\xc0\\x00.\\x00\\x00%\\x06#!\\x17!2\\x16\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547\\x03#\\\"&=\\x0146;\\x012\\x16\\x1f\\x01!2\\x16\\a\\x02\\x10\\x04\\x13\\xfe\\xdb\\x06\\x01\\r\\v\\x0e\\x02\\x06 !.!\\x11\\xd2\\x11!.!\\x1cFF\\n\\x0e\\x0e\\ng\\b\\r\\x02\\t\\x01\\x89\\f\\x0e\\x03\\x93\\x13 \\x12\\v\\x19\\x0f#\\x17!!\\x17\\x18\\x10\\x10\\x18\\x17!!\\x17 \\x11\\x01W\\x0e\\n\\x10\\n\\x0e\\v\\b-\\x12\\v\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x11\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x01\\x17\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xa0@\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c@\\x00\\x02\\x00\\x00\\x00\\x00\\x02D\\x01\\x80\\x00\\x0f\\x00 \\x00\\x00%\\a\\x0e\\x01#!\\\"&?\\x01>\\x013!2\\x16%\\\"\\x0e\\x01\\x0f\\x01\\x1146;\\x01\\x1732\\x16\\x1d\\x01\\x02=I\\a!\\x0f\\xfep\\x0e\\x0e\\aI\\a!\\x0f\\x01\\x90\\x0e\\x0e\\xfeT\\x11 \\x19\\tE\\x1c\\x14\\xa0@\\xa0\\x14\\x1c\\x9c|\\r\\x13\\x18\\f|\\r\\x13\\x188\\f\\x15\\x0fv\\x01\\x16\\x14\\x1c@\\x1c\\x140\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00T\\x00\\x00%\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x15\\x11\\x01M\\x05\\b\\b\\x05&\\x05\\b\\b\\x05:\\x05\\b\\b\\x05&\\x05\\b\\b\\x05\\xfe\\xba\\x05\\b\\b\\x05&\\x05\\b\\b\\x05:\\x05\\b\\b\\x05&\\x05\\b\\b\\x05\\xdd\\a\\t\\t\\a\\xfe0\\r\\x13\\t\\a \\a\\t\\x80\\b\\x05\\x86\\x05\\b\\b\\x05\\x86\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05F\\x05\\b\\b\\x05F\\x05\\b\\b\\x05\\xc6\\x05\\b\\b\\x05\\xc6\\x05\\b@\\t\\a \\a\\t\\x13\\r\\x01P\\a\\t\\t\\a\\xfe\\xd0\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1c\\x00-\\x005\\x00=\\x00M\\x00\\x00\\x13!2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146\\x17\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x014#\\x052=\\x014&+\\x01\\\"\\x0f\\x01#\\\"\\x1d\\x01\\x143\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x16265463264&#\\\"\\x06\\x15\\x140\\x01\\xa0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\a\\t\\x06t\\x06\\x06\\x01@\\x06\\t\\a\\xfd\\x03\\x02\\x1e\\x8a\\x06\\x06\\xa8dFFdFTH44H4!\\x0e\\t\\x13\\r\\a\\t\\t\\a\\x1a&\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c \\t\\a\\n\\x06\\x06\\x14\\x06`\\x06J\\a\\t\\x03-\\x06$\\x06\\xfe\\xf8FdFFd\\x8a4H44H4\\t\\a\\r\\x13\\t\\x0e\\t&\\x1a\\a\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\\"\\x00*\\x00\\x00\\x01\\x14\\x06#\\\"'\\a\\x06+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x014?\\x01&54>\\x0132\\x16\\x06\\x14\\x16264&\\\"\\x02\\x00gI\\x11\\x10\\x18\\a\\v%\\x0e\\n(\\x0e\\np\\n\\x0e\\a\\xa2\\t/Q0Ig\\xb0\\x1c(\\x1c\\x1c(\\x01\\x10Ig\\x03\\x1b\\b(\\n\\x0e(\\n\\x0e\\x0e\\nN\\n\\a\\xa2\\x1b\\x1c0Q/g\\x05(\\x1c\\x1c(\\x1c\\x00\\x00\\x00\\x06\\xff\\xfa\\xff\\xbe\\x02\\x82\\x01\\xc3\\x00;\\x00C\\x00\\x85\\x00\\x91\\x00\\xcd\\x00\\xd5\\x00\\x00\\x01\\a\\x06'&'&?\\x01&'#\\\"'&76;\\x0167'&7676\\x1f\\x016\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x1732\\x17\\x16\\a\\x06+\\x01\\x06\\a\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06'\\x16>\\x01'&\\x0e\\x01\\a\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\x06\\a\\x06'.\\x01=\\x01&'\\a\\x06'&'&?\\x01&7'&7676\\x1f\\x016754676\\x172\\x1e\\x02\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\a>\\x01.\\x01\\x06\\a\\x0e\\x01\\x1e\\x016\\x05\\a\\x06'&'&?\\x01&'#\\\"'&76;\\x0167'&7676\\x1f\\x016\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x1732\\x17\\x16\\a\\x06+\\x01\\x06\\a\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06'\\x16>\\x01'&\\x0e\\x01\\x02\\x00\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x10\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x1a\\x12&\\t\\r\\x12&\\tg\\\"\\x11\\a\\t!\\r\\x11\\x1e\\x18\\x1e\\f\\b&&\\t\\v\\x1f\\x18\\x1d\\x11\\r \\n\\a\\x11!\\x06\\x06!\\x12\\b\\n \\f\\x12\\x1d\\x19\\x1e\\v\\t&&\\x04\\a\\x06\\x03\\x1e\\x18\\x1e\\x11\\r \\n\\a\\x11\\\"\\x06{\\x11\\x04\\x16#0\\x16\\x11\\x04\\x16#0\\x01\\t\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x10\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x1a\\x12&\\t\\r\\x12&\\t\\x01\\x01\\x0e\\t\\x03\\a\\f\\a\\t\\x0e\\f\\x0f\\v\\x12\\x13\\n\\x0f\\f\\x0f\\t\\x06\\f\\a\\x04\\t\\x0f\\x03\\x03\\x0f\\t\\x04\\x06\\r\\x06\\t\\x0f\\f\\x0f\\n\\x13\\x12\\v\\x0f\\f\\x0e\\n\\x06\\f\\a\\x03\\t\\x0e\\x03>\\x0e\\f#\\x14\\x0e\\f#\\xae\\x11\\n\\x13\\x1a(\\x0f\\n\\x11\\x15\\v\\\"\\b\\x0e\\x01\\a\\a\\x01\\x0e\\b\\\"\\v\\x15\\x11\\n\\x0f'\\x1b\\x13\\n\\x11 \\x1f\\x11\\n\\x13\\x1b'\\x0f\\n\\x10\\x15\\n\\\"\\t\\r\\x01\\a\\a\\x05\\x06\\b\\x04\\\"\\v\\x14\\x10\\v\\x10&\\x1c\\x13\\n\\x11\\x1f5\\x160#\\x16\\x05\\x11\\x160#\\x16\\x05\\xa6\\x0e\\t\\x03\\a\\f\\a\\t\\x0e\\f\\x0f\\v\\x12\\x13\\n\\x0f\\r\\x0e\\t\\a\\f\\x06\\x04\\t\\x0f\\x03\\x03\\x0f\\t\\x04\\x06\\f\\a\\t\\x0e\\r\\x0f\\n\\x13\\x12\\v\\x0f\\f\\x0e\\t\\a\\f\\a\\x03\\t\\x0e\\x03>\\x0e\\f#\\x14\\x0e\\f#\\x00\\x00\\x02\\xff\\xfe\\xff\\xe0\\x02B\\x01\\xa0\\x00\\x13\\x00+\\x00\\x00\\x00\\x14\\x06#\\\"'\\x06#\\\"&'&767&5462\\x13\\x16\\x17\\x16\\x06#\\\"'\\x06#\\\"&'\\x1632654'\\x1e\\x01\\x15\\x14\\x01\\xa0zV<3+.\\x02\\x04\\x01\\x02\\x03\\x15\\x0f&z\\xac\\xf4\\x0f\\x15\\x03\\x04\\x05.+3<@h\\x18\\x12\\x0ec\\x8d\\x019H\\x01B\\x84^\\x19\\x19\\x03\\x02\\x05\\x04\\x14\\\")3B^\\xfe\\x84\\\"\\x14\\x04\\n\\x19\\x196,\\x02qO\\v\\t\\x12Q13\\x00\\x00\\x00\\x00\\x01\\x00\\x0f\\xff\\xba\\x01 \\x01\\xc0\\x00\\r\\x00\\x00\\x01\\x11\\a\\x06&?\\x01'&6?\\x026\\x01 \\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92A\\t\\x01\\xc0\\xfeHD\\t\\x17\\x14\\x91g\\x0e&\\x03\\x15\\x84\\x12\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x01\\x81\\x01\\xc0\\x00,\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06+\\x01\\x15\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01#\\\"&546?\\x01#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x01*\\x19&\\x17\\x0e\\n\\x88\\x01\\x18\\x02\\n\\x02\\x18\\x01\\x88\\n\\x0e0&\\f*\\n\\x0e\\x0e\\n\\x01\\x10\\n\\x0e\\x0e\\n*\\xea\\f -\\x19\\n\\x0eh\\x02\\x020\\x04\\x040\\x02\\x02h\\x0e\\n$<\\x12v\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x001\\x009\\x00A\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\a\\x06\\a\\x06\\a\\x1532\\x16\\x1d\\x01\\x14#!\\\"=\\x0146;\\x015.\\x02'&'&=\\x0146;\\x015463!2\\x16\\x1d\\x01\\x05\\x16\\x17&'#\\x15\\x14%5#\\x06\\a676\\x02(\\n\\x0e>0>\\x1f%0\\x1b%\\f\\xfe\\xd8\\f%\\x1b0\\x04\\x0e$\\x0e>0>\\x0e\\nh\\x0e\\n\\x01\\x10\\n\\x0e\\xfe\\xa3\\x13\\x17\\v\\x02@\\x01\\xc0@\\x02\\v\\x17\\x13#\\x01\\x80\\x0e\\n88-\\\"\\a4\\x16H\\x1e\\x1a\\f\\f\\f\\f\\x1a\\x1eH\\x02\\n&\\x18\\a\\\"-88\\n\\x0e(\\n\\x0e\\x0e\\n(\\x81\\r\\b)-\\x10\\x17\\x17\\x10-)\\b\\r\\x1a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x00/\\x007\\x00?\\x00\\x00%#\\\"&=\\x01#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x15\\x14\\x067\\x15\\x14\\x06#!\\\"&=\\x0146;\\x01\\x15\\x14\\x16;\\x0126=\\x0132\\x16\\x064&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x01(P\\n\\x0eX\\r\\n\\t\\x98\\x06\\x10\\x06\\x98\\t\\n\\rX\\x0e\\xce\\x0e\\n\\xfe0\\n\\x0e\\x0e\\n\\x88!\\x17P\\x17!\\x88\\n\\x0e|\\f\\x10\\f\\f\\x10L\\f\\x10\\f\\f\\x10@\\x0e\\n\\xa8\\x19\\t\\x98\\x06\\x06\\x98\\t\\x19\\xa8\\n\\x0e\\bp\\n\\x0e\\x0e\\np\\n\\x0e\\b\\x17!!\\x17\\b\\x0ej\\x10\\f\\f\\x10\\f\\f\\x10\\f\\f\\x10\\f\\x00\\x02\\xff\\xfc\\xff\\xbc\\x02\\x04\\x01\\xc4\\x00#\\x007\\x00\\x00\\x00\\x1e\\x01\\a\\x0e\\x01\\x16\\x0e\\x06&\\x06\\a\\x06.\\x027>\\x01&>\\x06\\x16676\\a>\\x01.\\x01\\a\\x0e\\x01\\a\\x14\\x1e\\x02\\x172327>\\x01\\x01\\xd8\\\"\\t\\t\\b\\x02\\a\\x02\\n'BF:;-+\\r\\x0f+\\\"\\t\\t\\b\\x02\\a\\x02\\n'BF:;-+\\r\\x0f\\xb9\\x06\\a\\x03\\v\\a4j\\x0e\\x01\\x03\\x05\\x03\\x02\\x02\\f\\x04\\n^\\x01\\xba\\\"+\\x0f\\r+-;:FB'\\n\\x02\\a\\x02\\b\\t\\t\\\"+\\x0f\\r+-;:FB'\\n\\x02\\a\\x02\\b\\tc\\x02\\v\\r\\a\\x01\\x0ej4\\x03\\a\\x05\\x04\\x01\\f,^\\x00\\x00\\x00\\x01\\xff\\xfc\\xff\\xc0\\x02\\x00\\x01\\xc4\\x00\\x17\\x00\\x00\\x01\\x16\\x15\\x14\\x00#\\\"/\\x01&?\\x016\\x1f\\x01>\\x017'&?\\x016\\x17\\x01\\xed\\x13\\xfe\\xf0\\xc0\\x13\\x04\\x18\\x05\\x13p\\x10\\f1;[\\x1b<\\x0e\\a0\\b\\x13\\x01\\xa7\\x04\\x13\\xc0\\xfe\\xf0\\x13h\\x13\\b0\\a\\x0e<\\x1b\\\\:2\\v\\x11p\\x12\\x05\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00.\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132654/\\x01\\\"#\\\"\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\x06\\a'&#\\\"\\x0f\\x01\\x06\\x15\\x14\\x15\\x17\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14.x\\xaa\\fA\\x01\\x02\\n\\x04\\x1e\\x01\\x06%#K\\x1f\\x05\\a\\x03\\x03F\\t\\x0f\\x03\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\xaax\\f\\x03\\x0f\\tF\\x03\\x03\\a\\x05\\x1fK#%\\x06\\x01\\x1e\\x04\\n\\x02\\x01A\\f\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x00&\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x06\\x1d\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x18Y}Z\\x0e\\n \\n\\x0e+\\x1e\\x1d*\\xc0\\x1c\\x14\\xa0\\x14\\x1c\\x1c\\x14\\xa0\\x14\\x1cf@ZY?\\x10\\n\\x0e\\x0e\\n\\x10\\x1e*+\\x1eg\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\x15\\x00!\\x00+\\x00\\x00=\\x01!\\x15\\x14\\x06#!\\\"&7\\x15\\x14;\\x012=\\x014+\\x01\\\"\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x01\\x15!5463!2\\x16\\x02@\\x1c\\x14\\xfe \\x14\\x1c\\xc0\\f\\x88\\f\\f\\x88\\f\\x80\\fH\\f\\fH\\f\\x02\\x00\\xfd\\xc0\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x10\\xb0\\xb0\\x14\\x1c\\x1cX(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x1000\\x14\\x1c\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\a\\x00\\x1b\\x001\\x00\\x006\\x14\\x06\\\"&462\\x17\\x14\\x06+\\x01\\\"&5.\\x01'\\\"&=\\x01463\\x1e\\x01\\x17\\x14\\x06+\\x01\\\"&5.\\x01'\\\"&=\\x01463\\x1e\\x03\\x80%5&&5\\xd5\\t\\a0\\a\\t\\x06wT\\x06\\t\\n\\at\\xa4\\x97\\t\\a0\\a\\t\\x06ː\\x06\\t\\n\\aV\\x9dsF;5&&5%o\\a\\n\\t\\x06Tw\\x06\\t\\a0\\a\\t\\a\\xa4t\\a\\n\\t\\x06\\x90\\xcb\\x06\\t\\a0\\a\\t\\x03Gr\\x9d\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x1e\\x00&\\x00.\\x00\\x00%\\x15\\x14\\x06#!\\\"&=\\x01463!2\\x16'!\\\"\\a7>\\x023!2\\x16\\x1f\\x01&\\x06\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x02@\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c0\\xfe \\x10\\x0fa\\x04\\r\\x10\\a\\x01\\f\\v\\x17\\x06a\\x0f3\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x90`\\x14\\x1c\\x1c\\x14`\\x14\\x1c\\x1c<\\x06\\x91\\x05\\n\\x06\\r\\b\\x91\\x06`\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00,\\x004\\x00\\x00$\\x14\\a\\x15\\x14\\x06#\\\"/\\x01&+\\x01\\x06\\x15\\x14\\x17\\x16\\x06+\\x01\\\"'&547#\\\"&=\\x0146;\\x012?\\x01632\\x16\\x1d\\x01\\a\\x11\\a\\x06#\\x152\\x17\\x02@ \\x10\\x10\\v\\tUBU\\x1c\\x04\\x1a\\v\\x12\\x13K\\x14\\b\\x19\\x02\\\"\\x1b%%\\x1b\\xc0UBU\\t\\v\\x10\\x10@!TkkT\\xf5J\\x12\\x99\\n\\x16\\aD5\\x10\\x10+\\\"\\x10#\\x115:\\x10\\x10%\\x1b`\\x1b%5D\\a\\x16\\n\\x99\\xc4\\x01\\x1a\\x1aC`C\\x00\\x00\\x01\\xff\\xfd\\xff\\xbd\\x02\\x03\\x01\\xc3\\x00;\\x00\\x00%\\x17\\x16\\x06\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x0e\\x01/\\x01\\a\\x06&/\\x01\\a\\x06&?\\x01'.\\x01?\\x01'&6?\\x01'&6\\x1f\\x017>\\x01\\x1f\\x0176\\x16\\x1f\\x0176\\x16\\x0f\\x01\\x17\\x1e\\x01\\a\\x01\\xcb.\\n\\b\\r?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1c\\t--\\t\\x1c\\x03\\x10>\\x0e\\x14\\x04\\x12?\\r\\b\\n..\\n\\b\\r?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1c\\t--\\n\\x1b\\x03\\x10>\\x0e\\x14\\x04\\x12?\\r\\b\\n\\xc0-\\n\\x1b\\x03\\x10>\\x0e\\x14\\x04\\x12?\\x0e\\a\\n..\\n\\a\\x0e?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1b\\n--\\n\\x1b\\x03\\x10>\\x0e\\x14\\x04\\x12?\\x0e\\a\\n//\\n\\b\\r?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1b\\n\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x81\\x00'\\x007\\x00?\\x00\\x00%\\x14\\x06+\\x01\\x16\\x06\\a\\x16\\x06\\a\\x16\\x0e\\x01#*\\x01#\\\"&'.\\x01=\\x0147>\\x017632\\x16\\a\\x06\\a32\\x16\\x05\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x064&\\\"\\x06\\x14\\x162\\x02\\x00\\x1b\\x12d\\r\\x01\\x12\\n\\f\\x0e\\x04\\x10#\\x1a\\x01\\x0e\\x01#G\\x12\\b\\f\\x1c\\x1fE\\b\\f\\x1c\\x1a\\x1c\\n\\x05\\t\\x95\\x12\\x1b\\xfe`\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x1c\\f\\x10\\f\\f\\x10\\xf8\\x11\\x1a\\r+\\x0f\\x12%\\b\\x18 \\x0f$\\x03\\x01\\r\\t\\xac\\x1f\\r\\r-\\x13\\x1d+\\x18\\f\\r\\x1a\\x12\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\xba\\x10\\f\\f\\x10\\f\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x81\\x00&\\x006\\x00>\\x00\\x00\\x133&'&632\\x17\\x1e\\x01\\x17\\x16\\x1d\\x01\\x14\\x06\\a\\x0e\\x01#*\\x01#\\\"&7.\\x017.\\x017#\\\"&546\\x0532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x16264&\\\"\\x06\\x14-\\x95\\t\\x05\\n\\x1c\\x1a\\x1c\\f\\bE\\x1f\\x1c\\f\\b\\x12G#\\x01\\x0e\\x01('\\x06\\x0e\\f\\n\\x12\\x01\\rd\\x12\\x1b\\x1b\\x01\\x9d0\\n\\x0e\\x0e\\n0\\n\\x0e\\x0e\\x1a\\x10\\f\\f\\x10\\f\\x01$\\r\\f\\x18+\\x1d\\x13-\\r\\r\\x1f\\xac\\t\\r\\x01\\x03$$#\\b%\\x12\\x0f+\\r\\x1a\\x11\\x12\\x1a\\x14\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\xd4\\f\\x10\\f\\f\\x10\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00'\\x007\\x00?\\x00\\x00\\x132\\x16\\x1d\\x016\\x16\\x176\\x16\\x176\\x16\\x15\\x1c\\x01\\x15\\x14\\x06\\a\\x14\\x0e\\x01+\\x01\\\"'.\\x01'&546\\x17\\x16\\x17546\\x1332\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x16\\\"\\x06\\x14\\x16264\\x88\\x11\\x1a\\r+\\x0f\\x12%\\b#$$\\x03\\a\\n\\x06\\xac\\x1f\\r\\r-\\x13\\x1d+\\x18\\f\\r\\x1a\\x12\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\xba\\x10\\f\\f\\x10\\f\\x01\\xc0\\x1b\\x12d\\r\\x01\\x12\\n\\f\\x0e\\x06'(\\x01\\x0e\\x01#G\\x12\\x05\\n\\x05\\x1c\\x1fE\\b\\f\\x1c\\x1a\\x1c\\n\\x05\\t\\x95\\x12\\x1b\\xfe`\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x1c\\f\\x10\\f\\f\\x10\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00&\\x006\\x00>\\x00\\x00\\x175\\x06\\a\\x06&547>\\x0176;\\x012\\x16\\x17\\x1e\\x01\\x15\\x1c\\x01\\x15\\x14\\x06'\\x0e\\x01'\\x0e\\x01'\\x15\\x14\\x06#\\\"&\\x13546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&64&\\\"\\x06\\x14\\x162\\\\\\r\\f\\x18+\\x1d\\x13-\\r\\r\\x1f\\xac\\t\\r\\x01\\x03$$#\\b%\\x12\\x0f+\\r\\x1a\\x11\\x12\\x1a\\x14\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\xd4\\f\\x10\\f\\f\\x10\\x13\\x95\\t\\x05\\n\\x1c\\x1a\\x1c\\f\\bE\\x1f\\x1c\\f\\b\\x12G#\\x01\\x0e\\x01('\\x06\\x0e\\f\\n\\x12\\x01\\rd\\x12\\x1b\\x1b\\x01\\x9d0\\n\\x0e\\x0e\\n0\\n\\x0e\\x0e\\x1a\\x10\\f\\f\\x10\\f\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x00\\x04\\\"&462\\x16\\x14\\a'326=\\x014&+\\x01764/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162?\\x0164\\x01gΑ\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a8\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&47\\x17#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\a\\x06\\x14\\x1f\\x01\\x162?\\x0164/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x99Α\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a\\x01\\xb8\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x006462\\x16\\x14\\x06\\\"'7\\x15\\x14\\x16;\\x0126=\\x01\\x17\\x162?\\x0164/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162\\b\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15YΑ\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x00\\x00\\x14\\x06\\\"&462\\x17\\a54&+\\x01\\\"\\x06\\x1d\\x01'&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162?\\x0164/\\x01&\\\"\\x01\\xf8\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15\\x01'Α\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a\\x00\\t\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x05\\x00\\r\\x00\\x13\\x00\\x19\\x00\\\"\\x00+\\x001\\x007\\x00=\\x00\\x00\\x01#>\\x012\\x16\\x06473\\x16\\x14\\a#%#&'\\x1e\\x01%\\x06\\a#>\\x01\\x05\\x16\\x15\\x14\\a#64'\\a\\x14\\x17#&473\\x06\\x173\\x0e\\x01\\\"&\\x17673\\x0e\\x01%3\\x16\\x17.\\x01\\x01P\\xb0\\v0:0\\xad\\x03\\xba\\x03\\x03\\xba\\x01Bl\\x0f#5S\\xfe\\xea$\\x0el\\x16S\\x01k\\t\\tr\\x03\\x03\\xfd\\x03r\\t\\tr\\x03(\\xb0\\v0:0\\x94$\\x0el\\x16S\\xfe\\x9fl\\x0f#5S\\x01 DTT\\xc4@  @ \\xa0\\\\2\\x10K[2\\\\3K\\x9e    !>!@\\x1e\\\"!>!!\\u007fDTTJ2\\\\3K~\\\\2\\x10K\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x05\\x01\\xc5\\x00\\x1c\\x00$\\x00\\x00\\x01\\x16\\x06\\a\\x0e\\x01'\\a\\x06\\\"&4?\\x01&67>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x1f\\x0176\\x16\\x00264&\\\"\\x06\\x14\\x01\\xfc\\t\\x14\\x1b\\x1eP&\\xd5\\x135%\\x13\\xd5\\r\\x12\\x1d\\x1bJ$\\a\\x03\\x05J\\vDK\\x05\\r\\xfe<\\x14\\x0e\\x0e\\x14\\x0e\\x01S$I\\x1c\\x1d\\x12\\r\\xd5\\x13%5\\x13\\xd6%Q\\x1d\\x1b\\x14\\t\\x02\\r\\x05KD\\vJ\\x05\\x03\\xfe\\x8e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\xa1\\x00\\x15\\x00+\\x003\\x00C\\x00S\\x00c\\x00\\x00\\x13\\x17\\x16\\x14\\x0f\\x02\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x02\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x062\\x16\\x14\\x06\\\"&4%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x8c\\x11\\x03\\x03I\\x0f\\x04\\n\\x04/\\x04\\x04\\x0f\\x04\\n\\x03\\x17@\\x03\\n\\x04\\x11\\x03\\x04H\\x0f\\x04\\n\\x04/\\x04\\x04\\x0f\\x04\\n\\x03\\x17@\\x03\\n\\\\(\\x1c\\x1c(\\x1d\\x01\\xe1\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01\\x9c\\x10\\x04\\t\\x04H\\x10\\x03\\x030\\x03\\n\\x04\\x0f\\x04\\x04\\x16?\\x04\\xa3\\x11\\x03\\n\\x04H\\x0f\\x04\\x04/\\x04\\t\\x04\\x10\\x03\\x03\\x16?\\x04\\xb1\\x1c(\\x1c\\x1c(\\f\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x01\\xff\\xfb\\xff\\xbc\\x02\\x05\\x01\\xc0\\x00\\x10\\x00\\x00\\x012\\x16\\x0f\\x01\\x11\\x14\\x06/\\x01&=\\x01'&63\\x01\\xe8\\x10\\f\\v\\xb9\\x1a\\fP\\n\\xb9\\v\\f\\x10\\x01\\xc0\\x1e\\v\\xb9\\xfe\\xfa\\x0f\\r\\b8\\b\\fι\\v\\x1e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x13\\x00'\\x00+\\x00\\x00%53\\x15\\x14\\x06#!\\\"&=\\x013\\x15\\x14\\x16;\\x012672\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x01#5#\\x15\\x01@\\xc0\\x1d\\x13\\xfe`\\x13\\x1d\\xc0\\t\\a`\\a\\t\\x90\\x13\\x1d\\xfe\\x00\\x1d\\x13P\\x1d\\x13\\xa0\\x13\\x1d@\\x80p0\\x90\\x13\\x1d\\x1d\\x13\\x900\\a\\t\\t\\xd7\\x1d\\x13PP\\x13\\x1d0\\x13\\x1d\\x1d\\x130  \\x00\\x00\\x01\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00;\\x00\\x00%\\a\\x06\\\"/\\x01&6;\\x015#\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x0135#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x153546\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\x1532\\x16\\x01`O\\a\\x14\\aO\\v\\f\\x103e\\x1d\\fO\\a\\aO\\f\\x1de3\\x10\\r\\fO\\a\\x14\\aO\\v\\f\\x103e\\x1d\\fO\\a\\aO\\f\\x1de3\\x10\\r\\x16O\\a\\aO\\f\\x1de3\\x10\\f\\vO\\a\\x14\\aO\\f\\r\\x103e\\x1d\\fO\\a\\aO\\f\\x1de3\\x10\\f\\vO\\a\\x14\\aO\\f\\r\\x103e\\x1d\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x1e\\x00&\\x00:\\x00H\\x00\\x006\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01.\\x02'63*\\x01&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627'\\x0e\\x01\\a#\\\"&=\\x0146;\\x012z4&&4&\\x01\\x9a4&&4& \\x1a&\\x13\\rB\\x03\\x14 \\x14\\x13\\x1a\\x92\\\\BB\\\\B#0C\\x1c\\x14\\xfe\\xe0\\x14\\x1cC0\\t!F!\\xd7\\x1e(\\x05B\\r\\x13&\\x1a@\\x1a\\xe0&4&&4&&4&&4F&\\x1a \\r\\x13\\x17*!\\v\\x13B\\\\BB\\\\bC0\\x1d\\x14\\x1c\\x1c\\x14\\x1d0C\\x10\\x10\\r\\x10:#\\x13\\r \\x1a&\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00%\\x00K\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06\\\"&4?\\x016\\x16\\x17\\x16\\x17\\x16\\x0f\\x01\\x0e\\x01\\x17\\x162?\\x0164'&'&5&?\\x016\\x166\\x16\\x14\\x0f\\x01\\x06&'&'&?\\x01>\\x01'&\\\"\\x0f\\x01\\x06\\x14\\x17\\x16\\x17\\x16\\x15\\x16\\x0f\\x01\\x06&'&4?\\x016\\x01G,,D,~Y,&\\a\\x13\\x01\\x01\\t\\x03\\a\\r\\x15\\x01\\x15\\x15<\\x15C\\x15\\x15\\x05\\x05\\a\\x01\\f\\x16\\t\\x16jY,&\\a\\x13\\x01\\x01\\t\\x03\\a\\r\\x15\\x01\\x15\\x15<\\x15C\\x15\\x15\\x05\\x05\\a\\x01\\f\\x16\\t\\x16\\n,,D,\\x01\\a-~,D,Y~,&\\a\\b\\n\\x1b\\x1a\\t\\a\\x0e\\x15;\\x15\\x16\\x15C\\x15<\\x15\\x05\\x04\\x04\\b\\x12\\f\\x15\\n\\x10\\xb0Y~,&\\a\\b\\n\\x1b\\x1a\\t\\a\\x0e\\x15;\\x15\\x16\\x15C\\x15<\\x15\\x05\\x04\\x04\\b\\x12\\f\\x15\\n\\x10\\t-~,D,\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1c\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467454632\\x16\\x17632\\x16\\x15\\x14\\x02\\x1a\\x1d.\\x1bK5\\xfe\\x90<T6*^B,J\\x15\\x18\\x1d(8\\xdd\\x05$6\\x1e5KT</J\\x0f\\x05\\x03B^,$\\x108(\\x12\\x00\\x00\\x00\\x02\\xff\\xf4\\xff\\xc0\\x01\\xcc\\x01\\xc0\\x00\\x1b\\x00%\\x00\\x00%\\x16\\x06#!\\\"&?\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\a3'&=\\x01#\\x15\\x14\\a\\x01\\xb5\\x16(*\\xfe\\xce*(\\x16u\\b\\n\\x0e\\x0e\\n\\xd0\\n\\x0e\\x0e\\n\\b\\xb6\\xac0\\x06@\\x06,#II#\\xbd\\x97\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0e\\x97iN\\b\\n\\xa0\\xa0\\n\\b\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc5\\x01\\xa0\\x00'\\x00/\\x007\\x00\\x00%\\x17\\x16\\a\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x17762\\x17\\x16\\a\\x04264&\\\"\\x06\\x14\\x12264&\\\"\\x06\\x14\\x01\\x16\\xa6\\t\\t\\x18F\\x18t\\x19\\a8P88(\\a\\x06!!\\x06\\a(88P8\\a\\x19t\\x18F\\x18\\t\\t\\xfe\\x97\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xc0\\xa6\\t\\b\\x19\\x19s\\x19\\x11\\x12(88P8\\x01!!\\x018P88(\\x12\\x11\\x19s\\x19\\x19\\b\\tF\\x13\\x1a\\x13\\x13\\x1a\\xfe\\xed\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x11\\x00#\\x00,\\x00\\x00!\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x11\\x14\\x163\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x17\\x16\\x1d\\x01#532\\x17\\x01@\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\nH!\\x17\\xa8\\x0e\\nh\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\n\\xa8y\\a`\\x06\\n\\a(\\n\\x0e\\x0e\\n\\x01p\\n\\x0e\\xfe\\xd8\\x17!\\x01X\\n\\x0e\\xfe\\xf8\\n\\x0e\\x0e\\n\\x01p\\n\\x0eI\\a\\n\\x06`\\a\\x00\\x01\\xff\\xff\\xff\\xbf\\x01\\xc1\\x01\\xc1\\x002\\x00\\x00\\x17&6?\\x0162\\x17\\x16\\x14\\x0f\\x01\\x06&'&6?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\x17\\x16?\\x0164'&\\\"\\x0f\\x01\\x06\\x14\\x162?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\\"++\\x01,\\xd1\\\"^!!!\\xb7\\x16@\\x16\\x15\\x01\\x16\\x8f\\f\\v\\x17\\v\\v\\x90\\t\\t\\b\\a\\xb7\\x0f\\x0f\\x0e(\\x0f\\xd2\\x1a3H\\x19\\xac\\f\\v\\x17\\v\\v\\xac-~\\x12-\\u007f-\\xd7\\\"\\\"\\\"_!\\xbb\\x17\\x01\\x17\\x16?\\x16\\x93\\v\\v\\x16\\f\\v\\x93\\t\\t\\b\\b\\xba\\x10*\\x0f\\x0f\\x0f\\xd6\\x1bK5\\x1a\\xb0\\f\\f\\x16\\v\\f\\xb0-\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x19\\x00(\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x17\\x02264&\\\"\\x06\\x14\\x134/\\x01&+\\x01\\\"\\x1d\\x01\\x14;\\x0125\\x01\\xb2\\x0e\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\f\\x14\\x0e\\x996%%6%\\xa0\\x04\\x03\\x04\\x04\\xe5\\f\\f\\xe8\\f\\x01>\\x0e\\x14\\xfe\\xf4\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x0e\\xfe\\x8e%6%%6\\x01\\f\\x04\\x04\\x03\\x04\\fh\\f\\f\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x00\\x03\\x00\\x00\\xff\\xfc\\x01\\xc0\\x01\\x84\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x13\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x05\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x05\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x10\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\x01<\\t\\a(\\a\\t\\t\\a(\\a\\t\\xa0\\t\\a(\\a\\t\\t\\a(\\a\\t\\xa0\\t\\a(\\a\\t\\t\\a(\\a\\t\\x00\\x00\\x06\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\x90\\x00\\a\\x00\\x0f\\x00\\x17\\x00'\\x007\\x00G\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x01\\xf0\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01\\x90\\x1c(\\x1c\\x1c(\\x84\\x1c(\\x1c\\x1c(\\x84\\x1c(\\x1c\\x1c(\\f\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x06\\xff\\xfc\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00*\\x00:\\x00J\\x00Z\\x00t\\x00\\x98\\x00\\x007\\x1e\\x01\\x15\\x14\\x06#\\\"'&?\\x016\\x17\\x163254+\\x01\\\"/\\x01&?\\x0167#\\\"=\\x014;\\x012\\x1d\\x010\\x15\\x14\\a%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463'\\\"=\\x014;\\x015#\\\"54?\\x016;\\x012\\x1d\\x0132\\x1d\\x01\\x14#\\a\\\"=\\x014>\\x0254#\\\"\\a\\x06/\\x01&7632\\x1e\\x01\\x15\\x14\\x0e\\x03\\a32\\x1d\\x01\\x14#>\\x0e\\x0e\\x18\\x18\\x15\\x10\\t\\x06\\x06\\x05\\v\\a\\b\\x0e\\x10\\x04\\b\\x05\\x01\\x03\\x06\\x06\\x05\\x06\\x17\\b\\b9\\v\\x05\\x01\\xa1\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\xa0\\b\\b\\x10\\b\\b\\x01\\b\\x02\\x05\\x18\\b\\x10\\b\\bD\\f\\x10\\x13\\x10\\t\\x06\\x04\\t\\a\\b\\n\\a\\x0e\\x1a\\v\\x13\\x0f\\n\\r\\x0e\\v\\x01'\\b\\b/\\x04\\x13\\f\\x12\\x1a\\t\\a\\t\\n\\t\\x06\\x03\\b\\t\\b\\x02\\a\\b\\a\\x06\\x06\\b\\x10\\b\\v\\x04\\x01\\a\\x06\\x9d\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\xfe\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xe0\\b\\x10\\b@\\b\\x02\\x02\\x10\\x04\\bX\\b\\x10\\b\\xa0\\v\\x04\\x11\\x19\\f\\f\\x04\\b\\x04\\b\\x06\\a\\a\\b\\x13\\a\\x13\\x0e\\n\\x11\\v\\t\\x06\\x03\\b\\x10\\b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x001\\x00T\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01&'&54>\\x01;\\x012\\x16\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'.\\x01+\\x01\\\"\\x06\\x15\\x14\\x16\\x1f\\x023\\x16\\x17\\x16\\x15\\x14\\x06+\\x01\\\".\\x01/\\x01&54?\\x01632\\x17\\x1e\\x03;\\x012654&\\x01\\xf0\\a\\t\\t\\a\\xfe \\a\\t\\t\\af\\x13\\x02\\x01!9\\\"D C\\x0f\\x01\\x01\\t+\\x03\\x04\\n\\x04\\x06\\x1a\\rB\\x12\\x1a\\x12\\rW\\x16^\\x04\\x01\\x01H4D\\x15.%\\n\\x01\\x01\\t+\\x03\\x04\\n\\x04\\x03\\n\\f\\r\\aB\\x12\\x1a\\f\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\x1b\\x1d\\x06\\x06\\\"9!)\\x1e\\x01\\x03\\x04\\n\\x04\\x16\\x01\\b\\f\\x10\\x1a\\x12\\r\\x18\\x04\\x1b`\\f\\f\\x06\\x063I\\x13!\\x13\\x01\\x03\\x04\\n\\x04\\x16\\x01\\b\\x06\\n\\b\\x04\\x1a\\x12\\t\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00/\\x00?\\x00\\x00\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x1626=\\x01#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06\\\"&=\\x01\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463 \\a\\t\\t\\a\\x90\\a\\t\\t\\a /B/ \\a\\t\\t\\a\\x90\\a\\t\\t\\a ^\\x84^\\x01p\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\xa0!//!\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\xa0B^^B\\xa0\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\x1575#\\x15\\x055#\\x1575#\\x15\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xb0\\xa0\\xa0\\xa0\\x01\\x80\\xa0\\xa0\\xa0\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80``\\xa0``\\xa0``\\xa0``\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00'\\x00+\\x00\\x00\\x13/\\x01?\\x01\\x1f\\x01\\x0f\\x01/\\x01?\\x01\\x1f\\x01\\a\\x05\\x1f\\x01\\x0f\\x01/\\x01?\\x01\\x16\\x14\\a\\x01\\x06\\\"/\\x01&47\\x0162\\x17\\a7'\\a\\xe0\\x10  \\x10\\x10  \\xa0\\x1b55\\x1b\\x1b55\\x01E\\x1b55\\x1b\\x1b55b\\t\\t\\xfe\\x94\\t\\x1a\\nU\\t\\t\\x01l\\t\\x1a\\n;W3V\\x01` \\x10\\x10  \\x10\\x10`5\\x1b\\x1b55\\x1b\\x1b\\xb55\\x1b\\x1b55\\x1b\\x1b\\xf7\\n\\x1a\\t\\xfe\\x94\\t\\tU\\n\\x1a\\t\\x01l\\t\\t\\xc2V3W\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00'\\x00/\\x007\\x00<\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1f\\x01\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x1475'#\\x15\\x02p\\a\\t\\t\\a08P8\\x808P8\\x10\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c,\\x14\\x0ed\\x0e\\xfe,(\\x1c\\x1c(\\x1c\\x01\\\\(\\x1c\\x1c(\\x1c\\x80d,`\\t\\a \\a\\t(88((88(\\x1c\\x14\\x01@\\x14\\x1c\\x1c\\x140\\x0ed\\x0e\\x14lp\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\xb4\\fdp\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x0f\\x00\\x14\\x00\\x19\\x00!\\x00&\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1334&#5265#\\x16264&\\\"\\x06\\x14\\x055\\\"\\x06\\x1575#\\x14\\x16\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x10@%\\x1b\\x1b%@\\xefB//B/\\x01`\\x1b%@@%\\x01\\x80\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\xfe\\xb0\\x1b%\\xa0%\\x1b\\xf08P88Ph@%\\x1b\\xe0@\\x1b%\\x00\\x00\\x01\\x00\\a\\x00W\\x019\\x01\\x00\\x00\\v\\x00\\x00\\x13!2\\x16\\x0f\\x01\\x06\\\"/\\x01&6\\x1f\\x01\\x02\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n\\x01\\x00\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19\\x00\\x00\\x00\\x00\\x01\\x00\\a\\x00`\\x019\\x01\\t\\x00\\v\\x00\\x00%!\\\"&?\\x0162\\x1f\\x01\\x16\\x06\\x01!\\xfe\\xfe\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n`\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19\\x00\\x00\\x00\\x00\\x01\\x00\\x17\\x00'\\x00\\xc0\\x01Y\\x00\\v\\x00\\x00\\x13\\x11\\x14\\x06/\\x01&4?\\x016\\x16\\xc0\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19\\x01A\\xfe\\xfe\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00'\\x00\\xa9\\x01Y\\x00\\v\\x00\\x005\\x1146\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19?\\x01\\x02\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13\\x11#\\x11!\\x11#\\x11\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xb0\\xa0\\x01\\x80\\xa0\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\x01\\x00\\xff\\x00\\x01\\x00\\xff\\x00\\x00\\x00\\x02\\x00\\r\\xff\\xf8\\x013\\x01\\x88\\x00\\v\\x00\\x17\\x00\\x00732\\x16\\x0f\\x01\\x06\\\"/\\x01&6%\\x16\\x06+\\x01\\\"&?\\x0162\\x17)\\xee\\x10\\f\\vw\\a\\x14\\aw\\v\\f\\x01\\x0f\\v\\f\\x10\\xee\\x10\\f\\vw\\a\\x14\\a\\xa0\\x1e\\vw\\a\\aw\\v\\x1ei\\v\\x1e\\x1e\\vw\\a\\a\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xf8\\x013\\x00\\xa0\\x00\\v\\x00\\x00732\\x16\\x0f\\x01\\x06\\\"/\\x01&6)\\xee\\x10\\f\\vw\\a\\x14\\aw\\v\\f\\xa0\\x1e\\vw\\a\\aw\\v\\x1e\\x00\\x00\\x01\\x00\\r\\x00\\xe0\\x014\\x01\\x88\\x00\\v\\x00\\x00%#\\\"&?\\x0162\\x1f\\x01\\x16\\x06\\x01\\x17\\xee\\x10\\f\\vw\\a\\x14\\aw\\v\\f\\xe0\\x1e\\vw\\a\\aw\\v\\x1e\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x1f\\x00:\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146\\x17\\x16\\x17\\x1e\\x0432>\\x0476\\a\\\".\\x02#&'&=\\x01463!2\\x16\\x1d\\x01\\x14\\a\\x06\\a\\\"\\x0e\\x02\\x01\\xf6\\x03\\a\\x1c\\x14\\xfe`\\x14\\x1c\\a\\x03!y\\x02\\x17\\x0e\\x16\\x15\\n\\t\\x12\\x10\\x12\\f\\x10\\x03v\\xd2\\b\\x17\\x0e\\x1b\\x01z4\\t\\x1c\\x14\\x01\\xa0\\x14\\x1c\\t1}\\x01\\x1b\\x0e\\x17\\x01\\x01\\x03\\x04\\x04\\xcc\\x14\\x1c\\x1c\\x14\\xcc\\x04\\x03\\x02\\x19X\\x02\\x12\\t\\r\\x06\\x05\\a\\f\\t\\f\\x03Ue\\v\\t\\x15Y(\\a\\f\\x13\\x14\\x1c\\x1c\\x14\\x13\\f\\a&[\\x15\\t\\v\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xf9\\x01\\xc0\\x00+\\x00\\x007#\\\"&=\\x014;\\x012\\x1d\\x01>\\x013\\x1e\\x01\\x0e\\x01#\\\"'&?\\x016\\x17\\x163264&#\\\"\\x06\\a32\\x16\\x1d\\x01\\x14\\x06\\xd4\\xc8\\x05\\a\\f0\\f#a6g\\x90\\x01\\x91g_G\\n\\t\\\"\\b\\t2BIggI+J\\x19b\\x05\\a\\a\\xe0\\a\\x05\\xc8\\f\\fN'+\\x01\\x91͑@\\t\\t\\\"\\b\\b,g\\x92g'!\\a\\x050\\x05\\a\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc1\\x007\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'\\a\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x017'\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17762\\x17\\x01\\xf9\\a\\a|\\b\\x13\\a\\x17\\a\\a\\x06(Q\\x06\\t\\ts\\t\\x1b\\t.\\t\\ts\\t\\x1b\\t\\x06Q(\\x05\\a\\x14\\a\\x17\\a\\a}\\a\\x14\\a\\x16\\a\\a\\x05q\\x05\\a\\x14\\a\\xf9\\a\\x14\\a}\\a\\a\\x17\\a\\x14\\a\\x05(Q\\x06\\t\\x1b\\ts\\t\\t.\\t\\x1b\\ts\\t\\t\\x06Q(\\x06\\a\\a\\x17\\a\\x13\\b|\\a\\a\\x17\\a\\x14\\a\\x05q\\x05\\a\\a\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x01D\\x01\\xc0\\x00\\x19\\x00\\x00\\x012\\x16\\a\\x03\\x06#\\\"&?\\x01#\\\".\\x01?\\x01>\\x02;\\x012\\x16\\x0f\\x01\\x01(\\x0e\\x0e\\a\\xb0\\a\\x0e\\f\\x0e\\x03.w\\a\\f\\x06\\x01 \\x01\\a\\n\\x06\\x90\\f\\x0e\\x03*\\x01 \\x18\\f\\xfe\\xd0\\f\\x12\\f\\xc2\\b\\f\\a\\xf0\\x06\\n\\x05\\x13\\v\\x82\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x005\\x00E\\x00U\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014637\\x15#546;\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01#5#\\x15#5\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x80\\r\\x13\\x13\\r`\\r\\x13\\x13\\rH0\\x17\\x0f\\xca(\\r\\x13\\x13\\r\\x80\\r\\x13\\x13\\r(\\xca\\x0f\\x170\\xc00H\\r\\x13\\x13\\r`\\r\\x13\\x13\\r\\x01P\\r\\x13\\x13\\r`\\r\\x13\\x13\\r`\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13P0:\\x0f\\x17@\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13@\\x17\\x0f:000P\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x02B\\x01\\xc0\\x00-\\x00C\\x00\\x00%\\x16\\x06'.\\x01\\x06\\a\\x06\\\"'0.\\a#\\\"\\x06\\a\\x06\\\"'.\\x01\\x06\\a\\x06&7>\\x0175462\\x16\\x1d\\x01\\x1e\\x01\\x05632\\x17\\x15\\x14\\x06#\\\"&'&>\\x01\\x16\\x17\\x163265\\x02@\\x01\\f\\b\\x1a57\\x19\\x04\\f\\x03\\x04\\x04\\b\\b\\v\\x0e\\x0f\\x12\\t\\x1f(\\x14\\x03\\f\\x04\\x1974\\x1b\\b\\f\\x01\\x15\\x8f\\\\\\x13\\x1a\\x13\\\\\\x8f\\xfe\\xd5\\x0f\\x11\\x10\\x10/!\\x19*\\b\\x05\\f\\x19\\x17\\x05\\x04\\v\\a\\t\\xa7\\b\\n\\a\\x1c\\r#+\\a\\a\\a\\b\\f\\v\\f\\n\\b\\x05'\\\"\\a\\a+$\\x0e\\x1c\\a\\n\\bcz\\n\\x12\\r\\x13\\x13\\r\\x12\\nzx\\x0e\\x0e\\x82!/\\x1d\\x18\\r\\x18\\t\\f\\f\\v\\t\\a\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00/\\x008\\x00\\x00\\x13\\x15#\\\"&5\\x1146;\\x0162\\x1732\\x16\\x1d\\x01#\\\"\\x066\\\"\\x06\\x14\\x16264\\x173\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x01\\x15\\x14\\x167\\x15#532\\x1f\\x01\\x16\\x80h\\n\\x0e\\x0e\\nQ\\x12J\\x12Q\\n\\x0e\\x88\\x17!*\\x14\\x0e\\x0e\\x14\\x0e\\xa0h\\x0e\\n\\xf0\\n\\x0e\\x0e\\n\\x88\\x0er`\\x06\\n\\aB\\a\\x01\\b\\xe8\\x0e\\n\\x01P\\n\\x0e  \\x0e\\nH!y\\x0e\\x14\\x0e\\x0e\\x14\\xea\\xc8\\n\\x0e\\x0e\\n\\x010\\n\\x0eh\\n\\x0e&\\x06`\\aB\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x01`\\x01\\xc1\\x00\\r\\x00 \\x000\\x00\\x00\\x1753\\x15\\x14\\x0f\\x01\\x06+\\x01\\\"/\\x01&\\x034632\\x16\\x15\\x14\\a\\x06\\a0\\x15#41&'&7264&#\\\"\\x06\\x15\\x14\\x1626546`\\xa0\\x05\\x11\\n\\x11>\\x11\\t\\x12\\x05`dKJg,%\\x0f\\xa0\\x0f%,\\xb0\\a\\t\\t\\a.B\\t\\x0e\\t/\\x06&&\\n\\b\\x1a\\x0e\\x0e\\x1a\\b\\x01 GigIB2+0\\x01\\x010+2\\x92\\t\\x0e\\tB.\\a\\t\\t\\a!/\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x0f\\x00U\\x00\\x00$\\\"&462\\x16\\x14\\x06462\\x16\\x14\\x06\\\"7\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x15\\x0e\\x01\\x15\\x14\\x162654&'5\\x16\\x17\\x1627267\\x15\\x0e\\x01\\x1d\\x01\\x14\\x1f\\x01\\x16?\\x016/\\x01546\\x16\\x1d\\x01\\a\\x06\\x1f\\x01\\x16?\\x016=\\x014&'\\x01\\x15jKKjK\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\xca6J\\x1a\\x13\\xfe\\x9a\\x13\\x1a@0\\x11\\x17!.!\\x16\\x12\\f\\v\\x1c:\\x1d\\x01\\x04\\x01\\x1c$\\x0e\\x1f\\b\\x01\\x04\\x01\\b\\x1300\\x13\\b\\x01\\x04\\x01\\b \\r$\\x1c\\xc0KjKKj\\xfd\\x14\\x0e\\x0e\\x14\\x0e\\x9f\\x02N5-\\x13\\x1a\\x1a\\x13-1K\\bQ\\x05\\x1d\\x13\\x17!!\\x17\\x13\\x1d\\x05R\\x02\\x03\\n\\n\\x01\\x01.\\x05,\\x1d,\\x0e\\x02\\x04\\x01\\a\\x10\\b\\x02\\x03\\x1b \\x19\\x19\\x1e\\x1c\\x04\\x02\\b\\x10\\a\\x01\\a\\x02\\r*\\x1d,\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc2\\x00B\\x00J\\x00\\x00\\x012\\x1e\\x01\\x15\\x14\\a\\x15\\x14\\x06#\\\"&'.\\x01=\\x0146?\\x016\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x15\\x14\\x16326=\\x01'.\\x01?\\x01>\\x02\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x1e\\x02326=\\x01&7>\\x01\\x16264&\\\"\\x06\\x14\\x01\\xbf\\x12\\x1e\\x11 gIGg\\x027I\\v\\b?\\n\\x10\\x02\\x03\\x02\\v\\t\\x1f9('8\\x1f\\n\\v\\x02\\x04\\x01\\b\\f\\a?\\b\\vI7\\x02\\x1e3\\x1d.B!\\x01\\x01$\\x14\\x0e\\t\\t\\x0e\\t\\x01P\\x11\\x1d\\x12%\\x12qEc_D\\vY9\\x9b\\t\\r\\x02\\f\\x02\\v\\t\\x10\\n\\x10\\x02\\x06{(8:'z\\x06\\x02\\x10\\n\\x10\\x06\\n\\x04\\x01\\r\\x02\\r\\t\\x9b9X\\f\\x1b.\\x1a=+q\\x12&\\x1a%P\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\t\\x00\\r\\x00\\x17\\x00!\\x00\\x00\\x17\\x1146;\\x012\\x16\\x15\\x11\\x03\\x1535\\x17\\x11\\x14\\x06+\\x01\\x1132\\x16\\x01#\\\"&5\\x1146;\\x01\\x80\\x1c\\x14\\xa0\\x14\\x1c\\xc0\\x80\\xc0\\x1c\\x1400\\x14\\x1c\\xfe`0\\x14\\x1c\\x1c\\x140 \\x01\\x90\\x14\\x1c\\x1c\\x14\\xfep\\x01\\x80  P\\xff\\x00\\x14\\x1c\\x01`\\x1c\\xfe\\xbc\\x1c\\x14\\x01\\x00\\x14\\x1c\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x01\\xc1\\x01\\xc0\\x00\\x05\\x00+\\x00\\x00\\x16\\\"&53\\x147\\x16\\x15\\x14\\x06#!\\\".\\x0154767>\\x0254675462\\x16\\x1d\\x01\\x1e\\x02\\x15\\x14\\x1e\\x01\\x17\\x16\\xfa4&\\x80\\x97\\t\\x12\\x0e\\xfe\\x80\\t\\x0f\\b\\t\\x01\\x02\\x0f\\x11\\x14H8\\x13\\x1a\\x13%:!\\x14\\x11\\x0f\\x02@%\\x1b\\x1bq\\n\\f\\r\\x13\\t\\x0f\\b\\f\\n\\x01\\x03\\x0f\\x18C,:V\\v\\x15\\r\\x13\\x13\\r\\x15\\a,B&,C\\x18\\x0f\\x03\\x00\\x00\\x03\\xff\\xf9\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x11\\x00\\x19\\x00'\\x00\\x007\\\"&=\\x01463!2\\x16\\x14\\x06+\\x01\\x14\\x06#\\x13#\\x153264&\\x13!\\\"'&763!2\\a\\x06\\a\\x06\\xc0(8\\x0e\\n\\x01\\x885KK5 8(\\x80  \\x1a&&\\x16\\xfe\\x00!\\f\\t\\r\\x02\\x03\\x02H\\x0f\\x04\\x05\\x1a\\b@8(\\xe8\\n\\x0eKjK(8\\x01 \\x80&4&\\xfe\\x80 \\x18\\a\\x01\\x17\\x1d\\t\\x03\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00'\\x003\\x00;\\x00G\\x00S\\x00o\\x00\\x00\\x05\\x15!54;\\x01\\x1146;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x15\\x1132\\x03#\\\"\\x1d\\x01\\x14;\\x012=\\x014\\a32=\\x014+\\x01\\\"\\x1d\\x01\\x14\\x17#\\\"\\x1d\\x013547#\\\"\\x1d\\x01\\x14;\\x012=\\x014\\a4+\\x01\\\"\\x1d\\x01\\x14;\\x0125'3\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14\\x01\\xc0\\xfe@\\f\\x14\\x0e\\nX\\x0e\\np\\n\\x0eX\\n\\x0e\\x14\\f\\x8c(\\f\\f(\\f\\xb4(\\f\\f(\\ft(\\f@4(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\n\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06,\\x14\\x14\\f\\x01h\\n\\x0eH\\n\\x0e\\x0e\\nH\\x0e\\n\\xfe\\x98\\x01 \\f(\\f\\f(\\f@\\f(\\f\\f(\\f\\x80\\fTT\\f`\\f(\\f\\f(\\f\\f\\f\\f(\\f\\f\\xf4\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00'\\x00/\\x00K\\x00S\\x00X\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1f\\x01\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x16264&\\\"\\x06\\x1475'#\\x15\\x02p\\a\\t\\t\\a08P8\\x808P8\\x10\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c,\\x14\\x0ed\\x0e\\xfe,(\\x1c\\x1c(\\x1c\\xc0\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x9c(\\x1c\\x1c(\\x1c\\x80d,`\\t\\a \\a\\t(88((88(\\x1c\\x14\\x01@\\x14\\x1c\\x1c\\x140\\x0ed\\x0e\\x14lp\\x1c(\\x1c\\x1c(\\xdc0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xf0\\x1c(\\x1c\\x1c(\\xb4\\fdp\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\r\\x00\\x11\\x00\\x1b\\x00%\\x00I\\x00\\x00\\x17\\x113546;\\x012\\x16\\x1d\\x013\\x11\\x03\\x1535\\x17\\x11\\x14\\x06+\\x01\\x1132\\x16\\x01#\\\"&5\\x1146;\\x01\\x054&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x013265` \\x1c\\x14\\xa0\\x14\\x1c \\xe0\\x80\\xc0\\x1c\\x14\\x10\\x10\\x14\\x1c\\xfe@\\x10\\x14\\x1c\\x1c\\x14\\x10\\x01 \\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t \\x01`0\\x14\\x1c\\x1c\\x140\\xfe\\xa0\\x01\\x80  P\\xff\\x00\\x14\\x1c\\x01`\\x1c\\xfe\\xbc\\x1c\\x14\\x01\\x00\\x14\\x1c\\x90\\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00/\\x00\\x00%\\x16\\x14\\x0f\\x02#\\a32\\x14+\\x01535#\\a#'53535'575#5#573\\x1735#532\\x14+\\x01\\x173\\x17\\x02 ``\\x800\\x18u(\\x15\\x15s\\x100C\\\"\\v\\b0@@0\\b\\v\\\"C0\\x10s\\x15\\x15(u\\x180\\xe0\\x15\\x16\\x15\\x10\\x10\\x94\\f\\f\\xa4P\\vE\\x10\\x03\\b*\\b\\x03\\x10E\\vP\\xa4\\f\\f\\x94\\x10\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x19\\x00\\\"\\x00.\\x00:\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x15\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x1d\\x01\\x1754&+\\x01\\x1576\\x0626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x0626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x01p!/\\x1a\\x15Q\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\n\\x01\\x10\\n\\x0e@\\t\\a07\\t\\xb7\\x0e\\t\\t\\x0e\\tW\\x0e\\t\\t\\x0e\\t\\x01`/!\\x81\\x18'\\n$*\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n(с\\a\\t\\xb8\\x19\\x04E\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x003\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a#\\\"\\x06\\x1d\\x01#54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x013\\x15\\x14\\x16;\\x0126=\\x014&\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cp \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cD\\t\\aPP\\a\\t\\t\\a\\xe0\\a\\t\\t\\aPP\\a\\t\\t\\a\\xe0\\a\\t\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01@\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfc8\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\x00\\x02\\x00\\x18\\x00\\x1f\\x01\\xa9\\x01a\\x00\\x15\\x00*\\x00\\x00?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x1e\\x01\\x06\\x0f\\x01\\x06\\\"/\\x01&4\\a&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x16\\x14\\x0f\\x01\\x06\\\"'\\xe0\\x88\\a\\x14\\a\\x16\\a\\a``\\x05\\x03\\x03\\x05\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\aш\\a\\a\\x17\\a\\x14\\a``\\x05\\f\\r\\x04\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x00\\x02\\x00\\x18\\x00\\x1f\\x01\\xa8\\x01a\\x00\\x14\\x00+\\x00\\x007\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01\\x16\\x147\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'&4?\\x01>\\x012\\x16\\x17\\xe0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\x04\\t\\t\\t\\x03\\xaf\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\x03\\x04\\x04\\x03\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xf8\\x01A\\x01\\x88\\x00\\x14\\x00+\\x00\\x007\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x06\\\"/\\x01&4?\\x0162'62\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x0e\\x01\\\"&/\\x01&47\\xb1\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\x04\\t\\t\\t\\x03\\x17\\a\\a\\xc0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\x04\\x03\\x03\\x04\\x16\\a\\x14\\a\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xf8\\x01A\\x01\\x88\\x00\\x14\\x00)\\x00\\x007'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\x17\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\a\\x8f\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\xc0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x00\\x01\\x00\\x18\\x00\\x1f\\x00\\xe9\\x01a\\x00\\x15\\x00\\x00?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x1e\\x01\\x06\\x0f\\x01\\x06\\\"/\\x01&4 \\x88\\a\\x14\\a\\x16\\a\\a``\\x05\\x03\\x03\\x05\\x16\\a\\x14\\a\\x88\\aш\\a\\a\\x17\\a\\x14\\a``\\x05\\f\\r\\x04\\x17\\a\\a\\x88\\a\\x14\\x00\\x01\\x00\\x18\\x00\\x1f\\x00\\xe8\\x01a\\x00\\x14\\x00\\x007\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01\\x16\\x14\\xe0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xaf\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x00\\x01\\xff\\xff\\x00X\\x01A\\x01(\\x00\\x14\\x00\\x00\\x13\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x06\\\"/\\x01&4?\\x0162\\xb1\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x01 \\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00X\\x01@\\x01(\\x00\\x14\\x00\\x007'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\x8f\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14`\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x1f\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x1732\\x16\\x14\\x06#!\\\"&46;\\x017#\\\"&5\\x11463\\x01\\x11!\\x11\\x02\\x10\\x14\\x1c\\x1c\\x14\\xc0\\x10H\\n\\x0e\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\nH\\x10\\xc0\\x14\\x1c\\x1c\\x14\\x01\\xd0\\xfe@\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c0\\x0e\\x14\\x0e\\x0e\\x14\\x0e0\\x1c\\x14\\x01@\\x14\\x1c\\xfe\\xa0\\x01 \\xfe\\xe0\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x17\\x00!\\x00%\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x14\\x16;\\x01267\\x13\\x11!\\x11463!2\\x16\\x03\\x11!\\x11\\x02p\\a\\t&\\x1a\\xfe\\x00\\x1a&\\t\\a\\xef\\x14\\r=\\x0e\\x12\\x01\\xc2\\xfe\\x00\\x1c\\x14\\x01\\xa0\\x14\\x1c@\\xfe\\x80 \\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\v\\x15\\x11\\x0f\\x01p\\xfe\\xb0\\x01P\\x14\\x1c\\x1c\\xfe\\xdc\\x01\\x00\\xff\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xa3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x01\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14c\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1c\\x009\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x1d\\x01#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x1d\\x01\\x01\\xd0\\x14\\x1c\\x1c\\x14\\x80\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&\\xd0\\x14\\x1c\\x1c\\x14\\x80\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&\\xc0\\x1c\\x14\\x80\\x14\\x1c\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x1c\\x14\\x80\\x14\\x1c\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1c\\x009\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x0126=\\x01#\\\"&=\\x01463#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x0126=\\x01#\\\"&=\\x01463\\x01\\xd0\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&P\\x14\\x1c\\x1c\\x14\\xa0\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&P\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x1c\\x14\\x80\\x14\\x1c\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x1c\\x14\\x80\\x14\\x1c\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00\\x00\\x00\\x14\\x06\\\"&462\\x022\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4 \\x14\\x06\\\"&462\\x162\\x16\\x14\\x06\\\"&4$2\\x16\\x14\\x06\\\"&4\\x002\\x16\\x14\\x06\\\"&4\\x010\\x1c(\\x1c\\x1c(((\\x1c\\x1c(\\x1c\\xec(\\x1c\\x1c(\\x1c\\xfe\\xc0\\x1c(\\x1c\\x1c(\\x15(\\x1c\\x1c(\\x1c\\x01B(\\x1c\\x1c(\\x1c\\xfe\\xf6(\\x1c\\x1c(\\x1c\\x01\\xa4(\\x1c\\x1c(\\x1c\\xfe`\\x1c(\\x1c\\x1c(\\xec\\x1c(\\x1c\\x1c((\\x1c\\x1c(\\x1c\\x93\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x01B\\x1c(\\x1c\\x1c(\\x00\\x01\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x99Α\\x91Α\\x01\\xb8\\x91Α\\x91\\xce\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00)\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x1764.\\x01\\x06\\a\\x06\\\"'.\\x01\\x0e\\x01\\x14\\x17\\x162\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xa3\\x04\\x06\\t\\n\\x04#n#\\x04\\n\\t\\x06\\x04-\\x8c\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x97\\x04\\v\\a\\x05\\x02\\x05**\\x05\\x02\\x05\\a\\v\\x046\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x17\\x16>\\x01'&\\\"\\a\\x06\\x1e\\x01762\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x8a\\a\\x12\\x05\\x05-\\x8c-\\x06\\a\\x11\\a#n\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xc7\\b\\x04\\x10\\b66\\a\\x11\\x03\\a*\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16\\\"\\x06\\x14\\x16264\\x1724+\\x01\\\"\\x1436264&\\\"\\x06\\x14\\x91Α\\x91Α\\xb5\\x1a\\x13\\x13\\x1a\\x13\\x90\\x10\\x10\\xc0\\x10\\x10\\xa3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\xad  \\x80\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x04\\xff\\xff\\x00 \\x02\\x81\\x01`\\x00\\x11\\x00-\\x005\\x00=\\x00\\x00\\x012\\x16\\x14\\x06#\\\"&'#\\x0e\\x01#\\\"&463\\x1754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\xe0B^^B\\x1cC\\x13\\\\\\x13C\\x1cB^^BX\\f4\\f\\x18\\f4\\f\\f4\\f\\x18\\f4\\f\\xc7\\\"\\x17\\x17\\\"\\x17W\\\"\\x17\\x17\\\"\\x17\\x01`^\\x84^\\x1c\\x14\\x14\\x1c^\\x84^\\xac\\x18\\f4\\f\\f4\\f\\x18\\f4\\f\\f4@\\x17\\\"\\x17\\x17\\\"I\\x17\\\"\\x17\\x17\\\"\\x00\\r\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00K\\x00W\\x00c\\x00o\\x00{\\x00\\x87\\x00\\x93\\x00\\x9f\\x00\\x00)\\x01\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012%54+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02\\x10\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x1c\\xfe\\\\\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f\\x01 \\f\\xe8\\f\\f\\xe8\\f`\\f(\\f\\f(\\f\\x1c\\x14\\x01 \\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x01\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\fT(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\fT(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x00\\x04\\x00\\b\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\a\\x00.\\x004\\x00X\\x00\\x00\\x13\\x1e\\x01\\x17\\x15.\\x01'76\\x16\\x1d\\x01\\x14\\a\\x06#\\\"&#\\\"\\a\\x15\\x14\\x06+\\x01\\\"&5\\x11&546\\x17\\x1e\\x02\\x17\\x16\\a62\\x1632\\a5\\x06\\a\\x156%5\\x06\\a\\x15\\x06'5&'\\x15&\\a5\\x06\\a\\x1567\\x156\\x17\\x15\\x16\\x175\\x167\\x15675\\x06\\a56\\xf3\\t2\\x0f\\t2\\x0f\\xdf\\x10\\x1e\\x0e;?$i\\x19>4\\x0e\\n\\x10\\n\\x0e\\x18\\\"\\x18\\x0e\\x18\\x0f\\x01\\x01\\x05!Gh\\x1a0\\xe4\\\"(#\\x01M'##&\\f>&#\\x137.\\x1c(!\\v?&#%% *\\x1b\\x01\\x02\\x02\\x11\\x03D\\x02\\x11\\x03\\xbf\\a\\x12\\x12\\xf3\\x11\\t)\\\"\\x16^\\n\\x0e\\x0e\\n\\x01\\x82\\x11\\x1d\\x18!\\x01\\x01\\x0e\\x17\\x0e\\r\\v\\f#\\xe3H\\x03\\x0fF\\r\\x8aG\\x11\\x06H\\x06\\tD\\x02\\x14D\\v\\x05G\\x01\\x15F\\x11\\x04F\\x03\\aD\\x02\\x14D\\v\\x05H\\x04\\x18F\\x14\\x06G\\x04\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02\\x80\\x01\\x9b\\x00\\x14\\x00$\\x00\\x00%\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01\\x16\\x14\\x05\\x14\\x06#!\\\"&=\\x01463!2\\x16\\x15\\x01\\x02\\xc2\\a\\x14\\a\\x17\\a\\a\\x9a\\x9a\\a\\a\\x17\\a\\x14\\a\\xc2\\a\\x01w\\x0e\\n\\xfe\\xd0\\n\\x0e\\x0e\\n\\x010\\n\\x0e\\xaf\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\xbe\\n\\x0e\\x0e\\n \\n\\x0e\\x0e\\n\\x00\\x00\\x03\\xff\\xfa\\xff\\xbd\\x02\\x86\\x01\\xc3\\x00\\v\\x00\\x1b\\x00+\\x00\\x00\\x05'&7\\x136\\x1f\\x01\\x16\\a\\x03\\x06'\\x06/\\x01&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x17\\x16\\a\\x05\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x01\\x16\\a\\x01\\x17=\\f\\x04\\x88\\x03\\f=\\f\\x04\\x88\\x04}\\b\\t\\x90\\n\\n\\x90\\t\\b+\\t\\t[[\\t\\t\\x01\\x1c\\t\\b+\\t\\t[[\\t\\t+\\b\\t\\x90\\n\\n@\\x12\\x03\\f\\x01\\xd6\\f\\x03\\x12\\x03\\f\\xfe*\\ft\\t\\b\\x87\\t\\t\\x87\\b\\t.\\t\\bPP\\b\\t/\\b\\t.\\t\\bPP\\b\\t.\\t\\b\\x87\\t\\t\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xdc\\x02@\\x01\\xa5\\x00\\x1a\\x000\\x00\\x00\\x1376\\x16\\x1d\\x01\\x1e\\x03\\x15\\x14\\x06\\a\\x06&76&'\\x15\\x14\\x06/\\x01&4\\a&4?\\x016\\x16\\x1d\\x01\\a\\x0e\\x01\\x151\\x14\\x16\\x1f\\x01\\x15\\x14\\x06'\\x88\\xb0\\f\\x1c3N>!0#\\v\\x15\\x04\\x1c9T\\x1c\\f\\xb0\\bx\\b\\b\\xb0\\f\\x1cm\\b\\v\\v\\bm\\x1c\\f\\x01\\x02\\x98\\n\\r\\x0fS\\x04\\x15)F/,U\\x19\\b\\x0e\\fZR\\nT\\x0f\\r\\n\\x98\\a\\x16\\x1d\\a\\x16\\a\\x98\\n\\r\\x0f\\x10^\\a\\x18\\v\\v\\x18\\a^\\x10\\x0f\\r\\n\\x00\\x00\\x00\\x01\\xff\\xfb\\xff\\xbd\\x02\\t\\x01\\xc9\\x00\\x0f\\x00\\x00\\x016\\x16\\a\\x03\\x0e\\x01.\\x01=\\x01#\\\"&67\\x01\\xbd\\x1c/\\f\\xbf\\b \\x1e\\x17\\xb0\\x19\\x1b\\n\\x17\\x01\\xbc\\f/\\x1c\\xfe`\\x11\\x0e\\x06\\x1a\\x12\\xb0%-\\v\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\a\\x01\\xc7\\x007\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x11\\a3\\x15#\\\"&5\\x11#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x15\\x117#5376\\x1f\\x01\\x16\\x0f\\x01\\x15\\x01\\xe8\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e\\x93s\\xe8\\n\\x0e(\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e\\x93s\\xd3;\\v\\f\\x16\\f\\f;`\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\n\\x01\\x1b\\x93`\\x0e\\n\\x01\\b\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\n\\xfe\\xe5\\x93`;\\f\\f\\x16\\f\\v;\\xf3\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x006\\x00>\\x00F\\x00N\\x00\\x00\\x01\\x14\\x06\\a\\x06\\a\\x0e\\x02\\a\\x06\\a\\x06\\a\\x1e\\x01\\x15\\x14\\x06\\\"&54>\\x0175.\\x015462\\x16\\x15\\x14\\x06\\a\\x1567>\\x02767.\\x025462\\x16$\\\"\\x06\\x14\\x16264\\x02264&\\\"\\x06\\x14\\x12\\\"\\x06\\x14\\x16264\\x01\\x80\\x1e\\x18\\x01\\x15\\r- \\x1c2\\x10\\n\\x05\\x17\\x1c/B/\\x0e\\x1a\\x10\\x19\\x1f/B/\\x1f\\x19\\x189\\x18\\x18\\x1e\\a\\v\\x01\\x11\\x1a\\x0f/B/\\xfe\\xd7\\x0e\\t\\t\\x0e\\t\\x17\\x0e\\t\\t\\x0e\\t\\xf7\\x0e\\t\\t\\x0e\\t\\x010\\x1a*\\b*\\x1a\\x10\\x13\\x06\\x02\\x05\\b\\x05\\b\\t)\\x19!//!\\x12\\x1f\\x16\\x05\\xc8\\a*\\x1b!//!\\x1b*\\a\\x90\\v\\x06\\x02\\x03\\v\\t\\r\\x18\\x05\\x16 \\x12!///\\t\\x0e\\t\\t\\x0e\\xfe\\x89\\t\\x0e\\t\\t\\x0e\\x017\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00\\x17\\x00/\\x00?\\x00\\x00%\\x16\\x0f\\x01\\x06\\\"&4?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\x14\\x162?\\x016\\x17/\\x01&?\\x0162\\x16\\x14\\x0f\\x01\\x06/\\x01&?\\x0164&\\\"\\x0f\\x01\\x06\\x13\\x06\\\"'\\x01&4?\\x0162\\x17\\x01\\x16\\x14\\a\\x010\\t\\t-,~Y,-\\t\\b(\\b\\b-\\x15*<\\x15-\\b\\b\\x10(\\t\\t-,~Y,-\\t\\b(\\b\\b-\\x15*<\\x15-\\b\\xe2\\a\\x14\\a\\xfeG\\a\\a\\x17\\a\\x14\\a\\x01\\xb9\\a\\a*\\b\\t-,Y~,-\\t\\t(\\b\\b-\\x15<*\\x15-\\b\\b\\xdc(\\b\\t-,Y~,-\\t\\t(\\b\\b-\\x15<*\\x15-\\b\\xfe\\xa1\\a\\a\\x01\\xb9\\a\\x14\\a\\x17\\a\\a\\xfeG\\a\\x14\\a\\x00\\x02\\x00\\x18\\xff\\xc0\\x01z\\x01\\xc0\\x00)\\x001\\x00\\x00\\x132\\x16\\x15\\x14\\x0e\\x03\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014>\\x027>\\x0154&#\\\"\\x0e\\x01\\a\\x0e\\x01/\\x01.\\x0176\\x122\\x16\\x14\\x06\\\"&4\\xcaBn\\x1a%%\\x1a\\x0e\\nH\\n\\x0e\\r\\x1f\\x13\\x13\\x1b\\x16,\\x19\\x13\\x1d\\x14\\x0f\\x06\\x13\\b+\\b\\x03\\x06?F:((:(\\x01\\xc0Z@ 1\\x1b\\x14\\x15\\v\\x06\\n\\x0e\\x0e\\n\\n\\x16\\\"\\x1b\\f\\v\\x0f\\x15\\x0f\\x16\\x1c\\r\\x13\\x11\\b\\x03\\x06!\\x06\\x13\\b[\\xfe\\x8b)9))9\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x00\\xc0\\x01\\xc0\\x00\\x1e\\x00&\\x00\\x00735#\\\"&=\\x0146;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x122\\x16\\x14\\x06\\\"&4\\x14\\x14\\x14\\b\\f\\f\\bp\\b\\f\\x14\\b\\f\\f\\b\\x98\\b\\f\\f6<**<*\\x18\\x90\\f\\b0\\b\\f\\f\\b\\xd4\\f\\b0\\b\\f\\f\\b0\\b\\f\\x01\\xa8*<**<\\x00\\x00\\x02\\x00\\x10\\xff\\xc0\\x00\\xb0\\x01\\xc0\\x00\\a\\x00\\x17\\x00\\x006\\x14\\x06\\\"&462\\x0346;\\x012\\x16\\x15\\x03\\x14\\x06+\\x01\\\"&5\\xb0/B//Bh\\x0e\\n^\\n\\x0e\\x0e\\x0e\\nB\\n\\x0e1B//B/\\x01G\\n\\x0f\\x0f\\n\\xfe\\xf0\\n\\r\\r\\n\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\xc0\\x00\\x1f\\x00S\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01'2\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"/\\x01\\a\\x06+\\x01\\\"&=\\x0146;\\x017'#\\\"&=\\x0146;\\x012\\x1f\\x01763\\x01\\xf0\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x90\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\bC\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\b\\x01 \\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a\\x04\\x03 \\t\\t\\a\\x90`\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\x80\\x00\\x1f\\x00S\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01\\x032\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"/\\x01\\a\\x06+\\x01\\\"&=\\x0146;\\x017'#\\\"&=\\x0146;\\x012\\x1f\\x01763\\x01\\xf0\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x90\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\bC\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\b\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a\\x04\\x03 \\t\\t\\a\\x90\\x01\\x80\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\x00\\x02\\xff\\xff\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00\\x15\\x00\\x1a\\x00\\x00%\\a32\\x1d\\x01\\x14#!\\\"/\\x01&47\\x0162\\x1f\\x01\\x16\\x14%\\a\\x1737\\x01\\xf2\\x8e\\x90\\f\\f\\xfe\\x9c\\x14\\x0e`\\x0e\\x0e\\x01\\x00\\x0e(\\x0e\\xa0\\x0e\\xfe\\xc3|PrD\\xae\\x8e\\f(\\f\\x0e`\\x0e(\\x0e\\x01\\x00\\x0e\\x0e\\xa0\\x0e(1}PC\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x02@\\x01\\xc0\\x00K\\x00\\x00%2\\x1e\\x01\\x15\\x14\\x06#\\\"&#\\\"\\x0e\\x01\\x16\\x1f\\x01\\\"\\x0e\\x02.\\x0254654&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x01\\x15\\x14\\x0e\\x01&/\\x01\\x110\\x17\\x1654&54632\\x16\\x15\\x14\\x06\\x15\\x14\\x1e\\x01>\\x02?\\x010\\a\\x06326\\x02\\a\\x12\\x1b\\f\\x1d\\x1a\\x141\\x11\\x11\\x12\\x01\\x04\\x03\\x03\\n! $\\x1f\\x19\\x0e$#\\x1b\\x11\\x1d\\x11\\x14\\x14%54\\x13\\x12@p '\\x1c\\x1a#$\\x15#**\\\"\\v\\v\\x11\\x13)\\t2\\x9f\\x13\\x1d\\x11\\x1b#$\\x19##\\r\\f\\x04\\x03\\x04\\x02\\x06\\x10\\r\\x110\\x15\\x19\\x1d\\f\\x1a\\x12\\x12\\x1f\\x17\\t\\x14\\x14\\x01\\x04\\x04\\x04\\x01M\\n\\v2\\t2\\x17\\x1a\\x1e\\x1d\\x1a\\x140\\x12\\x11\\x12\\x03\\x04\\f\\v\\x04\\x04Ek\\x1f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc0\\x00\\v\\x00<\\x00\\x006\\\"&=\\x01462\\x16\\x1d\\x01\\x1472\\x16\\x1d\\x01\\x14\\x06\\a\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16\\x17\\x166=\\x01463\\xd8P88P8@\\a\\tWA8\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW\\t\\a\\x10\\a\\tB19T\\t\\a`8(\\xa0(88(\\xa0(h\\t\\a0Bc\\t\\\"\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD(\\a\\t\\t\\a*3N\\x04\\x06M80\\a\\t\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00%\\x00F\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x0154632\\x1e\\x01\\x1d\\x01\\x14\\a\\x176=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x01\\x17\\x1e\\x02\\x17\\x167\\x17\\x06\\a\\x15\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\xb38(\\x1a,\\x1a\\x05\\x1a\\v\\t\\a\\x10\\a\\t\\x14L\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW4\\x06\\x1f/\\x1b\\a\\x0e2\\x12\\x10\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\t\\x8a-(8\\x1a,\\x1a\\xa0\\x0e\\x10\\x14\\x18\\x1a0\\a\\t\\t\\a0*&\\x80\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD\\a)\\x1a,\\x1d\\x02\\x01\\x01'\\x06\\x02\\\"\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\r\\x00+\\x00\\x00\\x13!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114%\\x14#!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x15\\f\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01\\xc0\\f\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\x01\\x00\\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f,\\f\\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x008\\x00@\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x06/\\x01&5#\\x15\\x1e\\x03\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014675*\\x02\\x0e\\x05\\a\\x0e\\x01.\\x01767&632\\x16\\a347\\x06264&\\\"\\x06\\x14\\x01\\xb2\\x06\\b\\b\\x06\\xa8\\n(\\x0f\\x1b\\x13\\v\\x0e\\n\\x90\\n\\x0e)\\x1f\\x04\\x1e\\x06\\x18\\x06\\x12\\a\\r\\t\\x05\\x03\\x13\\x12\\b\\x04\\x1e<\\v!\\x1e\\x1c\\\"\\b:\\n\\x81\\x0e\\t\\t\\x0e\\t\\x01\\xa6\\x01\\b\\x05t\\x05\\b\\x01\\x1c\\x02\\x10\\x1b\\x04\\x12\\x18\\x1f\\x10\\xf8\\n\\x0e\\x0e\\n\\xf7!5\\b\\x1b\\x02\\x03\\x06\\n\\r\\x13\\f\\t\\b\\a\\x13\\tL\\x0f\\x1b1-\\x1b\\x10\\x02\\x12\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00,\\x004\\x00\\x00\\x01\\x16\\x15\\x14\\x06\\a\\x15\\x14\\x06\\x0f\\x01\\x06#\\\"&=\\x01\\a\\x06&/\\x01&6?\\x01#\\\".\\x0154?\\x01>\\x02;\\x01>\\x0132\\x17\\x16\\x06264&\\\"\\x06\\x14\\x01\\xf9\\aD<\\x10\\vb\\x05\\x06\\n\\x0e\\x16\\v\\x1a\\t3\\t\\x01\\b\\x17h\\a\\v\\x06\\x031\\x04\\x0e\\x11\\bh'dH3 \\n\\x88\\\"\\x17\\x17\\\"\\x17\\x01\\xad!2Hd'h\\r\\x19\\x051\\x03\\x0e\\nh\\x17\\t\\x01\\b3\\n\\x1b\\t\\x16\\x06\\v\\a\\x06\\x05c\\a\\f\\a=C\\a\\x02\\x9f\\x17\\\"\\x17\\x17\\\"\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x00\\x04\\\"&462\\x16\\x14%\\x17\\x162?\\x0164/\\x01764/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x01gΑ\\x91Α\\xfe\\x96\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a8\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05'&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\a\\x06\\x14\\x1f\\x01\\x162?\\x0164\\x99Α\\x91Α\\x01j\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a\\x01\\xb8\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x006462\\x16\\x14\\x06\\\"\\x13\\a\\x06\\x14\\x1f\\x01\\x162?\\x01\\x17\\x162?\\x0164/\\x01&\\\"\\b\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14YΑ\\x91Α\\x01j\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x00\\x00\\x14\\x06\\\"&462\\x03764/\\x01&\\\"\\x0f\\x01'&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162\\x01\\xf8\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14\\x01'Α\\x91Α\\xfe\\x96\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x02B\\x01\\xc1\\x00B\\x00J\\x00\\x007\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x1e\\x01\\x175#\\\"=\\x014;\\x015.\\x01546\\x17\\x1e\\x01\\x15\\x14\\x06\\a\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15>\\x017#\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x0e\\x01\\\"&'\\x00\\\"\\x06\\x14\\x16264\\r\\b\\x06\\x05D\\b\\bD\\x05\\x06\\b#\\x0eR04\\f\\f4\\x1c$9((7$\\x1c4\\x05\\a\\a\\x0540R\\x0e#\\b\\x06\\x05D\\b\\bD\\x05\\x06\\b \\x10\\x8e\\xaa\\x8e\\x10\\x01\\x00\\x1a\\x13\\x13\\x1a\\x13`\\x0f\\x05D\\b\\bD\\x05\\x0f'1\\x06\\xbe\\f(\\f\\x05\\n2\\x1f(9\\x01\\x018'\\x1f2\\n\\x05\\a\\x05(\\x05\\a\\xbe\\x061'\\x0f\\x05D\\b\\bD\\x05\\x0fIWWI\\x01 \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x00&\\x002\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x06\\x1d\\x01\\x1754&\\\"\\x06\\x1d\\x01\\x14\\x1626\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x18Y}Z\\x0e\\n \\n\\x0e+\\x1e\\x1d*p\\x17\\\"\\x17\\x17\\\"\\x17\\xc0\\x1c\\x14\\xa0\\x14\\x1c\\x1c\\x14\\xa0\\x14\\x1cf@ZY?\\x10\\n\\x0e\\x0e\\n\\x10\\x1e*+\\x1eg\\x980\\x11\\x17\\x17\\x110\\x11\\x17\\x17\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x91Α\\x91Α\\xac\\x98ll\\x98l\\x83jKKjKf4&&4&\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xe1l\\x98ll\\x98\\xccKjKKju&4&&4\\x00\\x00\\x00\\x03\\x00\\b\\x00x\\x01\\xf8\\x01\\b\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00$\\x14\\x06\\\"&46:\\x02\\x16\\x14\\x06\\\"&4$2\\x16\\x14\\x06\\\"&4\\x01H*<**<t<**<*\\xfe\\xca<**<*\\xde<**<**<**<**<**<\\x00\\x00\\x00\\x03\\x00\\x18\\xff\\xc8\\x00\\xa8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&<\\x0262\\x16\\x14\\x06\\\"\\x02462\\x16\\x14\\x06\\\"B<**<**<**<**<**<\\x01\\b*<**<t<**<*\\xfe\\xca<**<*\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00)\\x00;\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x17265.\\x01'\\\"\\x06\\x1d\\x01\\x143\\x1e\\x01\\x17\\x14;\\x01265.\\x01'\\\"\\x06\\x1d\\x01\\x143\\x1e\\x01\\x17\\x143\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14,(\\x1c\\x1c(\\x1c\\xce\\x04\\a\\x05uS\\x05\\a\\v<U\\x04\\v\\x8a\\x04\\a\\x05\\xb1~\\x05\\a\\vf\\x92\\x04\\v\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\x1c(\\x1c\\x1c(\\x1c\\a\\x05Su\\x05\\a\\x04#\\v\\x04U<\\v\\a\\x05}\\xb2\\x05\\a\\x04#\\v\\x04\\x92f\\v\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x15\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05>\\x014&/\\x01&\\x06\\x1d\\x01\\x14\\x167\\x99Α\\x91Α\\x01l\\x06\\x06\\x06\\x06\\xb0\\f\\x18\\x18\\f\\x01\\xb8\\x91Α\\x91\\xce\\u007f\\x03\\f\\f\\f\\x03k\\a\\x0e\\x0e\\xd0\\x0e\\x0e\\a\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13!2=\\x014#!\\\"\\x1d\\x01\\x14\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14,\\x01\\b\\f\\f\\xfe\\xf8\\f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xf8\\f8\\f\\f8\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x16\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xe1\\xb8\\f\\f\\x16\\f\\v\\x96F\\v\\f\\x16\\f\\fh\\v \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1cb\\xb8\\v\\f\\x16\\f\\f\\x96F\\f\\f\\x16\\f\\vh\\v\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1c\\x00*\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x03\\x0f\\x01\\x14\\x1e\\x013?\\x016/\\x01&7'&\\\"\\x0f\\x01\\x06\\x1f\\x01\\x16?\\x0164\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xb6\\x88\\x06\\x03\\a\\x039\\x88\\x04\\x047\\x05g\\x1e\\a\\x14\\a\\x17\\x04\\x047\\x05\\x04\\x17\\a \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01.\\x889\\x03\\a\\x03\\x06\\x88\\x04\\x048\\x04\\t\\x1e\\a\\a\\x17\\x04\\x057\\x04\\x04\\x17\\a\\x14\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc5\\x00\\x1e\\x00@\\x00\\x00\\x01\\a\\x06&=\\x01\\\"\\x0e\\x02\\x14\\x17\\x16\\x06'.\\x0154>\\x033546\\x1f\\x01\\x16\\x14\\a46\\x17\\x163276\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\a\\x06\\a\\x06+\\x01\\x11!\\x028\\x90\\v\\x1d-?0\\x15\\f\\x04\\x14\\t\\x1f+\\x1c-FJ/\\x1d\\v\\x90\\b\\xc0\\b\\x06\\x05\\x05\\f\\f\\x06\\n\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14y\\t\\x05\\b\\x1e\\x15\\x04\\x053\\x01@\\x01\\x0f\\x88\\v\\f\\x10H\\n\\x17';(\\f\\r\\a\\x18O)*>&\\x16\\tH\\x10\\f\\v\\x88\\a\\x14\\xd1\\x05\\b\\x01\\x01\\x04\\x02\\a\\x06Y\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x12\\x05\\x0f\\x16\\x04\\xfe\\xc0\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1e\\x00\\x00>\\x012\\x16\\x14\\x06\\\"&\\x022\\x16\\x14\\x06\\\"&4\\x056.\\x01\\x0f\\x01\\x06\\x0f\\x01\\x06\\x16?\\x0167\\xd8\\x13\\x1a\\x13\\x13\\x1a\\x13GΑ\\x91Α\\x01v\\x04\\a\\x0e\\t\\x90\\v\\x05B\\x06\\x14\\f\\x90\\v\\x05\\xcd\\x13\\x13\\x1a\\x13\\x13\\x01\\x05\\x91Α\\x91\\xce\\x03\\b\\x10\\x05\\x03B\\x05\\v\\x90\\f\\x14\\x06B\\x05\\v\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05\\x17\\x16?\\x016&+\\x01\\\"\\x06\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x9c|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x005\\x11463!2\\x16\\x15\\x11\\x14\\x06#!\\\"&%'&\\x0f\\x01\\x06\\x16;\\x0126\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01d|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x10\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x13!2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146\\x1376/\\x01&\\x06\\x1d\\x01\\x14\\x160\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x9c|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01B\\x01\\xa0\\x00E\\x00\\x00%\\x17\\x16\\a\\x06#\\\"&'#\\\"&=\\x014;\\x01&7#\\\"&=\\x014;\\x01>\\x0132\\x17\\x1e\\x02\\x0f\\x01\\x06'&#\\\"\\x06\\a32\\x16\\x0f\\x01\\x06+\\x01\\x06\\x1732\\x16\\x0f\\x01\\x06+\\x01\\x1e\\x033276\\x017\\t\\x02\\v\\x1e\\x1fMp\\x13\\x1e\\x05\\a\\f\\x15\\x01\\x02\\x16\\x05\\a\\f!\\x16oH\\x19\\x1b\\x04\\x05\\x02\\x01\\f\\x03\\v\\x15\\x11(>\\x10\\x8a\\x06\\a\\x01\\x06\\x02\\n\\x93\\x02\\x02\\x86\\x06\\a\\x01\\x06\\x02\\nr\\b\\x18\\x1f&\\x15\\x16\\x17\\f\\\",\\v\\x03\\bVF\\a\\x05\\x1c\\f\\x14\\x16\\a\\x05\\x1e\\f@P\\x05\\x01\\x04\\a\\x03,\\v\\x02\\x04(#\\t\\x06\\x1d\\n\\x13\\x17\\t\\x06\\x1c\\t\\x13 \\x16\\r\\x06\\x02\\x00\\x01\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x006\\x00\\x00%2\\x1d\\x01\\x14#!\\\"=\\x014;\\x015#\\\"=\\x014;\\x0154632\\x17\\x16\\x0f\\x01\\x06'&#\\\"\\x0e\\x04\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x1535463\\x014\\f\\f\\xfe\\xd8\\f\\f$\\x1c\\f\\f\\x1cO=7/\\t\\a\\x1d\\a\\t\\x1e\\x1b\\t\\x11\\x0e\\v\\a\\x04T\\f\\fT{\\a\\x05`\\fh\\f\\f(\\f\\x80\\f(\\fB7G#\\a\\n$\\b\\x06\\x13\\x04\\b\\n\\r\\x0e\\b@\\f(\\f\\u007f3\\x05\\a\\x00\\x00\\x00\\x01\\xff\\xfc\\xff\\xc0\\x01*\\x01\\xc0\\x00A\\x00\\x007\\x1e\\x01\\a\\x0e\\x01\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"'.\\x01?\\x016\\x17\\x16;\\x012654/\\x01.\\x01'&6;\\x01546;\\x012\\x16\\x1d\\x012\\x17\\x1e\\x01\\x0f\\x01\\x06'&+\\x01\\\"\\x06\\x15\\x14\\x16\\x17\\xd1,-\\x10\\f:$\\t\\a \\a\\t0&\\x06\\x02\\x06\\\"\\n\\n\\x0f\\x13B\\r\\x11\\x15g\\\".\\x04\\x04A1\\x02\\t\\a \\a\\t0&\\x06\\x02\\x06\\\"\\n\\n\\x0f\\x13B\\r\\x11\\f\\t\\xd7\\rT-!'\\x010\\a\\t\\t\\a0\\x1e\\x05\\x0e\\x05\\\"\\t\\a\\n\\x11\\r\\x16\\x06\\x1e\\n4\\\"1G0\\a\\t\\t\\a0\\x1e\\x05\\x0e\\x05\\\"\\t\\a\\n\\x11\\r\\t\\x10\\x03\\x00\\x01\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x004\\x00\\x00\\x01#\\x16\\x1732\\x1d\\x01\\x14+\\x01\\x0e\\x01\\a\\x17\\x16\\x06+\\x01\\\"/\\x01&=\\x0146;\\x01267#\\\"=\\x014;\\x01&+\\x01\\\"&=\\x0143!2\\x1d\\x01\\x14\\x014I\\t\\x05;\\f\\f5\\x05L9\\x97\\x06\\x06\\bS\\x05\\x03\\xa5\\x04\\a\\x05T\\x1f'\\x05\\x9f\\f\\f\\x92\\x14)U\\x05\\a\\f\\x01(\\f\\x01`\\x0f\\x11\\f(\\f8F\\x02\\x8b\\x06\\x0f\\x03\\x99\\x03\\x055\\x05\\a \\x1b\\f(\\f\\x1b\\a\\x05-\\f\\f(\\f\\x00\\x01\\x00\\x13\\xff\\xe0\\x01n\\x01\\xa0\\x00:\\x00\\x00\\x012\\x16\\x0f\\x0132\\x1d\\x01\\x14+\\x01\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015'#\\\"=\\x014;\\x01'&6;\\x012\\x1f\\x0236?\\x0163\\x01_\\a\\a\\x03P:\\f\\fX\\x14l\\f\\fl\\f8\\fl\\f\\fl\\x14X\\f\\f:P\\x03\\a\\aA\\b\\x037\\x1b\\x02\\f\\x0f7\\x03\\b\\x01\\xa0\\f\\x06\\x96\\f \\f%\\x1b\\f \\f\\\\\\f\\f\\\\\\f \\f\\x1b%\\f \\f\\x96\\x06\\f\\aqH%#q\\a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00)\\x002\\x00\\x007#\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06+\\x01\\\"=\\x01#\\\"=\\x014;\\x015#\\\"=\\x0146;\\x0154;\\x012\\x16\\x14\\x06'\\x1532654&#\\xef\\\\\\xa1\\f\\f\\xa1\\a\\x05;\\f4\\f\\f44\\f\\a\\x054\\f\\xa3@QQ\\x9cM$((#\\x80 \\f(\\f4\\x05\\a\\f4\\f(\\f \\f-\\x05\\a\\xcf\\fO\\x80Qۖ)#\\\"(\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00E\\x00N\\x00R\\x00Z\\x00d\\x00h\\x00\\x00\\x01#\\a32\\x1d\\x01\\x14+\\x01\\a\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"/\\x01#\\\"=\\x014;\\x01'#\\\"=\\x014;\\x01'&6;\\x012\\x1f\\x01376;\\x012\\x1f\\x01376;\\x012\\x16\\x0f\\x0132\\x1d\\x01\\x14\\x057#\\x1f\\x0132>\\x01?\\x01#\\x17;\\x01'&'#\\x06\\a\\x177#\\x17\\x1e\\x02136?\\x01#\\x17\\x024?\\aF\\f\\fU*\\x02\\n9\\t\\x02+7*\\x02\\n9\\t\\x02)T\\f\\fF\\b>\\f\\f0\\x12\\x01\\a\\x06*\\n\\x02\\x11m\\x14\\x02\\t,\\n\\x02\\x14n\\x0e\\x02\\n.\\x06\\a\\x01\\x130\\f\\xfex\\f&\\v\\x06\\x01\\x01\\x01\\x03\\x1e\\bQ\\x06\\x82\\x1a\\x02\\x03\\x02\\f\\x02\\x03\\x81\\f'\\f\\x03\\x03\\x01\\x01\\x02\\x1e\\aQ\\a\\x01\\x00 \\f(\\f\\xb7\\t\\t\\xb7\\xb7\\t\\t\\xb7\\f(\\f \\f(\\fQ\\x05\\t\\tVV\\t\\tVV\\t\\t\\x05Q\\f(\\f\\x9666/\\f\\x18\\x81  \\t\\v\\f\\f\\v\\u007f66\\v\\x18\\f\\x16\\x8f  \\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x1a\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x17\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0ez\\x06\\x80\\ab\\a\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00)\\x005\\x00>\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x01254+\\x01\\\"\\x1d\\x01\\x14;\\x01257\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8@\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f`\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\x8c\\b\\f\\f\\b\\fL\\b\\f\\f\\b\\fT\\f\\f\\b\\f\\fz\\x06\\x80\\ab\\a\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11%2\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01#\\\"&=\\x014637\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\xb0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01 \\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x9f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10`\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0@\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\tU\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x00\\x13\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\x052\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01#\\\"&=\\x014637\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\x10\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x9f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10\\x01 \\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x80\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\tU\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00%\\x005\\x00E\\x00U\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463'2\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x010\\a\\t\\t\\a@\\a\\t\\t\\a@\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x010\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x01\\x00\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a \\t\\a \\a\\t\\t\\a \\a\\t@\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00%\\x005\\x00E\\x00U\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x03\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x010\\a\\t\\t\\a@\\a\\t\\t\\a\\xe0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01p\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x01\\x00\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a \\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x00\\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x04\\xff\\xfd\\xff\\xde\\x01\\xb1\\x01\\xa0\\x00\\x1f\\x005\\x00=\\x00S\\x00\\x00\\x01\\\"&54?\\x016;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015\\x176\\x16\\x1d\\x01\\x14\\x0e\\x01\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14\\a2\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11\\x010\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\n(>\\x13%\\x1e\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05  \\x10\\f\\f\\x10\\f\\x9c\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\t\\a\\x04\\x03 \\t\\t\\ap\\t\\a \\a\\t\\t\\a \\a\\t@\\xa3\\v1'\\v#2\\\"\\r\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\b\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0\\x00\\x04\\xff\\xfd\\xff\\xde\\x01\\xb1\\x01\\xa0\\x00\\x15\\x00\\x1d\\x00=\\x00S\\x00\\x00%6\\x16\\x1d\\x01\\x14\\x0e\\x01\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14'\\\"&54?\\x016;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015'\\x17\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\\"&?\\x0162\\x01J(>\\x13%\\x1e\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05!\\x1f\\x10\\f\\f\\x10\\f\\x1c\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\xd5P\\b\\b\\v0\\t\\a \\a\\t0\\v\\b\\bP\\x04\\x0e\\xbd\\v1'\\v#2\\\"\\r\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\xf8\\t\\a\\x04\\x03 \\t\\t\\ap\\t\\a \\a\\t\\t\\a \\a\\t@;`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x14\\a`\\x05\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00D\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x16264&\\\"\\x06\\x14\\x01\\x14\\x06\\a32\\x16\\x15\\x14\\a#\\x16\\x06\\a\\x16\\x06\\a\\x16\\a\\x0e\\x02+\\x01\\\"'&#\\\"&=\\x0147>\\x01767632\\x1e\\x02h\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x1e\\x14\\x0e\\x0e\\x14\\x0e\\x01X \\x01e\\x19#\\x13\\x01\\b\\x04\\r\\x06\\n\\f\\x06\\f\\n*!\\x1d\\x030H#\\x11\\x05\\a\\x04\\x145\\x10\\x0e\\v\\x0e\\x14\\v\\x15\\x19\\x0f\\xe0\\x0e\\n\\xf0\\n\\x0e\\x0e\\n\\xf0\\n\\x0e\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\x01y\\x19?\\a#\\x17\\x1e\\x13\\x11.\\x11\\x14)\\x0e\\x1a\\x12\\x0e\\x0e\\x02 \\x10\\a\\x05\\xd6\\x05\\x03\\x15M\\x0f\\x0f,:\\x05\\x0f$\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00F\\x00\\x00\\x1146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&56\\x14\\x16264&\\\"\\x01\\\"'&'.\\x02'&=\\x01463276;\\x012\\x1e\\x02\\x17\\x16\\a\\x1e\\x01\\a\\x1e\\x01\\a3\\x16\\x15\\x14\\x06+\\x01\\x1e\\x01\\x15\\x14\\x0e\\x02\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e(\\x0e\\x14\\x0e\\x0e\\x14\\x01\\x02\\x14\\x0e\\v\\x0e\\x0e\\x1c\\x1f\\x10\\x04\\a\\x05\\x11#H0\\x03\\x15\\x19$\\x18\\b\\f\\x06\\f\\n\\x06\\r\\x04\\b\\x01\\x13#\\x19e\\x01 \\x0f\\x19\\x15\\x01\\x88\\n\\x0e\\x0e\\n\\xf0\\n\\x0e\\x0e\\n2\\x14\\x0e\\x0e\\x14\\x0e\\xfe\\xe8:,\\x0f\\r(+\\x11\\x03\\x05\\xd6\\x05\\a\\x10 \\x01\\x05\\r\\v\\x12\\x1a\\x0e)\\x14\\x11.\\x11\\x13\\x1e\\x17#\\a?\\x19\\x19$\\x0f\\x05\\x00\\x00\\x02\\x00\\x05\\xff\\xc0\\x00\\xfb\\x01\\xc0\\x00\\a\\x00$\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x13\\x16\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&?\\x01>\\x01;\\x01\\x16732\\x16\\x17e6%%6%\\xb7\\x03\\x0e\\f8\\x0e\\n \\n\\x0e8\\f\\x0e\\x030\\x02\\r\\b\\v%%\\v\\b\\r\\x02\\x01\\xc0%6%%6\\xfe\\xc3\\f\\x12h\\n\\x0e\\x0e\\nh\\x12\\f\\xc0\\a\\v\\x11\\x11\\v\\a\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x00\\xc0\\x01\\xc0\\x00\\a\\x00$\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01\\x167E6%%6%p\\x14\\x1c\\x0e\\n\\x10\\x0e\\n@\\n\\x0e\\x10\\n\\x0e\\x1c\\x14\\v%%\\x01\\xc0%6%%6k\\x1c\\x14\\x88\\n\\x0e\\x88\\n\\x0e\\x0e\\n\\x88\\x0e\\n\\x88\\x14\\x1c\\x11\\x11\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00\\a\\x00/\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x16\\x14\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x01\\x0664&\\\"\\x06\\x14\\x16\\xd8P88P8\\x01V\\n\\n^!\\x03\\x0f\\nd0\\x04\\x16\\x05/d\\n\\x10\\x04!^\\n\\n^!\\x04\\x0f\\vd/\\x05\\x16\\x05/d\\n\\x10\\x04!cKKjKK\\x01 8P88P\\x18\\x05\\x16\\x05/d\\n\\x10\\x04!^\\n\\n^!\\x04\\x0f\\vd/\\x05\\x16\\x05/d\\n\\x10\\x04!^\\n\\n^!\\x04\\x10\\nd\\xbfKjKKjK\\x00\\x00\\x00\\x00\\x01\\x00\\x1b\\xff\\xc0\\x01\\xe8\\x01\\xc0\\x00\\x18\\x00\\x00\\x05\\\".\\x0154632\\x17\\x1e\\x01\\a\\x0e\\x01\\x15\\x14\\x1676\\x16\\a\\x0e\\x02\\x01\\x1bEvE\\x96j\\x18\\x17\\b\\x03\\a/7\\x92]\\b\\b\\x05\\x18>J@EuFj\\x96\\x04\\x02\\x10\\x05\\x1a^6^y\\x12\\x02\\x0f\\x06\\x1e*\\x17\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\t\\x00\\x15\\x00%\\x00\\x003\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14;\\x012=\\x014+\\x01\\\"%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463 \\x01\\xc0\\x13\\r\\xfe\\x80\\r\\x13\\xa0\\fh\\f\\fh\\f\\x01 \\r\\x13\\t\\a\\xfe \\a\\t\\x13\\r\\x01 \\xfe\\xe0\\r\\x13\\x13\\xe1\\b\\f\\f\\b\\f\\xc0\\x13\\r0\\a\\t\\t\\a0\\r\\x13\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc0\\x00?\\x00E\\x00\\x00%\\x14\\x06+\\x01\\x15\\x14\\a\\x17\\x16\\x14\\x06\\\"/\\x01\\x06#54+\\x01\\\"\\x1d\\x01\\\"'\\a\\x06\\\"&4?\\x01&=\\x01#\\\"&546;\\x015'&462\\x1f\\x013762\\x16\\x14\\x0f\\x01\\x1532\\x16\\x002\\x16\\x15#4\\x02\\x00\\x14\\r7\\x0e=\\t\\x13\\x1a\\n6(3\\f\\x18\\f3(6\\n\\x1a\\x13\\t=\\x0e7\\r\\x14\\x13\\r8/\\t\\x13\\x1a\\n6\\xe66\\n\\x1a\\x13\\t/8\\r\\x13\\xfe\\xd3\\\\B\\xe0\\x9f\\r\\x12\\x10 \\x1d<\\n\\x1a\\x13\\t7 \\xf4\\f\\f\\xf4 7\\t\\x13\\x1a\\n<\\x1d \\x10\\x12\\r\\x0e\\x13;.\\n\\x1a\\x13\\t77\\t\\x13\\x1a\\n.;\\x13\\x01\\x13B..\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x03\\a\\x06\\x1f\\x01\\x166=\\x014&\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01d|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x044&\\\"\\x06\\x14\\x162\\x99Α\\x91Α\\x01H/B//B\\x01\\xb8\\x91Α\\x91ΈB//B/\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x02\\x01\\xc1\\x00-\\x00C\\x00\\x00%\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01#\\\"&'&54>\\x01\\x17\\x1e\\x01\\x17\\x14\\x0e\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1732\\x16\\x1f\\x0176\\x16'\\x17\\x0e\\x01#\\\"&5467\\x16\\x17\\x0e\\x01\\x15\\x14\\x163267\\x01\\xf0\\x0e\\x03\\x04\\x06A\\f\\x1a\\x06>\\x8c\\f\\x12\\x02 \\x12\\x1f\\x12\\x19#\\x01\\x0e\\x19\\x10\\x05\\x82\\a\\t\\t\\ay\\x05\\x84\\b\\x11\\x049%\\x06\\f\\xb6\\x1a\\x15W5Ig=2\\x04\\x05\\x19\\x1fB.*?\\x06>\\x1c\\x06\\r\\x03!\\x06\\t\\f\\x86\\x10\\v\\xe1\\x04\\x12\\x1e\\x11\\x01\\x01$\\x19\\x10\\x1d\\x12\\x02!\\t\\a \\a\\t \\v\\a{\\x13\\x02\\x04\\x1c7/:gI7Y\\x13\\x1b'\\x0f3\\x1f.B7)\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\x81\\x01\\xa0\\x00:\\x00\\x00%2\\x16\\x15\\x0e\\x01+\\x01\\\"=\\x01\\a\\x06&=\\x014?\\x015\\a\\x06&=\\x014?\\x0154;\\x012\\x1d\\x0176\\x16\\x1d\\x01\\x14\\x0f\\x01\\x1576\\x16\\x1d\\x01\\x14\\x0f\\x01\\x15265463\\x01t\\x05\\a\\x04{eP\\f1\\x06\\t\\t71\\x06\\t\\t7\\f8\\f\\x81\\x06\\t\\t\\x87\\x81\\x06\\t\\t\\x87Fb\\a\\x05\\xc0\\a\\x05dp\\f\\xc1\\v\\x01\\a\\x06)\\n\\x02\\f\\x1e\\v\\x01\\a\\x06)\\n\\x02\\fE\\f\\f3\\x1d\\x01\\a\\x06)\\n\\x02\\x1e\\x1e\\x1d\\x01\\a\\x06)\\n\\x02\\x1e\\x9fMH\\x04\\a\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x003\\x00<\\x00\\x00%\\x16\\x14\\a\\x06#!\\x06\\a3\\x0e\\x04#5#\\x15\\\"&=\\x01\\\"=\\x01435\\\"=\\x01435463\\x15352\\x1e\\x03\\x17#\\x16\\x17!2\\a26&#\\\"\\x1d\\x01\\x14\\x02Q//4E\\xfe\\xe2\\a\\t\\xce(B+*7\\\"\\x10\\x14\\x1c    \\x1c\\x14\\x10\\\"7*+B(\\xce\\t\\a\\x01\\x1eE5\\x0f\\f\\f\\x0f\\b\\xf0\\x164\\x16\\x18\\n\\x06\\b#$#\\x16\\x80\\x80%\\x1b@\\x18(\\x18\\x10\\x18(\\x18@\\x1b%\\x80\\x80\\x16#$#\\b\\x06\\np((\\b@\\b\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00%\\x00=\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x172\\x1e\\x022>\\x0236754&#!\\\"\\x06\\x1d\\x01\\x16\\x05\\x06\\a\\x0e\\x04\\\".\\x03'&'\\x15\\x14\\x163!265\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x82\\x01\\x11\\b\\x0f\\n\\x0f\\b\\x11\\x01J(\\x0e\\n\\xfe\\xf0\\n\\x0e(\\x01\\x18\\x16I\\x01\\x10\\t\\x10\\x0f\\x10\\x0f\\x10\\b\\x11\\x01I\\x16\\x0e\\n\\x01\\x10\\n\\x0e\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xe6\\x0e\\x05\\a\\a\\x05\\x0e5 \\x19\\n\\x0e\\x0e\\n\\x19 \\t\\x115\\x01\\f\\x06\\t\\x04\\x04\\t\\x06\\f\\x015\\x11\\x8e\\n\\x0e\\x0e\\n\\x00\\x00\\x00\\x00\\x03\\x00\\x10\\xff\\xe0\\x01\\xf0\\x01\\xa0\\x00\\x17\\x00%\\x009\\x00\\x00\\x01\\x15\\x14+\\x01\\x15\\x14#!\\\"=\\x01#\\\"=\\x014?\\x0162\\x1f\\x01\\x16\\x032\\x16\\x1d\\x01\\x14#!\\\"=\\x0146373\\x15353\\x15353\\x1532\\x1d\\x01!54;\\x01\\x01\\xf0\\b\\x18\\f\\xfex\\f\\x18\\b\\x05\\xe8\\x01\\x04\\x01\\xe8\\x05\\x18\\n\\x0e\\b\\xfe0\\b\\x0e\\n8@@@@@$\\f\\xfe`\\f$\\x01@\\x10\\b\\f\\f\\f\\f\\b\\x10\\x05\\x02X\\x01\\x01X\\x02\\xfe\\xcb\\x0e\\n\\x10\\b\\b\\x10\\n\\x0e\\xf0\\xc0\\xc0\\xc0\\xc0\\xc0\\f\\x14\\x14\\f\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x81\\x01\\x84\\x00#\\x00.\\x00\\x00\\x01\\x16\\x14\\a\\x05\\x06/\\x01\\x06\\a\\x16\\x15\\x14\\a\\x17\\x16\\x06+\\x01\\\"&?\\x01&54767'&47%6\\x1f\\x017\\x17\\x14\\x06\\\"&57\\x17\\x16\\x02n\\x12\\x12\\xfe\\xe9\\x17\\x17\\xc4\\x13\\x02\\x10\\x0e\\x1a\\x01\\t\\b8\\b\\t\\x01\\x1a\\x0e\\x10\\x01\\x110\\x12\\x12\\x01\\x17\\x17\\x17\\n\\x91\\x0ep\\xa0p\\x0e\\x91!\\x01'\\x06\\\"\\x06U\\b\\b<\\x0e\\x17\\n\\x11\\x10\\ns\\a\\f\\f\\as\\n\\x10\\x12\\t\\x1a\\x15\\x0f\\x06\\\"\\x06U\\b\\b\\xf7,q\\x1b%%\\x1bq,\\n\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\x05\\x00\\x0f\\x00D\\x00N\\x00e\\x00\\x007\\x17#?\\x01\\x16%2\\x16\\x15\\x11\\x14\\x06#!\\x11\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x06\\a&'&\\x0f\\x02\\x06\\x17\\x16\\x17\\x06\\a\\x06\\x1f\\x01\\x16767\\x16\\x17\\x16?\\x016'&'6732%463!\\x11!\\\"&57\\x06\\x1e\\x01;\\x012?\\x013\\x17\\x16;\\x0126/\\x01&+\\x01\\\"\\a\\x98\\v&\\v\\b\\x05\\x01\\xd3\\n\\x0e\\x0e\\n\\xfe\\xe8\\x01\\x00\\f@\\f\\x10\\f@\\f\\fr\\t\\x15\\t\\b\\a\\t\\a\\a\\v\\a\\n\\v\\f\\x0e\\n\\x06\\b\\x06\\v\\x12\\x11\\x10\\x14\\n\\x06\\b\\x06\\n\\r\\r \\v\\v\\f\\xfd\\xb0\\x0e\\n\\x01\\x18\\xfe\\xe8\\n\\x0e;\\x01\\x02\\x06\\x04\\x17\\t\\x03\\t<\\t\\x03\\t\\x17\\x06\\a\\x029\\x03\\t \\t\\x03\\xd4&&!\\x15\\x80\\x0e\\n\\xfe\\xf0\\n\\x0e\\x01@x\\x10\\f\\x10\\f\\f\\x10\\f\\x10\\f\\x15\\x16\\n\\v\\t\\x06\\x04\\x04\\a\\n\\r\\r\\t\\t\\x06\\n\\x0e\\v\\a\\v\\x0e\\r\\f\\a\\v\\x0e\\n\\x06\\b\\n##l\\n\\x0e\\xfe\\xc0\\x0e\\n8\\x04\\a\\x05\\t\\x1f\\x1f\\t\\n\\x06\\xa9\\b\\b\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x00%\\x005\\x00E\\x00U\\x00^\\x00n\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01\\x16\\x15\\x0354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x01#\\\"&=\\x01#\\x15'2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\x01\\xe0\\r\\x13\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\xf3\\r\\t.\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t0\\a\\t\\xa0\\x80\\r\\x13\\x13\\r \\r\\x13\\x13\\r\\x01 \\x13\\r\\xfe\\xe0\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\t.\\t\\r\\xfe\\x9d \\a\\t\\t\\a \\a\\t\\t\\x87 \\a\\t\\t\\a \\a\\t\\ty \\a\\t\\t\\a \\a\\t\\t\\x87 \\a\\t\\t\\a \\a\\t\\tw@\\t\\a0\\x80@\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00)\\x005\\x00=\\x00I\\x00U\\x00a\\x00\\x00\\x052\\x1d\\x01!54;\\x01\\x11463!2\\x16\\x15\\x11\\x01\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x172=\\x014+\\x01\\\"\\x1d\\x01\\x143\\x1754+\\x01\\\"\\x1d\\x01754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xb4\\f\\xfe@\\f\\x14\\x0e\\n\\x01P\\n\\x0e\\xfe\\xe0\\f(\\f\\f(\\f\\f(\\f\\f(\\f4\\f\\f(\\f\\ft\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f \\f\\x14\\x14\\f\\x01\\xc8\\n\\x0e\\x0e\\n\\xfe8\\x01\\x94(\\f\\f(\\fl(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\xa0T\\f\\fT\\xac(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\a\\x00)\\x00\\x00\\x12462\\x16\\x14\\x06\\\"6\\x16\\x14\\x0f\\x01\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&5\\x11'&462\\x1f\\x01376x*<**<\\xcb\\x13\\t_\\x13\\r\\x10\\r\\x13\\x10\\x13\\r\\x10\\r\\x13_\\t\\x13\\x1a\\nVfV\\n\\x01Z<**<*P\\x13\\x1a\\n^\\xfe\\xf5\\r\\x13\\x13\\rpp\\r\\x13\\x13\\r\\x01\\v^\\n\\x1a\\x13\\tWW\\t\\x00\\x00\\x00\\x05\\xff\\xfb\\xff\\xe0\\x02\\x05\\x01\\xa5\\x00\\x12\\x00\\x1d\\x00(\\x003\\x00?\\x00\\x0062\\x1e\\x01\\x15\\x14\\x06#\\\"&#\\\"\\x06#\\\"&546&\\x16\\x06\\a\\x06.\\x01'&>\\x01\\x16\\x06.\\x01676\\x1e\\x01\\x17\\x16\\x17\\x1e\\x01\\x0e\\x01.\\x017>\\x02\\a.\\x01>\\x01\\x1e\\x01\\a\\x0e\\x03\\xdaL\\\\>&\\\"\\x19L\\x13\\x12M\\x19\\\"&>\\x19\\x10\\x14\\x16\\x0e\\x1e\\x17\\x05\\b\\x14,\\x9e/-\\x12\\x14\\x18\\x0f\\x1f\\x19\\x06\\t\\xee\\x16\\x14\\x10*,\\x14\\b\\x05\\x17\\x1e\\x8e\\x18\\x14\\x12-/\\x14\\t\\x04\\x11\\x15\\x18\\xe0C_&\\x1a\\x1e\\x19\\x19\\x1e\\x1a&_j4-\\x05\\x03\\v\\x19\\x11\\x1a-\\n\\x1d\\f&A7\\x06\\x04\\x0f \\x15!\\x1f\\x05-4\\x1d\\n-\\x1a\\x11\\x19\\v!\\x067A&\\f7!\\x10\\x1b\\x11\\a\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00\\x13\\x00\\x19\\x00\\x1d\\x00\\x00\\x136\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01&=\\x0146?\\x01\\a\\x15\\x1775\\x0375\\a\\xef\\x11\\x11\\xd0\\x0e\\x11\\x1b\\xd0\\x15\\x16\\xd0\\x1a\\x11\\x0e\\xe1\\xc0\\xc0\\xc0\\xa0\\xa0\\xa0\\x01\\xba\\x06\\x06N\\x06\\x18\\x0f\\xe1\\x1e\\rh\\v\\vh\\r\\x1e\\xe1\\x0f\\x18\\x06\\x10H\\x02NN\\x02\\xfe\\xe4P\\x86B\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xdb\\x02\\x00\\x01\\xa3\\x00\\x1d\\x00!\\x00'\\x00+\\x00/\\x003\\x007\\x00\\x00%\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&=\\x014?\\x0154?\\x016\\x1f\\x01\\x16\\x1d\\x01\\a5\\a\\x15'\\x15\\x1775'\\x035\\a\\x157'\\a\\x17\\x055\\a\\x157'\\a\\x17\\x01\\xe9\\x17\\x14d\\x10\\x10hh\\x10\\x10d\\x14\\x17a\\x17d\\r\\rd\\x17\\\"Uwfff\\x12UUfff\\x01VUUfff\\xc6\\t\\x19n\\x16\\n2\\b\\b44\\b\\b2\\n\\x16n\\x19\\t$l\\x19\\t&\\x05\\x05&\\t\\x19l\\x01I$E\\x8f\\x01))\\x01&\\xfe\\xb7K'O\\x9b''*FK'O\\x9b''*\\x00\\x00\\x03\\xff\\xfc\\xff\\xbd\\x02\\x00\\x01\\xc1\\x00\\x1c\\x008\\x00U\\x00\\x007\\x16\\x06/\\x01\\a\\x06\\x16;\\x012\\x1d\\x01\\x14+\\x01\\\".\\x01?\\x01'&6?\\x016\\x16\\x177&\\\"\\x0f\\x01\\x06/\\x01&?\\x0162\\x1f\\x0176\\x16\\x0f\\x01\\x0e\\x01/\\x01.\\x01?\\x01\\x17\\x16\\x14\\x0e\\x01+\\x01\\x15\\x14\\x06/\\x01&?\\x016\\x16\\x1d\\x01326/\\x01&?\\x016\\x17\\xb9\\x02\\x12\\t(3\\n\\x12\\x134\\f\\f4$6\\t\\x123)\\t\\x03\\vn\\x06\\f\\x01|\\t$\\t\\x12\\x06\\v\\\"\\n\\a\\x12\\x1cj\\x1c*(\\t\\x12\\x03\\x19\\x02\\v\\x06n\\v\\x03\\t(\\xad\\x0f\\x18-\\x1b`\\x14\\aP\\f\\fP\\a\\x14`\\x13\\x12\\n\\x1b\\a\\n\\\"\\n\\a\\xba\\n\\r\\x06\\x19Q\\x10!\\f(\\f0A\\\"Q\\x1a\\x05\\x15\\x03\\x19\\x02\\a\\aI\\x0f\\x0f\\x1d\\n\\x06\\x16\\x06\\n\\x1d--B\\x19\\x06\\r\\nn\\a\\a\\x02\\x19\\x03\\x15\\x05\\x1a\\x9c\\x175+\\x1c0\\v\\b\\bP\\v\\vP\\b\\b\\v0!\\x10,\\n\\a\\x15\\x06\\n\\x00\\x04\\xff\\xfe\\x00\\x00\\x02\\x02\\x01\\x80\\x007\\x00A\\x00P\\x00a\\x00\\x00\\x012\\x16\\x0f\\x01\\x06+\\x01\\x16\\x1d\\x01\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&=\\x0147#\\\"/\\x01&6;\\x017>\\x03;\\x012\\x16\\x1f\\x01%\\a!'.\\x01+\\x01\\\"\\x06\\a:\\x02>\\x0354&\\\"\\x06\\x14\\x16!264&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x03:\\x01\\x01\\xf4\\x06\\a\\x01\\x06\\x03\\t\\x14\\x16\\x10\\x13\\r \\r\\x13\\xff\\x00\\x13\\r \\r\\x13\\x10\\x16\\x14\\t\\x03\\x06\\x01\\a\\x06<\\x11\\x06\\x15\\x1b \\x11\\x80\\\"9\\f\\x11\\xfe\\xdc\\x14\\x01\\x00\\x14\\x05\\x19\\x0e\\x80\\x0e\\x199\\x02\\r\\x06\\v\\x06\\a\\x03\\\"\\x1c\\x12\\x12\\x01N\\x0e\\x12\\x12\\x0e\\t\\x17\\x10\\x03\\a\\x06\\v\\x06\\r\\x01\\x10\\t\\x06\\x18\\t\\x13\\x1d0\\x18\\x126\\r\\x13\\x13\\r  \\r\\x13\\x13\\r6\\x12\\x180\\x1d\\x13\\t\\x18\\x06\\t*\\x0f\\x1b\\x12\\n& *\\x1222\\r\\x11\\x11\\xaf\\x01\\x02\\x03\\x06\\x04\\x0f!\\x12\\x1c\\x12\\x12\\x1c\\x12\\x10\\x17\\t\\x04\\x06\\x03\\x02\\x01\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x001\\x009\\x00B\\x00J\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&=\\x0146?\\x01>\\x01;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x17\\x04264&\\\"\\x06\\x147!'.\\x01+\\x01\\\"\\a\\x04264&\\\"\\x06\\x14\\x01\\xce\\x16\\x1c \\x13\\r \\r\\x13\\xff\\x00\\x13\\r \\r\\x13 \\x1c\\x16\\x16\\a+\\x1b\\v\\x13\\r\\x80\\r\\x13\\v\\x1b+\\a\\xfe\\x9b\\x1a\\x13\\x13\\x1a\\x135\\x01\\x16\\x11\\x01\\n\\x04\\xd6\\f\\x03\\x01\\r\\x1a\\x13\\x13\\x1a\\x13\\xce\\x04#\\x170$\\x13)\\r\\x13\\x13\\r  \\r\\x13\\x13\\r)\\x12%0\\x17#\\x04U\\x1b\\\" \\r\\x13\\x13\\r \\\"\\x1b\\xc3\\x13\\x1a\\x13\\x13\\x1a]C\\x05\\b\\x0e\\xb2\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x01\\xff\\xfb\\xff\\xbf\\x01\\x85\\x01\\xc1\\x00/\\x00\\x00%\\x16\\x06+\\x01\\x15\\x17\\x16\\x06+\\x01\\\"&?\\x015#\\\"&?\\x01#\\\"&?\\x01#\\\"'&?\\x01>\\x012\\x16\\x1f\\x01\\x16\\a\\x06+\\x01\\x17\\x16\\x06+\\x01\\x01z\\n\\f\\x0f\\x89\\x1e\\x04\\t\\t`\\t\\t\\x04\\x1e\\x89\\x0f\\f\\nP\\x1f\\x0f\\f\\tO\\x1d\\x0f\\x06\\x06\\nn\\x03\\x06\\x06\\x06\\x03n\\n\\x06\\x06\\x0f\\x1dO\\t\\f\\x0f\\x1fF\\v\\x1b\\x181\\b\\x0f\\x0f\\b1\\x18\\x1b\\vZ\\x1a\\v[\\x0e\\r\\vu\\x03\\x02\\x02\\x03u\\v\\r\\x0e[\\v\\x1a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x19\\x00#\\x00\\x00\\x01\\x15\\x14\\x06#\\\".\\x01=\\x014632\\x1e\\x01\\x1d\\x01\\x14\\x06\\\"&=\\x01\\x16 \\x17\\x15\\x14\\x06\\\"&=\\x01\\x16 \\x01\\xc0\\x83]=g<\\x83]=g<\\x83\\xba\\x83G\\x012G\\x83\\xba\\x83G\\x012\\x01w.\\x1e+\\x14!\\x14.\\x1e+\\x14!{g\\x1e++\\x1eg1og\\x1e++\\x1eg1\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x06\\x00\\f\\x00\\x14\\x00&\\x00B\\x00K\\x00O\\x00\\x007.\\x01432\\x14\\a\\x16\\x17\\x06\\a6\\a67\\x0e\\x04\\x133\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\x17&'6'.\\x01\\x06\\a\\x06\\x17\\x06\\a\\x0e\\x01\\x17\\x1632767\\x16326'&7\\x16\\x1d\\x01#532\\x17\\x13\\x06'6\\xb6\\x02\\x02\\x02\\x06\\x06\\x0e\\x15\\f3\\rO\\x04\\x1f\\x06\\f\\b\\x06\\x03\\xa2\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0e\\x02\\x1d\\x0e\\f\\x05\\x03\\x15\\x16\\x02\\x06\\x0e\\x17\\x12\\x1d&\\f\\b\\x0e\\x19$>\\x11$\\x1c\\x14\\n\\n\\x10O\\a\\x80\\x06\\n\\a\\x18\\x06%+\\xc0\\a\\x17\\x11(6\\x1a\\x0f\\x02\\x14\\x18V\\v\\x1d\\n\\x0f\\t\\x05\\x01\\x01\\f\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\xac\\x12$/\\x11\\x0e\\v\\b\\n\\x1676 \\x0e&\\x10\\n>\\x14\\x03\\x13\\\"\\t\\x0f\\xdb\\a\\n\\x06\\x80\\a\\xfe\\x9f\\a\\x10\\x01\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00<\\x00E\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x13\\\"\\a\\x06\\x15&'&+\\x01\\\"\\a\\x06\\a&'&+\\x01\\\"\\x06\\x1f\\x01\\x16;\\x0127673\\x16\\x17\\x16;\\x012?\\x016.\\x01#7\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc89\\n\\x01\\x16\\x02\\x1c\\x02\\t\\x1d\\n\\x02\\x1c\\x02\\x01\\x13\\x02\\n\\x19\\x06\\a\\x02%\\x02\\n%\\t\\x03\\x18\\x01\\x01\\x04\\x15\\x03\\t&\\n\\x02&\\x01\\x03\\x06\\x04O\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xff\\x00\\ne\\x1c\\x0fs\\t\\ts\\b\\x1b_\\n\\t\\x06\\xa8\\t\\tc\\f\\x17X\\t\\t\\xa8\\x04\\a\\x04\\x86\\x06\\x80\\ab\\a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x004\\x00=\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x176&+\\x01\\\"\\x0f\\x014'&+\\x01\\\"\\x06\\x1f\\x01\\a\\x06\\x16;\\x012767\\x16\\x17\\x16;\\x0126/\\x017\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8<\\x04\\a\\a#\\a\\x03%%\\x03\\a#\\a\\a\\x04<<\\x04\\a\\a#\\a\\x03\\\"\\x03\\x11\\x13\\x04\\a#\\a\\a\\x04<\\xa0\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xf2\\x06\\f\\x06E\\x01D\\x06\\r\\x06]^\\x06\\f\\x06=\\b!$\\x06\\f\\x06^\\xd6\\x06\\x80\\ab\\a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\a\\x00\\x10\\x00\\\"\\x00=\\x00\\x0072\\x16\\x14\\x06+\\x0157\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x134&+\\x01\\\"\\x0e\\x02\\x1d\\x01\\x14\\x16;\\x0126=\\x01:\\x02>\\x04\\xc2\\r\\x0e\\x0f\\r\\x1b\\xd3\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc85(!Q\\x02\\x05\\x03\\x02\\a\\x05\\x1f\\x05\\a\\x01\\x14\\f\\x17\\x10\\x13\\f\\b\\xb1\\x11\\x1b\\x11=\\xa6\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xd3!,\\x02\\x03\\x05\\x02\\xc8\\x05\\a\\a\\x059\\x02\\x06\\v\\x11\\x19\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x00\\\"\\x00-\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\a3\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\x06\\\"\\x06\\x14\\x16264\\x175'&\\x0f\\x01'&\\x0f\\x01\\x15\\x01\\x80\\x80\\x06\\n\\ab\\a\\x88\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0ej'\\x1c\\x1c'\\x1d\\xa0(\\b\\tg(\\b\\b(\\x01F\\x06\\x80\\ab\\a0\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\x10\\x1c(\\x1c\\x1c(\\xd4p(\\b\\bh(\\b\\b(0\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x14\\x00*\\x00.\\x00O\\x00\\x00\\x01\\x16\\x1d\\x01#532\\x17\\x022\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15353\\a\\x1535\\x0226/\\x01&+\\x01535#535#535#\\x15#\\x153\\x15#\\x153\\x15#\\x15\\a\\x06\\x01y\\a\\x80\\x06\\n\\a\\x9f\\x11\\x0f\\t\\x13\\x1b\\x13\\tw\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nh @\\x80 \\x192\\x1f\\x04\\x12\\x02\\n\\x16           \\x13\\x05\\x01W\\a\\n\\x06\\x80\\a\\xfe\\xb7\\a\\r\\a\\v\\x10\\x10\\v\\a\\r\\xcf\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e     \\xfe\\x80&\\x19W\\n            a\\x18\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00!\\x00/\\x00=\\x00F\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x0354&\\x0f\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x17\\x1667\\x06\\x1e\\x01764'&\\x0e\\x01\\x17\\x16\\x147&\\x0e\\x01\\x17\\x16\\x14\\a\\x06\\x1e\\x017647\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8@\\x0f\\x05$\\x1c\\f\\f\\x1c$\\x05\\x0f!\\n\\t\\x18\\f\\x14\\x14\\v\\x1a\\a\\t\\aO\\n\\x1b\\x06\\t\\x1b\\x1b\\v\\n\\x18\\v)@\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfel\\x88\\b\\x06\\x06$\\f8\\f$\\x06\\x068\\v\\x1a\\x06\\t\\x15;\\x14\\v\\b\\x18\\f\\a\\x13n\\n\\b\\x18\\f\\x1cN\\x1c\\v\\x1a\\x05\\t*u\\x9f\\x06\\x80\\ab\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x004\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x134&\\x0f\\x0154&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x01\\x17\\x1665\\x01\\x80\\x80\\x06\\n\\ab\\a\\xa0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8`\\x1e\\v7\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e7\\v\\x1e\\x01F\\x06\\x80\\ab\\a\\x18\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xe8\\x10\\f\\v7&\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\n&7\\v\\f\\x10\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x003\\x00G\\x00`\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\a3\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\a7654/\\x017654/\\x01&#\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x1632\\x17032?\\x01454/\\x010#\\\"\\x0f\\x01\\x14\\x15\\x14\\x17764/\\x01&#\\\"\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x1f\\x01\\x16327\\x01\\x80\\x80\\x06\\n\\ab\\a\\x88\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0es\\x14\\x01\\x02((\\x02\\x01\\x14\\x01\\x03\\x02\\x01A\\x02\\x02A\\x01\\x02\\x035\\x01\\x04\\x01>\\x04\\x1c\\x01\\x04\\x01>\\x04\\xbc\\x02\\x02A\\x01\\x02\\x03\\x01\\x14\\x01\\x02((\\x02\\x01\\x14\\x01\\x03\\x02\\x01\\x01F\\x06\\x80\\ab\\a0\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\xf1\\x15\\x02\\x02\\x03\\x01$$\\x01\\x03\\x02\\x02\\x15\\x01\\x01=\\x02\\x04\\x02=\\x011\\x04\\xd3\\x01\\x01\\x04\\x01\\b\\x04\\xd3\\x01\\x01\\x04\\x01g\\x02\\x04\\x02=\\x01\\x01\\x15\\x02\\x02\\x03\\x01$$\\x01\\x03\\x02\\x02\\x15\\x01\\x01\\x00\\x06\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x15\\x00\\x1b\\x00!\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%&'\\a\\x16\\x17\\x06264&\\\"\\x06\\x14'\\x06\\a\\x1767\\a\\x16\\x177&'\\x1767'\\x06\\a\\x99Α\\x91Α\\x01\\xa6\\x14\\x1a?\\x1c\\x11\\x96P88P8 \\x1a\\x14@\\x11\\x1cm\\x14\\x1a?\\x1c\\x11\\xee\\x1a\\x14@\\x11\\x1c\\x01\\xb8\\x91Α\\x91\\xce\\x19\\x1a\\x14@\\x11\\x1c\\xa18P88P\\xd6\\x14\\x1a?\\x1c\\x11\\xee\\x1a\\x14@\\x11\\x1cm\\x14\\x1a?\\x1c\\x11\\x00\\x00\\x00\\x01\\x00\\a\\xff\\xc7\\x01\\xf8\\x01\\xb4\\x00#\\x00\\x00\\x0146\\x17\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"&'4676\\x16\\x1d\\x01\\x14\\a\\x0e\\x01\\x15\\x14\\x162654&'&5\\x01 \\x12\\fQiBrCg\\x91\\x01iQ\\v\\x13\\x12:Ll\\x98lL:\\x12\\x01\\x99\\f\\x0e\\x03\\x15\\x85VCrC\\x90gV\\x86\\x15\\x03\\x0e\\f\\x11\\x12\\x05\\x10b?LllL?b\\x10\\x05\\x12\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xbb\\x02\\x03\\x01\\xc5\\x00\\x16\\x00\\x00\\x016\\x16\\a\\x03\\x0e\\x01/\\x01\\a\\x06&=\\x01\\x136&\\a\\x05'.\\x017\\x01\\xdc\\r\\x19\\x02H\\x02\\x15\\n}@\\n \\xf1\\x03\\b\\x04\\xfe\\xe1j\\x0e\\x02\\r\\x01\\xbd\\a\\x11\\x0f\\xfeP\\v\\f\\x054M\\r\\v\\x11Q\\x01%\\x05\\a\\x03\\xfd,\\x06\\x1e\\a\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc7\\x01\\xf9\\x01\\xb8\\x00%\\x007\\x00\\x00\\x00\\x14\\x06#\\\"'.\\x01?\\x01>\\x01\\x17\\x163264&#\\\"\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x01632\\x03\\x0e\\x01/\\x01546;\\x012\\x16\\x1d\\x01\\x17\\x1e\\x01\\a\\x01\\xf8\\x91gXD\\b\\x01\\b\\v\\x06\\x13\\a2@LllLI53\\a\\b\\v\\x91\\a\\t\\x14\\a2Hcg$\\x06\\x14\\bA\\x0e\\n\\x10\\n\\x0e)\\b\\x02\\x06\\x01'͒7\\a\\x15\\b\\v\\x06\\x01\\x05(l\\x98l23\\a\\x14\\t\\a\\x91\\v\\b\\a2E\\xfe\\xba\\b\\x03\\x063\\x88\\n\\x0e\\x0e\\nh \\x06\\x14\\b\\x00\\x01\\x00\\x10\\xff\\xe0\\x01\\xf0\\x01\\xa0\\x00K\\x00\\x00\\x01\\x1132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x11#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1535#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01\\xc0 \\a\\t\\t\\a\\xa0\\a\\t\\t\\a \\xc0 \\a\\t\\t\\a\\xa0\\a\\t\\t\\a  \\a\\t\\t\\a\\xa0\\a\\t\\t\\a \\xc0 \\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\x01`\\xfe\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x01\\x00 \\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00!\\x00\\x00\\x01\\x15\\x14\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\\"&46;\\x012\\x16\\x01\\xc0\\t\\a0\\t\\a \\a\\t \\t\\a \\a\\t B^^B\\xf0\\a\\t\\x01\\x90 \\a\\t\\xfe\\x90\\a\\t\\t\\a\\x01p\\xfe\\x90\\a\\t\\t\\ap^\\x84^\\t\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00#\\x00G\\x00k\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\\"&=\\x01463!546;\\x012\\x16\\x1d\\x0172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x01\\xf0\\a\\t\\t\\a\\xfe\\xb0\\t\\a \\a\\tP\\a\\t\\t\\aP\\t\\a \\a\\t\\x01P\\a\\t\\t\\aP\\t\\a \\a\\t\\xfe\\xb0\\a\\t\\t\\a\\x01P\\t\\a \\a\\tP\\a\\t\\t\\a\\xd0\\t\\a \\a\\t\\xd0\\a\\t\\t\\a\\xd0\\t\\a \\a\\t@\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00%\\x00\\x00%2\\x16\\x14\\x06\\\"&547'\\x06#\\\"&4632\\x177&5462\\x16\\x14\\x06#\\\"'\\a\\x16\\x14\\a\\x176\\x01`(88P8\\x02f\\x1a\\\"(88(\\\"\\x1af\\x028P88(\\\"\\x1af\\x02\\x02f\\x1a\\x808P88(\\v\\n@\\x158P8\\x15@\\n\\v(88P8\\x15@\\n\\x16\\n@\\x15\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x005\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\\"\\a'64'7\\x163264&\\\"\\x06\\x15\\x14\\x17\\a&#\\\"\\x06\\x14\\x16327\\x17\\x06\\x15\\x14\\x16264&\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x90\\x16\\x10D\\x02\\x02D\\x10\\x16\\x17!!.!\\x02D\\x10\\x16\\x17!!\\x17\\x16\\x10D\\x02!.!!\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xec\\x0f)\\a\\x0e\\a)\\x0f!.!!\\x17\\a\\a)\\x0f!.!\\x0f)\\a\\a\\x17!!.!\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00O\\x00\\x00\\x01\\a\\x17\\x16\\x14\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&4632\\x17762\\x1f\\x01?\\x012\\x14+\\x01\\\"43&2\\x1d\\x01\\x14\\\"=\\x01\\x17\\x06&?\\x016\\x16\\x0f\\x01'&6\\x1f\\x01\\x16\\x06\\x1f\\x01\\x16\\x06/\\x01&6\\x05463264&#\\\"\\x06\\x15\\x14\\x1626\\x01\\xb84\\x1b\\a\\a\\x11\\x12z\\xaczzV-)\\x11\\a\\x14\\a\\x1a4M\\f\\f\\x18\\f\\f0\\x18\\x18.\\b\\x12\\t\\x11\\b\\x11\\bU\\x11\\b\\x11\\b\\x11\\t\\x11;\\x11\\b\\x11\\b\\x11\\t\\x11\\xfe\\x9f&\\x1a\\a\\t\\t\\a(8\\t\\x0e\\t\\x01h4\\x1b\\a\\x14\\a\\x11)-Vzz\\xacz\\x12\\x11\\a\\a\\x1b4\\f\\x18\\x18<\\f\\x18\\f\\f\\x18+\\t\\x12\\b\\x11\\t\\x12\\b\\x11\\x11\\b\\x12\\t\\x11\\b\\x12\\x19\\x11\\t\\x11\\t\\x11\\b\\x12\\xc0\\x1a&\\t\\x0e\\t8(\\a\\t\\t\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00*\\x00\\x00\\x00\\x14\\x06\\\"&462\\x17\\a'7\\x17&'\\x17\\a'7\\x06\\a7\\x17\\a'\\x14\\x177\\x1f\\x01\\a\\x167'?\\x01\\x176\\a'7\\x17\\a\\x01\\xf8\\x91Α\\x91\\xcea\\x1a?\\x11\\\"'>\\x0eKK\\x0e>'#\\x10?\\x1a&\\bU%\\x1e>>\\x1e%U\\b&\\xf8\\x1eNN\\x1e\\x01'Α\\x91Α\\xf8\\x16:T\\x036\\x13\\x1f**\\x1f\\x136\\x03T:\\x16B4\\\"\\vM\\x12\\x14\\x14\\x12M\\v\\\"4\\x04\\\\88\\\\\\x00\\r\\x00\\x00\\xff\\xc0\\x02\\x05\\x01\\xcd\\x00!\\x00-\\x009\\x00E\\x00Q\\x00]\\x00i\\x00u\\x00\\x81\\x00\\x8d\\x00\\x99\\x00\\xa5\\x00\\xb1\\x00\\x00\\x13>\\x01\\x16\\x17\\x16\\x0f\\x01\\x06#\\\"/\\x01&5417&\\a\\x170\\x15\\x14\\x0f\\x01\\x06#\\\"/\\x01&54\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05D\\xb7\\xb7D\\n\\b+\\x05\\v\\x03\\x03W\\v\\x06``\\x06\\vW\\x03\\x03\\v\\x05+\\x03`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f\\x01 \\f\\xe8\\f\\f\\xe8\\f`\\f(\\f\\f(\\f\\x01XD11D\\n\\rE\\b\\x01#\\x04\\r\\x01<##<\\x01\\r\\x04#\\x01\\bE\\x05\\x05\\b\\xc7\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x88\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x88\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\t\\x00\\x1e\\x003\\x00=\\x00A\\x00\\x00\\x01\\x15#546;\\x012\\x16\\x0546;\\x01\\x15#\\x15\\x14\\x06+\\x01\\\"&=\\x01>\\x04%\\x1e\\x03\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x01#532\\x1e\\x01%2\\x16\\x1d\\x01#5463\\x1353\\x15\\x01\\xa0`\\t\\a@\\a\\t\\xfe\\xa0\\x13\\r` \\x13\\r`\\r\\x13\\x01\\r\\x12\\x12\\r\\x01\\x81\\x01\\x13\\x17\\x14\\x01\\x13\\r`\\r\\x13 `\\t\\x0e\\t\\xfe\\xf0\\a\\t`\\t\\ap@\\x01\\x9000\\a\\t\\tw\\r\\x13\\xa0\\xa0\\r\\x13\\x13\\r,$;)%-\\x1a\\x1f9)G,,\\r\\x13\\x13\\r\\xa0\\xa0\\t\\x0ew\\t\\a00\\a\\t\\xff\\x00\\xa0\\xa0\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\a\\x00#\\x00+\\x00\\x00\\x01\\x15#5462\\x16\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06\\a\\x15#5.\\x01=\\x01#\\\"&=\\x014637\\x15#5462\\x16\\x01@@\\x13\\x1a\\x130\\a\\t\\t\\a\\x10K5@5K\\x10\\a\\t\\t\\ap@\\x13\\x1a\\x13\\x01\\xa0``\\r\\x13\\x13\\x8d\\t\\a \\a\\t 6\\\\\\vcc\\v\\\\6 \\t\\a \\a\\t\\x80``\\r\\x13\\x13\\x00\\x00\\a\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x14\\x00\\x1a\\x00&\\x002\\x00>\\x00J\\x00V\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x015463\\x022=\\x01#\\x1572=\\x014+\\x01\\\"\\x1d\\x01\\x143!2=\\x014+\\x01\\\"\\x1d\\x01\\x143'2=\\x014+\\x01\\\"\\x1d\\x01\\x143!2=\\x014+\\x01\\\"\\x1d\\x01\\x14372=\\x014#!\\\"\\x1d\\x01\\x143\\x02(\\n\\x0e\\x1c\\x14\\xfe(\\x17!\\x0e\\n(\\x0e\\n(\\x10\\x10\\xf4\\f\\f\\x98\\f\\f\\x01h\\f\\f\\x98\\f\\f8\\f\\f\\x98\\f\\f\\x01h\\f\\f\\x98\\f\\f\\x98\\f\\f\\xfe\\x98\\f\\f\\x01\\x80\\x0e\\n\\xfe\\xc8\\x14\\x1c!\\x17\\x01\\x10\\n\\x0e\\b\\n\\x0e\\xfe\\xb0\\b\\xf8\\xf8\\b\\f\\b\\f\\f\\b\\f\\f\\b\\f\\f\\b\\f`\\f\\b\\f\\f\\b\\f\\f\\b\\f\\f\\b\\f`\\f(\\f\\f(\\f\\x00\\x00\\x03\\xff\\xff\\xff\\xe0\\x02\\x81\\x01\\xaf\\x00\\x12\\x00\\x1a\\x00,\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06'& \\a\\x06/\\x01&47>\\x01\\x16\\x022\\x16\\x14\\x06\\\"&4%\\x16\\x14\\x0f\\x01\\x06'&\\\"\\a\\x06/\\x01&4762\\x02{\\x05\\x05\\\"\\v\\vn\\xfe\\xd6n\\v\\v\\\"\\x05\\x05W\\xe4\\xe4\\xff6%%6%\\x01\\v\\x05\\x05\\\"\\v\\v?\\xa8?\\v\\v\\\"\\x05\\x05W\\xe8\\x01%\\x04\\x0e\\x05\\\"\\v\\vdd\\v\\v\\\"\\x05\\x0e\\x04Q99\\xfe\\xea%6%%6y\\x05\\x0e\\x05\\\"\\n\\n66\\n\\n\\\"\\x05\\x0e\\x05L\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1154&#!\\\"\\x06\\x1d\\x01\\x14\\x163!26\\x01\\x90\\x13\\x1d\\x1d\\x13\\xfe\\xa0\\x13\\x1d\\x1d\\x13P\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05\\xfe\\xda\\x05\\b\\b\\x05\\x01&\\x05\\b\\x01\\xc0\\x1d\\x13\\xfe`\\x13\\x1d\\x1d\\x13\\x01\\xa0\\x13\\x1d\\xfeM&\\x05\\b\\b\\x05&\\x05\\b\\b\\x85&\\x05\\b\\b\\x05&\\x05\\b\\b{&\\x05\\b\\b\\x05&\\x05\\b\\b\\x85&\\x05\\b\\b\\x05&\\x05\\b\\b{\\xa6\\x05\\b\\b\\x05\\xa6\\x05\\b\\b\\x01\\x05f\\x05\\b\\b\\x05f\\x05\\b\\b\\x00\\x00\\x03\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00#\\x00/\\x007\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01675462\\x16\\x1d\\x01\\x1e\\x01\\x15\\x14\\x1e\\x01\\x17\\x16\\x17\\x16\\x15\\x14\\x061%\\x17#\\\".\\x01547>\\x02\\x17\\\"&53\\x14\\x0e\\x01\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\x91%=\\x13\\x1a\\x138H\\x14\\x11\\x0f\\x02\\x01\\t\\x01\\xfe~\\xd5\\xf2\\t\\x0f\\b\\t\\x0e\\f\\x16\\xa7\\x1a&\\x80\\x11\\x1e\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\tp1\\r\\x15\\r\\x13\\x13\\r\\x15\\vV:,C\\x18\\x0f\\x03\\x01\\n\\f\\x01\\x03\\x88\\xa4\\t\\x0f\\b\\f\\n\\x0f\\x0e2\\xe5%\\x1b\\x11\\x1e\\x11\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00!\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x01\\x01\\x03!\\x03\\x0e\\x01+\\x01\\\"&\\x01\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\xfe\\xfd\\x15\\x01\\x80\\x15\\x01\\x1c\\x13\\xf6\\x13\\x1c\\x01\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\xfeM\\x01S\\xfe\\xad\\x13\\x1a\\x1a\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x008\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05654/\\x01.\\x01\\a\\x0e\\x04#\\\"&54632\\x17\\x166?\\x01654'.\\x06#\\\"\\x06\\x15\\x14\\x1e\\x0132>\\x01\\x99Α\\x91Α\\x01m\\x03\\x02\\x19\\x03\\f\\x03\\x01\\x05\\r\\x0e\\x16\\v#'(\\\"$\\x1a\\x04\\v\\x03\\x16\\x02\\x03\\x01\\x03\\v\\v\\x12\\x14\\x1a\\r>R$C) 8\\x11\\x01\\xb8\\x91Α\\x91\\xce\\xca\\x04\\x04\\x04\\x03\\\"\\x04\\x01\\x04\\x01\\x05\\t\\b\\x060 !+\\x18\\x04\\x02\\x04#\\x03\\x03\\x05\\x04\\x01\\x03\\b\\a\\t\\x06\\x04R=)B&\\x18\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00:\\x00F\\x00\\x00\\x012\\x16\\x15\\x14\\x06#\\\".\\x02'\\x0e\\x01#\\\"&54632\\x176;\\x012\\x16\\x0f\\x01\\x06\\x16\\x17>\\x0154&#\\\"\\x06\\x14\\x163276\\x16\\x1f\\x01\\x16\\x06\\a\\x06#\\\"&46\\x132654&#\\\"\\x06\\x15\\x14\\x16\\x01\\x00j\\x8eJL\\x0f\\x10\\x17\\x0e\\x03\\r*\\x14,4Q9*\\x12\\x01\\f-\\f\\x0e\\x02\\x18\\x03\\x05\\f\\x1a jNLllL6-\\b\\x12\\x06\\n\\a\\x04\\t=Jg\\x91\\x91Q\\x15%\\x12\\x11\\x17$\\x14\\x01\\xb8|d?T\\x01\\x06\\x0f\\f\\x11\\x1691BV\\x16\\f\\x11\\fy\\r\\x10\\x01\\x032\\x1fJVl\\x98l\\x1d\\x05\\x03\\a\\f\\t\\x15\\x06(\\x91Α\\xfe\\xd0)\\x1f\\x13\\x16) \\x13\\x15\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00\\v\\x00#\\x00\\x00?\\x01\\x17\\a\\x06+\\x01\\a'754\\x00\\x16\\x14\\x0f\\x01\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01763~\\x80~\\x13\\x1b-8  \\x01\\xa88\\x1cM\\r\\a\\a)\\a\\x14\\a\\xa2\\a\\a)\\a\\x14\\a\\rM\\x1cs~\\x80~\\x13  8-\\x1b\\x01`8P\\x1cM\\r\\a\\x14\\a)\\a\\a\\xa2\\a\\x14\\a)\\a\\a\\rM\\x1c\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x13\\x00,\\x00\\x007\\x170\\x16\\x15\\x14\\x06#\\\"&5\\x1e\\x043276\\x012\\x16\\x15\\x14\\a\\x0e\\x01#\\\"/\\x01&54>\\a76\\xa7X\\x01F:@@\\x02\\f\\r\\x0e\\v\\x03\\v\\x04\\x1a\\x01j\\x16 \\x0eUP.\\n\\f@\\t\\x01\\b\\b\\x14\\x14'%?\\x1e\\x12\\x8bJ\\a\\x028@XC\\x02\\t\\t\\t\\x06\\nD\\x01:\\x1c\\x16\\x13\\x1b\\x9fa\\x035\\x13\\x14\\t\\x0e\\x10\\f\\x17\\x12#\\x1f8\\x1b\\x10\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00#\\x004\\x00?\\x00J\\x00U\\x00\\x00%\\\"&\\\"\\x06\\\"&#\\\"\\x06#\\\"&\\\"\\x06#546;\\x0153\\x15353\\x15353\\x1532\\x16\\x1d\\x01!5262\\x16262\\x162632\\x163\\x01\\\"&54652\\x16\\x14\\x063\\\"&54652\\x16\\x14\\x063\\\"&54652\\x16\\x14\\x06\\x01\\xc0\\f'/'\\x18'\\x18\\x17(\\v\\r'/'\\f\\x1c\\x14\\x10@@@@@\\x10\\x14\\x1c\\xfe@\\x18'\\x18'/'\\x18'/'\\r\\v'\\x18\\xfe\\xa0\\r\\x13 \\n\\x16\\x12r\\r\\x13 \\n\\x16\\x12r\\r\\x13 \\n\\x16\\x12@      P\\x14\\x1c\\x90\\x90\\x90\\x90\\x90\\x90\\x1c\\x14\\xd0`      \\x01@\\x13\\r\\x0e\\x1c\\x16%&\\x15\\x13\\r\\x0e\\x1c\\x16%&\\x15\\x13\\r\\x0e\\x1c\\x16%&\\x15\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00\\x00%2\\x1d\\x01\\x14#!\\\"5\\x114;\\x012\\x15\\x11%6\\x16\\x1f\\x01!57>\\x01\\x1f\\x01\\x01\\xf4\\f\\f\\xfe\\x18\\f\\f(\\f\\x015\\x04\\v\\x02Z\\xfe\\x80W\\x03\\r\\x04U@\\f(\\f\\f\\x01h\\f\\f\\xfe\\xcc\\xe0\\x04\\x03\\x05\\xbch\\x91\\x05\\x01\\x05r\\x00\\x00\\x00\\x00\\x03\\xff\\xfc\\xff\\xbe\\x02!\\x01\\xc1\\x00\\b\\x00\\x13\\x00#\\x00\\x00%2\\x16\\a\\x06\\a\\x06/\\x017\\x14\\x06+\\x015463\\x1e\\x01\\x05\\x17\\x16\\x06\\a\\x06\\a\\x06&'&676\\x16\\x15\\x02\\x10\\a\\n\\x01\\f=\\v\\v\\x9f\\xde\\t\\a\\xe0\\n\\aY\\x80\\xfe\\xe6\\x9c\\x05\\x01\\x06<K`\\x90\\x03\\x03wZ\\a\\v\\xa0\\v\\aS:\\n\\v\\x9eA\\a\\n\\xe0\\a\\t\\x06\\x80\\x9a\\x9c\\x05\\x0f\\x04+\\x01\\x01\\x89`\\\\\\x8d\\f\\x01\\t\\b\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x14\\x002\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x15\\x11\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06/\\x01&?\\x0162\\x1f\\x017'&63\\x01\\xf0\\a\\t\\t\\a\\xfe0\\r\\x13\\t\\a \\a\\t\\x01\\x90\\a\\t\\x1e\\v `\\n\\x1a\\nI.\\v\\f\\x16\\f\\fD\\n\\x1a\\nII \\v\\f\\x10@\\t\\a \\a\\t\\x13\\r\\x01P\\a\\t\\t\\a\\xfe\\xd0\\x01 \\t\\av\\x10\\f\\v `\\t\\tJ.\\f\\f\\x16\\f\\vE\\t\\tJJ \\v\\x1e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\v\\x00\\x13\\x00\\x1d\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\\"&463\\x06\\x14\\x16264&\\\"\\x13264&+\\x01\\x16\\x14\\a\\x01\\x80PppP\\xc0PppP\\x80KjKKj\\xf55KK5111\\x01\\x80p\\xa0pp\\xa0p\\x8bjKKjK\\xff\\x00KjK7\\x927\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\v\\x00\\x13\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\\"&463\\x12264&\\\"\\x06\\x14\\x01\\x80PppP\\xc0PppP\\x8bjKKjK\\x01\\x80p\\xa0pp\\xa0p\\xfe\\xc0KjKKj\\x00\\x05\\xff\\xff\\xff\\xff\\x02\\x81\\x01\\x80\\x008\\x00<\\x00K\\x00Q\\x00g\\x00\\x00\\x012\\x16\\a\\x0e\\x01'.\\x01547'\\a\\x06+\\x01\\x0e\\x01#\\\"&54632\\x177#\\\"&54>\\x01;\\x012\\x16\\x1d\\x013'#\\\"&=\\x0146;\\x012\\x1f\\x016\\x05\\a3&\\a267#\\\"&?\\x01&#\\\"\\x06\\x14\\x16?\\x01#\\a\\x16\\x1f\\x01\\x16654&#\\\"\\a\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01\\x06\\x17\\x1e\\x01\\x02\\x015K\\x01\\x01K54K)\\x0fV\\a\\r4\\vE,5KL4\\x17\\x14\\x1e1\\n\\x0e\\a\\v\\aW\\a\\tr\\x0f3\\a\\t\\t\\a@\\r\\aN\\x16\\xfe\\xd3\\x18+\\x04J\\x18(\\tQ\\x0e\\x0e\\b-\\b\\t!//\\xc4J\\x80\\x18$\\x06\\xfd\\\"2/!\\n\\n-\\x03\\x03\\x06\\r\\x06\\r\\x03-\\x14\\x01\\x01,\\x01\\x00M55J\\x01\\x01K48&\\x18\\x8b\\v*6K64K\\b0\\x0e\\n\\x06\\v\\a\\t\\a\\x10\\x18\\t\\a\\x10\\a\\t\\v}\\bJ&\\x16v\\x1a\\x16\\x19\\fI\\x02/B/`x( 0`\\x020\\\"!/\\x02H\\x06\\r\\x03\\t\\x03\\x03\\x06G\\x18\\x1f\\x1f,\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x004\\x00<\\x00L\\x00T\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x00264&\\\"\\x06\\x147!26=\\x014&#!\\\"\\x06\\x1d\\x01\\x14\\x16\\x04264&\\\"\\x06\\x14\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\x0e\\f\\x06\\x13\\r \\r\\x13\\xc0\\x13\\r \\r\\x13\\r\\x13\\b\\n\\x0e\\x0e\\n\\b\\x82\\xbc\\x82\\xfe\\x83\\x1a\\x13\\x13\\x1a\\x130\\x01\\x00\\r\\x13\\x13\\r\\xff\\x00\\r\\x13\\x13\\x01\\x10\\x1a\\x13\\x13\\x1a\\x13\\x01@\\x0e\\nP\\n\\x0e\\xa6\\v\\x0f \\r\\x13\\x13\\r  \\r\\x13\\x13\\r \\x13\\r\\xa0\\x0e\\nP\\n\\x0e0\\\"..\\\"0\\xfe\\xf0\\x13\\x1a\\x13\\x13\\x1a]\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13p\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00'\\x00?\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x06&546\\x17\\x16?\\x016'.\\x01\\x06\\x15\\x14\\x16676/\\x01&\\x17\\x06&546\\x17\\x16?\\x016'.\\x01\\x06\\x15\\x14\\x16676/\\x01&\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xaa\\x1f=@\\x1e\\x06\\x04\\x11\\x02\\x03\\x19RA?S\\x1a\\x04\\x03\\x14\\x04\\xb9\\x1e>@\\x1f\\x05\\x04\\x12\\x01\\x03\\x19RA@R\\x1b\\x03\\x03\\x13\\x04\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xe0\\x1b\\x17%\\\"\\x15\\x18\\x04\\x06\\x1e\\x03\\x03\\x19\\x034./6\\x05\\x1c\\x04\\x04\\x1b\\x06\\x05\\x1b\\x17%\\\"\\x15\\x18\\x04\\x06\\x1e\\x03\\x03\\x19\\x034./6\\x05\\x1c\\x04\\x04\\x1b\\x06\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x1c\\x009\\x00\\x00\\x134&+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x132\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x013265\\x11463\\xf8!\\x17p\\t\\a0\\a\\t\\x0e\\n\\xa88P\\t\\a0\\a\\t\\xb8\\a\\tP8\\xa8\\n\\x0e\\t\\a0\\a\\tp\\x17!\\t\\a\\x01\\x18\\x17!\\xfe\\xa0\\a\\t\\t\\a\\x01\\x98\\n\\x0eP8\\xa8\\a\\t\\t\\a\\x010\\t\\a\\xfe\\xd88P\\x0e\\n\\x01\\x18\\a\\t\\t\\a\\xe0!\\x17\\x01(\\a\\t\\x00\\x00\\x02\\x00\\x00\\xff\\xbe\\x02B\\x01\\xc0\\x003\\x00W\\x00\\x00%!\\x17!2\\x16\\x0f\\x01\\x16\\x15\\x14\\x06#\\\"&'&7#\\x16\\x15\\x14\\x06'.\\x01'4>\\x017\\x03#\\\"&=\\x0146;\\x012\\x1e\\x01\\x1f\\x01!2\\x16\\x0f\\x01\\x06'#54&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326=\\x014&\\x01\\xf9\\xfe\\xdb\\x06\\x01\\r\\v\\x0e\\x02\\x06 !\\x18\\x16 \\x01\\x01\\x12\\xd2\\x11#\\x18\\x15\\x1f\\x01\\x06\\r\\tFF\\n\\x0e\\x0e\\ng\\x05\\n\\a\\x01\\t\\x01\\x89\\f\\x0e\\x03/\\x04t0\\t\\a\\x10\\a\\t0\\a\\t\\t\\a0\\t\\a\\x10\\a\\t0\\a\\t\\t\\x80 \\x12\\v\\x19\\x0f#\\x17! \\x16\\x19\\x11\\x10\\x18\\x18!\\x01\\x01\\x1f\\x15\\v\\x14\\x0f\\x06\\x01W\\x0e\\n\\x10\\n\\x0e\\x05\\t\\x05-\\x12\\v\\xd0\\x13\\x98(\\a\\t\\t\\a(\\t\\a\\x10\\a\\t(\\a\\t\\t\\a(\\t\\a\\x10\\a\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xbe\\x02B\\x01\\xc0\\x003\\x00F\\x00\\x00%!\\x17!2\\x16\\x0f\\x01\\x16\\x15\\x14\\x06#\\\"&'&7#\\x16\\x15\\x14\\x06'.\\x01'4>\\x017\\x03#\\\"&=\\x0146;\\x012\\x1e\\x01\\x1f\\x01!2\\x16\\x0f\\x01\\x06'#54+\\x01\\\"\\x1d\\x01#\\\"\\x06\\x1f\\x01\\x16?\\x016&\\x01\\xf9\\xfe\\xdb\\x06\\x01\\r\\v\\x0e\\x02\\x06 !\\x18\\x16 \\x01\\x01\\x12\\xd2\\x11#\\x18\\x15\\x1f\\x01\\x06\\r\\tFF\\n\\x0e\\x0e\\ng\\x05\\n\\a\\x01\\t\\x01\\x89\\f\\x0e\\x03/\\x04y+\\f\\x18\\f+\\b\\x06\\x05D\\b\\bD\\x05\\x06\\x80 \\x12\\v\\x19\\x0f#\\x17! \\x16\\x19\\x11\\x10\\x18\\x18!\\x01\\x01\\x1f\\x15\\v\\x14\\x0f\\x06\\x01W\\x0e\\n\\x10\\n\\x0e\\x05\\t\\x05-\\x12\\v\\xd0\\x13\\x80<\\f\\f<\\x0f\\x05D\\b\\bD\\x05\\x0f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00<\\x00D\\x00\\x00%\\x1e\\x0132\\x16\\x1d\\x01\\x14\\x06#\\\"'\\x0e\\x01+\\x01\\\".\\x01'\\x06#\\\"&=\\x01463267'&6?\\x01546;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x17\\x1e\\x01\\a%\\x15762\\x1f\\x015\\x01\\xf1\\x0e=,\\n\\x0e\\x0e\\nX7\\v0\\x1e\\x80\\x14#\\x1b\\a7X\\n\\x0e\\x0e\\n,>\\rF\\f\\b\\x11*\\x13\\r@\\x0e\\n\\x90\\n\\x0e@\\r\\x13*\\x11\\b\\f\\xfe\\x89v\\x05\\n\\x05vK\\\")\\x0e\\n\\x10\\n\\x0e;\\x1a!\\x0f\\x1b\\x11;\\x0e\\n\\x10\\n\\x0e)\\\"F\\r#\\x05\\x0e\\x8c\\r\\x13(\\n\\x0e\\x0e\\n(\\x13\\r\\x8c\\x0e\\x05#\\r\\xafX&\\x02\\x02&X\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc2\\x002\\x006\\x00:\\x00V\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467'&6;\\x01&5&54767>\\x01\\x1f\\x01\\x16?\\x016\\x16\\x17\\x16\\x17\\x16\\x15\\x14\\a\\x14\\a32\\x16\\x0f\\x017/\\x01\\x177\\x0f\\x017475\\x06#\\\"'\\x1503\\x16\\x15\\x16\\x17\\x1e\\x0126762\\x17\\x1e\\x01676\\x01\\x80\\x1d#\\x1a\\x13\\xfe\\x9a\\x13\\x1a%\\x1e\\x19\\x04\\n\\b:\\x12@F\\x0e\\x1b\\a\\x16\\n\\x1c\\x0e\\x0e\\x1c\\n\\x16\\a\\x1b\\x0eF@\\x12;\\b\\n\\x03\\xe8 \\x182\\x8a*2\\x18J\\x06,42.\\x01\\x05\\t\\b\\x04\\x0e\\x14\\x14\\x06\\x02\\x0e\\x02\\a\\x1d\\x16\\x06\\b\\x8c\\x12=#-\\x13\\x1a\\x1a\\x13-$>\\x12<\\b\\x0e\\x1f!\\r\\x13\\x14\\r1\\\"\\t\\x05\\x05\\x0e\\a\\a\\x0e\\x05\\x05\\t\\\"1\\r\\x14\\x13\\r!\\x1f\\x0e\\b\\xeax( \\xc0\\xc0 (\\xb2\\x03\\x03\\v\\x06\\x06\\v\\x03\\x03\\x19\\b\\x03\\x06\\x11\\x11\\x06\\x06\\x15\\x0f\\x05\\x06\\a\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xff\\x02\\x81\\x01\\x80\\x00H\\x00W\\x00m\\x00\\x00\\x012\\x16\\x15\\x16\\x06'\\\"&547'\\x0e\\x02\\x17\\x16\\x06+\\x01\\x0e\\x01#\\\"&7>\\x0176\\x177&+\\x01\\\"&546;\\x012\\x173'#\\\"&=\\x0146;\\x012\\x1f\\x0176;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x176\\x05267#\\\"&?\\x01&#\\\"\\x06\\x14\\x16%6&#\\\"\\a\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01\\x06\\x15\\x14\\x167>\\x01\\x02\\x014K\\x01L64K-\\r\\x13\\x1a\\f\\x01\\x01\\x0f\\nT\\vE,6K\\x01\\x01H2\\x16\\x13\\f\\x10 8\\n\\x0e\\x0e\\n8E\\x1f\\x9a\\x14B\\a\\t\\t\\aP\\x0e\\a\\x16&\\a\\v-\\n\\x0e\\x0e\\nR \\x15\\xfe\\x95\\x18(\\tQ\\x0e\\x0e\\a)\\x05\\a!//\\x01\\xf1\\x020\\\"\\b\\b1\\x03\\x03\\x06\\r\\x06\\r\\x032\\x162\\\"\\x1f+\\x01\\x00K46L\\x01K4;'\\x15\\x0f)-\\x18\\n\\x0f*6M63H\\x02\\x01\\x06\\x14\\x19\\x0e\\n\\n\\x0e( \\t\\a\\x10\\a\\t\\f&*\\b\\x0e\\n \\n\\x0e7\\a\\xd0\\x1b\\x15\\x18\\fK\\x01/B/L\\\"2\\x02Q\\x05\\r\\x04\\b\\x03\\x03\\x06R\\x17 \\\"0\\x02\\x02+\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1c\\x00$\\x00@\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x16\\x17\\x15\\x0e\\x02\\x15\\x14\\x162654&'56&\\\"&462\\x16\\x14\\a\\\"&=\\x0146;\\x01\\x162732\\x16\\x1d\\x01\\x14\\x06#\\x15\\x14\\x06+\\x01\\\"&5\\x01pAO\\x96ԖOA\\b\\b!3\\x1cz\\xacz=3\\bM6%%6%\\x80\\r\\x13\\x1c\\x14\\f\\x11&\\x11\\f\\x14\\x1c\\x13\\r\\x13\\r@\\r\\x13v\\f.\\x1c(88(\\x1c.\\f\\t\\x04\\x17\\x05\\x0f\\x13\\v\\x17!!\\x17\\x10\\x1b\\a\\x17\\x04\\xd3%6%%6\\xe5\\x13\\r`\\x14\\x1c\\b\\b\\x1c\\x14`\\r\\x13`\\r\\x13\\x13\\r\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xe0\\x02\\x02\\x01\\xa1\\x00\\r\\x00)\\x00\\x00%\\x173\\a\\x06\\\"/\\x0137\\x17\\x1627\\x13\\x1e\\x01\\a#'&\\\"\\x0f\\x01'&\\\"\\x0f\\x01#&6?\\x0162\\x1f\\x01762\\x17\\x01@\\x16m\\xb6\\x06\\x0f\\x05\\xb6^\\x1e9\\x04\\x14\\x04\\xcc$\\x04!w\\x1c\\x04\\x14\\x041:\\x05\\x15\\x04$f!\\x04$\\x03&n'\\x1c\\x1c'n&\\xcc,\\xba\\x06\\x06\\xbaH\\u007f\\t\\t\\x01\\r%i(7\\t\\tb\\x82\\t\\nV(i%\\x02((\\x1c\\x1d''\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01 \\x01\\xa0\\x00!\\x00)\\x00\\x00\\x01\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x015462\\x16\\x06\\x14\\x16264&\\\"\\x01 ?1$\\f\\f$\\f(\\f$\\f\\f$1?TxT\\xe0/B//B\\x01\\x103N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3<TT\\x1bB//B/\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x80\\x01\\x80\\x00\\x18\\x00 \\x00\\x00\\x012\\x1d\\x01\\x14\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'&63\\x02264&\\\"\\x06\\x14\\x01t\\f\\x0f\\x05\\x11Q\\x16TxTT<*#P\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\x80\\fO\\b\\x06\\x05\\x11P#*<TTxT\\x16Q\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01 \\x01\\xc0\\x00;\\x00C\\x00\\x00%\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x01547&'&'&6;\\x012\\x17\\x16\\x17\\x1627676;\\x012\\x16\\a\\x06\\a\\x06\\a\\x16\\x06\\x14\\x16264&\\\"\\x01 ?1$\\f\\f$\\f(\\f$\\f\\f$1?3\\x04\\x03&\\x05\\x01\\a\\x06(\\n\\x02\\x04\\x11\\x17F\\x17\\x11\\x04\\x02\\n(\\x06\\a\\x01\\x05&\\x04\\x033\\xe0/B//B\\xf03N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3C+\\x03\\x03 /\\x05\\b\\n\\x13\\x0f\\x14\\x14\\x0f\\x13\\n\\b\\x05/ \\x04\\x02+\\\"B//B/\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x001\\x009\\x00\\x00\\x012\\x1d\\x01\\x14\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x0154632\\x177'&63\\x02264&\\\"\\x06\\x14\\x01t\\f\\x0f\\x05\\x11Q\\x16?1$\\f\\f$\\f(\\f$\\f\\f$1?T<*#P\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\xc0\\fO\\b\\x06\\x05\\x11P#*3N\\v\\x1c\\f(\\f\\x1c\\f\\f\\x1c\\f(\\f\\x1c\\vN3<T\\x16Q\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xe0\\x01\\xc0\\x00P\\x00X\\x00\\x00\\x012\\x1d\\x01\\x14\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x02547'\\a\\x06/\\x01&?\\x01'\\a\\x06&=\\x014;\\x012\\x16\\x0f\\x01\\x1776\\x1f\\x01\\x16\\x0f\\x01\\x1762\\x177'&63\\x02264&\\\"\\x06\\x14\\x01\\xd4\\f\\x0f\\x05\\x11Q\\x16?1$\\f\\f$\\f(\\f$\\f\\f$ 3\\x1d\\x16\\x10\\x14\\t\\b\\x1c\\t\\t\\x13\\x13\\x11\\x05\\x0f\\fO\\b\\x06\\x06\\x11\\x14\\x13\\t\\b\\x1d\\b\\b\\x14\\x10#T#P\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\xc0\\fO\\b\\x06\\x05\\x11P#*3N\\v\\x1c\\f(\\f\\x1c\\f\\f\\x1c\\f(\\f\\x1c\\a(;\\\"*#\\x10\\x14\\b\\b\\x1d\\b\\t\\x13\\x13\\x11\\x05\\x06\\bO\\f\\x0f\\x05\\x11\\x13\\x14\\b\\b\\x1d\\b\\t\\x14\\x10\\x16\\x16Q\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00!\\x00)\\x00W\\x00\\x00\\x01\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x015462\\x16\\x06\\x14\\x16264&\\\"\\x05\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015&'67\\x163264&#\\\"\\a&'632\\x16\\x15\\x14\\x06\\x01 ?1$\\f\\f$\\f(\\f$\\f\\f$1?TxT\\xe0/B//B\\x01!$\\f\\f$\\f(\\f$\\f\\f$\\x1f\\x1a\\x15\\v\\x17\\\"!//!\\\"\\x17\\v\\x15'2<T?\\x01\\x103N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3<TT\\x1bB//B/\\xdc4\\f(\\f$\\f\\f$\\f(\\f4\\a\\x14\\x1a\\x1f\\x18/B/\\x18 \\x19\\x1fT<3N\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00!\\x00N\\x00\\x00\\x012\\x1d\\x01\\x14\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'&63\\x02264&\\\"\\x06\\x14%2\\x16\\x1d\\x01\\x14\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06#\\\".\\x01'67\\x14\\x15\\x14\\x162654.\\x01#0\\\"167\\x16\\x177'&63\\x01T\\f\\a\\n\\x03\\x111\\x16TxTT<*#0\\x11\\x05\\x06\\b\\x96B//B/\\x01\\xb4\\x05\\a\\a\\n\\x03\\x111\\x16T<%?'\\x04!\\x1e/B/\\x15%\\x16\\x03\\x0f\\x03!\\x1d0\\x11\\x05\\x06\\b\\x01\\xc0\\fO\\x05\\a\\x03\\x110#*<TTxT\\x161\\x11\\x05\\x0f\\xfe\\xe0/B//BQ\\a\\x05O\\x05\\a\\x03\\x110#*<T\\\";$\\x03\\x0f\\x01\\x02!//!\\x16%\\x15\\x1e!\\x03\\x121\\x11\\x05\\x0f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00&\\x00H\\x00P\\x00\\x00\\x012\\x1d\\x01\\x14\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06#\\\"'67\\x163264&#\\\"\\a&'632\\x177'&63\\x042\\x16\\x15\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x0154\\x16264&\\\"\\x06\\x14\\x024\\f\\a\\n\\x03\\x111\\x16T<2'\\x15\\v\\x17\\\"!//!\\\"\\x17\\v\\x15'2*#0\\x11\\x05\\x06\\b\\xfeoxT?1$\\f\\f$\\f(\\f$\\f\\f$1?oB//B/\\x01\\xc0\\fO\\x05\\a\\x03\\x110#*<T\\x1f\\x19 \\x18/B/\\x18\\x1f\\x1a\\x1f\\x161\\x11\\x05\\x0f@T<3N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3<\\x8c/B//B\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x81\\x01\\x80\\x00+\\x003\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\\"&54>\\x0132\\x177'&?\\x016\\x1f\\x017'&63\\x02264&\\\"\\x06\\x14\\x01t\\x05\\a\\x0f\\x05\\x11\\x12\\x0e\\t\\t\\x1c\\t\\b\\x0e\\x12\\x16TxT'B'*#\\x12\\x0f\\b\\b\\x1d\\b\\t\\x0e\\x11\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\x80\\a\\x05O\\b\\x06\\x06\\x11\\x12\\x0e\\t\\b\\x1c\\t\\t\\x0e\\x12#*<TT<'B'\\x16\\x12\\x0e\\b\\t\\x1c\\t\\t\\x0e\\x12\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01!\\x01\\xc4\\x00,\\x004\\x00\\x007\\x16\\x14\\x06\\\"&47675#\\\"&=\\x0146;\\x015#\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x16\\x0664&\\\"\\x06\\x14\\x16\\xf6*TxT*\\x1e(\\x14\\x05\\a\\a\\x05\\x14\\x18\\b\\x06\\x068\\b\\b8\\x06\\x06\\b\\x18\\x14\\x05\\a\\a\\x05\\x14('//B//\\xd6*xTTx*\\x1d\\t\\x1a\\a\\x05(\\x05\\a\\x18\\x0f\\x068\\b\\b8\\x06\\x0e\\x19\\a\\x05(\\x05\\a\\x1a\\t\\xd3/B//B/\\x00\\x00\\x02\\x00\\x00\\x000\\x01\\xe5\\x01P\\x00(\\x000\\x00\\x00%\\x16\\x0f\\x01\\x06&=\\x01#\\x15\\x14+\\x01\\\"=\\x01#\\x06\\a\\x06\\\"&462\\x17\\x16\\x17354;\\x012\\x1d\\x013546\\x17\\x0664&\\\"\\x06\\x14\\x16\\x01\\xdc\\t\\t8\\x05\\x0f\\x18\\f(\\f\\x1c\\t\\x1d*xTTx*\\x1d\\t\\x1c\\f(\\f\\x18\\x0f\\x05\\xf3//B//\\xc8\\b\\b8\\x06\\x06\\b\\x18\\x14\\f\\f\\x14(\\x1e*TxT*\\x1e(\\x14\\f\\f\\x14\\x18\\b\\x06\\x06\\x90/B//B/\\x00\\x02\\x00\\x00\\xff\\xe0\\x01 \\x01\\xa0\\x00\\x11\\x00\\x19\\x00\\x00\\x01\\x14\\x06\\a\\x15\\x14+\\x01\\\"=\\x01.\\x015462\\x16\\x06264&\\\"\\x06\\x14\\x01 ?1\\f(\\f1?TxT\\xb1B//B/\\x01\\x103N\\v\\x98\\f\\f\\x98\\vN3<TT\\x8c/B//B\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x000\\x01 \\x01P\\x00\\a\\x00\\x0f\\x00\\x00\\x12\\\"\\x06\\x14\\x16264&2\\x16\\x14\\x06\\\"&4\\xb1B//B/\\x8cxTTxT\\x01\\x10/B//BoTxTTx\\x00\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00/\\x007\\x00?\\x00O\\x00W\\x00_\\x00\\x00\\x01!\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x17!\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x17!\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x01\\xe0\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x133\\x14\\x0e\\x0e\\x14\\x0eN\\x14\\x0e\\x0e\\x14\\x0eX\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x133\\x14\\x0e\\x0e\\x14\\x0eN\\x14\\x0e\\x0e\\x14\\x0eX\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x133\\x14\\x0e\\x0e\\x14\\x0eN\\x14\\x0e\\x0e\\x14\\x0e\\x01 \\x13\\r@\\r\\x13\\x13\\r@\\r\\x13X\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\xea\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13X\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\xea\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13X\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00#\\x00+\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x04\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x02p\\a\\t\\t\\a@\\t\\a \\a\\t@\\a\\t\\t\\a@\\t\\a \\a\\t\\xfe\\xe5jKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xf0\\t\\a \\a\\t@\\a\\t\\t\\a@\\t\\a \\a\\t@\\a\\t\\t\\a@0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x87\\x01\\xc0\\x00\\x1b\\x00#\\x007\\x00\\x00%\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\a\\x04\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x02N-\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f\\xfe\\x9ajKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xd0.\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v>KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\a\\x00+\\x00\\x006\\\"&462\\x16\\x14%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x0135463\\xd1B//B/\\x01\\x10.B\\t\\a \\a\\t\\xfe\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\xe0\\t\\a\\xc0/B//BQB.\\xc0\\a\\t\\t\\a00\\a\\t\\t\\a\\x01`\\a\\t\\t\\aА\\a\\t\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00'\\x00/\\x00\\x00\\x01\\x11\\x14\\x06#\\x17\\x16\\x06#!\\\"&?\\x01\\\"&5\\x1146;\\x012\\x16\\a54&#!\\\"\\x06\\x1d\\x01\\x14\\x163!26\\x06\\\"\\x06\\x14\\x16264\\x01\\xc0N4?\\x04\\x03\\x06\\xfe\\xd0\\x06\\x03\\x04?4NO1\\xc02N0\\x0e\\n\\xfe\\xd0\\n\\x0e\\x0e\\n\\x010\\n\\x0e\\x99.!!.!\\x01`\\xff\\x00'92\\x03\\v\\v\\x0329'\\x01\\x00'99\\xafp\\n\\x0e\\x0e\\np\\n\\x0e\\x0e6!.!!.\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00'\\x007\\x00?\\x00G\\x00\\x00\\x01\\x11\\x14\\x06#\\x17\\x16\\x06#!\\\"&?\\x01\\\"&5\\x1146;\\x012\\x16\\a54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x06\\\"\\x06\\x14\\x16264$\\\"\\x06\\x14\\x16264\\x01\\xc0N4?\\x04\\x03\\x06\\xfe\\xd0\\x06\\x03\\x04?4NO1\\xc02N\\xf8\\x0e\\nh\\n\\x0e\\x0e\\nh\\n\\x0e\\xc8\\x0e\\nh\\n\\x0e\\x0e\\nh\\n\\x0e\\x1c(\\x1c\\x1c(\\x1c\\xfe\\xe4(\\x1c\\x1c(\\x1c\\x01`\\xff\\x00'92\\x03\\v\\v\\x0329'\\x01\\x00'99\\xafp\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e.\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x05\\x15!5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01\\xd0\\xfe`\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x05\\x15!5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01p\\xfe\\xc0\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x05\\x15#5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01\\x10\\xe0\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x17\\x15#5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\xb0\\x80\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x02\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbe\\x01D\\x01\\xc4\\x00\\x15\\x00\\x00%#\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01\\a\\x06&5\\x1146\\x17\\x01\\x16\\x06\\x01.j8\\x03\\x06\\a1\\a\\r\\x035W\\b\\x16\\x17\\a\\x01\\x1d\\b\\tw\\x88\\a\\x0e\\x03\\x16\\x02\\x05\\a\\x81Y\\t\\n\\f\\x01\\xae\\f\\t\\b\\xfe\\xdb\\b\\x17\\x00\\x01\\x00\\x00\\xff\\xbf\\x01\\x00\\x01\\xc1\\x00H\\x00\\x00\\x01\\x14\\x06#\\\"\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x1472\\x16\\x1d\\x01\\x14\\x06#\\\".\\x01'\\x0e\\x02#\\\"&=\\x014632=\\x01#\\\"=\\x014;\\x0154\\a\\\".\\x01=\\x014>\\x0232\\x1e\\x01\\x17>\\x0232\\x16\\x15\\x01\\x00\\a\\x05T$\\f\\f$T\\x05\\a\\a\\x05\\x17\\x1e-\\x12\\x12.\\x1e\\x16\\x05\\a\\a\\x05T$\\f\\f$T\\x03\\x06\\x03\\x02\\x03\\x04\\x03\\x17\\x1e-\\x12\\x12.\\x1e\\x16\\x05\\a\\x01\\x8c\\x05\\a0p\\f(\\fp1\\x01\\a\\x05(\\x05\\a\\x03\\x12\\x11\\x12\\x12\\x02\\a\\x05(\\x05\\a0p\\f(\\fp1\\x01\\x03\\x06\\x03(\\x02\\x05\\x03\\x02\\x03\\x12\\x11\\x12\\x12\\x02\\a\\x05\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00,\\x008\\x00G\\x00\\x00\\x01\\x1132\\x1d\\x01\\x14+\\x01\\\"=\\x01!\\x15\\x14+\\x01\\\"=\\x014;\\x01\\x11#\\\"=\\x014;\\x012\\x1d\\x01!54;\\x012\\x1d\\x01\\x14+\\x01\\x05\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x0554+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14;\\x012\\x01\\xe0\\x14\\f\\f(\\f\\xfe\\x80\\f(\\f\\f\\x14\\x14\\f\\f(\\f\\x01\\x80\\f(\\f\\f\\x14\\xfe\\x80\\f\\xa8\\f\\f\\xa8\\f\\x01@\\fT\\x0e\\nH\\f\\xa8\\f\\x01@\\xfe\\xe0\\f(\\f\\f\\x14\\x14\\f\\f(\\f\\x01@\\f(\\f\\f\\x14\\x14\\f\\f(\\f\\xb4\\f\\f\\x88\\f\\f\\xe8\\x88\\fH\\n\\x0e4\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00+\\x00]\\x00\\x007\\x15\\x14+\\x01\\\"=\\x014;\\x015#\\\"=\\x014;\\x012\\x1d\\x01!54;\\x012\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x017\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01!\\x15\\x14+\\x01\\\"=\\x014;\\x0153\\x15\\x14\\x16;\\x0126=\\x014&+\\x015354;\\x012\\x1d\\x01\\x14+\\x01@\\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06\\x01 \\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06\\xc0\\x1a\\x06\\x064\\x06\\xfe\\xe0\\x064\\x06\\x06\\x1a\\x88\\x0e\\n@\\n\\x0e\\x0e\\n\\bh\\x064\\x06\\x06\\x1a\\x80\\x1a\\x06\\x064\\x06\\xc0\\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06\\xc0\\x064\\x06\\x06\\x1a@\\xa0\\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06H\\b\\n\\x0e\\x0e\\n@\\n\\x0eH\\x1a\\x06\\x064\\x06\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x1a\\x00\\x00%\\\"\\x06\\x1d\\x01!\\\"&5\\x11463!2\\x16\\x15\\x11\\x0f\\x01\\x06+\\x0153\\x15\\x14\\x018\\n\\x0e\\xfe\\xf8\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\ab\\a\\n\\x06\\x80\\x80\\x0e\\n\\x88\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n\\xfe\\xf87b\\a\\x80\\x06\\n\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00!\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x113\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xd0\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x140/\\x01\\xc0\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe`0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xd0!/\\x00\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x15\\x00\\x18\\x004\\x007\\x00c\\x00\\x00%\\x14\\x06\\\"&5054676762\\x17\\x16\\x17\\x1e\\x01\\x15\\x14'\\a3\\x05\\x14\\x0e\\x01#\\\"&505467>\\x04762\\x17\\x16\\x17\\x1e\\x01\\x15\\x14'3'\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x11&'#\\\"&=\\x0146;\\x0162\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\x06\\a\\x11\\x01\\x00KjK\\n\\x1e\\x1a\\x13\\r<\\r\\x14\\x1a\\x1d\\n\\x80H\\x90\\x01\\xb8\\\";#5K\\n\\x1e\\x05\\x05\\v\\b\\v\\x05\\r<\\r\\x14\\x1a\\x1d\\nȐH\\x10\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0&\\b\\x82\\a\\t\\t\\a\\x90\\x19N\\x19\\x90\\a\\t\\t\\a\\x82\\b&p!//!\\x01\\b\\x17<4&\\x1a\\x1a(59\\x16\\t\\x01\\xa0\\x90\\x10\\x16%\\x15/!\\x01\\b\\x17<\\n\\n\\x15\\x10\\x16\\v\\x1a\\x1a(59\\x16\\t\\x01\\x10\\x90\\xfe\\xf0\\t\\a \\a\\t\\t\\a \\a\\t\\x01'\\x10)\\t\\a \\a\\t  \\t\\a \\a\\t)\\x10\\xfe\\xd9\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x000\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463\\x014&\\\"\\x06\\x15\\x01h\\n\\x0e\\x0e\\nD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01\\x10=V=\\x01\\xc0\\x0e\\n\\x10\\n\\x0eCk\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\xfe@;UU;\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x000\\x006\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463\\x01.\\x01\\\"\\x06\\a\\x1365#\\x14\\x17\\x01h\\n\\x0e\\x0e\\nD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01\\x05\\r2<2\\r\\xba\\v\\xd0\\v\\x01\\xc0\\x0e\\n\\x10\\n\\x0eCk\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\xfe\\x80$,,$\\x01\\x00\\x1e\\\"\\\"\\x1e\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x000\\x00\\x00\\x01\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x0e\\x01265#\\x14\\x01hD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01P\\n\\x0e\\x0e\\xddV=\\xd0\\x01\\x80Ck\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0e\\x90U;;\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x00\\x00\\x01\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x01hD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01P\\n\\x0e\\x0e\\x01\\x80Ck\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0e\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xdf\\x02\\x00\\x01\\xa1\\x00?\\x00\\x00\\x012\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x06\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x014/\\x01&=\\x014632\\x16\\x1d\\x01\\x1754632\\x16\\x1d\\x01354632\\x16\\x1d\\x01354632\\x16\\x1d\\x01346\\x01\\xd1\\r\\x15\\r\\b0\\b\\x06\\v\\a\\xf0\\n\\x0e\\x10p \\x1d\\x14\\x13\\x1c\\b\\x1d\\x14\\x13\\x1c\\b\\x1d\\x14\\x13\\x1c\\b\\x1d\\x14\\x13\\x1c\\b\\x1d\\x01p\\x0e\\x16\\r\\x85\\x14\\x12t\\x12\\x13\\x03\\a\\v\\x06\\x0e\\n\\a\\x15\\x0ed\\x1d+B\\x14\\x1c\\x1d\\x140\\a\\x88\\x14\\x1c\\x1d\\x14\\x1f0\\x14\\x1c\\x1d\\x14/ \\x14\\x1c\\x1d\\x14\\x1f\\x14\\x1c\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x008\\x00\\x00\\x012\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"&/\\x01&>\\x01\\x16\\x1f\\x0154>\\x0132\\x16\\x1d\\x01354>\\x0132\\x1e\\x02\\x1d\\x01354632\\x16\\x1d\\x013546\\x01\\x99\\n\\x13\\n\\x05\\x1b\\x03\\x1b\\x10\\xc6\\n\\x17\\x06}\\n\\x05\\x1b!\\t \\n\\x13\\n\\x11\\x18\\b\\n\\x13\\n\\b\\x10\\v\\x06\\b\\x17\\x10\\x11\\x18\\b\\x18\\x01@\\v\\x12\\v\\x96\\x17\\x15q\\x10\\x15\\f\\b\\xac\\x0e!\\x13\\x05\\r,\\xec\\v\\x12\\v\\x18\\x11\\xaf\\xd8\\v\\x12\\v\\x06\\v\\x10\\bױ\\x10\\x18\\x18\\x11\\xb0W\\x11\\x18\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa4\\x00.\\x00\\x00\\x164635#\\\"&46;\\x015#\\\"&46;\\x015'.\\x027>\\x01\\x1f\\x017>\\x01\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06+\\x01\\\"\\xd8\\x17\\x11 \\x11\\x17\\x17\\x11 \\xd0\\x14\\x1c\\x1c\\x14в\\f\\x10\\x03\\x04\\b$\\x13\\xbe\\x19\\t\\x1d\\rp\\b\\f\\x11\\x0e\\x88\\x04\\x05P\\x11\\t\\\"\\x17\\b\\x17\\\"\\x17\\b\\x1c(\\x1c\\x0eE\\x05\\x14\\x19\\r\\x12\\x10\\aK\\x1f\\f\\x05\\a@\\x05\\x14\\n\\xf0\\x0e\\x16\\x03 \\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00&\\x00\\x00\\x0554/\\x01&+\\x01\\\"&=\\x0146;\\x0126?\\x016&+\\x01\\\"&=\\x01463!2\\x16\\x17\\x13\\x16\\x1d\\x01\\x01\\x80\\vp\\f\\x0e\\x93\\n\\x0e%\\x1b|\\b\\x12\\x03\\x16\\x03\\n\\n\\xe6\\x17!\\x0e\\n\\x01N\\n\\x18\\x06\\xa3\\x0f =\\x0e\\aG\\a\\x0e\\n\\b\\x1b%\\f\\b3\\t\\x10!\\x17\\x10\\n\\x0e\\r\\t\\xfe\\xfd\\x17\\x1ct\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00K\\x00\\x00\\x01\\x03\\x0e\\x01+\\x01\\\"&/\\x01&54632\\x1f\\x014/\\x01&54632\\x16\\x1f\\x01\\x1632545'&54632\\x1e\\x01\\x1f\\x01\\x1632?\\x01>\\x0232\\x17\\x1e\\x01\\x0f\\x01\\x141\\x1432?\\x01>\\x0132\\x16\\x15\\x14\\x01\\xffD\\b<\\\"\\u007f\\x167\\x10l\\r\\x17\\x11\\x10\\v=\\f*\\x02\\x17\\x11\\f\\x17\\x03&\\x01\\x06\\t3\\x01\\x17\\x11\\b\\x11\\f\\x028\\x02\\b\\b\\x02&\\x02\\v\\x11\\t\\x06\\x06\\x0f\\x0f\\x03\\\"\\a\\x06\\x02\\x1d\\x03\\x17\\r\\x11\\x17\\x01/\\xfe\\xe1!/\\x16\\x0ff\\f\\x11\\x11\\x17\\v9)(\\x90\\x05\\x06\\x11\\x17\\x11\\f}\\x06\\b\\x01\\x01\\xc4\\x05\\x05\\x11\\x17\\b\\x0e\\b\\xda\\b\\b\\xb8\\t\\x0e\\t\\x02\\x05\\x1b\\x10\\xa5\\x01\\b\\x06{\\r\\x12\\x17\\x11\\x05\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00-\\x001\\x005\\x009\\x00\\x00%\\x15\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&>\\x01\\x16\\x1f\\x01\\x11462\\x16\\x1d\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x013462\\x16\\x05#\\x1537#\\x1537#\\x153\\x01\\xc0\\x01 \\x03\\x16\\x0e\\xd0\\x14\\f\\x80\\n\\x05\\x1b!\\t \\x17\\\"\\x17\\b\\x17\\\"\\x17\\b\\x17\\\"\\x17\\b\\x17\\\"\\x17\\xff\\x00\\b\\bX\\b\\bX\\b\\b\\xd0`\\x05\\x04\\x88\\x0e\\x11\\x10\\xb0\\x0e!\\x13\\x05\\r,\\x01\\x14\\x11\\x17\\x17\\x11\\xc8(\\x11\\x17\\x17\\x11(\\x18\\x11\\x17\\x17\\x11\\x18\\x11\\x17\\x17a`````\\x00\\x00\\x01\\xff\\xfc\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00-\\x00\\x00$2\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\".\\x01/\\x01&6?\\x01'&>\\x01\\x16\\x1f\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x0134\\x01\\x87\\\"\\x17\\x01 \\x03\\x16\\x0e\\xf0\\x06\\x0e\\f\\x03@\\a\\x05\\f\\x1fK\\a\\x10%$\\bE\\x0e\\x1c(\\x1c\\b\\x17\\\"\\x17\\b\\xe8\\x17\\x11P\\x05\\x04\\x88\\x0e\\x11\\x05\\n\\x05p\\r\\x1d\\t\\x19\\xbe\\x13$\\x0f\\x10\\x12\\xb2\\xd0\\x14\\x1c\\x1c\\x14\\xd0 \\x11\\x17\\x17\\x11 \\x11\\x00\\x02\\x00\\x00\\x00 \\x02\\x81\\x01`\\x00\\x19\\x00G\\x00\\x00\\x012\\x1e\\x01\\a\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0143\\x01\\x16+\\x01\\\"/\\x015#\\x06\\x0f\\x01\\x06+\\x01\\\"/\\x02#\\x16\\x0f\\x01\\x06+\\x01\\\"&7\\x136;\\x012\\x1f\\x0236?\\x016;\\x012\\x17\\x01\\x05\\x03\\x05\\x04\\x01\\a\\x05U\\a\\x056\\x05\\aU\\x05\\a\\f\\x02t\\x01\\r6\\v\\x01\\t\\x01\\v\\a\\x1e\\x03\\t2\\t\\x02\\x1f\\x12\\x01\\x02\\x02\\t\\x01\\v6\\x06\\a\\x01\\x18\\x01\\vA\\t\\x03+\\x10\\x01\\t\\b+\\x03\\tA\\v\\x01\\x01`\\x03\\x06\\x03+\\x05\\a\\xf1\\x05\\a\\a\\x05\\xf1\\a\\x05+\\f\\xfe\\xcd\\r\\v\\x856\\\"\\x14U\\a\\aU6\\x1e\\x18\\x85\\v\\b\\x05\\x01(\\v\\b\\u007f5 \\x15\\u007f\\b\\v\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00*\\x00\\x00%\\x14+\\x01532\\x166\\x14\\x06\\\"&462\\x13&'654+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x013\\x17\\x16;\\x0126\\x01\\x1d\\x1c\\x1e\\x17\\x15\\x0eۑΑ\\x91\\xce\\x04+\\x01&jG\\t\\x0f\\x0f\\t\\x17\\n\\x0e\\x1a,\\a\\x0e\\x18\\x0e\\x0e\\xf1\\x1d8\\f'Α\\x91Α\\xfe\\xa0O\\x02\\x182Y\\x0e\\n\\xe8\\n\\x0e\\x0e\\nHS\\r\\x18\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00#\\x00'\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&5\\x11463\\x01\\x11!\\x11\\x02P\\x14\\x1c\\x1c\\x14\\xf0\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0\\xf0\\x14\\x1c\\x1c\\x14\\x02\\x10\\xfe\\x00\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c \\t\\a \\a\\t\\t\\a \\a\\t \\x1c\\x14\\x01@\\x14\\x1c\\xfe\\xa0\\x01 \\xfe\\xe0\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x00G\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x054+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x01325\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01H\\f<\\f(\\f<\\f\\f<\\f(\\f<\\f\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f\\x8c\\f<\\f\\f<\\f(\\f<\\f\\f<\\f\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x007\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x052=\\x014+\\x01\\\"\\x1d\\x01\\x143\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01<\\f\\f\\xb8\\f\\f\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f\\xc0\\f(\\f\\f(\\f\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x00G\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x0576/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016'\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01\\r0\\t\\t\\x1c\\b\\t00\\t\\b\\x1c\\t\\t00\\t\\t\\x1c\\b\\t00\\t\\b\\x1c\\t\\t\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f\\xa00\\t\\b\\x1c\\t\\t00\\t\\t\\x1c\\b\\t00\\t\\b\\x1c\\t\\t00\\t\\t\\x1c\\b\\t\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x00;\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x05'&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x16?\\x016\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01Y\\x1c\\b\\tj.\\b\\t\\x1c\\t\\tR\\t\\b\\x8f\\t\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f`\\x1c\\t\\bj/\\b\\b\\x1c\\t\\bT\\b\\b\\x8e\\t\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x19\\x00\\x00\\x016\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x1d\\x0176\\x16\\x1d\\x01\\x01\\xdb\\f\\x19\\x0e\\n\\xfe0\\n\\x0e\\x0e\\np\\n\\x0e\\x8b\\f\\x19\\x01\\x1c\\b\\x0e\\x0e\\xfe\\xf0\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n\\xc4X\\b\\x0e\\x0eD\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01 \\x01\\xc0\\x00\\t\\x00\\x11\\x00\\x1d\\x00\\x007\\x1627\\x15\\a\\x06\\\"/\\x01\\x022\\x16\\x14\\x06\\\"&4724#\\\"\\x06\\x15\\x142546p\\x11\\x1e\\x11\\x16\\x04\\f\\x04\\x16\\x1cxTTxT\\x90\\f\\f&6\\x18(\\x83\\x03\\x03\\x9d!\\x05\\x05!\\x01\\xdaTxTTx\\b\\x186&\\f\\f\\x1c(\\x00\\x00\\x00\\x00\\x03\\xff\\xf9\\xff\\xc0\\x02\\a\\x01\\xc0\\x00\\x1a\\x00$\\x009\\x00\\x00\\x01\\x16\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x0132\\x17\\x0353\\x15\\x14\\x06+\\x01\\\"&\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"/\\x01&?\\x016;\\x0153\\x15\\x01\\xfb\\f\\f+\\t\\x0e\\xfe\\u007f\\n\\x0e\\x0e\\n\\xa8\\t\\a \\a\\t\\x99\\x0e\\t\\xf0@\\t\\a \\a\\t\\xe8\\n\\x0e\\x0e\\n\\xfe\\u007f\\x0e\\t+\\f\\f+\\t\\x0e\\x99@\\x01k\\v\\v,\\t\\x0e\\nP\\n\\x0e\\x10\\a\\t\\t\\a\\x10\\t\\xfe9pp\\a\\t\\t\\x01\\x17\\x0e\\nP\\n\\x0e\\t,\\v\\v,\\t  \\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xde\\x02@\\x01\\xa1\\x00\\n\\x00\\x0e\\x00\\x1a\\x00\\x00\\x114>\\x01?\\x01\\x11\\a\\x06&57\\x11\\x17\\x11\\x136\\x1e\\x01\\x15\\x11\\x14\\x0e\\x01\\x0f\\x01\\x11\\x05\\n\\x05\\x8c\\x8a\\b\\x0e\\xc0\\xc0\\xaa\\x06\\t\\a\\x05\\n\\x05\\x8c\\x01J\\x06\\f\\n\\x028\\xfe\\x80?\\x03\\n\\b0\\x01\\x80@\\xfe\\x80\\x01\\xbf\\x02\\x03\\b\\x06\\xfe\\xa6\\x06\\f\\n\\x028\\x01\\x80\\x00\\x01\\x00\\x00\\xff\\xbd\\x02\\x00\\x01\\xc0\\x00\\x15\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\a\\x06&=\\x01#\\\"&5\\x11463\\x01\\xc0\\x1a&&\\x1a\\x90}\\x06\\r`\\x1a&&\\x1a\\x01\\xc0&\\x1a\\xfe\\xe0\\x1a&^\\x04\\a\\aT&\\x1a\\x01 \\x1a&\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x99Α\\x91Α\\xe8\\t\\a0\\a\\t\\t\\a0\\a\\tp\\t\\a0\\a\\t\\t\\a0\\a\\t\\x01\\xb8\\x91Α\\x91η\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0554&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x99Α\\x91Α\\x01X\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\x01\\xb8\\x91Α\\x91η\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x11\\x00\\x19\\x00!\\x00)\\x00\\x00\\x013\\x11\\x14\\x06#!\\\"&5\\x1135462\\x16\\x15#\\x15354&\\\"\\x06\\x16264&\\\"\\x06\\x14\\x06264&\\\"\\x06\\x14\\x01``/!\\xfe\\xe0!/`KjK\\xc0\\x80&4&\\x96\\x14\\x0e\\x0e\\x14\\x0e\\xb2\\x14\\x0e\\x0e\\x14\\x0e\\x01 \\xfe\\xf0!//!\\x01\\x10 5KK5  \\x1a&&\\x92\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa2\\x00*\\x006\\x00B\\x00N\\x00\\x00%\\x15\\x14\\x06+\\x01\\a\\x0e\\x02#!\\\"&/\\x01#\\\"&=\\x0146;\\x017>\\x01\\x1e\\x01\\x0f\\x013'&>\\x01\\x16\\x1f\\x0132\\x16\\x0554&\\\"\\x06\\x1d\\x01\\x14\\x1626754&\\\"\\x06\\x1d\\x01\\x14\\x1626'54&\\\"\\x06\\x1d\\x01\\x14\\x1626\\x02@\\x0e\\n\\b\\x1a\\x02\\r\\x15\\f\\xfe\\x94\\x12\\x1b\\x03\\x1a\\b\\n\\x0e\\x0e\\nCk\\b\\x1a\\x16\\x04\\bP\\xecP\\b\\x04\\x16\\x1a\\bkC\\n\\x0e\\xfe\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\x0ep\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\xe0\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\xe8\\x10\\n\\x0e\\xb7\\v\\x13\\v\\x17\\x12\\xb7\\x0e\\n\\x10\\n\\x0e\\x93\\v\\x04\\x10\\x1a\\vmm\\v\\x1a\\x10\\x04\\v\\x93\\x0e\\xbap\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00C\\x00G\\x00\\x00\\x01\\x06+\\x01\\a32\\x16\\x0f\\x01\\x06+\\x01\\a\\x06+\\x01\\\"&?\\x01#\\a\\x06+\\x01\\\"&?\\x01#\\\"&?\\x016;\\x017#\\\"&?\\x016;\\x0176;\\x012\\x16\\x0f\\x01376;\\x012\\x16\\x0f\\x0132\\x16\\x0f\\x017#\\a\\x01\\xb9\\x02\\nO\\x17K\\x05\\b\\x01\\b\\x01\\nP\\x0f\\x02\\n(\\x06\\a\\x01\\x0eb\\x10\\x01\\n)\\x06\\a\\x01\\x0fK\\x06\\a\\x01\\a\\x02\\nO\\x17K\\x05\\b\\x01\\b\\x01\\nP\\x0f\\x02\\n(\\x06\\a\\x01\\x0eb\\x10\\x01\\n)\\x06\\a\\x01\\x0fK\\x06\\a\\x01\\xba\\x17c\\x17\\x01\\n\\n\\x80\\t\\x05(\\nV\\n\\t\\x05RV\\n\\t\\x05R\\t\\x05(\\n\\x80\\t\\x05(\\nV\\n\\t\\x05RV\\n\\t\\x05R\\t\\x05\\xb2\\x80\\x80\\x00\\x00\\x05\\xff\\xfc\\xff\\xc0\\x01\\xc4\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00-\\x00\\x006\\\"&462\\x16\\x14&\\\"\\x06\\x14\\x16264\\x162\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x1332\\x16\\a\\x01\\x06+\\x01\\\"&7\\x016\\x9e\\\\BB\\\\B\\\\(\\x1c\\x1c(\\x1c\\x82\\\\BB\\\\B\\\\(\\x1c\\x1c(\\x1ch \\x0e\\x0e\\b\\xfe\\x91\\a\\f\\\"\\x0e\\x0e\\t\\x01p\\a\\xe0B\\\\BB\\\\^\\x1c(\\x1c\\x1c(\\xc4B\\\\BB\\\\^\\x1c(\\x1c\\x1c(\\x01\\xa4\\x1a\\f\\xfe0\\n\\x1a\\f\\x01\\xd0\\n\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00G\\x00\\x00\\x00\\\"\\x06\\x14\\x16264$2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&46\\\"\\x06\\x14\\x16264\\x17>\\x01.\\x01\\a\\x06\\\"'&\\x0e\\x01\\x16\\x17\\x16\\x17\\x14\\x0e\\x01\\a\\x06\\x1e\\x0167673\\x16\\x17\\x1e\\x01>\\x01'.\\x0256\\x01V\\xaczz\\xacz\\xfe\\xc9Α\\x91Α\\xa8\\xa0pp\\xa0p\\xcf\\x1e\\x15\\x15\\x1e\\x15R\\x06\\a\\x03\\v\\aHLH\\a\\v\\x03\\a\\x065\\x1d\\t\\x06\\n\\x02\\x06\\x0e\\r\\x03\\x12\\x04\\n\\x04\\x12\\x03\\r\\x0e\\x06\\x02\\n\\x06\\t\\x1d\\x01\\x90z\\xaczz\\xac\\xa2\\x91Α\\x91\\xceYp\\xa0pp\\xa0D\\x15\\x1e\\x15\\x15\\x1eM\\x01\\f\\r\\a\\x02\\x11\\x11\\x02\\a\\r\\v\\x02\\f\\x04/A\\x13\\x18\\a\\x0e\\x05\\x06\\x06.!!.\\x06\\x06\\x05\\x0e\\a\\x18\\x13A/\\x04\\x00\\x04\\x00\\x00\\xff\\xbd\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x13\\x00\\x1b\\x00B\\x00\\x00\\x05\\x06#\\\"/\\x0167\\x17\\x16\\x15\\x14'\\x17\\x16\\x0e\\x01&/\\x01\\x12\\\"&462\\x16\\x14\\x17\\x16\\x06\\a\\x06&/\\x01&#\\\"\\x15\\x14\\x1f\\x01\\x15\\a\\x0e\\x01.\\x01?\\x015\\a\\x15\\x14\\x06#\\\"&=\\x0176;\\x012\\x17\\x01|\\x02\\x02\\x05\\x02}\\b\\x05~\\x01\\xf1?\\x05\\v\\x18\\x19\\x05$\\x04$\\x1a\\x1a$\\x1ao\\x06\\x02\\b\\a\\x14\\af\\x01\\x02\\x04\\x01\\x1fB\\x04\\x18\\x19\\f\\x056\\x10\\x0e\\n\\n\\x0e=\\a\\f \\f\\a?\\x01\\x04\\xce\\x03\\a\\xd0\\x02\\x02\\x05Ú\\f\\x19\\n\\v\\fX\\x01<\\x1a$\\x1a\\x1a$\\xc3\\b\\x14\\x06\\x06\\x02\\b\\x81\\x02\\x04\\x02\\x01'l\\xb5\\f\\f\\t\\x18\\r\\x95\\x8c\\x14P\\n\\x0e\\x0e\\v_O\\t\\t\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x06\\x00\\x0e\\x00\\x1e\\x007\\x00G\\x00\\x007\\x17#767\\x1672\\x16\\x15\\x14+\\x0157\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05'&+\\x01\\\"\\x0f\\x01\\x06\\x1e\\x02;\\x012?\\x013\\x17\\x16;\\x012>\\x0174.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\xa3\\t\\x1a\\t\\x02\\x02\\x02\\xa8\\x16\\x19/\\x0e\\xc5\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe\\xf59\\x02\\t$\\b\\x039\\x01\\x01\\x03\\x05\\x03\\x1d\\t\\x03\\b4\\b\\x03\\t\\x1d\\x04\\x06\\x03\\xb7\\x18-\\x1e9\\x05\\a\\a\\x059.5\\xd1\\x1e\\x1e\\x06\\n\\n\\x1a\\x19\\x181b_\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\x1c\\xf4\\xa8\\b\\b\\xa8\\x03\\x06\\x04\\x03\\t\\x1e\\x1e\\t\\x05\\aT\\x1e+\\x17\\a\\x05\\xa8\\x05\\a4\\x00\\x04\\xff\\xf4\\xff\\xc0\\x01\\x81\\x01\\xc6\\x00!\\x003\\x00C\\x00S\\x00\\x00\\x17.\\x01676\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"#'\\x06\\x177232\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"\\x13\\x16\\x14\\a\\x0e\\x01/\\x01&764'&?\\x016\\x167\\x16\\x14\\a\\x06/\\x01&764'&?\\x016\\a\\x16\\x14\\a\\x06/\\x01&764'&?\\x016a@-.?\\n\\f@\\b\\x01 \\x04\\f\\x01\\x018  8\\x01\\x01\\f\\x04 \\x01\\b@\\x05\\x05\\a\\x91\\t\\t\\x03\\v\\x05\\x06\\x06\\x04\\x04\\x04\\x04\\x06\\x06\\x05\\v_--\\b\\n\\x05\\t\\b%%\\b\\t\\x05\\n&\\x1b\\x1b\\b\\n\\x06\\b\\a\\x14\\x14\\a\\b\\x06\\n;@\\xab\\xab@\\n\\b(\\x05\\n\\x03\\x03Q\\v\\x06ZZ\\x06\\vQ\\x03\\x03\\n\\x05(\\x03\\x01\\xa1\\x10\\\"\\x10\\x05\\x01\\x04\\x06\\x06\\b\\a\\x10\\a\\b\\x06\\x06\\x04\\x01V6\\x8c6\\n\\t\\x06\\b\\b-t-\\b\\b\\x06\\t7#X#\\n\\t\\x06\\a\\b\\x1aB\\x1a\\b\\a\\x06\\t\\x00\\x00\\f\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00G\\x00O\\x00W\\x00_\\x00\\x006\\x14\\x06\\\"&462\\x062\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x042\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x80%6%%6(\\x1a\\x13\\x13\\x1a\\x13\\x056%%6%\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x056%%6%\\x01\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x056%%6%\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xdb6%%6%\\xc0\\x13\\x1a\\x13\\x13\\x1a\\x01s%6%%6\\x9b\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x01s%6%%6\\x9b\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x01s%6%%6\\x9b\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x01S\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x13\\x008\\x00@\\x00H\\x00`\\x00d\\x00\\x007\\x14\\x06\\\"&5462\\x16\\x15\\x14\\x06\\\"&54&\\\"\\x06&2\\x16\\x15\\x14\\x0e\\x03\\x15\\x14\\x06#\\\"&4632654>\\x0254&\\\"\\x06\\x15\\x14\\x06\\\"&54\\x162\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4%\\x14\\x06\\\"&54=\\x01.\\x01'.\\x017>\\x03\\x17\\x1e\\x01\\x17\\x14\\x05\\a'7\\xd8\\x10\\x18\\x10/B/\\x10\\x18\\x10\\x0e\\x14\\x0e1\\x92g\\x0f\\x15\\x15\\x0f?-\\f\\x10\\x10\\f\\x16\\x1e\\x17\\x1b\\x16FdF\\x10\\x18\\x10S\\x1a\\x13\\x13\\x1a\\x13m\\x1a\\x13\\x13\\x1a\\x13\\x02\\x00\\x10\\x18\\x10\\x01Q@\\v\\n\\x03\\x02\\b\\t\\f\\x05Qf\\x01\\xfe\\x99\\\"P\\\"\\xbc\\f\\x10\\x10\\f!//!\\f\\x10\\x10\\f\\n\\x0e\\x0e\\xa6gI\\x1b+\\x1a\\x14\\x13\\t-?\\x10\\x18\\x10\\x1e\\x16\\x19%\\x13&\\x192FF2\\f\\x10\\x10\\fI\\x85\\x13\\x1a\\x13\\x13\\x1am\\x13\\x1a\\x13\\x13\\x1a\\xcf\\f\\x10\\x10\\f\\x02\\x01\\x01Do\\x16\\x04\\x15\\v\\x05\\t\\x04\\x01\\x02\\x1b\\x8cV\\x03\\xb5\\\"P\\\"\\x00\\x00\\x00\\x04\\xff\\xfa\\xff\\xc6\\x02\\x86\\x01\\xba\\x002\\x00A\\x00t\\x00\\x82\\x00\\x00\\x01&\\a2\\x17\\x16\\x06#2\\x16\\a\\x0e\\x01#'\\a\\x06&/\\x01&?\\x02676\\x1e\\x01\\x06\\a\\x06\\a676\\x16\\x17\\x16\\x0e\\x01\\a\\x06\\a6\\x17\\x1e\\x01\\a\\x0e\\x01\\a&#\\\"\\x06\\x15\\x14\\x1e\\x0132763&%\\x16\\x0f\\x02\\x06\\a\\x06.\\x016767\\x06\\a\\x06&'&>\\x01767\\x06'.\\x017>\\x01\\x17\\x167\\\"'&63\\\"&7>\\x013\\x1776\\x16\\x17\\a\\\"\\a\\x06#\\x16\\x17\\x1632654&\\x01# !=\\x18\\a\\x10\\x0e\\x0e\\x10\\a\\v+\\x1a^C\\a\\x0e\\x03,\\b\\x0f:)\\nF\\b\\x16\\x0e\\x02\\b\\x14\\r\\\"(\\v\\x12\\x01\\x01\\x05\\f\\a\\x17\\x15-+\\n\\a\\x05\\x05\\x15%\\n\\x16\\x0f\\x14\\n\\x10\\t\\x16\\n\\a\\x11\\x11\\x01p\\b\\x0f:)\\nF\\b\\x16\\x0e\\x02\\b\\x14\\r\\\"(\\t\\x14\\x01\\x01\\x05\\f\\a\\x17\\x15-+\\n\\a\\x05\\x05\\x15\\t !=\\x18\\a\\x10\\x0e\\x0e\\x10\\a\\v+\\x1c\\\\C\\a\\x0e\\x03\\xb9\\x16\\n\\a\\x11\\x11\\a\\n\\x16\\x0f\\x14\\x15\\x01\\x03\\x10\\f3\\r\\x19\\x19\\r\\x17\\x1c\\t!\\x04\\x05\\x06Y\\x0f\\t!JZ9\\a\\x02\\x11\\x16\\a\\x11\\x13\\x17\\x05\\x02\\x0e\\v\\a\\r\\t\\x01\\x02\\r\\n\\x15\\x05\\x15\\n\\n\\aA\\x15\\x15\\x0f\\n\\x11\\b\\x14\\x0f\\x014\\x10\\b!JZ9\\a\\x02\\x11\\x16\\a\\x11\\x13\\x17\\x05\\x02\\r\\f\\a\\r\\t\\x01\\x02\\r\\n\\x15\\x05\\x15\\n\\n\\a\\x05\\x10\\f3\\r\\x19\\x19\\r\\x17\\x1c\\t!\\x04\\x05\\x06G\\x14\\x0f\\x01\\x0f\\x14\\x15\\x0f\\x0f\\x14\\x00\\x00\\x00\\x00\\x04\\xff\\xfb\\xff\\xc0\\x02\\x05\\x01\\xc5\\x00\\x13\\x008\\x00D\\x00Q\\x00\\x007\\x14\\x06\\\"&5462\\x16\\x15\\x14\\x06\\\"&54&\\\"\\x06&2\\x16\\x15\\x14\\x0e\\x03\\x15\\x14\\x06#\\\"&4632654>\\x0254&\\\"\\x06\\x15\\x14\\x06\\\"&54%\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x17\\x01\\x17\\x16\\x0f\\x01\\x06\\\"/\\x01&?\\x016\\xd8\\x10\\x18\\x10/B/\\x10\\x18\\x10\\x0e\\x14\\x0e1\\x92g\\x0f\\x15\\x15\\x0f?-\\f\\x10\\x10\\f\\x16\\x1e\\x17\\x1b\\x16FdF\\x10\\x18\\x10\\x01\\xbc\\t\\tW\\b\\t\\x1c\\b\\bW\\t\\b\\xfe\\xc9\\x1c\\t\\t\\x94\\x04\\n\\x03\\x1c\\t\\t\\x94\\b\\xbc\\f\\x10\\x10\\f!//!\\f\\x10\\x10\\f\\n\\x0e\\x0e\\xa6gI\\x1b+\\x1a\\x14\\x13\\t-?\\x10\\x18\\x10\\x1e\\x16\\x19%\\x13&\\x192FF2\\f\\x10\\x10\\fI\\x9b\\b\\tW\\b\\b\\x1c\\t\\bW\\t\\t\\xfe\\xc9\\x1c\\t\\b\\x94\\x04\\x04\\x1c\\b\\t\\x94\\t\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x01\\xc0\\x01\\xc2\\x002\\x00?\\x00k\\x00\\x00\\x1746;\\x015#\\\"&546;\\x015#\\\"&546;\\x015#\\\"&746;\\x01'.\\x01>\\x01\\x1f\\x01\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06+\\x01\\\"&7'&676\\x16\\x1f\\x01\\x06\\x16\\x1f\\x017\\x141\\x14\\x0f\\x0154/\\x01&\\a'&676\\x16\\x1f\\x017'&676\\x16\\x1f\\x017'&676\\x16\\x1f\\x01'&>\\x01\\x16\\x15[\\x11\\r>~\\f\\x11\\x11\\v\\u007f\\x9a\\f\\x11\\x11\\f\\x9a}\\f\\x12\\x01\\x10\\f\\xa9\\x1f\\n\\x04\\x0e\\x18\\t|\\x0e\\x0f\\fP\\x10\\x10k\\f\\x10I%\\a\\x03\\t\\t\\x18\\b\\r\\r\\x02\\x0e\\v\\xf7\\r=\\x12{\\x15\\x154\\a\\x03\\t\\n\\x17\\aN\\x04^\\b\\x03\\n\\t\\x17\\a_\\x05M\\b\\x03\\n\\t\\x17\\bg\\x01\\x01\\x11\\x17\\x12$\\f\\x11\\x06\\x11\\f\\f\\x10\\x06\\x11\\f\\v\\x11\\x06\\x11\\f\\v\\x11\\x16\\a\\x18\\x13\\x03\\x06Z\\n\\x12\\x8d\\f\\x13\\x02\\x13\\x04\\x10\\xee.\\n\\x17\\a\\b\\x03\\n\\x11\\v#\\n\\b\\x02\\x01\\x11\\n0\\x11\\x16\\fZ\\x0f\\x0eC\\t\\x18\\b\\a\\x03\\nc\\x03y\\n\\x18\\a\\a\\x03\\tz\\x04b\\n\\x18\\a\\a\\x03\\t\\x85&\\f\\x11\\x01\\x10\\f\\x00\\x00\\x00\\x02\\xff\\xf8\\xff\\xbe\\x02@\\x01\\xc2\\x00-\\x00E\\x00\\x00%\\x16\\x14\\a\\x06\\a\\x17\\x16\\x06\\x0f\\x01\\x06&'\\x03\\x06\\a\\x13\\x06#\\\"/\\x02\\x06\\a\\x17&'&767'&6?\\x016\\x16\\x1f\\x01632\\x16\\a654&#\\\"\\a\\x176\\x17\\\"\\x06\\x15\\x14\\x1e\\x013265\\x16\\x06\\a\\x029\\a\\a1W+\\x05\\x03\\b\\r\\b\\x14\\x06\\xfc\\x14\\x12\\xbe\\x12\\x11\\x16\\x16)w\\x10\\r}q<\\x0f\\x0f1W+\\x05\\x03\\b\\r\\b\\x14\\x065(*Y\\x95\\x88\\\"P8\\x1a\\x18\\x13*&\\x12\\x19\\v\\x14\\f\\x12\\x19\\x0e\\x05\\x12\\xd8\\v\\x1a\\vT+:\\b\\x14\\x05\\n\\x05\\x03\\b\\x01e\\t\\r\\xfe\\xf1\\x02\\x03:\\xab\\x11\\x13\\xb2(f\\x18\\x18T+:\\b\\x14\\x05\\n\\x05\\x03\\bH\\nW\\xbb'38P\\t\\x1c\\r\\x14\\x19\\x12\\f\\x13\\f\\x19\\x12\\x1a=\\x19\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xfd\\x02\\x80\\x01\\x80\\x00\\x19\\x00 \\x00(\\x00/\\x007\\x00W\\x00\\x00\\x012\\x1f\\x01\\x15&/\\x0176'&\\\"\\x0f\\x01\\x15\\x06&'&475763\\x173\\x11#\\\"&5:\\x0164&\\\"\\x06\\x14\\x05\\x113\\x15\\x14\\x06#&\\\"\\x06\\x14\\x16264\\x05\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x0e\\x01/\\x01\\x0e\\x01/\\x01#576;\\x01\\a\\x0e\\x01\\x17\\x1e\\x01?\\x01\\x01\\xb3\\r\\t7\\x04\\x04\\x92\\x1a\\f\\n\\x05\\r\\x05P\\r\\\"\\n\\n\\rb\\t\\r\\xc3`@\\r\\x13)\\x0e\\t\\t\\x0e\\t\\xfd\\xc0`\\x13\\r\\t\\x0e\\t\\t\\x0e\\t\\x01\\xa4\\n\\x03\\t\\t\\b\\x1b\\n\\x05 \\t\\x1f\\f\\x12\\x115\\x14[\\x127\\t\\rTR\\x16\\x02\\x14\\x14;\\x17\\x1e\\x01\\x80\\t7\\xc2\\x05\\x03v\\x18\\v\\f\\x05\\x04I\\x01\\n\\x02\\v\\f!\\v\\x01Z\\b@\\xff\\x00\\x13\\r\\t\\x0e\\t\\t\\x0e)\\x01\\x00\\xe0\\r\\x13@\\t\\x0e\\t\\t\\x0e\\n\\b\\x1a\\v\\f\\n\\x03\\t\\x04&\\f\\x04\\n\\x10\\x15\\x06\\x11R\\xe07\\tK\\x14<\\x16\\x15\\x03\\x14\\x1b\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x1a\\x00F\\x00\\x00\\x05\\x14\\x06#!\\\"&5\\x1147670>\\x0232\\x1e\\x021\\x16\\x17\\x16\\x15\\a&\\a\\x06\\a0\\x0e\\x02#\\\".\\x03'&'&\\x0f\\x01\\x06\\x15\\x14\\x17\\x16\\x17\\x1e\\x042>\\x03767654'\\x02\\x00\\x1c\\x14\\xfe`\\x14\\x1c\\x12)|\\x1c\\x0e\\x17\\b\\b\\x17\\x0e\\x1c|)\\x12B\\x04\\a#G\\x1c\\x0e\\x17\\b\\a\\x10\\x11\\r\\x12\\x02G#\\a\\x04\\t\\x02\\x03$F\\x02\\x16\\x0e\\x17\\x15\\x14\\x15\\x17\\x0e\\x16\\x02F$\\x03\\x02\\x10\\x14\\x1c\\x1c\\x14\\x01\\a\\x18\\x0e Z\\x15\\t\\v\\v\\t\\x15Z \\x0e\\x18B\\x06\\x04\\x1b3\\x15\\t\\v\\x06\\v\\t\\x0e\\x013\\x1b\\x04\\x06\\x0e\\x02\\x02\\x04\\x03\\x1a2\\x02\\x11\\n\\r\\x06\\x06\\r\\n\\x11\\x022\\x1a\\x03\\x04\\x02\\x02\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00'\\x00/\\x00D\\x00\\x00\\x01#\\x1532\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1d\\x01\\x14&\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x0e\\x01\\x1d\\x01\\x14\\x16;\\x0126\\x01\\xb4\\x14\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c\\x14\\f\\xd64&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x12\\x1f\\x12\\r\\t\\xb4\\t\\r\\x01 @\\f(\\f@\\f(\\f0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f &4&&4\\xc7\\x13\\x18\\\"\\b\\b\\x0f\\x1b\\x10\\x13\\b\\v\\v\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00+\\x007\\x00C\\x00O\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x9a4&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x1c'\\r\\t\\xb4\\t\\r\\xe0\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c`&4&&4\\xc7\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\v=\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\x14\\x16264\\x0227.\\x01#\\\"\\a\\x06\\\"'&#\\\"\\x06\\a\\x91Α\\x91Α\\x01\\x1cH44H4\\xb1\\xb29\\x0e4 \\x03\\x04\\x15(\\x15\\x04\\x03 4\\x0e\\x01\\xb8\\x91Α\\x91\\xce14H44H\\xfe\\xdcD\\x1b!\\x01\\a\\a\\x01!\\x1b\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1b\\x00#\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\\"\\x06\\x14\\x16;\\x01264&#\\x06\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14`\\a\\t\\t\\a`\\a\\t\\t\\a\\x164&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x1c'\\r\\t\\xb4\\t\\r\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c \\t\\x0e\\t\\t\\x0e\\t\\x80&4&&4\\xc7\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\v\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\x13\\x00\\x1f\\x00+\\x007\\x00?\\x00R\\x00\\x00\\x012\\x16\\x1d\\x01!5463\\x03\\x11!\\x11\\x14\\x06#!\\\"&%\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"&\\\"\\x06\\x14\\x16264\\a\\x06\\x16;\\x0126'.\\x01+\\x01\\x06\\\"'#\\\"\\x0e\\x01\\x02\\x10\\x14\\x1c\\xfd\\xc0\\x1c\\x140\\x02@\\x1c\\x14\\xfe \\x14\\x1c\\x01`\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\x964&&4&\\xad\\x02\\n\\b\\xba\\b\\n\\x02\\x06\\\"\\x15\\b\\x13*\\x13\\b\\x0e\\x19\\x12\\x01\\xa0\\x1c\\x14\\x10\\x10\\x14\\x1c\\xfep\\x010\\xfe\\xd0\\x14\\x1c\\x1c\\xfc\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\x80&4&&4\\xa6\\a\\r\\f\\b\\x13\\x19\\b\\b\\v\\x14\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x12\\x003\\x00C\\x00\\x00\\x13\\x15\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x032654.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x0137\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x16\\xe0 K5\\x015J 8P8`!/\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15A%6% \\x13\\x1a\\x13 \\x01`\\xcb%05KL50$\\xcb(88\\xfeh/!\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16P\\x1b%%\\x1b%\\x12\\xe9\\r\\x13\\x13\\r\\xe9\\x12\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x0f\\x00\\\"\\x00C\\x00\\x007\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x167\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6% \\x13\\x1a\\x13   K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/@\\x1b%%\\x1b%\\x12\\xa9\\r\\x13\\x13\\r\\xa9\\x120%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x0f\\x00\\\"\\x00C\\x00\\x007\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x167\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6% \\x13\\x1a\\x13   K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/@\\x1b%%\\x1b%\\x12i\\r\\x13\\x13\\ri\\x120%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x0f\\x00\\\"\\x00C\\x00\\x007\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x167\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6% \\x13\\x1a\\x13   K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/@\\x1b%%\\x1b%\\x12)\\r\\x13\\x13\\r)\\x120%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\a\\x00\\x1a\\x00;\\x00\\x006\\x14\\x06\\\"&4627\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6%%6E K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/[6%%6%\\x15%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x10\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00G\\x00O\\x00W\\x00_\\x00g\\x00o\\x00w\\x00\\xab\\x00\\x00$2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x16\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14&2\\x16\\x14\\x06\\\"&46\\\"&462\\x16\\x14\\x06462\\x16\\x14\\x06\\\"&2\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&47\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01.\\x01547'&#\\\"#\\x0e\\x01\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x114632\\x16\\x1f\\x01632\\x1e\\x01\\x17762\\x17\\x01)\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t\\x97\\x0e\\t\\t\\x0e\\t@\\t\\x0e\\t\\t\\x0e \\x0e\\t\\t\\x0e\\ti\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t\\x17\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t\\x17\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t&\\x04\\x04\\xaa\\x04\\x0e\\x04\\f\\x04\\x04\\x06\\r\\x13\\x0e\\n\\x11\\x18\\x04\\x04\\x16\\x1d\\t\\a \\a\\tI2\\x152\\x0f\\n\\x1a\\x1b\\f\\x1e\\x1b\\t\\x06\\x04\\x0e\\x04\\x80\\t\\x0e\\t\\t\\x0ei\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e \\x0e\\t\\t\\x0e\\t@\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0eI\\t\\x0e\\t\\t\\x0e\\xe3\\x04\\x0e\\x04\\xaa\\x04\\x04\\f\\x04\\x0e\\x04\\x06\\r.\\x13\\x1b\\x1a\\n\\x11\\x03$\\x17\\xfe\\xce\\a\\t\\t\\a\\x01/4M\\x15\\x0f\\n\\x0e\\t\\x0e\\t\\x06\\x04\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x1b\\x00M\\x00\\x0075!\\x15\\x14\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x01%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0154632\\x16\\x1f\\x016\\x1762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&47&7'&\\\"\\x06\\x1d\\x01 \\x01\\xc0\\x13\\r\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\r\\x13\\x01\\xd0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x10)\\x1c\\f\\x1d\\b\\x13-#\\x05\\r\\x05\\v\\x05\\x05i\\x05\\r\\x05\\v\\x05\\x05\\x1c\\x14\\x14\\x06\\x12\\f@00\\x12)\\f)\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a)\\f)\\x92\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xbb\\x1c)\\f\\b\\x14\\x14\\x1c\\x05\\x05\\v\\x05\\r\\x05i\\x05\\x05\\v\\x05\\r\\x05#,\\x14\\x06\\f\\t\\xbb\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00+\\x00Q\\x00Y\\x00\\x00\\x05\\x06\\\"'.\\x01542\\x15\\x14\\x06'\\x16\\a\\x06\\a\\x06'&546\\x17\\x1e\\x01\\x17\\x16\\a\\x06'&'&7654&\\a\\x0e\\x01\\a\\x06\\x122\\x16\\x15\\x14\\x06\\a\\x06&767>\\x0154.\\x03#\\\"\\x06\\x15\\x14\\x16\\x17\\x16\\x15\\x16\\x17\\x16\\x06'.\\x0154\\x162\\x16\\x14\\x06\\\"&4\\x01\\v\\x06J\\x06\\a\\x0e\\x80\\x0eu\\x05\\x06\\x0e\\a\\x04\\x05.W=9R\\x01\\x020\\x05\\x04\\a\\x0e\\x06\\x05\\x1d;)%5\\x02\\x02\\x05\\xba\\x83F8\\x03\\x06\\x01\\x04\\x01%,\\x12!+6\\x1cIg*$\\x03\\x01\\x04\\x01\\x06\\x039E\\xc56%%6%)\\x17\\x17\\x19U\\x17,,\\x17U\\xaf\\x05\\x04\\n\\x0f\\b\\x06+>=U\\x02\\x02Q9A,\\x06\\b\\x0f\\n\\x04\\x05\\x1d()9\\x02\\x025%+\\x01\\x03\\x83]Bl\\x1b\\x02\\x04\\x04\\x1b\\x14\\x18N.\\x1d5, \\x12gH-N\\x18\\x02\\x03\\x13\\x19\\x04\\x04\\x02\\x1blB]\\x1d%6%%6\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0554#!\\\"\\x1d\\x01\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x90\\f\\xfe\\x98\\f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xa0T\\f\\fT\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x00`\\x00\\x0f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14`\\x1c\\x14 \\x14\\x1c\\x1c\\x14 \\x14\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x11\\x00!\\x00)\\x00\\x00\\x01\\x11\\x14\\x06+\\x0154&+\\x015463!2\\x16\\a\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4+\\x01\\\"\\x1d\\x013\\x02\\x00\\x1c\\x140/!\\xd0\\x1c\\x14\\x01 \\x14\\x1c\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1cD\\f\\xe4\\f\\xfc\\x01\\x90\\xfe\\xe0\\x14\\x1c\\xd0!/0\\x14\\x1c\\x1c\\x94\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\x1c0\\f\\f4\\x00\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\u007f\\x00\\x8f\\x00\\x00\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x17\\x15\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132%3\\x15#\\\"=\\x01#\\\"=\\x014;\\x015473\\x15#\\\"=\\x01#\\\"=\\x014;\\x015473\\x15#\\\"=\\x01#\\\"=\\x014;\\x015473\\x15#\\\"=\\x01#\\\"=\\x014;\\x0154\\x01\\xa0\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\xfe\\x1e**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x01\\x90\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1cN\\f\\x06\\x06\\x060\\x06\\x06f\\f\\x06\\x06\\x060\\x06\\x06f\\f\\x06\\x06\\x060\\x06\\x06f\\f\\x06\\x06\\x060\\x06\\x06\\f0\\x06\\x06\\x06\\f\\x06\\x06\\x06`0\\x06\\x06\\x06\\f\\x06\\x06\\x06`0\\x06\\x06\\x06\\f\\x06\\x06\\x06`0\\x06\\x06\\x06\\f\\x06\\x06\\x06\\x00\\x00\\x00\\x00\\x01\\xff\\xfa\\xff\\xc0\\x01\\xc6\\x01\\xc0\\x00\\xa7\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x06/\\x01\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x02\\x15\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a\\x06\\\"/\\x01&4?\\x015\\x0f\\x01\\x0e\\x01/\\x01.\\x01?\\x01\\a\\x06/\\x01&?\\x01'.\\x01?\\x01>\\x01\\x1f\\x017'\\a\\x06&/\\x01&6?\\x01'&?\\x016\\x1f\\x01'&>\\x01?\\x016\\x1e\\x01\\x1f\\x025'&4?\\x016\\x1f\\x01546;\\x012\\x16\\x1d\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x15?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x1776\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xb8\\x06\\x03\\x03\\x10\\a\\x0e!\\x06\\x02\\x06\\x06\\x0f\\x06\\f\\x01\\x13?5\\x05\\x05\\v\\x05\\r\\x04\\x14\\n\\x06 \\a\\t\\x14\\x05\\r\\x04\\f\\x05\\x056?\\x13\\x02\\v\\x06\\x0f\\x06\\x06\\x01\\a!\\x0e\\a\\x10\\b\\x0e\\\"\\x1a\\a\\x06\\x02\\x04\\x01\\v\\aF@@F\\a\\v\\x01\\x04\\x02\\x06\\a\\x1a\\\"\\x0e\\b\\x10\\a\\x0e!\\x06\\x02\\x03\\x05\\x04\\x0f\\x04\\b\\x06\\x01\\x13?6\\x04\\x04\\f\\v\\v\\x14\\t\\a \\a\\t\\x14\\x04\\x0e\\x04\\f\\x04\\x046?\\x13\\x01\\f\\x06\\x0f\\x06\\x06\\x02\\x06!\\x0e\\a\\x10\\a\\r\\\"\\x1a\\a\\x06\\x02\\x04\\x01\\v\\aF@@F\\a\\v\\x01\\x04\\x02\\x06\\a\\x1ag\\x03\\r\\x05\\x1b\\r\\a\\x14\\x1a\\x06\\v\\x02\\x04\\x02\\a\\x06G$N5\\x05\\r\\x05\\v\\x05\\x05\\x13(\\a\\t\\t\\a(\\x13\\x05\\x05\\v\\x05\\r\\x046N$G\\x06\\a\\x02\\x04\\x01\\f\\x06\\x1a\\x14\\a\\r\\x1b\\r\\b\\x13\\a\\x02\\v\\x06\\x0f\\x06\\a\\x02\\x13%%\\x13\\x02\\a\\x06\\x0f\\x06\\v\\x02\\a\\x13\\b\\r\\x1b\\r\\a\\x14\\x1a\\x04\\b\\x06\\x01\\x04\\x01\\x02\\x06\\x04G$N5\\x05\\r\\x05\\v\\f\\f\\x13(\\a\\t\\t\\a(\\x13\\x05\\x05\\v\\x05\\r\\x055N$G\\x06\\a\\x02\\x04\\x02\\v\\x06\\x1a\\x14\\a\\r\\x1b\\r\\b\\x13\\a\\x02\\v\\x06\\x0f\\x06\\a\\x02\\x13%%\\x13\\x02\\a\\x06\\x0f\\x06\\v\\x02\\a\\x00\\x01\\xff\\xff\\xff\\xbf\\x02\\t\\x01\\xc9\\x00\\x14\\x00\\x00\\x01\\x16\\x06\\a\\x0e\\x01'\\a\\x06\\\"/\\x01&4?\\x01&67>\\x01\\x01\\xe0(\\x140$X%\\xc0\\b\\x17\\t3\\b\\t\\xd7\\x15\\r$1\\x89\\x01\\xa0*\\x891$\\r\\x15\\xd7\\t\\b3\\t\\x17\\b\\xc0%X$0\\x14\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xa0\\x01\\xc1\\x00*\\x00<\\x00\\x00\\x13\\x16\\x15\\x14\\x06\\a\\x17\\x16\\x06+\\x01\\\"&?\\x01.\\x0254762\\x17\\x15\\x1627>\\x02562\\x17\\x16\\x17\\x1627562\\x13.\\x01>\\x0232\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&7\\xd0\\x10% \\r\\x01\\x0f\\n@\\n\\x0f\\x01\\r\\x15\\x1f\\x11\\x10\\x02,\\x02\\x01\\x0e\\x01\\x01\\x04\\x03\\x02,\\x02\\x01\\a\\x01\\x0e\\x01\\x02,y,\\\"\\x13*9\\x19\\n\\x0e\\x0e\\n8\\v\\x0e\\x01\\x01\\xb1_\\\"&7\\f\\xee\\n\\x0f\\x0f\\n\\xee\\b\\x1d*\\x1a\\\"_\\x0f\\x10\\x8e\\x02\\x02\\vG;\\x01\\x10\\x10\\b\\x86\\x02\\x02\\x8e\\x10\\xfe\\xd3#VLB&\\x0e\\n\\xfe0\\n\\x0e\\x10\\n\\x00\\x01\\x00\\b\\xff\\xc8\\x01\\xf9\\x01\\xb9\\x00&\\x00\\x00\\x012\\x1e\\x01\\x15\\x14\\x06#\\\"'&?\\x016\\x17\\x1632676&\\a\\x06\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x016\\x01\\x00CrC\\x91g_G\\n\\t(\\b\\b0?Fa\\x01\\x01eEB0*\\v\\f\\x10\\x86\\n\\x0e\\x1e\\v$G\\x01\\xb8BsCg\\x91@\\b\\t(\\b\\a*bEGc\\x01\\x01,*\\v\\x1e\\x0e\\n\\x86\\x10\\f\\v$E\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x15\\x00!\\x00-\\x00E\\x00\\x00\\x17\\x11!\\x11\\x14\\x06#!\\\"&\\x01\\x15\\x14\\x1626=\\x014&\\\"\\x06\\a\\x15\\x14\\x1626=\\x014&\\\"\\x06\\a\\x15\\x14\\x1626=\\x014&\\\"\\x06%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x01 \\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x01\\x10\\t\\x0e\\t\\t\\x0e\\t`\\t\\x0e\\t\\t\\x0e\\t`\\t\\x0e\\t\\t\\x0e\\t\\x01@\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\x10\\x01P\\xfe\\xb0\\x14\\x1c\\x1c\\x01\\x14\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\xa9\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x1c\\x00:\\x00\\x00\\x01&#\\\"\\x06\\a\\x06+\\x01\\\"&7>\\x0132\\x1776\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&7\\x0532\\x16\\x0f\\x01\\x1632>\\x0176;\\x012\\x16\\a\\x0e\\x01#\\\"'\\a\\x06&=\\x0146\\x01s1B:[\\x0e\\x02\\n9\\x06\\a\\x01\\x11\\x89ZcH$\\v\\x1e\\x0e\\n\\x86\\x10\\f\\v\\xfe׆\\x10\\f\\v*1B&D0\\t\\x02\\n9\\x06\\a\\x01\\x11\\x89ZcH$\\v\\x1e\\x0e\\x01;-G8\\t\\t\\x05WsE$\\v\\f\\x10\\x86\\n\\x0e\\x1e\\vy\\x1e\\v*-!9%\\t\\t\\x05WsE$\\v\\f\\x10\\x86\\n\\x0e\\x00\\x00\\x02\\x00\\x10\\xff\\xc0\\x01\\xb6\\x01\\xc0\\x00\\\"\\x000\\x00\\x00%\\x14\\x06\\\"&54675#\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x16\\x1776\\x1f\\x01\\x16\\x0f\\x02\\x16\\a54&+\\x01\\\"\\x06\\x1d\\x01\\x14;\\x012\\x01\\xb0z\\xaczeK\\x1c\\f\\fx\\f\\f\\x1c8,\\x1b\\t\\b\\x1c\\t\\t\\x1d\\x01\\\"\\xb0\\a\\x05(\\x05\\a\\f(\\f\\x90VzzVMu\\f\\\"\\f(\\f\\f(\\f\\\"\\t$\\x1b\\t\\t\\x1c\\b\\t\\x1d\\x013b\\x98\\x04\\b\\b\\x04\\x98\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xfc\\x01\\xf8\\x01\\x84\\x00\\x15\\x001\\x00\\x00%\\a\\x06&=\\x01#\\\"&=\\x0146;\\x01546\\x1f\\x01\\x16\\x14\\x05\\x14+\\x01\\\"&=\\x0146;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x012\\x15\\x01\\xf1\\xa8\\v\\x1e\\x88\\n\\x0e\\x0e\\n\\x88\\x1e\\v\\xa8\\a\\xfe\\xc8\\fT(88(T\\f\\fT\\r\\x13\\x13\\rT\\f\\xaf\\xa8\\v\\f\\x10`\\x0e\\n`\\n\\x0e`\\x10\\f\\v\\xa8\\a\\x14\\xaa\\f8(\\xc0(8\\f(\\f\\x13\\r\\xc0\\r\\x13\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf4\\x02\\x00\\x01\\x80\\x00\\x1b\\x001\\x00\\x00!#\\\"=\\x014;\\x0126=\\x014&+\\x01\\\"=\\x014;\\x012\\x16\\x1d\\x01\\x14\\x06'\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\\"&=\\x0146;\\x01546\\x17\\x01\\xa0T\\f\\fT\\r\\x13\\x13\\rT\\f\\fT(88W\\a\\a\\xa8\\v\\x1e\\x88\\n\\x0e\\x0e\\n\\x88\\x1e\\v\\f(\\f\\x13\\r\\xc0\\r\\x13\\f(\\f8(\\xc0(8\\xc9\\a\\x14\\a\\xa8\\v\\f\\x10`\\x0e\\n`\\n\\x0e`\\x10\\f\\v\\x00\\x00\\x01\\x00\\a\\xff\\xc8\\x01\\xf8\\x01\\xb9\\x00$\\x00\\x00\\x012\\x1776\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&?\\x01&'&\\x06\\x17\\x1e\\x013276\\x1f\\x01\\x16\\a\\x06#\\\"&46\\x01\\x00dG$\\v\\x1e\\x0e\\n\\x86\\x10\\f\\v*0BEe\\x01\\x01aF?0\\b\\b(\\t\\nG_g\\x91\\x92\\x01\\xb8E$\\v\\f\\x10\\x86\\n\\x0e\\x1e\\v*,\\x01\\x01cGEb*\\a\\b(\\t\\b@\\x91Α\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x000\\x008\\x00D\\x00L\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467&546;\\x01&546;\\x012654'632\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\a32\\x16\\x15\\x14$\\\"\\x06\\x14\\x16264\\x176&+\\x01\\\"\\x06\\x17\\x1e\\x0126&264&\\\"\\x06\\x14\\x01\\xc3\\x1a#*\\x1e\\xfe\\x90\\x1e*#\\x1a\\x1d*\\x1e\\x0e\\x16&\\x1a\\x10!/\\x0f\\t\\x06(8\\x06\\x06\\x1a&\\x16\\x0e\\x1e*\\xfe\\xed\\x1a\\x13\\x13\\x1a\\x13\\x80\\x01\\x05\\x04\\xb0\\x04\\x05\\x01\\b<8<%\\x1a\\x13\\x13\\x1a\\x13O\\x04(\\x1b\\x1e**\\x1e\\x1b(\\x04\\x16#\\x1e*\\x13\\x1d\\x1a&/!\\x19\\x15\\x028(\\x0f\\x11&\\x1a\\x1d\\x13*\\x1e#[\\x13\\x1a\\x13\\x13\\x1ax\\x04\\a\\a\\x04\\x15  `\\x13\\x1a\\x13\\x13\\x1a\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x11\\x00!\\x00)\\x004\\x00\\x00%\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x163%\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x044&\\\"\\x06\\x14\\x162\\a\\x15!5'&\\x0f\\x01'&\\a\\x01\\xe0\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x10/!\\x01\\xb0\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x01\\x80\\x14\\x1c\\xfe\\xc0\\x1c(\\x1c\\x1c(D\\x01`X\\b\\b\\x88(\\b\\b \\x10\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c\\xd0!/P\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c\\x1c\\x14D(\\x1c\\x1c(\\x1c`0pX\\b\\b\\x88(\\b\\b\\x00\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc0\\x00\\r\\x00\\x19\\x00!\\x00(\\x00\\x00\\x01\\a\\x06/\\x01&?\\x0162\\x1f\\x01\\x16\\x14'6\\x1f\\x01\\x16\\a\\x01\\a\\x06&?\\x016\\x16?\\x016&\\x0f\\x025#\\a\\x1775\\x01\\xf2.\\t\\bo\\t\\t.\\x0e(\\x0e<\\x0e\\xe4\\t\\bo\\t\\t\\xfe\\xfaz\\f\\x12\\x02\\x16\\\\\\x14\\n\\x9a\\n\\x14\\n\\x9a$$\\f @\\x012.\\t\\to\\b\\t.\\x0e\\x0e<\\x0e(\\x1c\\t\\to\\b\\t\\xfe\\xfa\\x16\\x02\\x12\\fz \\x14\\n\\x9a\\n\\x14\\n\\x9ah0@ \\f$\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc0\\x00\\a\\x00\\x11\\x00\\x00\\x01\\x17\\x01\\a\\x06&?\\x01\\x01\\x16\\x14\\x0f\\x01'762\\x17\\x01#\\x80\\xfe\\xear\\f\\x10\\x01\\r\\x01\\xe5\\x0e\\x0e9\\x809\\x0e(\\x0e\\x01c\\x80\\xfe\\xea\\r\\x01\\x10\\fr\\x01)\\x0e(\\x0e9\\x809\\x0e\\x0e\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc1\\x00\\t\\x00!\\x00\\x00\\x01\\x16\\x14\\x0f\\x01'762\\x17\\a\\x1f\\x01\\a\\x0e\\x01\\a\\x06&7>\\x01?\\x01'\\a\\x06/\\x01&?\\x0162\\x01\\xf2\\x0e\\x0e9\\x809\\x0e(\\x0e\\xbbUS\\xc5\\\"r/\\f\\x10\\x01\\x057\\\"\\x98\\x17f\\v\\f\\x16\\f\\fw\\v!\\x01v\\x0e(\\x0e9\\x809\\x0e\\x0e(TS\\xc5\\\"7\\x05\\x01\\x10\\f/r\\\"\\x98\\x16f\\v\\v\\x17\\v\\fv\\f\\x00\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xdf\\x00\\xf3\\x01\\xa0\\x00\\x13\\x00\\x00732\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x114;\\x012\\x15\\xa8.\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\f8\\ff\\x1e\\vV\\a\\aV\\v\\x1e\\x01.\\f\\f\\x00\\x01\\xff\\xff\\x00M\\x01\\xc0\\x013\\x00\\x13\\x00\\x007\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x01!2\\x1d\\x01\\x14#\\x86\\x1e\\vV\\a\\aV\\v\\x1e\\x01.\\f\\f\\x98.\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\f8\\f\\x00\\x01\\x00\\x00\\x00M\\x01\\xc1\\x013\\x00\\x14\\x00\\x00%546\\x1f\\x01\\x1e\\x01\\x06\\x0f\\x01\\x06&=\\x01!\\\"=\\x0143\\x01:\\x1e\\vV\\x05\\x03\\x03\\x05V\\v\\x1e\\xfe\\xd2\\f\\f\\xe8.\\x10\\f\\vV\\x05\\f\\f\\x05V\\v\\f\\x10.\\f8\\f\\x00\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xe0\\x00\\xf3\\x01\\xa1\\x00\\x13\\x00\\x00\\x13#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14+\\x01\\\"5X.\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\f8\\f\\x01\\x1a\\x1e\\vV\\a\\aV\\v\\x1e\\xfe\\xd2\\f\\f\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00;\\x00\\x00%\\x15\\x14\\x06+\\x01\\\"&?\\x01'\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x017'\\a\\x06&=\\x0146;\\x012\\x16\\x0f\\x01\\x177'&6;\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x1776\\x16\\x01\\xc0\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x10p\\n\\x0e\\x1e\\v$kk$\\v\\x1e\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x10p\\n\\x0e\\x1e\\v$kk$\\v\\x1ehp\\n\\x0e\\x1e\\v$kk$\\v\\x1e\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x10p\\n\\x0e\\x1e\\v$kk$\\v\\x1e\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00)\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x1532\\x16&\\\"\\x06\\x14\\x16264\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&P\\x14\\x1c\\xb6\\x14\\x0e\\x0e\\x14\\x0eH\\x06\\xb4\\x06\\x06\\xb4\\x06\\x01P\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x1c4\\x0e\\x14\\x0e\\x0e\\x14d\\x14\\x06\\x06\\x14\\x06\\x00\\x00\\x01\\xff\\xff\\x00M\\x02\\x01\\x013\\x00\\x1b\\x00\\x00\\x0146\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x013\\x01z\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x01\\x16\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10..\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\x00\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xbf\\x00\\xf3\\x01\\xc1\\x00\\x1b\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x015#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x15\\xd6\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10..\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.F\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x00\\x00\\x14\\x06\\\"&462\\a\\x15#\\\"\\x06\\x1f\\x01\\x16?\\x016&+\\x0154+\\x01\\\"\\x01\\xf8\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\f\\x01'Α\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x00\\x04\\\"&462\\x16\\x14'#54&\\x0f\\x01\\x06\\x1f\\x01\\x166=\\x0132=\\x014\\x01gΑ\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f8\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\f\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x173\\x15\\x14\\x16?\\x016/\\x01&\\x06\\x1d\\x01#\\\"\\x1d\\x01\\x14\\x99Α\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f\\x01\\xb8\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\f\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x006462\\x16\\x14\\x06\\\"75326/\\x01&\\x0f\\x01\\x06\\x16;\\x01\\x15\\x14;\\x012\\b\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\fYΑ\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1e\\x004\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11!5463\\x132\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06\\\"/\\x01&4?\\x01'&63\\x01\\xb0\\a\\t\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xa0\\a\\t\\t\\a\\x90\\x01@\\t\\aX\\n\\x0e\\x1e\\v$\\xf3\\a\\x14\\a\\x17\\a\\a\\xf4$\\v\\f\\x10\\x80\\t\\a\\x80\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\t\\a \\a\\t\\xfe\\xc0p\\a\\t\\x01@\\x0e\\n\\x80\\x10\\f\\v$\\xf4\\a\\a\\x17\\a\\x14\\a\\xf3$\\v\\x1e\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00#\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a#\\\"\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x166=\\x014&\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cXp\\x10\\f\\v \\xc3\\t\\t\\x1f\\b\\t\\xc3 \\v\\x1e\\x0e\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c$\\x1e\\v \\xc3\\t\\b\\x1f\\t\\t\\xc3 \\v\\f\\x10p\\n\\x0e\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf3\\x02\\x00\\x01\\x8d\\x00\\x15\\x00+\\x00\\x00\\x115463!546\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01!\\\"&\\x052\\x16\\x1d\\x01\\x14\\x06#!\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x01\\x0e\\n\\x01h\\x1e\\vP\\a\\aP\\v\\x1e\\xfe\\x98\\n\\x0e\\x01\\xe8\\n\\x0e\\x0e\\n\\xfe\\x98\\x1e\\vP\\a\\aP\\v\\x1e\\x01\\x18\\x10\\n\\x0e0\\x10\\f\\vP\\a\\x14\\aP\\v\\f\\x100\\x0e\\x8e\\x0e\\n\\x10\\n\\x0e0\\x10\\f\\vP\\a\\x14\\aP\\v\\f\\x100\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1c\\x001\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467454632\\x16\\x17632\\x16\\x15\\x14\\a6&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1f\\x01\\x167\\x02\\x1a\\x1d.\\x1bK5\\xfe\\x90<T6*^B,J\\x15\\x18\\x1d(8\\x8b\\a\\b\\vA\\t\\a0\\a\\tA\\v\\b\\aj\\v\\v\\xdd\\x05$6\\x1e5KT</J\\x0f\\x05\\x03B^,$\\x108(\\x12i\\a\\x14p\\a\\t\\t\\ap\\x14\\aj\\v\\v\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1c\\x001\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467454632\\x16\\x17632\\x16\\x15\\x14\\a26/\\x01&\\x0f\\x01\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01\\x02\\x1a\\x1d.\\x1bK5\\xfe\\x90<T6*^B,J\\x15\\x18\\x1d(8\\x97\\v\\b\\aj\\v\\vj\\a\\b\\vA\\t\\a0\\a\\t\\xdd\\x05$6\\x1e5KT</J\\x0f\\x05\\x03B^,$\\x108(\\x12N\\x14\\aj\\v\\vj\\a\\x14p\\a\\t\\t\\ap\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x11\\x00\\x17\\x00\\x1d\\x00\\x00\\x01\\x17#'#\\x17!7#3\\a#\\x153\\x17\\x16\\x06'\\x03!\\x03\\x06\\\"'?\\x013\\a\\x06&\\x01\\xe6ZeE0E\\xfe\\xeaE\\x80PEee{\\x01\\x05\\x01G\\x01\\x18\\x89\\x01\\x04\\x01C{e\\xdb\\x01\\x05\\x01\\xc0\\xa0\\xa0\\xa0\\xa0\\xa0 \\xfc\\x02\\x03\\x02\\x00\\xff\\xfe\\xc2\\x02\\x02B\\xfc\\xff\\x02\\x03\\x00\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xbf\\x01E\\x01\\xc0\\x00\\x19\\x00\\x00%\\a\\x06\\\"/\\x01&6;\\x01\\x11#\\\"/\\x01&6;\\x012\\x16\\x15\\x1132\\x16\\x01:h\\b\\x14\\bh\\n\\f\\x10@T\\x05\\x038\\x06\\x06\\b\\xc4\\n\\x0e@\\x10\\f8p\\b\\bp\\v\\x1d\\x01\\x10\\x048\\x05\\x0f\\x0e\\n\\xfe\\xb8\\x1d\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xc0\\x01E\\x01\\xc1\\x00\\x19\\x00\\x00\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&?\\x016;\\x01\\x11#\\\"&?\\x0162\\x17\\x01:\\n\\f\\x10@\\x0e\\n\\xc4\\b\\x06\\x068\\x03\\x05T@\\x10\\f\\nh\\b\\x14\\b\\x01H\\v\\x1d\\xfe\\xb8\\n\\x0e\\x0f\\x058\\x04\\x01\\x10\\x1d\\vp\\b\\b\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc1\\x00&\\x00\\x00\\x002\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x06\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0154\\x01i}Z\\x0e\\n \\n\\x0e+\\x1e\\x1d*0\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xe0\\x01\\xc0Y?P\\n\\x0e\\x0e\\nP\\x1e*+\\x1eG\\x1c\\x14\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x14\\x1cF@\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xbf\\x01\\x80\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00\\x00\\x17.\\x065462\\x16\\x15\\x14\\x0e\\x05\\a\\x06\\\"&264&\\\"\\x06\\x14\\xac\\x18=\\x1a\\\"\\v\\r\\x03p\\xa0p\\x03\\r\\v\\\"\\x1a=\\x18\\a\\x1a\\x14B//B/6#X$5\\x16\\\"\\x19\\x11PppP\\x11\\x19\\\"\\x165$X#\\n\\xf0/B//B\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc0\\x000\\x00R\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06\\a\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16\\x17\\x166=\\x01463\\x06\\\"&=\\x01462\\x16\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x14\\x01P\\a\\tWA8\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW\\t\\a\\x10\\a\\tB19T\\t\\ahP88P8U\\v\\vUU\\v\\vUU\\v\\vU\\x01\\x00\\t\\a0Bc\\t\\\"\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD(\\a\\t\\t\\a*3N\\x04\\x06M80\\a\\t\\xa08(\\xa0(88(\\b\\x10\\b \\b\\x10\\b \\b\\x10\\b(\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\x12264&\\\"\\x06\\x147\\x114+\\x01\\\"\\x15\\x11\\x14;\\x012\\x01\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14c\\x1a\\x13\\x13\\x1a\\x13\\x90\\f\\xc8\\f\\f\\xc8\\f\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1aY\\x018\\f\\f\\xfe\\xc8\\f\\x00\\x00\\a\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x1d\\x00-\\x002\\x007\\x00?\\x00D\\x00I\\x00\\x00%2\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x015\\x06#\\\"/\\x01&54?\\x016;\\x012\\x1d\\x01%2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1334&#5265#\\x12264&\\\"\\x06\\x14\\x055\\\"\\x06\\x1575#\\x14\\x16\\x01`\\b\\b@\\b\\b\\x10\\x02\\x03\\x04\\x03\\b\\x02\\x04\\x0f\\x06\\a\\x0e\\b\\x01\\x10\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x10@%\\x1b\\x1b%@\\xe8P88P8\\x01p\\x1b%@@%\\xa0\\b\\x10\\b\\b\\x10\\b7\\x01\\x03\\x0e\\x02\\x02\\x04\\x03\\n\\x04\\bX\\xe0\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\xfe\\xb0\\x1b%\\xa0%\\x1b\\xff\\x00B\\\\BB\\\\b@%\\x1b\\xe0@\\x1b%\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\r\\x00(\\x00\\x00%67\\x17\\x06#\\\"/\\x01&?\\x016\\x17\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x17\\x0167'&?\\x016\\x1f\\x01\\x16\\x15\\x14\\a\\x01\\f\\x0f\\x13Py\\x95\\x13\\x04\\x18\\x05\\x13p\\x10\\f\\x01\\x9f\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\r\\x01a\\x1d\\x11<\\x0e\\a0\\b\\x13h\\x13eC\\a\\v>W\\x13h\\x13\\b0\\a\\x0e\\x89\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\t\\xfe\\xee$%2\\v\\x11p\\x12\\x05\\x18\\x04\\x13\\xa0\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xaa4&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x1c'\\r\\t\\xb4\\t\\r\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x80&4&&4\\xc7\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\v\\x00\\x00\\x01\\xff\\xff\\xff\\xdc\\x02\\x00\\x01\\xa5\\x00 \\x00\\x00\\x1376\\x16\\x1d\\x01\\x1e\\x04\\x15\\x14\\x06\\a\\x06&7>\\x01.\\x04'\\x15\\x14\\x06/\\x01&4\\b\\xb0\\f\\x1c4PL2\\x1e0#\\v\\x15\\x04\\t\\x06\\a\\x15\\x1e.6\\\"\\x1c\\f\\xb0\\b\\x01\\x02\\x98\\n\\r\\x0fP\\x01\\t\\x19)B,,U\\x19\\b\\x0e\\f\\x1f2&\\x1d\\x13\\r\\x05\\x01X\\x0f\\r\\n\\x98\\a\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x10\\xff\\xbc\\x01\\xf0\\x01\\xc0\\x00\\x1a\\x00\\x1f\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x0e\\x03\\a\\x06'.\\x0354>\\x03?\\x0162\\x17\\x03>\\x017'\\x01\\xd2\\x0e\\x10\\x1e.=9\\x1c\\x12\\x12*M@'\\x03\\x05\\a\\t\\x06\\xc0\\b\\x14\\b\\x12Kc\\x02\\xb0\\x01l\\x05\\x18\\x0f?sSC)\\v\\b\\b\\x11C_\\x82G\\x06\\v\\n\\b\\a\\x02P\\x04\\x04\\xfeF%\\xa2lJ\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x147\\x114#!\\\"\\x15\\x11\\x143!2\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xa3\\x1a\\x13\\x13\\x1a\\x13\\xd0\\f\\xfe\\xb8\\f\\f\\x01H\\f\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1aY\\x018\\f\\f\\xfe\\xc8\\f\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\r\\x00\\x1e\\x00&\\x00.\\x00B\\x00L\\x00T\\x00\\x00\\x122\\x16\\x15\\x14\\a\\x06#!\\\"'&54%\\\"\\x0e\\x01\\x15\\x14\\x1632?\\x014761.\\x01\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x14%6.\\x02'&\\x06\\x0f\\x01\\x0e\\x01\\x15\\x14\\x173654'7\\x163264&#\\\"\\a\\x16264&\\\"\\x06\\x14\\xa9\\xee\\xa9'\\t\\x12\\xfeD\\x12\\t'\\x01 \\t\\x0e\\t\\x13\\r\\t\\t\\t\\x02\\x01\\x03\\x10\\xd8\\x1a\\x13\\x13\\x1a\\x13C\\x1a\\x13\\x13\\x1a\\x13\\x01\\x17\\x01\\x01\\x04\\a\\x04\\n\\x12\\x03=\\x19#\\tn\\t\\x17L\\n\\x11\\r\\x13\\x13\\r\\x05\\x06.\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0\\xa9wNC\\x0f\\x0fCNwi\\t\\x0e\\t\\r\\x13\\x06\\x1c\\x01\\x03\\x02\\v\\r\\xfe\\xe0\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a5\\x05\\n\\b\\x06\\x02\\x03\\t\\t\\xb8\\x02%\\x19\\x11\\x0f\\x0f\\x11\\x1d\\x13\\u007f\\x0f\\x13\\x1a\\x13\\x02\\xde\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x03\\x00\\x1f\\x00/\\x00\\x00\\x13!\\x15!$\\x14\\x163\\x15\\x14\\x06#!\\\"&=\\x01264&#5463!2\\x16\\x1d\\x01\\\"'4&#!\\\"\\x06\\x1d\\x01\\x14\\x163!265\\x80\\x01@\\xfe\\xc0\\x01\\x90\\x1c\\x14\\x1c\\x14\\xfe \\x14\\x1c\\x14\\x1c\\x1c\\x14\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x14L\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\x01P\\n\\x0e\\x01 \\xc0t(\\x1c`\\x14\\x1c\\x1c\\x14`\\x1c(\\x1c`\\x14\\x1c\\x1c\\x14`8\\n\\x0e\\x0e\\n\\xd0\\n\\x0e\\x0e\\n\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x1b\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x01<xTTxT\\x105K\\x1c\\x14\\xfe`\\x14\\x1cK57#L#\\xa0TxTTxtK5\\x10\\x14\\x1c\\x1c\\x14\\x105K\\x10\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01LCC\\t\\t(\\t\\tBB\\t\\t(\\t\\tCC\\t\\t(\\t\\tBB\\t\\t(\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xdeBB\\t\\t(\\t\\tCC\\t\\t(\\t\\tBB\\t\\t(\\t\\tCC\\t\\t(\\t\\x00\\x02\\xff\\xf9\\xff\\xd9\\x01\\xc7\\x01\\xa7\\x00\\x13\\x00'\\x00\\x00?\\x01'&6;\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06/\\x01&\\x01\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x0176\\x1f\\x01\\x16\\x05c!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1fc\\f\\v\\x19\\f\\x01\\xc2c!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1fc\\f\\v\\x19\\f\\x15c\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v!c\\f\\f\\x19\\v\\x01bc\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v!c\\f\\f\\x19\\v\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x13\\x00(\\x00\\x007\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x0176\\x1f\\x01\\x16?\\x01'&6;\\x012\\x1e\\x01\\x1d\\x01\\x14\\x06/\\x01\\a\\x06/\\x01&\\xd5]!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1f]\\v\\v\\x1a\\v\\v]!\\v\\f\\x10p\\a\\v\\x06\\x1e\\v\\x1f]\\v\\v\\x1a\\v\\x85]\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v!]\\v\\v\\x1a\\vk]\\x1f\\v\\x1e\\x06\\v\\ap\\x10\\f\\v!]\\v\\v\\x1a\\v\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00 \\x00&\\x00,\\x00\\x00%\\x16\\x17\\x06#\\\"'67'\\x06\\a&47\\x16\\x177&'62\\x17\\x06\\a\\x1767\\x16\\x14\\a&'%6'\\a\\x16\\a7\\x06\\x177&7\\x01p\\x13!HddH \\x14\\x1d\\x11\\x1c66\\x1c\\x10\\x1d\\x13 H\\xc8H \\x13\\x1d\\x10\\x1c67\\x1b\\x11\\xfe\\xff\\x19\\x19\\x1f\\x16\\x15\\xf6\\x19\\x19\\x1e\\x15\\x16T'\\x1fFF\\x1f'\\x0e!\\x1cD\\xaeD\\x1b!\\x0f&\\x1eFF\\x1f&\\x0e!\\x1bD\\xaeD\\x1b\\\"\\x12MM\\nCC\\x90MM\\nBD\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x04\\x00\\n\\x00\\x0f\\x00\\x15\\x00\\x1b\\x00 \\x00&\\x00+\\x00\\x00\\x13\\x06\\a'6\\x17'67\\x16\\x17\\x05\\x17\\x06\\a6\\x05'7\\x16\\x17\\x06\\a\\x17\\x06\\a&'%'67\\x06%\\x17\\a&'6\\x1767\\x17\\x06\\xd4\\x02*N5i.9\\x01S?\\xfe\\xa2N7M\\n\\x01<.\\x9e4\\x04b\\x96.8\\x02S?\\x01^N7M\\n\\xfe\\xc4.\\x9e4\\x04b\\xba\\x02*N5\\x01\\xb6M7N,\\xca.Fb\\x044\\\"N*\\x02E\\x97.\\x9e?S\\x02,.Fb\\x044\\\"N*\\x02E\\x97.\\x9e?S\\x01\\xebM7N,\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x146\\x14\\x16264&\\\"\\x16264&\\\"\\x06\\x14\\x91Α\\x91Αk\\x1a\\x13\\x13\\x1a\\x13`\\x13\\x1a\\x13\\x13\\x1a\\x10\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce'\\x13\\x1a\\x13\\x13\\x1aZ\\x1a\\x13\\x13\\x1a\\x13\\xb0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00;\\x00S\\x00s\\x00{\\x00\\x93\\x00\\x007'&546;\\x015#\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x1532\\x16\\x15\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x17#65#\\\"&=\\x01463\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01546;\\x012\\x16\\x1d\\x017'&=\\x014;\\x012\\x1d\\x01354;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x14\\x0f\\x01\\x17#7\\x15354&\\\"\\x06\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01546;\\x012\\x16\\x1d\\x01J\\\"\\x01\\t\\a9\\x18\\b\\b\\x18\\b\\x10\\b\\x18\\b\\b\\x189\\a\\t\\x01\\\"\\n\\a\\t\\t\\a\\x10\\x10\\x80\\x10\\x10\\a\\t\\t\\a\\xb7\\t\\t\\a\\xe0\\a\\t\\t\\x17\\t\\a\\xa0\\a\\tt\\x19\\v\\x06\\x1a\\x06\\x19\\x066\\x06\\x19\\x06\\x1a\\x06\\v\\x19\\x03~/ \\t\\x0e\\tw\\t\\t\\a\\xc0\\a\\t\\t\\x17\\t\\a\\x80\\a\\t\\xf0Z\\x03\\x03\\a\\t \\b\\x10\\b\\x18\\b\\b\\x18\\b\\x10\\b \\t\\a\\x03\\x03Z\\t\\a\\x10\\a\\tA??A\\t\\a\\x10\\a\\t\\xfc\\x04\\n\\x16\\a\\t\\t\\a\\x16\\n\\x04\\f\\x10\\a\\t\\t\\a\\x10\\x92\\x15\\n\\x0e;\\x06\\x06\\x1a\\x1a\\x06\\x06\\x1a\\x1a\\x06\\x06;\\x0e\\n\\x15RP  \\a\\t\\t\\xa3\\x04\\n\\x16\\a\\t\\t\\a\\x16\\n\\x04\\f\\x10\\a\\t\\t\\a\\x10\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00#\\x003\\x00\\x007467.\\x01546;\\x012\\x16\\x15\\x14\\x06\\a\\x16\\x17\\a\\x06\\x14\\x1f\\x01\\x162?\\x01\\x16\\x15\\x14\\a\\x15#5&\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\bG*\\v\\x0e\\x13\\r@\\r\\x13\\x0e\\v&!l\\x02\\x02\\f\\x02\\a\\x02d\\x1b8\\xc08\\x01(\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\xa05\\x8a\\\"\\x03\\x11\\v\\r\\x13\\x13\\r\\v\\x11\\x03\\x1f=l\\x02\\a\\x02\\f\\x02\\x02e<+C\\x11,,\\x11]\\t\\a \\a\\t\\t\\a \\a\\t\\x00 \\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00C\\x00G\\x00K\\x00O\\x00S\\x00W\\x00[\\x00_\\x00c\\x00g\\x00k\\x00o\\x00s\\x00w\\x00{\\x00\\u007f\\x00\\x00\\x01\\x15#5\\a3\\x15#7\\x15#5\\x133\\x15#'3\\x15#\\x01\\x15#53\\x15#5\\x01\\x15#5\\x05#535#53\\x0353\\x15\\x13#53\\x0153\\x15#53\\x15353\\x15%3\\x15#\\x01#53\\a53\\x15\\a3\\x15#753\\x15'53\\x15\\a3\\x15#%3\\x15#\\x13#53\\x1353\\x15'#5373\\x15#\\a3\\x15#'\\x15#5\\x0553\\x15%\\x15#5\\x173\\x15#\\x01\\x00@\\xc0@@\\x80@\\x80@@\\xc0@@\\x01\\x80@\\xc0@\\xfe\\xc0@\\x01\\xc0@@@@\\x80@@@@\\xfe\\x80@\\xc0@\\xc0@\\xfe\\xc0@@\\x01@@@@@\\x80@@\\x80@@@@@@\\xff\\x00@@\\x80@@\\xc0@\\xc0@@\\x80@@\\x80@@@@\\x01\\x00@\\xfe\\xc0@@@@\\x01\\xc0@@@@\\x80@@\\xff\\x00@\\x80@\\x01\\x00@@@@\\xff\\x00@@\\xc0@@@\\xff\\x00@@\\x01@@\\xfe\\x80@@@@@@\\xc0@\\x01\\x00@\\xc0@@\\x80@\\x80@@\\x80@@\\xc0@@@\\x01@@\\xfe\\xc0@@\\xc0@@@\\xc0@\\xc0@@@@@\\x80@@\\xc0@\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x006\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x1e\\x01\\x15\\x14\\x0f\\x01!'&546;\\x015#\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x01\\x90\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01p\\t\\x0e\\t\\x01J\\xfe\\xd6J\\x01\\x13\\r\\xa0(\\b\\b(\\b0\\b(\\b\\b(\\t\\a \\a\\t\\t\\a \\a\\t\\x01 \\t\\x0e\\t\\x05\\x05\\xd6\\xd6\\x05\\x05\\r\\x130\\b0\\b(\\b\\b(\\b0\\b0\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xa0\\x00'\\x00/\\x00?\\x00\\x007.\\x01=\\x014?\\x01'&54;\\x012\\x16\\x1d\\x01!54>\\x01?\\x01>\\x01=\\x01\\a\\x06\\x0f\\x01\\x06\\x0f\\x01\\x06#\\\"'4\\\"\\x06\\x14\\x16264\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x13\\b\\v\\a\\t\\x0e\\x02\\f\\x94Oq\\xfe\\xc0\\f\\x14\\f9\\v\\x10\\x16\\n\\x03\\t\\x04\\x0f\\f\\x06\\x06\\a\\x06\\x10\\f\\f\\x10\\f\\x01(\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\xb0\\x03\\x11\\t\\x89\\n\\a\\t\\x1c\\x04\\x04\\fpP\\xc0\\x0f\\r\\x1d\\x17\\x06\\x1d\\x05\\x19\\r2\\v\\x05\\v\\x1e\\x0f\\x06\\x05\\x02\\x02\\xa3\\f\\x10\\f\\f\\x10\\xfe\\xcc\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xa0\\x00#\\x003\\x00\\x007.\\x015462\\x16\\x15\\x14\\x06\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x17#6=\\x01#\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463i\\x16\\x1b=V=\\x1b\\x16\\x19\\a\\t\\t\\a\\x10\\x18\\xb0\\x18\\x10\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\xe0\\x0e/\\x1b+==+\\x1b/\\x0e\\t\\a \\a\\t\\x05P++P\\x05\\t\\a \\a\\t\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x17\\x00I\\x00\\x00\\x00\\\"&462\\x16\\x14\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\x16\\x15\\x14\\x0f\\x01!'&54?\\x016\\x17\\x1e\\x01323>\\x01546;\\x012\\x17\\x1e\\x012676;\\x012\\x16\\x15\\x14\\x16\\x17\\x1632676\\x17\\x01\\x17.!!.!x\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01\\xa9\\a\\x02f\\xfe\\xd0f\\x02\\a\\x1d\\f\\n\\x06\\x16\\n\\x02\\x01\\x13\\x1a\\b\\x05'\\v\\x02\\x03\\x1c \\x1c\\x03\\x02\\v'\\x05\\b\\x16\\x11\\x04\\x05\\n\\x16\\x06\\n\\f\\x01P!.!!.\\xfe\\x8f\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\b\\x05\\b\\x04\\x04\\xd3\\xd3\\x04\\x03\\t\\x05\\x10\\b\\r\\b\\v\\x01\\x1e\\x14\\x05\\b\\n\\x10\\x16\\x16\\x10\\n\\b\\x05\\x12\\x1d\\x03\\x01\\v\\b\\r\\b\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xa0\\x00#\\x00+\\x00;\\x00\\x00\\x012\\x16\\x1d\\x01\\a\\x14\\x17!65'546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x0135463\\x0354&\\\"\\x06\\x1d\\x01\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01p\\a\\t@\\r\\xfe\\xe6\\r@\\t\\a8\\a\\t0\\t\\aP\\a\\t0\\t\\aX\\x13\\x1a\\x13\\xd0\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01\\xa0\\t\\a\\xb0 VJJV \\xb0\\a\\t\\t\\a00\\a\\t\\t\\a00\\a\\t\\xfe\\xe0@\\r\\x13\\x13\\r@\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x17\\x00/\\x00S\\x00\\x00\\x132\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\\"=\\x014;\\x015463\\x052\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x01'2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x0135463h\\n\\x0e\\x0e\\n0\\n\\x0e\\x18\\b\\b\\x18\\x0e\\n\\x02@\\b\\b\\x18\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x98\\n\\x0e\\x0e\\n0\\n\\x0e\\x80\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x80\\x0e\\n\\x01`\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\nh\\b0\\bh\\n\\x0e\\x80\\b0\\bh\\n\\x0e\\x0e\\n\\x01\\x10\\n\\x0e\\x0e\\nh\\xc0\\x0e\\n\\xfep\\n\\x0e\\x0e\\n\\xa8\\xa8\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n\\xa8\\xa8\\n\\x0e\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x06\\x00\\r\\x00\\x15\\x00Q\\x00\\x00\\x01\\x16\\x17'\\x16\\x17\\x16\\x01&'\\x17&'&'>\\x017\\x17\\x0e\\x01\\a\\x13\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x0176/\\x01&\\x01\\xe2\\r\\x01\\x9d63\\x1e\\xfe4\\r\\x01\\x9d63\\x1e\\x12\\x11\\x98g\\xd8\\x11\\x98gf\\x1d\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x17\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x16\\x1d\\x05\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x05\\x1d\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x17\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x16\\x1d\\x05\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x01\\x8445\\x9d\\x01\\x0e\\b\\xfe[45\\x9d\\x01\\x0e\\b\\xc6o\\x91\\x0f\\xd9o\\x91\\x0f\\x01T\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x17\\x1d\\x05\\x05\\v\\x06\\x06\\x1c\\x17\\x1d\\x05\\x05\\f\\x05\\x06\\x1c\\x1d\\x05\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x05\\x1d\\x16\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x17\\x1d\\x05\\x05\\f\\x05\\x06\\x1c\\x1d\\x05\\x06\\v\\x06\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xa0\\x01\\xc0\\x00\\x15\\x00#\\x00-\\x008\\x00B\\x00\\x0073\\x14\\x06+\\x01\\\"\\x06\\x1d\\x01\\x14+\\x01\\\"=\\x014&+\\x01\\\"&%\\x14\\x0e\\x02\\a#.\\x015462\\x16\\a2654'\\x16\\x06'\\x16\\x174'\\x16\\x0e\\x01'\\x1632674'\\x16\\x06'\\x16326`\\xe0\\x13\\r\\x10\\r\\x13\\f(\\f\\x13\\r\\x10\\r\\x13\\x01@\\x0e\\x1a$\\x16\\xdc-5z\\xacz\\xb4\\x0e\\x13\\x16\\a\\x1d\\x14\\bH\\x16\\x05\\v\\x17\\r\\b\\x17\\x0e\\x13@\\x16\\a\\x1d\\x14\\b\\x17\\x0e\\x13 \\r\\x13\\x13\\r\\x14\\f\\f\\x14\\r\\x13\\x13\\xdd\\x1b5,&\\x0e\\x1c]7Vzz\\x82\\x13\\x0e\\x17\\b\\x14\\x1d\\a\\x16/\\x17\\b\\r\\x17\\n\\x04\\x16\\x14M\\x17\\b\\x14\\x1d\\a\\x16\\x14\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\a\\x00\\x12\\x00\\x00<\\x0162\\x16\\x14\\x06\\\"'\\x1e\\x0167\\x15\\x14\\x06\\\"&5\\x96Ԗ\\x96Ԗ7\\xc9\\xc97\\x96Ԗ\\xf8P88P8\\x0e(\\x1e\\x1e(n(88(\\x00\\x03\\x00\\x00\\xff\\xbd\\x02\\x87\\x01\\xc7\\x00\\x17\\x00#\\x005\\x00\\x00%\\x17\\x14\\x0e\\x03\\a\\x0e\\x01/\\x016?\\x016&\\x0f\\x0167>\\x013\\x052\\x16\\x14\\x06\\\"&54>\\x02\\x13\\x16\\x0f\\x01\\x17\\x16\\x06\\x0f\\x01'7>\\x01\\x1f\\x0176\\x17\\x01\\x00W\\x03\\r\\x0f\\x1d\\x10\\x1b\\x8565\\x04\\a_\\x03\\x06\\x04<\\x19\\x1d\\x1bQ\\x1c\\x01\\t\\\"..C.\\f\\x16\\x1d\\x9e\\n\\f\\xe8\\\"\\x03\\x04\\x06;V\\x19\\x03\\f\\x04\\\"\\xe8\\r\\n\\xe7m\\x04\\x0f($*\\r\\x15\\x11\\x02\\x02\\x17 p\\x04\\a\\x01\\x16J\\x17\\x16\\x14\\x88/B//!\\x11\\x1d\\x16\\f\\x01A\\r\\n\\xb1+\\x05\\f\\x01\\fm7\\x05\\x01\\x04+\\xb2\\t\\f\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00\\x00\\x05!\\x11!\\x02\\x00\\xfe\\x00\\x02\\x00@\\x02\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\t\\x01\\xc0\\x00\\n\\x00\\x1f\\x00'\\x00\\x00%&\\x06\\a'762\\x17\\x1e\\x01\\a\\x06\\x15\\x14\\x17&/\\x01\\a\\x06\\\"/\\x01&4?\\x01'.\\x017\\x042\\x16\\x14\\x06\\\"&4\\x01\\xf00q\\\"\\xd48?\\xb2?/\\x18\\xf2\\x06\\v)\\x1d$Y\\x06\\x11\\x065\\x06\\ag#\\x1d\\t\\x15\\x01>P88P8\\x98 \\x14/\\xd48??/\\x81\\x89\\x16\\x12\\x1d\\x1a\\x05\\x1c$g\\a\\x065\\x06\\x11\\x06Y#\\x1dQ\\\"\\xa48P88P\\x00\\x00\\x06\\xff\\xfd\\xff\\xc7\\x01\\xf8\\x01\\xbd\\x00\\n\\x00\\x12\\x00\\x1c\\x00(\\x002\\x00@\\x00\\x007\\x0e\\x01\\a.\\x01'>\\x017\\x16'\\x0e\\x01\\a&67\\x16\\x17&'.\\x01'6\\x17\\x1e\\x01\\a\\x16\\x1767\\x06\\a\\x06&'>\\x01\\a\\x167\\x0e\\x01#\\\"&'6\\x13\\x1e\\x02\\x15\\x1c\\x01\\x15\\x06#0#6&\\xe7-V\\x0f\\x0f!\\t\\x11`D\\x15$>_\\x19\\x0fGE#\\xd270\\x017%0344\\x84LS)(\\f\\x1eF\\x92>\\x0e/Ov\\x8b\\x1d]&\\x1dK\\x19\\n\\xca0K*,-\\x01\\x06'\\xcd\\x1dp4\\x0f/\\x13Gr 2O\\x1ec?Q\\x90&\\x1f\\xcd\\x06\\x1b6\\x82'\\x0e\\x062\\x8bU(\\x01\\x01\\n1)\\x15\\x1a+\\x12*WR\\x14\\x19\\\"\\x15\\x0f/\\x01\\x8e\\x11D_5\\x01\\x04\\x01\\x0eE\\x83\\x00\\x00\\x00\\x00\\b\\xff\\xfd\\xff\\xbf\\x01\\xc0\\x01\\xc0\\x00:\\x00B\\x00J\\x00R\\x00Z\\x00b\\x00j\\x00r\\x00\\x00\\x002\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&>\\x01\\x16\\x1f\\x015462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x01\\x14;\\x012=\\x014\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x93\\x1a\\x13\\x05\\x1b\\x03\\x1b\\x10\\xc6\\x18\\x0f}\\n\\x05\\x1b!\\t\\x18\\x13\\x1a\\x13\\b\\x10\\b\\x13\\x1a\\x13\\b\\x10\\b\\x13\\x1a\\x13\\b\\x10\\b\\xd7\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t\\x01P\\x13\\r\\xb0\\x16\\x14q\\x10\\x15\\x14\\xac\\x0e!\\x13\\x05\\r!\\xf1\\r\\x13\\x13\\r\\x98\\b\\b\\xb8\\r\\x13\\x13\\r\\xb8\\b\\b\\x98\\r\\x13\\x13\\r\\x98\\b\\bH\\r\\xfe\\xe3\\t\\x0e\\t\\t\\x0eW\\t\\x0e\\t\\t\\x0e\\x89\\t\\x0e\\t\\t\\x0eW\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0eI\\t\\x0e\\t\\t\\x0ew\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\t\\x00\\x13\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00\\x00\\x1146;\\x01\\x11#\\\"&5\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11\\x01\\x11!\\x11&\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264&\\x1a``\\x1a&\\x02@\\x1a&&\\x1a`\\xfe\\xe0\\x01\\x00F\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0en\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x01 \\x1a&\\xfe\\xc0&\\x1a\\x01\\x00&\\x1a\\xc0\\x1a&\\x01@\\xfe\\xc0\\x01@\\xfe\\xc0\\xe8\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14n\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x12\\x00\\x1c\\x00\\x00\\x010\\x17#532\\x1e\\x01\\x17'\\x15#617>\\x013\\a!\\x15\\x14\\x06#!\\\"&5\\x01\\xfe\\x01\\xef\\x8d\\v\\x12\\x0e\\x03\\xdb\\xef\\x013\\x05\\x19\\x10c\\x02\\x00\\x1c\\x14\\xfe`\\x14\\x1c\\x01\\a\\a\\xc0\\b\\x0f\\n!\\xc0\\a\\x98\\x0f\\x12\\xe0\\xf0\\x14\\x1c\\x1c\\x14\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x14\\x00)\\x00>\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x157\\x175%\\\"&=\\x0146;\\x01\\x157\\x17532\\x16\\x1d\\x01\\x14\\x06#\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x157\\x175\\x020\\a\\t\\t\\a\\xe0\\a\\t\\t\\aP  \\xfe\\xd0\\a\\t\\t\\aP  P\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xe0\\a\\t\\t\\aP  \\xa0\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t`\\x15\\x15`@\\t\\a\\xc0\\a\\t`\\x15\\x15`\\t\\a\\xc0\\a\\t@\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t`\\x15\\x15`\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xa0\\x00\\x19\\x00\\x1d\\x009\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x01'\\x1535\\x1754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14P\\x1c\\x14\\xa0\\x14\\x1c\\xc0\\x80 \\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01@\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c0\\x14\\x1c\\x1c\\x140   \\xf80\\b8\\b\\b8\\b0\\b8\\b\\b8\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\n\\x00\\x13\\x00\\x00\\x13\\x1e\\x01\\x15\\x14\\x06\\\"&546\\x122654'\\x06\\x15\\x14\\xc0Ukk\\xaakj,T6``\\x01\\xc0M\\xa5:^vv^:\\xa5\\xfe\\x8d5*8ii8*\\x00\\x03\\x00\\x00\\xff\\xe0\\x02G\\x01\\xa0\\x00\\x1d\\x00%\\x00/\\x00\\x00%\\x16\\x06\\a\\x06#\\\"/\\x01&'\\x15\\x14\\x06\\\"&=\\x014632\\x16\\x1767632\\x17\\x0554&\\\"\\x06\\x1d\\x01\\x057'&#\\\"\\a\\x0e\\x01\\x17\\x02+\\x1b\\x10'\\x1d$<\\\"\\x83\\a\\x06B\\\\BB.-@\\x02\\r\\x1d\\x1d$<\\\"\\xfe\\xf8\\x1c(\\x1c\\x01#RA\\x0f\\x1b\\x10\\f\\x12\\a\\f\\x94']\\x1b\\x151\\xbb\\n\\x0f\\x95.BB.\\xe0.B>,!\\x14\\x151\\x8fp\\x14\\x1c\\x1c\\x14p-:]\\x16\\t\\f)\\x11\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00-\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15&\\\"\\x06\\x14\\x16264\\x176/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x167\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&6\\x14\\x0e\\x0e\\x14\\x0ea\\t\\t\\x1c\\b\\tj.\\b\\t\\x1c\\t\\tR\\t\\b\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x18\\x0e\\x14\\x0e\\x0e\\x14\\xda\\t\\b\\x1d\\b\\bj/\\b\\b\\x1c\\t\\bT\\b\\b\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00%\\x00-\\x005\\x00A\\x00M\\x00Y\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x146\\\"\\x06\\x14\\x16264\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&\\xaa\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x82\\x14\\x0e\\x0e\\x14\\x0eh\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\xfe\\x98\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14\\xb2\\x0e\\x14\\x0e\\x0e\\x14\\xfe\\x9e\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x003\\x00;\\x00C\\x00K\\x00[\\x00\\x00$\\\"&462\\x16\\x14&\\\"&462\\x16\\x14\\x05'&6767\\x1665632\\x17\\x06\\x1667\\x16\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01'&'\\x15#5\\x06\\a\\x06&$\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"&462\\x16\\x14\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xf7\\x0e\\t\\t\\x0e\\t\\x9cH44H4\\xfe\\xa4\\x12\\a\\x05\\f\\v\\x12\\x187VJ<E\\x05 /\\x0e\\x1c\\x17\\r\\x04\\a\\x12\\a\\x1a\\n27\\xe081\\n\\x1a\\x017\\x14\\x0e\\x0e\\x14\\x0en\\x14\\x0e\\x0e\\x14\\x0e\\xb1\\x0e\\t\\t\\x0e\\t\\x01\\xf0\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\xc0\\t\\x0e\\t\\t\\x0eG4H44H\\xf0\\x1b\\t\\x1c\\b\\x06\\n\\x14\\x19\\x1f \\x16\\x19#\\x03\\x16\\r\\x0e\\b\\x1c\\t\\x1b\\v\\x05\\x06\\x1e\\x13[[\\x13\\x1e\\x06\\x05\\x1f\\x0e\\x14\\x0e\\x0e\\x14n\\x0e\\x14\\x0e\\x0e\\x14\\x06\\t\\x0e\\t\\t\\x0e\\xc9\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xbf\\x01\\xc1\\x01\\xc1\\x00<\\x00A\\x00G\\x00M\\x00\\x00\\x15>\\x037.\\x03'&6;\\x012\\x17\\x16\\x17!676;\\x012\\x16\\a\\x0e\\x04\\a\\x06\\a3&'67\\x1e\\x02\\x17\\x16\\x06+\\x01\\\"'&'!\\x06\\a\\x06+\\x01\\\"&\\x1367#\\x167!\\x16\\x1736\\x03!&'#\\x06\\x03\\x0e B--B \\x0e\\x03\\x01\\n\\a \\x0e\\x02\\x02\\x02\\x018\\x02\\x02\\x02\\x0e \\a\\n\\x01\\x02\\n\\x1e*M1,\\\"\\u007f\\r\\x04 \\x1b*9\\x11\\x03\\x01\\n\\a \\x0f\\x01\\x01\\x03\\xfe\\xc8\\x02\\x02\\x02\\x0e \\a\\n\\xe1$\\x1c\\x80\\x1c\\xa7\\xfe\\xfa\\t\\f\\xdc\\f\\xfd\\x01\\x05\\b\\r\\xdb\\f.\\x15/DI\\x1d\\x1dID/\\x15\\a\\v\\x0e\\b\\n\\n\\b\\x0e\\v\\a\\x12(?9@\\x19\\x16\\x1d\\f\\x02\\x11\\x13$Z8\\x1a\\a\\v\\x0e\\x06\\f\\t\\t\\x0e\\v\\x01\\x19\\x14\\x18\\x18h\\x10\\x10\\x10\\xfe\\xd0\\x10\\x10\\x10\\x00\\x00\\x03\\x00\\x00\\xff\\xb9\\x02B\\x01\\xc0\\x00\\x15\\x005\\x00=\\x00\\x00%'&>\\x01?\\x01\\x177'76\\x1e\\x02\\x1f\\x01\\x16\\x06\\x0f\\x01&\\x17\\x16\\x06\\x0f\\x01\\x0e\\x01'.\\x01'&7\\x03#\\\"&=\\x0146;\\x012\\x17\\x13\\x16\\x1776\\x16\\x17\\x04264&\\\"\\x06\\x14\\x01&5\\x01\\x01\\x06\\x04>!=!=\\x03\\x06\\x06\\x04\\x01<\\x02\\x06\\x06\\xa1\\x17\\xfe\\x02\\x06\\x06\\xd5\\x01D-\\x1d+\\x05\\b,\\\\Y\\a\\t\\t\\ap\\x17\\ad-\\x1c\\xd6\\x06\\f\\x02\\xfe\\xb7(\\x1c\\x1c(\\x1c\\xaa\\xa0\\x04\\b\\a\\x01\\x14c\\x14c\\x15\\x01\\x01\\x02\\x05\\x03\\xb5\\a\\f\\x025\\x11)\\a\\v\\x03G,8\\b\\x05,\\x1e7#\\x01\\x15\\t\\a \\a\\t\\x16\\xfe\\xd6\\x01$G\\x02\\x06\\x06\\xa8\\x1c(\\x1c\\x1c(\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x14\\x00B\\x00\\x007\\\"&5\\x1146;\\x01\\x157\\x17532\\x16\\x15\\x11\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547#\\\"&5\\x11#\\\"&=\\x0146;\\x012\\x16\\x15\\x11\\xd0\\a\\t\\t\\a\\x9000\\x90\\a\\t\\t\\a \\a\\t\\t\\aS\\x03\\x1c(\\x1c\\x03\\xc6\\x03\\x1c(\\x1c\\x03S\\a\\t0\\a\\t\\t\\a`\\a\\t\\x80\\t\\a\\x01\\x00\\a\\t\\x80  \\x80\\t\\a\\xff\\x00\\a\\t@\\t\\a \\a\\t\\t\\a\\x14\\x1c\\x1c\\x14\\b\\b\\t\\a\\x14\\x1c\\x1c\\x14\\b\\b\\t\\a\\x01p\\t\\a \\a\\t\\t\\a\\xfe\\x90\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x006\\x00\\x00\\x01\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x134+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x01325\\x01y\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8@\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01W\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xd8\\b8\\b\\b8\\b0\\b8\\b\\b8\\b\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00/\\x008\\x00\\x00\\x01\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&=\\x013\\x17\\x162?\\x01\\x173264&+\\x01'&\\\"\\x0f\\x01'&+\\x01\\\"=\\x014;\\x01546;\\x01\\x17\\x16\\x1d\\x01#532\\x17\\x01 \\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0eF#\\x02\\n\\x029\\x16Z\\a\\t\\t\\aF#\\x02\\n\\x029\\x14\\x02\\x05\\x8d\\b\\b8\\x0e\\nș\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\xa8F\\x04\\x04r,\\t\\x0e\\tF\\x04\\x04r(\\x04\\b\\x10\\b\\xe8\\n\\x0ei\\a\\n\\x06\\x80\\a\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\r\\x00)\\x003\\x00\\x00\\x1146;\\x01\\x11#\\\"&5\\x17\\x11!\\x11%\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"%2\\x16\\x15\\x11\\x14\\x06+\\x01\\x11\\x1c\\x1400\\x14\\x1c\\x80\\x01@\\xff\\x00\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01P\\x14\\x1c\\x1c\\x140\\x01p\\x14\\x1c\\xfe@\\x1c\\x140\\x01\\xc0\\xfe@\\xf80\\b8\\b\\b8\\b0\\b8\\b\\b8\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01\\xc0\\x00\\b\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x19\\x00%\\x001\\x00=\\x00I\\x00e\\x00q\\x00}\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x01\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02 \\r\\x13\\t\\a\\xfd\\xe0\\a\\t\\x13\\r\\x80\\x13\\r\\xc0\\r\\x13\\xff\\x00\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x10\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x90\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01`\\x13\\r\\xfe\\x90\\a\\t\\t\\a\\x01p\\r\\x13@\\r\\x13\\x13\\r@\\xfe\\xac(\\f\\f(\\f\\x8c(\\f\\f(\\ft(\\f\\f(\\f\\x8c(\\f\\f(\\f\\xb6\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\xfe\\xdc(\\f\\f(\\f\\x8c(\\f\\f(\\f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00#\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0554+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x013\\x15\\x14;\\x012\\x96Ԗ\\x96Ԗ\\x01p\\b0\\b`\\b0\\b\\b0\\b`\\b0\\b\\x01\\xc0\\x96Ԗ\\x96\\xd4\\xe2\\xf0\\b\\bXX\\b\\b\\xf0\\b\\bXX\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x13\\x00\\x1b\\x00.\\x008\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1535\\x06\\\"\\x06\\x14\\x16264\\x1726'.\\x01+\\x01\\x06\\\"'#\\\"\\x0e\\x01\\a\\x06\\x163\\x13\\x15#546;\\x012\\x16\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x90\\xc0F4&&4&\\x1d\\b\\n\\x02\\x06\\\"\\x15\\b\\x13*\\x13\\b\\x0e\\x19\\x12\\x04\\x02\\n\\b\\x9d\\x80\\x13\\r@\\r\\x13\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c``\\xa0&4&&4\\xba\\r\\a\\x13\\x19\\b\\b\\v\\x14\\r\\a\\r\\x01\\xa0``\\r\\x13\\x13\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x009\\x00E\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15&\\\"\\x06\\x14\\x16264\\x1354+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&6\\x14\\x0e\\x0e\\x14\\x0eH\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\b\\xb0\\b\\b\\xb0\\b\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x18\\x0e\\x14\\x0e\\x0e\\x14\\xfe\\xde0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xc8\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x14\\x008\\x00<\\x00@\\x00\\x007\\\"&=\\x0146;\\x01\\x157\\x17532\\x16\\x1d\\x01\\x14\\x06#\\x17#\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x055#\\x15!5#\\x15\\x90\\a\\t\\t\\ap@@p\\a\\t\\t\\a\\x8000\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a00\\a\\t\\t\\a\\x02`\\a\\t\\t\\xfe\\xa9\\xa0\\x01\\x80\\xa0\\xc0\\t\\a\\xe0\\a\\t\\x80  \\x80\\t\\a\\xe0\\a\\t\\x80@\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a \\a\\t\\t\\a \\a\\t@@@@@\\x00\\x00\\x04\\x00\\x00\\xff\\xdc\\x02D\\x01\\xa0\\x00\\v\\x00\\x13\\x00\\x1d\\x00'\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x014\\x1754&\\\"\\x06\\x1d\\x017\\x17\\x16\\a\\x06.\\x027>\\x01\\x1e\\x01\\a\\x06/\\x01&76B\\\\BB\\\\B\\xa0\\x1c(\\x1c\\xec\\xd2\\a\\a/vT\\b\\\"\\x06\\xc3S\\t#\\x05\\a\\xd3\\x06\\a/\\x01\\xa0B.\\xe0.BB.\\xe0.\\x9ep\\x14\\x1c\\x1c\\x14p\\x1e\\xd3\\a\\x05#\\tSv/\\a7Tv/\\a\\a\\xd2\\a\\x06\\\"\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00!\\x001\\x00\\x00\\x135!\\x11\\x14\\x06#!\\\"&=\\x0132=\\x014+\\x01532=\\x014+\\x01532=\\x014#72\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463 \\x01@\\x13\\r\\xff\\x00\\r\\x13x\\b\\bxx\\b\\bxx\\b\\b\\xd0\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\x01\\x00@\\xfe\\xa0\\r\\x13\\x13\\r@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\xc0\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x19\\x005\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x13\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x01h\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\b\\x01@\\x13\\r\\xff\\x00\\r\\x13@\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01\\xc0\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\xfe \\x01`\\xfe\\xa0\\r\\x13\\x13\\xc50\\b8\\b\\b8\\b0\\b8\\b\\b8\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc1\\x00#\\x00?\\x00G\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x0135463'\\\"=\\x014;\\x012\\x1f\\x01762\\x1f\\x0132\\x16\\x14\\x06+\\x01'\\a\\x06\\\"/\\x01\\x02\\\"&462\\x16\\x14\\x02\\x10.B\\t\\a \\a\\t\\xfe\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a\\x88\\b\\b\\x8d\\x05\\x02\\x142\\x04\\x14\\x04\\x1cf\\a\\t\\t\\az\\x162\\x04\\x14\\x04\\x1cL4&&4&\\xe0B.\\xa0\\a\\t\\t\\a00\\a\\t\\t\\a\\x01`\\a\\t\\t\\a\\xf0\\x90\\a\\t\\x80\\b\\x10\\b\\x04(c\\t\\t7\\t\\x0e\\t,c\\t\\t7\\xff\\x00&4&&4\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00I\\x00Q\\x00Y\\x00^\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&=\\x0132=\\x014+\\x01\\\"=\\x014;\\x012=\\x014+\\x01\\\"=\\x014;\\x012=\\x014#!\\\"=\\x014;\\x015463!2\\x16\\x1d\\x0132\\x1f\\x01\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x1475'#\\x15\\x02p\\a\\t\\t\\a08P8\\x808P8\\x98\\b\\b\\xd0\\b\\b\\xf0\\b\\b\\xd0\\b\\b\\xf0\\b\\b\\xfe\\xf0\\b\\b8\\x1c\\x14\\x01\\x00\\x14\\x1c,\\x14\\x0ed\\x0e\\xfe,(\\x1c\\x1c(\\x1c\\x01\\\\(\\x1c\\x1c(\\x1c\\x80d,`\\t\\a \\a\\t(88((88(\\x80\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b0\\x14\\x1c\\x1c\\x140\\x0ed\\x0e\\x14lp\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\xb4\\fdp\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\v\\x00#\\x003\\x007\\x00N\\x00Z\\x00\\x00%2\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\x03\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014&'&=\\x014;\\x012\\x1d\\x01\\x14\\x032\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x055#\\x15\\x01\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014'&=\\x014;\\x012\\x1d\\x01\\x14\\x172\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\x02x\\b\\b0\\b\\b\\x1f).\\b0\\b$\\x1f\\x1d\\b0\\bp\\a\\t\\t\\a\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x01`\\xb0\\x01\\b\\x1a\\x1e\\b0\\b$<\\b0\\bX\\b\\b0\\b\\b`\\b\\x90\\b\\b\\x90\\b\\x01\\t\\x1bW1\\x1e\\b\\b\\x1e&B\\x14\\x13%>\\b\\b>\\v\\xfe\\xf1\\t\\a\\x80\\a\\t\\x1c\\x14@\\x14\\x1cp@@\\x01B\\x129!\\x1e\\b\\b\\x1e,\\x19*AB\\b\\b>,\\xee\\b\\x90\\b\\b\\x90\\b\\x00\\x02\\xff\\xfc\\xff\\xbc\\x02\\x04\\x01\\xc4\\x00\\x1f\\x00>\\x00\\x00\\x137\\x17\\a\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x01\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016'7\\x16\\x0f\\x01\\x06/\\x01\\a\\x17\\x16\\x0f\\x01\\x06/\\x03&?\\x016\\x1f\\x027'&?\\x016\\x17\\xca@\\x88\\xb6\\x1b&@B\\x06\\x05\\f\\x05\\x05C\\a\\x04\\x1b\\x1a8\\x05\\x06\\v\\x06\\x067-8\\x05\\x06\\v\\x06\\x06\\xfd\\x05\\x05\\f\\x05\\x06\\x1c-I\\x06\\x06\\\"\\x06\\x05\\x11\\x88\\x11\\x06\\x06\\\"\\x06\\x05\\x119-\\x1c\\x06\\x06\\v\\x06\\x05\\x01\\x11A\\x88\\xb5\\x1c\\x05\\aC\\x05\\x05\\f\\x05\\x06B@&\\x1b\\x1b8\\x06\\x06\\v\\x06\\x067.8\\x06\\x06\\v\\x06\\x05\\x95\\x05\\x06\\v\\x06\\x06\\x1c-J\\x05\\x06\\\"\\x06\\x06\\x11\\x88\\x11\\x06\\x05\\\"\\x06\\x06\\x118-\\x1c\\x06\\x05\\f\\x05\\x05\\x00\\x00\\x04\\xff\\xff\\xff\\xc0\\x02\\x84\\x01\\xc4\\x00\\v\\x00\\x1a\\x00$\\x00.\\x00\\x00\\x122\\x16\\x17\\x16\\x06#!\\\"&56\\x052\\x16\\x15\\x0e\\x01#\\\".\\x02'463\\x00\\x1e\\x01\\a\\x06/\\x01&76\\a\\x17\\x16\\a\\x06.\\x0276dx[\\t\\x01\\x06\\x03\\xfe\\xd0\\x03\\x05\\t\\x01/\\x03\\x05\\t[<\\x1e7*\\x1c\\x05\\x05\\x03\\x02\\x1fT\\t#\\x05\\a\\xd3\\a\\a/F\\xd3\\a\\a/vT\\t#\\x05\\x01\\x00M:\\x03\\x06\\x06\\x03:c\\x06\\x03:M\\x15$1\\x1d\\x03\\x06\\x01kTv/\\a\\a\\xd3\\a\\x05#F\\xd3\\a\\x05#\\tTv/\\a\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x02\\x01\\x01\\xc3\\x00(\\x00\\x00\\x01\\x16\\x14\\x0f\\x01#\\a\\x06\\\"&4?\\x0157\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017>\\x01\\x01\\xdd#\\x1c\\xfedY\\a\\x14\\x0e\\aY-2\\x06\\x06\\v\\x06\\x062-2\\x06\\x06\\v\\x06\\x062-2\\x06\\x05\\f\\x05\\x053.\\x1bM\\x01\\xac!R\\x1c\\xfdY\\a\\x0e\\x14\\aYe.3\\x05\\x05\\f\\x05\\x062.3\\x05\\x05\\f\\x05\\x062.3\\x05\\x05\\f\\x05\\x062.\\x1c\\x06\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xcf\\x01\\xe4\\x01\\xb4\\x00\\x15\\x00\\x19\\x00\\x00\\x01\\x16\\x0f\\x01\\x06/\\x01\\a\\x06#\\\"'&6?\\x01'&?\\x016\\x1f\\x017'\\a\\x01\\xde\\x05\\x05\\\"\\x06\\x06\\v\\xf6\\x1e+/\\x1f\\x1b\\x06\\x1e\\xf2\\v\\x05\\x05\\\"\\x06\\x06\\bFO\\x94\\x01\\x06\\x06\\x05\\\"\\x06\\x06\\v\\xf6\\x1e$ R\\x1e\\xf1\\v\\x06\\x06\\\"\\x05\\x05\\xeeEO\\x94\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x13\\x00\\x17\\x00'\\x00;\\x00?\\x00\\x00\\x13\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06\\\"&=\\x013\\x1535\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06\\\"&=\\x013\\x1535H\\b\\b\\xd0\\b\\b\\x18/B/0@\\x01\\xa0\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x01X\\b\\b\\xd0\\b\\b\\x18/B/0@\\x01\\x80\\b0\\b\\b0\\b\\xf0!//!\\xf0``\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x80\\b0\\b\\b0\\b\\xf0!//!\\xf0``\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00A\\x00\\x00%2\\x1d\\x01\\x14#!\\\"=\\x0143\\x052\\x1d\\x01\\x14#!\\\"=\\x0143%2\\x1d\\x01\\x14#!\\\"5743%\\x16\\x15\\x11\\x14+\\x01\\\"=\\x014&#!\\\"\\x06\\x1d\\x01\\x14+\\x01\\\"5\\x1147%62\\x17\\x01\\xf8\\b\\b\\xfe\\x90\\b\\b\\x01p\\b\\b\\xfe\\x90\\b\\b\\x01p\\b\\b\\xfe\\x90\\b\\x01\\b\\x01\\xd9\\x1e\\bP\\b\\x13\\x0e\\xfe\\x82\\x0e\\x13\\bP\\b\\x1e\\x01\\x10\\b\\x14\\b`\\b0\\b\\b0\\b`\\b0\\b\\b0\\b\\xc0\\b0\\b\\b0\\b\\x8b\\f \\xfe\\xa9\\b\\b\\xf8\\r\\x13\\x13\\r\\xf8\\b\\b\\x01W \\fq\\x04\\x04\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00!\\x002\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x06\\x15\\x14\\x162654'\\x02\\\"&462\\x16\\x14'\\\"\\x06\\x15\\x14\\x162654'76.\\x01\\x06\\a\\x01\\xc0\\x1a&&\\x1a\\xfe\\x80\\x1a&&\\x1a\\x1a\\x1aq\\x9eq\\x1ad\\x84^^\\x84^\\xa0\\x11\\x17\\x17\\\"\\x17\\v\\\"\\x02\\x05\\f\\f\\x03\\x01\\x80&\\x1a\\xfe\\xc0\\x1a&&\\x1a\\x01@\\x1a&-3OqqO3-\\xff\\x00^\\x84^^\\x84:\\x18\\x10\\x11\\x17\\x17\\x11\\x0f\\fO\\x06\\f\\x05\\x05\\x06\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1f\\x003\\x00}\\x00\\x0062\\x16\\x14\\x06\\\"&4\\x16\\\"&462\\x16\\x14\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x11!\\x11'54+\\x01532=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x06\\x14\\x1626=\\x013\\x15\\x14\\x16264&+\\x01532=\\x014+\\x01532\\xe9\\x0e\\t\\t\\x0e\\t\\xb7\\x0e\\t\\t\\x0e\\t\\xd0\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x02`\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a0\\x02\\x00`\\b\\x88h\\b\\bh\\b\\x10\\bh\\b\\bh\\x88\\b\\b\\x88h\\b\\bh@\\x14\\x1c\\x1c(\\x1c@\\x1c(\\x1c\\x1c\\x14@h\\b\\bh\\x88\\b@\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e\\x01\\x97\\t\\a \\a\\t\\t\\a \\a\\t\\xfe@\\t\\a \\a\\t\\t\\a \\a\\t\\x01`\\xfe\\xa0\\xc8\\x10\\b \\b\\x10\\b\\x18\\b\\b\\x18\\b\\x10\\b \\b\\x10\\b \\b\\x10\\b \\x1c(\\x1c\\x1c\\x14\\x10\\x10\\x14\\x1c\\x1c(\\x1c \\b\\x10\\b \\x00\\x00\\x03\\xff\\xfe\\xff\\xde\\x02\\x82\\x01\\xa2\\x00\\x17\\x00\\\"\\x00-\\x00\\x00%2?\\x01\\x15\\x14\\x06\\x0f\\x01\\x06/\\x01.\\x01=\\x01\\x17\\x1632?\\x01\\x17\\x167\\x16\\x06\\x0f\\x01\\x06/\\x0176\\x17!6\\x1f\\x01\\a\\x06/\\x01.\\x017\\x01\\xaa\\a\\x06\\x89\\x0e\\n\\xd9\\x0f\\x10\\xd8\\n\\x0e\\x89\\x06\\a\\x1c\\x0e@@\\x0e\\xf0\\x04\\x06\\b\\xc6\\f\\x06\\\\\\xfa\\f\\x05\\xfd\\xea\\x05\\f\\xfa\\\\\\x06\\f\\xc6\\b\\x06\\x04\\xc0\\x02'\\xb2\\v\\x11\\x036\\x04\\x046\\x03\\x11\\v\\xb2'\\x02\\x17kk\\x17p\\a\\x0e\\x028\\x04\\v\\x98 \\x01\\n\\n\\x01 \\x98\\v\\x048\\x02\\x0e\\a\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x00\\x1c\\x00$\\x00,\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&'&>\\x027&54\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x96Ԗ\\x96j83AL\\x02\\x04\\x01\\x02\\a\\x11\\x1c\\x069s\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0z\\xacz\\x133\\x03\\x02\\x05\\a\\x151\\x169JVv\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x0f\\x00$\\x00\\x00747\\x05\\x06#\\\"'\\x06#\\\"&767&\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01632\\x16\\x15\\x14\\a@\\t\\x01E&(83AL\\x05\\x04\\x03,\\v9\\x02:\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\riI`j\\x969\\xd0\\x1a\\x1c\\xfc\\n\\x133\\n\\x044+9\\x90\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\tR5zVH:\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x11\\x009\\x00\\x0074&+\\x01463!2\\x16\\x15#\\\"\\x06\\x1d\\x01!%2\\x16\\x15\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&546;\\x012\\x16\\x1d\\x01!5463\\xa0&\\x1a 8(\\x01@(8 \\x1a&\\xfe\\xc0\\x01\\xa0\\x1a& \\t\\a@\\a\\t\\xfe\\x80\\t\\a@\\a\\t &\\x1a \\r\\x13\\x01\\x80\\x13\\r\\xe0\\x1a&(88(&\\x1a@`&\\x1a$\\x13y\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\ay\\x13$\\x1a&\\x13\\r``\\r\\x13\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00F\\x00h\\x00\\x00$\\\"&462\\x16\\x14'\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"&\\x0f\\x01\\x06\\x14\\x17\\x16\\x17\\x15\\x14\\x16;\\x0126=\\x01>\\x0154&/\\x01&546;\\x012\\x16?\\x016&'&'54&+\\x01\\\"\\x0e\\x01\\x15\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x16\\x17#\\\"\\x1d\\x01\\x143!2=\\x014+\\x0167\\x01V\\xaczz\\xacz\\xe6\\x19\\\"\\x18\\x13?\\f\\n\\a&\\n\\x10\\x06\\x10\\x04\\x05\\x13\\x18\\t\\a\\v\\a\\n\\x19\\\"\\x18\\x14>\\f\\n\\x06'\\n\\x10\\x06\\x10\\x04\\x01\\x04\\x13\\x18\\n\\x06\\f\\x04\\b\\x04\\xf6\\r\\x13\\x13\\r\\xfe@\\r\\x13\\x13\\r \\x1e+?\\n\\n\\x01l\\n\\n@,\\x1e z\\xaczz\\xac\\xc5\\x01$\\x1a\\x15!\\x06\\x13\\x03\\x0e\\b\\n\\n\\x06\\x10\\x04\\n\\x03\\x0e\\x01\\x11\\a\\n\\n\\a\\x10\\x01$\\x1a\\x15!\\x06\\x13\\x03\\x0e\\b\\n\\n\\x06\\x10\\x04\\n\\x03\\x0e\\x01\\x11\\a\\n\\x04\\b\\x05\\xfe\\xf1\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13'\\x19\\b\\x10\\b\\b\\x10\\b\\x19'\\x00\\x03\\xff\\xfe\\xff\\xbf\\x02\\x00\\x01\\xc3\\x00\\t\\x00)\\x001\\x00\\x00\\x01&'676\\x16\\x17\\x16\\x1773\\a\\x15\\x14\\x06+\\x01\\a\\x06#&'&6?\\x01&'&54762\\x17\\x1e\\x01\\x17546\\x16264&\\\"\\x06\\x14\\x01 N5\\x11 \\a\\x13\\x02\\n,pp ^BMA\\n\\fk.\\x05\\x06\\b\\x90\\x16\\x11U\\x1a\\x04\\x15\\x04\\x1e}N/\\x1a\\x0e\\t\\t\\x0e\\t\\x01\\x19\\x10;1%\\b\\x06\\nE8K@\\xa0B^8\\b\\x04H\\a\\x10\\x02$\\x10\\x11Qh=7\\t\\nEX\\x05<!/`\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02A\\x00\\x80\\x00%\\x00\\x00%\\x16\\x06\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x16\\a\\x0e\\x01+\\x01\\\"\\x06\\x14\\x16;\\x012?\\x0162\\x025\\f\\x01\\f\\x97\\x12\\x16\\xfe\\x9b\\a\\t\\t\\a7/ *\\xa0\\x0f\\x13\\x02\\x02\\x14\\fN\\a\\t\\t\\av\\x17\\x11]\\t\\x18x\\n\\x1e\\ty\\x0e\\t\\a`\\a\\t&\\x1a\\x17\\x0e\\f\\x0f\\t\\x0e\\t\\x0eJ\\b\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc3\\x00\\x12\\x008\\x00\\x00%'&676\\x16\\x1f\\x017>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x06\\\"\\x05\\x16\\x06\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x16\\a\\x0e\\x01+\\x01\\\"\\x06\\x14\\x16;\\x012?\\x0162\\x01\\x13m\\x17\\x03\\x1a\\x17=\\x15\\v\\v\\x16<\\x17\\x1b\\x03\\x18m\\x06\\x0e\\x01\\x1c\\f\\x01\\f\\x97\\x12\\x16\\xfe\\x9b\\a\\t\\t\\a7/ *\\xa0\\x0f\\x13\\x02\\x02\\x14\\fN\\a\\t\\t\\av\\x17\\x11]\\t\\x18\\xc6r\\x18H\\x16\\x14\\x05\\x16\\f\\f\\x16\\x05\\x14\\x16H\\x18r\\x06H\\n\\x1e\\ty\\x0e\\t\\a`\\a\\t&\\x1a\\x17\\x0e\\f\\x0f\\t\\x0e\\t\\x0eJ\\b\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00E\\x00o\\x00\\x00\\x01.\\x01'&67546;\\x012\\x16\\x1d\\x01\\x16\\x17\\x16\\x15\\x14\\a\\x14\\x0f\\x01\\x06'&+\\x01\\\"\\x15\\x14\\x1f\\x01\\x1e\\x02\\x17\\x16\\x06\\a\\x15\\x14\\x0e\\x01+\\x01\\\"&=\\x01&'&5474?\\x016\\x17\\x16;\\x01254'\\x17\\x16\\x15\\x14\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x017>\\x01;\\x012\\x16\\x15\\x14\\x15\\x0e\\x01+\\x01\\\"\\x06\\x14\\x16;\\x012?\\x0162\\x01\\x0f\\x12\\x1a\\x03\\x03 \\x19\\n\\a\\x12\\a\\n\\x13\\x10\\x05\\x02\\x02\\x13\\x06\\t\\x05\\x06$\\t\\a6\\f\\x14\\r\\x02\\x03 \\x19\\x05\\b\\x04\\x12\\a\\n\\x13\\x10\\x05\\x02\\x02\\x13\\x06\\t\\x05\\x06$\\t\\a\\xf0\\v\\f\\x97\\x12\\x16\\xfe\\x9b\\a\\t\\t\\a7/\\r,\\x11\\xa0\\r\\x13\\x02\\x14\\fN\\a\\t\\t\\av\\x17\\x11]\\t\\x18\\x010\\x05\\x19\\x11\\x18%\\x02\\x12\\a\\t\\t\\a\\x12\\x02\\t\\x04\\x06\\x03\\x03\\x01\\x02\\x11\\x06\\x04\\x02\\b\\a\\x01\\x0f\\x03\\x0e\\x13\\v\\x18%\\x02\\x12\\x04\\b\\x04\\t\\a\\x12\\x02\\t\\x04\\x06\\x03\\x03\\x01\\x02\\x11\\x06\\x04\\x02\\b\\a\\x01\\xa9\\n\\x0e\\x0f\\ny\\x0e\\t\\a`\\a\\t&\\v\\x0f\\x13\\r\\x03\\x02\\f\\x0f\\t\\x0e\\t\\x0eJ\\b\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\x80\\x00\\\"\\x00E\\x00\\x007\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"'&/\\x01&=\\x01462\\x16\\x1d\\x01\\x17\\x162?\\x016/\\x01&>\\x01\\x16$2\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06\\a\\x06+\\x01\\\"&=\\x014?\\x01>\\x01\\x1e\\x01\\x0f\\x01\\x06\\x1f\\x01\\x162?\\x0154\\xcd9\\x1a\\t\\a\\x84\\f\\x03\\x03\\ai\\n\\x13\\x1a\\x13Z\\x04\\x0e\\x05\\r\\n\\b&\\b\\x03\\x16\\x1a\\x01\\x8e\\x1a\\x13\\ni\\a\\x03\\x03\\f\\x84\\a\\t\\x1a9\\b\\x1a\\x16\\x03\\b&\\b\\n\\r\\x05\\x0e\\x04Z\\xdaM\\\"+p\\a\\t\\f\\f\\t\\x87\\r\\x11\\xda\\r\\x13\\x13\\r\\x94l\\x06\\x05\\r\\t\\v3\\v\\x1a\\x10\\x04\\x9c\\x13\\r\\xda\\x11\\r\\x87\\t\\f\\f\\t\\ap+\\\"M\\n\\x04\\x10\\x1a\\v3\\v\\t\\r\\x05\\x06l\\x94\\r\\x00\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xbd\\x02\\x83\\x01\\xc3\\x00%\\x00@\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\x14\\x06+\\x01\\a\\x06&/\\x01&6?\\x0154?\\x01\\x15\\x14\\x1626=\\x01%\\x16\\x06\\x0f\\x0154&+\\x01\\x15\\x14\\x06\\\"&=\\x014?\\x016;\\x0176\\x16\\x17\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\x13\\r\\x10&\\x1a\\x89g\\v\\x1a\\aP\\x06\\a\\vP\\x1fA*<*\\x01,\\x06\\a\\vP!\\x17\\xb8\\x17\\\"\\x17\\x0f!\\x10\\x12gg\\v\\x1a\\a\\x01\\x00\\x0e\\n0\\n\\x0e@\\r\\x13\\x1a&<\\x06\\a\\v\\x8b\\v\\x1a\\x06.0$\\x13'z\\x1e**\\x1e8%\\v\\x1a\\x06.\\x1c\\x17!X\\x11\\x17\\x17\\x11~\\x12\\t\\x15\\n<\\x06\\a\\v\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x02\\x01\\x01\\xc0\\x005\\x00\\x00\\x01\\x16\\x06+\\x01\\a\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x0147'#\\\"&7>\\x027\\x06\\x15#\\x176;\\x015#462\\x16\\x15#\\x1532\\x177#4'\\x1e\\x01\\x02\\x00\\x01\\n\\a\\t\\x89\\x02\\t\\x0e\\t\\x80\\r\\x13\\x02\\x89\\t\\a\\n\\x01\\x04.C)>\\x1ct\\a\\x010pQ^Qp0\\x01\\at\\x1c>?X\\x01\\x11\\a\\n\\x98\\x06\\x02\\x80\\t\\x0e\\t\\x13\\r\\x80\\x02\\x06\\x98\\n\\a$A,\\x0eDl\\x82\\x02\\x80RnnR\\x80\\x02\\x82lD\\x15T\\x00\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xbd\\x02\\x83\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1a\\x00e\\x00n\\x00\\x00\\x12\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14\\x13\\x16\\x06\\a\\x06#\\\"/\\x01?\\x02\\x16\\x0f\\x02\\x0e\\x02#\\\"#.\\x01?\\x016?\\x01'\\a\\x06\\x0f\\x01\\x06\\a#&/\\x01&/\\x01\\a\\x17\\x16\\x1f\\x01\\x16\\x06\\a\\\"#\\\"&/\\x02&?\\x01676\\x17\\x16\\x1f\\x02546;\\x012\\x16\\x1d\\x01?\\x01676\\x17\\x16\\x17\\x05\\x1f\\x01\\a\\x0e\\x01.\\x017\\x94(\\x1c\\x1c(\\x1c\\x01d(\\x1c\\x1c(\\x1cN\\x05\\v\\f\\x06\\x06\\x16\\b\\x1b\\x02)\\n\\a\\x16C\\n\\x01\\t\\x0e\\b\\x01\\x03\\r\\x10\\x01\\n\\x03\\r+\\x11\\a\\x06\\x133\\x06\\v\\xa0\\v\\x063\\x12\\a\\a\\x11+\\r\\x03\\n\\x01\\x10\\r\\x03\\x01\\f\\x12\\x02\\nC\\x16\\a\\x13\\a\\x1e\\x1d\\x1b$\\r\\v\\x10\\t\\a\\xa0\\a\\t\\x10\\v\\r#\\x1b\\x1e\\x1e\\a\\xfd\\xe5)\\x02\\x1b\\x05\\x18\\x19\\v\\x05\\x01`\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\xfep\\f\\x19\\x05\\x02\\x14E\\x13.d \\x19L]\\b\\r\\a\\x02\\x14\\x0e\\\\\\x14\\x0f1G\\x15\\x13\\r!\\x04\\x01\\x01\\x04!\\r\\x13\\x15G1\\x0f\\x14\\\\\\x0e\\x14\\x02\\x10\\f]L\\x19 P \\r\\f\\x0f\\x15'\\\"\\n`\\a\\t\\t\\a`\\n\\\"'\\x15\\x0f\\f\\r \\xb4.\\x13E\\f\\v\\n\\x19\\f\\x00\\x00\\x00\\x03\\xff\\xfd\\xff\\xc0\\x02@\\x01\\xc0\\x00C\\x00K\\x00Z\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x025#\\\"&7>\\x0232\\x1d\\x01\\x14+\\x01\\\"\\x0e\\x01\\a\\x06\\x16;\\x01>\\x01;\\x012\\x176;\\x01\\a\\x16\\x17\\x06264&\\\"\\x06\\x14'\\\"\\a4&5462\\x16\\x15\\x141&#\\x020\\a\\t\\t\\a1\\r\\x12\\t\\a@\\a\\t\\x80\\t\\a@\\a\\t\\x13\\x1d\\x10(\\x19\\\"\\x03\\x02\\x11\\x19\\x0e\\x06\\x06\\x01\\x06\\n\\a\\x02\\x02\\x0f\\v+\\vX:\\x80\\a\\x10\\x1d, \\x13\\x18\\ri\\x0e\\t\\t\\x0e\\t\\xa0\\x17\\x18\\x018P8\\v\\x05\\xe0\\t\\a\\x80\\a\\t\\x12\\rQ\\a\\t\\t\\a00\\a\\t\\t\\aQ\\x0e'0\\x1a&\\x19\\x0e\\x17\\f\\x06\\x14\\x06\\x05\\t\\x05\\f\\x117I\\x02\\\"L\\x16\\x1e@\\t\\x0e\\t\\t\\x0e\\xb7\\x06\\x01\\x04\\x01(88(\\x01\\x01\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xb8\\x01\\xc2\\x01\\xc1\\x00\\b\\x00)\\x00\\x00?\\x01\\x17\\a\\x06/\\x01.\\x01%\\x16\\x06\\x0f\\x01\\x06'\\x03.\\x014>\\x01?\\x016762\\x17\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01'67&\\\"\\a\\x06uO[\\x0e\\x12D\\t\\x03\\x01\\xbb\\a\\x02\\tE\\x12\\r\\xf9\\r\\f\\a\\x05\\x02,\\x06\\n\\\"k\\x1f\\n\\x06,\\x11\\a\\x15\\\"O4\\x04!Z!\\x04\\x82Xf\\x10\\f\\x1c\\x06\\x16\\b\\b\\x16\\x06\\x1c\\f\\x10\\x01\\x13\\x0f#\\x1b\\x1b\\t\\x03I\\f\\x06\\x16\\x16\\x06\\fI\\x1c@\\x17&W;\\x06\\x12\\x12\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00&\\x00.\\x00;\\x00C\\x00\\x00%2\\x16\\x14\\x06#!673264&+\\x01\\\"&46;\\x01&5462\\x16\\x15\\x14\\x06\\x0f\\x01#\\\"\\x06\\x14\\x163\\x12\\\"\\x06\\x14\\x16264\\x042\\x16\\x15\\x14\\x06\\x0f\\x01.\\x0254\\x16264&\\\"\\x06\\x14\\x01\\xa0(88(\\xfe\\xea\\x1b\\x15\\xe6\\r\\x13\\x13\\r`(88(--8P80\\x18\\x18`\\r\\x13\\x13\\rm\\x1a\\x13\\x13\\x1a\\x13\\xfexP80\\x18\\x18\\v 5S\\x1a\\x13\\x13\\x1a\\x13\\x808P8!\\x1f\\x13\\x1a\\x138P8@ (88(\\x18P\\x1c\\x1c\\x13\\x1a\\x13\\x01\\x00\\x13\\x1a\\x13\\x13\\x1a\\xad8(\\x18P\\x1c\\x1c\\f&V\\x18(H\\x13\\x1a\\x13\\x13\\x1a\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01\\\"&5%3\\x14\\x06\\a&'>\\x03@]\\x83\\t\\a \\a\\t]\\x83\\x01\\xc0@tU\\x10+\\x0f)2;\\x01`\\x83]\\x90\\a\\t\\t\\a\\x90\\x83]@V\\x80\\t=/\\x1a*\\x1e\\x11\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00'\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x135!\\x15\\x01\\xf0\\a\\t\\t\\a\\xfe\\x90\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t \\x01@\\x01\\x80\\t\\a \\a\\t\\xfe\\x90\\a\\t\\t\\a\\x01p\\t\\a \\a\\t0\\a\\t\\t\\a0\\xfe\\xc0\\xe0\\xe0\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00/\\x00\\x00<\\x0162\\x16\\x14\\x06\\\"\\x124&\\\"\\x06\\x14\\x1627\\x17\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\a&\\x0e\\x01\\x17\\x16276&\\a\\x06\\\"\\x91Α\\x91\\xce7\\x13\\x1a\\x13\\x13\\x1a\\xb1\\n\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\xbd\\a\\x12\\x05\\x05-\\x8c-\\n\\x19\\n#nYΑ\\x91Α\\x01\\x1b\\x1a\\x13\\x13\\x1a\\x13\\x10\\t\\x06\\b\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\to\\b\\x04\\x10\\b66\\f\\x14\\f*\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x19\\x00!\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&462\\x16\\x15\\x14\\a&264&\\\"\\x06\\x14\\xc64&&4&\\x01\\xd0\\a\\t\\t\\a\\xfep]\\x83\\x83\\xba\\x83C\\xc5P88P8\\x01\\x00&4&&4\\xba\\t\\a \\a\\t\\x83\\xba\\x83\\x83]^B@8P88P\\x00\\x03\\xff\\xfe\\xff\\xbe\\x02\\x80\\x01\\xc0\\x00\\x16\\x00)\\x001\\x00\\x007'&>\\x01?\\x01\\x177'72\\x1e\\x02\\x1f\\x01\\x16\\x06\\x0f\\x01\\x06&\\x01!\\x11\\x14\\x06#\\\"&'\\x05\\x06/\\x01&7%\\x1146\\x12264&\\\"\\x06\\x1421\\x02\\x03\\x06\\x04M\\x19>\\x19M\\x03\\a\\x05\\x04\\x012\\x01\\x06\\a\\xd8\\a\\v\\x01L\\x01\\x00B.-A\\x02\\xfew\\b\\x02\\r\\x02\\b\\x01Z\\x13\\x89(\\x1c\\x1c(\\x1cH\\xba\\x04\\b\\x06\\x02\\x14\\\\\\x10]\\x15\\x01\\x03\\x05\\x03\\xb9\\a\\v\\x02:\\x02\\a\\x01~\\xfep.B?-l\\x02\\b.\\b\\x02^\\x01D\\r\\x13\\xfe@\\x1c(\\x1c\\x1c(\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00)\\x001\\x009\\x00?\\x00G\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06#\\\"'\\x06#\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x17\\x04264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14%\\x153'&#\\x06264&\\\"\\x06\\x14\\x02m\\x13\\t\\a\\x12\\x02/B/\\x02\\xa4\\x02/!(\\x18\\x18(!/\\x13\\r\\x01\\xa0\\r\\x13&\\x1a\\x13\\xfe\\x10\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x010\\\\+\\x05\\x06\\x03\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x13\\x1aV\\a\\t\\b\\b!//!\\b\\b\\b\\b!/  /!\\x01P\\r\\x13\\x13\\r`\\x13\\xfd\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xcd0+\\x05\\xe0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x1e\\x00&\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x06/\\x01\\x01'&?\\x016\\x1f\\x0132\\x16\\x1d\\x01\\x17576\\x16\\x15\\x11\\x14\\x06\\a%5\\x01\\x06#!\\\"&\\x02z\\x05\\x02\\x04\\x14\\n\\r\\xb2\\xfe\\x8b%\\f\\t\\x14\\n\\rN\\xf4\\x14\\x1c n\\x10\\\"\\x11\\f\\xfd\\xdd\\x01n\\r\\x11\\xfe\\xe0\\x14\\x1c\\n\\x04\\r\\x05\\x1a\\f\\t\\x8a\\x01!\\x1c\\n\\r\\x19\\f\\t=\\x1c\\x14\\xb2\\x18\\x89K\\v\\x11\\x14\\xff\\x00\\r\\x12\\x01\\x10\\xf5\\xfe\\xe5\\n\\x1c\\x00\\x00\\x00\\x00\\x01\\xff\\xfb\\xff\\xc0\\x01%\\x01\\xc0\\x00\\x1e\\x00\\x00\\x172\\x16\\x15\\x14+\\x01\\\"546;\\x015.\\x01?\\x014>\\x01;\\x012\\x16\\x15\\x17\\x16\\x06\\a\\x15\\xd8\\x11\\x17\\b\\xd0\\b\\x17\\x11(4@\\x05\\x10\\x04\\a\\x04\\xe0\\x06\\t\\x10\\x05@4\\x10\\x17\\x11\\b\\b\\x11\\x17u\\fW7\\xb2\\x05\\x06\\x04\\b\\a\\xb27W\\fu\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x17\\x00!\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01>\\x0132\\x16\\x15\\x14\\x0e\\x01\\x0f\\x013\\x17!\\\"&=\\x0146\\x02z\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\r\\x87\\fM2<T\\x13!\\x16\\xc00\\xf8\\xfe\\x82\\x14\\x1cO\\n\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\ti/=T<\\x1b0&\\f3\\xc0\\x1c\\x14\\n7O\\x00\\x06\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1e\\x00.\\x006\\x00R\\x00Z\\x00b\\x00\\x007\\\"&=\\x0146;\\x01>\\x0132\\x1e\\x02\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\x0e\\x01\\\"&'7\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x17/\\x01?\\x01\\x1f\\x01\\a\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"&=\\x01467\\x162\\x062\\x16\\x14\\x06\\\"&4&2\\x16\\x1d\\x01#54@\\a\\t\\t\\a\\x0e\\x12P0\\x18.%\\x1e\\t\\x0e\\a\\t\\t\\a\\x0e\\x12P`P\\x12\\x1a8(0(8\\x1c\\x14\\x90\\x14\\x1cH\\f$$\\f\\f$$\\x8c3E\\x1c\\x14P\\x13\\r\\x80\\r\\x13P\\x14\\x1cE30p\\x0f\\x0e\\t\\t\\x0e\\tW\\x0e\\t \\xe0\\t\\a`\\a\\t+5\\x0e\\x19$\\x15\\t\\a`\\a\\t+55+X\\x18(88(\\x18\\x11\\x17\\x17Y$\\f\\f$$\\f\\f\\x95\\x06L3\\n\\x14\\x1c@\\r\\x13\\x13\\r@\\x1c\\x14\\n3L\\x06\\x1f`\\t\\x0e\\t\\t\\x0e\\t\\t\\a00\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x85\\x01\\xc0\\x00\\a\\x00\\x1b\\x00+\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627%\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x1f\\x0176\\x17\\x01\\x15jKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x01T\\b\\t\\x8d\\b\\tQ\\t\\t\\x1c\\b\\t-i\\t\\b\\xc0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x80\\b\\b\\x8d\\b\\tR\\b\\t\\x1b\\t\\t-h\\b\\t\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x17\\x00+\\x003\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x1754+\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\x14\\x16\\x17!\\\"&=\\x0146;\\x01\\x162732\\x17\\x06&\\\"&462\\x16\\x14\\x01\\xb4xTTxT\\xd0\\n&\\n\\f\\n\\n<\\n\\xf0(#\\xfe\\xa5\\x14\\x1cO7\\x11#L#\\x11\\v\\r\\x12+jKKjK\\xe0TxTTxB\\f\\n6\\n\\nL\\n\\x10,L\\x18\\x1c\\x14*7O\\x10\\x10\\x02&HKjKKj\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00;\\x00C\\x00K\\x00v\\x00\\x00%\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\a\\x06'&=\\x01&'\\a\\x06'&'&?\\x01&7'&7676\\x1f\\x01675476\\x17\\x16\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x06264&\\\"\\x06\\x14&\\\"&462\\x16\\x14\\x13\\x15\\x14\\x17\\x06#!\\\"&=\\x0146;\\x01\\x162732\\x163\\x14\\x06\\x15\\x06\\x16\\x1f\\x01\\x06\\x17\\a\\x0e\\x01\\x17\\x16\\x17\\x1632?\\x01\\x16\\x02b\\x1a\\x05\\x01\\n\\x18\\x04\\x05\\x19\\x11\\x14\\x06!!\\x06\\x14\\x11\\x1a\\x05\\x04\\x17\\n\\x02\\x06\\x19\\x04\\x04\\x19\\x05\\x01\\n\\x17\\x04\\x05\\x1a\\x11\\x14\\x06!!\\x06\\x14\\x11\\x19\\x05\\x04\\x18\\n\\x01\\x05\\x1a\\x04\\x8a(\\x1c\\x1c(\\x1c\\xabjKKjKI\\x02\\f\\x0f\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x11\\x02\\b\\x01\\x03\\x04\\n\\f\\b\\x01\\x01\\b\\f\\n\\x04\\f\\x1c\\f\\x11\\n\\t\\b\\x05K\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x15\\x15\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x150\\x1c(\\x1c\\x1c(tKjKKj\\xfe\\xd3\\n\\x05\\a\\b\\x1c\\x14*7O\\x10\\x10\\x01\\x01\\x06\\x02\\r\\x1a\\a\\x04\\x04\\x04\\x05\\a\\x19\\r'\\x1f\\f\\x05\\x04\\x03\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x1c\\x00$\\x00/\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x17\\x0f\\x03\\x06\\x17!\\\"&=\\x0146;\\x01\\x1627\\x177\\x17\\x0f\\x01\\x06&7%\\x16\\x14\\x0f\\x01'?\\x0162\\x17\\x01\\x15jKKjK&;)N\\b\\x01\\a\\x01\\x04\\xfe\\xed\\x14\\x1cO7\\x11#L#>\\x8aG\\x89=\\b\\v\\x01\\x01\\x19\\a\\a*H\\x05%\\a\\x14\\a\\xc0KjKKjk.M\\b\\v=\\n\\v\\x1c\\x14*7O\\x10\\x10\\x91\\x89G\\x8a\\a\\x01\\v\\b\\xe1\\a\\x14\\a*H\\x04&\\a\\a\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x1b\\x00#\\x007\\x00\\x006\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627$\\\"&462\\x16\\x14\\a2\\x16\\x15\\x14\\x06+\\x0146=\\x014'6;\\x01\\x1627\\xee\\\\BB\\\\B#0C\\x1c\\x14\\xfe\\xe0\\x14\\x1cC0\\t!F!\\x01\\x04P88P80.B\\x1c\\x14\\xb1\\x01(\\x1b\\x1d\\x04\\x17*\\x17\\xc0B\\\\BB\\\\bC0\\x1d\\x14\\x1c\\x1c\\x14\\x1d0C\\x10\\x10 8P88PXB.\\x14\\x1c\\x01\\x04\\x01'9+\\x0f\\b\\b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc3\\x00\\x10\\x00:\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x17\\x03&4?\\x016\\x1f\\x01\\x16\\x14\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&547'\\x15\\x16\\x15\\x14\\a\\x17\\x16\\x0e\\x01+\\x01\\\"&?\\x01&5475\\x01?6K\\x1c\\x14\\xfe\\xa0\\x14\\x1cK6_\\xd2\\x0e\\x0e\\xbe\\x14\\x14\\xbe\\x0e\\x0e`\\x0eKjK\\x0eB\\f\\v\\x0f\\x01\\x01\\x04\\x03*\\x04\\x05\\x02\\x0f\\v\\f\\u007f\\x02M6\\n\\x14\\x1c\\x1c\\x14\\n6M\\x02_\\x01P\\x03\\x1a\\x03.\\x04\\x04.\\x04\\x19\\x03\\x17\\x1c\\x1d5KK5\\x1d\\x1c\\x105\\a\\r\\f\\b>\\x04\\x06\\x04\\t\\x05>\\b\\f\\r\\a;\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x1b\\x003\\x00;\\x00C\\x00\\x00$\\\"&462\\x16\\x14\\a\\x15\\x14\\x17!\\\"&=\\x0146;\\x01\\x162730\\x17\\x06%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x06264&\\\"\\x06\\x14754&\\\"\\x06\\x1d\\x01\\x01\\x15jKKjK \\t\\xfe\\xe7\\x14\\x1cO7\\x11#L#\\x11\\x0e\\b\\x01 \\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r /B/]\\x1a\\x13\\x13\\x1a\\x13@\\x13\\x1a\\x13\\xc0KjKKj\\x8b\\xa0\\x11\\x0f\\x1c\\x14*7O\\x10\\x10\\x02\\x0e\\x10\\x13\\r\\xa0\\r\\x13\\x13\\r\\xa0\\r\\x13P!//!P\\x90\\x13\\x1a\\x13\\x13\\x1a}P\\r\\x13\\x13\\rP\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00+\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x06\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x02p\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\x9bjKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xf0\\t\\a \\a\\t\\t\\a \\a\\t0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x10\\x00%\\x00-\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x17'47&52\\x17>\\x0332\\x16\\x14\\x06#\\\"&'\\x067\\\"\\x06\\x1534&#\\x01E4G\\x1c\\x14\\xfe\\xa0\\x14\\x1cG4e\\xc0++1\\x1d\\a\\x18\\x1d#\\x135KK5,C\\f\\x1cg\\r\\x13\\xa0\\x13\\r\\x9f\\x05L4*\\x14\\x1c\\x1c\\x14*4L\\x05f\\xc73\\x1d\\x1d3(\\x10\\x1b\\x12\\vKjK5)\\x1e`\\x13\\r\\r\\x13\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbd\\x02\\x80\\x01\\xc0\\x00\\x12\\x00\\x17\\x00\\x1f\\x007\\x00\\x00%\\x16\\x15\\x14\\x0e\\x03\\a\\x06'.\\x0154?\\x016\\x17\\a>\\x017'&\\\"&462\\x16\\x14\\a\\x14\\x16\\x17\\x06#!\\\"&=\\x0146;\\x01\\x162732\\x1630\\x06\\x02n\\x12\\x12\\x1c$\\\"\\x11\\v\\v5P\\x12s\\v\\v\\v!;\\x04`\\xdbjKKjK 7,\\t\\n\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x11\\x01\\x05\\x01\\x01\\xb1\\a\\x12$@/&\\x16\\a\\x04\\x04\\x15sN\\x12\\a-\\x04\\x04\\xec\\x0fN:&\\x11KjKKjsDm#\\x04\\x1c\\x14*7O\\x10\\x10\\x01\\x06\\x00\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x17\\x00!\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01>\\x0232\\x16\\x15\\x14\\x06\\a\\x054>\\x017\\x05!\\\"&5\\x02z\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\r\\x93\\x03#8!5K0&\\xfe\\xf6\\x1d3\\x1f\\x01\\x1f\\xfe\\xa2\\x14\\x1c\\n\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\tr 6\\x1fK5)B\\r\\xae 9%\\x06\\xde\\x1c\\x14\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00+\\x00@\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x0146;\\x012\\x17\\a2>\\x014.\\x01#\\\"\\x06\\x14\\x16'\\\".\\x0154632\\x1e\\x01\\x15\\x14\\x06\\x17\\x14\\x1f\\x01\\x06#!\\\"&=\\x0146;\\x01\\x162732\\x17\\x02w\\t\\n\\\\\\t\\x1b\\t[\\x12\\x12\\x0eO\\x1b\\x12\\\\\\x06\\v\\a\\a\\v\\x06\\n\\x0e\\x0e\\xd6#;\\\"K5#;\\\"KK\\x1c:\\x0f\\x17\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x11\\x11\\x15S\\t\\x1b\\t]\\t\\t[\\x12\\x1bO\\r\\x13\\x13E\\a\\v\\r\\v\\x06\\x0e\\x14\\x0eX\\\";#5K\\\";#5Ko(\\x1c:\\x13\\x1c\\x14*7O\\x10\\x10\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x1d\\x00\\x00$\\\"&462\\x16\\x14\\a\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x177'3\\a\\x17\\x01\\x15jKKjK 5K\\x1c\\x14\\xfe\\xa0\\x14\\x1cK50  `  \\xc0KjKKjl\\x02N5*\\x14\\x1c\\x1c\\x14*5N\\x02\\xbf\\x8888\\x88\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x82\\x01\\xa0\\x00;\\x00C\\x00K\\x00b\\x00\\x85\\x00\\x93\\x00\\x00%\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\a\\x06'&=\\x01&'\\a\\x06'&'&?\\x01&7'&7676\\x1f\\x01675476\\x17\\x16\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x06264&\\\"\\x06\\x14$\\\"&462\\x16\\x14\\x17\\\"&5462\\x16\\x15\\x14\\a\\\"\\x06\\a'&#\\\"\\a\\x06\\a\\\"\\a\\x17\\x15\\x14\\x17#\\\"&=\\x0146;\\x01\\x1632363\\x16\\x1f\\x01\\x06\\x170#\\x06\\x17\\x16\\x17\\x163273'\\x0e\\x01\\a#\\\"&=\\x0146;\\x012\\x02b\\x1a\\x05\\x01\\n\\x18\\x04\\x05\\x19\\x11\\x14\\x06!!\\x06\\x14\\x11\\x1a\\x05\\x04\\x17\\n\\x02\\x06\\x19\\x04\\x04\\x19\\x05\\x01\\n\\x17\\x04\\x05\\x1a\\x11\\x14\\x06!!\\x06\\x14\\x11\\x19\\x05\\x04\\x18\\n\\x01\\x05\\x1a\\x04\\x8a(\\x1c\\x1c(\\x1c\\xfe\\xba4&&4&\\xa0.BA]B\\v\\x01\\x01\\x01\\b\\t\\n\\x11\\f\\x17\\r\\x01\\x02f\\x06\\xff\\x14\\x1cD/\\t!#\\x02\\x05\\x02\\x01\\x04\\x06\\b\\x01\\x01\\x01#\\n\\f\\x1c\\f\\x11\\v\\x10\\x01\\xf6\\x1e(\\x05B\\r\\x13&\\x1a@\\x1ak\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x15\\x15\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x150\\x1c(\\x1c\\x1c(t&4&&4FB..BB.\\x19\\x17\\x01\\x01\\x05\\x05\\f\\x19\\\"\\x01\\xc2\\n\\n\\n\\x1c\\x14\\x1d0C\\x10\\x01\\x05\\x04\\x04\\x04\\x04\\x12 '\\x1f\\f\\t\\xac\\x10:#\\x13\\r \\x1a&\\x00\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x80\\x01\\xc2\\x00*\\x00B\\x00E\\x00[\\x00^\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x11&'\\a\\x06&/\\x01&6?\\x01&54632\\x1776\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x06\\a\\x11%\\x14\\x0e\\x01#\\\"&505467>\\x03762\\x17\\x16\\x17\\x16'3'\\x05\\x16\\x17\\x1e\\x01\\x15\\x141\\x14\\x06\\\"&5054676762\\a3'\\x02\\x10\\a\\t\\t\\a\\xe0\\a\\t\\a\\x06\\x8e\\x06\\f\\x02\\n\\x03\\x06\\a\\x80\\x01/!.\\x17v\\x06\\f\\x02\\n\\x03\\x06\\a\\x84\\v \\x01 \\\";#5K\\n\\x1e\\x06\\a\\r\\f\\a\\r<\\rS\\x01\\x01ȐH\\xfe\\xab\\x14\\x1a\\x1d\\nKjK\\n\\x1e\\x1a\\x13\\r<f\\x90H\\t\\a \\a\\t\\t\\a\\x01W\\x03\\x040\\x02\\x06\\x06\\x1f\\x06\\f\\x02+\\b\\x02!/('\\x02\\x06\\x06\\x1e\\a\\v\\x03,!\\x0e\\xfeِ\\x16%\\x15/!\\x01\\b\\x17<\\f\\x0e\\x19\\x19\\x0e\\x1a\\x1a\\xa6\\a\\x03\\n\\x90j(59\\x16\\t\\x01!//!\\x01\\b\\x17<4&\\x1a\\xc0\\x90\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x81\\x01\\xc2\\x00+\\x00>\\x00A\\x00W\\x00Z\\x00\\x00\\x1746;\\x01\\x11&/\\x01.\\x01?\\x01>\\x01\\x1f\\x01632\\x16\\x15\\x14\\a\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x02/\\x01\\x06\\a\\x11\\x14\\x06+\\x01\\\"&5'054676762\\x17\\x16\\x17\\x16\\x15\\x14\\x06\\\"&73'\\x01054676762\\x17\\x16\\x17\\x1e\\x01\\x15\\x141\\x14\\x06\\\"&73'`\\t\\a\\xb0 \\v\\x84\\a\\x06\\x03\\n\\x02\\f\\x06v\\x17.!/\\x01\\x80\\a\\x06\\x03\\n\\x01\\a\\b\\x04\\x8e\\x06\\a\\t\\a\\xe0\\a\\t`\\n\\x1c\\x1b\\x14\\r<\\rS\\x01\\x01KjK8\\x90H\\x01\\x00\\n\\x1d\\x1a\\x14\\r<\\r\\x13\\x1a\\x1e\\nKjK8\\x90H\\x10\\a\\t\\x01'\\x0e!,\\x03\\v\\a\\x1e\\x06\\x06\\x02'(/!\\x02\\b+\\x02\\f\\x06\\x1f\\x04\\x05\\x02\\x010\\x04\\x03\\xfe\\xa9\\a\\t\\t\\a\\xc0\\x01\\t\\x1596(\\x1a\\x1a\\xa7\\a\\x02\\x06!//1\\x90\\xfe\\xe0\\x01\\t\\x1695(\\x1a\\x1a&4<\\x17\\b\\x01!//1\\x90\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00;\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x16264&\\\"\\x06\\x14\\x13\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a!'#\\\"&=\\x01463!\\a\\x053'#\\x01\\xa0\\x1b%\\x13\\r\\xfe\\xc0\\r\\x13%\\x1bs\\x1a\\x13\\x13\\x1a\\x13H\\b\\b\\x9e\\x12\\x8c\\b\\b\\x84\\x12r\\b\\bi\\x11\\xff\\x00\\tg\\x14\\x1c\\x1c\\x14\\x01\\xd0\\x11\\xfeQQ\\vF@%\\x1b \\r\\x13\\x13\\r \\x1b%`\\x13\\x1a\\x13\\x13\\x1a\\x01\\x8d\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@`\\x1c\\x14\\xa0\\x14\\x1c@\\x80\\x80\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xdd\\x02@\\x01\\xa1\\x00\\x11\\x00\\\"\\x00\\x00\\x016\\x16\\x15\\x11\\x14\\x06#\\x06\\a\\x06.\\x015\\x11476\\a\\x16\\x15\\x11\\x14\\x06'&'\\\"&5\\x1146\\x17\\x16\\x02\\x1e\\x0e\\x14\\x11\\r\\x8cO\\x05\\v\\a\\aM{\\a\\x0f\\bO\\x8c\\r\\x11\\x14\\x0e\\x9a\\x01\\xa0\\x01\\x12\\x0e\\xfe\\xae\\f\\x12\\b'\\x03\\x02\\t\\x05\\x01l\\t\\x04//\\x04\\t\\xfe\\x94\\b\\t\\x04'\\b\\x12\\f\\x01R\\x0e\\x12\\x01\\t\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xbe\\x02\\x80\\x01\\xc0\\x00\\x11\\x00$\\x009\\x00K\\x00i\\x00l\\x00\\x00\\x13\\\"'&476;\\x012\\x16\\a\\x06\\x14\\x17\\x16\\x06#'\\x0e\\x01\\x16\\x17\\x16\\x06+\\x01\\\"'&476;\\x012\\x16%\\x16\\x14\\a\\x06+\\x01\\\".\\x017>\\x01&'&>\\x01;\\x012\\a2\\x17\\x16\\x14\\a\\x06+\\x01\\\"&764'&63\\a\\x13\\x16\\x06\\x0f\\x01\\x06&/\\x01#\\a\\x0e\\x01/\\x01.\\x017\\x13&54>\\x012\\x1e\\x01\\x15\\x14\\a3'\\x97\\f\\x03\\b\\b\\x03\\f\\\"\\b\\t\\x02\\b\\b\\x02\\t\\b_\\f\\x0f\\x04\\x17\\x04\\t\\t#\\n\\x04\\x1b\\x1a\\x04\\v#\\t\\t\\x02\\b\\x1a\\x1a\\x04\\v#\\x06\\t\\x01\\x02\\x16\\x05\\x0f\\f\\x03\\x02\\t\\x06#\\vy\\f\\x03\\b\\b\\x03\\f\\\"\\b\\t\\x02\\b\\b\\x02\\t\\bR\\x82\\x03\\x05\\x06\\x1e\\x06\\f\\x031\\x961\\x03\\f\\x06\\x1e\\x06\\x05\\x03\\x82\\v\\x11\\x1e\\\"\\x1e\\x11p`0\\x01\\x00\\v\\x1a6\\x1a\\v\\r\\b\\x15,\\x15\\b\\r\\xa9\\x164]+\\b\\x0f\\t9|9\\t\\x0f\\x069|9\\t\\a\\v\\x06)[6\\x17\\x05\\v\\a@\\v\\x1a6\\x1a\\v\\r\\b\\x15,\\x15\\b\\rd\\xfe\\xc6\\x06\\f\\x02\\r\\x02\\x05\\x06vv\\x06\\x05\\x02\\r\\x02\\f\\x06\\x01:\\x10\\x14\\x11\\x1e\\x11\\x11\\x1e\\x11\\x14\\xact\\x00\\x02\\x00\\x00\\xff\\xbd\\x02\\x87\\x01\\xc7\\x00\\x17\\x00)\\x00\\x00%\\x17\\x14\\x0e\\x03\\a\\x0e\\x01/\\x016?\\x016&\\x0f\\x0167>\\x013%\\x16\\x0f\\x01\\x17\\x16\\x06\\x0f\\x01'7>\\x01\\x1f\\x0176\\x17\\x01\\x00W\\x03\\r\\x0f\\x1d\\x10\\x1b\\x8565\\x04\\a_\\x03\\x06\\x04<\\x19\\x1d\\x1bQ\\x1c\\x01\\x98\\t\\f\\xe8\\\"\\x03\\x04\\x06;V\\x19\\x03\\f\\x04\\\"\\xe8\\r\\n\\xe7m\\x04\\x0e)$*\\r\\x15\\x11\\x02\\x02\\x17 p\\x04\\b\\x02\\x16J\\x17\\x16\\x14\\xb9\\r\\t\\xb2+\\x05\\f\\x01\\fm6\\x06\\x02\\x05+\\xb2\\t\\f\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\r\\x00!\\x00\\x00\\x13\\x11#\\x11463!2\\x16\\x15\\x11#\\x11\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463!53\\x15`@\\x17\\x11\\x01\\xf0\\x11\\x17@P\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x01\\x10\\xc0\\x01\\x80\\xfe\\xa0\\x01x\\x11\\x17\\x17\\x11\\xfe\\x88\\x01`\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t@@\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x13\\x00\\x1b\\x004\\x00\\x0072\\x16\\x15\\x14\\x06+\\x01\\\"&54632\\x17\\x16276&\\\"&462\\x16\\x14\\x012\\x16\\x15\\x11\\x14\\x06+\\x01&'353\\x153\\x11!\\x15&#5463\\xd0/A\\x1c\\x14\\xe0\\x14\\x1cA/\\x04\\x03\\x15(\\x15\\x03\\x04P88P8\\x01P\\x14\\x1c\\x1c\\x14\\xf5\\t\\x1eL\\x80@\\xfe\\xa0\\x1f!\\x1c\\x14`B/\\x13\\x1c\\x1c\\x13/B\\x01\\a\\a\\x01 8P88P\\x01\\b\\x1d\\x15\\xfe\\xc4\\x15\\x1d&\\x1a@@\\x01 2\\x12.\\x15\\x1d\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00-\\x007\\x00@\\x00\\x00%\\x16\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54?\\x015#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x0546?\\x01\\x15#\\\"&5%\\x16\\x1d\\x01\\x14\\x06+\\x015\\x01\\xd0\\x10`%6%`\\x10p0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\xfe\\xa0\\v\\bmp\\a\\t\\x02m\\x13\\t\\ap\\xc9\\t\\x12\\xee`\\x1b%%\\x1b`\\xee\\x12\\tD3\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t3\\xd9\\t\\x11\\x03/\\xc0\\t\\a\\x81\\b\\x15d\\a\\t\\xc0\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x11\\x00\\x1f\\x00(\\x000\\x008\\x00\\x005\\x16 7\\x15\\x14\\x06\\\"&5\\x00\\\"&462\\x16\\x14\\x05\\x1e\\x0132>\\x017\\x15\\x14\\x06\\\"&5%567\\x15\\x14\\x0e\\x02$2\\x16\\x14\\x06\\\"&4\\x05&'67\\x15\\x14\\x06=\\x01\\x06=q\\x9eq\\x01\\x8f\\x9eqq\\x9eq\\xfe\\x00\\x1eh:&H>\\x14q\\x9eq\\x01\\xa0?!\\x0e\\x19#\\xfe\\xba\\xa0pp\\xa0p\\x01\\x9b\\f0n37++++\\x1a&&\\x1a\\x01@&4&&4\\xd2\\x19\\x1b\\v\\x18\\x114\\x1a&&\\x1a)?\\v\\x18+\\t\\x10\\x0f\\v\\x93/B//B\\t\\\"\\x17\\x05%+\\x12\\x1e\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x174635\\\"\\x06\\x15\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x91Α\\x91ΑX^BOq\\x98P88P8S\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xcegB^ qO`8P88PH\\x13\\x1a\\x13\\x13\\x1a\\x00\\x02\\x00\\x00\\xff\\xbc\\x02\\x80\\x01\\xc0\\x00)\\x001\\x00\\x00\\x012\\x16\\x15\\a\\x15\\x14\\x06\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\\"#\\\"+\\x01\\x17\\x16\\x0f\\x01\\x06/\\x01#\\a\\x06&547\\x0154632\\x17\\x06264&\\\"\\x06\\x14\\x02 (8`M=)\\x04\\v\\x16\\f\\x04,\\x01\\x02\\x02\\x01'&\\x04\\v\\x16\\f\\x04,ay\\x0f\\x1d\\f\\x01t/!'\\x19J\\x14\\x0e\\x0e\\x14\\x0e\\x01\\xa0%\\x1b\\x10PAe\\x12p\\v\\x04\\b\\x04\\vxh\\v\\x04\\b\\x04\\vx=\\a\\x11\\x11\\x0f\\t\\x01%\\x15!/ H\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00;\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x002\\x16\\x14\\x06#\\\"'\\a!'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x17\\x166?\\x01&5462\\x16\\x15\\x14\\a\\x17\\x1e\\x01?\\x01&54\\x02\\x10\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xcc(\\x1c\\x1c\\x14\\x03\\x05H\\xfe\\x80H\\x05\\x03\\x14\\x1c\\x1c(\\x1c\\x04H\\v\\x1b\\x06R\\x12\\x1c(\\x1c\\x12R\\x06\\x1a\\fH\\x04\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\x1c(\\x1c\\x01\\xc1\\xc1\\x01\\x1c(\\x1c\\x1c\\x14\\n\\n+\\a\\a\\v\\x8f\\x0f\\x16\\x14\\x1c\\x1c\\x14\\x16\\x0f\\x8f\\v\\a\\a+\\n\\n\\x14\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x10\\x00\\x18\\x00(\\x000\\x008\\x00@\\x00H\\x00P\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x017>\\x01'\\x06264&\\\"\\x06\\x14'\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x17\\x06264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x02P\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x88\\x12\\t\\n\\x03\\x14\\x0e\\x0e\\x14\\x0e\\x16\\x0e\\x0e\\xaf\\x0f(\\x0f\\xaf\\x0e\\x0e\\xaf\\x0f(\\x0f\\xad\\x14\\x0e\\x0e\\x14\\x0e\\x8e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x8e\\x14\\x0e\\x0e\\x14\\x0e\\x01\\x00\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14.\\x89\\x121\\x16\\xb8\\x0e\\x14\\x0e\\x0e\\x14\\xad\\x0f(\\x0f\\xaf\\x0e\\x0e\\xaf\\x0f(\\x0f\\xaf\\x0e\\x0e\\xea\\x0e\\x14\\x0e\\x0e\\x14\\x8e\\x0e\\x14\\x0e\\x0e\\x14r\\x0e\\x14\\x0e\\x0e\\x14r\\x0e\\x14\\x0e\\x0e\\x14\\x8e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xfe\\xa0\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xfe\\xa0\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\xd3\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xff\\x00\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xfe\\xa0\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1a\\xd3\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xa0\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xa0\\x13\\x1a\\x13\\x13\\x1a\\xd3\\x13\\x1a\\x13\\x13\\x1a\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x0062\\x16\\x14\\x06\\\"&46\\\"&462\\x16\\x14\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\xc56%%6%[6%%6%\\x80\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r`%6%%6\\xe5%6%%6U\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x19\\x00!\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x11463!2\\x16\\x15\\x11&264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\ap\\x1c\\x14\\x01 \\x14\\x1cm\\x1a\\x13\\x13\\x1a\\x13\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x8d\\x15\\x1e\\x1e\\x15\\xfes\\xa0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc3\\x00\\x10\\x00\\\"\\x00*\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11#532\\x16\\x15\\x11\\x036\\x16\\x15\\x11!\\\"&=\\x0146;\\x01\\x11467\\x16264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\x90`p\\x14\\x1c\\xe8\\x0f\\x19\\xfe\\xb0\\a\\t\\t\\aP\\x0e\\n\\x86\\x14\\x0e\\x0e\\x14\\x0e\\t\\a \\a\\t\\x01\\x80@\\x1d\\x14\\xfe\\xb1\\x01\\xbf\\x04\\x14\\x10\\xfe!\\t\\a \\a\\t\\x01m\\v\\x12\\x03\\xed\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x000\\x01\\xc0\\x01P\\x00\\x0f\\x00\\x1f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\xc0\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x05\\x01\\xc7\\x00\\\"\\x00\\x00\\x01\\x1e\\x01\\x0f\\x013\\x06\\x0f\\x013\\x0e\\x02&'\\a\\x06\\\"&47\\x016&\\x0f\\x01&67>\\x017>\\x01\\x16\\x01\\xd3'\\n!\\x83b\\b'\\x93b\\x1bGE:\\x16B\\a\\x14\\x0e\\a\\x01\\x04\\v\\x17\\v\\xb3\\x06\\x1d)\\a!.,_Q\\x01\\x93'g9,\\b'1\\x1a\\x1f\\b\\x04\\x06B\\a\\x0e\\x14\\a\\x01\\x03\\f\\x16\\v\\xb25t*\\x06\\\"-,!\\x13\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02@\\x01\\xa0\\x009\\x00A\\x00\\x00\\x01\\x16\\x17\\x16\\x15\\x14\\x06\\x0f\\x01\\x1732\\x16\\x15\\x14\\x06+\\x01'6.\\x01'&\\\"\\x0f\\x01\\x06\\x16?\\x016\\x17\\x1e\\x01\\x0f\\x0132\\x16\\x15\\x14\\x06#!\\\"&54>\\x037>\\x012\\x16\\x06264&\\\"\\x06\\x14\\x01\\xbf:)\\x1e\\x11\\r\\x9ab6\\r\\x13\\t\\aZw\\x02\\x11\\x11\\t\\x1bF\\x1c#\\f\\x13\\r #& \\x14\\x13#O\\r\\x13\\t\\a\\xfe\\xd0\\x1a&\\x1c5HX0\\x06,:,S\\x14\\x0e\\x0e\\x14\\x0e\\x01_\\x14\\x16\\x10#\\x0e\\x1e\\aVi\\x13\\r\\a\\t~\\x18,\\x13\\x06\\x15\\x15\\x1a\\n\\x19\\t\\x19\\x1a\\x0f\\x0eB\\x1b0\\x13\\r\\a\\t%\\x1a1]L<%\\x04\\x1d%%C\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00@\\x00D\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\x16\\x1d\\x01\\x14\\x06'.\\x01=\\x014&+\\x01\\x15!\\x1146;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x1626=\\x01.\\x01=\\x01'&4?\\x0162\\x17\\a5#\\x15\\x01P\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01\\xdd\\x13/!\\x1b%\\x17\\x11\\b\\xfe\\xe0&\\x1a\\xa0\\x1a&\\b$4\\x0e\\x14\\x0e\\x14\\x1c&\\x04\\x04\\f\\x04\\x0e\\x04\\x9c\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x01U\\x13\\x1b\\xdf +\\x03\\x03,\\x1d\\x1c\\x11\\x17p\\x01`\\x1a&&\\x1a\\xc04$ \\n\\x0e\\x0e\\n\\xa1\\x03\\x1f\\x15>&\\x04\\x0e\\x04\\f\\x04\\x04\\xa6\\x80\\x80\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa8\\x00C\\x00P\\x00]\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&/\\x01#\\a\\x0e\\x01+\\x01\\\"&=\\x014?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01&\\a\\x06\\x0f\\x01632\\x173632\\x17'&'&\\x0f\\x01\\x06&/\\x01&6?\\x016\\x16\\x17\\x017&#\\\"\\a\\x15\\x14\\x16;\\x0126%5&#\\\"\\a\\x17\\x1e\\x01;\\x0126\\x02>\\x02C0%.B\\x03\\x03$\\x03\\x03B.%0C\\x02-\\nC$\\x10\\x06\\x06\\x02\\x05\\x02\\f\\x06\\x0e\\x12\\x0f\\x10\\x04'));7J7;))'\\x04\\x10\\x0f\\x12\\x0e\\x06\\f\\x02\\x05\\x02\\x06\\x06\\x10$C\\n\\xfe\\xba\\x04##%$\\x1e\\x15%\\x14\\x1e\\x016$%##\\x04\\x01\\x1e\\x14%\\x15\\x1e\\xa8\\b\\bF/C=,'',=C/F\\b\\b\\xb5&%\\r\\x05\\x02\\f\\x06\\x0f\\x06\\x06\\x02\\x04\\x06\\a\\t\\x11\\x9a\\f\\x1a\\x1a\\f\\x9a\\x11\\t\\a\\x06\\x04\\x02\\x06\\x06\\x0f\\x06\\f\\x02\\x05\\r%&\\xfe\\xf1)\\r\\r%\\x15\\x1d\\x1b\\x17%\\r\\r)\\x13\\x1b\\x1d\\x00\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xfd\\x01\\x81\\x01\\x83\\x00\\x17\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06\\a\\x05\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x17\\x01n\\x12\\v\\a\\xfe\\xcd\\f\\x19\\x05\\x0e\\x06\\t\\f\\xdb\\xda\\r\\t\\x06\\x0e\\x05\\x19\\f\\xee\\b\\x15\\\"\\t\\x11\\x03\\x8f\\x06\\t\\f\\x1d\\f\\x19\\x06ff\\x05\\x19\\f\\x1d\\r\\t\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xd0\\x01\\xc0\\x01\\xb3\\x00\\x18\\x00(\\x00\\x00\\x13.\\x03?\\x01>\\x01\\x17\\x05\\x16\\x1d\\x01\\x14\\a\\x05\\x06&/\\x01&6?\\x01\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\a\\n\\x05\\x01\\x02\\f\\x05\\x1b\\r\\x01.\\x17\\x17\\xfe\\xd3\\x0e\\x1b\\x05\\f\\x05\\r\\r\\xb0\\xc1\\n\\x0e\\x0e\\n\\xfep\\n\\x0e\\x0e\\n\\x01T\\x03\\b\\v\\r\\x06\\x1e\\f\\f\\x05x\\a\\x17\\x10\\x17\\ax\\x05\\f\\f\\x1e\\r\\x18\\x04D\\xe0\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x81\\x01\\xc0\\x00&\\x00,\\x00>\\x00\\x00%\\\"/\\x03&6;\\x012\\x1f\\x0135#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x152\\x16\\x15\\x14\\x06#'\\x153.\\x02\\x13\\x16\\x14\\a\\x06#!\\\"&=\\x01463!26\\x17\\x010\\x10\\nV\\xa0 \\x01\\t\\b(\\b\\x05+а\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xb0]\\x83\\x13\\r\\xa0}\\a#4\\xbc\\x05\\x06!#\\xfe\\xba\\a\\t\\t\\a\\x01F\\r\\x17\\v@\\rs@l\\b\\f\\x06:@\\t\\a \\a\\t\\t\\a \\a\\t@\\x83]\\r\\x13\\xbc|\\x1f4#\\xfe\\xff\\x05\\x0e\\x04\\x1e\\t\\a \\a\\t\\x16\\v\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\x11\\x00\\x1c\\x00)\\x00\\x00\\x012\\x16\\x14\\x06#\\\"'\\x06#\\\"&4632\\x176\\a27&#\\\"\\x0e\\x01\\x15\\x14\\x16!2>\\x0354&#\\\"\\a\\x16\\x01\\xd7FccFQFFQFccFQFF\\xdd////\\x14!\\x14+\\x01L\\f\\x16\\x12\\x0e\\a+\\x1e///\\x01`^\\x84^OO^\\x84^OO\\xe0@@\\x11\\x1e\\x11\\x1a&\\x06\\f\\x10\\x14\\n\\x1a&@@\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xe0\\x02@\\x01\\xae\\x004\\x00@\\x00D\\x00\\x00%\\x15\\x14\\a\\\"#\\\"/\\x01\\x06#\\\"\\a\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01\\x06#\\\"'\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x0154>\\x0376\\x17\\x16;\\x012\\x16\\x06264&#\\\"\\x0e\\x02\\x15\\x14\\x175\\x06\\a\\x02@\\f\\x02\\x02\\n\\x04J\\f\\fLL\\x11\\x17\\t\\a\\x10\\a\\t\\x0e\\x02\\x18\\x18\\t\\a\\x10\\a\\t,4\\x1c$0\\x1a\\tTFCP\\n.Ew\\x14\\x0e\\x0e\\n\\x05\\t\\x06\\x04h\\x11\\x17\\xe6\\xf6\\f\\x04\\b\\x89\\x011\\v\\t;\\a\\t\\t\\a1\\x01\\x066\\a\\t\\t\\aJ\\x19Y4)D&\\x1c\\n\\x02\\x130.=K\\x0e\\x14\\x0e\\x04\\x06\\t\\x05\\n\\xa7c\\x11\\t\\x00\\x01\\x00\\x00\\xff\\xfd\\x01\\x83\\x01\\x83\\x00\\x17\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x0e\\x01'%&=\\x01467%6\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01m\\r\\t\\x06\\x0e\\x05\\x19\\f\\xfe\\xcd\\x12\\v\\a\\x013\\f\\x19\\x05\\x0e\\x06\\t\\f\\xdbZ\\x05\\x19\\f\\x1d\\r\\t\\x06\\x8f\\b\\x15\\\"\\t\\x11\\x03\\x8f\\x06\\t\\f\\x1d\\f\\x19\\x06f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xd0\\x01\\xc0\\x01\\xb3\\x00\\x16\\x00&\\x00\\x007&=\\x0147%6\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01'\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\x17\\x17\\x01.\\r\\x1b\\x05\\f\\x05\\r\\r\\xb0\\xb0\\r\\r\\x05\\f\\x05\\x1b\\x0eD\\n\\x0e\\x0e\\n\\xfep\\n\\x0e\\x0e\\n\\xea\\a\\x17\\x10\\x17\\ax\\x05\\f\\f\\x1e\\f\\x18\\x05DD\\x04\\x18\\r\\x1e\\f\\f\\x05B\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x18\\x00\\x1c\\x00 \\x00$\\x00H\\x00\\x00\\x01\\x0e\\x03\\x15\\x14\\x16\\x17\\x15!5>\\x014&'5463!2\\x16\\x15\\x055#\\x1535#\\x1535#\\x15\\x055!\\x15#54&\\\"\\x06\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54&\\\"\\x06\\x1d\\x01\\x02\\x80\\a\\f\\b\\x05\\x12\\x0e\\xfd\\x80\\x0e\\x12\\x12\\x0e\\x13\\r\\x02@\\r\\x13\\xfe`@\\xc0@\\xc0@\\xfe`\\x02\\x80@\\t\\x0e\\t\\x80\\t\\x0e\\t\\x80\\t\\x0e\\t\\x80\\t\\x0e\\t\\x01=\\x02\\t\\f\\x0e\\b\\x0f\\x19\\x05cc\\x05\\x19\\x1e\\x19\\x05#\\r\\x13\\x13\\r\\xa0\\x80\\x80\\x80\\x80\\x80\\x80\\xc0``\\x1b\\x06\\n\\n\\x06\\x1b\\x1b\\x06\\n\\n\\x06\\x1b\\x1b\\x06\\n\\n\\x06\\x1b\\x1b\\x06\\n\\n\\x06\\x1b\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x005\\x00U\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x015462\\x16\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\x173\\x14\\a\\x176=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x01\\x17\\x1e\\x01\\x17\\x167\\x17\\x06\\a\\x15\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\xb38P8U\\v\\vUU\\v\\vUU),\\x05\\x1a\\v\\t\\a\\x10\\a\\t\\x14L\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW4\\n<)\\a\\x0e2\\x10\\x12\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\t\\x8a-(88(\\b\\x10\\b \\b\\x10\\b  \\x0e\\x10\\x14\\x18\\x1a0\\a\\t\\t\\a0*&\\x80\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD\\a)(9\\x04\\x01\\x01'\\x06\\x02\\\"\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x81\\x01\\xa1\\x00\\x1e\\x00&\\x00,\\x004\\x00:\\x00@\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x0e\\x01#\\\"'&#\\\"\\x06#\\\"'&5\\x114632\\x17\\x1632632\\x05\\x152>\\x027&\\x03\\x16\\x17.\\x01#6264&\\\"\\x06\\x14\\x055\\x0e\\x01\\a\\x1675&'\\x1e\\x01\\x02m\\x13\\t\\x0f\\b\\x05\\x06+1>\\xf6>?5\\x13\\x13\\r\\x05\\x06+1>\\xf6>?\\xfd\\xf8\\v\\x16\\x10\\f\\x02$\\x1b\\x1e\\\"\\x01%\\x1a\\xefB//B/\\x01`\\x14\\x1e\\x04\\x1f\\x17\\x1a\\x1e\\x01 \\x01\\x8a\\b\\x16\\xfe\\xc3\\t\\x0f\\b\\x02\\r>\\x16\\b\\x16\\x01=\\x0e\\x12\\x02\\r>d=\\b\\x0e\\x13\\v\\x02\\xfe\\xea\\v\\x03\\x1a$\\x118P88PT:\\x03\\x1b\\x13\\x03\\xe61\\n\\x03\\x18#\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x81\\x01\\xa1\\x00\\x1e\\x00&\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x0e\\x01#\\\"'&#\\\"\\x06#\\\"'&5\\x114632\\x17\\x1632632\\x00264&\\\"\\x06\\x14\\x02m\\x13\\t\\x0f\\b\\x05\\x06+1>\\xf6>?5\\x13\\x13\\r\\x05\\x06+1>\\xf6>?\\xfe\\xe7B//B/\\x01\\x8a\\b\\x16\\xfe\\xc3\\t\\x0f\\b\\x02\\r>\\x16\\b\\x16\\x01=\\x0e\\x12\\x02\\r>\\xfe\\xc08P88P\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\t\\x00\\x19\\x00%\\x001\\x00=\\x00G\\x00\\x001\\x11!\\x11\\x14\\x06#!\\\"&%\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"%\\x15\\x143!2=\\x014#!\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x012\\x16\\x1d\\x01!5463\\x02\\x80\\x13\\r\\xfd\\xc0\\r\\x13\\x01\\xc0\\t\\a`\\a\\t\\t\\a`\\a\\t\\bp\\b\\bp\\b\\xfe\\x80\\b\\x010\\b\\b\\xfe\\xd0\\b\\b\\xb0\\b\\b\\xb0\\b\\x020\\a\\t\\xfd\\x80\\t\\a\\x01@\\xfe\\xc0\\r\\x13\\x13\\xdd \\a\\t\\t\\a \\a\\t\\t\\u007f\\x10\\b\\b\\x10\\bX\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x01@\\t\\a00\\a\\t\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x0f\\x00K\\x00W\\x00c\\x00o\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132>\\x0254&/\\x01&546;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x15\\x14;\\x0125754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014#!\\\"\\x1d\\x01\\x143!2\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x90\\t\\x10\\v\\a\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\xf0\\bp\\b\\bp\\b\\xa0\\bP\\b\\bP\\b\\b\\xfe\\xf0\\b\\b\\x01\\x10\\b\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfe\\xd8\\b\\f\\x10\\t\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x10\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b \\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x00\\x01\\x00\\x00\\xff\\xb9\\x01\\xc6\\x01\\xc7\\x003\\x00\\x00%#\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x06/\\x01&?\\x01#\\\"&=\\x0146;\\x017#\\\"&=\\x01463!76\\x1f\\x01\\x16\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06\\x01\\xa0bK\\xad\\r\\x13\\x13\\r\\xf7S\\t\\r\\x19\\r\\n37\\r\\x13\\x13\\r\\x82K\\xcd\\r\\x13\\x13\\r\\x01\\x17R\\n\\r\\x19\\r\\n4\\x18\\r\\x13\\x13\\xf0`\\x13\\r \\r\\x13j\\f\\t\\x14\\t\\rC\\x13\\r \\r\\x13`\\x13\\r \\r\\x13j\\f\\t\\x14\\t\\rC\\x13\\r \\r\\x13\\x00\\x00\\x00\\x00\\x05\\xff\\xf7\\xff\\xba\\x02\\x00\\x01\\xcb\\x00\\x15\\x00\\x1d\\x00%\\x00-\\x005\\x00\\x00\\x136\\x1e\\x01\\x15\\x14\\x06+\\x01\\\"\\x06\\x17\\x16\\x06\\a\\x06.\\x027>\\x01\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\xccP\\x8fU&\\x1bP&(\\x11\\x0f\\x1a\\x1f/hP)\\r\\x0fn/\\x1a\\x13\\x13\\x1a\\x133\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xbb\\x10=\\u007fN\\x1b&@\\\"\\x1c;\\x05\\a*P}CJm\\xfe\\xd4\\x13\\x1a\\x13\\x13\\x1am\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1aS\\x13\\x1a\\x13\\x13\\x1a\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\\"\\x00*\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13264&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x0172\\x16\\x14\\x06+\\x015\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xc0(88(`\\a\\t\\t\\a \\a\\t0\\r\\x13\\x13\\r0\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xe08P8\\t\\a\\xe0\\a\\t\\t\\a0\\x80\\x13\\x1a\\x13@\\x00\\x03\\xff\\xff\\x00\\x00\\x01\\x80\\x01\\x81\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x12\\x06\\\"&462\\x1e\\x02\\x14\\x06\\\"&467\\x16\\x14\\a\\x01\\x06\\\"/\\x01&47\\x0162\\x17\\x80%6%%6%\\xdb%%6%%F\\n\\n\\xfe\\xee\\n\\x1a\\n\\x16\\n\\n\\x01\\x12\\n\\x1a\\n\\x01%%%6%%\\xdb%6%%6%\\xd5\\n\\x1a\\n\\xfe\\xee\\n\\n\\x16\\n\\x1a\\n\\x01\\x12\\n\\n\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00$\\x004\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x03\\x153\\x15#\\x15\\x17\\\"\\a'#\\\"&=\\x0146;\\x012\\x16%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x01\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\x13\\r@\\xe0\\xe0@$\\x13I`\\r\\x13\\x13\\r\\x80\\r\\x13\\x01\\xa0\\r\\x13\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\x01  @0p \\x80\\x13\\r\\x80\\r\\x13\\x13\\x13\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\x00\\x04\\x00\\x00\\xff\\xbd\\x01\\x80\\x01\\xc3\\x00%\\x001\\x00=\\x00I\\x00\\x00\\x016\\x16\\x15\\x11\\x14\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"/\\x01\\a\\x06&5\\x1146\\x1f\\x01762\\x1f\\x01762\\x1f\\x01\\x1154+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01f\\b\\x12\\x12\\b&6\\x05\\n\\x0566\\x05\\n\\x056&\\b\\x12\\x12\\b&6\\x05\\n\\x0566\\x05\\n\\x056\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\x01\\xbd\\x06\\t\\n\\xfe \\n\\t\\x06--\\x03\\x03--\\x03\\x03--\\x06\\t\\n\\x01\\xe0\\n\\t\\x06--\\x03\\x03--\\x03\\x03-\\xfe\\xc8\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00!\\x00+\\x00/\\x003\\x00=\\x00A\\x00K\\x00\\x0073\\x15#\\\"&=\\x0146%\\x11\\x14\\x06#!\\\"&5\\x1146;\\x015462\\x16\\x1d\\x0132\\x16\\x054&\\\"\\x06\\x14\\x16326\\a#\\x1537#\\x15374&\\\"\\x06\\x14\\x16326\\a#\\x1537\\x15\\x14\\x06+\\x01532\\x16   \\r\\x13\\x13\\x02\\r&\\x1a\\xfe\\xc0\\x1a&/!p\\x13\\x1a\\x13p!/\\xfe\\xe8\\x17\\\"\\x17\\x17\\x11\\x11\\x17\\b@@`@@h\\x17\\\"\\x17\\x17\\x11\\x11\\x17\\b@@\\xc0\\x13\\r  \\r\\x13\\xe0\\xc0\\x13\\r\\x80\\r\\x130\\xfe\\xf0\\x1a&&\\x1a\\x01\\x10!/@\\r\\x13\\x13\\r@/q\\x11\\x17\\x17\\\"\\x17\\x17o   \\xa0\\x11\\x17\\x17\\\"\\x17\\x17o \\xa0\\x80\\r\\x13\\xc0\\x13\\x00\\x00\\x01\\xff\\xfd\\xff\\xcd\\x02\\x83\\x01\\xb3\\x007\\x00\\x00\\x01\\x16\\x06\\a\\x01\\x06&/\\x01&6?\\x01\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x0176\\x16\\x17\\x02|\\x06\\a\\v\\xfe\\x0f\\v\\x1a\\x06P\\x06\\x06\\fE<\\x04\\a\\r\\a\\x04<8\\x1c\\x04\\x06\\x0e\\a\\x04\\x1c7<\\x04\\a\\x0e\\a\\x04<7\\x1c\\x04\\a\\x0e\\a\\x04\\x1c7<\\x04\\a\\r\\a\\x04;E\\v\\x1a\\x06\\x01\\x19\\v\\x1a\\x06\\xfe\\xe6\\x06\\x06\\f\\x87\\v\\x19\\a'e\\a\\x04\\b\\x04\\x06f\\x1f/\\a\\x04\\b\\x04\\x060\\x1ff\\x06\\x03\\b\\x04\\af\\x1f/\\a\\x04\\b\\x04\\x060\\x1ff\\x06\\x03\\b\\x04\\af'\\x06\\x06\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00G\\x00\\x007\\x15\\a&5\\x1146;\\x012\\x16\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x143\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"'73\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x01\\xa0\\x9e\\x02\\x13\\r`\\r\\x138\\b\\b88\\b\\b88\\b\\b\\x01x\\r\\x13\\x13\\r\\xfe@\\x02\\x06\\x9f)\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\xa0)\\x9f\\x06\\x02\\x01\\xc0\\r\\x13\\x13\\r \\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\x13\\r`\\r\\x13\\x02\\x9e8\\b\\b88\\b\\b88\\b\\b8\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00@\\x02@\\x01@\\x007\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x01\\x02 \\r\\x13\\x13\\r\\xfe\\x00\\r\\x13\\x13\\r0\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\x01@\\x13\\r\\xc0\\r\\x13\\x13\\r\\xc0\\r\\x13X\\b\\bXX\\b\\bXX\\b\\bXX\\b\\bXX\\b\\bX\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00/\\x00\\x0073\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14\\xa8X\\x13\\r\\xc0\\r\\x13\\x13\\r\\xc0\\r\\x13X\\b\\bXX\\b\\bXX\\b\\bXX\\b @\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x13\\r@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x19\\x00/\\x007\\x00A\\x00\\x00546;\\x01\\x11#\\\"&5\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x017\\x16\\x15\\x11#54&+\\x01\\\"\\x06\\x1d\\x01#\\x114?\\x0162\\x17\\x06264&\\\"\\x06\\x14%2\\x16\\x15\\x11\\x14\\x06+\\x01\\x11\\x13\\r@P\\a\\t\\x01h\\b\\b0\\b\\b\\x10\\b\\xa2\\x0e\\x80\\t\\a`\\a\\t\\x80\\x0e\\xa0\\b\\x14\\b3B//B/\\x01p\\r\\x13\\t\\aP\\xe0\\r\\x13\\xfe\\xc0\\t\\a\\x01@\\b\\x10\\b\\b@\\b\\b(@\\n\\x11\\xfe\\x8b\\x90\\a\\t\\t\\a\\x90\\x01u\\x11\\nk\\x05\\x05\\xfb/B//B\\x11\\x13\\r\\xfe\\xf0\\a\\t\\x01@\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x17\\x00\\x00\\x01\\x17\\a#\\a.\\x01'75\\a62\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&47\\x01\\xc0@`>S\\a\\x10\\vS\\xc0\\x16>+\\x16u\\v\\x1e\\v5\\v\\v\\x01\\xc0@\\x80S\\v\\x10\\aS>\\xb7\\x16+>\\x16u\\v\\v5\\v\\x1e\\v\\x00\\x04\\x00\\x00\\xff\\xbd\\x02\\x80\\x01\\xc3\\x00\\a\\x00\\x0f\\x00!\\x004\\x00\\x00\\x13\\\"&46;\\x01\\x15\\x0246;\\x01\\x15#\\\"%2\\x16\\x15\\x14\\x06\\a\\x06'&/\\x0152>\\x0176\\x13\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"'.\\x02#57676\\xc0\\x1b%%\\x1b \\xe0%\\x1b  \\x1b\\x01,IfHM-4#-:\\x1c+\\x0f\\x130\\xd2MH2N/80\\x13\\x0f+\\x1c:-#3\\x01 %6%\\x80\\xfe\\xe56%\\x80\\xc02.&B\\x11\\n\\x04\\x02\\r\\x10\\x80\\v\\t\\f \\x01\\x19\\x11B&\\x1f,\\x15 \\f\\t\\v\\x80\\x10\\r\\x02\\x04\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00*\\x002\\x00:\\x00\\x00\\x122\\x16\\x15\\x14\\x0e\\x01\\a\\x06\\x1f\\x01\\x16\\x0e\\x02+\\x0154+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#\\\"&?\\x016'.\\x0154\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x96Ԗ\\x17*\\x1d\\x11\\x03\\t\\x01\\x02\\x04\\a\\x03N\\b\\x10\\b@\\b\\x10\\bN\\a\\t\\x01\\t\\x03\\x11,2\\x864&&4&\\xe64&&4&\\x01\\xc0\\x83]\\\"A6\\x15\\v\\x13B\\x03\\a\\x05\\x038\\b\\b88\\b\\b8\\v\\aB\\x13\\v Z4]\\xbd&4&&4&&4&&4\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x11\\x00\\x19\\x00\\x1d\\x00/\\x00J\\x00\\x007546;\\x01\\x17#\\\"&\\x122\\x16\\x14\\x06\\\"&4\\x0127\\x01\\x06\\x15\\x14\\x167\\x1735\\x17654&#\\\"\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01'2\\x16\\x17\\x14\\x0e\\x02+\\x01\\\"'.\\x01#\\\".\\x01'46;\\x012\\x17\\x1e\\x01`\\t\\a\\x16`v\\a\\t6Ԗ\\x96Ԗ\\x01\\x00=2\\xfe\\xf5$q| 3\\x1c$qO=2|\\x83\\a\\t\\t\\a#,\\x18#\\x04\\x01\\x02\\x03\\x02\\x10\\a\\x01\\x02\\x12\\v\\x10\\x1c\\x11\\x03\\x05\\x03\\x11\\x06\\x01\\x02\\x12\\x90@\\a\\t`\\t\\x017\\x96Ԗ\\x96\\xd4\\xfe\\xd6$\\x01\\v2=Oq\\xc0  o2=Oq$|\\t\\a@\\a\\t\\xc0\\x1f\\x18\\x01\\x04\\x02\\x02\\x06\\v\\x0f\\x0e\\x19\\x10\\x03\\x06\\x06\\v\\x0f\\x00\\x02\\xff\\xf4\\xff\\xc0\\x02t\\x01\\xc0\\x00\\x1a\\x003\\x00\\x00\\x01\\x16\\x06\\a\\x06#\\\"'\\x06\\\"'\\x06\\\"'\\x06#\\\"'.\\x01?\\x0163!2\\x17\\x032767\\x15\\x14\\x06#!\\\".\\x01=\\x01\\x16\\x17\\x16327\\x15!5\\x16\\x02Z\\x1a&/\\a\\a,\\x1d\\x1eX\\x1e\\x1eX\\x1e\\x1d-\\x06\\a/&\\x1aA\\t\\x12\\x01\\x94\\x12\\t\\a\\t\\t\\a\\t\\x13\\r\\xfe@\\t\\x0e\\t\\t\\a\\t\\t\\r\\x11\\x01\\x80\\x10\\x01I(Z\\x06\\x01!!!!!!\\x01\\x06Z(h\\x0f\\x0f\\xfe\\xef\\x01\\x01\\x03\\xc5\\r\\x13\\t\\x0e\\t\\xc5\\x03\\x01\\x01\\x04dd\\x04\\x00\\x03\\xff\\xfa\\xff\\xc0\\x02\\x86\\x01\\xc0\\x00\\r\\x00\\x1b\\x00%\\x00\\x00%53\\x11\\x14\\x06#!\\\"&5\\x113\\x15%\\x16\\x06#!\\\"&?\\x0163!2\\x17\\x03\\x113\\x11\\x14\\x06+\\x01\\\"&\\x01@@\\x13\\r\\xff\\x00\\r\\x13@\\x01\\xfb\\n\\x12\\x13\\xfd\\xc0\\x13\\x12\\vU\\t\\x11\\x01\\x96\\x11\\t%@\\t\\a \\a\\t@\\xa0\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\xa0\\xf2\\x10\\\"\\\"\\x10\\x80\\x0e\\x0e\\xfe\\x1e\\x01\\x10\\xfe\\xf0\\a\\t\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x13\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x10\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a@\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01`\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01@\\t\\a@\\a\\t\\t\\a@\\a\\tP\\t\\a@\\a\\t\\t\\a@\\a\\t\\xb0\\t\\a@\\a\\t\\t\\a@\\a\\t\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x13\\x00\\xb0\\x00\\xb4\\x00\\x007\\x17\\a'7\\a'7\\a7\\x17\\a\\x022\\x16\\x14\\x06\\\"&4\\x0564/\\x0176/\\x01&\\x0f\\x01'7\\x17\\x16?\\x016/\\x0176/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x017\\x17\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x017\\x17\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x0176/\\x01&\\x0f\\x01'7\\x17\\x167'7\\x17\\a\\xbc---\\x9e-------jԖ\\x96Ԗ\\x01\\xbb\\x02\\x02\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\x98---\\xed---D---\\xb5---\\x01q\\x96Ԗ\\x96Ԓ\\x03\\x06\\x03\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x063---\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00+\\x00/\\x00M\\x00\\x00%\\x16\\x1d\\x01#54&+\\x01\\\"\\x06\\x1d\\x01#54&+\\x01\\\"\\x06\\x1d\\x01#54?\\x016;\\x01546;\\x012\\x16\\x1d\\x0132\\x17'5#\\x15\\x1753\\x15\\x14\\x06#!\\\"&=\\x013\\x15\\x14\\x16;\\x0126=\\x013\\x15\\x14\\x16;\\x0126\\x01\\xf7\\t\\x80\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x80\\t.\\t\\r3\\x1c\\x14\\xa0\\x14\\x1c3\\r\\t\\x89\\x80\\xc0\\x80\\x13\\r\\xfe@\\r\\x13\\x80\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\xe9\\t\\rS\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10S\\r\\t.\\tP\\x14\\x1c\\x1c\\x14P\\t\\t@@\\xd0\\x10`\\r\\x13\\x13\\r`\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\x00\\x01\\xff\\xfe\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00%\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01&\\x06\\x1d\\x01\\x14\\x06#!\\\"&=\\x014&\\x0f\\x01\\x06&/\\x01&6?\\x01\\x1e\\x01267\\x02w\\x06\\x04\\x039\\x03\\r\\x059\\b\\x0f\\x13\\r\\xff\\x00\\r\\x13\\x0f\\b9\\x06\\f\\x039\\x03\\x04\\x06\\xc3\\x0f?L?\\x0f\\x01`\\x03\\r\\x06r\\x06\\x05\\x03\\x1c\\x04\\t\\t\\xfe\\r\\x13\\x13\\r\\xfe\\t\\t\\x04\\x1c\\x03\\x05\\x06r\\x06\\r\\x03`\\x15\\x1a\\x1a\\x15\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbd\\x01C\\x01\\xc0\\x00\\a\\x00:\\x00I\\x00\\x00\\x12\\\"&462\\x16\\x14\\x17\\x1e\\x01\\x0e\\x01/\\x01&/\\x01\\a\\x17\\x16\\x1f\\x01\\x16\\x0e\\x01&/\\x01&/\\x01&?\\x01\\a\\x06\\x0f\\x01\\x0e\\x01.\\x01?\\x0167>\\x0632\\x16\\x1f\\x01\\a7\\x16\\x17\\a\\x06\\x0f\\x01\\x06\\\"&4?\\x016\\xe4(\\x1c\\x1c(\\x1c.\\f\\t\\f\\x19\\f\\x17\\x17\\t\\x05\\x11-\\v\\x04\\x16\\x03\\r\\x1a\\x17\\x03\\x12\\x04\\v<\\x17\\b\\x0f\\x1a\\f\\x05\\a\\x06\\x18\\x18\\b\\x06\\x06\\x10\\\"\\x04\\x15\\a\\x11\\t\\x0e\\x0e\\a#8\\f\\t\\xcd\\x14\\b(\\x0e\\x05\\t;\\n\\x1a\\x13\\t2\\n\\x01`\\x1c(\\x1c\\x1c(\\xb1\\x06\\x19\\x18\\b\\x06\\v\\f\\x19\\x11E2\\v\\x10Y\\r\\x17\\x06\\r\\rJ\\x0f\\fB\\x19\\\"<\\v\\x04\\v\\x0e\\v\\t\\f\\x19\\f\\x0e \\x0e\\x01\\t\\x03\\x06\\x02\\x03\\x01*\\\"\\x1d\\x994\\n,\\\"\\f\\t<\\t\\x13\\x1a\\n2\\t\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1c\\x00$\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x14\\x06#!\\\"\\x06\\x14\\x163\\x04264&\\\"\\x06\\x14\\x01\\xcd\\x15\\x1e\\x1e\\x15\\xfes\\x1b%%\\x1b\\x01p\\x14\\x1c\\t\\a\\xfe\\x80\\a\\t\\t\\a\\x01C\\x1a\\x13\\x13\\x1a\\x13\\x01@\\x1c\\x14\\xff\\x00\\x14\\x1c%\\x1b\\x01@\\x1b%\\x1c\\x14\\a\\t\\t\\x0e\\t\\xd0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00$\\x006\\x00O\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\x162654':\\x0112764.\\x01/\\x01&\\x06\\a\\x06\\x1e\\x02\\x1f\\x01\\x06\\x17\\x16>\\x01'&\\\"\\a\\x0e\\x01\\x1e\\x0367627>\\x01'.\\x02\\x0f\\x01\\x0e\\x01\\x17\\x16323\\x06\\x15\\x14\\x162654'\\x91Α\\x91Α\\x88\\x13\\x1a\\x13\\x02\\x01\\x01\\f\\x03\\x01\\x03\\x05\\x03P\\a\\v\\x02\\x01\\x01\\x02\\x05\\x04\\x1e\\n\\xa8\\x06\\x12\\x06\\x06\\x1fb \\x02\\x02\\x02\\x04\\x06\\a\\a\\x03\\x15Fb\\x06\\x06\\x02\\x01\\x06\\b\\x04P\\a\\x06\\x02\\x03\\f\\x01\\x01\\x02\\x13\\x1a\\x13\\n\\x01\\xb8\\x91Α\\x91\\xceW\\r\\x13\\x13\\r\\x02\\x06\\v\\x04\\x06\\x05\\x04\\x01\\x18\\x02\\x06\\x06\\x04\\x06\\x05\\x04\\x01\\n\\t\\xa8\\b\\x04\\x10\\b&&\\x03\\b\\x06\\x06\\x03\\x01\\x03\\x04\\x19\\xa2\\x02\\v\\a\\x04\\x06\\x01\\x01\\x18\\x02\\v\\a\\v\\x05\\x03\\r\\x13\\x13\\r\\x0e\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\\"\\x002\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x024&\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x11!\\x11\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x020\\a\\t\\t\\a\\xa0\\a\\t8P8\\t\\a\\xa0\\a\\t\\t\\a\\x10\\x02\\x00\\x10\\a\\t\\t\\a\\xfd\\xe0\\a\\t\\t\\a\\t\\a \\a\\t\\t\\a\\x10\\xa0(88(\\xb0\\a\\t\\t\\a \\a\\t\\x01`\\xfe\\xa0\\x01\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\t\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x04\\x00\\t\\x00\\x11\\x00\\x16\\x00\\x1b\\x00#\\x00:\\x00B\\x00J\\x00\\x00%\\x06\\a6?\\x01#&'\\x16'\\x1e\\x02\\x17#>\\x01\\a\\x06\\a#6\\x17&'3\\x167\\x0e\\x01\\a.\\x02'\\x17\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x06\\\"\\x06\\x14\\x16264\\x135!\\\"\\x06\\x14\\x163\\x01>\\b-\\f\\x02''\\x02\\f-V\\x04\\n\\b\\x01.\\x01\\x0f\\\"\\f\\x02'\\b--\\b'\\x02L\\x01\\x0f\\a\\x04\\n\\b\\x01\\xf7\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xabjKKjK \\xfe\\xe0\\r\\x13\\x12\\x0e\\xf01\\x15\\x1d) )\\x1d\\x15\\x1e\\x05\\x12#\\x15\\x1e*\\x02\\x1d)1\\x97\\x151))\\x1e*\\a\\x05\\x12#\\x15\\x96\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a&KjKKj\\xfe\\xcb@\\x12\\x1c\\x12\\x00\\x00\\x04\\xff\\xfd\\xff\\xbe\\x01\\x83\\x01\\xc5\\x00\\x14\\x00,\\x00x\\x00\\x83\\x00\\x007\\x16327\\a\\x0e\\x01/\\x01\\a\\\"&?\\x01\\x16\\x17\\x16\\x17\\x16\\x17\\x05\\x16\\x06#'\\a\\x06&/\\x01\\x1632767672>\\x01367\\a\\x0e\\x01'&\\\"\\a\\x06&'.\\a'&'.\\x01'&764'&7>\\x0176767676\\x17\\x16276\\x17\\x1e\\x01\\x17\\x16\\x17\\x1e\\x03\\x17\\x16\\a\\x06\\x14\\x17\\x16\\a\\x0e\\x01\\a\\x06\\a\\x0e\\x06&\\x14\\x162654.\\x01#\\\"a\\x16\\x1e\\x12\\x114\\x03\\x11\\x06%4\\t\\n\\x03.\\f\\r\\x03\\x06\\t\\x04\\x01!\\x03\\n\\t4%\\x06\\x11\\x034\\x11\\x12\\x1e\\x16\\x01\\x02\\x04\\t\\x02\\x02\\x03\\x02\\r\\fJ\\n\\x1c\\f\\t\\x18\\t\\f\\x1c\\n\\x03\\x04\\x04\\x04\\x02\\a\\x03\\t\\x03\\x16\\x06\\x06\\x05\\x0f\\x11\\x06\\x06\\x06\\x06\\x11\\x0f\\x05\\x06\\x06\\x16\\x19\\b\\x02\\n\\x11\\x16\\x15\\n\\x15\\x16\\x11\\x0f\\t\\x15\\x16\\x06\\x04\\x01\\b\\x03\\n\\x11\\x06\\x06\\x06\\x06\\x11\\x0f\\x05\\x06\\x06\\x16\\x03\\n\\x03\\a\\x03\\x05\\x05\\xa87N7\\x19+\\x1a'U\\x15\\n\\x80\\b\\x03\\x06&\\x02\\x0e\\bp\\n\\x04\\x01\\x01\\x02\\x05Y\\b\\x0e\\x02&\\x06\\x03\\b\\x80\\n\\x15\\x01\\x02\\x05\\x02\\x01\\x01\\x04\\n\\x03\\n\\x03\\a\\x06\\x06\\a\\x03\\n\\x03\\x04\\x03\\x03\\x01\\x02\\x01\\x02\\x01\\x06\\x17\\x15\\t\\x10\\x11\\x16\\x16\\n\\x15\\x17\\x11\\x0f\\t\\x16\\x16\\a\\x06\\b\\x01\\v\\x11\\x06\\x06\\x06\\x06\\x11\\x10\\x05\\x05\\a\\x16\\x0f\\x04\\x0e\\x03\\n\\x11\\x17\\x15\\n\\x16\\x16\\x11\\x10\\t\\x15\\x17\\x06\\x01\\x02\\x01\\x03\\x01\\x04\\x05\\xc9P88(\\x1a,\\x1a\\x00\\x00\\x00\\x02\\xff\\xff\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x11\\x00-\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"/\\x01&4?\\x0163\\x05'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016\\x02@\\x1b%%\\x1b\\xfe\\x8d\\x1a\\x13\\x97\\t\\t\\x97\\x13\\x1a\\x01\\x1e>>\\f\\f\\x16\\f\\v>>\\v\\f\\x16\\f\\f>>\\f\\f\\x16\\f\\v>>\\v\\f\\x16\\f\\x01\\x80%\\x1b\\xff\\x00\\x1b%\\x13\\x96\\n\\x1a\\n\\x96\\x13\\xfe>>\\v\\f\\x16\\f\\f>>\\f\\f\\x16\\f\\v>>\\v\\f\\x16\\f\\f>>\\f\\f\\x16\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x0f\\x00'\\x007\\x00M\\x00]\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a\\x15\\x14\\x17\\x06\\a#>\\x017#\\x0e\\x03#\\\"&4632\\x16\\x1f\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x14\\x06#\\\"&'#\\x1e\\x01\\x17#&'6=\\x013>\\x01\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x01p\\r\\x13\\x13\\r`\\r\\x13\\x13\\r@\\x066\\x112\\v9*P\\x03\\f\\x0f\\x13\\n\\x1b%%\\x1b\\x14 \\a%\\r\\x13\\x13\\r`\\r\\x13\\x13\\r\\x02\\x00\\x1b%%\\x1b\\x14 \\aP*9\\v2\\x116\\x06U\\a \\x14\\r\\x13\\x13\\r`\\r\\x13\\x13\\r\\x01\\xa0\\x13\\r`\\r\\x13\\x13\\r`\\r\\x138H\\x0e\\f'?0O\\x19\\t\\x0f\\n\\x06%6%\\x16\\x12\\xe8\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x01\\x10%6%\\x16\\x12\\x19O0?'\\f\\x0eH\\x12\\x16\\xfe\\xf0\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc7\\x01\\xc1\\x001\\x00;\\x00\\x00\\x05#\\\"'&54675#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x16\\x177'&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06/\\x01\\a\\x16\\x15\\x14\\a\\x06'\\x06\\a!&/\\x015#\\x15\\x01.\\xdc&\\x12\\x1a4,\\x10\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\x10\\x15\\x12'\\t\\f\\f\\v\\v\\f4\\f\\f\\v\\v\\f\\t+\\x1b\\x1a\\x12\\xdc%\\x13\\x01\\x00\\x13%\\x18`@!,34Y\\x19\\x9a\\t\\a \\x06\\n\\t\\a \\x06\\n\\x9a\\f\\x11'\\t\\f\\v\\v\\f\\f4\\f\\v\\v\\f\\f\\t+.53,!\\xfd\\x16''\\x16\\r\\xb6\\xb6\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\t\\x00\\x1b\\x00#\\x00\\x00\\x012\\x16\\x1d\\x01!5463\\x035!\\x15\\x14\\x06+\\x01\\x15\\x14\\x06\\\"&=\\x01#\\\"&\\x16\\\"\\x06\\x14\\x16264\\x01`\\r\\x13\\xfe\\x80\\x13\\r \\x01\\x80%\\x1b@%6%@\\x1b%\\xca\\x14\\x0e\\x0e\\x14\\x0e\\x01\\xc0\\x13\\r\\xe0\\xe0\\r\\x13\\xfe\\xc0  \\x1b%@\\x1b%%\\x1b@%M\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x004\\x00@\\x00H\\x00R\\x00\\\\\\x00d\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01%\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x02264&\\\"\\x06\\x1475#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0226=\\x014&+\\x01\\x12264&\\\"\\x06\\x14\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\x0e\\f\\x06\\x13\\r \\r\\x13\\xc0\\x13\\r \\r\\x13\\r\\x13\\b\\n\\x0e\\x0e\\n\\b\\x82\\xbc\\x82\\xfe\\xc0\\b\\xb0\\b\\b\\xb0\\b=\\x1a\\x13\\x13\\x1a\\x13\\xa0p\\r\\x13\\x13\\r\\x90p\\r\\x13\\x13\\rps\\x1a\\x13\\x13\\x1a\\x13\\x01@\\x0e\\nP\\n\\x0e\\xa6\\v\\x0f \\r\\x13\\x13\\r  \\r\\x13\\x13\\r \\x13\\r\\xa0\\x0e\\nP\\n\\x0e0\\\"..\\\"08\\x10\\b\\b\\x10\\b\\xfe\\xb0\\x13\\x1a\\x13\\x13\\x1a]\\xa0\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\xfe\\xf0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x02\\x02\\x01\\xc0\\x00[\\x00\\x00%\\x16\\x14\\a\\x06#\\\"#\\x16\\x17\\x16\\a\\x06#\\\"'&'\\x15\\x14+\\x01\\\"=\\x01\\x06\\a\\x06#\\\"'&767\\\"#\\\"'&4767.\\x02'454632\\x17\\x1e\\x02\\x170454>\\x01762\\x17\\x1e\\x04\\x15\\x14\\x15>\\x027632\\x17\\x16\\a\\x0e\\x02\\a\\x16\\x01\\xf7\\t\\t<I\\t\\t\\f\\x05\\x03\\a\\x04\\a\\x02\\x03%(\\b\\x10\\b(%\\x03\\x02\\a\\x04\\a\\x03\\x05\\f\\t\\tI<\\t\\t ,\\x1c+\\v\\x03\\t\\a\\x02\\x01\\v\\\"S!!\\x16\\b\\x04\\x12\\x04\\x04\\t\\x15\\x10\\r!S\\\"\\v\\x01\\x02\\a\\x04\\a\\x02\\x03\\v+\\x1c-X\\x05\\x13\\x05\\x1f\\x16\\x11\\t\\a\\x05\\x01\\f\\x1b@\\b\\b@\\x1c\\v\\x01\\x05\\a\\t\\x11\\x16\\x1f\\x05\\x13\\x05\\x11\\t!V#\\v\\x02\\x02\\x06\\n\\x01\\x02\\n)\\x1a\\x03\\x015p(\\r\\a\\a\\x05\\x10.0F!\\x03\\x01\\x1a)\\n\\x02\\x01\\x05\\x06\\t\\v#V!\\t\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00\\x14\\x00'\\x00\\x00\\x01\\x16\\x14\\a\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x17\\x05'&?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x0f\\x01\\x06\\\"\\x01\\xf9\\a\\a\\xfe\\xd8\\a\\x14\\a\\xa8\\a\\a(\\a\\x14\\ao\\xf0\\x06\\x14\\a\\xfe\\xe4p\\f\\f-\\x05\\r\\x057\\x98\\x04\\r\\x05-\\f\\f\\xd0\\x04\\x0e\\x01\\x11\\a\\x14\\a\\xfe\\xd8\\a\\a\\xa8\\a\\x14\\a(\\a\\ap\\xf0\\a\\a\\x92p\\f\\v-\\x05\\x057\\x97\\x05\\x05-\\v\\f\\xd0\\x05\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x17\\x00-\\x00\\x00\\x052\\x16\\x15\\x14+\\x01\\\"546;\\x015'&63!2\\x16\\x0f\\x01\\x15\\x132\\x16\\x14\\x06#\\\"'7\\x163264&#\\\"\\x06\\a#>\\x01\\x01(\\x11\\x17\\b\\xf0\\b\\x17\\x118\\xa9\\v\\f\\x11\\x01n\\x11\\f\\v\\xa9\\xc0<TT<(#$\\x13\\x14(88(\\x1a,\\r4\\x0fJ\\x10\\x17\\x11\\b\\b\\x11\\x17}\\xa9\\f\\x1e\\x1e\\f\\xa9}\\x01\\xd0TxT\\x15$\\t8P8\\x1a\\x16+5\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x19\\x00)\\x00\\x00\\x01\\x1e\\x01\\x15!4675#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01 Rn\\xfe@nR\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\xd0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01=\\v~TT~\\v\\x13\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xfe\\xf0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x04\\xff\\xff\\xff\\xba\\x02\\x06\\x01\\xc6\\x00%\\x00-\\x005\\x00=\\x00\\x00%\\x16\\x0f\\x01\\x0e\\x02\\x0f\\x01\\x06/\\x01.\\x01/\\x01.\\x01/\\x01&54?\\x01>\\x01?\\x016\\x1f\\x01\\x16\\x1f\\x01\\x1e\\x01\\x17\\x04264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\xfe\\a\\x13$\\x05\\x13\\x17\\nE'*M\\x11+\\f7\\r\\x16\\x02\\f\\x02\\x0e$\\b!\\x10E'*M*\\x1e7\\r\\x16\\x02\\xfe\\xb1\\x1a\\x13\\x13\\x1a\\x133\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xc1*'E\\n\\x17\\x13\\x05$\\x13\\a\\f\\x03\\x15\\r7\\f+\\x12L\\n\\v\\x1f\\x1dE\\x0f\\\"\\b$\\x13\\a\\f\\x06\\x1f7\\f+\\x12\\xbd\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x93\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xba\\x02\\x05\\x01\\xc5\\x00#\\x00+\\x003\\x00;\\x00\\x00%\\x16\\x0f\\x01\\x0e\\x02\\x0f\\x01\\x06/\\x01.\\x01/\\x01.\\x01/\\x01&54?\\x01>\\x01?\\x016\\x17\\x1e\\x013\\x14\\x16\\x04264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\xff\\x06\\x13#\\x06\\x13\\x17\\nE'*M\\x11+\\f7\\r\\x16\\x02\\f\\x02\\x0e$\\b!\\x10E&*\\x01J5J\\xfe\\xd9\\x1a\\x13\\x13\\x1a\\x133\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xc0*&E\\n\\x17\\x13\\x05$\\x13\\a\\f\\x03\\x15\\r7\\f+\\x12L\\n\\v\\x1f\\x1dE\\x0f\\\"\\b$\\x13\\a4J5Jq\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x93\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x18\\x001\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x11#532\\x16\\x15\\x11\\x01\\x113\\x15#\\\"&5\\x11#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x01\\xe8\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e\\xa0\\xe0\\r\\x13\\xfe\\xe0\\xa0\\xe0\\r\\x13(\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e`\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\n\\x01H`\\x13\\r\\xff\\x00\\x01H\\xfe\\xb8`\\x13\\r\\x01\\x00\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\x00\\x00\\b\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00K\\x00[\\x00g\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x17\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x17\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x17\\x14;\\x012=\\x014+\\x01\\\"\\x15754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x01\\x10\\b\\xe0\\b\\b\\xe0\\b\\xe8\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b(\\t\\a\\xd0\\a\\t\\t\\a\\xd0\\a\\t\\x01\\x10\\b\\xe0\\b\\b\\xe0\\b\\x01`\\x13\\r\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\r\\x13\\xff\\x00\\b\\b\\b\\b\\bH\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b00\\a\\t\\t\\a0\\a\\t\\ty\\b\\b\\b\\b\\b\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00!\\x00)\\x00A\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1f\\x01\\x16>\\x01/\\x017>\\x01.\\x01\\x06\\x0f\\x01'&\\x0e\\x01\\x1f\\x01\\a\\x06\\x1e\\x017\\x16264&\\\"\\x06\\x147'76.\\x01\\x0f\\x01'&\\x0e\\x01\\x1f\\x01\\a\\x06\\x1e\\x01?\\x01\\x17\\x16>\\x01\\x91Α\\x91Α\\x98\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\x05\\x01\\x06\\b\\n\\x04\\x1d\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\a\\x05\\x10\\bc4&&4&\\xd3\\x1c\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\a\\x05\\x10\\b\\x1d\\x1d\\a\\x11\\x05\\x01\\xb8\\x91Α\\x91\\xce>\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\x04\\n\\b\\x06\\x01\\x05\\x1c\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\a\\x11\\x04\\x06\\xad&4&&4\\x9d\\x1d\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\a\\x11\\x04\\x06\\x1c\\x1c\\a\\x06\\x0f\\x00\\x00\\x03\\x00\\x00\\xff\\xbe\\x02\\x00\\x01\\xc0\\x00\\b\\x00@\\x00H\\x00\\x00%\\x17\\a\\x0e\\x01/\\x0267\\x0e\\x02#\\\"'\\x0f\\x01\\x06\\\".\\x015'7&'&6?\\x016\\x17\\x16\\x177&5462\\x16\\x15\\x14\\a\\x17\\x06\\a'0\\\"0\\\"1\\a\\x1632676\\x1f\\x01\\x1e\\x01&\\\"\\x06\\x14\\x16264\\x01\\xc97\\a\\x01\\x0e\\a67,R\\x1bL\\\\142G6\\x03\\b\\x06\\x05\\aG!\\x17\\x03\\x03\\x06\\x1c\\f\\t\\x0e\\x14D\\f8P8\\f4#03\\x02\\x02C#\\\"9d\\x1f\\b\\r\\x1c\\x06\\x04\\xea\\x1a\\x13\\x13\\x1a\\x13h`:\\b\\b\\x03\\x17_\\x11~)= \\x13{\\x17\\x01\\x04\\x06\\x04:|\\x1c\\\"\\x06\\r\\x03\\x10\\b\\r\\x15\\x12v\\x16\\x18(88(\\x18\\x16Y$\\rXt\\f7/\\r\\a\\x0f\\x04\\r\\xb4\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x003\\x00N\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\a54&\\\"\\x06\\x1d\\x01\\x06\\a54&\\\"\\x06\\x1d\\x01&'54&\\\"\\x06\\x1d\\x01&=\\x014>\\x0332\\x177632\\x1f\\x01\\x16\\x15\\x14\\x0f\\x012654.\\x01'\\a\\x06#\\\"/\\x01&54?\\x01&#\\\"\\x06\\x15\\x14\\x1e\\x01\\x01\\xafQH\\x0e\\x14\\x0e4<\\x0e\\x14\\x0e<4\\x0e\\x14\\x0eH0>R-\\x1397n\\x04\\x05\\t\\x04\\t\\x03\\a\\xf9Vz\\x15'\\x1av\\x05\\x04\\t\\x05\\t\\x02\\aI\\x1a\\x18Vz8_\\x01F\\x1d9\\xa0. f\\n\\x0e\\x0e\\nw\\x0f\\x02h\\n\\x0e\\x0e\\nh\\x02\\x0fw\\n\\x0e\\x0e\\nf .\\xa0\\x1e-\\x16\\r\\x02\\nG\\x03\\a\\r\\x04\\x05\\t\\x05\\xc5%\\x1b\\n\\x14\\x10\\x06M\\x03\\b\\r\\x04\\x05\\b\\x05/\\x02&\\x1a\\x12\\x1d\\x11\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\v\\x00\\x16\\x00 \\x00*\\x006\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x014\\x176/\\x01\\x0e\\x01\\x15\\x14\\x16\\x176\\x1627.\\x01#\\\"\\x0e\\x01\\a75&\\\"\\a\\x15\\x14\\x1626\\x17>\\x0254&'\\a\\x06\\x17\\x16\\xa9\\uea69\\xee\\xa9\\xcd\\b\\x0f\\x1a8DF;\\x15<<\\x1f\\x06\\\"\\x15\\x0e\\x19\\x12\\x04} @ &4&/&:!D8\\x1a\\x0f\\b\\x06\\x01\\xa0K5\\xc05KK5\\xc05S\\x1d\\x1b,\\n&\\x16\\x17&\\n\\x10\\x19\\x03\\x14\\x19\\f\\x14\\r\\x8d\\r\\x03\\x03\\r\\x1a&&m\\a\\x15\\x1c\\x0f\\x16&\\n,\\x1b\\x1d\\x19\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00!\\x00\\x00\\x01\\x06\\x0f\\x013\\x06\\x0f\\x013\\x06\\a\\x0e\\x01#\\a\\x06\\\"&47\\x016&\\x0f\\x0167>\\x06\\x02\\x00\\t-jQ\\x0e\\x10\\x93e:K\\x1f? 9\\a\\x14\\x0e\\a\\x01\\x04\\v\\x17\\v\\xb3\\x02\\x04\\x052D[OV,\\x01\\xc0}n5\\x19\\x1611\\b\\x03\\x049\\a\\x0e\\x14\\a\\x01\\x03\\f\\x16\\v\\xb3.\\\"3W8.\\x18\\x12\\x05\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00)\\x00T\\x00]\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x13\\\"'.\\x01\\a'&\\\"\\x0f\\x01\\x06+\\x01\\\"\\x06\\x14\\x16;\\x0126?\\x01\\x17\\x16\\x17212?\\x0162\\x17\\x16;\\x01264&#\\x13\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\bP\\b\\bP\\b\\bP\\b\\bP\\b\\xc1\\a\\x03\\t+\\x0e\\x0e\\x06\\\"\\x06\\x12\\x03\\b\\f\\a\\t\\t\\a\\f\\x0e\\x17\\x04\\v\\x11\\x03\\v\\x01\\n\\x04\\b\\x03\\x0e\\x03\\f\\x1b/\\a\\t\\t\\aI\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0eH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\xff\\x00\\x06\\x12\\t\\f)\\x11\\x116\\b\\t\\x0e\\t\\x10\\x0e\\x1f2\\n\\x01\\t\\x0f\\x06\\x06\\x18\\t\\x0e\\t\\x01\\x17\\a\\n\\x06\\x80\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00'\\x000\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x136&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1f\\x01\\x1627\\x13\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8L\\b\\b\\vA\\t\\a \\a\\tA\\v\\b\\b`\\x05\\x0e\\x05\\xad\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xa5\\a\\x14P\\a\\t\\t\\aP\\x14\\a`\\x05\\x05\\x01R\\a\\n\\x06\\x80\\a\\x00\\x03\\x00\\x00\\xff\\xc0\\x02G\\x01\\xc0\\x00\\b\\x00\\x17\\x003\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\x17\\x16\\x0f\\x01\\x06&=\\x01#53546\\x17\\x05\\x14\\x16;\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16;\\x01\\x15#\\\"\\x06\\x15\\x01\\x80\\x80\\x06\\n\\ab\\a\\xbb\\f\\f`\\a\\x14@@\\x14\\a\\xfe\\xe5\\t\\a\\xb0\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0e\\n\\x88\\xb0\\a\\t\\x01F\\x06\\x80\\ab\\a\\xc4\\f\\f`\\b\\b\\vA@A\\v\\b\\b|\\a\\t\\x88\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\x80\\t\\a\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x12\\x003\\x00\\x0073\\x15#\\\"&=\\x0146%\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&=\\x013\\x15\\x14\\x16?\\x016/\\x01&\\x06\\x1d\\x01#\\x1146;\\x01\\x10pp\\a\\t\\t\\x01\\xf0\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x80\\x14\\a`\\f\\f`\\a\\x14\\x80\\x0e\\nȠ@\\t\\a \\a\\t\\xb7\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x88A\\v\\b\\b`\\f\\f`\\b\\b\\vA\\x01\\b\\n\\x0e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x03\\x00\\f\\x00\\x1e\\x00*\\x006\\x00B\\x00R\\x00\\x00%\\x15#5%\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x01254&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01265\\x01 \\xc0\\x01\\x19\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\bP\\b\\bP\\b\\bP\\b\\bP\\b\\x01\\x00\\bP\\b\\bP\\b\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\xc0@@\\x97\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0eH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\xfe\\xc8\\x10\\b\\b\\x10\\b\\xd0\\a\\t\\t\\a`\\a\\t\\t\\a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x00&\\x002\\x00m\\x00\\x00\\x01\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x13>\\x0154.\\x01/\\x01&546;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x15\\x14;\\x0125\\x01y\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\bP\\b\\bP\\b\\bP\\b\\bP\\b\\x90\\x12\\x19\\b\\x0f\\t-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x01W\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0eH\\x10\\b\\b\\x10\\bX\\b\\b\\x10\\b\\b\\xfe\\xe8\\x01\\x1a\\x12\\n\\x12\\r\\x03\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x18\\b\\b\\x18\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x18\\b\\b\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00;\\x00C\\x00L\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x13&\\x0f\\x01'654&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x013\\x17\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x0176/\\x01#532\\x16\\x14\\x067\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8E\\f\\v\\x1e!!%\\x1bP\\a\\t\\t\\a\\x10\\a\\t\\x13;\\x1e\\v\\v\\v\\f\\v\\x1e\\x1e\\v\\f\\v\\v\\v\\x1e\\x1e\\v\\v\\x8000\\a\\t\\tɀ\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xc5\\v\\v\\x1e!\\x12&\\x1b%\\t\\a\\xa0\\a\\t\\t\\a0;\\x1e\\f\\v\\v\\f\\f\\x1e\\x1e\\f\\f\\v\\v\\f\\x1e\\x1e\\v\\v7 \\t\\x0e\\t\\x96\\x06\\x80\\ab\\a\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x007\\x00@\\x00E\\x00O\\x00\\x007\\x1e\\x01;\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16;\\x01\\x15\\a\\x15&'.\\x01\\a'&\\\"\\x0f\\x01\\x06+\\x01\\\"\\x06\\x14\\x16;\\x0126?\\x01\\x17\\x1e\\x01?\\x0162\\x13\\x15#532\\x1f\\x01\\x16\\a7\\x17\\a#%\\x16\\x14\\x0f\\x01'762\\x17\\xda\\x06\\x14\\f\\x80\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0e\\n\\x88\\x80\\x06\\x03\\t+\\x0e\\x0e\\x06\\\"\\x06\\x12\\x03\\b\\f\\a\\t\\t\\a\\f\\x0e\\x17\\x04\\v\\x11\\x03\\x16\\x04\\b\\x03\\x0e\\xa9\\x80\\x06\\n\\ab\\a`\\xa3D\\xa2E\\x01\\x19\\a\\a\\x1cD\\x1c\\a\\x15\\b\\x18\\v\\r(\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e/\\u007fR\\x01\\x05\\x12\\t\\f)\\x11\\x116\\b\\t\\x0e\\t\\x10\\x0e\\x1f2\\n\\x02\\n\\x0f\\x06\\x01(\\x06\\x80\\ab\\a\\xeb\\xa2D\\xa3\\xf9\\b\\x15\\a\\x1cD\\x1c\\a\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00'\\x000\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1326/\\x01&\\\"\\x0f\\x01\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x017\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8A\\v\\b\\b`\\x05\\x0e\\x05`\\b\\b\\vA\\t\\a \\a\\t\\x99\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xa0\\x14\\a`\\x05\\x05`\\a\\x14P\\a\\t\\t\\aP\\xf7\\a\\n\\x06\\x80\\a\\x00\\x02\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc7\\x00\\x17\\x00&\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'&?\\x016\\x1f\\x01762\\x17\\x137'\\a\\x17\\x16\\x14\\x06\\\"/\\x01\\x0f\\x01\\x06\\a\\x01\\xf7\\t\\t\\xde\\x1cP\\x1cu\\x1c\\x1c_V\\f\\f\\x16\\f\\vVR\\t\\x1b\\t[1\\xa3;;\\t\\x12\\x1b\\t;Q\\x0e\\x05\\x02\\xe7\\t\\x1b\\t\\xde\\x1c\\x1cu\\x1cP\\x1c_V\\v\\f\\x16\\f\\fVR\\t\\t\\xfe\\xe90\\xa3;;\\t\\x1b\\x12\\t;R\\r\\x05\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc7\\x00\\n\\x00\\\"\\x001\\x00\\x00%\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'&?\\x016\\x1f\\x01762\\x17\\x137'\\a\\x17\\x16\\x14\\x06\\\"/\\x01\\x0f\\x01\\x06\\a\\x02\\x00@%6% \\x10\\a\\t\\t\\xde\\x1cP\\x1cu\\x1c\\x1c_V\\f\\f\\x16\\f\\vVR\\t\\x1b\\t[1\\xa3;;\\t\\x12\\x1b\\t;Q\\x0e\\x05\\x02\\x80]#\\x1b%%\\x1b\\x10@\\x18\\u007f\\t\\x1b\\t\\xde\\x1c\\x1cu\\x1cP\\x1c_V\\v\\f\\x16\\f\\fVR\\t\\t\\xfe\\xe90\\xa3;;\\t\\x1b\\x12\\t;R\\r\\x05\\a\\x00\\x00\\x06\\xff\\xfe\\xff\\xc0\\x02\\x01\\x01\\xc2\\x00\\r\\x00-\\x00A\\x00\\\\\\x00n\\x00\\x91\\x00\\x0062\\x16\\x15\\x16\\a\\x06#\\\"&76'47\\x1e\\x01\\x15\\x16\\a\\x0e\\x02'.\\x0176'4&'\\\"\\x06\\x15\\x16\\a\\x0e\\x01.\\x0176'&6&\\x1e\\x01\\a\\x06\\x17\\x16\\a\\x14\\x0e\\x01'.\\x0176'&767\\x1e\\x01\\x17\\x14\\x15\\x14\\a\\x0e\\x01'.\\x0176'.\\x01'\\\"\\a\\x06.\\x01676\\x05\\x16\\x15\\x14\\x06#\\\"&54'&676\\x1e\\x02'\\x16\\x0e\\x01&'.\\x04#&\\a\\x06\\x17\\x15\\x14\\x0e\\x01#0#\\\"&=\\x01&76\\x172\\x1e\\x02\\xf6\\x14\\x0e\\x02\\x1f\\x05\\x12\\x0f\\v\\x02\\x1e\\x02\\x17+>\\x01\\f\\x01\\x04\\x0e\\t\\t\\f\\x02\\v\\x01\\\"\\x17\\x19\\x1e\\x01\\x0f\\x02\\x11\\x13\\v\\x02\\x0e\\x01\\x01;I\\x0f\\x02\\x06\\x1d\\x01\\x01\\v\\x05\\x0e\\t\\t\\f\\x02\\n\\x01\\x01(\\x06\\x89Lm\\x01\\x06\\x01\\x0e\\v\\n\\r\\x02\\x06\\x01\\x01Q9\\x12\\x10\\t\\x11\\x05\\v\\t\\x18\\x01\\x12\\x06\\x0e\\n\\n\\x0e\\x05\\x02\\v\\n\\x04\\n\\a\\x06'\\x06\\x04\\x10\\x14\\x05\\f\\x1e\\\"&(\\x15X<9\\x01\\a\\v\\x06\\x01\\n\\r\\x01GKl\\x1f>60\\xca\\x0e\\nrn\\x12\\x15\\tik\\n`\\x01<*MK\\x04\\t\\b\\x01\\x02\\x10\\nGH\\x17 \\x01 \\x15ML\\t\\v\\x04\\x10\\nFI)<\\x1a\\r\\x13\\b#.><\\x03\\t\\b\\x01\\x02\\x10\\n79?1\\b:\\x01kJ\\a\\a55\\b\\x0e\\x01\\x01\\x10\\n897O\\x01\\x04\\x02\\n\\x14\\x11\\x02\\x05z\\x1c,\\n\\x0e\\x0f\\t'\\x17\\n\\x11\\x02\\x01\\x02\\x05\\bV\\b\\x14\\v\\x03\\t\\x11\\x1c\\x16\\x10\\t\\x01<9R\\x18\\x06\\v\\x06\\x0f\\n\\x15fHJ\\x01\\x10\\x1d*\\x00\\x00\\x00\\x02\\xff\\xfe\\x00 \\x02@\\x01`\\x00\\x18\\x00$\\x00\\x00\\x012\\x1e\\x02\\x14\\x0e\\x02#\\\"&'\\a\\x06&?\\x01'&6\\x1f\\x01>\\x01\\x16264&#\\\"\\x0e\\x02\\x15\\x14\\x01G0a@((@a0>p&X\\t\\x14\\x02\\x19\\x19\\x02\\x14\\nW&p\\x8c\\x13\\x0f\\x0f\\t\\x05\\t\\a\\x03\\x01`)73\\x1a37)<*B\\a\\v\\nnn\\n\\v\\aB*<\\xb8\\x0e\\x14\\x0e\\x04\\x06\\t\\x05\\n\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00\\x00$2\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x16\\x14\\x16264&\\\"\\x1724+\\x01\\\"\\x1436264&\\\"\\x06\\x14\\x01N\\x14\\x0e\\x0e\\x14\\x0e\\xb2\\x14\\x0e\\x0e\\x14\\x0e\\x11Α\\x91ΑP*<**<\\xbe\\x10\\x10\\x80\\x10\\x10\\x82<**<*\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14ΑΑ\\x91\\xce)<**<*\\xf8  h*<**<\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16\\x14\\x16264&\\\"\\x17\\x166'.\\x01#\\\"\\x0e\\x01\\a\\x06\\x167626264&\\\"\\x06\\x14\\x91Α\\x91Α\\x88\\x13\\x1a\\x13\\x13\\x1a\\xa8\\t\\r\\x01\\x05=\\x1e\\x13(\\\"\\x03\\x01\\r\\t14)\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce*\\x1a\\x13\\x13\\x1a\\x13\\xd7\\x03\\f\\t\\x1b\\\"\\r\\x1d\\x13\\t\\f\\x03\\x0f\\x88\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x02\\xff\\xfa\\xff\\xc0\\x02\\x06\\x01\\xc0\\x00\\x17\\x00\\x1b\\x00\\x00\\x01\\a\\x1532\\x16\\x15\\x14+\\x01\\\"546;\\x015'&63!2\\x16\\a!\\x17!\\x01\\xf6\\xd68\\x11\\x17\\b\\xf0\\b\\x17\\x118\\xd6\\x10\\x11\\x17\\x01\\xbc\\x17\\x11J\\xfe\\x880\\x01\\x18\\x01\\x86\\xd6\\xc0\\x17\\x11\\b\\b\\x11\\x17\\xc0\\xd6\\x10**\\x060\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00j\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0546;\\x01.\\x01'\\x15\\x14\\x06+\\x01\\\"\\x0f\\x01\\x06\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16;\\x012\\x1f\\x01\\x16;\\x012\\x16\\x15\\x14\\x0f\\x01\\x06/\\x01&+\\x01\\\"\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16;\\x012\\x16\\x1d\\x01\\x14\\x17\\x1632?\\x01676?\\x016?\\x016=\\x014&+\\x01\\\"/\\x01&6?\\x01632\\x1f\\x01\\x1632?\\x0165\\x91Α\\x91Α\\x01\\x98\\t\\a\\x12\\x0eY;\\t\\x06\\x19\\b\\x05\\b\\x03\\x06\\x0e\\f\\t\\aZ\\x06\\x05\\x06\\x05\\x06\\n\\a\\t\\v/\\x06\\x06\\x0e\\f\\r\\x01\\x12\\x0f\\x1b\\x16 \\x17\\x19\\a\\t\\b\\b\\x11\\x0f\\b\\r\\v\\x0e\\x04\\x01\\x04\\x01\\x02\\x13\\x03\\t\\a\\b\\b\\x05\\r\\x04\\x05\\a\\x03\\x02\\x03\\x04\\x04\\x13\\x03\\x05\\x04\\x03\\x0f\\t\\x01\\xb8\\x91Α\\x91\\xceG\\a\\t:R\\t\\x15\\a\\t\\a\\f\\x05\\x01\\x04\\x03\\f\\x04\\a\\t\\x05\\x06\\x05\\t\\x06\\f\\x03\\x10\\x02\\x03\\a\\x06\\v\\x15\\x10\\x1b\\x0e\\x17 \\t\\a\\x1d\\x13\\x11\\x0f\\f\\x14\\x10\\r\\x04\\x05\\x16\\x04\\x03\\x19\\x04\\x05\\v\\a\\t\\a\\x14\\x06\\x0f\\x02\\x01\\x01\\x03\\f\\x03\\x02\\b\\x04\\n\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00_\\x00n\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05654/\\x01&+\\x01.\\x01#\\\"/\\x01&54?\\x01632\\x1f\\x01\\x16;\\x0126/\\x01&54?\\x016;\\x012?\\x016/\\x01&?\\x026/\\x01\\x06\\a\\x15\\x14\\x06/\\x01\\x06\\a\\x16\\x17\\x16\\x1f\\x01\\x16\\x17\\x16\\x17\\x16\\x1d\\x01\\x14\\x17\\x1e\\x01\\a\\x152?\\x01676767\\x17654'\\a\\x06\\x0f\\x01\\x06\\x14\\x1f\\x01\\x16\\x91Α\\x91Α\\x01J\\x0e\\t\\x0e\\t\\rC\\x04\\x16\\x06\\x10\\x0e\\v\\a\\b\\x1f\\x03\\x02\\x06\\x05\\t\\x02\\x03\\x06\\x05\\x04\\x02\\x0f\\x01\\x02\\n\\x02\\x04\\t\\x03\\x02\\b\\x06\\x06\\x04\\x06\\x06\\n\\x05\\v\\v\\x1d\\f\\f\\x0f\\b\\x18G \\x19\\t\\b\\n\\x01\\x0f\\x11\\x12\\x1f\\x10\\t\\v\\r\\x01\\x15\\x16\\x11\\x01\\x04\\x01\\x05\\x03_\\x1d\\x02\\x15\\r\\x06\\x04\\x13\\x04\\x04\\x12\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xd5\\x0e\\x13\\r\\t\\x0e\\t\\x02\\x1e\\a\\x06\\x03\\a\\t\\x03\\n\\x01\\x04\\b\\x02\\b\\x04\\x1f\\x01\\x02\\x04\\x02\\n\\x02\\x02\\b\\x06\\x06\\x04\\x06\\x06\\n\\x05\\v\\v\\x1d\\x01\\x02\\v\\t\\t\\x04\\f\\x1fG&\\r\\f\\t\\x01\\r\\t\\t\\x11\\t\\x13 \\r\\t\\v\\x1f\\n\\x1b\\x05/\\x02\\x0e\\a\\x04\\x03d\\b\\x0f\\v/*\\x06\\x03\\x05\\x1e\\x06\\x0e\\x06\\x1b\\b\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x008\\x00m\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17762\\x17\\x16;\\x012=\\x014/\\x01&4?\\x01&#\\\"\\x06\\x15\\x14\\x1732?\\x016\\x16\\x1f\\x01\\x16;\\x0126=\\x014/\\x01&?\\x01632\\x1754/\\x01&=\\x014+\\x01\\\"\\x0f\\x01\\x06+\\x01\\\"/\\x01&+\\x01\\\"\\x0f\\x01\\x06\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16;\\x01237632\\x1f\\x01\\x16;\\x012?\\x016\\x91Α\\x91Α\\xed\\x11\\x01\\x06\\x01\\x02\\x05\\x03\\b\\t\\v\\x04\\x033\\x1f\\x1fSu\\x03>\\a\\x05\\x13\\x03\\b\\x02\\x17\\x04\\n\\x06\\a\\t\\x05\\x05\\x06\\x06\\x05\\x05\\a\\t\\xb0\\x05\\f\\x02\\x04\\x06\\x03\\x01\\x04\\x01\\x03\\x04\\x02\\x01\\x06\\x02\\x05\\f\\x03\\x02\\x18\\x02\\x03'\\x06\\x03\\f\\x04\\a\\n\\x02\\x02\\x16\\x03\\x03\\v\\b\\r\\x05\\x06\\x0f\\a\\x05\\t\\x05\\x01\\xb8\\x91Α\\x91\\xce_\\x1d\\x02\\x03\\x04\\bN\\n\\x04\\x06\\x02\\t\\x03&\\nuS\\x0f\\x11\\x05\\x13\\x03\\x01\\x04-\\t\\t\\a\\t\\a\\x05\\x05\\x06\\x06\\x05\\x05f\\x18\\a\\x04\\f\\x03\\x03\\r\\x04\\x03\\x0e\\x03\\x02\\r\\x05\\x01\\x11\\x02\\x01\\x10\\x02\\x06\\n\\x03\\x02\\f\\x05\\x06\\x01\\b\\r\\x05\\x05\\t\\x05\\x00\\x00\\x00\\x00\\r\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x15\\x00\\x1d\\x00!\\x00%\\x00)\\x00-\\x001\\x005\\x00=\\x00D\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x175#\\x15\\x14\\x16375#\\\"\\x06\\x1d\\x016\\x14\\x16264&\\\"\\x175#\\x1575#\\x15\\x175#\\x1575#\\x15\\x175#\\x1575#\\x156264&\\\"\\x06\\x14\\x175#\\x15326=\\x014&+\\x01\\x15\\x91Α\\x91Α\\x90(\\x13\\r\\b\\b\\r\\x13 \\x13\\x1a\\x13\\x13\\x1a5000p000p000\\x1b\\x1a\\x13\\x13\\x1a\\x13`(\\b\\r\\x13\\x13\\r\\b\\x01\\xb8\\x91Α\\x91\\xce\\xf7(\\b\\r\\x138(\\x13\\r\\b\\x95\\x1a\\x13\\x13\\x1a\\x13\\xe0((8((8((8((8((8((h\\x13\\x1a\\x13\\x13\\x1a\\x93\\b(\\x13%\\b\\r\\x13(\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00&\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x142676&\\a\\x06\\\"'&\\x0e\\x01\\x17\\x16\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13`Y\\a\\x01\\r\\t/\\x98/\\x06\\n\\x06\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xed6'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x15\\x00#\\x002\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%\\x06\\a\\x16\\x17\\x162767&'&\\\"\\a\\x06\\a\\x16\\x17\\x162767&'&\\\"\\x122676&\\a\\x06\\\"'&\\x0e\\x01\\x17\\x16\\x91Α\\x91Α\\x018\\x0f\\x01\\x01\\x0f\\x06\\x15\\x05\\x0f\\x01\\x01\\x0f\\x06\\x15\\xa5\\x0f\\x01\\x01\\x0f\\x06\\x15\\x05\\x0f\\x01\\x01\\x0f\\x06\\x15+`Y\\a\\x01\\r\\t/\\x98/\\x06\\n\\x06\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce\\x10\\x16!\\\"\\x15\\t\\t\\x16!\\\"\\x15\\t\\t\\x16!\\\"\\x15\\t\\t\\x16!\\\"\\x15\\t\\xfe\\xd06'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x17\\x00+\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'&'\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'.\\x04\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x91Α\\x91Α\\x01[&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\xd6\\x13#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\x19`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce\\x01)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a\\xfe\\xe86'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf8\\x01\\xc1\\x00\\v\\x00\\x1d\\x00-\\x00A\\x00P\\x00\\x00\\x00\\\"&54762\\x17\\x16\\x15\\x14\\a27\\x16\\x15\\x14\\x06\\\"&4632\\x17\\x06\\x15\\x14\\x16&\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'&'\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'.\\x04\\x122676&\\a\\x06\\\"'&\\x0e\\x01\\x17\\x16\\x01\\xdc(\\x1c*\\x02\\b\\x02*0\\t\\v\\x14\\x91Α\\x91gJ>\\b/L&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\xd6\\x13#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\x19`Y\\a\\x01\\r\\t/\\x98/\\x06\\n\\x06\\x01\\a\\x01@\\x1c\\x13\\x177\\x03\\x037\\x17\\x13<\\x0303g\\x91\\x91Α)\\x12\\x0e!.\\b)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\f\\x16\\x12\\f\\a\\xfe\\xe86'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00'\\x00:\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x06\\x16\\x1f\\x01\\x16?\\x016&'&\\x06\\x0f\\x01'&\\x06\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16%>\\x01'.\\x02\\x0f\\x01'.\\x01\\a\\x0e\\x01\\x1f\\x01\\x167\\x91Α\\x91ΑZ\\x05\\x0e\\x10F\\b\\x02\\x14\\x04\\x11\\x10\\x0e\\x18\\x04\\x02\\a\\x0e\\x1ai`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01\\x0e\\x10\\x0e\\x05\\x04\\x0e\\x12\\t\\a\\x02\\x04\\x18\\x0e\\x10\\x11\\x04\\x14\\x02\\b\\x01\\xb8\\x91Α\\x91\\xce\\x1f\\x0f\\x1c\\x04\\x12\\x02\\bF\\x0f\\x1b\\x02\\x03\\x11\\r\\b\\x02\\x04\\r\\xfe\\xfb6'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x93\\x04\\x1c\\x0f\\t\\f\\x03\\x02\\x02\\b\\r\\x11\\x02\\x03\\x1b\\x0fF\\b\\x02\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x16\\x00#\\x001\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x14\\x1f\\x01\\x166/\\x01764.\\x01\\x0f\\x01\\x17\\a\\x06\\x16?\\x0164/\\x01&\\x06\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x91Α\\x91Α\\x01\\x1a\\x06\\x06P\\b\\x0e\\a!!\\x03\\x06\\b\\x04\\xf3!!\\a\\x0e\\bP\\x06\\x06P\\b\\x0eX`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce-\\x03\\x0e\\x030\\x05\\x0f\\b((\\x04\\t\\x06\\x02\\x03\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\xfe\\xf06'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x00\\x06\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00\\v\\x00\\x17\\x00/\\x00<\\x00J\\x00Z\\x00\\x00\\x01\\\"&76762\\x16\\x14\\a\\x06\\x012\\x16\\a\\x06\\a\\x06\\\"&476\\x0167\\x16\\x0e\\x02'676&\\a\\x06\\a&>\\x02\\x17\\x06\\a\\x06\\x16'\\a\\x06\\x16?\\x016&/\\x02.\\x01\\a\\x1e\\x01?\\x016.\\x01\\x0f\\x01\\x06\\x16\\x1f\\x02>\\x01'&\\x06\\a\\x0e\\x01\\a\\x0e\\x01\\x17\\x1626\\x01\\x9a\\x05\\x06\\x01\\v\\x10\\x0e*\\x1d\\x0e\\x11\\xfe\\x85\\x05\\x06\\x01\\v\\x10\\x0e)\\x1e\\x0e\\x11\\x01\\u007f!\\x18)\\x14y\\xa8G\\a\\x05\\x02\\x19\\x17!\\x18)\\x14y\\xa8G\\a\\x05\\x02\\x19\\x87\\x17\\x01\\t\\aZ\\n\\x02\\n4\\x05\\x01\\x14]\\x01\\x14\\x02\\x17\\x01\\x04\\a\\x05Z\\n\\x02\\n4\\xdc\\\"\\x19\\x17\\x05\\x12\\x04\\x17k,\\b\\x02\\b\\x15<@\\x01P\\x05\\x05H\\x10\\x0e\\x1e)\\x0e\\x11\\xfe\\xd6\\x05\\x05H\\x10\\x0e\\x1e)\\x0e\\x11\\x01\\n\\x05\\aG\\xa8y\\x14)\\x19 \\x11\\x1f\\x02\\x05\\aG\\xa8y\\x14)\\x19 \\x11\\x1f([\\x06\\n\\x02\\x17\\x02\\x14\\x01\\x054\\n\\x02\\xf0\\n\\x02\\nZ\\x05\\a\\x04\\x01\\x17\\x02\\x14\\x01\\x05`\\\"a$\\a\\x01\\b,k\\x17\\x04\\x12\\x05\\x0f\\x1c\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00 \\x00.\\x00G\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x0176&/\\x02&\\\"\\x0f\\x01\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16%6&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x01\\x91Α\\x91Α_\\x05\\x03\\x03\\x1a\\x06\\x01\\a\\x05\\x1f\\x1f\\x04\\b\\x01\\x06\\x1a\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0fF`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01'\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0f#\\x05\\x03\\x03\\x1a\\x06\\x01\\a\\x05\\x1f\\x1f\\x05\\a\\x01\\x06\\x01\\xb8\\x91Α\\x91\\xce\\x10\\x01\\t\\x03\\x19#\\x04\\x06\\x02\\x11\\x11\\x02\\x06\\x04#\\x19\\x03\\t\\x01\\x05 \\x04\\x04 \\xfe\\xf46'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\xc4\\x03\\t\\x01\\x05 \\x04\\x04 \\x05\\x01\\t\\x03\\x19#\\x04\\x06\\x02\\x11\\x11\\x02\\x06\\x04#\\x00\\x06\\xff\\xff\\xff\\xc8\\x02\\x81\\x01\\xb8\\x00\\v\\x00\\x17\\x006\\x00F\\x00V\\x00d\\x00\\x0072\\x16\\a\\x06\\a\\x06\\\"&476\\x05\\x16\\x14\\x06\\\"'&'&6\\x17\\x16\\a\\x16\\x17\\x1e\\x011\\x0e\\x01\\\"&'?\\x01676&\\a\\x06\\a>\\x0132\\x1e\\x01\\x17&'&\\x06&\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'.\\x01\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'&\\x062676&\\a\\x06\\\"'&\\x06\\x17\\x16f\\x05\\x06\\x01\\v\\x10\\x0e)\\x1e\\x0e\\x11\\x02S\\x0e\\x1e)\\x0e\\x11\\n\\x01\\x06\\x05Hr\\f\\x18\\x01\\x02 s\\x88s \\x01\\x02\\x18\\f\\x02\\x19\\x17\\v\\r\\n\\x8d_?lE\\x06\\r\\v\\x14\\x1cK&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\xc3&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\x16`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\xc0\\x05\\x05H\\x10\\x0e\\x1e)\\x0e\\x11\\x11\\x0e)\\x1e\\x0e\\x11G\\x05\\x06\\x01\\v\\x03R\\x18\\x01\\x029DD9\\x01\\x02\\x18R\\x11\\x1f\\x02\\x02\\x02]\\u007f:e=\\x02\\x02\\x02\\x1cb)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\x1e\\xef6'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbf\\x01\\xf0\\x01\\xb8\\x00\\x1d\\x00%\\x00-\\x00K\\x00\\x00\\x122\\x16\\x15\\x14\\x06\\a6=\\x01676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x17\\x15\\x14\\x17.\\x0154\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\a:\\x01\\x1e\\x02\\x17\\x15\\x14\\x06#\\\".\\x02=\\x01636\\x16\\x1f\\x01\\x162?\\x01>\\x02\\x91ΑYH\\t*\\x06\\x01\\r\\t/\\x98/\\t\\r\\x01\\x06*\\tHY\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x03\\x01\\x01\\x02\\x04\\a\\x04&\\x1b\\r\\x17\\x11\\n\\x12\\x01\\v\\x15\\x03\\x01\\x02\\x0e\\x02\\x01\\x02\\v\\x0f\\x01\\xb8\\x91gO~\\x1b\\x14\\x14.\\x1b$\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t$\\x1b.\\x14\\x14\\x1b~OgW\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x9a\\x02\\x01\\x04\\x02@\\x1b%\\v\\x11\\x18\\r?\\t\\x05\\v\\v\\b\\a\\a\\b\\a\\v\\x02\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbf\\x01\\xf0\\x01\\xb8\\x00\\x1d\\x00;\\x00H\\x00U\\x00\\x00%:\\x01\\x1e\\x02\\x17\\x15\\x14\\x06#\\\".\\x02=\\x01636\\x16\\x1f\\x01\\x162?\\x01>\\x02\\x022\\x16\\x15\\x14\\x06\\a6=\\x01676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x17\\x15\\x14\\x17.\\x0154\\x1764/\\x01&\\x06\\x1f\\x01\\a\\x06\\x16?\\x01'76&\\x0f\\x01\\x06\\x14\\x1f\\x01\\x166\\x01%\\x01\\x01\\x02\\x04\\a\\x04&\\x1b\\r\\x17\\x11\\n\\x12\\x01\\v\\x15\\x03\\x01\\x02\\x0e\\x02\\x01\\x02\\v\\x0f\\x8dΑYH\\t*\\x06\\x01\\r\\t/\\x98/\\t\\r\\x01\\x06*\\tHY\\xd6\\x06\\x06P\\b\\x0e\\a!!\\a\\x0e\\b\\xf3!!\\a\\r\\tP\\x06\\x06P\\b\\x0eI\\x02\\x01\\x04\\x02@\\x1b%\\v\\x11\\x18\\r?\\t\\x05\\v\\v\\b\\a\\a\\b\\a\\v\\x02\\x01l\\x91gO~\\x1b\\x14\\x14.\\x1b$\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t$\\x1b.\\x14\\x14\\x1b~OgA\\x03\\x0e\\x030\\x05\\x0f\\b((\\b\\x0f\\x05\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\x00\\x00\\x05\\x00\\x00\\xff\\xbf\\x01\\xf0\\x01\\xb8\\x00\\a\\x00%\\x008\\x00@\\x00^\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4&2\\x16\\x15\\x14\\x06\\a6=\\x01676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x17\\x15\\x14\\x17.\\x0154\\x17\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x17\\x16264&\\\"\\x06\\x14\\x17:\\x01\\x1e\\x02\\x17\\x15\\x14\\x06#\\\".\\x02=\\x01636\\x16\\x1f\\x01\\x162?\\x01>\\x02\\x01N\\x14\\x0e\\x0e\\x14\\x0e\\xafΑYH\\t*\\x06\\x01\\r\\t/\\x98/\\t\\r\\x01\\x06*\\tHY\\xc0\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\x884&&4&\\r\\x01\\x01\\x02\\x04\\a\\x04&\\x1b\\r\\x17\\x11\\n\\x12\\x01\\v\\x15\\x03\\x01\\x02\\x0e\\x02\\x01\\x02\\v\\x0f\\x01\\b\\x0e\\x14\\x0e\\x0e\\x14\\xbe\\x91gO~\\x1b\\x14\\x14.\\x1b$\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t$\\x1b.\\x14\\x14\\x1b~OgP\\x06\\b\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\t0&4&&4\\x8d\\x02\\x01\\x04\\x02@\\x1b%\\v\\x11\\x18\\r?\\t\\x05\\v\\v\\b\\a\\a\\b\\a\\v\\x02\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x001\\x00\\x00<\\x0162\\x16\\x14\\x06\\\"\\x124&\\\"\\x06\\x14\\x1627\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x17\\a&\\x06\\x17\\x1e\\x012676.\\x01\\a\\x06\\\"\\x91Α\\x91\\xce7\\x13\\x1a\\x13\\x13\\x1a\\xbb\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\xe9\\t\\r\\x01\\aY`Y\\a\\x01\\x06\\n\\x06/\\x98YΑ\\x91Α\\x01\\x1b\\x1a\\x13\\x13\\x1a\\x13\\a\\x06\\t\\b\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\ta\\x03\\f\\t'66'\\x06\\n\\x04\\x02\\x0f\\x00\\x00\\x06\\x00\\x00\\x00 \\x01\\xc0\\x01`\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463`\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xff\\x00\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xc0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x00\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463`\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\x01\\x00\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\x01\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x01@\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x11\\x00\\\"\\x00@\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\".\\x01=\\x014>\\x01;\\x012\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x01463\\x022\\x16\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x0e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x016\\xa0\\r\\x13\\x13\\r\\x10\\x11\\x1e\\x11\\x11\\x1e\\x11\\xe0\\x1b%\\x11\\x1e\\x11\\x10\\r\\x13\\x13\\r\\xc9Ҕ\\x03\\t\\a\\x10\\a\\tzV8`8\\t\\a\\x10\\a\\t\\x03\\xa0\\x13\\r\\x80\\r\\x13\\x11\\x1e\\x11@\\x11\\x1e\\x11&\\x1a@\\x11\\x1e\\x11\\x13\\r\\x80\\r\\x13\\x01\\x00\\x97ip\\a\\t\\t\\apVz8`8p\\a\\t\\t\\api\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00F\\x00\\x007\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x17#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06\\x022\\x16\\x17\\x15\\x14\\x06+\\x01\\\"&46;\\x012\\x16\\x153265454&\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x016\\xc0\\x13\\r\\x10\\x1b%%\\x1b\\x10\\r\\x13\\xb0\\x10\\r\\x13\\x13\\r\\x10\\x1b%%\\xf4Ҕ\\x035%\\xb6\\x14\\x1c\\x1c\\x14 \\x14\\x1cf\\x11\\x19z\\xacz\\t\\a\\x10\\a\\t\\x03\\xf0p\\r\\x13%\\x1b0\\x1b%\\x13\\x9d\\x13\\rp\\r\\x13%\\x1b0\\x1b%\\x01`\\x97i\\xa6%5\\x1c(\\x1c\\x1c\\x14\\x19\\x11\\xa4\\x02VzzV\\x10\\a\\t\\t\\a\\x10i\\x00\\x03\\x00\\x00\\xff\\xc0\\x02!\\x01\\xc1\\x00\\x03\\x00\\x11\\x00\\x1b\\x00\\x00\\x157\\x17\\a\\x137\\x17\\a\\x06/\\x01\\a'7'&54%\\x1e\\x01\\x0f\\x01'76\\x16\\x17DC#\\x19)\\xad#\\x10\\x16+3`3\\r\\x02\\x01\\xa0\\x0f\\x02\\x0f\\xaa\\xa9\\xc7\\x10+\\x10 FC#\\x01\\x10#\\xad*\\x11\\a\\r3`3+\\x05\\x06\\x10\\xac\\x10+\\x10ǩ\\xaa\\x0f\\x02\\x0f\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x13\\x00'\\x00;\\x00G\\x00S\\x00_\\x00k\\x00s\\x00\\x00\\x01&'&'&6;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"'&'&'&6;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x012\\x1f\\x01\\a54+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x00\\\"&462\\x16\\x14\\x01\\x9e\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0e\\x02\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0en\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0e\\x02\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0e\\xac\\r\\x13%\\x1b\\xfe\\x80\\x1b%%\\x1b+\\x15\\x11o\\x80\\b\\x10\\b\\b\\x10\\b`\\b\\x10\\b\\b\\x10\\b`\\b\\x10\\b\\b\\x10\\b`\\b\\x10\\b\\b\\x10\\b\\xfe\\xbb6%%6%\\x01\\x0e(\\x16$>\\a\\v\\x0e(\\x16$>\\a\\v\\x0e(\\x16$>\\a\\v\\x0e(\\x16$>\\a\\v@\\x13\\r\\xa0\\x1b%%\\x1b\\xe0\\x1b%\\rS\\xb8p\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\x01@%6%%6\\x00\\b\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00-\\x00=\\x00M\\x00]\\x00m\\x00s\\x00\\x83\\x00\\x93\\x00\\x00\\x01#\\x1132\\x16\\x1d\\x01\\x14\\x06+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"&=\\x0146;\\x01\\x11#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x05\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06'\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1726=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x163\\x1734&\\\"\\x06%54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x020\\x10\\x10\\a\\t\\t\\a\\xf0\\t\\a \\a\\t\\xf0\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x02 \\a\\t\\t\\xfe\\xc9\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b3\\x05\\b\\b\\x05&\\x05\\b\\b\\x053\\xc08P8\\x01\\x00\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x01\\x80\\xfe\\x80\\t\\a \\a\\tP\\a\\t\\t\\aP\\t\\a \\a\\t\\x01\\x80\\t\\a \\a\\t\\t\\a \\a\\t-&\\x05\\b\\b\\x05&\\x05\\b\\be&\\x05\\b\\b\\x05&\\x05\\b\\b[&\\x05\\b\\b\\x05&\\x05\\b\\b\\x98\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80(88e&\\x05\\b\\b\\x05&\\x05\\b\\be&\\x05\\b\\b\\x05&\\x05\\b\\b\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x16\\x00\\x1e\\x007\\x00D\\x00Q\\x00\\x00\\x01&=\\x014;\\x012\\x1d\\x01\\x14\\x17\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014\\x056\\x1f\\x01#\\\"'6\\x01\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014.\\x01'&=\\x014;\\x012\\x1d\\x01\\x14\\x032\\x1e\\x01\\x1f\\x01#\\\".\\x01/\\x012!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&/\\x01\\x01\\xbc<\\b0\\b(\\x1a\\x1e\\b0\\b\\xfe\\xe3$\\x18qY\\x97\\x80Z\\x01\\xcf).\\b0\\b\\x10\\x1e\\x15\\x1d\\b0\\b\\xb7\\b\\x13\\x10\\x06vY\\b\\x13\\x10\\x06u\\x01\\x01V\\n\\x0e\\x0e\\n\\x11\\r\\x1c\\bv\\x01\\v*AB\\b\\b>,\\x1c\\x129!\\x1e\\b\\b\\x1e,\\x99\\x06\\x1b\\x84P8\\x01!\\x1bW1\\x1e\\b\\b\\x1e\\x19/'\\r\\x13%>\\b\\b>\\v\\xfe\\xf1\\x06\\n\\x06\\x8a\\x06\\n\\x06\\x8a\\x0e\\np\\n\\x0e\\r\\t\\x8a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00-\\x005\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x174'654.\\x01'&\\x06\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x14\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x167>\\x02264&\\\"\\x06\\x14\\x91Α\\x91Α\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xa8##\\x11\\\"\\x15\\x06\\x03\\x06\\x11\\x15\\x15\\x11\\x05\\x05\\x11\\x15\\x15\\x11\\x06\\x03\\x06\\x1f)\\v\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xceW\\x13\\x1a\\x13\\x13\\x1a\\xaf\\x16\\x0e\\x0e\\x16\\n\\x13\\x0e\\x01\\x01\\r\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\x0e\\x01\\x02\\x1b\\xab\\x13\\x1a\\x13\\x13\\x1a\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x17\\x005\\x00G\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x1665.\\x01\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x014'654.\\x01'&\\x06\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x14\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x167>\\x017\\x1665.\\x02#\\\"\\x06\\a\\x14\\x16?\\x0162\\x17\\x91Α\\x91Α\\xd1\\x03\\f\\x02#&#\\x02\\f\\x03\\t\\r&\\rh##\\x11\\\"\\x15\\x06\\x03\\x06\\x11\\x15\\x15\\x11\\x05\\x05\\x11\\x15\\x15\\x11\\x06\\x03\\x06\\x1f)A\\x03\\f\\x01\\x12\\x19\\f\\x13#\\x02\\f\\x03\\t\\r&\\r\\x01\\xb8\\x91Α\\x91\\xceK\\x06\\x04\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\xb9\\x16\\x0e\\x0e\\x16\\n\\x13\\x0e\\x01\\x01\\r\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\x0e\\x01\\x02\\x1b\\xb7\\x06\\x04\\a\\x14!\\x12)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xfc\\x01\\xb8\\x00\\x12\\x00&\\x00.\\x00M\\x00a\\x00\\x00%\\x16\\x06\\x0f\\x01\\x06/\\x01&>\\x0176\\x16\\x1f\\x0176\\x16\\a\\x16\\x15\\x06#\\\"&462\\x16\\x15\\x14\\a&#.\\x01\\a\\x06&264&\\\"\\x06\\x14\\x174'654.\\x02'&\\x06\\x1f\\x01\\x16\\x14\\x0f\\x01\\x0e\\x01\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x167>\\x01?\\x0162\\x1f\\x01\\x166'.\\x03#\\\"\\x0e\\x01\\a\\x06\\x16\\x01\\xf5\\a\\x11\\x12S\\n\\x03\\x17\\x03\\a\\x12\\f\\x11\\x1c\\x04\\x03\\b\\x10\\x1f\\xab\\x17/4g\\x91\\x91Α\\x11\\v\\b\\x15T\\x17\\x11\\xa0\\x1a\\x13\\x13\\x1a\\x13\\x98##\\n\\x13\\x1b\\x10\\x06\\x04\\a\\x11\\x15\\x15\\x11\\x04\\x01\\x05\\x11\\x15\\x15\\x11\\x06\\x03\\x06\\x1f)\\x10\\n\\v'\\v\\t\\a\\x0e\\x01\\x01\\f\\x11\\x14\\n\\r\\x1a\\x13\\x02\\x01\\x0f.\\x12!\\x05\\x16\\x02\\tS\\f\\x17\\x10\\x02\\x02\\x13\\x10\\t\\x02\\x05\\x0f\\vT\\x01\\x15\\x91Α\\x91g.,\\x03%\\x02#\\x1c\\u007f\\x13\\x1a\\x13\\x13\\x1a\\xaf\\x16\\x0e\\x0e\\x16\\b\\x0e\\r\\b\\x01\\x01\\r\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\x0e\\x01\\x02\\x1b\\xc2\\t\\t\\t\\t\\x06\\b\\t\\t\\x10\\v\\x06\\n\\x14\\f\\t\\b\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x172676&#!\\\"\\x06\\x17\\x1e\\x013\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x1387Q\\a\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x01\\xb8\\x91Α\\x91\\xce\\a\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xfdH6\\a\\v\\v\\a6H\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00.\\x00<\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x01#\\\"\\x0e\\x01\\a\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x04#\\\"\\x0e\\x01\\x056&#!\\\"\\x06\\x17\\x1e\\x01;\\x0126\\x91Α\\x91Α\\x01\\x10\\x01\\r\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02#\\x13\\f\\x18\\x12\\xa2\\x01\\r\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\a\\f\\x18\\x12\\x01\\x1d\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x107Q\\x01\\xb8\\x91Α\\x91\\xce6\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e)\\x12!\\x14\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a\\x12!w\\a\\v\\v\\a6HH\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x16\\x00#\\x001\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x14\\x1f\\x01\\x166/\\x01764.\\x01\\x0f\\x01\\x17\\a\\x06\\x16?\\x0164/\\x01&\\x06\\x056&#!\\\"\\x06\\x17\\x1e\\x01;\\x0126\\x91Α\\x91Α\\x01\\x1a\\x06\\x06P\\b\\x0e\\a!!\\x03\\x06\\b\\x04\\xf3!!\\a\\x0e\\bP\\x06\\x06P\\b\\x0e\\x01\\x1f\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x107Q\\x01\\xb8\\x91Α\\x91\\xce\\x11\\x03\\x0e\\x030\\x05\\x0f\\b((\\x04\\t\\x06\\x02\\x03\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\xae\\a\\v\\v\\a6HH\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00!\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x02#\\\"\\x06&\\\"\\x06\\x14\\x16264\\x176&#!\\\"\\x06\\x17\\x1e\\x01;\\x0126\\x91Α\\x91Α\\x01\\f\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x0f\\x01\\x02\\x13\\x1a\\r\\x14%Z\\x1a\\x13\\x13\\x1a\\x13\\xc7\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x107Q\\x01\\xb8\\x91Α\\x91\\xce5\\b\\t\\x06\\t\\t\\t\\t\\x06\\t\\b\\f\\x14\\n\\x18\\x1c\\x13\\x1a\\x13\\x13\\x1a\\u007f\\a\\v\\v\\a6HH\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x13\\x00A\\x00L\\x00P\\x00\\x007\\\"&=\\x0146;\\x01\\x15%\\x14\\x06+\\x01532\\x16\\x15\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547#\\\"&5\\x11#\\\"&=\\x0146;\\x012\\x16\\x15\\x11\\x01\\x15#\\x1146;\\x012\\x16\\x15\\a5#\\x15\\xe0\\r\\x13\\x13\\r \\x01@\\x13\\r  \\r\\x130\\a\\t\\t\\aS\\x03\\x1c(\\x1c\\x03\\xc6\\x03\\x1c(\\x1c\\x03S\\a\\t0\\a\\t\\t\\a`\\a\\t\\x01`\\xc0\\x1c\\x14`\\x14\\x1c0`\\x80\\x13\\r\\xa0\\r\\x13\\xe0 \\r\\x13\\xe0\\x13\\r\\xff\\x00\\t\\a \\a\\t\\b\\b\\x14\\x1c\\x1c\\x14\\b\\b\\b\\b\\x14\\x1c\\x1c\\x14\\b\\b\\t\\a\\x01p\\t\\a \\a\\t\\t\\a\\xfe\\x90\\x01 \\xe0\\x01\\x10\\x14\\x1c\\x1c\\x14000\\x00\\x04\\x00\\x00\\xff\\xbf\\x02@\\x01\\xc0\\x00\\v\\x00\\x19\\x00#\\x00/\\x00\\x00\\x122\\x16\\x15\\x14\\a\\x06\\\"'&54\\a7\\x16\\x17\\x15\\a\\x06.\\x02=\\x0146\\x162767\\x15'5\\x16\\x17%6\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01\\x0f\\x01\\x11\\xechJr\\x05\\x0e\\x05r\\x8ew\\a\\x0e\\x8a\\x04\\b\\x06\\x04\\f\\xfe,\\x0f!\\x1a\\xc0\\x1a!\\x01/\\x06\\t\\a\\x05\\n\\x05\\x8c\\x01\\xc0J4>\\x86\\x06\\x06\\x86>4\\x8e0\\x16\\x19\\xe9?\\x02\\x02\\x04\\a\\x04\\xfa\\t\\x12\\x8d\\x11(%\\xf6@\\xb6%(\\xb6\\x02\\x03\\b\\x06\\xfa\\x06\\f\\n\\x028\\x01 \\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xbf\\x02@\\x01\\xc0\\x00\\v\\x00\\x13\\x00!\\x00+\\x007\\x00\\x00\\x122\\x16\\x15\\x14\\a\\x06\\\"'&54\\x16264&\\\"\\x06\\x14\\a7\\x16\\x17\\x15\\a\\x06.\\x02=\\x0146\\x162767\\x15'5\\x16\\x17%6\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01\\x0f\\x01\\x11\\xechJr\\x05\\x0e\\x05rm\\\"\\x19\\x19\\\"\\x19\\xe2w\\a\\x0e\\x8a\\x04\\b\\x06\\x04\\f\\xfe,\\x0f!\\x1a\\xc0\\x1a!\\x01/\\x06\\t\\a\\x05\\n\\x05\\x8c\\x01\\xc0J4>\\x86\\x06\\x06\\x86>4^\\x19\\\"\\x19\\x19\\\"I0\\x16\\x19\\xe9?\\x02\\x02\\x04\\a\\x04\\xfa\\t\\x12\\x8d\\x11(%\\xf6@\\xb6%(\\xb6\\x02\\x03\\b\\x06\\xfa\\x06\\f\\n\\x028\\x01 \\x00\\x00\\x02\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc1\\x00\\v\\x00 \\x00\\x00?\\x01\\x17\\a\\x0e\\x01\\a\\x06&7>\\x01\\x00\\x16\\x14\\x0f\\x01'7'\\a\\x06/\\x01&?\\x0162\\x1f\\x0176^K\\x80K\\\"r/\\f\\x10\\x01\\x057\\x01\\x8f5\\x1b\\xa5\\x80b\\x13W\\f\\v\\x17\\v\\vi\\v!\\f%\\x15\\x1b\\x9eK\\x80K\\\"7\\x05\\x01\\x10\\f/r\\x01D5K\\x1b\\xa5\\x80b\\x14W\\v\\v\\x17\\v\\vh\\f\\f$\\x15\\x1b\\x00\\x00\\x04\\xff\\xfd\\xff\\xc0\\x02\\x03\\x01\\xc0\\x00\\t\\x00\\x13\\x00\\x1b\\x004\\x00\\x00\\x13\\x06\\a'&6;\\x012\\x17%2\\x16\\x0f\\x01&'763\\x062\\x16\\x14\\x06\\\"&4\\x056&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x01\\xe0?/o\\x06\\t\\no\\x12\\n\\x01U\\n\\t\\x06o/?E\\n\\x12ʒgg\\x92g\\x01\\r\\x05\\x05\\a4\\x18\\x03\\x0e\\x03\\x184\\a\\x05\\x05&\\t\\x01\\f\\x06//\\x06\\f\\x01\\t\\x01=\\n+\\x9f\\b\\x11\\x10\\x10\\x11\\b\\x9f+\\ns\\x10\\xa0g\\x92gg\\x926\\x05\\r\\x01\\b/\\a\\a/\\b\\x01\\r\\x05%4\\a\\t\\x03\\x19\\x19\\x03\\t\\a4\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x91Α\\x91Α\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xceW\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00!\\x003\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\x162654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x1724+\\x01\\\"\\x14362654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x15\\x14\\x91Α\\x91ΑX&4&\\\"\\x02\\x13\\x1a\\x13\\x02\\\"\\xe0\\x10\\x10\\x80\\x10\\x10\\x864&\\\"\\x02\\x13\\x1a\\x13\\x02\\\"\\x01\\xb8\\x91Α\\x91\\xceG\\x1a&&\\x1a&\\x12\\x06\\x02\\r\\x13\\x13\\r\\x02\\x06\\x12\\xd6  p&\\x1a&\\x12\\x06\\x02\\r\\x13\\x13\\r\\x02\\x06\\x12&\\x1a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc7\\x00\\x0f\\x00\\x1a\\x00*\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\x13!\\x136?\\x016\\x1f\\x01\\x16\\a54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01p\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01\\x11\\x1f\\xff\\x00\\x1f\\x01\\bM\\v\\vM\\b0\\b\\x05F\\x05\\b\\b\\x05F\\x05\\b\\t\\a \\a\\t\\t\\a \\a\\t\\x01[\\xfe\\xc5\\x01;\\f\\bL\\f\\fL\\b\\xda&\\x05\\b\\b\\x05&\\x05\\b\\b\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x03\\x01\\xc0\\x00\\t\\x00+\\x00\\x00\\x01\\a#7632\\x17\\x1e\\x01\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\a\\x16\\x17\\x16\\x06+\\x01\\\"&767.\\x015#\\\"&=\\x01463\\x01\\xf6d\\x97\\xcc\\t\\f\\t\\a\\x11\\x05\\x12\\a\\t\\t\\a\\x10C6\\x14\\x05\\x01\\n\\a\\xe0\\a\\n\\x01\\x05\\x146C\\x10\\a\\t\\t\\a\\x01\\x83c\\x99\\a\\x04\\b$\\x90\\t\\a \\a\\t<a\\x15\\x1b \\a\\f\\f\\a \\x1b\\x15a<\\t\\a \\a\\t\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x000\\x00\\x00\\x01\\x14\\x06#!\\\"&=\\x01463!2\\x16\\x15\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x152\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463546;\\x01265\\x01\\xa0\\x13\\r\\xfe\\xa0\\r\\x13\\x13\\r\\x01`\\r\\x13 \\x1b%8(\\xa0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r%\\x1b\\xa0\\r\\x13\\x01@\\r\\x13\\x13\\r`\\r\\x13\\x13\\r %\\x1b@(8 \\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13 \\x1b%\\x13\\r\\x00\\t\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x04\\x00\\t\\x00\\x10\\x00\\x18\\x00\\x1d\\x00-\\x009\\x00A\\x00F\\x00\\x00\\x1367\\x06\\x0f\\x013\\x16\\x17&\\x17.\\x01'3\\x0e\\x01'>\\x017\\x1e\\x02\\x1f\\x01673\\x06\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01264&+\\x01\\\"\\x06\\x14\\x1636264&\\\"\\x06\\x147\\x16\\x17#&\\x82\\b-\\f\\x02''\\x02\\f-V\\a\\x0f\\x01.\\x01\\x0f\\x1e\\x01\\x0f\\a\\x04\\n\\b\\x01\\x12\\f\\x02'\\bj\\r\\x13\\x13\\r\\xfe\\xa0\\x1b%%\\x1b\\x01\\x10\\a\\t\\t\\a\\xe0\\a\\t\\t\\a;jKKjK\\xa9-\\b'\\x02\\x01\\x101\\x15\\x1d) )\\x1d\\x15\\x1e\\a*\\x1e\\x1e*h\\x1e*\\a\\x05\\x12#\\x15f\\x1d)1\\x01\\x01\\x13\\r\\xfe@\\r\\x13%\\x1b\\x01\\x80\\x1b%\\xfe`\\t\\x0e\\t\\t\\x0e\\t`KjKKj\\x8b\\x151)\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\a\\x01\\xcc\\x00\\x17\\x00\\x1e\\x00\\x00?\\x01\\x17\\a\\x06\\x0f\\x01'7\\x163264&\\\"\\x06\\x15\\x14\\x17\\a'76\\x016\\x1e\\x01\\x0f\\x01'OTc!\\x05\\x0f\\xb1\\x05]\\x06\\x02\\r\\x13\\x13\\x1a\\x13\\x02]\\x05;\\x05\\x011#]\\x16$\\xc7b\\xa5!cT\\x0f\\x05;\\x05]\\x02\\x13\\x1a\\x13\\x13\\r\\x02\\x06]\\x05\\xb1\\x0f\\x01\\x04'\\x1eT(\\xb7b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00\\x1c\\x00&\\x00\\x00\\x137\\x17\\a\\x0e\\x01\\a\\x05'7\\x163264&\\\"\\x06\\x15\\x14\\x17\\a'\\x13>\\x04%\\x16\\x14\\x0f\\x01'762\\x17\\x89\\x97\\x80+\\x04\\x18\\r\\xfe\\xe8\\x0f\\x96\\n\\v\\x14\\x1c\\x1c(\\x1c\\x05\\x96\\x0f]\\x02\\a\\b\\n\\v\\x01o\\x0e\\x0e9\\x809\\x0e(\\x0e\\x015+\\x80\\x97\\x0e\\x19\\x05]\\x0f\\x96\\x05\\x1c(\\x1c\\x1c\\x14\\v\\n\\x96\\x0f\\x01\\x18\\x05\\v\\t\\t\\x06B\\x0e(\\x0e9\\x809\\x0e\\x0e\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc1\\x00\\x12\\x00\\x1c\\x00$\\x006\\x00\\x007'&4?\\x0162\\x1f\\x01\\a\\x06\\x1f\\x01\\x162?\\x01\\x1f\\x01\\a'762\\x1f\\x01\\x16\\x14'\\x17\\x01\\a\\x06&?\\x01%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x017\\x17\\a\\x06\\x1f\\x01\\x16?\\x01md\\t\\tZ\\t\\x1b\\t\\\">\\x06\\x06\\v\\x02\\a\\x02>,\\xfe.q.\\x0e(\\x0e-\\x0e\\xc4q\\xfe\\xd7k\\v\\x10\\x02\\x13\\x01\\xe4\\t\\tZ\\t\\x1b\\td\\x87,>\\x06\\x06\\v\\x06\\x05>\\xccd\\t\\x1b\\tZ\\t\\t\\\">\\x05\\x06\\v\\x02\\x02>,\\x12.q.\\x0e\\x0e-\\x0e(\\x1eq\\xfe\\xd7\\x13\\x02\\x10\\vk\\f\\t\\x1b\\tZ\\t\\te\\x86,>\\x05\\x06\\v\\x06\\x06>\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc2\\x00\\x0f\\x00.\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637&=\\x0146\\x1f\\x01\\x16\\x1f\\x02'46\\x1f\\x01\\x16\\x1f\\x02\\x16\\x17\\x16\\x06\\a\\x06'%&'\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x1d\\r\\r\\b'\\b\\x03\\x1cf0\\r\\bA\\t\\x03db+\\x1c\\x1d\\r(&+\\xfe\\xe0\\x0e\\v\\t\\a \\a\\t\\t\\a \\a\\t\\xf2\\v\\re\\t\\t\\x02\\v\\x02\\bC\\x1c\\xa4\\b\\v\\x03\\x11\\x03\\t\\xc0\\x1b\\v\\x1d\\x1e1\\v\\v\\fN\\x04\\n\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x02\\x89\\x01\\xa1\\x00\\x0f\\x001\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637'&6?\\x0162\\x1f\\x017'&6?\\x01632\\x1f\\x0176\\x17\\x1e\\x01\\a\\x06\\a\\x05\\x06+\\x01\\\"\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\aAM\\x05\\x03\\b(\\x04\\b\\x04Hh\\x9d\\x06\\x04\\bA\\x04\\x04\\x06\\x04\\xdbc++.\\x18\\x19\\x17,\\xfe\\xdd\\x0e\\x10\\x82\\x0f\\t\\a \\a\\t\\t\\a \\a\\tkS\\x06\\x12\\x04\\x14\\x02\\x02$4b\\a\\x12\\x04!\\x02\\x03R2\\x16\\x03\\x031'$\\x16\\x94\\a\\x00\\x00\\x02\\x00\\x00\\xff\\xd9\\x01\\x87\\x01\\xa0\\x00*\\x002\\x00\\x00%\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'#\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15\\x14\\x06\\a\\x1776\\x1f\\x01\\x16\\a%\\x153264&#\\x01-N\\f\\f\\x16\\f\\vNN\\v\\f\\x16\\f\\fN\\x80\\x13\\t\\a \\a\\t\\t\\a\\x90(80$TN\\v\\f\\x16\\f\\f\\xfe\\xc5`\\r\\x13\\x13\\r`N\\v\\f\\x16\\f\\fNN\\f\\f\\x16\\f\\vN\\x80P\\a\\t\\t\\a\\x01\\x00\\a\\t8($6\\x05TN\\f\\f\\x16\\f\\v\\xb2@\\x13\\x1a\\x13\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x1b\\x00.\\x006\\x00J\\x00\\x00\\x122\\x16\\x15\\x14\\x06\\a54&\\\"\\x06\\x1d\\x01\\x06\\\"'54&\\\"\\x06\\x1d\\x01.\\x0154\\x1f\\x01\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x16264&\\\"\\x06\\x1476'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x1f\\x01\\x16\\x91ΑA7\\t\\x0e\\t.d.\\t\\x0e\\t7A\\xb6\\n\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&9(\\x1c\\x1c(\\x1c\\xc6\\a\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x01\\xb8\\x91gBq!\\xb4\\a\\t\\t\\a\\xc5\\x13\\x13\\xc5\\a\\t\\t\\a\\xb4!qBgG\\t\\x06\\b\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\xc9&4&&4\\x90\\x03\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\t\\t\\x06\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1b\\x00#\\x00.\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264\\x062654'&\\\"\\a\\x06\\x15\\x146264&\\\"\\x06\\x14\\x17\\x16>\\x01'&#\\\"\\x1432\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xe4(\\x1c*\\x02\\b\\x02*3\\x1a\\x13\\x13\\x1a\\x13\\xca\\x06\\x13\\x05\\x05-F\\x10\\x107\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\xdd\\x1c\\x13\\x177\\x03\\x037\\x17\\x13\\x94\\x13\\x1a\\x13\\x13\\x1a\\xad\\b\\x04\\x10\\b6 \\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1d\\x00!\\x00)\\x00-\\x005\\x009\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x17\\x0535#\\x12264&\\\"\\x06\\x1475#\\x15\\x16264&\\\"\\x06\\x14'3'#\\x02u\\v\\x13\\r 8P8\\x808P8 \\r\\x13\\x13\\r\\x01\\xaa\\x16\\x0e\\xfeR``L(\\x1c\\x1c(\\x1c\\xd0`\\xec(\\x1c\\x1c(\\x1c0\\x92PB\\xed\\r\\x11o\\r\\x13(88((88(\\x13\\r\\x01 \\r\\x13\\x11\\x8f`\\xfe\\xb0\\x1c(\\x1c\\x1c(\\xd4``\\xf0\\x1c(\\x1c\\x1c(\\xd4`\\x00\\x00\\x01\\xff\\xf9\\x00\\x00\\x02\\x80\\x01\\x83\\x00=\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x0e\\x01#\\x0e\\x03\\a\\x06#\\\"'&7\\x06\\a\\x06#\\\"&?\\x016&\\x0f\\x01\\x06&/\\x01&?\\x016\\x1e\\x02\\x0f\\x01>\\x0176\\x1e\\x01\\x14\\a\\x06\\x1e\\x01327>\\x02\\x02o\\a\\n\\x04\\a\\x04\\x0e)\\\"(\\nC#+\\x17\\x19\\x05M\\x86\\n\\r\\x13\\x10\\x05b\\a\\x19\\x0e:\\x06\\r\\x03\\x12\\b\\r7\\x1c:&\\x13\\r*KJ\\x15\\x13\\x15\\x04\\x01\\x03\\x02\\v\\v\\x166\\nE=\\x01\\x00\\t\\a \\x04\\a\\x05\\x01\\x11\\x14\\x18\\x04\\x1e\\x19\\x1c8=\\x87\\t\\x1e\\x0e\\xf6\\x0e\\x15\\b'\\x04\\x03\\x06\\x1b\\r\\t%\\x11\\x05#3\\x1dhG6\\x01\\x01\\x13!\\x11\\b\\x12\\x17\\v\\x18\\x05'\\x1a\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1b\\x00'\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x04#\\\"\\x06\\x176&\\a\\x06\\\"'&\\x06\\x17\\x1627\\x166'.\\x02#\\\"\\x06\\a\\x14\\x16?\\x0162\\x17\\x91Α\\x91Αp\\x01\\r\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\xf9\\n\\x19\\n#n#\\n\\x19\\n-\\x8c3\\x03\\r\\x01\\x01\\x12\\x19\\f\\x13#\\x02\\f\\x03\\t\\r&\\r\\x01\\xb8\\x91Α\\x91\\xceF\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a)\\x99\\f\\x14\\f**\\f\\x14\\f6\\xac\\x05\\x03\\a\\x14!\\x12)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\x14\\x00(\\x00,\\x000\\x004\\x008\\x00<\\x00@\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014>\\x01;\\x0153\\x15\\x13\\x12\\x15\\x14\\x0e\\x01#!\\\"&54\\x13>\\x023!2\\x16\\x05\\a3'\\x037#\\a?\\x01#\\a\\x173'#7\\x173'\\x033'#\\x01\\xb0\\a\\t\\t\\a\\xe0\\a\\t\\x04\\b\\x040\\x80\\xc97\\t\\x0f\\t\\xfd\\xc2\\x0e\\x137\\x01\\t\\x0e\\b\\x01\\xd2\\f\\x12\\xfe\\xbd\\n\\x8c\\n\\xc3\\vj\\x13\\x82\\n`\\x11\\x88\\xac\\v\\x96\\xb8\\ng\\x11Fr\\x13j\\t\\a \\x06\\n\\t\\a \\x04\\a\\x05  \\x01\\xa5\\xfe\\xbd\\x02\\t\\x0e\\t\\x13\\r\\x03\\x01B\\b\\f\\a\\x0f1``\\xff\\x00pp\\xa0``\\xa0p\\x90``\\xff\\x00p\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02A\\x01\\xa4\\x00\\x1e\\x00,\\x00\\x00\\x012\\x15\\x14\\x0e\\x02\\a\\x06\\\"'.\\x035432\\x1e\\x02\\x17\\x16\\x1767>\\x03\\x05&'&'676\\x17\\x16\\x17\\x06\\a\\x06\\x028\\b\\x06\\x0f'\\x1dS\\xe8S\\x1d'\\x0f\\x06\\b\\x10'?D\\x1c+\\x17\\x17+\\x1cD?'\\xfe\\xf8\\x13\\x1a\\x1a!\\x1aF\\b\\bG\\x19\\\"\\x1a\\x19\\x01\\x00\\b\\x0f%;?\\x19QQ\\x19?;%\\x0f\\b\\x05\\x0f$\\x1b'88'\\x1b$\\x0f\\x05o\\x1d\\x17\\x19\\x13o=\\a\\a=o\\x13\\x1a\\x16\\x00\\x01\\xff\\xf4\\xff\\xd7\\x02\\x03\\x01\\xa7\\x00\\\"\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x06\\x0f\\x01\\x0e\\x01/\\x01&\\x0f\\x01\\x06&?\\x016/\\x01&6\\x1f\\x01\\x16?\\x016\\x16\\x1f\\x01\\x16\\x17\\x01\\xd8%\\x06\\\">\\x1c\\x02\\x05\\x03H\\x1e6\\x19 F&3\\x10\\x1c\\r\\x12&\\x15)'H!\\x15.\\x19L\\t\\x10\\a\\x1f\\xfc\\fC\\x12\\x1f\\x0f\\x1c>\\\"\\x1a\\x17(\\x13\\a\\x0f\\t4\\x1f9\\x1a\\x184\\x1d9\\x03\\x06\\x02\\x16/\\x1a\\x0f!=\\x1b\\v\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x11\\x00!\\x00)\\x001\\x009\\x00A\\x00I\\x00Q\\x00\\x00\\x13\\x15#546;\\x012\\x1e\\x012\\x16\\x14\\x06\\\"&4\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x12264&\\\"\\x06\\x14\\x00\\\"&462\\x16\\x14\\x062\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\xe0\\x80\\x13\\r@\\r\\x13\\xf3\\x1a\\x13\\x13\\x1a\\x13\\xe0(8\\x13\\r\\xff\\x00\\r\\x138(\\x1fB//B/\\x01\\x9d\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13M\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0``\\r\\x13\\x13m\\x13\\x1a\\x13\\x13\\x1a\\r8(\\xe0\\r\\x13\\x13\\r\\xe0(8\\xff\\x00/B//B\\x01\\x11\\x13\\x1a\\x13\\x13\\x1a3\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc7\\x00\\x03\\x00*\\x00\\x00\\x175!\\x15\\x032\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0126=\\x014'&546\\x17\\x1e\\x01\\x17\\x16\\a\\x06\\x1d\\x01\\x14\\x163 \\x01\\xc0@(8\\x13\\r\\xfe@\\r\\x138(C\\f\\x11\\x17\\tD-\\x1d+\\x06\\x05\\x0f\\x15\\x11\\f@@@\\x01\\x008( \\r\\x13\\x13\\r (8\\x11\\f\\x01(2\\x13\\x15,:\\b\\x05+\\x1d \\x1c*$\\n\\f\\x11\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x02\\x1d\\x01\\xc0\\x00\\x1c\\x00'\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06#\\\"/\\x01\\a\\x06#\\\"&?\\x01'&6?\\x0262\\x1f\\x027/\\x03\\x11\\x1f\\x01/\\x01\\x01\\xfd\\x13\\r\\x0fj\\x19\\x03\\x14\\x0e\\b\\a\\x83\\x83\\a\\b\\x0e\\x14\\x03\\x19j\\x0f\\r\\x13\\x93A\\t(\\tA\\x19Rr\\x19\\v3\\x16f\\x13\\x04\\x01\\x14\\x02&\\x0eg\\x92\\x0f\\x16\\x04DD\\x04\\x16\\x0f\\x92g\\x0e&\\x03\\x15\\x84\\x12\\x12\\x84\\x91Q\\x10\\x04\\x17g\\xfe\\xc3\\f6r\\x19\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00#\\x00/\\x00;\\x00I\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x01463\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\x15#546;\\x012\\x16\\x1d\\x01#5\\x01P\\x14\\x1c\\x1c\\x14\\x10\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x14\\x1c\\x1c\\x14\\x01\\x10\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\xb00\\x1c\\x14`\\x14\\x1c0\\x01 \\x1c\\x14\\xe0\\x14\\x1c\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\x1c\\x14\\xe0\\x14\\x1c\\xd8\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\xf0PP\\x14\\x1c\\x1c\\x14PP\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16\\x14\\x16264&\\\"\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x91Α\\x91Α\\x88\\x13\\x1a\\x13\\x13\\x1aC4&&4&\\x83\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce*\\x1a\\x13\\x13\\x1a\\x13\\xf0&4&&4\\x8a\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\n\\x00\\x17\\x00%\\x00-\\x001\\x005\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x117362\\x1f\\x012\\x16\\x1d\\x01\\x14\\x06#!>\\x01?\\x01\\x03\\x11\\x14\\x06\\\"&5\\x1146;\\x012\\x16\\x02264&\\\"\\x06\\x1475#\\x1575#\\x15\\x01\\xb3\\t\\t\\xd3K\\x01\\t\\x1a\\t\\x88\\r\\x13\\x13\\r\\xfe\\xd4\\x01\\x05\\x01\\xba\\xb58P8\\x13\\r\\x80\\r\\x13j\\x14\\x0e\\x0e\\x14\\x0e8@@@\\x01\\x18\\t\\x1b\\t\\xd3\\x01\\x0fL\\t\\t\\xf3\\x13\\r\\x80\\r\\x13\\x01\\x03\\x01\\xbb\\x01 \\xfe\\x80(88(\\x01\\x80\\r\\x13\\x13\\xfe[\\x0e\\x14\\x0e\\x0e\\x14\\xaa@@\\x80@@\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01h\\x00\\x1f\\x00T\\x00\\\\\\x00\\x007&'76?\\x016\\x1f\\x01\\x1e\\x01\\x0e\\x01/\\x01&\\x0f\\x01\\x17\\x06\\a\\x06\\\"'&+\\x01\\\"\\a\\x06\\\"\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"'\\x06\\\"'\\x06\\\"'\\x06+\\x01\\\"&=\\x0146;\\x01276;\\x012\\x17\\x16276;\\x012\\x17\\x16276;\\x012\\x17\\x163$\\\"&462\\x16\\x14\\xbe\\a\\tD\\v\\x10P(1d\\x13\\x16\\b\\\"\\x13d\\a\\x06\\x12q\\x1b\\x17\\n0\\n\\x19\\x1d\\x10\\x1d\\x19\\n0\\x01\\xa8\\a\\t\\t\\a\\x10:&&t&&t&&:\\x10\\a\\t\\t\\a\\x10%\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13%\\xfe1B//B/\\x89\\a\\x05b\\x10\\v9\\x1d\\n\\x16\\x04\\\"&\\x16\\x04\\x16\\x01\\x04\\rP\\x02\\x15\\t\\t\\x17\\x17\\t \\t\\a \\a\\t      \\t\\a \\a\\t\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12`/B//B\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x004\\x00j\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"'\\x06\\\"'\\x06\\\"'\\x06+\\x01\\\"&=\\x0146;\\x01276;\\x012\\x17\\x16276;\\x012\\x17\\x16276;\\x012\\x17\\x163%\\\"'&'5462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\\"\\x06\\x1d\\x0135462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\\"\\x06\\x1d\\x01\\x06\\a\\x06#5#\\x02p\\a\\t\\t\\a\\x10:&&t&&t&&:\\x10\\a\\t\\t\\a\\x10%\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13%\\xfe\\x80\\x18\\n\\x0e\\x108P8\\t\\a \\a\\t\\x13\\x1a\\x13\\xc08P8\\t\\a \\a\\t\\x13\\x1a\\x13\\x10\\x0e\\n\\x18\\xc0 \\t\\a \\a\\t      \\t\\a \\a\\t\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12 \\t\\r\\x06\\xe4(88(\\x10\\a\\t\\t\\a\\x10\\r\\x13\\x13\\r``(88(\\x10\\a\\t\\t\\a\\x10\\r\\x13\\x13\\r\\xe5\\x05\\r\\t`\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00\\x18\\x00 \\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x016762\\x17\\x1e\\x03\\x15\\x14\\a%47\\x05\\x06#\\\"&\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\xbb(\\x13\\a-\\x06\\x106,!\\x01\\xfe\\xa1\\x13\\x01\\x112BIg\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\t\\x91>@\\x16\\x164_6I&\\x06\\v\\x11(&\\xd3-h\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x16\\x00#\\x002\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x14\\x1f\\x01\\x166/\\x01764.\\x01\\x0f\\x01\\x17\\a\\x06\\x16?\\x0164/\\x01&\\x06\\x16\\\"\\x06\\a\\x06\\x1e\\x01762\\x17\\x166'&\\x91Α\\x91Α\\x01\\x1a\\x06\\x06P\\b\\x0e\\a!!\\x03\\x06\\b\\x04\\xf3!!\\a\\x0e\\bP\\x06\\x06P\\b\\x0e\\xb1RM\\x05\\x01\\x05\\t\\x04)\\x82)\\a\\v\\x01\\x05\\x01\\xb8\\x91Α\\x91\\xce-\\x03\\x0e\\x030\\x05\\x0f\\b((\\x04\\t\\x06\\x02\\x03\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\x80>-\\x06\\v\\x05\\x02\\x11\\x11\\x03\\r\\n-\\x00\\x00\\x00\\x01\\xff\\xf5\\xff\\xc0\\x01\\xcb\\x01\\xc9\\x003\\x00\\x00\\x01\\x16\\a\\x06\\a\\x06\\x0f\\x01\\x0e\\x01#\\\".\\x01/\\x01.\\x01\\\"\\x06\\x0f\\x01\\x0e\\x01\\\"&/\\x01&'&'&7>\\x0176\\x1f\\x01\\x16676/\\x01676\\x17\\x1e\\x01\\x01\\xbc\\x0f%\\x1e\\x06\\b\\r\\b\\x02\\x11\\n\\a\\f\\t\\x02\\\"\\x04\\x16\\x1c\\x16\\x04\\\"\\x03\\x10\\x15\\x11\\x02\\b\\r\\b\\x06\\x1e%\\x0f\\b2\\\" #d\\x06\\r\\x03\\t\\r\\x1d\\n\\x010)\\\"2\\x01`>1(CS9\\\"\\v\\r\\x06\\n\\a\\x8b\\r\\x12\\x12\\r\\x8b\\n\\r\\r\\v\\\"9SC(2=\\\"3\\b\\t\\x13@\\x04\\x03\\x05\\x0e\\b\\x13\\x04\\x01#\\v\\b3\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x82\\x01\\xc4\\x00\\t\\x00\\x12\\x00\\x1d\\x001\\x00\\x00\\x13.\\x017>\\x01\\x17\\x0e\\x01\\a\\x17>\\x0132\\x17\\x1e\\x01\\a7\\x1e\\x01\\a\\x14\\x06/\\x016'&\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x017\\x17\\as\\a\\x05\\x05-\\x84G'I\\x1b\\x1f!`+\\r\\n.\\x18\\x1b#:?\\x02\\x0e\\bf\\x1b\\b\\x04\\x1d\\a\\t\\t\\a\\xfd\\xe0\\a\\t\\t\\a\\xedI<A\\x017\\x03\\x10\\x068;\\x03\\x17Z=\\vL_\\x04\\x11\\x92[\\xd4,\\x82H\\b\\t\\x03%]J\\x1e\\xfe\\x96\\t\\a \\a\\t\\t\\a \\a\\t\\xc8\\x16\\xb2\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00/\\x003\\x007\\x00;\\x00?\\x00W\\x00\\x00\\x01\\x14\\x06#\\x152\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5#\\x14\\x06+\\x01\\\"&=\\x014635\\\"&=\\x0146;\\x012\\x16\\x15346;\\x012\\x16\\x15\\a\\x1535!\\x1535\\x115#\\x15!5#\\x15=\\x01#\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x0135463\\x02\\x00\\x13\\r\\r\\x13\\x13\\r`\\r\\x13\\xc0\\x13\\r`\\r\\x13\\x13\\r\\r\\x13\\x13\\r`\\r\\x13\\xc0\\x13\\r`\\r\\x13` \\xfe\\x80  \\x01\\x80  \\r\\x13\\xc0\\x13\\r  \\r\\x13\\xc0\\x13\\r\\x01@\\r\\x13\\xc0\\x13\\r`\\r\\x13\\x13\\r\\r\\x13\\x13\\r`\\r\\x13\\xc0\\x13\\r`\\r\\x13\\x13\\r\\r\\x13\\x13\\r     \\xfe\\x80    `\\xc0\\x13\\r  \\r\\x13\\xc0\\x13\\r  \\r\\x13\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x02\\x05\\x01\\xc0\\x00\\x1c\\x00$\\x00\\x00%\\x16\\x06#!\\\"&7\\x13>\\x01;\\x01&54632\\x1e\\x01\\x15\\x14\\a32\\x1e\\x01\\x17&264&\\\"\\x06\\x14\\x01\\xfe\\a\\x1d\\x18\\xfe`\\x18\\x1d\\aI\\x03\\x11\\v<\\x068(\\x1a,\\x1a\\x06<\\b\\f\\t\\x02\\xc2\\x1a\\x13\\x13\\x1a\\x13\\x02\\x19))\\x19\\x01$\\f\\x0e\\x10\\x10(8\\x1a,\\x1a\\x0f\\x11\\x06\\f\\b\\x1a\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x01%\\x01\\xc0\\x00\\x1e\\x00\\\"\\x00\\x00\\x172\\x16\\x15\\x14+\\x01\\\"546;\\x015.\\x01?\\x014>\\x01;\\x012\\x16\\x15\\x17\\x16\\x06\\a\\x15\\x03\\a3'\\xd8\\x11\\x17\\b\\xd0\\b\\x17\\x11(4@\\x05\\x10\\x04\\a\\x04\\xe0\\x06\\t\\x10\\x05@4r\\a\\xb2\\a\\x10\\x17\\x11\\b\\b\\x11\\x17u\\fW7\\xb2\\x05\\x06\\x04\\b\\a\\xb27W\\fu\\x01\\xa0PP\\x00\\x03\\xff\\xfc\\xff\\xc0\\x01\\x84\\x01\\xc0\\x00/\\x007\\x00;\\x00\\x00%\\x16\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&?\\x01#\\\"&?\\x01&5462\\x16\\x15\\x14\\a\\x17\\x16\\x06+\\x01&\\\"\\x06\\x14\\x16264\\x13#\\x153\\x01{\\t\\f\\x0e\\x8ap\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\ap\\x8a\\x0e\\f\\t^1\\v\\n\\ar\\x06\\x1c(\\x1c\\x06r\\a\\n\\v1V\\x0e\\t\\t\\x0e\\t`\\xe0\\xe0\\u007f\\n\\x15 \\t\\a`\\a\\t\\t\\a`\\a\\t \\x15\\na\\x13\\t~\\v\\v\\x14\\x1c\\x1c\\x14\\v\\v~\\t\\x13\\xc0\\t\\x0e\\t\\t\\x0e\\xfey \\x00\\x00\\x00\\x02\\xff\\xfc\\xff\\xbf\\x01\\xc4\\x01\\xc0\\x00\\\"\\x005\\x00\\x00\\x01\\x16\\x17\\x16\\x17\\x16\\a\\x06\\a\\x06#\\\"'&\\\"\\a\\x06#\\\"'&'&767676\\x17\\x16\\x17676'\\x06\\a\\x06#'&7676763\\x1f\\x01\\x14\\a\\x06\\x01_'\\x19\\x16\\b\\a\\b\\f$+A\\x10\\x13\\r \\r\\x13\\x10A+$\\f\\b\\a\\b\\x16\\x19'\\x18*$\\x19\\x19$*\\x1f\\x0e\\x17\\x10\\x13\\x0f\\x02\\x02\\x04\\x13\\x0e\\x17\\x10\\x13\\x0f\\x01\\x05\\x06\\x01?\\a#\\x1f/++G0:\\n\\b\\b\\n:0G++/\\x1f#\\a\\x04\\v\\n\\x0e\\x0e\\n\\v%\\r\\x06\\x05\\x01\\x0e\\x12$\\x13\\r\\x06\\x05\\x01\\x0f\\x13\\x10\\x17\\x00\\t\\xff\\xec\\xff\\xc0\\x01\\xd4\\x01\\xc0\\x00\\n\\x00#\\x00+\\x006\\x00=\\x00D\\x00L\\x00T\\x00_\\x00\\x0072\\x1e\\x01\\x15\\x14\\x06\\\"&467\\x16\\a\\x16\\a\\x06'\\x06\\\"'\\x06\\\".\\x01'&7&76\\x1762\\x176\\x01\\x167&'&'\\x06767\\\"&#\\\"\\a\\x06\\x17>\\x01\\\"\\a\\x16\\x1767\\x0227&'\\x06\\a6264&\\\"\\x06\\x14\\x176'\\x06\\a\\x06\\a\\x16'6'&#\\\"\\x06#\\x16\\x17\\x16\\xe0\\t\\x0e\\t\\x13\\x1a\\x13\\x13\\xe3\\x1e77\\x1e\\x1dW$|$\\v\\x15(\\\"\\n\\x1e77\\x1e\\x1dW$|$W\\xfe\\xa6\\a%\\x05\\x02\\v\\v\\x16,\\x03\\x04\\x01\\x04\\x01\\x1f\\a\\a\\x16\\v\\x97 \\x12\\x11\\x11\\x11\\x112 \\x12\\x11\\x11\\x11\\x11\\x01B//B/\\xf1\\a\\x16\\v\\v\\x02\\x05%\\b\\x16\\a\\a\\x1f\\x01\\x04\\x01\\x04\\x03\\v\\xe0\\t\\x0e\\t\\r\\x13\\x13\\x1a\\x13`5KK54\\nVV\\x01\\x04\\x15\\x125KK54\\nVV\\n\\xfe\\xec\\f\\x01\\x16\\x12\\t\\n#\\x96\\x14\\x14\\x01\\f\\r#\\n\\x86%\\x06\\a\\a\\x06\\xfe\\xa5%\\x06\\a\\a\\x06K/B//B?\\r#\\n\\t\\x13\\x15\\x01\\x9c#\\r\\f\\x01\\x14\\x14\\t\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00O\\x00\\x00%\\x06\\x14\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06#\\\"&'4.\\x04#!\\\"\\x0e\\x06\\a\\x0e\\x01#\\\"&=\\x0146764'.\\x01=\\x014632\\x1e\\x01\\x17\\x14\\x1e\\x043!2>\\x055>\\x0132\\x16\\x1d\\x01\\x14\\x06\\x02W\\a\\a\\x13\\x16,\\x1e\\x18'\\b\\x06\\x02\\x06\\a\\n\\a\\xfe\\xee\\x05\\b\\x06\\x05\\x04\\x04\\x01\\x04\\x01\\b'\\x18\\x1e,\\x16\\x13\\a\\a\\x13\\x16,\\x1e\\x10\\x1d\\x15\\x05\\x06\\x02\\x06\\a\\n\\a\\x01\\x12\\x05\\t\\a\\x05\\x05\\x01\\x06\\b'\\x18\\x1e,\\x16\\xcb\\x03\\x10\\x03\\n$\\x15\\b\\x1e,\\x1c\\x17\\x01\\x11\\x05\\r\\x04\\x05\\x02\\x03\\a\\x04\\n\\x05\\f\\x02\\x17\\x1c,\\x1e\\b\\x15$\\n\\x03\\x10\\x03\\n$\\x15\\b\\x1e,\\r\\x17\\x0f\\x01\\x11\\x05\\r\\x04\\x05\\x02\\x06\\x04\\f\\x04\\x10\\x01\\x17\\x1c,\\x1e\\b\\x15$\\x00\\x00\\x03\\x00\\x00\\xff\\xbe\\x02\\x01\\x01\\xc0\\x00\\a\\x00\\x18\\x00+\\x00\\x00\\x00\\x14\\x06\\\"&462\\a\\x16\\x1d\\x01\\x14\\x06'&'.\\x01=\\x0146\\x17\\x16%2\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x06\\a\\x06.\\x01=\\x01476\\x01`8P88P>\\x06\\r\\aF|\\v\\x0f\\x12\\f\\x88\\x01<\\b\\x0e\\b\\x0f\\v|E\\x05\\n\\x06\\x06D\\x01\\x88P88P8\\xf1\\x04\\b\\xf6\\a\\b\\x04#\\x06\\x01\\x0f\\v\\xdf\\f\\x10\\x01\\b\\b\\a\\f\\b\\xdf\\v\\x0f\\x01\\a\\\"\\x03\\x02\\b\\x04\\xf6\\b\\x04)\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00%\\x00K\\x00\\x00\\x132\\x16\\x15\\x11\\x14\\x06#\\\"&'\\x06#\\\"&547.\\x01547&5467&5463021>\\x01\\x01\\x14\\x06\\a\\x16\\x15\\x14\\x06#\\\"'\\x0e\\x01#\\\"&5\\x114632\\x16\\x170212\\x16\\x15\\x14\\a\\x1e\\x01\\x15\\x14\\a\\x16\\xd0\\x1a&*\\x1e\\x17&\\a\\a\\x05\\x1e*\\x01\\x16\\x1b(\\b\\x1b\\x17\\x02&\\x1a\\x02\\x06\\\"\\x01\\x86\\x1b\\x16\\x01*\\x1e\\x05\\a\\a&\\x17\\x1e*&\\x1a\\x16\\\"\\x06\\x02\\x1a&\\x02\\x17\\x1b\\b(\\x01\\xc0&\\x1a\\xfe\\x88\\x1e*\\x1b\\x16\\x01*\\x1e\\a\\a\\t(\\x19.\\x17\\x11\\x12\\x19(\\t\\a\\a\\x1a&\\x15\\x1b\\xfe\\xd0\\x19(\\t\\a\\a\\x1e*\\x01\\x16\\x1b*\\x1e\\x01x\\x1b%\\x1b\\x15&\\x1a\\x06\\b\\t(\\x19\\x12\\x11\\x17\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x01\\xe0\\x01\\x80\\x00+\\x005\\x00H\\x00Y\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&=\\x0146?\\x02>\\x03;\\x012\\x16\\x1f\\x01%\\a!'.\\x01+\\x01\\\"\\x06\\a:\\x02>\\x0354&#\\\"\\x0e\\x02\\x15\\x14\\x16!264&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x03:\\x01\\x01\\xb7\\x12\\x17\\x10\\x13\\r \\r\\x13\\xff\\x00\\x13\\r \\r\\x13\\x10\\x17\\x12\\f\\x14\\x06\\x15\\x1b \\x11\\x80\\\"9\\f\\x14\\xfe\\xd9\\x14\\x01\\x00\\x14\\x05\\x19\\x0e\\x80\\x0e\\x199\\x02\\r\\x06\\v\\x06\\a\\x03\\\"\\x0e\\a\\f\\b\\x05\\x12\\x01N\\x0e\\x12\\x12\\x0e\\t\\x17\\x10\\x03\\a\\x06\\v\\x06\\r\\xec\\a!\\x140\\x18\\x126\\r\\x13\\x13\\r  \\r\\x13\\x13\\r6\\x12\\x180\\x14!\\a\\x1c2\\x0f\\x1b\\x12\\n& 2\\x1a22\\r\\x11\\x11\\xaf\\x01\\x02\\x03\\x06\\x04\\x0f!\\x05\\b\\f\\a\\x0e\\x12\\x12\\x1c\\x12\\x10\\x17\\t\\x04\\x06\\x03\\x02\\x01\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00#\\x00/\\x00K\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012%54+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x01\\xe0\\r\\x13\\x13\\r\\xfe@\\r\\x13\\x13\\r \\t\\a`\\a\\t\\x80\\t\\a`\\a\\t\\xff\\x00\\bp\\b\\bp\\b\\x01\\x00\\b(\\b\\x10\\b(\\b\\b(\\b\\x10\\b(\\b\\x01@\\x13\\r\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\r\\x130\\a\\t\\t\\a00\\a\\t\\t\\a0\\x88\\x10\\b\\b\\x10\\b\\b\\x10\\b(\\b\\b(\\b\\x10\\b(\\b\\b(\\x00\\x05\\xff\\xfe\\xff\\xbb\\x02\\x84\\x01\\xc2\\x00*\\x00f\\x00z\\x00\\x88\\x00\\x9a\\x00\\x007\\a\\x06\\x17\\a\\x06&?\\x016/\\x01.\\x01?\\x016/\\x01&6\\x1f\\x01\\x16?\\x01>\\x01\\x1f\\x01\\x16?\\x016\\x16\\x0f\\x01\\x06\\x0f\\x02\\x0e\\x01\\x05\\a\\x06\\a\\x06\\x0f\\x01\\x06\\a\\x06/\\x01.\\x01?\\x01'\\a\\x0e\\x01/\\x01&'&?\\x01&'&?\\x01676?\\x02676767676\\x1f\\x01\\x16\\x17\\x16\\x17\\x16\\x1f\\x02\\x16\\x17\\x16%&\\x0e\\x02\\a\\x06\\x1e\\x01\\x17\\x1e\\x03>\\x0276&\\x05'&'&/\\x01&#\\\"\\x06\\x0f\\x01\\x17\\x16&\\x06\\a\\x16\\x06\\x1e\\x04\\x17\\x16>\\x0276\\x8f\\f\\x05\\x02#\\x05\\v\\x02\\x0f\\x02\\nN\\x06\\x03\\x05A\\t\\a2\\x04\\a\\x06M\\n\\x01\\a\\x01\\f\\x04+\\x06\\a=\\x05\\v\\x02\\v\\x05\\x03 \\v\\x18%\\x01\\xe8\\r\\x04\\r\\x04\\x05\\x0e\\x02\\x04\\r\\x14\\x1f\\r\\r\\x03\\t\\xf8\\b\\x03\\x17\\r\\x1f\\x15\\x02\\x01\\x01\\x0e\\x02\\x02\\x05\\x05\\f\\b\\x1d\\t\\n\\x12 \\x05\\x06\\f\\x0f\\a\\b\\x0f\\x11\\x11\\x10{\\x11\\x0e\\x15\\x0e\\r\\x03\\a\\x03\\x10\\a\\a\\xfe}\\a\\r\\n\\b\\x02\\x02\\x04\\f\\t\\x02\\f\\a\\n\\a\\a\\x05\\x01\\x03\\x18\\x01\\x15\\x06\\x01\\x03\\t\\x16{\\x06\\a\\t\\x17\\x06 \\xacl\\x1c)\\x04\\x01\\x02\\b\\x03\\f\\x05\\r\\x02\\a\\r\\n\\b\\x01\\x04\\xe3.\\x10\\x13\\x1d\\x04\\a\\x06M\\n\\x01\\a\\x01\\f\\x04+\\x06\\a=\\x05\\v\\x02\\x0f\\x02\\nN\\x06\\x03\\x05A\\t\\a2\\x04\\a\\x068\\a\\x03+\\x0e\\a$\\x9d/\\x11\\f\\x04\\x034\\a\\x05\\x10\\x05\\b\\x04\\x17\\r\\x1eC\\x1f\\r\\r\\x03\\b\\x06\\x15\\x06\\a4\\x05\\x05\\x12\\x11.\\x1e\\f\\x04\\x01\\x18+\\a\\x06\\f\\a\\x04\\x03\\x05\\x01\\x01\\x05!\\x04\\t\\x0e\\x15\\x15\\x1a5\\x1e\\f\\x12\\x13d\\x02\\x02\\x06\\n\\a\\t\\x10\\v\\x03\\x01\\x03\\x02\\x02\\x01\\x01\\x05\\x04\\x0e)\\x196\\a\\a\\x15\\x05!\\x02\\v\\b+.O\\b\\x18\\x0e\\x04\\x06\\x06\\x03\\x04\\x01\\x03\\x01\\x02\\x02\\x06\\n\\a\\x0e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00$\\x00,\\x000\\x004\\x00<\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&=\\x0146?\\x01>\\x01;\\x012\\x16\\x1f\\x01\\x04264&\\\"\\x06\\x1475#\\a;\\x01'#\\x12264&\\\"\\x06\\x14\\x02 (8\\t\\a08P8\\x808P80\\a\\t\\x1b\\x150\\a!\\x13\\xd6\\r\\x1d\\bm\\xfe|(\\x1c\\x1c(\\x1cxM&\\xa3\\xa6MY\\xb4(\\x1c\\x1c(\\x1c\\x01\\x008(P\\a\\t(88((88(\\t\\ap\\x16\\\"\\x06z\\x12\\x16\\x0e\\n\\x88\\xf0\\x1c(\\x1c\\x1c(\\xd4```\\xfe\\xb0\\x1c(\\x1c\\x1c(\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x0f\\x00Q\\x00h\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x0132\\x16\\x1d\\x01\\x14\\x06\\a\\x15\\x14\\x06'.\\x01=\\x014&+\\x01\\x15!\\x1146;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x167>\\x01=\\x01.\\x01=\\x0146;\\x015462\\x16\\x1d\\x0135462\\x16\\x15\\x056&+\\x0176&+\\x01\\\"\\x0f\\x01\\x06\\x16;\\x01\\a\\x06\\x16327\\x01P\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x02\\x10\\x10\\a\\t\\x1f\\x192\\\"\\x1d'\\x17\\x11\\b\\xfe\\xe0%\\x1b\\xa0\\x1b%\\b$4\\x14\\r\\n\\r\\x19\\x1f\\t\\a\\x10\\t\\x0e\\t \\t\\x0e\\t\\xfe\\xe4\\x04\\a\\a:\\f\\x01\\a\\x06D\\v\\x01\\x10\\x01\\b\\x05;\\x17\\x01\\a\\x06\\a\\x03\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\x1a*\\bx!.\\x03\\x03.\\x1e\\x19\\x11\\x17p\\x01`\\x1b%%\\x1b\\xc04$\\x1c\\r\\x11\\x02\\x02\\x11\\vv\\b*\\x1a \\a\\t0\\a\\t\\t\\a00\\a\\t\\t\\a`\\x05\\v3\\x05\\b\\tk\\x05\\aS\\x05\\b\\x05\\x00\\x02\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00'\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x016/\\x01&\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x013\\x15\\x14\\x167\\x01\\xf7\\t\\t\\xe0\\n\\x1a\\n\\xe0\\t\\t\\xe0\\n\\x1a\\n{\\x06\\x06U\\x03\\np\\r\\x13\\b \\b`\\n\\x03\\xd7\\n\\x1a\\n\\xe0\\t\\t\\xe0\\n\\x1a\\n\\xe0\\t\\t\\xed\\x06\\x06N\\x03\\x04\\x056\\x13\\rP\\b\\b@6\\x05\\x04\\x03\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00'\\x008\\x00@\\x00H\\x00P\\x00X\\x00`\\x00\\x00%2\\x16\\x14\\x06#\\\"'#\\x06#\\\"&5475&54632\\x173632\\x16\\x14\\x06#0#\\a\\x16\\x14\\a\\x172\\x05\\x16\\x173'\\\"1\\\"&46;\\x017#\\x06\\a\\x16\\x14\\x16264&\\\"64&\\\"\\x06\\x14\\x162$\\\"\\x06\\x14\\x16264\\x02\\x14\\x16264&\\\"\\x04264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b%\\x12\\xd2\\x12%\\x1b%  %\\x1b%\\x12\\xd2\\x12%\\x1b%%\\x1b\\x01'\\b\\b'\\x01\\xfe\\xe0\\x0f\\b\\xd0&\\x01\\x1b%%\\x1b\\x01&\\xd0\\b\\x0f\\xb0\\t\\x0e\\t\\t\\x0ew\\t\\x0e\\t\\t\\x0e\\xfe\\xc0\\x0e\\t\\t\\x0e\\t \\t\\x0e\\t\\t\\x0e\\x01@\\x0e\\t\\t\\x0e\\t`%6%  %\\x1b%\\x12\\xd2\\x12%\\x1b%  %6%A\\x0f \\x0fA\\t\\b\\x0f@%6%@\\x0f\\bb\\x0e\\t\\t\\x0e\\t\\x89\\x0e\\t\\t\\x0e\\t \\t\\x0e\\t\\t\\x0e\\xfe\\xc0\\x0e\\t\\t\\x0e\\t \\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x007\\x00A\\x00E\\x00\\x00%'&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x17\\x16\\x0f\\x01\\x067&?\\x01'&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06'\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x14\\x16;\\x01267\\x13\\x11!\\x11463!2\\x16\\x03\\x11!\\x11\\x00\\xff:\\f\\f:\\v\\f\\v\\v\\v$$\\v\\v\\v\\fU\\v\\v$$\\v\\v\\v\\f\\v:\\f\\f:\\v\\f\\x01\\x06\\a\\t&\\x1a\\xfe\\x00\\x1a&\\t\\a\\xef\\x14\\r=\\x0e\\x12\\x01\\xc2\\xfe\\x00\\x1c\\x14\\x01\\xa0\\x14\\x1c@\\xfe\\x80\\xba;\\v\\v;\\v\\v\\f\\v\\v$$\\v\\v\\f\\v\\x17\\v\\v$$\\v\\v\\f\\v\\v;\\v\\v;\\v\\v\\x9a\\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\v\\x15\\x11\\x0f\\x01p\\xfe\\xb0\\x01P\\x14\\x1c\\x1c\\xfe\\xdc\\x01\\x00\\xff\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xbd\\x02\\x01\\x01\\xc1\\x00\\x0e\\x00\\x1f\\x000\\x00\\x00\\x13&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06'%\\x16\\x14\\x0f\\x01\\x06/\\x01&4?\\x01\\x17\\x162?\\x01\\x17\\x16\\x14\\x0f\\x01\\x06/\\x01&4?\\x01\\x17\\x162?\\x01\\f\\f\\f\\xe9\\x05\\f\\x05\\xe9\\f\\f\\xe9\\v\\v\\x00\\xff\\f\\f\\xe9\\v\\v\\xe9\\f\\f;\\xa1\\f\\x18\\f\\xa2:\\f\\f\\xe9\\v\\v\\xe9\\f\\f:\\xa2\\f\\x18\\f\\xa2\\x01,\\x06\\x1c\\x06j\\x02\\x02j\\x06\\x1c\\x06j\\x05\\x05\\x12\\x06\\x1d\\x05j\\x05\\x05j\\x05\\x1d\\x06\\x1aI\\x05\\x05I\\x9a\\x06\\x1c\\x06j\\x05\\x05j\\x06\\x1c\\x06\\x1aI\\x05\\x05I\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00!\\x00;\\x00G\\x00\\x007\\\"&=\\x01463546;\\x012\\x16\\x1d\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\x052\\x16\\x15\\x14\\x06#!\\\"&5463!264&#52\\x16\\x15\\x14\\a%\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\xa0\\r\\x13\\x13\\r\\t\\a@\\a\\t\\r\\x13\\x13\\r\\f\\t\\a(\\a\\t\\x01$\\x14\\x1c\\t\\a\\xfe \\a\\t\\x1c\\x14\\x01\\x105KK5Oq1\\xfe\\x99\\b\\b\\xd0\\b\\b\\x80\\x13\\r\\xe0\\r\\x13\\x10\\a\\t\\t\\a\\x10\\x13\\r\\xe0\\r\\x13\\x10\\a\\t\\t\\a\\x10\\x80\\x1c\\x14\\a\\t\\t\\a\\x14\\x1cKjK@qOI7 \\b\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x002\\x006\\x00A\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06#!\\\"&=\\x01'.\\x01=\\x014>\\x0132\\x1f\\x0135#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x1f\\x01\\x055'\\x15\\x0546?\\x01\\x16\\x15\\x14\\x06\\\"&\\x02v\\x04\\x06\\x02\\xd5\\t\\r\\xfe\\xed\\r\\x13F\\v\\x0f\\t\\x0e\\t\\x03\\x03\\x8a88\\a\\t\\t\\a\\xa0\\a\\t\\t\\a89\\x0f\\x0e2\\xfe\\xc00\\x01\\xf5\\x16\\n\\v+\\x19$\\x19\\x01 \\x01\\x05\\x04\\x12\\x03\\x03\\xd6\\n\\x13\\r/\\f\\x02\\x12\\f_\\b\\x0f\\t\\x01\\x190\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t0\\a\\x19A?\\b>]\\n+\\x10\\x10>\\x17\\x12\\x19\\x19\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x000\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467&546;\\x01&546;\\x012654'632\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\x01\\xc3\\x1a#*\\x1e\\xfe\\x90\\x1e*#\\x1a\\x1d*\\x1e\\x0e\\x16%\\x1b\\x10!/\\x0f\\n\\x05(8\\x06\\x06\\x1b%\\x16\\x0e\\x1e*O\\x04(\\x1b\\x1e**\\x1e\\x1b(\\x04\\x16#\\x1e*\\x13\\x1d\\x1b%/!\\x19\\x15\\x028(\\x0f\\x11%\\x1b\\x1d\\x13*\\x1e#\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x06\\x01\\xc1\\x00\\a\\x00\\x17\\x00'\\x00\\x0062\\x16\\x14\\x06\\\"&4%\\x16\\x06+\\x01\\\".\\x02?\\x01>\\x012\\x16\\x17\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463KjKKjK\\x01\\xfb\\v\\x16\\x15\\xd6\\n\\x12\\b\\x02\\x06k\\x04\\x13\\x12\\x13\\x04P\\r\\x13\\x13\\r\\xa0\\r\\x13\\x13\\r\\xc0KjKKj\\x82\\x12%\\n\\x10\\x14\\t\\xb7\\a\\v\\v\\a\\xfe\\xf2\\x13\\r\\xa0\\r\\x13\\x13\\r\\xa0\\r\\x13\\x00\\x01\\xff\\xfe\\xff\\xc0\\x01\\xe2\\x01\\xc0\\x007\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x1f\\x01546;\\x012\\x1e\\x02\\x1d\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xd8\\x06\\x03\\x03 \\x03\\r\\x06\\x88\\t\\a@\\a\\t\\x88\\x06\\r\\x03 \\x03\\x03\\x06\\x88\\x88\\x06\\x03\\x03 \\x03\\r\\x06\\x88\\t\\a@\\x03\\x06\\x04\\x03\\x88\\x06\\r\\x03 \\x03\\x03\\x06\\x88r\\x04\\r\\x058\\x05\\x04\\x03O\\x9d\\a\\t\\t\\a\\x9dO\\x03\\x04\\x058\\x05\\r\\x04NN\\x04\\r\\x058\\x05\\x04\\x03O\\x9d\\a\\t\\x03\\x04\\x06\\x03\\x9dO\\x03\\x04\\x058\\x05\\r\\x04N\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1d\\x00+\\x009\\x00G\\x00U\\x00c\\x00q\\x00\\u007f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x02 (88(\\xfe@(88(@\\t\\a@\\a\\t\\x1c(\\x1c\\x1c(\\x1c\\t\\a@\\a\\t\\x90\\t\\aP\\a\\t!.!!.!\\t\\aP\\a\\t\\x90\\t\\aP\\a\\t!.!!.!\\t\\aP\\a\\t\\x80\\t\\a@\\a\\t\\x1c(\\x1c\\x1c(\\x1c\\t\\a@\\a\\t\\x01\\xc08(\\xfe\\xc0(88(\\x01@(8\\xfe\\x90@\\a\\t\\t\\a@\\x14\\x1c\\x1c\\x94@\\x14\\x1c\\x1c\\x14@\\a\\t\\tq8\\a\\t\\t\\a8\\x17!!\\x8fX\\x17!!\\x17X\\a\\t\\tq8\\a\\t\\t\\a8\\x17!!\\x8fX\\x17!!\\x17X\\a\\t\\ty@\\a\\t\\t\\a@\\x14\\x1c\\x1c\\x94@\\x14\\x1c\\x1c\\x14@\\a\\t\\t\\x00\\x00\\x00\\x00\\n\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1d\\x00+\\x009\\x00G\\x00W\\x00e\\x00s\\x00\\x81\\x00\\x8f\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626\\x02 (8%\\x1b\\xfe\\x00\\x1b%8(@\\x1c(\\x1c\\t\\a@\\a\\t\\x90!.!\\t\\aP\\a\\t\\x90!.!\\t\\aP\\a\\t\\x80\\x1c(\\x1c\\t\\a@\\a\\t\\x1b%8(\\xfe@(8%\\x1b`\\t\\a@\\a\\t\\x1c(\\x1c\\x90\\t\\aP\\a\\t!.!\\x90\\t\\aP\\a\\t!.!\\x80\\t\\a@\\a\\t\\x1c(\\x1c\\x01\\xc08(@\\x1b%%\\x1b@(8\\xb0 \\x14\\x1c\\x1c\\x14 \\a\\t\\t\\a8\\x17!!\\x178\\a\\t\\t\\a8\\x17!!\\x178\\a\\t\\t\\a \\x14\\x1c\\x1c\\x14 \\a\\t\\t\\x89%\\x1b (88( \\x1b%P \\a\\t\\t\\a \\x14\\x1c\\x1c\\x1c\\x18\\a\\t\\t\\a\\x18\\x17!!\\x17\\x18\\a\\t\\t\\a\\x18\\x17!!\\x0f \\a\\t\\t\\a \\x14\\x1c\\x1c\\x00\\x00\\x00\\x00\\a\\xff\\xfd\\xff\\xbb\\x02\\x82\\x01\\xc0\\x00\\x06\\x00(\\x006\\x00H\\x00T\\x00\\\\\\x00j\\x00\\x007\\a\\x06\\a&>\\x01\\a\\x1e\\x01\\x17\\x16\\x17\\x06#\\\".\\x01/\\x01&67632\\x17\\x16\\x17\\x06\\a\\x06\\a*\\x01#\\\"\\a0\\x14\\x15\\x17\\x16\\x0e\\x01\\a\\x06&'&5\\x1667\\x16%\\x1e\\x02\\x0f\\x01\\x0e\\x02.\\x02?\\x01>\\x0176\\a\\x06\\x156\\x16\\x17676.\\x01\\x06\\x1e\\x0167\\x06&'\\x067676.\\x01'&\\x06\\a\\x06\\x176\\x16\\xcf\\b \\x12\\x01\\x0e\\x1b]\\x04F&\\r\\x1a\\a\\x03#YJ\\x06 \\x04\\x12\\x12gu$$\\x1a\\x10 \\x19\\x1e\\x16\\x01\\x03\\x01dY\\x81\\x02\\a\\x10\\v\\x10\\x1c\\x02\\x01\\x12,\\r\\x03\\x01\\x9f\\f\\x10\\x06\\x02 \\aSaAO6\\a \\x04\\x1d\\x15\\x9b\\x88\\x01\\x12,\\r\\x03\\x01\\x03\\x13 \\x1c\\x1bSF\\n.\\x83\\\"\\x03\\xde\\x03\\x01\\x02\\a\\x10\\v\\x10\\x1c\\x02\\x01\\x01\\x11,\\xcb+\\v\\x14\\x10\\x1e\\x17-\\x182\\v# \\x01$D&\\xb3\\x15'\\n9\\x06\\x04\\x17\\x01\\x04\\x05\\x151\\x01\\x01+\\n\\x14\\x0e\\x02\\x03\\x13\\x11\\x05\\a\\t\\a\\x0f\\x06\\x1f\\a\\x15\\x1c\\r\\xb4)H!\\vA`)\\xb3\\x15\\x1e\\x03\\x19\\xad\\x05\\a\\t\\a\\x0f\\x06\\x05\\x11\\x1b\\x06\\x13\\xd0\\x0f,'\\x1c\\x17*(O\\x06\\x05\\v\\x14\\x0e\\x01\\x03\\x13\\x10\\x05\\a\\t\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00.\\x006\\x00>\\x00F\\x00\\x00\\x01\\x14\\x0e\\x03\\a\\x153\\x14\\x0e\\x01\\a\\x0e\\x01\\\"&'.\\x01535.\\x01535.\\x0153546;\\x012\\x16\\x1d\\x013\\x14\\x0e\\x01\\a\\x15\\x06264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x06\\f\\x0f\\x14\\v@\\x11\\x1f\\x13\\tF\\\\F\\t\\x1e%@\\x1c$@\\x1c$@\\x13\\r\\xc0\\r\\x13@\\x10\\x1d\\x13\\x94(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x01\\x00\\f\\x18\\x14\\x11\\r\\x04&\\x15%\\x1b\\x06,99,\\t2 &\\n1\\x1f&\\n1\\x1f \\r\\x13\\x13\\r \\x14%\\x1b\\x06&\\xe0\\x1c(\\x1c\\x1c(d\\x1c(\\x1c\\x1c(d\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x001\\x005\\x00\\x87\\x00\\x8f\\x00\\xe0\\x00\\xe8\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01.\\x02#\\\"\\x06\\a#.\\x01\\\"\\x06\\a#\\\"&=\\x0146;\\x01546;\\x01546;\\x012\\x16\\x1f\\x0132\\x16\\x1d\\x01%3'#\\x012\\x1e\\x02\\x1d\\x01\\x14\\x06+\\x01\\x06\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01&'\\a\\x06/\\x01&?\\x01&'#\\\"&=\\x0146;\\x0167'&?\\x016\\x1f\\x0167546;\\x012\\x16\\x1d\\x01\\x16\\x1776\\x1f\\x01\\x16\\x0f\\x01\\x16\\x17\\x06264&\\\"\\x06\\x14'2\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\x06\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01&'\\a\\x06/\\x01&?\\x01&'#\\\"&=\\x0146;\\x0167'&?\\x016\\x1f\\x0167546;\\x012\\x16\\x1d\\x01\\x16\\x1776\\x1f\\x01\\x16\\x0f\\x01\\x16\\x17\\x06264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\x11\\x0e'0\\x1a&C\\x16B\\x16CLC\\x16\\x11\\a\\t\\t\\a\\x10\\t\\a\\xb0\\x13\\rq\\r\\x1d\\bSJ\\r\\x13\\xfe\\xc0\\x843Q\\x010\\x03\\x06\\x04\\x03\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\u007f(\\x1c\\x1c(\\x1c\\xa0\\a\\t\\x04\\b\\x04\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\u007f(\\x1c\\x1c(\\x1c\\xe0\\t\\a \\a\\t\\x14\\x1c\\x10\\\"\\x1e\\x1e\\\"\\\"\\x1e\\t\\a \\a\\tP\\a\\t`\\r\\x13\\x0e\\nh\\x13\\r@`@\\xfe\\xe0\\x03\\x04\\x06\\x03 \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\vP\\x1c(\\x1c\\x1c(4\\t\\a \\x04\\b\\x04\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x04\\x05\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\vP\\x1c(\\x1c\\x1c(\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x007\\x00;\\x00C\\x00K\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547#\\\"&=\\x0146;\\x01546;\\x01546;\\x012\\x16\\x1f\\x0132\\x16\\x1d\\x01%\\x153'\\x02264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a2\\x02B\\\\B\\x02D\\x02B\\\\B\\x022\\a\\t\\t\\a\\x10\\x13\\r\\xa0\\x13\\rq\\r\\x1d\\bm0\\r\\x13\\xfe\\xc0\\x9eM\\xd5(\\x1c\\x1c(\\x1c\\x01<(\\x1c\\x1c(\\x1c\\xa0\\t\\a \\a\\t\\v\\x05.BB.\\x05\\v\\v\\x05.BB.\\x05\\v\\t\\a \\a\\t@\\r\\x13\\x80\\r\\x13\\x0e\\n\\x88\\x13\\r@\\xc0``\\xfe\\xc0\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x02\\x00\\n\\x00\\x1a\\x003\\x00K\\x00\\x00?\\x01\\x1762\\x16\\x14\\x06\\\"&472\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1326/\\x01.\\x01+\\x01\\\"\\x0e\\x01\\x0f\\x01\\x06\\x16;\\x012?\\x013\\x17\\x163754&+\\x01\\\"\\x06\\x1d\\x01&#\\\"\\x06\\x14\\x16327\\x16;\\x0126\\x9e\\x12\\x12\\x94\\x14\\x0e\\x0e\\x14\\x0e\\x88\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xcb\\b\\t\\x026\\x02\\x0e\\a\\x1a\\x05\\t\\a\\x026\\x02\\t\\b\\x11\\f\\x03\\bF\\b\\x03\\f\\xbe\\t\\a\\x10\\a\\t\\f\\f\\x1e**\\x1e\\x0f\\r\\x05\\a\\x10\\a\\t\\xb055\\x10\\x0e\\x14\\x0e\\x0e\\x14\\xce\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xe0\\r\\b\\x9b\\a\\t\\x04\\b\\x04\\x9b\\b\\r\\v\\x15\\x15\\v\\x10\\xa0\\a\\t\\t\\a$\\x04*<*\\x06\\x06\\t\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00#\\x00/\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01&5462\\x16\\x15\\x14\\a&\\\"\\x06\\x15\\x14\\x16\\x17>\\x0254\\x01(\\n\\x0e\\x0e\\n`\\x0e\\n \\n\\x0e`\\n\\x0e\\x0e\\n-%JlJ%E,\\x1a\\x1e\\x12\\v\\x15\\x10\\xc0\\x0e\\n \\n\\x0e\\x98\\n\\x0e\\x0e\\n\\x98\\x0e\\n \\n\\x0e;5AOOA5;\\xb0\\\"\\x1e\\x189\\x14\\f!(\\x10\\x1e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x00:\\x00B\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x05\\x15\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326=\\x014&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x135!\\\"\\x06\\x14\\x163\\x01\\xc0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xfe\\xd0\\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t\\xed\\xfe\\xe3\\r\\x13\\x12\\x0eZ\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1av \\a\\tp\\a\\t\\t\\ap\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\xfe\\xc9@\\x12\\x1c\\x12\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x17\\x00/\\x003\\x00B\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x1754+\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\\"\\a!546;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01&'5#\\x15\\x17\\x06\\x15\\x14\\x17!\\\"&=\\x013\\x15\\x14\\x163\\x01\\xb4xTTxT\\xd0\\n&\\n\\f\\n\\n<\\n@7.\\xfeu\\x1d\\x13P\\x1d\\x13\\xa0\\x13\\x1dP\\x13\\x1d\\t\\xb7\\x80\\x87\\a\\x13\\xfe\\xdd\\x13\\x1d\\xc0\\t\\a\\xe0TxTTxB\\f\\n6\\n\\nL\\n\\xc0 P\\x13\\x1d0\\x13\\x1d\\x1d\\x130\\x1d\\x131\\x01`  \\xe0\\x18\\x18*&\\x1d\\x13\\x900\\a\\t\\x00\\x00\\x00\\x00\\f\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00-\\x009\\x00E\\x00Q\\x00]\\x00i\\x00u\\x00\\x81\\x00\\x8d\\x00\\x99\\x00\\xa5\\x00\\xb1\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02h\\n\\x0e\\x13\\r\\xfd\\xc0\\r\\x13\\x0e\\n(\\t\\a\\x10\\a\\t@\\t\\a\\x10\\a\\t@\\x0e\\n\\x90\\n\\x0e\\xfe\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x00\\x0e\\n\\xfe\\xf8\\r\\x13\\x13\\r\\x01h\\n\\x0eP\\a\\t\\t\\aPP\\a\\t\\t\\aPH\\n\\x0e\\x0e\\n\\xa8\\xd4(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\xb4(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\fT(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\xfe\\xec(\\f\\f(\\fl(\\f\\f(\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x00T\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"547>\\x027&54\\x05>\\x01'.\\x01/\\x01&54;\\x022\\x17\\x16?\\x016&'&'54&+\\x01\\\"\\x06\\x1d\\x01\\x0e\\x02\\x17\\x1e\\x01\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"'&\\x0f\\x01\\x06\\x16\\x17\\x16\\x17\\x15\\x14\\x16;\\x01265\\x96Ԗ\\x96j83AL\\b\\x02\\x05\\x0f\\x1d\\x069\\x01\\x18\\x17\\x1d\\x03\\x02\\x18\\x112\\x06\\t \\x01\\x05\\x05\\b\\x06\\x11\\x04\\x01\\x04\\x0e\\x12\\t\\a\\x10\\a\\t\\x0f\\x18\\f\\x02\\x02\\x18\\x112\\x06\\t \\x06\\x05\\b\\x06\\x11\\x04\\x01\\x04\\x0e\\x12\\t\\a\\x10\\a\\t\\x01\\xa0z\\xacz\\x133\\b\\x03\\x03\\x04\\x132\\x169JV\\xb4\\x02%\\x18\\x11\\x19\\x05\\x0f\\x01\\a\\b\\x02\\x04\\x06\\x11\\x04\\f\\x03\\t\\x02\\x12\\a\\t\\t\\a\\x12\\x01\\x12\\x1c\\x10\\x11\\x19\\x05\\x0f\\x01\\a\\b\\x02\\x04\\x06\\x11\\x04\\f\\x03\\t\\x02\\x12\\a\\t\\t\\a\\x00\\x03\\x00\\x00\\xff\\xe0\\x02B\\x01\\xa0\\x00\\x12\\x00O\\x00g\\x00\\x00\\x00\\x14\\x06#\\\"'\\x06#\\\"54767&5462\\x03\\x14;\\x012=\\x01>\\x0154.\\x02/\\x01&54>\\x01;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x05\\x16\\x17\\x16\\x06#\\\"'\\x06#\\\"&'\\x1632654'\\x1e\\x01\\x15\\x14\\x01\\xa0zV<3+.\\b\\x02\\x16\\x0e&z\\xacf\\b\\x10\\b\\x12\\x19\\x05\\b\\f\\a-\\t\\x03\\x06\\x03\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\x01Z\\x0e\\x16\\x03\\x04\\x05.+3<@h\\x18\\x12\\x0ec\\x8d\\x019H\\x01B\\x84^\\x19\\x19\\b\\x03\\x03\\x17\\x1f)3B^\\xff\\x00\\b\\b\\x10\\x01\\x1a\\x12\\b\\x0e\\v\\t\\x02\\r\\x03\\n\\x03\\x06\\x04\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x10\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x8c\\x1f\\x17\\x04\\n\\x19\\x196,\\x02qO\\n\\n\\x12P23\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00#\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x01`\\r\\x13\\x13\\r`\\x13\\r@\\r\\x13`\\r\\x13\\x13\\r`\\x13\\r@\\r\\x13\\x01@\\x13\\r@\\r\\x13\\xe0\\r\\x13\\x13\\r\\xe0\\x13\\r@\\r\\x13`\\r\\x13\\x13\\r`\\x00\\x00\\x00\\x00\\n\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00W\\x00]\\x00c\\x00i\\x00o\\x00u\\x00}\\x00\\x83\\x00\\x89\\x00\\x8f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#'\\x06\\a\\x17\\x1e\\x01\\x0f\\x01\\x06\\\"/\\x01\\x06\\a\\x17\\x14\\x06+\\x01\\\"&57&'\\a\\x06\\\"/\\x01&4?\\x01&'\\a\\\"&=\\x01463\\x1767'&4?\\x0162\\x1f\\x0167'46;\\x012\\x16\\x15\\a\\x16\\x17762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x16\\x17'\\a\\x16\\x177&'\\x06\\a\\x1767#\\x06\\a\\x1767\\a\\x16\\x177&'\\x177&'\\a\\x166264&\\\"\\x06\\x14\\x1767'\\x06\\a367'\\x06\\a?\\x01&'\\a\\x16\\x01\\xef\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x01\\x05\\x16\\x04\\x0e\\x05\\v/;\\x01\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\x11\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x04\\x16\\x04\\x0e\\x05\\v/;\\x01\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\xc4\\x04\\x0f\\r+\\x1eY%\\x1e+\\r\\x0fl\\x15\\x06@\\x03\\tL\\x06\\x151\\t\\x03C\\x04\\x0f\\r+\\x1e2\\x1a\\x13\\x13\\x1a\\x13:%\\x1e+\\r\\x0fl\\x15\\x06@\\x03\\t\\f@\\x06\\x151\\t\\xdf\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\x11\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x04\\x16\\x04\\x0e\\x05\\v/;\\x01\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\x11\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x04\\x16\\x04\\x0e\\x05\\v/;\\u007f@\\x03\\t1\\x15\\x06\\x06\\x151\\t\\x03\\x1e%\\x04\\x0f\\rL%\\x1e+\\r\\x0f\\x87@\\x03\\t1\\x15w\\x13\\x1a\\x13\\x13\\x1a\\x90\\x06\\x151\\t\\x03\\x1e%\\x04\\x0f\\rH\\x04%\\x1e+\\r\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x0f\\x00\\x1f\\x00-\\x00T\\x00\\x007\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&\\x162?\\x01\\x15\\x14\\x06#!\\\"&=\\x01\\x17%\\x16\\x1d\\x01\\a5!\\x15'54767546;\\x01>\\x0532\\x1e\\x04\\x1732\\x16\\x1d\\x01\\x16\\xb0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xb0\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\tF4\\x15\\xd1\\x1c\\x14\\xfe`\\x14\\x1c\\xd1\\x01\\x1d\\x12`\\xfe\\xc0`\\x12\\x10\\x0e\\x1c\\x14N\\x01\\a\\x01\\x1c\\x0e\\x17\\b\\b\\x17\\x0e\\x1c\\x01\\a\\x01N\\x14\\x1c\\x0e\\xe8\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\tP\\x10\\a\\t\\t\\a\\x10\\a\\t\\tr\\x0f\\x97\\xd5\\x14\\x1c\\x1c\\x14\\u0557\\xef\\x0e\\x18\\nF\\xb9\\xb9F\\n\\x18\\x0e\\r\\n,\\x14\\x1c\\x01\\x05\\x01\\x15\\t\\v\\v\\t\\x15\\x01\\x05\\x01\\x1c\\x14,\\v\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x11\\x00!\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1f\\x0154&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xa0@`\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c@\\xa8\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x11\\x005\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1f\\x0154&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xa0@`\\t\\aH\\t\\a\\x10\\a\\tH\\a\\t\\t\\aH\\t\\a\\x10\\a\\tH\\a\\t\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c@\\xa8\\x10\\a\\tH\\a\\t\\t\\aH\\t\\a\\x10\\a\\tH\\a\\t\\t\\aH\\t\\x00\\x00\\x03\\xff\\xfa\\xff\\xbc\\x02\\x80\\x01\\xc0\\x00\\x14\\x00\\x1c\\x00Z\\x00\\x00\\x01\\x0e\\x01\\x15\\x14\\x17\\x0e\\x01/\\x01&=\\x01'&63!2\\x16\\a\\x062\\x16\\x14\\x06\\\"&4\\x17>\\x0154&/\\x01&546;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\\"\\x0e\\x02\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x0e\\x02+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x15\\x14;\\x0125\\x01\\xb1?R;\\b#\\x10P\\x10\\xb7\\x0f\\x11\\x15\\x01\\xe0\\x15\\x11\\x0fy\\x84^^\\x84^\\xb0\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\t\\x10\\v\\a\\x12\\x0e-\\t\\x02\\x03\\x05\\x02\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x01\\x1a\\x10gCQ9\\x10\\t\\v<\\f\\x14\\x9c\\xca\\x0f''\\x0f\\x8a^\\x84^^\\x84\\x92\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x10\\b\\f\\x10\\t\\x0f\\x18\\x05\\r\\x03\\n\\x02\\x05\\x04\\x02\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00e\\x00o\\x00y\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x015#5#5#\\x153\\x153\\x15#54&+\\x01\\\"\\x06\\x1d\\x01#53535#\\x15#\\x15#\\x15#\\\"&=\\x0146;\\x01546;\\x01546;\\x015462\\x16\\x1d\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x0132\\x16\\x1d\\x0132\\x16\\x1d\\x01'\\x15354&+\\x01\\\"\\x06\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x01\\xf0\\a\\t\\t\\aP     P\\t\\a@\\a\\tP     P\\a\\t\\t\\a\\x10\\t\\a\\x10\\t\\a\\x10\\t\\x0e\\t@\\t\\x0e\\t@\\t\\x0e\\t@\\t\\x0e\\t\\x10\\a\\t\\x10\\a\\t\\xf80\\t\\a\\x10\\a\\t8\\t\\a \\a\\t`\\t\\a\\x80\\a\\t\\xa0\\x80``\\x80\\xa0P\\a\\t\\t\\aP\\xa0\\x80``\\x80\\xa0\\t\\a\\x80\\a\\tp\\a\\tP\\a\\tp\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\ap\\t\\aP\\t\\ap\\xb000\\a\\t\\t\\xb7@\\a\\t\\t\\a@\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x001\\x00?\\x00G\\x00\\x00%\\x16\\x15\\x14\\x0f\\x01\\x06\\\"/\\x01&5476;\\x015462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x0132\\x0426?\\x01.\\x02\\\"\\x06\\x0f\\x01\\x1e\\x0162\\x16\\x14\\x06\\\"&4\\x01\\xfd\\x03\\tf8\\xb28f\\t\\x03\\b\\x15@\\x18 \\x18\\n\\x14\\n\\x18 \\x18\\n\\x14\\n\\x18 \\x18@\\x15\\xfe\\xf300\\f\\f\\x05\\x11200\\f\\f\\x05\\x11=\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x06\\a\\r\\tn<<n\\t\\r\\a\\x06\\x13\\xd0\\x10\\x18\\x18\\x10\\x86\\n\\n\\xae\\x10\\x18\\x18\\x10\\xae\\n\\n\\x86\\x10\\x18\\x18\\x10Ѐ \\x10\\x10\\a\\x15$ \\x10\\x10\\a\\x15<\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\xff\\xfd\\xff\\xc0\\x02\\x03\\x01\\xc0\\x002\\x00D\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\x17\\x14\\x06#\\\"/\\x01\\a\\x06#\\\"&57\\a\\\"#\\\"&?\\x01'&6?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x02'7'7\\a'\\a'\\x17\\a\\x17\\a7\\a7\\x17'\\x01\\xf0\\r\\x05\\fbK\\t\\x0e\\rl\\x04\\v\\b\\b\\x06DD\\x06\\b\\b\\v\\x04l\\x02\\x02\\f\\n\\bKb\\f\\x05\\rn*\\x05\\x14\\f^\\\"\\x04\\x1a\\x04\\\"^\\f\\x14\\x05*/$/5\\x14-\\x10\\x10-\\x145/$4\\x02!!\\x02\\xf5\\x01\\x1b\\x065S\\n\\x18\\x03\\x18q\\b\\v\\aYY\\a\\v\\bq\\x18\\x15\\nS5\\x06\\x1b\\x01\\x10h\\r\\x11\\a<k\\r\\rk<\\a\\x11\\rh}(\\x19\\b2\\x1d33\\x1d2\\b\\x19(\\f6**6\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\xff\\xc0\\x020\\x01\\xc0\\x00\\x85\\x00\\x00%\\x0e\\x01#\\\"#.\\x01'3'&'45473'>\\x017632\\x17\\x16\\x15\\x14\\a\\x06\\x15\\x14\\x17\\x16\\x15\\x14\\a\\x06\\x15\\x14\\x16\\x177\\a\\x06#\\\"'&54?\\x01'&4?\\x01'&5432\\x1f\\x01\\x134312\\x15\\x137632\\x16\\x15\\x14\\x0f\\x01\\x17\\x16\\x14\\x0f\\x01\\x17\\x16\\x15\\x14\\a\\x06#\\\"/\\x01\\x17>\\x017654.\\x01'&547654'&547632\\x17\\x1e\\x01\\x17\\a3\\x161\\x14\\x0f\\x01\\x02\\x18!\\x86Q\\x06\\aM\\u007f\\x1f(;\\x04\\x01\\x01/)\\t?$\\x04\\x05\\b\\x05\\x03\\x01\\n:\\a\\x06)9+\\x02\\x1b\\x02\\x02\\x04\\x02\\x02\\x01\\x14*\\a\\a*\\x14\\x01\\b\\x02\\x02\\x1e\\f\\b\\b\\v\\x1f\\x02\\x02\\x04\\x04\\x01\\x14*\\a\\a*\\x14\\x01\\x02\\x02\\x04\\x02\\x02\\x1b\\x02%5\\b\\x02\\v\\x13\\v\\x06\\a:\\n\\x01\\x03\\x04\\t\\x05\\x04$?\\t)/\\x01\\x05;`HX\\x04WE;\\x13\\x14\\x05\\x05\\n\\n)+_\\x18\\x03\\a\\x04\\x05\\x03\\x03\\x19\\x1aG+\\x05\\b\\a\\x05%7-D\\tA\\x12\\x01\\x02\\x02\\x04\\x02\\x02!\\t\\x01\\x0e\\x01\\t!\\x02\\x02\\b\\x01\\x15\\x01 \\b\\b\\xfe\\xe0\\x15\\x01\\x04\\x04\\x02\\x02!\\t\\x01\\x0e\\x01\\t!\\x02\\x02\\x04\\x02\\x02\\x01\\x12A\\a5%\\f\\r\\x0f# \\n\\x05\\a\\b\\x05+G\\x1b\\x18\\x03\\x03\\x05\\x04\\a\\x02\\x19`*)\\x11\\x1a\\x1a;\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x00\\x1e\\x00\\xa0\\x00\\x00%\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x11\\x14\\a!\\\"\\x06\\x14\\x163!\\x030\\x14\\x15\\x17\\x16\\x15\\x14#\\\"/\\x01\\x1e\\x01267\\a\\x06#1\\\"'&54?\\x01<\\x0114'\\a\\x06#\\\"54?\\x01.\\x02'\\x16\\x15\\x14\\x06\\a\\x16\\x15\\x14\\x0e\\x01\\a'\\x17\\x16312545'764/\\x017454#\\\"#\\a'4\\\"\\x15\\a'\\\"#\\\"\\x15\\x14\\x1f\\x01\\a\\x06\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x1632?\\x01\\a.\\x02547.\\x01547\\x0e\\x01\\a\\x17\\x16\\x15\\x14#\\\"/\\x01\\x06\\x01\\xb6\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1aC\\xfe\\xe3\\r\\x13\\x12\\x0e\\x01\\x1d\\xfd%\\x03\\b\\x03\\x02\\x18\\t=N=\\t\\x18\\x02\\x03\\x04\\x02\\x02\\x03%\\x05\\x15\\x03\\x03\\b\\x02\\x1b\\x04\\x10\\x12\\t\\n\\x0e\\n\\x10\\f\\x14\\f\\x02\\r\\x01\\x01\\x04\\t\\x12\\x03\\x03\\x12\\t\\x04\\x01\\x01\\x0e\\x05\\b\\x05\\f\\x01\\x01\\x04\\x01\\b\\x12\\x03\\x03\\x12\\b\\x01\\x03\\x01\\x01\\x01\\v\\x02\\f\\x14\\f\\x10\\n\\x0e\\n\\r\\x1b\\a\\x1b\\x02\\b\\x03\\x03\\x15\\x05F\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a\\xfe\\xb4\\x0f\\v\\x12\\x1c\\x12\\x01\\x10\\x01\\x01 \\x02\\x04\\b\\x02\\x15&11&\\x15\\x02\\x03\\x02\\x03\\x04\\x02 \\x01\\x01\\x0e\\x12\\x16\\x02\\b\\x03\\x03\\x1a\\t\\x13\\x11\\x04\\x0f\\x12\\r\\x1c\\b\\x11\\x16\\f\\x18\\x10\\x03#\\t\\x01\\x04\\x01\\x01\\x0f\\x03\\x01\\x06\\x01\\x04\\x0e\\x01\\x01\\x04\\np\\x04\\x04o\\t\\x04\\x01\\x01\\x0e\\x04\\x01\\x06\\x01\\x03\\x0f\\x01\\x01\\x01\\x03\\x01\\a!\\x03\\x10\\x18\\f\\x16\\x11\\b\\x1c\\r\\x12\\x0f\\a\\x1d\\r\\x1a\\x03\\x03\\b\\x02\\x16\\x12\\x00\\x00\\x06\\x00\\x00\\xff\\xbf\\x02A\\x01\\xc0\\x00\\x0f\\x00 \\x00.\\x00=\\x00K\\x00Y\\x00\\x00\\x01\\x16\\x1d\\x01%&\\a\\x05546?\\x0162\\x17\\a6\\x17\\x05\\x15\\x14\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01=\\x01\\x1754&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16?\\x016754&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1e\\x01376\\x17\\x15\\x14\\x1f\\x01\\x166=\\x014/\\x01&\\x06'\\x15\\x14\\x1f\\x01\\x166=\\x014/\\x01&\\x06\\x02*\\x16\\xfe\\xf7\\x17\\x17\\xfe\\xf7\\r\\t\\xec\\x0e \\x0e,\\x0e\\x0e\\x01\\x12\\x0e\\v\\xf2\\n\\x16\\n\\xf2\\v\\x0e\\x80\\x06\\x04P\\x06\\x06\\x04P\\x06\\x90\\x06\\x04`\\x06\\x03\\x05\\x02`\\x06\\xb0\\x06P\\x04\\x06\\x06P\\x04\\x06\\x90\\x06`\\x04\\x06\\x06`\\x04\\x06\\x01l\\a\\x171P\\a\\aP1\\n\\x11\\x03O\\x05\\x05m\\x04\\x04R\\xe5\\v\\x11\\x036\\x02\\x026\\x03\\x11\\v\\xe5\\\"\\x10\\x04\\x05\\x01\\x16\\x01\\x06\\x11\\x04\\x05\\x01\\x16\\x02-\\x11\\x04\\x05\\x02\\x1a\\x01\\x06\\x11\\x03\\x04\\x01\\x1a\\x02\\x11\\x10\\x06\\x02\\x16\\x01\\x05\\x04\\x11\\x06\\x01\\x16\\x01\\x05$\\x11\\x06\\x02\\x1a\\x01\\x05\\x04\\x11\\x06\\x01\\x1a\\x02\\x05\\x00\\x03\\xff\\xf3\\xff\\xbf\\x02\\v\\x01\\xc0\\x00n\\x00v\\x00~\\x00\\x00\\x01\\x1e\\x01\\a\\x06\\x0f\\x01\\x06/\\x01\\a\\x17612\\x16\\x15\\x14\\x0e\\x01#\\\".\\x025'\\x15\\x16\\x15\\x14\\x06\\\"&5475\\a\\x0e\\x01#\\\"&4630\\x177'\\a\\x06/\\x01&'&676\\x17\\x16\\a\\x06\\x15\\x14\\x16\\x1f\\x015'&?\\x01.\\x015467'&?\\x01\\x17\\x16\\x0f\\x01\\x1e\\x01\\x15\\x14\\x06\\a\\x17\\x16\\x0f\\x01\\x157>\\x0154'&5476\\a4'\\a\\x06\\x1f\\x016'\\x14\\x1776/\\x01\\x06\\x01\\xa082\\x10\\n\\x1f5\\b\\vP\\x1d/\\x05\\n\\x0e\\x06\\v\\a\\x04\\b\\a\\x04)\\x10\\x13\\x1a\\x13\\x10)\\x01\\r\\t\\n\\x0e\\x0e\\n\\x05/\\x1dP\\v\\b8\\x15\\n\\x19/<\\v\\t\\t\\a\\x19&!M,\\a\\x04\\b\\x1a\\x1f\\x1e\\x19\\x06\\x04\\b;;\\a\\x04\\x05\\x19\\x1e\\x1f\\x1a\\b\\x03\\x06,L\\\"&\\x19\\x03\\x04\\tU\\x1b\\b\\r\\r\\x06\\x1d\\x80\\x1d\\x05\\x0e\\x0e\\a\\x1b\\x01~\\x1es?'$=\\n\\x06*\\x14!\\x01\\x0e\\n\\a\\v\\x06\\x03\\x06\\a\\x05\\x1c\\x1e\\t\\x12\\r\\x13\\x13\\r\\x12\\t\\x1e\\x1c\\t\\f\\x0e\\x14\\x0e\\x01!\\x14*\\x06\\nA\\x18\\x19E\\x80 \\a\\t\\n\\n(/(F\\x166\\x14$\\a\\t\\x11\\x0f3\\x1f\\x1e3\\x0f\\v\\t\\a55\\a\\t\\v\\x0f3\\x1e\\x1f3\\x0f\\x11\\t\\a$\\x146\\x16F(/(\\x04\\x05\\x06\\x05\\tt \\x14\\x11&&\\f\\x13\\\"\\\"\\x13\\f&&\\x11\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x11\\x00'\\x007\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014?\\x0162\\x17\\a3\\x15353\\x15353\\x1532\\x16\\x1d\\x01!546;\\x01\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xf6\\n\\t\\a\\xfe \\a\\t\\n\\xeb\\x05\\f\\x05\\xcb@`@`@\\x10\\a\\t\\xfe@\\t\\a\\x10\\x01\\xb0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01d\\x04\\v%\\a\\t\\t\\a%\\v\\x04Z\\x02\\x02\\xbe\\xa0\\xa0\\xa0\\xa0\\xa0\\t\\a00\\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x05\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x0f\\x00'\\x009\\x00=\\x00L\\x00\\x00:\\x01767\\x15\\x14\\x06#!\\\"&=\\x01\\x16\\x1772\\x16\\x1d\\x01\\x0e\\x02\\a\\\"\\x06#\\\".\\x01'.\\x02'5463%2\\x16\\x1d\\x01\\x14\\x06+\\x015.\\x01+\\x015463\\x055#\\x15%\\x15#5463!2\\x16\\x1d\\x01#\\\"\\x06\\x8b*+ @\\x13\\r\\xff\\x00\\r\\x13@ \\xc0\\r\\x13\\a\\x17,)\\x02\\\"\\t\\a\\x11\\x14\\x01),\\x17\\a\\x13\\r\\x02\\x00\\r\\x13\\x13\\r\\xc0\\x03$\\x19`\\x13\\r\\x01 @\\xfe\\xe0`\\x13\\r\\x01@\\r\\x13\\xe0\\x1a& \\x160\\x86\\r\\x13\\x13\\r\\x860\\x16\\xa0\\x13\\r\\x13\\x06\\x12!\\x1e\\x16\\t\\x10\\x01\\x1d\\\"\\x12\\x05\\x10\\r\\x13`\\x13\\r\\xc0\\r\\x13\\x86\\x19! \\r\\x13\\x80@@` \\xc0\\r\\x13\\x13\\r`&\\x00\\f\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x13\\x00\\x1d\\x00'\\x002\\x00=\\x00H\\x00S\\x00^\\x00i\\x00t\\x00\\xb2\\x00\\x00\\x132\\x16\\x1d\\x01#546;\\x012\\x16\\x1d\\x01#546;\\x012\\x16\\x1d\\x01#546;\\x012\\x16\\x1d\\x01#54636\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x05546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16;\\x01546;\\x012\\x16\\x1d\\x01326\\x90\\a\\t@\\t\\a\\x80\\a\\t@\\t\\a\\xe0\\a\\t@\\t\\a\\x80\\a\\t@\\t\\a}\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b \\x02\\x00\\t\\a \\a\\t8(\\xc0\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0\\xc0(8\\t\\a \\a\\t\\x13\\r\\xc0\\t\\a \\a\\t\\xc0\\r\\x13\\x01@\\t\\a\\x90\\x90\\a\\t\\t\\a\\x90\\x90\\a\\t\\t\\a\\x90\\x90\\a\\t\\t\\a\\x90\\x90\\a\\t \\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\rӐ\\a\\t\\t\\a\\x90(8@\\t\\a \\a\\t\\t\\a \\a\\t@8(\\x90\\a\\t\\t\\a\\x90\\r\\x13\\xb0\\a\\t\\t\\a\\xb0\\x13\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x18\\x00C\\x00P\\x00\\x00\\x15\\x113\\x11\\x14\\x06+\\x01\\\"&%!&5476?\\x01\\x17\\x16\\x17\\x16\\x15\\x14\\x152\\x16\\x1d\\x01\\x14\\x06+\\x0154&\\\"\\x06\\x1d\\x01#54&/\\x01\\x0e\\x02\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#\\\"&=\\x01463\\x03\\x1e\\x04\\x1d\\x01#5467\\x80\\x13\\r@\\r\\x13\\x02C\\xfe\\x9a\\x1dXE+\\b\\b+EX\\r\\x13\\x13\\r \\x13\\x1a\\x13@\\x18\\f\\f\\x05\\x10\\x1b@\\x13\\x1a\\x13 \\r\\x13\\x13\\r\\x80\\x03\\b\\x16\\x11\\x0e\\x80 \\x10 \\x01@\\xfe\\xc0\\r\\x13\\x13\\xcd\\x1c\\x1fC8+5\\n\\n5+8C\\x1f<\\x13\\r\\x80\\r\\x13@\\r\\x13\\x13\\r@H\\x15$\\a\\b\\x03\\n&\\x15H@\\r\\x13\\x13\\r@\\x13\\r\\x80\\r\\x13\\x01@\\x01\\x05\\x12\\x15!\\x12  \\x1c0\\n\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02\\x00\\x01\\xc5\\x00\\x0e\\x00h\\x00\\x84\\x00\\x00\\x01'&4?\\x016\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\x162\\x16\\x1d\\x01\\x14\\x06#\\\".\\x025'546\\x17\\x16326=\\x014&\\\"\\x0f\\x01\\x06+\\x01\\x16\\x15\\x14\\x06#\\\".\\x02546\\x17\\x16\\x17\\x1e\\x033264&+\\x01&/\\x01&6;\\x01264&#\\\"\\a\\x06/\\x01&476\\x17\\x1e\\x02\\x17\\x16\\a32?\\x026\\x16\\x1d\\x01\\x14\\x0e\\x04#\\\".\\x05'&6\\x17\\x1e\\x036\\x01i\\x16\\x03\\x03\\x16\\a\\a\\x16\\x03\\x03\\x16\\x03\\b\\aR;;%\\x1b'\\x13\\n\\x01\\v\\x03#/\\v\\x15\\x15\\x1e\\n\\x19\\x1d)\\x16\\x12K5*A$\\x11\\v\\x04\\x01\\x03\\v\\x10!1 \\x1a&&\\x1a!\\t\\x04\\x10\\x04\\t\\t \\x14\\x1c\\x1c\\x14\\x11\\r\\n\\n\\x1a\\x06\\x05(8\\x16%\\x1a\\x05\\t\\x11/\\x0f\\n\\x18q\\b\\x12\\x03\\x05\\x0f\\x15%\\x16\\x10\\x1f\\x16\\x15\\r\\v\\x04\\x01\\x06\\x13\\v\\x04\\x0e&'5\\x01\\x83\\x16\\x03\\b\\x03\\x16\\a\\a\\x16\\x03\\b\\x03\\x16\\x03\\x80;)d$4\\r\\x13\\x13\\x06\\a&\\x06\\x03\\x04+\\x0f\\td\\x0f\\x15\\n\\x19\\x1d\\x1f!5K\\x1f01\\x17\\x06\\x05\\x06\\x02\\x04\\x14\\x15\\x1f\\x0e&4&\\x01\\b \\b\\x0f\\x1c(\\x1c\\v\\a\\a\\x14\\x04\\x0f\\x06&\\n\\x03\\x17$\\x15'$\\n\\x19\\x9a\\x06\\t\\n$\\x03\\x06\\a\\f\\t\\a\\b\\f\\x10\\r\\x0f\\x06\\x02\\f\\x11\\b\\x04\\b\\x0f\\x05\\r\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00\\xa5\\x00\\xad\\x00\\xb5\\x00\\x00$\\x1e\\x01\\x0e\\x01&\\a\\x06#\\\".\\x03'&'\\x06\\a\\x1e\\x0132\\x16\\x14\\x06#\\\".\\x02'\\x06\\\"'\\x0e\\x03#\\\"&463267&'\\x06\\a\\x0e\\x02\\a\\x06#\\\"'&\\x06&'&4>\\x017>\\x01\\x1e\\x02\\x17\\x166767&'\\x06#\\\".\\x01'&#\\\"&4632\\x1e\\x01\\x17\\x1632>\\x017'.\\x015462\\x16\\x15\\x14\\a\\x1762\\x177&5462\\x16\\x15\\x14\\x06\\x0f\\x01\\x1e\\x02327>\\x0232\\x16\\x14\\x06#\\\"\\a\\x0e\\x02#\\\"'\\x06\\a\\x16\\x17\\x1e\\x017>\\x03\\x02\\\"\\x06\\x14\\x16264$\\\"\\x06\\x14\\x16264\\x02g\\x13\\b\\a\\x12\\x13\\x16\\x1f\\x15\\f\\x17\\x10\\n\\x05\\x03\\x03\\x03\\x1c!\\t \\x13\\n\\x0e\\x0e\\n\\x17(\\x19\\x0e\\x05\\r\\x10\\r\\x05\\x0e\\x19(\\x17\\n\\x0e\\x0e\\n\\x13 \\t!\\x1c\\x03\\x03\\x04\\x06\\x15\\x0f\\v\\f\\x15\\x1f\\x16\\x13\\x12\\x03\\x02\\x04\\a\\x04\\n\\x13\\x0e\\x11\\b\\b\\x16\\x13\\x06\\b\\n\\x04\\x02\\x13\\x17\\x10\\x1a\\f\\b\\x0e\\b\\n\\x0e\\x0e\\n\\x10\\x1a\\f\\b\\x0e\\b\\a\\x17*\\x19\\x11\\x19#%6%\\v\\x13\\x1b:\\x1b\\x13\\v%6%#\\x19\\x11\\x19*\\x17\\a\\b\\x0e\\b\\f\\x1a\\x10\\n\\x0e\\x0e\\n\\b\\x0e\\b\\f\\x1a\\x10\\x18\\x12\\x02\\x04\\n\\b\\x06\\x13\\x16\\b\\b\\x11\\x0e\\x8d\\x0e\\t\\t\\x0e\\t\\xfe\\xf7\\x0e\\t\\t\\x0e\\th\\a\\x12\\x13\\b\\a\\x0f\\x15\\t\\x0e\\x14\\r\\v\\r\\x06\\x17\\v#8\\x0e\\x14\\x0e\\x1c-%\\x13\\x01\\x01\\x13%-\\x1c\\x0e\\x14\\x0e8#\\v\\x17\\x06\\r\\x0f\\x11\\x19\\x05\\x05\\x15\\x0f\\a\\b\\t\\x05\\n\\b\\a\\x01\\x04\\x01\\x03\\b\\x05\\x05\\x0f\\a\\x1a\\x1d\\x0e\\x05\\x03\\x11\\x10\\x0e\\r\\x15\\x0e\\x14\\x0e\\x10\\x0f\\f\\x15!4\\x11\\\"\\x02%\\x19\\x1b%%\\x1b\\x13\\x10%\\b\\b%\\x10\\x13\\x1b%%\\x1b\\x19%\\x02\\\"\\x114!\\x15\\r\\x0e\\x10\\x0e\\x14\\x0e\\x15\\r\\x0e\\x10\\x11\\x03\\x05\\x0e\\x1d\\x1a\\a\\x0f\\x05\\x05\\b\\x03\\x01'\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x12\\x00\\x16\\x00\\x1e\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x054&'\\x15\\x176\\a5\\a\\x167\\x1567\\x03\\x0e\\x02\\x15\\x14\\x177\\x91Α\\x91Α\\x01\\xb0WA\\x81\\x17\\xd8Y&s3&\\x99+E(\\x17\\x81\\x01\\xb8\\x91Α\\x91\\xcegCg\\v\\xa6g)\\x86rG\\\"ir\\t\\\"\\x01?\\b3N,/)g\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc7\\x00\\t\\x00\\x14\\x00/\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x015\\x054>\\x01?\\x01\\x15#\\\"&5%\\x16\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54?\\x0154?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x02m\\b\\v\\t\\ap\\xfe\\x00\\x05\\t\\x05mp\\a\\t\\x01\\xd0\\x10`%6%`\\x100\\tL\\v\\vL\\tQ\\x03\\x11\\td\\a\\t\\xc0L\\x06\\f\\t\\x02/\\xc0\\t\\a\\xf9\\t\\x12\\xee`\\x1b%%\\x1b`\\xee\\x12\\t\\x1ds\\x0e\\tK\\f\\fK\\t\\x0es\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14p\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xb0\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00%\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x05326=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x17326=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x17326=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xb0\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\x10\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14p\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x82\\x01\\xc0\\x00\\a\\x00(\\x00\\x00\\x00\\\"&462\\x16\\x14\\a'\\a\\x17\\x16\\x06+\\x01\\\"&46;\\x01'.\\x01?\\x01676\\x1f\\x0176\\x1e\\x01\\x06\\x0f\\x01\\x06&\\x01\\x1b6%%6%_\\x18#n\\x13\\x15\\x1a\\xd0\\x11\\x17\\x17\\x11\\\\- \\x14\\x121\\x12&(\\x18':\\f!\\x15\\x03\\rX\\f!\\x01@%6%%6\\xcf\\x1dAn\\x131\\x17\\\"\\x17#\\x14G!\\\\!\\x04\\x04\\x1e./\\n\\x03\\x19!\\vH\\n\\x03\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc2\\x00)\\x00R\\x00\\x00\\x002\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06#\\\"&=\\x0146?\\x0154?\\x0103>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1626=\\x014\\x05\\x16\\x1d\\x01\\x14\\x06#\\\"/\\x01.\\x01=\\x01462\\x16\\x1d\\x01\\x14\\x1626=\\x014/\\x01&676\\x16\\x1721\\x17\\x16\\x1d\\x01\\x01\\x03\\x1a\\x13/&\\xb3\\x04\\x04\\x10\\x10\\r\\tZ\\x10u\\x01\\a\\x19\\n\\f\\x06\\aM\\x0e\\t\\x0e\\t\\x01z\\x16\\x10\\x10\\x04\\x04\\xb3&/\\x13\\x1a\\x13\\t\\x0e\\t\\x0eM\\a\\x06\\f\\n\\x19\\a\\x01u\\x10\\x01\\x00\\x13\\r\\x80'?\\n/\\x01\\x15\\v`\\n\\x11\\x03\\x1eQ\\x1d\\x18\\xb0\\v\\x05\\x06\\a\\x1a\\v\\x82\\x17\\x1aM\\a\\t\\t\\aP\\r\\x8f\\a\\x17`\\v\\x15\\x01/\\n?'\\x80\\r\\x13\\x13\\rP\\a\\t\\t\\aM\\x1a\\x17\\x82\\v\\x1a\\x06\\a\\x06\\n\\xb0\\x18\\x1dQ\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x001\\x00N\\x00V\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x063237\\x17232/\\x0176&#/\\x01&\\\"'\\\"\\x06\\x14\\x16327654#0\\\"#\\\"&463:\\x011\\x16324#&\\x135!\\\"\\x06\\x14\\x163\\x01\\xc0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\x93\\v\\x19\\x02\\x01\\x01\\x12\\x04\\x01\\x04\\x01\\x01\\x16\\x16\\x01\\x01\\x04\\x01\\x04\\x12\\x01\\x01\\x02\\x19\\v\\x01\\x04;/DD/\\x15\\x13\\x05\\a\\x03\\x01'88'\\x01\\x03\\x01\\x02\\x06\\x06\\x14u\\xfe\\xe3\\r\\x13\\x12\\x0eZ\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1ax\\x16\\x04\\x04\\x02\\x11\\x19\\x04\\f\\f\\x04\\x19\\x11\\x02\\x04\\x04\\x16\\x02CC`C\\a\\x02\\x05\\x068N8\\x01\\x0e\\a\\xfe\\x8d@\\x12\\x1c\\x12\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x19\\x00$\\x00_\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x17\\x042654.\\x01#\\\"\\x06\\x147\\x1e\\x01\\x15\\x14\\x06\\a\\x15\\x14+\\x01\\\"=\\x01&'&?\\x016\\x17\\x16;\\x012654/\\x01.\\x0154>\\x01354;\\x012\\x1d\\x01\\x16\\x17\\x16\\x0f\\x01\\x06'&+\\x01\\\"\\x06\\x15\\x14\\x17\\x01\\xf9\\a\\a\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\a\\xfe\\xffxT'B'<T\\xab\\x0e\\x12\\x19\\x12\\b\\x10\\b\\x11\\x0e\\b\\a\\f\\x04\\x06\\x06\\a\\x1c\\x05\\a\\t-\\x0e\\x12\\f\\x13\\f\\b\\x10\\b\\x11\\x0e\\b\\a\\f\\x04\\x06\\x06\\a\\x1c\\x05\\a\\t\\x05\\a\\x14\\a\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\a\\tT<'C&TxE\\x05\\x18\\x0f\\x12\\x1a\\x01\\x10\\b\\b\\x10\\x01\\v\\x05\\a\\v\\x04\\x03\\x04\\b\\x05\\n\\x03\\r\\x05\\x18\\x0f\\f\\x14\\r\\x10\\b\\b\\x10\\x01\\v\\x05\\a\\v\\x04\\x03\\x04\\b\\x05\\n\\x03\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x19\\x00$\\x000\\x00;\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x17\\x042654.\\x01#\\\"\\x06\\x1462\\x16\\x15\\x14\\a\\x06\\\"'&54\\x17264&\\\"\\x06\\x15\\x14\\x1e\\x01\\x01\\xf9\\a\\a\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\a\\xfe\\xffxT'B'<Tq>+C\\x03\\b\\x03CJ\\n\\x0e\\x0e\\x14\\x0e\\x06\\f\\x05\\a\\x14\\a\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\a\\tT<'C&Tx\\x9c+\\x1f$O\\x03\\x03O$\\x1f5\\x0e\\x14\\x0e\\x0e\\n\\a\\v\\x06\\x00\\x00\\x00\\x00\\x04\\xff\\xfa\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x10\\x00\\x1b\\x00%\\x005\\x00\\x007\\x0e\\x01\\x17\\a\\x06#\\\"&'&6?\\x0153\\x155\\x15#546;\\x012\\x17\\x0672\\x16\\x1d\\x01#5463\\x0353\\x15\\x14\\x06\\x0f\\x01\\x06#\\\"&'&67\\xd7(\\x16\\x16\\x15\\x1a \\x19.\\r\\x12\\x11\\x1eW\\xa0\\xa0\\x13\\r\\x80\\x02\\x06\\b\\xc0\\r\\x13\\xc0\\x13\\r \\xc0\\x1e\\x15s\\x1a \\x19-\\r\\x12\\x11\\x1e\\x89\\x1e^)\\x11\\x13\\x19\\x17!H\\x16A\\xb0\\xa0\\xe0  \\r\\x13\\x02\\x0e\\x10\\x13\\r  \\r\\x13\\xfe\\xf0\\xb0\\xd0\\x1a=\\x0fW\\x13\\x19\\x17!H\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02G\\x01\\xc0\\x00\\x1b\\x00;\\x00\\x00%\\x16\\x0f\\x01\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1772\\x16\\x1d\\x01\\x14\\x06+\\x01\\x03\\x0e\\x01#\\\"/\\x01#\\\"&=\\x0146;\\x012\\x1f\\x01\\x13>\\x013\\x02;\\f\\f..\\f\\f\\x16\\f\\v..\\v\\f\\x16\\f\\f..\\f\\f\\x16\\f\\v..\\v\\f\\x03\\n\\x0e\\x0e\\n\\xc3b\\x06 \\x10\\x1f\\x12X,\\n\\x0e\\x0e\\nQ\\x13\\n:U\\x02\\x12\\v\\xc5\\f\\v..\\v\\f\\x16\\f\\f..\\f\\f\\x16\\f\\v..\\v\\f\\x16\\f\\f..\\f\\f\\xe5\\x0e\\n0\\n\\x0e\\xfe\\x89\\x15\\x14\\x1c\\xa4\\x0e\\n0\\n\\x0e\\x11j\\x01C\\v\\r\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x02\\x01\\xc0\\x00\\x1c\\x009\\x00\\x00\\x052\\x16\\x15\\x14\\a\\x06#\\\"&4632\\x17\\x16\\a\\x06#0&#\\\"\\x06\\x14\\x163267\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06#\\\"/\\x01\\a\\x06#\\\"&?\\x01'&6?\\x0262\\x1f\\x01\\x01T\\a\\t\\v+.j\\x96\\x96j.,\\f\\x03\\x02\\r\\a\\x02W||W\\x02\\a\\xa3\\a\\x03\\x047\\r\\x01\\a\\x04\\x02\\x03DD\\x03\\x02\\x04\\a\\x01\\r7\\x04\\x03\\aL\\\"\\x03\\f\\x03\\\"\\x12\\t\\x06\\v\\x04\\x10\\x96Ԗ\\x10\\x05\\r\\f\\x01|\\xae|\\x01\\xfc\\x01\\f\\x046L\\x04\\a\\x01$$\\x01\\x06\\x05L6\\x04\\f\\x01\\vE\\x06\\x06E\\x00\\x00\\x00\\x00\\b\\xff\\xfa\\xff\\xc0\\x01\\xd6\\x01\\xc0\\x00\\x1d\\x00 \\x00&\\x00)\\x00,\\x00/\\x002\\x005\\x00\\x00%\\x17\\x16\\x06+\\x01\\a\\x06\\\"/\\x01#\\\"&?\\x01'&6;\\x01762\\x1f\\x0132\\x16\\x0f\\x01#\\x17\\a'#\\a\\x173\\x03\\a3\\a\\x177\\a3'\\x177#73'\\x01\\x965\\v\\x16\\x15k8\\v*\\v8k\\x15\\x16\\v55\\v\\x16\\x15k8\\v*\\v8k\\x15\\x16\\vB(\\x14 5p55p8\\x17.\\xb8\\x14\\x14((\\x14\\x8d\\x17.\\x90(\\x14\\xc0Y\\x13$^\\x12\\x12^$\\x13YY\\x13$^\\x12\\x12^$\\x13\\x01!7XXX\\x01\\x0e&8!!\\xb0!\\u007f&8!\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc9\\x00\\t\\x00\\x13\\x00'\\x00E\\x00\\x00762\\x1f\\x01\\x11#547!\\x16\\x1d\\x01#\\x11762\\x17'\\x17\\x16\\x15\\x11#54&\\a\\x0e\\x01\\x1d\\x01#\\x114?\\x016\\x17'76&+\\x01'&\\\"\\x0f\\x01#\\\"\\x06\\x1f\\x01\\a\\x06\\x16;\\x01\\x17\\x162?\\x01326F\\x04\\f\\x04&\\x80\\a\\x02r\\a\\x80&\\x04\\f\\x04\\xe6\\x80\\f`-\\x1e\\x17\\x1e`\\f\\x80\\x14H\\x13\\x13\\x02\\x03\\x03'\\x19\\x01\\x06\\x01\\x19'\\x03\\x03\\x02\\x13\\x13\\x02\\x03\\x03'\\x19\\x01\\x06\\x01\\x19'\\x03\\x03\\xfb\\x05\\x05+\\xfe\\xf0\\xe2\\n\\b\\b\\n\\xe2\\x01\\x10+\\x05\\x05\\xbef\\n\\x0f\\xfe\\x86`\\x1d'\\x05\\x04&\\x18]\\x01z\\x0f\\nf\\x10\\xe8\\x1f\\x1f\\x02\\x05(\\x02\\x02(\\x05\\x02\\x1f\\x1f\\x02\\x05(\\x02\\x02(\\x05\\x00\\v\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x02\\x00\\x05\\x00\\x11\\x00\\x14\\x00\\x17\\x00\\x1b\\x00F\\x00R\\x00U\\x00X\\x00^\\x00\\x00%'37\\a'$2\\x16\\x15\\x11\\x14\\x06\\\"&5\\x114\\x137\\x1737\\x17\\x05\\x11!\\x11\\x01\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x16;\\x01\\x17\\x1632?\\x01327654/\\x017654&+\\x01'&#1\\\"\\x0f\\x01#\\\"$2\\x16\\x15\\x11\\x14\\x06\\\"&5\\x114\\a\\x17#\\x0f\\x01'\\x17'73\\x17\\a\\x01@\\x12$Q\\x12\\x13\\xfe\\x9e(\\x1c\\x1c(\\x1c\\xdd\\x12\\x13|\\x13\\x12\\xfe\\xdd\\x01\\x80\\xfe\\xc3\\x03\\x03\\x1d\\x1d\\x03\\f\\t<\\x1d\\x06\\f\\f\\x06\\x1d<\\f\\x06\\x03\\x03\\x1d\\x1d\\x03\\f\\t<\\x1d\\x06\\f\\f\\x06\\x1d<\\f\\x01s(\\x1c\\x1c(\\x1c\\xe0\\x12$,\\x13\\x12B!!B!!R\\x1d\\x89\\x1f\\x1f\\xc8\\x13\\r\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\xfe\\xdb\\x1f\\x1f\\x1f\\x1f\\x98\\x01\\xa0\\xfe`\\x01\\x16\\x05\\x05\\x06\\x0511\\x05\\x06\\b\\r1\\n\\n1\\v\\x05\\x05\\x06\\x0511\\x05\\x06\\b\\r1\\n\\n1\\xaf\\x13\\r\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\u007f\\x1d\\x1a\\x1e\\x1eo8888\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x007\\x00;\\x00?\\x00\\x00\\x01267\\x15\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x015#\\\"&=\\x01\\x1e\\x013\\a\\x1535\\x175#\\x15\\x01x\\x1eP\\x1a\\x13\\r 0\\a\\t\\t\\a0\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t0\\a\\t\\t\\a0 \\r\\x13\\x1aP\\x1e\\b`\\xa0`\\x01\\xa0\\x13\\r`\\r\\x13@\\t\\a \\a\\t\\xf0\\a\\t\\t\\a\\xf0\\xf0\\a\\t\\t\\a\\xf0\\t\\a \\a\\t@\\x13\\r`\\r\\x13`@@@@@\\x00\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00@\\x00D\\x00H\\x00\\x00%\\x16\\a\\x06\\x0f\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01'&'&?\\x015'&4?\\x015'&6?\\x01\\x17\\x1e\\x01\\x0f\\x01\\x15\\x17\\x16\\x14\\x0f\\x01\\x15%\\x1535\\x05!5!\\x02y\\b\\x01\\x01\\b7\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\xa0\\t\\a \\a\\t7\\b\\x01\\x01\\bY7\\t\\tw\\x1b\\x06\\x03\\a\\xb7\\xb7\\a\\x03\\x06\\x1bw\\t\\t7\\xfe\\xc0\\xc0\\xff\\x00\\x01@\\xfe\\xc0/\\x05\\n\\b\\x04\\x140\\a\\t\\t\\a00\\a\\t\\t\\a00\\a\\t\\t\\a0\\x14\\x04\\b\\n\\x051@\\x12\\x04\\x14\\x042@\\x10\\x06\\x10\\x04VV\\x04\\x10\\x06\\x10@2\\x04\\x14\\x04\\x12@\\xe0@@\\xe0@\\x00\\x00\\x02\\x00\\x00\\xff\\xfb\\x02\\a\\x01\\x85\\x00\\x11\\x00-\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01\\x05\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\a\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\x01P-\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f\\x01y\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e`.\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14&264&#\\\"\\x06\\x14\\x163\\\"&462\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xeb\\x1a\\x13\\x13\\x1a\\x13\\bP88(PppP(8S\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xe7\\x13\\x1a\\x13\\x13\\x1am8P8p\\xa0p8P\\xb8\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x04\\xff\\xff\\xff\\xc0\\x02@\\x01\\xc2\\x00\\x1b\\x004\\x00D\\x00L\\x00\\x00\\x01\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a!\\x11!\\a\\x01\\x16\\x0f\\x01\\x06&'.\\x017>\\x01\\x1f\\x01\\x16\\x0f\\x01\\x06/\\x01\\x06\\x1776\\x17\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x16264&\\\"\\x06\\x14\\x01\\x88\\b\\b\\x9e\\x12\\x8c\\b\\b\\x84\\x12r\\b\\bi\\x11\\xfe\\xe0\\x01\\x80\\x11\\xfep\\x05\\f'\\n\\x19\\aF\\x02F\\b\\x19\\v'\\f\\x05\\x1a\\x05\\f-\\x1b\\x1b-\\f\\x05\\x01[\\x1b%\\x13\\r\\xfe\\xa0\\r\\x13%\\x1b\\x83\\x1a\\x13\\x13\\x1a\\x13\\x01\\x80\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\x01`@\\xfe\\xf1\\r\\a\\x18\\x06\\x03\\bM\\xcfN\\t\\x05\\a\\x18\\a\\r?\\f\\x01\\x05JJ\\x05\\x01\\fp%\\x1b \\r\\x13\\x13\\r \\x1b%`\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x1e\\x000\\x00L\\x00T\\x00\\\\\\x00\\x00\\x00\\\"&462\\x16\\x14\\x17\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x06\\\"\\x06\\x15\\x14\\x17\\x15\\x14\\x16;\\x0126=\\x01654\\a\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x0176/\\x01&\\x0f\\x01'&\\a\\x175!\\\"\\x06\\x14\\x163\\x12\\\"&462\\x16\\x14\\x01\\x17\\x0e\\t\\t\\x0e\\t\\xa0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xafB/ \\t\\a@\\a\\t \\xc3\\x03\\aGG\\a\\x03\\x06\\x03\\bbb\\b\\x03\\x06\\x03\\aFF\\a\\x03\\x06\\x03\\bbb\\b\\x03\\xfa\\xfe\\xe3\\r\\x13\\x12\\x0ew\\x0e\\t\\t\\x0e\\t\\x018\\t\\x0e\\t\\t\\x0e\\xe7\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a\\x1e&\\x1a \\x13\\r\\a\\t\\t\\a\\r\\x13 \\x1a\\x81\\b\\x03\\x1e\\x1e\\x03\\b\\x0e\\b\\x03++\\x03\\b\\x0e\\b\\x03\\x1e\\x1e\\x03\\b\\x0e\\b\\x03**\\x03\\b\\xef@\\x12\\x1c\\x12\\x018\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc7\\x00 \\x00#\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x13'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x13%\\a3\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x19\\xef5\\t\\r\\x19\\r\\n))\\n\\r\\x19\\r\\t5\\xef\\xfe\\xe9t\\xe8\\t\\a \\a\\t\\t\\a \\a\\t\\x01JJ\\r\\t\\x13\\t\\r88\\r\\t\\x13\\t\\rJ\\xfe\\xb6\\xa0\\xa0\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xa0\\x00-\\x007\\x00?\\x00G\\x00\\x00\\x01\\x1e\\x03327\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x114&\\\"&4632\\x16\\x1d\\x01>\\x03?\\x01\\x15\\x14\\x06\\\"&=\\x01\\x17\\x06264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01#\\x04\\x17!*\\x17\\x0f\\x11\\t\\a \\a\\t\\x80 \\r\\x13\\t\\a\\xb0\\x1a&\\x13\\x1a\\x13\\x13\\r(8\\x1333\\x1c\\xab@8P8@\\x0f\\x0e\\t\\t\\x0e\\tY\\x0e\\t\\t\\x0e\\t\\x01\\x00\\x16&\\x1b\\x0f\\x04\\xce\\a\\t\\t\\a\\x90`\\x13\\r\\x10\\a\\t&\\x1a\\x01\\x00\\r\\x13\\x13\\x1a\\x138(V\\x1d'\\x0e\\x04`@\\x86(88(\\x86@P\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\x00\\x02\\xff\\xfc\\xff\\xc0\\x01\\xc4\\x01\\xc0\\x00\\x17\\x007\\x00\\x00\\x13\\x15#546;\\x012\\x16\\x1d\\x01#54'\\x15#5#\\x15#5\\x06\\x01\\x16\\x06#\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"&?\\x0163!2\\x17p0K5@5K0(000(\\x01N\\x05\\x13\\x10\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\x10\\x14\\x06\\n\\b\\x17\\x01j\\x17\\b\\x01@\\x80\\x805KK5\\x80\\x80.\\x17\\xc5\\xd0\\xd0\\xc5\\x17\\xfe\\xfc\\x0f\\x1bp\\a\\t\\t\\app\\a\\t\\t\\ap\\x1b\\x0f \\x16\\x16\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02B\\x01\\xc0\\x00\\x1c\\x00<\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06+\\x01\\\"&54674&54632\\x16\\x17632\\x16\\x15\\x1476\\x16\\a\\x06\\a&'654&#\\\"\\a&'&54632\\x17\\x1e\\x01\\a\\x0e\\x01\\x15\\x14\\x16\\x01W\\x1f*/!\\xf0(8$\\x1d\\x018(\\x1b,\\r\\x12\\x1a\\x1a&\\xd5\\x06\\a\\x045T\\x11%\\x018(\\x13\\x11\\a\\n\\x02qO\\x11\\x12\\x06\\x02\\x05#)m_\\x02.\\x1f!/8(\\x1f1\\n\\x01\\x04\\x01(8\\x1b\\x17\\x12&\\x1a\\x11'\\x01\\v\\x05A\\x05$\\x10\\x06\\x05(8\\a\\a\\a\\r\\fPp\\x03\\x01\\r\\x03\\x14F)F[\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\x1e\\x00D\\x00Q\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&54674&454632\\x16\\x17632\\x16\\x15\\x14\\x06%\\x16\\x17\\x06\\x0f\\x01\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x01\\x06\\a&'&\\\"\\x06\\x1474632\\x16\\x17\\x06\\a\\x06\\a.\\x01\\x02?\\x1d$8(\\xfe\\xf0(84%\\x01B.\\\"6\\x0e\\x10\\x12\\x1a&\\x01\\xfeR\\x0f\\x15\\x0f\\tL\\t\\r\\x03\\x1dS\\b\\bS\\x1d\\x03\\r\\tX)\\x05\\x12\\x05)X\\t\\r\\x03\\x1e\\x11\\r\\t\\x0e!\\\\B\\x1c1#\\x19)\\n;\\b\\f\\r\\x1d'z\\n1\\x1f(88(&6\\x03\\x01\\x04\\x03\\x01.B$\\x1e\\n&\\x1a\\x01\\x04\\x16\\x10\\b\\x0f\\x13\\x19\\x03\\r\\tX)\\x05\\x12\\x05)X\\t\\r\\x03\\x1dS\\b\\bS\\x1d\\x03\\r\\tY\\x02\\x06\\x14\\r!B\\\\.#1\\x1b\\x17$D\\x04\\b\\x05/\\x00\\x00\\n\\xff\\xfe\\xff\\xbe\\x01\\xe2\\x01\\xc0\\x00\\x05\\x00\\x0e\\x00\\x17\\x00 \\x00'\\x000\\x00:\\x00E\\x00K\\x00O\\x00\\x007\\x17'\\\"&?\\x01\\x06&=\\x0146\\x1f\\x01\\a&63\\x17\\x15\\x14\\x06'\\x03'&4?\\x016\\x16\\a\\x17#762\\x1f\\x0176\\x16\\x1d\\x01\\x14\\x06/\\x03&>\\x01\\x1f\\x01\\x16\\x14\\a\\x032\\x16\\x0f\\x01\\x06\\\".\\x01=\\x017\\x17\\x16\\x06#\\a'3\\a'kl\\xd0\\x04\\x04\\x02\\x06\\x01\\x06\\x04\\x02MA\\x03\\x02\\x03\\xcc\\a\\x04rQ\\x02\\x02\\x97\\x05\\t\\x04=m_\\x05\\x12\\x05_}\\x02\\x04\\x06\\x01L\\x10P\\x02\\x02\\a\\x03\\x97\\x02\\x02\\x02\\x03\\x02\\x03\\xc3\\x02\\x04\\x03\\x02uj\\x02\\x04\\x04\\xd0\\x19ddd\\xe9\\xbe\\x16\\b\\x048\\x03\\x02\\x03\\xa2\\x03\\x02\\x01.\\xe7\\x02\\x06\\x16B\\x04\\x05\\x02\\x01Y1\\x01\\x04\\x02b\\x03\\t\\x05\\x99\\xa8\\b\\b\\xa8\\x1d\\x01\\x02\\x03\\xa2\\x03\\x02\\x03z\\x1b\\x8f\\x04\\a\\x02\\x02b\\x02\\x04\\x01\\xfe\\xd5\\x06\\x02W\\x01\\x02\\x04\\x02Bߜ\\x04\\b\\x16Ű\\xb0\\x00\\x03\\x00\\x00\\xff\\xbd\\x01\\xc0\\x01\\xcb\\x00\\v\\x00\\x17\\x00#\\x00\\x00\\x01\\x16\\x14\\x0f\\x01'&4?\\x016\\x1f\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06&=\\x01'46\\x1f\\x01\\x15\\x14\\x06/\\x01&5\\x01\\xa6\\x04\\x04\\xc6\\xc6\\x04\\x04\\xa6  \\xb4\\x04\\b \\x98\\b\\x10\\xf0\\b\\x04\\xc4\\x10\\b\\x98 \\x01R\\x02\\n\\x02ww\\x02\\n\\x02e\\x14\\x14\\x92\\x03\\x05\\x05\\xc6&\\x13]\\x05\\n\\n\\xe0m\\x05\\x05\\x03t\\xe0\\n\\n\\x05]\\x13&\\x00\\x00\\x00\\x00\\x03\\x00 \\xff\\xc0\\x02 \\x01\\xa3\\x00\\x1e\\x004\\x00<\\x00\\x00%\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x015462\\x16\\x14\\x163%\\x15\\x14\\x06+\\x01\\x15'546\\x1f\\x0132\\x1e\\x01\\x1f\\x0132\\x16\\x064&\\\"\\x06\\x14\\x162\\x01*\\x96\\t\\a@\\a\\t\\xa0\\t\\a@\\a\\t\\x1c$\\x13\\x1a\\x13\\x13\\r\\x01\\xa0&\\x1a \\x80\\x14\\a\\x1c5\\x06\\v\\t\\x03\\a@\\a\\tp\\t\\x0e\\t\\t\\x0e\\xe06\\xda\\a\\t\\t\\app\\a\\t\\t\\a\\xd6\\n1\\x1f\\r\\x13\\x13\\x1a\\x13p \\x1a&$.\\x96\\v\\b\\b\\x1b\\x05\\b\\x05\\x0e\\t\\x0e\\x0e\\t\\t\\x0e\\t\\x00\\x03\\xff\\xfc\\xff\\xbf\\x02\\x82\\x01\\xc0\\x00\\x10\\x00C\\x00I\\x00\\x007\\x06&?\\x01>\\x01\\x1f\\x01\\x15\\x14\\x17#\\\"&?\\x01\\x05\\x1e\\x01\\a\\x0e\\x01#!\\\"&547>\\x027.\\x01=\\x01'&4?\\x01'&6;\\x012\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01#\\x15\\x14\\x16\\x177\\x06\\x16\\x17\\x167\\x12\\f\\t\\tu\\x11*\\x12x\\x0f\\xdf\\v\\b\\b[\\x01\\u007f #\\x02\\x03H0\\xfe\\r\\b\\n\\x0eGU\\xbcZ-3<\\x04\\x04<>\\x03\\x04\\x05\\xed\\x10\\nK\\x06\\x03\\x0f\\x03\\x11\\b\\x1f\\x0e\\t\\x1c@\\x10\\v\\x0e\\x03\\x0e\\v\\x13\\x05\\xc0\\x01\\x16\\au\\x0e\\x02\\fW+*)\\x14\\aEB\\x10<#/@\\n\\b\\x0e\\x03\\x10\\x11\\x19\\x03\\x1e_6m\\x19\\x02\\n\\x02\\x192\\x04\\n\\rc\\t\\n\\b\\a\\x1c\\b\\n\\t\\x17%\\f\\x19\\x06\\xae\\f\\x11\\x01\\x01\\x13\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x02\\x03\\x01\\xc0\\x00.\\x00\\x00\\x01\\x16\\a&\\x06\\a\\x0e\\x01\\x17\\x06#\\\"+\\x01\\a\\x06\\x17\\x16\\x15\\x14\\x06\\\"'&7\\x06'&54>\\x0132\\x17\\x16?\\x01547>\\x0232\\x16\\x01\\xcf3\\x02\\x1fH\\x1a\\x1e\\x01\\x1e\\x1d\\x1f\\x01\\x01V(\\x0f\\t\\x04#2\\x12\\x17\\b\\\"\\x16\\x12\\x10\\x1c\\x10\\f\\v\\x16\\x0f(?\\x0e).\\x13\\x1dF\\x01\\x8e3I\\x11\\t\\x19\\x1eX!\\n)\\x0e\\x16\\v\\f\\x19#\\x12\\x16\\\"\\b\\x17\\x12\\x19\\x10\\x1c\\x10\\x04\\t\\x0f(VO?\\x0e\\x17\\r\\x1d\\x00\\x00\\x00\\x00\\f\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x10\\x00 \\x000\\x00@\\x00P\\x00`\\x00p\\x00\\x80\\x00\\x90\\x00\\x9a\\x00\\xa3\\x00\\xac\\x00\\x007\\x16\\a\\x06\\a\\x06+\\x01\\\".\\x01767>\\x01\\x17%\\x1e\\x01\\x0f\\x01\\x06+\\x01\\\"/\\x01&6762\\x032\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x13\\x16\\a\\x06\\a\\x06/\\x01.\\x017676\\x16\\x1f\\x01\\\"'&'&?\\x016\\x16\\x17\\x16\\x17\\x16\\x06#'\\x16\\x06\\x0f\\x01\\x06'&'&?\\x01>\\x01\\x17\\x16\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463'62\\x17\\x11\\x14+\\x01\\\"5'67\\x11\\x14+\\x01\\\"5\\x13\\x16\\x17\\x15\\x14+\\x01\\\"5\\x81\\v\\x05\\x05\\x01\\x02\\ra\\x05\\a\\x05\\x01\\x03\\x13\\x03\\x0e\\x06\\x01\\x11\\a\\x06\\x03%\\x04\\v*\\v\\x04%\\x03\\x06\\a\\x1f@\\xb0\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a\\xad\\x05\\v\\t\\b\\t\\vS\\x06\\x03\\x05\\x1e*\\x06\\r\\x03\\xf5\\r\\x02\\x01\\x05\\x05\\vS\\x06\\x0e\\x03\\x13\\x03\\x01\\n\\a*\\x05\\x03\\x06S\\v\\t\\b\\t\\v\\x05$\\x03\\r\\x06*I\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a\\xa0\\n\\f\\n\\b\\x10\\b@\\f\\x14\\b\\x10\\b\\x80\\x14\\f\\b\\x10\\b\\xfd\\a\\r\\r\\x0e\\x0e\\x05\\a\\x05.+\\x06\\x04\\x04\\x88\\x02\\r\\x06h\\v\\vh\\x06\\r\\x02\\b\\xfe\\xe0\\t\\a@\\a\\t\\t\\a@\\a\\t\\x80\\t\\a@\\a\\t\\t\\a@\\a\\t\\x01\\x1c\\f\\b\\x06\\b\\t\\a3\\x04\\x0e\\x06$\\x18\\x03\\x05\\a\\xd6\\x0e\\x0e\\r\\r\\a3\\x04\\x04\\x06+.\\a\\n\\xa3\\x06\\x0e\\x043\\a\\t\\b\\x06\\b\\fZ\\a\\x05\\x03\\x18\\xe7\\t\\a@\\a\\t\\t\\a@\\a\\t\\x80\\t\\a@\\a\\t\\t\\a@\\a\\t\\xee\\x02\\x02\\xfe\\xda\\b\\b\\xfd\\x12\\f\\xfe\\xe5\\b\\b\\x01\\x1b\\f\\x12\\xfd\\b\\b\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00-\\x00O\\x00h\\x00q\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x0354+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x012=\\x014+\\x01\\\"&=\\x0146;\\x012\\x172654/\\x01&54;\\x012=\\x014+\\x01\\\"\\x06\\x15\\x14\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"\\x1d\\x01\\x14374+\\x01\\\"\\x1d\\x01\\x14\\x17\\x16276=\\x014+\\x01\\\"\\x1d\\x01\\x14\\a&57\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8`\\b\\b\\x14\\x1c\\x1c\\x14\\b\\b\\b\\b\\a\\t\\t\\a\\b\\b,\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\f\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b`\\b\\x10\\b$\\x05\\x0e\\x05$\\b\\x10\\b\\x10\\x10y\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xe8\\x10\\b\\x1c\\x14 \\x14\\x1c\\b\\x10\\b\\t\\a \\a\\t`\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\b\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\bx\\b\\b\\x157'\\x05\\x05'7\\x15\\b\\b\\x15\\x1f\\x1a\\x1a\\x1f\\xb4\\a\\n\\x06\\x80\\a\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00D\\x00P\\x00`\\x00p\\x00\\x00\\x01#\\\"\\a546;\\x012\\x16\\x15\\x17\\x15\\x14\\x06\\x0f\\x01\\x15!5'&=\\x01\\x16;\\x0127\\x16;\\x0127\\x16\\x17\\x06\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\x1632?\\x01>\\x0272=\\x014+\\x01\\\"&546;\\x012\\x16'&+\\x01546;\\x012\\x16\\x15\\x05\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01\\x000\\b\\b\\t\\a \\a\\t\\x80\\x10\\f$\\xff\\x00\\x1b%\\b\\b \\x12\\x0e\\x0e\\x12 \\v\\v\\f\\x1b\\x15\\x1b\\x06\\x01\\x03\\x0e\\x02\\x02\\x04\\x03\\x06\\x12\\x18 \\x16\\b\\r#\\x14\\x1c\\t\\ap\\x1a& \\x11\\x0f \\t\\a \\a\\t\\xfe\\xb0\\a\\t\\t\\a \\a\\t\\t\\a@\\a\\t\\t\\a \\a\\t\\t\\a\\x01 \\x03\\x93\\a\\t\\t\\a\\xf0X\\x11'\\f$@@\\x1b%5N\\x03\\f\\f\\x06\\x1a\\t\\x12(\\t\\x02\\x03\\x04\\x03\\b\\x02\\x04\\t\\x1b\\x1b\\x12\\x01\\b\\x10\\b\\x1c\\x14\\a\\t%?\\x06p\\a\\t\\t\\a\\xb0\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\x00\\x03\\x00\\x00\\xff\\xb9\\x01\\x80\\x01\\xc3\\x00\\x1e\\x00&\\x00.\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01&\\x0f\\x01\\x06/\\x01&\\\"\\x0f\\x01\\x06/\\x01&\\x0f\\x01\\x06&5\\x1146\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\xbaRt\\x14\\a\\x19\\f\\n+\\v\\v)\\x05\\x0e\\x05)\\v\\v+\\n\\f\\x19\\a\\x14l\\a\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x02qQ\\xfe\\xf0\\v\\b\\b\\x12\\t\\v0\\f\\f.\\x05\\x05.\\f\\f0\\v\\t\\x12\\b\\b\\v\\x01\\bPv\\xde\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02G\\x01\\xc0\\x00\\x1b\\x00'\\x00\\x00%\\x16\\x0f\\x01\\x06/\\x01&?\\x01'\\x06/\\x01&=\\x01'62\\x1f\\x01\\x16\\a\\x1776\\x17\\x05\\x17\\x16\\x17\\a\\x06\\\"&47%\\x16\\x02;\\f\\fZ\\v\\f\\x16\\f\\f\\v\\x1d$\\x1a1\\x13Z/\\x84/-\\x1a\\t\\x1d\\v\\v\\f\\xfe\\xf81\\x04\\a\\xee\\x124%\\x14\\x00\\xff\\x05\\xfe\\v\\fZ\\v\\v\\x17\\v\\v\\f\\x1c\\t\\x1a1\\x13\\x1a\\x13-//-\\x1a$\\x1d\\f\\v\\v\\b1\\x04\\x05\\xff\\x14%4\\x12\\xee\\a\\x00\\x00\\x00\\x10\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00m\\x00x\\x00\\x83\\x00\\x90\\x00\\x9b\\x00\\xa8\\x00\\xb3\\x00\\xbe\\x00\\xc9\\x00\\xd6\\x00\\x00\\x1332\\x1d\\x01#54#32\\x1d\\x01#54;\\x012\\x1d\\x01#54;\\x012\\x1d\\x01#54\\x17\\x15#54;\\x012!32\\x1d\\x01#54!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16;\\x01546;\\x012\\x16\\x1d\\x01326=\\x014636\\\"&546?\\x01\\x16\\x15\\x14\\x04\\\"&546?\\x01\\x16\\x15\\x14%\\\".\\x01546?\\x01\\x16\\x15\\x14\\x0e\\x01\\\"&546?\\x01\\x16\\x15\\x14\\x17\\\"&546?\\x01\\x16\\x15\\x14\\x0e\\x012\\\"&546?\\x01\\x16\\x15\\x14\\x16\\\"&546?\\x01\\x16\\x15\\x14\\x16\\\"&546?\\x01\\x16\\x15\\x14\\x17\\\"&546?\\x01\\x16\\x15\\x14\\x0e\\x01\\xe8\\x10\\b 8\\x10\\b \\xe8\\x10\\b H\\x10\\b ` \\b\\x10\\b\\xfeH\\x10\\b \\x02\\x10\\a\\t8(\\xc0\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0\\xc0(8\\t\\a \\a\\t\\x13\\r\\xc0\\t\\a \\a\\t\\xc0\\r\\x13\\t\\a\\x1a\\x14\\x0e\\f\\x06\\x06\\x18\\xfd\\xb2\\x14\\x0e\\f\\x06\\x06\\x18\\x01\\b\\a\\v\\x06\\f\\x06\\x06\\x18\\x0e\\xd0\\x14\\x0e\\f\\x06\\x06\\x18(\\n\\x0e\\f\\x06\\x06\\x18\\x06\\vC\\x14\\x0e\\f\\x06\\x06\\x18\\x92\\x14\\x0e\\f\\x06\\x06\\x182\\x14\\x0e\\f\\x06\\x06\\x18(\\n\\x0e\\f\\x06\\x06\\x18\\x06\\v\\x01 \\bxx\\b\\bxx\\b\\bxx\\b\\bxx\\b\\bxx\\b\\bxx\\b\\t\\ap(8@\\t\\a \\a\\t\\t\\a \\a\\t@8(p\\a\\t\\t\\ap\\r\\x13\\xc0\\a\\t\\t\\a\\xc0\\x13\\rp\\a\\t \\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v \\a\\f\\b\\x06\\x1b\\n\\n'\\x0e\\v\\x100\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\b\\f\\a\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\b\\f\\a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00$\\x00,\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\x17#7>\\x01?\\x01\\a\\x06\\x15\\x14\\x1f\\x01#?\\x01/\\x01\\x0f\\x017\\a\\x1f\\x01?\\x01/\\x01\\x01\\xf0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\xb0\\x10\\x90o\\a\\x1f\\x0f\\xbc8\\x04\\x06V\\xd0\\x10@@  @\\x80  \\x10\\x10  \\x10\\t\\a \\a\\t\\t\\a \\a\\t@ \\xfa\\x10\\\"\\tk\\xa9\\n\\n\\r\\f\\xca   @@ \\xc0\\x10\\x10  \\x10\\x10 \\x00\\x00\\x04\\xff\\xff\\xff\\xbf\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x1b\\x00J\\x00R\\x00\\x00\\x177\\x17\\a\\x0e\\x01#\\\"'.\\x027\\x0e\\x01/\\x01.\\x02?\\x01>\\x01\\x17\\x1e\\x01\\a\\x172\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\\"/\\x01\\a\\x061\\x17\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x01'&54?\\x01>\\x0132\\x1f\\x0135463&\\\"&462\\x16\\x14Q#4\\x19\\x03\\x11\\v\\x04\\x04\\b\\f\\x05\\x11\\x02\\v\\a@\\x04\\x06\\x03\\x01\\x1a\\b:!\\a\\a\\x02\\xe7\\a\\t\\t\\a\\x10\\a\\t0\\r\\n\\x16\\x14\\x01/\\x13\\x13\\x1a\\x13W\\t\\x01\\x1b\\x05 \\x14\\x18\\x11/#\\t\\a\\\\(\\x1c\\x1c(\\x1c\\x18\\x8a5e\\v\\r\\x01\\x02\\f\\x10\\xcd\\x06\\a\\x01\\x10\\x01\\x06\\b\\x04b\\x1f\\\"\\b\\x02\\v\\x06+\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\xf0\\t\\x17P\\x01/\\x13\\x1aS\\r\\x13\\x13\\rSV\\n\\r\\x04\\x04k\\x14\\x19\\x11/\\x10\\a\\t@\\x1c(\\x1c\\x1c(\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00>\\x00F\\x00\\x00\\x012\\x1e\\x01\\x1d\\x01\\x14\\x06#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01\\x06\\\"'\\x15\\x14\\x06+\\x01\\\"&=\\x014632\\x17546;\\x012\\x16\\x1d\\x01632\\x1e\\x01\\x17>\\x02\\x06264&\\\"\\x06\\x14\\x02E\\x11\\x1b\\x0f\\x13\\r\\t\\a \\a\\t\\x80\\t\\a@\\a\\t3z3\\t\\a@\\a\\tpPI7\\x0e\\n\\x10\\n\\x0e\\x11\\x0f\\x14#\\x1a\\b\\a\\x1f\\x1a\\x80\\x0e\\t\\t\\x0e\\t\\x01`\\x14\\x1f\\x11\\\\\\r\\x13 \\a\\t\\t\\a \\xb0\\a\\t\\t\\aG\\x17\\x17G\\a\\t\\t\\a\\xf0B^)1\\n\\x0e\\x0e\\n\\x0e\\x06\\x0f\\x1b\\x11\\x03\\x0f\\tP\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00K\\x00S\\x00\\x00\\x01\\x15\\x14\\x0e\\x01\\x0f\\x01\\x06&/\\x02\\x150\\x15\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01'\\a\\x17\\x16\\x06+\\x01\\\"/\\x01&54?\\x01&5457\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x156;\\x0146;\\x012\\x16\\a\\x06\\a\\x16\\x17\\x16\\x06264&\\\"\\x06\\x14\\x02@\\x05\\n\\x05!\\v\\x18\\x05\\x13\\x10 \\t\\a@\\a\\t\\x86\\x18\\x1a\\x02\\t\\bB\\f\\x03\\x19\\x02\\x04\\x1a\\x1f\\x01\\x11\\t\\a\\x10\\a\\t4$\\x1d+\\xa0K5x\\x04\\x05\\x01\\x04\\x12\\a\\x06\\tG\\x0e\\t\\t\\x0e\\t\\x01sM\\x06\\f\\n\\x02\\r\\x05\\t\\v&\\af\\x01-!\\xb2\\a\\t\\t\\a\\x96\\x17@i\\b\\f\\fd\\a\\b\\f\\vD\\x1d)\\x02\\x03\\x03\\r\\x138\\a\\t\\t\\a8$4\\x01!5K\\x06\\x04\\x13\\v\\b\\a\\t \\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xc0\\x02G\\x01\\xc1\\x00\\x17\\x004\\x00\\x00\\x01\\x17\\x1e\\x013\\x15\\x14\\x06+\\x01'7'\\x17\\a\\x17#\\\"&=\\x01265%\\x16\\x0f\\x01\\x06/\\x01&\\x0f\\x01\\x06/\\x01&7%62\\x1f\\x01546;\\x012\\x16\\x1d\\x01\\x01 \\xdb\\x01\\x03\\x01\\t\\a\\xb0(h\\x94<h%\\x95\\a\\t\\x01\\x04\\x01\\xf6\\f\\v\\x15\\v\\f\\xe5\\v\\v\\xe5\\f\\n\\x16\\v\\f\\x01\\x00\\f\\x1e\\fe\\t\\a@\\a\\t\\x01M\\xc1\\x01\\x02\\xb9\\a\\t7@\\x89w@I\\t\\a\\xb9\\x02\\x01H\\v\\f\\x18\\f\\v\\xca\\n\\n\\xca\\v\\f\\x18\\f\\v\\xe2\\n\\nZ4\\a\\t\\t\\a\\x88\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00Z\\x00\\x00%#\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x06\\x15\\x14\\x16;\\x012?\\x016\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x06+\\x01\\\".\\x01'&7#\\\"&=\\x0146;\\x017#\\\"&=\\x0146;\\x017654&+\\x01\\\"\\x0f\\x01\\x06&/\\x01&6?\\x016;\\x012\\x16\\x17\\x16\\a32\\x16\\x1d\\x01\\x14\\x06\\x01pd\\\"\\x86\\a\\t\\t\\a\\xcc\\x1d\\a\\f\\tT\\t\\x06\\f\\b\\x13\\a\\x14\\a\\x02\\b\\f\\x1d%O\\x13#\\x1d\\t\\x1b\\x17*\\a\\t\\t\\ad\\\"\\x86\\a\\t\\t\\a\\xcc\\x1d\\a\\f\\tT\\t\\x06\\f\\b\\x13\\a\\x14\\a\\x02\\b\\f\\x1d%O\\x1c2\\x0e\\x1b\\x17*\\a\\t\\t\\xd0 \\t\\a \\a\\t\\x1b\\a\\t\\t\\f\\x06\\t\\a\\x02\\b\\x18\\b\\x14\\x06\\n\\x18\\v\\x17\\x10.0\\t\\a \\a\\t \\t\\a \\a\\t\\x1b\\a\\t\\t\\f\\x06\\t\\a\\x02\\b\\x18\\b\\x14\\x06\\n\\x18\\x1a\\x18.0\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x03\\xff\\xf1\\x00\\x00\\x02\\x95\\x01\\x80\\x00\\x17\\x00!\\x00+\\x00\\x00\\x012\\x17\\x16\\a\\x06\\a\\x06#\\\"/\\x01&\\\"\\x0f\\x01\\x06#\\\"&7676\\x06276'&\\\"\\a\\x06\\x17\\x04276'&\\\"\\a\\x06\\x17\\x01A\\xd7J2\\x1f\\x1b?\\x1d\\x1f?&\\x1a\\f'\\f\\x19&@Oa\\x13\\x17rJO^!\\t\\t!^!\\t\\t\\x011^!\\t\\t!^!\\t\\t\\x01\\x80mIWH\\x1e\\r8&\\x11\\x11&8\\x88P`,\\x1c\\xf4)\\v\\v))\\v\\v))\\v\\v))\\v\\v\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x02\\x81\\x01\\xc0\\x00\\x12\\x00\\x17\\x00\\x00\\x05\\x16\\x15\\x14\\a\\x06#!\\\"&'&547\\x0162\\x17\\x0f\\x01\\x1773\\x02{\\x05\\x04\\t\\x13\\xfd\\xc0\\b\\x10\\x04\\x04\\x05\\x01 \\n\\\"\\n\\x1bf&@U\\x0f\\b\\t\\b\\a\\x11\\n\\a\\a\\b\\t\\b\\x01\\xc0\\x0f\\x0fL\\x9f&@\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00K\\x00O\\x00S\\x00W\\x00\\x00%\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015!\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&=\\x01463!5#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15!2\\x16\\x15%35#\\x035#\\x15!5#\\x15\\x02\\x80\\t\\ah8\\r\\x13\\x13\\r\\xa0\\r\\x13\\x13\\r8\\xfe\\xd08\\r\\x13\\x13\\r\\xa0\\r\\x13\\x13\\r8h\\a\\t\\t\\a\\x01\\x18H\\r\\x13\\x13\\r\\xc0\\r\\x13\\x13\\rH\\x01\\x18\\a\\t\\xfe\\x80\\x80\\x80@`\\x01\\xc0`\\xb8\\a\\t(\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13((\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13(\\t\\a\\x10\\a\\t(\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13(\\t\\ax@\\xfe\\x80@@@@\\x00\\x00\\x00\\x03\\xff\\xf9\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00>\\x00F\\x00N\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01'\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x14\\x16;\\x012\\x16\\x14\\x06+\\x01\\\"&'&76=\\x0146;\\x0176;\\x022\\x1f\\x01\\x06\\\"\\x06\\x14\\x16264\\x17267#\\a\\x177\\x02`\\r\\x138(\\x17\\\\7\\x1c\\r\\x13\\t\\aPK\\x95@\\r\\x13\\t\\a\\xe0\\a\\t\\t\\ap\\r\\x13\\x13\\rl\\x1e0\\x05\\a\\x1e(pP8\\x99\\x0f\\x11\\x14\\x01\\x1a\\x13\\r9\\x0e\\t\\t\\x0e\\t\\x10\\x0f\\x19\\x05Mw\\x0ef\\x01\\xa0\\x13\\r (82n\\x13\\r\\x10\\a\\t\\x90P\\x13\\r\\x10\\a\\t\\t\\x0e\\t\\x13\\x1a\\x13%\\x1d*\\x1e&.\\x02PpX\\b\\x13\\r\\x10\\t\\x0e\\t\\t\\x0eW\\x12\\x0e;\\x1c7\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\v\\x00\\x17\\x00\\x1d\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x014$\\\"\\x06\\x15\\x14\\x1762\\x17654\\x05\\x1627&\\\"\\x93ړ\\x96Ԗ\\x01P\\xa0p\\vI\\xd8I\\v\\xfe\\xb89\\x9e9:\\x9c\\x01\\x80R>b;SS;b>\\x12/!\\r\\r**\\r\\r!Z\\x17\\x17\\x19\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xa0\\x01\\xc0\\x00\\a\\x00\\x15\\x00B\\x00\\x00\\x00\\\"&462\\x16\\x14\\a\\x16\\x1f\\x01\\a\\x06+\\x01\\\"&46;\\x01%2\\x16\\x14\\x06+\\x01\\\"/\\x01\\a\\x17\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x01'.\\x01?\\x01'&\\x0f\\x01\\x06.\\x016?\\x016\\x1f\\x01\\x16\\x1f\\x01\\x01$(\\x1c\\x1c(\\x1c\\xce\\f\\x1a\\n\\b\\r M\\r\\x13\\x13\\rC\\x01\\x1d\\r\\x13\\x13\\r6\\x1e\\r\\x14 >\\x0e\\f\\x05\\x1f\\a\\x18\\x05\\x05\\f\\f\\x03\\x1cU\\x15\\x0f\\n%\\x0f\\r\\f(\\n\\x1a\\x10\\x03\\v'%,G*\\x14\\x1a\\x01`\\x1c(\\x1c\\x1c(\\xf9\\x1c\\x0f\\x06\\x15\\x1d\\x13\\x1a\\x13\\x80\\x13\\x1a\\x13\\x1b)N$\\t\\x1e\\x0ff\\x16\\x02\\x03\\x18\\rW2\\r.\\x16W\\x05\\x03\\n\\x1e\\b\\x03\\x15\\x1b\\b\\x1e\\x1c\\v\\x15\\v(5\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00\\x122\\x16\\x1d\\x01#\\\"&=\\x014\\x01\\x14\\x06\\a\\x06&5\\x114'!2\\x16\\x15\\x11!\\x17!2\\x16\\x15\\x14\\x06#!265\\x1c(\\x1cP\\a\\t\\x01\\x00\\x1e\\x17\\x1e-\\x10\\x01P(8\\xfe\\xe0 \\x01P\\a\\tB.\\xfe\\xb0(8\\x01\\xc0\\x1c\\x14P\\t\\a@\\x14\\xfe\\u007f\\x18&\\x04\\x05'\\x1d\\x01p\\x1a\\x168(\\xff\\x00 \\t\\a.B8(\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x01\\xc2\\x01\\xc0\\x00#\\x007\\x00?\\x00G\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x1f\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01'.\\x015462\\x16\\x15\\x14\\x06\\a\\x17\\x16\\x06+\\x01\\\"&76\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x01\\xb7\\x06\\x04\\x03\\x0e\\x03\\r\\x05\\xbb\\xbb\\x05\\r\\x03\\x0e\\x03\\x04\\x06\\x8e\\x8e\\x06\\x04\\x03\\x0e\\x03\\r\\x05\\xbb\\xbb\\x05\\r\\x03\\x0e\\x03\\x04\\x06\\x8e\\x93 &TxT& \\x06\\x02\\v\\b~\\b\\n\\x02\\x94\\x1a\\x13\\x13\\x1a\\x13\\x83\\x1a\\x13\\x13\\x1a\\x13\\x05\\x03\\r\\x06\\x1c\\x06\\x04\\x03ZZ\\x03\\x04\\x06\\x1c\\x06\\r\\x03EE\\x03\\r\\x06\\x1c\\x06\\x04\\x03ZZ\\x03\\x04\\x06\\x1c\\x06\\r\\x03E\\x93\\x11:\\\"5KK5\\\":\\x11\\x1a\\n\\x0f\\x0f\\n\\x97\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x01\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00\\v\\x00\\x00\\x05\\x01&?\\x016\\x17\\x01\\x16\\x0f\\x01\\x06\\x02S\\xfd\\xb3\\f\\t\\x14\\n\\f\\x02M\\f\\t\\x14\\n=\\x01\\xc7\\n\\r\\x19\\f\\t\\xfe9\\n\\r\\x19\\f\\x00\\x00\\x03\\xff\\xf9\\xff\\xc0\\x02G\\x01\\xc2\\x00\\x13\\x00o\\x00\\x84\\x00\\x00\\x13'&54?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x17\\x06\\x0f\\x01#\\x05\\x16\\x0f\\x01\\x06/\\x01#\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01'\\x16\\x15\\x14\\x06\\\"&547\\a\\x15\\x14\\x06+\\x01\\\"&=\\x014?\\x01#\\a\\x06/\\x01&?\\x016;\\x01'&/\\x01&?\\x016\\x1f\\x0237>\\x032\\x1e\\x02\\x1f\\x013?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\x0f\\x0132\\x17/\\x01&6?\\x016\\x1e\\x01\\x1f\\x01\\x16\\x15\\x14\\x0f\\x02#'&'\\x97\\x1b\\x03\\x01\\x1a\\x02\\f\\x06\\x10\\x06\\x06\\x02\\x18\\x14\\x02\\x01\\x05\\x05\\x01\\x8c\\t\\r\\r\\x0e\\t0/=\\x05\\t\\a\\x10\\a\\tJ\\x027R7\\x02J\\t\\a\\x10\\a\\t\\x05=/0\\t\\x0e\\r\\r\\t4\\n\\x11NE\\n\\a5\\t\\r\\x0e\\r\\t2=$\\n\\x02\\a\\x0f\\x1c$\\x1c\\x0f\\a\\x02\\n$=2\\t\\r\\x0e\\r\\t5\\a\\nEN\\x11\\ns\\x18\\x02\\x06\\x06\\x10\\x04\\b\\x06\\x02\\x1a\\x01\\x03\\x1b\\x1a\\x05\\x05\\x01\\x02\\x01\\x196\\a\\a\\x05\\x05N\\x06\\x06\\x02\\x05\\x02\\f\\x06H(\\x06\\x06\\x1a\\xad\\x0e\\t\\b\\t\\rHa\\b\\tN\\a\\t\\t\\aIw\\x1e\\r(==(\\x0e\\x1dwI\\a\\t\\t\\aN\\t\\baH\\r\\t\\b\\t\\x0eO\\x0e\\x18\\x04\\tP\\x0e\\t\\b\\t\\rL\\x144\\x06\\x10\\x17\\x0f\\x0f\\x17\\x10\\x064\\x14L\\r\\t\\b\\t\\x0eP\\t\\x04\\x18\\x0e\\xacH\\x06\\f\\x02\\x05\\x01\\x01\\x06\\x04N\\x05\\x05\\a\\a6\\t\\x1a\\x06\\x06\\x00\\x00\\x00\\a\\xff\\xfe\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x1c\\x00$\\x00,\\x004\\x00<\\x00D\\x00L\\x00\\x00\\x13!\\x0e\\x02\\x1d\\x01\\x14\\x0e\\x01\\a\\x06#!\\\"&7>\\a=\\x0146\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x80\\x01\\x1c\\x12\\x1b\\x0f\\b\\b\\t\\a\\x17\\xfe\\xe7\\b\\n\\x03\\x03\\t\\x04\\x06\\x03\\x03\\x02\\x018\\x01\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t\\xa8P88P8S\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x13:J)\\xac\\x191\\x1a\\x1a\\x16\\r\\b\\t\\x1a\\r\\x13\\v\\x0f\\f\\x0e\\b\\xacPp\\xe0\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\xd7p\\xa0pp\\xa0\\x90%6%%6\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00m\\x00u\\x00z\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x132\\x16\\x1d\\x01\\x14\\x0f\\x01&#\\\"\\a#\\x15\\x14\\x06+\\x01\\x06\\a\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01&'\\a\\x06\\\"/\\x01&4?\\x01&'#\\\"&=\\x0146;\\x0167'&4?\\x016\\x17546;\\x012\\x1e\\x01\\x1f\\x01354762\\x1f\\x01\\x16\\a\\x06\\x1d\\x01\\x00264&\\\"\\x06\\x1473'#\\x15\\x01\\xecH44H4N\\x14\\x0e\\x0e\\x14\\x0eh\\r\\x13\\t3\\x19\\x1b;$Q\\r\\t\\a\\x05\\a\\x05\\x06\\x06\\x1f\\a\\x12\\x06\\x05\\x0e\\x0f\\r\\t,\\t\\r\\x0f\\x0e\\x05\\x06\\x12\\a\\x1f\\x06\\x06\\x05\\a\\x05\\a\\t\\r\\r\\t\\a\\x05\\a\\x05\\x06\\x06\\x1f\\x0e\\x0f\\x1c\\x14\\x85\\t\\x12\\x0e\\x048f\\x1e\\x04\\x0f\\x05\\x16\\t\\b\\r\\xfeoB//B/fn)kp4H44H<\\x0e\\x14\\x0e\\x0e\\x14\\x01\\x12\\x13\\r3\\r\\t3\\f0\\x06\\t\\r\\x0f\\x0e\\x05\\x06\\x12\\a\\x1f\\x06\\x06\\x05\\a\\x05\\a\\t\\r\\r\\t\\a\\x05\\a\\x05\\x06\\x06\\x1f\\a\\x12\\x06\\x05\\x0e\\x0f\\r\\t,\\t\\r\\x0f\\x0e\\x05\\x06\\x12\\a\\x1f\\r\\f\\x93\\x14\\x1c\\b\\r\\b\\x83(.$\\x06\\x05\\x18\\n\\n\\x11\\x16(\\xff\\x00/B//B\\xd1``\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x06\\x00\\n\\x00\\x14\\x00\\x19\\x00 \\x00(\\x00<\\x00\\x00\\x01\\a#>\\x0132\\x17#7\\x16\\x06\\\"&5473\\x16\\x15\\x14\\x0567\\x17#'547\\x15\\\"&%2\\x16\\x14\\x06+\\x01'72\\x16\\x1d\\x01\\x14\\x06+\\x01654&+\\x01'3\\x1627\\x01\\x15ZR\\x0f@(\\x1b\\\\gB\\x196jK\\x02\\xfc\\x02\\xfe\\xf0\\x0e\\x10b\\x80P0\\x14\\x1c\\x01\\x00\\x14\\x1c\\x1c\\x14\\r*q7O\\x1c\\x14P\\x10/!F*\\a#L#\\x01\\xb4D$,P2\\x15\\xcdK5\\x03\\r\\r\\x035w\\a\\x03\\xde0*=)\\xc0\\x1cD\\x1c(\\x1c`\\x80O7*\\x14\\x1c\\x16\\x1a!/`\\x10\\x10\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x1c\\x00$\\x00,\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\\".\\x01/\\x01&\\\"\\x0f\\x01\\x0e\\x01+\\x01\\\"&5\\x11463\\x16264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x14\\x02`\\r\\x13\\x13\\r\\xa0\\r\\x17\\x11\\x06\\x1b\\r:\\r\\x1b\\b \\x13\\xa0\\r\\x13\\x13\\re6%%6%\\x01e6%%6%\\x01\\x80\\x13\\r\\xfe\\xc0\\r\\x13\\t\\x11\\f=\\x1d\\x1d=\\x11\\x15\\x13\\r\\x01@\\r\\x13\\xf0%6%%6%%6%%6\\x00\\x00\\x03\\x00\\x00\\xff\\xd9\\x02\\n\\x01\\xa4\\x00 \\x00A\\x00[\\x00\\x0072\\x16\\x17\\x16\\x06#\\\"&'&6;\\x012\\x17\\x1632>\\x01'.\\x01+\\x01\\\"&=\\x014635\\\"&=\\x01463!2676&#\\\"\\a\\x06+\\x01\\\".\\x017>\\x02\\x1e\\x01\\x17\\x16\\x06#\\x172\\x16\\a\\x0e\\x01\\a\\x06&'&6;\\x012\\x17\\x163264&+\\x01&'\\x9d%9\\x04\\x06:+#5\\x06\\x02\\n\\b \\f\\x04\\a\\x17\\n\\x0f\\b\\x01\\x02\\x14\\f\\x8e\\a\\t\\t\\a\\a\\t\\t\\a\\x01N\\f\\x14\\x02\\x02\\x13\\x0f\\x17\\a\\x04\\f \\x05\\b\\x04\\x01\\x05!26(\\x06\\t:-06D\\r\\a/\\x1f+H\\x0e\\x03\\n\\b\\\"\\n\\x04\\x0e\\x1c\\x14\\x1c\\x1c\\x14t\\v\\x1d\\xc0/$,A,\\\"\\a\\v\\n\\x16\\n\\x12\\t\\f\\x0f\\t\\a \\a\\t \\t\\a \\a\\t\\x0f\\f\\x0e\\x17\\x16\\n\\x05\\t\\x04\\x19'\\x11\\v(\\x1b.G T7\\x1e.\\x06\\n+'\\b\\r\\b\\x18\\x1c(\\x1c&\\x1a\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\a\\x01\\xc7\\x00\\x1b\\x00\\x1f\\x00\\x00\\x01\\x16\\x0f\\x01\\x06'\\a\\x16\\x06\\x0f\\x01\\x06\\\"/\\x01&4?\\x01>\\x01\\x177&?\\x016\\x17\\x017'\\a\\x01\\xfb\\f\\f\\x16\\f\\vM\\x10\\x0f\\x1c\\x9e\\x135\\x13Z\\x13\\x13\\x9e\\x1cN#L\\v\\v\\x17\\v\\v\\xfe\\xfczZz\\x01w\\v\\v\\x17\\v\\vL#N\\x1c\\x9e\\x13\\x13Z\\x135\\x13\\x9e\\x1c\\x0f\\x10M\\v\\f\\x16\\f\\f\\xfe^zZz\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00-\\x00W\\x00\\x0062\\x16\\x14\\x06\\\"&4$2\\x16\\x14\\x06\\\"&4'\\x16\\x14\\a\\x16\\a\\x06#\\\"'\\x06\\\"'\\x06#\\\"'&7&47&6\\x1762\\x176\\x166\\x14\\x06+\\x01&'&#&\\\"\\a\\\"\\a\\x06\\a#\\\"&5467&54632\\x16\\x17632\\x16\\x15\\x14\\a:\\x0112\\x1c(\\x1c\\x1c(\\x1c\\x01\\xbc(\\x1c\\x1c(\\x1cG\\x17\\x17\\b\\x12\\f\\x11\\x05\\b\\f2\\f\\a\\x06\\x11\\f\\x12\\b\\x17\\x17\\b$\\x18\\f2\\f\\x19#\\x9f8(+\\x06\\t\\x15\\x1e\\x15<\\x15\\x1e\\x15\\t\\x06+(8%\\x1d\\x02B. 5\\x0e\\x18%!/\\x02\\x01\\x01(`\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x11\\f2\\f\\x19\\x11\\r\\x03\\x17\\x17\\x03\\r\\x12\\x18\\f2\\f\\x19#\\b\\x17\\x17\\b$\\x9bP8\\f\\n\\x15\\x15\\x15\\x15\\t\\r8(\\x1f2\\n\\v\\n.B!\\x1c\\x1d/!\\t\\a\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02B\\x01\\xc0\\x00\\x19\\x008\\x00E\\x00R\\x00_\\x00l\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467<\\x0114632\\x17632\\x16\\x176\\x16\\a\\x06#\\\"&\\\"'.\\x02'&'>\\x0132\\x17\\x1e\\x01\\a\\x0e\\x01\\x15\\x14\\x1e\\x02\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\x01^\\x1d%/!\\xff\\x00!/%\\x1b8(1\\x1d\\x10\\x12\\x1d,\\xdf\\x05\\x04\\x03+E\\x03\\x05\\x06\\x02\\x03\\x13\\x1d\\x13\\x10+\\x03T:\\r\\r\\x05\\x02\\x05\\x1a\\x1f\\x16%2\\xb2\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r\\xde\\x05,\\x1d!//!\\x1d,\\x05\\x01\\x01(8(\\b%\\x1b\\x01\\b\\x045\\x01\\x01\\x13#\\x19\\a+\\x13:P\\x02\\x01\\n\\x02\\x0f5\\x1e\\x1a.\\x1e\\x0e\\xbd\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1d\\x00+\\x00;\\x00J\\x00\\x00\\x012\\x16\\x14\\x06#!\\\"&5467&54632\\x16\\x17632\\x16\\x15\\x14\\a:\\x01\\x0562\\x17\\x1e\\x01\\x15\\x14\\x06\\\"&546762\\x17\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"&546762\\x17\\x1e\\x01\\x15\\x14\\x06\\\"&54>\\x01\\x01\\xa0(88(\\xfe\\xc0(8%\\x1d\\x02B. 5\\x0e\\x18%!/\\x02\\x01\\x01\\xfe\\xb8\\x02\\f\\x02\\x06\\\"\\x1c(\\x1c\\\"\\xa6\\x02\\f\\x02\\x06\\\"\\r\\x16\\r\\x14\\x1c\\\"\\xa6\\x02\\f\\x02\\x06\\\"\\x1c(\\x1c\\x0e\\x15\\x01@8P88(\\x1f2\\n\\v\\n.B!\\x1c\\x1d/!\\t\\a\\xf6\\x06\\x06\\x152\\x11\\x15\\x1d\\x1d\\x15\\x103\\x15\\x06\\x06\\x152\\x11\\x0e\\x17\\r\\x1d\\x15\\x103\\x15\\x06\\x06\\x152\\x11\\x15\\x1d\\x1d\\x15\\r\\x19 \\x00\\x00\\x00\\x00\\x06\\xff\\xfe\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\r\\x00\\x1b\\x00)\\x007\\x00E\\x00c\\x00\\x006\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x01>\\x01\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x016&\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x016$\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x016&\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x01672\\x16\\x14\\x06#!\\\"&5467&54632\\x16\\x17632\\x16\\x15\\x14\\a:\\x01\\xb2\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03m\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03\\xb3\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03\\x01\\x8d\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03S\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03;(88(\\xfe\\xc0(8%\\x1d\\x02B. 5\\x0e\\x18%!/\\x02\\x01\\x01Q\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\xf28P88(\\x1f2\\n\\v\\n.B!\\x1c\\x1d/!\\t\\a\\x00\\x00\\a\\xff\\xff\\xff\\xc0\\x02@\\x01\\xc1\\x00\\x1a\\x00E\\x00P\\x00]\\x00j\\x00w\\x00\\x84\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467<\\x0114632\\x17632\\x1e\\x01\\x05\\x16\\x17\\x06\\x15\\x14\\x161\\a\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x010\\\"1\\\"\\a&\\x06\\a\\x06\\x147\\x06\\a&54632\\x17\\x06\\x05\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\x01\\xfe\\x1d%/!\\xff\\x00!/$\\x1c8(1\\x1d\\x10\\x12\\x13\\\"\\x16\\xfe\\x81\\x03\\a\\x06\\x01;\\b\\v\\x02\\x19G\\a\\aG\\x19\\x02\\v\\bK#\\x04\\x10\\x04#K\\b\\v\\x02\\t\\x02% \\x1cI\\x1a\\x1cb\\x1b\\x12\\x15&\\x1a\\x12\\x10\\x1a\\x01D\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r\\xde\\x05,\\x1d!//!\\x1d,\\x05\\x01\\x01(8(\\b\\x11\\x1e5\\x02\\x06\\x12\\x12\\x02\\x05\\x14\\x02\\v\\bK#\\x04\\x10\\x04#K\\b\\v\\x02\\x19G\\a\\aG\\x19\\x02\\v\\b\\x1a\\x15\\x17\\x04\\x1a\\x1cP\\x1e\\f\\x19\\x13\\x1c\\x1a&\\n\\x1c\\xfc\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x00\\x05\\xff\\xfa\\xff\\xc0\\x02\\x87\\x01\\xc5\\x001\\x00J\\x00c\\x00|\\x00\\x90\\x00\\x00%\\x16\\x0f\\x01\\x06'.\\a'\\x15!'\\a\\x06+\\x01\\\"/\\x01&?\\x0167&'.\\x0176\\x1f\\x0176\\x16\\x17\\x16\\x06\\a\\x1732\\x16\\x17\\x056&#/\\x01&\\\"\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x14\\x16?\\x01\\x17\\x1665'76&#/\\x01&\\\"\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x14\\x16?\\x01\\x17\\x1665'76&#/\\x01&\\\"\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x14\\x16?\\x01\\x17\\x1665'\\x055!\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&\\x02}\\t\\r\\x1b\\r\\t\\x03\\b\\x04\\x06\\x03\\x04\\x04\\x05\\x03\\xfe\\xa06&\\n\\r\\x1f\\x13\\t\\x0f\\b\\vK\\x01\\x05\\b\\x03\\f\\x03\\t\\x05\\a+*\\x03\\n\\x02\\f\\x04\\x0fQ\\xec&C\\x15\\xfe\\xbe\\x02\\x01\\x03\\x17\\n\\x02\\x06\\x01\\v\\x16\\x03\\x02\\x02\\x10\\x04\\x05\\x03\\x14\\x14\\x03\\x05\\x04\\x80\\x02\\x01\\x03\\x17\\n\\x02\\x06\\x01\\v\\x16\\x03\\x02\\x02\\x10\\x04\\x05\\x03\\x14\\x14\\x03\\x05\\x04\\x80\\x02\\x01\\x03\\x17\\n\\x02\\x06\\x01\\v\\x16\\x03\\x02\\x02\\x10\\x04\\x05\\x03\\x14\\x14\\x03\\x05\\x04\\xfe\\xc8\\x01`\\t\\a@\\a\\t\\xa0\\t\\a@\\a\\t\\xbf\\r\\t\\x12\\t\\x0e\\x04\\r\\x05\\t\\x03\\x06\\x03\\x04\\x03Nl#\\t\\x12\\x1c\\x12\\x10c\\x01\\x04\\x05\\x03\\f#\\r\\t\\a+*\\x03\\x01\\x04\\x11*\\x0fQ$ \\x0f\\x02\\x06\\x03\\x15\\x03\\x03\\x15\\x03\\x06\\x02\\x10\\x17\\x03\\x04\\x02\\n\\n\\x02\\x04\\x03\\x17\\x10\\x02\\x06\\x03\\x15\\x03\\x03\\x15\\x03\\x06\\x02\\x10\\x17\\x03\\x04\\x02\\n\\n\\x02\\x04\\x03\\x17\\x10\\x02\\x06\\x03\\x15\\x03\\x03\\x15\\x03\\x06\\x02\\x10\\x17\\x03\\x04\\x02\\n\\n\\x02\\x04\\x03\\x17퐐\\a\\t\\t\\aPP\\a\\t\\t\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc5\\x00\\r\\x00\\x1f\\x001\\x00U\\x00]\\x00e\\x00m\\x00y\\x00\\x00\\x122\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x114\\x01\\x16327\\x15\\x14\\a\\x0e\\x01.\\x01\\x06\\a5>\\x01\\x167\\x16327\\x15\\x0e\\x01&'.\\x01\\x06\\a5>\\x01\\x167&'\\x15\\x16\\x17\\x16327\\x15\\x0e\\x01&'.\\x01\\x06\\a5>\\x01\\x1e\\x02676\\x16\\x1d\\x01\\x0e\\x02.\\x01\\x06264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x147264&\\\"\\x06\\x15\\x14\\x1e\\x02\\x13\\x1a\\x13\\t\\a \\a\\t\\x01,>&3=\\x121S?AW3+O-%>&3=+O-%&.T,+O-.\\f\\t\\x05\\a5!6H+O-%&.T,1N.1(A(\\x11 \\x1f4$)\\x16\\xb1\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t\\x10\\a\\t\\t\\x0e\\t\\x03\\x04\\x06\\x01\\xc0\\x13\\r\\xfe0\\a\\t\\t\\a\\x01\\xd0\\r\\xfe\\xe3\\x10\\x18$\\x15\\b\\x15\\x03\\x13\\x11\\n\\x19E\\x13\\t\\aV\\x10\\x18>\\x12\\t\\a\\t\\n\\b\\b\\x11=\\x13\\t\\at\\x04\\x02!\\x01\\x02\\x10\\x1fE\\x12\\t\\a\\t\\n\\b\\b\\x11\\x98\\x16\\r\\v\\x0f\\r\\v\\x15\\t\\x11\\x13\\x1f\\x0e\\x10\\x05\\x04\\x05(\\t\\x0e\\t\\t\\x0e/\\t\\r\\n\\n\\r9\\t\\r\\n\\n\\r/\\t\\r\\n\\n\\x06\\x04\\x06\\x04\\x02\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00)\\x001\\x00<\\x00I\\x00\\x00\\x01\\x06\\a\\x16\\x17\\x16\\x15\\x14\\a\\x06\\a\\x0e\\x01\\x15\\x0e\\x01#\\\"&546726767632\\x17\\x16\\x1767632\\x16\\x15\\x14\\x024&\\\"\\x06\\x14\\x162'\\x14\\x0e\\x01#\\\"&462\\x1e\\x01\\x14\\x0e\\x01\\\".\\x0154632\\x16\\x01\\xff\\x1d \\x0f\\x04\\v\\x02LB\\x01\\x02\\x18Q!Qr!\\x18\\x01\\x02\\x01D\\x92\\x03\\x04\\f\\x04\\x01\\x04[a\\x02\\x03\\a\\t\\xc0KjKKj5\\t\\x0e\\t\\r\\x13\\x13\\x1a\\x13 \\x04\\b\\b\\b\\x04\\t\\a\\x04\\b\\x01\\xaba[\\x04\\x01\\x04\\v\\x04\\x04\\x92D\\x01\\x02\\x01\\x18!rQ!Q\\x18\\x02\\x01BL\\x02\\v\\x03\\x10 \\x1d\\x01\\t\\a\\x03\\xfe\\x9ejKKjK\\xa0\\t\\x0e\\t\\x13\\x1a\\x13\\x13Y\\b\\b\\x04\\x04\\b\\x04\\a\\t\\x04\\x00\\x06\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\t\\x005\\x00=\\x00R\\x00Y\\x00f\\x00\\x00\\x1753\\x15\\x14\\x06+\\x01\\\"&\\x132\\x16\\x14\\x06+\\x01\\\"/\\x01\\x15\\x17\\x16\\x1d\\x01\\x14\\x06#\\\".\\x01=\\x01'0&5\\x15\\x14\\x06#\\\".\\x01=\\x0246;\\x012\\x1f\\x01&\\\"&462\\x16\\x14753\\x11\\x14\\x06\\\"&5\\x14\\x06#\\\"&'\\x06#\\\"&?\\x01'46;\\x01\\x15#%2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11\\xc0@\\t\\a \\a\\t \\r\\x13\\x13\\r:\\x13\\x0e\\x15)\\a\\x13\\r\\t\\x0f\\b\\x1e\\x02\\x13\\r\\t\\x0e\\t&\\x1a\\x13\\x1a\\x13-Y(\\x1c\\x1c(\\x1c\\xb0\\xc0\\x13\\x1a\\x13\\x13\\r\\r\\x12\\x01\\x06\\x1a\\x0e\\x15\\x04\\x1f\\x80\\x13\\r @\\x01`\\r\\x13\\t\\a \\a\\t0\\xb0\\xb0\\a\\t\\t\\x01\\x17\\x13\\x1a\\x13\\x0e\\x15Q=\\r\\x108\\r\\x13\\t\\x0e\\t8+\\x01\\x01e\\r\\x13\\t\\x0e\\t\\xa0`\\x1a&\\x13-`\\x1c(\\x1c\\x1c(D \\xfe`\\r\\x13\\x13\\r\\r\\x13\\x12\\f\\x1e\\x17\\x0f\\x9b\\xdf\\r\\x13\\xc0\\xc0\\x13\\r\\xfe0\\a\\t\\t\\a\\x01\\xf0\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00M\\x00\\x00%2\\x16\\x0f\\x01\\x06#\\\"&?\\x01#\\\".\\x01576;\\x012\\x16\\x0f\\x017\\x1e\\x01\\x15\\x14\\x06+\\x0176'&+\\x0176&+\\x01\\\"\\x06\\x0f\\x01\\x15#\\\"&5467&546;\\x012654'632\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\x014\\a\\a\\x04X\\x03\\a\\x06\\a\\x01\\x17;\\x04\\x05\\x03\\x10\\x02\\nD\\x06\\a\\x01\\x12|\\x1f+/!\\x1e\\b\\r\\r\\r\\x19\\x10\\x06\\x06\\x1a\\x16D\\x10\\x19\\x03\\x100!/+\\x1f\\n&\\x1a\\x10!/\\x0f\\t\\x06(8\\x06\\x06\\x1a&p\\f\\x06\\x98\\x06\\t\\x06a\\x04\\x06\\x04x\\n\\t\\x06Ao\\x02.\\x1f!/\\x0e\\x16\\x16\\x16\\x19\\x15\\\"\\x16\\x10x\\x02/!\\x1f.\\x02\\x10\\x11\\x1a&/!\\x19\\x15\\x028(\\x0f\\x11&\\x1a\\x11\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa5\\x00\\x1e\\x00<\\x00Z\\x00\\x00\\x016\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&'&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x176\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&'&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x176\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x01\\fS\\x8eS\\t\\a \\a\\toSf\\x98\\t\\a \\a\\t\\x9blW\\x82\\t\\a \\a\\tB19T\\t\\a \\a\\t_N\\x1e5 \\t\\a \\a\\t\\x13\\x1a\\x13\\t\\a \\a\\t+\\x01\\x9f\\x06K\\x89Q\\x90\\a\\t\\t\\a\\x88V\\x85\\v\\r\\x86e\\x90\\a\\t\\t\\a\\x86t\\xaeZ\\ftV\\x90\\a\\t\\t\\a\\x8a3N\\x04\\x06M8\\x90\\a\\t\\t\\a\\x89JrW\\x06\\x170\\x1d\\x90\\a\\t\\t\\a\\x90\\r\\x13\\x13\\r\\x90\\a\\t\\t\\a\\x8c#9\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xde\\x02\\x80\\x01\\xa0\\x00\\t\\x00\\\"\\x00;\\x00T\\x00\\x80\\x00\\x00\\x01\\x15!546;\\x012\\x16\\x056&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x0176&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x0176&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x01\\x172\\x16\\x1d\\x01\\x14\\x0e\\x01'.\\x01=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x1626=\\x01463\\x02 \\xfd\\xe0^B\\xe0B^\\xfe\\x90\\x03\\x02\\x04\\x1b\\r\\x01\\b\\x01\\r\\x1b\\x04\\x02\\x03\\x14\\x05\\x01\\x06\\x04\\x18\\x18\\x04\\x06\\x01\\x05\\xa4\\x03\\x02\\x04\\x1b\\r\\x01\\b\\x01\\r\\x1b\\x04\\x02\\x03\\x14\\x05\\x01\\x06\\x04\\x18\\x18\\x04\\x06\\x01\\x05\\xa4\\x03\\x02\\x04\\x1b\\r\\x01\\b\\x01\\r\\x1b\\x04\\x02\\x03\\x14\\x05\\x01\\x06\\x04\\x18\\x18\\x04\\x06\\x01\\x05\\xb4\\a\\t\\x18)\\x17\\x1f) \\t\\a`\\a\\t\\xc0\\t\\a`\\a\\t\\x02 \\t\\x0e\\t\\t\\a\\x01\\x00@@B^^,\\x02\\a\\x01\\x04\\x19\\x03\\x03\\x19\\x04\\x01\\a\\x02\\x14\\x1b\\x04\\x04\\x02\\r\\r\\x02\\x04\\x04\\x1b\\x14\\x02\\a\\x01\\x04\\x19\\x03\\x03\\x19\\x04\\x01\\a\\x02\\x14\\x1b\\x04\\x04\\x02\\r\\r\\x02\\x04\\x04\\x1b\\x14\\x02\\a\\x01\\x04\\x19\\x03\\x03\\x19\\x04\\x01\\a\\x02\\x14\\x1b\\x04\\x04\\x02\\r\\r\\x02\\x04\\x04\\x1b\\x82\\t\\a@\\x17'\\x14\\x02\\x041 +p\\a\\t\\t\\aPP\\a\\t\\t\\a\\xb0p\\a\\t\\t\\a@\\a\\t\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00G\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463'\\\"&4632\\x17632\\x16\\x17632\\x16\\x14\\x06+\\x01\\x06\\\"'\\x02p\\a\\t\\t\\a\\xfd\\xe0\\a\\t\\t\\a@\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x02 \\a\\t\\t\\a\\xfe\\xb0\\a\\t\\t\\aP<TT<=++=(D\\x12\\x18\\x1a.BB.<%^%P\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t`\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xb0TxT--*\\\"\\fB\\\\B  \\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00A\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\a\\x15\\x16\\x15\\x14\\x06\\\"&5475462\\x16\\x022654'54&\\\"\\x06\\x1d\\x01\\x06\\x15\\x147\\x1e\\x01\\x15\\x14\\x06\\\"&54675462\\x16\\x15\\x01xP88P8S\\x1a\\x13\\x13\\x1a\\x13\\x80 TxT B\\\\B\\x91B/ \\x1c(\\x1c `\\x0e\\x12\\x1c(\\x1c\\x12\\x0e\\t\\x0e\\t\\x01\\xc08P88PH\\x13\\x1a\\x13\\x13\\x1a\\x03\\xa6(2<TT<1)\\xa6.BB\\xfe\\x82/!(\\x18\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x18(!N\\x05\\x19\\x0f\\x14\\x1c\\x1c\\x14\\x0f\\x19\\x05\\xd3\\a\\t\\t\\a\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00A\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\a\\x15\\x16\\x15\\x14\\x06\\\"&5475462\\x16\\x022654'54&\\\"\\x06\\x1d\\x01\\x06\\x15\\x147\\x1e\\x01\\x15\\x14\\x06\\\"&54675462\\x16\\x15\\x01xP88P8S\\x1a\\x13\\x13\\x1a\\x13\\x80 TxT B\\\\B\\x91B/ \\x1c(\\x1c `\\x0e\\x12\\x1c(\\x1c\\x12\\x0e\\t\\x0e\\t\\x01\\xc08P88PH\\x13\\x1a\\x13\\x13\\x1a\\x03\\xa6(2<TT<1)\\xa6.BB\\xfe\\x82/!(\\x18\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x18(!N\\x05\\x19\\x0f\\x14\\x1c\\x1c\\x14\\x0f\\x19\\x05\\x13\\a\\t\\t\\a\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1f\\x00+\\x00;\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x15#\\\"\\x1d\\x01\\x143!2=\\x014+\\x015\\a!\\x114>\\x023!2\\x16\\x15\\x05\\x06\\x1f\\x01\\x16?\\x016/\\x01&\\x0f\\x01'&\\a\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r@\\x16\\n\\n\\x01\\xec\\n\\n\\x16 \\xfe\\x80\\x05\\t\\f\\x06\\x01@\\r\\x13\\xfe\\xd3\\a\\aJ\\b\\a\\x81\\b\\b\\x19\\b\\b_)\\b\\a\\x80\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13@\\b\\x10\\b\\b\\x10\\b@@\\x01@\\x06\\f\\t\\x05\\x13\\r\\x8a\\b\\aK\\b\\b\\u007f\\b\\a\\x1a\\b\\b^)\\b\\b\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xff\\x02@\\x01\\x81\\x00,\\x00X\\x00\\x84\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01#&'\\x06\\\"'\\x06\\\"'\\x0e\\x01\\a\\\"&=\\x0146767>\\x01\\x17\\x1e\\x017>\\x01\\x17\\x1e\\x01762\\x17\\x167\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01#&'\\x06\\\"'\\x06\\\"'\\x06\\a\\\"&=\\x0146767>\\x01\\x17\\x1e\\x017>\\x01\\x17\\x1e\\x01762\\x17\\x167\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01#&'\\x06\\\"'\\x06\\\"'\\x06\\a\\\"&=\\x0146767>\\x01\\x17\\x1e\\x017>\\x01\\x17\\x1e\\x01762\\x17\\x16\\x022\\x06\\b\\x05\\a\\x05+$)l+)l+\\x11)\\x15\\a\\n\\b\\x06!\\x18\\v\\x1a\\n\\x1dX\\x1d\\n\\x1a\\n\\x1dY\\x1c\\v\\x1b\\n\\x19!\\x06\\b\\x05\\a\\x05+$)l+)l+#,\\a\\n\\b\\x06!\\x18\\v\\x1a\\n\\x1dX\\x1d\\n\\x1a\\n\\x1dY\\x1c\\v\\x1b\\n\\x19!\\x06\\b\\x05\\a\\x05+$)l+)l+#,\\a\\n\\b\\x06!\\x18\\v\\x1a\\n\\x1dX\\x1d\\n\\x1a\\n\\x1dY\\x1c\\v\\x1b\\n\\x18@\\x01\\t\\x06 \\x04\\b\\x04\\x04\\x16\\x1a\\x1a\\x1a\\x1a\\v\\r\\x02\\t\\a \\x06\\t\\x01\\x04\\x12\\t\\x02\\t\\x17\\x01\\x17\\b\\x02\\t\\x17\\x01\\x17\\b\\b\\x13\\x8c\\x01\\t\\x06 \\x04\\b\\x04\\x04\\x16\\x1a\\x1a\\x1a\\x1a\\x16\\x04\\t\\a \\x06\\t\\x01\\x04\\x12\\t\\x02\\t\\x17\\x01\\x17\\b\\x02\\t\\x17\\x01\\x17\\b\\b\\x13\\x8c\\x01\\t\\x06 \\x04\\b\\x04\\x04\\x16\\x1a\\x1a\\x1a\\x1a\\x16\\x04\\t\\a \\x06\\t\\x01\\x04\\x12\\t\\x02\\t\\x17\\x01\\x17\\b\\x02\\t\\x17\\x01\\x17\\b\\b\\x13\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xc0\\x01\\x83\\x01\\xc0\\x00\\a\\x00\\x16\\x00%\\x00=\\x00\\x00\\x12\\\"&462\\x16\\x14\\x03\\x17\\x16\\x06\\a\\x06#\\\"/\\x01&4?\\x01\\x177\\x17\\x16\\x14\\x0f\\x01\\x06#\\\"'.\\x01?\\x01'6\\x16\\x06\\x0f\\x01\\x06\\a\\x15#5&/\\x01.\\x01>\\x01\\x1f\\x01\\x162?\\x016\\xe1B//B/\\x85\\x1d\\n\\x05\\r\\v\\r\\x14\\f0\\b\\t.=u.\\t\\b0\\f\\x14\\r\\v\\r\\x05\\n\\x1d\\x19\\x93\\x13\\x05\\x0e)\\x17\\x1f\\xa0\\x1f\\x17)\\x0e\\x05\\x13 \\x0e)'b')\\x0e\\x01 /B//B\\xfe\\xd8'\\r!\\n\\b\\x10@\\v\\x1b\\v9339\\v\\x1b\\v@\\x10\\b\\n!\\r' \\xf6\\x1c \\n\\x1c\\x11\\v\\x1f\\x1f\\v\\x11\\x1c\\n \\x1c\\x05\\t\\x1d\\x1b\\x1b\\x1d\\t\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc3\\x00\\a\\x002\\x00:\\x00B\\x00\\x00\\x13\\x17!4676\\x16\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\a\\x1e\\x01\\x15\\x14\\x06\\\"&547\\x06\\\"'\\x16\\x15\\x14\\x06\\\"&54>\\x017&5!5463\\x00264&\\\"\\x06\\x14 4&\\\"\\x06\\x14\\x162\\x91o\\xff\\x000+\\f!\\x01h\\a\\t\\t\\a0<\\x1a\\\"/B/\\x04!F!\\x04/B/\\x10\\x1b\\x11<\\x01\\x80&\\x1a\\xfe\\x83\\x1a\\x13\\x13\\x1a\\x13\\x01`\\x13\\x1a\\x13\\x13\\x1a\\x01\\xaf\\xaf6`\\\"\\n\\x06\\\\\\t\\a \\a\\t@K8\\x06+\\x1c!//!\\f\\r\\t\\t\\r\\f!//!\\x12!\\x16\\x048K@\\x1a&\\xfe\\x90\\x13\\x1a\\x13\\x13\\x1a\\x1a\\x13\\x13\\x1a\\x13\\x00\\x00\\x00\\x00\\x05\\xff\\xfe\\xff\\xb6\\x02B\\x01\\xc3\\x00\\n\\x00\\x15\\x00 \\x00g\\x00o\\x00\\x00\\x01\\\"\\a&'62\\x17\\x06\\a&\\x03.\\x01'632\\x17\\x16\\x17\\x06767632\\x17\\x0e\\x01\\a&7\\x16\\x17\\x16\\x06'&'&\\x0e\\x01\\x16\\x17\\x16\\x17\\x16\\x14\\a\\x06'&'\\x06\\a\\x06'&4767>\\x01.\\x01\\a\\x06\\a\\x06&76767&5476\\x16\\a\\x06\\x15\\x14\\x1632>\\x0154'&6\\x17\\x16\\x15\\x14\\a\\x16\\x06264&\\\"\\x06\\x14\\x01 \\x19\\x1c\\x14\\t'V'\\t\\x14\\x1c\\x95%,\\x03\\v\\f\\f\\x0e\\x065\\x06\\xce4\\x06\\x0f\\f\\v\\v\\x03,$\\x12k6\\x14\\x03\\f\\x04\\x0e\\x0f+`2\\x1a+\\x0f\\x14\\a\\a=6\\x19\\x14\\x14\\x196>\\x06\\x06\\x15\\x0f+\\x1a2`+\\x0f\\x0e\\x04\\f\\x02\\x156\\x18\\x1f\\n)\\x04\\f\\x02\\aF2!7 \\a\\x02\\f\\x04)\\n\\x1f\\xd1(\\x1c\\x1c(\\x1c\\x01P\\n\\x10\\x19\\x11\\x11\\x19\\x10\\n\\xfe\\xb9\\x1bP/\\x03\\x05C*\\x19\\x19*C\\x05\\x03/P\\x1b\\x12\\xe6 =\\x06\\a\\x05\\x10\\t\\x1a\\x1bXb\\x1a\\t\\x04\\x01\\x0e\\x01\\f \\x0f\\x19\\x19\\x0f \\f\\x01\\x0e\\x01\\x05\\b\\x1abX\\x1b\\x1a\\b\\x11\\x05\\a\\x06= \\x0e\\x06\\x1d\\x1b?1\\x05\\x06\\a\\x14\\x123H!8\\\"\\x12\\x14\\a\\x06\\x050@\\x1b\\x1d\\x06\\x8f\\x1c(\\x1c\\x1c(\\x00\\x00\\x03\\x00\\x00\\xff\\xb4\\x02\\x01\\x01\\xc0\\x00 \\x004\\x00I\\x00\\x007\\x1e\\x01\\a\\x0e\\x01\\a\\x06&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x162654.\\x01'&=\\x01467\\x1e\\x01\\x17\\x14\\x06+\\x01\\\"&5.\\x01'.\\x01=\\x0146\\x17\\x1e\\x01\\x17\\x14\\x06+\\x01\\\"&5.\\x01'\\\".\\x01=\\x0146\\xac:D\\r\\t<)Ej\\x0e\\n0\\n\\x0e\\x1c(\\x1c\\b\\x0e\\t\\x11\\x110z\\xaf\\x06\\t\\a \\a\\t\\x06\\x8aa\\x06\\t\\n\\aSv\\x06\\t\\a \\a\\t\\x05S9\\x04\\a\\x04\\n\\xdd\\vd=)<\\t\\x0eWD\\xf8\\n\\x0e\\x0e\\n\\xf8\\x14\\x1c\\x1c\\x14\\n\\x12\\x0e\\x03\\x06\\x102\\f\\x0e\\xe1\\x06\\xafz\\a\\n\\t\\x06a\\x8b\\x05\\x01\\t\\x06 \\a\\t`\\x06vS\\a\\n\\b\\a:R\\x05\\x05\\a\\x04 \\a\\n\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x19\\x007\\x00\\x00\\x15\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06%2\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c@\\t\\a`\\a\\t\\t\\a`\\a\\t\\x01P\\x14\\x1c\\xfe@\\x1c\\x140\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x01\\x10\\xfe\\xf0\\x14\\x1c\\x1c\\xd4`\\a\\t\\t\\a`\\a\\t\\t\\xc9\\x1c\\x1400\\x14\\x1c0\\a\\t\\t\\a00\\a\\t\\t\\a0\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x19\\x007\\x00\\x00\\x15\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14\\x163!26=\\x014&#!\\\"\\x06%2\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c@\\t\\a\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t\\x01P\\x14\\x1c\\xfe@\\x1c\\x140\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x01\\x10\\xfe\\xf0\\x14\\x1c\\x1c\\xd4@\\a\\t\\t\\a@\\a\\t\\t\\xc9\\x1c\\x1400\\x14\\x1c0\\a\\t\\t\\a00\\a\\t\\t\\a0\\x00\\a\\xff\\xfd\\xff\\xc0\\x02\\f\\x01\\xc0\\x00\\\"\\x00)\\x00-\\x001\\x005\\x00;\\x00C\\x00\\x00\\x01\\x16\\x06\\a\\x05\\x06#\\\"/\\x01&67%>\\x01'&#\\\"\\x0f\\x01\\x06#\\\"/\\x01&6?\\x01632\\x16\\a67'\\x06\\a\\x17\\x037'\\a?\\x01'\\a?\\x01'\\a7\\x16\\x177&'\\x1767'\\x14\\a\\x06\\a\\x01\\xf2\\x1a)6\\xfe\\xa4\\b\\b\\x12\\n \\a\\x06\\f\\x01a\\f\\x06\\a\\t\\x12\\t\\b\\x1b\\b\\t\\x12\\t!\\a\\a\\v\\x1c%,.O\\x9d\\f\\x10\\x15\\x10\\x0e\\x14\\xab\\x1f=\\x1f\\xa8\\x1f<\\x1f\\xab\\x1f<\\x1fQ\\x0e\\t-\\n\\f$\\a\\x03=\\x01\\x02\\x06\\x01d9w!\\xcf\\x04\\x106\\f\\x1a\\x06\\xd2\\a\\x1a\\v\\x10\\x04\\x11\\x04\\x0f7\\v\\x1a\\a\\x10\\x1718\\a\\x01>\\x03\\a=\\xfe\\xba\\x12'\\x12\\x19\\x12'\\x12\\x1b\\x12'\\x13\\x9f\\b\\x0e.\\r\\t\\x99\\x0e\\x10\\x14\\a\\a\\b\\t\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xbe\\x02\\x00\\x01\\xc0\\x00\\x1d\\x00*\\x00\\x00\\x01\\x1e\\x01\\a\\x06\\x0f\\x01'&\\a\\x06\\x14\\x1f\\x01\\a\\x06&'&7\\x13\\x17\\x16276/\\x01>\\x0176\\x16\\x17\\x0e\\x01/\\x01&67\\x1e\\x01\\x01*.\\\"\\x17\\x12'f9\\v\\v\\x05\\x051\\x86\\b\\x12\\x04\\x04\\x04\\x803\\x04\\r\\x05\\f\\f7\\x1bS\\x84\\x1eD\\x18\\x1fX!\\b\\\"\\x04&\\x1d\\x10\\x01#\\x16b.&\\x1329\\f\\f\\x04\\x0e\\x041B\\x04\\x06\\t\\t\\n\\x01\\a2\\x05\\x05\\v\\v8 \\x13\\x10\\x0f\\x10\\x1d&\\x04\\\"\\b!X\\x1f\\x18D\\x00\\x00\\x00\\n\\xff\\xff\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00+\\x00;\\x00K\\x00[\\x00_\\x00o\\x00\\u007f\\x00\\x8b\\x00\\x9b\\x00\\xab\\x00\\x00%\\x16\\x1d\\x01\\x14\\x0e\\x02#!\\\"&=\\x014?\\x01>\\x01;\\x015#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x17\\a\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\a\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&#'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&'35#\\x1726=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x163\\x17\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x15\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01\\xff\\x01\\x05\\t\\f\\x06\\xfe@\\r\\x13\\x01\\x1b\\x01\\x12\\fU`\\a\\t\\t\\a\\x01\\x00\\a\\t\\t\\a`\\xf5\\f\\x11\\x02\\xcc\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t \\a\\t\\t\\a\\x10\\a\\t\\t\\a0\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\x8f\\xc0\\xc0(\\a\\t\\t\\a\\x10\\a\\t\\t\\a \\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xd8\\b\\xb0\\b\\b\\xb0\\b\\x18\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t0\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\tE\\x05\\x05[\\a\\v\\t\\x05\\x13\\r[\\x05\\x05\\xa0\\f\\x0f@\\t\\a`\\a\\t\\t\\a`\\a\\t@\\x0f\\f\\x1d\\x10\\a\\t\\t\\a\\x10\\a\\t\\tG\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\tP\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\x98 \\xe8\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t@\\a\\t\\t\\a\\x10\\a\\t\\t\\a\\x80\\x10\\b\\b\\x10\\bx\\x10\\a\\t\\t\\a\\x10\\a\\t\\tW\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\x00\\x00\\x04\\x00\\x00\\xff\\xb9\\x02\\x00\\x01\\xc0\\x00\\x15\\x00+\\x00@\\x00V\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06\\\"/\\x01&4?\\x01'&637\\\"&=\\x0146\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x16\\x06#\\a\\x17\\x16\\x14\\x0f\\x01\\x06/\\x01\\a\\x06&=\\x0146;\\x012\\x16\\a\\x016\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&?\\x01'&4?\\x0162\\x1f\\x01\\xc8\\n\\x0e\\x1e\\v\\x1fc\\x05\\r\\x05\\x19\\x05\\x05c!\\v\\f\\x10\\xe0\\n\\x0e\\x1e\\v\\x1fc\\x05\\r\\x05\\x19\\x05\\x05c!\\v\\f\\x10\\x10c\\x05\\x05\\x19\\v\\fc\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v\\xfe\\xfe\\v\\x1e\\x0e\\np\\x10\\f\\v!c\\x05\\x05\\x19\\x05\\r\\x05c\\xa0\\x0e\\np\\x10\\f\\v!c\\x05\\x05\\x19\\x05\\r\\x05c\\x1f\\v\\x1e@\\x0e\\np\\x10\\f\\v!c\\x05\\x05\\x19\\x05\\r\\x05c\\x1f\\v\\x1e\\x88c\\x05\\r\\x05\\x19\\f\\fc!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x01\\x02\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1fc\\x05\\r\\x05\\x19\\x05\\x05c\\x00\\x00\\x00\\x05\\xff\\xfe\\xff\\xe0\\x02B\\x01\\xa0\\x00\\b\\x00\\f\\x00\\x10\\x00\\x19\\x00C\\x00\\x00\\x01#'32\\x1f\\x01\\x16\\x06%\\x15#73\\x17#5\\x05\\\"&?\\x016;\\x01\\a\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01'#\\\"&=\\x0146;\\x01'!\\a\\x020a\\x1ac\\f\\x04\\x18\\x01\\t\\xfe\\xd8~\\x1a\\xe8\\x1a~\\xfe\\xe0\\b\\t\\x01\\x18\\x04\\fc\\x1a\\x01\\xbf\\a\\t\\t\\a\\x1c\\x14\\t\\a \\a\\t\\xfe\\xc0\\t\\a \\a\\t\\x14\\x1c\\a\\t\\t\\a\\x14\\x04\\x02\\x00\\x04\\x01 \\x80\\f`\\b\\f\\x80\\x80\\x80\\x80\\x80\\x80\\f\\b`\\f\\x80@\\t\\a \\a\\t\\xa0\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t  \\x00\\x00\\x00\\x00\\a\\xff\\xfe\\xff\\xe0\\x02\\x80\\x01\\xa1\\x00\\x05\\x00\\t\\x00\\x1c\\x00%\\x00?\\x00N\\x00^\\x00\\x00\\x01\\x06\\a#53#\\x15#7\\x05/\\x0132\\x1f\\x012\\x0610'&/\\x01\\a\\x06\\a&\\x05\\\"&?\\x016;\\x01\\a\\x17\\x06\\x15\\x14\\x17#\\x15\\x14\\x06+\\x01\\\"&=\\x01'#\\\"&=\\x0146;\\x01'%\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x16\\x176\\x17>\\x01'&'\\a&'\\x0e\\x01\\x15\\x14\\x1632\\x01\\xa3\\x1d\\x19=d\\x84~\\x1a\\x01!\\f\\fc\\r\\x02\\x18\\x01\\x01\\x01\\x01\\x01\\x15\\x15\\a\\v\\x17\\xfe'\\b\\t\\x01\\x18\\x04\\fc\\x1a\\xe451\\xd1\\t\\a \\a\\t\\x14\\x1c\\a\\t\\t\\a\\x14\\x04\\x02\\a%4^\\x84^D4(\\x1f\\x13\\x02\\x19\\f\\x0e\\x03\\x05'?\\x05\\x1b\\x163&\\x1d\\x01X\\x19\\x1f\\x80\\x80\\x80H\\n>\\f`\\x02\\x01\\x01\\x01\\x13\\x13\\x06\\v\\x1b\\x1f\\f\\b`\\f\\x80 K7H6\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t \\x1d!`\\x1eA]]A&m/$(\\x16\\xd3\\x12?\\x1b\\a\\a/S\\x05!(\\x13'1\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x003\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x015#\\x15#5#\\x15#5#\\x15#5#\\x15#\\\"&=\\x0146;\\x01546;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x01\\xf0\\a\\t\\t\\aP @ @ @ P\\a\\t\\t\\a0\\t\\a0\\t\\a\\xe0\\a\\t0\\a\\t\\x01\\x00\\t\\a\\xe0\\a\\t\\x80\\x80\\x80\\x80\\x80\\x80\\x80\\x80\\t\\a\\xe0\\a\\t0\\a\\t0\\a\\t\\t\\a0\\t\\a0\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc2\\x007\\x00>\\x00E\\x00e\\x00o\\x00y\\x00\\x007\\x0e\\x03\\x1d\\x01\\x14\\x17#\\\"&5\\x1146;\\x01'&?\\x016\\x1f\\x01'&6?\\x016\\x16\\x1f\\x017>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x0132\\x17\\x06\\x0353\\x15#\\\"&\\x1753\\x15\\x14\\x06#\\x112\\x16\\x1d\\x01#5+\\x03\\x15#546;\\x01&54632\\x17632\\x16\\x15\\x14\\a#3&#\\\"\\x06\\x15\\x14\\x17\\x167654&#\\\"\\a36\\xf1\\v\\x12\\r\\a\\t\\xa9\\r\\x13\\x13\\r\\x1d\\x1e\\r\\t\\t\\t\\x0e \\f\\x02\\x05\\x06\\x10\\x06\\f\\x02\\x14\\x14\\x02\\f\\x06\\x10\\x06\\x05\\x02\\f \\x06\\r\\x04\\t\\x04\\x02\\x06\\x1e\\x1d\\x14\\t)\\x14\\xc0\\xa0\\r\\x13\\xe0\\xc0\\x13\\r\\r\\x13\\xc0\\x0f\\x01\\x01\\x0f\\xc0\\x13\\r\\x14\\x04( 7!!7 (\\x04\\xfc5\\x15\\x18\\f\\f\\t\\x03\\xcb\\t\\f\\f\\x18\\x155\\x04\\xfe\\x03\\v\\x10\\x15\\v\\xe0\\x11\\x0f\\x13\\r\\x01`\\r\\x13\\x16\\t\\r\\r\\r\\t\\x17\\x1f\\x06\\f\\x02\\x06\\x02\\x05\\x0666\\x06\\x05\\x02\\x06\\x02\\f\\x06\\x1f\\x17\\x04\\x02\\x06\\r\\x05\\r\\x04\\x16\\x12\\x1d\\xfe\\xaf`\\x80\\x13\\x13\\x80`\\r\\x13\\x01 \\x13\\r`\\x80\\x80`\\r\\x13\\f\\f\\x1c,KK,\\x1c\\v\\r0\\x0f\\t\\v\\b\\x03\\x03\\b\\v\\t\\x0f0\\x02\\x00\\x03\\xff\\xfd\\xff\\xbd\\x02\\x83\\x01\\xc3\\x009\\x00=\\x00A\\x00\\x00%\\x16\\x0f\\x01\\x06'&6?\\x01'\\x06#\\\"&/\\x01\\a\\x0e\\x01#\\\"'\\a\\x17\\x1e\\x01\\a\\x06/\\x01&7>\\x01\\x1f\\x017.\\x01?\\x01>\\x01\\x1f\\x0176\\x16\\x1f\\x01\\x16\\x06\\a\\x1776\\x16\\x017'\\a\\x177'\\a\\x02\\u007f\\x03\\a\\xa2\\b\\x03\\x06\\r\\x0f\\x16'\\f\\x01(?\\v\\x14\\x14\\v?(\\x01\\f'\\x16\\x0f\\r\\x06\\x03\\b\\xa2\\a\\x03\\x06\\x1e\\x10\\x16'%\\x14\\x16W\\x06\\x17\\vrr\\v\\x17\\x06W\\x16\\x14%'\\x16\\x10\\x1e\\xfe\\x9b\\x13_$\\xc8p$_\\x0e\\a\\x03C\\x04\\b\\x0f\\x1f\\x06\\th\\x01.'KK'.\\x01h\\t\\x06\\x1f\\x0f\\a\\x03C\\x03\\a\\x10\\f\\x06\\tf\\x1aW(\\x96\\n\\b\\x0400\\x04\\b\\n\\x96(W\\x1af\\t\\x06\\f\\x01\\x00G'@..@'\\x00\\x00\\x02\\xff\\xfe\\xff\\xe0\\x02\\x02\\x01\\xa0\\x00\\x11\\x00\\x15\\x00\\x00\\x012\\x16\\a\\x03\\x0e\\x02#!\\\".\\x01'\\x03&63\\x05!\\x17!\\x01\\xe0\\x0f\\x13\\x028\\x02\\x12\\x1c\\x0f\\xfe\\xef\\x10\\x1c\\x11\\x038\\x02\\x13\\x0f\\x01\\x9b\\xfe\\x8a\\x1f\\x019\\x01\\xa0\\x16\\x0e\\xfe\\x9b\\x10\\x19\\x0e\\x0e\\x19\\x10\\x01e\\x0e\\x16@\\xc0\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00c\\x00s\\x00\\x91\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x054&#\\\"+\\x01\\a\\x06\\x1d\\x01\\x14;\\x012=\\x01732\\x16\\x14\\x0f\\x01\\x06\\x0f\\x01\\x06\\x15\\x14\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16;\\x012?\\x016;\\x012\\x14;\\x012=\\x014?\\x016=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x0f\\x01\\x06\\x14\\x16;\\x012\\x1f\\x01\\x16\\x1d\\x01\\a\\x06\\x1f\\x01\\x16;\\x016$\\x14\\x16;\\x012?\\x016=\\x014&\\\"\\x0f\\x01\\x13>\\x017#\\\"/\\x01&+\\x01'&+\\x01\\\"\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16;\\x012\\x16\\x15\\x91Α\\x91Α\\x01\\xc0uS\\x01\\x03\\x02\\x1d\\x03\\b\\x10\\b\\x10\\x15\\x04\\a\\x03\\x1b\\x02\\x02(\\x06\\a\\x14\\x05\\t\\a\\x16\\n\\x04\\n\\x02\\x05\\x03\\b\\b\\x10\\b\\x06\\x1f\\v\\t\\a%\\x04\\a\\a\\x04 \\x05\\x03\\n\\x03\\a\\x04\\x10\\x05\\x03\\n\\x03\\f\\t\\t \\x04\\a\\x14\\v\\xfe\\xc2\\a\\x04\\x10\\x05\\x03\\n\\x03\\a\\t\\x03\\x1a}5W\\x19\\r\\b\\x05\\x12\\t\\r\\x13+\\f\\x11 \\f\\v+\\x16\\x12\\x16\\x10\\x14\\x14\\a\\t\\x01\\xb8\\x91Α\\x91\\xcegSu\\x16\\x02\\x04\\x14\\b\\b\\b\\x10\\a\\t\\x04\\x1a\\x02\\x01\\r\\x02\\x06\\n\\b\\x14\\x04\\a\\x19\\a\\t\\b\\x13\\x05\\x10\\b\\x02\\x06\\x01\\v\\x04\\v\\x05\\x06\\n\\a\\x05\\t\\x05\\x06\\x04\\t\\x03\\n\\x06\\x04\\t\\x03\\x05\\t\\f\\t\\b!\\x04\\x1f\\x91\\n\\x06\\x03\\t\\x04\\x04\\x10\\x05\\a\\x04\\x19\\xfe\\xc5\\x038-\\x05\\x11\\n%\\v\\a\\x1a\\r\\x1a\\x18\\x16\\x0e\\x11\\v\\n\\x06\\x00\\x00\\x00\\x02\\x00\\x00\\x00`\\x02\\x00\\x01 \\x00\\x0f\\x00\\x1f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xf0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x02\\x00 \\xff\\xc0\\x00\\xe0\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00\\x00\\x17\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15\\x13\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15`\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t0\\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xbb\\x02\\x00\\x01\\xc1\\x00+\\x003\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06\\x0f\\x02\\x16\\x17\\x16\\a\\x06\\a\\x0e\\x01\\a\\x06\\a\\x06.\\x02767>\\x017676\\x17\\x16\\x17?\\x016?\\x0162\\x17\\x00264&\\\"\\x06\\x14\\x01\\xf7\\t\\t/\\x06\\b$L\\x0e\\x05\\r#\\x0e\\x14\\r\\x14\\x01\\x04\\x18#kS\\v#\\x18&\\x0e\\x18\\x04\\x06\\x0f\\\"7\\x14\\x15L\\f\\x03\\x05/\\t\\x1b\\t\\xfe\\xe3(\\x1c\\x1c(\\x1c\\x01\\x99\\t\\x1b\\t/\\x05\\x03\\fL\\x15\\x147\\\"\\x0f\\x06\\x04\\x18\\x0e&\\x19\\\"\\vSk#\\x18\\x04\\x01\\x13\\x0e\\x14\\x0e#\\r\\x05\\x0eL%\\a\\x06/\\t\\t\\xfe\\xa9\\x1c(\\x1c\\x1c(\\x00\\x01\\xff\\xfe\\xff\\xdf\\x02\\x02\\x01\\xa4\\x00\\x18\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x06\\\"/\\x01&6?\\x01>\\x01\\x1f\\x01\\a\\x17'7'6\\x16\\x17\\x01\\xda$\\x04!\\xd4\\x06\\x0f\\x05\\xd4!\\x04$\\x03\\\"b&\\x1d`\\x900`\\\"&a\\\"\\x01v%i(\\xdb\\x05\\x05\\xdb(i%\\x03#\\a\\x1cW@\\x90\\x80@h\\x1b\\a#\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xbc\\x01\\xc2\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00@\\x00j\\x00\\x00\\x12\\\"&462\\x16\\x142462\\x16\\x14\\x06\\\"&\\\"&462\\x16\\x14\\a\\x06\\x17\\x16\\x06\\a\\x06\\a\\x0e\\x01\\x17\\x16\\x17\\x16\\x06\\a\\x06\\a\\x06&54'&>\\x01367>\\x01'&'&63676\\x16\\x172\\x16\\a\\x06\\x15\\x14\\x06'&'.\\x017676&'\\\"'6'&5<\\x01546\\x17\\x16\\x17\\x1e\\x01\\a\\x06\\a\\x06\\x16\\x17\\x16\\xa4(\\x1c\\x1c(\\x1c@\\x1c(\\x1c\\x1c(((\\x1c\\x1c(\\x1c@\\x01\\x18\\x03\\b\\a\\x17\\x16\\v\\f\\x03\\x05\\t\\x03\\a\\a72\\t\\x13\\x17\\x02\\x02\\a\\x05\\x16\\x17\\v\\f\\x03\\x05\\t\\x03\\a\\a94\\b\\x10\\xe3\\a\\b\\x04\\x16\\x13\\t27\\a\\b\\x04\\t\\x05\\x03\\f\\v\\x01\\x0e\\n\\t\\x14\\x10\\b49\\a\\a\\x03\\t\\x05\\x03\\f\\v\\x17\\x01\\x00\\x1c(\\x1c\\x1c((\\x1c\\x1c(\\x1c`\\x1c(\\x1c\\x1c(\\xa7=3\\a\\r\\x01\\x02\\a\\x03\\x14\\f\\x17\\x15\\x06\\r\\x01\\x05\\x1d\\x05\\v\\n:2\\x05\\b\\a\\x02\\a\\x04\\x14\\v\\x18\\x14\\a\\r\\x06\\x1f\\x04\\t\\x8c\\r\\a1:\\v\\v\\x06\\x1c\\x05\\x01\\r\\a\\x15\\x16\\f\\x14\\x04\\x03\\x14\\x13+3\\x01\\x03\\x01\\t\\n\\x05\\x1f\\x05\\x01\\r\\a\\x15\\x16\\f\\x14\\x03\\a\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x06\\x01\\xc3\\x00/\\x007\\x00\\x00%\\x16\\x0f\\x01\\x06+\\x01\\\"/\\x01\\x06#\\\"&'.\\x01\\x0f\\x01\\x06\\x17\\x1e\\x01\\x17\\x15\\x17\\x16\\x06+\\x01\\\"&=\\x014>\\x02?\\x016\\x17\\x16\\a\\x1e\\x02\\x17\\x06264&\\\"\\x06\\x14\\x01\\xfe\\a\\x0e.\\t\\r3\\x10\\n.\\x16\\x18\\x1d/\\f\\x01\\t\\x03\\f\\x04\\x03\\x0f7\\\")\\b\\x13\\x12\\xec\\r\\x13\\x10%B0\\xca\\n\\x02\\x0e0\\x15%\\x1c\\az\\x14\\x0e\\x0e\\x14\\x0et\\x14\\x0f(\\t\\r@\\r \\x19\\x04\\x02\\x03\\f\\x05\\x05\\x1d&\\x02\\x01R\\x10\\x1e\\x13\\rQ?bU;\\x12K\\x04\\n6\\x1c\\x04\\x16!\\x148\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x01\\xff\\xfc\\xff\\xbf\\x02\\x03\\x01\\xc0\\x00\\x1a\\x00\\x00\\x01\\x03\\x06\\\"'\\x03\\a\\x06\\\"/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"'\\x03&63!2\\x16\\x01\\xffW\\x01\\x0e\\x01B.\\x02\\f\\x02\\\".\\x02\\f\\x02,$\\x02\\f\\x02W\\x04\\x13\\x10\\x01\\xc0\\x0f\\x13\\x01\\x9a\\xfe,\\x06\\x06\\x01l\\xac\\x06\\x06\\x85\\xc5\\x06\\x06\\xbc}\\x05\\x05\\x01\\x12\\x0f\\x1a\\x17\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x06\\x00\\v\\x00\\x0f\\x00\\x14\\x00\\x1d\\x00'\\x000\\x008\\x00\\x00\\x01\\x15!>\\x0132\\a\\x15#47%\\x16\\x17#\\x1753\\x16\\x15\\a4'3\\x15\\x14\\x06+\\x01\\x13\\x15#.\\x01\\\"\\x06\\a#5\\x0353\\x06\\x1d\\x01#\\\"&62\\x16\\x1d\\x01#54\\x01@\\xfe\\xf1'~J\\x0f\\xcf`\\x1e\\x01Bp?\\xaf\\x80B\\x1e\\xa0\\x04\\xa4\\x13\\r\\x80 2\\x11:F:\\x112\\x80\\xa4\\x04\\x80\\r\\x13\\xf8P8\\xc0\\x01\\x9e~;E\\xa0\\x80C=\\x99\\x1a_\\xa0\\x80=C@\\x0e\\x12`\\r\\x13\\x01 \\x80\\x1d##\\x1d\\x80\\xff\\x00`\\x12\\x0e`\\x13\\xad8(``(\\x00\\x00\\x02\\xff\\xf6\\xff\\xc0\\x01\\xc3\\x01\\xca\\x00\\x0f\\x00\\x1e\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463$\\x1e\\x01\\x0f\\x01!'&>\\x01\\x16\\x1f\\x0176\\x01p\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01e(\\x05\\x11H\\xfe\\xcb0\\x0e@te\\r\\x1e\\x15\\x11 \\t\\a@\\a\\t\\t\\a@\\a\\t\\xe2\\\"5\\x14W\\xd0:e\\x1b@:\\x80\\x19\\x14\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x13\\x00(\\x00:\\x00B\\x00\\x00\\x13&'&'&6;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"7&'&'4>\\x01;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"\\x172\\x16\\x14\\x06+\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x05264&+\\x01\\x15\\u007f\\x04\\x12#\\x06\\x01\\n\\a\\x11\\x0e\\x02\\x04\\x16\\x1f\\x06\\x01\\n\\a\\x11\\x0en\\x04\\x12#\\x06\\x04\\b\\x04\\x11\\x0e\\x02\\x04\\x16\\x1f\\x06\\x01\\n\\a\\x11\\x0e\\x9f.BB.\\x108(\\xc0(8\\x13\\r\\x01p\\x14\\x1c\\x1c\\x14\\x10\\x01.\\x19\\x13#1\\a\\v\\x0e\\x1f\\x16\\x1f,\\a\\v\\x0e\\x19\\x13#1\\x05\\b\\x05\\x0e\\x1f\\x16\\x1f,\\a\\v B\\\\B(88(\\xc0\\r\\x13\\xa0\\x1c(\\x1c`\\x00\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xc8\\x01\\xf1\\x01\\x8e\\x00\\f\\x00\\x1a\\x00\\\"\\x00/\\x00\\x00%4'7>\\x01\\x17\\x1e\\x01\\x17\\x14\\x06#\\a\\x17\\x16\\x06\\a\\x06\\\"'.\\x01?\\x01\\x162&\\\"&462\\x16\\x14%\\\"&5>\\x0176\\x16\\x1f\\x01\\x06\\x15\\x01H&Q\\x03\\x0e\\x06,6\\x04\\t\\a\\xbeQ\\x03\\x03\\x067|7\\x06\\x03\\x03Q\\x14-\\x03(\\x1c\\x1c(\\x1c\\xfe\\xe8\\a\\t\\x046,\\x06\\x0e\\x03Q&\\xc0,\\x18\\x80\\x06\\x03\\x04 `8\\a\\nD\\x80\\x06\\r\\x03\\x1e\\x1e\\x03\\r\\x06\\x80\\f \\x1c(\\x1c\\x1c(\\x14\\n\\a8` \\x04\\x03\\x06\\x80\\x18,\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\f\\x00\\x1a\\x00&\\x00.\\x006\\x00>\\x00\\x00%4'7>\\x01\\x17\\x16\\x17\\x16\\x0e\\x01#\\a\\x1627\\x17\\x16\\x06\\a\\x06\\\"'.\\x017'\\\"&7676\\x16\\x1f\\x01\\x06\\x15\\x16\\\"&462\\x16\\x14\\x02\\\"\\x06\\x14\\x16264\\x06\\\"&462\\x16\\x14\\x018\\x1e*\\x03\\x0f\\x064\\a\\x01\\x05\\a\\x05\\xb1\\x10$\\x10*\\x03\\x03\\x06\\\"H\\\"\\x06\\x03\\x03C\\a\\n\\x01\\a4\\x06\\x0f\\x03*\\x1e\\xa7Α\\x91Α\\xac\\x98ll\\x98l\\xab\\x1a\\x13\\x13\\x1a\\x13\\xc0#\\x13C\\x06\\x02\\x04*B\\x05\\a\\x056\\n\\nC\\x06\\r\\x04\\x10\\x10\\x04\\r\\x06y\\n\\aB*\\x04\\x02\\x06C\\x13#\\xf8\\x91Α\\x91\\xce\\x01\\x1fl\\x98ll\\x98l\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x05\\x00 \\xff\\xc0\\x02\\x83\\x01\\xc0\\x00\\a\\x00\\x0f\\x00)\\x009\\x00V\\x00\\x00\\x12\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14\\x13\\x16\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&?\\x0167\\x1627\\x16\\x17%2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\a\\x1e\\x02\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x01467\\x162\\x9a4&&4&\\x01Z4&&4&?\\x03\\x0f\\f7\\x0e\\n0\\n\\x0e7\\f\\x0f\\x02.\\x06\\x18\\x188\\x18\\x18\\x06\\xfe\\xfe\\a\\t\\t\\a \\a\\t\\t\\a|\\f\\x14\\f\\x0e\\n\\b\\x0e\\nP\\n\\x0e\\b\\n\\x0e\\x19\\x13\\x188\\x01@&4&&4&&4&&4\\xfe\\xf8\\f\\x12h\\n\\x0e\\x0e\\nh\\x12\\f\\xb9\\x16\\x03\\x10\\x10\\x03\\x16\\xa9\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\x90\\x01\\x0e\\x15\\f\\x88\\n\\x0e\\x88\\n\\x0e\\x0e\\n\\x88\\x0e\\n\\x88\\x13\\x1b\\x02\\x10\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00@\\x00D\\x00H\\x00\\x00%\\a\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x0e\\x01\\a\\x0e\\x01/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'&67>\\x0332\\x177'&4?\\x016;\\x012\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x16\\x14%7'\\a\\x05'\\a\\x17\\x01\\xf7a\\t\\x1b\\tP\\n\\x11\\x06\\v\\x06\\x03\\x0f\\x05k\\x12\\x01\\x12\\x1b\\x13\\x13\\r\\x02\\x06\\x12l\\x05\\x02\\x06\\t\\x17\\x18\\x18\\n)&\\nQ\\t\\ta\\t\\r\\x01\\r\\tP0\\n\\x1c\\n/\\n\\n0Q\\t\\xfe\\xdcIEI\\x012EID\\x8aa\\t\\tQ\\n&)\\r! \\f\\x06\\x02\\x05l\\x12\\x06\\x02\\r\\x13\\x13\\x1b\\x12\\x01\\x12k\\x05\\x0f\\x03\\x05\\b\\x06\\x04\\x11\\tQ\\t\\x1b\\ta\\t\\tQ0\\n\\n/\\n\\x1c\\n0P\\t\\x1bhIEJ\\x9fEIE\\x00\\x03\\xff\\xf8\\xff\\xb8\\x02\\x01\\x01\\xc1\\x00\\x19\\x004\\x00O\\x00\\x00\\x05\\x16\\x06\\a\\x06.\\x027>\\x01\\x1f\\x017&5462\\x16\\x14\\x06#\\\"'\\a%\\x141\\x14\\x0e\\x01+\\x01\\\"&5.\\x01'.\\x01=\\x014>\\x02321\\x1e\\x01\\a0\\x15\\x14\\x0e\\x02+\\x01\\\".\\x015.\\x01'\\\"&=\\x0146321\\x1e\\x01\\x011\\x06\\x02\\a9\\x88b\\x12\\x1f\\x04\\x10\\x05u\\x1c\\x02\\x13\\x1a\\x13\\x13\\r\\x02\\x06\\x1b\\x01C\\x04\\b\\x04 \\x06\\n\\x06\\x8aa\\x06\\t\\x03\\x04\\x06\\x03\\x01z\\xafZ\\x03\\x04\\x06\\x03 \\x04\\a\\x05\\x05S9\\x06\\t\\t\\a\\x01Sv\\x0f\\x05\\x10\\x04 \\x13b\\x889\\a\\x02\\x06t\\x1b\\x06\\x02\\r\\x13\\x13\\x1a\\x13\\x01\\x1b+\\x01\\x04\\b\\x04\\t\\x06a\\x8b\\x05\\x01\\t\\x06 \\x03\\x06\\x04\\x03\\x06\\xafz\\x01\\x03\\x06\\x04\\x03\\x04\\a\\x04:R\\x05\\n\\x06 \\a\\t\\x06v\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\r\\x00\\x11\\x00\\x15\\x00\\x19\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x117\\x175#\\x1535#\\x1535#\\x15\\x01@\\x1a&&\\x1a\\xff\\x00\\x1a&\\x80 0\\x800\\x800\\x01\\xc0&\\x1a\\xfe\\x80\\x1a&&\\x1a\\x01@\\x80\\xa0``````\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\r\\x00\\x11\\x00\\x18\\x00\\x1f\\x00#\\x00*\\x00.\\x005\\x00\\x00\\x1146;\\x01\\x17\\x11\\x14\\x06#!\\\"&575#\\x15354&+\\x01\\x1d\\x02326=\\x01#\\x1535#\\x15\\x14\\x16;\\x015'\\x15!5%\\x1535#\\\"\\x06&\\x1a\\xc0\\x80&\\x1a\\xff\\x00\\x1a&\\xe0@\\xa0\\x13\\r  \\r\\x13\\xa0@\\xa0\\x13\\r @\\x01\\x00\\xff\\x00@ \\r\\x13\\x01\\x80\\x1a&\\x80\\xfe\\xc0\\x1a&&\\x1a\\xc0@@ \\r\\x13@\\x80@\\x13\\r @@ \\r\\x13@`@@@ @\\x13\\x00\\x00\\x05\\xff\\xf9\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x18\\x00(\\x002\\x00O\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x122\\x16\\x15\\x14\\x06+\\x01\\\"&46;\\x01264!6\\x17\\x16\\x14\\a\\x06\\\"/\\x01&6\\x1f\\x01\\x1627\\x16\\x1f\\x01\\a\\x06\\\"&4?\\x01\\\"&46;\\x012\\x16\\x0f\\x01\\\"\\x061\\x17\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x01'&6?\\x01\\x01|(\\x1c\\x1c(\\x1c)\\x0e\\t\\x1c\\x14`\\a\\t\\t\\a`\\a\\t\\xfe\\xf6\\v\\v\\x05\\x05\\x0e'\\x0eD\\f\\x17\\vD\\x05\\r=\\x06\\a\\x1e\\\\\\t\\x1a\\x13\\t0\\r\\x13\\x13\\r\\xcd\\x1a\\x15\\x13R\\x01\\x01=\\x0e\\x13\\x1a\\x13N\\x14\\x02\\x15\\x15\\x01\\xc0\\x1c(\\x1c\\x1c(\\xfe\\\\\\t\\a\\x14\\x1c\\t\\x0e\\t\\t\\x0e\\f\\f\\x04\\x0e\\x04\\x0e\\x0eD\\v\\x17\\fD\\x04\\xb8\\t\\b\\x1e\\\\\\t\\x13\\x1a\\n\\xd2\\x13\\x1a\\x131\\x13S\\x01=\\x0e\\x14Y\\r\\x13\\x13\\rSN\\x148\\x12\\x11\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00$\\x00C\\x00\\x00\\x00\\\"&462\\x16\\x14\\x12\\x16\\x14\\a\\x06#\\\"'%.\\x01>\\x01\\x1f\\x017'&7\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x17\\x1676\\x01'&76\\x1f\\x017\\x16\\x15\\x1776\\x16\\x1f\\x02\\x1e\\x01\\x0e\\x01/\\x01&/\\x01\\a/\\x01\\x06'\\x01\\xc4(\\x1c\\x1c(\\x1c\\x12\\x0e\\a\\x1a%\\x14\\x11\\xfex\\t\\x06\\t\\x13\\t\\xc6.K\\x17\\x05k(\\r\\x03\\n1\\x88\\x19\\x14\\a\\xfe\\x9a\\x1a\\x04\\x03\\x02\\x03#\\v\\x15>R\\x1d0\\a\\x114\\f\\t\\f\\x19\\f:\\x12\\x06\\a s/\\x13\\x18\\x01`\\x1c(\\x1c\\x1c(\\xfe\\x87\\x0e\\x14\\a\\x1a\\b\\xcb\\x04\\x13\\x12\\x06\\x05fEK\\x17\\x1f5(\\f#\\x0eJF\\v\\x14\\a\\x01a\\x17\\x04\\x04\\x02\\x01\\x06\\x15\\v\\x18\\x1f \\f\\x1d\\x163\\x1a\\x06\\x19\\x18\\t\\x06\\x1d\\t\\x13\\x13\\r9\\x18\\x11\\f\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\a\\x00.\\x00B\\x00N\\x00\\x00\\x00\\\"&462\\x16\\x14\\x122\\x16\\x15\\x14\\x06#!\\\"&46;\\x01\\x130&5&6?\\x016\\x1f\\x01\\x16\\x1f\\x0132\\x16\\x15\\x14\\x0f\\x013264\\a7'.\\x01?\\x01'&\\x0f\\x01\\x06\\a\\x0337\\x16\\x1f\\x01\\a37#\\\"/\\x01\\a\\x17\\x1e\\x01\\x0f\\x01\\x01d(\\x1c\\x1c(\\x1c\\x9e\\x14\\x0e*\\x1e\\xfe \\n\\x0e\\x0e\\n+6\\x02\\b\\x03\\n(%,G*\\x14\\x1a,\\r\\x13\\x14\\x1aF\\n\\x0e\\xec\\x19U\\x15\\x0f\\n%\\x0f\\r\\f'\\x06\\x064\\x18>\\f\\x12\\x16+\\xcf\\x19!\\x1e\\r\\x14 =\\x0f\\f\\x05\\x18\\x01`\\x1c(\\x1c\\x1c(\\xfe\\xa4\\x0e\\n\\x1e*\\x0e\\x14\\x0e\\x01\\x0f\\x01\\x01\\n\\x1b\\b\\x1e\\x1c\\v\\x15\\v(5\\x13\\r\\x16\\b\\xb2\\x0e\\x14\\\"Q2\\r.\\x16W\\x05\\x03\\n\\x1e\\x04\\x02\\xfe\\xfb\\x84\\x12\\n\\r[\\xb0\\x1b)N$\\t\\x1e\\x0fL\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x83\\x01\\xa0\\x00\\x19\\x00C\\x00\\x00%\\x16\\a\\x0e\\x01#!\\\"&=\\x01463!2654/\\x01&?\\x016\\x17%5\\\"&46;\\x012\\x1e\\x03\\x17\\x1e\\x02;\\x0126=\\x0132\\x16\\x14\\x06#\\x15\\x14\\x06#\\x15#5#\\x15#5.\\x01\\x02e\\x1d\\x02\\x02,\\x1e\\xfd\\xfc\\a\\t\\t\\a\\x02\\a\\v\\x0e\\t\\n\\f\\n\\n\\n\\f\\xfd\\xc5\\r\\x13\\x13\\r\\x15\\x13&\\\"\\x1f\\x18\\t\\x0f/= \\x15\\x1a&`\\r\\x13\\x13\\r8(@\\xc0@*6a\\x17&\\x1d'\\t\\a\\x10\\a\\t\\x0e\\v\\v\\b\\a\\n\\r\\f\\r\\nw\\x80\\x13\\x1a\\x13\\t\\x10\\x17\\x1f\\x11\\x1d,\\x17&\\x1a@\\x13\\x1a\\x13`(80004\\vE\\x00\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x006\\x00W\\x00y\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&'&>\\x027&54\\x172654/\\x01&54;\\x012=\\x014+\\x01\\\"\\x06\\x15\\x14\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"\\x1d\\x01\\x143754&+\\x01\\\"\\x0f\\x01'&+\\x01\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x01\\x17\\x162?\\x01\\x15\\x14;\\x01232654/\\x01&54;\\x012=\\x014+\\x01\\\"\\x06\\x15\\x14\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"\\x1d\\x01\\x143\\x96Ԗ\\x96j83AL\\x02\\x04\\x01\\x02\\a\\x11\\x1c\\x069\\x80\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\f\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\xcc\\t\\a\\x10\\n\\x04\\x12\\x12\\x04\\n\\x10\\a\\t\\b\\x10\\b\\x19\\x02\\n\\x02\\x19\\b\\x10\\b0\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\f\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\x01\\xa0z\\xacz\\x133\\x03\\x02\\x05\\a\\x151\\x169JV\\x96\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\b\\x17\\x10\\x11\\v\\x13\\x01\\x02\\a\\b\\x10\\b\\bh\\a\\t\\t##\\t\\t\\ah\\b\\bD8\\x04\\x048D\\b\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\b\\x17\\x10\\x11\\v\\x13\\x01\\x02\\a\\b\\x10\\b\\x00\\x00\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x02\\x01\\xc3\\x00\\a\\x00E\\x00Q\\x00\\x00\\x00\\\"&462\\x16\\x14\\a'\\a\\x17\\x16\\x0f\\x01\\x06\\a\\x17\\x1676\\x1e\\x01\\x06\\a\\x06#\\\"'%&'&>\\x01\\x16\\x17\\x16\\x1f\\x01&'&6?\\x0154?\\x01'&/\\x01&>\\x01\\x16\\x1f\\x02\\x16\\x1f\\x01\\x1e\\x01\\a\\x06#\\\"\\a'\\x15\\x14\\x06\\x0f\\x01\\x06\\a\\x17&7\\x01\\xc4(\\x1c\\x1c(\\x1c\\x13TB4\\x19\\a\\x15\\x04\\x0eZ\\x10\\x0e\\t\\x13\\b\\a\\t\\x11\\x13\\x0f\\x0f\\xfe\\x93!\\x10\\x04\\a\\x12\\x13\\x04\\a\\x0f&\\x06\\x02\\x05\\f\\rJ#*\\x11\\x13\\t\\x1d\\x06\\t\\x18\\x19\\x06\\x1a?\\x19\\x15o\\v\\x04\\b\\n\\x10\\v\\x99<\\x12\\x0fU\\x02\\x06\\xaa\\x05\\x02\\x01`\\x1c(\\x1c\\x1c(\\xb6?\\x1e'\\x13\\x1ef\\x0f\\x06\\\"\\x05\\a\\x04\\a\\x12\\x13\\x04\\b\\x05\\x85\\f!\\t\\x12\\t\\a\\t\\x0f\\x05\\x0e\\x06\\a\\r\\x17\\x04\\x195(\\x11\\x15\\x06\\x06\\x12:\\v\\x1a\\v\\b\\f4\\x15\\b\\x10S\\b\\x1b\\n\\r--\\x14\\x10\\x19\\x05\\x1c\\x01\\x01=\\n\\n\\x00\\x00\\x00\\a\\xff\\xff\\xff\\xc0\\x02\\x02\\x01\\xc1\\x00T\\x00\\\\\\x00d\\x00l\\x00t\\x00\\u007f\\x00\\x87\\x00\\x00\\x01\\x16\\x06\\x0f\\x01\\x14\\x16\\x14\\x15\\x14\\a\\x16\\x17\\x16\\x06\\a\\x06+\\x01\\\"'.\\x01547&507'.\\x02?\\x01>\\x01\\x1f\\x0154>\\x02;\\x012\\x16\\x1d\\x01\\x141\\x15\\x1767&5462\\x16\\x15\\x14\\a\\x16\\x17704=\\x0146;\\x012\\x16\\x1d\\x0176\\x16\\x17$264&\\\"\\x06\\x14\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x147654&\\\"\\x06\\x15\\x14\\x16\\x176264&\\\"\\x06\\x14\\x01\\xff\\x02\\x05\\x06\\x87\\x01\\x04!\\b\\t#%\\x10\\x15c\\x12\\r!&,\\x04\\x01\\x87\\x04\\x05\\x01\\x01\\x06\\x03\\f\\x06\\x1c\\x03\\x04\\x06\\x03\\x10\\a\\t8\\t\\r\\x168P8\\x16\\r\\t8\\t\\a\\x10\\a\\t\\x1c\\x06\\r\\x02\\xfe\\xe0\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\x10\\x10\\t\\x0e\\t\\b\\x04\\x1d\\x0e\\t\\t\\x0e\\t\\x01(\\x06\\f\\x037\\x01\\x05\\x04\\x02\\r\\x10\\\"-.Q\\x19\\f\\b\\x15C(?,\\x10\\r\\f7\\x02\\a\\b\\x04\\x0e\\x06\\x05\\x02\\f\\x1d\\x04\\x05\\x05\\x02\\t\\a.\\x01\\x01\\x17\\x0f\\f\\x1b!(88(\\\"\\x1a\\f\\x0f\\x17\\x01\\x01.\\a\\t\\t\\a\\x1d\\f\\x02\\x05\\x06*\\t\\x0e\\t\\t\\x0e\\xfe\\xe7\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0eO\\x17\\t\\a\\t\\t\\a\\x04\\x10\\x062\\t\\x0e\\t\\t\\x0e\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00[\\x00`\\x00l\\x00\\x0062\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x05\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01#\\x16\\x15\\x14\\x06#!\\\"&54>\\x017546;\\x01546;\\x012\\x1f\\x01\\x16\\x1d\\x01354?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x1d\\x01\\x14\\x01\\x15\\x173'\\x13264&#!\\\"\\x06\\x14\\x163n\\x14\\x0e\\x0e\\x14\\x0e^\\x14\\x0e\\x0e\\x14\\x0e^\\x14\\x0e\\x0e\\x14\\x0e^\\x14\\x0e\\x0e\\x14\\x0e\\x01\\a$\\x05\\x05\\x16\\x05\\r\\x05%)+\\vB.\\xff\\x00.B\\x10\\x1d\\x13\\x1c\\x14\\x10\\x1c\\x14\\x90 \\fO\\x05@)%\\x05\\r\\x05\\x16\\x05\\x05$\\x17\\xfe\\x80@zD:\\x14\\x1c\\x1c\\x14\\xff\\x00\\x14\\x1c\\x1c\\x14H\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14#%\\x05\\r\\x05\\x16\\x05\\x05$*:\\x13\\x17\\x19.BB.\\x16(\\x1e\\t[\\x14\\x1cp\\x14\\x1c\\x1d\\xb7\\f\\r3\\x13:*$\\x05\\x05\\x16\\x05\\r\\x05%\\x16 f \\x01S`@\\xa0\\xfe\\x80\\x1c(\\x1c\\x1c(\\x1c\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x13\\x00\\x1f\\x00\\x00\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x0143%2\\x1d\\x01\\x14#!\\\"=\\x0143\\x01t\\f\\f\\x8c\\f8\\f\\x8c\\f\\f\\x01h\\f\\f\\xfe\\x98\\f\\f\\x01 \\f8\\f\\xe4\\f\\f\\xe4\\f8\\f\\x80\\f8\\f\\f8\\f\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00%\\x001\\x009\\x00\\x00\\x01#\\x15\\x16\\x15\\x14\\x06\\a\\x17\\x16\\x06+\\x01\\\"&?\\x01.\\x015475#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x05\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x16264&\\\"\\x06\\x14\\x01p\\x10 /(\\x16\\x04\\x13\\x10\\xc0\\x10\\x13\\x04\\x16(/ \\x10\\a\\t\\t\\a\\x01`\\a\\t\\t\\xfe\\xd9\\b0\\b\\b0\\b6tRRtR\\x01\\x90\\x9d\\x10\\x132T\\x1aG\\x0f\\x1a\\x1a\\x0fG\\x1aT2\\x13\\x10\\x9d\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\x18\\x10\\b\\b\\x10\\b\\xd0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x04\\xff\\xff\\xff\\xbf\\x02\\x05\\x01\\xc5\\x00\\x15\\x00/\\x009\\x00A\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01.\\x017'#'7\\x17\\x15\\x176\\x16\\x17'\\\"\\a'&7>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x1f\\x0176\\x16\\x17\\x16\\x06\\a\\x06\\a'&\\a\\x06\\x17\\a\\x06\\\"&4?\\x01\\x06264&\\\"\\x06\\x14\\x01\\xf5\\v\\v5\\n\\x1f\\vu\\x11\\b\\vk>`@\\x80k\\x140\\x114\\r\\fR\\x01*\\x1bI%\\a\\x03\\x05J\\vDK\\x05\\r\\x02\\t\\x14\\x1b\\x13\\x19\\x13\\x1f\\x94\\a\\f|\\x135%\\x13\\x98u\\x14\\x0e\\x0e\\x14\\x0e4\\v\\x1e\\v5\\v\\vu\\x110\\x14k\\x80@`>k\\v\\b\\x116\\x03R=+\\x1b\\x14\\t\\x02\\x0e\\x04KD\\vJ\\x05\\x03\\a$J\\x1b\\x12\\v\\x13\\x1fR\\x1f {\\x13%5\\x13\\x99\\xde\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x06\\xff\\xfe\\xff\\xc0\\x02\\x02\\x01\\xc0\\x00\\a\\x00)\\x00-\\x001\\x005\\x00=\\x00\\x00\\x00\\\"&462\\x16\\x142\\x16\\x06\\x0f\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015\\a\\\"#\\\"'&67%6\\x015#\\x15%\\x1535+\\x01\\x153\\x02\\\"&462\\x16\\x14\\x01-\\x1a\\x13\\x13\\x1a\\x13\\xbe\\x03\\x06\\a\\xe4\\xb0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\xb0\\xdc\\x02\\x02\\f\\x03\\x02\\a\\x06\\x01\\xe0\\x06\\xfe\\xbe`\\x01\\x00`\\x80``c\\x1a\\x13\\x13\\x1a\\x13\\x01\\x80\\x13\\x1a\\x13\\x13\\x1a\\r\\f\\x02<\\\\\\x13\\r\\xe0\\r\\x13\\x13\\r\\xe0\\r\\x13S;\\f\\x06\\f\\x01\\x80\\x02\\xfe\\xa7``````\\x01 \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0e\\x00\\x1f\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x16\\x176\\x13>\\x01'&'\\a&'\\x0e\\x02\\x15\\x14\\x1632\\x01D4H\\x83\\xba\\x83_I9*\\x1b\\n$\\x13\\x15\\x06\\x06:\\\\\\a\\x1b\\x1c\\x12K8+\\x01\\x8d0\\x8c+_\\x87\\x87_6\\xa0D5: \\xfe\\xc7\\x1aY'\\t\\vCu\\b ((\\x138E\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x02A\\x01\\xc0\\x00,\\x00X\\x00\\x007\\x0e\\x03\\a\\x06\\a'&67670767>\\x06767632\\x1f\\x01\\x06\\a\\x0e\\x05\\a\\x0e\\x02%\\x16\\x06\\a\\x06\\a\\\"\\a\\x06\\a\\x0e\\x04\\a\\x06\\a\\x06#\\\"/\\x0167>\\x047>\\x027>\\x05767\\xdb\\r\\x16\\x18\\x0e\\r5#$\\t\\x01\\n$7\\x02E\\x1c\\x04\\x03\\x12\\x10 #3\\x1e\\x1b\\x0e\\b\\n\\r\\t%\\x1e.\\x13\\x16&%\\x1a\\n\\a\\a\\b\\x17\\x01L\\t\\x01\\n$7\\x01\\x01E\\x1c\\x06\\a %C(\\x1b\\x0e\\b\\n\\r\\t%\\x1e.\\f\\f\\x16\\x11\\x17\\f\\x12\\x1a\\n\\a\\x06\\t\\x17 !\\x14\\x115#p\\r\\x12\\f\\a\\x04\\x14!#\\n\\x1b\\b\\x1e\\x15\\x01\\x17J\\v\\b$\\x18'\\x1c\\x1f\\v\\n\\n\\x06\\t%\\x1c\\x12\\a\\n\\x1a%&\\x15\\x13\\x12\\x13!\\xd8\\n\\x1b\\b\\x1e\\x15\\x01\\x17J\\x0f\\x126'/\\x0f\\n\\n\\x06\\t%\\x1c\\x12\\x04\\x05\\v\\v\\x13\\v\\x13&\\x15\\x13\\x12\\x13!!\\x16\\t\\x06\\x14!\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x002\\x00:\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x05\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x135!\\\"\\x06\\x14\\x163\\x01\\xc0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xfe\\xd0\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\xed\\xfe\\xe3\\r\\x13\\x12\\x0eZ\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a\\x8e0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xfe\\xe0@\\x12\\x1c\\x12\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x18\\x00\\x00\\x012\\x1e\\x02\\x15\\x14\\x06#\\x11\\x14\\x06#!\\\"&5\\x11\\\".\\x02546\\x01 AoH(#\\x1d\\x15\\x0f\\xfe\\x88\\x0f\\x15\\x0f\\x18\\x10\\t\\xa1\\x01\\xc0\\x1f2;\\x1d\\x18\\x1f\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\t\\x0f\\x14\\v>k\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00\\t\\x00\\x12\\x00\\x005!\\x15\\x14\\x06#!\\\"&5\\x01\\x1e\\x01\\x15!%630\\x02\\x00\\x13\\r\\xfe@\\r\\x13\\x01,Y{\\xfe\\x00\\x01\\x17\\b\\f\\xa0\\xa0\\r\\x13\\x13\\r\\x01\\xa0\\x05\\x81Z\\xd9\\a\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02A\\x01\\xc1\\x00\\x10\\x00,\\x00H\\x00\\x00\\x01\\x17\\x1e\\x013\\x15\\x14\\x06#!\\\"&=\\x01265\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x01327\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"/\\x01&\\\"\\x0f\\x01\\x06#\\\"/\\x01&547%62\\x17\\x01 \\xdb\\x01\\x03\\x01\\t\\a\\xfe`\\a\\t\\x01\\x04\\x01;\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\xbb\\x05\\x04\\x15\\x05\\a\\a\\x04\\xe5\\x05\\f\\x05\\xe5\\x04\\a\\a\\x04\\x16\\x04\\x05\\x01\\x00\\f\\x1e\\f\\x01M\\xc1\\x01\\x02\\xb9\\a\\t\\t\\a\\xb9\\x02\\x01D0\\b8\\b\\b8\\b0\\b8\\b\\b8\\x94\\x05\\a\\x06\\x05\\x18\\x05\\x04\\xca\\x04\\x04\\xca\\x04\\x05\\x18\\x05\\x06\\a\\x05\\xe2\\n\\n\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x000\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"547>\\x027&54\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x96Ԗ\\x96j83AL\\b\\x02\\x04\\x11\\x1c\\x069\\x01`\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01\\xa0z\\xacz\\x133\\b\\x03\\x03\\x03\\x151\\x16:IVn0\\b8\\b\\b8\\b0\\b8\\b\\b8\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00%\\x00.\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x017\\x17\\a\\x06\\x0f\\x02\\x06\\\"/\\x01&4?\\x026?\\x01\\x17\\a\\x177'\\a\\x06\\x0f\\x0176\\x01\\xfb\\x05\\x05\\x16\\x05\\r\\x05\\xb5\\x05\\x05\\x17\\x04\\x0e\\x04\\x027-n\\x13\\x1bxf\\x05\\r\\x05\\x16\\x05\\x05f\\x1b\\a\\x13n-7\\r\\nD\\n\\x06\\x02\\x13P\\t\\x01\\x06\\x04\\x0e\\x04\\x17\\x05\\x05\\xb5\\x05\\r\\x05\\x16\\x05\\x05\\xf77-n\\x13\\a\\x1bf\\x05\\x05\\x16\\x05\\r\\x05fx\\x1b\\x13n-7{\\nD\\n\\x06\\tP\\x13\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x00\\x122\\x1e\\x01\\x15\\x14\\x06\\\"&546\\x8fb]2p\\xa0p2\\x01\\xc0u\\x947PppP7\\x94\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\v\\x00\\x1b\\x00'\\x00/\\x007\\x00?\\x00\\x00%2\\x16\\x14\\x06#!\\\"&463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\\"&7>\\x012\\x16\\x17\\x16\\x06#&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xb0\\a\\t&\\x1a\\xfe\\xa0\\x1a&\\t\\a\\x1b\\x1a\\x18\\x0f\\x1f~\\x96~\\x1f\\x0f\\x18\\x1a>\\x0e\\t\\t\\x0e\\t\\x89\\x0e\\t\\t\\x0e\\t\\x89\\x0e\\t\\t\\x0e\\t\\xc0\\x1c(\\x1c\\x1c(\\x1c\\x80\\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\xa04\\x182BB2\\x184p\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x01\\x00 \\xff\\xc0\\x01\\xe0\\x01\\xc1\\x00@\\x00\\x00%\\x15\\x14\\x0e\\x01+\\x01\\\"&/\\x01&=\\x0146?\\x01\\x15\\x142=\\x014>\\x03376\\x1e\\x01\\x1d\\x01\\x142=\\x0146321\\x1e\\x01\\x1d\\x01\\x142=\\x0146\\x1f\\x01\\x1e\\x03\\x1d\\x01\\x17\\x1e\\x01\\x01\\xe0\\x1e4\\x1e\\xd7\\x13/\\r\\x1f\\v\\f\\t\\x1b\\x10\\x03\\x05\\b\\n\\x05\\x1f\\b\\x10\\n\\x10\\x1c\\x14\\x01\\x14\\x1b\\x10\\x15\\r'\\x05\\b\\a\\x03$\\v\\x11\\x83S\\x1e4\\x1e\\x13\\x0e\\x1f\\v\\x0fJ\\t\\x14\\x04\\x0fL\\b\\b\\x93\\x05\\b\\a\\x06\\x05\\x06\\x01\\x06\\f\\a \\b\\b\\xc8\\x14\\x1c\\x01\\x1d\\x14\\xc6\\b\\b \\v\\x0f\\x02\\a\\x01\\x04\\x06\\b\\x042\\t\\x03\\x15\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x13\\x00#\\x00\\x00%\\x15!5467\\x17546;\\x012\\x16\\x1d\\x017\\x1e\\x01\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xe0\\xfe@B5)\\t\\a`\\a\\t)5B\\x10\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\xa0@@;a\\x16Rp\\a\\t\\t\\apR\\x16a\\x9b\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x02\\x02\\x01\\xc2\\x00\\x17\\x00A\\x00K\\x00U\\x00\\x00\\x01\\x1e\\x03\\x15\\x14\\x06\\a\\x01\\x0e\\x01#\\\"&5467\\x01>\\x012\\x16\\a64&\\\"\\a\\x06\\a\\x0e\\x01\\a\\x0e\\x01\\a\\x0e\\x01\\a\\x0e\\x01\\a\\x06\\a\\x06\\x14\\x162767>\\x017>\\x017>\\x017>\\x0176\\x05'.\\x01?\\x016\\x16\\x1f\\x03\\x1e\\x01\\x0f\\x01\\x06&/\\x01\\x01\\xe9\\x04\\t\\x06\\x04\\x0e\\t\\xfe\\xa0\\n\\\"\\x0e!/\\x0e\\n\\x01`\\n!\\x1c!(\\x04\\t\\r\\x05\\f\\x17 '\\x06\\x04\\x18\\x17 '\\x06\\x04\\x18\\x17 \\x14\\x04\\t\\r\\x05\\f\\x17 '\\x06\\x04\\x18\\x17 '\\x06\\x04\\x18\\x17 \\xfe|\\v\\x13\\x02\\x11\\xd0\\x113\\x13\\v\\x9f\\v\\x13\\x02\\x11\\xd0\\x113\\x13\\v\\x01\\xa9\\x05\\x0e\\x0f\\x10\\a\\x0e!\\n\\xfe\\xa0\\n\\x0e/!\\x0e\\\"\\n\\x01`\\t\\x0e\\x0ei\\x05\\r\\n\\x05\\f\\x04\\x06' \\x17\\x18\\x04\\x06' \\x17\\x18\\x04\\x06\\x13\\x05\\r\\n\\x05\\f\\x04\\x06' \\x17\\x18\\x04\\x06' \\x17\\x18\\x04\\x06\\xb8\\v\\x133\\x11\\xd0\\x11\\x02\\x13\\v\\x9f\\v\\x133\\x11\\xd0\\x11\\x02\\x13\\v\\x00\\x00\\x00\\x02\\x00 \\xff\\xbf\\x01\\xa0\\x01\\xc1\\x00\\x15\\x00\\x1d\\x00\\x00\\x012\\x16\\x14\\x06#!\\\"&46;\\x01&5462\\x16\\x15\\x14\\a\\x03'!\\a\\x0e\\x01\\\"&\\x01p\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01\\x01TxT\\x01\\xacc\\x01\\x00c\\x04\\x11\\x10\\x11\\x01 \\x1c(\\x1c\\x1c(\\x1c\\b\\b<TT<\\b\\b\\xfe\\xb2\\xce\\xce\\a\\v\\v\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x1b\\x00%\\x00)\\x00A\\x00\\x007\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01%\\x11!\\x11463!2\\x16\\x03\\x11!\\x11\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x14\\x16;\\x01267\\xe8\\b\\b8\\b0\\b8\\b\\b8\\b0\\b\\x01 \\xfe\\x00\\x1c\\x14\\x01\\xa0\\x14\\x1c@\\xfe\\x80\\x01\\xf0\\a\\t&\\x1a\\xfe\\x00\\x1a&\\t\\a\\xef\\x14\\r=\\x0e\\x12\\x01\\xe0\\b0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xb0\\xfe\\xb0\\x01P\\x14\\x1c\\x1c\\xfe\\xdc\\x01\\x00\\xff\\x00`\\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\v\\x15\\x11\\x0f\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x19\\x00#\\x003\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\\"\\x06\\x1d\\x01\\x14\\x163754&+\\x01\\x15326754&#!\\\"\\x06\\x1d\\x01\\x14\\x163!26\\x01\\xc0\\x1a&&\\x1a\\xfe\\x80\\x1a&&\\x1a`P\\a\\t\\t\\a\\xd0\\t\\aPP\\a\\t\\xa0\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\x01\\x80&\\x1a\\xff\\x00\\x1a&&\\x1a\\x01\\x00\\x1a&\\xfe\\xd00\\t\\a\\x10\\a\\t\\x10\\x10\\a\\t0\\t\\x87@\\r\\x13\\x13\\r@\\r\\x13\\x13\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x001\\x00\\x00%3\\x17\\x0e\\x03#\\\"&4632>\\x057\\x177\\x1e\\x01\\x15\\x14\\a'#5'632\\x176'&54?\\x01632\\x17\\x1e\\x01\\x06\\x01Kk%\\x13Kj\\x8fL\\x17!!\\x17\\x1d1$\\x1d\\x18\\x14\\x18\\v5\\x83\\x15\\x1d\\x066YK$(\\x1e\\x1c\\x15\\x14\\x02\\x03\\x17\\x02\\x03\\x04\\x03\\n\\f\\x04\\xb9'\\\"G@)!.!\\x14#+2-,\\x0e\\x18&\\x13B\\x1d\\x11\\x169N\\\"\\x17\\f+\\x1d\\x02\\x03\\x03\\x03\\x17\\x02\\x03\\r$7\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00\\x11\\x00\\x1e\\x00&\\x00.\\x006\\x00\\x00\\x13\\x1e\\x02\\x17\\x16\\x0e\\x01\\x0f\\x01.\\x02'7>\\x02\\a\\x1e\\x02\\x17\\x05\\x06#\\\"&5476264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x9fZ\\x9ab\\v\\x01\\x06\\v\\b9\\x04R\\x8f]\\x0f\\x02\\n\\x0f3X\\x86K\\x03\\xfe\\x85\\x03\\x02\\x06\\n\\x01r\\x1a\\x13\\x13\\x1a\\x13C\\x1a\\x13\\x13\\x1a\\x13{\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\t_\\x99Y\\b\\x0f\\v\\x02\\x10]\\x8eP\\x029\\a\\f\\x06q\\x01J\\x85Vi\\x01\\n\\x06\\x02\\x02L\\x13\\x1a\\x13\\x13\\x1a\\x85\\x13\\x1a\\x13\\x13\\x1a{\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x1f\\x007\\x00\\x00\\x17\\x03!\\x03\\x0e\\x01+\\x01\\\"&7\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326/\\x01&\\\"\\a72\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x015\\x15\\x01\\x80\\x15\\x01\\x1c\\x13\\xf6\\x13\\x1cE\\a\\b\\v9\\t\\a \\a\\t9\\v\\b\\aZ\\x04\\x0e\\x04\\xdb\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\x13\\x01S\\xfe\\xad\\x13\\x1a\\x1a\\xc3\\b\\x15p\\a\\t\\t\\ap\\x15\\b^\\x05\\x05\\xa5\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x1f\\x007\\x00\\x00\\x17\\x11!\\x11\\x14\\x06#!\\\"&7\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326/\\x01&\\\"\\a72\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x01 \\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c[\\a\\b\\v9\\t\\a \\a\\t9\\v\\b\\aZ\\x04\\x0e\\x04\\xdb\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\x10\\x01P\\xfe\\xb0\\x14\\x1c\\x1c\\xc1\\b\\x15p\\a\\t\\t\\ap\\x15\\b^\\x05\\x05\\xa5\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x00\\x0e\\x00 \\x00<\\x00D\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467\\x176\\\"&=\\x0146?\\x0162\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14'\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\a\\x15\\x14\\x1626=\\x01\\x01?6K\\\"\\x18\\xfe\\xb4\\x18\\\"K6_5jK\\f\\tU\\n\\x18\\nU\\t\\f\\xa8\\x05\\x16\\x05\\x10\\x05\\x16\\x05\\x05\\x16\\x05\\x10\\x05\\x16\\x05(/B/\\x80\\x02N6\\x18\\\"\\\"\\x186N\\x02_oK5n\\t\\x12\\x03 \\x04\\x04 \\x03\\x12\\tn5\\x9d\\x10\\x05\\x16\\x05\\x05\\x16\\x05\\x10\\x05\\x16\\x05\\x05\\x16]\\x10!//!\\x10\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00-\\x00\\x00\\x05#\\\"&5\\x11#\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x01546;\\x012\\x16\\x15\\x113546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06\\x01ܘ\\x0f\\x15`\\x15\\x0f\\x8c\\a\\t\\t\\ap\\x15\\x0f\\x98\\x0f\\x15`\\x15\\x0f\\x8c\\a\\t\\t\\ap\\x15 \\x15\\x0f\\x01\\\\\\x9c\\x0f\\x15\\t\\a \\a\\t\\x9c\\x0f\\x15\\x15\\x0f\\xfe\\xa4\\x9c\\x0f\\x15\\t\\a \\a\\t\\x9c\\x0f\\x15\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00'\\x00/\\x007\\x00?\\x00G\\x00\\x00\\x00\\\"&462\\x16\\x14\\a'\\a\\x17\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x01'&54?\\x01632\\x1f\\x0132\\x16\\x14\\x06+\\x01\\\"\\x162\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01\\xa4(\\x1c\\x1c(\\x1c4);*\\x0e\\x13\\x1a\\x13R\\x0e\\vp\\t\\f\\v\\tG5\\r\\x13\\x13\\r@\\v6jKKjKf4&&4&\\xfe\\x8bjKKjKf4&&4&\\x01`\\x1c(\\x1c\\x1c(\\x95!2\\x1b\\n\\x11\\x80\\r\\x13\\x13\\ro6\\n\\x11\\x0f\\t`\\b\\a9\\x13\\x1a\\x13 KjKKju&4&&4\\x9aKjKKju&4&&4\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x05#\\x153'#\\x153\\a35#\\x1735#\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01`\\x80\\x80\\xc0\\x80\\x80\\x80\\x80\\x80\\xc0\\x80\\x80\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13@\\x80\\x80\\x80\\xc0\\x80\\x80\\x80\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\u007f\\x00\\x8f\\x00\\x9f\\x00\\xaf\\x00\\xbf\\x00\\xcf\\x00\\xdf\\x00\\xef\\x00\\xff\\x01\\x0f\\x01\\x1f\\x01/\\x01?\\x01O\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x032\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\xf0\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a\\xa0\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a@\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xfe\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\x84\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06#!\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\xf0\\a\\t\\t\\a \\a\\t\\t\\a@\\a\\t\\t\\a \\a\\t\\t\\a\\xe0\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a\\xfe\\x90\\t\\a \\a\\t\\x13\\r \\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x01 \\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\xfe\\x90\\a\\t\\t\\a\\x01\\x90\\r\\x13\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00$\\x00,\\x00\\x00\\x012\\x16\\x17\\x16\\x06/\\x01\\x16\\x15\\x14\\x0e\\x01\\a\\x06&?\\x01\\x06#\\\"&'&6\\x1f\\x01&54676\\x16\\x0f\\x016\\x06264&\\\"\\x06\\x14\\x01a=Z\\b\\x01\\v\\b{\\r%A'\\b\\f\\x01\\f#*=Z\\b\\x01\\v\\b{\\rQ<\\b\\f\\x01\\f#D\\x1a\\x13\\x13\\x1a\\x13\\x01@Q<\\b\\f\\x01\\f#*(E-\\x05\\x01\\v\\b{\\rQ<\\b\\f\\x01\\f#*=Z\\b\\x01\\v\\b{\\r\\xa0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\xff\\xfe\\xff\\xc0\\x02\\x02\\x01\\xc2\\x00\\x12\\x00.\\x006\\x00L\\x00j\\x00\\x007'&676\\x16\\x1f\\x017>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x06\\\"\\x172\\x16\\x1d\\x01\\x14\\x0e\\x02+\\x01\\\"&=\\x0146;\\x017>\\x01;\\x012\\x16\\x1f\\x01\\x06264&\\\"\\x06\\x14%2\\x16\\x0f\\x01\\x06\\\"&?\\x01#\\\"&?\\x016;\\x012\\x16\\x0f\\x01\\x136\\x16\\x1d\\x01\\x14\\x06\\\"&4632\\x175\\a\\x15\\x14\\x06\\\"&4632\\x175467ua\\x15\\x02\\x18\\x155\\x13\\n\\n\\x135\\x15\\x18\\x02\\x15a\\x04\\x0e\\x8c\\v\\x10\\x04\\b\\n\\x05\\xea\\v\\x10\\x10\\v0\\a\\x03\\x0f\\bH\\b\\x0f\\x02\\b[,\\x1e\\x1e,\\x1e\\x01\\x97\\b\\a\\x04\\\\\\x04\\r\\b\\x02\\x18>\\x06\\b\\x01\\x11\\x01\\vL\\x06\\b\\x02\\x16'\\x0e\\x14&5%%\\x1b\\b\\bp&5%%\\x1b\\b\\b\\x0f\\v\\xe5c\\x16>\\x14\\x12\\x05\\x13\\v\\v\\x13\\x05\\x12\\x14>\\x16c\\x05`\\x10\\v\\x8a\\x05\\n\\b\\x04\\x10\\v\\x8a\\v\\x10\\x0e\\b\\n\\n\\b\\x0e\\x94\\x1e,\\x1e\\x1e,V\\v\\x05\\x8b\\x05\\b\\x05S\\a\\x05k\\t\\b\\x053\\x01`\\x02\\x13\\x0f\\x90\\x14\\x1c\\x1c(\\x1c\\x020\\x12l\\x14\\x1c\\x1c(\\x1c\\x02k\\f\\x12\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00\\x00%\\x16\\x15\\x14\\x0f\\x01\\x0e\\x02#\\\"\\x0054>\\x01?\\x01632\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x1e\\x01\\x177632\\x17\\x01\\xf1\\x0f\\x01\\x18\\x01\\a\\n\\x05\\xc0\\xfe\\xf0\\x05\\t\\x05h\\x02\\x03\\x10\\x060\\x02\\t<\\x17h21\\b\\v\\x05\\x04V\\x06\\x10\\x03\\x02h\\x05\\t\\x05\\x01\\x10\\xc0\\x05\\n\\a\\x01\\x18\\x01\\x0fp\\x04\\x05\\v\\b12h\\x17<\\t\\x02\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01454/\\x01&#\\\"\\x0f\\x01.\\x01'7654/\\x01&#\\\"#\\a\\x06\\x15\\x14\\x16327\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01P\\tF\\x03\\x03\\a\\x05\\x1f\\x1fA\\x0e&\\x05\\x01\\x1e\\x04\\n\\x02\\x01A\\f\\xaax\\f\\x03\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xcd\\x01\\x02\\n\\x04\\x1e\\x01\\x05&\\x0eA\\x1f\\x1f\\x05\\a\\x03\\x03F\\t\\x0f\\x03\\fx\\xaa\\f\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x10\\x00\\x1c\\x00(\\x004\\x00@\\x00P\\x00X\\x00_\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x11#\\x15#5463\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\a2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\\"\\x06\\x14\\x16264\\x055'\\a'\\a\\x15\\x02`\\r\\x13\\x13\\r\\x80\\xc0\\xa0\\x13\\rH\\t\\x1e\\t\\t\\x1e\\t\\x01`\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\xa8\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\rM\\x1a\\x13\\x13\\x1a\\x13\\x01\\x00`\\x80 @\\x01\\xc0\\x13\\r\\xfe\\xc0\\r\\x13\\x01@@`\\r\\x13g\\x1e\\t\\t\\x1e\\t\\xc7\\x1e\\t\\t\\x1e\\tq\\x1e\\t\\t\\x1e\\tq\\x1e\\t\\t\\x1e\\t0\\x13\\r\\xfe\\xe0\\r\\x13\\x13\\r\\x01 \\r\\x13@\\x13\\x1a\\x13\\x13\\x1a\\xcd``\\x80 @ \\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x81\\x01\\xc0\\x00\\x13\\x00;\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x017\\x17\\a\\x05\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'\\x01&54?\\x01632\\x1f\\x015463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\a'7#\\x15\\x01P\\a\\t\\t\\a\\x80\\a\\t\\t\\a \\x1bC\\t\\x015\\x06\\x03\\x14\\x05\\b\\x05\\x04\\xfd\\xb3\\x06\\x03\\x14\\x05\\b\\x05\\x04s\\t\\a\\x01\\xa0\\a\\t\\t\\a \\a\\tv1C v \\t\\a \\a\\t\\t\\a \\a\\tP4\\x1c*\\x05\\b\\x05\\x05\\x19\\x06\\x03\\x01\\xc7\\x05\\b\\x05\\x05\\x19\\x06\\x03Y,\\a\\t\\t\\a`\\a\\t\\t\\a \\x944`\\x1d\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x117\\\"&=\\x014?\\x01#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06#\\x17\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\xb0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\xa0\\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x1f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10`\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfeЀ\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\xeb\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x00\\x13\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\x17\\\"&=\\x014?\\x01#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06#\\x17\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\x10\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\xe0\\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x1f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10\\x01 \\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010@\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\xeb\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00U\\x00\\x00\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014635\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#!2\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11\\xf0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\xff\\x00\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a \\a\\t\\t\\a \\a\\t\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00U\\x00\\x00\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014635\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#%\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\xf0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\xfe`\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xb1\\x01\\xa8\\x00\\x15\\x005\\x00J\\x00R\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01\\x036\\x16\\x1d\\x01\\x14\\x06\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14\\xb0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t6(>*,\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05!\\x1f\\x10\\f\\f\\x10\\f`\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0@\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a\\x04\\x03 \\t\\t\\ap\\x01}\\v1'\\v3>\\x13\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xb1\\x01\\xa8\\x00\\x15\\x005\\x00J\\x00R\\x00\\x00\\x13\\x17\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\\"&?\\x0162\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01\\x036\\x16\\x1d\\x01\\x14\\x06\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14kP\\b\\b\\v0\\t\\a \\a\\t0\\v\\b\\bP\\x04\\x0e\\x01)\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t6(>*,\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05!\\x1f\\x10\\f\\f\\x10\\f\\x01\\x9b`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x14\\a`\\x05\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a\\x04\\x03 \\t\\t\\ap\\x01}\\v1'\\v3>\\x13\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00'\\x00D\\x00G\\x00\\\\\\x00\\x00%\\\"&=\\x0146;\\x012\\x16\\x17\\x14\\x15\\x14\\a\\x1e\\x01\\x15\\x14\\x15\\x0e\\x01#'\\x153264&#\\a\\x153264&#'\\x17\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x01>\\x02;\\x012\\x16\\a3'\\x05\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x17\\x01\\x10\\a\\t\\t\\aK 2\\x03\\t\\n\\x0f\\x022!3(\\n\\x0e\\x0e\\n(8\\n\\x0e\\x0e\\n\\xd5D\\x01\\t\\a\\x19\\f\\x03\\fX\\f\\x03\\f\\x19\\a\\t\\x01D\\x02\\t\\r\\x06\\x1a\\t\\x12?.\\x17\\x01\\xcb\\x05\\x05\\xd0\\x04\\x0e\\x04p\\x05\\x05-\\x05\\r\\x057\\x98\\x04\\r\\x05\\xc0\\t\\a\\xe0\\a\\t*\\x1f\\x03\\x04\\x14\\x12\\t#\\x0e\\x02\\x03 +\\xc80\\x0e\\x14\\x0e`0\\x0e\\x14\\x0e\\x82\\xd6\\x02\\x02\\a\\t\\f$$\\f\\t\\a\\x02\\x02\\xd6\\x06\\n\\x06\\r\\x83E\\xc9\\x05\\r\\x05\\xd0\\x05\\x05p\\x05\\r\\x05-\\x05\\x058\\x98\\x05\\x05\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01@\\x00\\x16\\x00\\x1e\\x00&\\x00\\x00\\x012\\x16\\x14\\x06#!\\\"&462\\x16\\x15\\x14\\x06\\a3.\\x01546\\x04\\x14\\x16264&\\\"\\x04264&\\\"\\x06\\x14\\x01\\xf0<TT<\\xfe\\xa0<TTxT\\x0e\\np\\n\\x0eT\\xfe\\x8c/B//B\\x01`B//B/\\x01@TxTTxTT<\\x12/\\x0f\\x0f/\\x12<ToB//B/\\xa0/B//B\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\x80\\x00\\r\\x005\\x00\\x00%\\x06\\\"'632\\x17\\x1627632\\x17\\x16\\x15\\x14\\a\\x0e\\x04\\\".\\x03'&54632\\x17\\x1e\\x0632>\\x037632\\x01\\xeaG\\xc6G';\\x12\\x13\\x0f(\\x0f\\x13\\x12;\\xb6\\a\\x01\\x03\\x0e4Bt\\x88tB4\\x0e\\x03\\x01\\t\\a\\x06\\x05\\x02\\b\\x1d!47K'6d?7\\x11\\x04\\x05\\x06\\x05\\x97\\x17\\x17\\xe9\\x0e\\f\\f\\x0e\\xc4\\x04\\t\\x03\\x03\\a\\x1eD5++5D\\x1e\\a\\x03\\x03\\a\\t\\x04\\x02\\a\\x13\\x11\\x15\\x0f\\n\\x13\\x18\\x1f\\r\\x04\\x04\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xe0\\x02\\x80\\x01\\x81\\x00\\x0f\\x00-\\x00\\x00%\\x17\\x1e\\x033!\\\"'&7>\\x0132\\x05\\x1e\\x03\\x15\\x14\\x06#\\\".\\x03/\\x01&#\\\"\\a7>\\x01?\\x01632\\x16\\x17\\x01\\x05b!-9<&\\xfd\\xde\\x16\\x0e\\x0e\\x05\\x0fZ:5\\x01\\x16)=\\x1d\\x0e\\x1c\\x14\\x1d1$+\\x1e\\x19b6@\\x04\\x10\\x06\\x03\\x1d\\x13\\xbf\\a\\x06\\x17%\\x03\\x9dU\\x1c!\\x1f\\f\\x15\\x15\\x1aFV\\x11\\x03 ,$\\f\\x14\\x1c\\t\\x0e\\x1c\\x17\\x17T+\\x02A\\x13!\\x04)\\x01\\x1f\\x16\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\t\\x00\\x10\\x00\\x17\\x00\\x00=\\x01!\\x15\\x14\\x06+\\x01\\\"&\\x13\\x15#546;\\x012\\x16\\x1d\\x01#5\\x01\\x80^B@B^\\xb0\\xb0^B@B^\\xb0`\\x80\\x80B^^\\x01\\xa2\\xc0 B^^B \\xc0\\x00\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x022\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\xd5V==V=^\\x14\\x0e\\x0e\\x14\\x0eOΑ\\x91Α\\xc3jKKjK\\x01(=V==VC\\x0e\\x14\\x0e\\x0e\\x14\\x01\\x02\\x91Α\\x91\\xce\\xe7KjKKj\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\\"\\x00*\\x00:\\x00D\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x172\\x16\\x1d\\x01\\x14\\x06#!\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x01\\x99\\x0e\\t\\t\\x0e\\t\\xe0\\a\\t\\t\\a\\xfe\\xb08P8 \\x1a&&\\x1a\\x01`B^\\xfel(\\x1c\\x1c(\\x1cp\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\xc0\\x13\\r@\\r\\x13\\xf0\\t\\x0e\\t\\t\\x0eg\\t\\a \\a\\t(88(&\\x1a\\x01\\x00\\x1a&^B\\xa0p\\x1c(\\x1c\\x1c(\\xd4@\\r\\x13\\x13\\r@\\r\\x13\\x13s\\xc0\\r\\x13\\x13\\r\\xc0\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\x80\\x00\\x1a\\x00#\\x00-\\x006\\x00>\\x00F\\x00N\\x00V\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!.\\x01\\\"\\x06\\a#\\\"&5\\x11463!2\\x16\\x1d\\x01%54+\\x01\\\"\\x1d\\x016754+\\x01\\\"\\x1d\\x0162\\x1754+\\x01\\\"\\x1d\\x01\\x16\\x1754+\\x01\\\"\\x1d\\x01354+\\x01\\\"\\x1d\\x01 2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\xfe\\xae\\x06>T>\\x062\\a\\t\\t\\a\\x02\\x00\\a\\t\\xfe@\\b\\x10\\b\\x0fq\\b\\x10\\b\\f\\bl\\b\\x10\\b\\x11o\\b\\x10\\b\\x80\\b\\x10\\b\\xfe\\xcfB//B/C\\x1a\\x13\\x13\\x1a\\x13\\x80\\t\\a \\a\\t)77)\\t\\a\\x01 \\a\\t\\t\\a\\xf0Ll\\b\\b\\x80\\f\\x1bY\\b\\bY\\x01(\\x80\\b\\bl\\bD\\xb8\\b\\b\\xb8\\xb8\\b\\b\\xb8/B//BA\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x1c\\x01V\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x006\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x19\\x00\\x85\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x05\\x00\\xab\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x03\\x00 \\x00\\xf3\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x19\\x01H\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x00&\\x01\\xb0\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x16\\x02\\x05\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\n\\x00,\\x02v\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\v\\x00\\x17\\x02\\xd3\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x13\\x03\\x13\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x05\\x033\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x19\\x03m\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x13\\x03\\xaf\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x05\\x03\\xcf\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x00\\x004\\x00\\x00\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x01\\x002\\x00Q\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x02\\x00\\n\\x00\\x9f\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x03\\x00@\\x00\\xb1\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x04\\x002\\x01\\x14\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x05\\x00L\\x01b\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x06\\x00,\\x01\\xd7\\x00\\x03\\x00\\x01\\x04\\t\\x00\\n\\x00X\\x02\\x1c\\x00\\x03\\x00\\x01\\x04\\t\\x00\\v\\x00.\\x02\\xa3\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x10\\x00&\\x02\\xeb\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x11\\x00\\n\\x03'\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x12\\x002\\x039\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x15\\x00&\\x03\\x87\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x16\\x00\\n\\x03\\xc3\\x00C\\x00o\\x00p\\x00y\\x00r\\x00i\\x00g\\x00h\\x00t\\x00 \\x00(\\x00c\\x00)\\x00 \\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00\\x00Copyright (c) Font Awesome\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Font Awesome 5 Free Solid\\x00\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Solid\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00-\\x005\\x00.\\x001\\x002\\x00.\\x000\\x00\\x00Font Awesome 5 Free Solid-5.12.0\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Font Awesome 5 Free Solid\\x00\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00330.752 (Font Awesome version: 5.12.0)\\x00\\x00F\\x00o\\x00n\\x00t\\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x005\\x00F\\x00r\\x00e\\x00e\\x00-\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00FontAwesome5Free-Solid\\x00\\x00T\\x00h\\x00e\\x00 \\x00w\\x00e\\x00b\\x00'\\x00s\\x00 \\x00m\\x00o\\x00s\\x00t\\x00 \\x00p\\x00o\\x00p\\x00u\\x00l\\x00a\\x00r\\x00 \\x00i\\x00c\\x00o\\x00n\\x00 \\x00s\\x00e\\x00t\\x00 \\x00a\\x00n\\x00d\\x00 \\x00t\\x00o\\x00o\\x00l\\x00k\\x00i\\x00t\\x00.\\x00\\x00The web's most popular icon set and toolkit.\\x00\\x00h\\x00t\\x00t\\x00p\\x00s\\x00:\\x00/\\x00/\\x00f\\x00o\\x00n\\x00t\\x00a\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00.\\x00c\\x00o\\x00m\\x00\\x00https://fontawesome.com\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Solid\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Font Awesome 5 Free Solid\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Solid\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xdb\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\xc7\\x00\\x00\\x00\\x01\\x00\\x02\\x01\\x02\\x01\\x03\\x01\\x04\\x01\\x05\\x01\\x06\\x01\\a\\x01\\b\\x01\\t\\x01\\n\\x01\\v\\x01\\f\\x01\\r\\x01\\x0e\\x01\\x0f\\x01\\x10\\x01\\x11\\x01\\x12\\x01\\x13\\x01\\x14\\x01\\x15\\x01\\x16\\x01\\x17\\x01\\x18\\x01\\x19\\x01\\x1a\\x01\\x1b\\x01\\x1c\\x01\\x1d\\x01\\x1e\\x01\\x1f\\x01 \\x01!\\x01\\\"\\x01#\\x01$\\x01%\\x01&\\x01'\\x01(\\x01)\\x01*\\x01+\\x01,\\x01-\\x01.\\x01/\\x010\\x011\\x012\\x013\\x014\\x015\\x016\\x017\\x018\\x019\\x01:\\x01;\\x01<\\x01=\\x01>\\x01?\\x01@\\x01A\\x01B\\x01C\\x01D\\x01E\\x01F\\x01G\\x01H\\x01I\\x01J\\x01K\\x01L\\x01M\\x01N\\x01O\\x01P\\x01Q\\x01R\\x01S\\x01T\\x01U\\x00\\x0e\\x00\\xef\\x00\\r\\x01V\\x01W\\x01X\\x01Y\\x01Z\\x01[\\x01\\\\\\x01]\\x01^\\x01_\\x01`\\x01a\\x01b\\x01c\\x01d\\x01e\\x01f\\x01g\\x01h\\x01i\\x01j\\x01k\\x01l\\x01m\\x01n\\x01o\\x01p\\x01q\\x01r\\x01s\\x01t\\x01u\\x01v\\x01w\\x01x\\x01y\\x01z\\x01{\\x01|\\x01}\\x01~\\x01\\u007f\\x01\\x80\\x01\\x81\\x01\\x82\\x01\\x83\\x01\\x84\\x01\\x85\\x01\\x86\\x01\\x87\\x01\\x88\\x01\\x89\\x01\\x8a\\x01\\x8b\\x01\\x8c\\x01\\x8d\\x01\\x8e\\x01\\x8f\\x01\\x90\\x01\\x91\\x01\\x92\\x01\\x93\\x01\\x94\\x01\\x95\\x01\\x96\\x01\\x97\\x01\\x98\\x01\\x99\\x01\\x9a\\x01\\x9b\\x01\\x9c\\x01\\x9d\\x01\\x9e\\x01\\x9f\\x01\\xa0\\x01\\xa1\\x01\\xa2\\x01\\xa3\\x01\\xa4\\x01\\xa5\\x01\\xa6\\x01\\xa7\\x01\\xa8\\x01\\xa9\\x01\\xaa\\x01\\xab\\x01\\xac\\x01\\xad\\x01\\xae\\x01\\xaf\\x01\\xb0\\x01\\xb1\\x01\\xb2\\x01\\xb3\\x01\\xb4\\x01\\xb5\\x01\\xb6\\x01\\xb7\\x01\\xb8\\x01\\xb9\\x01\\xba\\x01\\xbb\\x01\\xbc\\x01\\xbd\\x01\\xbe\\x01\\xbf\\x01\\xc0\\x01\\xc1\\x01\\xc2\\x01\\xc3\\x01\\xc4\\x01\\xc5\\x01\\xc6\\x01\\xc7\\x01\\xc8\\x01\\xc9\\x01\\xca\\x01\\xcb\\x01\\xcc\\x01\\xcd\\x01\\xce\\x01\\xcf\\x01\\xd0\\x01\\xd1\\x01\\xd2\\x00\\\"\\x01\\xd3\\x01\\xd4\\x01\\xd5\\x01\\xd6\\x01\\xd7\\x01\\xd8\\x01\\xd9\\x01\\xda\\x01\\xdb\\x01\\xdc\\x01\\xdd\\x01\\xde\\x01\\xdf\\x01\\xe0\\x01\\xe1\\x01\\xe2\\x01\\xe3\\x01\\xe4\\x01\\xe5\\x01\\xe6\\x01\\xe7\\x01\\xe8\\x01\\xe9\\x01\\xea\\x01\\xeb\\x01\\xec\\x01\\xed\\x01\\xee\\x01\\xef\\x01\\xf0\\x01\\xf1\\x01\\xf2\\x01\\xf3\\x01\\xf4\\x01\\xf5\\x01\\xf6\\x01\\xf7\\x01\\xf8\\x01\\xf9\\x01\\xfa\\x01\\xfb\\x01\\xfc\\x01\\xfd\\x01\\xfe\\x01\\xff\\x02\\x00\\x02\\x01\\x02\\x02\\x02\\x03\\x02\\x04\\x02\\x05\\x02\\x06\\x02\\a\\x02\\b\\x02\\t\\x02\\n\\x02\\v\\x02\\f\\x02\\r\\x02\\x0e\\x02\\x0f\\x02\\x10\\x02\\x11\\x02\\x12\\x02\\x13\\x02\\x14\\x02\\x15\\x02\\x16\\x02\\x17\\x02\\x18\\x02\\x19\\x02\\x1a\\x02\\x1b\\x02\\x1c\\x02\\x1d\\x02\\x1e\\x02\\x1f\\x02 \\x02!\\x02\\\"\\x02#\\x02$\\x02%\\x02&\\x02'\\x02(\\x02)\\x00\\x88\\x02*\\x02+\\x02,\\x02-\\x02.\\x02/\\x020\\x021\\x022\\x023\\x024\\x025\\x026\\x00\\x8b\\x00#\\x027\\x028\\x029\\x02:\\x02;\\x02<\\x02=\\x02>\\x02?\\x02@\\x02A\\x02B\\x02C\\x02D\\x02E\\x02F\\x02G\\x02H\\x02I\\x02J\\x02K\\x02L\\x02M\\x02N\\x02O\\x02P\\x02Q\\x02R\\x02S\\x02T\\x02U\\x02V\\x02W\\x02X\\x02Y\\x02Z\\x02[\\x02\\\\\\x02]\\x02^\\x02_\\x02`\\x02a\\x02b\\x02c\\x02d\\x02e\\x02f\\x02g\\x02h\\x02i\\x02j\\x02k\\x02l\\x02m\\x02n\\x02o\\x02p\\x02q\\x02r\\x02s\\x00\\x8c\\x00\\x8a\\x02t\\x02u\\x02v\\x02w\\x02x\\x02y\\x02z\\x02{\\x02|\\x02}\\x02~\\x02\\u007f\\x02\\x80\\x02\\x81\\x02\\x82\\x00\\b\\x02\\x83\\x02\\x84\\x02\\x85\\x02\\x86\\x02\\x87\\x02\\x88\\x02\\x89\\x02\\x8a\\x02\\x8b\\x02\\x8c\\x02\\x8d\\x02\\x8e\\x02\\x8f\\x02\\x90\\x02\\x91\\x02\\x92\\x02\\x93\\x02\\x94\\x02\\x95\\x02\\x96\\x02\\x97\\x02\\x98\\x02\\x99\\x02\\x9a\\x02\\x9b\\x02\\x9c\\x02\\x9d\\x02\\x9e\\x02\\x9f\\x02\\xa0\\x02\\xa1\\x02\\xa2\\x02\\xa3\\x02\\xa4\\x02\\xa5\\x02\\xa6\\x02\\xa7\\x02\\xa8\\x02\\xa9\\x02\\xaa\\x02\\xab\\x02\\xac\\x02\\xad\\x02\\xae\\x02\\xaf\\x02\\xb0\\x02\\xb1\\x02\\xb2\\x02\\xb3\\x02\\xb4\\x02\\xb5\\x02\\xb6\\x02\\xb7\\x02\\xb8\\x02\\xb9\\x02\\xba\\x02\\xbb\\x02\\xbc\\x02\\xbd\\x02\\xbe\\x02\\xbf\\x02\\xc0\\x02\\xc1\\x02\\xc2\\x02\\xc3\\x02\\xc4\\x02\\xc5\\x02\\xc6\\x02\\xc7\\x02\\xc8\\x02\\xc9\\x02\\xca\\x02\\xcb\\x02\\xcc\\x02\\xcd\\x02\\xce\\x02\\xcf\\x02\\xd0\\x02\\xd1\\x02\\xd2\\x02\\xd3\\x02\\xd4\\x02\\xd5\\x02\\xd6\\x02\\xd7\\x02\\xd8\\x02\\xd9\\x02\\xda\\x02\\xdb\\x02\\xdc\\x02\\xdd\\x02\\xde\\x02\\xdf\\x02\\xe0\\x02\\xe1\\x02\\xe2\\x02\\xe3\\x02\\xe4\\x02\\xe5\\x02\\xe6\\x02\\xe7\\x02\\xe8\\x02\\xe9\\x02\\xea\\x02\\xeb\\x02\\xec\\x02\\xed\\x02\\xee\\x02\\xef\\x02\\xf0\\x02\\xf1\\x02\\xf2\\x02\\xf3\\x02\\xf4\\x02\\xf5\\x02\\xf6\\x02\\xf7\\x02\\xf8\\x02\\xf9\\x02\\xfa\\x02\\xfb\\x02\\xfc\\x02\\xfd\\x02\\xfe\\x02\\xff\\x03\\x00\\x03\\x01\\x03\\x02\\x03\\x03\\x03\\x04\\x03\\x05\\x03\\x06\\x03\\a\\x03\\b\\x03\\t\\x03\\n\\x03\\v\\x03\\f\\x03\\r\\x03\\x0e\\x03\\x0f\\x03\\x10\\x03\\x11\\x03\\x12\\x03\\x13\\x03\\x14\\x03\\x15\\x03\\x16\\x03\\x17\\x03\\x18\\x03\\x19\\x03\\x1a\\x03\\x1b\\x03\\x1c\\x03\\x1d\\x03\\x1e\\x03\\x1f\\x03 \\x03!\\x03\\\"\\x03#\\x03$\\x03%\\x03&\\x03'\\x03(\\x03)\\x03*\\x03+\\x03,\\x03-\\x03.\\x03/\\x030\\x031\\x032\\x033\\x034\\x035\\x036\\x037\\x038\\x039\\x03:\\x03;\\x03<\\x03=\\x03>\\x03?\\x03@\\x03A\\x03B\\x03C\\x03D\\x00\\xb8\\x03E\\x03F\\x03G\\x03H\\x03I\\x03J\\x03K\\x03L\\x03M\\x03N\\x00\\x92\\x03O\\x03P\\x03Q\\x03R\\x03S\\x03T\\x03U\\x03V\\x03W\\x03X\\x03Y\\x03Z\\x03[\\x03\\\\\\x03]\\x03^\\x03_\\x03`\\x03a\\x03b\\x03c\\x03d\\x03e\\x03f\\x03g\\x03h\\x03i\\x03j\\x03k\\x03l\\x03m\\x03n\\x03o\\x03p\\x03q\\x03r\\x03s\\x03t\\x03u\\x03v\\x03w\\x03x\\x03y\\x03z\\x03{\\x03|\\x03}\\x03~\\x03\\u007f\\x03\\x80\\x03\\x81\\x03\\x82\\x03\\x83\\x03\\x84\\x03\\x85\\x03\\x86\\x03\\x87\\x03\\x88\\x03\\x89\\x03\\x8a\\x03\\x8b\\x03\\x8c\\x03\\x8d\\x03\\x8e\\x03\\x8f\\x03\\x90\\x03\\x91\\x03\\x92\\x03\\x93\\x03\\x94\\x03\\x95\\x03\\x96\\x03\\x97\\x03\\x98\\x03\\x99\\x03\\x9a\\x03\\x9b\\x03\\x9c\\x03\\x9d\\x03\\x9e\\x03\\x9f\\x03\\xa0\\x03\\xa1\\x03\\xa2\\x03\\xa3\\x03\\xa4\\x03\\xa5\\x03\\xa6\\x03\\xa7\\x03\\xa8\\x03\\xa9\\x03\\xaa\\x03\\xab\\x03\\xac\\x03\\xad\\x03\\xae\\x03\\xaf\\x03\\xb0\\x03\\xb1\\x03\\xb2\\x03\\xb3\\x03\\xb4\\x03\\xb5\\x03\\xb6\\x03\\xb7\\x03\\xb8\\x03\\xb9\\x03\\xba\\x03\\xbb\\x03\\xbc\\x03\\xbd\\x03\\xbe\\x03\\xbf\\x03\\xc0\\x03\\xc1\\x03\\xc2\\x03\\xc3\\x03\\xc4\\x03\\xc5\\x03\\xc6\\x03\\xc7\\x03\\xc8\\x03\\xc9\\x03\\xca\\x03\\xcb\\x03\\xcc\\x03\\xcd\\x03\\xce\\x03\\xcf\\x03\\xd0\\x03\\xd1\\x03\\xd2\\x03\\xd3\\x03\\xd4\\x03\\xd5\\x03\\xd6\\x03\\xd7\\x03\\xd8\\x03\\xd9\\x03\\xda\\x03\\xdb\\x03\\xdc\\x03\\xdd\\x03\\xde\\x03\\xdf\\x03\\xe0\\x03\\xe1\\x03\\xe2\\x03\\xe3\\x03\\xe4\\x03\\xe5\\x03\\xe6\\x03\\xe7\\x03\\xe8\\x03\\xe9\\x03\\xea\\x03\\xeb\\x03\\xec\\x03\\xed\\x03\\xee\\x03\\xef\\x03\\xf0\\x03\\xf1\\x03\\xf2\\x03\\xf3\\x03\\xf4\\x03\\xf5\\x03\\xf6\\x03\\xf7\\x03\\xf8\\x03\\xf9\\x03\\xfa\\x03\\xfb\\x03\\xfc\\x03\\xfd\\x03\\xfe\\x03\\xff\\x04\\x00\\x04\\x01\\x04\\x02\\x04\\x03\\x04\\x04\\x04\\x05\\x04\\x06\\x04\\a\\x04\\b\\x04\\t\\x04\\n\\x04\\v\\x04\\f\\x04\\r\\x04\\x0e\\x04\\x0f\\x04\\x10\\x04\\x11\\x04\\x12\\x04\\x13\\x04\\x14\\x04\\x15\\x04\\x16\\x04\\x17\\x04\\x18\\x04\\x19\\x04\\x1a\\x04\\x1b\\x04\\x1c\\x04\\x1d\\x04\\x1e\\x04\\x1f\\x04 \\x04!\\x04\\\"\\x04#\\x04$\\x04%\\x04&\\x04'\\x04(\\x04)\\x04*\\x04+\\x04,\\x04-\\x04.\\x04/\\x040\\x041\\x042\\x043\\x044\\x045\\x046\\x047\\x048\\x049\\x04:\\x04;\\x04<\\x04=\\x04>\\x04?\\x04@\\x00\\xdd\\x04A\\x04B\\x04C\\x00\\x12\\x04D\\x04E\\x04F\\x04G\\x04H\\x04I\\x04J\\x04K\\x04L\\x04M\\x04N\\x04O\\x04P\\x04Q\\x04R\\x04S\\x04T\\x04U\\x04V\\x04W\\x04X\\x04Y\\x04Z\\x04[\\x04\\\\\\x04]\\x04^\\x04_\\x04`\\x04a\\x04b\\x04c\\x04d\\x04e\\x04f\\x04g\\x04h\\x04i\\x04j\\x04k\\x04l\\x04m\\x04n\\x04o\\x04p\\x04q\\x04r\\x04s\\x04t\\x04u\\x04v\\x04w\\x04x\\x04y\\x04z\\x04{\\x04|\\x04}\\x04~\\x04\\u007f\\x04\\x80\\x04\\x81\\x04\\x82\\x04\\x83\\x04\\x84\\x04\\x85\\x04\\x86\\x04\\x87\\x04\\x88\\x04\\x89\\x04\\x8a\\x04\\x8b\\x04\\x8c\\x04\\x8d\\x04\\x8e\\x04\\x8f\\x04\\x90\\x04\\x91\\x04\\x92\\x04\\x93\\x04\\x94\\x04\\x95\\x04\\x96\\x04\\x97\\x04\\x98\\x04\\x99\\x04\\x9a\\x04\\x9b\\x04\\x9c\\x04\\x9d\\x04\\x9e\\x04\\x9f\\x04\\xa0\\x04\\xa1\\x04\\xa2\\x04\\xa3\\x04\\xa4\\x04\\xa5\\x04\\xa6\\x04\\xa7\\x04\\xa8\\x04\\xa9\\x04\\xaa\\x04\\xab\\x04\\xac\\x04\\xad\\x04\\xae\\x04\\xaf\\x04\\xb0\\x04\\xb1\\x04\\xb2\\x04\\xb3\\x04\\xb4\\x04\\xb5\\x04\\xb6\\x04\\xb7\\rglass-martini\\x05music\\x06search\\x05heart\\x04star\\x04user\\x04film\\bth-large\\x02th\\ath-list\\x05check\\x05times\\vsearch-plus\\fsearch-minus\\tpower-off\\x06signal\\x03cog\\x04home\\x05clock\\x04road\\bdownload\\x05inbox\\x04redo\\x04sync\\blist-alt\\x04lock\\x04flag\\nheadphones\\nvolume-off\\vvolume-down\\tvolume-up\\x06qrcode\\abarcode\\x03tag\\x04tags\\x04book\\bbookmark\\x05print\\x06camera\\x04font\\x04bold\\x06italic\\vtext-height\\ntext-width\\nalign-left\\falign-center\\valign-right\\ralign-justify\\x04list\\aoutdent\\x06indent\\x05video\\x05image\\nmap-marker\\x06adjust\\x04tint\\x04edit\\rstep-backward\\rfast-backward\\bbackward\\x04play\\x05pause\\x04stop\\aforward\\ffast-forward\\fstep-forward\\x05eject\\fchevron-left\\rchevron-right\\vplus-circle\\fminus-circle\\ftimes-circle\\fcheck-circle\\x0fquestion-circle\\vinfo-circle\\ncrosshairs\\x03ban\\narrow-left\\varrow-right\\barrow-up\\narrow-down\\x05share\\x06expand\\bcompress\\x12exclamation-circle\\x04gift\\x04leaf\\x04fire\\x03eye\\teye-slash\\x14exclamation-triangle\\x05plane\\fcalendar-alt\\x06random\\acomment\\x06magnet\\nchevron-up\\fchevron-down\\aretweet\\rshopping-cart\\x06folder\\vfolder-open\\tchart-bar\\fcamera-retro\\x03key\\x04cogs\\bcomments\\tstar-half\\tthumbtack\\x06trophy\\x06upload\\x05lemon\\x05phone\\fphone-square\\x06unlock\\vcredit-card\\x03rss\\x03hdd\\bbullhorn\\vcertificate\\x10hand-point-right\\x0fhand-point-left\\rhand-point-up\\x0fhand-point-down\\x11arrow-circle-left\\x12arrow-circle-right\\x0farrow-circle-up\\x11arrow-circle-down\\x05globe\\x06wrench\\x05tasks\\x06filter\\tbriefcase\\narrows-alt\\x05users\\x04link\\x05cloud\\x05flask\\x03cut\\x04copy\\tpaperclip\\x04save\\x06square\\x04bars\\alist-ul\\alist-ol\\rstrikethrough\\tunderline\\x05table\\x05magic\\x05truck\\nmoney-bill\\ncaret-down\\bcaret-up\\ncaret-left\\vcaret-right\\acolumns\\x04sort\\tsort-down\\asort-up\\benvelope\\x04undo\\x05gavel\\x04bolt\\asitemap\\bumbrella\\x05paste\\tlightbulb\\auser-md\\vstethoscope\\bsuitcase\\x04bell\\x06coffee\\bhospital\\tambulance\\x06medkit\\vfighter-jet\\x04beer\\bh-square\\vplus-square\\x11angle-double-left\\x12angle-double-right\\x0fangle-double-up\\x11angle-double-down\\nangle-left\\vangle-right\\bangle-up\\nangle-down\\adesktop\\x06laptop\\x06tablet\\x06mobile\\nquote-left\\vquote-right\\aspinner\\x06circle\\x05smile\\x05frown\\x03meh\\agamepad\\bkeyboard\\x0eflag-checkered\\bterminal\\x04code\\treply-all\\x0elocation-arrow\\x04crop\\vcode-branch\\x06unlink\\x04info\\vexclamation\\vsuperscript\\tsubscript\\x06eraser\\fpuzzle-piece\\nmicrophone\\x10microphone-slash\\bcalendar\\x11fire-extinguisher\\x06rocket\\x13chevron-circle-left\\x14chevron-circle-right\\x11chevron-circle-up\\x13chevron-circle-down\\x06anchor\\nunlock-alt\\bbullseye\\nellipsis-h\\nellipsis-v\\nrss-square\\vplay-circle\\fminus-square\\fcheck-square\\npen-square\\fshare-square\\acompass\\x11caret-square-down\\x0fcaret-square-up\\x12caret-square-right\\teuro-sign\\npound-sign\\vdollar-sign\\nrupee-sign\\byen-sign\\nruble-sign\\bwon-sign\\x04file\\bfile-alt\\x0fsort-alpha-down\\rsort-alpha-up\\x10sort-amount-down\\x0esort-amount-up\\x11sort-numeric-down\\x0fsort-numeric-up\\tthumbs-up\\vthumbs-down\\x06female\\x04male\\x03sun\\x04moon\\aarchive\\x03bug\\x11caret-square-left\\ndot-circle\\nwheelchair\\tlira-sign\\rspace-shuttle\\x0fenvelope-square\\nuniversity\\x0egraduation-cap\\blanguage\\x03fax\\bbuilding\\x05child\\x03paw\\x04cube\\x05cubes\\arecycle\\x03car\\x04taxi\\x04tree\\bdatabase\\bfile-pdf\\tfile-word\\nfile-excel\\x0ffile-powerpoint\\nfile-image\\ffile-archive\\nfile-audio\\nfile-video\\tfile-code\\tlife-ring\\fcircle-notch\\vpaper-plane\\ahistory\\aheading\\tsliders-h\\tshare-alt\\x10share-alt-square\\x04bomb\\x06futbol\\x03tty\\nbinoculars\\x04plug\\tnewspaper\\x04wifi\\ncalculator\\nbell-slash\\x05trash\\veye-dropper\\vpaint-brush\\rbirthday-cake\\nchart-area\\tchart-pie\\nchart-line\\ntoggle-off\\ttoggle-on\\abicycle\\x03bus\\x11closed-captioning\\vshekel-sign\\tcart-plus\\x0fcart-arrow-down\\x04ship\\vuser-secret\\nmotorcycle\\vstreet-view\\theartbeat\\x05venus\\x04mars\\amercury\\vtransgender\\x0ftransgender-alt\\fvenus-double\\vmars-double\\nvenus-mars\\vmars-stroke\\rmars-stroke-v\\rmars-stroke-h\\x06neuter\\ngenderless\\x06server\\tuser-plus\\nuser-times\\x03bed\\x05train\\x06subway\\fbattery-full\\x16battery-three-quarters\\fbattery-half\\x0fbattery-quarter\\rbattery-empty\\rmouse-pointer\\bi-cursor\\fobject-group\\x0eobject-ungroup\\vsticky-note\\x05clone\\rbalance-scale\\x0fhourglass-start\\x0ehourglass-half\\rhourglass-end\\thourglass\\thand-rock\\nhand-paper\\rhand-scissors\\vhand-lizard\\nhand-spock\\fhand-pointer\\nhand-peace\\x02tv\\rcalendar-plus\\x0ecalendar-minus\\x0ecalendar-times\\x0ecalendar-check\\bindustry\\amap-pin\\tmap-signs\\x03map\\vcomment-alt\\fpause-circle\\vstop-circle\\fshopping-bag\\x0fshopping-basket\\ahashtag\\x10universal-access\\x05blind\\x11audio-description\\fphone-volume\\abraille\\x1bassistive-listening-systems#american-sign-language-interpreting\\x04deaf\\rsign-language\\nlow-vision\\thandshake\\renvelope-open\\faddress-book\\faddress-card\\vuser-circle\\bid-badge\\aid-card\\x10thermometer-full\\x1athermometer-three-quarters\\x10thermometer-half\\x13thermometer-quarter\\x11thermometer-empty\\x06shower\\x04bath\\apodcast\\x0fwindow-maximize\\x0fwindow-minimize\\x0ewindow-restore\\tmicrochip\\tsnowflake\\rutensil-spoon\\butensils\\bundo-alt\\ttrash-alt\\bsync-alt\\tstopwatch\\fsign-out-alt\\vsign-in-alt\\bredo-alt\\x03poo\\x06images\\npencil-alt\\x03pen\\apen-alt\\x13long-arrow-alt-down\\x13long-arrow-alt-left\\x14long-arrow-alt-right\\x11long-arrow-alt-up\\x11expand-arrows-alt\\tclipboard\\farrows-alt-h\\farrows-alt-v\\x15arrow-alt-circle-down\\x15arrow-alt-circle-left\\x16arrow-alt-circle-right\\x13arrow-alt-circle-up\\x11external-link-alt\\x18external-link-square-alt\\fexchange-alt\\x12cloud-download-alt\\x10cloud-upload-alt\\x03gem\\x0elevel-down-alt\\flevel-up-alt\\tlock-open\\x0emap-marker-alt\\x0emicrophone-alt\\nmobile-alt\\x0emoney-bill-alt\\vphone-slash\\bportrait\\x05reply\\nshield-alt\\ntablet-alt\\x0etachometer-alt\\nticket-alt\\buser-alt\\fwindow-close\\fcompress-alt\\nexpand-alt\\rbaseball-ball\\x0fbasketball-ball\\fbowling-ball\\x05chess\\fchess-bishop\\vchess-board\\nchess-king\\fchess-knight\\nchess-pawn\\vchess-queen\\nchess-rook\\bdumbbell\\rfootball-ball\\tgolf-ball\\vhockey-puck\\tquidditch\\vsquare-full\\ftable-tennis\\x0fvolleyball-ball\\tallergies\\bband-aid\\x03box\\x05boxes\\x11briefcase-medical\\x04burn\\bcapsules\\x0fclipboard-check\\x0eclipboard-list\\tdiagnoses\\x03dna\\x05dolly\\rdolly-flatbed\\ffile-medical\\x10file-medical-alt\\tfirst-aid\\fhospital-alt\\x0fhospital-symbol\\vid-card-alt\\rnotes-medical\\x06pallet\\x05pills\\x13prescription-bottle\\x17prescription-bottle-alt\\nprocedures\\rshipping-fast\\asmoking\\asyringe\\atablets\\vthermometer\\x04vial\\x05vials\\twarehouse\\x06weight\\x05x-ray\\bbox-open\\fcomment-dots\\rcomment-slash\\x05couch\\x06donate\\x04dove\\fhand-holding\\x12hand-holding-heart\\x10hand-holding-usd\\x05hands\\rhands-helping\\rparachute-box\\fpeople-carry\\npiggy-bank\\x06ribbon\\x05route\\bseedling\\x04sign\\nsmile-wink\\x04tape\\rtruck-loading\\ftruck-moving\\vvideo-slash\\nwine-glass\\x0euser-alt-slash\\x0euser-astronaut\\nuser-check\\nuser-clock\\buser-cog\\tuser-edit\\fuser-friends\\ruser-graduate\\tuser-lock\\nuser-minus\\nuser-ninja\\vuser-shield\\nuser-slash\\buser-tag\\buser-tie\\tusers-cog\\x12balance-scale-left\\x13balance-scale-right\\ablender\\tbook-open\\x0fbroadcast-tower\\x05broom\\nchalkboard\\x12chalkboard-teacher\\x06church\\x05coins\\fcompact-disc\\x04crow\\x05crown\\x04dice\\tdice-five\\tdice-four\\bdice-one\\bdice-six\\ndice-three\\bdice-two\\vdoor-closed\\tdoor-open\\x06equals\\afeather\\x04frog\\bgas-pump\\aglasses\\fgreater-than\\x12greater-than-equal\\nhelicopter\\tkiwi-bird\\tless-than\\x0fless-than-equal\\x06memory\\x14microphone-alt-slash\\x0fmoney-bill-wave\\x13money-bill-wave-alt\\vmoney-check\\x0fmoney-check-alt\\tnot-equal\\apalette\\aparking\\npercentage\\x0fproject-diagram\\areceipt\\x05robot\\x05ruler\\x0eruler-combined\\x10ruler-horizontal\\x0eruler-vertical\\x06school\\vscrewdriver\\vshoe-prints\\x05skull\\vsmoking-ban\\x05store\\tstore-alt\\x06stream\\vstroopwafel\\atoolbox\\x06tshirt\\awalking\\x06wallet\\x05angry\\aarchway\\x05atlas\\x05award\\tbackspace\\fbezier-curve\\x04bong\\x05brush\\abus-alt\\bcannabis\\fcheck-double\\bcocktail\\x0econcierge-bell\\x06cookie\\vcookie-bite\\bcrop-alt\\x12digital-tachograph\\x05dizzy\\x10drafting-compass\\x04drum\\rdrum-steelpan\\vfeather-alt\\rfile-contract\\rfile-download\\vfile-export\\vfile-import\\ffile-invoice\\x13file-invoice-dollar\\x11file-prescription\\x0efile-signature\\vfile-upload\\x04fill\\tfill-drip\\vfingerprint\\x04fish\\aflushed\\nfrown-open\\x11glass-martini-alt\\fglobe-africa\\x0eglobe-americas\\nglobe-asia\\agrimace\\x04grin\\bgrin-alt\\tgrin-beam\\x0fgrin-beam-sweat\\vgrin-hearts\\vgrin-squint\\x11grin-squint-tears\\ngrin-stars\\ngrin-tears\\vgrin-tongue\\x12grin-tongue-squint\\x10grin-tongue-wink\\tgrin-wink\\x0fgrip-horizontal\\rgrip-vertical\\x0eheadphones-alt\\aheadset\\vhighlighter\\ahot-tub\\x05hotel\\x05joint\\x04kiss\\tkiss-beam\\x0fkiss-wink-heart\\x05laugh\\nlaugh-beam\\flaugh-squint\\nlaugh-wink\\fluggage-cart\\nmap-marked\\x0emap-marked-alt\\x06marker\\x05medal\\tmeh-blank\\x10meh-rolling-eyes\\bmonument\\rmortar-pestle\\fpaint-roller\\bpassport\\tpen-fancy\\apen-nib\\fpencil-ruler\\rplane-arrival\\x0fplane-departure\\fprescription\\asad-cry\\bsad-tear\\vshuttle-van\\tsignature\\nsmile-beam\\vsolar-panel\\x03spa\\asplotch\\tspray-can\\x05stamp\\rstar-half-alt\\x10suitcase-rolling\\bsurprise\\nswatchbook\\aswimmer\\rswimming-pool\\ntint-slash\\x05tired\\x05tooth\\x0eumbrella-beach\\rvector-square\\x0eweight-hanging\\x0ewine-glass-alt\\rair-freshener\\tapple-alt\\x04atom\\x04bone\\vbook-reader\\x05brain\\acar-alt\\vcar-battery\\tcar-crash\\bcar-side\\x10charging-station\\ndirections\\fdraw-polygon\\vlaptop-code\\vlayer-group\\nmicroscope\\aoil-can\\x04poop\\x06shapes\\fstar-of-life\\x05teeth\\nteeth-open\\rtheater-masks\\rtraffic-light\\rtruck-monster\\ftruck-pickup\\x02ad\\x04ankh\\x05bible\\rbusiness-time\\x04city\\x0ecomment-dollar\\x0fcomments-dollar\\x05cross\\fdharmachakra\\x12envelope-open-text\\ffolder-minus\\vfolder-plus\\rfunnel-dollar\\agopuram\\x05hamsa\\x05bahai\\x04jedi\\x0ejournal-whills\\x05kaaba\\x06khanda\\blandmark\\tmail-bulk\\amenorah\\x06mosque\\x02om\\x0epastafarianism\\x05peace\\x10place-of-worship\\x04poll\\x06poll-h\\x04pray\\rpraying-hands\\x05quran\\rsearch-dollar\\x0fsearch-location\\x05socks\\x0fsquare-root-alt\\x11star-and-crescent\\rstar-of-david\\tsynagogue\\x05torah\\ntorii-gate\\x06vihara\\vvolume-mute\\byin-yang\\rblender-phone\\tbook-dead\\ncampground\\x03cat\\x05chair\\ncloud-moon\\tcloud-sun\\bdice-d20\\adice-d6\\x03dog\\x06dragon\\x0edrumstick-bite\\adungeon\\bfile-csv\\vfist-raised\\x05ghost\\x06hammer\\bhanukiah\\nhat-wizard\\x06hiking\\x05hippo\\x05horse\\fhouse-damage\\ahryvnia\\x04mask\\bmountain\\rnetwork-wired\\x05otter\\arunning\\x06scroll\\x10skull-crossbones\\x06spider\\ftoilet-paper\\atractor\\fuser-injured\\fvr-cardboard\\x04wind\\vwine-bottle\\x0ecloud-meatball\\x0fcloud-moon-rain\\ncloud-rain\\x13cloud-showers-heavy\\x0ecloud-sun-rain\\bdemocrat\\bflag-usa\\x06meteor\\fperson-booth\\tpoo-storm\\arainbow\\nrepublican\\x04smog\\x10temperature-high\\x0ftemperature-low\\bvote-yea\\x05water\\x04baby\\rbaby-carriage\\tbiohazard\\x04blog\\fcalendar-day\\rcalendar-week\\ncandy-cane\\x06carrot\\rcash-register\\x13compress-arrows-alt\\bdumpster\\rdumpster-fire\\bethernet\\x05gifts\\fglass-cheers\\rglass-whiskey\\fglobe-europe\\ngrip-lines\\x13grip-lines-vertical\\x06guitar\\fheart-broken\\vholly-berry\\nhorse-head\\aicicles\\x05igloo\\x06mitten\\amug-hot\\tradiation\\rradiation-alt\\brestroom\\tsatellite\\x0esatellite-dish\\asd-card\\bsim-card\\askating\\x06skiing\\rskiing-nordic\\x06sleigh\\x03sms\\fsnowboarding\\asnowman\\bsnowplow\\x05tenge\\x06toilet\\x05tools\\x04tram\\bfire-alt\\x05bacon\\fbook-medical\\vbread-slice\\x06cheese\\x0eclinic-medical\\x0fcomment-medical\\x06crutch\\x03egg\\thamburger\\x12hand-middle-finger\\bhard-hat\\x06hotdog\\tice-cream\\x0elaptop-medical\\x05pager\\npepper-hot\\vpizza-slice\\rtrash-restore\\x11trash-restore-alt\\nuser-nurse\\vwave-square\\x06biking\\nborder-all\\vborder-none\\fborder-style\\x03fan\\x05icons\\tphone-alt\\x10phone-square-alt\\vphoto-video\\rremove-format\\x13sort-alpha-down-alt\\x11sort-alpha-up-alt\\x14sort-amount-down-alt\\x12sort-amount-up-alt\\x15sort-numeric-down-alt\\x13sort-numeric-up-alt\\vspell-check\\tvoicemail\\nhat-cowboy\\x0fhat-cowboy-side\\x05mouse\\frecord-vinyl\\acaravan\\atrailer\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x03\\xc6\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\xd9k%\\xf9\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\"\nvar _Assetsb83960ccf65b57d0332e33d148e2165646ceb9bb = \"package gateway\\n\\nimport (\\n\\t\\\"context\\\"\\n\\t\\\"fmt\\\"\\n\\t\\\"io/ioutil\\\"\\n\\t\\\"net/http\\\"\\n\\tgopath \\\"path\\\"\\n\\t\\\"strings\\\"\\n\\n\\t\\\"github.com/gin-gonic/gin\\\"\\n\\t\\\"github.com/gin-gonic/gin/render\\\"\\n\\tfiles \\\"github.com/ipfs/go-ipfs-files\\\"\\n\\tiface \\\"github.com/ipfs/interface-go-ipfs-core\\\"\\n\\t\\\"github.com/ipfs/interface-go-ipfs-core/path\\\"\\n\\t\\\"github.com/libp2p/go-libp2p-core/peer\\\"\\n\\t\\\"github.com/textileio/textile/v2/util\\\"\\n)\\n\\nfunc (g *Gateway) ipfsHandler(c *gin.Context) {\\n\\tbase := fmt.Sprintf(\\\"ipfs/%s\\\", c.Param(\\\"root\\\"))\\n\\tpth := fmt.Sprintf(\\\"/%s%s\\\", base, c.Param(\\\"path\\\"))\\n\\tg.renderIPFSPath(c, base, pth)\\n}\\n\\nfunc (g *Gateway) renderIPFSPath(c *gin.Context, base, pth string) {\\n\\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\tdefer cancel()\\n\\tpth = strings.TrimSuffix(pth, \\\"/\\\")\\n\\tdata, err := g.openPath(ctx, path.New(pth))\\n\\tif err != nil {\\n\\t\\tif err == iface.ErrIsDir {\\n\\t\\t\\tvar root, dir, back string\\n\\t\\t\\tparts := strings.Split(pth, \\\"/\\\")\\n\\t\\t\\tif len(parts) > 2 {\\n\\t\\t\\t\\troot = strings.Join(parts[:3], \\\"/\\\")\\n\\t\\t\\t\\tdir = strings.Join(parts[3:], \\\"/\\\")\\n\\t\\t\\t\\tback = gopath.Dir(dir)\\n\\t\\t\\t}\\n\\t\\t\\tif dir == \\\"\\\" {\\n\\t\\t\\t\\tback = \\\"\\\"\\n\\t\\t\\t}\\n\\t\\t\\tif !g.subdomains {\\n\\t\\t\\t\\tdir = gopath.Join(base, dir)\\n\\t\\t\\t\\tif back != \\\"\\\" {\\n\\t\\t\\t\\t\\tback = gopath.Join(base, back)\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\tlctx, lcancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\t\\t\\tdefer lcancel()\\n\\t\\t\\tilinks, err := g.ipfs.Object().Links(lctx, path.New(pth))\\n\\t\\t\\tif err != nil {\\n\\t\\t\\t\\trenderError(c, http.StatusNotFound, err)\\n\\t\\t\\t\\treturn\\n\\t\\t\\t}\\n\\t\\t\\tvar links []link\\n\\t\\t\\tfor _, l := range ilinks {\\n\\t\\t\\t\\tlinks = append(links, link{\\n\\t\\t\\t\\t\\tName: l.Name,\\n\\t\\t\\t\\t\\tPath: gopath.Join(dir, l.Name),\\n\\t\\t\\t\\t\\tSize: util.ByteCountDecimal(int64(l.Size)),\\n\\t\\t\\t\\t})\\n\\t\\t\\t}\\n\\t\\t\\tvar index string\\n\\t\\t\\tif strings.HasPrefix(base, \\\"ipns\\\") {\\n\\t\\t\\t\\tindex = gopath.Join(\\\"/\\\", base, dir)\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tindex = gopath.Join(root, dir)\\n\\t\\t\\t}\\n\\t\\t\\tif !g.subdomains {\\n\\t\\t\\t\\tdir = strings.TrimPrefix(strings.Replace(dir, base, \\\"\\\", 1), \\\"/\\\")\\n\\t\\t\\t}\\n\\t\\t\\tparams := gin.H{\\n\\t\\t\\t\\t\\\"Title\\\":   \\\"Index of \\\" + index,\\n\\t\\t\\t\\t\\\"Root\\\":    \\\"/\\\" + dir,\\n\\t\\t\\t\\t\\\"Path\\\":    pth,\\n\\t\\t\\t\\t\\\"Updated\\\": \\\"\\\",\\n\\t\\t\\t\\t\\\"Back\\\":    strings.TrimPrefix(back, \\\"/\\\"),\\n\\t\\t\\t\\t\\\"Links\\\":   links,\\n\\t\\t\\t}\\n\\t\\t\\tc.HTML(http.StatusOK, \\\"/public/html/unixfs.gohtml\\\", params)\\n\\t\\t} else {\\n\\t\\t\\trenderError(c, http.StatusBadRequest, err)\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t} else {\\n\\t\\tc.Render(200, render.Data{Data: data})\\n\\t}\\n}\\n\\nfunc (g *Gateway) openPath(ctx context.Context, pth path.Path) ([]byte, error) {\\n\\tf, err := g.ipfs.Unixfs().Get(ctx, pth)\\n\\tif err != nil {\\n\\t\\treturn nil, err\\n\\t}\\n\\tdefer f.Close()\\n\\tvar file files.File\\n\\tswitch f := f.(type) {\\n\\tcase files.File:\\n\\t\\tfile = f\\n\\tcase files.Directory:\\n\\t\\treturn nil, iface.ErrIsDir\\n\\tdefault:\\n\\t\\treturn nil, iface.ErrNotSupported\\n\\t}\\n\\treturn ioutil.ReadAll(file)\\n}\\n\\nfunc (g *Gateway) ipnsHandler(c *gin.Context) {\\n\\tg.renderIPNSKey(c, c.Param(\\\"key\\\"), c.Param(\\\"path\\\"))\\n}\\n\\nfunc (g *Gateway) renderIPNSKey(c *gin.Context, key, pth string) {\\n\\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\tdefer cancel()\\n\\troot, err := g.ipfs.Name().Resolve(ctx, key)\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusNotFound, err)\\n\\t\\treturn\\n\\t}\\n\\tbase := fmt.Sprintf(\\\"ipns/%s\\\", key)\\n\\tg.renderIPFSPath(c, base, gopath.Join(root.String(), pth))\\n}\\n\\nfunc (g *Gateway) p2pHandler(c *gin.Context) {\\n\\tg.renderP2PKey(c, c.Param(\\\"key\\\"))\\n}\\n\\nfunc (g *Gateway) renderP2PKey(c *gin.Context, key string) {\\n\\tpid, err := peer.Decode(key)\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusBadRequest, err)\\n\\t\\treturn\\n\\t}\\n\\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\tdefer cancel()\\n\\tinfo, err := g.ipfs.Dht().FindPeer(ctx, pid)\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusNotFound, err)\\n\\t\\treturn\\n\\t}\\n\\tc.JSON(http.StatusOK, info)\\n}\\n\\nfunc (g *Gateway) ipldHandler(c *gin.Context) {\\n\\tpth := fmt.Sprintf(\\\"%s%s\\\", c.Param(\\\"root\\\"), strings.TrimSuffix(c.Param(\\\"path\\\"), \\\"/\\\"))\\n\\tg.renderP2PKey(c, pth)\\n}\\n\\nfunc (g *Gateway) renderIPLDPath(c *gin.Context, pth string) {\\n\\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\tdefer cancel()\\n\\tnode, err := g.ipfs.Object().Get(ctx, path.New(pth))\\n\\tif err != nil {\\n\\t\\trenderError(c, http.StatusNotFound, err)\\n\\t\\treturn\\n\\t}\\n\\tc.JSON(http.StatusOK, node)\\n}\\n\"\nvar _Assets747353a94cf1b19b7a2e5c9fbc50b3ea0972f088 = \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n<svg width=\\\"1200px\\\" height=\\\"1400px\\\" viewBox=\\\"0 0 1200 1400\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\">\\n    <!-- Generator: Sketch 52.6 (67491) - http://www.bohemiancoding.com/sketch -->\\n    <title>Artboard</title>\\n    <desc>Created with Sketch.</desc>\\n    <defs>\\n        <polygon id=\\\"path-1\\\" points=\\\"650 0 1212.91651 325 1212.91651 975 650 1300 87.0834875 975 87.0834875 325\\\"></polygon>\\n    </defs>\\n    <g id=\\\"Artboard\\\" stroke=\\\"none\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-rule=\\\"evenodd\\\">\\n        <g id=\\\"Group\\\" transform=\\\"translate(-100.000000, 0.000000)\\\">\\n            <polygon id=\\\"Polygon\\\" fill=\\\"#FFCE00\\\" points=\\\"700 0 1306.21778 350 1306.21778 1050 700 1400 93.7822174 1050 93.7822174 350\\\"></polygon>\\n            <g id=\\\"Textile_Icon_A_1200px-copy\\\" transform=\\\"translate(50.000000, 50.000000)\\\">\\n                <mask id=\\\"mask-2\\\" fill=\\\"white\\\">\\n                    <use xlink:href=\\\"#path-1\\\"></use>\\n                </mask>\\n                <use id=\\\"Mask\\\" fill=\\\"#FFB6D5\\\" xlink:href=\\\"#path-1\\\"></use>\\n                <image mask=\\\"url(#mask-2)\\\" x=\\\"25\\\" y=\\\"25\\\" width=\\\"1250\\\" height=\\\"1250\\\" xlink:href=\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAASwCAYAAADrIbPPAAAEGWlDQ1BrQ0dDb2xvclNwYWNlR2VuZXJpY1JHQgAAOI2NVV1oHFUUPrtzZyMkzlNsNIV0qD8NJQ2TVjShtLp/3d02bpZJNtoi6GT27s6Yyc44M7v9oU9FUHwx6psUxL+3gCAo9Q/bPrQvlQol2tQgKD60+INQ6Ium65k7M5lpurHeZe58853vnnvuuWfvBei5qliWkRQBFpquLRcy4nOHj4g9K5CEh6AXBqFXUR0rXalMAjZPC3e1W99Dwntf2dXd/p+tt0YdFSBxH2Kz5qgLiI8B8KdVy3YBevqRHz/qWh72Yui3MUDEL3q44WPXw3M+fo1pZuQs4tOIBVVTaoiXEI/MxfhGDPsxsNZfoE1q66ro5aJim3XdoLFw72H+n23BaIXzbcOnz5mfPoTvYVz7KzUl5+FRxEuqkp9G/Ajia219thzg25abkRE/BpDc3pqvphHvRFys2weqvp+krbWKIX7nhDbzLOItiM8358pTwdirqpPFnMF2xLc1WvLyOwTAibpbmvHHcvttU57y5+XqNZrLe3lE/Pq8eUj2fXKfOe3pfOjzhJYtB/yll5SDFcSDiH+hRkH25+L+sdxKEAMZahrlSX8ukqMOWy/jXW2m6M9LDBc31B9LFuv6gVKg/0Szi3KAr1kGq1GMjU/aLbnq6/lRxc4XfJ98hTargX++DbMJBSiYMIe9Ck1YAxFkKEAG3xbYaKmDDgYyFK0UGYpfoWYXG+fAPPI6tJnNwb7ClP7IyF+D+bjOtCpkhz6CFrIa/I6sFtNl8auFXGMTP34sNwI/JhkgEtmDz14ySfaRcTIBInmKPE32kxyyE2Tv+thKbEVePDfW/byMM1Kmm0XdObS7oGD/MypMXFPXrCwOtoYjyyn7BV29/MZfsVzpLDdRtuIZnbpXzvlf+ev8MvYr/Gqk4H/kV/G3csdazLuyTMPsbFhzd1UabQbjFvDRmcWJxR3zcfHkVw9GfpbJmeev9F08WW8uDkaslwX6avlWGU6NRKz0g/SHtCy9J30o/ca9zX3Kfc19zn3BXQKRO8ud477hLnAfc1/G9mrzGlrfexZ5GLdn6ZZrrEohI2wVHhZywjbhUWEy8icMCGNCUdiBlq3r+xafL549HQ5jH+an+1y+LlYBifuxAvRN/lVVVOlwlCkdVm9NOL5BE4wkQ2SMlDZU97hX86EilU/lUmkQUztTE6mx1EEPh7OmdqBtAvv8HdWpbrJS6tJj3n0CWdM6busNzRV3S9KTYhqvNiqWmuroiKgYhshMjmhTh9ptWhsF7970j/SbMrsPE1suR5z7DMC+P/Hs+y7ijrQAlhyAgccjbhjPygfeBTjzhNqy28EdkUh8C+DU9+z2v/oyeH791OncxHOs5y2AtTc7nb/f73TWPkD/qwBnjX8BoJ98VQNcC+8AAEAASURBVHgB7N1frK35edD3tWfGIdiezIzrkD92Ytdx4hInxcUE8schuUhCuUAqFCMBohcV0FbqBWq5rHrVXlaVWlypLW0vKiCxetM/Kokd6mlIADWE2K2iJKoU2ZEAVUXYE8PMeDznLPY+57znnH32Xnu971rv7/09z/P7cLP23utd7/v8Ps8qjb6cUXY7/4cAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIBARIEPvHv/e7/zpf0rEWczEwECBAgQIECAAIFJ4LnpB68ECBAgQIDAWAJX8Wq/331u9/bu50WssXbvtAQIECBAgACBbAIX2QY2LwECBAgQIHC+wBSvLgPWt1zd7eJi9w92L+x+4rdfu/jy+Xd3BwIECBAgQIAAAQLrCghY63q6GwECBAgQCC/wbLyaBhaxJgmvBAgQIECAAAEC0QQErGgbMQ8BAgQIEGgocCheTY8UsSYJrwQIECBAgAABApEEBKxI2zALAQIECBBoKHAsXk2PFrEmCa8ECBAgQIAAAQJRBASsKJswBwECBAgQaCgwN15NI4hYk4RXAgQIECBAgACBCAICVoQtmIEAAQIECDQUWBqvplFErEnCKwECBAgQIECAQG8BAav3BjyfAAECBAg0FDg1Xk0jiViThFcCBAgQIECAAIGeAgJWT33PJkCAAAECDQXOjVfTaCLWJOGVAAECBAgQIECgl4CA1UvecwkQIECAQEOBteLVNKKINUl4JUCAAAECBAgQ6CEgYPVQ90wCBAgQINBQYO14NY0qYk0SXgkQIECAAAECBLYWELC2Fvc8AgQIECDQUKBVvJpGFrEmCa8ECBAgQIAAAQJbCghYW2p7FgECBAgQaCjQOl5No4tYk4RXAgQIECBAgACBrQQErK2kPYcAAQIECDQU2CpeTUcQsSYJrwQIECBAgAABAlsICFhbKHsGAQIECBBoKLB1vJqOImJNEl4JECBAgAABAgRaCwhYrYXdnwABAgQINBToFa+mI4lYk4RXAgQIECBAgACBlgICVktd9yZAgAABAg0Feser6Wgi1iThlQABAgQIECBAoJWAgNVK1n0JECBAgEBDgSjxajqiiDVJeCVAgAABAgQIEGghIGC1UHVPAgQIECDQUCBavJqOevk/VPzK7h27n/zt1y6+PP3NKwECBAgQIECAAIE1BASsNRTdgwABAgQIbCQQNV5NxxexJgmvBAgQIECAAAECawoIWGtquhcBAgQIEGgoED1eTUcXsSYJrwQIECBAgAABAmsJCFhrSboPAQIECBBoKJAlXk0EItYk4ZUAAQIECBAgQGANAQFrDUX3IECAAAECDQWyxauJQsSaJLwSIECAAAECBAicKyBgnSvo8wQIECBAoKFA1ng1kYhYk4RXAgQIECBAgACBcwQErHP0fJYAAQIECDQUyB6vJhoRa5LwSoAAAQIECBAgcKqAgHWqnM8RIECAAIGGAlXi1UQkYk0SXgkQIECAAAECBE4RELBOUfMZAgQIECDQUKBavJqoRKxJwisBAgQIECBAgMBSAQFrqZjrCRAgQIBAQ4Gq8WoiE7EmCa8ECBAgQIAAAQJLBASsJVquJUCAAAECDQWqx6uJTsSaJLwSIECAAAECBAjMFRCw5kq5jgABAgQINBQYJV5NhCLWJOGVAAECBAgQIEBgjoCANUfJNQQIECBAoKHAaPFqohSxJgmvBAgQIECAAAECxwQErGNC3idAgAABAg0FRo1XE6mINUl4JUCAAAECBAgQuEtAwLpLx3sECBAgQKChwOjxaqIVsSYJrwQIECBAgAABAocEBKxDMv5OgAABAgQaCohX13FFrOsefiNAgAABAgQIELguIGBd9/AbAQIECBBoLiBe3U4sYt3u4q8ECBAgQIAAAQK73XMQCBAgQIAAge0EHsWr/2O/333Ldk/N8aT9bvfx3dd3n/3Ol/av5JjYlAQIECBAgAABAlsJ+BdYW0l7DgECBAgML/BUvPrW4THuAPAvse7A8RYBAgQIECBAYFABAWvQxTs2AQIECGwrIF4t8xaxlnm5mgABAgQIECBQXcB/Qlh9w85HgAABAt0FPvji/l+5/E8Gr/6zQf/yauY2/OeEM6FcRoAAAQIECBAYRMC/wBpk0Y5JgAABAn0EruLV/fu7z4lXp/n7l1inufkUAQIECBAgQKCagIBVbaPOQ4AAAQJhBMSrdVYhYq3j6C4ECBAgQIAAgcwCAlbm7ZmdAAECBMIKiFfrrkbEWtfT3QgQIECAAAEC2QQErGwbMy8BAgQIhBcQr9qsSMRq4+quBAgQIECAAIEMAgJWhi2ZkQABAgTSCIhXbVclYrX1dXcCBAgQIECAQFQBASvqZsxFgAABAukExKttViZibePsKQQIECBAgACBSAICVqRtmIUAAQIE0gqIV9uuTsTa1tvTCBAgQIAAAQK9BQSs3hvwfAIECBBILyBe9VmhiNXH3VMJECBAgAABAj0EBKwe6p5JgAABAmUExKu+qxSx+vp7OgECBAgQIEBgK4HntnqQ5xAgQIAAgWoC4lX/je53u4/vvr777Adf3r/cfxoTECBAgAABAgQItBLwL7BaybovAQIECJQWEK9irffqX2I99w27n/jiVy6+Emsy0xAgQIAAAQIECKwhIGCtoegeBAgQIDCUgHgVc90iVsy9mIoAAQIECBAgsIaAgLWGonsQIECAwDAC4lXsVYtYsfdjOgIECBAgQIDAqQIC1qlyPkeAAAECwwmIVzlWLmLl2JMpCRAgQIAAAQJLBASsJVquJUCAAIFhBcSrXKsXsXLty7QECBAgQIAAgWMCAtYxIe8TIECAwPAC4lXOr4CIlXNvpiZAgAABAgQI3CYgYN2m4m8ECBAgQOCRgHiV+6sgYuXen+kJECBAgAABApOAgDVJeCVAgAABAs8IiFfPgCT9VcRKujhjEyBAgAABAgSeEhCwnsLwIwECBAgQmATEq0mixquIVWOPTkGAAAECBAiMKyBgjbt7JydAgACBAwLi1QGY5H8WsZIv0PgECBAgQIDA0AIC1tDrd3gCBAgQeFZAvHpWpNbvIlatfToNAQIECBAgMI6AgDXOrp2UAAECBI4IiFdHgIq8LWIVWaRjECBAgAABAkMJCFhDrdthCRAgQOCQgHh1SKbm30Wsmnt1KgIECBAgQKCugIBVd7dORoAAAQIzBcSrmVDFLhOxii3UcQgQIECAAIHSAgJW6fU6HAECBAgcExCvjgnVfl/Eqr1fpyNAgAABAgTqCAhYdXbpJAQIECCwUEC8WghW9HIRq+hiHYsAAQIECBAoJSBglVqnwxAgQIDAXAHxaq7UGNeJWGPs2SkJECBAgACBvAICVt7dmZwAAQIEThQQr06EK/4xEav4gh2PAAECBAgQSC3wXOrpDU+AAAECBBYKiFcLwQa6fL/bffz+W7vPfvDl/csDHdtRCRAgQIAAAQIpBPwLrBRrMiQBAgQIrCEgXq2hWP8el//D0d9/7ht2P/nFr1x8pf5pnZAAAQIECBAgkENAwMqxJ1MSIECAwJkC4tWZgIN9XMQabOGOS4AAAQIECIQXELDCr8iABAgQIHCugHh1ruCYnxexxty7UxMgQIAAAQIxBQSsmHsxFQECBAisJCBerQQ56G1ErEEX79gECBAgQIBAOAEBK9xKDESAAAECawmIV2tJjn0fEWvs/Ts9AQIECBAgEENAwIqxB1MQIECAwMoC4tXKoIPfTsQa/Avg+AQIECBAgEB3AQGr+woMQIAAAQJrC4hXa4u635WAiOV7QIAAAQIECBDoJyBg9bP3ZAIECBBoICBeNUB1y8cCItZjCj8QIECAAAECBDYVELA25fYwAgQIEGgpIF611HXvSUDEmiS8EiBAgAABAgS2ExCwtrP2JAIECBBoKCBeNcR16xsCItYNEn8gQIAAAQIECDQVELCa8ro5AQIECGwhIF5toewZzwqIWM+K+J0AAQIECBAg0E5AwGpn684ECBAgsIGAeLUBskccFBCxDtJ4gwABAgQIECCwqoCAtSqnmxEgQIDAlgLi1ZbannVIQMQ6JOPvBAgQIECAAIH1BASs9SzdiQABAgQ2FBCvNsT2qKMCItZRIhcQIECAAAECBM4SELDO4vNhAgQIEOghIF71UPfMYwIi1jEh7xMgQIAAAQIEThcQsE6380kCBAgQ6CAgXnVA98jZAiLWbCoXEiBAgAABAgQWCQhYi7hcTIAAAQI9BcSrnvqePVdAxJor5ToCBAgQIECAwHwBAWu+lSsJECBAoKOAeNUR36MXC4hYi8l8gAABAgQIECBwp4CAdSePNwkQIEAggoB4FWELZlgqIGItFXM9AQIECBAgQOCwgIB12MY7BAgQIBBAQLwKsAQjnCwgYp1M54MECBAgQIAAgWsCAtY1Dr8QIECAQCQB8SrSNsxyqoCIdaqczxEgQIAAAQIEnggIWE8s/ESAAAECgQTEq0DLMMrZAiLW2YRuQIAAAQIECAwuIGAN/gVwfAIECEQUEK8ibsVM5wqIWOcK+jwBAgQIECAwsoCANfL2nZ0AAQIBBcSrgEsx0moCItZqlG5EgAABAgQIDCYgYA22cMclQIBAZAHxKvJ2zLaWgIi1lqT7ECBAgAABAiMJCFgjbdtZCRAgEFhAvAq8HKOtLiBirU7qhgQIECBAgEBxAQGr+IIdjwABAhkExKsMWzLj2gIi1tqi7keAAAECBAhUFhCwKm/X2QgQIJBAQLxKsCQjNhMQsZrRujEBAgQIECBQTEDAKrZQxyFAgEAmgX/5xf1H7t3fvbrf774109xmJbCmgIi1pqZ7ESBAgAABAlUFBKyqm3UuAgQIBBcQr4IvyHibCohYm3J7GAECBAgQIJBQQMBKuDQjEyBAILuAeJV9g+ZvISBitVB1TwIECBAgQKCKgIBVZZPOQYAAgSQC4lWSRRmzi4CI1YXdQwkQIECAAIEEAgJWgiUZkQABAlUExKsqm3SOlgIiVktd9yZAgAABAgSyCghYWTdnbgIECCQTEK+SLcy4XQVErK78Hk6AAAECBAgEFBCwAi7FSAQIEKgmIF5V26jzbCEgYm2h7BkECBAgQIBAFgEBK8umzEmAAIGkAuJV0sUZO4SAiBViDYYgQIAAAQIEAggIWAGWYAQCBAhUFRCvqm7WubYUELG21PYsAgQIECBAIKqAgBV1M+YiQIBAcgHxKvkCjR9KQMQKtQ7DECBAgAABAh0EnuvwTI8kQIAAgeICj+LV5/b73bcWP6rjEdhEYL/b/YH7b+0++8GX9y9v8kAPIUCAAAECBAgEE/AvsIItxDgECBDILvBUvPq27GcxP4FoAv4lVrSNmIcAAQIECBDYSkDA2kracwgQIDCAgHg1wJIdsbuAiNV9BQYgQIAAAQIEOggIWB3QPZIAAQIVBcSrilt1pqgCIlbUzZiLAAECBAgQaCUgYLWSdV8CBAgMJCBeDbRsRw0jIGKFWYVBCBAgQIAAgQ0EBKwNkD2CAAEClQXEq8rbdbboAiJW9A2ZjwABAgQIEFhLQMBaS9J9CBAgMKCAeDXg0h05nICIFW4lBiJAgAABAgQaCAhYDVDdkgABAiMIiFcjbNkZswiIWFk2ZU4CBAgQIEDgVAEB61Q5nyNAgMDAAuLVwMt39LACIlbY1RiMAAECBAgQWEFAwFoB0S0IECAwkoB4NdK2nTWbgIiVbWPmJUCAAAECBOYKCFhzpVxHgAABAjvxypeAQAqBX37+G3Y/9cWvXHwlxbSGJECAAAECBAjMEBCwZiC5hAABAgR24pUvAYFcAiJWrn2ZlgABAgQIEDgiIGAdAfI2AQIECIhXvgMEkgqIWEkXZ2wCBAgQIEDgpoCAddPEXwgQIEDgKQH/2eBTGH4kkE9AxMq3MxMTIECAAAECtwgIWLeg+BMBAgQIPBQQr3wTCJQQELFKrNEhCBAgQIDA2AIC1tj7d3oCBAgcFBCvDtJ4g0BGAREr49bMTIAAAQIECDwWELAeU/iBAAECBCYB8WqS8EqglICIVWqdDkOAAAECBMYSELDG2rfTEiBA4KiAeHWUyAUEMguIWJm3Z3YCBAgQIDCwgIA18PIdnQABAs8KiFfPividQEkBEavkWh2KAAECBAjUFhCwau/X6QgQIDBbQLyaTeVCAhUERKwKW3QGAgQIECAwkICANdCyHZUAAQKHBMSrQzL+TqC0gIhVer0OR4AAAQIEagkIWLX26TQECBBYLCBeLSbzAQKVBESsStt0FgIECBAgUFhAwCq8XEcjQIDAMQHx6piQ9wkMISBiDbFmhyRAgAABArkFBKzc+zM9AQIEThYQr06m80ECFQVErIpbdSYCBAgQIFBIQMAqtExHIUCAwFwB8WqulOsIDCUgYg21boclQIAAAQK5BASsXPsyLQECBM4WEK/OJnQDApUFRKzK23U2AgQIECCQWEDASrw8oxMgQGCpgHi1VMz1BIYUELGGXLtDEyBAgACB2AICVuz9mI4AAQKrCYhXq1G6EYERBESsEbbsjAQIECBAIJGAgJVoWUYlQIDAqQLi1alyPkdgaAERa+j1OzwBAgQIEIglIGDF2odpCBAgsLqAeLU6qRsSGElAxBpp285KgAABAgQCCwhYgZdjNAIECJwrIF6dK+jzBAhcCohYvgYECBAgQIBAdwEBq/sKDECAAIE2AuJVG1d3JTCogIg16OIdmwABAgQIRBEQsKJswhwECBBYUUC8WhHTrQgQmARErEnCKwECBAgQILC5wHObP9EDCRAgQKCpgHjVlNfNCYws8AP33tp95kOv7F8aGcHZCRAgQIAAgT4C/gVWH3dPJUCAQBMB8aoJq5sSIHBd4Jff8bt2P/lbX7547fqf/UaAAAECBAgQaCcgYLWzdWcCBAhsKiBebcrtYQRGFxCxRv8GOD8BAgQIENhYQMDaGNzjCBAg0EJAvGqh6p4ECBwRELGOAHmbAAECBAgQWE9AwFrP0p0IECDQRUC86sLuoQQIPBQQsXwTCBAgQIAAgU0EBKxNmD2EAAECbQTEqzau7kqAwCIBEWsRl4sJECBAgACBUwQErFPUfIYAAQIBBMSrAEswAgECk4CINUl4JUCAAAECBJoICFhNWN2UAAECbQXEq7a+7k6AwEkCItZJbD5EgAABAgQIzBEQsOYouYYAAQKBBMSrQMswCgECzwqIWM+K+J0AAQIECBBYRUDAWoXRTQgQILCNgHi1jbOnECBwloCIdRafDxMgQIAAAQK3CQhYt6n4GwECBAIKiFcBl2IkAgQOCYhYh2T8nQABAgQIEDhJQMA6ic2HCBAgsK2AeLWtt6cRILCKgIi1CqObECBAgAABAlcCApbvAQECBIILiFfBF2Q8AgTuEhCx7tLxHgECBAgQIDBbQMCaTeVCAgQIbC8gXm1v7okECKwuIGKtTuqGBAgQIEBgPAEBa7ydOzEBAkkExKskizImAQJzBESsOUquIUCAAAECBA4KCFgHabxBgACBfgLiVT97TyZAoJmAiNWM1o0JECBAgEB9AQGr/o6dkACBZAIfenH/PW/f37263+++LdnoxiVAgMAxARHrmJD3CRAgQIAAgVsFBKxbWfyRAAECfQTEqz7unkqAwKYCItam3B5GgAABAgRqCAhYNfboFAQIFBAQrwos0REIEJgrIGLNlXIdAQIECBAg8EBAwPJFIECAQAAB8SrAEoxAgMDWAiLW1uKeR4AAAQIEEgsIWImXZ3QCBGoIiFc19ugUBAicJCBincTmQwQIECBAYDwBAWu8nTsxAQKBBMSrQMswCgECvQRErF7ynkuAAAECBBIJCFiJlmVUAgRqCYhXtfbpNAQInCUgYp3F58MECBAgQKC+gIBVf8dOSIBAQAHxKuBSjESAQG8BEav3BjyfAAECBAgEFhCwAi/HaAQI1BQQr2ru1akIEFhFQMRahdFNCBAgQIBAPQEBq95OnYgAgcAC4lXg5RiNAIEoAiJWlE2YgwABAgQIBBJ4LtAsRiFAgEBpAfGq9HodjgCB9QR+4Otf233mQ6/sX1rvlu5EgAABAgQIZBfwL7Cyb9D8BAikEBCvUqzJkAQIxBL4v97xu3Y/9Vtfvngt1limIUCAAAECBHoICFg91D2TAIGhBMSrodbtsAQIrCsgYq3r6W4ECBAgQCCtgICVdnUGJ0Agg4B4lWFLZiRAILiAiBV8QcYjQIAAAQJbCAhYWyh7BgECQwqIV0Ou3aEJEGgjIGK1cXVXAgQIECCQRkDASrMqgxIgkElg/9N//7v+h7/1e/7Lf/xP3/HuTHObdTyBN+/9069+4/PveXG8kztxNoGPX/zm//tH/qf/6C9f7H7xy9lmNy8BAgQIECBwvoCAdb6hOxAgQOCawFW82r+9f3W/273/2ht+IRBM4OKF13714tv//ffc/+3/8QPBRjMOgRsCF7/6f3/h3n/2qXsv7N75EyLWDR5/IECAAAEC5QWeK39CByRAgMCGAuLVhtgedZbAg3j1HZ/8yO7ijW8860Y+TGBTgf3vf3v3+s/vd594ZdPHehgBAgQIECDQXUDA6r4CAxAgUEVAvKqyyfrnuHjutc9fXMar/e7Nd9Y/rRPWExCx6u3UiQgQIECAwHEBAeu4kSsIECBwVEC8OkrkgiACD+LVBz75PeJVkIUY40QBEetEOB8jQIAAAQJpBQSstKszOAECUQTEqyibMMcxAfHqmJD3cwmIWLn2ZVoCBAgQIHCegIB1np9PEyAwuIB4NfgXINHxxatEyzLqAgERawGWSwkQIECAQGoBASv1+gxPgEBPAfGqp75nLxEQr5ZouTafgIiVb2cmJkCAAAECywUErOVmPkGAAIGdeOVLkEVAvMqyKXOeJyBinefn0wQIECBAIL6AgBV/RyYkQCCYwP7Tv/Lh/dv7V/e73fuDjWYcAtcExKtrHH4pLyBilV+xAxIgQIDA0AIC1tDrd3gCBJYKPIhXb93/nHi1VM71WwuIV1uLe14MARErxh5MQYAAAQIE1hcQsNY3dUcCBIoKiFdFF1vwWOJVwaU60gIBEWsBlksJECBAgEAaAQErzaoMSoBATwHxqqe+Zy8REK+WaLm2roCIVXe3TkaAAAECowoIWKNu3rkJEJgtIF7NpnJhZwHxqvMCPD6YwIOI9dn97hOvBBvMOAQIECBAgMAJAgLWCWg+QoDAOALi1Ti7zn5S8Sr7Bs3fRmD/8bd3r4tYbXDdlQABAgQIbCogYG3K7WEECGQSEK8ybWvsWcWrsffv9McERKxjQt4nQIAAAQIZBASsDFsyIwECmwuIV5uTe+CJAuLViXA+NpiAiDXYwh2XAAECBAoKCFgFl+pIBAicJyBenefn09sJiFfbWXtSBQERq8IWnYEAAQIExhUQsMbdvZMTIHCLgHh1C4o/hRQQr0KuxVDhBUSs8CsyIAECBAgQOCAgYB2A8WcCBMYTeBiv9q/ud7v3j3d6J84kIF5l2pZZ4wmIWPF2YiICBAgQIHBcQMA6buQKAgQGEHgSr/bvG+C4jphYQLxKvDyjBxIQsQItwygECBAgQGCWgIA1i8lFBAhUFhCvKm+31tnEq1r7dJreAiJW7w14PgECBAgQWCIgYC3Rci0BAuUExKtyKy17IPGq7GodrKuAiNWV38MJECBAgMACAQFrAZZLCRCoJSBe1dpn5dOIV5W362z9BUSs/jswAQECBAgQOC4gYB03cgUBAgUFxKuCSy16JPGq6GIdK5iAiBVsIcYhQIAAAQI3BASsGyT+QIBAdQHxqvqG65xPvKqzSyfJICBiZdiSGQkQIEBgXAEBa9zdOzmBIQXEqyHXnvLQ4lXKtRk6vYCIlX6FDkCAAAECZQUErLKrdTACBJ4VEK+eFfF7VAHxKupmzDWGgIg1xp6dkgABAgSyCQhY2TZmXgIEThIQr05i86EOAuJVB3SPJHBDQMS6QeIPBAgQIECgs4CA1XkBHk+AQHsB8aq9sSesIyBerePoLgTWERCx1nF0FwIECBAgsI6AgLWOo7sQIBBUQLwKuhhj3RAQr26Q+AOBAAIiVoAlGIEAAQIECDwQELB8EQgQKCsgXpVdbbmDiVflVupApQRErFLrdBgCBAgQSCsgYKVdncEJELhLQLy6S8d7kQTEq0jbMAuBQwIi1iEZfydAgAABAlsJCFhbSXsOAQKbCYhXm1F70JkC4tWZgD5OYFMBEWtTbg8jQIAAAQLPCAhYz4D4lQCB3ALiVe79jTS9eDXStp21joCIVWeXTkKAAAEC2QQErGwbMy8BAgcFxKuDNN4IJiBeBVuIcQgsEhCxFnG5mAABAgQIrCQgYK0E6TYECPQVEK/6+nv6fAHxar6VKwnEFRCx4u7GZAQIECBQVUDAqrpZ5yIwkIB4NdCykx9VvEq+QOMTuCYgYl3j8AsBAgQIEGgsIGA1BnZ7AgTaCohXbX3dfT0B8Wo9S3ciEEdAxIqzC5MQIECAQHUBAav6hp2PQGEB8arwcosdTbwqtlDHIXBNQMS6xuEXAgQIECDQSEDAagTrtgQItBUQr9r6uvt6AuLVepbuRCCugIgVdzcmI0CAAIEqAgJWlU06B4GBBMSrgZad/KjiVfIFGp/AIgERaxGXiwkQIECAwEIBAWshmMsJEOgrIF719ff0+QLi1XwrVxKoIzBFrB9/uc6ZnIQAAQIECMQQELBi7MEUBAjMEBCvZiC5JISAeBViDYYg0EngKmL9zs/vdyJWpwV4LAECBAgUFRCwii7WsQhUExCvqm207nnEq7q7dTIC8wVErPlWriRAgAABAvMEBKx5Tq4iQKCjgHjVEd+jFwmIV4u4XEyguICIVXzBjkeAAAECGwsIWBuDexwBAssExKtlXq7uJyBe9bP3ZAJxBUSsuLsxGQECBAhkExCwsm3MvAQGEhCvBlp28qOKV8kXaHwCTQVErKa8bk6AAAECwwgIWMOs2kEJ5BIQr3Lta+RpxauRt+/sBOYKiFhzpVxHgAABAgQOCQhYh2T8nQCBbgLiVTd6D14oIF4tBHM5gaEFRKyh1+/wBAgQIHC2gIB1NqEbECCwpoB4taame7UUuHjhtc9ffOCT37PfvfnOls9xbwIEKgmIWJW26SwECBAgsK2AgLWtt6cRIHCHgHh1B463Qgk8iFffIV6FWophCKQRELHSrMqgBAgQIBBKQMAKtQ7DEBhXQLwad/fZTi5eZduYeQlEFBCxIm7FTAQIECAQW0DAir0f0xEYQkC8GmLNJQ4pXpVYo0MQCCIgYgVZhDEIECBAIImAgJVkUcYkUFVAvKq62XrnEq/q7dSJCPQXELH678AEBAgQIJBFQMDKsilzEigoIF4VXGrRI4lXRRfrWARCCIhYIdZgCAIECBAILyBghV+RAQnUFBCvau614qnEq4pbdSYC0QRErGgbMQ8BAgQIxBMQsOLtxEQEyguIV+VXXOaAD+LV+//Ud+93b76zzKEchACBoAIiVtDFGIsAAQIEgggIWEEWYQwCowiIV6NsOv85H8erizfelf80TkCAQA4BESvHnkxJgAABAj0EBKwe6p5JYFAB8WrQxSc8tniVcGlGJlBGQMQqs0oHIUCAAIFVBQSsVTndjACBQwLi1SEZf48mIF5F24h5CIwoIGKNuHVnJkCAAIG7BQSsu328S4DACgLi1QqIbrGJgHi1CbOHECAwS0DEmsXkIgIECBAYRkDAGmbVDkqgj4B41cfdU5cLiFfLzXyCAIHWAg8i1mf3ux9/ufWT3J8AAQIECEQXELCib8h8BBILiFeJlzfY6OLVYAt3XAKpBPZ/4O3d74hYqXZmWAIECBBoISBgtVB1TwIEduKVL0EWAfEqy6bMSWBkARFr5O07OwECBAg8FBCwfBMIEFhdQLxandQNGwmIV41g3ZYAgQYCIlYDVLckQIAAgUQCAlaiZRmVQAYB8SrDlsx4JSBe+R4QIJBPQMTKtzMTEyBAgMBaAgLWWpLuQ4DAbv/XfvW792/tX93v9u/DQSCygHgVeTtmI0DgbgER624f7xIgQIBAVQEBq+pmnYvAxgIP4tX+3ufEq43hPW6xgHi1mMwHCBAIJyBihVuJgQgQIECguYCA1ZzYAwjUFxCv6u+4ygnFqyqbdA4CBHY7Ecu3gAABAgTGEhCwxtq30xJYXUC8Wp3UDRsJiFeNYN2WAIGOAiJWR3yPJkCAAIGNBQSsjcE9jkAlAfGq0jZrn0W8qr1fpyMwtoCINfb+nZ4AAQLjCAhY4+zaSQmsKiBercrpZg0FxKuGuG5NgEAQAREryCKMQYAAAQINBQSshrhuTaCqgHhVdbP1ziVe1dupExEgcEhAxDok4+8ECBAgUENAwKqxR6cgsJmAeLUZtQedKSBenQno4wQIJBQQsRIuzcgECBAgMFNAwJoJ5TICBC7/9x39tV/97v3+3uf2u/37eBCILCBeRd6O2QgQaCsgYrX1dXcCBAgQ6CUgYPWS91wCyQTEq2QLG3hc8Wrg5Ts6AQKPBEQsXwUCBAgQqCcgYNXbqRMRWF1AvFqd1A0bCYhXjWDdlgCBhAIiVsKlGZkAAQIE7hAQsO7A8RYBAv6zQd+BPALiVZ5dmZQAga0ERKytpD2HAAECBNoLCFjtjT2BQFoB//Iq7eqGG1y8Gm7lDkyAwGwBEWs2lQsJECBAILSAgBV6PYYj0E9AvOpn78nLBMSrZV6uJkBgRAERa8StOzMBAgSqCQhY1TbqPARWEBCvVkB0i00ExKtNmD2EAIESAiJWiTU6BAECBAYWELAGXr6jE7hNQLy6TcXfIgqIVxG3YiYCBGILiFix92M6AgQIELhLQMC6S8d7BAYTEK8GW3ji44pXiZdndAIEOguIWJ0X4PEECBAgcKKAgHUinI8RqCYgXlXbaN3ziFd1d+tkBAhsJSBibSXtOQQIECCwnoCAtZ6lOxFIKyBepV3dcIOLV8Ot3IEJEGgmIGI1o3VjAgQIEGgiIGA1YXVTAnkExKs8uxp9UvFq9G+A8xMgsL6AiLW+qTsSIECAQCsBAauVrPsSSCAgXiVYkhEfCIhXvggECBBoJSBitZJ1XwIECBBYV0DAWtfT3QikERCv0qxq+EHFq+G/AgAIEGguIGI1J/YAAgQIEDhbQMA6m9ANCOQTEK/y7WzUicWrUTfv3AQIbC8gYm1v7okECBAgsERAwFqi5VoCBQQexKvdvVf3u/37ChzHEQoLiFeFl+toBAgEFRCxgi7GWAQIECBwKSBg+RoQGEjgcbza7799oGM7akIB8Srh0oxMgEARARGryCIdgwABAuUEBKxyK3UgArcLiFe3u/hrPAHxKt5OTESAwGgCItZoG3deAgQIZBAQsDJsyYwEzhQQr84E9PHNBMSrzag9iAABAkcERKwjQN4mQIAAgY0FBKyNwT2OwNYC4tXW4p53qoB4daqczxEgQKCVgIjVStZ9CRAgQGC5gIC13MwnCKQREK/SrGr4QcWr4b8CAAgQCCsgYoVdjcEIECAwmICANdjCHXccAfFqnF1nP+nF87/zhYv3/6nv3l+88a7sZzE/AQIEagqIWDX36lQECBDIJSBg5dqXaQnMEhCvZjG5KIDAg3j1HZ/8sHgVYBlGIECAwJ0CItadPN4kQIAAgeYCAlZzYg8gsK2AeLWtt6edLiBenW7nkwQIEOgjIGL1cfdUAgQIELgSELB8DwgUEhCvCi2z+FHEq+ILdjwCBAoLiFiFl+toBAgQCC0gYIVej+EIzBcQr+ZbubKvgHjV19/TCRAgcL6AiHW+oTsQIECAwFIBAWupmOsJBBQQrwIuxUi3CohXt7L4IwECBBIKiFgJl2ZkAgQIpBYQsFKvz/AEdjvxyrcgi4B4lWVT5iRAgMBcARFrrpTrCBAgQOB8AQHrfEN3INBNQLzqRu/BCwXEq4VgLidAgEAaARErzaoMSoAAgeQCAlbyBRp/XAHxatzdZzu5eJVtY+YlQIDAUgERa6mY6wkQIEBguYCAtdzMJwh0FxCvuq/AADMFxKuZUC4jQIBAegERK/0KHYAAAQLBBQSs4AsyHoFnBcSrZ0X8HlVAvIq6GXMRIECglYCI1UrWfQkQIEBgtxOwfAsIJBIQrxIta/BRxavBvwCOT4DAwAIi1sDLd3QCBAg0FRCwmvK6OYH1BMSr9Szdqa2AeNXW190JECAQX0DEir8jExIgQCCfgICVb2cmHlBAvBpw6UmPLF4lXZyxCRAgsLqAiLU6qRsSIEBgcAEBa/AvgOPHFxCv4u/IhA8FxCvfBAIECBC4LiBiXffwGwECBAicIyBgnaPnswQaC4hXjYHdfjUB8Wo1SjciQIBAMYGriPXaZ/a7H3+52MEchwABAgQ2FhCwNgb3OAJzBcSruVKu6y0gXvXegOcTIEAgvMAPiFjhd2RAAgQIhBcQsMKvyIAjCohXI24955nFq5x7MzUBAgQ6CIhYHdA9kgABApUEBKxK23SWEgLiVYk1DnEI8WqINTskAQIE1hQQsdbUdC8CBAgMJiBgDbZwx40tIF7F3o/pngiIV08s/ESAAAECiwRErEVcLiZAgACBSUDAmiS8EugsIF51XoDHzxYQr2ZTuZAAAQIEbhcQsW538VcCBAgQuENAwLoDx1sEthIQr7aS9pxzBcSrcwV9ngABAgQeCYhYvgoECBAgsEhAwFrE5WIC6wuIV+ubumMbAfGqjau7EiBAYGABEWvg5Ts6AQIElgoIWEvFXE9gRQHxakVMt2oqIF415XVzAgQIjCwgYo28fWcnQIDAAgEBawGWSwmsKSBeranpXi0FxKuWuu5NgAABApcCIpavAQECBAgcFRCwjhK5gMD6AuLV+qbu2EZAvGrj6q4ECBAgcENAxLpB4g8ECBAg8LSAgPW0hp8JbCAgXm2A7BGrCIhXqzC6CQECBAjMFxCx5lu5kgABAsMJCFjDrdyBewqIVz31PXuJgHi1RMu1BAgQILCigIi1IqZbESBAoJKAgFVpm84SWkC8Cr0ewz0lIF49heFHAgQIEOghIGL1UPdMAgQIBBcQsIIvyHg1BPY//fnv2e/uvbrf77+9xomcoqqAeFV1s85FgACBdAIiVrqVGZgAAQJtBQSstr7uTmD3IF7de/tz4pUvQ3QB8Sr6hsxHgACB4QRErOFW7sAECBA4LCBgHbbxDoGzBcSrswndYCMB8WojaI8hQIAAgaUCItZSMdcTIECgqICAVXSxjtVfQLzqvwMTzBMQr+Y5uYoAAQIEugmIWN3oPZgAAQJxBASsOLswSSEB8arQMosfRbwqvmDHI0CAQB0BEavOLp2EAAECJwkIWCex+RCBwwLi1WEb78QSEK9i7cM0BAgQIHBUQMQ6SuQCAgQI1BUQsOru1sk6CIhXHdA98iQB8eokNh8iQIAAgf4CIlb/HZiAAAECXQQErC7sHlpRQLyquNWaZxKvau7VqQgQIDCQgIg10LIdlQABApOAgDVJeCVwhoB4dQaej24qIF5tyu1hBAgQINBOQMRqZ+vOBAgQCCkgYIVci6EyCYhXmbY19qzi1dj7d3oCBAgUFHgUsT7+UsGzORIBAgQIPCMgYD0D4lcCSwTEqyVaru0pIF711PdsAgQIEGgocBmx7n92vxOxGhq7NQECBEIICFgh1mCIjALiVcatjTmzeDXm3p2aAAECAwmIWAMt21EJEBhXQMAad/dOfoaAeHUGno9uKiBebcrtYQQIECDQT0DE6mfvyQQIENhEQMDahNlDKgmIV5W2Wfss4lXt/TodAQIECNwQELFukPgDAQIE6ggIWHV26SQbCIhXGyB7xCoC4tUqjG5CgAABAvkERKx8OzMxAQIEZgkIWLOYXERgtxOvfAuyCIhXWTZlTgIECBBoJCBiNYJ1WwIECPQUELB66nt2GgHxKs2qhh9UvBr+KwCAAAECBB4KiFi+CQQIECgmIGAVW6jjrC8gXq1v6o5tBC6e/+oXLr7jkx/eX7zxrjZPcFcCBAgQIJBKQMRKtS7DEiBA4G4BAetuH+8OLiBeDf4FSHT8h/HqT4pXiXZmVAIECBDYREDE2oTZQwgQINBeQMBqb+wJSQXEq6SLG3Bs8WrApTsyAQIECCwRELGWaLmWAAECQQUErKCLMVZfAfGqr7+nzxcQr+ZbuZIAAQIEhhYQsYZev8MTIFBBQMCqsEVnWFVAvFqV080aCohXDXHdmgABAgQqCohYFbfqTAQIDCMgYA2zagedIyBezVFyTQQB8SrCFsxAgAABAgkFRKyESzMyAQIErgQELN8DAo8ExCtfhSwC4lWWTZmTAAECBIIKiFhBF2MsAgQI3CUgYN2l471hBMSrYVad/qDiVfoVOgABAgQIxBAQsWLswRQECBCYLSBgzaZyYVUB8arqZuudS7yqt1MnIkCAAIGuAiJWV34PJ0CAwDIBAWuZl6uLCYhXxRZa+DjiVeHlOhoBAgQI9BQQsXrqezYBAgQWCAhYC7BcWktAvKq1z8qnEa8qb9fZCBAgQCCAgIgVYAlGIECAwDEBAeuYkPdLCohXJdda8lDiVcm1OhQBAgQIxBMQseLtxEQECBC4JiBgXePwywgC4tUIW65xRvGqxh6dggABAgTSCIhYaVZlUAIERhQQsEbc+sBnFq8GXn6yo4tXyRZmXAIECBCoIiBiVdmkcxAgUE5AwCq3Ugc6JCBeHZLx92gC4lW0jZiHAAECBAYTELEGW7jjEiCQQ0DAyrEnU54pIF6dCejjmwmIV5tRexABAgQIELhLQMS6S8d7BAgQ6CAgYHVA98htBcSrbb097XQB8ep0O58kQIAAAQINBESsBqhuSYAAgVMFBKxT5XwuhYB4lWJNhrwUEK98DQgQIECAQEgBESvkWgxFgMCIAgLWiFsf5Mzi1SCLLnBM8arAEh2BAAECBCoLXEWsz+x3H3+p8iGdjQABAtEFBKzoGzLfSQIP4tXbb7+63++//aQb+BCBjQQexqtPftf+4o13bfRIjyFAgAABAgSWC/xBEWs5mk8QIEBgTQEBa01N9woh8Dhe7fbfFmIgQxA4IPAkXr3+7gOX+DMBAgQIECAQR0DEirMLkxAgMKCAgDXg0isfWbyqvN1aZxOvau3TaQgQIEBgGAERa5hVOygBAtEEBKxoGzHPyQLi1cl0PrixgHi1MbjHESBAgACBdQVErHU93Y0AAQKzBASsWUwuii4gXkXfkPkmAfFqkvBKgAABAgRSC4hYqddneAIEMgoIWBm3ZuZrAuLVNQ6/BBYQrwIvx2gECBAgQGC5gIi13MwnCBAgcLKAgHUynQ9GEBCvImzBDHMExKs5Sq4hQIAAAQLpBESsdCszMAECWQUErKybM/dOvPIlyCIgXmXZlDkJECBAgMBJAiLWSWw+RIAAgWUCAtYyL1cHERCvgizCGEcFxKujRC4gQIAAAQIVBESsClt0BgIEQgsIWKHXY7jbBMSr21T8LaKAeBVxK2YiQIAAAQLNBESsZrRuTIAAgd3uAgKBbAL3vv9P/we7L/2jP5ttbvMOKHDxO/vdxT3/9+yAq8905Ddf+MbXP/HCL70z08xmHVPgXW+9tv/ef/Z5/3fqmOtPc+rLfx2w/7F7v/T5/+Q9//Ff+rX//+KfpRncoAQIEEgg4H8ISLAkI14X2O/2F/d2H/+rl6//9vV3/EaAAAECSwX2u+f/v+965y9/y9LPuZ4AAQIEnhG4/B9O/+c3/9z/+fzu3vN/7Hf/9YsX37X7oyLWM0Z+JUCAwBkC/hPCM/B8tI/Axe5i//zuV/785et/32cCTyVAgAABAgQIECDwlMCjePX9+1/78au/7ne7T3z1n+/+5ke/ef/up67yIwECBAicISBgnYHno/0EnkSs3X/XbwpPJkCAAAECBAgQGF7gYbz6hSleTR4i1iThlQABAusICFjrOLpLB4GHEesf/IXL/w5WxOrg75EECBAgQIAAgeEFnsSrH7vNQsS6TcXfCBAgcJqAgHWam08FERCxgizCGAQIECBAgACB0QSOxKuJQ8SaJLwSIEDgPAEB6zw/nw4gIGIFWIIRCBAgQIAAAQIjCcyMVxOJiDVJeCVAgMDpAgLW6XY+GUhAxAq0DKMQIECAAAECBCoLLIxXE4WINUl4JUCAwGkCAtZpbj4VUEDECrgUIxEgQIAAAQIEKgmcGK8mAhFrkvBKgACB5QIC1nIznwgsIGIFXo7RCBAgQIAAAQKZBc6MV9PRRaxJwisBAgSWCQhYy7xcnUBAxEqwJCMSIECAAAECBDIJrBSvpiOLWJOEVwIECMwXELDmW7kykYCIlWhZRiVAgAABAgQIRBZYOV5NRxWxJgmvBAgQmCcgYM1zclVCAREr4dKMTIAAAQIECBCIJNAoXk1HFLEmCa8ECBA4LiBgHTdyRWIBESvx8oxOgAABAgQIEOgp0DheTUcTsSYJrwQIELhbQMC628e7BQRErAJLdAQCBAgQIECAwJYCG8Wr6Ugi1iThlQABAocFBKzDNt4pJCBiFVqmoxAgQIAAAQIEWgpsHK+mo4hYk4RXAgQI3C4gYN3u4q8FBUSsgkt1JAIECBAgQIDAmgKd4tV0BBFrkvBKgACBmwIC1k0TfyksIGIVXq6jESBAgAABAgTOEegcr6bRRaxJwisBAgSuCwhY1z38NoCAiDXAkh2RAAECBAgQILBEIEi8mkYWsSYJrwQIEHgiIGA9sfDTQAIi1kDLdlQCBAgQIECAwF0CweLVNKqINUl4JUCAwEMBAcs3YVgBEWvY1Ts4AQIECBAgQOChQNB4Na1HxJokvBIgQGC3E7B8C4YWELGGXr/DEyBAgAABAiMLBI9X02pErEnCKwECowsIWKN/A5x/J2L5EhAgQIAAAQIEBhNIEq+mrYhYk4RXAgRGFhCwRt6+sz8WELEeU/iBAAECBAgQIFBbIFm8mpYhYk0SXgkQGFVAwBp18859Q0DEukHiDwQIECBAgACBWgJJ49W0BBFrkvBKgMCIAgLWiFt35oMCItZBGm8QIECAAAECBHILJI9XE76INUl4JUBgNAEBa7SNO+9RARHrKJELCBAgQIAAAQK5BIrEqwldxJokvBIgMJKAgDXStp11toCINZvKhQQIECBAgACB2ALF4tWELWJNEl4JEBhFQMAaZdPOuVhAxFpM5gMECBAgQIAAgVgCRePVhCxiTRJeCRAYQUDAGmHLzniygIh1Mp0PEiBAgAABAgT6ChSPVxOuiDVJeCVAoLqAgFV9w853toCIdTahGxAgQIAAAQIEthUYJF5NqCLWJOGVAIHKAgJW5e0622oCItZqlG5EgAABAgQIEGgrMFi8mjBFrEnCKwECVQUErKqbda7VBUSs1UndkAABAgQIECCwrsCg8WpCFLEmCa8ECFQUELAqbtWZmgmIWM1o3ZgAAQIECBAgcJ7A4PFqwhOxJgmvBAhUExCwqm3UeZoLiFjNiT2AAAECBAgQILBMQLy65iViXePwCwECRQQErCKLdIxtBUSsbb09jQABAgQIECBwUEC8upVGxLqVxR8JEEgsIGAlXp7R+wqIWH39PZ0AAQIECBAgsBOv7vwSiFh38niTAIFkAgJWsoUZN5aAiBVrH6YhQIAAAQIEBhIQr2YtW8SaxeQiAgQSCAhYCZZkxNgCT0Wsvxp7UtMRIECAAAECBIoIiFeLFiliLeJyMQECQQUErKCLMVYugUcR6y9e7HYiVq7VmZYAAQIECBDIJnAZr/6XN//sL3z//td+LNvoPecVsXrqezYBAmsICFhrKLoHgUsBEcvXgAABAgQIECDQWOBRvPq+/a+LVydQi1gnoPkIAQJhBASsMKswSAUBEavCFp2BAAECBAgQCCkgXq2yFhFrFUY3IUCgg4CA1QHdI2sLiFi19+t0BAgQIECAQAcB8WpVdBFrVU43I0BgIwEBayNojxlLQMQaa99OS4AAAQIECDQUEK+a4IpYTVjdlACBhgICVkNctx5bQMQae/9OT4AAAQIECKwgIF6tgHj4Fo8i1s9+9Jv37z58lXcIECAQQ0DAirEHUxQVELGKLtaxCBAgQIAAgfYC4lV748snXEasH/nqP9+JWJtoewgBAucICFjn6PksgRkCItYMJJcQIECAAAECBJ4WEK+e1mj+s4jVnNgDCBBYQUDAWgHRLQgcExCxjgl5nwABAgQIECDwSEC86vJVELG6sHsoAQILBASsBVguJXCOgIh1jp7PEiBAgAABAkMIiFdd1yxideX3cAIEjggIWEeAvE1gTQERa01N9yJAgAABAgRKCYhXIdYpYoVYgyEIELhFQMC6BcWfCLQUELFa6ro3AQIECBAgkFJAvAq1NhEr1DoMQ4DAIwEBy1eBQAcBEasDukcSIECAAAECMQXEq5B7EbFCrsVQBIYWELCGXr/D9xQQsXrqezYBAgQIECAQQkC8CrGGQ0OIWIdk/J0AgR4CAlYPdc8k8EhAxPJVIECAAAECBIYVEK9SrF7ESrEmQxIYQkDAGmLNDhlZQMSKvB2zESBAgAABAk0ExKsmrK1uKmK1knVfAgSWCAhYS7RcS6CRgIjVCNZtCRAgQIAAgXgC4lW8ncyYSMSageQSAgSaCghYTXndnMB8ARFrvpUrCRAgQIAAgaQC4lXSxT0cW8RKvT7DE0gvIGClX6EDVBIQsSpt01kIECBAgACBawLi1TWOrL+IWFk3Z24C+QUErPw7dIJiAiJWsYU6DgECBAgQILDbiVelvgUiVql1OgyBNAICVppVGXQkARFrpG07KwECBAgQKC4gXpVcsIhVcq0ORSC0gIAVej2GG1lAxBp5+85OgAABAgSKCIhXRRZ5+zFErNtd/JUAgTYCAlYbV3clsIqAiLUKo5sQIECAAAECPQTEqx7qmz9TxNqc3AMJDCsgYA27egfPIiBiZdmUOQkQIECAAIHHAuLVY4oRfhCxRtiyMxLoLyBg9d+BCQgcFRCxjhK5gAABAgQIEIgiIF5F2cSmc4hYm3J7GIEhBQSsIdfu0BkFRKyMWzMzAQIECBAYTEC8Gmzh148rYl338BsBAusKCFjrerobgaYCIlZTXjcnQIAAAQIEzhEQr87RK/NZEavMKh2EQDgBASvcSgxE4G4BEetuH+8SIECAAAECHQTEqw7ocR8pYsXdjckIZBYQsDJvz+zDCohYw67ewQkQIECAQDwB8SreTgJMJGIFWIIRCBQTELCKLdRxxhEQscbZtZMSIECAAIGwAuJV2NVEGEzEirAFMxCoIyBg1dmlkwwoIGINuHRHJkCAAAECUQTEqyibCD2HiBV6PYYjkEpAwEq1LsMSuCkgYt008RcCBAgQIECgsYB41Ri41u1FrFr7dBoCvQQErF7ynktgRQERa0VMtyJAgAABAgTuFhCv7vbx7q0CItatLP5IgMACAQFrAZZLCUQWeBKxLv7byHOajQABAgQIEEgsIF4lXl7/0UWs/jswAYHMAgJW5u2ZncAzAg8j1q/8O5evItYzNn4lQIAAAQIEzhQQr84E9PErARHL94AAgVMFBKxT5XyOQFABESvoYoxFgAABAgQyC4hXmbcXbnYRK9xKDEQghYCAlWJNhiSwTEDEWublagIECBAgQOAOAfHqDhxvnSogYp0q53MExhUQsMbdvZMXFxCxii/Y8QgQIECAwBYCD+PV3/6+/a//2BaP84yxBESssfbttATOFRCwzhX0eQKBBUSswMsxGgECBAgQiC7wJF794eijmi+vgIiVd3cmJ7C1gIC1tbjnEdhYQMTaGNzjCBAgQIBABQHxqsIW05xBxEqzKoMS6CogYHXl93AC2wiIWNs4ewoBAgQIECghIF6VWGO2Q4hY2TZmXgLbCwhY25t7IoEuAiJWF3YPJUCAAAECuQTEq1z7KjatiFVsoY5DYGUBAWtlULcjEFlAxIq8HbMRIECAAIHOAuKg67FTAABAAElEQVRV5wV4/JWAiOV7QIDAIQEB65CMvxMoKiBiFV2sYxEgQIAAgXMExKtz9Hx2ZQERa2VQtyNQREDAKrJIxyCwREDEWqLlWgIECBAgUFxAvCq+4JzHE7Fy7s3UBFoKCFgtdd2bQGABESvwcoxGgAABAgS2EhCvtpL2nBMERKwT0HyEQGEBAavwch2NwDEBEeuYkPcJECBAgEBhAfGq8HLrHE3EqrNLJyFwroCAda6gzxNILiBiJV+g8QkQIECAwCkC4tUpaj7TSUDE6gTvsQSCCQhYwRZiHAI9BESsHuqeSYAAAQIEOgmIV53gPfYcARHrHD2fJVBDQMCqsUenIHC2gIh1NqEbECBAgACB+ALiVfwdmfCggIh1kMYbBIYQELCGWLNDEpgnIGLNc3IVAQIECBBIKSBepVyboa8LiFjXPfxGYCQBAWukbTsrgRkCItYMJJcQIECAAIFsAuJVto2Z9w4BEesOHG8RKCwgYBVerqMROFVAxDpVzucIECBAgEBAAfEq4FKMdK7AFLE+8t79i+fey+cJEMghIGDl2JMpCWwuIGJtTu6BBAgQIEBgfQHxan1TdwwjcBWx3nh99zdFrDArMQiBpgICVlNeNyeQW0DEyr0/0xMgQIDA4ALi1eBfgDGO/yhi/ayINca+nXJsAQFr7P07PYGjAiLWUSIXECBAgACBeALiVbydmKiZwGXE+uHLf4klYjUTdmMCMQQErBh7MAWB0AIiVuj1GI4AAQIECFwXEK+ue/htCAERa4g1O+TgAgLW4F8AxycwV0DEmivlOgIECBAg0FFAvOqI79G9BUSs3hvwfAJtBQSstr7uTqCUgIhVap0OQ4AAAQLVBMSraht1nhMERKwT0HyEQBIBASvJooxJIIqAiBVlE+YgQIAAAQJPCYhXT2H4cXQBEWv0b4DzVxUQsKpu1rkINBQQsRriujUBAgQIEFgqIF4tFXP9AAIi1gBLdsThBASs4VbuwATWERCx1nF0FwIECBAgcJaAeHUWnw/XFhCxau/X6cYTELDG27kTE1hNQMRajdKNCBAgQIDAcgHxarmZTwwnIGINt3IHLiwgYBVerqMR2EJAxNpC2TMIECBAgMAzAuLVMyB+JXBYQMQ6bOMdApkEBKxM2zIrgaACIlbQxRiLAAECBGoKiFc19+pUTQVErKa8bk5gEwEBaxNmDyFQX0DEqr9jJyRAgACBAALiVYAlGCGrgIiVdXPmJvBQQMDyTSBAYDUBEWs1SjciQIAAAQI3BcSrmyb+QmChgIi1EMzlBAIJCFiBlmEUAhUERKwKW3QGAgQIEAgnIF6FW4mB8gqIWHl3Z/KxBQSssffv9ASaCDwVsf6bJg9wUwIECBAgMJKAeDXStp11IwERayNojyGwooCAtSKmWxEg8ETgUcT6dy9fRawnLH4iQIAAAQLLBMSrZV6uJrBAQMRagOVSAgEEBKwASzACgaoCIlbVzToXAQIECGwiIF5twuwhYwuIWGPv3+lzCQhYufZlWgLpBESsdCszMAECBAhEEBCvImzBDIMIiFiDLNox0wsIWOlX6AAE4guIWPF3ZEICBAgQCCQgXgVahlFGERCxRtm0c2YWELAyb8/sBBIJiFiJlmVUAgQIEOgncBmv/tc3/8wvft/+1/9wvyE8mcCYAiLWmHt36jwCAlaeXZmUQHoBESv9Ch2AAAECBFoKPIpXH93/xo+2fIx7EyBwWEDEOmzjHQK9BQSs3hvwfAKDCYhYgy3ccQkQIEBgnoB4Nc/JVQQ2EBCxNkD2CAInCAhYJ6D5CAEC5wmIWOf5+TQBAgQIFBMQr4ot1HEqCIhYFbboDNUEBKxqG3UeAkkERKwkizImAQIECLQVEK/a+ro7gTMERKwz8HyUQAMBAasBqlsSIDBPQMSa5+QqAgQIECgqIF4VXaxjVRIQsSpt01myCwhY2TdofgLJBUSs5As0PgECBAicJiBenebmUwQ6CIhYHdA9ksAtAgLWLSj+RIDAtgIi1rbenkaAAAECnQXEq84L8HgCywVErOVmPkFgbQEBa21R9yNA4CQBEeskNh8iQIAAgWwC4lW2jZmXwGMBEesxhR8IdBEQsLqweygBArcJiFi3qfgbAQIECJQREK/KrNJBxhUQscbdvZP3FxCw+u/ABAQIPCUgYj2F4UcCBAgQqCMgXtXZpZMMLyBiDf8VANBJQMDqBO+xBAgcFhCxDtt4hwABAgQSCohXCZdmZAJ3C4hYd/t4l0ALAQGrhap7EiBwtoCIdTahGxAgQIBABAHxKsIWzECgiYCI1YTVTQkcFBCwDtJ4gwCB3gIiVu8NeD4BAgQInCUgXp3F58MEMgiIWBm2ZMYqAgJWlU06B4GiAiJW0cU6FgECBKoLiFfVN+x8BB4LiFiPKfxAoKmAgNWU180JEFhDQMRaQ9E9CBAgQGAzAfFqM2oPIhBFQMSKsglzVBYQsCpv19kIFBIQsQot01EIECBQWUC8qrxdZyNwp4CIdSePNwmcLSBgnU3oBgQIbCUgYm0l7TkECBAgcJKAeHUSmw8RqCQgYlXaprNEExCwom3EPAQI3CkgYt3J400CBAgQ6CUgXvWS91wC4QRErHArMVARAQGryCIdg8BIAiLWSNt2VgIECCQQEK8SLMmIBLYVELG29fa0MQQErDH27JQEygmIWOVW6kAECBDIKSBe5dybqQlsICBibYDsEUMJCFhDrdthCdQSELFq7dNpCBAgkE5AvEq3MgMT2FpAxNpa3PMqCwhYlbfrbAQGEBCxBliyIxIgQCCigHgVcStmIhBSQMQKuRZDJRQQsBIuzcgECFwXELGue/iNAAECBBoLiFeNgd2eQD0BEaveTp1oewEBa3tzTyRAoIGAiNUA1S0JECBA4KaAeHXTxF8IEJglIGLNYnIRgYMCAtZBGm8QIJBNQMTKtjHzEiBAIJmAeJVsYcYlEE9AxIq3ExPlERCw8uzKpAQIzBAQsWYguYQAAQIElguIV8vNfIIAgVsFRKxbWfyRwFEBAesokQsIEMgmIGJl25h5CRAgEFxAvAq+IOMRyCcgYuXbmYn7CwhY/XdgAgIEGgiIWA1Q3ZIAAQIjCohXI27dmQlsIiBibcLsIYUEBKxCy3QUAgSuC4hY1z38RoAAAQILBcSrhWAuJ0BgqYCItVTM9SMLCFgjb9/ZCQwg8FTE+q8HOK4jEiBAgMBaAuLVWpLuQ4DAEYFHEevnPvLe/YtHLvU2gaEFBKyh1+/wBMYQeBSx/r3LVxFrjJU7JQECBM4TEK/O8/NpAgQWC1xGrB964/WdiLVYzgdGEhCwRtq2sxIYWEDEGnj5jk6AAIElAuLVEi3XEiCwooCItSKmW5UUELBKrtWhCBC4TUDEuk3F3wgQIEDgsYB49ZjCDwQI9BEQsfq4e2oOAQErx55MSYDASgIi1kqQbkOAAIFqAuJVtY06D4G0AiJW2tUZvLGAgNUY2O0JEIgnIGLF24mJCBAg0FVAvOrK7+EECNwUELFumvgLAQHLd4AAgSEFRKwh1+7QBAgQuCkgXt008RcCBEIIiFgh1mCIQAICVqBlGIUAgW0FRKxtvT2NAAEC4QQu49X/9uaf+cWP7n/jR8PNZiACBAhcCohYvgYEnggIWE8s/ESAwIACItaAS3dkAgQIXAk8ilffK175PhAgEFxAxAq+IONtJiBgbUbtQQQIRBUQsaJuxlwECBBoJCBeNYJ1WwIEWgmIWK1k3TeTgICVaVtmJUCgmYCI1YzWjQkQIBBLQLyKtQ/TECAwW0DEmk3lwqICAlbRxToWAQLLBUSs5WY+QYAAgVQC4lWqdRmWAIGbAiLWTRN/GUdAwBpn105KgMAMARFrBpJLCBAgkFFAvMq4NTMTIHCLgIh1C4o/DSEgYA2xZockQGCJgIi1RMu1BAgQSCAgXiVYkhEJEFgiIGIt0XJtFQEBq8omnYMAgVUFRKxVOd2MAAEC/QTEq372nkyAQFMBEaspr5sHFBCwAi7FSAQIxBAQsWLswRQECBA4WUC8OpnOBwkQyCEgYuXYkynXERCw1nF0FwIEigqIWEUX61gECNQXEK/q79gJCRB4ICBi+SKMIiBgjbJp5yRA4GQBEetkOh8kQIBAHwHxqo+7pxIg0E1AxOpG78EbCghYG2J7FAECeQVErLy7MzkBAoMJiFeDLdxxCRCYBESsScJrVQEBq+pmnYsAgdUFRKzVSd2QAAEC6wqIV+t6uhsBAukERKx0KzPwAgEBawGWSwkQICBi+Q4QIEAgqIB4FXQxxiJAYGsBEWtrcc/bSkDA2kracwgQKCMgYpVZpYMQIFBFQLyqsknnIEBgJQERayVItwklIGCFWodhCBDIIiBiZdmUOQkQKC8gXpVfsQMSIHCagIh1mptPxRUQsOLuxmQECAQXELGCL8h4BAjUFxCv6u/YCQkQOEtAxDqLz4eDCQhYwRZiHAIEcgmIWLn2ZVoCBAoJiFeFlukoBAi0FBCxWuq695YCAtaW2p5FgEBJARGr5FodigCByALiVeTtmI0AgYACIlbApRhpsYCAtZjMBwgQIHBTQMS6aeIvBAgQaCIgXjVhdVMCBOoLiFj1d1z9hAJW9Q07HwECmwmIWJtRexABAqMKiFejbt65CRBYSUDEWgnSbboICFhd2D2UAIGqAiJW1c06FwEC3QXEq+4rMAABAjUERKwaexzxFC+MeGhnJkCAQEuBq4j1wXfuf/Y3vutf/d7n/58XfrTls9ybAAECowj8S7/7a1/4/v/03/rQ5Xn/4Shnds6cAp/7zAfe2v1CztlNPY7AVcR6/fXdZz7y3v1P/eY/ufjqOCd30swCAlbm7ZmdAIGQAh98cf9v3L+3+/T9//wfv/XCf/jNf2//hW/8wZCDGooAAQKJBO49//zF/ve8932JRjbqoAL3X3rptwY9umPnE/jBN17f/dxlxPojIla+5Y04sf+EcMStOzMBAs0Epnh1+f+q9Y7dxW733Ke++IMXv+/Nv9fsgW5MgAABAgQIECBA4EQB/znhiXA+1kVAwOrC7qEECFQUuBavpgOKWJOEVwIECBAgQIAAgYACIlbApRjpVgEB61YWfyRAgMAygVvj1XQLEWuS8EqAAAECBAgQIBBQQMQKuBQj3RAQsG6Q+AMBAgSWCdwZr6ZbiViThFcCBAgQIECAAIGAAiJWwKUY6ZqAgHWNwy8ECBBYJjArXk23FLEmCa8ECBAgQIAAAQIBBUSsgEsx0mMBAesxhR8IECCwTGBRvJpuLWJNEl4JECBAgAABAgQCCohYAZdipAcCApYvAgECBE4QOCleTc8RsSYJrwQIECBAgAABAgEFRKyASzHSTsDyJSBAgMBCgbPi1fQsEWuS8EqAAAECBAgQIBBQQMQKuJTBRxKwBv8COD4BAssEPvDi/o/fv7f79OX/D/0dyz55y9Ui1i0o/kSAAAECBAgQIBBFQMSKsglzXAkIWL4HBAgQmClwFa/293Y/s0q8mp4pYk0SXgkQIECAAAECBAIKTBHrw+/Zf1PA8Yw0kICANdCyHZUAgdMFmsSraRwRa5LwSoAAAQIECBAgEFDgKmK99ebuZ0WsgMsZaCQBa6BlOyoBAqcJNI1X00gi1iThlQABAgQIECBAIKCAiBVwKYONJGANtnDHJUBgmcAm8WoaScSaJLwSIECAAAECBAgEFBCxAi5loJEErIGW7agECCwT2DReTaOJWJOEVwIECBAgQIAAgYACIlbApQwykoA1yKIdkwCBZQJd4tU04hSxPvbm353+5JUAAQIECBAgQIBAFAERK8omxppDwBpr305LgMAMga7xaprvKmL9lS/+0IWINYl4JUCAAAECBAgQCCQgYgVaxiCjCFiDLNoxCRCYJxAiXk2jThHr97/xy9OfvBIgQIAAAQIECBCIIiBiRdnEGHMIWGPs2SkJEJghECpeTfNeRaz/4ks/4F9iTSBeCRAgQIAAAQIEIgmIWJG2UXsWAav2fp2OAIGZAiHj1TT79C+x/OeEk4hXAgQIECBAgACBQAIiVqBlFB5FwCq8XEcjQGCeQOh4NR1BxJokvBIgQIAAAQIECAQUuIpYX3tz93Mffs/+mwKOZ6QCAgJWgSU6AgECpwukiFfT8USsScIrAQIECBAgQIBATIEfFLFiLqbCVAJWhS06AwECJwmkilfTCUWsScIrAQIECBAgQIBATAERK+Ze0k8lYKVfoQMQIHCKQMp4NR1UxJokvBIgQIAAAQIECMQUELFi7iX1VAJW6vUZngCBUwRSx6vpwCLWJOGVAAECBAgQIEAgpoCIFXMvaacSsNKuzuAECJwiUCJeTQcXsSYJrwQIECBAgAABAjEFRKyYe0k5lYCVcm2GJkDgFIGreHX/3u7Tl/8bUt5xyudDfkbECrkWQxEgQIAAAQIECDwWELEeU/jhHAEB6xw9nyVAII3AFK8uB34hzdBzBxWx5kq5jgABAgQIECBAoI+AiNXHvdRTBaxS63QYAgRuEygdr6YDi1iThFcCBAgQIECAAIGYAiJWzL2kmUrASrMqgxIgcIrAEPFqghGxJgmvBAgQIECAAAECMQVErJh7STGVgJViTYYkQOAUgaHi1QQkYk0SXgkQIECAAAECBGIKiFgx9xJ+KgEr/IoMSIDAKQJDxqsJSsSaJLwSIECAAAECBAjEFBCxYu4l9FQCVuj1GI4AgVMEho5XE5iINUl4JUCAAAECBAgQiCkgYsXcS9ipBKywqzEYAQKnCIhXT6mJWE9h+JEAAQIECBAgQCCggIgVcClRRxKwom7GXAQILBYQr24hE7FuQfEnAgQIECBAgACBQAIiVqBlRB5FwIq8HbMRIDBbQLy6g0rEugPHWwQIECBAgAABAgEERKwAS4g+goAVfUPmI0DgqIB4dZRotxOxZiC5hAABAgQIECBAoKOAiNURP8OjBawMWzIjAQIHBcSrgzQ33xCxbpr4CwECBAgQIECAQCQBESvSNoLNImAFW4hxCBCYLyBezbd6fKWI9ZjCDwQIECBAgAABAiEFRKyQa+k/lIDVfwcmIEDgBAHx6gS06SOPI9Ybf3f6k1cCBAgQIECAAAECgQRErEDLiDKKgBVlE+YgQGC2gHg1m+rwhQ8i1pd+6OJjItZhJO8QIECAAAECBAh0FBCxOuJHfLSAFXErZiJA4KCAeHWQZvkbItZyM58gQIAAAQIECBDYUkDE2lI7+LMErOALMh4BAk8ExKsnFqv9JGKtRulGBAgQIECAAAECTQRErCas+W4qYOXbmYkJDCkgXjVcu4jVENetCRAgQIAAAQIEVhAQsVZAzH4LASv7Bs1PYAAB8WqDJYtYGyB7BAECBAgQIECAwBkCItYZeBU+KmBV2KIzECgsIF5tuFwRa0NsjyJAgAABAgQIEDhBQMQ6Aa3KRwSsKpt0DgIFBcSrDksVsTqgeyQBAgQIECBAgMACARFrAValSwWsStt0FgKFBD7w7v2fuH9v9+nLI71Q6Fg5jiJi5diTKQkQIECAAAEC4wqIWAPuXsAacOmOTCC6wIN4dX/3M5dzile9lvUkYv2dXiN4LgECBAgQIECAAIE7BESsO3AqviVgVdyqMxFILCBeBVrew4j1wxcfe0PECrQWoxAgQIAAAQIECDwWELEeU9T/QcCqv2MnJJBGQLwKuCoRK+BSjESAAAECBAgQIPCUgIj1FEblHwWsytt1NgKJBMSrwMsSsQIvx2gECBAgQIAAAQKXAiLWAF8DAWuAJTsigegC4lX0DV3OJ2IlWJIRCRAgQIAAAQJDC4hYxdcvYBVfsOMRiC4gXkXf0FPziVhPYfiRAAECBAgQIEAgoICIFXApa40kYK0l6T4ECCwWEK8Wk/X/gIjVfwcmIECAAAECBAgQuEtAxLpLJ/F7Albi5RmdQGYB8Srx9kSsxMszOgECBAgQIEBgCAERq+CaBayCS3UkAtEFxKvoG5oxn4g1A8klBAgQIECAAAECHQVErI74LR4tYLVQdU8CBA4KiFcHafK9IWLl25mJCRAgQIAAAQJjCYhYhfYtYBVapqMQiC4gXkXf0AnziVgnoPkIAQIECBAgQIDAhgIi1obYLR8lYLXUdW8CBB4LiFePKer9IGLV26kTESBAgAABAgRqCYhYBfYpYBVYoiMQiC4gXkXf0ArziVgrILoFAQIECBAgQIBAQwERqyHuFrcWsLZQ9gwCAwuIVwMtX8QaaNmOSoAAAQIECBBIKSBipVzbw6EFrMTLMzqB6ALiVfQNNZhPxGqA6pYECBAgQIAAAQIrCohYK2JueSsBa0ttzyIwkIB4NdCynz2qiPWsiN8JECBAgAABAgRiCYhYsfYxaxoBaxaTiwgQWCIgXi3RKnqtiFV0sY5FgAABAgQIECgjIGIlW6WAlWxhxiUQXUC8ir6hDecTsTbE9igCBAgQIECAAIETBESsE9B6fUTA6iXvuQQKCohXBZd67pFErHMFfZ4AAQIECBAgQKCtgIjV1ne1uwtYq1G6EYGxBcSrsfd/5+lFrDt5vEmAAAECBAgQINBdQMTqvoLjAwhYx41cQYDAEQHx6giQt3c7Ecu3gAABAgQIECBAILaAiBV7PzsBK/iCjEcguoB4FX1DgeYTsQItwygECBAgQIAAAQK3CFxFrM98+D37b7rlPX/qLCBgdV6AxxPILCBeZd5ep9lFrE7wHkuAAAECBAgQIDBT4A+JWDOlNr5MwNoY3OMIVBEQr6psssM5RKwO6B5JgAABAgQIECCwQEDEWoC11aUC1lbSnkOgkIB4VWiZvY4iYvWS91wCBAgQIECAAIF5AiLWPKfNrhKwNqP2IAI1BMSrGnsMcQoRK8QaDEGAAAECBAgQIHBQQMQ6SLP9GwLW9uaeSCCtgHiVdnVxBxex4u7GZAQIECBAgAABAlcCIlaQ74GAFWQRxiAQXUC8ir6hxPOJWImXZ3QCBAgQIECAwBACIlaANQtYAZZgBALRBcSr6BsqMJ+IVWCJjkCAAAECBAgQKC0gYnVer4DVeQEeTyC6gHgVfUOF5hOxCi3TUQgQIECAAAECJQVErI5rFbA64ns0gegC4lX0DRWcT8QquFRHIkCAAAECBAiUEhCxOq1TwOoE77EEoguIV9E3VHg+Eavwch2NAAECBAgQIFBCQMTqsEYBqwO6RxKILiBeRd/QAPOJWAMs2REJECBAgAABAqkFRKyN1ydgbQzucQSiC4hX0Tc00HxXEetTX/rhi4+98XcGOrWjEiBAgAABAgQI5BEQsTbclYC1IbZHEYguIF5F39CY84lYY+7dqQkQIECAAAECSQRErI0WJWBtBO0xBKILiFfRNzT2fA8i1u9745fGVnB6AgQIECBAgACBoAIi1gaLEbA2QPYIAtEFxKvoGzLflcBz/9WXfuRCxPJlIECAAAECBAgQiCkgYjXei4DVGNjtCUQXuIxX/+b9+7ufuZzzheizmo+AiOU7QIAAAQIECBAgEFhAxGq4HAGrIa5bE4gu8Che/fTlnOJV9GWZ77GAiPWYwg8ECBAgQIAAAQLxBESsRjsRsBrBui2B6ALiVfQNme8uARHrLh3vESBAgAABAgQIdBYQsRosQMBqgOqWBKILiFfRN2S+OQIi1hwl1xAgQIAAAQIECHQSELFWhhewVgZ1OwLRBcSr6Bsy3xIBEWuJlmsJECBAgAABAgQ2FhCxVgQXsFbEdCsC0QXEq+gbMt8pAiLWKWo+Q4AAAQIECBAgsJGAiLUStIC1EqTbEIguIF5F35D5zhEQsc7R81kCBAgQIECAAIHGAiLWCsAC1gqIbkEguoB4FX1D5ltDQMRaQ9E9CBAgQIAAAQIEGgmIWGfCClhnAvo4gegC4lX0DZlvTQERa01N9yJAgAABAgQIEFhZQMQ6A1TAOgPPRwlEFxCvom/IfC0ERKwWqu5JgAABAgQIECCwkoCIdSKkgHUinI8RiC4gXkXfkPlaCohYLXXdmwABAgQIECBA4EwBEesEQAHrBDQfIRBdQLyKviHzbSEgYm2h7BkECBAgQIAAAQInCohYC+EErIVgLicQXUC8ir4h820pIGJtqe1ZBAgQIECAAAECCwVErAVgAtYCLJcSiC4gXkXfkPl6CIhYPdQ9kwABAgQIECBAYKaAiDUTSsCaCeUyAtEFxKvoGzJfTwERq6e+ZxMgQIAAAQIECBwRELGOAF29LWDNQHIJgegC4lX0DZkvgoCIFWELZiBAgAABAgQIEDggIGIdgJn+LGBNEl4JJBUQr5IuzthdBESsLuweSoAAAQIECBAgME9AxLrDScC6A8dbBKILiFfRN2S+iAIiVsStmIkAAQIECBAgQOCRwIOI9aFX9i8RuS4gYF338BuBNALiVZpVGTSggIgVcClGIkCAAAECBAgQmAT+0Ne/tvs5EWviePgqYF338BuBFALiVYo1GTK4gIgVfEHGI0CAAAECBAiMLSBiPbN/AesZEL8SiC4gXkXfkPkyCYhYmbZlVgIECBAgQIDAcAIi1lMrF7CewvAjgegC4lX0DZkvo4CIlXFrZiZAgAABAgQIDCMgYj1atYA1zHfeQbMLiFfZN2j+yAIiVuTtmI0AAQIECBAgMLyAiHX5FRCwhv//DgBkEBCvMmzJjNkFRKzsGzQ/AQIECBAgQKC0wPARS8Aq/f12uAoC4lWFLTpDFoEHEetjb/xSlnnNSYAAAQIECBAgMJTA0BFLwBrqu+6w2QTEq2wbM28Fgec+9aUfuRCxKqzSGQgQIECAAAECFQWGjVgCVsWvszOVEBCvSqzRIZIKiFhJF2dsAgQIECBAgMAYAkNGLAFrjC+3UyYTEK+SLcy4JQVErJJrdSgCBAgQIECAQBWB4SKWgFXlq+scZQTEqzKrdJACAiJWgSU6AgECBAgQIECgrsBQEUvAqvtFdrKEAuJVwqUZubyAiFV+xQ5IgAABAgQIEMgsMEzEErAyf03NXkpAvCq1TocpJiBiFVuo4xAgQIAAAQIEagkMEbEErFpfWqdJKiBeJV2csYcSELGGWrfDEiBAgAABAgSyCZSPWAJWtq+kecsJiFflVupAhQUeRqw3f7HwER2NAAECBAgQIEAgr0DpiCVg5f1imryAgHhVYImOMJzAc5/64icuPiZiDbd4ByZAgAABAgQI5BC4ilif+dAr+5dyjDt/SgFrvpUrCawqIF6tyulmBDYVELE25fYwAgQIECBAgACBZQJ/sGLEErCWfQlcTWAVAfFqFUY3IdBVQMTqyu/hBAgQIECAAAECdwuUi1gC1t0L9y6B1QXEq9VJ3ZBANwERqxu9BxMgQIAAAQIECBwXKBWxBKzjC3cFgdUExKvVKN2IQBgBESvMKgxCgAABAgQIECBwU6BMxBKwbi7XXwg0EfjOd+//5P37u5++vPkLTR7gpgQIdBMQsbrRezABAgQIECBAgMBxgRIRS8A6vmhXEDhb4Cpe7e/v/sbljcSrszXdgEBMAREr5l5MRYAAAQIECBAg8EAgfcQSsHyTCTQWEK8aA7s9gUACIlagZRiFAAECBAgQIEDgWYHUEUvAenadfiewooB4tSKmWxFIIiBiJVmUMQkQIECAAAECYwqkjVgC1phfWKfeQEC82gDZIwgEFRCxgi7GWAQIECBAgAABAlcCKSOWgOXLS6CBgHjVANUtCSQTELGSLcy4BAgQIECAAIGxBNJFLAFrrC+o024gIF5tgOwRBJIIiFhJFmVMAgQIECBAgMCYAqkiloA15pfUqRsJiFeNYN2WQGIBESvx8oxOgAABAgQIEKgvkCZiCVj1v4xOuJGAeLURtMcQSCggYiVcmpEJECBAgAABAuMIpIhYAtY4X0gnbSggXjXEdWsCRQRErCKLdAwCBAgQIECAQE2B8BFLwKr5xXOqDQXEqw2xPYpAcgERK/kCjU+AAAECBAgQqC0QOmIJWLW/fE7XWEC8agzs9gQKCohYBZfqSAQIECBAgACBOgJhI5aAVedL5iQbC4hXG4N7HIFCAiJWoWU6CgECBAgQIECgnkDIiCVg1fuiOdEGAuLVBsgeQaC4gIhVfMGOR4AAAQIECBDILRAuYglYub9Qpu8gIF51QPdIAkUFRKyii3UsAgQIECBAgEANgVARS8Cq8aVyio0ExKuNoD2GwEACItZAy3ZUAgQIECBAgEA+gTARS8DK9+UxcScB8aoTvMcSGEBAxBpgyY5IgAABAgQIEMgrECJiCVh5v0Am31BAvNoQ26MIDCogYg26eMcmQIAAAQIECOQQ6B6xBKwcXxRTdhQQrzriezSBwQRErMEW7rgECBAgQIAAgVwCXSOWgJXry2LajQXEq43BPY4AgZ2I5UtAgAABAgQIECAQWKBbxBKwAn8rjNZXQLzq6+/pBEYWELFG3r6zEyBAgAABAgTCC3SJWAJW+O+FAXsIiFc91D2TAIGnBUSspzX8TIAAAQIECBAgEExg84glYAX7Bhinv4B41X8HJiBA4KGAiOWbQIAAAQIECBAgEFhg04glYAX+JhhtewHxantzTyRA4G4BEetuH+8SIECAAAECBAh0FdgsYglYXffs4ZEExKtI2zALAQJPC4hYT2v4mQABAgQIECBAIJjAJhFLwAq2deP0ERCv+rh7KgEC8wVErPlWriRAgAABAgQIENhcoHnEErA236kHRhMQr6JtxDwECBwSELEOyfg7AQIECBAgQIBAAIGmEUvACrBhI/QTEK/62XsyAQKnCYhYp7n5FAECBAgQIECAwCYCzSKWgLXJ/jwkooB4FXErZiJAYI6AiDVHyTUECBAgQIAAAQKdBJpELAGr0zY9tq+AeNXX39MJEDhf4EHE+tde/9vn38kdCBAgQIAAAQIECKwusHrEErBW35EbRhcQr6JvyHwECMwVeO6v/PaPXohYc7lcR4AAAQIECBAgsK3AqhFLwNp2eZ7WWUC86rwAjydAYHUBEWt1UjckQIAAAQIECBBYT2C1iCVgrbcUdwouIF4FX5DxCBA4WUDEOpnOBwkQIECAAAECBNoLrBKxBKz2i/KEAALiVYAlGIEAgaYCIlZTXjcnQIAAAQIECBA4T+DsiCVgnbcAn04gIF4lWJIRCRBYRUDEWoXRTQgQIECAAAECBNoInBWxBKw2S3HXIALiVZBFGIMAgc0ERKzNqD2IAAECBAgQIEBgucDJEUvAWo7tE0kExKskizImAQKrC4hYq5O6IQECBAgQIECAwHoCJ0UsAWu9BbhTIAHxKtAyjEKAQBcBEasLu4cSIECAAAECBAjME1gcsQSsebCuSiQgXiVallEJEGgqIGI15XVzAgQIECBAgACB8wQWRSwB6zxsnw4mcBmvPrm/v/sbl2O9EGw04xAgQKCLgIjVhd1DCRAgQIAAAQIE5gnMjlgC1jxQVyUQeBSv/vrlqOJVgn0ZkQCB7QRErO2sPYkAAQIECBAgQGCxwKyIJWAtdvWBiALiVcStmIkAgUgCIlakbZiFAAECBAgQIEDgGYGjEUvAekbMr/kExKt8OzMxAQJ9BESsPu6eSoAAAQIECBAgMEvgzoglYM0ydFFUAfEq6mbMRYBAVAERK+pmzEWAAAECBAgQIHApcDBiCVi+H2kFxKu0qzM4AQKdBUSszgvweAIECBAgQIAAgbsEbo1YAtZdZN4LKyBehV2NwQgQSCIgYiVZlDEJECBAgAABAmMKXEWsz37olf1L0/H9b2ubJLymERCv0qzKoAQIBBe4iliv/eWP/vzuC7tvCT6q8Qjs9vvd/uLt+19HQSC8wP379y52O9/V8IsyIAECCQQ+du9r+//9I+/d/+u/+U8uvvov2ruXWG+3u6Dj//97etqjp7HQo0ZRSpVESQBP6TktHYiWIqVVEmdY204MCfeLA0fOTJQYU6uJ94FxoDBAZ06MA6kWUPASbj2GGMQeRtACKZxSaNOz3c973v/e797v//Jc1uW31vqQmL33//8861nr83uC5utLuf7vrf6LQDsC4lU7s7LT3e4X//0f+uwzz3z2WRYEogt829/4jx//qZ/9s98QfZ/2N7bAH37mcz/z0/tvffXVX//Nt48t4fTRBfZ/6vc+/uBf/bL/nhp9UPZHgEATAvv9/qd3r3/De/cv/uZn/I8QNjEym5wExCvvAQECBPII/OhH3vsNX//8j388z+pWJZBG4PNPPb3ff+SHvvbBc1/6v9KsaBUCBAgQIEAgssDj8Wrap4AVeVr2diMgXt1Q+IUAAQJZBESsLKwWTSxw9fR1xRKxEqtajgABAgQIxBO4H6+mHQpY8eZkR/cExKt7IP4kQIBAJgERKxOsZZMKiFhJOS1GgAABAgTCCRyLV9MmBaxwo7KhxwXEq8c1/E6AAIH8AiJWfmNP2C4gYm03tAIBAgQIEIgocCpeTXsVsCJOzJ4eCohXXgQCBAjUERCx6rh76jIBEWuZl6sJECBAgEB0gXPxatq7gBV9goPuT7wadPCOTYBAGAERK8wobOSMgIh1BsdXBAgQIECgIYFL8Wo6ioDV0EBH2ap4NcqknZMAgegCIlb0CdnfJCBieQ8IECBAgEDbAnPi1XRCAavtOXe3e/Gqu5E6EAECjQuIWI0PcJDti1iDDNoxCRAgQKA7gbnxajq4gNXd+Ns9kHjV7uzsnACBvgVErL7n28vpRKxeJukcBAgQIDCKwJJ4NZkIWKO8GcHPKV4FH5DtESAwvICINfwr0ASAiNXEmGySAAECBAjslsariUzA8uJUFxCvqo/ABggQIDBLQMSaxeSiygIiVuUBeDwBAgQIELggsCZeTUsKWBdgfZ1XQLzK62t1AgQIpBYQsVKLWi+HgIiVQ9WaBAgQIEBgu8DaeDU9WcDa7m+FlQLi1Uo4txEgQKCygIhVeQAeP0tAxJrF5CICBAgQIFBMYEu8mjYpYBUblQc9LiBePa7hdwIECLQnIGK1N7MRdyxijTh1ZyZAgACBiAJb49V0JgEr4mQ735N41fmAHY8AgWEERKxhRt30QUWspsdn8wQIECDQgcDDePXgmW/ev/ibn9lyHAFri557FwuIV4vJ3ECAAIHQAiJW6PHY3CMBEcurQIAAAQIE6gjcxKt3/cZvbd2BgLVV0P2zBcSr2VQuJECAQFMCDyPW1/74x5vatM0OJyBiDTdyByZAgACBygIp49V0FAGr8kBHebx4NcqknZMAgVEFfvSj7/2GrxexRh1/M+cWsZoZlY0SIECAQOMCqePVxCFgNf5StLB98aqFKdkjAQIEtguIWNsNrZBfQMTKb+wJBAgQIDC2QI54NYkKWGO/V9lPL15lJ/YAAgQIhBIQsUKNw2ZOCDwWsf7niUt8TIAAAQIECKwQyBWvpq0IWCsG4pZ5AuLVPCdXESBAoDcBEau3ifZ5nkcR6888eO5LRaw+R+xUBAgQIFBYIGe8mo4iYBUe6CiPE69GmbRzEiBA4LiAiHXcxaexBESsWPOwGwIECBBoVyB3vJpkBKx234+wOxevwo7GxggQIFBUQMQqyu1hKwVErJVwbiNAgAABAo8ESsSr6VECllcuqYB4lZTTYgQIEGheQMRqfoRDHEDEGmLMDkmAAAECGQRKxatp6wJWhgGOuqR4NerknZsAAQLnBUSs8z6+jSEgYsWYg10QIECAQDsCJePVpCJgtfNuhN6peBV6PDZHgACB6gIiVvUR2MAMARFrBpJLCBAgQIDAtcB1vPqp3YNnvnn/rt/4rVIgAlYp6Y6fI151PFxHI0CAQEIBESshpqWyCYhY2WgtTIAAAQKdCDyKV+8tGa8mOgGrkxeo1jHEq1rynkuAAIE2BUSsNuc22q5FrNEm7rwECBAgMFegVrya9idgzZ2S654QEK+eIPEBAQIECMwQELFmILmkuoCIVX0ENkCAAAECwQRqxquJQsAK9kK0sp3rePVtV6/ufuR6v69rZc/2SYAAAQJxBESsOLOwk9MCItZpG98QIECAwFgCtePVpC1gjfXOJTnto3j1w9eLiVdJRC1CgACBMQVErDHn3tqpRazWJma/BAgQIJBaIEK8ms4kYKWebOfriVedD9jxCBAgUFhAxCoM7nGrBESsVWxuIkCAAIEOBKLEq4lSwOrghSp1BPGqlLTnECBAYCwBEWusebd6WhGr1cnZNwECBAisFYgUr6YzCFhrJznYfeLVYAN3XAIECBQWELEKg3vcKgERaxWbmwgQIECgQYFo8WoiFLAafJFKb1m8Ki3ueQQIEBhTQMQac+6tnVrEam1i9kuAAAECSwUixqvpDALW0kkOdr14NdjAHZcAAQKVBUSsygPw+FkCItYsJhcRIECAQIMCUePVRClgNfhCldqyeFVK2nMIECBA4HEBEetxDb9HFRCxok7GvggQIEBgrUDkeDWdScBaO9nO7xOvOh+w4xEgQCC4gIgVfEC291BAxPIiECBAgEAvAtHj1eQsYPXytiU8h3iVENNSBAgQILBaQMRaTefGggIiVkFsjyJAgACBLAItxKvp4AJWlvG3u6h41e7s7JwAAQI9CohYPU61vzOJWP3N1IkIECAwikAr8Wqah4A1yls545zi1QwklxAgQIBAcQERqzi5B64QELFWoLmFAAECBKoKtBSvJigBq+rrEufh4lWcWdgJAQIECDwpIGI9aeKTeAIiVryZ2BEBAgQIHBdoLV5NpxCwjs9yqE/Fq6HG7bAECBBoVkDEanZ0Q21cxBpq3A5LgACBJgVajFcTtIDV5OuWbtPiVTpLKxEgQIBAfgERK7+xJ2wXELG2G1qBAAECBPIItBqvJg0BK8870cSq4lUTY7JJAgQIELgnIGLdA/FnSAERK+RYbIoAAQJDC7Qcr6bBCViDvr7i1aCDd2wCBAh0IiBidTLIzo8hYnU+YMcjQIBAQwKtx6uJWsBq6IVLtVXxKpWkdQgQIECgpoCIVVPfs+cKiFhzpVxHgAABArkEeohXk42AlesNCbqueBV0MLZFgAABAqsERKxVbG4qLCBiFQb3OAIECBC4EeglXk0HErBuxtr/L+JV/zN2QgIECIwoIGKNOPX2zixitTczOyZAgEDrAj3Fq2kWAlbrb+TM/YtXM6FcRoAAAQJNCohYTY5tuE2LWMON3IEJECBQTaC3eDVBCljVXqdyDxavyll7EgECBAjUExCx6tl78nwBEWu+lSsJECBAYJ1Aj/FqkhCw1r0Pzdz1KF79yPWGX9fMpm2UAAECBAisFBCxVsK5raiAiFWU28MIECAwlECv8WoaooDV8av8WLx6quNjOhoBAgQIELgjIGLd4fBHUAERK+hgbIsAAQINC/Qcr6axCFgNv5znti5endPxHQECBAj0LiBi9T7hPs4nYvUxR6cgQIBABIHe49VkLGBFeNMS70G8SgxqOQIECBBoUkDEanJsw21axBpu5A5MgACB5AIjxKsJTcBK/urUXVC8quvv6QQIECAQS0DEijUPuzkuIGIdd/EpAQIECFwWGCVeTRIC1uX3oZkrxKtmRmWjBAgQIFBQQMQqiO1RqwVErNV0biRAgMCwAiPFq2nIAlYnr7p41ckgHYMAAQIEsgiIWFlYLZpYQMRKDGo5AgQIdCwwWryaRilgdfBCi1cdDNERCBAgQCC7gIiVndgDEgiIWAkQLUGAAIHOBUaMV9NIBazGX2zxqvEB2j4BAgQIFBUQsYpye9hKARFrJZzbCBAgMIDAqPFqGq2A1fALLl41PDxbJ0CAAIFqAiJWNXoPXiBwiFj75978Pxbc5lICBAgQ6Fhg5Hg1jVXAavTlFq8aHZxtEyBAgEAIARErxBhs4oLAFLEefOTvPC9iXYDyNQECBAYQGD1eTSMWsBp80cWrBodmywQIECAQTkDECjcSGzoi8DBi/f0fErGO2PiIAAECowiIV69NWsBq7I0XrxobmO0SIECAQGgBESv0eGzukcDV6x48/UDE8j4QIEBgSAHx6nbsAtatRfjfxKvwI7JBAgQIEGhQQMRqcGgDblnEGnDojkyAwPAC4tXdV0DAuusR9i/xKuxobIwAAQIEOhAQsToY4gBHELEGGLIjEiBA4JGAePXkqyBgPWkS7hPxKtxIbIgAAQIEOhQQsTocaodHErE6HKojESBA4J6AeHUP5NGfAtZxlzCffvkbr/7K1au7H7ne0FNhNmUjBAgQIECgUwERq9PBdnYsEauzgToOAQIEHhMQrx7DuPergHUPJNKfU7zavbr74es9iVeRBmMvBAgQINC1gIjV9Xi7OZyI1c0oHYQAAQI3AuLVDcXRXwSsoyz1PxSv6s/ADggQIEBgXAERa9zZt3RyEauladkrAQIEzguIV+d9pm8FrMtGxa8Qr4qTeyABAgQIEHhCQMR6gsQHAQVErIBDsSUCBAgsFBCv5oEJWPOcil0lXhWj9iACBAgQIHBRQMS6SOSCAAIiVoAh2AIBAgRWCux3+/+2e/DMe/fv+o3fWrnEMLcJWIFGLV4FGoatECBAgACBRwIillehBQERq4Up2SMBAgTuCjyMV0898y3i1V2XU38JWKdkCn8uXhUG9zgCBAgQILBAQMRagOXSagIiVjV6DyZAgMBiAfFqMZn/DKzlZOnvEK/Sm1qRAAECBAikFhCxUotaL4eAiJVD1ZoECBBIKyBerfP0L7DWuSW7S7xKRmkhAgQIECCQXUDEyk7sAQkERKwEiJYgQIBAJgHxaj2sgLXebvOd4tVmQgsQIECAAIHiAiJWcXIPXCEgYq1AcwsBAgQyC4hX24AFrG1+q+8Wr1bTuZEAAQIECFQXELGqj8AGZgiIWDOQXEKAAIFCAuLVdmgBa7vh4hXEq8VkbiBAgAABAuEERKxwI7GhIwIi1hEUHxEgQKCwgHiVBlzASuM4exXxajaVCwkQIECAQHgBESv8iGzwWkDE8hoQIECgnoB4lc5ewEpneXEl8eoikQsIECBAgEBzAiJWcyMbcsMi1pBjd2gCBCoLiFdpByBgpfU8uZp4dZLGFwQIECBAoHkBEav5EQ5xABFriDE7JAECQQTEq/SDELDSmz6xonj1BIkPCBAgQIBAdwIiVncj7fJAIlaXY3UoAgSCCYhXeQYiYOVxvVlVvLqh8AsBAgQIEOheQMTqfsRdHFDE6mKMDkGAQFAB8SrfYASsfLY78SojrqUJECBAgEBQAREr6GBs646AiHWHwx8ECBBIIiBeJWE8uYiAdZJm2xfi1TY/dxMgQIAAgZYFpoj1zq/9if/S8hnsvX8BEav/GTshAQLlBMSr/NYCVgZj8SoDqiUJECBAgEBjAv/2o9/850SsxoY24HZFrAGH7sgECCQXEK+Skx5dUMA6yrL+Q/FqvZ07CRAgQIBAbwIiVm8T7fM8Ilafc3UqAgTKCIhXZZynpwhYCa3Fq4SYliJAgAABAp0IiFidDLLzY4hYnQ/Y8QgQyCIgXmVhPbmogHWSZtkX4tUyL1cTIECAAIGRBESskabd7llFrHZnZ+cECJQXEK/KmwtYCczFqwSIliBAgAABAp0LiFidD7iT44lYnQzSMQgQyCogXmXlPbm4gHWSZt4X4tU8J1cRIECAAAECu52I5S1oQUDEamFK9kiAQC0B8aqWvP8MrE3y4tUmPjcTIECAAIEhBUSsIcfe3KFFrOZGZsMECBQQEK8KIJ95hH+BdQbn3Ffi1Tkd3xEgQIAAAQLnBESsczq+iyIgYkWZhH0QIBBBQLyqPwUBa8UMxKsVaG4hQIAAAQIE7giIWHc4/BFUQMQKOhjbIkCgqIB4VZT75MMErJM0x78Qr467+JQAAQIECBBYLiBiLTdzR3kBEau8uScSIBBHQLyKMwsBa8EsxKsFWC4lQIAAAQIEZgmIWLOYXFRZQMSqPACPJ0CgioB4VYX95EMFrJM0d78Qr+56+IsAAQIECBBIJyBipbO0Uj4BESufrZUJEIgnIF7Fm4mANWMm4tUMJJcQIECAAAECmwRErE18bi4kIGIVgvYYAgSqCohXVflPPlzAOknz2hfi1QUgXxMgQIAAAQLJBESsZJQWyiggYmXEtTQBAtUFxKvqIzi5AQHrJM1uJ16dwfEVAQIECBAgkEVAxMrCatHEAiJWYlDLESAQQkC8CjGGk5sQsE7QiFcnYHxMgAABAgQIZBcQsbITe0ACgcci1n9PsJwlCBAgUFVAvKrKP+vhAtYRJvHqCIqPCBAgQIAAgaICIlZRbg9bKfAoYr1t/9ybRayVhm4jQKC+gHhVfwZzdiBg3VMSr+6B+JMAAQIECBCoJiBiVaP34AUCItYCLJcSIBBOQLwKN5KTGxKwHqMRrx7D8CsBAgQIECAQQkDECjEGm7ggIGJdAPI1AQIhBcSrkGM5uSkB6xHNW9949YHdq7sfvv7zqZNaviBAgAABAgQIVBAQsSqge+RiARFrMZkbCBCoKCBeVcRf+WgB6xpuildffHX3b65/Fa9WvkhuI0CAAAECBPIKiFh5fa2eRkDESuNoFQIE8gqIV3l9c60+fMASr3K9WtYlQIAAAQIEUguIWKlFrZdDQMTKoWpNAgRSCYhXqSTLrzN0wBKvyr9wnkiAAAECBAhsExCxtvm5u4yAiFXG2VMIEFgmIF4t84p29bABS7yK9iraDwECBAgQIDBXQMSaK+W6mgIiVk19zyZA4L6AeHVfpL2/hwxY4lV7L6odEyBAgAABAncFRKy7Hv6KKSBixZyLXREYTUC86mPiwwUs8aqPF9cpCBAgQIAAgd1OxPIWtCAgYrUwJXsk0K+AeNXPbIcKWOJVPy+ukxAgQIAAAQKvCYhY3oQWBESsFqZkjwT6ExCv+prpMAFLvOrrxXUaAgQIECBA4FZAxLq18FtcAREr7mzsjECPAuJVf1MdImCJV/29uE5EgAABAgQI3BUQse56+CumgIgVcy52RaA3AfGqt4m+dp7uA5Z41eeL61QECBAgQIDAkwIi1pMmPoknIGLFm4kdEehJQLzqaZp3z9J1wBKv7g7bXwQIECBAgED/AiJW/zPu4YQiVg9TdAYC8QTEq3gzSbmjbgOWeJXyNbEWAQIECBAg0JKAiNXStMbdq4g17uydnEAOgf1u9193Tz3zLft3/cZv5VjfmvUFugxY4lX9F8sOCBAgQIAAgboCIlZdf0+fJyBizXNyFQEC5wVei1e/733i1Xmn1r/tLmCJV62/kvZPgAABAgQIpBIQsVJJWiengIiVU9faBPoXeBivnnvWv7zqf9S7rgKWeDXAG+uIBAgQIECAwCIBEWsRl4srCYhYleA9lkDjAjfx6qs+/duNH8X2Zwh0E7DEqxnTdgkBAgQIECAwpICINeTYmzu0iNXcyGyYQFUB8aoqf5WHdxGwxKsq746HEiBAgAABAg0JiFgNDWvgrYpYAw/f0QksEBCvFmB1dGnzAUu86uhtdBQCBAgQIEAgq4CIlZXX4okERKxEkJYh0KmAeNXpYGccq+mAJV7NmLBLCBAgQIAAAQKPCYhYj2H4NayAiBV2NDZGoKqAeFWVv/rDmw1Y4lX1d8cGCBAgQIAAgUYFRKxGBzfYtkWswQbuuAQuCIhXF4AG+LrJgCVeDfBmOiIBAgQIECCQVUDEyspr8UQCIlYiSMsQaFxAvGp8gIm231zAEq8STd4yBAgQIECAwPACItbwr0ATACJWE2OySQLZBMSrbLTNLdxUwBKvmnu/bJgAAQIECBAILiBiBR+Q7T0UeBixPvpDz++fe/N/R0KAwDgC4tU4s55z0mYClng1Z5yuIUCAAAECBAgsFxCxlpu5o7zA1VMPXv9AxCoP74kEKgmIV5XgAz+2iYAlXgV+g2yNAAECBAgQ6EJAxOpijN0fQsTqfsQOSOChgHjlRTgmED5giVfHxuYzAgQIECBAgEB6ARErvakV0wuIWOlNrUggkoB4FWkasfYSOmCJV7FeFrshQIAAAQIE+hcQsfqfcQ8nFLF6a65YlQAAPxZJREFUmKIzEHhSQLx60sQntwJhA5Z4dTskvxEgQIAAAQIESgqIWCW1PWutgIi1Vs59BGIKiFcx5xJpVyEDlngV6RWxFwIECBAgQGBEARFrxKm3d2YRq72Z2TGBYwLi1TEVn90XCBewxKv7I/I3AQIECBAgQKCOgIhVx91TlwmIWMu8XE0gmoB4FW0icfcTKmCJV3FfFDsjQIAAAQIExhQQscace2unFrFam5j9EnhNQLzyJiwRCBOwxKslY3MtAQIECBAgQKCcgIhVztqT1guIWOvt3EmghoB4VUO97WeGCFjiVdsvkd0TIECAAAEC/QuIWP3PuIcTilg9TNEZRhAQr0aYcvozVg9Y4lX6oVqRAAECBAgQIJBDQMTKoWrN1AIiVmpR6xFIKyBepfUcabWqAUu8GulVc1YCBAgQIECgBwERq4cp9n8GEav/GTthmwLiVZtzi7LragFLvIryCtgHAQIECBAgQGCZgIi1zMvVdQRErDrunkrglIB4dUrG53MFqgQs8WrueFxHgAABAgQIEIgpIGLFnItd3RW4jVh/8KfvfuMvAgRKCohXJbX7fVbxgPXWZ6/+6hdf3f2ba9Kn+mV1MgIECBAgQIBA/wIiVv8z7uGEr0Wsv/22/XMiVg/zdIb2BMSr9mYWdcdFA9bDeHW1+9fXGOJV1DfCvggQIECAAAECCwRErAVYLq0mIGJVo/fgwQXEq8FfgMTHLxawxKvEk7McAQIECBAgQCCIgIgVZBC2cVZAxDrL40sCyQXEq+Skwy9YJGCJV8O/ZwAIECBAgACBzgVErM4H3MnxRKxOBukY4QXEq/AjanKD2QOWeNXke2HTBAgQIECAAIHFAiLWYjI3VBAQsSqge+RQAuLVUOMuetisAUu8KjpLDyNAgAABAgQIVBcQsaqPwAZmCIhYM5BcQmCFgHi1As0tswWyBSzxavYMXEiAAAECBAgQ6EpAxOpqnN0eRsTqdrQOVklAvKoEP9BjswQs8WqgN8hRCRAgQIAAAQJHBESsIyg+CidwG7He/NPhNmdDBBoSEK8aGlbDW00esMSrht8GWydAgAABAgQIJBQQsRJiWiqbwGsR64fetn9OxMqGbOGuBcSrrscb6nBJA5Z4FWq2NkOAAAECBAgQqC4gYlUfgQ3MEBCxZiC5hMARAfHqCIqPsgkkC1jiVbYZWZgAAQIECBAg0LSAiNX0+IbZvIg1zKgdNJGAeJUI0jKzBZIELPFqtrcLCRAgQIAAAQJDCohYQ469uUOLWM2NzIYrCYhXleAHf+zmgCVeDf4GOT4BAgQIECBAYKbAFLHe8TU/+Z9nXu4yAlUERKwq7B7akIB41dCwOtvqpoAlXnX2NjgOAQIECBAgQCCzwL/7B3/hz4tYmZEtv1lAxNpMaIFOBcSrTgfbyLFWByzxqpEJ2yYBAgQIECBAIJiAiBVsILZzVEDEOsriw4EFxKuBhx/k6KsClngVZHq2QYAAAQIECBBoVEDEanRwg21bxBps4I57UkC8Oknji4ICiwOWeFVwOh5FgAABAgQIEOhYQMTqeLgdHU3E6miYjrJKQLxaxeamDAKLApZ4lWECliRAgAABAgQIDCwgYg08/IaOLmI1NCxbTSogXiXltNhGgdkBS7zaKO12AgQIECBAgACBowIi1lEWHwYTELGCDcR2sguIV9mJPWChwKyAJV4tVHU5AQIECBAgQIDAIgERaxGXiysJiFiV4D22uIB4VZzcA2cIXAxY4tUMRZcQIECAAAECBAhsFhCxNhNaoICAiFUA2SOqCuz3u5/cPffst+y/6tO/XXUjHk7gnsDZgCVe3dPyJwECBAgQIECAQFYBESsrr8UTCYhYiSAtE07gYbx687PvE6/CjcaGrgVOBizxyvtBgAABAgQIECBQQ0DEqqHumUsFRKylYq6PLiBeRZ+Q/R0NWOKVF4MAAQIECBAgQKCmgIhVU9+z5wqIWHOlXBddQLyKPiH7mwSeCFjilReDAAECBAgQIEAggoCIFWEK9nBJQMS6JOT76ALiVfQJ2d9B4E7AEq8OLH4SIECAAAECBAhEEBCxIkzBHi4JiFiXhHwfVUC8ijoZ+zomcP2/HfO1//qON/ynv/Qr+y/76NVufydqHb73k0AUgZef/ord5x+8Psp27IPASYFf+Mgf+703PP27bzh5gS8IRBB45nW73R/5sgg7sQcCZwX+4b/8R5/4gW/5fX/57EW+JFBZYP/FVz+/+89/9z/uvv0/fGvlrXg8gYsC1/HqJ3Zvfvb9/gPbL1K5IIjATcC62r3rrV/cff5jV7urrwiyN9sgcFTgqb/1N3/x6ivf+qePfulDAoEErj78HZ+92u2eDbQlWyFwR2C/2//O7q9/z0v7F59/8c4X/iAQTOD6/8H66/v96/7Cq1evftdu9+p3Btue7RC4I7B/w//5+O7Lvv0b7nzoDwLBBPzLq2ADsZ1ZAjf/2mq/+2//76nd6999/f+Y/eSsO11EgAABAgQINCsgXjU7uuE2/jBeve6pb9p/6Ot+5sGH3v7d1/8Rrv9iOAQHJkCAQEIB8SohpqWKCtwErOmpIlZRew8jQIAAAQJVBMSrKuweukLgJl594O0/O92+3++vHkas/f6fr1jOLQQIEBheQLwa/hVoGuBOwJpOImI1PU+bJ0CAAAECZwXEq7M8vgwkcD9eHbb2MGJ98IXvua5ZItYBxU8CBAjMEBCvZiC5JLTAEwFr2q2IFXpmNkeAAAECBFYJiFer2NxUQeBUvDpsRcQ6SPhJgACBeQLi1TwnV8UWOBqwpi2LWLEHZ3cECBAgQGCJgHi1RMu1NQUuxavD3kSsg4SfBAgQOC8gXp338W07AicD1nQEEaudQdopAQIECBA4JSBenZLxeTSBufHqsG8R6yDhJwECBI4LiFfHXXzapsDZgDUdScRqc7B2TYAAAQIEJgHxynvQisDSeHU4l4h1kPCTAAECdwXEq7se/mpf4GLAmo4oYrU/aCcgQIAAgfEExKvxZt7qidfGq8N5RayDhJ8ECBB4TUC88ib0KDArYE0HF7F6HL8zESBAgECvAuJVr5Pt71xb49VBRMQ6SPhJgMDoAuLV6G9Av+efHbAmAhGr3xfByQgQIECgHwHxqp9Z9n6SVPHq4CRiHST8JEBgVAHxatTJj3HuRQFrIhGxxngxnJIAAQIE2hQQr9qc24i7Th2vDoYi1kHCTwIERhMQr0ab+HjnXRywJiIRa7wXxYkJECBAIL6AeBV/Rnb4mkCueHXwFbEOEn4SIDCKgHg1yqTHPueqgDWRiVhjvzhOT4AAAQKxBMSrWPOwm9MCuePV4cki1kHCTwIEehcQr3qfsPMdBFYHrGkBEevA6CcBAgQIEKgnIF7Vs/fkZQKl4tVhVyLWQcJPAgR6FRCvep2scx0T2BSwpgVFrGOsPiNAgAABAmUExKsyzp6yXaB0vDrsWMQ6SPhJgEBvAuJVbxN1nksCmwPW9AAR6xKz7wkQIECAQHoB8Sq9qRXzCNSKV4fTiFgHCT8JEOhFQLzqZZLOsUQgScCaHihiLWF3LQECBAgQ2CYgXm3zc3c5gdrx6nBSEesg4ScBAq0LiFetT9D+1wokC1jTBkSstWNwHwECBAgQmC8gXs23cmVdgSjx6qAgYh0k/CRAoFUB8arVydl3CoGkAWvakIiVYizWIECAAAECxwXEq+MuPo0nEC1eHYRErIOEnwQItCYgXrU2MftNLZA8YE0bFLFSj8l6BAgQIEBg+r9f97+z++vf89L+xedf5EEgskDUeHUwE7EOEn4SINCKgHjVyqTsM6dAloA1bVjEyjk2axMgQIDAaALi1WgTb/e80ePVQVbEOkj4SYBAdAHxKvqE7K+UQLaANR1AxCo1Rs8hQIAAgZ4FxKuep9vX2VqJVwd1Eesg4ScBAlEFxKuok7GvGgJZA9Z0IBGrxlg9kwABAgR6ERCveplk/+doLV4dJiJiHST8JEAgmoB4FW0i9lNbIHvAmg4oYtUes+cTIECAQIsC4lWLUxtzz63Gq8O0RKyDhJ8ECEQREK+iTMI+IgkUCVjTgUWsSGO3FwIECBCILiBeRZ+Q/R0EWo9XN+fY768efPCF79nt9//88JmfBAgQqCEgXtVQ98wWBIoFrAlDxGrhlbBHAgQIEKgtIF7VnoDnzxXoJV4dzutfYh0k/CRAoJaAeFVL3nNbECgasCYQEauF18IeCRAgQKCWgHhVS95zlwr0Fq8O5xexDhJ+EiBQWkC8Ki3uea0JFA9YE5CI1dprYr8ECBAgUEJAvCqh7BkpBHqNVwcbEesg4ScBAqUExKtS0p7TskCVgDWBiVgtvzb2ToAAAQKpBcSr1KLWyyXQe7w6uIlYBwk/CRDILSBe5Ra2fi8C1QLWBChi9fIaOQcBAgQIbBEQr7boubekwCjx6mAqYh0k/CRAIJeAeJVL1ro9ClQNWBOoiNXja+VMBAgQIDBXQLyaK+W62gKjxauDt4h1kPCTAIHUAuJValHr9S5QPWBNwCJW76+Z8xEgQIDAMQHx6piKzyIKjBqvDrMQsQ4SfhIgkEpAvEolaZ2RBEIErAlcxBrptXNWAgQIEBCvvAOtCIwerw5zErEOEn4SILBVQLzaKuj+UQXCBKxpACLWqK+hcxMgQGAsAfFqrHm3fFrx6u70RKy7Hv4iQGC5gHi13MwdBA4CoQLWtCkR6zAaPwkQIECgRwHxqsep9nkm8er4XEWs4y4+JUDgsoB4ddnIFQTOCYQLWNNmRaxzI/MdAQIECLQqMMWrBz/43S/tX3z+xVbPYN9jCIhX5+f8WMT6Z+ev9C0BAgReExCvvAkEtguEDFjTsUSs7cO1AgECBAjEETjEq6t3vE28ijMWOzkiIF4dQTny0aOI9b27/V7EOuLjIwIEbgXEq1sLvxHYIhA2YE2HErG2jNa9BAgQIBBFQLyKMgn7uCQgXl0Suvu9iHXXw18ECDwpIF49aeITAmsFQges6VAi1trRuo8AAQIEIgiIVxGmYA9zBMSrOUpPXiNiPWniEwIEXhO4jlc/sXvzs+/bf9Wnf5sJAQLbBcIHrOmIItb2QVuBAAECBMoLiFflzT1xnYB4tc7tcJeIdZDwkwCBg8CjePV+8eog4ieB7QJNBKzpmCLW9mFbgQABAgTKCYhX5aw9aZuAeLXN73C3iHWQ8JMAAfHKO0Agj0AzAWs6voiV5yWwKgECBAikFRCv0npaLZ+AeJXWVsRK62k1Ai0KiFctTs2eWxFoKmBNqCJWK6+WfRIgQGBMAfFqzLm3eGrxKs/URKw8rlYl0IKAeNXClOyxZYHmAtaELWK1/MrZOwECBPoVEK/6nW1vJ3sYrx48eM/+A2//2d7OFuE8IlaEKdgDgbIC4lVZb08bU6DJgDWNSsQa84V1agIECEQVEK+iTsa+7gvcxKsPvvBz97/zdzoBESudpZUIRBcQr6JPyP56EWg2YE0DELF6eQ2dgwABAm0LiFdtz2+k3YtXZactYpX19jQCNQTEqxrqnjmqQNMBaxqaiDXqq+vcBAgQiCEgXsWYg11cFhCvLhvluELEyqFqTQIxBMSrGHOwi3EEmg9Y06hErHFeWCclQIBAJAHxKtI07OWcgHh1Tif/dyJWfmNPIFBaQLwqLe55BHa7LgLWNEgRy+tMgAABAiUFxKuS2p61RUC82qKX7l4RK52llQjUFhCvak/A80cV6CZgTQMUsUZ9jZ2bAAECZQWu49XnHvzgd7909Y63vVj2yZ5GYJmAeLXMK/fVIlZuYesTyC8gXuU39gQCpwS6CljTIUWsU6P2OQECBAikEHgUrz4hXqXQtEZOAfEqp+76tUWs9XbuJFBbQLyqPQHPH12gu4A1DVTEGv21dn4CBAjkERCv8rhaNb2AeJXeNOWKIlZKTWsRKCMgXpVx9hQC5wS6DFjTgUWsc2P3HQECBAgsFRCvloq5vpaAeFVLftlzRaxlXq4mUFNAvKqp79kEbgW6DVjTEUWs20H7jQABAgTWC4hX6+3cWVZAvCrrvfVpItZWQfcTyC/wMF696Y3v23/Vp387/9M8gQCBcwJdB6zp4CLWufH7jgABAgQuCYhXl4R8H0VAvIoyiWX7ELGWebmaQEmBm3j11Z96peRzPYsAgeMC3Qes6dgi1vHh+5QAAQIEzguIV+d9fBtHQLyKM4s1OxGx1qi5h0BeAfEqr6/VCawRGCJgTTAi1prXwz0ECBAYV0C8Gnf2rZ1cvGptYsf3K2Idd/EpgRoC4lUNdc8kcFlgmIA1UYhYl18IVxAgQIDA9H9f7D/34Ae/+xNX73jbizwIRBa4jh6f3j948J79B1/4ucj7tLd5AiLWPCdXEcgpIF7l1LU2gW0CQwWsiUrE2vbCuJsAAQK9C4hXvU+4n/M9jFf7/TeJV/3MdDqJiNXXPJ2mLQHxqq152e14AsMFrGnEItZ4L7oTEyBAYI6AeDVHyTURBMSrCFPItwcRK5+tlQmcEhCvTsn4nEAcgSED1sQvYsV5Ce2EAAECEQTEqwhTsIc5AuLVHKX2rxGx2p+hE7QjIF61Mys7HVtg2IA1jV3EGvvld3oCBAgcBMSrg4Sf0QXEq+gTSrs/ESutp9UIHBMQr46p+IxATIGhA9Y0EhEr5otpVwQIECglIF6VkvacrQLi1VbBNu8Xsdqcm123ISBetTEnuyRwEBg+YE0QItbhdfCTAAECYwmIV2PNu+XTilctT2/73kWs7YZWIHBfQLy6L+JvAvEFBKxHMxKx4r+sdkiAAIGUAuJVSk1r5RQQr3LqtrO2iNXOrOw0voB4FX9GdkjgmICA9ZiKiPUYhl8JECDQsYB41fFwOzuaeNXZQDceR8TaCOh2AtcC4pXXgEC7AgLWvdmJWPdA/EmAAIHOBMSrzgba8XHEq46Hu+FoItYGPLcOLyBeDf8KAGhcQMA6MkAR6wiKjwgQINCBgHjVwRAHOYJ4NcigVx5TxFoJ57ahBcSrocfv8J0ICFgnBilinYDxMQECBBoVEK8aHdyA2xavBhz6iiOLWCvQ3DKsgHg17OgdvDMBAevMQEWsMzi+IkCAQEMC4lVDwxp8q+LV4C/AwuOLWAvBXD6kgHg15NgdulMBAevCYEWsC0C+JkCAQHAB8Sr4gGzvRkC8uqHwywKBm4i12//TBbe5lMAQAuLVEGN2yIEEBKwZwxaxZiC5hAABAgEFxKuAQ7GlowLi1VEWH84UeBixPvTC913/71cTsWaauax/AfGq/xk74XgCAtbMmYtYM6FcRoAAgSAC4lWQQdjGRQHx6iKRC2YIiFgzkFwyjIB4NcyoHXQwAQFrwcBFrAVYLiVAgEBFAfGqIr5HLxIQrxZxufiCgIh1AcjXQwiIV0OM2SEHFRCwFg5exFoI5nICBAgUFhCvCoN73GoB8Wo1nRvPCIhYZ3B81b2AeNX9iB1wcAEBa8ULIGKtQHMLAQIECgiIVwWQPSKJgHiVhNEiJwRErBMwPu5aQLzqerwOR+ChgIC18kUQsVbCuY0AAQKZBMSrTLCWTS4gXiUnteARgSliPfXhF7/Xf7D7ERwfdScgXnU3UgcicFRAwDrKMu9DEWuek6sIECCQW0C8yi1s/VQC4lUqSevMFRCx5kq5rlUB8arVydk3geUCAtZyszt3iFh3OPxBgACB4gJTvNr/wHe+dPWOt71Y/OEeSGCBgHi1AMulSQVErKScFgskIF4FGoatECggIGAlQBaxEiBaggABAisEDvFq9863v7DidrcQKCYgXhWj9qATAiLWCRgfNysgXjU7OhsnsFpAwFpNd/dGEeuuh78IECCQW0C8yi1s/VQC4lUqSetsFRCxtgq6P4qAeBVlEvZBoKyAgJXQW8RKiGkpAgQInBEQr87g+CqUgHgVahw2cy0gYnkNWhcQr1qfoP0TWC8gYK23O3qniHWUxYcECBBIJiBeJaO0UGYB8SozsOVXC4hYq+ncWFlAvKo8AI8nUFlAwMowABErA6olCRAgcC0gXnkNWhEQr1qZ1Lj7FLHGnX2rJxevWp2cfRNIJyBgpbO8s5KIdYfDHwQIENgsIF5tJrRAIQHxqhC0x2wWELE2E1qgkMB+t/vx3Zve+L79V3/qlUKP9BgCBAIKCFgZhyJiZcS1NAECQwmIV0ONu+nDildNj2/IzYtYQ469qUM/jFdf8sb3i1dNjc1mCWQRELCysN4uKmLdWviNAAECawTEqzVq7qkhIF7VUPfMFAIiVgpFa+QQEK9yqFqTQLsCAlaB2YlYBZA9ggCBLgXEqy7H2uWhxKsuxzrUoUSsocbdxGHFqybGZJMEigoIWIW4RaxC0B5DgEA3AuJVN6Ps/iDiVfcjHuaAItYwow5/UPEq/IhskEAVAQGrILuIVRDbowgQaFpAvGp6fENtXrwaatxDHFbEGmLMoQ8pXoUej80RqCogYBXmF7EKg3scAQLNCYhXzY1s2A2LV8OOvvuDi1jdjzjsAcWrsKOxMQIhBASsCmMQsSqgeyQBAk0IiFdNjMkmrwXEK69B7wIiVu8Tjnc+8SreTOyIQDQBAavSRESsSvAeS4BAWAHxKuxobOyegHh1D8Sf3QqIWN2ONtzBxKtwI7EhAiEFBKyKYxGxKuJ7NAECoQTEq1DjsJkzAuLVGRxfdSkgYnU51lCHEq9CjcNmCIQWELAqj0fEqjwAjydAoLqAeFV9BDYwU0C8mgnlsu4ERKzuRhrmQOJVmFHYCIEmBASsAGMSsQIMwRYIEKgiIF5VYffQFQLi1Qo0t3QlIGJ1Nc4QhxGvQozBJgg0JSBgBRmXiBVkELZBgEAxAfGqGLUHbRQQrzYCur0bARGrm1FWP4h4VX0ENkCgSQEBK9DYRKxAw7AVAgSyCohXWXktnlDgYby62r1n/8EXfi7hspYi0KyAiNXs6MJsXLwKMwobIdCcgIAVbGQiVrCB2A4BAskFxKvkpBbMJHATrz784s9neoRlCTQpIGI1ObYQmxavQozBJgg0KyBgBRydiBVwKLZEgEASAfEqCaNFCgiIVwWQPaJpARGr6fFV2bx4VYXdQwl0JSBgBR2niBV0MLZFgMBqAfFqNZ0bCwuIV4XBPa5ZARGr2dEV37h4VZzcAwl0KSBgBR6riBV4OLZGgMAiAfFqEZeLKwqIVxXxPbpJARGrybEV3bR4VZTbwwh0LSBgBR+viBV8QLZHgMBFAfHqIpELggiIV0EGYRvNCYhYzY2s2IbFq2LUHkRgCAEBq4Exi1gNDMkWCRA4KiBeHWXxYUAB8SrgUGypKQERq6lxFdmseFWE2UMIDCUgYDUybhGrkUHZJgECNwLi1Q2FX4ILiFfBB2R7zQiIWM2MKvtGxavsxB5AYEgBAauhsYtYDQ3LVgkMLiBeDf4CNHR88aqhYdlqEwIPI9Z+90+a2KxNZhEQr7KwWpQAgWsBAaux10DEamxgtktgQAHxasChN3pk8arRwdl2eIGnPvSO79uJWOHnlGOD4lUOVWsSIHAQELAOEg39FLEaGpatEhhMQLwabOANH1e8anh4tt6EgIjVxJiSblK8SsppMQIEjggIWEdQWvhIxGphSvZIYCwB8Wqsebd8WvGq5enZe0sCIlZL09q2V/Fqm5+7CRCYJyBgzXMKeZWIFXIsNkVgSAHxasixN3lo8arJsdl0wwIiVsPDm7l18WomlMsIENgsIGBtJqy7gIhV19/TCRDYXf/HnOw/t/+B73xp9863v8CDQGQB8SrydOytZwERq9/pilf9ztbJCEQUELAiTmXhnkSshWAuJ0AgmYB4lYzSQpkFxKvMwJYncEFAxLoA1ODX4lWDQ7NlAo0LCFiND/CwfRHrIOEnAQKlBMSrUtKes1VAvNoq6H4CaQRErDSOEVYRryJMwR4IjCcgYHU0cxGro2E6CoHgAuJV8AHZ3o2AeHVD4RcCIQRErBBj2LQJ8WoTn5sJENggIGBtwIt4q4gVcSr2RKAvAfGqr3n2fBrxqufpOlvLAiJWu9MTr9qdnZ0T6EFAwOphivfOIGLdA/EnAQLJBMSrZJQWyiwgXmUGtjyBjQIi1kbACreLVxXQPZIAgTsCAtYdjn7+ELH6maWTEIgiIF5FmYR9XBIQry4J+Z5ADAERK8Yc5uxCvJqj5BoCBHILCFi5hSuuL2JVxPdoAp0JiFedDbTj44hXHQ/X0boUELHij1W8ij8jOyQwioCA1fmkRazOB+x4BAoIiFcFkD0iiYB4lYTRIgSKC4hYxclnP1C8mk3lQgIECggIWAWQaz9CxKo9Ac8n0K6AeNXu7EbbuXg12sSdtzcBESveRMWreDOxIwKjCwhYg7wBItYgg3ZMAgkFxKuEmJbKKiBeZeW1OIFiAiJWMeqLDxKvLhK5gACBCgICVgX0Wo8UsWrJey6B9gTEq/ZmNuqOxatRJ+/cvQqIWPUnK17Vn4EdECBwXEDAOu7S7aciVrejdTACyQRei1ff9dLunW9/IdmiFiKQQUC8yoBqSQIBBESsekMQr+rZezIBApcFBKzLRt1dIWJ1N1IHIpBM4DZefZ14lUzVQjkExKscqtYkEEdAxCo/C/GqvLknEiCwTEDAWubVzdUiVjejdBACyQTEq2SUFsosIF5lBrY8gSACIla5QYhX5aw9iQCB9QIC1nq75u8UsZofoQMQSCYgXiWjtFBmAfEqM7DlCQQTELHyD0S8ym/sCQQIpBEQsNI4NruKiNXs6GycQDIB8SoZpYUyC4hXmYEtTyCogIiVbzDiVT5bKxMgkF5AwEpv2tyKIlZzI7NhAskExKtklBbKLCBeZQa2PIHgAiJW+gGJV+lNrUiAQF4BASuvbzOri1jNjMpGCSQTEK+SUVoos4B4lRnY8gQaERCx0g1KvEpnaSUCBMoJCFjlrMM/ScQKPyIbJJBMQLxKRmmhzALiVWZgyxNoTEDE2j4w8Wq7oRUIEKgjIGDVcQ/7VBEr7GhsjEAyAfEqGaWFMguIV5mBLU+gUQERa/3gruPVx3df8sb377/6U6+sX8WdBAgQqCMgYNVxD/1UESv0eGyOwCYB8WoTn5sLCohXBbE9ikCDAiLW8qE9ild/UbxabucOAgRiCAhYMeYQbhciVriR2BCBzQLi1WZCCxQSEK8KQXsMgcYFRKz5AxSv5lu5kgCBuAICVtzZVN+ZiFV9BDZAIJmAeJWM0kKZBcSrzMCWJ9CZgIh1eaDi1WUjVxAg0IaAgNXGnKrtUsSqRu/BBJIJiFfJKC2UWUC8ygxseQKdCohYpwcrXp228Q0BAu0JCFjtzaz4jkWs4uQeSCCZgHiVjNJCmQWu49Wn9le79+w//OLPZ36U5QkQ6FBAxHpyqOLVkyY+IUCgbQEBq+35Fdu9iFWM2oMIJBMQr5JRWiizwKN49U3iVWZoyxPoXEDEuh2weHVr4TcCBPoRELD6mWX2k4hY2Yk9gEAyAfEqGaWFMguIV5mBLU9gMAERa7cTrwZ76R2XwEACAtZAw05xVBErhaI1COQVEK/y+lo9nYB4lc7SSgQI3AqMHLHEq9v3wG8ECPQnIGD1N9PsJxKxshN7AIHVAuLVajo3FhYQrwqDexyBwQRei1gP/vFIxxavRpq2sxIYU0DAGnPum08tYm0mtACB5ALiVXJSC2YSEK8ywVqWAIE7Ak996IXv3+3HiFji1Z3R+4MAgU4FBKxOB1viWCJWCWXPIDBPQLya5+Sq+gLiVf0Z2AGBkQRGiFji1UhvtLMSGFtAwBp7/ptPL2JtJrQAgc0C4tVmQgsUEhCvCkF7DAECdwR6jlji1Z1R+4MAgc4FBKzOB1zieCJWCWXPIHBcQLw67uLTeALiVbyZ2BGBkQR6jFji1UhvsLMSIDAJCFjegyQCIlYSRosQWCQgXi3icnFFAfGqIr5HEyBwI9BTxBKvbsbqFwIEBhIQsAYadu6jili5ha1P4FZAvLq18FtsAfEq9nzsjsBoAj1ELPFqtLfWeQkQOAgIWAcJP5MIiFhJGC1C4KyAeHWWx5eBBMSrQMOwFQIEbgRajlji1c0Y/UKAwIACAtaAQ899ZBErt7D1RxYQr0aefltnF6/ampfdEhhNoMWIJV6N9pY6LwEC9wUErPsi/k4iIGIlYbQIgTsC4tUdDn8EFhCvAg/H1ggQuBFoKWKJVzdj8wsBAgMLCFgDDz/30UWs3MLWH0lAvBpp2m2fVbxqe352T2A0gRYilng12lvpvAQInBIQsE7J+DyJgIiVhNEigwuIV4O/AA0dX7xqaFi2SoDAjUDkiCVe3YzJLwQIENgJWF6C7AIiVnZiD+hYQLzqeLidHe1hvHrq6ffsP/ziz3d2NMchQGAAgYgRS7wa4MVzRAIEFgkIWIu4XLxWQMRaK+e+kQXEq5Gn39bZb+LVB57/hbZ2brcECBC4FYgUscSr27n4jQABAgcBAesg4Wd2ARErO7EHdCQgXnU0zM6PIl51PmDHIzCYQISIJV4N9tI5LgECswUErNlULkwhIGKlULRG7wLiVe8T7ud84lU/s3QSAgRuBWpGLPHqdg5+I0CAwH0BAeu+iL+zC4hY2Yk9oGEB8arh4Q22dfFqsIE7LoHBBGpELPFqsJfMcQkQWCwgYC0mc0MKARErhaI1ehMQr3qbaL/nEa/6na2TESBwK1AyYolXt+5+I0CAwCkBAeuUjM+zC4hY2Yk9oCEB8aqhYQ2+VfFq8BfA8QkMJlAiYolXg71UjkuAwGoBAWs1nRtTCIhYKRSt0bqAeNX6BMfZv3g1zqydlACBW4GcEethvHrjH3j//qs/9crtE/1GgAABAscEBKxjKj4rKiBiFeX2sGAC4lWwgdjOSQHx6iSNLwgQGEAgR8S6iVfP/+pnByB0RAIECGwWELA2E1oghYCIlULRGq0JiFetTWzc/YpX487eyQkQuBVIGbHEq1tXvxEgQGCugIA1V8p12QVErOzEHhBIQLwKNAxbOSsgXp3l8SUBAoMJpIhY4tVgL43jEiCQTEDASkZpoRQCIlYKRWtEFxCvok/I/g4C4tVBwk8CBAjcCmyJWOLVraPfCBAgsFRAwFoq5vrsAiJWdmIPqCggXlXE9+hFAuLVIi4XEyAwmMCaiCVeDfaSOC4BAskFBKzkpBZMISBipVC0RjQB8SraROznlIB4dUrG5wQIELgVWBKxxKtbN78RIEBgrYCAtVbOfdkFRKzsxB5QUOBhvPr+73xp986ve6HgYz2KwGIB8WoxmRsIEBhYYE7EEq8GfkEcnQCBpAICVlJOi6UWELFSi1qvhsBNvPr6t4tXNQbgmbMFxKvZVC4kQIDAjcC5iCVe3TD5hQABApsFBKzNhBbILSBi5Ra2fk4B8SqnrrVTCohXKTWtRYDAaALHIpZ4Ndpb4LwECOQWELByC1s/iYCIlYTRIqUF9g9+dz/9jw36l1el5T1voYB4tRDM5QQIEDgi8HjEEq+OAPmIAAECGwWu/3ur/yLQjsDV7l1v/fi3/71/8PLr3/JH29m1nY4q8Kaf/alf/8zzX//cqOd37jYEvuxLPv+73/j8575v/4Hnf6GNHdslAQIEYgtc/fu/9dd2b/mnP7p//lc/G3undkeAAIG2BASstuZlt9cCX/6mq6/cfWH3setf/zgQAgQIEFgvsN/vfvX6/3zjJ1/Z/+/1q7iTAAECBAgQIECAQH4BASu/sSdkEBCxMqBakgCBoQTEq6HG7bAECBAgQIAAgeYFBKzmRzjuAUSscWfv5AQIbBMQr7b5uZsAAQIECBAgQKC8gIBV3twTEwqIWAkxLUWAwBAC4tUQY3ZIAgQIECBAgEB3AgJWdyMd70Ai1ngzd2ICBNYJiFfr3NxFgAABAgQIECBQX0DAqj8DO0ggIGIlQLQEAQJdC4hXXY/X4QgQIECAAAEC3QsIWN2PeJwDiljjzNpJCRBYJiBeLfNyNQECBAgQIECAQDwBASveTOxog4CItQHPrQQIdCkgXnU5VociQIAAAQIECAwnIGANN/L+Dyxi9T9jJyRAYJ6AeDXPyVUECBAgQIAAAQLxBQSs+DOywxUCItYKNLcQINCVgHjV1TgdhgABAgQIECAwvICANfwr0C+AiNXvbJ2MAIHzAuLVeR/fEiBAgAABAgQItCcgYLU3MzteICBiLcByKQECXQiIV12M0SEIECBAgAABAgTuCQhY90D82Z+AiNXfTJ2IAIHjAuLVcRefEiBAgAABAgQItC8gYLU/QyeYISBizUByCQECTQuIV02Pz+YJECBAgAABAgQuCAhYF4B83Y+AiNXPLJ2EAIG7AuLVXQ9/ESBAgAABAgQI9CcgYPU3Uyc6IyBincHxFQECTQqIV02OzaYJECBAgAABAgQWCghYC8Fc3r6AiNX+DJ2AAIHXBMQrbwIBAgQIECBAgMAoAgLWKJN2zjsCItYdDn8QINCgwBSvdvvde15+Zf9Sg9u3ZQIECBAgQIAAAQKLBASsRVwu7klAxOppms5CYCwB8WqseTstAQIECBAgQIDA7vr/79Z/ERhYQMQaePiOTqBRAfGq0cHZNgECBAgQIECAwCaBB5vudjOBxgV+5TP7X9o9vXv39TF+pfGj2D4BAgMIiFcDDNkRCRAgQIAAAQIEjgr4F1hHWXw4msCjf4n1Y9fn/vLRzu68BAi0ISBetTEnuyRAgAABAgQIEMgjIGDlcbVqgwIiVoNDs2UCgwiIV4MM2jEJECBAgAABAgROCghYJ2l8MaLAW9509SevvrD72PXZ/UusEV8AZyYQUEC8CjgUWyJAgAABAgQIECguIGAVJ/fA6AIiVvQJ2R+BcQTEq3Fm7aQECBAgQIAAAQLnBQSs8z6+HVRAxBp08I5NIJCAeBVoGLZCgAABAgQIECBQXUDAqj4CG4gqIGJFnYx9EehfQLzqf8ZOSIAAAQIECBAgsExAwFrm5erBBESswQbuuAQCCIhXAYZgCwQIECBAgAABAuEEBKxwI7GhaAIiVrSJ2A+BfgXEq35n62QECBAgQIAAAQLbBASsbX7uHkRAxBpk0I5JoKKAeFUR36MJECBAgAABAgTCCwhY4Udkg1EERKwok7APAv0JiFf9zdSJCBAgQIAAAQIE0goIWGk9rda5gIjV+YAdj0AFAfGqArpHEiBAgAABAgQINCcgYDU3MhuuLSBi1Z6A5xPoR0C86meWTkKAAAECBAgQIJBXQMDK62v1TgVErE4H61gECgqIVwWxPYoAAQIECBAgQKB5AQGr+RE6QC0BEauWvOcSaF9AvGp/hk5AgAABAgQIECBQVkDAKuvtaZ0JiFidDdRxCBQQEK8KIHsEAQIECBAgQIBAdwICVncjdaDSAiJWaXHPI9CugHjV7uzsnAABAgQIECBAoK6AgFXX39M7ERCxOhmkYxDIKHAdr35tt99948uv7F/K+BhLEyBAgAABAgQIEOhSQMDqcqwOVUNAxKqh7pkE2hAQr9qYk10SIECAAAECBAjEFRCw4s7GzhoUELEaHJotE8gsIF5lBrY8AQIECBAgQIDAEAIC1hBjdsiSAiJWSW3PIhBbQLyKPR+7I0CAAAECBAgQaEdAwGpnVnbakICI1dCwbJVAJgHxKhOsZQkQIECAAAECBIYUELCGHLtDlxAQsUooewaBmALiVcy52BUBAgQIECBAgEC7AgJWu7Oz8wYERKwGhmSLBBILiFeJQS1HgAABAgQIECBA4FpAwPIaEMgsIGJlBrY8gUAC4lWgYdgKAQIECBAgQIBAVwICVlfjdJioAiJW1MnYF4F0AuJVOksrESBAgAABAgQIELgvIGDdF/E3gUwCIlYmWMsSCCAgXgUYgi0QIECAAAECBAh0LSBgdT1eh4smIGJFm4j9ENguIF5tN7QCAQIECBAgQIAAgUsCAtYlId8TSCwgYiUGtRyBigLiVUV8jyZAgAABAgQIEBhKQMAaatwOG0VAxIoyCfsgsF5AvFpv504CBAgQIECAAAECSwUErKVirieQSEDESgRpGQIVBMSrCugeSYAAAQIECBAgMLSAgDX0+B2+toCIVXsCnk9guYB4tdzMHQQIECBAgAABAgS2CghYWwXdT2CjgIi1EdDtBAoKiFcFsT2KAAECBAgQIECAwGMCAtZjGH4lUEtAxKol77kE5guIV/OtXEmAAAECBAgQIEAgtYCAlVrUegRWCohYK+HcRqCAgHhVANkjCBAgQIAAAQIECJwRELDO4PiKQGkBEau0uOcRuCwgXl02cgUBAgQIECBAgACB3AICVm5h6xNYKCBiLQRzOYGMAuJVRlxLEyBAgAABAgQIEFggIGAtwHIpgVICIlYpac8hcFpAvDpt4xsCBAgQIECAAAECpQUErNLinkdgpoCINRPKZQQyCIhXGVAtSYAAAQIECBAgQGCDgIC1Ac+tBHILiFi5ha1P4EkB8epJE58QIECAAAECBAgQqC0gYNWegOcTuCAgYl0A8jWBhALiVUJMSxEgQIAAAQIECBBIKCBgJcS0FIFcAiJWLlnrErgVEK9uLfxGgAABAgQIECBAIJqAgBVtIvZD4ISAiHUCxscEEgiIVwkQLUGAAAECBAgQIEAgo4CAlRHX0gRSC4hYqUWtR2C3E6+8BQQIECBAgAABAgTiCwhY8WdkhwTuCIhYdzj8QWCTgHi1ic/NBAgQIECAAAECBIoJCFjFqD2IQDoBESudpZXGFRCvxp29kxMgQIAAAQIECLQnIGC1NzM7JvBQQMTyIhBYLyBerbdzJwECBAgQIECAAIEaAgJWDXXPJJBIQMRKBGmZoQTEq6HG7bAECBAgQIAAAQKdCAhYnQzSMcYVELHGnb2TLxcQr5abuYMAAQIECBAgQIBABAEBK8IU7IHARgERayOg24cQEK+GGLNDEiBAgAABAgQIdCogYHU6WMcaT0DEGm/mTjxfQLyab+VKAgQIECBAgAABAhEFHkTclD0RILBc4OXP7P/v/undu6/v/JXld7uDQL8Cj+LVe15+Zf9Sv6d0MgIECBAgQIAAAQJ9C/gXWH3P1+kGFPAvsQYcuiOfFHgsXn3i5EW+IECAAAECBAgQIEAgvICAFX5ENkhguYCItdzMHf0JiFf9zdSJCBAgQIAAAQIExhUQsMadvZN3LiBidT5gxzsrIF6d5fElAQIECBAgQIAAgeYEBKzmRmbDBOYLiFjzrVzZj4B41c8snYQAAQIECBAgQIDAQUDAOkj4SaBTARGr08E61lEB8eooiw8JECBAgAABAgQINC8gYDU/QgcgcFlAxLps5Ir2BcSr9mfoBAQIECBAgAABAgROCQhYp2R8TqAzARGrs4E6zh0B8eoOhz8IECBAgAABAgQIdCcgYHU3UgcicFpAxDpt45t2BcSrdmdn5wQIECBAgAABAgTmCghYc6VcR6ATARGrk0E6xkMB8cqLQIAAAQIECBAgQGAMAQFrjDk7JYE7AiLWHQ5/NCogXjU6ONsmQIAAAQIECBAgsEJAwFqB5hYCPQiIWD1McdwziFfjzt7JCRAgQIAAAQIExhQQsMacu1MTeCggYnkRWhQQr1qcmj0TIECAAAECBAgQ2CbwYNvt7iZAoGWBlz+z/7/7p3fvvj7Dyy2fw97HERCvxpm1kxIgQIAAAQIECBB4XMC/wHpcw+8EBhV49C+xfuz6+G8ZlMCxGxAQrxoYki0SIECAAAECBAgQyCQgYGWCtSyB1gRErNYmNtZ+xaux5u20BAgQIECAAAECBO4LCFj3RfxNYGCBr3jT1Z949Qu7j10T+JdYA78H0Y4uXkWbiP0QIECAAAECBAgQKC8gYJU390QCoQVErNDjGW5z4tVwI3dgAgQIECBAgAABAkcFBKyjLD4kMLaAiDX2/KOcXryKMgn7IECAAAECBAgQIFBfQMCqPwM7IBBSQMQKOZZhNiVeDTNqByVAgAABAgQIECAwS0DAmsXkIgJjCohYY8699qnFq9oT8HwCBAgQIECAAAEC8QQErHgzsSMCoQRErFDj6H4z4lX3I3ZAAgQIECBAgAABAqsEBKxVbG4iMJaAiDXWvGudVryqJe+5BAgQIECAAAECBOILCFjxZ2SHBEIIiFghxtDtJsSrbkfrYAQIECBAgAABAgSSCAhYSRgtQmAMARFrjDmXPqV4VVrc8wgQIECAAAECBAi0JyBgtTczOyZQVUDEqsrf3cPFq+5G6kAECBAgQIAAAQIEsggIWFlYLUqgbwERq+/5ljqdeFVK2nMIECBAgAABAgQItC8gYLU/QycgUEVAxKrC3s1DxatuRukgBAgQIECAAAECBIoICFhFmD2EQJ8CIlafc819KvEqt7D1CRAgQIAAAQIECPQnIGD1N1MnIlBUQMQqyt38w8Sr5kfoAAQIECBAgAABAgSqCAhYVdg9lEBfAiJWX/PMdRrxKpesdQkQIECAAAECBAj0LyBg9T9jJyRQREDEKsLc7EPEq2ZHZ+MECBAgQIAAAQIEQggIWCHGYBME+hAQsfqYY+pTiFepRa1HgAABAgQIECBAYDwBAWu8mTsxgawCIlZW3uYWF6+aG5kNEyBAgAABAgQIEAgpIGCFHItNEWhbQMRqe36pdi9epZK0DgECBAgQIECAAAECApZ3gACBLAIiVhbWZhYVr5oZlY0SIECAAAECBAgQaEJAwGpiTDZJoE0BEavNuW3dtXi1VdD9BAgQIECAAAECBAjcFxCw7ov4mwCBpAIiVlLO8IuJV+FHZIMECBAgQIAAAQIEmhQQsJocm00TaEtAxGprXmt3K16tlXMfAQIECBAgQIAAAQKXBASsS0K+J0AgiYCIlYQx7CLiVdjR2BgBAgQIECBAgACBLgQErC7G6BAE2hAQsdqY09JdildLxVxPgAABAgQIECBAgMBSAQFrqZjrCRDYJCBibeILd7N4FW4kNkSAAAECBAgQIECgSwEBq8uxOhSB2AIiVuz5zN2deDVXynUECBAgQIAAAQIECGwVELC2CrqfAIFVAiLWKrYwN4lXYUZhIwQIECBAgAABAgSGEBCwhhizQxKIKSBixZzLpV2JV5eEfE+AAAECBAgQIECAQGoBASu1qPUIEFgkIGIt4qp/8X73qeuA9Y0vv7L/RP3N2AEBAgQIECBAgAABAqMICFijTNo5CQQWELECD+fxrYlXj2v4nQABAgQIECBAgACBggICVkFsjyJA4LSAiHXaJsQ34lWIMdgEAQIECBAgQIAAgVEFBKxRJ+/cBAIKiFgBhzJtSbwKOhjbIkCAAAECBAgQIDCOgIA1zqydlEATAiJWsDGJV8EGYjsECBAgQIAAAQIExhQQsMacu1MTCC0gYgUZj3gVZBC2QYAAAQIECBAgQICAgOUdIEAgpICIVXks4lXlAXg8AQIECBAgQIAAAQKPCwhYj2v4nQCBUAIiVqVxiFeV4D2WAAECBAgQIECAAIFTAgLWKRmfEyAQQkDEKjwG8aowuMcRIECAAAECBAgQIDBH4MGci1xDgACBWgKf/Mz+lx88vXv39fNfrrWHYZ57Ha9ev9+95+VX9p8Y5swOSoAAAQIECBAgQIBAEwL+BVYTY7JJAgT8S6zM78CjePVLr+x/IfOTLE+AAAECBAgQIECAAIHFAgLWYjI3ECBQS0DEyiQvXmWCtSwBAgQIECBAgAABAqkEBKxUktYhQKCIgIiVmFm8SgxqOQIECBAgQIAAAQIEcggIWDlUrUmAQFYBESsRr3iVCNIyBAgQIECAAAECBAjkFhCwcgtbnwCBLAIi1kZW8WojoNsJECBAgAABAgQIECgpIGCV1PYsAgSSCohYKznFq5VwbiNAgAABAgQIECBAoJaAgFVL3nMJEEgiIGItZBSvFoK5nAABAgQIECBAgACBCAICVoQp2AMBApsERKyZfOLVTCiXESBAgAABAgQIECAQTUDAijYR+yFAYJWAiHWBTby6AORrAgQIECBAgAABAgQiCwhYkadjbwQILBIQsU5wiVcnYHxMgAABAgQIECBAgEArAgJWK5OyTwIEZgmIWPeYxKt7IP4kQIAAAQIECBAgQKBFAQGrxanZMwECZwVErEc84tXZ98SXBAgQIECAAAECBAi0IyBgtTMrOyVAYIHA8BFLvFrwtriUAAECBAgQIECAAIHoAgJW9AnZHwECqwWGjVji1ep3xo0ECBAgQIAAAQIECMQUELBizsWuCBBIJDBcxBKvEr05liFAgAABAgQIECBAIJKAgBVpGvZCgEAWgWEilniV5f2xKAECBAgQIECAAAEC9QUErPozsAMCBAoIdB+xxKsCb5FHECBAgAABAgQIECBQS0DAqiXvuQQIFBfoNmKJV8XfJQ8kQIAAAQIECBAgQKCsgIBV1tvTCBCoLNBdxBKvKr9RHk+AAAECBAgQIECAQAkBAauEsmcQIBBKoJuIJV6Feq9shgABAgQIECBAgACBfAICVj5bKxMgEFig+YglXgV+u2yNAAECBAgQIECAAIHUAgJWalHrESDQjECzEUu8auYds1ECBAgQIECAAAECBNIICFhpHK1CgECjAs1FLPGq0TfNtgkQIECAAAECBAgQ2CIgYG3Rcy8BAl0ITBHr6gu7H7va7b4i9IHEq9DjsTkCBAgQIECAAAECBPIJPMi3tJUJECDQhsAnP7P/5Qev3737uuh/MuyOxauwo7ExAgQIECBAgAABAgTyC/gXWPmNPYEAgUYE3volV2999fO7j4X7l1jiVSNvkG0SIECAAAECBAgQIJBLQMDKJWtdAgSaFAgXscSrJt8jmyZAgAABAgQIECBAIK2AgJXW02oECHQgECZiiVcdvE2OQIAAAQIECBAgQIBACgEBK4WiNQgQ6E6gesQSr7p7pxyIAAECBAgQIECAAIH1AgLWejt3EiDQuUC1iCVedf5mOR4BAgQIECBAgAABAksFBKylYq4nQGAogeIRS7wa6v1yWAIECBAgQIAAAQIE5gkIWPOcXEWAwMACxSKWeDXwW+boBAgQIECAAAECBAicExCwzun4jgABAo8Eskcs8cq7RoAAAQIECBAgQIAAgZMCAtZJGl8QIEDgrkC2iCVe3YX2FwECBAgQIECAAAECBO4JCFj3QPxJgACBcwLJI5Z4dY7bdwQIECBAgAABAgQIEHgoIGB5EQgQILBQIFnEEq8WyrucAAECBAgQIECAAIFRBQSsUSfv3AQIbBLYHLHEq03+biZAgAABAgQIECBAYCwBAWuseTstAQIJBVZHLPEq4RQsRYAAAQIECBAgQIDACAIC1ghTdkYCBLIJLI5Y4lW2WViYAAECBAgQIECAAIF+BQSsfmfrZAQIFBKYHbHEq0IT8RgCBAgQIECAAAECBHoTELB6m6jzECBQReBixBKvqszFQwkQIECAAAECBAgQ6ENAwOpjjk5BgEAAgZMRS7wKMB1bIECAAAECBAgQIECgZQEBq+Xp2TsBAuEEnohY4lW4GdkQAQIECBAgQIAAAQIECBAgQGB4gSliveX3X/2/L3/26te+8o1XXzM8CAACBAgQIECAAAECBAgQIECAAIF4AlPEEq/izcWOCBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQJjCfx/6JJc9YV91YIAAAAASUVORK5CYII=\\\"></image>\\n            </g>\\n        </g>\\n    </g>\\n</svg>\"\nvar _Assets8adebf81a81a55248a107972d373b02d60a4d498 = \"\\x89PNG\\r\\n\\x1a\\n\\x00\\x00\\x00\\rIHDR\\x00\\x00\\x00\\xc0\\x00\\x00\\x00\\xc0\\b\\x06\\x00\\x00\\x00R\\xdcl\\a\\x00\\x00 \\x00IDATx\\x9c\\xed\\x9dy\\x94\\x14\\xd5\\xf9\\xbf_\\x90\\xdd%\\xe2\\x12\\x15ט\\xe8\\x80\\x11\\x03#\\x03\\x8a\\xe2\\xa0\\x11qCA\\x14\\x1c\\x16Q\\x83h\\\\\\x93\\x98\\x18\\xcdbT\\xdc\\x12\\xf3\\x8d\\x9a\\xc4\\x18\\x04\\xc1\\x1dD%\\xa0L\\xcf0+\\xb3/]U=\\x03\\xd3?\\x8d\\xc6h\\x04\\x11\\xa3FAv\\xa1\\x9f\\xdf\\x1f\\xb7{\\x86ef\\xfa\\xf6R]\\xd5\\xd3\\xf5\\x9e\\xf3\\x9e\\xe39\\xeatխ\\xcfs\\xebs\\xef}\\xef-\\x11/R\\x1e \\xdd\\xf1K\\x16\\x96\\xbc\\x8c)Kh\\x96,\\x16\\xcb~N_\\x97\\x17^\\xd8\\x1e\\x04\\xe4$\\fy\\x00K>\\u0092P8\\xd7`ȣ\\x982\\xc8\\xe9\\xeb\\xf3\\xc2\\v[\\x82\\xa0\\xf4\\u0094[\\xb0$\\x88);\\xb1\\x84\\xbdr'\\x96\\xfc\\x13Sn\\xa1V\\xfa:}\\xbd^x\\x91\\x94\\xa0\\\\\\xfa`\\xcai\\x98Rڎ\\xe8\\xdbOS\\xaa\\xf0\\xcbPʥ\\x8f\\xd3\\xd7\\xef\\x85\\x17q\\a\\x86dc\\xca\\x1cL٨-\\xfe6\\b\\xb6\\x10\\x909\\x182\\xc2\\xe9\\xfb\\xf0\\u008b\\x98\\x82f\\xf96\\x96<\\x8a)\\x1fu`wts'\\x96\\xacŔ'h\\x96o;}_^x\\xd1i\\xd0,\\xfb\\xd3 \\xa3\\xb0\\xa4E\\xa3\\x87\\ac\\u007f0\\x0eP\\xff\\x1c\\x1d\\x86 ~\\x19CP\\x0ep\\xfa>\\xbd\\xf0b\\x8f\\xa0\\\\z`ʅ\\x18\\xf2\\x1a\\x96\\xec\\x8a.\\xfe\\x1eP3\\x06J\\x9e\\x86\\xe2yPs\\x01\\x98\\xbd\\xa3C\\x10\\x90]X\\xb2\\x14K.\\\"(\\xbd\\x9c\\xbeo/\\xbc\\x10\\x9a\\xe5\\x18\\x02\\xf2<\\x96\\xfcWK\\xfc\\x8d'@韠\\xa0\\x16|-*\\vj\\xa1\\xf4Ih\\xf8\\xaeΛ \\x14\\xfe\\xadW\\xb0\\xe4x\\xa7\\xefߋ\\f\\r\\f\\xf9\\x16\\x96\\xfc\\bK\\xbeв;\\xfe\\x83\\xa1r\\x06\\x14ԃ/\\xd8A\\x9aPy-\\xf8\\x0fѵE_\\x13\\x90\\x99\\xac\\x92\\xfeN\\xb7\\x87\\x17\\x19\\x12\\x04\\xe4`L\\x99\\x8a%\\xc5Q{\\xfc\\x88\\xf0\\xab&B\\xf1K\\xe1\\x1e\\xbf#\\xf1G\\xb2\\x05\\x8a\\x16A\\xd5\\xd5\\xe0\\xef\\xaf\\x03\\xc2.,Y\\x89)\\xd7\\x12\\x90\\x83\\x9dn\\x1f/\\xbap`\\xca L)\\xc0\\x94\\rZ\\xb38\\xf5\\x83\\xa1x>\\xf8\\f\\r\\xe1\\xb7\\xf36(^\\x00u\\xc3tg\\x8c\\xbeƔB\\f\\xc9v\\xba\\x9d\\xbc\\xe8B\\x01\\xd2\\rK\\x0eǒ\\xd9:\\x1e\\u007f\\x97э\\xcf\\xca\\a\\xf0\\xf5\\x8a\\xdf\\xc4!\\xfa\\x0e\\xb2\\xec\\x01h<\\x02\\xcc\\xee: \\xec\\\" \\x8fa\\xc9\\xe1\\xdc'ݝn?/\\xd280\\xe4(,\\xb9\\rSV\\xe9\\x88\\u007f]ɱ\\xcc}\\xf8.\\xc6^\\xfc.7O\\xfd\\x8a\\x8f_\\xf9g\\x92 h\\x81\\x15>\\xa8\\xb8\\x11\\x1a\\a\\xe8\\x0e\\x94W\\xd1$?\\xa5V\\x8ev\\xba\\x1d\\xbdH\\xb3\\bWk^\\x86%~,\\xd9\\x1cMp\\xdf\\xf8{\\xb0\\xecoS\\x19?!\\xc0iglcP\\x0e\\f\\xca\\t1y\\xfcf>z)Y\\x10\\x04\\xc1\\xd7\\x04+\\x96A\\xcd80{ꀰ\\x05K\\x9a\\b\\xc8\\xe5\\x94K\\x0f\\xa7\\xdb\\xd5\\v\\x97\\a\\x86\\xf4Đ\\xa30\\xe5\\xd9\\xf0\\x9c{\\xa7\\x02\\xdb\\xde؋5E\\xc7s۬\\xd7¢\\xdf;C\\xdc:\\xfd+>}\\xf5\\x9d$B\\x10Β\\xa7\\xa0\\xf1\\x18=\\x10Խ\\xbc\\x8c%\\x030\\xa4\\xa7\\xd3\\xed\\xec\\x85\\v\\x83f\\xf9\\x0e\\x01y\\x90\\x80\\xac\\xd1\\x19t\\xbe\\xb7|\\x10\\x8f\\xde\\xf3\\u007f\\x9c1\\xfa\\xb3\\x0e\\xc4\\xdf\\x06\\xc1MS7\\xb0.ivh\\xb7,\\xa8\\x87\\x95wA\\xc3\\xc9z\\x03倬ǔ\\x87\\xf0K\\x96\\xd3\\xed\\xed\\x85K\\x82\\xa0\\xf4\\u0090\\x9b\\xb1\\xe4=,\\xd9\\x1eMD_\\xd7\\x1c\\xc8\\xdf\\x1f\\xbc\\x87\\x1f^\\xf8oN\\x1d\\xb1#\\x8a\\xf8\\xdb \\xb8z\\xc2fּl\\x03\\x04\\xbef(,\\x86\\x8a[UiEt\\x10\\xb6\\x13\\x90\\xf7\\xb1\\xe4g\\xdejr\\x06\\a\\xefIo\\f\\x19H@\\xca\\u0083\\xc6N\\xe7\\xf3CFo>\\xf0\\rf\\xd2U\\xf5\\x9a\\xa2\\xdf\\x17\\x82\\x9b\\xa7m\\xe0\\xd3Ev@\\x10\\u03a2EP\\u007f\\x1a\\x18}t\\xd6\\x0fBXR\\x8e)\\xa7ye\\xd7\\x19\\x14 ݱ\\xe4L,y\\x1aS\\xbe\\x8c\\xdac\\x9a\\xdd\\t\\xd5\\xe5P9\\xe7\\t.\\x18\\xbb!N\\xf1\\xb7Ap\\xe3\\x14\\x9b\\xecPkZP\\xfa{\\xa8\\xcbQ5G\\xd1\\xdf\\b_a\\xc9<,9\\x13\\xbcm\\x99]:@zbʃX\\xb2\\x16K\\xa3L\\xd98\\x80P\\xf9=T\\xfe\\xc5`̘\\xad\\t\\x8a\\xbf\\r\\x82\\xbc\\t\\x9bl\\x86`5\\x14V@\\xf9\\xbd\\xe0?Ho\\xed@\\x95]?\\x86Oz;\\xfd\\x9c\\xbcHr`H?\\x9ad,\\x01\\xf9w\\xf4\\x1e_\\xc0\\xe8\\a5c\\b\\x15T\\xf0\\xf6\\xfc\\u007fq\\xde\\x0f\\xb7'I\\xfcm\\x10\\xfcx\\xea\\x06\\xd6\\xdbi\\x87Z\\a\\xcau\\xaa\\xda\\xd4\\xd8_\\xb7\\xbeh=\\xa6\\\\H\\xb3\\xec\\xef\\xf4s\\xf3\\\"\\xc1\\xe0=\\xe9M@.& \\xafb\\xc9\\xd7\\xd1{\\xfc\\xbePs>\\x94\\xfe\\x85\\x90/@Փ\\x1fp\\xfe\\x98d\\x8b\\xbf\\r\\x82Yy\\x1b\\x93\\xb8X\\xd6Y\\x06T\\xe9u\\xf5\\x85\\n\\xee\\xe8\\x10l\\\" K\\xc2\\xeb\\a\\xde\\xf8 \\x1d\\x83*\\xe9\\x8f%/\\xa0J\\x87\\xa3?\\xf4\\xc6á\\xf4\\t(\\xa8%\\x94\\x1f\\xa4\\xea\\xc9\\x0f\\x183f\\x9bM\\xe2\\xdf\\xcd\\x0e]\\xb1\\x89O\\x16\\xa6\\x02\\x82\\xa0\\x9a6-}B\\xad\\x1f贉%\\x9f\\x13\\x90\\x17i\\x94#\\x9d~\\x9e^h\\x06\\x019\\x18K\\xae\\xc1\\x92\\xff\\xe9ٝoA\\xd5T\\xd5K\\xfa\\x82\\x84\\xf2\\x83\\xbc=\\xff_6\\xf6\\xfc\\xed\\xcc\\x0e\\xa5\\xca\\x0e\\xb5f\\x13T^\\xaf\\xee\\xdd\\xec\\xa67P\\x0e\\xc8L\\x02r0H7\\xa7\\x9f\\xb1\\x17\\xed\\x04\\xb5\\xd27\\\\\\xa6\\\\\\x81\\xc6|>ƁP=\\x11\\x8a\\x16\\x82oU\\xab\\xf8+\\x9f\\xfc\\x90\\xf3\\xceO\\x95\\xf8\\xdb \\xb8!o#kmY'\\xe8(W\\xab{\\xaf\\x9a\\f\\x86\\xd6@\\xf9\\x1b,\\xa9  \\xd7bH?\\xa7\\x9f\\xb7\\x17\\xbb\\x05\\xa6\\x9c\\x8e%\\xa5\\x98\\xf2\\x95V\\xaf_7,\\\\\\x9f\\xdf\\xd8*\\x88P~\\x90\\xca'>dL\\xcaz\\xfev\\xecЄ\\x14ڡ\\xd6\\xf4Cѫ\\xe1iS-[\\xb4\\x01K\\xaa\\xb1d\\x98\\xd3\\xcf=\\xa3\\x83Ų\\x1f\\x86\\x1c\\x86)\\xbf\\b?\\x94(\\xc2\\xdfO\\xed\\xb4ZyG\\xab\\xdd\\xd9]\\xfc\\xef\\xcc\\xff\\x17\\x17\\\\`\\xb7\\xe7\\x8f\\x0e\\xc1\\xadӿ\\xe2\\xd3E6\\xd4\\x0e\\xe9آ\\x95w\\x81\\xffP\\xd5V\\xd1;\\x92\\x8dXr/5\\xf2m\\xefX\\xc7\\x14\\a\\xef˷\\xb0\\xe4g\\x98\\xb2Zk0\\xe7?\\x14*oT%\\xc5{=\\xf8P~\\x90\\x95O|ȹI\\x9f\\xea\\x8c\\x1f\\x82Yy\\x1b\\xf9\\xcfK\\xef:\\x00A\\x10\\n\\x8bT[5\\x1e\\xa9;P~\\x1bK\\xeeĐÜ\\xd6EF\\x04\\x96\\\\\\x14\\xae\\xcfߌF\\t\\x03\\xd5\\x17Ê\\xe5\\xe0\\xb3\\xda\\x15\\u007f\\xe5\\x13\\x1f\\xa6p\\xc0\\xab\\x0f\\xc1\\xe4\\xf1\\x9b\\x1d\\xb0C\\x91\\xb4TgQ5Ag\\x90\\x1c\\n?\\x8b \\xa6LpZ\\x1f]2(\\x97\\x1e\\x04\\xe4\\x04L\\x99\\x8f%ۢ\\xbf\\x9e{@ñP\\xfa8\\xf8\\x9a\\xdb}ȡ\\xfc \\xff\\\\\\xf0\\x1e\\x17\\x8eu\\xda\\xf6t\\f\\xc1\\xed\\xd7|\\xc5\\u007f\\xed(\\xa5\\xd6\\xce\\xd5jڴ\\xe1D\\xdd\\xfd\\a;0e\\x01\\xf5r\\x92\\xb7\\xff IA\\x93\\x9c\\x1c._\\xf80\\xba\\xf0\\xbb\\xa9\\xd2\\xe0\\x95wA\\xe1\\xca\\x0e\\x1fl(?H\\xf9\\xe3\\x1f\\xf2Ô\\xcf\\xf6\\xc4\\x0e\\xc1MS6\\xf0\\xe1\\x8b\\x0e١V[T\\t忂\\x86,\\xddi\\xd35\\x04\\xe4\\xf7^\\xd9u\\x82\\x81\\x9a\\xcf\\xff'\\x96\\xec\\xd0\\xf2\\xa3\\x95\\xd3UipxZ\\xb3#\\xf1W<\\x91\\x0e\\xe2o\\x83`\\x92\\xa3v(\\x92\\xabU\\xdbV\\xceԛ-RGB\\xbe\\x8b)7:\\xad\\xa3\\xb4\\n\\x82ҋf\\x19\\x81\\xa5y\\x9a\\xb2\\xd9KMk\\x16-\\x8e\\xfa\\x10C\\xf9A\\xdeu\\xb5\\xed\\xe9\\x18\\x82;\\x1c\\xb7C\\xbb\\xe5\\x8ae\\xaa\\xcd\\r\\x8d\\xd3\\xecT\\xd6b\\xca\\x19^\\xa1]\\x94\\xc0\\x90\\x11\\xa82\\xe5Ϣ\\v\\xbf;\\xd4\\r\\x87\\xb2\\x87\\xa2\\x1c6\\x15\\xc9\\x16\\xd6/|\\x87\\xbbg\\xfe\\x8fi\\x137ٓW~n\\xdfߞ\\xb8\\x89y\\xf7|\\xc27\\xffhr\\x1e\\x00_P\\xb5y\\xd9\\xef\\xa1n\\xa4\\xeei\\x15\\x9fa\\xc9<L\\x19\\xe5\\xb4\\xce\\\\\\x17\\xd4J_\\f\\x99\\x1d\\xf6\\xf9\\x9d\\xcf\\xecX\\xa2\\x8a\\xd6\\xca\\u007fթ\\xcf\\xdf[\\xfc䷰e\\xe9\\xff㿯\\xbecO.\\xae\\xe3\\xbf\\xf97\\xd9\\xf7\\xf7ù\\xeb'\\u007f\\x82\\x17+\\x9d\\a\\xa0\\x15\\x84J(\\xff\\xb5\\xeejr\\bUv\\xfd\\x10\\xf5r\\x90Ӻs<h\\x96\\xfd\\t\\xc8\\x18b9M\\xb9\\xe6\\x87j\\xaeZ\\xf7\\x01巴\\xa5m\\\"hPe\\x15\\xf5\\xa7\\xd8/\\xb8\\xc9?\\x83+\\xef\\x80E\\xb5\\u038b\\u007f\\xf7,,\\rW\\x9bj\\x97]\\xbf\\x8d!\\x97dl\\xd95\\x86\\\\\\x80%o\\xa0\\x8e\\xee\\x88>\\xbbSs>\\x94\\xfc\\x9d\\xbdWq\\xb5\\x01\\xb0\\xed\\xc1WA\\xd5Uj\\xf5\\xb4!+5\\x00d\\xe5\\u0084[\\xe1\\xa5*煿G6C\\xc9\\x1c\\xa8\\xb9H\\xd7\\x16mǔ%\\x98r\\xa9\\xd3zLY\\x10\\x90\\x13\\xb0\\xe49,\\xf94\\xaa\\xdd1\\x05\\x1a\\xbe\\x03\\xa5\\u007f\\x0e\\x9f\\xa6\\x1c\\xe3\\x03\\xb1\\xbd範\\x9a\\xf3\\xda\\x1ev*\\x01\\xc8ʅ13\\xe0\\x85\\n\\x17\\b\\u007f\\xefv\\xa9S\\x9dU\\xc3wt\\xf7&\\xff\\x17K\\x16\\x11\\x90\\x13\\x9c֧m\\x11>Tv2\\x96Ʊ#f\\xb7p\\x99\\xf2UP\\x10G/\\x972\\xdbs\\xf9\\x9e\\xf3\\xe2\\xa9\\x06 +\\x17&\\xde\\x06\\v]f\\x87ZۨJMM\\x1b\\a\\xeb\\xae\\x1f\\xacŔ\\xebX%\\xfd\\x91.Rv\\x1d\\xfe:\\xe24,)\\xd7\\x1b\\xe0\\xf6R%\\xbaE\\v\\xe3l\\xf8T\\x88\\xbf\\x1a\\xaa&\\xed[4\\xe6\\x04\\x00Y\\xb90\\xe1\\x16\\x17ڡݲ\\xe8\\xf5pٵ\\xd6n\\xb4\\x10\\x96\\xd4`\\xc9\\xf4\\xb4/\\xbb\\xa6Q\\x86`I>\\xea\\xe4\\x81\\xe8v\\xa7n(\\x14\\xbd\\x00\\x05\\xfe\\xf8\\x1b;\\x15⯹\\xa0\\xfd\\x8aI\\xa7\\x00\\xc8ʅ\\v\\xae\\x85\\x17]h\\x87Z\\xdb\\xcd\\x0fE/\\xeb\\x96]\\x87P\\x9bpV\\x90\\x8ee\\u05ec\\x96#0\\xe5w\\x044\\xbe\\x8ehv\\x03\\xff\\x11\\xaa|\\xc1g&.|[\\xc5_\\x0f\\xd5\\xe3:~\\x9d;\\t@V.\\\\q\\x1b,\\xacq^\\xec\\x9df@=\\xeb\\xc6\\x01z\\x03eS\\xb6b\\xca}\\xd4\\xcaѮ\\xb7E4ʑ\\x18r;\\xa6XZv\\xc7\\u007f$T\\xcc\\nWk& ܔ\\x88\\xbf\\xa6m\\xb6\\xa7\\xa3\\xfbq\\x1a\\x80\\xac\\\\\\x18\\u007f3\\xbc\\xecb;\\x14\\xc9B\\x1fTܢ4\\xa0c\\x8bLYM@~\\xee\\xda\\xfd\\xc94ɹXR\\x8d)[5n\\bj\\xcfS\\xdeЗ\\x84\\x95\\xcdT\\x88_gj\\xcf\\r\\x00d\\xe5\\xc2\\xd8k\\xd3\\x03\\x02\\xdf*\\xa5\\x81\\x9a\\x8bt \\x00\\xb5յ\\x06C.qZ\\xef\\\"\\x12>e͔\\xef\\x85˔5^g\\xfb\\xa9j\\xcd\\xd2'\\x93Ԁ-\\xf6\\xf7\\xfe\\x05\\xf5P}\\x99\\xde,\\x86[\\x00\\x88\\xac\\x13\\xbcR\\xed\\x02\\x91kf\\xf1ߕ6\\xf4N\\xb3\\x03K\\x16\\x12\\x90\\x93\\x1cۍ\\x86!\\xdf\\r\\xfb\\xfc\\x0f\\xb4\\xecN\\xc3wa\\xe5\\xcfc(_\\x88A\\xfcv=\\x94\\x82Z\\xa8\\xbeBwQ\\xc7]\\x00d\\xe5\\xc2\\xe5?v\\xf7\\xec\\xd0\\xdeY\\xb8\\x12\\xca\\xefQ\\xed\\xa8c\\x8b,\\xf9\\x90\\x80<H\\x93\\x9c\\x9cJ\\xe1\\xf7Ĕ\\x1b\\t\\xc8jL\\xf9&z\\xaf\\xdf\\v*\\xaf\\x83\\x15\\xf9\\xe0[\\x9d<\\xf1\\xfbR!\\xfe\\x8b\\xf5\\xc5\\xefF\\x00\\\"v(\\x9d\\xde\\x04\\xbe\\x16XQ\\x18>\\xb6\\xa5\\xafN\\xbb\\u007f\\x83)\\xef`\\xc8M)9ċF9\\x96h_M1E}\\xf8\\xb9\\xfe\\a\\xe1\\xd3\\x17\\x92\\xdcH)\\x99퉡\\xe7w3\\x00\\xe9h\\x87\\\"Y\\xb4\\b\\xea\\xb3\\xc1\\xd4:\\xedz\\x1b\\x86\\fv\\x1e\\x00S\\x94\\xf0\\xcb\\x1e&\\xbe\\xaf#j\\b\\xdf\\xee\\x01o\\xf5e\\xb1\\x8b\\xdf\\xcd\\x00D쐛\\xaaH\\xb53\\x00e\\x8f\\xa8\\xfd\\a\\x9dC\\xe0\\x02\\x00\\xfc\\x87)\\x0fWXF\\xf2\\xecN$S1ୁ\\xea\\x8bt\\x97\\xed\\xd3\\v\\x80\\xb4\\xb4C\\x91\\\\\\xad\\xc6\\ae\\xf7\\x81\\xffp\\x97\\x02\\xe0?$\\xec\\xf3mj\\x84T؞\\xaa\\xab\\xe2\\xeb\\xf9\\xd3\\x05\\x80\\xd6\\xda!\\xb7/\\x96u\\x92+|\\x1d\\x9dm\\xea4\\x00\\x03H~\\xaf\\x9f*\\xf1W\\x87Wx5\\x0e\\x84Jw\\x00\\\"v腕\\u038b9\\xae\\\\\\xdd\\xd1,Q\\x17\\x04 ?E\\xe2\\xaf\\x19\\x1b\\xbf\\xedIG\\x00\\xb2rU)u\\xbaڡ\\xcc\\x01 \\x05%\\xcdU\\x93\\x13\\xef\\xf9\\xd3\\x11\\x80\\xac\\\\\\xb8\\xea\\x0e\\xf7\\x96Rg6\\x00\\xa9\\x98\\xed\\xa9\\n\\xd7\\xf3'I\\xfc\\xe9\\b@V\\xae\\xaa\\x1dz\\xbe\\xdc\\x05\\xc2\\xf6\\x00P\\x992\\xdb\\xf3\\xc3\\xe4؞t\\a +\\x17\\xc6\\\\\\x93&\\xb5C\\x19\\x01@*lO;\\x9bY2\\x19\\x80\\x88\\x1dr\\xdbF\\xfb\\x8c\\x02 %\\x8b\\\\UP5\\xd1\\x1e\\xf1\\xa7;\\x00Y\\xb9j\\xc5\\xd8͛j\\xba4\\x00o\\xad\\x82\\x9b\\x1f\\x86\\v\\xae\\xb3/\\xc7\\xe6\\xc1\\xc5g\\xc0%9\\xb6\\xe4\\xa7\\xe3&2e\\xc2&[s\\xfa\\xa8\\xf7\\x991l\\x95mY1\\xf1\\x95\\x14}\\xb8\\xcf\\x03`\\xdf|\\xdd\\x0f\\x17^\\a\\x03G\\xdb\\xd7\\xcb٘k\\xbe?\\xc5\\x05\\xc7(ƗCr\\xb61'\\xfby><u\\x86\\xbb\\x8ea\\xcc(\\x00|Ax\\xb5\\x1e\\xae\\xfa\\t\\f:\\xd7qAg\\n\\x00Cs\\xb61?{\\x1e[\\x06\\x8e\\xe5\\x83Sg0('\\xc4\\xcd\\xd3\\xec\\xfe\\xa2\\xbd\\a@\\xfb\\x99\\xdf\\x02\\xaf\\xd4\\xc0\\xb8\\x1b\\x1d\\x17t\\xa6\\x000'\\xfb\\x05\\xb6\\f\\x1c\\vY\\xb9a\\x00`PN\\x88\\xab\\xc7of\\xcdKn\\x83\\xa0\\xab\\x03\\x10\\xc97\\f\\x18{]Z١t\\x03`\\xc80e{v\\xbf\\x876\\x00\\x14\\x04\\xb7Mw\\x9b\\x1d\\xca\\x14\\x00|A\\xb5Jy\\xd5\\x1d\\xa4\\x8b\\x1dJ'\\x00\\x86\\xe6lc\\xfe\\xd0y\\xad=\\u007f\\xfb\\x00(\\b\\xdce\\x872\\t\\x804\\xb3C\\xe9\\x04\\xc03\\xd9ϳu/\\xf1\\xb7\\x0f\\x80\\x82 o\\xc2\\xe6\\x14\\u007f\\xc7\\xd8\\x03\\xa0-\\x97\\x98pя\\\\o\\x87\\xd2\\x01\\x80!ö1\\xf7\\xf4\\xe7:\\xbc\\x87\\xf6\\x01P\\x10\\xdc2ͩO\\xb8f:\\x00\\xbe\\xa0\\xb2CWގ\\x9b\\xed\\x90\\xdb\\x01\\x18\\x9a\\xb3\\x8dg۱=z\\x00(\\bn\\x9a\\xb2\\x81u\\x8e~\\xae)S\\x01\\xc8oQ廗\\xb9\\xd7\\x0e\\xb9\\x1d\\x80gNo\\xdf\\xf6\\xe8\\x03\\xa0 Ȼb\\x93\\x83c\\x82L\\x05 \\x92K-\\xb8x\\xa6+\\xed\\x90;\\x01\\b1d\\xd86\\x9e\\x1d\\xf6\\x1c!\\x8d{\\x88\\x0e\\x80\\xfa\\x9b7O\\xdb\\xc0\\xfaEN@\\x90\\xe9\\x00\\xf8\\x82\\xb0\\xa8Nm\\xeds\\x99\\x1dr#\\x00C\\x86mc\\xee\\x90\\xcemO\\xec\\x00(\\bf\\xe591;\\xe4\\x01\\xa0\\xec\\xd0\\xcbU\\xae\\x9b\\x1dr\\x1f\\x00!\\xe6\\x0e{\\x8e-\\x03\\xc7j\\xf5\\xfe\\xb1\\x01\\xa0\\xfe\\xfe\\x94+6\\xa5\\xf8M\\xe0\\x01Ж˚\\xe0\\\"\\xf7\\xd8!\\xf7\\x00\\xa0l\\xcf\\xdca\\x1d\\xcf\\xf6$\\a\\x00\\xf5[\\xa9\\xb5C\\x1e\\x00{\\xe6\\xab\\xee\\xb1Cn\\x01 Vۓ\\x18\\x00\\n\\x82Yy\\x1bS\\xb4N\\xe0\\x01\\xb0g淨\\xf3/\\xc7\\xdd\\xe4\\x01\\x10\\xceg\\x87-\\x88\\xc9\\xf6$\\x0e\\x80\\x82 /%v\\xc8\\x03\\xa0\\xfd\\\\\\x1ap|v\\xc8i\\x00\\x86\\xe6l\\xe3\\x99\\xec\\xe7\\xe3\\x12~\\xe2\\x00(\\bn\\x9bn\\xf7b\\x99\\a@ǹ\\xb8\\xde\\xd1\\xc52'\\x01\\x182L-rE\\x9b\\xe7\\xb7\\x17\\x00\\x05\\xc1\\xac\\xbc\\r|\\xf4һ\\x1e\\x00)\\xcf\\xfc\\x16u\\xfe\\xe5\\xa5\\xce\\xcc\\x0e9\\t\\xc0\\xbcӟ\\x8b\\xcb\\xf3'\\x1f\\x00\\x05\\xc1\\xe4\\xf1\\x9b\\xf9Ė\\x15c\\x0f\\x80\\xe8\\xb9Ą\\x8bS_;\\xe4\\x04\\x00\\x11ۓ\\xac{H\\x0e\\x00\\n\\x82;f\\xd8QJ\\xed\\x01\\xa0\\x97\\x8b\\x1bR^J\\x9dj\\x00\\x86\\fS%͉\\xda\\x1e{\\x00P\\x10\\xdc4e\\x03\\xffI\\xaa\\x1d\\xf2\\x00\\xd0\\xcb\\xc8\\xecХ7tY\\x00\\xe6d'\\xc7\\xf6\\xd8\\a\\x80\\x82`RR\\xed\\x90\\a@l\\xf9\\x86\\x91\\xb2R\\xeaT\\x0104gߝ\\\\\\xee\\x05@A\\x90<;\\xe4\\x01\\x10{.nH\\xc9F\\xfbT\\x000d\\xb7\\r\\xec\\xe9\\x03\\x80\\x82\\xe0\\xe6\\xa9\\x1bX\\x93\\xf0b\\x99\\a@\\xec\\x99\\xdfB\\xe8\\xe5j\\xb6]8#\\xed\\x01\\xf8\\xfd\\x04\\x8b-W\\xff\\n&\\xfd̖|\\xff\\x8a?\\xd8x\\xfd!&]\\xbe\\x99\\x8f\\x13\\x82\\xc0\\x03 \\xe6ܹ<\\xc8҇\\xd7P\\xf3\\xb7\\x190n\\x18\\f<'m\\x01\\xf0=\\xba\\xc6ֶ\\xfa\\xe7\\xfc\\u007f\\xd9|\\x0f!nO\\xe8\\xdc!\\x0f\\x80\\x98\\xf3\\xadG\\xd6pι;(\\x983\\x05\\xca{\\xc3\\xf4\\xc1pJ\\xf2!\\xf0\\x00Ї\\xe0\\xe6\\xa9\\x1b\\xe2<\\x81\\xce\\x03@;C\\xf9A\\x16\\xde\\xff1#F}à\\x1c\\x14\\x00\\xa6@I\\x1f\\x988\\xd4\\x03\\xc01\\x00\\x14\\x04\\x93\\xc7o棘\\xcf\\x1d\\xf2\\x00\\xd0ʝ˃,yp-9g\\xeflm\\xf4\\x829Sڮ\\xb7\\xba\\x17\\\\\\x9a\\\\;\\xe4\\x01\\x10;\\x04\\xb7N\\x8b\\xd5\\x0ey\\x00he\\xc4\\xf6\\xec\\xde\\xe0{\\x00`\\t\\x94\\xf6\\x81iɳC\\x1e\\x00\\xf1A\\xf0㩱\\xec,\\xf3\\x00\\xe84C\\xf9A\\x16\\xcf^\\xdbj{:\\x05\\xc0\\x14(\\xee\\x03\\x13\\x87x\\x008\\x06\\x80\\x82\\xe0j\\xeds\\x87<\\x00:̝˃\\xbc\\xf1О\\xb6\\xa7S\\x00\\\"Y\\xd3\\x03.;=a;\\xe4\\x01\\x90\\x18\\x04z\\xe7\\x0ey\\x00t\\x98o>\\xb2\\x86Q{\\xd9\\x1e-\\x00\\xac\\xf0\\xc0xjbv\\xc8\\x03 q\\bn\\x9a\\x12\\xcd\\x0ey\\x00쓡\\xfc \\xafw`{\\xb4\\x010\\x05\\x8a\\xfb\\u0095\\xf1\\xcf\\x0ey\\x00$\\a\\x82\\xbc\\t\\x9d\\x9d;\\xe4\\x01\\xb0G\\xee\\\\\\x1e\\xe4\\x1f\\x0f\\xade\\xf8\\xa8\\xf6m\\x8f6\\x00\\x91\\xac\\xed\\x01\\x97g\\xc7e\\x87<\\x00\\x92\\aA\\xc7\\x1b\\xed=\\x00\\xf6\\xe8\\xf9\\x97>\\xbc\\x86\\xb3Fw\\xde\\xf3\\xc7\\x04\\x80%P\\xd6\\a\\xa6\\x9c\\x06\\x83b\\x83\\xc0\\x03 \\xb9\\x10\\xcc\\xca\\xdb\\xd8Λ\\xc0\\x03\\xa0U\\xfco<\\xb8\\x96\\x11\\x1a=\\u007f\\xcc\\x00\\x98\\x02E}c\\x9e\\x1d\\xf2\\x00H>\\x04yWlb\\xfd\\x1e\\xa5\\xd4\\x1e\\x00\\xad\\xb5=\\xb1\\x88?&\\x00\\\"Y\\x17\\x9b\\x1d\\xf2\\x00\\xb0\\a\\x82=\\xedP\\x86\\x03\\x10\\xcaW\\x9e_\\xd7\\xf6$\\x04\\x80%P\\xd6[\\xdb\\x0ey\\x00\\xd8\\aA۹C\\x19\\x0e\\xc0\\xeb\\xb3\\xf5\\x06\\xbcI\\x03\\xc0\\x14X\\xd1\\x0f\\xae\\x8cn\\x87<\\x00\\xec\\x85 o\\xc2&\\xd6/|;3\\x01ع\\\\\\xcd\\xf3\\xc7j{\\x12\\x06`\\xf7١\\xf1\\xa7\\xd3ٛ\\xc0\\x03\\xc0~\\bn\\x9d\\xfe%_\\xae<%\\xb3\\x00\\b\\xe5\\xab\\x15\\xde\\xce\\x16\\xb9l\\a\\xc0\\x12UJ=up\\x87\\x10x\\x00؟\\xdf\\x1f\\xbe\\x93\\xb7\\x97\\x9d\\x96Y\\x00,\\x9e\\xddqyCJ\\x010\\x05\\n\\xfbuXJ\\xed\\x01`\\u007f\\x9e2|\\x17o/\\xfbAf\\x00\\xd0f{b\\x1f\\xf0\\xda\\x02@$kz\\xc2\\xe5\\xfb\\xda!\\x0f\\x00\\x0f\\x80\\xa4=\\x88\\xc8<\\xff\\xde%ͮ\\x00\\xc0\\x12X\\xd9K\\x95R\\xef\\x06\\x81\\a\\x80\\a@\\xd2\\x1e\\xc4+\\xf7}\\x9c\\x14\\xdbc\\x1b\\x00\\x91١\\t\\xd9\\x1e\\x00\\x1e\\x00\\xc9\\x03 ٶ\\xc76\\x00\\\"Y\\xddK\\x95R\\x0f:\\xc7\\x03\\xc0\\x03 1\\x00\\\"\\xb5=ɴ=\\xb6\\x03\\x10\\xb1C\\xd3\\a\\xb3fp\\x9e\\a\\x80\\a@\\xfc\\xe2\\u007f\\xf1\\xdeuq/r9\\n@\\xb8\\x94zͤ\\xcb<\\x00<\\x00bo\\xf4Hm\\x8f\\x9d\\xe2\\xb7\\x15\\x80pn\\xa9>\\x88iW\\xd7\\xf2\\xfd\\xe1\\xf6݇\\xef\\xfa\\x128w*\\x9c}\\xa5-\\xb9}\\xfc\\x04>(8\\xc9չ\\xbd\\xa1W\\xd7\\x02\\xe0\\xcdv6\\xb0\\xa7#\\x00X\\xc2\\x17+\\x8f\\xe0'\\xb3\\xde`\\xf0\\b{\\xee\\xc7\\xf7\\xd0\\a\\xf0\\xab\\xa7aȅ\\tm\\xdf\\xec0\\xcf;\\xd3\\xf66\\xb2)\\xd3\\x0f\\x80P\\xbe\\x9a\\xed\\xb1c\\xc0\\xeb\\x14\\x00!S\\xf8\\xb4\\xf4hfN/\\xb5\\a\\x80Gר\\xafc\\xfe\\xf6\\x19\\x0f\\x80t\\x06`\\xe7r5ϟ\\xec\\xa9N\\xa7\\x01\\x88\\xe4\\xa6\\xea\\xfeL\\x9b\\\\\\x97t;\\xb4\\xc7\\x18\\xe0w\\xf3\\xe0\\xd41\\x1e\\x00\\xe9\\b@\\xaal\\x8fS\\x00`\\t\\x9f\\x95\\r\\xe0\\x8eYK\\x92j\\x87\\xf6\\x00\\xe0\\xcdf\\xf8\\xd5ߒk\\x87<\\x00\\xec\\x05 \\x94\\x1fd\\xf1\\x03\\xd17\\xb0w\\x05\\x00\\x94\\x1d:\\x86\\x99\\xd3K\\xec\\x01\\xc0\\x17L\\xbe\\x1d\\xf2\\x00\\xb0\\x0f\\x00'l\\x8f\\x93\\x00Drs\\xedA\\\\\\x93W\\x95\\x14;\\xd4\\xe14\\xe8}\\xf3ap\\x12\\xec\\x90\\a\\x80}\\x00,\\x8brnOW\\x05\\x00K\\xf8\\xac\\xechn\\xbfai\\xc2v\\xa8C\\x00\\xdel\\x86{\\x92`\\x87<\\x00\\x92\\x0f@(?\\xc8k\\xb3c\\xdb\\xc0\\xde\\xd5\\x00\\b\\x99\\xc2\\xfa\\x92\\xe3\\x98yMbv\\xa8Ӆ\\xb0eMp\\xefܮ\\r@\\xe31`\\xf4K\\x1f\\x00b9\\xb7\\xa7+\\x03\\x10ɭu\\xfb3cJE\\xdcv(\\xeaJp~\\vܿ \\xfe\\xd9!7\\x03\\xe0?\\x14J\\xfe\\x9a>[\\\"c=\\xb7'\\x13\\x00\\xc0\\x12>+?\\x8a\\xdbf\\xbeɩ#bo\\x17\\xadR\\x887\\x9b\\xe1\\xee\\xa7\\xe0\\aq\\xd8!\\xb7\\x02\\xd0x$\\x94\\xfc\\r|\\xab\\xd2\\x03\\x80\\xb6\\xe3\\n\\x9d\\xef\\xf9\\xdd\\x06@\\xc8\\x14>)>\\x9e\\x99Ӌ\\xed\\x01 \\xbfE١\\xdf\\xcd\\xeb\\x1a\\x004\\x0e\\x80\\xe2\\xf9\\xe0k!-N\\x85\\x88\\xf7ܞL\\x01 \\x92\\xdb\\xea\\xfb1cJl\\xb3C1\\x17\\xc3\\xdd7?6;\\xe46\\x00\\xfc\\x87B\\xc9\\xd3a\\xf1\\a\\xdd\\x0f@\\\"\\xe7\\xf6d\\x1a\\x00X\\xc2\\xe7\\xe5G\\xc6d\\x87b\\x06\\xe0\\xcdf\\xb8\\xe7)};\\xe4&\\x00\\x1a\\a\\xec%\\xfe4\\x00\\xe0\\xb5\\x04\\xce\\xed\\xc9D\\x00B\\xa6\\xb0\\xae\\xf8\\x04n\\xb8\\xa6\\xc8\\x1e\\x00\\xf2[`Y\\x00\\xee{6\\xbd\\x00h<r7\\xdb\\x13t?\\x00;\\x1b\\x06\\xb0\\xec\\x91\\xff\\xb8\\xce\\xf6\\xb8\\x1d\\x80Hn\\xad;\\x80\\x19S*\\xa3ڡ\\x84\\xf6\\x03\\xfc\\xee\\xd9\\xe8\\x8ben\\x00\\xc0\\u007fhx\\xc0\\xbb\\xb7\\xf8]\\f\\xc0\\xa7e\\xc7qι\\xdb\\x1c\\x17y\\xba\\x02\\x80%\\xfco\\xe5\\x11\\xdc~\\xc3\\xd2N\\xedPB\\x00\\xbc\\xb5J-\\x96uf\\x87\\x9c\\x06\\xa0\\xf1\\xd8N\\xc4\\xefb\\x00\\xd6\\x16\\x1f\\xcf)6n\\x04\\xc9\\x04\\x00B\\xa6\\xf0qщ\\xfc\\xa8\\x93R\\xea\\x84w\\x84-\\v\\xc0\\xbd\\x9d\\xcc\\x0e9\\t\\x80\\xff\\b(^Љ\\xf8=\\x00\\xba4\\x00\\x91\\xdc\\\\s\\x103\\xf2\\xaa\\xf8\\xfe\\xf0}\\xdf\\x04I\\xdb\\x12\\xf9\\xbby\\xed\\xdb!\\xa7\\x00\\xf0\\x1f\\xa2\\x16\\xb9:\\x15\\xbf\\a@F\\x00\\x80%|Yq8w\\xccZ\\xb2\\x8f\\x1dJ\\x1a\\x00o\\xadR;\\xcb\\xf6\\xb6CN\\x00\\xd0p\\x1c\\x94<\\xa5!~\\x0f\\x80\\x8c\\x01@\\xcd\\x0e}\\x87\\xeb\\xa7U\\xd8\\x03\\x80/\\xd8~)u\\xaa\\x01h<\\n\\x8a\\x9f\\xd3\\x14\\xbf\\a@\\xc6\\x00\\x10ɯ\\xab\\xfb\\xefQJm˩\\x10\\xbbۡT\\x02\\xe0\\xef\\x0f\\xa5\\u007f\\x89A\\xfc\\x1e\\x00\\x19\\a\\x00\\x96\\xb2C?\\x99\\xb5\\x84SG\\xec\\xb0\\a\\x80\\xb7\\x9a\\xe1\\xd7a;\\x94*\\x00\\x1ac\\xb1=\\x1e\\x00\\x19\\r@\\xa4\\x94\\xfa\\xfai\\xe5\\xf6\\x9d\\v\\xb4,\\xa0\\xec\\xd0y#S \\xfe\\xa3\\xa1\\xf8\\xf98\\xc4\\xefb\\x00\\xfeW|\\x04w\\xe5T\\xf0\\x8baUq\\xe5\\x9dg\\xf9\\xb9u\\xf2\\xe7\\xdc2u\\x83mi>x#\\xcc9ƞ|\\xe68x#\\x1b\\xaa/\\xb7-7\\x16]ϻ\\xf3[\\xd4\\xea\\xae\\x1d\\x10\\xf8\\x82\\xf0\\xf7\\xa7\\xec\\x15\\u007f\\\\\\xb6'\\r\\x00`E︾\\xadۚ\\xe7N\\x85\\x97\\xab\\xec{\\xb0\\xbe L\\xfaib\\x9bE:ʁ\\xa3a\\xdcM\\xb0\\xa0̾k\\xcfo\\xd97\\xed\\xf8\\x9d\\x15>{{\\xfe\\x84\\xc4\\xef\\x01\\xe0N\\x00ι\\x1a\\x9e+\\xb3O\\x94\\xed\\x89?\\xdd\\x00h<.\\x01\\xdb\\xe3\\x01\\xe0R\\x00Fè\\xc9\\xf0r\\xb5}\\xd7ܡ\\xd8m\\x02\\xc1\\x0e\\x00\\xfc\\xfd\\xa1\\xf4\\xa9$\\x88\\xdf\\x03\\xc0=\\x00Dl\\xcf\\xfcR\\aĿ\\u05ffO&\\x04\\xc9\\x06\\xa0\\xf1\\xa8$\\xd8\\x1e\\x0f\\x00\\xf7\\x01\\x90\\x9bB\\xdb\\xd3\\xe1\\u007f\\xe7r\\x00\\x1a\\x8f\\x8bq\\x91\\xcb\\x03 =\\x008\\xe7j\\x1bmO<\\xa2N\\\"\\b\\xc9\\x02\\xc0\\u007fH\\x9c\\xf3\\xfc\\x1e\\x00\\xee\\x05`\\xe0h\\xb8\\xf4F\\x98_b\\xdf5\\xc6+\\xe4d١d\\x00\\xd0x\\x84fa[W\\x02\\xa0\\xac'\\x9c5\\xbck\\x03\\xe0\\n\\xdb\\xe3r\\x00\\x1a\\x8f\\xd5(iN \\vW\\xa8\\xdfp\\x1d\\x00\\x96@qo\\xf8Q\\x16d\\x8f\\x84\\xac\\x18\\xdf\\x06n\\a 7\\x0f^\\xa9q\\x9f\\xf0\\x93\\xfd\\xb7\\x12\\x01 \\xb2\\x81=\\xe9\\x1dD\\v\\x14\\xd4A\\xe9\\x9f\\xd4V\\xc9\\xf6\\u007f\\xdf\\x05\\x00X\\xa2>\\x17\\xf4\\xcaAp\\xdd@\\x18|v\\x17\\x00`4\\\\2\\v\\x16\\xa4b\\xb6'I\\xc2I\\x04\\x82x\\x01\\x88\\x9cۓt\\xf1\\a\\xa0\\xf4\\x0fP7\\\\i\\xab\\xe3kp\\t\\x00\\x11\\b\\xaa\\xf6\\x83g\\xfb\\xc3\\xd8\\xec\\xf4\\x06 \\xf7j%~7\\xda\\x1e\\xb7\\x00\\xb0ǹ=Il\\x9b\\x15K\\xa0v4\\x18\\aD\\x13\\u007f\\n\\x01\\bJ/,\\xb9\\x13K>\\xc0\\x92]Q\\x1b\\xa7\\xbe;\\xfc\\xf2x8\\xe3\\x8c\\xcem\\x91\\xeb\\x00\\x18\\xadĿ\\xb0\\xd6^\\xe1\\xfb\\x92\\xd8\\xf3'\\x03\\x84X\\x01\\xd8\\xe7ܞD\\xb3\\x05\\n+\\xa0ⶎ\\xce\\x00\\xdd;wa\\xc9\\x1a\\x02\\xf2s\\f\\xe9g;\\x00\\xad \\x04\\xe4$\\x02\\xf2 \\x96\\xfc\\aKBQ\\xdf\\bK\\xfb\\xc1\\x1d'\\xc2\\xf03\\xd3\\x03\\x00;m\\xcf\\x1e´\\xb1\\xb0-\\x1e\\bb\\x01\\xa0\\xdds{\\x12\\xc8\\xc2\\n(\\xff\\r4\\f\\xd2\\xe9\\xf1CX\\xf2\\x11\\xa6\\xfc\\x01C\\x06\\xa6L\\xf8{@P.=0$\\x1bK^\\xd3j\\xb0\\x86nj|pթ\\xee\\x06 7\\x0f\\x16\\x94\\xa4\\x97\\xedI5\\x00\\x1d\\x9e\\xdb\\x13g\\x16/\\x80\\xfal0{\\xeb\\xfd\\xbe)\\xcb1\\xe5t\\x16K/GĿw`ʥX\\xb2\\nKvh\\xdd\\xc0\\x93߆Q\\xc3\\xdb\\xd6\\x0e\\xdc\\x00\\xc0\\xc0\\xb0\\xed\\xb1k\\xb6g\\x0fA\\xda,\\xfcxA\\xd0\\x01\\xa0\\xd3s{b\\xc9հ\\xa2\\x10\\xaa\\xae\\xd0}\\xeb|\\x83)\\xab1\\xe4*\\xa7\\xf5\\xden`\\xc9\\x00\\f\\xb9\\x13K\\x9a\\xa3\\xda\\\"K\\xd4\\xe2ٯ\\x8f\\x83sr\\xdc\\x01\\xc0\\xa57\\xaay~[~?\\x85\\xbd~4\\b:\\x13n4\\x00\\x1a\\x8fM\\xceTga\\xa1\\xf2\\xf9\\x8d\\x03t\\x84\\x1f\\u0092 \\x96\\xdcM\\xad\\x1c\\xed\\xb4\\xce;\\r\\x90n\\x18\\xf2]L\\xf9\\x13\\x96l\\x8aޛ\\b\\xbc\\xd5\\x17f\\x9f\\a\\x8b+\\x9c\\x03\\xe0\\x9c\\xab\\xd5\\noW\\xb0=\\x89\\\\Cg\\x004\\x86\\xcf\\xedI\\xe8\\x1e\\x9a\\xa0\\xec>h\\xf8\\x1e\\x98\\xfb\\xe9\\x88\\u007f\\x1b\\xa6<\\x8e_\\xb2\\xb8O\\xba;\\xad\\uf602&\\x19\\x8e)\\xb5\\x98\\xb2%\\xea\\x1b\\xc1\\x14\\xa8=\\x03V,\\x03_ u\\x00DlO*J\\x9aSm{\\xe2\\x01\\xa1#\\x00\\x12\\xae\\xed\\t\\xc0\\x8a\\xb7\\xa0v\\x94\\xee\\x00w\\v\\x964\\x12\\x90\\xb3\\x9c\\xd6qB\\xc1{қ\\x80\\\\\\x8b%\\xd5Z\\xb6\\xc8\\xe8\\rUyP\\xf4j\\n\\x00\\x18\\r\\xe3\\xec\\xb4=A\\xe7{\\xfdX!h\\x0f\\x80\\xc6\\xe3\\x12\\xf3\\xfcEK\\xa0j\\n\\x18\\xfb\\xebڝ\\x06\\x9a\\xe4:\\x9ae\\u007f\\xa7\\xf5\\x9b\\x94\\bۢ\\xa3\\xb0\\xe4ǘ\\xf2I\\xd4F0\\xbb\\xabc\\xf2*\\xaf\\x85\\x82$\\x0eH\\xf7\\x06`Ԥ\\xaeo{:\\xbc\\xb6\\x0e\\xe0\\xdc\\x1b\\x80\\x98\\xcf\\xed\\xd9-\\vj\\xa1\\xe2&\\xf0\\x1f\\xa5\\x9eit\\xf1\\xaf\\xa7I~J\\x93\\x1c\\r\\xd2\\xcdi\\xdd\\xda\\x12\\xd4\\xcbI\\x18\\xb2\\x1cS6h٢\\x86\\x93\\xc2\\x0f\\xc0\\x9f<\\x00\\x06\\x8e\\xb6\\xb9\\xa49\\xe8>ۣ\\v\\xe9\\xee\\x00Ľ\\x81݀\\xa2\\x85\\xd0p\\xb2\\x9e\\xdd1e#\\x96\\x94\\x10\\x90\\x93\\x9c\\xd6gʂ\\x80\\\\\\x8c)\\xcb0e\\xab\\xd6\\x1b\\xa1\\xe6\\x02(y\\x86\\x84\\xc6\\a\\x93~ڶ\\x93\\xcb.۳Ǿ]\\x17\\b<\\xd6k\\x8e\\x00\\x10\\u05f9=\\xcdP2\\x17j.\\xd1\\x1d\\xe0nǒe\\x182\\xdei=:\\x12\\x04\\xe5\\x10\\x02r\\x15\\x96\\xbc\\x1b\\x1d\\x82\\xf0@\\xacz<\\x14\\x96\\xc7\\x0f\\xc0\\xa8ɩ\\xa9\\xed\\xb1{\\x85\\xd7N\\x00\\x1a\\x8fQ\\x1b\\xd8ci\\xa3\\x82\\n\\xa8\\xbaR=#\\xb3[t\\xf1\\x9b\\xf2>\\x01\\x99BP\\x0eA\\xba\\xa8\\xdd\\xd1\\r\\f\\xe9\\x87)\\u007f\\xc1\\x92ϴ\\x06\\xca\\xfe~\\x84\\xca\\x1ef\\xdb[\\r|\\xf1\\xda;\\xfay\\xddc|\\xf1Lml\\xffO\\f\\xb9yi0\\xbdz\\xfe\\xf6@\\xf0\\x95\\xc7f{\\n\\x1a\\xa0\\xec\\x11\\xf0\\x1f\\xac;\\xc0\\xfd\\x02S\\xfe\\x8a!\\xdfrZw\\xae\\n\\x90n\\x04d$\\x96\\xccŒϣ5f\\xc8\\u070f\\x8f\\vF1\\xf7\\xfe\\xb9L\\x99\\xb8\\x9e\\xcb.\\xde\\x1a=\\xc7n\\xd2\\xfb\\xef\\xe2ș\\x93\\xbf\\xc6z\\xfa\\xfd\\xf4\\x15\\u007fkj\\xbe\\xbd\\n\\x1a\\xa0\\xec1\\xa8=[\\xd7\\xee|\\x81%\\xcfaIn\\x97\\x1d\\xe0&#0\\xa4\\x1f\\x01\\x19\\x83%\\xb5\\x1a\\x8d\\xca\\xd75\\aR:\\xffR.\\x1d\\xb7ڱ#\\x17\\xb3G\\xeed\\xc9Ck\\xd9\\xf1\\xa6\\xd3\\xe2MQ\\x16\\x16B\\xcdhU\\xa6\\xac\\xf1\\x8c0\\xc5\\u0090\\v\\b\\xca\\x01N\\xeb+\\xad\\x02Cnǔu\\x98\\xb2S\\xa7\\xa1\\xffz\\xff\\xbd\\x9c9\\xfa3N\\x19\\xbe+E\\xe2\\x0f1\\xf4\\xcc]̻\\xe7\\x13Bi\\xdf\\xf3G\\xcb\\xd5PP\\r+\\u007f\\xa23\\xb3\\x03\\xaaLy\\x1d\\xa6\\xdc崎\\xd2:0e\\x10\\x96<\\x8a%\\x1fEk\\xf4]f7\\x82K\\x87\\xf0\\xd0/\\x9f`也\\xda\\x0e@\\xeey;x\\xf5\\xfe\\x8f\\xbb\\xbe\\xf8\\v\\xaaw+S֚\\xcf\\xff\\x18K\\xfe\\x0fS\\x06e\\xfc\\x007\\x19\\x81Oz\\xd3,\\xa7bɢ\\xf0\\xd4Y\\xa7\\x0f`k}_Z\\xfe1\\x94\\x1b\\xae\\xf5\\xc5\\xf4\\x11\\xea\\xd8l\\xcf.\\x96<\\xb8\\x96\\x1do\\xb9@\\xa0v\\xf6\\xfa%s\\xa0~0\\x18}t\\x84\\xff\\r\\xa6\\xbc\\x8a!ټ'\\xbd\\x9d\\xd6M\\x97\\fL\\x99\\x84)\\xff\\t\\x83\\xd0\\xe9\\x8c\\xd1.\\xa3\\x1b\\x8b\\x1e\\x9f\\xc59\\xe7\\u007f\\xcc\\xe0\\x11;\\x92j{\\x9e\\xfb\\xcd:\\x17\\bԮl\\x86\\u0095P9]gJ3\\x14~\\x16k\\xb0\\xe4\\x1a\\xa7\\xf5\\x91\\x11A\\xad\\x1c\\x82)w\\xa1Jd\\xa3\\xf6L\\xebK\\a\\xf0\\xd4\\x03\\xbfe\\xccE\\xffJ\\x18\\x80s\\xce\\xdd\\xc1\\xa2\\xael{\\nK\\xa0\\xf2Ǻe\\xca`ɻ\\x98r\\x17\\xf5r\\x84ӺȨ\\xc0\\x90\\x9e\\x04\\xe4\\x04\\f\\x99M\\xb4M\\xfa\\x96\\xb0\\xbd\\xa1\\x17\\x1f\\x16\\x9e\\xc8\\xec_\\xfc\\x99S\\xe3|\\x1bd\\x8f\\xdc\\xc5\\x1b]\\xd6\\xf64C\\xd9\\xfdj\\x05\\xd8\\xec\\xa93\\xb3\\xb3\\x05C\\xfe\\x88_NĐ\\x9eN\\xeb!\\xa3\\x03\\xbf\\x9c\\x85%\\x86\\x0e\\b\\xbb\\xccnT\\xbe0\\x96q\\x97\\xaf\\xe2\\agnշ=#w\\xf1\\xc2o\\xbbb\\xcf\\x1f\\x80\\x15\\xf9\\xe1\\xf9|\\x8d\\x15\\\\K\\xb6\\x10\\x90\\xd54\\xc9\\xd9N?w/v\\v\\x9ae\\u007f,\\xb9\\x06S\\xaa\\xd0ؖ\\xf9ee\\u007f\\x16=>\\x8b+\\xafll\\xf7{\\xbc\\xbb\\x8b\\xff\\xec\\xd1;X\\xfc\\xc0\\xda.&\\xfe\\xd5P\\xb4X\\x95)\\xeb\\xad\\xe2~\\x83%\\xd5\\x182ӛ\\xcfwi\\xb4\\x96]7ɭh\\xecF\\xdbetc]\\xc91\\xfc\\xed\\x81_w8[\\x94=r\\x17\\xaf\\xcd^\\xcb\\xf6.\\xb5ȵJmG\\xf4\\x1f\\xa1;\\xad\\xb9\\x19K\\xeeĐ\\xa3\\xd2nWV\\xa6\\x06\\x96\\x1cN@\\x96\\x86Km\\xa3>\\xe45+\\x8e\\xe7\\xba\\xe9E\\f=kSkϟ=r\\x17/\\u07bb\\xae\\v\\xf5\\xfc&\\x94̃\\x86\\x13u\\a\\xb8_c\\xc92\\x1a\\xe5X\\xa7\\x9f\\xa7\\x17q\\x04\\xb5\\xd2\\x17S\\xc6a\\xc9\\xeb:o\\x84M\\xb5\\aP\\xf0̕\\xdcx\\xdd[\\x9c{\\xfe&^\\x9b\\xddUlO\\x93*%\\xaf\\xbeXwW\\xd6f,Y\\x86)WP+}\\x9d~\\x8e^$\\x18\\x04\\xe4`\\x9ad\\x12\\xa6|\\x1c\\xed\\xe1\\x87L\\xe1\\u007f\\x15\\x87\\xf2肋پ\\xdc\\xc6\\xe3QR\\x95\\x05\\x8dP}E\\xb8LY\\xa3\\xd7\\x0f\\xc8\\x17\\x982\\x99\\xa0\\x1c\\xe2\\xf4s\\xf3\\\"\\xc9A\\xad\\xf4Œ?\\xa3*\\x13\\xa3\\x1f\\xeb\\xe8\\xef\\x0fe\\x0fCA=\\xf8V;/f\\xedlQ\\xd7\\\\\\xfa\\x184\\x1e\\xaa\\xd3\\xe3\\xab2\\xe5\\x80\\xccI\\xe9\\xf1\\x82^\\xa4>@\\xba\\x13\\x90\\xb3\\b\\xc8\\x1c,\\xd9\\x10U\\x1c\\xe6~P7Bռ\\xdbuZER\\xb3\\tJ\\xff\\bug\\x80\\xd9C\\xa7\\xc7\\xdfH@\\xe6c\\xc8ٔK\\x0f\\xa7\\x9f\\x8f\\x17)\\n\\xca\\xe5\\x80\\xf0\\xb1-u\\xe8\\xecM6\\x0e\\x80\\xba\\x1cu\\u0081\\xe3\\\"\\xef \\x8b\\x96\\xa8\\xf9|\\xe3@ݽ\\xb8\\xf5\\x982\\x8aj9\\xd0\\xe9\\xe7\\xe1\\x85C\\x11\\xb6Ewc\\xc9z\\xd4\\\\w\\xe7\\xc21\\x0eT%\\xc1\\x05U\\xe0[\\xe5\\xbc\\xe8}\\xab\\xc2՚w\\x83q\\x90\\xee|\\xfe\\xa7Xr\\xbf7\\xc0\\xf5\\xa250\\xe5{X\\xf2\\b\\x96\\xacӚ\\\"l\\xf8\\x1e\\xac\\xbc[\\x1d\\xfd\\xe1\\x98\\xf8\\x1b\\xa1\\xfc\\x1e\\xa8\\x1f\\xa8;\\xad\\xf9\\x19\\x96<\\x82)\\x83\\x9cno/\\\\\\x18\\x94K\\x1f\\xfc\\x92\\x85!\\x8b\\xf5lQ\\x1f\\xf5\\xc1\\xb6\\x929\\xa9\\x17\\u007f\\xf1|\\xa8?E]\\x83\\x9e\\xddY\\x86)\\x83(\\x97>N\\xb7\\xb3\\x17.\\x0f\\x16\\xcb~\\xf8%\\x0fS\\xdeAc\\xff\\x01f\\x0f\\xa8\\x9a\\xa4\\xb6\\n\\xdaj\\x8bVAa1TM\\x06\\xb3\\x97N\\x8f\\xbf\\x1dS\\xdeǐ)^\\xc1\\x9a\\x171\\a\\x96\\f  w\\x10\\x90\\x16\\x02Q\\xa6MMQ%ĕ7\\xa8#\\xbf\\x93z,J\\x8b\\xfa\\x9b\\x157\\xab#K\\xf4\\xce\\xd6\\f\\x12\\x90\\x9f\\xd3,\\xc78ݎ^\\xa4qp\\x9ft\\xc7/'\\x12\\x90ǣB`\\x89\\xaa\\xadi8\\x11\\xca\\x1eJ\\x1e\\x00\\xa5\\u007f\\x84\\x86\\xefꞾ\\x10\\u0092\\xa7Y%'\\xb2X\\xf6s\\xba\\xfd\\xbc\\xe8B\\x11\\xfe\\x1aN\\r\\xea\\xe4\\xe2\\xe8b\\xac\\xcbQ\\x15\\x97q\\xad\\x1f4\\xa9\\xff\\xb7v\\x94\\xee\\x00w+\\xa6\\xb2\\t\\x1f\\x9e\\x00\\x00\\x01ZIDAT\\xd4\\xe2O\\xf3Ӕ\\xbdpw\\xb0J\\xfac\\xc9tL)\\xd3\\x1a(\\xfb\\x0fQ\\x9e\\xbdh\\xa1\\xbe\\xf8\\x8b\\x16C\\xd54\\xdd\\xf2\\x85P\\xb8\\x04\\xfczVI\\u007f\\xa7\\xdbǋ\\f\\t\\x82rd\\xf8k8_F\\xb7E\\xa2NY^y\\xab\\xaa\\xcd\\xe9P\\xfc\\x16\\xac\\xbcM\\xd7\\xe7\\x83*\\xf0\\xbb\\x93&\\x97\\u007f5ŋ\\xae\\x1b\\xf8\\xe5D\\xacֲ\\xeb\\xe8\\xc7:6\\x9c\\f\\xc5s\\xc1g\\xd0v\\n\\x9b\\xd16\\xad\\xa9\\xe3\\xf1M\\xd9H@\\x96\\xd3$';}\\xff^x\\xa1\\xbe\\x96\\x19\\x90K\\b\\xc8\\x12-\\b\\x8c\\x9ePs\\xa1*Q.^\\x005\\x17\\xa9\\x0f\\x83\\xe8\\x89\\u007f9\\xa6\\\\\\xea\\x1d;\\xe2\\x85날\\x1c\\x82%\\x97a\\xc6pڵ\\xff0]\\xbb\\xf3.\\xa6L\\u0090Ü\\xbeO/\\xbc\\xe84P_\\xcb|\\x1aS>G\\xa7\\xec\\xba\\xe3܅*S\\x9e\\x8f%\\x03\\x9c\\xbe//\\xbc\\x88)h\\x94\\x1c,\\x99\\x87\\xdaZ\\x18\\xab\\xf8\\xb7`ɳ\\x04d\\xa4\\xd3\\xf7\\xe1\\x85\\x17q\\a\\xd5r \\x96\\xe4\\xa2\\xd6\\x0ft\\xc5\\xdfH\\xb3\\x9c\\xe7\\x95){\\xd1e\\x02\\x9f\\xf4ƒ_\\x86\\x8fu\\xdc\\xd7\\x16\\xa9U\\xe6\\xb5X\\xf2KoW\\x96\\x17]6h\\x96,,y8,\\xf6P8\\xd7b\\xcac4\\xc9\\xf7\\x9d\\xbe>/\\xbc\\xb0=(\\x97\\x1e4J\\x0e\\xa6\\xfc\\x03S\\n\\bH\\x0eA\\xe9\\xe5\\xf4ueb\\xfc\\u007fK\\x13\\xb8F\\xdb\\x0f\\xfc#\\x00\\x00\\x00\\x00IEND\\xaeB`\\x82\"\nvar _Assetsaeddafb109d244dccf51e6a0309f04536e6c7eb7 = \"<?xml version=\\\"1.0\\\" standalone=\\\"no\\\"?>\\n<!--\\nFont Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com\\nLicense - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\\n-->\\n<!DOCTYPE svg PUBLIC \\\"-//W3C//DTD SVG 1.1//EN\\\" \\\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\\\" >\\n<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" version=\\\"1.1\\\">\\n<metadata>\\nCreated by FontForge 20190801 at Tue Dec 10 16:09:21 2019\\n By Robert Madole\\nCopyright (c) Font Awesome\\n</metadata>\\n<defs>\\n<font id=\\\"FontAwesome5Brands-Regular\\\" horiz-adv-x=\\\"448\\\" >\\n  <font-face \\n    font-family=\\\"Font Awesome 5 Brands Regular\\\"\\n    font-weight=\\\"400\\\"\\n    font-stretch=\\\"normal\\\"\\n    units-per-em=\\\"512\\\"\\n    panose-1=\\\"2 0 5 3 0 0 0 0 0 0\\\"\\n    ascent=\\\"448\\\"\\n    descent=\\\"-64\\\"\\n    bbox=\\\"-0.200195 -66.9505 641.5 448.3\\\"\\n    underline-thickness=\\\"25\\\"\\n    underline-position=\\\"-50\\\"\\n    unicode-range=\\\"U+0020-F949\\\"\\n  />\\n    <missing-glyph />\\n    <glyph glyph-name=\\\"twitter-square\\\" unicode=\\\"&#xf081;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM351.1 257.2c12.8008 9.2998 24 20.8994 32.9004 34c-11.7998 -5.10059 -24.5996 -8.7998 -37.7998 -10.2002\\nc13.5996 8.09961 23.8994 20.9004 28.7998 36.0996c-12.5996 -7.5 -26.7998 -13 -41.5996 -15.7998c-12 12.7998 -29 20.7002 -47.9004 20.7002c-40 0 -73.2998 -36.0996 -64 -80.5996c-54.4004 2.7998 -102.9 28.7998 -135.2 68.5996\\nc-5.7002 -9.7002 -8.89941 -20.9004 -8.89941 -33.0996v-0.107422c0 -19.3584 13.0811 -43.7715 29.1992 -54.4932c-10.6992 0.400391 -20.8994 3.40039 -29.5996 8.2998v-0.799805c0 -31.8994 22.5 -58.2998 52.5 -64.3994\\nc-10.4004 -2.7002 -19.5 -2.7002 -29.5996 -1.2002c8.2998 -26 32.5 -44.9004 61.2998 -45.5c-22.5 -17.6006 -50.7002 -28 -81.4004 -28c-5.39941 0 -10.5 0.200195 -15.7998 0.799805c29 -18.5996 63.5 -29.4004 100.7 -29.4004c120.6 0 186.6 99.9004 186.6 186.601\\nc0 2.7998 0 5.7002 -0.200195 8.5z\\\" />\\n    <glyph glyph-name=\\\"facebook-square\\\" unicode=\\\"&#xf082;\\\" \\nd=\\\"M400 416c26.4961 0 48 -21.5039 48 -48v-352c0 -26.4961 -21.5039 -48 -48 -48h-137.25v152.31h57.7803l11 71.6904h-68.7803v46.5498c0 19.6104 9.61035 38.7305 40.4199 38.7305h31.2705v61s-28.3809 4.83984 -55.5205 4.83984\\nc-56.6699 0 -93.6699 -34.3301 -93.6699 -96.4805v-54.6396h-63v-71.6904h63v-152.31h-137.25c-26.4961 0 -48 21.5039 -48 48v352c0 26.4961 21.5039 48 48 48h352z\\\" />\\n    <glyph glyph-name=\\\"linkedin\\\" unicode=\\\"&#xf08c;\\\" \\nd=\\\"M416 416c17.5996 0 32 -14.5 32 -32.2998v-383.4c0 -17.7998 -14.4004 -32.2998 -32 -32.2998h-384.1c-17.6006 0 -31.9004 14.5 -31.9004 32.2998v383.4c0 17.7998 14.2998 32.2998 31.9004 32.2998h384.1zM135.4 32h0.0996094v213.8h-66.5v-213.8h66.4004zM102.2 275\\nc21.2998 0 38.5 17.2002 38.5 38.5c0 21.2002 -17.2998 38.5 -38.5 38.5c-21.2998 0 -38.5 -17.2998 -38.5 -38.5s17.2002 -38.5 38.5 -38.5zM384.3 32v117.2c0 57.5996 -12.5 101.899 -79.7002 101.899c-32.2998 0 -54 -17.6992 -62.8994 -34.5h-0.900391v29.2002h-63.7002\\nv-213.8h66.4004v105.8c0 27.9004 5.2998 54.9004 39.9004 54.9004c34 0 34.5 -31.9004 34.5 -56.7002v-104h66.3994z\\\" />\\n    <glyph glyph-name=\\\"github-square\\\" unicode=\\\"&#xf092;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM277.3 32.2998c66 22 110.8 84.9004 110.7 158.3c0 91.8008 -74.4004 161.5 -166.2 161.5s-162 -69.6992 -162 -161.5\\nc0 -73.3994 46.2002 -136.199 112.2 -158.3c8.5 -1.5 11.5 3.7002 11.5 8c0 4.10059 -0.200195 26.7002 -0.200195 40.6006c0 0 -46.3994 -10 -56.0996 19.6992c0 0 -7.60059 19.2002 -18.4004 24.2002c0 0 -15.0996 10.4004 1.10059 10.2002\\nc0 0 16.3994 -1.2998 25.5 -17.0996c14.5 -25.6006 38.7998 -18.2002 48.2998 -13.9004c1.5 10.5996 5.7998 18 10.5996 22.2998c-37 4.10059 -74.2998 9.5 -74.2998 73.1006c0 18.1992 5 27.2998 15.5996 39c-1.7998 4.39941 -7.39941 22.0996 1.7002 45\\nc13.9004 4.2998 45.7002 -17.9004 45.7002 -17.9004c13.2002 3.7002 27.5 5.59961 41.5996 5.59961c14.1006 0 28.4004 -1.89941 41.6006 -5.59961c0 0 31.7998 22.2002 45.7002 17.9004c9.09961 -23 3.39941 -40.7002 1.69922 -45\\nc10.6006 -11.7002 17.1006 -20.8008 17.1006 -39c0 -63.9004 -39 -69 -76 -73.1006c6.09961 -5.2002 11.2998 -15.0996 11.2998 -30.7002c0 -22.2998 -0.200195 -49.8994 -0.200195 -55.2998c0 -4.2998 3.10059 -9.5 11.5 -8zM179.2 93.4004\\nc-1.90039 -0.400391 -3.7002 0.399414 -3.90039 1.69922c-0.200195 1.5 1.10059 2.80078 3 3.2002c1.90039 0.200195 3.7002 -0.599609 3.90039 -1.89941c0.299805 -1.30078 -1 -2.60059 -3 -3zM169.7 94.2998c0 1.5 -1.7998 2.60059 -3.7002 2.40039\\nc-2 0 -3.5 -1.10059 -3.5 -2.40039c0 -1.5 1.5 -2.59961 3.7002 -2.39941c2 0 3.5 1.09961 3.5 2.39941zM156 95.4004c-0.400391 -1.30078 -2.40039 -1.90039 -4.09961 -1.30078c-1.90039 0.400391 -3.2002 1.90039 -2.80078 3.2002\\nc0.400391 1.2998 2.40039 1.90039 4.10059 1.5c2 -0.599609 3.2998 -2.09961 2.7998 -3.39941zM143.7 100.8c0.899414 0.799805 0.399414 2.7998 -0.900391 4.10059c-1.5 1.5 -3.39941 1.69922 -4.2998 0.599609c-1 -0.900391 -0.599609 -2.7998 0.900391 -4.09961\\nc1.5 -1.5 3.39941 -1.7002 4.2998 -0.600586zM134.6 109.9c1.10059 0.799805 1.10059 2.59961 0 4.09961c-0.899414 1.5 -2.59961 2.2002 -3.69922 1.2998c-1.10059 -0.700195 -1.10059 -2.39941 0 -3.89941c1.09961 -1.5 2.7998 -2.10059 3.69922 -1.5zM128.1 119.6\\nc0.900391 0.700195 0.700195 2.2002 -0.399414 3.5c-1.10059 1 -2.60059 1.5 -3.5 0.600586c-0.900391 -0.700195 -0.700195 -2.2002 0.399414 -3.5c1.10059 -1 2.60059 -1.5 3.5 -0.600586zM121.4 127c0.399414 0.799805 -0.200195 1.90039 -1.5 2.59961\\nc-1.30078 0.5 -2.40039 0.200195 -2.80078 -0.399414c-0.399414 -0.900391 0.200195 -2 1.5 -2.60059c1.10059 -0.699219 2.40039 -0.5 2.80078 0.400391z\\\" />\\n    <glyph glyph-name=\\\"twitter\\\" unicode=\\\"&#xf099;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M459.37 296.284c0.325195 -4.54785 0.325195 -9.09766 0.325195 -13.6455c0 -138.72 -105.583 -298.558 -298.559 -298.558c-59.4521 0 -114.68 17.2188 -161.137 47.1055c8.44727 -0.973633 16.5684 -1.29883 25.3398 -1.29883\\nc49.0547 0 94.2129 16.5684 130.274 44.832c-46.1318 0.975586 -84.792 31.1885 -98.1123 72.7725c6.49805 -0.974609 12.9951 -1.62402 19.8184 -1.62402c9.4209 0 18.8428 1.2998 27.6133 3.57324c-48.0811 9.74707 -84.1426 51.9795 -84.1426 102.984v1.29883\\nc13.9688 -7.79688 30.2139 -12.6699 47.4307 -13.3184c-28.2637 18.8428 -46.7803 51.0049 -46.7803 87.3906c0 19.4922 5.19629 37.3604 14.2939 52.9541c51.6543 -63.6748 129.3 -105.258 216.364 -109.807c-1.62402 7.79688 -2.59863 15.918 -2.59863 24.04\\nc0 57.8271 46.7822 104.934 104.934 104.934c30.2139 0 57.502 -12.6699 76.6709 -33.1367c23.7148 4.54785 46.4551 13.3193 66.5986 25.3398c-7.79785 -24.3662 -24.3662 -44.833 -46.1318 -57.8271c21.1172 2.27344 41.584 8.12207 60.4258 16.2432\\nc-14.292 -20.791 -32.1611 -39.3086 -52.6279 -54.2529z\\\" />\\n    <glyph glyph-name=\\\"facebook\\\" unicode=\\\"&#xf09a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M504 192c0 -123.78 -90.6904 -226.38 -209.25 -245v173.31h57.7803l11 71.6904h-68.7803v46.5498c0 19.6104 9.61035 38.7305 40.4102 38.7305h31.2803v61s-28.3809 4.83984 -55.5205 4.83984c-56.6699 0 -93.6699 -34.3301 -93.6699 -96.4805v-54.6396h-63v-71.6904h63\\nv-173.31c-118.56 18.6201 -209.25 121.22 -209.25 245c0 137 111 248 248 248s248 -111 248 -248z\\\" />\\n    <glyph glyph-name=\\\"github\\\" unicode=\\\"&#xf09b;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M165.9 50.5996c0 -2 -2.30078 -3.59961 -5.2002 -3.59961c-3.2998 -0.299805 -5.60059 1.2998 -5.60059 3.59961c0 2 2.30078 3.60059 5.2002 3.60059c3 0.299805 5.60059 -1.2998 5.60059 -3.60059zM134.8 55.0996c0.700195 2 3.60059 3 6.2002 2.30078\\nc3 -0.900391 4.90039 -3.2002 4.2998 -5.2002c-0.599609 -2 -3.59961 -3 -6.2002 -2c-3 0.599609 -5 2.89941 -4.2998 4.89941zM179 56.7998c2.90039 0.299805 5.59961 -1 5.90039 -2.89941c0.299805 -2 -1.7002 -3.90039 -4.60059 -4.60059\\nc-3 -0.700195 -5.59961 0.600586 -5.89941 2.60059c-0.300781 2.2998 1.69922 4.19922 4.59961 4.89941zM244.8 440c138.7 0 251.2 -105.3 251.2 -244c0 -110.9 -67.7998 -205.8 -167.8 -239c-12.7002 -2.2998 -17.2998 5.59961 -17.2998 12.0996\\nc0 8.2002 0.299805 49.9004 0.299805 83.6006c0 23.5 -7.7998 38.5 -17 46.3994c55.8994 6.30078 114.8 14 114.8 110.5c0 27.4004 -9.7998 41.2002 -25.7998 58.9004c2.59961 6.5 11.0996 33.2002 -2.60059 67.9004c-20.8994 6.59961 -69 -27 -69 -27\\nc-20 5.59961 -41.5 8.5 -62.7998 8.5s-42.7998 -2.90039 -62.7998 -8.5c0 0 -48.0996 33.5 -69 27c-13.7002 -34.6006 -5.2002 -61.4004 -2.59961 -67.9004c-16 -17.5996 -23.6006 -31.4004 -23.6006 -58.9004c0 -96.1992 56.4004 -104.3 112.3 -110.5\\nc-7.19922 -6.59961 -13.6992 -17.6992 -16 -33.6992c-14.2998 -6.60059 -51 -17.7002 -72.8994 20.8994c-13.7002 23.7998 -38.6006 25.7998 -38.6006 25.7998c-24.5 0.300781 -1.59961 -15.3994 -1.59961 -15.3994c16.4004 -7.5 27.7998 -36.6006 27.7998 -36.6006\\nc14.7002 -44.7998 84.7002 -29.7998 84.7002 -29.7998c0 -21 0.299805 -55.2002 0.299805 -61.3994c0 -6.5 -4.5 -14.4004 -17.2998 -12.1006c-99.7002 33.4004 -169.5 128.3 -169.5 239.2c0 138.7 106.1 244 244.8 244zM97.2002 95.0996\\nc1.2998 1.30078 3.59961 0.600586 5.2002 -1c1.69922 -1.89941 2 -4.19922 0.699219 -5.19922c-1.2998 -1.30078 -3.59961 -0.600586 -5.19922 1c-1.7002 1.89941 -2 4.19922 -0.700195 5.19922zM86.4004 103.2c0.699219 1 2.2998 1.2998 4.2998 0.700195\\nc2 -1 3 -2.60059 2.2998 -3.90039c-0.700195 -1.40039 -2.7002 -1.7002 -4.2998 -0.700195c-2 1 -3 2.60059 -2.2998 3.90039zM118.8 67.5996c1.2998 1.60059 4.2998 1.30078 6.5 -1c2 -1.89941 2.60059 -4.89941 1.2998 -6.19922\\nc-1.2998 -1.60059 -4.19922 -1.30078 -6.5 1c-2.2998 1.89941 -2.89941 4.89941 -1.2998 6.19922zM107.4 82.2998c1.59961 1.2998 4.19922 0.299805 5.59961 -2c1.59961 -2.2998 1.59961 -4.89941 0 -6.2002c-1.2998 -1 -4 0 -5.59961 2.30078\\nc-1.60059 2.2998 -1.60059 4.89941 0 5.89941z\\\" />\\n    <glyph glyph-name=\\\"pinterest\\\" unicode=\\\"&#xf0d2;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M496 192c0 -137 -111 -248 -248 -248c-25.5996 0 -50.2002 3.90039 -73.4004 11.0996c10.1006 16.5 25.2002 43.5 30.8008 65c3 11.6006 15.3994 59 15.3994 59c8.10059 -15.3994 31.7002 -28.5 56.7998 -28.5c74.8008 0 128.7 68.8008 128.7 154.301\\nc0 81.8994 -66.8994 143.199 -152.899 143.199c-107 0 -163.9 -71.7998 -163.9 -150.1c0 -36.4004 19.4004 -81.7002 50.2998 -96.0996c4.7002 -2.2002 7.2002 -1.2002 8.2998 3.2998c0.800781 3.39941 5 20.2998 6.90039 28.0996\\nc0.599609 2.5 0.299805 4.7002 -1.7002 7.10059c-10.0996 12.5 -18.2998 35.2998 -18.2998 56.5996c0 54.7002 41.4004 107.6 112 107.6c60.9004 0 103.6 -41.5 103.6 -100.899c0 -67.1006 -33.8994 -113.601 -78 -113.601c-24.2998 0 -42.5996 20.1006 -36.6992 44.8008\\nc7 29.5 20.5 61.2998 20.5 82.5996c0 19 -10.2002 34.9004 -31.4004 34.9004c-24.9004 0 -44.9004 -25.7002 -44.9004 -60.2002c0 -22 7.40039 -36.7998 7.40039 -36.7998s-24.5 -103.801 -29 -123.2c-5 -21.4004 -3 -51.6006 -0.900391 -71.2002\\nc-92.1992 36.0996 -157.6 125.9 -157.6 231c0 137 111 248 248 248s248 -111 248 -248z\\\" />\\n    <glyph glyph-name=\\\"pinterest-square\\\" unicode=\\\"&#xf0d3;\\\" \\nd=\\\"M448 368v-352c0 -26.5 -21.5 -48 -48 -48h-245.6c9.7998 16.4004 22.3994 40 27.3994 59.2998c3 11.5 15.2998 58.4004 15.2998 58.4004c8 -15.2998 31.4004 -28.2002 56.3008 -28.2002c74.0996 0 127.399 68.0996 127.399 152.7\\nc0 81.0996 -66.2002 141.8 -151.399 141.8c-106 0 -162.2 -71.0996 -162.2 -148.6c0 -36 19.2002 -80.8008 49.7998 -95.1006c4.7002 -2.2002 7.09961 -1.2002 8.2002 3.2998c0.799805 3.40039 5 20.1006 6.7998 27.8008c0.599609 2.5 0.299805 4.59961 -1.7002 7\\nc-10.0996 12.2998 -18.2998 34.8994 -18.2998 56c0 54.1992 41 106.6 110.9 106.6c60.2998 0 102.6 -41.0996 102.6 -99.9004c0 -66.3994 -33.5 -112.399 -77.2002 -112.399c-24.0996 0 -42.0996 19.8994 -36.3994 44.3994c6.89941 29.2002 20.2998 60.7002 20.2998 81.8008\\nc0 53 -75.5 45.6992 -75.5 -25c0 -21.7002 7.2998 -36.5 7.2998 -36.5c-31.4004 -132.801 -36.0996 -134.5 -29.5996 -192.601l2.19922 -0.799805h-88.5996c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48z\\\" />\\n    <glyph glyph-name=\\\"google-plus-square\\\" unicode=\\\"&#xf0d4;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM164 92c57.7002 0 96 40.5 96 97.5996c0 6.5 -0.599609 11.6006 -1.59961 16.6006h-94.4004v-34.4004h56.9004\\nc-2.40039 -14.5996 -17.2002 -43.0996 -56.8008 -43.0996c-34.0996 0 -61.8994 28.2998 -61.8994 63.2002c0 35 27.7998 63.1992 61.8994 63.1992c19.5 0 32.4004 -8.2998 39.8008 -15.3994l27.0996 26.0996c-17.5 16.4004 -40 26.2002 -67 26.2002\\nc-55.2998 0 -100 -44.7002 -100 -100s44.7002 -100 100 -100zM384 173.8v29.2002h-29v29h-29.2002v-29h-29v-29.2002h29v-29h29.2002v29h29z\\\" />\\n    <glyph glyph-name=\\\"google-plus-g\\\" unicode=\\\"&#xf0d5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M386.061 219.504c1.83398 -9.69238 3.14355 -19.3838 3.14355 -31.9561c0 -109.753 -73.6055 -187.548 -184.404 -187.548c-106.084 0 -192 85.915 -192 192s85.916 192 192 192c51.8643 0 95.083 -18.8594 128.611 -50.292l-52.126 -50.0303\\nc-14.1455 13.6211 -39.0283 29.5996 -76.4854 29.5996c-65.4834 0 -118.92 -54.2217 -118.92 -121.277s53.4365 -121.277 118.92 -121.277c75.9609 0 104.514 54.7451 108.965 82.7734h-108.965v66.0088h181.261v-0.000976562zM571.467 213.067h55.7334v-56.001h-55.7334\\nv-55.7334h-56.001v55.7334h-55.7324v56.001h55.7324v55.7324h56.001v-55.7324z\\\" />\\n    <glyph glyph-name=\\\"linkedin-in\\\" unicode=\\\"&#xf0e1;\\\" \\nd=\\\"M100.28 0h-92.8799v299.1h92.8799v-299.1zM53.79 339.9c-29.7002 0 -53.79 24.5996 -53.79 54.2998c0 29.6914 24.0977 53.79 53.79 53.79s53.79 -24.0986 53.79 -53.79c0 -29.7002 -24.0996 -54.2998 -53.79 -54.2998zM447.9 0h-92.6807v145.6\\nc0 34.7002 -0.700195 79.2002 -48.29 79.2002c-48.29 0 -55.6895 -37.7002 -55.6895 -76.7002v-148.1h-92.7803v299.1h89.0801v-40.7998h1.2998c12.4004 23.5 42.6904 48.2998 87.8799 48.2998c94 0 111.28 -61.8994 111.28 -142.3v-164.3h-0.0996094z\\\" />\\n    <glyph glyph-name=\\\"github-alt\\\" unicode=\\\"&#xf113;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M186.1 119.3c0 -20.8994 -10.8994 -55.0996 -36.6992 -55.0996c-25.8008 0 -36.7002 34.2002 -36.7002 55.0996c0 20.9004 10.8994 55.1006 36.7002 55.1006c25.7998 0 36.6992 -34.2002 36.6992 -55.1006zM480 169.8c0 -31.8994 -3.2002 -65.7002 -17.5 -95\\nc-37.9004 -76.5996 -142.1 -74.7998 -216.7 -74.7998c-75.7998 0 -186.2 -2.7002 -225.6 74.7998c-14.6006 29 -20.2002 63.1006 -20.2002 95c0 41.9004 13.9004 81.5 41.5 113.601c-5.2002 15.7998 -7.7002 32.3994 -7.7002 48.7998\\nc0 21.5 4.90039 32.2998 14.6006 51.7998c45.2998 0 74.2998 -9 108.8 -36c29 6.90039 58.7998 10 88.7002 10c27 0 54.1992 -2.90039 80.3994 -9.2002c34 26.7002 63 35.2002 107.8 35.2002c9.80078 -19.5 14.6006 -30.2998 14.6006 -51.7998\\nc0 -16.4004 -2.60059 -32.7002 -7.7002 -48.2002c27.5 -32.4004 39 -72.2998 39 -114.2zM415.7 119.3c0 43.9004 -26.7002 82.6006 -73.5 82.6006c-18.9004 0 -37 -3.40039 -56 -6c-14.9004 -2.30078 -29.7998 -3.2002 -45.1006 -3.2002\\nc-15.1992 0 -30.0996 0.899414 -45.0996 3.2002c-18.7002 2.59961 -37 6 -56 6c-46.7998 0 -73.5 -38.7002 -73.5 -82.6006c0 -87.7998 80.4004 -101.3 150.4 -101.3h48.1992c70.3008 0 150.601 13.4004 150.601 101.3zM333.1 174.4\\nc25.8008 0 36.7002 -34.2002 36.7002 -55.1006c0 -20.8994 -10.8994 -55.0996 -36.7002 -55.0996c-25.7998 0 -36.6992 34.2002 -36.6992 55.0996c0 20.9004 10.8994 55.1006 36.6992 55.1006z\\\" />\\n    <glyph glyph-name=\\\"maxcdn\\\" unicode=\\\"&#xf136;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M461.1 5.2998h-97.3994l51.8994 242.7c2.30078 10.2002 0.900391 19.5 -4.39941 25.7002c-5 6.09961 -13.7002 9.59961 -24.2002 9.59961h-49.2998l-59.5 -278h-97.4004l59.5 278h-83.3994l-59.5 -278h-97.4004l59.5 278l-44.5996 95.4004h372.1\\nc39.4004 0 75.2998 -16.2998 98.2998 -44.9004c23.2998 -28.5996 31.7998 -67.3994 23.6006 -105.899z\\\" />\\n    <glyph glyph-name=\\\"html5\\\" unicode=\\\"&#xf13b;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M0 416h384l-34.9004 -395.8l-157.6 -52.2002l-156.6 52.2002zM308.2 288.1l4.39941 47.7002h-241.1l12.7998 -145.6h166.9l-6 -62.2002l-53.7002 -14.5l-53.5 14.5l-3.5 38.0996h-47.7002l6 -75.7998l98.7002 -27.2998h1.09961v0.299805l97.9004 27l13.5996 148.4h-175.6\\nl-4.09961 49.3994h183.8z\\\" />\\n    <glyph glyph-name=\\\"css3\\\" unicode=\\\"&#xf13c;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M480 416l-64 -368l-223.3 -80l-192.7 80l19.5996 94.7998h82l-8 -40.5996l116.4 -44.4004l134.1 44.4004l18.8008 97.0996h-333.4l16 82h333.7l10.5 52.7002h-333.4l16.2998 82h407.4z\\\" />\\n    <glyph glyph-name=\\\"btc\\\" unicode=\\\"&#xf15a;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M310.204 205.362c46.0059 -11.0283 74.9971 -38.4443 69.3262 -99.8906c-7.24805 -76.5723 -61.5967 -97.0547 -142.896 -101.467v-68.0049h-48.5273v66.7451c-12.29 0 -25.21 0 -38.4443 0.314453v-67.0596h-48.5283v68.0049s-8.88867 0.31543 -97.3701 0.31543\\nl9.76758 57.666c34.7305 -0.614258 50.3301 -3.4209 53.2549 16.0703v217.43c-4.60645 24.5664 -24.709 22.1045 -63.0234 21.4268v51.6777c58.748 -0.275391 79.5283 -0.539062 97.3701 0v79.4092h48.5283v-77.833c12.9189 0.31543 25.8389 0.629883 38.4443 0.629883\\nv77.2031h48.5273v-79.4092c62.3926 -5.35547 109.492 -24.5781 114.851 -81.9287c4.09668 -41.9102 -13.5508 -67.1201 -41.2803 -81.2998zM150.608 313.447v-96.7402c27.416 0 113.126 -6.30273 113.126 48.2119c0 57.0352 -85.7109 48.5283 -113.126 48.5283z\\nM150.608 61.6709c32.7715 0 133.126 -6.93262 133.127 53.2529c0 62.3936 -100.355 53.2549 -133.127 53.2549v-106.508z\\\" />\\n    <glyph glyph-name=\\\"youtube\\\" unicode=\\\"&#xf167;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M549.655 323.917c11.4121 -42.8672 11.4121 -132.305 11.4121 -132.305s0 -89.4385 -11.4121 -132.306c-6.28125 -23.6494 -24.7871 -41.5 -48.2842 -47.8203c-42.5908 -11.4863 -213.371 -11.4863 -213.371 -11.4863s-170.78 0 -213.371 11.4863\\nc-23.4971 6.32031 -42.0029 24.1709 -48.2842 47.8203c-11.4121 42.8672 -11.4121 132.306 -11.4121 132.306s0 89.4375 11.4121 132.305c6.28125 23.6504 24.7871 42.2754 48.2842 48.5967c42.5908 11.4863 213.371 11.4863 213.371 11.4863s170.781 0 213.371 -11.4863\\nc23.4971 -6.32031 42.0029 -24.9463 48.2842 -48.5967zM232.145 110.409l142.739 81.2012l-142.739 81.2051v-162.406z\\\" />\\n    <glyph glyph-name=\\\"xing\\\" unicode=\\\"&#xf168;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M162.7 238c-1.7998 -3.2998 -25.2002 -44.4004 -70.1006 -123.5c-4.89941 -8.2998 -10.7998 -12.5 -17.6992 -12.5h-65.1006c-7.7002 0 -12.0996 7.5 -8.5 14.4004l69 121.3c0.200195 0 0.200195 0.0996094 0 0.299805l-43.8994 75.5996\\nc-4.30078 7.80078 0.299805 14.1006 8.5 14.1006h65.0996c7.2998 0 13.2998 -4.10059 18 -12.2002zM382.6 401.9l-144 -253v-0.300781l91.6006 -166.6c3.89941 -7.09961 0.200195 -14.0996 -8.5 -14.0996h-65.2002c-7.59961 0 -13.5996 4 -18 12.1992l-92.4004 168.5\\nc3.30078 5.80078 51.5 90.8008 144.801 255.2c4.59961 8.10059 10.3994 12.2002 17.5 12.2002h65.6992c8 0 12.3008 -6.7002 8.5 -14.0996z\\\" />\\n    <glyph glyph-name=\\\"xing-square\\\" unicode=\\\"&#xf169;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM140.4 127.8c4.89941 0 9.09961 2.90039 12.5996 9.10059c32.0996 56.5 48.7998 85.8994 50.0996 88.1992l-31.8994 55.3008\\nc-3.40039 5.7998 -7.7002 8.69922 -12.9004 8.69922h-46.5996c-5.7998 0 -9 -4.5 -6 -10.0996l31.3994 -54c0.100586 -0.0996094 0.100586 -0.200195 0 -0.200195l-49.2998 -86.7002c-2.7002 -5 0.5 -10.2998 6 -10.2998h46.6006zM360.1 341.9\\nc2.80078 5.2998 -0.299805 10.0996 -6 10h-46.8994c-5.10059 0 -9.2002 -2.90039 -12.5 -8.7002c-66.6006 -117.4 -101.101 -178.2 -103.4 -182.3l66 -120.301c3.2002 -5.7998 7.40039 -8.69922 12.9004 -8.69922h46.5996c6.10059 0 8.7998 5 6 10.0996l-65.5 119v0.200195z\\n\\\" />\\n    <glyph glyph-name=\\\"dropbox\\\" unicode=\\\"&#xf16b;\\\" horiz-adv-x=\\\"528\\\" \\nd=\\\"M264.4 331.7l-132 -84.2998l132 -84.3008l-132 -84.2998l-132.4 85.1006l132.3 84.2998l-132.3 83.5l132.3 84.2998zM131.6 52.2998l132 84.2998l132 -84.2998l-132 -84.2998zM264.4 163.9l132 84.2998l-132 83.5996l131.3 84.2002l132.3 -84.2998l-132.3 -84.2998\\nl132.3 -84.2002l-132.3 -84.2998z\\\" />\\n    <glyph glyph-name=\\\"stack-overflow\\\" unicode=\\\"&#xf16c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M290.7 137l-8.2002 -39l-195.7 41l8.2002 39.2998zM341.7 224l-25.5 -30.7998l-153.5 128.3l25.5 30.7998zM310.5 184.3l-16.7998 -36.2998l-181.2 84.5l16.7002 36.5zM262 416l119.3 -160.3l-32 -24l-119.3 160.3zM282.5 88v-39.7002h-200v39.7002h200zM322.2 8v120h40\\nv-160h-359.5v160h40v-120h279.5z\\\" />\\n    <glyph glyph-name=\\\"instagram\\\" unicode=\\\"&#xf16d;\\\" \\nd=\\\"M224.1 307c63.6006 0 114.9 -51.2998 114.9 -114.9c0 -63.5996 -51.2998 -114.899 -114.9 -114.899c-63.5996 0 -114.899 51.2998 -114.899 114.899c0 63.6006 51.2998 114.9 114.899 114.9zM224.1 117.4c41.1006 0 74.7002 33.5 74.7002 74.6992\\nc0 41.2002 -33.5 74.7002 -74.7002 74.7002c-41.1992 0 -74.6992 -33.5 -74.6992 -74.7002c0 -41.1992 33.5996 -74.6992 74.6992 -74.6992zM370.5 311.7c0 -14.9004 -12 -26.7998 -26.7998 -26.7998c-14.9004 0 -26.7998 12 -26.7998 26.7998s12 26.7998 26.7998 26.7998\\ns26.7998 -12 26.7998 -26.7998zM446.6 284.5c2.10059 -37 2.10059 -147.8 0 -184.8c-1.7998 -35.9004 -10 -67.7002 -36.1992 -93.9004c-26.2002 -26.2998 -58 -34.5 -93.9004 -36.2002c-37 -2.09961 -147.9 -2.09961 -184.9 0\\nc-35.8994 1.80078 -67.5996 10 -93.8994 36.2002s-34.5 58 -36.2002 93.9004c-2.09961 37 -2.09961 147.899 0 184.899c1.7998 35.9004 9.90039 67.7002 36.2002 93.9004s58.0996 34.4004 93.8994 36.0996c37 2.10059 147.9 2.10059 184.9 0\\nc35.9004 -1.7998 67.7002 -10 93.9004 -36.1992c26.2998 -26.2002 34.5 -58 36.1992 -93.9004zM398.8 60c11.7002 29.4004 9 99.5 9 132.1c0 32.6006 2.7002 102.601 -9 132.101c-7.89941 19.7002 -23 34.7998 -42.5996 42.5996c-29.4004 11.6006 -99.5 9 -132.101 9\\nc-32.5996 0 -102.6 2.7002 -132.1 -9c-19.7002 -7.89941 -34.7998 -23 -42.5996 -42.5996c-11.6006 -29.4004 -9 -99.5 -9 -132.101c0 -32.5996 -2.7002 -102.6 9 -132.1c7.89941 -19.7002 23 -34.7998 42.5996 -42.5996c29.4004 -11.6006 99.5 -9 132.1 -9\\nc32.6006 0 102.601 -2.7002 132.101 9c19.7002 7.89941 34.7998 23 42.5996 42.5996z\\\" />\\n    <glyph glyph-name=\\\"flickr\\\" unicode=\\\"&#xf16e;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM144.5 129c35.0996 0 63.5 28.4004 63.5 63.5s-28.4004 63.5 -63.5 63.5s-63.5 -28.4004 -63.5 -63.5s28.4004 -63.5 63.5 -63.5z\\nM303.5 129c35.0996 0 63.5 28.4004 63.5 63.5s-28.4004 63.5 -63.5 63.5s-63.5 -28.4004 -63.5 -63.5s28.4004 -63.5 63.5 -63.5z\\\" />\\n    <glyph glyph-name=\\\"adn\\\" unicode=\\\"&#xf170;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 280.5l64.9004 -98.7998h-129.801zM496 192c0 -136.9 -111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248s248 -111.1 248 -248zM396.2 109.3l-148.2 223.2l-148.2 -223.2h30.4004l33.5996 51.7002h168.601l33.5996 -51.7002h30.2002z\\\" />\\n    <glyph glyph-name=\\\"bitbucket\\\" unicode=\\\"&#xf171;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M22.2002 416l466.8 -0.200195c0.776367 -0.0107422 2.03027 -0.100586 2.7998 -0.200195c7.39648 -1.21875 13.3984 -8.29102 13.3984 -15.7871c0 -0.697266 -0.0888672 -1.82324 -0.198242 -2.5127l-67.9004 -416.8\\nc-1.2168 -7.39746 -8.29004 -13.4014 -15.7871 -13.4014c-0.0585938 0 -0.154297 0.000976562 -0.212891 0.000976562h-325.699c-10.1016 0.0820312 -19.6445 8.23535 -21.3008 18.2002l-67.8994 412.101c-0.0966797 0.769531 -0.186523 2.02344 -0.200195 2.7998\\nc0.108398 8.72168 7.27539 15.8008 15.999 15.8008c0.0556641 0 0.145508 0 0.201172 -0.000976562zM308.1 118.2l25.2002 147h-157.3l28.0996 -147h104z\\\" />\\n    <glyph glyph-name=\\\"tumblr\\\" unicode=\\\"&#xf173;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M309.8 -32.2998c-13.5996 -14.5 -50 -31.7002 -97.3994 -31.7002c-120.801 0 -147 88.7998 -147 140.6v144h-47.5c-5.5 0 -10 4.5 -10 10v68c0 7.2002 4.5 13.6006 11.2998 16c62 21.8008 81.5 76 84.2998 117.101c0.799805 11 6.5 16.2998 16.0996 16.2998h70.9004\\nc5.5 0 10 -4.5 10 -10v-115.2h83c5.5 0 10 -4.39941 10 -9.89941v-81.7002c0 -5.5 -4.5 -10 -10 -10h-83.4004v-133.2c0 -34.2002 23.7002 -53.5996 68 -35.7998c4.80078 1.89941 9 3.2002 12.7002 2.2002c3.5 -0.900391 5.7998 -3.40039 7.40039 -7.90039l22 -64.2998\\nc1.7998 -5 3.2998 -10.6006 -0.400391 -14.5z\\\" />\\n    <glyph glyph-name=\\\"tumblr-square\\\" unicode=\\\"&#xf174;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM317.7 51.7998c2.2998 2.40039 1.2998 5.90039 0.299805 9.10059l-13.7998 40.1992c-1 2.80078 -2.40039 4.40039 -4.60059 4.90039\\nc-2.39941 0.599609 -5 -0.200195 -8 -1.40039c-27.6992 -11.0996 -42.5 1 -42.5 22.4004v83.2998h52.1006c3.39941 0 6.2002 2.7998 6.2002 6.2002v51.0996c0 3.40039 -2.80078 6.2002 -6.2002 6.2002h-51.9004v72c0 3.40039 -2.7998 6.2002 -6.2002 6.2002h-44.2998\\nc-5.89941 0 -9.5 -3.2998 -10 -10.2002c-1.7998 -25.7002 -13.8994 -59.5 -52.7002 -73.2002c-4.2998 -1.5 -7.09961 -5.5 -7.09961 -10v-42.5c0 -3.39941 2.7998 -6.19922 6.2002 -6.19922h29.7002v-90c0 -32.4004 16.3994 -87.9004 91.8994 -87.9004\\nc29.7002 0 52.4004 10.7002 60.9004 19.7998z\\\" />\\n    <glyph glyph-name=\\\"apple\\\" unicode=\\\"&#xf179;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M318.7 179.3c0 -1.89941 -3.5 -61.2002 61.7002 -91.8994c-12.2002 -36.8008 -54 -118.601 -102.601 -119.301c-28.0996 0 -44.5996 17.9004 -76.3994 17.9004c-32.8008 0 -50.6006 -17.2998 -75.8008 -17.9004c-48.1992 -1.5 -94.3994 88.5 -107.199 125.2\\nc-9.60059 27.9336 -14.4004 55 -14.4004 81.2002c0 88.7002 59.2998 132.3 115.1 133.2c27 0 61.4004 -19.7002 76.4004 -19.7002c14.2002 0 53 23.5 88.5 20.7002c37.5 -2.90039 65.9004 -17.7002 84.7002 -44.6006c-33.6006 -20.3994 -50.2002 -48.0996 -50 -84.7998z\\nM262.1 343.5c-19.5996 -22.9004 -43.3994 -36.2998 -69.5 -34.2998c-2.19922 27.5996 8.10059 52.0996 25.6006 71.8994c15.8994 18.5 43.7998 33.5 67.8994 34.9004c0.800781 -10.5996 3.30078 -40.0996 -24 -72.5z\\\" />\\n    <glyph glyph-name=\\\"windows\\\" unicode=\\\"&#xf17a;\\\" \\nd=\\\"M0 354.3l183.6 25.2998v-177.399h-183.6v152.1zM0 29.7002v149.899h183.6v-175.199zM203.8 1.7002v177.899h244.2v-211.6zM203.8 382.3l244.2 33.7002v-213.8h-244.2v180.1z\\\" />\\n    <glyph glyph-name=\\\"android\\\" unicode=\\\"&#xf17b;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M420.55 146.07c-13.248 0 -24 10.752 -24 24s10.752 24 24 24s24 -10.752 24 -24s-10.752 -24 -24 -24zM155.45 146.07c-13.248 0 -24 10.752 -24 24s10.752 24 24 24s24 -10.752 24 -24s-10.752 -24 -24 -24zM429.15 290.55l47.9395 83\\nc0.936523 1.39551 1.69629 3.8916 1.69629 5.57227c0 5.51953 -4.47949 10 -10 10c-3.43066 0 -7.44727 -2.49609 -8.96582 -5.57227v0l-48.54 -84.0693c-32.4678 14.5615 -87.6973 26.3789 -123.28 26.3789s-90.8125 -11.8174 -123.28 -26.3789l-48.54 84.0693\\nc-1.51855 3.07617 -5.53516 5.57227 -8.96582 5.57227c-5.52051 0 -10 -4.48047 -10 -10c0 -1.68066 0.759766 -4.17676 1.69629 -5.57227v0l47.9395 -83c-82.3193 -44.7695 -138.609 -128.1 -146.85 -226.55h576c-8.24023 98.4502 -64.54 181.78 -146.85 226.55z\\\" />\\n    <glyph glyph-name=\\\"linux\\\" unicode=\\\"&#xf17c;\\\" \\nd=\\\"M220.8 324.7c-1.09961 0.599609 -3.09961 0.399414 -3.39941 1.7002c-0.200195 0.399414 0.199219 0.899414 0.599609 1.09961c1.59961 0.900391 3.7998 0.599609 5.5 -0.0996094c1.2998 -0.600586 3.40039 -1.5 3.2002 -2.90039\\nc-0.100586 -1.09961 -1.7998 -1.5 -2.90039 -1.5c-1.2002 0 -2 1.2002 -3 1.7002zM198.9 323c-1 -0.0996094 -2.7002 0.400391 -2.80078 1.40039c-0.199219 1.39941 1.90039 2.2998 3.2002 2.89941c1.7002 0.700195 3.90039 1 5.5 0.100586\\nc0.400391 -0.200195 0.799805 -0.700195 0.600586 -1.10059c-0.400391 -1.2002 -2.40039 -1 -3.5 -1.59961c-1 -0.5 -1.80078 -1.7002 -3 -1.7002zM420 44.2002c11.0996 -12.4004 15.9004 -21.5 15.5 -29.7002c-0.5 -8.2002 -6.5 -13.7998 -13.9004 -18.2998\\nc-14.8994 -9 -37.2998 -15.7998 -50.8994 -32.2002c-14.2002 -16.9004 -31.7002 -26.5996 -48.2998 -27.9004c-16.5 -1.2998 -32 6.30078 -40.3008 23v0.100586c-1.09961 2.09961 -1.89941 4.39941 -2.5 6.7002c-21.5 -1.2002 -40.1992 5.2998 -55.0996 4.09961\\nc-22 -1.2002 -35.7998 -6.5 -48.2998 -6.59961c-4.7998 -10.6006 -14.2998 -17.6006 -25.9004 -20.2002c-16 -3.7002 -36.0996 0 -55.8994 10.3994c-18.5 9.80078 -42 8.90039 -59.3008 12.5c-8.69922 1.80078 -16.2998 5 -20.0996 12.3008\\nc-3.7002 7.2998 -3 17.2998 2.2002 31.6992c1.7002 5.10059 0.399414 12.7002 -0.799805 20.8008c-0.600586 3.89941 -1.2002 7.89941 -1.2002 11.7998c0 4.2998 0.700195 8.5 2.7998 12.3994c4.5 8.5 11.7998 12.1006 18.5 14.5c6.7002 2.40039 12.7998 4 17 8.30078\\nc5.2002 5.5 10.0996 14.3994 16.5996 20.1992c-2.59961 17.2002 0.200195 35.4004 6.2002 53.3008c12.6006 37.8994 39.2002 74.1992 58.1006 96.6992c16.0996 22.9004 20.7998 41.3008 22.5 64.7002c1.09961 31.7998 -24.5 135.4 77.8994 135.2\\nc80.9004 -0.0996094 76.2998 -85.4004 75.7998 -131.3c-0.299805 -30.1006 16.3008 -50.5 33.4004 -72c15.2002 -18 35.0996 -44.2998 46.5 -74.4004c9.2998 -24.5996 12.9004 -51.7998 3.7002 -79.0996c1.39941 -0.5 2.7998 -1.2002 4.09961 -2\\nc1.40039 -0.799805 2.7002 -1.7998 4 -2.90039c6.60059 -5.59961 8.7002 -14.2998 10.5 -22.3994c1.90039 -8.10059 3.60059 -15.7002 7.2002 -19.7002zM223.7 360.7c-3.2002 -7.2002 -3.90039 -14.9004 -2.90039 -21.7998c3.60059 -0.900391 8.90039 -2.40039 13 -4.40039\\nc-2.09961 12.2002 4.5 23.5 11.7998 23c8.90039 -0.299805 13.9004 -15.5 9.10059 -27.2998c-0.799805 -1.90039 -2.7998 -3.40039 -3.90039 -4.60059c6.7002 -2.2998 11 -4.09961 12.6006 -4.89941c7.89941 9.5 10.7998 26.2002 4.2998 40.3994\\nc-9.7998 21.4004 -34.2002 21.8008 -44 -0.399414zM183 372.2c-18.9004 0 -24 -37.5 -8.40039 -52.1006c7.80078 5.7002 6.90039 4.7002 5.90039 5.5c-8 6.90039 -6.59961 27.4004 1.7998 28.1006c6.2998 0.5 10.7998 -10.7002 9.60059 -19.6006\\nc3.09961 2.10059 6.69922 3.60059 10.1992 4.60059c1.7002 19.2998 -9 33.5 -19.0996 33.5zM169.4 311.5c-4.2002 -3.2998 -5.60059 -7.40039 -4.2002 -12.2998c1.5 -4.90039 6.09961 -10.5 14.7002 -15.2998c7.7998 -4.60059 12 -11.5 20 -15\\nc2.59961 -1.10059 5.69922 -1.90039 9.59961 -2.10059c18.4004 -1.09961 27.0996 11.2998 38.2002 14.9004c11.7002 3.7002 20.0996 11 22.7002 18.0996c3.19922 8.5 -2.10059 14.7002 -10.5 18.2002c-11.3008 4.90039 -16.3008 5.2002 -22.6006 9.2998\\nc-10.2998 6.60059 -18.7998 8.90039 -25.8994 8.90039c-14.4004 0 -23.2002 -9.7998 -27.9004 -14.2002c-0.5 -0.5 -7.90039 -5.90039 -14.0996 -10.5zM172.7 -22.5c2.09961 20.5 -31.5 49 -41 68.9004l-19.6006 35.5996c-6.7998 9.2002 -13.7998 14.7998 -21.8994 16\\nc-7.7002 1.2002 -12.6006 -1.40039 -17.7002 -6.90039c-4.7998 -5.09961 -8.7998 -12.2998 -14.2998 -18c-7.7998 -6.5 -9.2998 -6.19922 -19.6006 -9.89941c-6.2998 -2.2002 -11.2998 -4.60059 -14.7998 -11.2998c-2.7002 -5 -2.09961 -12.2002 -0.899414 -20\\nc1.19922 -7.90039 3 -16.3008 0.599609 -23.9004v-0.200195c-5 -13.7002 -5 -21.7002 -2.59961 -26.3994c7.89941 -15.4004 46.5996 -6.10059 76.5 -21.9004c31.3994 -16.4004 72.5996 -17.0996 75.2998 18zM171.3 3.40039c37.6006 -25.7002 82.2002 -15.7002 114.3 7.19922\\nc3.2002 11 6.30078 21.3008 6.80078 29c0.799805 15.2002 1.59961 28.7002 4.39941 39.9004c3.10059 12.5996 9.2998 23.0996 21.4004 27.2998c2.2998 21.1006 18.7002 21.1006 38.2998 12.5c18.9004 -8.5 26 -16 22.7998 -26.0996c1 0 2 0.0996094 4.2002 0\\nc5.2002 16.8994 -14.2998 28 -30.7002 34.7998c2.90039 12 2.40039 24.0996 -0.399414 35.7002c-6 25.2998 -22.6006 47.7998 -35.2002 59c-2.2998 0.0996094 -2.10059 -1.90039 2.59961 -6.5c11.6006 -10.7002 37.1006 -49.2002 23.2998 -84.9004\\nc-3.89941 1 -7.59961 1.5 -10.8994 1.40039c-5.2998 29.0996 -17.5 53.2002 -23.6006 64.5996c-11.5 21.4004 -29.5 65.2998 -37.1992 95.7002c-4.5 -6.40039 -12.4004 -11.9004 -22.3008 -15c-4.69922 -1.5 -9.69922 -5.5 -15.8994 -9\\nc-13.9004 -8 -30 -8.7998 -42.4004 1.2002c-4.5 3.59961 -8 7.59961 -12.5996 10.2998c-1.60059 0.900391 -5.10059 3.2998 -6.2002 4.09961c-2 -37.7998 -27.2998 -85.2998 -39.2998 -112.699c-8.2998 -19.7002 -13.2002 -40.8008 -13.7998 -61.5\\nc-21.8008 29.0996 -5.90039 66.2998 2.59961 82.3994c9.5 17.6006 11 22.5 8.7002 20.7998c-8.60059 -14 -22 -36.2998 -27.2002 -59.1992c-2.7002 -11.9004 -3.2002 -24 0.299805 -35.2002s11.1006 -21.5 24.6006 -29.9004c0 0 24.7998 -14.2998 38.2998 -32.5\\nc7.39941 -10 9.7002 -18.7002 7.39941 -24.8994c-2.5 -6.7002 -9.59961 -8.90039 -16.6992 -8.90039c4.7998 -6 10.2998 -13 14.3994 -19.5996zM428.7 14.9004c0.299805 5.09961 -3.10059 13 -13.7002 24.5996c-10 11.2998 -7.2002 33.0996 -17.0996 41.5996\\nc-6.90039 6 -13.6006 5.40039 -22.6006 5.10059c-7.7002 -8.7998 -25.7998 -19.6006 -38.3994 -16.2998c-11.5 2.89941 -18 16.2998 -18.8008 29.5c-0.299805 -0.200195 -0.699219 -0.300781 -1 -0.5c-7.09961 -3.90039 -11.0996 -10.8008 -13.6992 -21.1006\\nc-2.5 -10.2002 -3.40039 -23.5 -4.2002 -38.7002c-0.700195 -11.7998 -6.2002 -26.3994 -9.90039 -40.5996c-3.5 -13.2002 -5.7998 -25.2002 -1.09961 -36.2998c7.2002 -14.5 19.5 -20.4004 33.7002 -19.2998c14.1992 1.09961 30.3994 9.7998 43.5996 25.5\\nc22 26.5996 62.2998 29.6992 63.2002 46.5zM173.3 299.3c-3.5 2.7998 -3.09961 6.60059 -1.7002 6.5c2.40039 -0.299805 2.80078 -3.5 4.30078 -4.89941c2 -1.90039 4.59961 -4.40039 7.69922 -6.90039c6.2002 -4.90039 14.5 -9.7002 24.9004 -9.7002\\ns22.5 6 29.9004 10.2002c4.19922 2.40039 9.5 6.59961 13.8994 9.7998c3.40039 2.5 3.2002 5.40039 6 5.10059c2.7998 -0.300781 0.799805 -3.2002 -3.09961 -6.60059c-3.90039 -3.39941 -9.90039 -7.7998 -14.7998 -10.3994\\nc-9.30078 -4.90039 -20.2002 -10.8008 -31.8008 -10.8008c-11.5 0 -20.6992 5.40039 -27.2998 10.6006c-3.2998 2.59961 -6 5.2002 -8 7.09961z\\\" />\\n    <glyph glyph-name=\\\"dribbble\\\" unicode=\\\"&#xf17d;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M256 440c136.748 0 248 -111.252 248 -248s-111.252 -248 -248 -248s-248 111.252 -248 248s111.252 248 248 248zM419.97 325.634c-4.46582 -6.04102 -39.9629 -51.5459 -118.284 -83.5225c7.43652 -15.2217 12.8652 -27.5732 18.6172 -41.6143\\nc70.4844 8.86426 140.519 -5.34082 147.502 -6.81836c-0.46582 49.998 -18.332 95.9092 -47.835 131.955zM396.421 350.13c-52.0947 46.2188 -122.885 63.6816 -190.061 47.4893c5.85449 -7.83984 44.3281 -60.2324 79.04 -124.008\\nc75.3232 28.2324 107.211 71.0918 111.021 76.5186zM165.941 383.38c-59.2637 -27.9531 -103.562 -82.585 -117.298 -148.318c9.47461 -0.125 96.7471 -0.503906 195.834 25.8096c-35.0986 62.3926 -72.9512 114.85 -78.5361 122.509zM44.1699 191.677\\nc0 -54.4072 20.624 -104.082 54.457 -141.636c34.3369 58.7793 103.932 120.731 180.531 142.306c-5.31738 12.0342 -11.1104 24.0811 -17.1738 35.9492c-105.786 -31.6592 -208.438 -30.3359 -217.706 -30.1455c-0.0654297 -2.15137 -0.108398 -4.30762 -0.108398 -6.47363\\nzM125.977 24.5645c62.7539 -48.9355 144.656 -56.8955 212.769 -27.8828c-3.15039 18.585 -15.4492 83.3555 -45.1895 160.639c-85.4004 -29.1348 -145.452 -87.5234 -167.579 -132.756zM374.357 16.0752c47.5215 32.1338 81.3525 83.0371 90.7949 141.978\\nc-7.24707 2.28711 -65.5674 19.6816 -131.947 9.05566c27.7061 -76.1367 38.9805 -138.147 41.1523 -151.033z\\\" />\\n    <glyph glyph-name=\\\"skype\\\" unicode=\\\"&#xf17e;\\\" \\nd=\\\"M424.7 148.2c14.5996 -18.9004 23.2998 -42.5 23.2002 -68.1006c0 -61.7998 -50.2002 -112 -112 -112c-25.6006 0 -49.2002 8.7002 -68.2002 23.3008c-14.1006 -3 -28.9004 -4.7002 -43.7998 -4.7002c-113.4 0 -205.301 91.7998 -205.301 205.3\\nc0 14.9004 1.80078 29.7998 4.7002 43.7998c-14.5996 18.9004 -23.2998 42.5 -23.2998 68.2002c0 61.7998 50.2002 112 112 112c25.7002 0 49.2998 -8.7002 68.2998 -23.4004c14.1006 3 28.9004 4.7002 43.7998 4.7002c113.4 0 205.301 -91.7998 205.301 -205.3\\nc0 -14.9004 -1.80078 -29.7998 -4.7002 -43.7998zM230.1 56.7002c54.9004 0 112 27.3994 112 86.5c0 50.7998 -49.2998 68.2998 -90.6992 77.5996c-48.3008 11.2002 -69.1006 13.2002 -69.1006 33c0 15.5 16.2998 22.5 42 22.5c45.7998 0 46.7002 -33.5 75 -33.5\\nc18.9004 0 30.2998 14.9004 30.2998 31.7998c0 33.5 -55.6992 55.4004 -110.8 55.4004c-50.5 0 -109.1 -21.9004 -109.1 -81.0996c0 -65.2002 55.2998 -71.8008 117.8 -87.2002c26 -6.40039 42 -9.2998 42 -28c0 -14.9004 -16.5996 -26.2998 -42.2998 -26.2998\\nc-54 0 -56.9004 44.8994 -88.1006 44.8994c-20.5 0 -29.5 -14.5996 -29.5 -30.5996c0 -35.7998 54.9004 -65 120.5 -65z\\\" />\\n    <glyph glyph-name=\\\"foursquare\\\" unicode=\\\"&#xf180;\\\" horiz-adv-x=\\\"368\\\" \\nd=\\\"M323.1 445c40 0 50.7002 -22.7998 42.2002 -65.2002l-48.5996 -243c-3.7002 -14.5 -9.2002 -39.7002 -44.2998 -39.7002h-83.4004c-3.40039 0 -3.7002 0.300781 -6.7998 -3.09961c0 0 -2.2002 -2.5 -131.101 -151.9\\nc-10.0996 -11.6992 -26.6992 -9.59961 -32.8994 -7.09961c-6.10059 2.40039 -18.2002 9.7998 -18.2002 30.0996v433.801c0 17.7998 12.4004 46.0996 49.9004 46.0996h273.199zM306.8 371.2c2.10059 9.7998 -5.2998 17.5 -13.5 17.5h-219\\nc-9.7998 0 -16.5996 -8.90039 -16.5996 -16.6006v-338.8c0 -0.899414 0.899414 -1.2002 1.7998 -0.299805c80.5996 96.9004 89.5 108.3 89.5 108.3c9.2998 10.7998 13 12.6006 26.5 12.6006h73.5c10.0996 0 16 8.59961 16.9004 13.5\\nc0.899414 5 9.59961 49.8994 11.3994 58.7998c1.7998 9 -6.5 18.2002 -14.7998 18.2002h-90.4004c-12 0 -20.5996 8.59961 -20.5996 20.5996v13c0 12 8.59961 20.2998 20.5996 20.2998h106.4c7.40039 0 15.7002 6.7002 16.9004 13.2002z\\\" />\\n    <glyph glyph-name=\\\"trello\\\" unicode=\\\"&#xf181;\\\" \\nd=\\\"M392.3 416c30.7998 -0.200195 55.7002 -25.2002 55.6006 -56v-336c0 -30.7998 -24.9004 -55.7998 -55.7002 -56h-336.2c-30.9004 0 -56 25.0996 -56 56c0 340 -0.0996094 336 0 336c0 30.9004 25.0996 56 56.0996 56h336.2zM197 76.7002h0.0996094v254.2\\nc0 14.8994 -12.0996 26.8994 -26.8994 26.8994h-82.9004c-14.8994 0 -26.8994 -12.0996 -26.8994 -26.8994v-254.2c0.0996094 -14.7998 12.1992 -26.7002 27 -26.6006h82.6992c14.8008 0 26.7002 11.9004 26.9004 26.6006zM390.1 188.7v142.1\\nc0 14.9004 -12.0996 26.9004 -26.8994 26.9004h-81.1006c-14.7998 0 -26.7998 -12.1006 -26.7998 -26.9004v-142.1c0 -14.9004 12.1006 -26.9004 26.9004 -26.9004h81c14.8994 0 26.8994 12.1006 26.8994 26.9004z\\\" />\\n    <glyph glyph-name=\\\"gratipay\\\" unicode=\\\"&#xf184;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM362.6 213.6c8.80078 12 19.1006 50.4004 -13.7998 72c-27.7002 18.1006 -54.2002 4.2002 -68.0996 -11.8994c-15.1006 -16.9004 -45.7998 -17.9004 -61.7002 0\\nc-13.9004 16.0996 -40.4004 30 -68.5 11.8994c-32.7002 -21.5996 -22.2998 -60.0996 -13.5996 -72l112.699 -152.699z\\\" />\\n    <glyph glyph-name=\\\"vk\\\" unicode=\\\"&#xf189;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M545 330.3c-7.40039 -34.2998 -79.2998 -135.5 -79.4004 -135.6c-6.19922 -10 -8.69922 -15 0 -26.2002c3.40039 -4.7998 79.1006 -76.5996 90.3008 -111.5c4.89941 -16.5996 -3.60059 -25 -20.4004 -25h-58.9004c-22.3994 0 -29 17.9004 -69 57.9004\\nc-35 33.6992 -50 38.0996 -58.6992 38.0996c-18.8008 0 -15.4004 -6.2998 -15.4004 -73.0996c0 -14.5 -4.59961 -22.9004 -42.0996 -22.9004c-62.4004 0 -131 37.9004 -179.7 107.8c-73.1006 102.4 -93.1006 179.9 -93.1006 195.5c0 8.7998 3.40039 16.7002 20.2002 16.7002\\nh58.9004c15.0996 0 20.7998 -6.59961 26.5996 -22.9004c28.7998 -84 77.4004 -157.399 97.4004 -157.399c7.5 0 10.8994 3.5 10.8994 22.5v86.7998c-2.19922 40 -23.3994 43.2998 -23.3994 57.5c0 6.5 5.59961 13.5 15 13.5h92.5996\\nc12.4004 0 16.6006 -6.7002 16.6006 -21.7002v-116.7c0 -12.5 5.69922 -16.8994 9.39941 -16.8994c7.5 0 13.7998 4.39941 27.5 18.0996c42.4004 47.4004 72.4004 120.5 72.4004 120.5c3.7002 8.7998 10.5996 16.7002 25.5996 16.7002h58.9004\\nc17.7998 0 21.5 -9.2002 17.7998 -21.7002z\\\" />\\n    <glyph glyph-name=\\\"weibo\\\" unicode=\\\"&#xf18a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M407 270.4c7.59961 24 -13.4004 46.7998 -37.4004 41.6992c-22 -4.7998 -28.7998 28.1006 -7.09961 32.8008c50.0996 10.8994 92.2998 -37.1006 76.5 -84.8008c-6.7998 -21.1992 -38.7998 -10.7998 -32 10.3008zM214.8 1.2998c-106.3 0 -214.8 51.4004 -214.8 136.3\\nc0 44.3008 28 95.4004 76.2998 143.7c99.7002 99.7002 203.2 100.9 173.601 5.7002c-4 -13.0996 12.2998 -5.7002 12.2998 -6c79.5 33.5996 140.5 16.7998 114 -51.4004c-3.7002 -9.39941 1.09961 -10.8994 8.2998 -13.0996c135.7 -42.2998 34.7998 -215.2 -169.7 -215.2z\\nM358.5 147.6c-5.40039 55.7002 -78.5 94 -163.4 85.7002c-84.7998 -8.59961 -148.8 -60.2998 -143.399 -116c5.39941 -55.7002 78.5 -94 163.399 -85.7002c84.8008 8.60059 148.801 60.3008 143.4 116zM347.9 412.9c102.3 21.5996 189.3 -74.5 157.399 -174.301\\nc-8.2998 -25 -44.7998 -12.1992 -37.3994 12c23.0996 71.2002 -39.4004 139.2 -111.7 124c-25.1006 -5.39941 -34.2002 32.7002 -8.2998 38.3008zM269.4 101.9c-17.1006 -38.8008 -66.8008 -60 -109.101 -46.3008c-40.7998 13.1006 -58 53.4004 -40.2998 89.7002\\nc17.7002 35.4004 63.0996 55.4004 103.4 45.1006c42 -10.8008 63.0996 -50.2002 46 -88.5zM183.1 131.9c-12.8994 5.39941 -30 -0.300781 -38 -12.9004c-8.2998 -12.9004 -4.2998 -28 8.60059 -34c13.0996 -6 30.7998 -0.299805 39.0996 12.9004\\nc8 13.0996 3.7002 28.2998 -9.7002 34zM215.7 145.3c-5.10059 1.7002 -11.4004 -0.599609 -14.2998 -5.39941c-2.90039 -5.10059 -1.40039 -10.6006 3.69922 -12.9004c5.10059 -2 11.7002 0.299805 14.6006 5.40039c2.7998 5.19922 1.09961 10.8994 -4 12.8994z\\\" />\\n    <glyph glyph-name=\\\"renren\\\" unicode=\\\"&#xf18b;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M214 278.9c0 -110.4 -61 -205.4 -147.6 -247.4c-36.4004 43.2998 -58.4004 98.7998 -58.4004 159.9c0 122.699 89.0996 224.399 206 244.1v-156.6zM255 -56c-42.9004 0 -83.2998 11 -118.5 30.4004c57.2002 36.0996 103.4 90.6992 118.5 154.6\\nc15.5 -63.9004 61.7002 -118.5 118.8 -154.7c-35.0996 -19.2998 -75.5 -30.2998 -118.8 -30.2998zM445.6 31.5c-86.5996 42 -147.6 136.9 -147.6 247.4v156.6c116.9 -19.7002 206 -121.4 206 -244.1c0 -61.1006 -22 -116.601 -58.4004 -159.9z\\\" />\\n    <glyph glyph-name=\\\"pagelines\\\" unicode=\\\"&#xf18c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 135.3c-55.0996 -136.7 -187.1 -54 -187.1 -54c-40.5 -81.7998 -107.4 -134.399 -184.601 -134.7c-16.0996 0 -16.5996 24.4004 0 24.4004c64.4004 0.299805 120.5 42.7002 157.2 110.1c-41.0996 -15.8994 -118.6 -27.8994 -161.6 82.2002\\nc109 44.9004 159.1 -11.2002 178.3 -45.5c9.89941 24.4004 17 50.9004 21.5996 79.7002c0 0 -139.7 -21.9004 -149.5 98.0996c119.101 47.9004 152.601 -76.6992 152.601 -76.6992c1.59961 16.6992 3.2998 52.5996 3.2998 53.3994c0 0 -106.3 73.7002 -38.1006 165.2\\nc124.601 -43 61.4004 -162.4 61.4004 -162.4c0.5 -1.59961 0.5 -23.7998 0 -33.3994c0 0 45.2002 89 136.4 57.5c-4.2002 -134 -141.9 -106.4 -141.9 -106.4c-4.40039 -27.3994 -11.2002 -53.3994 -20 -77.5c0 0 83 91.7998 172 20z\\\" />\\n    <glyph glyph-name=\\\"stack-exchange\\\" unicode=\\\"&#xf18d;\\\" \\nd=\\\"M17.7002 115.7h412.7v-22c0 -37.7002 -29.3008 -68 -65.3008 -68h-19l-86.7998 -89.7002v89.7002h-176.3c-36 0 -65.2998 30.2998 -65.2998 68v22zM17.7002 139.3v85h412.7v-85h-412.7zM17.7002 248.7v85h412.7v-85h-412.7zM365 448\\nc36 0 65.2998 -30.2998 65.4004 -67.7002v-22.2998h-412.7v22.2998c0 37.4004 29.2998 67.7002 65.2998 67.7002h282z\\\" />\\n    <glyph glyph-name=\\\"vimeo-square\\\" unicode=\\\"&#xf194;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM383.8 266.4c1.90039 41.5996 -13.5996 63 -46.5 64c-44.2998 1.39941 -74.3994 -23.6006 -90.0996 -75.1006\\nc19.5996 8.40039 48.5996 10.6006 45.2002 -22.2002c-0.900391 -11.0996 -8.10059 -27.0996 -21.5 -48.2998c-37.2002 -58.7002 -46.3008 -39.0996 -66.8008 90.5c-5.7998 36.5 -21.0996 53.5 -46 51.1006c-22 -2 -57.1992 -38 -94.0996 -70.4004l15 -19.4004\\nc14.2998 10.1006 22.7002 15.1006 25.0996 15.1006c20.8008 0 31.5 -54.1006 56.7002 -146.4c12.9004 -34.3994 28.6006 -51.5996 47.2998 -51.5996c30.1006 0 66.9004 28.2998 110.4 84.7998c42.0996 54.0996 63.9004 96.7998 65.2998 127.9z\\\" />\\n    <glyph glyph-name=\\\"slack\\\" unicode=\\\"&#xf198;\\\" \\nd=\\\"M94.1201 132.9c0 -25.9004 -21.1602 -47.0605 -47.0605 -47.0605c-25.8994 0 -47.0596 21.1602 -47.0596 47.0605c0 25.8994 21.1602 47.0596 47.0596 47.0596h47.0605v-47.0596zM117.84 132.9c0 25.8994 21.1602 47.0596 47.0605 47.0596\\nc25.8994 0 47.0596 -21.1602 47.0596 -47.0596v-117.841c0 -25.8994 -21.1602 -47.0596 -47.0596 -47.0596c-25.9004 0 -47.0605 21.1602 -47.0605 47.0596v117.841zM164.9 321.88c-25.9004 0 -47.0605 21.1602 -47.0605 47.0605c0 25.8994 21.1602 47.0596 47.0605 47.0596\\nc25.8994 0 47.0596 -21.1602 47.0596 -47.0596v-47.0605h-47.0596zM164.9 298.16c25.8994 0 47.0596 -21.1602 47.0596 -47.0605c0 -25.8994 -21.1602 -47.0596 -47.0596 -47.0596h-117.841c-25.8994 0 -47.0596 21.1602 -47.0596 47.0596\\nc0 25.9004 21.1602 47.0605 47.0596 47.0605h117.841zM353.88 251.1c0 25.9004 21.1602 47.0605 47.0605 47.0605c25.8994 0 47.0596 -21.1602 47.0596 -47.0605c0 -25.8994 -21.1602 -47.0596 -47.0596 -47.0596h-47.0605v47.0596zM330.16 251.1\\nc0 -25.8994 -21.1602 -47.0596 -47.0605 -47.0596c-25.8994 0 -47.0596 21.1602 -47.0596 47.0596v117.841c0 25.8994 21.1602 47.0596 47.0596 47.0596c25.9004 0 47.0605 -21.1602 47.0605 -47.0596v-117.841zM283.1 62.1201c25.9004 0 47.0605 -21.1602 47.0605 -47.0605\\nc0 -25.8994 -21.1602 -47.0596 -47.0605 -47.0596c-25.8994 0 -47.0596 21.1602 -47.0596 47.0596v47.0605h47.0596zM283.1 85.8398c-25.8994 0 -47.0596 21.1602 -47.0596 47.0605c0 25.8994 21.1602 47.0596 47.0596 47.0596h117.841\\nc25.8994 0 47.0596 -21.1602 47.0596 -47.0596c0 -25.9004 -21.1602 -47.0605 -47.0596 -47.0605h-117.841z\\\" />\\n    <glyph glyph-name=\\\"wordpress\\\" unicode=\\\"&#xf19a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M61.7002 278.6l101.5 -278c-71 34.4004 -119.9 107.2 -119.9 191.4c0 30.9004 6.60059 60.0996 18.4004 86.5996zM399.6 202.7c0 -18.2002 -7 -39.2998 -16 -68.7002l-21.1992 -70.9004l-76.9004 228.7c12.7998 0.700195 24.2998 2 24.2998 2\\nc11.4004 1.2998 10.1006 18.2002 -1.39941 17.5c0 0 -34.5 -2.7002 -56.7002 -2.7002c-20.9004 0 -56 2.7002 -56 2.7002c-11.4004 0.700195 -12.7998 -16.7998 -1.2998 -17.5c0 0 10.7998 -1.2998 22.2998 -2l33.0996 -90.7998l-46.5996 -139.6l-77.5 230.399\\nc12.7998 0.700195 24.2998 2 24.2998 2c11.4004 1.2998 10.0996 18.2002 -1.40039 17.5c0 0 -34.5 -2.7002 -56.6992 -2.7002c-4 0 -8.7002 0.100586 -13.7002 0.300781c38.0996 57.7998 103.5 95.8994 177.8 95.8994c55.4004 0 105.8 -21.2002 143.7 -55.8994\\nc-1 0.0996094 -1.90039 0.199219 -2.7998 0.199219c-20.9004 0 -35.7002 -18.1992 -35.7002 -37.7998c0 -17.5 10.0996 -32.3994 20.8994 -49.8994c8.10059 -14.2002 17.5 -32.4004 17.5 -58.7002zM259.7 173.4l65.3994 -179.2c0.400391 -1 0.900391 -2 1.5 -2.90039\\nc-22.0996 -7.7998 -45.7998 -12.0996 -70.5996 -12.0996c-20.9004 0 -41 3.09961 -60.0996 8.7002zM442.7 294.1c16.5996 -30.2998 26 -65.0996 26 -102.1c0 -78.5 -42.5 -147 -105.8 -183.9l65 187.9c12.1992 30.4004 16.1992 54.5996 16.1992 76.2002\\nc0 7.89941 -0.5 15.0996 -1.39941 21.8994zM504 192c0 -136.8 -111.3 -248 -248 -248c-136.8 0 -248 111.3 -248 248c0 136.8 111.2 248 248 248c136.7 0 248 -111.2 248 -248zM492.6 192c0 130.5 -106.199 236.6 -236.6 236.6c-130.5 0 -236.6 -106.1 -236.6 -236.6\\ns106.199 -236.6 236.6 -236.6c130.5 0 236.6 106.1 236.6 236.6z\\\" />\\n    <glyph glyph-name=\\\"openid\\\" unicode=\\\"&#xf19b;\\\" \\nd=\\\"M271.5 16l-68 -32c-115 10.2998 -203.5 71.5 -203.5 145.8c0 71.5 82.5 131 191.7 144.3v-43c-71.5 -12.5 -124 -53 -124 -101.3c0 -51 58.5 -93.2998 135.7 -103v340l68 33.2002v-384h0.0996094zM448 157l-131.3 28.5l36.7998 20.7002c-19.5 11.5 -43.5 20 -70 24.7998\\nv43c46.2002 -5.5 87.7002 -19.5 120.3 -39.2998l35 19.7998z\\\" />\\n    <glyph glyph-name=\\\"yahoo\\\" unicode=\\\"&#xf19e;\\\" \\nd=\\\"M252 156l4 -220c-12.7002 2.2002 -23.5 3.90039 -32.2998 3.90039c-8.40039 0 -19.2002 -1.7002 -32.2998 -3.90039l4 220c-55 94.7998 -110.4 196.8 -174 292c11.8994 -3.09961 23 -3.90039 33.1992 -3.90039c9 0 20.4004 0.800781 34.1006 3.90039\\nc40.8994 -72.2002 82.0996 -138.7 135 -225.5c37.2998 61.5996 91.0996 144.1 134.899 225.5c11.1006 -2.90039 22 -3.90039 32.9004 -3.90039c11.5 0 23.2002 1 35 3.90039c-34.4004 -47.9004 -131.6 -216.9 -174.5 -292z\\\" />\\n    <glyph glyph-name=\\\"google\\\" unicode=\\\"&#xf1a0;\\\" horiz-adv-x=\\\"488\\\" \\nd=\\\"M488 186.2c0 -141.5 -96.9004 -242.2 -240 -242.2c-137.2 0 -248 110.8 -248 248s110.8 248 248 248c66.7998 0 123 -24.5 166.3 -64.9004l-67.5 -64.8994c-88.2998 85.2002 -252.5 21.2002 -252.5 -118.2c0 -86.5 69.1006 -156.6 153.7 -156.6\\nc98.2002 0 135 70.3994 140.8 106.899h-140.8v85.2998h236.1c2.30078 -12.6992 3.90039 -24.8994 3.90039 -41.3994z\\\" />\\n    <glyph glyph-name=\\\"reddit\\\" unicode=\\\"&#xf1a1;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M201.5 142.5c-13.7998 0 -24.9004 11.0996 -24.9004 24.5996c0 13.8008 11.1006 24.9004 24.9004 24.9004c13.5996 0 24.5996 -11.0996 24.5996 -24.9004c0 -13.5996 -11.0996 -24.5996 -24.5996 -24.5996zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248\\ns111 248 248 248s248 -111 248 -248zM371.7 233.2c-9.40039 0 -17.7002 -3.90039 -23.7998 -10c-22.4004 15.5 -52.6006 25.5 -86.1006 26.5996l17.4004 78.2998l55.3994 -12.5c0 -13.5996 11.1006 -24.5996 24.6006 -24.5996c13.7998 0 24.8994 11.2998 24.8994 24.9004\\nc0 13.5996 -11.0996 24.8994 -24.8994 24.8994c-9.7002 0 -18 -5.7998 -22.1006 -13.7998l-61.1992 13.5996c-3 0.800781 -6.10059 -1.39941 -6.90039 -4.39941l-19.0996 -86.4004c-33.2002 -1.39941 -63.1006 -11.2998 -85.5 -26.7998\\nc-6.10059 6.40039 -14.7002 10.2002 -24.1006 10.2002c-34.8994 0 -46.2998 -46.9004 -14.3994 -62.7998c-1.10059 -5 -1.7002 -10.2002 -1.7002 -15.5c0 -52.6006 59.2002 -95.2002 132 -95.2002c73.0996 0 132.3 42.5996 132.3 95.2002\\nc0 5.2998 -0.599609 10.7998 -1.90039 15.7998c31.3008 16 19.8008 62.5 -14.8994 62.5zM302.8 117c2.2002 2.2002 6.10059 2.2002 8.2998 0c2.5 -2.5 2.5 -6.40039 0 -8.59961c-22.8994 -22.8008 -87.3994 -22.8008 -110.199 0c-2.5 2.19922 -2.5 6.09961 0 8.59961\\nc2.19922 2.2002 6.09961 2.2002 8.2998 0c17.5 -17.9004 75.3994 -18.2002 93.5996 0zM310.5 192c13.9004 0 24.9004 -11.0996 24.9004 -24.9004c0 -13.5 -11.1006 -24.5996 -24.9004 -24.5996c-13.5 0 -24.5996 11 -24.5996 24.5996c0 13.8008 11 24.9004 24.5996 24.9004z\\n\\\" />\\n    <glyph glyph-name=\\\"reddit-square\\\" unicode=\\\"&#xf1a2;\\\" \\nd=\\\"M283.2 102.5c2.7002 -2.7002 2.7002 -6.7998 0 -9.2002c-24.5 -24.5 -93.7998 -24.5996 -118.4 0c-2.7002 2.40039 -2.7002 6.5 0 9.2002c2.40039 2.40039 6.5 2.40039 8.90039 0c18.7002 -19.2002 81 -19.5996 100.5 0c2.39941 2.2998 6.59961 2.2998 9 0zM191.9 156.3\\nc0 -14.5996 -11.9004 -26.5 -26.5 -26.5c-14.9004 0 -26.8008 11.9004 -26.8008 26.5c0 14.9004 11.9004 26.7998 26.8008 26.7998c14.5996 0 26.5 -11.8994 26.5 -26.7998zM282.6 183.1c14.9004 0 26.8008 -11.8994 26.8008 -26.7998\\nc0 -14.5996 -11.9004 -26.5 -26.8008 -26.5c-14.5996 0 -26.5 11.9004 -26.5 26.5c0 14.9004 11.9004 26.7998 26.5 26.7998zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM348.3 227.4\\nc-10.0996 0 -19 -4.2002 -25.5996 -10.7002c-24.1006 16.7002 -56.5 27.3994 -92.5 28.5996l18.7002 84.2002l59.5 -13.4004c0 -14.5996 11.8994 -26.5 26.5 -26.5c14.8994 0 26.7998 12.2002 26.7998 26.8008c0 14.5996 -11.9004 26.7998 -26.7998 26.7998\\nc-10.4004 0 -19.3008 -6.2002 -23.8008 -14.9004l-65.6992 14.6006c-3.30078 0.899414 -6.5 -1.5 -7.40039 -4.80078l-20.5 -92.7998c-35.7002 -1.5 -67.7998 -12.2002 -91.9004 -28.8994c-6.5 6.7998 -15.7998 11 -25.8994 11c-37.5 0 -49.7998 -50.4004 -15.5 -67.5\\nc-1.2002 -5.40039 -1.7998 -11 -1.7998 -16.7002c0 -56.5 63.6992 -102.3 141.899 -102.3c78.5 0 142.2 45.7998 142.2 102.3c0 5.7002 -0.599609 11.5996 -2.09961 17c33.5996 17.2002 21.1992 67.2002 -16.1006 67.2002z\\\" />\\n    <glyph glyph-name=\\\"stumbleupon-circle\\\" unicode=\\\"&#xf1a3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 262.5c9.7998 0 17.7998 -8 17.7002 -17.5996v-20.6006l22.8994 -10.7002l34.1006 10.1006v23.7002c0 40.2998 -34 72.5996 -74.7002 72.5996\\nc-40.5 0 -74.7002 -32.0996 -74.7002 -72.0996v-108.4c0 -9.90039 -8 -17.7998 -17.7998 -17.7998s-17.7998 7.7998 -17.7998 17.7998v45.7998h-57.2998v-46.5c0 -41.3994 33.5 -74.8994 74.8994 -74.8994c41 0 74.9004 33 74.9004 73.8994v106.9\\nc0 9.7998 8 17.7998 17.7998 17.7998zM423.6 138.9c0 0 0 0.5 0.100586 46.3994h-57.2998v-48c0 -9.7002 -8 -17.5996 -17.8008 -17.5996c-9.7998 0 -17.7998 7.7998 -17.7998 17.5996v47.1006l-34.0996 -10.1006l-22.9004 10.7002v-46.7998\\nc0 -41 33.7002 -74.2002 74.9004 -74.2002c41.3994 0 74.8994 33.5 74.8994 74.9004z\\\" />\\n    <glyph glyph-name=\\\"stumbleupon\\\" unicode=\\\"&#xf1a4;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M502.9 182v-69.7002c0 -62.0996 -50.3008 -112.399 -112.4 -112.399c-61.7998 0 -112.4 49.7998 -112.4 111.3v70.2002l34.3008 -16l51.0996 15.1992v-70.5996c0 -14.7002 12 -26.5 26.7002 -26.5s26.7998 11.7998 26.7998 26.5v72h85.9004zM278.2 240.2v30.8994\\nc0 14.7002 -12 26.7002 -26.7002 26.7002s-26.7002 -12 -26.7002 -26.7002v-160.3c0 -61.2998 -50.7998 -110.8 -112.399 -110.8c-62.1006 0 -112.4 50.2998 -112.4 112.3v69.7002h86v-68.5996c0 -14.9004 12 -26.7002 26.7002 -26.7002s26.7002 11.7998 26.7002 26.7002\\nv162.399c0 60 51.2998 108.2 112.1 108.2c61 0 112.1 -48.5 112.1 -109v-35.5996l-51.0996 -15.2002z\\\" />\\n    <glyph glyph-name=\\\"delicious\\\" unicode=\\\"&#xf1a5;\\\" \\nd=\\\"M446.5 380c1 -3.7998 1.5 -7.90039 1.59961 -12v-352.1c0 -26.5 -21.5 -48 -48 -48h-352c-4.09961 0 -8.19922 0.5 -12 1.5c-7.69922 2 -14.5996 5.7998 -20.2998 11c-1.2002 1.09961 -2.2998 2.19922 -3.2998 3.2998c-5.2002 5.7002 -9 12.5996 -11 20.2998\\nc-1 3.7998 -1.5 7.90039 -1.5 12v352c0 26.5 21.5 48 48 47.9004h352c4.09961 0 8.2002 -0.5 12 -1.5c1.90039 -0.400391 3.7002 -1 5.40039 -1.7002c1.89941 -0.700195 3.69922 -1.5 5.5 -2.5c1.39941 -0.700195 2.69922 -1.5 4 -2.40039\\nc1.09961 -0.799805 2.19922 -1.59961 3.2998 -2.5c2.5 -2 4.7998 -4.2998 6.89941 -6.7998c1.7002 -2.09961 3.30078 -4.5 4.7002 -6.90039c1.2998 -2.2998 2.40039 -4.59961 3.2998 -7.09961c0.5 -1.5 1 -3 1.40039 -4.5zM416 16v176h-192v192h-176\\nc-8.7998 0 -16 -7.2002 -16 -16v-176h192v-192h176c8.7998 0 16 7.2002 16 16z\\\" />\\n    <glyph glyph-name=\\\"digg\\\" unicode=\\\"&#xf1a6;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M81.7002 275.7v76.2998h51v-250.7h-132.7v174.4h81.7002zM81.7002 142.3v92.2998h-30.7998v-92.2998h30.7998zM378.9 275.7h133.1v-243.7h-133.1v40.7998h81.7998v28.5h-81.7998v174.4zM460.7 142.3v92.2998h-30.7998v-92.2998h30.7998zM225.1 101.3v174.4h133.301\\nv-243.7h-133.301v40.7998h82.1006v28.5h-82.1006zM276.3 234.6v-92.2998h30.7998v92.2998h-30.7998zM153.3 352h51.2998v-51h-51.2998v51zM153.3 275.7h51.2998v-174.4h-51.2998v174.4z\\\" />\\n    <glyph glyph-name=\\\"pied-piper-pp\\\" unicode=\\\"&#xf1a7;\\\" \\nd=\\\"M205.3 273.4c0 -21.1006 -14.2002 -38.1006 -31.7002 -38.1006c-7.09961 0 -12.7998 1.2002 -17.1992 3.7002v68c4.39941 2.7002 10.0996 4.2002 17.1992 4.2002c17.5 0 31.7002 -16.9004 31.7002 -37.7998zM257.9 206.4c17.3994 0 31.6992 -17 31.6992 -38.1006\\nc0 -20.8994 -14.2998 -37.7998 -31.6992 -37.7998c-7.10059 0 -12.8008 1.2002 -17.2002 3.7002v68c4.39941 2.7002 10.0996 4.2002 17.2002 4.2002zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352\\nc26.5 0 48 -21.5 48 -48zM185 192.9c41 0 74.2002 35.5996 74.2002 79.5996s-33.2002 79.5996 -74.2002 79.5996c-12 0 -24.0996 -3.19922 -34.5996 -8.7998h-45.7002v-206.3l51.7998 10.0996v50.6006c8.59961 -3.10059 18.0996 -4.7998 28.5 -4.7998zM343.4 167.6\\nc0 44 -33.2002 79.6006 -73.9004 79.6006c-3.2002 0 -6.40039 -0.200195 -9.59961 -0.700195c-3.7002 -12.5 -10.1006 -23.7998 -19.2002 -33.4004c-13.7998 -15 -32.2002 -23.7998 -51.7998 -24.7998v-156.3l51.7998 10.0996v50.6006\\nc8.59961 -3.2002 18.2002 -4.7002 28.7002 -4.7002c40.7998 0 74 35.5996 74 79.5996z\\\" />\\n    <glyph glyph-name=\\\"pied-piper-alt\\\" unicode=\\\"&#xf1a8;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M244 202l-27.7002 -5.7002l-1.7002 4.90039c6.7002 0.5 12.7002 3.7002 19.3008 3.7002c3.7998 0 6.89941 -0.900391 10.0996 -2.90039zM379.9 4.09961c9.5 0 28.1992 -45.0996 33 -55.0996c-35.9004 -13.4004 -70.3008 -15.9004 -106 -9.7998l-6.90039 45.0996\\nc15.7998 10.2998 60.9004 19.7998 79.9004 19.7998zM340.8 271c-7.59961 3.5 -63.8994 6.40039 -98.7998 -10c6.2998 11.7998 13.2002 17 25.9004 21.7998c27.2998 10.2998 40.1992 30.5 58.8994 51.1006c11.9004 -8.40039 12 -24.6006 31.6006 -23v-21.8008\\nl6.2998 -0.299805c37.3994 14.4004 74.7002 30.2002 106.6 54.6006c48.2998 36.7998 52.9004 50 81.2998 100l2 2.59961c-0.599609 -14.0996 -6.2998 -27.2998 -12.3994 -39.9004c-30.5 -63.7998 -78.7002 -100.3 -146.8 -116.699\\nc-12.4004 -2.90039 -26.4004 -3.2002 -37.6006 -8.90039c1.40039 -9.7998 13.2002 -18.0996 13.2002 -23c0 -3.40039 -5.5 -7.2002 -7.5 -8.59961c-11.2002 12.8994 -16.0996 19.2998 -22.7002 22.0996zM555.5 448l-0.299805 -1.40039l-0.600586 -0.599609\\nl0.300781 0.900391zM496.3 65.9004c20.1006 -34.2002 43.7002 -54.3008 72.7002 -79.9004c-31 -19.2998 -70.4004 -32.2002 -103.5 -47.2002c-55.2002 46.2998 -23 229.9 -111.5 229.9c-3.5 -0.700195 -2.40039 -0.299805 -4.59961 -1.7002\\nc1.09961 -1.40039 2.59961 -2.90039 3.69922 -4c23.9004 -20.0996 33.4004 -24.4004 34.8008 -58.5996l0.299805 -9.5c0.799805 -21.6006 -5.5 -42.5 -9.7998 -63.5c-25.9004 0.699219 -51.2002 -11 -77.9004 -2.90039c-0.700195 5.90039 -1.09961 30.9004 0.299805 41.0996\\nc1.40039 9.5 33.6006 29.9004 33 43.7002c-5.5 0.600586 -9.2002 -2.59961 -12.3994 -6.89941c-13.3008 -19.5 -47.2002 -41.9004 -71.3008 -41.9004c-16.5996 0 -56.2998 71.5 -76.3994 85.9004c-3.2002 2.2998 -5.2002 5.39941 -7.7998 8.59961\\nc-16.1006 -3.7998 -139.4 -32.2002 -147.4 -32.2002c-6 0 -11.5 4.90039 -11.5 10.9004c0 5.5 3.40039 10.7002 8.90039 11.7998l139.6 30.4004c-9.5 17.1992 12.2998 17.5 21.5 20.0996c3.2002 0.799805 6.2998 4 9.5 4c6.2998 0 11.7998 -8.90039 13.7998 -14.0996\\nc6.2998 1.39941 45.7002 10.5996 49.4004 10.5996c15.2002 0 15.8994 -20.0996 2.89941 -22.7002l-52.2998 -11.5l-0.299805 -4.59961c-0.299805 -10.1006 45.4004 -60.1006 53.4004 -60.1006c18.0996 0 54.8994 41.7002 54.8994 60.1006\\nc0 30.7002 -42.7998 12.5996 -42.7998 33.5996c0 3.5 1.2002 6.60059 2.90039 9.7998l-19.5 5.5c13.0996 13.6006 13.7998 31.7002 10.8994 50.3008c14.7002 2.89941 26.7002 4.59961 41.4004 4.59961c56.8994 0 45.7002 -8.59961 65.5 -54.2998l14.3994 7.2002\\nc-2.2998 -34.2002 -36.1992 -17.5 -35.0996 -31l0.299805 -6c74.7002 2.89941 116.101 -58.6006 150 -115.5zM300.1 19.7998h8.90039l2.90039 -23.7998l-11.8008 -3.40039v27.2002zM231.4 170.2l13.7998 3.5l31.2998 -50.9004l-21 -13.7998zM315.8 15.2998\\nc22.6006 2.5 32.7002 6.2998 59.5 6.2998c0.299805 -1.39941 0.900391 -3.19922 0.900391 -4.59961c0 -7.5 -49.4004 -12.5996 -58.4004 -14.0996z\\\" />\\n    <glyph glyph-name=\\\"drupal\\\" unicode=\\\"&#xf1a9;\\\" \\nd=\\\"M319.5 333.3c13.5 -8.2998 96.5 -67 96.5 -179.3c0 -112 -88.5 -186 -190.2 -186c-102 0 -193.8 80.2998 -193.8 189.5c0 109 85 167.5 100.8 175.8c18.7002 10.1006 32.2002 15.2998 53.5 32.2998c10.5 8.30078 19.2998 20.2002 22 49.5\\nc15.2002 -18.2998 33.5 -39.5 46.5 -48.2998c21.2002 -14 42.5 -19.5 64.7002 -33.5zM322 7.7002c4.2002 4.2002 1.90039 13.0996 -4.2002 8.5c-8.5 -6.2998 -27.5 -14 -54.5 -14c-34.5 0 -51.5 13.2998 -51.5 13.2998c-6.2002 0 -11.2998 -7.2002 -6.5 -12\\nc26.6006 -24.5 96.6006 -15.9004 116.7 4.2002zM267.5 60.2998c-6.5 -2.7002 -28.4004 -16.7998 -22.4004 -25c2.40039 -3.2998 5.2002 -1.2998 12.2002 4.7002c7.2002 5.7998 12 11 26.7002 11c25.2998 0 18.0996 -19.9004 26.5 -15.7002\\nc9.90039 4.90039 -2.09961 20.9004 -6.2002 23.7002c-7.7998 5.09961 -28.0996 4.90039 -36.7998 1.2998zM360 43c39.0996 -3.2998 64.5 106 15.7998 106c-20 0 -60.5 -41.5 -81.7998 -41.7998c-24.7002 -0.5 -59 49 -108.5 48.5\\nc-66.4004 -0.400391 -90.5996 -78.6006 -51.7998 -105.2c57.2002 -38.7002 130.399 42.9004 161.3 42c19.5 -0.700195 49.7998 -48.5 65 -49.5z\\\" />\\n    <glyph glyph-name=\\\"joomla\\\" unicode=\\\"&#xf1aa;\\\" \\nd=\\\"M0.599609 355.9c0 33.2998 26.8008 60.0996 59.8008 60.0996c30 0 54.5 -21.9004 59.1992 -50.2002c32.6006 7.60059 67.1006 -0.599609 96.5 -30l-44.2998 -44.2998c-20.5 20.5 -42.5996 16.2998 -55.3994 3.5c-14.3008 -14.2998 -14.3008 -37.9004 0 -52.2002\\nl99.5 -99.5l-44 -44.2998c-87.7002 87.2002 -49.7002 49.7002 -99.8008 99.7002c-26.7998 26.5 -35 64.7998 -24.7998 98.8994c-26.8994 5.80078 -46.7002 29.7002 -46.7002 58.3008zM130.1 239.5c28.5 28.4004 81.3008 80.7998 99.6006 99.9004\\nc26.5996 26.5996 64.5 35 98.2998 25.0996c4.09961 29.0996 29.2002 51.5996 59.5 51.5996c33 0 59.7998 -26.8994 59.7998 -60.0996c0 -30.2998 -22.7002 -55.4004 -51.8994 -59.5c9.59961 -33.5996 2.2998 -70 -28.9004 -101.2l-44 44.2998\\nc20.5 20.4004 16.2998 42.6006 3.5 55.4004c-14.2998 14.2998 -37.5996 14.2998 -51.9004 0c-10 -10.0996 -89.6992 -89.7998 -99.6992 -99.7998zM396.4 87.2998c29.0996 -4.09961 51.5996 -28.8994 51.5996 -59.0996c0 -33.2998 -26.7998 -60.1006 -59.7998 -60.1006\\nc-29.2002 0 -53.4004 20.7002 -58.9004 48.1006c-34.7002 -10.7998 -75.0996 -2.2002 -102.7 28l44 44.2998c20.4004 -20.5 42.6006 -16.2998 55.4004 -3.5c14.2998 14.2998 14.2998 37.5996 0 51.9004l-99.7002 99.6992l44.2998 44.3008\\nc104.5 -104.4 87.7002 -87.5 99.5 -99.7002c25.4004 -25.4004 34.5 -61.2002 26.3008 -93.9004zM312.1 140.4c-87.2998 -87.3008 -67.3994 -67.7002 -99.5 -99.7002c-25.6992 -25.4004 -61.5 -34.2002 -94.1992 -26c-6.10059 -26.9004 -30 -46.7002 -58.6006 -46.7002\\nc-33 0 -59.7998 26.7998 -59.7998 60.0996c0 28.3008 19.5 52.2002 46.2002 58.2002c-8.5 33.1006 -0.700195 68.1006 29.5 98.2998l44 -44.2998c-20.1006 -20.0996 -16.2998 -42 -3.2002 -55.3994c14.2998 -14.3008 37.5996 -14.3008 51.9004 0\\nc49.2998 49.3994 12.6992 13.3994 99.6992 99.7998z\\\" />\\n    <glyph glyph-name=\\\"behance\\\" unicode=\\\"&#xf1b4;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M232 210.8c43.5996 -12.2998 64.7002 -45.2002 64.7002 -89.7002c0 -72 -60.5 -102.899 -124.9 -102.899h-171.8v354.399h167.1c60.7002 0 113.301 -17.1992 113.301 -87.7998c0 -35.7998 -16.6006 -58.7998 -48.4004 -74zM77.9004 312.1v-82.6992h79\\nc27.7998 0 47.5 12.0996 47.5 42.1992c0 32.6006 -25.3008 40.5 -53.4004 40.5h-73.0996zM161.2 78.4004c31.7002 0 57.5996 11.1992 57.5996 47c0 36.2998 -21.7002 50.5996 -56 50.5996h-84.8994v-97.5996h83.2998zM519.7 319.1h-143.7v34.9004h143.7v-34.9004zM576 142.8\\nc0 -4.5 -0.299805 -9 -0.599609 -13.2002h-185.101c0 -41.0996 21.7002 -65.2998 63 -65.2998c21.4004 0 49 11.6006 55.7002 33.5h62.2002c-19.1006 -58.7002 -58.7998 -86.2998 -120.101 -86.2998c-81 0 -131.3 54.7998 -131.3 134.7c0 77 53.1006 135.8 131.3 135.8\\nc80.5 0 124.9 -63.2998 124.9 -139.2zM390.4 174h114.699c-3 34 -20.7998 54.7998 -56.1992 54.7998c-33.8008 0 -56.2002 -21.0996 -58.5 -54.7998z\\\" />\\n    <glyph glyph-name=\\\"behance-square\\\" unicode=\\\"&#xf1b5;\\\" \\nd=\\\"M186.5 155c0 -19.2998 -14 -25.4004 -31.2002 -25.4004h-45.0996v52.9004h46c18.5996 -0.0996094 30.2998 -7.7998 30.2998 -27.5zM178.8 237.3c0 -16.2998 -10.7002 -22.8994 -25.7998 -22.8994h-42.7002v44.7998h39.6006c15.1992 0 28.8994 -4.2002 28.8994 -21.9004z\\nM311.1 214.1c19.2002 0 28.8008 -11.1992 30.5 -29.6992h-62.1992c1.19922 18.2998 13.3994 29.6992 31.6992 29.6992zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM271.7 263h77.7998\\nv18.9004h-77.7998v-18.9004zM228.7 152.7c0 24.0996 -11.4004 44.8994 -35 51.5996c17.2002 8.2002 26.2002 17.7002 26.2002 37c0 38.2002 -28.5 47.5 -61.4004 47.5h-90.5v-192h93.0996c34.9004 0.200195 67.6006 16.9004 67.6006 55.9004zM380 167.5\\nc0 41.0996 -24.0996 75.4004 -67.5996 75.4004c-42.4004 0 -71.1006 -31.8008 -71.1006 -73.6006c0 -43.2998 27.2998 -73 71.1006 -73c33.1992 0 54.6992 14.9004 65.0996 46.7998h-33.7002c-3.7002 -11.8994 -18.5996 -18.0996 -30.2002 -18.0996\\nc-22.3994 0 -34.0996 13.0996 -34.0996 35.2998h100.2c0.0996094 2.2998 0.299805 4.7998 0.299805 7.2002z\\\" />\\n    <glyph glyph-name=\\\"steam\\\" unicode=\\\"&#xf1b6;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M496 192c0 -137 -111.2 -248 -248.4 -248c-113.8 0 -209.6 76.2998 -239 180.4l95.2002 -39.3008c6.40039 -32.0996 34.9004 -56.3994 68.9004 -56.3994c39.2002 0 71.8994 32.3994 70.2002 73.5l84.5 60.2002c52.0996 -1.30078 95.7998 40.8994 95.7998 93.5\\nc0 51.5996 -42 93.5 -93.7002 93.5s-93.7002 -42 -93.7002 -93.5v-1.2002l-59.2002 -85.7002c-15.5 0.900391 -30.6992 -3.40039 -43.5 -12.0996l-133.1 55c10.2002 127.699 117.1 228.1 247.6 228.1c137.2 0 248.4 -111 248.4 -248zM155.7 63.7002\\nc19.7998 -8.2002 42.5 1.09961 50.7998 21c8.2998 19.7998 -1.09961 42.5 -20.9004 50.7002l-31.5 13c12.2002 4.59961 26 4.7998 38.9004 -0.600586c13 -5.39941 23.0996 -15.5996 28.5 -28.5996s5.2998 -27.2998 -0.0996094 -40.2998\\nc-11.2002 -26.8008 -42.1006 -39.6006 -69 -28.4004c-10.2119 4.26953 -22.3975 15.8281 -27.2002 25.7998zM329.5 193.6c-34.4004 0 -62.4004 28 -62.4004 62.3008c0 34.2998 28 62.2998 62.4004 62.2998s62.4004 -28 62.4004 -62.2998\\nc0 -34.3008 -27.9004 -62.3008 -62.4004 -62.3008zM329.6 209.2c25.9004 0 46.9004 21 46.9004 46.7998c0 25.9004 -21 46.7998 -46.9004 46.7998c-25.8994 0 -46.8994 -21 -46.8994 -46.7998c0.0996094 -25.7998 21.0996 -46.7998 46.8994 -46.7998z\\\" />\\n    <glyph glyph-name=\\\"steam-square\\\" unicode=\\\"&#xf1b7;\\\" \\nd=\\\"M185.2 91.5c7.7002 18.5 -1 39.7002 -19.6006 47.4004l-29.5 12.1992c11.4004 4.30078 24.3008 4.5 36.4004 -0.5c12.2002 -5.09961 21.5996 -14.5996 26.7002 -26.6992c5 -12.2002 5 -25.6006 -0.100586 -37.7002c-10.5 -25.1006 -39.3994 -37 -64.5996 -26.5\\nc-11.5996 4.7998 -20.4004 13.5996 -25.4004 24.2002l28.5 -11.8008c18.6006 -7.7998 39.9004 0.900391 47.6006 19.4004zM400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v112.8l89.0996 -36.8994\\nc6 -30 32.7002 -52.7002 64.5 -52.7002c36.6006 0 67.3008 30.2998 65.7002 68.7998l79 56.2998c48.7002 -1.2002 89.6006 38.2998 89.6006 87.5c0 48.2002 -39.3008 87.5 -87.6006 87.5s-87.5996 -39.2998 -87.5996 -87.5v-1.09961l-55.4004 -80.2002\\nc-14.5 0.799805 -28.7002 -3.09961 -40.7002 -11.2998l-116.6 48.0996v160.7c0 26.5 21.5 48 48 48h352zM300.3 193.5c-32.2002 0 -58.3994 26.0996 -58.3994 58.2998s26.1992 58.2998 58.3994 58.2998s58.4004 -26.1992 58.4004 -58.2998\\nc0 -32.0996 -26.2002 -58.2998 -58.4004 -58.2998zM300.4 208.1c24.1992 0 43.8994 19.6006 43.8994 43.8008c0 24.1992 -19.5996 43.7998 -43.8994 43.7998c-24.2002 0 -43.9004 -19.6006 -43.9004 -43.7998c0 -24.2002 19.7002 -43.8008 43.9004 -43.8008z\\\" />\\n    <glyph glyph-name=\\\"spotify\\\" unicode=\\\"&#xf1bc;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM348.7 75.0996c8.09961 0 15.2002 6.30078 15.2002 15.4004s-3.60059 12.5996 -9.7002 16.5c-71.4004 42.7002 -155.101 44.2998 -237 26.2002\\nc-7.5 -1.60059 -13.6006 -6.5 -13.6006 -16.7998c0 -8.10059 6.10059 -15.8008 15.8008 -15.8008c2.89941 0 8 1.60059 11.8994 2.60059c71.7002 14.7002 144.3 13.0996 206.7 -24.5c3.90039 -2.2998 6.5 -3.60059 10.7002 -3.60059zM375.6 140.7\\nc10.9004 0 19.3008 8.7002 19.4004 19.5c0 8.7002 -3.2002 14.8994 -11.2998 19.7002c-49.4004 29.3994 -112.101 45.5 -177 45.5c-41.6006 0 -70 -5.80078 -97.7998 -13.6006c-10.3008 -2.89941 -15.5 -10 -15.5 -20.7002c0 -10.6992 8.69922 -19.3994 19.3994 -19.3994\\nc4.5 0 7.10059 1.2998 11.9004 2.59961c82.8994 22.5 176.1 7.60059 238.6 -29.3994c3.60059 -1.90039 7.10059 -4.2002 12.2998 -4.2002zM406.6 216.9c12.2002 0 23.2002 9.69922 23.2002 23.2998c0 11.8994 -5.09961 18.0996 -12.8994 22.5996\\nc-55.9004 32.6006 -132.4 47.7998 -205.4 47.7998c-42.9004 0 -82.2998 -4.89941 -117.5 -15.1992c-9 -2.60059 -17.4004 -10.3008 -17.4004 -23.9004c0 -13.2998 10.1006 -23.5996 23.3008 -23.5996c4.7998 0 9.2998 1.59961 12.8994 2.59961\\nc82.4004 23 209.7 12.7998 280.9 -29.7002c4.5 -2.59961 7.7002 -3.89941 12.8994 -3.89941z\\\" />\\n    <glyph glyph-name=\\\"deviantart\\\" unicode=\\\"&#xf1bd;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M320 354.8l-98.2002 -179.1l7.40039 -9.5h90.7998v-127.7h-160.9l-13.5 -9.2002l-43.6992 -84c-0.300781 0 -8.60059 -8.59961 -9.2002 -9.2002h-92.7002v93.2002l93.2002 179.4l-7.40039 9.2002h-85.7998v127.6h156l13.5 9.2002l43.7002 84\\nc0.299805 0 8.59961 8.59961 9.2002 9.2002h97.5996v-93.1006z\\\" />\\n    <glyph glyph-name=\\\"soundcloud\\\" unicode=\\\"&#xf1be;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M111.4 191.7l5.7998 -65l-5.7998 -68.2998c-0.300781 -2.5 -2.2002 -4.40039 -4.40039 -4.40039s-4.2002 1.90039 -4.2002 4.40039l-5.59961 68.2998l5.59961 65c0 2.2002 1.90039 4.2002 4.2002 4.2002c2.2002 0 4.09961 -2 4.40039 -4.2002zM132.8 237.3\\nc2.5 0 4.7002 -2.2002 4.7002 -5l5.7998 -105.6l-5.7998 -68.2998c0 -2.80078 -2.2002 -5 -4.7002 -5c-2.7998 0 -4.7002 2.19922 -5 5l-5 68.2998l5 105.6c0.299805 2.7998 2.2002 5 5 5zM158.3 261.4c2.7998 0 5.2998 -2.2002 5.2998 -5.30078l5.30078 -130\\nl-5.30078 -67.7998c0 -3.09961 -2.5 -5.2998 -5.2998 -5.2998c-3.09961 0 -5.2998 2.2002 -5.59961 5.2998l-4.40039 67.7998l4.40039 130c0.299805 3.10059 2.5 5.30078 5.59961 5.30078zM7.2002 164.8c1.39941 0 2.2002 -1.09961 2.5 -2.5l5.59961 -35.5996l-5.59961 -35\\nc-0.299805 -1.40039 -1.10059 -2.5 -2.5 -2.5c-1.40039 0 -2.2002 1.09961 -2.5 2.5l-4.7002 35l4.7002 35.5996c0.299805 1.40039 1.09961 2.5 2.5 2.5zM30.7998 186.7c1.40039 0 2.5 -1.10059 2.7998 -2.5l7.2002 -57.5l-7.2002 -56.4004\\nc-0.299805 -1.39941 -1.39941 -2.5 -2.7998 -2.5c-1.39941 0 -2.5 1.10059 -2.5 2.7998l-6.39941 56.1006l6.39941 57.5c0 1.39941 1.10059 2.5 2.5 2.5zM56.0996 198.1c1.7002 0 3.10059 -1.39941 3.10059 -3.2998l6.89941 -68.0996l-6.89941 -65.7998\\nc0 -1.7002 -1.40039 -3.10059 -3.10059 -3.10059c-1.59961 0 -3 1.40039 -3.2998 3.10059l-5.7998 65.7998l5.7998 68.0996c0.200195 1.90039 1.60059 3.2998 3.2998 3.2998zM81.4004 200.3c1.89941 0 3.59961 -1.39941 3.89941 -3.59961l6.40039 -70l-6.40039 -67.7998\\nc-0.299805 -2.2002 -2 -3.60059 -3.89941 -3.60059c-1.90039 0 -3.60059 1.40039 -3.60059 3.60059l-5.7998 67.7998l5.7998 70c0 2.2002 1.7002 3.59961 3.60059 3.59961zM322.8 311.2c2.5 -1.40039 4.10059 -4.2002 4.5 -7.2002l3.90039 -177.5l-3.90039 -64.2002\\nc0 -4.7002 -3.89941 -8.59961 -8.59961 -8.59961s-8.60059 3.89941 -8.90039 8.59961l-1.7002 31.7002l-1.69922 32.5l3.2998 176.7v0.799805c0.200195 2.5 1.39941 5 3.2998 6.7002c1.40039 1.09961 3.40039 1.89941 5.59961 1.89941\\nc1.40039 0 3.10059 -0.599609 4.2002 -1.39941zM296.1 295.9c2.2002 -1.40039 3.60059 -3.90039 3.90039 -6.7002l3.2998 -162.8l-3.09961 -58.6006l-0.299805 -6.7002c0 -2.2998 -0.800781 -4.19922 -2.5 -5.59961c-1.40039 -1.40039 -3.40039 -2.5 -5.60059 -2.5\\nc-2.5 0 -4.7002 1.2002 -6.39941 3.09961c-1.10059 1.40039 -1.7002 3 -1.7002 4.7002v0.299805c-3.10059 65.3008 -3.10059 65.6006 -3.10059 65.6006l2.80078 160.8l0.299805 1.7002c0 2.7998 1.39941 5.2998 3.59961 6.7002\\nc1.2998 0.799805 2.7998 1.39941 4.40039 1.39941c1.59961 0 3 -0.599609 4.39941 -1.39941zM184.7 273.4c3.39941 0 5.89941 -2.80078 6.09961 -6.10059l5 -140.6l-5 -67.2002c-0.299805 -3.2998 -2.7998 -5.7998 -6.09961 -5.7998c-3 0 -5.5 2.5 -5.7998 5.7998\\nl-4.40039 67.2002l4.40039 140.6c0 3.2998 2.69922 6.10059 5.7998 6.10059zM561.4 210.6c43.2998 0 78.5996 -35.2998 78.5 -78.8994c0 -43.2998 -35.3008 -78.2998 -78.6006 -78.2998h-218.3c-4.7002 0.599609 -8.59961 4.19922 -8.59961 9.19922v249.7\\nc0 4.7998 1.69922 7 7.7998 9.2002c15.2998 6.09961 32.5 9.40039 50.2998 9.40039c72.5 0 131.9 -55.6006 138.3 -126.4c9.5 3.90039 19.7998 6.09961 30.6006 6.09961zM264.7 270.9c4.2002 0 7.2002 -3.30078 7.5 -7.80078l3.89941 -136.699l-3.89941 -65.6006\\nc0 -4.2002 -3.2998 -7.5 -7.5 -7.5s-7.5 3.2998 -7.7998 7.5l-3.30078 65.6006l3.30078 136.699c0.299805 4.5 3.59961 7.80078 7.7998 7.80078zM211.1 278.7c3.60059 0 6.40039 -3.10059 6.7002 -6.7002l4.40039 -145.3l-4.40039 -66.9004\\nc-0.299805 -3.59961 -3.09961 -6.39941 -6.7002 -6.39941c-3.2998 0 -6.09961 2.7998 -6.39941 6.39941l-3.90039 66.9004l3.90039 145.3c0 3.59961 3.09961 6.7002 6.39941 6.7002zM237.8 275.3c3.90039 0 6.90039 -3 6.90039 -6.89941l4.2002 -141.7l-4.2002 -66.4004\\nc0 -3.7998 -3.10059 -6.89941 -6.90039 -6.89941s-6.59961 3 -6.89941 6.89941l-3.90039 66.4004l3.90039 141.7c0 3.7998 3 6.89941 6.89941 6.89941z\\\" />\\n    <glyph glyph-name=\\\"vine\\\" unicode=\\\"&#xf1ca;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 193.3v-52.0996c-18.4004 -4.2002 -36.9004 -6.10059 -52.0996 -6.10059c-36.9004 -77.3994 -103 -143.8 -125.101 -156.199c-14 -7.90039 -27.0996 -8.40039 -42.7002 0.799805c-27.0996 16.2998 -129.899 100.6 -164.1 365.6h74.5\\nc18.7002 -159.1 64.5 -240.7 114.8 -301.8c27.9004 27.9004 54.7998 65.0996 75.6006 106.9c-49.8008 25.2998 -80.1006 80.8994 -80.1006 145.6c0 65.5996 37.7002 115.1 102.2 115.1c114.9 0 106.2 -127.899 81.5996 -181.5c0 0 -46.3994 -9.19922 -63.5 20.5\\nc3.40039 11.3008 8.2002 30.8008 8.2002 48.5c0 31.3008 -11.2998 46.6006 -28.3994 46.6006c-18.2002 0 -30.8008 -17.1006 -30.8008 -50c0.100586 -79.2002 59.4004 -118.7 129.9 -101.9z\\\" />\\n    <glyph glyph-name=\\\"codepen\\\" unicode=\\\"&#xf1cb;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M502.285 288.296c6.00098 -3.99902 9.71484 -11.1426 9.71582 -18.2852v-155.999c0 -7.14258 -3.71484 -14.2871 -9.71484 -18.2861l-234 -156.021c-8.06055 -4.95996 -16.584 -4.91504 -24.5713 0l-234 156.021c-6.00098 4 -9.71484 11.1436 -9.71484 18.2861v155.999\\nc0 7.14258 3.71387 14.2861 9.71387 18.2852l234 156c8.06055 4.95996 16.584 4.91504 24.5713 0zM278 384.869v-102.572l95.4287 -63.7148l76.8574 51.4287zM234 384.869l-172.286 -114.858l76.8574 -51.4287l95.4287 63.7148v102.572zM44 228.868v-73.7139\\nl55.1426 36.8564zM234 -0.84668v102.571l-95.4287 63.7158l-76.8574 -51.4297zM256 140.011l77.7148 52l-77.7148 52l-77.7148 -52zM278 -0.84668l172.286 114.857l-76.8574 51.4297l-95.4287 -63.7158v-102.571zM468 155.154v73.7139l-55.1426 -36.8574z\\\" />\\n    <glyph glyph-name=\\\"jsfiddle\\\" unicode=\\\"&#xf1cc;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M510.634 210.538c45.6885 -25.334 68.3721 -74.5605 56.832 -122.634c-12.1035 -50.4199 -55.5479 -86.6592 -108.212 -87.293c-84.0303 -1.01172 -168.079 -0.458984 -252.12 -0.480469c-30.3223 -0.00683594 -60.668 -0.492188 -90.959 0.539062\\nc-48.0938 1.63672 -91.7764 35.8643 -105.607 81.4326c-14.1289 46.5508 2.18945 94.623 41.9014 124.615c2.54688 1.92383 4.86914 6.52051 4.51465 9.54492c-3.74609 31.8604 7.14453 57.6709 32.6758 76.4082c26.2822 19.2881 55.2285 21.5879 85.3311 9.16699\\nc2.36621 -0.975586 4.63965 -2.17773 7.82422 -3.68555c16.5215 27.5332 38.1221 48.6523 65.4922 63.9023c92.8594 51.7402 210.954 8.31152 246.85 -91.6455c5.55762 -15.4766 6.74512 -32.6074 9.09668 -49.0947c0.716797 -5.02832 1.6543 -8.15527 6.38086 -10.7764z\\nM531.741 53.6582c39.3135 48.375 22.418 117.668 -35.1426 144.497c-7.43555 3.46582 -9.72559 7.74414 -9.84766 15.8936c-1.87012 125.129 -132.78 187.063 -230.24 132.697c-26.1133 -14.5674 -46.4492 -34.8955 -60.6709 -61.2939\\nc-7.59082 -14.0908 -11.9287 -7.97754 -22.1982 -2.52734c-24.6113 13.0635 -49.0469 12.6406 -72.0332 -3.08301c-21.9678 -15.0244 -31.9102 -36.6201 -26.4199 -62.9805c2.4082 -11.5703 -0.914062 -17.0635 -10.0967 -23.1367\\nc-38.1895 -25.2578 -53.0879 -74.8604 -34.1855 -116.105c18.4355 -40.2295 51.3135 -59.6631 95.1748 -59.9951c0.700195 -0.00488281 163.728 -0.545898 163.728 0.154297c56.8857 0 113.778 -0.551758 170.652 0.229492\\nc28.9375 0.397461 53.0498 13.2178 71.2803 35.6504zM443.952 134.157c-5.84863 -31.1572 -34.6221 -55.0967 -66.666 -55.0957c-16.9531 0.00195312 -32.0586 6.5459 -44.0791 17.7051c-27.6973 25.7139 -71.1406 74.9805 -95.9375 93.3877\\nc-20.0557 14.8877 -41.9893 12.333 -60.2715 -3.78223c-49.9961 -44.0713 15.8594 -121.775 67.0625 -77.1885c4.54883 3.95996 7.84082 9.54297 12.7441 12.8447c8.18457 5.50879 20.7666 0.883789 13.168 -10.6221c-17.3574 -26.2842 -49.3301 -38.1973 -78.8623 -29.3008\\nc-28.8975 8.70312 -48.8408 35.9678 -48.626 70.1787c1.22461 22.4844 12.3633 43.0596 35.4141 55.9648c22.5742 12.6377 46.3682 13.1455 66.9902 -2.47363c50.791 -38.4756 75.5781 -81.7451 107.296 -101.245c24.5586 -15.0996 54.2549 -7.36328 68.8232 17.5059\\nc28.8301 49.209 -34.5918 105.016 -78.8682 63.46c-3.98828 -3.74414 -6.91699 -8.93164 -11.4092 -11.7197c-10.9756 -6.81152 -17.333 4.1123 -12.8096 10.3525c20.7031 28.5537 50.4639 40.4404 83.2715 28.2139c31.4287 -11.7139 49.1074 -44.3662 42.7598 -78.1855z\\n\\\" />\\n    <glyph glyph-name=\\\"rebel\\\" unicode=\\\"&#xf1d0;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M256.5 -56c-139.3 0 -247.5 116.2 -243.3 254.1c2.7998 79.2002 43.2002 152.2 116.5 200.4c0.299805 0 1.89941 0.599609 1.09961 -0.799805c-5.7998 -5.5 -111.3 -129.8 -14.0996 -226.4c49.7998 -49.5 90 -2.5 90 -2.5c38.5 50.1006 -0.600586 125.9 -0.600586 125.9\\nc-10 24.8994 -45.6992 40.0996 -45.6992 40.0996l28.7998 31.7998c24.3994 -10.5 43.2002 -38.6992 43.2002 -38.6992c0.799805 29.5996 -21.9004 61.3994 -21.9004 61.3994l44.5996 50.7002l44.3008 -50.0996c-20.5 -28.8008 -21.9004 -62.6006 -21.9004 -62.6006\\nc13.7998 23 43.5 39.2998 43.5 39.2998l28.5 -31.7998c-27.4004 -8.89941 -45.4004 -39.8994 -45.4004 -39.8994c-15.7998 -28.5 -27.0996 -89.4004 0.600586 -127.301c32.3994 -44.5996 87.7002 2.80078 87.7002 2.80078c102.699 91.8994 -10.5 225 -10.5 225\\nc-6.10059 5.5 0.799805 2.7998 0.799805 2.7998c50.0996 -36.5 114.6 -84.4004 116.2 -204.8c2 -145.601 -99.9004 -249.4 -242.4 -249.4z\\\" />\\n    <glyph glyph-name=\\\"empire\\\" unicode=\\\"&#xf1d1;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M287.6 393.8c-10.7998 2.2002 -22.0996 3.2998 -33.5 3.60059v18.1992c78.1006 -2.19922 146.101 -44 184.601 -106.6l-15.7998 -9.09961c-6.10059 9.69922 -12.7002 18.7998 -20.2002 27.0996l-18 -15.5c-26 29.5996 -61.4004 50.7002 -101.9 58.4004zM53.4004 125.6\\nc3.89941 -10.7998 8.2998 -21.0996 13.5996 -31.0996l-15.7998 -9.09961c-17.1006 31.5996 -27.1006 68.0996 -27.1006 106.6s9.90039 75 27.1006 106.5l15.7998 -9.09961c-5.2998 -9.7002 -10 -20.2002 -13.5996 -31l22.6992 -7.7002\\nc-6.39941 -18.2998 -9.69922 -38.2002 -9.69922 -58.7002s3.59961 -40.4004 10 -58.7002zM213.1 14l-4.69922 -23.7998c10.7998 -1.90039 22.1992 -3.2998 33.5 -3.60059v-18.2998c-78.1006 2.2998 -146.4 44.2998 -184.9 106.601l16 9.39941\\nc5.7998 -9.7002 12.7002 -18.7998 20.2002 -27.3994l18 15.7998c26.0996 -29.6006 61.5 -50.7002 101.899 -58.7002zM93.2998 327.1c-7.5 -8.2998 -14.0996 -17.5 -20.0996 -27.1992l-15.7998 9.09961c38.5 62.5996 106.5 104.4 184.6 106.6v-18.1992\\nc-11.4004 -0.300781 -22.7002 -1.40039 -33.5 -3.60059l4.7002 -23.7998c-40.5 -7.7002 -75.9004 -28.7998 -101.9 -58.4004zM402.7 56.9004c7.5 8.59961 14.3994 17.6992 20.0996 27.3994l16.1006 -9.39941c-38.5 -62.3008 -106.801 -104.4 -184.9 -106.601v18.2998\\nc11.4004 0.300781 22.7002 1.7002 33.5 3.60059l-4.7002 23.7998c40.5 8 75.9004 29.0996 101.9 58.7002zM496 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM483.8 192c0 130.1 -105.7 235.8 -235.8 235.8\\ns-235.8 -105.7 -235.8 -235.8s105.7 -235.8 235.8 -235.8s235.8 105.7 235.8 235.8zM444.8 298.6c17.2002 -31.5996 27.1006 -68.0996 27.1006 -106.6s-9.90039 -75 -27.1006 -106.4l-15.7998 9.10059c5.2998 10 9.7002 20.2002 13.5996 31l-23 7.7002\\nc6.40039 18.2998 10 38.1992 10 58.6992s-3.2998 40.4004 -9.69922 58.7002l22.6992 7.7002c-3.59961 10.7998 -8.2998 21.2998 -13.5996 31zM261.8 120.9l13.2998 -66.7002c-8.59961 -1.7002 -17.6992 -2.7998 -27.0996 -2.7998s-18.5 1.09961 -27.0996 2.7998\\nl13.2998 66.7002c-16.2998 3.2998 -30.5 11.5996 -40.7002 23.5l-51.2002 -44.8008c-11.8994 13.6006 -21.2998 29.4004 -27.0996 46.8008l64.2002 22.0996c-2.5 7.40039 -3.90039 15.2002 -3.90039 23.5s1.40039 16 3.90039 23.5l-64.5 22.0996\\nc6.09961 17.5 15.5 33.2002 27.3994 46.8008l51.2002 -44.8008c10.2998 11.9004 24.4004 20.5 40.7002 23.8008l-13.2998 66.3994c8.59961 2 17.6992 2.7998 27.0996 2.7998s18.5 -0.899414 27.0996 -2.7998l-13.2998 -66.3994\\nc16.2998 -3.30078 30.5 -11.9004 40.7002 -23.8008l51.2002 44.8008c11.8994 -13.6006 21.2998 -29.4004 27.3994 -46.8008l-64.5 -22.0996c2.5 -7.40039 3.90039 -15.2002 3.90039 -23.5s-1.40039 -16 -3.90039 -23.5l64.2002 -22.0996\\nc-5.7998 -17.5 -15.2002 -33.2002 -27.0996 -46.8008l-51.2002 44.8008c-10.2998 -11.9004 -24.4004 -20.2002 -40.7002 -23.5z\\\" />\\n    <glyph glyph-name=\\\"git-square\\\" unicode=\\\"&#xf1d2;\\\" \\nd=\\\"M100.59 113.76c48.5703 -3.30957 58.9502 -2.10938 58.9502 -11.9395c0 -20 -65.5498 -20.0605 -65.5498 -1.52051c0.00976562 5.08984 3.29004 9.40039 6.59961 13.46zM128.54 230.4c30.96 0 31.7598 -44.4707 -0.75 -44.4707c-33 0 -31.54 44.4707 0.75 44.4707z\\nM448 368v-352c0 -26.4961 -21.5039 -48 -48 -48h-352c-26.4961 0 -48 21.5039 -48 48v352c0 26.4961 21.5039 48 48 48h352c26.4961 0 48 -21.5039 48 -48zM221 298.69c0 -14.4902 8.37988 -22.8809 22.8604 -22.8809c14.7393 0 23.1299 8.39062 23.1299 22.8809\\nc0 14.4893 -8.37012 22.3096 -23.1104 22.3096c-14.4795 0 -22.8799 -7.83984 -22.8799 -22.3096zM199.18 253h-49.5498c-25 6.5498 -81.5596 4.84961 -81.5596 -46.75c0 -18.7998 9.39941 -32 21.8496 -38.1104c-15.6895 -14.3701 -23.1201 -21.1396 -23.1201 -30.7393\\nc0 -6.87012 2.79004 -13.2207 11.1807 -16.7607c-8.90039 -8.39941 -14 -14.4795 -14 -25.9199c0.0195312 -20.0693 17.5498 -31.7197 63.5391 -31.7197c44.2207 0 69.8701 16.5098 69.8701 45.7305c0 36.6699 -28.2295 35.3193 -94.7695 39.3799l8.37988 13.4297\\nc17 -4.74023 74.1904 -6.23047 74.1904 42.4297c0 11.6904 -4.83008 19.8203 -9.40039 25.6699l23.3799 1.78027zM283.52 143.16l-13 1.78027c-3.81934 0.509766 -4.06934 1 -4.06934 5.08984v105.45h-52.6006l-2.79004 -20.5703c15.75 -5.5498 17 -4.86035 17 -10.1699\\nv-74.7402c0 -5.62012 -0.30957 -4.58008 -17 -6.87012v-20.0596h72.4209zM384 133l-6.87012 22.3701c-40.9297 -15.3701 -37.8496 12.4102 -37.8496 16.7295v60.7207h37.8496v25.4102h-35.8203c-2.86914 0 -2 -2.52051 -2 38.6299h-24.1797\\nc-2.79004 -27.7002 -11.6797 -38.8799 -34 -41.4199v-22.6201c20.4697 0 19.8203 0.849609 19.8203 -2.54004v-66.5703c0 -28.7197 11.4297 -40.9102 41.6699 -40.9102c14.4502 0 30.4502 4.83008 41.3799 10.2002z\\\" />\\n    <glyph glyph-name=\\\"git\\\" unicode=\\\"&#xf1d3;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M216.29 289.61l0.0400391 -34.5508l-37.4102 -2.83984c7.27051 -9.35938 15 -22.3701 15 -41.0693c0 -77.8906 -91.4297 -75.4707 -118.7 -67.8906l-13.4297 -21.5498c106.47 -6.5 151.63 -4.33984 151.63 -63c0 -46.7598 -41.04 -73.1797 -111.79 -73.1797\\nc-73.5801 0 -101.63 18.71 -101.63 50.8193c0 18.3008 8.12988 28.04 22.4004 41.4502c-13.4199 5.66992 -17.8906 15.8105 -17.8906 26.8105c0 15.3594 11.9004 26.21 37 49.21c-20 9.76953 -35 30.9102 -35 61c0 82.5498 90.4902 85.2793 130.49 74.79h79.29z\\nM152.87 47.71c0 15.7402 -16.6104 13.8096 -94.3203 19.1104c-5.2998 -6.54004 -10.5693 -13.4004 -10.5693 -21.54c0 -29.6699 104.89 -29.6299 104.89 2.42969zM102.06 182.29c52.0205 0 50.7402 71.1602 1.2002 71.1602c-51.6602 0 -54 -71.1602 -1.2002 -71.1602z\\nM235.36 81.7803v32.0996c26.75 3.66016 27.2393 2 27.2393 11v119.51c0 8.5 -2.0498 7.37988 -27.2393 16.2607l4.46973 32.9199h84.1699v-168.71c0 -6.51074 0.400391 -7.32031 6.50977 -8.14062l20.7305 -2.83984v-32.0996h-115.88zM287.81 326.09\\nc-23.1699 0 -36.5898 13.4297 -36.5898 36.6104c0 23.1797 13.4199 35.7695 36.5898 35.7695c23.5801 0 37 -12.6201 37 -35.7695c0 -23.1504 -13.4199 -36.6104 -37 -36.6104zM512 97.54c-17.4902 -8.53027 -43.0996 -16.2598 -66.2803 -16.2598\\nc-48.3799 0 -66.6699 19.5 -66.6699 65.46v106.51c0 5.41992 1.0498 4.05957 -31.71 4.05957v36.1904c35.7803 4.07031 50 22 54.4697 66.2695h38.6309c0 -65.8291 -1.34082 -61.8096 3.25977 -61.8096h57.2998v-40.6504h-60.5596v-97.1494\\nc0 -6.91992 -4.9209 -51.4102 60.5693 -26.8398z\\\" />\\n    <glyph glyph-name=\\\"hacker-news\\\" unicode=\\\"&#xf1d4;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM21.2002 218.8h-0.200195c0.0996094 0.100586 0.200195 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.0996094 -0.400391zM239.2 164.9l80.7998 155.1h-34.7998c-54.7998 -101.2 -48.2998 -98.5996 -60.6006 -125.6\\nc-10.0996 24.3994 -6.7998 27.2998 -59.2998 125.6h-37.2998l79.7998 -153.3v-102.7h31.4004v100.9z\\\" />\\n    <glyph glyph-name=\\\"tencent-weibo\\\" unicode=\\\"&#xf1d5;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M72.2998 -47.7998c1.40039 -19.9004 -27.5996 -22.2002 -29.7002 -2.90039c-11.5996 129.9 31.1006 239.5 101.4 313.2c-15.5996 34 9.2002 77.0996 50.5996 77.0996c30.3008 0 55.1006 -24.5996 55.1006 -55.0996c0 -44 -49.5 -70.7998 -86.9004 -45.0996\\nc-65.7002 -71.3008 -101.399 -169.801 -90.5 -287.2zM192 447.9c92 0 166.6 -74.6006 166.6 -166.5c0 -102.301 -93.2998 -185.5 -204 -162.301c-19 4.7002 -12.5 33.2002 6.60059 29.1006c80.7998 -20.7998 167.7 42.2998 167.7 133.1c0 75.5 -61.5 136.9 -136.9 136.9\\nc-101 0 -168.3 -106.601 -122 -199.2c9 -17.9004 -17.5996 -30.7998 -26.2998 -13.4004c-56 108.101 22.3994 242.301 148.3 242.301z\\\" />\\n    <glyph glyph-name=\\\"qq\\\" unicode=\\\"&#xf1d6;\\\" \\nd=\\\"M433.754 27.5547c-11.5264 -1.39258 -44.8604 52.7412 -44.8604 52.7412c0 -31.3447 -16.1357 -72.2471 -51.0508 -101.786c16.8418 -5.19141 54.8428 -19.167 45.8037 -34.4209c-7.31641 -12.3428 -125.511 -7.88086 -159.633 -4.03711\\nc-34.1221 -3.84375 -152.315 -8.30566 -159.632 4.03711c-9.04492 15.25 28.918 29.2139 45.7832 34.415c-34.9199 29.5391 -51.0586 70.4453 -51.0586 101.792c0 0 -33.334 -54.1338 -44.8594 -52.7412c-5.37012 0.650391 -12.4238 29.6445 9.34668 99.7041\\nc10.2617 33.0244 21.9951 60.4785 40.1445 105.779c-3.05566 116.898 45.2441 214.956 160.262 214.962c113.737 -0.00585938 163.156 -96.1328 160.264 -214.963c18.1182 -45.2227 29.9121 -72.8506 40.1445 -105.778c21.7676 -70.0596 14.7158 -99.0527 9.3457 -99.7041z\\n\\\" />\\n    <glyph glyph-name=\\\"weixin\\\" unicode=\\\"&#xf1d7;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M385.2 280.4c-92.4004 0 -165.4 -69.1006 -165.3 -154c0 -14.2002 2.19922 -27.9004 6.19922 -40.8008c-6.19922 -0.5 -12.0996 -0.799805 -18.2998 -0.799805c-24.3994 0 -43.7998 4.90039 -68.2002 9.7002l-68 -34.0996l19.3008 58.5996\\nc-48.6006 34.0996 -77.9004 78.2002 -77.9004 131.6c0 92.6006 87.5 165.4 194.7 165.4c95.5996 0 179.7 -58.2998 196.3 -136.7c-6.2002 0.799805 -12.4004 1.10059 -18.7998 1.10059zM280.7 333.3c-14.7002 0 -29.2002 -9.7002 -29.2998 -24.3994\\nc0 -14.5 14.5 -24.2002 29.2998 -24.2002c14.5 0 24.2002 9.7002 24.2002 24.2002c0 14.6992 -9.7002 24.3994 -24.2002 24.3994zM144.3 284.7c14.7998 0 24.4004 9.59961 24.4004 24.2002c0 14.6992 -9.60059 24.3994 -24.4004 24.3994\\nc-14.5 0 -29.2998 -9.59961 -29.2998 -24.3994c0 -14.5 14.7998 -24.2002 29.2998 -24.2002zM563 128.6c0 -43.7998 -29 -82.6992 -68.2002 -112.1l14.7998 -48.5996l-53.3994 29.2998c-19.7002 -4.7998 -39.2998 -9.90039 -58.6006 -9.90039\\nc-92.5996 0 -165.399 63.4004 -165.399 141.3c0 77.9004 72.7002 141.301 165.399 141.301c87.5 0 165.4 -63.4004 165.4 -141.301zM343.9 153.1c14.6992 0 24.3994 9.60059 24.3994 19.6006c0 9.59961 -9.59961 19.2998 -24.3994 19.2998\\nc-9.60059 0 -19.3008 -9.59961 -19.3008 -19.2998c0 -9.90039 9.60059 -19.6006 19.3008 -19.6006zM451 153.1c14.5 0 24.5 9.60059 24.4004 19.6006c0 9.59961 -9.90039 19.2998 -24.4004 19.2998c-9.59961 0 -19.2998 -9.59961 -19.2998 -19.2998\\nc0 -9.90039 9.59961 -19.6006 19.2998 -19.6006z\\\" />\\n    <glyph glyph-name=\\\"slideshare\\\" unicode=\\\"&#xf1e7;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M187.7 294.3c34 0 61.7002 -25.7002 61.7002 -57.7002c0 -31.6992 -27.7002 -57.6992 -61.7002 -57.6992s-61.7002 26 -61.7002 57.6992c0 32 27.7002 57.7002 61.7002 57.7002zM331.1 294.3c34.3008 0 61.8008 -25.7002 61.7002 -57.7002\\nc0 -31.6992 -27.3994 -57.6992 -61.7002 -57.6992c-34 0 -61.6992 26 -61.6992 57.6992c0 32 27.6992 57.7002 61.6992 57.7002zM487.7 204.3c15.2002 10.5 25.2002 -4 16.0996 -17.7998c-18.2998 -22.5996 -53.2002 -50.2998 -106.3 -72\\nc56.2998 -191.7 -137.4 -222.3 -134.3 -124c0 0.700195 -0.299805 53.7998 -0.299805 93.5c-4.30078 0.799805 -8.60059 2 -13.7002 3.09961c0 -40 -0.299805 -95.8994 -0.299805 -96.5996c3.09961 -98.2002 -190.601 -67.5996 -134.301 124.1\\nc-53.1992 21.7002 -88 49.4004 -106.3 72c-9.09961 13.7002 0.900391 28.3008 16 17.7002c2 -1.39941 4.2998 -2.89941 6.2998 -4.2998v198.3c0 27.4004 20.6006 49.7002 46 49.7002h359.101c25.3994 0 46 -22.2998 46 -49.7002v-198.3zM457.2 185.1h0.0996094v190.601\\nc0 32.7998 -10.5996 45.7002 -40.8994 45.7002h-317.7c-31.7002 0 -40.6006 -10.8008 -40.6006 -45.7002v-192.4c67.7002 -35.3994 125.7 -29.0996 157.4 -28c13.4004 0.299805 22 -2.2998 27.0996 -7.7002c1.7002 -1.59961 10 -9.39941 20.3008 -17.0996\\nc1.09961 15.7998 10 25.7998 33.6992 24.9004c32.3008 -1.40039 91.7002 -7.7002 160.601 29.6992z\\\" />\\n    <glyph glyph-name=\\\"twitch\\\" unicode=\\\"&#xf1e8;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M391.17 344.53v-109.7h-38.6299v109.7h38.6299zM285 345v-109.75h-38.6299v109.75h38.6299zM120.83 448h366.86v-256l-173.771 -164.58h-77.25l-96.5303 -91.4199v91.4199h-115.83v329.16zM449.07 210.25v201.17h-308.931v-274.29h86.8701v-64l67.6006 64h77.2393z\\\" />\\n    <glyph glyph-name=\\\"yelp\\\" unicode=\\\"&#xf1e9;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M42.9004 207.68l99.6191 -48.6094c19.2002 -9.40039 16.2002 -37.5107 -4.5 -42.71l-107.52 -26.8105c-1.51074 -0.379883 -4 -0.6875 -5.55762 -0.6875c-11.2676 0 -21.415 9.08887 -22.6523 20.2881c-0.708984 6.18164 -1.28516 16.25 -1.28516 22.4727\\nc0 17.8105 4.60742 45.9658 10.2852 62.8467c2.88574 8.56836 12.5664 15.5215 21.6074 15.5215c2.9082 0 7.38867 -1.03516 10.0029 -2.31152zM86.9004 -31.5703c-5.48535 3.75195 -9.92773 12.1904 -9.92773 18.8359c0 4.8291 2.61914 11.6631 5.84766 15.2539\\nl74.21 82.4004c14.3096 15.8105 40.5098 5.2002 39.8096 -16.0996l-3.89941 -110.82c-0.412109 -12.1484 -10.6123 -22.0078 -22.7676 -22.0078c-1.07129 0 -2.79688 0.146484 -3.85254 0.328125c-23.8691 4.04199 -59.4492 18.4277 -79.4199 32.1094zM232.24 78.3496\\nc-11.2998 18.1104 6.2002 40.4102 26.5098 33.9102l105.42 -34.2598c8.69043 -2.88965 15.7422 -12.667 15.7422 -21.8252c0 -2.8125 -0.963867 -7.16504 -2.15234 -9.71484c-10.418 -21.8799 -34.0322 -52.1689 -52.71 -67.6104\\nc-3.50586 -2.88867 -10.0391 -5.2334 -14.582 -5.2334c-6.99707 0 -15.6963 4.80859 -19.418 10.7334zM380.57 210.58c1.04688 -2.41602 1.93652 -6.5127 1.93652 -9.14551c0 -9.49805 -7.39551 -19.3828 -16.5068 -22.0645l-106.64 -30.5098\\nc-20.5 -5.90039 -37.1006 17.0098 -25.2002 34.71l62 91.9199c3.75 5.55664 12.2354 10.0654 18.9385 10.0654c4.74512 0 11.4932 -2.53809 15.0615 -5.66602c18.166 -16.0361 40.75 -47.0869 50.4102 -69.3096zM62.1104 417.82\\nc29.4697 14.0293 79.793 27.5137 112.33 30.0996c0.503906 0.0410156 1.32422 0.0742188 1.83008 0.0742188c12.5146 0 22.6709 -10.1562 22.6709 -22.6699c0 -0.0566406 -0.000976562 -0.147461 -0.000976562 -0.204102v-208.34\\nc0 -23.2998 -30.9102 -31.6006 -42.6104 -11.4004l-104.12 180.44c-1.68164 2.92188 -3.0459 8.0293 -3.0459 11.4014c0 7.93066 5.7998 17.1592 12.9463 20.5986z\\\" />\\n    <glyph glyph-name=\\\"paypal\\\" unicode=\\\"&#xf1ed;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M111.4 152.1c-3.5 -19.1992 -17.4004 -108.699 -21.5 -134c-0.300781 -1.7998 -1 -2.5 -3 -2.5h-74.6006c-7.59961 0 -13.0996 6.60059 -12.0996 13.9004l58.5996 371.9c1.5 9.59961 10.1006 16.8994 20 16.8994c152.3 0 165.101 3.7002 204 -11.3994\\nc60.1006 -23.3008 65.6006 -79.5 44 -140.301c-21.5 -62.5996 -72.5 -89.5 -140.1 -90.2998c-43.4004 -0.700195 -69.5 7 -75.2998 -24.2002zM357.1 296c28.4004 -21.2002 30.3008 -57.7998 23.8008 -92.5996c-16.5 -83.5 -71.9004 -112.301 -142.9 -112.301\\nc-15 0 -24.7002 2.30078 -29.2998 -19.6992c-15.5 -97.4004 -13.7002 -85.9004 -14.4004 -91.3008c-1.7002 -8.59961 -8.7998 -14.8994 -17.3994 -14.8994h-63.5c-7.10059 0 -11.6006 5.7998 -10.6006 12.8994c0 0 4.5 29.3008 27.1006 169.7\\nc0.799805 6.10059 4.7998 9.40039 10.8994 9.40039c54 0 164.601 -9.90039 204.5 103.899c3.7002 11.1006 6.7998 22.2002 8.7998 33.6006c0.5 3.09961 1.2002 2.59961 3 1.2998z\\\" />\\n    <glyph glyph-name=\\\"google-wallet\\\" unicode=\\\"&#xf1ee;\\\" \\nd=\\\"M156.8 321.2c37.6006 -60.6006 64.2002 -113.101 84.2998 -162.5c-8.2998 -33.7998 -18.7998 -66.5 -31.2998 -98.2998c-13.2002 52.2998 -26.5 101.3 -56 148.5c6.5 36.3994 2.2998 73.5996 3 112.3zM109.3 248c5 0 10 -2.5 13 -6.5\\nc43.7998 -59.7998 66.2998 -123.8 82.5 -193.5h-103.5c-20 69.5 -49.5 133 -91.7002 187.3c-4 5.2002 0 12.7002 6.5 12.7002h93.2002zM157.1 336h108.7c74.7998 -103 131.2 -230 143.2 -368h-113.7c-8.2002 133.5 -69.7002 260 -138.2 368zM408.9 404.5\\nc19 -67.5 31.0996 -139 31.0996 -212.6c0 -69.5 -9.5 -142.5 -25.2998 -203c-10.9004 92.5 -42.4004 184.6 -90.6006 270.8c-4.19922 50.5 -13.2998 99.5 -26.5 146c-1.19922 5.2998 2.5 10.2998 7.80078 10.2998h88.2998c7 0 13.3994 -4.7002 15.2002 -11.5z\\\" />\\n    <glyph glyph-name=\\\"cc-visa\\\" unicode=\\\"&#xf1f0;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M470.1 216.7c0 0 7.60059 -37.2002 9.30078 -45h-33.4004c3.2998 8.89941 16 43.5 16 43.5c-0.200195 -0.299805 3.2998 9.09961 5.2998 14.8994zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480\\nc26.5 0 48 -21.5 48 -48zM152.5 116.8l63.2002 155.2h-42.5l-39.2998 -106l-4.30078 21.5l-14 71.4004c-2.2998 9.89941 -9.39941 12.6992 -18.1992 13.0996h-64.7002l-0.700195 -3.09961c15.7998 -4 29.9004 -9.80078 42.2002 -17.1006l35.7998 -135h42.5zM246.9 116.6\\nl25.1992 155.4h-40.1992l-25.1006 -155.4h40.1006zM386.8 167.4c0.200195 17.6992 -10.5996 31.1992 -33.7002 42.2998c-14.0996 7.09961 -22.6992 11.8994 -22.6992 19.2002c0.199219 6.59961 7.2998 13.3994 23.0996 13.3994\\nc13.0996 0.299805 22.7002 -2.7998 29.9004 -5.89941l3.59961 -1.7002l5.5 33.5996c-7.90039 3.10059 -20.5 6.60059 -36 6.60059c-39.7002 0 -67.5996 -21.2002 -67.7998 -51.4004c-0.299805 -22.2998 20 -34.7002 35.2002 -42.2002\\nc15.5 -7.59961 20.7998 -12.5996 20.7998 -19.2998c-0.200195 -10.4004 -12.6006 -15.2002 -24.1006 -15.2002c-16 0 -24.5996 2.5 -37.6992 8.2998l-5.30078 2.5l-5.59961 -34.8994c9.40039 -4.2998 26.7998 -8.10059 44.7998 -8.2998\\nc42.2002 -0.100586 69.7002 20.7998 70 53zM528 116.6l-32.4004 155.4h-31.0996c-9.59961 0 -16.9004 -2.7998 -21 -12.9004l-59.7002 -142.5h42.2002s6.90039 19.2002 8.40039 23.3008h51.5996c1.2002 -5.5 4.7998 -23.3008 4.7998 -23.3008h37.2002z\\\" />\\n    <glyph glyph-name=\\\"cc-mastercard\\\" unicode=\\\"&#xf1f1;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M482.9 37.7002c0 -6.7998 -4.60059 -11.7002 -11.2002 -11.7002c-6.7998 0 -11.2002 5.2002 -11.2002 11.7002s4.40039 11.7002 11.2002 11.7002c6.59961 0 11.2002 -5.2002 11.2002 -11.7002zM172.1 49.4004c6.5 0 10.8008 -5.2002 10.9004 -11.7002\\nc0 -6.7998 -4.40039 -11.7002 -10.9004 -11.7002c-7.09961 0 -11.1992 5.2002 -11.1992 11.7002s4.09961 11.7002 11.1992 11.7002zM289.6 49.7002c5.2002 0 8.7002 -3 9.60059 -8.7002h-19.1006c0.800781 5.2002 4.10059 8.7002 9.5 8.7002zM397.4 49.4004\\nc6.7998 0 11.1992 -5.2002 11.1992 -11.7002c0 -6.7998 -4.39941 -11.7002 -11.1992 -11.7002c-6.80078 0 -10.9004 5.2002 -10.9004 11.7002s4.09961 11.7002 10.9004 11.7002zM503.3 23.2998c0 -0.299805 0.299805 -0.5 0.299805 -1.09961\\nc0 -0.299805 -0.299805 -0.5 -0.299805 -1.10059c-0.299805 -0.299805 -0.299805 -0.5 -0.5 -0.799805c-0.299805 -0.299805 -0.5 -0.5 -1.09961 -0.5c-0.299805 -0.299805 -0.5 -0.299805 -1.10059 -0.299805c-0.299805 0 -0.5 0 -1.09961 0.299805\\nc-0.299805 0 -0.5 0.299805 -0.799805 0.5c-0.299805 0.299805 -0.5 0.5 -0.5 0.799805c-0.299805 0.5 -0.299805 0.800781 -0.299805 1.10059c0 0.5 0 0.799805 0.299805 1.09961c0 0.5 0.299805 0.799805 0.5 1.10059c0.299805 0.299805 0.5 0.299805 0.799805 0.5\\nc0.5 0.299805 0.799805 0.299805 1.09961 0.299805c0.5 0 0.800781 0 1.10059 -0.299805c0.5 -0.300781 0.799805 -0.300781 1.09961 -0.5c0.299805 -0.200195 0.200195 -0.600586 0.5 -1.10059zM501.1 21.9004c0.5 0 0.5 0.299805 0.800781 0.299805\\nc0.299805 0.299805 0.299805 0.5 0.299805 0.799805s0 0.5 -0.299805 0.799805c-0.300781 0 -0.5 0.299805 -1.10059 0.299805h-1.59961v-3.5h0.799805v1.40039h0.299805l1.10059 -1.40039h0.799805zM576 367v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48\\nv352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM64 227.4c0 -76.5 62.0996 -138.5 138.5 -138.5c27.2002 0 53.9004 8.19922 76.5 23.0996c-72.9004 59.2998 -72.4004 171.2 0 230.5c-22.5996 15 -49.2998 23.0996 -76.5 23.0996\\nc-76.4004 0.100586 -138.5 -62 -138.5 -138.199zM288 118.6c70.5 55 70.2002 162.2 0 217.5c-70.2002 -55.2998 -70.5 -162.6 0 -217.5zM145.7 42.2998c0 8.7002 -5.7002 14.4004 -14.7002 14.7002c-4.59961 0 -9.5 -1.40039 -12.7998 -6.5\\nc-2.40039 4.09961 -6.5 6.5 -12.2002 6.5c-3.7998 0 -7.59961 -1.40039 -10.5996 -5.40039v4.40039h-8.2002v-36.7002h8.2002c0 18.9004 -2.5 30.2002 9 30.2002c10.1992 0 8.19922 -10.2002 8.19922 -30.2002h7.90039c0 18.2998 -2.5 30.2002 9 30.2002\\nc10.2002 0 8.2002 -10 8.2002 -30.2002h8.2002v23h-0.200195zM190.6 56h-7.89941v-4.40039c-2.7002 3.30078 -6.5 5.40039 -11.7002 5.40039c-10.2998 0 -18.2002 -8.2002 -18.2002 -19.2998c0 -11.2002 7.90039 -19.2998 18.2002 -19.2998\\nc5.2002 0 9 1.89941 11.7002 5.39941v-4.59961h7.89941v36.7998zM231.1 30.4004c0 15 -22.8994 8.19922 -22.8994 15.1992c0 5.7002 11.8994 4.80078 18.5 1.10059l3.2998 6.5c-9.40039 6.09961 -30.2002 6 -30.2002 -8.2002c0 -14.2998 22.9004 -8.2998 22.9004 -15\\nc0 -6.2998 -13.5 -5.7998 -20.7002 -0.799805l-3.5 -6.2998c11.2002 -7.60059 32.5996 -6 32.5996 7.5zM266.5 21.0996l-2.2002 6.80078c-3.7998 -2.10059 -12.2002 -4.40039 -12.2002 4.09961v16.5996h13.1006v7.40039h-13.1006v11.2002h-8.19922v-11.2002h-7.60059\\nv-7.2998h7.60059v-16.7002c0 -17.5996 17.2998 -14.4004 22.5996 -10.9004zM279.8 34.5h27.5c0 16.2002 -7.39941 22.5996 -17.3994 22.5996c-10.6006 0 -18.2002 -7.89941 -18.2002 -19.2998c0 -20.5 22.5996 -23.8994 33.7998 -14.2002l-3.7998 6\\nc-7.7998 -6.39941 -19.6006 -5.7998 -21.9004 4.90039zM338.9 56c-4.60059 2 -11.6006 1.7998 -15.2002 -4.40039v4.40039h-8.2002v-36.7002h8.2002v20.7002c0 11.5996 9.5 10.0996 12.7998 8.40039zM349.5 37.7002c0 11.3994 11.5996 15.0996 20.7002 8.39941l3.7998 6.5\\nc-11.5996 9.10059 -32.7002 4.10059 -32.7002 -15c0 -19.7998 22.4004 -23.7998 32.7002 -15l-3.7998 6.5c-9.2002 -6.5 -20.7002 -2.59961 -20.7002 8.60059zM416.2 56h-8.2002v-4.40039c-8.2998 11 -29.9004 4.80078 -29.9004 -13.8994\\nc0 -19.2002 22.4004 -24.7002 29.9004 -13.9004v-4.59961h8.2002v36.7998zM449.9 56c-2.40039 1.2002 -11 2.90039 -15.2002 -4.40039v4.40039h-7.90039v-36.7002h7.90039v20.7002c0 11 9 10.2998 12.7998 8.40039zM490.2 70.9004h-7.90039v-19.3008\\nc-8.2002 10.9004 -29.8994 5.10059 -29.8994 -13.8994c0 -19.4004 22.5 -24.6006 29.8994 -13.9004v-4.59961h7.90039v51.7002zM497.8 146v-4.59961h0.799805v4.59961h1.90039v0.799805h-4.59961v-0.799805h1.89941zM504.4 22.2002c0 0.5 0 1.09961 -0.300781 1.59961\\nc-0.299805 0.299805 -0.5 0.799805 -0.799805 1.10059c-0.299805 0.299805 -0.799805 0.5 -1.09961 0.799805c-0.5 0 -1.10059 0.299805 -1.60059 0.299805c-0.299805 0 -0.799805 -0.299805 -1.39941 -0.299805c-0.5 -0.299805 -0.799805 -0.5 -1.10059 -0.799805\\nc-0.5 -0.300781 -0.799805 -0.800781 -0.799805 -1.10059c-0.299805 -0.5 -0.299805 -1.09961 -0.299805 -1.59961c0 -0.299805 0 -0.799805 0.299805 -1.40039c0 -0.299805 0.299805 -0.799805 0.799805 -1.09961c0.300781 -0.299805 0.5 -0.5 1.10059 -0.799805\\nc0.5 -0.300781 1.09961 -0.300781 1.39941 -0.300781c0.5 0 1.10059 0 1.60059 0.300781c0.299805 0.299805 0.799805 0.5 1.09961 0.799805s0.5 0.799805 0.799805 1.09961c0.300781 0.600586 0.300781 1.10059 0.300781 1.40039zM507.6 146.9h-1.39941l-1.60059 -3.5\\nl-1.59961 3.5h-1.40039v-5.40039h0.800781v4.09961l1.59961 -3.5h1.09961l1.40039 3.5v-4.09961h1.09961v5.40039zM512 227.4c0 76.1992 -62.0996 138.3 -138.5 138.3c-27.2002 0 -53.9004 -8.2002 -76.5 -23.1006c72.0996 -59.2998 73.2002 -171.5 0 -230.5\\nc22.5996 -15 49.5 -23.0996 76.5 -23.0996c76.4004 -0.0996094 138.5 61.9004 138.5 138.4z\\\" />\\n    <glyph glyph-name=\\\"cc-discover\\\" unicode=\\\"&#xf1f2;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M520.4 251.9c0 -8.40039 -5.5 -12.8008 -15.8008 -12.8008h-4.69922v24.9004h4.89941c10.1006 0 15.6006 -4.2002 15.6006 -12.0996zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480z\\nM483.9 277.1v-82h16v32.8008h2.19922l22.2002 -32.8008h19.6006l-25.8008 34.4004c12.1006 2.5 18.7002 10.5996 18.7002 23.2002c0 28.5 -30.2998 24.3994 -52.8994 24.3994zM428 277v-82h45.2998v13.7998h-29.2998v22.2002h28.2998v13.7998h-28.2998v18.2002h29.2998v14\\nh-45.2998zM359.3 277h-17.5l35 -84.2002h8.60059l35.5 84.2002h-17.5l-22.2002 -55.2002zM303.4 280c-24.6006 0 -44.6006 -19.9004 -44.6006 -44.5996c0 -24.6006 19.9004 -44.6006 44.6006 -44.6006c24.5996 0 44.5996 19.9004 44.5996 44.6006\\nc0 24.5996 -19.9004 44.5996 -44.5996 44.5996zM254.1 273.9c-30.1992 15 -63.2998 -6.80078 -63.2998 -38c0 -32.5 33.6006 -52.5 63.2998 -38.2002v19c-19.2998 -19.2998 -46.7998 -5.7998 -46.7998 19.2002c0 23.6992 26.7002 39.0996 46.7998 19v19zM156.9 207.6\\nc-7.60059 0 -13.8008 3.7002 -17.5 10.8008l-10.3008 -9.90039c17.8008 -26.0996 56.6006 -18.2002 56.6006 11.2998c0 13.1006 -5.40039 19 -23.6006 25.6006c-9.59961 3.39941 -12.2998 5.89941 -12.2998 10.2998c0 8.7002 14.5 14.0996 24.9004 2.5l8.39941 10.7998\\nc-19.0996 17.0996 -49.6992 8.90039 -49.6992 -14.2998c0 -11.2998 5.19922 -17.2002 20.1992 -22.7002c25.7002 -9.09961 14.7002 -24.4004 3.30078 -24.4004zM55.4004 195c30.8994 0 44.0996 22.4004 44.0996 40.9004c0 24.0996 -18 41.0996 -44.0996 41.0996h-23.4004\\nv-82h23.4004zM122.9 195v82h-16v-82h16zM544 15v145c-33.2998 -20.7998 -226.4 -124.4 -416 -160h401c8.2002 0 15 6.7998 15 15zM74.0996 256.4c5.7002 -5 8.90039 -12.6006 8.90039 -20.5c0 -7.90039 -3.2002 -15.5 -8.90039 -20.7002\\nc-4.89941 -4.40039 -11.5996 -6.40039 -21.8994 -6.40039h-4.2002v54.2002h4.2002c10.2998 0 16.7002 -1.7002 21.8994 -6.59961z\\\" />\\n    <glyph glyph-name=\\\"cc-amex\\\" unicode=\\\"&#xf1f3;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M325.1 280.2c0.100586 -8 -4.2998 -15.7002 -11.6992 -18.7002c9.5 -3.2998 11 -9.2002 11 -18.4004v-13.5h-16.6006c-0.299805 14.8008 3.60059 25.1006 -14.7998 25.1006h-18v-25.1006h-16.4004v69.3008l39.1006 -0.300781c13.2998 0 27.3994 -2 27.3994 -18.3994z\\nM295.7 268.9c5.7002 0 11 1.2998 11 7.89941c0 6.40039 -5.60059 7.40039 -10.7002 7.40039h-21v-15.2998h20.7002zM279 179.4c15.5996 0 27.9004 -5.40039 27.9004 -22.7002c0 -27.9004 -30.4004 -23.2998 -49.3008 -23.2998l-0.0996094 -23.3008h-32.2002l-20.3994 23\\nl-21.3008 -23h-65.3994l0.0996094 69.3008h66.5l20.5 -22.8008l21 22.8008h52.7002zM175.2 124.7l19 20.2002l-17.9004 20.1992h-41.7002v-12.5h36.3008v-14.0996h-36.3008v-13.7998h40.6006zM241 116.5v55.5l-25.2998 -27.4004zM278.8 147.5\\nc5.90039 0 10.5 2.7998 10.5 9.2002c0 6.09961 -4.59961 8.39941 -10.2002 8.39941h-21.5v-17.5996h21.2002zM247.2 284.2h-38.9004v-12.5h37.7998v-14.1006h-37.7998v-13.7998h38.9004v-14.2998h-55.5v69.2998h55.5v-14.5996zM576 192.6h-0.200195h0.200195zM381.4 160.7\\nc-0.100586 -7.60059 -4.2002 -15.2998 -11.9004 -18.4004c9.2002 -3.2998 11 -9.5 11 -18.3994l-0.0996094 -13.8008h-16.6006l0.100586 11.5c0 11.8008 -3.80078 13.8008 -14.8008 13.8008h-17.5996l-0.0996094 -25.3008h-16.6006l0.100586 69.3008h39.3994\\nc13 0 27.1006 -2.30078 27.1006 -18.7002zM352.2 149.5c5.59961 0 11 1.2998 11 8.2002c0 6.39941 -5.60059 7.39941 -10.7002 7.39941h-21v-15.5996h20.7002zM179.4 229.5h-16.8008v54.2002l-24 -54.2002h-14.5996l-24 54.2002v-54.2002h-33.7998l-6.40039 15.2998h-34.5\\nl-6.39941 -15.2998h-17.9004l29.7002 69.2998h24.5l28.0996 -65.7002v65.7002h27.1006l21.6992 -47l19.7002 47h27.6006v-69.2998zM31.2002 259.2h22.7002l-11.5 27.5996zM508.6 100.3c34.8008 0 54.8008 -2.2002 67.5 6.10059v-90.4004c0 -26.5 -21.5 -48 -48 -48h-480.1\\nc-26.5 0 -48 21.5 -48 48v203.7h26.5996c4.2002 10.0996 2.2002 5.2998 6.40039 15.2998h19.2002c4.2002 -10 2.2002 -5.2002 6.39941 -15.2998h52.9004v11.3994c2.2002 -5 1.09961 -2.5 5.09961 -11.3994h29.5c2.40039 5.5 2.60059 5.7998 5.10059 11.3994v-11.3994h135.5\\nv25.0996c6.39941 0 8 0.100586 9.7998 -0.200195c0 0 -0.200195 -10.8994 0.0996094 -24.7998h66.5v8.90039c7.40039 -5.90039 17.4004 -8.90039 29.7002 -8.90039h26.7998c4.2002 10.1006 2.2002 5.2998 6.40039 15.2998h19c6.5 -15 0.200195 -0.5 6.59961 -15.2998\\nh52.8008v21.9004c11.7998 -19.7002 7.7998 -12.9004 13.1992 -21.9004h41.6006v92h-39.9004v-18.3994c-12.2002 20.1992 -6.2998 10.3994 -11.2002 18.3994h-43.2998v-20.5996c-6.2002 14.5996 -4.59961 10.7998 -8.7998 20.5996h-32.4004\\nc-0.399414 0 -2.2998 -0.200195 -2.2998 0.299805h-27.5996c-12.7998 0 -23.1006 -3.19922 -30.7002 -9.2998v9.2998h-39.9004v-5.2998c-10.7998 6.10059 -20.6992 5.10059 -64.3994 5.2998c-0.100586 0 -11.6006 0.100586 -11.6006 0h-103\\nc-2.5 -6.09961 -6.7998 -16.3994 -12.5996 -30c-2.7998 6 -11 23.8008 -13.9004 30h-46v-21.0996c-7.39941 17.4004 -4.69922 11 -9 21.0996h-39.6992c-3.40039 -7.89941 -13.7002 -32 -23.1006 -53.8994v109.8c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48v-175.4\\nc-37.7002 0.200195 -44 0.900391 -54.2998 -5v5c-45.2998 0 -53.5 1.7002 -64.9004 -5.19922v5.19922h-78.1992v-5.09961c-11.4004 6.5 -21.4004 5.09961 -75.7002 5.09961v-5.59961c-6.2998 3.7002 -14.5 5.59961 -24.2998 5.59961h-58\\nc-3.5 -3.7998 -12.5 -13.6992 -15.7002 -17.1992c-12.7002 14.0996 -10.5 11.5996 -15.5 17.1992h-83.1006v-92.2998h82c3.30078 3.5 12.9004 13.9004 16.1006 17.4004c12.7002 -14.2998 10.2998 -11.7002 15.3994 -17.4004h48.9004\\nc0 14.7002 0.0996094 8.2998 0.0996094 23c11.5 -0.200195 24.3008 0.200195 34.3008 6.2002c0 -13.9004 -0.100586 -17.0996 -0.100586 -29.2002h39.6006c0 18.5 0.0996094 7.40039 0.0996094 25.2998c6.2002 0 7.7002 0 9.40039 -0.0996094\\nc0.0996094 -1.2998 0 0 0 -25.2002c152.8 0 145.899 -1.09961 156.699 4.5v-4.5zM544.9 164.8c-4.60059 0 -9.2002 -0.700195 -9.2002 -6.5c0 -12.2002 28.7998 0.299805 39.2998 -13.5v-25.7998c-4.90039 -7.09961 -14.0996 -8.90039 -22.5 -8.90039h-32l0.0996094 14.8008\\nh32c4.10059 0 8.40039 1.2998 8.40039 6.39941c0 14.6006 -42.7002 -5.59961 -42.7002 27.4004c0 14.0996 11 20.7002 23.7998 20.7002h32.9004v-14.6006h-30.0996zM487.9 125c4.09961 0 8.69922 1 8.7998 6.40039c0 14.8994 -42.7002 -5.60059 -42.7002 27.3994\\nc0 14.1006 10.7002 20.7002 23.5 20.7002h33.2002v-14.5996h-30.4004c-4.2998 0 -9.2002 -0.800781 -9.2002 -6.40039c0 -15.0996 42.9004 6.90039 42.9004 -26.2998c0 -16.4004 -11.4004 -22 -26.2002 -22h-32.2002l0.100586 14.7998h32.2002zM445.7 165.1h-38.5v-12.5\\nh37.7998v-14.0996h-37.9004v-13.7998l38.6006 -0.299805l-0.100586 -14.3008h-55.1992l0.0996094 69.3008h55.2002v-14.3008zM389.4 273.2c0.299805 0.299805 1.69922 1 7.2998 1c1 0 2 -0.100586 3.09961 -0.100586l-7.2998 -16.8994\\nc-2.2998 0 -3.2002 0.399414 -3.40039 0.5c-0.199219 0.200195 -1.09961 1.89941 -1.09961 7.89941c0 5.40039 1.09961 7.40039 1.40039 7.60059zM409.8 283.7h-0.0996094h0.0996094zM393.6 298.9h16.1006v-15.2002c-17.4004 0.299805 -33.1006 4.09961 -33.1006 -19.7002\\nc0 -11.7998 2.80078 -19.9004 16.1006 -19.9004h7.39941l23.5 54.5h24.8008l27.8994 -65.3994v65.3994h25.2998l29.1006 -48.0996v48.0996h16.8994v-69h-23.5996l-31.2002 51.9004v-51.9004h-33.7002l-6.59961 15.3008h-34.2998l-6.40039 -15.3008h-19.2002\\nc-22.7998 0 -33 11.8008 -33 34c0 23.3008 10.5 35.3008 34 35.3008zM435.7 286.8l-11.6006 -27.5996h22.8008zM334.6 298.8h16.9004v-69.2998h-16.9004v69.2998z\\\" />\\n    <glyph glyph-name=\\\"cc-paypal\\\" unicode=\\\"&#xf1f4;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M186.3 189.8c0 -12.2002 -9.7002 -21.5 -22 -21.5c-9.2002 0 -16 5.2002 -16 15c0 12.2002 9.5 22 21.7002 22c9.2998 0 16.2998 -5.7002 16.2998 -15.5zM80.5 238.3c11.2998 0 19.7998 -1.5 17.5 -14.8994c-2 -12.7002 -10.5 -14.2002 -21.5 -14.2002l-8.2002 -0.299805\\nl4.2998 26.6992c0.200195 1.7002 1.7002 2.7002 3.2002 2.7002h4.7002zM364.5 238.3c8.5 0 18 -0.5 18.0996 -11.0996c0 -15 -9 -18 -22 -18l-8 -0.299805l4.2002 26.6992c0.200195 1.7002 1.40039 2.7002 3.2002 2.7002h4.5zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480\\nc-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM128.3 232.6c0 21 -16.2002 28 -34.7002 28h-40c-2.5 0 -5 -2 -5.19922 -4.69922l-16.4004 -102.101c-0.299805 -2 1.2002 -4 3.2002 -4h19c2.7002 0 5.2002 2.90039 5.5 5.7002l4.5 26.5996\\nc1 7.2002 13.2002 4.7002 18 4.7002c28.5996 0 46.0996 17 46.0996 45.7998zM212.5 223.8h-19c-3.7998 0 -4 -5.5 -4.2002 -8.2002c-5.7998 8.5 -14.2002 10 -23.7002 10c-24.5 0 -43.1992 -21.5 -43.1992 -45.1992c0 -19.5 12.1992 -32.2002 31.6992 -32.2002\\nc9 0 20.2002 4.89941 26.5 11.8994c-0.5 -1.5 -1 -4.69922 -1 -6.19922c0 -2.30078 1 -4 3.2002 -4h17.2002c2.7002 0 5 2.89941 5.5 5.69922l10.2002 64.3008c0.299805 1.89941 -1.2002 3.89941 -3.2002 3.89941zM253 125.9l63.7002 92.5996c0.5 0.5 0.5 1 0.5 1.7002\\nc0 1.7002 -1.5 3.5 -3.2002 3.5h-19.2002c-1.7002 0 -3.5 -1 -4.5 -2.5l-26.5 -39l-11 37.5c-0.799805 2.2002 -3 4 -5.5 4h-18.7002c-1.69922 0 -3.19922 -1.7998 -3.19922 -3.5c0 -1.2002 19.5 -56.7998 21.1992 -62.1006c-2.69922 -3.7998 -20.5 -28.5996 -20.5 -31.5996\\nc0 -1.7998 1.5 -3.2002 3.2002 -3.2002h19.2002c1.7998 0.100586 3.5 1.10059 4.5 2.60059zM412.3 232.6c0 21 -16.2002 28 -34.7002 28h-39.6992c-2.7002 0 -5.2002 -2 -5.5 -4.69922l-16.2002 -102c-0.200195 -2 1.2998 -4 3.2002 -4h20.5c2 0 3.5 1.5 4 3.19922l4.5 29\\nc1 7.2002 13.1992 4.7002 18 4.7002c28.3994 0 45.8994 17 45.8994 45.7998zM496.5 223.8h-19c-3.7998 0 -4 -5.5 -4.2998 -8.2002c-5.5 8.5 -14 10 -23.7002 10c-24.5 0 -43.2002 -21.5 -43.2002 -45.1992c0 -19.5 12.2002 -32.2002 31.7002 -32.2002\\nc9.2998 0 20.5 4.89941 26.5 11.8994c-0.299805 -1.5 -1 -4.69922 -1 -6.19922c0 -2.30078 1 -4 3.2002 -4h17.2998c2.7002 0 5 2.89941 5.5 5.69922l10.2002 64.3008c0.299805 1.89941 -1.2002 3.89941 -3.2002 3.89941zM544 257.1c0 2 -1.5 3.5 -3.2002 3.5h-18.5\\nc-1.5 0 -3 -1.19922 -3.2002 -2.69922l-16.1992 -104l-0.300781 -0.5c0 -1.80078 1.5 -3.5 3.5 -3.5h16.5c2.5 0 5 2.89941 5.2002 5.69922l16.2002 101.2v0.299805zM454 205.3c9.2998 0 16.2998 -5.7002 16.2002 -15.5c0 -12.2998 -9.7002 -21.5 -21.7002 -21.5\\nc-9.2002 0 -16.2002 5.2998 -16.2002 15c0 12.2998 9.5 22 21.7002 22z\\\" />\\n    <glyph glyph-name=\\\"cc-stripe\\\" unicode=\\\"&#xf1f5;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M492.4 227.2c8.69922 0 18 -6.7002 18 -22.7002h-36.7002c0 16 9.7998 22.7002 18.7002 22.7002zM375 224.6c12.9004 0.100586 21.9004 -14.5 21.9004 -33.0996c0 -19.0996 -8.80078 -33.4004 -21.9004 -33.4004c-8.2998 0 -13.2998 3 -16.7998 6.7002l-0.200195 52.7998\\nc3.7002 4.10059 8.7998 7 17 7zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM122.2 166.9c0 42.2998 -54.2998 34.6992 -54.2998 50.6992c0 5.5 4.59961 7.7002 12.0996 7.7002\\nc10.7998 0 24.5 -3.2998 35.2998 -9.09961v33.3994c-11.7998 4.7002 -23.5 6.5 -35.2998 6.5c-28.7998 0 -48 -15 -48 -40.1992c0 -39.3008 54 -32.9004 54 -49.9004c0 -6.59961 -5.7002 -8.7002 -13.5996 -8.7002c-11.8008 0 -26.9004 4.90039 -38.9004 11.2998v-33.8994\\nc13.2002 -5.7002 26.5996 -8.10059 38.7998 -8.10059c29.6006 0.200195 49.9004 14.7002 49.9004 40.3008zM191 223.5v30.2998h-26.9004v30.7998l-34.6992 -7.39941l-0.200195 -113.9c0 -21 15.7998 -36.5 36.8994 -36.5c11.6006 0 20.2002 2.10059 24.9004 4.7002v28.9004\\nc-4.5 -1.80078 -27 -8.30078 -27 12.5996v50.5h27zM265 221.1v32.7002h-0.0996094c-4.7002 1.7002 -21.3008 4.7998 -29.6006 -10.5l-2.2002 10.5h-30.6992v-124.5h35.5v84.4004c8.39941 11 22.5996 8.89941 27.0996 7.39941zM309.1 129.3v124.5h-35.6992v-124.5h35.6992z\\nM309.1 272.2v28.8994l-35.6992 -7.59961v-28.9004zM383.2 126.7c25.3994 0.0996094 48.5996 20.5 48.5996 65.5996c0 41.2998 -23.5 63.7998 -48.3994 63.7998c-13.9004 0 -22.9004 -6.59961 -27.8008 -11.0996l-1.7998 8.7998h-31.2998v-165.8l35.5 7.5l0.0996094 40.2002\\nc5.10059 -3.7002 12.7002 -9 25.1006 -9zM543.6 178.2c0.100586 2 0.400391 9.39941 0.400391 12.8994c0 36.4004 -17.5996 65.1006 -51.2998 65.1006c-33.7998 0 -54.2998 -28.7002 -54.2998 -64.9004c0 -42.7998 24.1992 -64.5 58.7998 -64.5\\nc17 0 29.7002 3.90039 39.3994 9.2002v28.5996c-9.69922 -4.89941 -20.7998 -7.89941 -34.8994 -7.89941c-13.7998 0 -26 4.89941 -27.6006 21.5h69.5z\\\" />\\n    <glyph glyph-name=\\\"lastfm\\\" unicode=\\\"&#xf202;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M225.8 80.9004c0 0 -31.7002 -31.1006 -97.8994 -31.1006c-82.2002 0 -127.9 48.1006 -127.9 137.2c0 92.7002 45.7002 147.2 131.8 147.2c117.7 0 129.3 -66.2002 161.3 -163c14 -42.7998 38.7002 -73.9004 97.9004 -73.9004c39.9004 0 61 8.7998 61 30.5\\nc0 31.9004 -34.9004 35.1006 -79.7998 45.7002c-48.6006 11.7002 -68 36.9004 -68 76.7998c0 64 51.5996 83.9004 104.399 83.9004c59.8008 0 96.2002 -21.7002 100.9 -74.5l-58.5996 -7c-2.30078 25.2002 -17.5 35.7998 -45.7002 35.7998\\nc-25.7998 0 -41.6006 -11.7998 -41.6006 -31.7002c0 -17.5996 7.60059 -28.0996 33.4004 -34c52.2998 -11.5 115 -19.2002 115 -92.0996c0 -58.6006 -49.2998 -80.9004 -122 -80.9004c-101.4 0 -136.6 45.7002 -155.4 102.601\\nc-26.0996 81.5996 -34.3994 134.899 -100.899 134.899c-35.7002 0 -72.1006 -25.7998 -72.1006 -97.8994c0 -56.3008 28.7002 -91.5 69.2002 -91.5c45.7002 0 76.2002 34 76.2002 34z\\\" />\\n    <glyph glyph-name=\\\"lastfm-square\\\" unicode=\\\"&#xf203;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM307.8 103.1c45.4004 0 76.2002 13.9004 76.1006 50.6006c0 45.5 -39.1006 50.3994 -71.8008 57.5\\nc-16.0996 3.7002 -20.8994 10.2998 -20.8994 21.2998c0 12.5 9.89941 19.7998 26 19.7998c17.5996 0 27.0996 -6.59961 28.5996 -22.3994l36.7002 4.39941c-2.90039 33 -25.5996 46.6006 -63 46.6006c-32.9004 0 -65.2002 -12.4004 -65.2002 -52.4004\\nc0 -24.9004 12.1006 -40.7002 42.5 -48c28.1006 -6.59961 49.9004 -8.7002 49.9004 -28.5996c0 -13.6006 -13.2002 -19.1006 -38.1006 -19.1006c-37 0 -52.3994 19.4004 -61.1992 46.2002c-20 60.5 -27.3008 101.9 -100.801 101.9c-53.8994 0 -82.5 -34.1006 -82.5 -92\\nc0 -55.7002 28.6006 -85.8008 79.9004 -85.8008c41.4004 0 61.2002 19.4004 61.2002 19.4004l-11.7002 31.9004s-19 -21.3008 -47.5996 -21.3008c-25.3008 0 -43.3008 22 -43.3008 57.2002c0 45.1006 22.7002 61.2002 45.1006 61.2002c41.5 0 46.7002 -33.2998 63 -84.2998\\nc11.7002 -35.5 33.7002 -64.1006 97.0996 -64.1006z\\\" />\\n    <glyph glyph-name=\\\"ioxhost\\\" unicode=\\\"&#xf208;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M616 288c13.2998 0 24 -10.7002 24 -24c0 -13.2002 -10.7002 -24 -24 -24h-52.7002c3.10059 -15.5 4.7002 -31.5996 4.7002 -48c0 -137 -111 -248 -248 -248c-102.9 0 -191.2 62.7002 -228.7 152h-67.2998c-13.2998 0 -24 10.7002 -24 24c0 13.2002 10.7002 24 24 24\\nh52.7002c-3.10059 15.5 -4.7002 31.5996 -4.7002 48c0 137 111 248 248 248c102.9 0 191.2 -62.7002 228.7 -152h67.2998zM520 192c0 16.5996 -2 32.5996 -5.7998 48h-298.2c-13.2998 0 -24 10.7002 -24 24c0 13.2002 10.7002 24 24 24h279.5\\nc-33.9004 62 -99.7998 104 -175.5 104c-110.5 0 -200 -89.5 -200 -200c0 -16.5996 2 -32.5996 5.7998 -48h298.2c13.2998 0 24 -10.7002 24 -24c0 -13.2002 -10.7002 -24 -24 -24h-279.5c33.9004 -62 99.7998 -104 175.5 -104c110.5 0 200 89.5 200 200zM216 216h208\\nc13.2998 0 24 -10.7002 24 -24c0 -13.2002 -10.7002 -24 -24 -24h-208c-13.2998 0 -24 10.7002 -24 24c0 13.2002 10.7002 24 24 24z\\\" />\\n    <glyph glyph-name=\\\"angellist\\\" unicode=\\\"&#xf209;\\\" \\nd=\\\"M347.1 232.6c48 -11.6992 54.9004 -50.5996 54.9004 -93.6992c0 -114.301 -73.4004 -202.9 -191.4 -202.9c-96.1992 0 -164.6 76.4004 -164.5 148.6c0 37.1006 14.2002 61.7002 51.1006 71.7002c-3.10059 8.2998 -8 20.7998 -8 29.7002\\nc0 23.5 24.8994 52.5996 48.2998 52.5996c6.90039 0 13.7002 -2 20 -4.2998c-12.4004 35.2002 -46.5996 126.7 -46.5996 162c0 28.7998 14.5996 51.7002 45.6992 51.7002c40 0 85.4004 -144 95.1006 -172.5c12.5 31.4004 52.5 163.1 97.0996 163.1\\nc28 0 43.7002 -22.2998 43.7002 -48.8994c0 -30.2002 -33.7002 -124.5 -45.4004 -157.101zM311.7 340l-33.1006 -93.7002l34 -6c8.5 23.4004 47.1006 128.9 47.1006 148c0 7.10059 -2.2998 16 -10.9004 16c-16 0 -33.0996 -52 -37.0996 -64.2998zM142.3 399.7\\nc0 -29.1006 34.6006 -120 45.5 -148.8c7.7002 4.39941 19.7998 2.69922 35.4004 1.39941l-34.6006 100.3c-31.7998 92.8008 -46.2998 59 -46.2998 47.1006zM140 204c-7.7002 0 -20.2998 -13.4004 -20.4004 -21.0996c0 -20.8008 56 -97.7002 76.9004 -97.7002\\nc5.7002 0 10.5996 6.2998 10.5996 11.3994c0 12.8008 -37.7998 107.4 -67.0996 107.4zM324.3 17.7002c55.2998 61.5 49.1006 158.6 31 174.7c-24 21.0996 -106 29.0996 -138.3 29.0996c-17.2998 0 -17.4004 -6.40039 -17.4004 -13.0996\\nc0 -43.7002 92.9004 -39.7002 120.601 -39.7002c11.2002 0 15.7998 -9.90039 16.8994 -21.1006c-7.39941 -7.39941 -17.6992 -11.6992 -27.3994 -15.3994c-9.40039 -3.40039 -19.1006 -7.10059 -27.1006 -13.1006c-22 -16 -43.6992 -43.3994 -43.6992 -71.6992\\nc0 -17.7002 10.5996 -32.9004 10.5996 -50.3008c0 -0.299805 -2 -6.5 -2 -7.39941c-32.5996 2.2998 -40.5996 34.5996 -41.7002 61.7002c-3.39941 -0.900391 -8 -0.600586 -11.7002 -0.600586c5.10059 -17.7998 -11.8994 -42 -38 -42\\nc-37.7998 0 -88 57.2002 -58.2998 86.9004c28.7002 -35.9004 35 -51.4004 51.1006 -51.4004c4 0 11.6992 3.40039 11.6992 8.2998c0 12.8008 -42.8994 73.1006 -54.2998 73.1006c-16.7998 0 -37.7002 -24.9004 -20.5996 -68.2998\\nc22.5996 -55.7002 69.5 -88.3008 128.899 -88.3008c43.4004 0 80.6006 16.6006 109.7 48.6006zM225.7 143.7c3.2002 -8.2998 6.59961 -16.6006 9.39941 -25.1006c6.30078 7.10059 12.9004 13.7002 20.3008 19.1006c-10 2 -20 2.89941 -29.7002 6z\\\" />\\n    <glyph glyph-name=\\\"buysellads\\\" unicode=\\\"&#xf20d;\\\" \\nd=\\\"M224 297.3l42.9004 -160.7h-85.8008zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM382.7 42.7002l-94.5 298.7h-128.4l-94.5 -298.7h90.7002l111.7 91.5996l24.2002 -91.5996h90.7998z\\n\\\" />\\n    <glyph glyph-name=\\\"connectdevelop\\\" unicode=\\\"&#xf20e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M550.5 207c6.69629 -1.33887 11.7861 -7.5 11.7881 -14.7324c0 -7.5 -5.3584 -13.6602 -12.3223 -15l-54.9111 -95.3574c0.536133 -1.60742 0.804688 -3.21387 0.804688 -4.82129c0 -7.23145 -5.09082 -13.3926 -12.0547 -14.7314l-51.6963 -90.2686\\nc0.535156 -1.33887 0.802734 -2.67773 0.802734 -4.28516c0 -8.30371 -6.69727 -15.2676 -15.2686 -15.2676c-4.28516 0 -8.30371 1.875 -10.9814 4.82129h-107.144c-2.67871 -3.21484 -6.96484 -5.35742 -11.5176 -5.35742s-8.83887 2.14258 -11.5166 5.35645h-106.875\\nc-2.67969 -3.21484 -6.69727 -5.35742 -11.5186 -5.35742c-8.30371 0 -15.2676 6.69727 -15.2676 15.2676c0 1.875 0.535156 3.75 1.07031 5.35742l-51.6963 89.7324c-6.96484 1.33887 -12.0547 7.5 -12.0547 14.7314c0 1.875 0.268555 3.21387 0.804688 4.82129\\nl-55.1797 95.3574c-6.96484 1.60742 -12.0537 7.76855 -12.0537 15c0 7.5 5.3584 13.6611 12.5898 15l53.3047 92.1436c0 0.536133 -0.268555 1.07227 -0.268555 1.60645c0 6.16113 3.75098 11.251 9.10742 13.6611l55.9824 97.2334\\nc-0.536133 1.33887 -1.07129 3.21387 -1.07129 4.82129c0 8.57129 6.96484 15.2676 15.2676 15.2676c4.82227 0 8.83887 -2.14258 11.7861 -5.625h106.071c2.67871 3.48242 6.69629 5.625 11.5176 5.625s8.83887 -2.14258 11.5176 -5.62402h106.606\\nc2.94727 3.48242 6.96484 5.625 11.7861 5.625c8.30371 0 15.2676 -6.69727 15.2676 -15.2676c0 -1.60742 -0.535156 -3.21484 -1.07031 -4.82129l55.4463 -95.8936c8.03613 -0.267578 14.7324 -6.96484 14.7324 -15.001c0 -2.67871 -0.803711 -5.08984 -1.875 -7.23145z\\nM153.535 -2.73242v75.8037h-43.6602zM153.535 81.1074v50.624l-44.999 -47.4102c0.535156 -1.07227 1.07129 -2.14355 1.33887 -3.21387h43.6602zM153.535 143.518l0.000976562 92.9463l-50.0889 51.9648c-2.41113 -1.60645 -5.08887 -2.41113 -7.76855 -2.67871\\nl-51.9648 -90c0.268555 -1.07227 0.268555 -2.14258 0.268555 -3.48242c0 -1.33887 0 -2.67871 -0.535156 -4.01758l55.7129 -96.4287c1.33887 -0.267578 2.67871 -1.07129 4.01758 -1.60742zM153.535 245.84v72.0527l-43.9277 -15.8037\\nc0 -0.267578 0.267578 -0.803711 0.267578 -1.07227c0 -2.94531 -0.803711 -5.62402 -2.14258 -7.7666zM153.535 326.465v59.7324l-43.6602 -75.5361zM480.054 287.357l-0.267578 0.267578l-98.0361 -101.518l63.75 -67.2324l35.3584 167.143zM291.75 92.8926\\nl-11.25 -11.7852h22.7676zM291.482 104.143l79.2852 82.2324l-83.0352 87.5889l-79.5537 -84.375zM296.839 98.25l16.875 -17.1426h124.02l5.8916 28.125l-67.5 71.25zM410.411 403.607l-117.053 -124.019l83.0342 -87.5889l97.5 101.25\\nc-1.33984 2.14258 -2.14258 4.82129 -2.14258 7.7666v0.536133l-57.8574 100.714c-1.33984 0.268555 -2.41016 0.804688 -3.48145 1.34082zM401.304 405.75h-4.28711l-166.339 -60l57.0547 -60.2676zM277.821 405.75h-103.929l50.8936 -53.5713l148.393 53.5713h-75\\nc-2.67871 -2.67773 -6.16016 -4.28516 -10.1787 -4.28516s-7.50098 1.60742 -10.1787 4.28516zM161.572 400.125v-70.7148l54.9111 19.8213l-51.1611 53.8398c-0.730469 -0.25293 -1.93066 -0.613281 -2.67969 -0.804688zM161.572 320.839v-83.3037l40.9814 -42.0527\\nl79.5537 84.1064l-59.7324 63.2139zM161.572 228.161v-76.0723l36.4277 38.3037zM161.572 140.303v-59.1953h107.678l17.1426 17.6777l-82.7676 85.9814zM168.536 -21.75h1.33887l91.6074 94.8213h-99.9102v-89.7324l1.07031 -1.60645\\nc2.41113 -0.804688 4.28613 -1.875 5.89355 -3.48242zM298.447 -21.75h104.194l-91.6064 94.8213h-38.3037l-91.6074 -94.8213h96.4287c2.68066 2.41016 6.42871 4.28516 10.4473 4.28516s7.76758 -1.875 10.4473 -4.28516zM418.447 -9.96387l17.4121 83.0361h-114.376\\nl89.1953 -91.875c1.07227 0.536133 2.14355 1.07031 3.48242 1.33887zM431.303 12.2676l34.8223 60.8037h-21.9639zM466.125 81.1074c0.267578 1.07129 0.803711 2.14258 1.33887 2.94531l-17.1426 18.2139l-4.55371 -21.1592h20.3574zM532.286 188.518\\nc-0.268555 1.33984 -0.536133 2.41113 -0.536133 3.75c0 1.60742 0.536133 2.94629 0.802734 4.28516l-45.8027 79.2861l-34.5537 -163.928l20.625 -21.9639c1.33887 0.802734 2.67871 1.33887 4.01758 1.87402z\\\" />\\n    <glyph glyph-name=\\\"dashcube\\\" unicode=\\\"&#xf210;\\\" \\nd=\\\"M326.6 344l102.2 104v-427c0 -50.5 -40.0996 -85 -91.2002 -85h-227.199c-51.1006 0 -91.2002 34.5 -91.2002 85v229.5c0 50.2002 40.0996 93.5 91.2002 93.5h216.199zM153.9 31.5v-0.0996094h223.8l-51.1006 52.2998v123.5c0 17.7002 -14.2998 32.5 -32 32.5h-140.699\\nc-17.7002 0 -32.4004 -14.7998 -32.4004 -32.5v-142.9c0 -17.7002 14.7002 -32.7998 32.4004 -32.7998z\\\" />\\n    <glyph glyph-name=\\\"forumbee\\\" unicode=\\\"&#xf211;\\\" \\nd=\\\"M5.7998 138.3c-3.7998 17 -5.7998 34.2002 -5.7998 51.4004c0 123.3 99.7998 223.3 223.1 223.3c16.6006 0 33.3008 -2 49.3008 -5.5c-123.4 -47 -220.5 -145.5 -266.601 -269.2zM398.7 327.5c-151.101 -44 -269.2 -164.4 -312.3 -315.7\\nc-17.2002 13.4004 -32.7002 30.9004 -45.2002 49c43.3994 149.9 160.1 267.7 309.7 312c18.0996 -12.5996 34.0996 -27.7998 47.7998 -45.2998zM414.5 74.7998c13.0996 -35.2998 24.2002 -73.2998 33.5 -109.8c-36.0996 9.2998 -72 20.5 -107 33.5996\\nc-25.7002 -16 -54.5996 -26.8994 -84.5996 -31.2998c42.5996 79.7002 108.199 147.4 187.6 190.3c-4.09961 -29.0996 -14.2998 -57.6992 -29.5 -82.7998zM444.2 220.3c-113.7 -46.7002 -204.2 -139.399 -250.5 -253.5c-19.6006 2.7002 -38.5 7.60059 -56.6006 15.2002\\nc44.9004 138.5 153.4 249.3 291.301 295.1c7.89941 -18.0996 13.1992 -37.2998 15.7998 -56.7998z\\\" />\\n    <glyph glyph-name=\\\"leanpub\\\" unicode=\\\"&#xf212;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M386.539 336.515l15.0957 -248.955l-10.9785 0.275391c-36.2324 0.824219 -71.6406 -8.7832 -102.657 -27.9971c-31.0156 19.2139 -66.4238 27.9971 -102.657 27.9971c-45.5635 0 -82.0693 -10.7051 -123.516 -27.7227l31.291 258.288\\nc28.5459 11.8027 61.4834 18.1143 92.2256 18.1143c41.1729 0 73.8359 -13.1748 102.657 -42.5439c27.7227 28.2715 59.0127 41.7217 98.5391 42.5439zM569.07 0c-25.5264 0 -47.4854 5.21484 -70.542 15.6445c-34.3105 15.6455 -69.9932 24.9785 -107.871 24.9785\\nc-38.9775 0 -74.9346 -12.9014 -102.657 -40.623c-27.7227 27.7227 -63.6797 40.623 -102.657 40.623c-37.8779 0 -73.5605 -9.33301 -107.871 -24.9785c-22.2324 -9.88086 -44.7402 -15.6445 -69.1689 -15.6445h-1.37305l42.5449 349.141\\nc39.251 22.2334 87.0117 34.8594 132.301 34.8594c37.0547 0 75.209 -7.68457 106.225 -29.0947c31.0156 21.4102 69.1699 29.0947 106.225 29.0947c45.2891 0 93.0498 -12.626 132.301 -34.8594zM525.702 44.7412l-34.0361 280.246\\nc-30.7422 13.999 -67.248 21.4102 -101.009 21.4102c-38.4287 0 -74.3848 -12.0771 -102.657 -38.7021c-28.2725 26.625 -64.2275 38.7021 -102.657 38.7021c-33.7607 0 -70.2666 -7.41113 -101.009 -21.4102l-34.0361 -280.246\\nc47.2109 19.4863 82.8945 33.4854 135.045 33.4854c37.6045 0 70.8174 -9.60547 102.657 -29.6436c31.8398 20.0381 65.0518 29.6436 102.657 29.6436c52.1504 0 87.834 -13.999 135.045 -33.4854z\\\" />\\n    <glyph glyph-name=\\\"sellsy\\\" unicode=\\\"&#xf213;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M539.71 210.692c55.1572 -13.4834 94.0742 -63.124 94.0732 -119.509c0 -68.0264 -55.4639 -123.184 -123.185 -123.184h-381.197c-67.7217 0 -123.186 55.1572 -123.185 123.185c0 47.4961 27.8848 91.0098 70.7852 111.234\\nc-2.14453 7.35449 -3.06543 15.0146 -3.06543 22.3691c0 46.2705 37.6914 83.9609 83.9629 83.9609c20.2227 0 39.835 -7.35449 55.1562 -20.5303c18.3867 74.7695 85.8008 127.781 163.021 127.781c92.542 0 167.924 -75.3818 167.924 -167.924\\nc0 -12.5635 -1.22559 -25.127 -4.29004 -37.3838zM199.88 46.4463v110.928c0 8.27344 -7.04688 15.3213 -15.3213 15.3213h-30.9482c-8.27344 0 -15.3213 -7.04785 -15.3213 -15.3213v-110.928c0 -8.27344 7.04688 -15.3213 15.3213 -15.3213h30.9482\\nc8.27344 0 15.3213 7.04688 15.3213 15.3213zM289.357 46.4463v131.458c0 8.27246 -7.04883 15.3203 -15.3223 15.3203h-30.9492c-8.27246 0 -15.3213 -7.04688 -15.3213 -15.3203v-131.458c0 -8.27344 7.04688 -15.3213 15.3213 -15.3213h30.9492\\nc8.27344 0 15.3223 7.04688 15.3223 15.3213zM378.834 46.4463v162.714c0 8.27246 -7.04688 15.3213 -15.3213 15.3213h-30.9482c-8.27441 0 -15.3223 -7.04785 -15.3223 -15.3213v-162.714c0 -8.27344 7.04785 -15.3213 15.3223 -15.3213h30.9482\\nc8.27441 0 15.3213 7.04688 15.3213 15.3213zM465.861 46.4463v224.612c0 8.58008 -7.04785 15.6279 -15.3223 15.6279h-28.4971c-8.27441 0 -15.3213 -7.04883 -15.3213 -15.6279v-224.612c0 -8.27344 7.04688 -15.3213 15.3213 -15.3213h28.4971\\nc8.27441 0 15.3223 7.04688 15.3223 15.3213z\\\" />\\n    <glyph glyph-name=\\\"shirtsinbulk\\\" unicode=\\\"&#xf214;\\\" \\nd=\\\"M100 37.7002l4.40039 9.89941l30.5996 -13.3994l-4.40039 -9.90039zM139.4 20.2002l4.39941 9.89941l30.6006 -13.3994l-4.40039 -9.90039zM311.5 34.2002l30.5996 13.3994l4.40039 -9.89941l-30.5996 -13.4004zM179.1 3l4.40039 9.59961l30.2998 -13.3994\\nl-4.39941 -9.90039zM60.4004 55.2002l4.39941 9.89941l30.6006 -13.6992l-4.40039 -9.60059zM271.8 16.7002l30.6006 13.3994l4.39941 -9.89941l-30.5996 -13.4004zM232.5 -0.799805l30.5996 13.3994l4.40039 -9.59961l-30.5996 -13.7002zM350.9 51.4004l30.5996 13.6992\\nl4.40039 -9.89941l-30.6006 -13.4004zM170 401.4v-10.5h-33.5v10.5h33.5zM122.8 401.4l-0.0996094 -10.5h-33.5v10.5h33.5996zM75.5 401.4l0.0996094 -10.5h-33.2998v10.5h33.2002zM217 401.4v-10.5h-33.2002v10.5h33.2002zM311.5 401.4v-10.5h-33.5v10.5h33.5zM358.8 401.4\\nv-10.5h-33.5v10.5h33.5zM264.2 401.4v-10.5h-33.2002v10.5h33.2002zM405.7 401.4v-10.5h-33.2998v10.5h33.2998zM52.7998 96.9004v-33.5h-10.7998v33.5h10.7998zM122.8 312.8l-0.0996094 -10.5h-33.5v10.5h33.5996zM52.7998 302.2v-23h-10.7998v33.5h33.5996v-10.5h-22.7998\\nzM221.7 73.5996c-50.2002 0 -91.2998 40.8008 -91.2998 91.3008c0 50.1992 41.0996 91.2998 91.2998 91.2998c50.5 0 91.2998 -41.1006 91.2998 -91.2998c0 -50.5 -40.7998 -91.3008 -91.2998 -91.3008zM173.5 184.7c0 -44.2998 77.5996 -11.9004 77.5996 -38\\nc0 -13.1006 -24 -14.2998 -32.6992 -14.2998c-12.3008 0 -29.8008 2.69922 -35.9004 14.8994h-0.900391l-9 -18.3994c14.8008 -9.30078 29.1006 -12.2002 47.2002 -12.2002c19.5 0 51 5.7998 51 31.2002c0 48.0996 -78.5 16.2998 -78.5 37.8994\\nc0 13.1006 20.7998 14.9004 29.7998 14.9004c10.8008 0 29.2002 -3.2002 35.6006 -13.1006h0.899414l8.80078 16.9004c-15.1006 6.2002 -27.4004 12 -44.3008 12c-20.0996 0 -49.5996 -6.40039 -49.5996 -31.7998zM52.7998 269.6v-33.5996h-10.7998v33.5996h10.7998z\\nM395.2 63.4004v33.5h10.7998v-33.5h-10.7998zM52.7998 140.1v-33.5h-10.7998v33.5h10.7998zM0 444.3h448v-406l-226.3 -98.5996l-221.7 98.5996v406zM418.8 57.2002h0.100586v270.1h-389.7v-270.1l192.8 -85.7002zM418.8 356.5h0.100586v58.5996h-389.7v-58.5996h389.6z\\nM52.7998 226.4v-33.5h-10.7998v33.5h10.7998zM52.7998 183.2v-33.5h-10.7998v33.5h10.7998zM170 312.8v-10.5h-33.5v10.5h33.5zM395.2 149.7v33.5h10.7998v-33.5h-10.7998zM395.2 192.9v33.5h10.7998v-33.5h-10.7998zM217 312.8v-10.5h-33.2002v10.5h33.2002zM395.2 236\\nv33.5h10.7998v-33.5h-10.7998zM395.2 106.5v33.5h10.7998v-33.5h-10.7998zM264.2 312.8v-10.5h-33.2002v10.5h33.2002zM311.5 312.8v-10.5h-33.5v10.5h33.5zM395.2 279.2l0.0996094 23h-22.7998v10.5h33.5v-33.5h-10.7998zM358.8 312.8v-10.5h-33.5v10.5h33.5z\\\" />\\n    <glyph glyph-name=\\\"simplybuilt\\\" unicode=\\\"&#xf215;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M481.2 384c14.7002 0 26.5 -11.7998 26.7002 -26.2998v-331.4c0 -14.5 -11.8008 -26.2998 -26.6006 -26.2998h-450.399c-14.8008 0 -26.6006 11.7998 -26.6006 26.2998v331.4c0 14.5 11.7998 26.2998 26.4004 26.2998h106c14.5996 0 26.5996 -11.7998 26.5996 -26.2998\\nv-39.6006h185.3v39.6006c0 14.5 12.1006 26.2998 26.6006 26.2998h106zM149.8 92.2002c36.9004 0 66.6006 29.7002 66.6006 66.3994c0 36.9004 -29.7002 66.6006 -66.6006 66.6006c-36.7002 0 -66.3994 -29.7002 -66.3994 -66.6006\\nc0 -36.6992 29.7998 -66.3994 66.3994 -66.3994zM362.2 92.2002c36.5996 0 66.3994 29.7002 66.3994 66.5996c0 36.7002 -29.7998 66.4004 -66.3994 66.4004c-36.9004 0 -66.6006 -29.7998 -66.6006 -66.4004c0 -36.8994 29.7002 -66.5996 66.6006 -66.5996z\\\" />\\n    <glyph glyph-name=\\\"skyatlas\\\" unicode=\\\"&#xf216;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 118.7c0 -65.9004 -52.5 -114.4 -117.5 -114.4c-165.9 0 -196.6 249.7 -359.7 249.7c-146.899 0 -147.1 -212.2 5.60059 -212.2c42.5 0 90.8994 17.7998 125.3 42.5c5.59961 4.10059 16.8994 16.2998 22.7998 16.2998s10.9004 -5 10.9004 -10.8994\\nc0 -7.7998 -13.1006 -19.1006 -18.7002 -24.1006c-40.9004 -35.5996 -100.3 -61.1992 -154.7 -61.1992c-83.4004 -0.100586 -154 59 -154 144.899c0 85.9004 67.5 149.101 152.8 149.101c185.3 0 222.5 -245.9 361.9 -245.9c99.8994 0 94.7998 139.7 3.39941 139.7\\nc-17.5 0 -35 -11.6006 -46.8994 -11.6006c-8.40039 0 -15.9004 7.2002 -15.9004 15.6006c0 11.5996 5.2998 23.7002 5.2998 36.2998c0 66.5996 -50.8994 114.7 -116.899 114.7c-53.1006 0 -80 -36.9004 -88.7998 -36.9004c-6.2002 0 -11.2002 5 -11.2002 11.2002\\nc0 5.59961 4.09961 10.2998 7.7998 14.4004c25.2998 28.7998 64.7002 43.6992 102.8 43.6992c79.4004 0 139.101 -58.3994 139.101 -137.8c0 -6.89941 -0.300781 -13.7002 -1.2002 -20.5996c11.8994 3.09961 24.0996 4.7002 35.8994 4.7002\\nc60.7002 0 111.9 -45.3008 111.9 -107.2z\\\" />\\n    <glyph glyph-name=\\\"pinterest-p\\\" unicode=\\\"&#xf231;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M204 441.5c94.2002 0 180 -64.7998 180 -164.1c0 -93.3008 -47.7002 -196.801 -153.9 -196.801c-25.1992 0 -57 12.6006 -69.2998 36c-22.7998 -90.2998 -21 -103.8 -71.3994 -172.8c-5.2002 -1.89941 -3.5 -2.2998 -6.90039 1.5c-1.7998 18.9004 -4.5 37.5 -4.5 56.4004\\nc0 61.2002 28.2002 149.7 42 209.1c-7.5 15.2998 -9.59961 33.9004 -9.59961 50.7002c0 80 93.8994 92 93.8994 25.7998c0 -39 -26.3994 -75.5996 -26.3994 -113.399c0 -25.8008 21.2998 -43.8008 46.1992 -43.8008c69 0 90.3008 99.6006 90.3008 152.7\\nc0 71.1006 -50.4004 109.8 -118.5 109.8c-79.2002 0 -140.4 -57 -140.4 -137.399c0 -38.7002 23.7002 -58.5 23.7002 -67.7998c0 -7.80078 -5.7002 -35.4004 -15.6006 -35.4004c-24 0 -63.5996 40 -63.5996 110.4c0 110.699 101.4 179.1 204 179.1z\\\" />\\n    <glyph glyph-name=\\\"whatsapp\\\" unicode=\\\"&#xf232;\\\" \\nd=\\\"M380.9 350.9c41.8994 -42 67.0996 -97.7002 67.0996 -157c0 -122.4 -101.8 -222 -224.1 -222h-0.100586c-37.2002 0 -73.7002 9.2998 -106.1 27l-117.7 -30.9004l31.5 115c-19.4004 33.7002 -29.5996 71.9004 -29.5996 111c0 122.4 99.5996 222 222 222\\nc59.2998 0 115.1 -23.0996 157 -65.0996zM223.9 9.2998c101.699 0 186.6 82.7998 186.6 184.601c0.0996094 49.2998 -21.2998 95.5996 -56.0996 130.5c-34.8008 34.8994 -81.1006 54.0996 -130.4 54.0996c-101.8 0 -184.6 -82.7998 -184.6 -184.5\\nc0 -34.9004 9.69922 -68.7998 28.1992 -98.2002l4.40039 -7l-18.5996 -68.0996l69.7998 18.2998l6.7002 -4c28.2998 -16.7998 60.7998 -25.7002 94 -25.7002zM325.1 147.5c5.5 -2.7002 9.2002 -4.09961 10.5 -6.59961c1.40039 -2.30078 1.40039 -13.4004 -3.19922 -26.4004\\nc-4.60059 -13 -26.7002 -24.7998 -37.4004 -26.4004c-17.5996 -2.59961 -31.4004 -1.2998 -66.5996 13.9004c-55.7002 24.0996 -92 80.0996 -94.8008 83.7998c-2.69922 3.7002 -22.5996 30.1006 -22.5996 57.4004s14.2998 40.7002 19.4004 46.2998\\nc5.09961 5.5 11.0996 6.90039 14.7998 6.90039s7.39941 0 10.5996 -0.200195c3.40039 -0.200195 8 1.2998 12.5 -9.5c4.60059 -11.1006 15.7002 -38.4004 17.1006 -41.2002c1.39941 -2.7998 2.2998 -6 0.5 -9.7002c-10.6006 -21.2002 -22 -20.5 -16.3008 -30.2998\\nc21.5 -36.9004 42.9004 -49.7002 75.5 -66c5.5 -2.7998 8.80078 -2.2998 12 1.40039c3.30078 3.7998 13.9004 16.1992 17.6006 21.7998c3.7002 5.59961 7.39941 4.7002 12.5 2.7998c5.09961 -1.7998 32.3994 -15.2002 37.8994 -18z\\\" />\\n    <glyph glyph-name=\\\"viacoin\\\" unicode=\\\"&#xf237;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 416l-48 -112h48v-48h-68.5l-13.7998 -32h82.2998v-48h-102.8l-89.2002 -208l-89.2002 208h-102.8v48h82.2998l-13.7998 32h-68.5v48h48l-48 112h64l80.7998 -192h94.5l80.7002 192h64zM192 112l27 64h-54z\\\" />\\n    <glyph glyph-name=\\\"medium\\\" unicode=\\\"&#xf23a;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM372.2 309.9v5h-83.2002l-59.2998 -147.9l-67.4004 148h-87.2998v-5.09961l28.0996 -33.9004c2.80078 -2.5 4.2002 -6.09961 3.80078 -9.7998v-133c0.799805 -4.7998 -0.700195 -9.7002 -4.10059 -13.2002l-31.5996 -38.2998v-5.10059h89.7998\\nv5.10059l-31.5996 38.2998c-3.40039 3.5 -5.10059 8.40039 -4.40039 13.2002v115l78.7002 -171.601h9.09961l67.6006 171.601v-136.9c0 -3.59961 0 -4.2998 -2.40039 -6.7002l-24.2998 -23.5996v-4.90039h118v5.10059l-23.5 23\\nc-2.10059 1.5 -3.10059 4.09961 -2.7002 6.7002v169.3c-0.400391 2.5 0.599609 5.09961 2.7002 6.7002z\\\" />\\n    <glyph glyph-name=\\\"y-combinator\\\" unicode=\\\"&#xf23b;\\\" \\nd=\\\"M448 416v-448h-448v448h448zM236 160.5l77.5 145.5h-32.7002l-45.7998 -91c-4.7002 -9.2998 -9 -18.2998 -12.7998 -26.7998l-12.2002 26.7998l-45.2002 91h-35l76.7002 -143.8v-94.5h29.5v92.7998z\\\" />\\n    <glyph glyph-name=\\\"optin-monster\\\" unicode=\\\"&#xf23c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M572.6 26.5996c1 -3.5 1.90039 -7 1.7002 -10.6992c0.799805 -31.6006 -44.2998 -64 -73.5 -65.1006c-17.2998 -0.799805 -34.5996 8.40039 -42.7002 23.5c-113.5 -4.09961 -227 -4.89941 -340.199 0c-8.40039 -15.0996 -25.7002 -24 -43 -23.5\\nc-28.9004 1.10059 -74 33.5 -73.5 65.1006c0.299805 3.7998 0.799805 7.2998 1.89941 10.7998c-5.59961 9.39941 -4.7998 15.2998 5.40039 11.5996c3.2998 5.2002 7 9.5 11.0996 13.7998c-2.5 10.9004 1.2998 14.1006 11.1006 9.2002c4.5 3.2998 10 6.5 15.8994 9.2002\\nc0 15.7998 11.7998 11.2002 17.2998 5.7002c12.5 1.7998 20.2002 -0.700195 26.8008 -5.7002v19.7002c-12.9004 0 -40.6006 11.3994 -45.9004 36.2002c-5 20.7998 2.59961 38.0996 25.0996 47.5996c0.800781 5.90039 8.10059 14 14.9004 15.9004\\nc7.59961 1.89941 12.5 -4.60059 14.0996 -10.3008c7.40039 0 17.8008 -1.5 21.1006 -8.09961c5.39941 0.5 11.0996 1.40039 16.5 1.90039c-2.40039 1.89941 -5.10059 3.5 -8.10059 4.59961c-5.09961 8.90039 -13.7998 11.0996 -24.5996 11.5996\\nc0 0.800781 0 1.60059 0.299805 2.7002c-19.7998 0.5 -44.0996 5.60059 -54.8994 17.7998c-21.3008 23.6006 -15.9004 83.6006 12.1992 103.5c8.40039 5.7002 21.6006 0.800781 22.7002 -9.69922c2.40039 -20.6006 0.400391 -26.8008 26.2002 -25.9004\\nc8.09961 7.7998 16.7998 14.5996 26.5 20c-14.9004 1.2998 -28.9004 -1.59961 -43.7998 -3.7998c12.7002 12.5 23.8994 25.3994 56.7002 42.3994c23.5 11.9004 50 20.8008 76.1992 23.2002c-18.5996 7.90039 -40 11.9004 -59.6992 16.5\\nc76.5 16.2002 174.6 22.1006 244.199 -37.5996c18.1006 -15.4004 32.4004 -36.2002 42.7002 -60c39.7998 -4.90039 36.4004 5.5 38.6006 25.0996c1.09961 10.2998 14.2998 15.4004 22.6992 9.5c14.9004 -10.5 22.2002 -30.7998 24.6006 -48.0996\\nc2.2002 -17.7998 0.299805 -41.2998 -12.4004 -55.1006c-10.7998 -12.1992 -34.2998 -17.5996 -53.7998 -18.0996v-2.7998c-11.0996 -0.200195 -20.2998 -2.40039 -25.7002 -11.6006c-3 -1.09961 -5.7002 -2.69922 -8.39941 -4.59961\\nc5.69922 -0.5 11.3994 -1.40039 16.7998 -1.90039c1.89941 5.60059 12.5996 8.40039 21.0996 8.40039c1.7002 5.40039 6.7998 11.9004 14.1006 10.2998c7.2998 -1.59961 14.0996 -10 14.8994 -15.8994c10.7998 -4.40039 22.1006 -12.2002 25.1006 -25.7002\\nc1.89941 -8.10059 1.69922 -15.1006 0.299805 -21.9004c-5.7002 -25.2002 -33.2998 -36.2002 -45.9004 -36.2002c0 -6.69922 0 -13.1992 -0.299805 -19.6992c8.09961 6 16.4004 7.19922 26.7998 5.69922c6 5.90039 17.6006 9.40039 17.6006 -5.69922\\nc5.59961 -2.7002 11.2998 -6 15.8994 -9.2002c10.1006 5 13.7002 0.5 10.7998 -9.2002c4.10059 -4.2998 8.10059 -8.90039 11.1006 -13.7998c10.0996 3.59961 11 -2.10059 5.39941 -11.6006zM498.8 280.6c17.2998 -6.69922 26.2002 -22.0996 30.2998 -35.6992\\nc1.10059 10.5996 -2.69922 39.5 -13.7998 51.0996c-7.2998 7.2998 -14.0996 5.09961 -14.0996 -0.799805c0 -6.2002 -1.2998 -11.6006 -2.40039 -14.6006zM494.2 273.9c-3.2002 -3.30078 -9.2002 -4.90039 -14.1006 -5.7002c13 -15.7002 17 -41.7002 12.7002 -63\\nc10.7998 2.2002 20.5 6.2998 26.2002 12.2002c1.90039 2.19922 3.7998 4.89941 4.90039 7.59961c-1.10059 21.2998 -10.2002 42.7002 -29.7002 48.9004zM470.1 267.1c-3.69922 0 -8.09961 0 -11.7998 0.300781c7.5 -20.6006 12.4004 -42.7002 14.2998 -64.6006\\nc3.5 0 7.5 0.299805 11.6006 0.799805c5.89941 24.3008 -0.299805 51.6006 -14.1006 63.5zM47.5 245c4.09961 13.5 13 28.9004 30.2998 35.7002c-1 3 -2.39941 8.39941 -2.39941 14.5996c0 5.90039 -7.10059 8.10059 -14.1006 0.799805\\nc-11.3994 -11.5996 -14.8994 -40.5996 -13.7998 -51.0996zM57.2002 217.4c5.7002 -6.2002 15.3994 -10 26.2002 -12.2002c-4.30078 21.3994 -0.300781 47.2998 12.6992 63c-4.89941 0.799805 -10.8994 2.5 -14.0996 5.7002\\nc-19.4004 -6.2002 -28.2998 -27.6006 -29.7002 -48.9004c1.40039 -2.7002 3 -5.40039 4.90039 -7.59961zM105.1 202.8c2.40039 22.2002 9.10059 43.7998 19.8008 63.5c-5.2002 -1.09961 -10 -3 -14.9004 -4.89941l-12.2002 -5.10059v0.299805\\nc-7.2998 -14.0996 -10 -34.3994 -5.39941 -53c4.59961 -0.5 8.59961 -0.799805 12.6992 -0.799805zM289.1 365.5c-41.8994 0 -76.1992 -34.0996 -76.1992 -75.9004c0 -42.1992 34.2998 -76.1992 76.1992 -76.1992c41.9004 0 76.2002 34 76.2002 76.1992\\nc0 41.9004 -34.2998 75.9004 -76.2002 75.9004zM404.7 191.2c-12.9004 0.799805 -26.2002 0.799805 -39.5 1.09961c10 -50.5996 3.2998 -64.7002 16.5 -58.0996c16 8.09961 22.7002 39.2002 23 57zM350.7 192.8c-18.9004 0.299805 -38.1006 0.299805 -57 0v0.299805\\nc-0.299805 -5.19922 0.200195 -38.0996 4.2998 -41.0996c11.0996 -5.40039 39.5 -4.59961 51.0996 -1.09961c5.40039 1.59961 2.40039 37 1.60059 41.8994zM278.3 139c4.60059 2.5 2.40039 45.4004 1.2998 53.7002v0.299805\\nc-19.3994 -0.299805 -38.5996 -0.299805 -57.7998 -0.799805c-1.89941 -9.2002 -4.59961 -48.9004 1.90039 -51.6006c13 -5.69922 41.5996 -5.09961 54.5996 -1.59961zM171.8 190.1c-5.39941 -19.6992 0.299805 -45.0996 22.2002 -54.8994\\nc5.40039 -2.5 8.59961 -2.5 9.7002 4.2998c1.89941 8.7002 2.5 36.7998 4.89941 52.2002c-12.1992 -0.200195 -24.5996 -0.799805 -36.7998 -1.60059zM136.4 158.8c2.39941 -3.7002 1.59961 -9.09961 -8 -12.5c43.7998 -47 92.6992 -85.7002 155.899 -106.5\\nc67.5 19.2002 115.601 60 163.2 107c-11.0996 4.2998 -7.7002 10.2998 -7.2998 11.6006c-8.90039 0.799805 -17.9004 1.89941 -26.5 2.69922c-9.5 -33 -36 -52.8994 -46.7998 -31.5996c-2.7002 5.2002 -3.5 11.7002 -4.60059 16.7998\\nc-3.7998 -8.39941 -13.2998 -8.09961 -24.5996 -8.89941c-13.2002 -1.10059 -31.6006 -1.30078 -44 3c-3 -12.9004 -11.1006 -12.9004 -26.7998 -14.3008c-14.1006 -1.39941 -48.7002 -4.09961 -54.9004 10.8008c-1.09961 -28.7002 -35.0996 -10 -45.0996 7\\nc-3.2002 5.69922 -5.40039 11.3994 -7 17.5996c-7.80078 -0.799805 -15.7002 -1.59961 -23.5 -2.7002zM114.8 -13.7002c0.5 2.5 0.799805 5.2002 0.799805 8.2002c-5.69922 23.2002 -18.5996 49.7002 -33.5 54c-22.3994 6.7002 -68.8994 -23.5 -66.1992 -54.5996\\nc12.6992 -19.5 40 -35.7002 59.1992 -36.5c17.8008 -0.800781 35.9004 11.0996 39.7002 28.8994zM106.1 52.2998c9 -16 15.5 -33.2998 16.7002 -51.8994c33.5 19.3994 69.1006 35.6992 105.9 47c-38.7002 20.5 -68.1006 47.7998 -97.2998 77\\nc-2.10059 -1.30078 -5.10059 -2.40039 -7.80078 -3.5c-1.59961 -4.90039 8.7002 -5.30078 5.40039 -12.4004c-2.09961 -4.09961 -8.59961 -7.59961 -15.0996 -9.2002c-2.10059 -2.7002 -5.10059 -4.89941 -7.80078 -6.5h-0.299805\\nc-0.200195 -13.5 -0.200195 -27 0.299805 -40.5zM443.7 -12.2998c-36.7998 21.2998 -74.1006 41.2998 -115.601 53c-13.7998 -6.2002 -27.8994 -11.2998 -42.1992 -15.4004c-2.10059 -0.799805 -2.10059 -0.799805 -4.30078 0\\nc-11.8994 3.7002 -23.2998 8.10059 -34.8994 13.2002c-40.2002 -11.5996 -77.2998 -29.2002 -112.4 -50.7998h-0.299805v-0.299805c0.299805 0 0.299805 0 0.299805 0.299805c103.2 -4.10059 206.4 -3.5 309.4 0zM454.2 0.0996094c1 14.7002 7.2002 35.8008 16.5 51.7002\\nl-0.299805 -0.299805c0.5 13.7002 0.799805 27.5 0.799805 41.2998c-3 1.7002 -5.7002 4.10059 -8.10059 6.7998c-6.5 1.30078 -12.8994 5.10059 -15.0996 8.90039c-1.90039 4.09961 1.2998 7.59961 5.90039 10.2998c-0.200195 0.5 -0.5 1.60059 -0.5 2.40039\\nc-3 0.799805 -5.40039 1.7998 -7.60059 3.2002c-31.5996 -29.4004 -65.3994 -56.7002 -103.5 -76.7002c38.9004 -11.7002 76 -28.1006 111.9 -47.6006zM560.1 -6.09961c3 31.0996 -43.5 61.3994 -66.1992 54.5c-14.6006 -4.30078 -27.8008 -30.8008 -33.5 -54\\nc0 -23.8008 21.1992 -37.9004 40.5 -37c19.1992 0.799805 46.5 17 59.1992 36.5zM372.9 372.8c-35.7002 39.2002 -81.4004 47.7998 -126 23.5c25.1992 56.2002 122.199 48.6006 126 -23.5zM74.7998 40.9004c14.9004 1.89941 24.6006 -19.2002 18.6006 -30.8008\\nc-4.80078 -9.69922 -23.7002 -24.0996 -35.9004 -27.2998c-16.5 -4.59961 -32.2002 3.2998 -32.2002 14.9004c0 17.7998 33.7998 41.5996 49.5 43.2002zM290.7 217.1c-30.9004 0 -57.6006 25.7002 -50.2998 59.8008c13.1992 -20.7002 46.5 -12 46.5 11.2998\\nc0 10 -7 18.5996 -16.5 21.5996c31.6992 13.7998 72.1992 -8.2002 72.1992 -44.2998c0 -26.7998 -23.2998 -48.4004 -51.8994 -48.4004zM68 -26.0996c-0.5 8.39941 20.2998 23.5 29.2002 25.0996c8.59961 1.59961 12.7002 -11.4004 9.7002 -18.4004\\nc-2.7002 -5.69922 -10.5 -13.5 -17.3008 -16.1992c-9.39941 -3.2002 -21.0996 3 -21.5996 9.5zM501.2 40.9004c15.7002 -1.60059 49.5 -25.4004 49.5 -43.2002c0 -11.7002 -15.7002 -19.5 -32.2002 -14.9004c-12.0996 3.2002 -31.2998 17.6006 -36.2002 27.2998\\nc-5.7002 11.6006 4 32.7002 18.9004 30.8008zM478.8 -1c8.90039 -1.59961 30 -16.7002 29.1006 -25.0996c-0.200195 -6.5 -12.1006 -12.7002 -21.3008 -9.5c-7 2.69922 -14.8994 10.5 -17.2998 16.1992c-2.89941 7.10059 1.10059 20 9.5 18.4004z\\\" />\\n    <glyph glyph-name=\\\"opencart\\\" unicode=\\\"&#xf23d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M423.3 7.2998c0 -25.2998 -20.2998 -45.5996 -45.5996 -45.5996s-45.7998 20.2998 -45.7998 45.5996s20.5996 45.7998 45.7998 45.7998c25.3994 0 45.5996 -20.5 45.5996 -45.7998zM169.4 53.0996c25.2998 0 45.7998 -20.5 45.7998 -45.7998\\ns-20.5 -45.5996 -45.7998 -45.5996c-25.3008 0 -45.6006 20.3994 -45.6006 45.5996s20.2998 45.7998 45.6006 45.7998zM461.1 323.1c302.2 0 169.5 -67.1992 -17.1992 -233.899c59.1992 102.8 262.5 193.899 -70.8008 188.899c-319.8 -4.69922 -338.699 92.5 -373.1 144.2\\nc81.9004 -86.3994 158.9 -99.2002 461.1 -99.2002z\\\" />\\n    <glyph glyph-name=\\\"expeditedssl\\\" unicode=\\\"&#xf23e;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 404.6c117.4 0 212.6 -95.1992 212.6 -212.6s-95.1992 -212.6 -212.6 -212.6s-212.6 95.1992 -212.6 212.6s95.1992 212.6 212.6 212.6zM150.6 271.7h-0.199219v-26.6006c0 -5 3.89941 -8.89941 8.89941 -8.89941h17.7002c5 0 8.90039 3.89941 8.90039 8.89941\\nv26.6006c0 82.0996 124 82.0996 124 0v-26.6006c0 -5 3.89941 -8.89941 8.89941 -8.89941h17.7002c5 0 8.90039 3.89941 8.90039 8.89941v26.6006c0 53.7002 -43.7002 97.3994 -97.4004 97.3994s-97.4004 -43.6992 -97.4004 -97.3994zM389.7 68v141.7\\nc0 9.7002 -8 17.7002 -17.7002 17.7002h-248c-9.7002 0 -17.7002 -8 -17.7002 -17.7002v-141.7c0 -9.7002 8 -17.7002 17.7002 -17.7002h248c9.7002 0 17.7002 8 17.7002 17.7002zM141.7 205.3v-132.899c0 -2.5 -1.90039 -4.40039 -4.40039 -4.40039h-8.89941\\nc-2.5 0 -4.40039 1.90039 -4.40039 4.40039v132.899c0 2.5 1.90039 4.40039 4.40039 4.40039h8.89941c2.5 0 4.40039 -1.90039 4.40039 -4.40039zM283.4 156.6c0 -13 -7.2002 -24.3994 -17.7002 -30.3994v-31.6006c0 -5 -3.90039 -8.89941 -8.90039 -8.89941h-17.7002\\nc-5 0 -8.89941 3.89941 -8.89941 8.89941v31.6006c-10.5 6.09961 -17.7002 17.3994 -17.7002 30.3994c0 19.7002 15.7998 35.4004 35.4004 35.4004c19.5996 0 35.5 -15.7998 35.5 -35.4004zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248\\ns111 248 248 248zM248 -38.2998c127 0 230.3 103.3 230.3 230.3s-103.3 230.3 -230.3 230.3s-230.3 -103.3 -230.3 -230.3s103.3 -230.3 230.3 -230.3z\\\" />\\n    <glyph glyph-name=\\\"cc-jcb\\\" unicode=\\\"&#xf24b;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M431.5 203.7v32.2998c41.2002 0 38.5 -0.200195 38.5 -0.200195c7.2998 -1.2998 13.2998 -7.2998 13.2998 -16c0 -8.7998 -6 -14.5 -13.2998 -15.7998c-1.2002 -0.400391 -3.2998 -0.299805 -38.5 -0.299805zM474.3 183.5c7.5 -1.5 13.5 -8.2998 13.5 -17\\nc0 -9 -6 -15.5 -13.5 -17c-2.7998 -0.700195 -3.2002 -0.5 -42.7998 -0.5v35c39.5 0 40 0.200195 42.7998 -0.5zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM182 255.7h-57\\nc0 -67.1006 10.7002 -109.7 -35.7998 -109.7c-19.5 0 -38.7998 5.7002 -57.2002 14.7998v-28c30 -8.2998 68 -8.2998 68 -8.2998c97.9004 0 82 47.7002 82 131.2zM360.5 251.2c-63.4004 16 -165 14.8994 -165 -59.2998c0 -77.1006 108.2 -73.6006 165 -59.2002v28.2998\\nc-47.5996 -24.7002 -107.5 -22 -107.5 31s59.7998 55.5996 107.5 31.2002v28zM544 161.5c0 18.5 -16.5 30.5 -38 32v0.799805c19.5 2.7002 30.2998 15.5 30.2998 30.2002c0 19 -15.7002 30 -37 31c0 0 6.2998 0.299805 -120.3 0.299805v-127.5h122.7\\nc24.2998 -0.0996094 42.2998 12.9004 42.2998 33.2002z\\\" />\\n    <glyph glyph-name=\\\"cc-diners-club\\\" unicode=\\\"&#xf24c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M239.7 368.1c97.2002 0 175.8 -78.5996 175.8 -175.8c0 -96.8994 -78.5996 -175.8 -175.8 -175.8c-96.9004 0 -175.8 78.9004 -175.8 175.8c0 97.2002 78.8994 175.8 175.8 175.8zM199.8 88.5v207.9c-41.7002 -16.2002 -71.3994 -56.7002 -71.3994 -104.101\\nc0 -47.3994 29.6992 -87.8994 71.3994 -103.8zM279.6 88.2002c41.7002 16.2002 71.4004 56.7002 71.4004 104.1c0 47.4004 -29.7002 87.9004 -71.4004 104.101v-208.2zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352\\nc0 26.5 21.5 48 48 48h480zM329.7 0c105 0 200.7 85.5 200.7 190.2c0 114.6 -95.7002 193.8 -200.7 193.8h-90.2998c-106.2 0 -193.801 -79.2002 -193.801 -193.8c0 -104.7 87.6006 -190.2 193.801 -190.2h90.2998z\\\" />\\n    <glyph glyph-name=\\\"creative-commons\\\" unicode=\\\"&#xf25e;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M245.83 233.13l-33.2197 -17.2803c-9.43066 19.5801 -25.2402 19.9307 -27.46 19.9307c-22.1309 0 -33.2207 -14.6104 -33.2207 -43.8398c0 -23.5703 9.20996 -43.8408 33.2207 -43.8408c14.4697 0 24.6494 7.09082 30.5693 21.2607l30.5498 -15.5\\nc-6.16992 -11.5107 -25.6895 -38.9805 -65.0996 -38.9805c-22.5996 0 -73.96 10.3203 -73.96 77.0498c0 58.6904 43 77.0605 72.6299 77.0605c30.7197 0.00976562 52.7002 -11.9502 65.9902 -35.8604zM388.88 233.13l-32.7803 -17.2803\\nc-9.5 19.7705 -25.7197 19.9307 -27.8994 19.9307c-22.1406 0 -33.2197 -14.6104 -33.2197 -43.8398c0 -23.5508 9.22949 -43.8408 33.2197 -43.8408c14.4502 0 24.6494 7.09082 30.54 21.2607l31 -15.5c-2.10059 -3.75 -21.3906 -38.9805 -65.0898 -38.9805\\nc-22.6904 0 -73.96 9.87012 -73.96 77.0498c0 58.6699 42.9697 77.0605 72.6299 77.0605c30.71 0.00976562 52.5801 -11.9502 65.5596 -35.8604zM247.56 439.95c141.82 0 248.44 -110.13 248.44 -248c0 -147.13 -118.51 -248 -248.44 -248\\nc-133.96 0 -247.56 109.51 -247.56 248c0 132.939 104.74 248 247.56 248zM248.43 -10.8604c103.16 0 202.83 81.1299 202.84 202.82c0 113.8 -90.2891 203.26 -202.819 203.26c-118.29 0 -203.72 -97.8496 -203.72 -203.27c0 -109.771 91.1592 -202.811 203.699 -202.811z\\n\\\" />\\n    <glyph glyph-name=\\\"gg\\\" unicode=\\\"&#xf260;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M179.2 217.6l102.399 -102.399l-102.399 -102.4l-179.2 179.2l179.2 179.2l44.7998 -44.7998l-25.5996 -25.6006l-19.2002 19.2002l-128 -128l128 -128l51.5 51.5l-77.1006 76.5zM332.8 371.2l179.2 -179.2l-179.2 -179.2l-44.7998 44.7998l25.5996 25.6006\\nl19.2002 -19.2002l128 128l-128 128l-51.5 -51.5l77.1006 -76.5l-25.6006 -25.5996l-102.399 102.399z\\\" />\\n    <glyph glyph-name=\\\"gg-circle\\\" unicode=\\\"&#xf261;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M257 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM207.5 65.2002l75 75.2002l-77.2002 77.1992l-24.3994 -24.3994l53.0996 -52.9004l-26.5996 -26.5996l-77.2002 77.2002l77.2002 77.1992l11.0996 -11.0996l24.2002 24.2002\\nl-35.2002 35.3994l-125.7 -125.699zM306.5 67.4004l125.7 125.6l-125.7 125.7l-75 -75l77.2002 -77.2002l24.3994 24.4004l-53.0996 52.8994l26.5 26.5l77.2002 -77.2002l-77.2002 -77.1992l-11.0996 11.0996l-24.1006 -24.4004z\\\" />\\n    <glyph glyph-name=\\\"tripadvisor\\\" unicode=\\\"&#xf262;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M166.4 167.479c0 -13.2354 -10.7305 -23.9658 -23.9668 -23.9658c-13.2354 0 -23.9658 10.7305 -23.9658 23.9658c0 13.2363 10.7305 23.9668 23.9658 23.9668c13.2363 0 23.9668 -10.7295 23.9668 -23.9668zM431.362 191.435\\nc13.2295 0 23.9551 -10.7246 23.9561 -23.9561c0 -13.2305 -10.7266 -23.9551 -23.9561 -23.9551c-13.2314 0 -23.9561 10.7256 -23.9561 23.9551c0 13.2314 10.7256 23.9561 23.9561 23.9561zM520.75 51.9453c-62.667 -49.1045 -153.276 -38.1094 -202.379 24.5586\\nl-30.9795 -46.3252l-30.6826 45.9395c-48.2773 -60.3906 -135.622 -71.8916 -197.885 -26.0547c-64.0586 47.1572 -77.7588 137.315 -30.6016 201.373c-5.05762 17.1221 -17.7021 42.7236 -28.2227 57.1475l90.2861 0.0498047\\nc48.0039 29.8701 132.851 54.1123 189.389 54.1123c2.11914 0 5.55762 -0.0371094 7.67578 -0.0820312c1.72363 0.0302734 4.52246 0.0556641 6.24609 0.0556641c55.5518 0 138.851 -23.9258 185.936 -53.4043l96.2178 -0.0742188\\nc-10.6191 -14.5371 -23.3213 -40.3643 -28.3516 -57.6494c46.793 -62.7471 34.9639 -151.37 -26.6484 -199.646zM259.366 166.239c-0.00683594 63.5566 -51.5352 115.075 -115.092 115.067c-63.5576 -0.00683594 -115.074 -51.5342 -115.068 -115.092\\nc0.00683594 -63.5566 51.5352 -115.075 115.092 -115.067c63.5127 0.0742188 114.984 51.5381 115.068 115.052v0.0400391zM287.957 176.694c5.43262 73.4395 65.5098 130.884 139.12 133.021c-35.5576 15.374 -95.8555 27.8506 -134.594 27.8506\\nc-1.41699 0 -3.7168 -0.0166016 -5.13379 -0.0380859c-0.953125 0.00878906 -2.50098 0.0166016 -3.45508 0.0166016c-39.2324 0 -100.479 -12.2168 -136.709 -27.2695c74.3447 -1.58203 135.3 -59.4248 140.771 -133.581zM539.663 205.461\\nc-21.9922 59.6338 -88.1621 90.1484 -147.795 68.1572c-59.6338 -21.9922 -90.1484 -88.1621 -68.1572 -147.795v-0.0322266c22.0381 -59.6074 88.1982 -90.0908 147.827 -68.1133c59.6152 22.0039 90.1133 88.1621 68.125 147.783zM213.624 167.486v-0.115234\\nc-0.0566406 -39.3281 -31.9863 -71.1631 -71.3145 -71.1064c-39.3271 0.0576172 -71.1621 31.9863 -71.1055 71.3145s31.9863 71.1631 71.3135 71.1055c39.2598 -0.115234 71.042 -31.9395 71.1064 -71.1982zM189.112 167.486v0.0839844\\nc-0.0517578 25.7832 -20.9941 46.6445 -46.7783 46.5938s-46.6445 -20.9941 -46.5938 -46.7773c0.0507812 -25.7842 20.9941 -46.6445 46.7764 -46.5938c25.7266 0.113281 46.5371 20.9678 46.5957 46.6934zM502.535 167.486\\nc-0.0205078 -39.3281 -31.918 -71.2422 -71.2471 -71.2217c-39.3291 0.0214844 -71.1943 31.918 -71.1729 71.2471c0.0195312 39.3281 31.918 71.1943 71.2471 71.1729c39.29 -0.0654297 71.1211 -31.9082 71.1729 -71.1982zM478.031 167.494\\nc-0.00878906 25.7842 -20.918 46.6787 -46.7021 46.6699s-46.6787 -20.918 -46.6699 -46.7021s20.918 -46.6777 46.7021 -46.6699c25.7646 0.0458984 46.6357 20.9277 46.6699 46.6934v0.00878906z\\\" />\\n    <glyph glyph-name=\\\"odnoklassniki\\\" unicode=\\\"&#xf263;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M275.1 114c-27.3994 -17.4004 -65.0996 -24.2998 -90 -26.9004l20.9004 -20.5996l76.2998 -76.2998c27.9004 -28.6006 -17.5 -73.2998 -45.7002 -45.7002c-19.0996 19.4004 -47.0996 47.4004 -76.2998 76.5996l-76.2998 -76.5\\nc-28.2002 -27.5 -73.5996 17.6006 -45.4004 45.7002c19.4004 19.4004 47.1006 47.4004 76.3008 76.2998l20.5996 20.6006c-24.5996 2.59961 -62.9004 9.09961 -90.5996 26.8994c-32.6006 21 -46.9004 33.3008 -34.3008 59c7.40039 14.6006 27.7002 26.9004 54.6006 5.7002\\nc0 0 36.2998 -28.8994 94.8994 -28.8994c58.6006 0 94.9004 28.8994 94.9004 28.8994c26.9004 21.1006 47.0996 8.90039 54.5996 -5.7002c12.4004 -25.6992 -1.89941 -38 -34.5 -59.0996zM30.2998 318.3c0 71.7002 58.2998 129.7 129.7 129.7s129.7 -58 129.7 -129.7\\nc0 -71.3994 -58.2998 -129.399 -129.7 -129.399s-129.7 58 -129.7 129.399zM96.2998 318.3c0 -35.0996 28.6006 -63.7002 63.7002 -63.7002s63.7002 28.6006 63.7002 63.7002c0 35.4004 -28.6006 64 -63.7002 64s-63.7002 -28.5996 -63.7002 -64z\\\" />\\n    <glyph glyph-name=\\\"odnoklassniki-square\\\" unicode=\\\"&#xf264;\\\" \\nd=\\\"M184.2 270.9c0 22.0996 17.8994 40 39.7998 40s39.7998 -17.9004 39.7998 -40c0 -22 -17.8994 -39.8008 -39.7998 -39.8008s-39.7998 17.9004 -39.7998 39.8008zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352\\nc26.5 0 48 -21.5 48 -48zM142.9 270.9c0 -44.6006 36.3994 -80.9004 81.0996 -80.9004s81.0996 36.2002 81.0996 80.9004c0 44.7998 -36.3994 81.0996 -81.0996 81.0996s-81.0996 -36.2002 -81.0996 -81.0996zM317.4 180.2\\nc-4.60059 9.09961 -17.3008 16.7998 -34.1006 3.59961c0 0 -22.7002 -18 -59.2998 -18s-59.2998 18 -59.2998 18c-16.7998 13.2002 -29.5 5.5 -34.1006 -3.59961c-7.89941 -16.1006 1.10059 -23.7002 21.4004 -37c17.2998 -11.1006 41.2002 -15.2002 56.5996 -16.7998\\nl-12.8994 -12.9004c-18.2002 -18 -35.5 -35.5 -47.7002 -47.7002c-17.5996 -17.5996 10.7002 -45.7998 28.4004 -28.5996l47.6992 47.8994c18.2002 -18.1992 35.7002 -35.6992 47.7002 -47.8994c17.6006 -17.2002 46 10.7002 28.6006 28.5996l-47.7002 47.7002l-13 12.9004\\nc15.5 1.59961 39.0996 5.89941 56.2002 16.7998c20.3994 13.2998 29.2998 21 21.5 37z\\\" />\\n    <glyph glyph-name=\\\"get-pocket\\\" unicode=\\\"&#xf265;\\\" \\nd=\\\"M407.6 384c22.7002 0 40.4004 -18.2002 40.4004 -40.5996v-135.2c0 -124.7 -99.7998 -224.2 -223.8 -224.2c-124.5 0 -224.2 99.5 -224.2 224.2v135.2c0 22.0996 18.5 40.5996 40.5996 40.5996h367zM245.6 115.5c111.9 107.5 114.801 105.4 114.801 123.2\\nc0 16.8994 -13.8008 30.7002 -30.7002 30.7002c-16.9004 0 -14.9004 -2.40039 -105.5 -89.3008c-89.1006 85.5 -88.2002 89.3008 -105.2 89.3008c-16.9004 0 -30.7002 -13.8008 -30.7002 -30.7002c0 -18.1006 1.2002 -14.2998 114.9 -123.2\\nc11 -11.0996 30 -11.7998 42.3994 0z\\\" />\\n    <glyph glyph-name=\\\"wikipedia-w\\\" unicode=\\\"&#xf266;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 396.8l-0.299805 -12.2002c-28.1006 -0.799805 -45 -15.7998 -55.7998 -40.2998c-25 -57.7998 -103.301 -240 -155.301 -358.6h-13.5996l-81.9004 193.1c-32.5 -63.5996 -68.2998 -130 -99.1992 -193.1c-0.300781 -0.299805 -15 0 -15 0.299805\\nc-46.9004 109.7 -96.1006 218.6 -143.101 328.6c-11.3994 26.7002 -49.3994 70 -75.5996 69.7002c0 3.10059 -0.299805 10 -0.299805 14.2002h161.899v-13.9004c-19.2002 -1.09961 -52.7998 -13.2998 -43.2998 -34.1992c21.9004 -49.7002 103.6 -240.301 125.6 -288.601\\nc15 29.7002 57.8008 109.2 75.3008 142.8c-13.9004 28.3008 -58.6006 133.9 -72.8008 160c-9.69922 17.8008 -36.0996 19.4004 -55.7998 19.7002v13.9004l142.5 -0.299805v-13.1006c-19.3994 -0.599609 -38.0996 -7.7998 -29.3994 -26.0996\\nc18.8994 -40 30.5996 -68.1006 48.0996 -104.7c5.59961 10.7998 34.7002 69.4004 48.0996 100.8c8.90039 20.6006 -3.89941 28.6006 -38.5996 29.4004c0.299805 3.59961 0 10.2998 0.299805 13.5996c44.4004 0.299805 111.101 0.299805 123.101 0.600586v-13.6006\\nc-22.5 -0.799805 -45.8008 -12.7998 -58.1006 -31.7002l-59.2002 -122.8c6.40039 -16.0996 63.3008 -142.8 69.2002 -156.7l122.4 282.601c-8.60059 23.0996 -36.4004 28.0996 -47.2002 28.2998v13.9004l127.8 -1.10059z\\\" />\\n    <glyph glyph-name=\\\"safari\\\" unicode=\\\"&#xf267;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M274.69 173.31l-108.69 -71.3096l71.3096 108.69zM256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM411.85 265.21c-2.71094 -1.13477 -4.91211 -4.44043 -4.91211 -7.37988c0 -0.880859 0.274414 -2.25684 0.612305 -3.07031\\nv0c1.12988 -2.72559 4.44043 -4.9375 7.39062 -4.9375c0.87793 0 2.24902 0.272461 3.05957 0.607422l14.75 6.11035c2.72754 1.12891 4.94141 4.44043 4.94141 7.39258c0 0.879883 -0.273438 2.25391 -0.611328 3.06738v0\\nc-1.12793 2.73047 -4.44043 4.94629 -7.39453 4.94629c-0.876953 0 -2.24512 -0.271484 -3.05566 -0.606445zM314.43 354c-0.341797 -0.818359 -0.620117 -2.20117 -0.620117 -3.08789c0 -2.95215 2.21387 -6.26367 4.94043 -7.39258v0\\nc0.810547 -0.334961 2.18164 -0.607422 3.05957 -0.607422c2.9502 0 6.26074 2.21191 7.39062 4.9375l6.12988 14.7803c0.335938 0.811523 0.608398 2.18164 0.608398 3.05957c0 2.9502 -2.21289 6.26172 -4.93848 7.39062v0\\nc-0.813477 0.337891 -2.18848 0.612305 -3.07031 0.612305c-2.93848 0 -6.24512 -2.20117 -7.37988 -4.91211zM256 388c-4.41602 0 -8 -3.58398 -8 -8v-16c0 -4.41602 3.58398 -8 8 -8v0c4.41602 0 8 3.58398 8 8v16c0 4.41602 -3.58398 8 -8 8v0zM181 373.08\\nc-2.72461 -1.12988 -4.93555 -4.44043 -4.93555 -7.38965c0 -0.869141 0.266602 -2.22656 0.595703 -3.03027l6.12988 -14.7803c1.09863 -2.80664 4.43555 -5.08398 7.44922 -5.08398c4.41602 0 8 3.58398 8 8c0 0.922852 -0.299805 2.3584 -0.668945 3.2041l-6.11035 14.75\\nc-1.12891 2.72754 -4.44043 4.94141 -7.39258 4.94141c-0.879883 0 -2.25391 -0.273438 -3.06738 -0.611328zM117.42 330.59c-1.29297 -1.29297 -2.35156 -3.82617 -2.35156 -5.65527c0 -1.81445 1.03613 -4.33398 2.31152 -5.625l11.3105 -11.3096\\nc1.29297 -1.29199 3.82617 -2.34082 5.6543 -2.34082s4.3623 1.04883 5.65527 2.34082v0c1.28418 1.29199 2.32617 3.81836 2.32617 5.63965c0 1.82227 -1.04199 4.34863 -2.32617 5.64062l-11.2695 11.3096c-1.29395 1.29297 -3.82715 2.3418 -5.65527 2.3418\\ns-4.3623 -1.04883 -5.65527 -2.3418v0zM60 192c0 -4.41602 3.58398 -8 8 -8h16c4.41602 0 8 3.58398 8 8v0c0 4.41602 -3.58398 8 -8 8h-16c-4.41602 0 -8 -3.58398 -8 -8v0zM100.15 118.79c2.71094 1.13477 4.91211 4.44043 4.91211 7.37988\\nc0 0.880859 -0.274414 2.25684 -0.612305 3.07031v0c-1.12988 2.72559 -4.44043 4.9375 -7.39062 4.9375c-0.87793 0 -2.24902 -0.272461 -3.05957 -0.607422l-14.75 -6.11035c-2.72754 -1.12891 -4.94141 -4.44043 -4.94141 -7.39258\\nc0 -0.879883 0.273438 -2.25391 0.611328 -3.06738v0c1.12793 -2.73047 4.44043 -4.94629 7.39453 -4.94629c0.876953 0 2.24512 0.271484 3.05566 0.606445zM104.48 254.79c0.333008 0.80957 0.604492 2.14551 0.604492 3.02051\\nc0 2.94922 -2.21094 6.25977 -4.93457 7.38965l-14.7803 6.12988c-0.811523 0.335938 -2.18164 0.608398 -3.05957 0.608398c-2.9502 0 -6.26172 -2.21289 -7.39062 -4.93848v0c-0.337891 -0.813477 -0.612305 -2.18848 -0.612305 -3.07031\\nc0 -2.93848 2.20117 -6.24512 4.91211 -7.37988l14.7803 -6.12012c0.814453 -0.338867 2.19141 -0.614258 3.07422 -0.614258c2.96582 0 6.28418 2.22852 7.40625 4.97461v0zM197.57 30c0.369141 0.845703 0.668945 2.28125 0.668945 3.2041c0 4.41602 -3.58398 8 -8 8\\nc-3.01367 0 -6.35059 -2.27734 -7.44922 -5.08398l-6.12988 -14.7803c-0.335938 -0.811523 -0.608398 -2.18164 -0.608398 -3.05957c0 -4.41797 3.58594 -8.00293 8.00293 -8.00293c2.95312 0 6.2666 2.21387 7.39551 4.94238zM264 4v16c0 4.41602 -3.58398 8 -8 8v0\\nc-4.41602 0 -8 -3.58398 -8 -8v-16c0 -4.41602 3.58398 -8 8 -8v0c4.41602 0 8 3.58398 8 8zM331 10.9199c2.72461 1.12988 4.93555 4.44043 4.93555 7.38965c0 0.869141 -0.266602 2.22656 -0.595703 3.03027l-6.12988 14.7803\\nc-1.12891 2.72559 -4.44043 4.9375 -7.39062 4.9375c-0.87793 0 -2.24805 -0.272461 -3.05957 -0.607422v0c-2.72559 -1.12988 -4.9375 -4.44043 -4.9375 -7.39062c0 -0.87793 0.272461 -2.24902 0.607422 -3.05957l6.11035 -14.75\\nc1.12891 -2.72754 4.44043 -4.94141 7.39258 -4.94141c0.879883 0 2.25391 0.273438 3.06738 0.611328v0zM394.58 53.4102c1.29297 1.29297 2.35156 3.82617 2.35156 5.65527c0 1.81445 -1.03613 4.33398 -2.31152 5.625l-11.3105 11.3096\\nc-1.29297 1.29199 -3.82617 2.34082 -5.6543 2.34082s-4.3623 -1.04883 -5.65527 -2.34082v0c-1.28418 -1.29199 -2.32617 -3.81836 -2.32617 -5.63965c0 -1.82227 1.04199 -4.34863 2.32617 -5.64062l11.2695 -11.3096c1.29395 -1.29297 3.82715 -2.3418 5.65527 -2.3418\\ns4.3623 1.04883 5.65527 2.3418v0zM286.25 161.75l115.41 175.91l-175.91 -115.41l-115.41 -175.91zM437.08 117c0.337891 0.813477 0.612305 2.18848 0.612305 3.07031c0 2.93848 -2.20117 6.24512 -4.91211 7.37988l-14.7803 6.12012\\nc-0.818359 0.341797 -2.20117 0.620117 -3.08789 0.620117c-2.95215 0 -6.26367 -2.21387 -7.39258 -4.94043v0c-0.334961 -0.810547 -0.607422 -2.18164 -0.607422 -3.05957c0 -2.9502 2.21191 -6.26074 4.9375 -7.39062l14.7803 -6.12988\\nc0.811523 -0.335938 2.18164 -0.608398 3.05957 -0.608398c2.9502 0 6.26172 2.21289 7.39062 4.93848v0zM444 184c4.41602 0 8 3.58398 8 8v0c0 4.41602 -3.58398 8 -8 8h-16c-4.41602 0 -8 -3.58398 -8 -8v0c0 -4.41602 3.58398 -8 8 -8h16z\\\" />\\n    <glyph glyph-name=\\\"chrome\\\" unicode=\\\"&#xf268;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M131.5 230.5l-76.4004 117.4c47.6006 59.1992 119 91.7998 192 92.0996c42.3008 0.299805 85.5 -10.5 124.801 -33.2002c43.3994 -25.2002 76.3994 -61.3994 97.3994 -103l-205.3 10.7998c-58.0996 3.40039 -113.4 -29.2998 -132.5 -84.0996zM164.4 192\\nc0 46.2998 37.3994 83.5996 83.5996 83.5996s83.5996 -37.3994 83.5996 -83.5996s-37.3994 -83.5996 -83.5996 -83.5996s-83.5996 37.3994 -83.5996 83.5996zM479.3 281.2c43.5 -111.9 0 -241.9 -107.399 -303.9c-43.4004 -25.2002 -91.3008 -35.3994 -137.801 -32.8994\\nl112.101 172.399c31.8994 49 31.2998 112.9 -6.60059 157.2zM133.7 144.4c26.2998 -51.7002 81.8994 -83.3008 139.5 -72.5l-63.7002 -124.801c-118.7 18.2002 -209.5 120.9 -209.5 244.9c0 50.0996 14.9004 96.9004 40.4004 135.9z\\\" />\\n    <glyph glyph-name=\\\"firefox\\\" unicode=\\\"&#xf269;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M503.52 206.52c0.240234 -4.43945 0.360352 -9 0.480469 -13.5195c0 -137.19 -111.23 -248.42 -248.32 -248.42c-122.779 0 -224.859 89.2695 -244.779 206.38c-0.360352 3.24023 -0.720703 6.36035 -1.08008 9.59961c-4.91992 42.6006 0.479492 87.3604 16.0801 124.79\\nc10.7998 25.8809 32.6396 54 49.7998 62.8809c-16.2002 -31.8008 -24.1201 -63 -25.7998 -83.8809c11.2793 37.2002 32.6299 68.3604 62.5098 90.3604c51.2402 37.6699 120.229 39.3604 147.71 15.3604c-51 -17.5107 -106.55 -87.96 -94.3105 -170.511\\nc1.65137 -11.3535 7.08105 -28.9326 12.1201 -39.2393c-9.51953 25.0801 -10.3594 60.3594 5 83.2793c17.1602 25.5508 41.6299 30.9502 54.71 28.1904c-5.15918 1.08008 -16.5596 -20.75 -18.2393 -24.5898c-3.4502 -7.85645 -6.25098 -21.1953 -6.25098 -29.7754\\nc0 -0.337891 0.00488281 -0.886719 0.0107422 -1.22461c0.326172 -19.1992 11.7773 -45.6309 25.5596 -59c47.6504 -46.4307 124.561 -28.1602 159 24.8398c23.6406 36.4795 26.5205 98.3896 -3.83984 147.59c-6.29297 9.96582 -18.335 24.6416 -26.8799 32.7598\\nc-47.6602 45.4707 -116.06 64.6699 -180.24 52.9902c-0.240234 0 -0.599609 -0.120117 -0.839844 -0.120117c-1.7998 -0.359375 -3.47949 -0.719727 -5.16016 -1.08008c-0.359375 -0.120117 -0.839844 -0.120117 -1.2002 -0.239258l-5.87988 -1.44043\\nc-14.5195 -3.55957 -34.7998 -10.7998 -49.4395 -19.5596c-0.078125 -0.0107422 -0.185547 -0.0654297 -0.240234 -0.120117l0.120117 0.120117c0 -0.0664062 -0.0537109 -0.120117 -0.120117 -0.120117v0l-0.120117 -0.120117l0.120117 0.120117h-0.129883\\nl0.479492 0.479492c0.480469 0.480469 1.32031 1.16016 2.40039 2.16016c19.6797 17.7598 49.3203 31.9199 82.9102 39c12.417 2.60938 32.792 4.84961 45.4795 5h10.6299c10.5781 -0.25293 27.6016 -2.04492 38 -4c0.960938 -0.120117 1.76074 -0.360352 2.76074 -0.479492\\nh0.120117c1.7998 -0.360352 3.71973 -0.84082 5.63965 -1.2002c15.9277 -3.61621 40.7598 -12.3799 55.4297 -19.5605c2.40039 -1.2002 4.7998 -2.39941 7.2002 -3.71973c7.16211 -3.56738 18.1826 -10.3408 24.5996 -15.1201\\nc4.32031 -3.12012 8.48047 -6.36035 12.4805 -9.83984c5.35449 -4.27344 13.5479 -11.7559 18.29 -16.7002c7.01562 -6.8877 17.5479 -18.8223 23.5098 -26.6396c0.959961 -1.2002 1.75977 -2.40039 2.75977 -3.71973c0.400391 -0.480469 0.640625 -0.84082 1 -1.32031\\nl1.80078 -2.52051c0.359375 -0.479492 0.719727 -1.08008 1.08008 -1.55957c0.479492 -0.719727 1.0791 -1.56055 1.55957 -2.28027c0.365234 -0.473633 0.90332 -1.28027 1.2002 -1.7998l1.43945 -2.12988c0.366211 -0.473633 0.90332 -1.28027 1.2002 -1.7998\\nc0.480469 -0.720703 0.959961 -1.56055 1.32031 -2.16016c0.359375 -0.600586 0.839844 -1.24023 1.2002 -1.91992c0.359375 -0.680664 0.839844 -1.32031 1.19922 -2c0.360352 -0.680664 0.84082 -1.28027 1.2002 -2c0.367188 -0.53125 0.904297 -1.42676 1.2002 -2\\nc0.360352 -0.720703 0.839844 -1.56055 1.2002 -2.16016c0.359375 -0.599609 0.719727 -1.32031 1.08008 -1.91992c0.359375 -0.839844 0.799805 -1.67969 1.2002 -2.28027c0.399414 -0.599609 0.639648 -1.2002 1 -1.7998\\nc0.359375 -0.839844 0.839844 -1.56055 1.19922 -2.40039c0.240234 -0.479492 0.480469 -1.08008 0.720703 -1.55957c0.479492 -0.839844 0.839844 -1.63965 1.31934 -2.63965l0.360352 -0.720703c1.75977 -3.71973 3.44043 -7.55957 5 -11.3994\\nc0 -0.120117 0.120117 -0.240234 0.120117 -0.360352c0.439453 -1.2002 0.959961 -2.28027 1.43945 -3.48047c0.120117 -0.239258 0.240234 -0.599609 0.360352 -0.839844c0.480469 -1.08008 0.839844 -2.2793 1.32031 -3.35938\\nc0.117188 -0.269531 0.27832 -0.717773 0.359375 -1c0.360352 -1.08008 0.84082 -2.28027 1.2002 -3.36035l0.360352 -1.08008c0.479492 -1.2002 0.839844 -2.28027 1.2002 -3.47949c0.119141 -0.400391 0.239258 -0.640625 0.359375 -1\\nc0.360352 -1.08008 0.720703 -2.28027 1.08008 -3.48047c0.120117 -0.240234 0.120117 -0.599609 0.240234 -0.839844c0.360352 -1.2002 0.719727 -2.52051 1.08008 -3.71973c0.120117 -0.120117 0.120117 -0.360352 0.240234 -0.600586l1.08008 -4\\nc0.119141 -0.120117 0.119141 -0.120117 0.119141 -0.240234c2.98926 -11.1846 6.26855 -29.6201 7.32031 -41.1494v-0.120117l0.360352 -4.67969v-0.120117c0 -1.56055 0.120117 -3.12012 0.239258 -4.68066z\\\" />\\n    <glyph glyph-name=\\\"opera\\\" unicode=\\\"&#xf26a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M313.9 415.3c-170.2 0 -252.601 -223.8 -147.5 -355.1c36.5 -45.4004 88.5996 -75.6006 147.5 -75.6006c36.2998 0 70.2998 11.1006 99.3994 30.4004c-43.7998 -39.2002 -101.899 -63 -165.3 -63c-3.90039 0 -8 0 -11.9004 0.299805\\nc-131.5 6.10059 -236.1 114.601 -236.1 247.7c0 137 111 248 248 248h0.799805c63.1006 -0.299805 120.7 -24.0996 164.4 -63.0996c-29 19.3994 -63.1006 30.3994 -99.2998 30.3994zM415.7 17.5996c-40.9004 -24.6992 -90.7002 -23.5996 -132 5.80078\\nc56.2002 20.5 97.7002 91.5996 97.7002 176.6c0 84.7002 -41.2002 155.8 -97.4004 176.6c41.7998 29.2002 91.2002 30.3008 132.9 5c105.899 -98.6992 105.5 -265.699 -1.2002 -364z\\\" />\\n    <glyph glyph-name=\\\"internet-explorer\\\" unicode=\\\"&#xf26b;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M483.049 288.294c25.1963 -45.4473 33.2578 -97.5811 26.8516 -141.162h-328.792c0 -100.432 144.31 -136.029 196.818 -47.4355h120.833c-32.5645 -91.7285 -119.689 -146.022 -216.813 -146.022c-35.1367 0 -70.2725 0.143555 -101.695 15.5732\\nc-87.3975 -44.4941 -180.251 -56.5693 -180.251 42.0059c0 45.8066 23.2461 107.096 43.9922 145.022c35.1357 63.7227 81.4121 124.875 135.687 173.168c-43.7061 -18.8604 -91.125 -66.2959 -121.977 -101.158c25.877 112.787 129.466 193.638 237.098 186.457\\nc130.032 59.7939 209.673 34.1445 209.673 -38.5771c0 -27.4326 -10.5684 -63.2959 -21.4238 -87.8711zM64.5586 101.123c-73.001 -152.4 11.5254 -172.244 100.267 -123.304c-46.5635 27.4326 -82.5557 72.1533 -100.267 123.304zM180.536 209.996h207.961\\nc-2 55.1514 -50.5635 94.8711 -103.981 94.8711c-53.7041 0 -101.979 -39.7197 -103.979 -94.8711zM365.072 397.596c46.2764 -18.002 85.9824 -57.2939 112.263 -99.5859c7.1416 18.8604 14.5693 47.8643 14.5693 67.8672c0 32.0049 -22.8525 53.7217 -54.2744 53.7217\\nc-23.9951 0 -51.1328 -11.7158 -72.5576 -22.0029z\\\" />\\n    <glyph glyph-name=\\\"contao\\\" unicode=\\\"&#xf26d;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M45.4004 143c14.3994 -67.0996 26.3994 -129 68.1992 -175h-79.5996c-18.7002 0 -34 15.2002 -34 34v380c0 18.7002 15.2002 34 34 34h57.7002c-13.7998 -12.5996 -26.1006 -27.2002 -36.9004 -43.5996c-45.3994 -70 -27 -146.801 -9.39941 -229.4zM478 416\\nc18.7998 0 34 -15.2002 34 -34v-380.1c0 -18.8008 -15.2998 -34 -34 -34h-52.0996c38.6992 38.3994 60.5996 92.0996 57.3994 163.6l-137.399 -29.5996c-1.7002 -32.5 -12.9004 -63.8008 -57.4004 -73.2002c-24.9004 -5.2998 -45.4004 0.599609 -58.2998 11.7002\\nc-15.7998 13.5 -28.4004 31 -49.5 131.199c-21.4004 100.5 -17 121.601 -8.2002 140.301c7.2998 15.2998 23.7002 29.2998 48.2998 34.5996c44.7998 9.40039 67.7002 -14.9004 82.6006 -43.9004l137.1 29.3008c-13.5 34.5996 -31.2998 62.6992 -52.7002 84.0996h90.2002z\\n\\\" />\\n    <glyph glyph-name=\\\"500px\\\" unicode=\\\"&#xf26e;\\\" \\nd=\\\"M103.3 103.7c-6.5 14.2002 -6.89941 18.2998 7.40039 23.0996c25.5996 8 8 -9.2002 43.2002 -49.2002h0.299805v93.9004c1.2002 50.2002 44 92.2002 97.7002 92.2002c53.8994 0 97.6992 -43.5 97.6992 -96.7998c0 -63.4004 -60.7998 -113.2 -128.5 -93.3008\\nc-10.5 4.2002 -2.09961 31.7002 8.5 28.6006c53 0 89.4004 10.0996 89.4004 64.3994c0 61 -77.0996 89.6006 -116.9 44.6006c-23.5 -26.4004 -17.5996 -42.1006 -17.5996 -157.601c50.7002 -31 118.3 -22 160.4 20.1006c24.7998 24.7998 38.5 58 38.5 93\\nc0 35.2002 -13.8008 68.2002 -38.8008 93.2998c-24.7998 24.7998 -57.7998 38.5 -93.2998 38.5s-68.7998 -13.7998 -93.5 -38.5c-0.299805 -0.299805 -16 -16.5 -21.2002 -23.9004l-0.5 -0.599609c-3.2998 -4.7002 -6.2998 -9.09961 -20.0996 -6.09961\\nc-6.90039 1.69922 -14.2998 5.7998 -14.2998 11.7998v186.8c0 5 3.89941 10.5 10.5 10.5h241.3c8.2998 0 8.2998 -11.5996 8.2998 -15.0996c0 -3.90039 0 -15.1006 -8.2998 -15.1006h-223.2v-132.899h0.299805c104.2 109.8 282.801 36 282.801 -108.9\\nc0 -178.1 -244.801 -220.3 -310.101 -62.7998zM166.6 364.5c3.80078 18.7998 145.101 50.7998 238.301 -38.2002c8.5 -7.5 -9.5 -22.7998 -14.3008 -22.7998c-6.59961 0 -84.5996 87.9004 -209.399 40.4004c-10 -3.90039 -15.1006 16.3994 -14.6006 20.5996zM393 33.2998\\nc8.09961 8 27.5996 -12.5996 20.7002 -20.3994c-135.601 -135.601 -357.601 -52.1006 -381.601 121.3c-1.5 10.7002 28.9004 15.5 28.9004 3.2998c33 -165 222 -214.1 332 -104.2zM213.6 141.4c0 3.39941 2.30078 4.69922 20.4004 22.5996l-18.2002 18.2002\\nc-5.59961 5.59961 7.40039 17.2998 12.4004 17.2998c3.09961 0 2.89941 -0.700195 21.5 -19.5l17.8994 17.9004c6.10059 6.09961 22.5 -8.90039 16.2002 -15.7002l-18.2002 -18.2002l17.3008 -17.2998c7.7998 -7.7998 -5.30078 -18.2002 -10.7002 -18.2002\\nc-3.2002 0 -2.7002 0.200195 -22.2998 19.5c-19.7002 -19.7002 -18.5 -19.5 -22.3008 -19.5c-2.39941 0 -5.5 1.40039 -8.5 4.40039c-1.19922 1.19922 -5.5 4.5 -5.5 8.5z\\\" />\\n    <glyph glyph-name=\\\"amazon\\\" unicode=\\\"&#xf270;\\\" \\nd=\\\"M257.2 285.3c0 39.2998 5.2002 69.2002 -35.5 69.1006c0 0 -37.9004 0 -54.2002 -49.5l-73.5 6.7998c0 49.2998 46.7002 104.3 134.7 104.3c87.7998 0 112.3 -57 112.3 -82.2998v-147.101c0 -27.5 32.2998 -52.7998 32.2998 -52.7998l-56.7998 -56\\nc-9.90039 9.2998 -38.7998 36.6006 -45.2998 46.7998c-45.2002 -70.7998 -183.5 -66.2998 -183.5 43.2002c0 102 120.8 115.7 169.5 117.5zM257.2 198.5v40.5996c-33.7002 -1.09961 -84.2002 -10.5996 -84.2002 -57.7998c0 -50.7998 84.2002 -62.7998 84.2002 17.2002z\\nM393.2 35c-7.7002 -10 -70 -67 -174.5 -67s-184.5 71.5 -209 101c-6.7998 7.7002 1 11.2998 5.5 8.2998c73.2998 -44.5 187.8 -117.8 372.5 -30.2998c7.5 3.7002 13.2998 -2 5.5 -12zM433 32.7998c-6.5 -15.7998 -16 -26.7998 -21.2002 -31\\nc-5.5 -4.5 -9.5 -2.7002 -6.5 3.7998s19.2998 46.5 12.7002 55c-6.5 8.30078 -37 4.30078 -48 3.2002c-10.7998 -1 -13 -2 -14 0.299805c-2.2998 5.7002 21.7002 15.5 37.5 17.5c15.7002 1.80078 41 0.800781 46 -5.69922c3.7002 -5.10059 0 -27.1006 -6.5 -43.1006z\\\" />\\n    <glyph glyph-name=\\\"houzz\\\" unicode=\\\"&#xf27c;\\\" \\nd=\\\"M275.9 117.3h-104.601v-149.3h-154.3v448h109.5v-104.5l305.1 -85.5996v-257.9h-155.699v149.3z\\\" />\\n    <glyph glyph-name=\\\"vimeo-v\\\" unicode=\\\"&#xf27d;\\\" \\nd=\\\"M447.8 294.4c-2 -43.6006 -32.3994 -103.301 -91.3994 -179.101c-60.9004 -79.2002 -112.4 -118.8 -154.601 -118.8c-26.0996 0 -48.2002 24.0996 -66.2998 72.2998c-35.2002 129.2 -50.2002 204.9 -79.2998 204.9c-3.40039 0 -15.1006 -7.10059 -35.2002 -21.1006\\nl-21 27.2002c51.5996 45.2998 100.9 95.7002 131.8 98.5c34.9004 3.40039 56.2998 -20.5 64.4004 -71.5c28.7002 -181.5 41.3994 -208.899 93.5996 -126.7c18.7002 29.6006 28.7998 52.1006 30.2002 67.6006c4.7998 45.8994 -35.7998 42.7998 -63.2998 31\\nc22 72.0996 64.0996 107.1 126.2 105.1c45.7998 -1.2002 67.5 -31.0996 64.8994 -89.3994z\\\" />\\n    <glyph glyph-name=\\\"black-tie\\\" unicode=\\\"&#xf27e;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM316.5 90.7998l-64.5 184l64.4004 86.6006h-184.9l64.5 -86.6006l-64.5 -184l92.5 -88.7002z\\\" />\\n    <glyph glyph-name=\\\"fonticons\\\" unicode=\\\"&#xf280;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM187 275.1c11.9004 0 16.5996 -4.2998 16.2998 -23l50.7002 6.10059c0 44.5996 -30.5996 52.7998 -64.7002 52.7998c-50.7998 0 -77.2998 -20.4004 -77.2998 -70v-21h-28v-37.4004h22.2002c2.89941 0 5.7998 0 5.7998 -2.2998v-111.399\\nc0 -5.60059 -1.5 -7.30078 -6.7002 -7.90039l-21.2998 -2v-25.7002h130.7v25.1006l-43.5 4.09961c-5.2002 0.599609 -3.2002 1.5 -3.2002 7.2998v112.9h55.7002l11.0996 37.2998h-67.3994c-2.90039 0 0.599609 2 0.599609 4.40039v23.2998\\nc0 17.5 0.599609 27.3994 19 27.3994zM261.3 33.2998h102.601v25.1006l-15.7002 2.59961c-5.5 0.900391 -2.90039 1.5 -2.90039 7.2998v151.7h-80.2002l-6.69922 -29.5l24.1992 -6.40039c3.80078 -1.19922 6.7002 -3.7998 6.7002 -7.89941v-107.9\\nc0 -5.59961 -2.39941 -6.7002 -7.59961 -7.2998l-20.4004 -2.59961v-25.1006zM342.1 288.8l21.9004 24.2002l-3.5 9.59961h-27.7002l-15.5 28h-9.2998l-15.5 -28h-27.7002l-3.5 -9.59961l21.7998 -24.2002l-9 -33.2002l7.30078 -7.2998l31.1992 16.6006l31.2002 -16.6006\\nl7.2998 7.2998z\\\" />\\n    <glyph glyph-name=\\\"reddit-alien\\\" unicode=\\\"&#xf281;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M440.3 244.5c55.2998 0 73.7002 -74.0996 23.7998 -99.7002c2.2002 -7.89941 3.10059 -16.7002 3.10059 -25.0996c0 -83.7998 -94.4004 -151.7 -210.8 -151.7c-115.9 0 -210.301 67.9004 -210.301 151.7c0 8.39941 0.800781 16.7998 2.60059 24.7002\\nc-50.9004 25.5 -32.7002 100.1 22.8994 100.1c15 0 28.7002 -6.2002 38.4004 -16.2998c35.7998 24.7002 83.4004 40.5996 136.3 42.7998l30.4004 137.6c1.2998 4.90039 6.09961 8.40039 11 7.10059l97.3994 -21.6006c6.60059 12.7002 19.9004 22 35.3008 22\\nc22.0996 0 39.6992 -18.0996 39.6992 -39.6992c0 -21.6006 -17.6992 -39.7002 -39.6992 -39.7002c-21.6006 0 -39.2002 17.5996 -39.2002 39.2002l-88.2002 19.7998l-27.7002 -124.8c53.2998 -1.7002 101.4 -17.6006 137.101 -42.3008\\nc9.69922 9.7002 22.8994 15.9004 37.8994 15.9004zM129.4 139.1c0 -21.5996 17.6992 -39.2998 39.6992 -39.1992c21.6006 0 39.2002 17.5996 39.2002 39.1992c0 22.1006 -17.5996 39.7002 -39.2002 39.7002c-22.0996 0 -39.6992 -17.7002 -39.6992 -39.7002zM343.7 45.5996\\nc4 3.5 4 9.7002 -0.100586 13.7002c-3.5 3.5 -9.69922 3.5 -13.1992 0c-29 -29 -121.2 -28.5 -149 0c-3.5 3.5 -9.7002 3.5 -13.2002 0c-4 -4 -4 -10.2002 0 -13.7002c36.3994 -36.3994 139.1 -36.3994 175.5 0zM342.9 99.7998c22 0 39.5996 17.7002 39.6992 39.2002\\nc0 22.0996 -17.6992 39.7002 -39.6992 39.7002c-21.6006 0 -39.2002 -17.7002 -39.2002 -39.7002c0 -21.5996 17.5996 -39.2002 39.2002 -39.2002z\\\" />\\n    <glyph glyph-name=\\\"edge\\\" unicode=\\\"&#xf282;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M25.7139 219.837c0.111328 0.162109 0.230469 0.323242 0.341797 0.485352c-0.0205078 -0.162109 -0.0449219 -0.323242 -0.0644531 -0.485352h-0.277344zM486.286 204.329l0.000976562 -52.0645h-314.073c1.38379 -128.497 191.392 -124.065 272.255 -67.5713v-104.404\\nc-47.3555 -28.5244 -156.774 -53.1709 -240.132 -21.3242c-70.6191 27.1406 -119.913 100.528 -120.743 171.977c-1.10742 92.2188 45.6943 153.422 120.742 188.314c-15.7852 -19.9395 -27.9697 -41.54 -34.3389 -78.9258h175.853\\nc10.2471 104.957 -99.4189 104.957 -99.4189 104.957c-103.302 -3.58984 -177.945 -63.6543 -220.375 -124.966c14.5615 114.465 92.9062 219.955 232.837 219.678c85.0195 0 157.605 -39.8779 198.593 -113.265c21.0469 -37.9404 28.8008 -78.373 28.8008 -122.405z\\\" />\\n    <glyph glyph-name=\\\"codiepie\\\" unicode=\\\"&#xf284;\\\" horiz-adv-x=\\\"472\\\" \\nd=\\\"M422.5 245.1c30.7002 0 33.5 -53.0996 -0.299805 -53.0996h-10.7998v-44.2998h-26.6006v97.3994h37.7002zM472 95.4004c-42.0996 -91.9004 -121.6 -151.4 -224 -151.4c-137 0 -248 111 -248 248s111 248 248 248c97.4004 0 172.8 -53.7002 218.2 -138.4l-186 -108.8z\\nM433.5 82.9004l-60.2998 30.6992c-27.1006 -44.2998 -70.4004 -71.3994 -122.4 -71.3994c-82.5 0 -149.2 66.7002 -149.2 148.899c0 82.5 66.7002 149.2 149.2 149.2c48.4004 0 88.9004 -23.5 116.9 -63.3994l59.5 34.5996c-40.7002 62.5996 -104.7 100 -179.2 100\\nc-121.2 0 -219.5 -98.2998 -219.5 -219.5s98.2998 -219.5 219.5 -219.5c78.5996 0 146.5 42.0996 185.5 110.4z\\\" />\\n    <glyph glyph-name=\\\"modx\\\" unicode=\\\"&#xf285;\\\" \\nd=\\\"M356 206.2l36.7002 -23.7002v-214.5l-133 83.7998zM440 373l-83.2002 -134.3l-153.5 96.5l23 37.7998h213.7zM351 230.2l-249.8 -57.7002l-46 29v214.5zM97 153.8l249.7 57.7002l-125 -200.5h-213.7z\\\" />\\n    <glyph glyph-name=\\\"fort-awesome\\\" unicode=\\\"&#xf286;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M489.2 160.1c2.59961 0 4.59961 -2 4.5 -4.59961v-219.5h-182.9v96c0 72.5996 -109.7 72.5996 -109.7 0v-96h-182.899v219.5c0 2.59961 2 4.59961 4.59961 4.59961h27.4004c2.59961 0 4.59961 -2 4.59961 -4.59961v-32h36.6006v178.3\\nc0 2.60059 2 4.60059 4.59961 4.60059h27.4004c2.59961 0 4.59961 -2 4.59961 -4.60059v-32h36.2998v32c0 2.60059 2 4.60059 4.60059 4.60059h27.3994c2.60059 0 4.60059 -2 4.60059 -4.60059v-32h36.5996v32c0 6 8 4.60059 11.7002 4.60059v111.699\\nc-5.40039 2.60059 -9.10059 8.30078 -9.10059 14.3008c0 20.7998 31.4004 20.6992 31.4004 0c0 -6 -3.7002 -11.7002 -9.09961 -14.3008v-4.89941c7.69922 1.7998 15.6992 2.89941 23.6992 2.89941c11.7002 0 22.9004 -4.2998 32.6006 -4.2998\\nc8.89941 0 18.8994 4.2998 24 4.2998c2.59961 0 4.59961 -2 4.59961 -4.59961v-60c0 -6.90039 -23.0996 -8 -27.7002 -8c-10.5 0 -20.5 4.2998 -31.3994 4.2998c-8.60059 0 -17.4004 -1.39941 -25.7002 -3.39941v-38c3.7002 0 11.7002 1.39941 11.7002 -4.60059v-32h36.5996\\nv32c0 2.60059 2 4.60059 4.60059 4.60059h27.3994c2.60059 0 4.60059 -2 4.60059 -4.60059v-32h36.5996v32c0 2.60059 2 4.60059 4.59961 4.60059h27.4004c2.59961 0 4.59961 -2 4.59961 -4.60059v-178.3h36.6006v32c0 2.59961 2 4.59961 4.59961 4.59961h27.4004z\\nM201.1 164.6v64c0 2.60059 -2 4.60059 -4.59961 4.60059h-27.4004c-2.59961 0 -4.59961 -2 -4.59961 -4.60059v-64c0 -2.59961 2 -4.59961 4.59961 -4.59961h27.4004c2.59961 0 4.59961 2 4.59961 4.59961zM347.5 164.6v64c0 2.60059 -2 4.60059 -4.59961 4.60059h-27.4004\\nc-2.59961 0 -4.59961 -2 -4.59961 -4.60059v-64c0 -2.59961 2 -4.59961 4.59961 -4.59961h27.4004c2.59961 0 4.59961 2 4.59961 4.59961z\\\" />\\n    <glyph glyph-name=\\\"usb\\\" unicode=\\\"&#xf287;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M641.5 192c0 -3.09961 -1.7002 -6.09961 -4.5 -7.5l-89.0996 -53.5c-1.40039 -0.799805 -2.80078 -1.40039 -4.5 -1.40039c-1.40039 0 -3.10059 0.300781 -4.5 1.10059c-2.80078 1.7002 -4.5 4.5 -4.5 7.7998v35.5996h-238.7\\nc25.2998 -39.5996 40.5 -106.899 69.5996 -106.899h26.7002v26.7998c0 5 3.90039 8.90039 8.90039 8.90039h89.0996c5 0 8.90039 -3.90039 8.90039 -8.90039v-89.0996c0 -5 -3.90039 -8.90039 -8.90039 -8.90039h-89.0996c-5 0 -8.90039 3.90039 -8.90039 8.90039v26.6992\\nh-26.7002c-75.3994 0 -81.0996 142.5 -124.7 142.5h-100.3c-8.09961 -30.5996 -35.8994 -53.5 -69 -53.5c-39.2998 0.100586 -71.2998 32.1006 -71.2998 71.4004s32 71.2998 71.2998 71.2998c33.1006 0 61 -22.7998 69 -53.5c39.1006 0 43.9004 -9.5 74.6006 60.4004\\nc40.0996 89.0996 58.0996 82.0996 108.899 82.0996c7.5 20.9004 27 35.6006 50.4004 35.6006c29.5 0 53.5 -23.9004 53.5 -53.5c0 -29.6006 -23.9004 -53.5 -53.5 -53.5c-23.4004 0 -42.9004 14.7998 -50.4004 35.5996h-29.7998\\nc-29.0996 0 -44.2998 -67.4004 -69.5996 -106.9h310.1v35.6006c0 3.2998 1.7002 6.09961 4.5 7.7998s6.40039 1.40039 8.90039 -0.299805l89.0996 -53.5c2.7998 -1.10059 4.5 -4.10059 4.5 -7.2002z\\\" />\\n    <glyph glyph-name=\\\"product-hunt\\\" unicode=\\\"&#xf288;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M326.3 229.2c0 -20.5 -16.7002 -37.2002 -37.2002 -37.2002h-70.2998v74.4004h70.2998c20.5 0 37.2002 -16.7002 37.2002 -37.2002zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM375.9 229.2\\nc0 47.8994 -38.9004 86.7998 -86.8008 86.7998h-119.899v-248h49.5996v74.4004h70.2998c47.9004 0 86.8008 38.8994 86.8008 86.7998z\\\" />\\n    <glyph glyph-name=\\\"mixcloud\\\" unicode=\\\"&#xf289;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M424.43 228.271c42.3623 -9.1377 74.4805 -47.0693 74.4805 -92.2002c0 -52.3311 -42.6406 -94.6934 -94.9688 -94.6934h-289.614c-62.5752 0 -113.243 50.668 -113.243 112.966c0 56.7598 42.085 103.554 96.6299 111.582\\nc22.9814 67.5586 86.9395 114.074 159.205 114.074c87.2158 0 159.205 -66.7266 167.511 -151.729zM403.941 83.7412c29.0713 0 52.6064 23.5352 52.6064 52.3301c0 22.1494 -14.1211 40.9766 -33.502 48.4531c-1.38477 -8.58301 -3.59961 -17.166 -6.36914 -25.4727\\nc-8.01367 -25.6484 -49.0898 -14.2266 -40.1465 13.29c4.15332 12.7373 6.36914 26.0264 6.36914 39.5938c0 69.2197 -56.4834 125.702 -125.979 125.702c-49.8379 0 -94.6934 -29.626 -114.628 -73.9258c19.3809 -4.98438 37.3779 -14.9512 52.0527 -29.3486\\nc19.9531 -19.9531 -10.2168 -50.1436 -30.1797 -30.1807c-13.29 13.291 -31.0107 20.7666 -49.8379 20.7666c-39.04 0 -70.8809 -31.5645 -70.8809 -70.6045s31.8408 -70.6035 70.8809 -70.6035h289.614zM639.01 136.071c0 -44.0244 -12.7363 -86.3867 -37.1016 -122.657\\nc-4.15332 -6.0918 -10.7979 -9.41406 -17.7197 -9.41406c-16.3174 0 -27.1279 18.8262 -17.4434 32.9492c19.3809 29.3486 29.9033 63.6816 29.9033 99.1221c0 35.4395 -10.5215 69.7725 -29.9033 98.8447c-15.6553 22.8311 19.3613 47.2402 35.1631 23.5342\\nc24.3662 -35.9932 37.1016 -78.3564 37.1016 -122.379zM568.13 136.071c0 -31.5654 -9.13672 -62.0215 -26.8564 -88.3252c-4.15332 -6.09082 -10.7988 -9.13574 -17.7207 -9.13574c-17.2012 0 -27.0215 18.9785 -17.4424 32.9473\\nc13.0127 19.1045 19.6572 41.2559 19.6572 64.5137c0 22.9805 -6.64453 45.4072 -19.6572 64.5117c-15.7617 22.9863 19.0078 47.0947 35.1631 23.5352c17.7188 -26.0264 26.8564 -56.4834 26.8564 -88.0469z\\\" />\\n    <glyph glyph-name=\\\"scribd\\\" unicode=\\\"&#xf28a;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M42.2998 195.3c-16.0996 19 -24.7002 45.9004 -24.7998 79.9004c0 100.399 75.2002 153.1 167.2 153.1c98.5996 1.60059 156.8 -49 184.3 -70.5996l-50.5 -72.1006l-37.2998 24.6006l26.8994 38.5996c-36.5 24 -79.3994 36.5 -123 35.7998\\nc-50.6992 0.800781 -111.699 -27.1992 -111.699 -76.1992c0 -18.7002 11.1992 -20.7002 28.5996 -15.6006c23.2998 5.2998 41.9004 -0.599609 55.7998 -14c26.4004 -24.2998 23.2002 -67.5996 -0.700195 -91.8994c-29.1992 -29.5 -85.1992 -27.3008 -114.8 8.39941z\\nM360 189.4c33.9004 -40.4004 36.7998 -138.2 -20.2998 -189.601c-39.2002 -33.5996 -82.2002 -44.0996 -133.601 -44.0996c-70.2998 -0.299805 -138.199 25.3994 -190.699 72.2002l-15.4004 13.7998l60.7998 71.7998l35.6006 -27.4004l-33.7002 -39.3994\\nc41.7002 -30.9004 92.2002 -47.5 144.1 -47.2998c61.9004 0 104.7 23.5 121.4 64.3994c0.899414 4.2002 1.39941 8.40039 1.39941 12.7002c0 18.7002 -11.1992 20.7002 -28.5996 15.5996c-23.2998 -5.2998 -42.2002 0.5 -56.2998 14.4004\\nc-12.4004 11.2998 -19.1006 27.5 -18.4004 44.2998c-0.599609 39.2002 32.4004 69.2002 70.5 67.2002c24.2998 0.799805 47.7002 -9.7998 63.2002 -28.5996z\\\" />\\n    <glyph glyph-name=\\\"bluetooth\\\" unicode=\\\"&#xf293;\\\" \\nd=\\\"M292.6 276.9l-42.8994 -42.9004l-0.299805 86zM249.4 57.0996l0.199219 86l42.9004 -42.8994zM416 188.6c0 -205.6 -71.9004 -252.6 -185.1 -252.6c-113.2 0 -198.9 47 -198.9 252.6c0 205.601 83.4004 259.4 196.6 259.4c113.2 0 187.4 -53.9004 187.4 -259.4z\\nM257.5 188.6l79.4004 88.6006l-125.101 134.3v-176.9l-73.7998 73.8008l-27 -26.9004l92.7002 -93l-92.7002 -93l26.9004 -26.9004l73.7998 73.8008l2.2998 -170l127.4 127.5z\\\" />\\n    <glyph glyph-name=\\\"bluetooth-b\\\" unicode=\\\"&#xf294;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M196.48 187.977l97.9111 -103.333l-148.552 -148.644l-2.71484 198.284l-86.1113 -86.1113l-31.4053 31.4053l108.061 108.398l-108.061 108.399l31.4053 31.4053l86.1113 -86.1113v206.33l145.981 -156.69zM237.34 290.973l-50.3145 50.3174l0.337891 -100.295z\\nM187.363 134.96l-0.337891 -100.294l50.3145 50.3164z\\\" />\\n    <glyph glyph-name=\\\"gitlab\\\" unicode=\\\"&#xf296;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M105.2 423.1c0 0 56.5 -174.8 56.5996 -174.8h-132l56.5 174.8c3.2002 8.90039 15.7998 8.90039 18.9004 0zM0.900391 160.3l28.7998 88l226.2 -294l-247.9 184c-6.7998 5.10059 -9.7002 14 -7.09961 22zM161.7 248.3h188.6l-94.2998 -294zM511.1 160.3\\nc2.5 -8 -0.299805 -16.8994 -7.19922 -22l-247.9 -184l226.3 294zM425.7 423.1l56.5 -174.8h-132l56.5996 174.8c3.2002 8.90039 15.7998 8.90039 18.9004 0z\\\" />\\n    <glyph glyph-name=\\\"wpbeginner\\\" unicode=\\\"&#xf297;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M462.799 125.626c56.2109 -64.3076 4.16211 -157.626 -91.8545 -157.626c-39.6025 0 -78.8242 17.6865 -100.143 50.04c-6.88672 -0.356445 -22.7021 -0.356445 -29.5898 0c-21.3643 -32.4209 -60.624 -50.04 -100.143 -50.04\\nc-95.4902 0 -148.349 92.9961 -91.8555 157.626c-79.1387 131.851 31.2646 290.374 206.792 290.374c175.632 0 285.87 -158.626 206.793 -290.374zM123.152 208.598h41.5283v58.0752h-41.5283v-58.0752zM340.332 122.526v23.8389\\nc-60.5059 -20.915 -132.355 -9.19824 -187.589 33.9707l0.246094 -24.8965c51.1006 -46.3672 131.746 -57.875 187.343 -32.9131zM189.579 208.598h166.058v58.0752h-166.058v-58.0752z\\\" />\\n    <glyph glyph-name=\\\"wpforms\\\" unicode=\\\"&#xf298;\\\" \\nd=\\\"M448 372.8v-361.7c0 -24.2998 -19 -43.1992 -43.2002 -43.1992h-361.6c-23.9004 0.0996094 -43.2002 18.6992 -43.2002 43.2998v361.6c0 24.1006 18.7998 43.2002 43.2002 43.2002h361.7c24 0 43.0996 -18.7998 43.0996 -43.2002zM410.7 11.2002v361.6\\nc0 3 -2.60059 5.7998 -5.7998 5.7998h-9.30078l-110.3 -74.5996l-61.2998 49.9004l-61.2002 -49.9004l-110.3 74.7002h-9.2998c-3.2002 0 -5.7998 -2.7998 -5.7998 -5.7998v-361.7c0 -3 2.59961 -5.7998 5.7998 -5.7998h361.7\\nc3.19922 -0.100586 5.7998 2.69922 5.7998 5.7998zM150.2 262v-37h-73.5v37h73.5zM150.2 187.6v-37.2998h-73.5v37.2998h73.5zM161.3 334.9l54 43.6992h-118.5zM371.3 262v-37h-196v37h196zM371.3 187.6v-37.2998h-196v37.2998h196zM286.7 334.9l64.5 43.6992h-118.4z\\nM371.3 113v-37.2998h-99.3994v37.2998h99.3994z\\\" />\\n    <glyph glyph-name=\\\"envira\\\" unicode=\\\"&#xf299;\\\" \\nd=\\\"M0 416c477.6 0 366.6 -317.3 367.1 -366.3l80.9004 -81.7002h-26l-70.4004 71.2002c-39 -4.2002 -124.399 -34.5 -214.399 37c-90.2002 71.5 -85.2002 157.1 -137.2 339.8zM79.7002 370c-49.7002 23.5 -5.2002 -9.2002 -5.2002 -9.2002\\nc45.2002 -31.2002 66 -73.7002 90.2002 -119.899c31.5 -60.2002 79 -139.7 144.2 -167.7c65 -28 34.1992 -12.5 6 8.5c-28.2002 21.2002 -68.2002 87 -91 130.2c-31.7002 60 -61 118.6 -144.2 158.1z\\\" />\\n    <glyph glyph-name=\\\"glide\\\" unicode=\\\"&#xf2a5;\\\" \\nd=\\\"M252.8 299.4c0 -8.80078 -1.59961 -17.7002 -3.39941 -26.4004c-5.80078 -27.7998 -11.6006 -55.7998 -17.3008 -83.5996c-1.39941 -6.30078 -8.2998 -4.90039 -13.6992 -4.90039c-23.8008 0 -30.5 26 -30.5 45.5c0 29.2998 11.1992 68.0996 38.5 83.0996\\nc4.2998 2.5 9.19922 4.2002 14.0996 4.2002c11.4004 0 12.2998 -8.2998 12.2998 -17.8994zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM384 181c0 5.09961 -20.7998 37.7002 -25.5 39.5\\nc-2.2002 0.900391 -7.2002 2.2998 -9.59961 2.2998c-23.1006 0 -38.7002 -10.5 -58.2002 -21.5l-0.5 0.5c4.2998 29.4004 14.5996 57.2002 14.5996 87.4004c0 44.5996 -23.7998 62.7002 -67.5 62.7002c-71.7002 0 -108 -70.8008 -108 -123.5c0 -54.7002 32 -85 86.2998 -85\\nc7.5 0 6.90039 0.599609 6.90039 -2.30078c-10.5 -80.2998 -56.5 -82.8994 -56.5 -58.8994c0 24.3994 28 36.5 28.2998 38c-0.200195 7.59961 -29.2998 17.2002 -36.7002 17.2002c-21.0996 0 -32.6992 -33 -32.6992 -50.6006c0 -32.2998 20.3994 -54.7002 53.2998 -54.7002\\nc48.2002 0 83.3994 49.7002 94.2998 91.7002c9.40039 37.7002 7 39.4004 12.2998 42.1006c20 10.0996 35.7998 16.7998 58.4004 16.7998c11.0996 0 19 -2.2998 36.7002 -5.2002c1.7998 -0.0996094 4.09961 1.7002 4.09961 3.5z\\\" />\\n    <glyph glyph-name=\\\"glide-g\\\" unicode=\\\"&#xf2a6;\\\" \\nd=\\\"M407.1 236.8c7.5 -2.89941 40.9004 -55.3994 40.9004 -63.3994c0 -2.90039 -3.7998 -5.80078 -6.7002 -5.80078c-28.3994 4.7002 -41.0996 8.40039 -58.8994 8.40039c-36.3008 0 -61.6006 -10.7998 -93.8008 -27c-8.5 -4.2998 -4.59961 -7.09961 -19.6992 -67.5996\\nc-17.4004 -67.6006 -74 -145.4 -151.4 -145.4c-52.7002 0 -85.5 36 -85.5 87.9004c0 28.0996 18.5 79.1992 52.4004 79.2998c11.8994 0 58.5996 -15.4004 58.8994 -27.6006c-0.5 -2.39941 -45.5 -21.7998 -45.5 -61c0 -38.5 73.9004 -34.2998 90.7998 94.6006\\nc0 4.7998 1 3.7998 -11 3.7998c-87.2998 0 -138.6 48.7002 -138.6 136.6c0 84.7002 58.2998 198.4 173.4 198.4c70.1992 0 108.399 -29.0996 108.399 -100.6c0 -48.5 -16.5 -93.1006 -23.5 -140.4l0.900391 -0.900391c31.2998 17.7002 56.3994 34.5 93.5 34.5\\nc3.7998 0 11.8994 -2.39941 15.3994 -3.7998zM231.8 321.2c2.90039 13.8994 5.5 28.0996 5.60059 42.3994c0 15.4004 -1.40039 28.7002 -20 28.7002c-7.80078 0 -15.6006 -2.59961 -22.6006 -6.7002c-43.7998 -24.0996 -61.7998 -86.3994 -61.7998 -133.399\\nc0 -31.2998 10.7002 -73.1006 49 -73.1006c8.7002 0 19.7002 -2.39941 22 7.80078c9.2002 44.6992 18.5 89.5996 27.7998 134.3z\\\" />\\n    <glyph glyph-name=\\\"viadeo\\\" unicode=\\\"&#xf2a9;\\\" \\nd=\\\"M276.2 297.5v-0.700195c-17.9004 52.6006 -42.6006 103.4 -70.7998 151.2c43.2998 -29.2002 67 -100 70.7998 -150.5zM308.9 175.8c15.0996 3.10059 29.5 9 42.1992 17c24.5 -58.5996 20.2002 -139.7 -36.3994 -201c-67.7998 -73.8994 -191.9 -74.5996 -259.8 0\\nc-108.801 117.8 -31.6006 313.7 129.899 313.7c21.2998 0 42.6006 -3.5 62.5 -10.7002c-6.89941 -13.3994 -11.7002 -28.2002 -13.3994 -43.2998c-15.4004 6.5 -32.3008 9.59961 -49.1006 9.59961c-78 0 -135.399 -66.6992 -135.399 -142.3\\nc0 -68.7998 45.5996 -126 111.3 -137.399c98.5 38.3994 116.6 188.199 116.6 280c0 11.6992 0 23.6992 -1 35.3994c12.4004 -36.0996 18.9004 -73.8994 18.9004 -112c0 -86.5 -35.1006 -158.399 -109.3 -205.1l-3.80078 -0.299805\\nc80 -1.60059 137.801 61.6992 137.801 139.399c0 19.5 -3.40039 38.7998 -11 57zM418.1 436.3c52 -74 20.9004 -208.6 -58.0996 -208.6c-21.2998 0 -40.2002 11.3994 -55 25.7998c35.0996 19.2998 79.4004 49.2002 99.7002 84.9004\\nc2.39941 4.7998 6.5 13.6992 7.2002 19.1992c-19.9004 -44.6992 -70.8008 -79.6992 -118.2 -90.6992c-7.5 11.6992 -12 24.6992 -12 38.7998c0 16.5 8.2002 38.5 20.5996 50.5c34.5 32.8994 84.7998 13.5996 115.8 80.0996z\\\" />\\n    <glyph glyph-name=\\\"viadeo-square\\\" unicode=\\\"&#xf2aa;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM280.7 66.7998c35.3994 38.2998 38.0996 89 22.7998 125.601c-7.90039 -4.90039 -16.9004 -8.60059 -26.4004 -10.5\\nc4.80078 -11.4004 6.90039 -23.5 6.90039 -35.7002c0 -48.6006 -36.2002 -88.2002 -86.2002 -87.2002l2.40039 0.200195c46.3994 29.2002 68.2998 74.0996 68.2998 128.2c0 23.7998 -4.09961 47.5 -11.7998 70v0.399414c-2.2998 31.6006 -17.1006 75.7998 -44.2002 94.1006\\nc17.5996 -29.9004 33 -61.6006 44.2002 -94.5c0.599609 -7.30078 0.599609 -14.8008 0.599609 -22.1006c0 -57.3994 -11.3994 -151 -72.8994 -175c-41 7.2002 -69.5 42.9004 -69.5 85.9004c0 47.2002 35.7998 88.8994 84.5996 88.8994c10.5 0 21 -1.89941 30.7002 -6\\nc1.09961 9.5 4.09961 18.7002 8.39941 27.1006c-12.5 4.59961 -25.7998 6.7002 -39.0996 6.7002c-101 0 -149.2 -122.5 -81.2002 -196.101c42.4004 -46.5996 120 -46.2002 162.4 0zM309 214.3c49.4004 0 68.7998 84.1006 36.2998 130.3\\nc-19.3994 -41.5 -50.7998 -29.5 -72.3994 -50c-7.7002 -7.5 -12.9004 -21.2998 -12.9004 -31.5996c0 -8.7998 2.7998 -17 7.5 -24.2998c29.7002 6.89941 61.4004 28.7998 73.9004 56.7002c-0.400391 -3.40039 -3 -9 -4.5 -12c-12.7002 -22.3008 -40.4004 -41 -62.3008 -53\\nc9.30078 -9 21.1006 -16.1006 34.4004 -16.1006z\\\" />\\n    <glyph glyph-name=\\\"snapchat\\\" unicode=\\\"&#xf2ab;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM417.5 101.1c2.2002 5.30078 -0.900391 9.80078 -4.90039 10.8008c-46.2998 7.59961 -67.0996 55.0996 -68 57.0996\\nc-0.0996094 0.0996094 -0.0996094 0.200195 -0.199219 0.299805c-2.40039 5 -3 9.2002 -1.60059 12.5c2.60059 6.2998 12.5 9.40039 19 11.5c1.7998 0.600586 3.5 1.10059 4.90039 1.7002c11.5 4.5 17.2998 10.0996 17.2002 16.5996\\nc-0.100586 5.10059 -4.10059 9.60059 -10.4004 11.9004c-4 1.59961 -9.59961 1.90039 -13.5996 0c-5.5 -2.59961 -10.4004 -4 -14.7002 -4.2002c-2.7998 0.100586 -4.60059 0.799805 -5.7002 1.40039c1.40039 24 4.7002 58 -3.7998 77.0996\\nc-16.2998 36.5 -49.6006 54.2998 -84.2998 54.2998c-0.600586 0 -6.10059 -0.0996094 -6.7002 -0.0996094c-14 0 -61.6006 -4 -84.1006 -54.2998c-8.5 -19.1006 -5.19922 -53.2002 -3.7998 -77.1006c-1.09961 -0.599609 -3.2998 -1.39941 -6.59961 -1.39941\\nc-4.5 0 -9.7998 1.39941 -15.7002 4.2002c-7.5 3.5 -20.2998 -1.80078 -21.9004 -10.3008c-1 -4.89941 1.2002 -12.0996 17 -18.2998c6.10059 -2.5 20.6006 -5.2998 24 -13.2002c1.40039 -3.2998 0.900391 -7.5 -1.59961 -12.5\\nc-0.0996094 -0.0996094 -0.200195 -0.199219 -0.200195 -0.299805c-0.899414 -2 -21.7002 -49.5 -68 -57.0996c-3.59961 -0.600586 -6.09961 -3.7998 -5.89941 -7.40039c0.699219 -13.8994 31.6992 -19.2998 45.5 -21.3994c1.39941 -1.90039 2.5 -9.90039 4.2998 -16\\nc0.799805 -2.7002 2.89941 -6 8.2998 -6s13.2998 3.09961 25.7998 3.09961c17.6006 0 23.6006 -4 37.4004 -13.7002c9.89941 -7 27.5 -19.7998 48.5 -18.2002c20.7998 -0.899414 34.7002 7.90039 49.2002 18.2002c13.6992 9.7002 19.7998 13.7002 37.3994 13.7002\\nc13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90039c1.7998 6.09961 2.89941 14 4.2998 15.9004c26.7002 4.19922 41.2998 10.0996 44.7998 18.1992z\\\" />\\n    <glyph glyph-name=\\\"snapchat-ghost\\\" unicode=\\\"&#xf2ac;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M510.846 55.3271c-5.21094 -12.1572 -27.2383 -21.0889 -67.3594 -27.3184c-2.06445 -2.78613 -3.77539 -14.6855 -6.50781 -23.9561c-1.625 -5.56543 -5.62207 -8.86914 -12.1279 -8.86914l-0.296875 0.00585938c-9.39453 0 -19.2031 4.32227 -38.8516 4.32227\\nc-26.5215 0 -35.6621 -6.04297 -56.2539 -20.5879c-21.832 -15.4375 -42.7715 -28.7637 -74.0273 -27.3984c-31.6455 -2.33398 -58.0244 16.9072 -72.8711 27.4033c-20.7139 14.6436 -29.8281 20.582 -56.2412 20.582c-18.8633 0 -30.7354 -4.71973 -38.8516 -4.71973\\nc-8.07324 0 -11.2129 4.92188 -12.4219 9.04004c-2.70312 9.18848 -4.4043 21.2627 -6.52344 24.1299c-20.6787 3.20898 -67.3096 11.3438 -68.498 32.1504c-0.00878906 0.161133 -0.015625 0.422852 -0.015625 0.583984c0 4.97559 3.98438 9.67285 8.89258 10.4844\\nc69.583 11.4551 100.925 82.9014 102.228 85.9346c0.0742188 0.175781 0.155273 0.34375 0.237305 0.514648c3.71289 7.53711 4.54395 13.8486 2.46289 18.7529c-5.05078 11.8965 -26.8721 16.1641 -36.0537 19.7959c-23.7148 9.36621 -27.0146 20.1279 -25.6113 27.5039\\nc2.43652 12.8359 21.7246 20.7354 33.002 15.4531c8.91895 -4.18066 16.8428 -6.29688 23.5469 -6.29688c5.02148 0 8.21191 1.2041 9.95996 2.1709c-2.04297 35.9365 -7.10156 87.29 5.68652 115.969c33.7734 75.7188 105.356 81.6025 126.478 81.6025\\nc0.943359 0 9.14062 0.0888672 10.1094 0.0888672c52.1484 0 102.255 -26.7803 126.724 -81.6426c12.7764 -28.6504 7.74902 -79.792 5.69434 -116.01c1.58203 -0.87207 4.35742 -1.94141 8.59961 -2.13867c6.39648 0.286133 13.8145 2.38867 22.0693 6.25684\\nc6.08496 2.84668 14.4053 2.46094 20.4795 -0.0576172l0.0292969 -0.00976562c9.47559 -3.38574 15.4385 -10.2158 15.5889 -17.8701c0.183594 -9.74707 -8.52246 -18.165 -25.8779 -25.0186c-2.11816 -0.834961 -4.69434 -1.6543 -7.43457 -2.52441\\nc-9.79688 -3.10645 -24.5996 -7.80566 -28.6152 -17.2715c-2.0791 -4.9043 -1.25684 -11.2109 2.45996 -18.748c0.0869141 -0.167969 0.166016 -0.341797 0.238281 -0.514648c1.30176 -3.03027 32.6152 -74.46 102.23 -85.9346\\nc6.42676 -1.05762 11.1631 -7.87695 7.72461 -15.8584z\\\" />\\n    <glyph glyph-name=\\\"snapchat-square\\\" unicode=\\\"&#xf2ad;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM393.5 101.1c2.2002 5.30078 -0.900391 9.80078 -4.90039 10.8008c-46.2998 7.59961 -67.0996 55.0996 -68 57.0996\\nc-0.0996094 0.0996094 -0.0996094 0.200195 -0.199219 0.299805c-2.40039 5 -3 9.2002 -1.60059 12.5c2.60059 6.2998 12.5 9.40039 19 11.5c1.7998 0.600586 3.5 1.10059 4.90039 1.7002c11.5 4.5 17.2998 10.0996 17.2002 16.5996\\nc-0.100586 5.10059 -4.10059 9.60059 -10.4004 11.9004c-4 1.59961 -9.59961 1.90039 -13.5996 0c-5.5 -2.59961 -10.4004 -4 -14.7002 -4.2002c-2.7998 0.100586 -4.60059 0.799805 -5.7002 1.40039c1.40039 24 4.7002 58 -3.7998 77.0996\\nc-16.2998 36.5 -49.6006 54.2998 -84.2998 54.2998c-0.600586 0 -6.10059 -0.0996094 -6.7002 -0.0996094c-14 0 -61.6006 -4 -84.1006 -54.2998c-8.5 -19.1006 -5.19922 -53.2002 -3.7998 -77.1006c-1.09961 -0.599609 -3.2998 -1.39941 -6.59961 -1.39941\\nc-4.5 0 -9.7998 1.39941 -15.7002 4.2002c-7.5 3.5 -20.2998 -1.80078 -21.9004 -10.3008c-1 -4.89941 1.2002 -12.0996 17 -18.2998c6.10059 -2.5 20.6006 -5.2998 24 -13.2002c1.40039 -3.2998 0.900391 -7.5 -1.59961 -12.5\\nc-0.0996094 -0.0996094 -0.200195 -0.199219 -0.200195 -0.299805c-0.899414 -2 -21.7002 -49.5 -68 -57.0996c-3.59961 -0.600586 -6.09961 -3.7998 -5.89941 -7.40039c0.699219 -13.8994 31.6992 -19.2998 45.5 -21.3994c1.39941 -1.90039 2.5 -9.90039 4.2998 -16\\nc0.799805 -2.7002 2.89941 -6 8.2998 -6s13.2998 3.09961 25.7998 3.09961c17.6006 0 23.6006 -4 37.4004 -13.7002c9.89941 -7 27.5 -19.7998 48.5 -18.2002c20.7998 -0.899414 34.7002 7.90039 49.2002 18.2002c13.6992 9.7002 19.7998 13.7002 37.3994 13.7002\\nc13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90039c1.7998 6.09961 2.89941 14 4.2998 15.9004c26.7002 4.19922 41.2998 10.0996 44.7998 18.1992z\\\" />\\n    <glyph glyph-name=\\\"pied-piper\\\" unicode=\\\"&#xf2ae;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M455.93 424.8c9.41992 2.40039 15.0703 -10.25 6.99023 -15.6797c-98.2295 -65.9199 -120.439 -127.561 -126.229 -160.18c-33.5205 -188.881 -101.37 -119.32 -184.311 -226.65c22.4619 -12.916 61.7197 -23.3984 87.6299 -23.4004\\nc97.6504 0 177.09 79.4502 177.09 177.11c-0.00390625 37.1318 -20.0967 89.7314 -44.8496 117.41c3.90332 8.05176 11.5186 20.3271 17 27.3994c32.4297 -33.3115 58.75 -98.0781 58.75 -144.569v-0.240234c0 -114.87 -93.1299 -208 -208 -208s-208 93.1201 -208 208\\ns93.1299 208 208 208c29.9082 -0.000976562 75.3125 -11.9443 101.35 -26.6602c46.4404 38.9697 87.8809 60.6602 114.58 67.46zM125 41.5996c64.7695 140.881 125.64 231.641 191.63 293.75c-19.9951 9.79883 -54.2959 17.75 -76.5635 17.75h-0.0664062\\nc-97.6504 0 -177.1 -79.4395 -177.1 -177.1c0.0195312 -45.0049 27.8408 -105.216 62.0996 -134.4z\\\" />\\n    <glyph glyph-name=\\\"first-order\\\" unicode=\\\"&#xf2b0;\\\" \\nd=\\\"M12.9004 218.8c0.0996094 0.100586 0.199219 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.100586 -0.400391h-0.199219zM224 351.4c7.40039 0 14.5996 -0.5 21.7002 -1.7002l-4 -67.7002l22.2998 64.2998c14.2998 -3.7998 27.7002 -9.5 40 -16.8994\\nl-29.4004 -61.1006l45.1006 50.9004c11.5 -8.90039 21.7002 -19.2002 30.5996 -30.9004l-50.5996 -45.3994l60.8994 29.6992c7.5 -12.2998 12.9004 -26 16.6006 -40.2998l-64 -22.2998l67.7002 4c1.09961 -7.09961 1.39941 -14.5996 1.39941 -22\\ns-0.299805 -14.5996 -1.39941 -21.7002l-67.4004 4l64 -22.2998c-3.7002 -14.5996 -9.5 -28 -16.5996 -40.2998l-61.1006 29.3994l50.6006 -45.0996c-8.60059 -11.7998 -18.9004 -22 -30.6006 -30.9004l-44.8994 50.9004l29.3994 -61.2998\\nc-12.2998 -7.5 -25.7002 -12.9004 -40 -16.9004l-22.5996 65.1006l4 -68.6006c-7.10059 -1.09961 -14.2998 -1.7002 -21.7002 -1.7002c-7.09961 0 -14.5996 0.600586 -21.7002 1.7002l4 68l-22.2998 -64.5996c-14.2998 3.7998 -27.7002 9.5 -40 16.8994l29.5 61.4004\\nl-44.9004 -50.9004c-11.7998 8.60059 -22 19.2002 -30.8994 30.9004l50.8994 45.0996l-61.0996 -29.6992c-7.2002 12.5996 -12.9004 26 -16.5996 40.2998l64 22.5996l-67.7002 -4c-0.799805 7.10059 -1.40039 14.2998 -1.40039 21.7002s0.5 14.9004 1.40039 22l68 -4\\nl-64.2998 22.5996c3.69922 14.3008 9.5 27.7002 16.5996 40l61.0996 -29.6992l-50.5996 45.3994c8.90039 11.7998 19.2002 22 30.5996 30.9004l45.1006 -50.9004l-29.4004 61.4004c12.2998 7.2002 25.7002 12.8994 40 16.5996l22 -64l-3.7002 67.4004\\nc6.80078 1.09961 14.3008 1.7002 21.4004 1.7002zM443.4 320v-256l-219.4 -128l-219.4 128v256l219.4 128zM426.3 309.7l-202.3 117.399l-202.3 -117.399v-235.101l202.3 -117.699l202.3 117.699v235.101zM224 410.9l187.7 -109.4v-218.9l-187.7 -109.5l-187.7 109.5\\nv218.801zM224 360c-92.2998 0 -166.9 -75.0996 -166.9 -168c0 -92.5996 74.6006 -167.7 166.9 -167.7c92 0 166.9 75.1006 166.9 167.7c0 92.9004 -74.9004 168 -166.9 168z\\\" />\\n    <glyph glyph-name=\\\"yoast\\\" unicode=\\\"&#xf2b1;\\\" \\nd=\\\"M91.2998 372h186l-7 -18.9004h-179c-39.7002 0 -71.8994 -31.5996 -71.8994 -70.2998v-205.399c0 -35.4004 24.8994 -70.3008 84 -70.3008v-19.0996h-12.1006c-50.0996 0 -91.2998 40.2002 -91.2998 89.5v205.3c0 49.2998 40.7002 89.2002 91.2998 89.2002zM320.4 428\\nh66.5c-143.801 -378.1 -145.7 -398.9 -184.7 -439.3c-20.7998 -21.6006 -49.2998 -31.7002 -78.2998 -32.7002v51.0996c49.1992 7.7002 64.5996 49.9004 64.5996 75.3008c0 20.0996 0.599609 12.5996 -82.0996 223.199h61.3994l50.4004 -156.6zM448 286.5v-298.5h-214\\nc6.59961 9.59961 10.7002 16.2998 12.0996 19.4004h182.5v279.1c0 32.5 -17.0996 51.9004 -48.1992 62.9004l6.69922 17.5996c41.7002 -13.5996 60.9004 -43.0996 60.9004 -80.5z\\\" />\\n    <glyph glyph-name=\\\"themeisle\\\" unicode=\\\"&#xf2b2;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M208 359.714c0 10 6.28613 21.7139 17.7148 21.7139c11.1426 0 17.7139 -11.7139 17.7139 -21.7139c0 -10.2852 -6.57129 -21.7139 -17.7139 -21.7139c-11.4287 0 -17.7148 11.4287 -17.7148 21.7139zM512 199.714c0 -36.001 -11.4287 -102.286 -36.2861 -129.714\\nc-22.8574 -24.8584 -87.4277 -61.1426 -120.856 -70.5723l-1.14355 -0.286133v-32.5703c0 -16.2861 -12.5723 -30.5713 -29.1426 -30.5713c-10 0 -19.4297 5.71387 -24.5723 14.2861c-5.42676 -8.57227 -14.8564 -14.2861 -24.8564 -14.2861\\ns-19.4287 5.71387 -24.8574 14.2861c-5.14258 -8.57227 -14.5713 -14.2861 -24.5703 -14.2861c-10.2861 0 -19.4287 5.71387 -24.8574 14.2861c-5.14355 -8.57227 -14.5713 -14.2861 -24.5713 -14.2861c-18.8574 0 -29.4287 15.7139 -29.4287 32.8574\\nc-16.2861 -12.2852 -35.7158 -19.4287 -56.5713 -19.4287c-22 0 -43.4287 8.28516 -60.2861 22.8574c10.2852 0.286133 20.5713 2.28613 30.2852 5.71387c-20.8574 5.71387 -39.4277 18.8574 -52 36.2861c21.3701 -4.64551 46.209 -1.67285 67.1426 11.1426\\nc-22 22 -56.5703 58.8574 -68.5713 87.4287c-5.71387 13.4287 -6.85645 31.4287 -6.85645 45.7139c0 49.7139 20.2861 160 86.2861 160c10.5713 0 18.8564 -4.8584 23.1426 -14.8574c3.0498 4.46289 8.42578 11.374 12 15.4277c2 2.57227 5.71387 5.42969 7.14355 8.28613\\nc7.99902 12.5713 11.7139 21.1426 21.7139 34c32.2852 41.1445 81.7139 69.4297 134.856 69.4297c6 0 12 -0.285156 17.7148 -1.14355c10.8564 11.7148 26 18.2861 41.7148 18.2861c14.5703 0 29.7139 -6 40 -16.2861c0.856445 -0.857422 1.42773 -2.28613 1.42773 -3.42773\\nc0 -3.71387 -10.2852 -13.4287 -12.8574 -16.2861c4.28613 -1.42871 15.7148 -6.8584 15.7148 -12c0 -2.85742 -2.85742 -5.14258 -4.57129 -7.14258c31.4287 -27.7148 49.4287 -67.1436 56.2861 -108c4.28613 5.14258 10.2852 8.57129 17.1426 8.57129\\nc10.5713 0 20.8574 -7.14355 28.5713 -14.001c20.8564 -18.5703 25.7139 -53.1416 25.7139 -79.7139zM188 358.572c0 -18.2861 12.5713 -37.1436 32.2861 -37.1436c19.7139 0 32.2852 18.8574 32.2852 37.1436c0 18 -12.5713 36.8564 -32.2852 36.8564\\nc-19.7148 0 -32.2861 -18.8574 -32.2861 -36.8564zM237.714 254c0 19.7139 3.71387 39.1426 8.57129 58.2861c-52.0391 -79.5342 -13.5312 -184.571 68.8574 -184.571c21.4287 0 42.5713 7.71387 60 20c2 7.42871 3.71484 14.8574 3.71484 22.5723\\nc0 14.2861 -6.28613 21.4277 -20.5723 21.4277c-4.57129 0 -9.14355 -0.856445 -13.4287 -1.71387c-63.3438 -12.668 -107.143 -3.66895 -107.143 63.999zM196.572 -0.858398c0 11.1436 -8.8584 20.8574 -20.2861 20.8574c-11.4287 0 -20 -9.71484 -20 -20.8574v-32.5703\\nc0 -11.1436 8.57129 -21.1426 20 -21.1426c11.4277 0 20.2861 9.71484 20.2861 21.1426v32.5703zM245.715 -0.858398c0 11.1436 -8.57227 20.8574 -20 20.8574c-11.4287 0 -20.2861 -9.71484 -20.2861 -20.8574v-32.5703c0 -11.1436 8.85742 -21.1426 20.2861 -21.1426\\nc11.4277 0 20 10 20 21.1426v32.5703zM295.428 -0.858398c0 11.1436 -8.85645 20.8574 -20.2852 20.8574s-20.2852 -9.71484 -20.2852 -20.8574v-32.5703c0 -11.1436 8.85645 -21.1426 20.2852 -21.1426s20.2852 9.71484 20.2852 21.1426v32.5703zM345.143 -0.858398\\nc0 11.1436 -8.85645 20.8574 -20.2852 20.8574s-20.2861 -9.71484 -20.2861 -20.8574v-32.5703c0 -11.1436 8.85742 -21.1426 20.2861 -21.1426s20.2852 10 20.2852 21.1426v32.5703zM421.714 162c-30.8564 -59.1416 -90.2852 -102.572 -158.571 -102.572\\nc-96.5703 0 -160.57 84.5723 -160.57 176.572c0 16.8574 2 33.4287 6 49.7139c-20 -33.7148 -29.7139 -72.5723 -29.7139 -111.429c0 -60.2861 24.8564 -121.715 71.4287 -160.857c5.14258 9.71387 14.8564 16.2861 26 16.2861c10 0 19.4277 -5.71387 24.5713 -14.2861\\nc5.42871 8.57129 14.5703 14.2861 24.8574 14.2861c10 0 19.4277 -5.71387 24.5713 -14.2861c5.42871 8.57129 14.8564 14.2861 24.8574 14.2861c10 0 19.4287 -5.71387 24.8574 -14.2861c5.14258 8.57129 14.5713 14.2861 24.5723 14.2861\\nc10.8564 0 20.8564 -6.57227 25.7139 -16c43.4268 36.2861 68.5693 92 71.4258 148.286zM432.286 261.714c0 53.7139 -34.5713 105.714 -92.5723 105.714c-30.2852 0 -58.5713 -15.1426 -78.8564 -36.8564c-19.9951 -66.3828 -27.4473 -136.571 41.4287 -136.571\\nc28.8047 0 97.3564 28.5381 84.2861 -36.8574c28.8564 26 45.7139 65.7148 45.7139 104.571z\\\" />\\n    <glyph glyph-name=\\\"google-plus\\\" unicode=\\\"&#xf2b3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM177.3 68c71.2998 0 118.8 50.4004 118.8 121.2c0 7.09961 -0.599609 13.8994 -1.89941 20.7002h-116.9v-42.6006h70.1006\\nc-5.2002 -34.2002 -37.5 -53.2998 -70.1006 -53.2998c-43 0 -77.2002 35.5 -77.2002 78.0996c0 42.6006 34.3008 78.1006 77.2002 78.1006c18.1006 0 36.2002 -6.2002 49.4004 -19.1006l33.5996 32.6006c-22.8994 21.2998 -51.7002 32.2998 -83 32.2998\\nc-68.7998 0 -124 -55.5 -124 -124s55.2002 -124 124 -124zM407.5 174.2h35.2002v35.5h-35.2002v35.5h-35.5v-35.5h-35.5v-35.5h35.5v-35.5h35.5v35.5z\\\" />\\n    <glyph glyph-name=\\\"font-awesome\\\" unicode=\\\"&#xf2b4;\\\" \\nd=\\\"M397.8 416c27.5 0 50.2002 -22.7002 50.2002 -50.2002v-347.6c0 -27.5 -22.7002 -50.2002 -50.2002 -50.2002h-347.6c-27.5 0 -50.2002 22.7002 -50.2002 50.2002v347.6c0 27.5 22.7002 50.2002 50.2002 50.2002h347.6zM352.4 131.7h0.0996094v140.3\\nc0 4.2002 -4.2002 7.7998 -9 7.7998c-6 0 -31.0996 -16.0996 -53.7998 -16.0996c-4.7002 0 -8.90039 0.599609 -13.1006 2.39941c-20.2998 7.7002 -38.1992 13.7002 -60.8994 13.7002c-20.9004 0 -43 -6.5 -61.5 -14.2998\\nc-1.7998 -1.2002 -3.60059 -1.7998 -5.40039 -2.40039v18.5c8.2998 6 13.1006 15.5 13.1006 26.3008c0 18.5996 -15 33.5 -33.5 33.5c-18.6006 0 -33.5 -15 -33.5 -33.5c0 -10.8008 5.2998 -20.3008 13.0996 -26.3008v-218.6c0 -11.2998 9 -20.2998 20.2998 -20.2998\\nc8.90039 0 16.7002 5.89941 19.1006 14.2998v1.2002c0.599609 1.2002 0.599609 3 0.599609 4.7998v45.4004c1.2002 0.599609 2.40039 0.599609 3.59961 1.19922c19.7002 8.90039 44.2002 17.3008 67.5 17.3008c32.3008 0 44.8008 -16.7002 71.7002 -16.7002\\nc19.2002 0 37.1006 6.5 53.7998 13.7002c4.2002 1.7998 7.80078 3.59961 7.80078 7.7998z\\\" />\\n    <glyph glyph-name=\\\"linode\\\" unicode=\\\"&#xf2b8;\\\" \\nd=\\\"M437.4 221.7c0.599609 -2 -8.80078 -66.2998 -9.7002 -72.7998c0 -0.900391 -0.5 -1.7002 -1.10059 -2l-54.5996 -43.7002c-1.09961 -0.900391 -2.59961 -0.900391 -3.7002 0l-20.2998 14l-2.2998 -33.4004c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998\\nl-66.8994 -53.4004c-1.10059 -0.899414 -2.90039 -0.899414 -4 0l-28 23.7002l2 -46c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998l-83.6992 -66.9004c-0.600586 -0.299805 -1.10059 -0.599609 -1.7002 -0.599609c-0.900391 0.299805 -1.7002 0.299805 -2.2998 0.900391\\nl-65.1006 69.0996c-1.5 1.40039 -15.5 72 -16.8994 79.0996c-0.300781 1.10059 0.5 2.5 1.39941 3.10059l17.4004 10.5996c-3.40039 3.2002 -26.5 23.4004 -27.1006 26.2998l-20.5996 100.301c-0.299805 1.09961 0.299805 2.5 1.7002 3.39941l26.8994 12.9004\\nc-4.59961 3.5 -37.6992 27.5 -38.5996 30.8994l-27.4004 133.101c-0.299805 1.7002 0.600586 3.09961 2 3.7002l123.7 38.5996c0.600586 0 1.40039 0 2.2998 -0.299805l90.6006 -43.7002c0.799805 -0.599609 1.7002 -1.7002 1.7002 -2.59961l5.69922 -132.301\\nc0 -1.19922 -0.599609 -2.2998 -1.69922 -2.89941l-33.7002 -17.4004l36 -24.2998c0.799805 -0.299805 1.39941 -1.40039 1.39941 -2.2998l1.40039 -35.1006l34.5996 21.2002c0.800781 0.600586 2.2002 0.600586 3.10059 0l24 -16l0.899414 31.4004\\nc0 0.899414 0.5 2 1.40039 2.59961l58.9004 36c1.09961 0.600586 2.19922 0.600586 3.09961 0l70 -38.5996c0.5 -0.600586 1.09961 -1.10059 1.40039 -2zM232.6 216.9l-100.6 -57.2002l14 -96.6006l90.5996 61.2002zM224.9 396.9l-120.9 -46.6006l19.7002 -134.8\\nl106.6 55.4004zM44 274.9l73.0996 -57.2002l-19.3994 132.899l-79.7002 49.4004zM74.5996 127.1l64.8008 -60.7998l-13.7002 93.4004l-70 58.2998zM98.9004 9.40039l57.6992 -61.2002l-9.69922 67.3994l-61.7002 60.9004zM163.4 -55.0996l78.1992 62.2998l-3.09961 70\\nl-85.7002 -61.4004zM245.4 60l27.0996 -22.9004l-0.599609 68.3008l-29.4004 22.5996c0 -2.2998 1.2002 -6.2998 -1.09961 -8l-22.3008 -14.9004l24.3008 -20c2.89941 -2.19922 2 -21.6992 2 -25.0996zM339.7 85.4004l4.2002 66.8994l-65.7002 -46.8994l0.599609 -68.6006z\\nM367.4 111.1l5.7998 66.6006l-64.6006 40.5996l-0.599609 -30l41.2002 -27.2002c0.799805 -0.599609 1.39941 -1.69922 1.09961 -2.59961l-2 -34zM422 150.9l8.5 63.3994l-51.0996 -36.5996l-5.7002 -65.1006z\\\" />\\n    <glyph glyph-name=\\\"quora\\\" unicode=\\\"&#xf2c4;\\\" \\nd=\\\"M440.5 61.2998c1.7998 -18 -7.2002 -93.2998 -89 -93.2998c-49.5 0 -75.5 28.7002 -95.2002 62.2998c-117.7 -32.5996 -249 54.9004 -249 189c0 117 98 196.7 197.7 196.7c101.8 0 198.5 -79.2002 198.4 -196.7c0 -65.5 -30.5 -118.8 -74.7002 -153\\nc14.2002 -21.5996 29 -35.7998 49.5 -35.7998c22.5 0 31.5 17.2998 33 30.7998h29.2998zM297 118.8c11.2998 24.9004 16.7998 58.7002 16.7002 100.5c0 104.2 -32.5 157.7 -108.7 157.7c-75 0 -107.5 -53.5 -107.5 -157.9c0 -103.699 32.5 -156.699 107.5 -156.699\\nc12 0 22.7002 1.19922 32.7002 4.19922c-15.5 30.5 -33.7002 61.3008 -69.2002 61.3008c-6.7998 0 -13.5996 -1 -19.7998 -4l-12.2002 24.2998c14.7002 12.7998 38.5 22.7998 69 22.7998c47.7998 0 72 -23 91.5 -52.2002z\\\" />\\n    <glyph glyph-name=\\\"free-code-camp\\\" unicode=\\\"&#xf2c5;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M97.2197 351.79c-43.2197 -41.6201 -64.9697 -92.5898 -64.8193 -154.021c0.15918 -68 23.0293 -122.67 67.4795 -165c9.33984 -8.34961 13.2002 -14.9199 13.2002 -20.5498c0 -2.75 -1.90039 -5.62012 -3.81055 -8.37988\\nc-1.92676 -1.89453 -5.67676 -3.61426 -8.36914 -3.83984c-10.2803 0 -24.6807 12.1396 -43.4707 35.79c-36.5898 44.8701 -53.1992 94.3398 -54.0596 161.87s20.3096 113.34 61.79 160.6c14.9199 16.9004 27.3594 25.6904 35.8398 25.6904\\nc2.56152 -0.0585938 6.32031 -1.33105 8.38965 -2.83984c1.91016 -1.91016 3.83008 -4.66016 3.83008 -7.41992c0 -4.78027 -5.63965 -11.25 -16 -21.9004zM239.47 27.9297c0.580078 -0.370117 0.910156 -0.549805 0.910156 -0.549805zM333.26 27.3799l0.169922 0.129883\\nc-0.189453 -0.129883 -0.259766 -0.179688 -0.169922 -0.129883zM336.39 185.56c16.2305 -4.14941 24.04 24.04 30.0303 30.0508c84.71 -110.101 -27.5098 -184.45 -33 -188.101c3.86035 3.04004 44.3301 49.7705 21.5801 76.5498\\nc-1 1.03027 -67.2998 -20.0596 -54.8398 53.54c8.30957 48.6807 -7.60059 71.1309 -7.60059 71.1309c-17.9697 -37.29 -32.5 -53.8604 -43.5 -72.1602c-56.9492 -92.9404 -16.2793 -124.29 -9.5498 -128.641c-10.54 6.5 -108.27 70.8799 -34 175.23\\nc78.3701 110.189 62.8301 159.57 62.8301 159.57c118.46 -94.2803 51.8105 -173.021 68.0498 -177.171zM510.88 358.31c41.4404 -47.3096 62.6699 -93.1592 61.75 -160.649s-17.4697 -117.021 -54.0596 -161.87c-18.79 -23.6602 -33.1904 -35.79 -43.4707 -35.79\\nc-2.69238 0.231445 -6.44141 1.95605 -8.36914 3.84961c-1.91016 2.76074 -3.81055 5.63086 -3.81055 8.38086c0.0205078 5.62988 3.86035 12.1992 13.2002 20.5498c44.4795 42.3701 67.3203 97 67.4795 165c0.180664 61.4697 -21.5898 112.45 -64.8193 154.06\\nc-10.4004 10.6406 -16 17.1201 -16 21.9004c0 2.75977 1.91992 5.50977 3.83008 7.41992c2.06934 1.50977 5.82812 2.78125 8.38965 2.83984c8.51953 0 21 -8.79004 35.8799 -25.6904z\\\" />\\n    <glyph glyph-name=\\\"telegram\\\" unicode=\\\"&#xf2c6;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM369.8 270.1c3.60059 16.8008 -6.09961 23.5 -17.2002 19.5l-239.1 -92.1992c-16.4004 -6.40039 -16.0996 -15.5 -2.7998 -19.7002l61.2002 -19.1006l142 89.4004\\nc6.59961 4.40039 12.6992 1.90039 7.69922 -2.5l-114.899 -103.8l-4.40039 -63.1006c6.40039 0 9.2002 2.80078 12.5 6.10059l29.9004 28.7998l62 -45.7002c11.2998 -6.39941 19.3994 -3.09961 22.3994 10.5z\\\" />\\n    <glyph glyph-name=\\\"bandcamp\\\" unicode=\\\"&#xf2d5;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM296.2 113.9l84.7002 156.1h-181l-84.7002 -156.1h181z\\\" />\\n    <glyph glyph-name=\\\"grav\\\" unicode=\\\"&#xf2d6;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M301.1 236c4.40039 -4.40039 4.40039 -11.9004 0 -16.2998l-9.69922 -9.7002c-4.40039 -4.7002 -11.9004 -4.7002 -16.6006 0l-10.5 10.5c-4.39941 4.7002 -4.39941 11.9004 0 16.5996l9.7002 9.7002c4.40039 4.40039 11.9004 4.40039 16.5996 0zM270.9 255.7\\nc-2.7002 -2.7998 -7.40039 -2.7998 -10.5 0c-2.80078 3 -2.80078 7.7002 0 10.5c3 3 7.69922 3 10.5 0c3 -2.7002 3 -7.5 0 -10.5zM244.9 250.4c2.7998 3 7.5 3 10.5 0c2.7998 -2.7002 2.7998 -7.40039 0 -10.2002c-3 -3 -7.7002 -3 -10.5 0c-3 2.7002 -3 7.39941 0 10.2002\\nzM317.4 263.7c-19.9004 14.3994 -33.8008 43.2002 -11.9004 68.0996c21.5996 24.9004 40.7002 17.2002 59.7998 -0.799805c11.9004 -11.2998 29.2998 -24.9004 17.2002 -48.2002c-12.5 -23.5 -45.0996 -33.2002 -65.0996 -19.0996zM365.1 308.2\\nc-8.89941 10 -23.2998 -6.90039 -15.5 -16.1006c7.40039 -9 32.1006 -2.39941 15.5 16.1006zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM437.8 149.4c2.5 16.0996 -20.2002 16.5996 -25.2002 25.6992\\nc-13.5996 24.1006 -27.6992 36.8008 -54.5 30.4004c11.6006 8 23.5 6.09961 23.5 6.09961c0.300781 6.40039 0 13 -9.39941 24.9004c3.89941 12.5 0.299805 22.4004 0.299805 22.4004c15.5 8.59961 26.7998 24.3994 29.0996 43.1992\\nc3.60059 31 -18.7998 59.2002 -49.7998 62.8008c-22.0996 2.5 -43.7002 -7.7002 -54.2998 -25.7002c-23.2002 -40.1006 1.40039 -70.9004 22.4004 -81.4004c-14.4004 1.40039 -34.3008 11.9004 -40.1006 34.2998c-6.59961 25.7002 2.7998 49.8008 8.90039 61.4004\\nc0 0 -4.40039 5.7998 -8 8.90039c0 0 -13.7998 0 -24.6006 -5.30078c11.9004 15.2002 25.2002 14.4004 25.2002 14.4004c0 6.40039 -0.599609 14.9004 -3.59961 21.5996c-5.40039 11 -23.7998 12.9004 -31.7002 -2.7998c0.0996094 0.200195 0.299805 0.400391 0.400391 0.5\\nc-5 -11.8994 -1.10059 -55.8994 16.8994 -87.2002c-2.5 -1.39941 -9.09961 -6.09961 -13 -10c-21.5996 -9.69922 -56.2002 -60.2998 -56.2002 -60.2998c-28.1992 -10.7998 -77.1992 -50.8994 -70.5996 -79.7002c0.299805 -3 1.40039 -5.5 3 -7.5\\nc-2.7998 -2.19922 -5.5 -5 -8.2998 -8.2998c-11.9004 -13.7998 -5.2998 -35.2002 17.7002 -24.3994c15.7998 7.19922 29.5996 20.1992 36.2998 30.3994c0 0 -5.5 5 -16.2998 4.40039c27.6992 6.59961 34.2998 9.39941 46.1992 9.09961c8 -3.89941 8 34.2998 8 34.2998\\nc0 14.7002 -2.19922 31 -11.0996 41.5c12.5 -12.1992 29.0996 -32.6992 28 -60.5996c-0.799805 -18.2998 -15.2002 -23 -15.2002 -23c-9.09961 -16.5996 -43.2002 -65.9004 -30.3994 -106c0 0 -9.7002 14.9004 -10.2002 22.0996\\nc-17.4004 -19.3994 -46.5 -52.2998 -24.6006 -64.5c26.6006 -14.6992 108.801 88.6006 126.2 142.301c34.6006 20.7998 55.4004 47.2998 63.9004 65c22 -43.5 95.2998 -94.5 101.1 -59z\\\" />\\n    <glyph glyph-name=\\\"etsy\\\" unicode=\\\"&#xf2d7;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 100c-1.75 -10.75 -13.75 -110 -15.5 -132c-117.879 4.29883 -219.895 4.74316 -368.5 0v25.5c45.457 8.94824 60.627 8.01855 61 35.25c1.79297 72.3223 3.52441 244.143 0 322c-1.0293 28.46 -12.1299 26.7646 -61 36v25.5\\nc73.8857 -2.3584 255.933 -8.55078 362.999 3.75c-3.5 -38.25 -7.75 -126.5 -7.75 -126.5h-23.249c-11.0527 42.835 -18.7588 90.5 -54.75 90.5h-137c-10.25 0 -10.75 -3.5 -10.75 -9.75v-163.75c58 -0.5 88.5 2.5 88.5 2.5c29.7695 0.951172 27.5596 8.50195 40.75 65.251\\nh25.75c-4.40723 -101.351 -3.91016 -61.8291 -1.75 -160.25h-25.75c-9.15527 40.0859 -9.06543 61.0449 -39.501 61.5c0 0 -21.5 2 -88 2v-139c0 -26 14.25 -38.25 44.25 -38.25h89.251c63.6357 0 66.5645 24.9961 98.751 99.75h22.249v-0.000976562z\\\" />\\n    <glyph glyph-name=\\\"imdb\\\" unicode=\\\"&#xf2d8;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM21.2998 218.8h-0.299805c0.0996094 0.100586 0.200195 0.299805 0.299805 0.400391v-0.400391zM97 128.2v127.8h-33v-127.8h33z\\nM210.2 128.2v127.8h-43l-7.60059 -59.9004c-2.69922 20 -5.39941 40.1006 -8.69922 59.9004h-42.8008v-127.8h29v84.5l12.2002 -84.5h20.6006l11.5996 86.3994v-86.3994h28.7002zM221.6 128.2c86.1006 -0.100586 75 -6 75 82.5c0 8.09961 0.300781 16.7998 -1.39941 24.3994\\nc-4.2998 22.5 -31.4004 20.9004 -49 20.9004h-24.6006v-127.8zM382.5 157.4v36c0 17.2998 -0.799805 30.0996 -22.2002 30.0996c-8.89941 0 -14.8994 -2.7002 -20.8994 -9.2002v41.7002h-31.7002v-127.8h29.7998l1.90039 8.09961\\nc5.69922 -6.7998 11.8994 -9.7998 20.8994 -9.7998c19.7998 0 22.2002 15.2002 22.2002 30.9004zM265 218.1v-49.2998c0 -9.7002 1.90039 -18.7002 -10.2998 -18.3994v83.6992c11.8994 0 10.2998 -6.2998 10.2998 -16zM350.5 192v-32.7002\\nc0 -5.39941 1.59961 -14.3994 -6.2002 -14.3994c-1.59961 0 -3 0.799805 -3.7998 2.39941c-2.2002 5.10059 -1.09961 44.1006 -1.09961 44.7002c0 3.7998 -1.10059 12.7002 4.89941 12.7002c7.2998 0 6.2002 -7.2998 6.2002 -12.7002z\\\" />\\n    <glyph glyph-name=\\\"ravelry\\\" unicode=\\\"&#xf2d9;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M407.4 386.5c72.6992 -37.9004 112 -117.2 103.3 -199.5c-1.7002 -16.7002 -4.40039 -36.2002 -9.7998 -52.2002c-22.2002 -65.7002 -52.9004 -108.6 -123.101 -147.7c-6.39941 -4.39941 -13.2998 -8.59961 -20.2002 -10.7998\\nc-12.5 -4.39941 -26.0996 -5.39941 -40.0996 -3.89941c-5.90039 -0.5 -11.7998 -0.700195 -18 -0.700195c-93.7002 0 -173 64 -196.9 151.399c-0.699219 0 -1.5 0.200195 -2.19922 0.200195c-5.60059 -44.2998 27.0996 -104.1 27.0996 -104.1s2 -3 13.2998 -20.2002\\nc-62.7998 33.2002 -64.5 131.2 -64.5 131.2c-15 5.59961 -67.2002 23.3994 -76.2998 37.8994c0 0 40.9004 -22.3994 76.2002 -27c-0.200195 0.300781 0.5 7.90039 0.5 7.90039c2.2002 30 12.5 53.4004 23.0996 71.4004c6.90039 33.7998 22.1006 64.2998 43.2998 89.8994\\nc3.7002 15.2998 9.60059 33.5 19.9004 52.7002c4.40039 8.40039 8.59961 13.7998 19.9004 19c74.8994 35 148.699 43.9004 224.5 4.5zM138.8 284.8c-7.59961 -11.2998 -13.7002 -23.5996 -18.8994 -36.3994c8.09961 8.59961 14.7998 14.1992 18.1992 16.6992\\nc-0.5 7.40039 0.700195 19.7002 0.700195 19.7002zM107.6 162.9c0.700195 -9.60059 2 -18.9004 4.2002 -28.1006l41.4004 -6.89941c-14.1006 42.0996 -15.7998 90.0996 -15.7998 90.0996c-16.5 -16 -25.4004 -37.9004 -29.8008 -55.0996zM115.5 120.1\\nc21.4004 -69.6992 81 -122.8 154.1 -134.399c-1 0.299805 -1.69922 0.5 -2.69922 1c0 0 -81 47.5 -108.301 124.3c-9.09961 1.5 -28.2998 5.90039 -43.0996 9.09961zM386 3.90039c63 32 106.6 98 106.8 174c0 107.399 -86.5996 194.5 -193 194.5\\nc-49.2998 0 -94.0996 -18.7002 -128.3 -49.5c-5.2002 -10.1006 -8.59961 -22.9004 -11.0996 -39.4004c52.5 44.5996 146 33.5 146 33.5c23.3994 -1 20.5996 -21.7002 20.3994 -28.0996c-85.2002 7.19922 -127 -17.2002 -168.399 -52.4004\\nc0 0 8.09961 -78.7998 26.7998 -110.8c107.8 -4.90039 189.8 53.7002 189.8 53.7002c10.2998 7.39941 19.4004 8.09961 21.4004 -4.7002c1.5 -10.4004 2.19922 -24.4004 -9.60059 -29.7998c-36 -16.8008 -75.5996 -27.3008 -115 -33\\nc-25.5996 -3.7002 -39.7998 -4.60059 -78 -3.90039c36.4004 -84.7002 127.5 -107.8 127.5 -107.8c28.5 -4.7002 50.2002 -1 64.7002 3.7002z\\\" />\\n    <glyph glyph-name=\\\"sellcast\\\" unicode=\\\"&#xf2da;\\\" \\nd=\\\"M353.4 416c52.0996 0 94.6992 -42.5996 94.6992 -94.5996v-258.801c0 -52 -42.5996 -94.5996 -94.6992 -94.5996h-258.7c-52.1006 0 -94.7002 42.5996 -94.7002 94.7002v258.7c0 52 42.5996 94.5996 94.7002 94.5996h258.7zM303.4 99.5996\\nc27.8994 48.2002 11.1992 110.5 -37.2002 138.5c-18.6006 10.8008 0.0996094 -0.0996094 -18.5 10.7002c-25 14.4004 -46.2002 -23.2998 -21.6006 -37.5c18 -10.2002 0.800781 -0.399414 18.6006 -10.5996c27.5996 -16 37.2002 -51.7998 21.2998 -79.4004\\nc-16 -27.5996 -51.7998 -37.2002 -79.4004 -21.2998c-18.5996 10.7998 0.100586 -0.0996094 -18.5 10.7002c-10.2998 6 -23.5996 2.39941 -29.5 -7.90039l-15.6992 -27.2002c-12.6006 -21.7998 19.3994 -53 42.2998 -13.1992c48.2998 -27.7002 110.3 -11 138.2 37.1992z\\nM325.2 308.4c14.2998 24.7998 -23.4004 46.3994 -37.7002 21.5l-4.7998 -8.40039c-48.2998 27.7002 -110.3 11 -138.2 -37.2002c-27.7998 -48.2998 -11.0996 -110.6 37.0996 -138.399c18.6006 -10.8008 -0.0996094 0.0996094 18.5 -10.7002\\nc25 -14.4004 46.2002 23.2998 21.6006 37.5c-0.100586 0 -18.6006 10.5996 -18.6006 10.5996c-27.5996 16 -37.2998 51.7998 -21.2998 79.4004c16 27.5996 51.7998 37.2002 79.4004 21.2998c18.5996 -10.7998 -0.100586 0.0996094 18.5 -10.7002\\nc10.2002 -5.09961 20 -2.89941 26.5 3.60059c2.7002 2.69922 2 2 19 31.5z\\\" />\\n    <glyph glyph-name=\\\"superpowers\\\" unicode=\\\"&#xf2dd;\\\" \\nd=\\\"M448 416l-87.2002 -87c39.7002 -38.7002 61.2002 -92.7002 57.7002 -148.2c-5.40039 -93 -76.9004 -167.3 -168.7 -179.8c-83.2998 -11 -166.5 -22 -249.8 -33l86.7998 86.7998c-39.7998 38.7002 -61.0996 92.7002 -57.7998 148.2c5.7002 93.2998 77 167.5 169 180\\nc83.2002 11 166.7 22 250 33zM368.3 183.7c4.40039 80 -56.7998 146.3 -136.1 151c-78.7002 4.7998 -148.5 -55.2998 -153 -134.5c-4.40039 -80 56.7998 -146.3 136.3 -151c78.7998 -4.7002 148.6 55 152.8 134.5z\\\" />\\n    <glyph glyph-name=\\\"wpexplorer\\\" unicode=\\\"&#xf2de;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M512 192c0 -141.2 -114.7 -256 -256 -256c-141.2 0 -256 114.7 -256 256s114.7 256 256 256s256 -114.7 256 -256zM480 192c0 123.2 -100.3 224 -224 224c-123.5 0 -224 -100.5 -224 -224s100.5 -224 224 -224s224 100.5 224 224zM160.9 323.4l86.8994 -37.1006\\nl-37.0996 -86.8994l-86.9004 37.0996zM270.9 154.3l46.5996 -94h-14.5996l-50 100l-48.9004 -100h-14l51.0996 106.9l-22.2998 9.39941l6 14l68.6006 -29.0996l-6 -14.2998zM259.1 270.6l68.6006 -29.3994l-29.4004 -68.2998l-68.2998 29.0996zM339.4 227.7\\nl54.5996 -23.1006l-23.4004 -54.2998l-54.2998 23.1006z\\\" />\\n    <glyph glyph-name=\\\"meetup\\\" unicode=\\\"&#xf2e0;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M99 33.7002c1.09961 -5.7002 -2.2998 -11.1006 -8 -12.2998c-5.40039 -1.10059 -10.9004 2.2998 -12 8c-1.09961 5.39941 2.2998 11.0996 7.7002 12.2998c5.39941 1.2002 11.0996 -2.2998 12.2998 -8zM242.1 -37.7002c6.60059 4.60059 15.5 2.7998 19.7002 -3.7002\\nc4.60059 -6.59961 2.90039 -15.3994 -3.39941 -20c-6.60059 -4.59961 -15.4004 -2.89941 -20 3.7002c-4.30078 6.60059 -2.60059 15.4004 3.69922 20zM156.1 424.6c-6.2998 -1.5 -12.5 2.5 -13.8994 9.10059c-1.2002 6.2998 2.7998 12.5996 9.09961 14\\nc6.2998 1.5 12.6006 -2.5 13.7002 -9.10059c1.40039 -6.2998 -2.59961 -12.5996 -8.90039 -14zM34.4004 221.7c10 -7.10059 12.5996 -20.7998 5.69922 -31.2002c-6.89941 -10.2998 -20.5996 -12.7998 -30.5996 -5.7002c-10 6.90039 -12.5996 20.9004 -5.7002 30.9004\\nc6.90039 10.2998 20.6006 12.8994 30.6006 6zM306.4 392.6c-10.3008 -6.2998 -23.7002 -2.89941 -29.7002 7.40039c-6.2998 10.5996 -2.90039 24.2998 7.39941 30.5996c10.3008 6.30078 23.7002 2.90039 30 -7.69922c6 -10.3008 2.90039 -24 -7.69922 -30.3008zM115.3 334.6\\nc-7.5 -5.19922 -18 -3.5 -23.0996 4.30078c-5.10059 7.69922 -3.40039 18.2998 4.2998 23.6992c7.40039 5.10059 18 3.40039 23.0996 -4.2998c5.10059 -7.7002 3.40039 -18.2998 -4.2998 -23.7002zM487.6 178.6c7.40039 1.40039 14.8008 -3.5 16.3008 -10.8994\\nc1.69922 -7.7002 -3.2002 -15.2002 -10.6006 -16.6006c-7.39941 -1.69922 -14.8994 3.2002 -16.2998 10.6006c-1.7002 7.7998 3.2002 15.2002 10.5996 16.8994zM527.3 235.4c1.40039 -5.7002 -2.2998 -11.1006 -7.7002 -12.6006\\nc-5.69922 -1.09961 -11.1992 2.60059 -12.2998 8c-1.09961 5.7002 2.2998 11.5 8 12.6006c5.40039 1.09961 10.9004 -2.30078 12 -8zM447 309.1c8.2998 6 20 3.80078 25.7002 -4.89941c5.7002 -8.60059 3.7002 -20.2998 -4.60059 -26.2998\\nc-8.59961 -5.7002 -20.2998 -3.7002 -26 4.89941c-5.69922 8.60059 -3.69922 20.2998 4.90039 26.2998zM440.7 169.7c26.2998 -43.1006 15.0996 -100 -26.2998 -129.101c-17.4004 -12.2998 -37.1006 -17.6992 -56.9004 -17.0996\\nc-12 -47.0996 -69.4004 -64.5996 -105.1 -32.5996c-1.10059 -0.900391 -2.60059 -1.7002 -3.7002 -2.90039c-39.1006 -27.0996 -92.2998 -17.4004 -119.4 22.2998c-9.7002 14.2998 -14.5996 30.6006 -15.0996 46.9004c-65.4004 10.8994 -90 94 -41.1006 139.7\\nc-28.2998 46.8994 0.600586 107.399 53.4004 114.899c25.0996 66.2002 107.6 97.6006 163.6 54.2002c67.4004 22.2998 136.301 -29.4004 130.9 -101.1c41.0996 -12.6006 52.7998 -66.9004 19.7002 -95.2002zM370.7 95.4004\\nc-3.10059 20.5996 -40.9004 4.59961 -43.1006 27.0996c-3.09961 32 43.7002 101.1 40 128c-3.39941 24 -19.3994 29.0996 -33.3994 29.4004c-13.4004 0.299805 -16.9004 -2 -21.4004 -4.60059c-2.89941 -1.7002 -6.59961 -4.89941 -11.7002 0.299805\\nc-6.2998 6 -11.0996 11.7002 -19.3994 12.9004c-12.2998 2 -17.7002 -2 -26.6006 -9.7002c-3.39941 -2.89941 -12 -12.8994 -20 -9.09961c-3.39941 1.7002 -15.3994 7.7002 -24 11.3994c-16.2998 7.10059 -40 -4.59961 -48.5996 -20\\nc-12.9004 -22.8994 -38 -113.1 -41.7002 -125.1c-8.59961 -26.5996 10.9004 -48.5996 36.9004 -47.0996c11.0996 0.599609 18.2998 4.59961 25.3994 17.3994c4 7.40039 41.7002 107.7 44.6006 112.601c2 3.39941 8.89941 8 14.5996 5.09961\\nc5.7002 -3.09961 6.90039 -9.40039 6 -15.0996c-1.09961 -9.7002 -28 -70.9004 -28.8994 -77.7002c-3.40039 -22.9004 26.8994 -26.6006 38.5996 -4c3.7002 7.09961 45.7002 92.5996 49.4004 98.2998c4.2998 6.2998 7.39941 8.2998 11.6992 8\\nc3.10059 0 8.30078 -0.900391 7.10059 -10.9004c-1.40039 -9.39941 -35.1006 -72.2998 -38.9004 -87.6992c-4.59961 -20.6006 6.60059 -41.4004 24.9004 -50.6006c11.3994 -5.7002 62.5 -15.7002 58.5 11.1006zM376.4 3.09961c10.5996 7.5 24.8994 4.60059 32.2998 -6\\nc7.09961 -10.5996 4.59961 -25.1992 -6 -32.5996c-10.6006 -7.09961 -24.9004 -4.59961 -32 6c-7.2002 10.5996 -4.60059 25.2002 5.7002 32.5996z\\\" />\\n    <glyph glyph-name=\\\"font-awesome-alt\\\" unicode=\\\"&#xf35c;\\\" \\nd=\\\"M339.3 276.8c5.40039 0 9.5 -3 7.7002 -7.09961v-134.4c0 -4.2002 -3 -6 -7.2002 -7.7998c-15.5996 -7.09961 -33.5 -13.7002 -52 -13.7002c-26.2998 0 -38.2002 16.1006 -69.2998 16.1006c-22.7002 0 -46 -8.30078 -65.7002 -16.7002\\nc-0.599609 -0.600586 -1.7998 -1.2002 -3 -1.2002v-44.2002c0 -1.7998 0 -3 -0.599609 -4.7998v-1.2998c-2.40039 -7.7002 -9.5 -13.7002 -18.5 -13.7002c-10.7002 0 -19.7002 8.90039 -19.7002 19.7002v212.1c-7.7002 6 -12.5 15.5 -12.5 25.7002\\nc0 18 14.2998 32.2998 32.2998 32.2998s32.2998 -14.3994 32.2998 -32.2998c0 -10.7998 -4.69922 -19.7002 -12.5 -25.7002v-17.8994c1.2002 0.599609 3 1.19922 4.80078 1.7998c17.8994 7.09961 39.3994 13.7002 59.6992 13.7002\\nc22.1006 0 39.4004 -5.90039 59.1006 -13.7002c4.09961 -1.7998 8.2998 -2.40039 12.5 -2.40039c22.7002 0 46.5996 15.5 52.5996 15.5zM397.8 416c27.5 0 50.2002 -22.7002 50.2002 -50.2002v-347.6c0 -27.5 -22.7002 -50.2002 -50.2002 -50.2002h-347.6\\nc-27.5 0 -50.2002 22.7002 -50.2002 50.2002v347.6c0 27.5 22.7002 50.2002 50.2002 50.2002h347.6zM412.1 18.2998v347.601c0 7.69922 -6.5 14.2998 -14.2998 14.2998v-0.100586h-347.6c-7.7002 0 -14.2998 -6.5 -14.2998 -14.2998v-347.5\\nc0 -7.7002 6.5 -14.2998 14.2998 -14.2998h347.6c7.7002 0 14.2998 6.5 14.2998 14.2998z\\\" />\\n    <glyph glyph-name=\\\"accessible-icon\\\" unicode=\\\"&#xf368;\\\" \\nd=\\\"M423.9 192.2l-12.9004 -157.3c-3.2998 -40.7002 -63.9004 -35.1006 -60.5996 4.89941l10 122.5l-41.1006 -2.2998c10.1006 -20.7002 15.7998 -43.9004 15.7998 -68.5c0 -41.2002 -16.0996 -78.7002 -42.2998 -106.5l-39.2998 39.2998\\nc57.9004 63.7002 13.0996 167.2 -74 167.2c-25.9004 0 -49.5 -9.90039 -67.2002 -26l-39.2998 39.2998c22 20.7002 50.0996 35.1006 81.4004 40.2002l75.2998 85.7002l-42.6006 24.7998l-51.5996 -46c-30 -26.7998 -70.5996 18.5 -40.5 45.4004l68 60.6992\\nc9.7998 8.80078 24.0996 10.2002 35.5 3.60059c0 0 139.3 -80.9004 139.5 -81.1006c16.2002 -10.0996 20.7002 -36 6.09961 -52.5996l-58.3994 -66.5l106.1 5.90039c18.5 1.09961 33.6006 -14.4004 32.1006 -32.7002zM359 346.2\\nc-28.0996 0 -50.9004 22.7998 -50.9004 50.8994c0 28.1006 22.8008 50.9004 50.9004 50.9004s50.9004 -22.7998 50.9004 -50.9004c0 -28.0996 -22.8008 -50.8994 -50.9004 -50.8994zM179.6 -8.5c20.8008 0 40.1006 6.40039 56.1006 17.2998l39.7002 -39.7002\\nc-100.7 -78.8994 -251.4 -8.19922 -251.4 122.5c0 36.1006 12.4004 69.4004 33.2002 95.7002l39.7002 -39.7002c-44.7002 -65.5 2.09961 -156.1 82.6992 -156.1z\\\" />\\n    <glyph glyph-name=\\\"accusoft\\\" unicode=\\\"&#xf369;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M322.1 196c-1.69922 -1.59961 -89.5996 -82.5 -90.1992 -83.2998l-92.6006 -33.7998c-4.7998 -2 -7.59961 -3.7002 -7 -8.90039c0.200195 -1.5 0.600586 -22.5996 1 -27.7002c-0.700195 -0.5 -0.0996094 0 -0.599609 -0.599609c0 0 -113.7 -36.6006 -114.5 -36.6006\\nc-14.1006 -5.09961 -22.7002 -8.2998 -15.7002 1.7002c1.2998 1.7998 234.4 231.601 243.4 240.9c13 13.5 25 15.0996 25 15.0996l51.1992 -65.7998v-1zM482.2 75.9004c-5.7002 6.89941 -232.2 297.1 -239.9 306.6c-13.7002 17.2002 0 16.7998 19.2002 16.9004\\nc9.7002 0.0996094 106.3 0.599609 116.5 0.599609c24.0996 0.0996094 28.7002 -0.599609 38.4004 -12.7998c2.09961 -2.7002 205.1 -245.8 207.199 -248.3c5.5 -6.7002 15.2002 -19.1006 7.2002 -23.4004c-2.39941 -1.2998 -114.6 -47.7002 -117.8 -48.9004\\nc-10.0996 -4 -17.5 -6.7998 -30.7998 9.30078zM634.9 74.2998c6 -1.39941 7.09961 -4.2002 1.69922 -8.2002c-2 -1.39941 -123.699 -76.5996 -125.8 -77.7998c-15.0996 -8.7998 -38 -1.59961 -53.5996 1.7002c-7.10059 1.5 -305.3 68.2998 -308 69.0996\\nc-2.60059 0.900391 -4.40039 1 -4.60059 3.5c-0.299805 4 6 5.60059 11.1006 7.60059c5 1.89941 145.3 52.5996 150.2 54.7002c4.7998 2.09961 11.2998 2.69922 14.3994 2.89941c4.90039 0.299805 59.9004 -8.39941 65.2998 -9.2998l57.1006 -74\\nc9.7998 -11.4004 20.7002 -21.9004 36.7002 -14.5996c2.5 1.19922 117.5 51.5996 117.5 51.5996c13.3994 -2.5 35.6992 -6.90039 38 -7.2002z\\\" />\\n    <glyph glyph-name=\\\"adversal\\\" unicode=\\\"&#xf36a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M482.1 416c24.5 0 29.9004 -5.59961 29.9004 -30.2002v-388.1c0 -24.5 -5.5 -29.7002 -29.9004 -29.7002h-453.399c-22.9004 0 -28.7002 5.59961 -28.7002 28.9004v390.199c0 23 5.7998 28.9004 28.7002 28.9004h453.399zM178.4 227.7\\nc9.39941 -7.2002 12.3994 -17.1006 11.2998 -27.2998c-1.7998 -19.1006 -75.7998 -11.4004 -114 -30.9004c-27.2002 -13.9004 -42.7002 -41.7002 -39.6006 -71c6.7002 -64.7002 89.6006 -79.7002 147 -43.2998c4.60059 3.2002 8.30078 4.89941 11.9004 1\\nc2.09961 -2.60059 2 -4 3.90039 -6.2002c7.2998 -9.59961 38.1992 -14.0996 46.5996 -7.40039c3.09961 2.80078 4.59961 6.30078 2.7002 10.7002c-13.6006 30.5 -6.60059 63 -9.2998 88.7998c0 69.3008 6.39941 111.7 -34.5 128.5\\nc-41.9004 17.4004 -84.2002 16.6006 -125.301 -4.7998c-16.2998 -9 -53.6992 -52.8994 -24.8994 -64.2998c5.2998 -2.2998 12.7998 -4 22.5 -5.5c8.2002 -1.2002 13.2002 -2.7998 17.5 8.2998c12.0996 32.1006 56.7002 43.6006 84.2002 23.4004zM465.1 5.7002\\nc0 14.2998 -9.7998 9.89941 -16.5996 9.89941c-132.3 0.400391 -264.5 0.400391 -396.8 0c-6.60059 0 -16.7002 4.80078 -17.1006 -9.09961c-0.399414 -15.5 10.4004 -10.7002 17.8008 -10.7002h394.899c6.7002 0 17.7998 -5.2002 17.7998 9.90039zM468.9 346.2\\nc0 0.200195 0 0.299805 0.0996094 0.5c0 9.89941 -3.5 15.0996 -13.5996 14.2998c-3.10059 -0.400391 -6.60059 0 -9.7002 0c-26.1006 0 -26 0 -26 -26.2002v-71c-79.2002 45.6006 -124.3 -6.59961 -136.101 -30.5c-16.3994 -32.8994 -21.7998 -66.5996 -15.6992 -100\\nc16.2998 -92.2998 91 -114.899 144.399 -85.2002c4.60059 2.80078 6.60059 7.5 12.4004 -1.19922c8.59961 -12.7002 23.7002 -5.2002 36.0996 -5.60059c7.40039 0 8.10059 8.2002 8.10059 13.9004v291zM417.4 113.9c-19.5 -47.6006 -72.9004 -43.3008 -90 -5.2002\\nc-15.1006 33.2998 -15.5 68.2002 0.399414 101.5c16.2998 34.0996 59.7002 35.7002 81.5 4.7998c20.6006 -28.7998 14.9004 -84.5996 8.10059 -101.1zM122.6 78.5996c-7.5 1.30078 -33 3.30078 -33.6992 27.8008c-0.400391 13.8994 7.7998 23 19.7998 25.7998\\nc24.3994 5.89941 49.2998 9.89941 73.7002 14.7002c8.89941 2 7.39941 -4.40039 7.7998 -9.5c1.39941 -33 -26.1006 -59.2002 -67.6006 -58.8008z\\\" />\\n    <glyph glyph-name=\\\"affiliatetheme\\\" unicode=\\\"&#xf36b;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M159.7 210.6c-51.2998 -70.8994 -116.601 -110.8 -145.7 -89.1992c-29.2002 21.6992 -11.2002 96.5996 40.2002 167.5c51.2998 70.8994 116.6 110.8 145.7 89.1992c29.0996 -21.5996 11.0996 -96.5996 -40.2002 -167.5zM510.9 267.9\\nc0.699219 -8.2002 1.09961 -16.5 1 -25c0 -151.801 -121.601 -274.9 -271.601 -274.9c-82.8994 0 -157.2 37.5996 -207 96.9004c71.2998 19.3994 130.5 68.3994 164.101 133.199c7.69922 -32.5996 24 -58.5996 49 -73.7998c72.5996 -44.0996 190.699 20.2002 264.5 143.601z\\n\\\" />\\n    <glyph glyph-name=\\\"algolia\\\" unicode=\\\"&#xf36c;\\\" \\nd=\\\"M229.3 265.4c49.2002 0 89.2002 -39.9004 89.2002 -89.2002s-39.9004 -89.2002 -89.2002 -89.2002s-89.2002 39.9004 -89.2002 89.2002s39.9004 89.2002 89.2002 89.2002zM292 208.8c1.2998 0.700195 1.7998 2.40039 1.09961 3.7002\\nc-12.1992 21.4004 -34.8994 36.0996 -61.0996 37.0996c-1.40039 0.100586 -2.7002 -1.09961 -2.7002 -2.59961v-66.5c0 -1.90039 2 -3.2002 3.7998 -2.2998zM389.1 416c32.5 0 58.9004 -26.4004 58.8008 -58.9004v-330.199c0 -32.5 -26.3008 -58.9004 -58.9004 -58.9004\\nh-330.1c-32.5 0 -58.9004 26.4004 -58.9004 59v330.1c0 32.5 26.4004 58.9004 58.9004 58.9004h330.199zM186.5 331.3h0.0996094v-15.7998c0 -1.7002 1.7002 -3 3.40039 -2.5c12.7002 3.7002 25.9004 5.5 39.4004 5.5c13 0 25.7998 -1.7002 38.0996 -5.09961\\nc1.59961 -0.5 3.2998 0.699219 3.2998 2.5v15.3994c0 10.7998 -8.7002 19.5 -19.5 19.5h-45.2998c-10.7998 0 -19.5 -8.7002 -19.5 -19.5zM102.1 294.3c-7.59961 -7.59961 -7.59961 -19.8994 0 -27.3994l7.7002 -7.7002c1.10059 -1.2002 3 -1 4 0.299805\\nc4.40039 6.09961 9.40039 12 14.7998 17.4004c5.5 5.5 11.4004 10.3994 17.6006 14.8994c1.2998 1 1.39941 2.90039 0.299805 4l-7.7002 7.7002c-7.59961 7.59961 -19.8994 7.59961 -27.5 0zM229.3 49.5c69.9004 0 126.601 56.7998 126.601 126.6\\nc0 70 -56.6006 126.601 -126.601 126.601c-69.8994 0 -126.6 -56.7002 -126.6 -126.601c0 -69.8994 56.5996 -126.6 126.6 -126.6z\\\" />\\n    <glyph glyph-name=\\\"amilia\\\" unicode=\\\"&#xf36d;\\\" \\nd=\\\"M240.1 416c134.101 0 191.9 -55.7002 192 -136v-296.6c0 -3 -1 -8.10059 -5.09961 -9.10059c-4 -1 -57.2998 -0.700195 -66.5 -0.700195s-56.7998 1 -59.9004 2c-4 0.900391 -6.09961 6.10059 -6.09961 9.10059v25.3994\\nc-39.5996 -21.3994 -105.5 -42.0996 -153.3 -42.0996c-109.7 0 -124.9 85.7002 -124.9 104s-5.09961 95.5 30.4004 111.8c31.5 13.2002 156.3 36.5 243.7 47.7998v38.5c0 44.7002 -1 73.1006 -58.9004 73.1006c-55.7998 0 -119.8 -25.4004 -152.3 -47.7002\\nc-6.10059 -4.09961 -16.2002 -4.09961 -20.2998 6.09961c-5.10059 12.2002 -9.10059 34.5 -10.2002 39.6006c-1.90039 10.2002 2.09961 16.2998 7.2002 19.3994c52.6992 38.5 122.3 55.4004 184.199 55.4004zM290.3 68v106.7c-44.7002 -4.10059 -95.5 -20.2998 -119.8 -33.5\\nc-21.2998 -10.2002 -18.2998 -40.7002 -18.2998 -52.9004c0.0996094 -11.2002 6.2002 -44.7002 59 -44.7002c30.3994 0 57.7002 11.2002 79.0996 24.4004z\\\" />\\n    <glyph glyph-name=\\\"angrycreative\\\" unicode=\\\"&#xf36e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 209.8l-3.2002 -28.2002l-34.5 -2.2998l-2 -18.0996l34.5 2.2998l-3.2002 -28.2002l-34.3994 -2.2002l-2.2998 -20.0996l34.3994 2.2002l-3 -26.1006l-64.7002 -4.09961l12.7002 113.2l-47.2998 -115.4l-31.9004 -2l-23.7998 117.8l30.2998 2l13.6006 -79.3994\\nl31.7002 82.3994zM426.8 76.5l12.7998 120l28.4004 1.90039l-12.9004 -120.101zM162 59.9004l-19.4004 36l-3.5 -37.4004l-28.1992 -1.7002l2.69922 29.1006c-11 -18 -32 -34.3008 -56.8994 -35.8008c-32.7998 -2 -59.7002 20.9004 -56.4004 58.2002\\nc2.60059 29.2998 26.7002 62.7998 67.5 65.4004c37.7002 2.39941 47.6006 -23.2002 51.2998 -28.7998l2.80078 30.7998l38.8994 2.5c20.1006 1.2998 38.7002 -3.7002 42.5 -23.7002l2.60059 26.5996l64.7998 4.2002l-2.7002 -27.8994l-36.4004 -2.40039l-1.69922 -17.9004\\nl36.3994 2.30078l-2.7002 -27.9004l-36.3994 -2.2998l-1.90039 -19.9004l36.2998 2.2998l-2.09961 -20.7998l55 117.2l23.7998 1.59961l32.1006 -110.6l8.89941 85.5996l-22.2998 -1.39941l2.90039 27.8994l75 4.90039l-3 -28l-24.3008 -1.59961l-9.69922 -91.9004\\nl-58 -3.7002l-4.30078 15.6006l-39.3994 -2.5l-8 -16.3008zM117.7 130.1l-26.4004 -1.69922c-6.7002 12.3994 -14.3994 16.5996 -26.2998 15.7998c-19 -1.2002 -33.2998 -17.5 -34.5996 -33.2998c-1.40039 -16 7.2998 -32.5 28.6992 -31.2002\\nc12.8008 0.799805 21.3008 8.59961 28.9004 18.8994l27 1.7002zM173.8 137.8c1.2002 12.9004 -7.59961 13.6006 -26.0996 12.4004l-2.7002 -28.5c14.2002 0.899414 27.5 2.09961 28.7998 16.0996zM194.9 67l5.7998 60c-5 -13.5 -14.7002 -21.0996 -27.9004 -26.5996z\\nM330.3 112l-7.89941 37.7998l-15.8008 -39.2998zM160.2 186.6l-4.2998 17.5l-39.6006 -2.59961l-8.09961 -18.2002l-31.9004 -2.09961l57 121.899l23.9004 1.60059l30.7002 -102l9.89941 104.7l27 1.7998l37.7998 -63.6006l6.5 66.6006l28.5 1.89941l-4 -41.1992\\nc7.40039 13.5 22.9004 44.6992 63.6006 47.5c40.5 2.7998 52.3994 -29.3008 53.3994 -30.3008l3.30078 32l39.2998 2.7002c12.7002 0.900391 27.7998 -0.299805 36.2998 -9.7002l-4.40039 11.9004l32.2002 2.2002l12.9004 -43.2002l23 45.7002l31 2.2002l-43.6006 -78.4004\\nl-4.7998 -44.2998l-28.3994 -1.90039l4.7998 44.2998l-15.7998 43c1 -22.2998 -9.2002 -40.0996 -32 -49.5996l25.1992 -38.7998l-36.3994 -2.40039l-19.2002 36.7998l-4 -38.2998l-28.4004 -1.89941l3.30078 31.5c-6.7002 -9.30078 -19.7002 -35.4004 -59.6006 -38\\nc-26.2002 -1.7002 -45.5996 10.2998 -55.3994 39.1992l-4 -40.2998l-25 -1.59961l-37.6006 63.2998l-6.2998 -66.2002zM436.8 268.7c10.2002 0.700195 17.5 2.09961 21.6006 4.2998c4.5 2.40039 7 6.40039 7.59961 12.0996\\nc0.599609 5.30078 -0.599609 8.80078 -3.40039 10.4004c-3.59961 2.09961 -10.5996 2.7998 -22.8994 2zM327.7 234c5.59961 -5.90039 12.7002 -8.5 21.2998 -7.90039c4.7002 0.300781 9.09961 1.80078 13.2998 4.10059c5.5 3 10.6006 8 15.1006 14.2998l-34.2002 -2.2998\\nl2.39941 23.8994l63.1006 4.30078l1.2002 12l-31.2002 -2.10059c-4.10059 3.7002 -7.7998 6.60059 -11.1006 8.10059c-4 1.69922 -8.09961 2.7998 -12.1992 2.5c-8 -0.5 -15.3008 -3.60059 -22 -9.2002c-7.7002 -6.40039 -12 -14.5 -12.9004 -24.4004\\nc-1.09961 -9.59961 1.40039 -17.2998 7.2002 -23.2998zM126.4 225.8l23.7998 1.60059l-8.2998 37.5996z\\\" />\\n    <glyph glyph-name=\\\"app-store\\\" unicode=\\\"&#xf36f;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M255.9 327.1l9.09961 15.7002c5.59961 9.7998 18.0996 13.1006 27.9004 7.5c9.7998 -5.59961 13.0996 -18.0996 7.5 -27.8994l-87.5 -151.5h63.2998c20.5 0 32 -24.1006 23.0996 -40.8008h-185.5c-11.2998 0 -20.3994 9.10059 -20.3994 20.4004\\ns9.09961 20.4004 20.3994 20.4004h52l66.6006 115.399l-20.8008 36.1006c-5.59961 9.7998 -2.2998 22.1992 7.5 27.8994c9.80078 5.60059 22.2002 2.2998 27.9004 -7.5zM177.2 109.1l-19.6006 -34c-5.59961 -9.7998 -18.0996 -13.0996 -27.8994 -7.5\\nc-9.7998 5.60059 -13.1006 18.1006 -7.5 27.9004l14.5996 25.2002c16.4004 5.09961 29.7998 1.2002 40.4004 -11.6006zM346.1 170.8h53.1006c11.2998 0 20.3994 -9.09961 20.3994 -20.3994c0 -11.3008 -9.09961 -20.4004 -20.3994 -20.4004h-29.5l19.8994 -34.5\\nc5.60059 -9.7998 2.30078 -22.2002 -7.5 -27.9004c-9.7998 -5.59961 -22.1992 -2.2998 -27.8994 7.5c-33.5 58.1006 -58.7002 101.601 -75.4004 130.601c-17.0996 29.5 -4.89941 59.0996 7.2002 69.0996c13.4004 -23 33.4004 -57.7002 60.0996 -104zM256 440\\nc137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM472 192c0 119.9 -97.2998 216 -216 216c-119.9 0 -216 -97.2998 -216 -216c0 -119.9 97.2998 -216 216 -216c119.9 0 216 97.2998 216 216z\\\" />\\n    <glyph glyph-name=\\\"app-store-ios\\\" unicode=\\\"&#xf370;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM127 63.5l19.2998 33.2998c-10.2998 12.5 -23.5 16.2998 -39.5996 11.4004l-14.2998 -24.7002\\nc-5.5 -9.5 -2.30078 -21.7998 7.2998 -27.2998c9.5 -5.5 21.7998 -2.2998 27.2998 7.2998zM265.9 117.4c8.7998 16.2998 -2.5 40 -22.7002 40h-62.1006l85.8008 148.6c5.5 9.5 2.2998 21.7998 -7.30078 27.2998c-9.5 5.5 -21.7998 2.2998 -27.2998 -7.2998\\nl-8.89941 -15.4004l-8.90039 15.4004c-5.5 9.5 -17.7002 12.7998 -27.2998 7.2998c-9.5 -5.5 -12.7998 -17.7002 -7.2998 -27.2998l20.5 -35.4004l-65.4004 -113.199h-51c-11 0 -20 -9 -20 -20s9 -20 20 -20h181.9zM364 117.4c11 0 20 8.89941 20 20c0 11 -9 20 -20 20h-52\\nc-26.2002 45.2998 -45.7998 79.2998 -58.9004 102c-11.8994 -9.80078 -23.7998 -38.8008 -7.09961 -67.8008c16.5 -28.3994 41.0996 -71.1992 74 -128.1c5.5 -9.5 17.7002 -12.7998 27.2998 -7.2998c9.5 5.5 12.7998 17.7002 7.2998 27.2998l-19.5996 33.9004h29z\\\" />\\n    <glyph glyph-name=\\\"apper\\\" unicode=\\\"&#xf371;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M42.0996 208.9c22.2002 0 29 -2.80078 33.5 -14.6006h0.800781v22.9004c0 11.2998 -4.80078 15.3994 -17.9004 15.3994c-11.2998 0 -14.4004 -2.5 -15.0996 -12.7998h-38.6006c0.299805 13.9004 1.5 19.1006 5.7998 24.4004\\nc7.30078 8.7998 18.9004 11.7998 46.1006 11.7998c33 0 47.0996 -5 53.8994 -18.9004c2 -4.2998 4 -15.5996 4 -23.6992v-76.3008h-38.2998l1.2998 19.1006h-1c-5.2998 -15.6006 -13.5996 -20.4004 -35.5 -20.4004c-30.2998 0 -41.0996 10.1006 -41.0996 37.2998\\nc0 25.2002 12.2998 35.8008 42.0996 35.8008zM59.2002 160.8c13.0996 0 16.8994 3 16.8994 13.4004c0 9.09961 -4.2998 11.5996 -19.5996 11.5996c-13.0996 0 -17.9004 -3 -17.9004 -12.0996c-0.0996094 -10.4004 3.7002 -12.9004 20.6006 -12.9004zM137 255.7h38.2998\\nl-1.5 -20.6006h0.799805c9.10059 17.1006 15.9004 20.9004 37.5 20.9004c14.4004 0 24.7002 -3 31.5 -9.09961c9.80078 -8.60059 12.8008 -20.4004 12.8008 -48.1006c0 -30 -3 -43.0996 -12.1006 -52.8994c-6.7998 -7.30078 -16.3994 -10.1006 -33.2002 -10.1006\\nc-20.3994 0 -29.1992 5.5 -33.7998 21.2002h-0.799805v-70.2998h-39.5v169zM217.9 195c0 27.5 -3.30078 32.5 -20.7002 32.5c-16.9004 0 -20.7002 -5 -20.7002 -28.7002c0 -28 3.5 -33.5 21.2002 -33.5c16.3994 0 20.2002 5.60059 20.2002 29.7002zM275.8 255.7h38.2998\\nl-1.5 -20.6006h0.800781c9.09961 17.1006 15.8994 20.9004 37.5 20.9004c14.3994 0 24.6992 -3 31.5 -9.09961c9.7998 -8.60059 12.7998 -20.4004 12.7998 -48.1006c0 -30 -3 -43.0996 -12.1006 -52.8994c-6.7998 -7.30078 -16.3994 -10.1006 -33.2998 -10.1006\\nc-20.3994 0 -29.2002 5.5 -33.7998 21.2002h-0.799805v-70.2998h-39.5v169h0.0996094zM356.7 195c0 27.5 -3.2998 32.5 -20.7002 32.5c-16.9004 0 -20.7002 -5 -20.7002 -28.7002c0 -28 3.5 -33.5 21.2002 -33.5c16.4004 0 20.2002 5.60059 20.2002 29.7002zM410.5 198.8\\nc0 25.4004 3.2998 37.7998 12.2998 45.7998c8.7998 8.10059 22.2002 11.3008 45.1006 11.3008c42.7998 0 55.6992 -12.8008 55.6992 -55.7002v-11.1006h-75.2998c-0.299805 -2 -0.299805 -4 -0.299805 -4.7998c0 -16.8994 4.5 -21.8994 20.0996 -21.8994\\nc13.9004 0 17.9004 3 17.9004 13.8994h37.5v-2.2998c0 -9.7998 -2.5 -18.9004 -6.7998 -24.7002c-7.2998 -9.7998 -19.6006 -13.5996 -44.2998 -13.5996c-27.5 0 -41.6006 3.2998 -50.6006 12.2998c-8.5 8.5 -11.2998 21.2998 -11.2998 50.7998zM486.9 210.4\\nc-0.300781 1.7998 -0.300781 3.2998 -0.300781 3.7998c0 12.2998 -3.2998 14.5996 -19.5996 14.5996c-14.4004 0 -17.0996 -3 -18.0996 -15.0996l-0.300781 -3.2998h38.3008zM542.5 255.7h38.2998l-1.7998 -19.9004h0.700195\\nc6.7998 14.9004 14.3994 20.2002 29.7002 20.2002c10.7998 0 19.0996 -3.2998 23.3994 -9.2998c5.2998 -7.2998 6.7998 -14.4004 6.7998 -34c0 -1.5 0 -5 0.200195 -9.2998h-35c0.299805 1.7998 0.299805 3.2998 0.299805 4c0 15.3994 -2 19.3994 -10.2998 19.3994\\nc-6.2998 0 -10.7998 -3.2998 -13.0996 -9.2998c-1 -3 -1 -4.2998 -1 -12.2998v-68h-38.2998v118.5h0.0996094z\\\" />\\n    <glyph glyph-name=\\\"asymmetrik\\\" unicode=\\\"&#xf372;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M517.5 138.8c-13.9004 -14.2998 -30.4004 -27.7002 -48.9004 -39.7998l73.4004 -110.4h-101.6l-45.9004 71.8008c-17.5996 -7.2002 -35.9004 -13.4004 -54.5 -18.7002l32.5996 -53.1006h-135.5l22.8008 37.1006c-23.3008 -2.7002 -46.4004 -3.7002 -68.6006 -2.7002\\nl-22 -34.4004h-101.6l34.5 51.7002c-45 17.9004 -68.9004 47.9004 -68.4004 83c0.299805 25.7998 14 54.2998 41.7002 82.9004c38.9004 40 96.5 72.5996 161.6 92.8994c-22.2998 -8.09961 -42 -18.5 -62 -30.6992c-31.1992 -16.2002 -58.6992 -35.9004 -79.5 -58.1006\\nc-57.3994 -61 -46.5 -121.8 19.1006 -151.2l190.2 285.5l150.899 -226.399c13 9.5 24.7998 19.7998 35 30.5996c98 104.2 53.7002 207.9 -98.7998 231.7c-68.2998 10.5996 -146.8 5.7002 -221.3 -14.7998c-60.1006 -10 -118.7 -31.7002 -170.7 -58.2002\\nc118.1 66.9004 277.9 102.1 406.6 82.4004c110 -16.8008 170.2 -69.5 169.4 -135c-0.400391 -36.1006 -19.7002 -76.1006 -58.5 -116.101zM329.9 58.2998c18.3994 5.2998 36.5 11.7998 53.6992 19.2002l-78.6992 123l-101.9 -159.3\\nc22.5 -0.700195 45.7998 0.899414 69.2002 4.39941l32.7002 53.3008z\\\" />\\n    <glyph glyph-name=\\\"audible\\\" unicode=\\\"&#xf373;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 248.1v-54l-320 -200l-320 199.9v54l320 -200zM445.5 176.1c-70.7998 94.4004 -200.5 110.7 -290.2 36.3008c-2.59961 -2.2002 -5.2002 -4.40039 -7.7002 -6.7002h-0.299805c37.1006 55.7002 100.601 92.3994 172.601 92.3994s135.5 -36.7998 172.699 -92.5996z\\nM225.4 157.3c21 29.6006 55.5 49 94.3994 49c39.2002 0 73.9004 -19.5996 94.7998 -49.5l-45.3994 -28.3994c-21.2002 29.1992 -52 47.5996 -86.4004 47.5996c-20.8994 0 -40.5 -6.7998 -57.3994 -18.7002zM103.6 286.9c-11.5 -9.10059 -24.2998 -22.1006 -34.1992 -32.6006\\nc53.8994 82.1006 147 135.601 250.5 135.601c104.899 0 197.199 -54 250.699 -135.7l-48.7998 -30.4004l-0.700195 1c-99.2998 138.5 -285.699 166.4 -417.5 62.1006zM570.6 254.2z\\\" />\\n    <glyph glyph-name=\\\"avianex\\\" unicode=\\\"&#xf374;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M453.1 416c39 0 64.8008 -31.2002 57.8008 -69.7998l-56.7002 -308.5c-7.10059 -38.5 -44.4004 -69.7002 -83.2998 -69.7002h-312c-39 0 -64.8008 31.2002 -57.7002 69.7002l56.5996 308.6c7.10059 38.5 44.4004 69.7002 83.2998 69.7002h312zM394.9 68.7002\\nl6.2998 7.89941l-94.9004 119.4l-4.5 7.2998c19.7998 14.2002 33.5 24.2998 35.2998 25.6006c7.90039 6.59961 6.30078 20.7998 -2.69922 31.2998c-9.2002 10.7998 -23 14.3994 -30.7002 7.89941c0 0 -14.4004 -13.5996 -33.7998 -32.3994l-4.90039 4.5l-103.1 112.399\\nl-8.90039 -4.7998l-18.7998 -28.8994l68.7998 -99.8008l20.5 -29.5996c-12 -12.2998 -23.5 -24.4004 -32.7998 -34.9004l-58 31.1006l-15.7002 -15.4004l52.4004 -48.0996l40.5996 -61l17.9004 12.7002l-22.1006 64.1992c12.5 7.60059 27 17.1006 41.7002 27.1006\\nl115.4 -110z\\\" />\\n    <glyph glyph-name=\\\"aws\\\" unicode=\\\"&#xf375;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M180.41 244.99c-0.719727 -22.6504 10.5996 -32.6807 10.8799 -39.0498c-0.238281 -2.31543 -2.0752 -5.12402 -4.09961 -6.27051l-12.8008 -8.95996c-1.39941 -0.981445 -3.92188 -1.8418 -5.62988 -1.91992c-0.429688 0.0195312 -8.18945 -1.83008 -20.4795 25.6104\\nc-13.0283 -16.2627 -40.5127 -29.4609 -61.3496 -29.4609c-0.347656 0 -0.913086 0.00488281 -1.26074 0.0107422c-16.2803 -0.890625 -60.4004 9.24023 -58.1299 56.21c-1.58984 38.2803 34.0596 62.0596 70.9297 60.0498\\nc7.10059 -0.0195312 21.6006 -0.370117 46.9902 -6.26953v15.6191c2.69043 26.46 -14.7002 46.9902 -44.8096 43.9102c-2.40039 -0.00976562 -19.4004 0.5 -45.8408 -10.1094c-7.35938 -3.37988 -8.2998 -2.82031 -10.75 -2.82031\\nc-7.40918 0 -4.35938 21.4795 -2.93945 24.2002c5.20996 6.39941 35.8604 18.3496 65.9395 18.1797c1.86523 0.165039 4.89844 0.298828 6.77148 0.298828c15.2451 0 37.1611 -7.875 48.9189 -17.5791c9.87305 -11.0439 17.8867 -32.0303 17.8867 -46.8438\\nc0 -1.52539 -0.0966797 -3.99609 -0.216797 -5.51562zM93.9902 212.6c32.4297 0.470703 46.1602 19.9707 49.29 30.4707c2.45996 10.0498 2.0498 16.4102 2.0498 27.3994c-9.66992 2.32031 -23.5898 4.85059 -39.5605 4.87012\\nc-15.1494 1.14062 -42.8193 -5.62988 -41.7393 -32.2598c-1.24023 -16.79 11.1201 -31.4004 29.96 -30.4805zM264.91 189.55c-7.86035 -0.719727 -11.5205 4.86035 -12.6797 10.3701l-49.8008 164.65c-0.969727 2.7793 -1.60938 5.64941 -1.91992 8.58008\\nc-0.0283203 0.189453 -0.0517578 0.5 -0.0517578 0.692383c0 2.18555 1.75195 4.22656 3.91211 4.55762h22.25c8.78027 0.879883 11.6396 -6.03027 12.5498 -10.3701l35.7197 -140.83l33.1602 140.83c0.530273 3.21973 2.94043 11.0693 12.7998 10.2393h17.1602\\nc2.16992 0.180664 11.1104 0.5 12.6807 -10.3691l33.4199 -142.631l36.8701 142.631c0.479492 2.17969 2.71973 11.3691 12.6797 10.3691h19.7197c0.850586 0.130859 6.15039 0.810547 5.25 -8.5791c-0.429688 -1.85059 3.41016 10.6592 -52.75 -169.9\\nc-1.14941 -5.50977 -4.82031 -11.0898 -12.6797 -10.3701h-18.6904c-10.9395 -1.15039 -12.5098 9.66016 -12.6797 10.75l-33.1602 137.13l-32.7803 -136.99c-0.15918 -1.08984 -1.72949 -11.8994 -12.6797 -10.75h-18.2998v-0.00976562zM538.39 183.92\\nc-5.87988 -0.00976562 -33.9199 0.299805 -57.3594 12.29c-4.31152 1.8252 -7.81055 7.10645 -7.81055 11.7891v0.121094v10.75c0 8.4502 6.2002 6.89941 8.83008 5.88965c10.04 -4.05957 16.4805 -7.13965 28.8105 -9.59961\\nc36.6494 -7.53027 52.7695 2.2998 56.7197 4.47949c13.1504 7.81055 14.1895 25.6807 5.25 34.9502c-10.4805 8.79004 -15.4805 9.12012 -53.1299 21c-4.64062 1.29004 -43.7002 13.6104 -43.79 52.3604c-0.610352 28.2402 25.0498 56.1797 69.5195 55.9502\\nc12.6699 0.00976562 46.4307 -4.13086 55.5703 -15.6201c1.34961 -2.08984 2.01953 -4.5498 1.91992 -7.04004v-10.1104c0 -4.43945 -1.62012 -6.66016 -4.87012 -6.66016c-7.70996 0.860352 -21.3896 11.1699 -49.1602 10.75\\nc-6.88965 0.360352 -39.8896 -0.910156 -38.4092 -24.9697c-0.430664 -18.96 26.6094 -26.0703 29.6992 -26.8896c36.46 -10.9707 48.6504 -12.79 63.1201 -29.5801c17.1406 -22.25 7.90039 -48.2998 4.35059 -55.4404\\nc-19.0801 -37.4902 -68.4199 -34.4395 -69.2607 -34.4199zM578.59 79.0596c-70.0303 -51.7197 -171.689 -79.25 -258.49 -79.25c-0.853516 -0.00488281 -2.23926 -0.00976562 -3.09277 -0.00976562c-99.5195 0 -240.271 54.0918 -314.177 120.74\\nc-6.53027 5.88965 -0.770508 13.96 7.16992 9.46973c81.1748 -46.4336 222.955 -84.1201 316.473 -84.1201h0.407227c69.4072 0.373047 177.64 22.5713 241.59 49.5508c11.7803 5 21.7705 -7.80078 10.1201 -16.3809zM607.78 112.35\\nc-8.95996 11.5205 -59.2803 5.38086 -81.8105 2.69043c-6.79004 -0.770508 -7.93945 5.12012 -1.79004 9.46973c40.0703 28.1699 105.88 20.1006 113.44 10.6299c7.5498 -9.46973 -2.0498 -75.4092 -39.5605 -106.909c-5.75977 -4.87012 -11.2695 -2.30078 -8.70996 4.09961\\nc8.44043 21.25 27.3906 68.4902 18.4307 80.0195z\\\" />\\n    <glyph glyph-name=\\\"bimobject\\\" unicode=\\\"&#xf378;\\\" \\nd=\\\"M416 416c17.5996 0 32 -14.4004 32 -32v-384c0 -17.5996 -14.4004 -32 -32 -32h-384c-17.5996 0 -32 14.4004 -32 32v384c0 17.5996 14.4004 32 32 32h384zM352 158.6h-0.0996094v35c0 49.4004 -11.4004 82.5 -103.801 82.5h-17.2998\\nc-30 0 -65.0996 -8.2998 -69.7002 -38.7998h-1.09961v74.7002h-64v-232h64v34.7998h0.900391c8 -23.8994 26.2998 -38.7998 70.3994 -38.7998h16.9004c92.3994 0 103.8 33.2002 103.8 82.5996zM288 187.5v-22.9004c0 -21.6992 -3.40039 -33.7998 -38.4004 -33.7998h-45.2998\\nc-28.8994 0 -44.0996 6.5 -44.0996 35.7002v19c0 29.2998 15.2002 35.7002 44.0996 35.7002h45.2998c35 0.200195 38.4004 -12 38.4004 -33.7002z\\\" />\\n    <glyph glyph-name=\\\"bitcoin\\\" unicode=\\\"&#xf379;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248zM362.349 227.33c4.9375 32.999 -20.1904 50.7393 -54.5498 62.5732l11.1465 44.7021l-27.2129 6.78027l-10.8516 -43.5234\\nc-7.1543 1.78223 -14.502 3.46387 -21.8027 5.12988l10.9287 43.8096l-27.1982 6.78125l-11.1523 -44.6855c-5.92188 1.34863 -11.7354 2.68164 -17.377 4.08398l0.0302734 0.139648l-37.5293 9.37012l-7.23926 -29.0625s20.1914 -4.62695 19.7646 -4.91309\\nc11.0225 -2.75098 13.0146 -10.0439 12.6807 -15.8242l-12.6963 -50.9258c0.759766 -0.193359 1.74414 -0.472656 2.8291 -0.90625c-0.907227 0.224609 -1.87598 0.472656 -2.87598 0.712891l-17.7959 -71.3379c-1.34961 -3.34863 -4.76758 -8.37012 -12.4717 -6.46484\\nc0.271484 -0.394531 -19.7793 4.9375 -19.7793 4.9375l-13.5107 -31.1475l35.4141 -8.82617c6.58887 -1.65137 13.0449 -3.37988 19.4004 -5.00684l-11.2617 -45.2129l27.1816 -6.78027l11.1533 44.7324c5.96875 -1.61719 15.6846 -4.13867 21.6865 -5.62695\\nl-11.1152 -44.5225l27.2139 -6.78125l11.2617 45.1279c46.4043 -8.78125 81.2988 -5.23926 95.9863 36.7266c11.8359 33.79 -0.589844 53.2812 -25.0049 65.9912c17.7803 4.09766 31.1748 15.792 34.7471 39.9492zM300.172 140.151\\nc-8.41016 -33.79 -65.3076 -15.5234 -83.7549 -10.9434l14.9443 59.8994c18.4453 -4.60352 77.5996 -13.7178 68.8105 -48.9561zM308.589 227.818c-7.67285 -30.7363 -55.0312 -15.1201 -70.3926 -11.292l13.5479 54.3262\\nc15.3633 -3.82715 64.8359 -10.9727 56.8447 -43.0342z\\\" />\\n    <glyph glyph-name=\\\"bity\\\" unicode=\\\"&#xf37a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M78.4004 380.8c95.3994 89.2002 246.1 91.2002 343.1 -3.7998c14.2998 -14.0996 -6.40039 -37.0996 -22.4004 -21.5c-84.7998 82.4004 -215.8 80.2998 -298.899 3.2002c-16.2998 -15.1006 -36.5 8.2998 -21.7998 22.0996zM177.3 -37.7998\\nc-128.7 38.2998 -201.899 170.7 -169.8 298.1c5.2998 21 35.2002 12.5 30.2002 -7.09961c-28.2998 -111.3 35.2998 -227.101 147.5 -261c21.3994 -6.40039 11.3994 -35.7002 -7.90039 -30zM325.4 -35.7998c-19.2002 -6.2998 -30 22.7002 -8.80078 29.7002\\nc106.101 35.5 167.4 145.699 143.2 253.399c-4.89941 21.7002 25.5 27.6006 30 7.90039c28.5 -124.101 -42.5 -250.8 -164.399 -291zM262.5 43.2002c0 -8.2002 -6.59961 -14.7998 -14.7998 -14.7998s-14.7998 6.59961 -14.7998 14.7998l0.199219 71.7998\\nc0 8.09961 6.60059 14.7998 14.8008 14.7998c8.19922 0 14.7998 -6.59961 14.7998 -14.7998zM333.5 312.2c0 21.7998 32.5 19.5996 32.5 0v-71.6006c0 -69.2998 -60.7002 -90.8994 -118 -90.0996c-57.2998 -0.799805 -118 20.7998 -118 90.0996v71.6006\\nc0 19.5996 32.5 21.7998 32.5 0c-1.40039 -88.2002 -7 -131.8 85.5 -132.5c90.2002 0.599609 87.5996 41.5996 85.5 132.5z\\\" />\\n    <glyph glyph-name=\\\"blackberry\\\" unicode=\\\"&#xf37b;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M166 331.1c0 -23.3994 -16.4004 -49.0996 -72.5 -49.0996h-70.0996l21 88.7998h67.7998c42.0996 0 53.7998 -23.2998 53.7998 -39.7002zM292.2 370.8c42.0996 0 53.7998 -23.2998 53.7002 -39.7002c0 -23.3994 -16.3008 -49.0996 -70.1006 -49.0996h-70.0996\\nl18.7002 88.7998h67.7998zM88.7998 239.9c42.1006 0 53.7998 -23.4004 53.7998 -39.7002c0 -25.7002 -16.3994 -49.1006 -72.5 -49.1006h-70.0996l21 88.8008h67.7998zM268.9 239.9c42 0 53.6992 -23.4004 53.6992 -39.7002c0 -25.7002 -16.2998 -49.1006 -70.0996 -49.1006\\nh-70.0996l18.6992 88.8008h67.8008zM458.2 293.7c42.0996 0 53.7998 -23.4004 53.7002 -39.7002c0 -25.7002 -16.3008 -49.0996 -70.1006 -49.0996h-70.0996l18.7002 88.7998h67.7998zM430.2 155.8c42.0996 0 53.7002 -23.3994 53.7002 -39.7002\\nc0 -25.6992 -14 -49.0996 -70.1006 -49.0996h-70.0996l18.7002 88.7998h67.7998zM240.8 102c42.1006 0 53.7998 -23.4004 53.7002 -39.7002c0 -23.3994 -14 -49.0996 -70.0996 -49.0996h-70.1006l18.7002 88.7998h67.7998z\\\" />\\n    <glyph glyph-name=\\\"blogger\\\" unicode=\\\"&#xf37c;\\\" \\nd=\\\"M162.4 252c4.7998 4.90039 6.19922 5.09961 36.3994 5.09961c27.2002 0 28.1006 -0.0996094 32.1006 -2.09961c5.7998 -2.90039 8.2998 -7 8.2998 -13.5996c0 -5.90039 -2.40039 -10 -7.60059 -13.4004c-2.7998 -1.7998 -4.5 -1.90039 -31.0996 -2.09961\\nc-16.4004 -0.100586 -29.5 0.199219 -31.5 0.799805c-10.2998 2.89941 -14.0996 17.7002 -6.59961 25.2998zM223.8 157.5c55.4004 0 55.1006 0 60.4004 -4.7002c7.39941 -7 5.89941 -19.2998 -3.10059 -24.3994l-9.19922 -1.5l-47.9004 -0.600586\\nc-42.2002 -0.5 -54.0996 0.200195 -56.2998 1.2002c-4.40039 1.90039 -8.5 7.2998 -9.2002 12c-0.599609 4.5 1.59961 10.7998 5.09961 13.9004c4.40039 3.89941 6.30078 4.09961 60.2002 4.09961zM447.2 27.4004c-3.5 -28.4004 -23 -50.4004 -51.1006 -57.5\\nc-7.19922 -1.80078 -9.69922 -1.90039 -172.899 -1.80078c-157.8 0 -165.9 0.100586 -172 1.80078c-8.40039 2.19922 -15.6006 5.5 -22.2998 10c-5.60059 3.7998 -13.9004 11.7998 -17 16.3994c-3.80078 5.60059 -8.2002 15.2998 -10 22\\nc-1.80078 6.7002 -1.90039 9.40039 -1.90039 173.4c0 163.1 0 166.6 1.7998 173.7c6.2998 24.6992 25.9004 43.5996 51.2002 49.1992c7.2998 1.60059 332.1 1.90039 340 0.300781c21.2002 -4.30078 37.9004 -17.1006 47.5996 -36.4004c7.7002 -15.2998 7 1.5 7.30078 -180.6\\nc0.199219 -115.801 0 -164.5 -0.700195 -170.5zM361.8 212.6c-1.09961 5 -4.2002 9.60059 -7.7002 11.5c-1.09961 0.600586 -8 1.30078 -15.5 1.7002c-12.3994 0.600586 -13.7998 0.799805 -17.7998 3.10059c-6.2002 3.59961 -7.89941 7.59961 -8 18.2998\\nc0 20.3994 -8.5 39.3994 -25.2998 56.5c-12 12.2002 -25.2998 20.5 -40.5996 25.0996c-3.60059 1.10059 -11.8008 1.5 -39.2002 1.7998c-42.9004 0.5 -52.5 -0.399414 -67.1006 -6.19922c-27 -10.7002 -46.2998 -33.4004 -53.3994 -62.4004\\nc-1.2998 -5.40039 -1.60059 -14.2002 -1.90039 -64.2998c-0.399414 -62.7998 0 -72.1006 4 -84.5c9.7002 -30.7002 37.1006 -53.4004 64.6006 -58.4004c9.19922 -1.7002 122.199 -2.09961 133.699 -0.5c20.1006 2.7002 35.9004 10.7998 50.7002 25.9004\\nc10.7002 10.8994 17.4004 22.7998 21.7998 38.5c3.2002 10.8994 2.90039 88.3994 1.7002 93.8994z\\\" />\\n    <glyph glyph-name=\\\"blogger-b\\\" unicode=\\\"&#xf37d;\\\" \\nd=\\\"M446.6 225.3c2 -8.89941 2.40039 -134.1 -2.5 -151.7c-7.09961 -25.2998 -17.8994 -44.3994 -35.1992 -62.0996c-23.9004 -24.4004 -49.4004 -37.5 -81.9004 -41.9004c-18.7002 -2.5 -201.2 -1.89941 -216 0.800781c-44.5 8 -88.7998 44.6992 -104.4 94.2998\\nc-6.2998 20.0996 -7 35 -6.39941 136.5c0.5 81 1 95.0996 3.09961 103.899c11.4004 46.8008 42.6006 83.4004 86.1006 100.601c23.5996 9.39941 39 10.7998 108.399 10c44.2002 -0.5 57.4004 -1.10059 63.2998 -2.90039c24.6006 -7.5 46.2002 -20.7998 65.5 -40.5\\nc27.1006 -27.5996 40.8008 -58.2998 40.9004 -91.2998c0.0996094 -17.2002 2.7998 -23.5996 12.9004 -29.5c6.39941 -3.7002 8.59961 -4.09961 28.6992 -5c12 -0.5 23.2002 -1.7002 25 -2.7002c5.7002 -3.09961 10.7002 -10.5 12.5 -18.5zM124.5 288.9\\nc-12.2002 -12.3008 -6 -36.1006 10.5996 -40.8008c3.10059 -0.799805 24.3008 -1.39941 50.8008 -1.19922c43 0.199219 45.6992 0.399414 50.2998 3.2998c8.5 5.39941 12.2998 12.0996 12.2998 21.5996c0 10.6006 -4.09961 17.2002 -13.4004 21.9004\\nc-6.39941 3.2998 -7.89941 3.39941 -51.7998 3.39941c-48.7998 0 -51 -0.299805 -58.7998 -8.19922zM316.3 89.0996c14.4004 8.2002 17 28.1006 4.90039 39.4004c-8.5 7.90039 -8 7.90039 -97.6006 7.7998c-87.0996 -0.0996094 -90.1992 -0.299805 -97.2998 -6.7002\\nc-5.59961 -5.09961 -9.2998 -15.0996 -8.2002 -22.3994c1.10059 -7.7002 7.80078 -16.2998 14.9004 -19.4004c3.59961 -1.59961 22.7998 -2.7998 90.9004 -2l77.5 0.900391z\\\" />\\n    <glyph glyph-name=\\\"buromobelexperte\\\" unicode=\\\"&#xf37f;\\\" \\nd=\\\"M0 416h128v-128h-128v128zM120 296v112h-112v-112h112zM160 416h128v-128h-128v128zM280 296v112h-112v-112h112zM320 416h128v-128h-128v128zM440 296v112h-112v-112h112zM0 256h128v-128h-128v128zM120 136v112h-112v-112h112zM160 256h128v-128h-128v128zM280 136v112\\nh-112v-112h112zM320 256h128v-128h-128v128zM440 136v112h-112v-112h112zM0 96h128v-128h-128v128zM120 -24v112h-112v-112h112zM160 96h128v-128h-128v128zM280 -24v112h-112v-112h112zM320 96h128v-128h-128v128z\\\" />\\n    <glyph glyph-name=\\\"centercode\\\" unicode=\\\"&#xf380;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M329.2 179.4c-3.7998 -35.2002 -35.4004 -60.6006 -70.6006 -56.8008c-35.1992 3.80078 -60.5996 35.4004 -56.7998 70.6006s35.4004 60.5996 70.6006 56.7998c35.0996 -3.7998 60.5996 -35.4004 56.7998 -70.5996zM243.4 -55.7002\\nc-146.7 7.7002 -251.601 138.2 -233.301 279.4c11.2002 86.5996 65.8008 156.899 139.101 192c161 77.0996 349.7 -37.4004 354.7 -216.601c4.09961 -147 -118.4 -262.199 -260.5 -254.8zM423.3 124.3c27.9004 118 -160.5 205.9 -237.2 234.2\\nc-57.5 -56.2998 -69.0996 -188.6 -33.7998 -344.4c68.7998 -15.7998 169.101 26.4004 271 110.2z\\\" />\\n    <glyph glyph-name=\\\"cloudscale\\\" unicode=\\\"&#xf383;\\\" \\nd=\\\"M318.1 294c6.2002 6.2998 15.8008 -3.09961 9.5 -9.59961l-75.1992 -88.8008c0.899414 -8.19922 -1.80078 -16.7998 -8.10059 -23.0996c-11.0996 -11 -28.8994 -11 -40 0c-11.0996 11.0996 -11.0996 29 0 40c6.2998 6.2998 14.7998 9 23.1006 8.09961l25.1992 20.4004\\nc-16.3994 15.2998 -38.3994 24.7002 -62.5996 24.7002c-50.7998 0 -94.5996 -41.4004 -92.5996 -97.4004c-1 6.2998 -1.40039 12.7998 -1.40039 19.4004c0 71.5 57.7998 132.3 129.4 132.3c31.7998 0 60.7998 -14.2998 83.2998 -33.5996zM234.3 182.5\\nc5.60059 5.5 5.60059 14.5996 0 20.2002c-5.59961 5.59961 -14.5996 5.59961 -20.2002 0c-5.59961 -5.60059 -5.59961 -14.6006 0 -20.2002c5.60059 -5.5 14.6006 -5.5 20.2002 0zM224 416c123.5 0 224 -100.5 224 -224s-100.5 -224 -224 -224s-224 100.5 -224 224\\ns100.5 224 224 224zM224 32c88.2002 0 160 71.7998 160 160s-71.7998 160 -160 160s-160 -71.7998 -160 -160s71.7998 -160 160 -160z\\\" />\\n    <glyph glyph-name=\\\"cloudsmith\\\" unicode=\\\"&#xf384;\\\" horiz-adv-x=\\\"332\\\" \\nd=\\\"M332.5 28.0996c0 -46.3994 -37.5996 -84.0996 -84 -84.0996s-84 37.7002 -84 84.0996c0 46.4004 37.5996 84 84 84s84 -37.5996 84 -84zM248.5 272c-46.4004 0 -80 -33.5996 -80 -80s-37.5996 -80 -84 -80s-84 33.5996 -84 80s37.5996 88 84 88s76 29.5996 76 76\\ns41.5996 84 88 84s80 -37.5996 80 -84s-33.5996 -84 -80 -84z\\\" />\\n    <glyph glyph-name=\\\"cloudversify\\\" unicode=\\\"&#xf385;\\\" horiz-adv-x=\\\"616\\\" \\nd=\\\"M148.6 144v-0.0996094h-48.8994c-6.40039 0 -11.7002 5.39941 -11.7002 11.7998v40.3994c0 7.60059 7 11.9004 10.7998 11.9004h46.7998v-6.59961c0 -10.7002 8.80078 -16.7002 19.5 -16.7002h20.2002c10.7998 0 19.5 8.7998 19.5 19.5v20.3994\\nc0 10.6006 -3.5 19.5 -15.2002 19.5c18.5 15.2002 37.2002 21.4004 45 24.1006c15 56.5 42 92.3994 99.3008 109.7c55.0996 16.5 153.5 3.09961 186.5 -85c73.8994 -22.6006 106.899 -92.6006 92.0996 -155.101c-13 -54.8994 -62.2998 -100.6 -131.5 -99.5\\nc-49.5996 -51.3994 -135.2 -48.8994 -186.4 -5.59961c-78.5996 -4.2002 -137.8 42.7998 -146 111.3zM376 136c8.7002 -54.0996 59.7002 -65.5 91.7998 -59.2002c39.1006 7.7002 70.5 37.5 79.7002 76.5c5.7998 24.4004 2.40039 50 -9.40039 72l-10.5 19.6006\\nc1.2002 -22.5 -12.5 -60.6006 -47.5 -76.9004c65.5 67.7002 2.10059 141.2 -67.6992 150.5c-49.8008 6.59961 -83.3008 -13 -114.2 -43.7002c48 -4.7002 87.7002 -26.7998 101.8 -74.7998c-30.0996 49.2998 -103 56.5996 -133.6 40.7998\\nc-35.5 -18.2002 -60 -54 -57 -93.8994c3.59961 -47.4004 39.5 -67.4004 57.3994 -79.8008c-4.5 21.7002 -4 71.3008 29.2002 92.9004c-36.2998 -60 28.0996 -144.6 135.3 -110.8c-33.5996 14.3994 -66 40.5 -55.2998 86.7998zM128 240h-39.7998\\nc-8.90039 0 -16.2002 7.2998 -16.2002 16.2002v39.5996c0 8.90039 7.2998 16.2002 16.2002 16.2002h39.7998c8.90039 0 16.2002 -7.2998 16.2002 -16.2002v-39.5996c0 -8.90039 -7.2998 -16.2002 -16.2002 -16.2002zM10.0996 280c-5.59961 0 -10.0996 4.5 -10.0996 10.0996\\nv27.8008c0 5.59961 4.5 10.0996 10.0996 10.0996h27.7002c5.5 0 10.1006 -4.5 10.1006 -10.0996v-27.8008c0 -5.59961 -4.5 -10.0996 -10.1006 -10.0996h-27.7002zM168 305.3v21.4004c0 5.09961 4.2002 9.2998 9.2998 9.2998h21.4004\\nc5.09961 0 9.2998 -4.2002 9.2998 -9.2998v-21.4004c0 -5.09961 -4.2002 -9.2998 -9.2998 -9.2998h-21.4004c-5.09961 0 -9.2998 4.2002 -9.2998 9.2998zM56 212.5v-25c0 -6.2998 -5.09961 -11.5 -11.4004 -11.5h-25.1992c-6.30078 0 -11.4004 5.2002 -11.4004 11.5v25\\nc0 6.2998 5.09961 11.5 11.4004 11.5h25.0996c6.40039 0 11.5 -5.2002 11.5 -11.5z\\\" />\\n    <glyph glyph-name=\\\"cpanel\\\" unicode=\\\"&#xf388;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M210.3 227.8c6.60059 -29.0996 -14.5 -65.2998 -51.7002 -65.2998h-32l6.40039 23.7998c1.7998 6.2002 7.2998 10.7998 14.2998 10.7998h10.2998c12.4004 0 20.8008 11.7002 18.3008 22.6006c-2.10059 9.2002 -9.90039 14.7998 -18.3008 14.7998h-19.7998\\nl-25.7998 -95.7002c-1.90039 -6.2002 -7.40039 -10.7002 -14.2002 -10.7002l-24.7002 -0.0996094l34.9004 130.1c1.7998 6.40039 7.2002 10.9004 14.2998 10.9004h37c24.1006 0 45.4004 -16.4004 51 -41.2002zM53.7998 199.8c-24.8994 0 -24.7002 -37.3994 0 -37.3994\\nh11.2998c4.2002 0 7.60059 -3.90039 6.40039 -8.30078l-7.09961 -26.0996h-12.4004c-33.5 0 -59 31.4004 -50.2998 65.2002c7.2998 27 28.2998 41.0996 51.2002 41.0996h40l-6.2002 -23.5996c-1.90039 -6.5 -7.40039 -10.9004 -14.2998 -10.9004h-18.6006zM301.3 234.6\\nc18.7998 0 33.2998 -17.5996 28.5 -36.7998l-14 -51.7998c-2.7998 -10.5996 -12.2002 -17.7998 -23.3994 -17.7998l-57.5 0.200195c-42.9004 0 -38.5 63.7998 0.699219 63.7998h48.4004l-3.5 -13.2002c-1.90039 -6.2002 -7.40039 -10.7998 -14.2002 -10.7998h-21.5996\\nc-5.2998 0 -5.2998 -7.90039 0 -7.90039h34.8994c4.60059 0 5.10059 3.90039 5.5 5.2998l8.60059 31.8008c0.299805 1 1.89941 5.2998 -2.10059 5.2998h-57.5c-9.69922 0 -16.5996 8.89941 -14.1992 18.5l3.5 13.3994h77.8994zM633.1 269c4.5 0 7.7002 -4 6.5 -8.2998\\nl-26.5 -98.2002c-5.09961 -20.7002 -24.1992 -34.5 -44.8994 -34.5l35.5996 133.1c1.2002 4.7002 5.5 7.90039 10.4004 7.90039h18.8994zM396.8 234.3c34.4004 0 59.2998 -32.2998 50.2998 -65.3994l-8.7998 -33.1006c-1.2002 -4.89941 -5.7002 -7.7998 -10.2998 -7.7998\\nh-19.0996c-4.5 0 -7.60059 4 -6.40039 8.2998l10.5996 40c3.30078 11.6006 -5.59961 23.4004 -18.0996 23.4004h-19.7998l-17.2002 -64c-1.2002 -4.7998 -5.59961 -7.7998 -10.4004 -7.7998h-18.8994c-4.2002 0 -7.60059 3.89941 -6.40039 8.2998l26.2002 98h48.2998\\nv0.0996094zM495.1 159.7h73.3008l-5.7002 -21c-1.90039 -6.2002 -7.40039 -10.7002 -14.2002 -10.7002h-66.7002c-20 0 -33.2998 19 -28.2998 36.7002l10.7998 40c4.7998 17.5996 20.7002 29.5996 38.6006 29.5996h47.2998c19 0 33.2002 -17.7002 28.2998 -36.7998\\nl-3.2002 -12c-2.89941 -11 -12.7002 -17.5996 -23.2002 -17.5996h-53.3994l3.5 13c1.59961 6.19922 7.2002 10.7998 14.2002 10.7998h21.5996c2 0 3.2998 1 3.90039 3l0.699219 2.59961c0.700195 2.7002 -1.2998 5.10059 -3.89941 5.10059h-32.9004\\nc-4.09961 0 -6.89941 -2.10059 -7.7998 -6l-8 -30c-0.900391 -3.30078 1.5 -6.7002 5.09961 -6.7002z\\\" />\\n    <glyph glyph-name=\\\"css3-alt\\\" unicode=\\\"&#xf38b;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M0 416h384l-34.9004 -395.8l-157.1 -52.2002l-157.1 52.2002zM313.1 336h-242.199l5.7998 -47.2998h122.899l-6.5 -2.7002l-112.1 -46.7002l3.59961 -46.2998l0.200195 0.0996094v-0.0996094l166.3 -0.5l-3.69922 -61.5996l-54.7002 -15.4004l-52.6006 13.2998\\nl-3.19922 38.2998h-48.9004l6.40039 -73.8994l98.7998 -29.2002l98.2002 28.7002l12.7998 146.6h-111.5l0.299805 0.100586l115.3 49.2998z\\\" />\\n    <glyph glyph-name=\\\"cuttlefish\\\" unicode=\\\"&#xf38c;\\\" horiz-adv-x=\\\"440\\\" \\nd=\\\"M344 142.5c13.7002 -50.9004 41.7002 -93.2998 87 -117.8c-45.2998 -49.6006 -110.5 -80.7002 -183 -80.7002c-137 0 -248 111 -248 248s111 248 248 248c72.5 0 137.7 -31.0996 183 -80.7002c-45.2998 -24.5 -73.2998 -66.8994 -87 -117.8\\nc-17.5 31.5996 -57.4004 54.5 -96 54.5c-56.5996 0 -104 -47.4004 -104 -104s47.4004 -104 104 -104c38.5996 0 78.5 22.9004 96 54.5z\\\" />\\n    <glyph glyph-name=\\\"d-and-d\\\" unicode=\\\"&#xf38d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M82.5 349.1c-0.599609 17.2002 2 33.8008 12.7002 48.2002c0.299805 -7.39941 1.2002 -14.5 4.2002 -21.5996c5.89941 27.5 19.6992 49.2998 42.2998 65.5c-1.90039 -5.90039 -3.5 -11.7998 -3 -17.7002c8.7002 7.40039 18.7998 17.7998 44.3994 22.7002\\nc14.7002 2.7998 29.7002 2 42.1006 -1c38.5 -9.2998 61 -34.2998 69.7002 -72.2998c5.2998 -23.1006 0.699219 -45 -8.30078 -66.4004c-5.19922 -12.4004 -12 -24.4004 -20.6992 -35.0996c-2 1.89941 -3.90039 3.7998 -5.80078 5.59961\\nc-42.7998 40.7998 -26.7998 25.2002 -37.3994 37.4004c-1.10059 1.19922 -1 2.19922 -0.100586 3.59961c8.30078 13.5 11.8008 28.2002 10 44c-1.09961 9.7998 -4.2998 18.9004 -11.2998 26.2002c-14.5 15.2998 -39.2002 15 -53.5 -0.600586\\nc-11.3994 -12.5 -14.0996 -27.3994 -10.8994 -43.5996c0.199219 -1.2998 0.399414 -2.7002 0 -3.90039c-3.40039 -13.6992 -4.60059 -27.5996 -2.5 -41.5996c0.0996094 -0.5 0.0996094 -1.09961 0.0996094 -1.59961c0 -0.300781 -0.0996094 -0.5 -0.200195 -1.10059\\nc-21.7998 11 -36 28.2998 -43.2002 52.2002c-8.2998 -17.7998 -11.0996 -35.5 -6.59961 -54.0996c-15.5996 15.1992 -21.2998 34.2998 -22 55.1992zM552.1 225.9c0.5 -0.600586 1.2002 -1 1.7002 -1.40039v-0.5c-15 3.59961 -29.7998 1.7998 -44.5 -1.2998\\nc-9.2998 -2 -18.2998 -4.7002 -26.7002 -9c-2.89941 -1.5 -5.69922 -3.2998 -8 -4.7002c-5.7998 2.40039 -11.2998 5.5 -17.1992 6.7998c-24.5 5.2998 -45.8008 -1.2002 -62.5 -20c-19.7002 -22.2002 -34.5 -47.5996 -46.7002 -74.5l-1.2002 -2.7002\\nc-0.0996094 -0.199219 -0.200195 -0.299805 -0.400391 -0.399414c-12.0996 8.2998 -21.5996 20.2998 -36.0996 25.5996c0.299805 0.400391 0.400391 0.900391 0.700195 1.2998c20.5996 28.2002 44.8994 52.5 75.0996 70.4004c16 9.5 33 16.0996 51.5 18.5\\nc1.7998 0.200195 3.5 0.400391 5.2998 1.09961c-4.39941 0 -8.7998 0.300781 -13.0996 -0.0996094c-21.2002 -1.90039 -40.5 -9.59961 -58.7002 -20.2002c-13.7998 -8 -26.2002 -17.7002 -36.5996 -29.7998c-0.400391 -0.5 -0.600586 -1.09961 -0.900391 -1.7002\\nc-0.299805 0.299805 -0.700195 0.600586 -1 0.900391c11 30.8994 30.7002 55 57.7002 73.2998c0.200195 -0.200195 0.5 -0.299805 0.700195 -0.5c-1.2002 -1.7002 -2.5 -3.2998 -3.5 -5.09961c-1.7998 -3.30078 -3.7002 -6.5 -5.10059 -10\\nc-1.7998 -4.30078 1.60059 -8.60059 12 -0.5c18.2002 14.0996 29.6006 26.2998 48.9004 29.5996c0.700195 0.0996094 1.2998 0.299805 1.90039 0.299805h2.5c-1 -0.700195 -1.60059 -1.09961 -2.2002 -1.5c-11.6006 -7.7998 -11.7998 -7.39941 -15 -12\\nc-2.60059 -3.7002 -0.200195 -8 4.7002 -6.7998c2.59961 0.599609 5.19922 1.2998 7.69922 2.2002c9.40039 3.2998 19 5.7998 29 6.39941c13.9004 0.800781 27.1006 -1.89941 39.9004 -7.09961c15.0996 -6.2002 28.5 -15 40.0996 -26.5996zM316.7 50.4004\\nc1.5 -1.30078 1.89941 -2.40039 0.899414 -4.2002c-25.2998 -50.2002 -61.0996 -89.1006 -116 -98.7998c-26.7998 -4.7002 -52.8994 -2.7002 -77.8994 8.59961c-18.5 8.2002 -34.6006 19.5996 -47.2002 35.5996c-2 2.60059 -3.7002 5.40039 -5.90039 8.60059\\nc-0.699219 -7.7998 0.100586 -14.9004 1.5 -21.9004c-0.199219 -0.200195 -0.399414 -0.299805 -0.599609 -0.5c-3.2002 3.40039 -6.59961 6.60059 -9.5 10.2998c-12.2002 15.5 -19.5 33.3008 -24.0996 52.3008c-11.8008 48.2998 -0.5 78.7998 7.7998 101.1\\nc-8.7002 -4.7998 -16.2002 -10.2998 -23.6006 -16.2002c11.6006 32.7998 31.9004 59.9004 56.1006 84.6006c2.39941 -2.10059 3.2998 -4.7002 3 -7.40039c-0.200195 -1 -5.90039 -38.9004 -5.60059 -44.7002c18.9004 18.9004 40.5 33.2998 64.8008 43.9004\\nc-7.5 -11.1006 -11 -23.4004 -11.8008 -37.2998c13.4004 12.1992 27.7002 20.0996 46.4004 13.8994c-8.5 -9.09961 -30.7998 -30.5 -38.5996 -64.2998c-5.10059 -21.9004 -3.80078 -43.0996 8.19922 -62.5996c11.2002 -18.3008 27.8008 -27.8008 49.4004 -27.8008\\nc12.5996 0 23.7998 5 34.0996 11.8008c18.5 12.2998 32.8008 28.5 44 47.5996c1.90039 3.2002 1.10059 2.09961 1.90039 3c19.9004 -16.0996 3.2998 -2.59961 42.7002 -35.5996zM488.7 96.7998c20.2002 -6.59961 35.5 -18.7998 43.7998 -38.8994\\nc9.2002 -23.1006 2.09961 -49.4004 -17.4004 -66c-16.3994 -14 -35.6992 -19.2002 -57 -17.4004c-0.599609 0 -1.19922 0 -1.89941 -0.299805c15.0996 -10.7002 31.5996 -15.2002 50.8994 -10.6006c-2.19922 -2.39941 -3.89941 -4.69922 -5.89941 -6.5\\nc-12.2998 -10.8994 -26.9004 -16.8994 -42.9004 -19.7998c-39.5996 -7.2998 -75.5996 12.7998 -85 56.9004c-0.5 2.09961 -0.599609 4.2002 -0.899414 6.39941c-10.8008 -8.19922 -16.4004 -34.0996 -0.700195 -52.2998c-1.60059 0.5 -2.60059 0.700195 -3.60059 1.10059\\nc-21.2998 8.2998 -34.3994 28.2998 -33.5 51.1992c0.900391 23.2002 4.90039 41 -13 56c-16.5 13.8008 -33 27.4004 -49.5 41.1006c-8.09961 6.7002 -14.7998 14.5 -17 25.0996c-1 4.60059 -1.39941 9.40039 -1.7998 14.1006c-0.5 6.09961 -3.2998 11 -7.89941 14.7998\\nc-4.5 3.89941 -9.30078 7.39941 -13.8008 11.2002c-8.89941 7.5 -12.2998 18.8994 -7.2998 29.8994c2.7998 -12.8994 9.60059 -18.8994 22.6006 -20.2998c4.39941 -0.5 8.89941 -0.799805 13.2998 -1.5c8.09961 -1.2002 12.7998 -6.09961 14.2998 -14.2002\\nc0.700195 -3.39941 1.2998 -6.7998 2.2002 -10.2002c1.59961 -5.59961 4.5 -8 10.3994 -8.39941c4.60059 -0.299805 9.30078 -0.5 13.9004 -0.900391c7.59961 -0.599609 14.2002 -3.7998 20.0996 -8.7002c19.4004 -16.1992 39 -32.1992 58.5 -48.2998\\nc5.7002 -4.7002 12 -8.2002 19.6006 -8.5c16.7002 -0.599609 29 15.2002 24.7998 31.7998c-0.200195 0.700195 -0.400391 1.5 -0.0996094 2.80078c2.39941 -2 4.89941 -3.80078 7 -5.90039c14.0996 -14 18.0996 -39.2998 8.69922 -56.0996\\nc-2.09961 -3.80078 -5.2998 -7.10059 -8.09961 -10.8008c0.700195 -0.199219 1.7998 -0.5 3 -0.599609c14 -1.40039 27.2002 1 38.9004 9.09961c15.7998 10.9004 18 31.2002 5.39941 45.6006c-4.7002 5.39941 -8.89941 8 -18.7998 12\\nc6.5 1.2998 19.2002 0.200195 28.7002 -2.90039zM99.4004 268.7c-5.30078 9.2002 -13.2002 15.5996 -22.1006 21.2998c13.7002 0.5 26.6006 -0.200195 39.6006 -3.7002c-7 12.2002 -8.5 24.7002 -5 38.7002c5.2998 -11.9004 13.6992 -20.0996 23.5996 -26.7998\\nc19.7002 -13.2002 35.7002 -19.6006 46.7002 -30.2002c3.39941 -3.2998 6.2998 -7.09961 9.59961 -10.9004c-0.799805 2.10059 -1.39941 4.10059 -2.2002 6c-5 10.6006 -13 18.6006 -22.5996 25c-1.7998 1.2002 -2.7998 2.5 -3.40039 4.5\\nc-3.2998 12.5 -3 25.1006 -0.699219 37.6006c1 5.5 2.7998 10.8994 4.5 16.2998c0.799805 2.40039 2.2998 4.59961 4 6.59961c0.599609 -6.89941 0 -25.5 19.5996 -46c10.7998 -11.2998 22.4004 -21.8994 33.9004 -32.6992c9 -8.5 18.2998 -16.7002 25.5 -26.8008\\nc1.09961 -1.59961 2.19922 -3.2998 3.7998 -4.69922c-5 13 -14.2002 24.0996 -24.2002 33.7998c-9.59961 9.2998 -19.4004 18.3994 -29.2002 27.3994c-3.2998 3 -4.59961 6.7002 -5.09961 10.9004c-1.2002 10.4004 0 20.5996 4.2998 30.2002c0.5 1 1.09961 2 1.90039 3.2998\\nc0.5 -4.2002 0.599609 -7.90039 1.39941 -11.5996c4.7998 -23.1006 20.4004 -36.3008 49.2998 -63.5c10 -9.40039 19.3008 -19.2002 25.6006 -31.6006c4.7998 -9.2998 7.2998 -19 5.7002 -29.5996c-0.100586 -0.600586 0.5 -1.7002 1.09961 -2\\nc6.2002 -2.60059 10 -6.90039 9.7002 -14.2998c7.7002 2.59961 12.5 8 16.3994 14.5c4.2002 -20.2002 -9.09961 -50.3008 -27.1992 -58.7002c0.399414 4.5 5 23.3994 -16.5 27.7002c-6.80078 1.2998 -12.8008 1.2998 -22.9004 2.09961c4.7002 9 10.4004 20.5996 0.5 22.4004\\nc-24.9004 4.59961 -52.7998 -1.90039 -57.7998 -4.60059c8.2002 -0.399414 16.2998 -1 23.5 -3.2998c-2 -6.5 -4 -12.7002 -5.7998 -18.9004c-1.90039 -6.5 2.09961 -14.5996 9.2998 -9.59961c1.2002 0.900391 2.2998 1.90039 3.2998 2.7002\\nc-3.09961 -17.9004 -2.90039 -15.9004 -2.7998 -18.2998c0.299805 -10.2002 9.5 -7.80078 15.7002 -7.30078c-2.5 -11.7998 -29.5 -27.2998 -45.4004 -25.7998c7 4.7002 12.7002 10.2998 15.9004 17.9004c-6.5 -0.799805 -12.9004 -1.60059 -19.2002 -2.40039\\nl-0.299805 0.900391c4.69922 3.39941 8 7.7998 10.1992 13.0996c8.7002 21.1006 -3.59961 38 -25 39.9004c-9.09961 0.799805 -17.7998 -0.799805 -25.8994 -5.5c6.2002 15.5996 17.2002 26.5996 32.5996 34.5c-15.2002 4.2998 -8.89941 2.7002 -24.5996 6.2998\\nc14.5996 9.2998 30.2002 13.2002 46.5 14.5996c-5.2002 3.2002 -48.1006 3.60059 -70.2002 -20.8994c7.90039 -1.40039 15.5 -2.7998 23.2002 -4.2002c-23.7998 -7 -44 -19.7002 -62.4004 -35.5996c1.10059 4.7998 2.7002 9.5 3.2998 14.2998\\nc0.600586 4.5 0.800781 9.2002 0.100586 13.5996c-1.5 9.40039 -8.90039 15.1006 -19.7002 16.2998c-7.90039 0.900391 -15.5996 -0.0996094 -23.2998 -1.2998c-0.900391 -0.0996094 -1.7002 -0.299805 -2.90039 0c15.7998 14.7998 36 21.7002 53.1006 33.5\\nc6 4.5 6.7998 8.2002 3 14.9004zM227.8 241.9c3.2998 -16 12.6006 -25.5 23.7998 -24.3008c-4.59961 11.3008 -12.0996 19.5 -23.7998 24.3008z\\\" />\\n    <glyph glyph-name=\\\"deploydog\\\" unicode=\\\"&#xf38e;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M382.2 312h51.7002v-239.6h-51.7002v20.6992c-19.7998 -24.7998 -52.7998 -24.0996 -73.7998 -14.6992c-26.2002 11.6992 -44.3008 38.0996 -44.3008 71.7998c0 29.7998 14.8008 57.8994 43.3008 70.7998c20.1992 9.09961 52.6992 10.5996 74.7998 -12.9004v103.9z\\nM317.5 150.2c0 -18.2002 13.5996 -33.5 33.2002 -33.5c19.7998 0 33.2002 16.3994 33.2002 32.8994c0 17.1006 -13.7002 33.2002 -33.2002 33.2002c-19.6006 0 -33.2002 -16.3994 -33.2002 -32.5996zM188.5 312h51.7002v-239.6h-51.7002v20.6992\\nc-19.7998 -24.7998 -52.7998 -24.0996 -73.7998 -14.6992c-26.2002 11.6992 -44.2998 38.0996 -44.2998 71.7998c0 29.7998 14.7998 57.8994 43.2998 70.7998c20.2002 9.09961 52.7002 10.5996 74.7998 -12.9004v103.9zM123.8 150.2c0 -18.2002 13.6006 -33.5 33.2002 -33.5\\nc19.7998 0 33.2002 16.3994 33.2002 32.8994c0 17.1006 -13.7002 33.2002 -33.2002 33.2002c-19.7002 0 -33.2002 -16.3994 -33.2002 -32.5996zM448 352h-384c-17.5996 0 -32 -14.5 -32 -32v-256c0 -17.5996 14.5 -32 32 -32h384c17.5996 0 32 14.5 32 32v256\\nc0 17.5996 -14.5 32 -32 32zM448 384c35.2002 0 64 -28.7998 64 -64v-256c0 -35.2002 -28.7998 -64 -64 -64h-384c-35.2002 0 -64 28.7998 -64 64v256c0 35.2002 28.7998 64 64 64h384z\\\" />\\n    <glyph glyph-name=\\\"deskpro\\\" unicode=\\\"&#xf38f;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M205.9 -64l31.0996 38.4004c12.2998 0.199219 25.5996 1.39941 36.5 6.59961c38.9004 18.5996 38.4004 61.9004 38.2998 63.7998c-0.0996094 5 -0.799805 4.40039 -28.8994 37.4004h79.0996c-0.200195 -50.1006 -7.2998 -68.5 -10.2002 -75.7002\\nc-9.39941 -23.7002 -43.8994 -62.7998 -95.2002 -69.4004c-8.69922 -1.09961 -32.7998 -1.19922 -50.6992 -1.09961zM406.3 103.7l-119.2 -0.100586l17.4004 31.3008l175.5 -0.300781c-15.2002 -17.2998 -35.0996 -30.8994 -73.7002 -30.8994zM362.7 327.6v-168.3h-73.5\\nl-32.7002 -55.5h-6.5c-52.2998 0 -58.0996 56.5 -58.2998 58.9004c-1.2002 13.2002 -21.2998 11.5996 -20.1006 -1.7998c1.40039 -15.8008 8.80078 -40 26.4004 -57.1006h-91c-25.5 0 -110.8 26.7998 -107 114v213.3c0 16 9.7002 16.6006 15 16.8008h82\\nc0.200195 0 0.299805 -0.100586 0.5 -0.100586c4.2998 0.400391 50.0996 2.10059 50.0996 -43.7002c0 -13.2998 20.2002 -13.3994 20.2002 0c0 18.2002 -5.5 32.8008 -15.7998 43.7002h84.2002c108.7 0.400391 126.5 -79.3994 126.5 -120.2zM230.2 271.6l64 -29.2998\\nc13.2998 45.5 -42.2002 71.7002 -64 29.2998z\\\" />\\n    <glyph glyph-name=\\\"digital-ocean\\\" unicode=\\\"&#xf391;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M87 -33.7998v73.5996h73.7002v-73.5996h-73.7002zM25.4004 101.4h61.5996v-61.6006h-61.5996v61.6006zM491.6 271.1c53.2002 -170.3 -73 -327.1 -235.6 -327.1v95.7998h0.299805v0.299805c101.7 0.200195 180.5 101 141.4 208\\nc-14.2998 39.6006 -46.1006 71.4004 -85.7998 85.7002c-107.101 38.7998 -208.101 -39.8994 -208.101 -141.7h-95.7998c0 162.2 156.9 288.7 327 235.601c74.2002 -23.2998 133.6 -82.4004 156.6 -156.601zM256.3 40.0996h-0.299805v-0.299805h-95.2998v95.6006h95.5996\\nv-95.3008z\\\" />\\n    <glyph glyph-name=\\\"discord\\\" unicode=\\\"&#xf392;\\\" \\nd=\\\"M297.216 204.8c0 -15.6162 -11.5195 -28.416 -26.1123 -28.416c-14.3359 0 -26.1113 12.7998 -26.1113 28.416s11.5195 28.416 26.1113 28.416c14.5928 0 26.1123 -12.7998 26.1123 -28.416zM177.664 233.216c14.5918 0 26.3682 -12.7998 26.1123 -28.416\\nc0 -15.6162 -11.5205 -28.416 -26.1123 -28.416c-14.3359 0 -26.1123 12.7998 -26.1123 28.416s11.5205 28.416 26.1123 28.416zM448 395.264v-459.264c-64.4941 56.9941 -43.8682 38.1279 -118.784 107.776l13.5684 -47.3604h-290.304\\nc-28.9287 0 -52.4805 23.5518 -52.4805 52.7363v346.111c0 29.1846 23.5518 52.7363 52.4805 52.7363h343.039c28.9287 0 52.4805 -23.5518 52.4805 -52.7363zM375.04 152.576c0 82.4316 -36.8643 149.248 -36.8643 149.248\\nc-36.8643 27.6475 -71.9355 26.8799 -71.9355 26.8799l-3.58398 -4.0957c43.5195 -13.3125 63.7441 -32.5127 63.7441 -32.5127c-60.8115 33.3291 -132.244 33.335 -191.232 7.42383c-9.47168 -4.35156 -15.1035 -7.42383 -15.1035 -7.42383\\ns21.2471 20.2246 67.3271 33.5361l-2.55957 3.07227s-35.0723 0.767578 -71.9355 -26.8799c0 0 -36.8643 -66.8164 -36.8643 -149.248c0 0 21.5039 -37.1201 78.0801 -38.9121c0 0 9.47168 11.5195 17.1514 21.248c-32.5117 9.72754 -44.7998 30.208 -44.7998 30.208\\nc3.7666 -2.63574 9.97656 -6.05273 10.4961 -6.40039c43.21 -24.1973 104.588 -32.126 159.744 -8.95996c8.95996 3.32812 18.9443 8.19238 29.4395 15.1045c0 0 -12.7998 -20.9922 -46.3359 -30.4639c7.68066 -9.72852 16.8965 -20.7363 16.8965 -20.7363\\nc56.5762 1.79199 78.3359 38.9121 78.3359 38.9121z\\\" />\\n    <glyph glyph-name=\\\"discourse\\\" unicode=\\\"&#xf393;\\\" \\nd=\\\"M225.9 416c122.699 0 222.1 -102.3 222.1 -223.9c0 -121.6 -99.4004 -223.899 -222.1 -223.899l-225.801 -0.200195s-0.0996094 224 -0.0996094 227.9c0 121.6 103.3 220.1 225.9 220.1zM224 64c70.7002 0 128 57.2998 128 128s-57.2998 128 -128 128\\ns-128 -57.2998 -128 -128c0 -22.0996 5.59961 -42.9004 15.4004 -61l-22.9004 -75l81.0996 20.0996c16.5 -7.7998 35 -12.0996 54.4004 -12.0996z\\\" />\\n    <glyph glyph-name=\\\"dochub\\\" unicode=\\\"&#xf394;\\\" horiz-adv-x=\\\"416\\\" \\nd=\\\"M397.9 288h-141.9v140.4zM304 256h96v-126.1c0 -129.301 -70.2998 -193.9 -210.8 -193.9h-189.2v512h189.2c12.2002 0 23.7002 -1.09961 34.5996 -3.2998v-84c-10 1.7002 -21.0996 2.5 -33.0996 2.5h-94.7002v-337.3h94.7002c76.7998 0 113.3 33.2998 113.3 100.1v130z\\n\\\" />\\n    <glyph glyph-name=\\\"docker\\\" unicode=\\\"&#xf395;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M349.9 211.7h-66.1006v59.3994h66.1006v-59.3994zM349.9 416v-60.7002h-66.1006v60.7002h66.1006zM428.1 271.2v-59.4004h-66.0996v59.4004h66.0996zM271.8 343.3v-60.0996h-66.0996v60.0996h66.0996zM349.9 343.3v-60.0996h-66.1006v60.0996h66.1006zM626.7 243.3\\nl13.2998 -8.89941c-1.90039 -3.90039 -7 -14.6006 -8.5 -17.1006c-23.7002 -45.2998 -69.9004 -45.5996 -91.2998 -45.2002c-54.5 -131.699 -171 -204.199 -328.4 -204.199c-72.7002 0 -128.3 22.2998 -165.399 66.1992c-38.2002 45.3008 -52.7002 111.301 -44 162.101\\nh434.699c22.6006 -0.400391 39.7002 6 48.4004 10.7002c-19.7002 30.1992 -14.7002 76 3.7002 103.8l9.2998 14l14 -9.2998c24.4004 -18.8008 37.7998 -39.7002 41.0996 -63.7002c25.5 4.7998 58.7002 1.2998 73.1006 -8.40039zM115.6 271.2h0.100586v-59.4004h-66.1006\\nv59.4004h66zM193.7 271.2v-59.4004h-66.1006v59.4004h66.1006zM271.8 271.2v-59.4004h-66.0996v59.4004h66.0996zM193.7 343.3v-60.0996h-66.1006v60.0996h66.1006z\\\" />\\n    <glyph glyph-name=\\\"draft2digital\\\" unicode=\\\"&#xf396;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M480 49.9004l-144 -81.9004v64.2002l-336 -0.100586c18.2998 19.1006 84.5 87.8008 161.1 174.801c32.6006 37.1992 78 83.2998 69.7002 127.6c-5.2998 28.2998 -42.2002 50.7998 -83.2998 33.5c-8.59961 -3.59961 -24.5 -17.4004 -26.2998 -24.7002\\nc28.2998 -4.7002 48 -29.7002 48 -56.7998c0 -31.7002 -25.6006 -57.4004 -57.2998 -57.4004c-37.3008 0 -62.2002 34.1006 -56.7002 67.1006c1.2002 7.89941 5.09961 26.7998 18.2002 47.7002c14.8994 23.8994 45.1992 54.8994 104.3 67.2998\\nc103.8 21.7002 161.6 -36.6006 166 -41.2002c28.8994 -29.9004 48 -90.7002 12.7998 -153.3c-30 -53.4004 -81 -114.3 -111.8 -149.3h91.2998v64.6992zM369.9 77v-54.4004l47.0996 27.2002zM134.2 286.6c0 12.3008 -10 22.4004 -22.4004 22.4004\\nc-12.3994 0 -22.3994 -10 -22.3994 -22.4004c0 -12.3994 10 -22.3994 22.3994 -22.3994c12.4004 0 22.4004 10 22.4004 22.3994zM82.5 67.5h114.4c17.5996 19.2002 91.5 100.8 128.5 166.7c36.5996 65.0996 -5.80078 113.3 -5.80078 113.3\\nc-14.1992 14.9004 -36.8994 36.2002 -82.1992 38.2998c6.7998 -5.5 16.8994 -16.8994 24.2998 -35.7002c11.8994 -30.2998 6.7002 -69.5996 -28.4004 -112.699c-53.0996 -65.2002 -125.2 -142.5 -150.8 -169.9z\\\" />\\n    <glyph glyph-name=\\\"dribbble-square\\\" unicode=\\\"&#xf397;\\\" \\nd=\\\"M90.2002 219.8c8.89941 42.4004 37.3994 77.7002 75.7002 95.7002c3.59961 -4.90039 28 -38.7998 50.6992 -79c-64 -17 -120.3 -16.7998 -126.399 -16.7002zM314.6 294c-2.5 -3.5 -23 -31.0996 -71.5996 -49.4004c-22.4004 41.1006 -47.2002 74.9004 -51 80\\nc43.2998 10.5 89 -0.799805 122.6 -30.5996zM140.1 84c14.3008 29.2002 53 66.7998 108.101 85.5996c19.2002 -49.7998 27.2002 -91.5996 29.2002 -103.6c-44 -18.7002 -96.8008 -13.5996 -137.301 18zM238.9 192.2c-49.4004 -13.9004 -94.3008 -53.9004 -116.5 -91.7998\\nc-21.8008 24.2998 -35.1006 56.2998 -35.1006 91.3994c0 1.40039 0.100586 2.7998 0.100586 4.2002c6 -0.200195 72.1992 -1 140.399 19.4004c3.90039 -7.7002 7.7002 -15.4004 11.1006 -23.2002zM273.8 175.9c42.7998 6.89941 80.5 -4.30078 85.1006 -5.80078\\nc-6.10059 -38 -27.9004 -70.8994 -58.6006 -91.5996c-1.39941 8.2998 -8.59961 48.2998 -26.5 97.4004zM253.5 224.3c50.5 20.7002 73.4004 50 76.2998 53.9004c19.1006 -23.2002 30.6006 -52.7998 30.9004 -85.1006c-4.5 1 -49.7002 10.1006 -95.2002 4.40039\\nc-3.7002 9 -7.2002 17 -12 26.7998zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM384 192c0 88.2002 -71.7998 160 -160 160s-160 -71.7998 -160 -160s71.7998 -160 160 -160\\ns160 71.7998 160 160z\\\" />\\n    <glyph glyph-name=\\\"dyalog\\\" unicode=\\\"&#xf399;\\\" horiz-adv-x=\\\"416\\\" \\nd=\\\"M0 416h171.2c74.5 0 137.7 -24 182.5 -69.5996c40.2002 -40.9004 62.2998 -95.6006 62.2998 -154.301c0 -111.399 -84.0996 -224.1 -244.8 -224.1h-171.2v64h171.2c122.2 0 180.8 84 180.8 160.1c0 79.7002 -67.4004 159.9 -180.8 159.9h-107.2v-55.2002h-64v119.2z\\\" />\\n    <glyph glyph-name=\\\"earlybirds\\\" unicode=\\\"&#xf39a;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M313.2 400.5c1.2002 13 21.2998 14 36.5996 8.7002c0.900391 -0.299805 26.2002 -9.7002 19 -15.2002c-27.8994 7.40039 -56.3994 -18.2002 -55.5996 6.5zM112.2 393.6c-7.7998 6.2002 19.8994 16.4004 20.8994 16.7002c16.8008 5.7002 38.9004 4.60059 40.2002 -9.59961\\nc0.900391 -27.1006 -30.3994 1 -61.0996 -7.10059zM319.4 288c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16c-8.80078 0 -16 7.2002 -16 16s7.19922 16 16 16zM159.7 288c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16s-16 7.2002 -16 16s7.2002 16 16 16z\\nM478.2 124.8c-9.90039 -24 -40.7002 -11 -63.9004 1.2002c-13.5 -69.0996 -58.0996 -111.4 -126.3 -124.2c0.299805 -0.899414 -2 0.100586 24 -1c33.5996 -1.39941 63.7998 3.10059 97.4004 8c-19.8008 13.7998 -11.4004 37.1006 -9.80078 38.1006\\nc1.40039 0.899414 14.7002 -1.7002 21.6006 -11.5c8.59961 12.5 28.3994 14.7998 30.2002 13.5996c1.59961 -1.09961 6.59961 -20.9004 -6.90039 -34.5996c4.7002 0.899414 8.2002 1.59961 9.7998 2.09961c2.60059 0.799805 17.7002 -11.2998 3.10059 -13.2998\\nc-14.3008 -2.2998 -22.6006 -5.10059 -47.1006 -10.7998c-45.8994 -10.7002 -85.8994 -11.8008 -117.7 -12.8008l1 -11.5996c3.80078 -18.0996 -23.3994 -24.2998 -27.5996 -6.2002c0.799805 -17.8994 -27.0996 -21.7998 -28.4004 1l-0.5 -5.2998\\nc-0.699219 -18.4004 -28.3994 -17.9004 -28.2998 0.599609c-7.5 -13.5 -28.0996 -6.7998 -26.3994 8.5l1.19922 12.4004c-36.6992 -0.900391 -59.6992 -3.09961 -61.7998 -3.09961c-20.8994 0 -20.8994 31.5996 0 31.5996c2.40039 0 27.7002 -1.2998 63.2002 -2.7998\\nc-61.0996 15.5 -103.7 55 -114.9 118.2c-25 -12.8008 -57.5 -26.8008 -68.1992 -0.800781c-10.5 25.4004 21.5 42.6006 66.7998 73.4004c0.700195 6.59961 1.59961 13.2998 2.7002 19.7998c-14.4004 19.6006 -11.6006 36.2998 -16.1006 60.4004\\nc-16.7998 -2.40039 -23.2002 9.09961 -23.5996 23.0996c0.299805 7.2998 2.09961 14.9004 2.39941 15.4004c1.10059 1.7998 10.1006 2 12.7002 2.59961c6 31.7002 50.6006 33.2002 90.9004 34.5c19.7002 21.7998 45.2002 41.5 80.8994 48.2998\\nc-15.2998 19.4004 -3.39941 39.9004 -2.39941 40.4004c1.7002 0.799805 21.2002 -4.2998 26.2998 -23.2002c5.2002 8.7998 18.2998 11.4004 19.5996 10.7002c1.10059 -0.599609 6.40039 -15 -4.89941 -25.9004c40.2998 -3.5 72.2002 -24.6992 96 -50.6992\\nc36.0996 -1.5 71.7998 -5.90039 77.0996 -34c2.7002 -0.600586 11.6006 -0.800781 12.7002 -2.60059c0.299805 -0.5 2.09961 -8.09961 2.40039 -15.3994c-0.5 -13.9004 -6.80078 -25.4004 -23.6006 -23.1006c-3.2002 -17.2998 -2.7002 -32.8994 -8.7002 -47.7002\\nc2.40039 -11.6992 4 -23.7998 4.80078 -36.3994c37 -25.4004 70.2998 -42.5 60.2998 -66.9004zM207.4 288.1c0.899414 44 -37.9004 42.2002 -78.6006 40.3008c-21.7002 -1 -38.8994 -1.90039 -45.5 -13.9004c-11.3994 -20.9004 5.90039 -92.9004 23.2002 -101.2\\nc9.7998 -4.7002 73.4004 -7.89941 86.2998 7.10059c8.2002 9.39941 15 49.3994 14.6006 67.6992zM259.4 229.8c-4.30078 12.4004 -6 30.1006 -15.3008 32.7002c-2 0.5 -9 0.5 -11 0c-10 -2.7998 -10.7998 -22.0996 -17 -37.2002c15.4004 0 19.3008 -9.7002 23.7002 -9.7002\\nc4.2998 0 6.2998 11.3008 19.6006 14.2002zM395.1 314.5c-6.59961 12.0996 -24.7998 12.9004 -46.5 13.9004c-40.1992 1.89941 -78.1992 3.7998 -77.2998 -40.3008c-0.5 -18.2998 5 -58.2998 13.2002 -67.7998c13 -14.8994 76.5996 -11.7998 86.2998 -7.09961\\nc15.7998 7.59961 36.5 78.8994 24.2998 101.3z\\\" />\\n    <glyph glyph-name=\\\"erlang\\\" unicode=\\\"&#xf39d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M87.2002 394.5c-41.5 -50.2002 -65.6006 -116.2 -65.5 -192.9c-0.100586 -86.7998 29 -159.5 78.7002 -212.1h-100.4v405h87.2002zM325.4 384.8c46.1992 -0.0996094 79.5996 -33.5 80.6992 -83.2002h-169.899c4.09961 49.7002 43.2998 83.1006 89.2002 83.2002z\\nM556.1 394.4h0.300781l-0.100586 0.0996094zM556.4 394.4h83.5996v-405h-80.7998c21.3994 23 40.5 49.8994 57.8994 80.7998l-96.3994 48.2002c-33.9004 -55.1006 -83.4004 -105.801 -151.9 -106.101c-99.7002 0.400391 -138.8 85.6006 -138.6 195.3h372.399\\nc0.5 12.4004 0.5 18.1006 0 24.1006c2.5 65.2002 -14.7998 120 -46.1992 162.7z\\\" />\\n    <glyph glyph-name=\\\"facebook-f\\\" unicode=\\\"&#xf39e;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M279.14 160h-74.6895v-224h-100.17v224h-81.3906v92.6602h81.3906v70.6201c0 80.3398 47.8594 124.72 121.08 124.72c35.0693 0 71.75 -6.25977 71.75 -6.25977v-78.8906h-40.4199c-39.8203 0 -52.2402 -24.71 -52.2402 -50.0596v-60.1299h88.9102z\\\" />\\n    <glyph glyph-name=\\\"facebook-messenger\\\" unicode=\\\"&#xf39f;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M256.55 440c140.04 0 247.45 -102.34 247.45 -240.57c0 -175.13 -166.15 -273.229 -319.44 -231.04c-8.96973 2.44043 -9.64941 0.600586 -62.5596 -22.6992c-2.10449 -0.918945 -5.67578 -1.66504 -7.97168 -1.66504c-10.624 0 -19.543 8.61719 -19.9082 19.2344\\nc-1.41992 46.3701 0.299805 50.7207 -8.0498 58.2305c-48.3604 43.1602 -78.0703 105.64 -78.0703 177.939c0 138.23 108.52 240.57 248.55 240.57zM405.79 254.87c7.0498 11.0801 -6.65039 23.5996 -17.0898 15.6201l-78.4102 -59.3799\\nc-2.20801 -1.65625 -6.24023 -3 -9 -3s-6.79199 1.34375 -9 3l-58.0596 43.46c-5.48926 4.09961 -15.5049 7.42676 -22.3564 7.42676c-11.3438 0 -25.4805 -7.77637 -31.5537 -17.3574l-73 -115.569c-7.05078 -11.0703 6.64941 -23.6006 17.1094 -15.6699l78.3701 59.4395\\nc2.20801 1.65625 6.24023 3 9 3s6.79199 -1.34375 9 -3l58.0801 -43.4697c5.48926 -4.09766 15.5039 -7.42285 22.3535 -7.42285c11.3428 0 25.4805 7.77441 31.5566 17.3525z\\\" />\\n    <glyph glyph-name=\\\"firstdraft\\\" unicode=\\\"&#xf3a1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 256h-64v-128h-128v-128h-192v25.5996h166.4v128h128v128h89.5996v-25.5996zM358.4 217.6h25.5996v-153.6h-128v-128h-192v25.5996h166.4v128h128v128zM384 25.5996v-25.5996h-64v-64h-25.5996v89.5996h89.5996zM0 448h384v-128h-128v-128h-128v-128h-128v384z\\\" />\\n    <glyph glyph-name=\\\"fonticons-fi\\\" unicode=\\\"&#xf3a2;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M114.4 224h92.3994l-15.2002 -51.2002h-76.3994v-157.8c0 -8 -2.7998 -9.2002 4.39941 -10l59.6006 -5.59961v-34.4004h-179.2v35.2002l29.2002 2.7998c7.2002 0.799805 9.2002 3.2002 9.2002 10.7998v155.8c0 3.2002 -4 3.2002 -8 3.2002h-30.4004v51.2002h38.4004\\nv28.7998c0 68 36.3994 96 106 96c46.7998 0 88.7998 -11.2002 88.7998 -72.3994l-69.6006 -8.40039c0.400391 25.5996 -6 31.5996 -22.3994 31.5996c-25.2002 0 -26 -13.5996 -26 -37.5996v-32c0 -3.2002 -4.7998 -6 -0.799805 -6zM384 -35h-140.8v34.4004l28 3.59961\\nc7.2002 0.799805 10.3994 2.40039 10.3994 10v148c0 5.59961 -4 9.2002 -9.19922 10.7998l-33.2002 8.7998l9.2002 40.4004h110v-208c0 -8 -3.60059 -8.7998 4 -10l21.5996 -3.59961v-34.4004zM354 312.2l12.4004 -45.6006l-10 -10l-42.8008 22.8008l-42.7998 -22.8008\\nl-10 10l12.4004 45.6006l-30 36.3994l4.7998 10h38l21.2002 38.4004h12.7998l21.2002 -38.4004h38l4.7998 -13.1992z\\\" />\\n    <glyph glyph-name=\\\"fort-awesome-alt\\\" unicode=\\\"&#xf3a3;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M208 210.6c2.09961 0 3.7002 -1.59961 3.7002 -3.69922v-51.7002c0 -2.10059 -1.60059 -3.7002 -3.7002 -3.7002h-22.2002c-2.09961 0 -3.7002 1.59961 -3.7002 3.7002v51.7002c0 2.09961 1.60059 3.69922 3.7002 3.69922h22.2002zM326.2 210.6\\nc2 0 3.59961 -1.59961 3.7002 -3.69922v-51.7002c0 -2.10059 -1.60059 -3.7002 -3.7002 -3.7002h-22.2002c-2.09961 0 -3.7002 1.59961 -3.7002 3.7002v51.7002c0 2.09961 1.60059 3.69922 3.7002 3.69922h22.2002zM458.2 335.7\\nc28.8994 -40.7002 45.7998 -90.2002 45.7998 -143.7c0 -2 0 -4 -0.0996094 -6c0 -0.700195 0 -1.2998 -0.100586 -2c0 -1.2998 -0.0996094 -2.7002 -0.200195 -4c0 -0.799805 -0.0996094 -1.5 -0.0996094 -2.2998\\nc-0.0996094 -1.2002 -0.0996094 -2.40039 -0.200195 -0.700195c-0.0996094 -0.799805 -0.0996094 -1.59961 -0.200195 -2.40039c-0.0996094 -1.19922 -0.199219 -2.39941 -0.299805 -3.5c-0.0996094 -0.799805 -0.200195 -1.59961 -0.200195 -2.39941\\nc-0.0996094 -1.2002 -0.299805 -2.40039 -0.399414 -3.60059c-0.100586 -0.799805 -0.200195 -1.5 -0.299805 -2.2998c-0.200195 -1.2998 -0.400391 -2.59961 -0.5 -3.89941c-0.100586 -0.600586 -0.200195 -1.30078 -0.300781 -1.90039l-0.899414 -5.7002\\nc-0.100586 -0.599609 -0.200195 -1.09961 -0.299805 -1.7002c-0.200195 -1.2998 -0.5 -2.69922 -0.800781 -4c-0.199219 -0.799805 -0.299805 -1.59961 -0.5 -2.39941c-0.199219 -1.10059 -0.5 -2.2002 -0.699219 -3.2002\\nc-0.200195 -0.900391 -0.400391 -1.7002 -0.600586 -2.59961c-0.200195 -1 -0.5 -2 -0.700195 -3c-0.199219 -0.900391 -0.5 -1.80078 -0.699219 -2.7002c-0.300781 -1 -0.5 -1.90039 -0.800781 -2.90039c-0.199219 -0.899414 -0.5 -1.7998 -0.799805 -2.7002\\nc-0.299805 -0.899414 -0.599609 -1.89941 -0.799805 -2.7998c-0.299805 -0.899414 -0.5 -1.7998 -0.799805 -2.7002c-0.299805 -0.899414 -0.600586 -1.7998 -0.900391 -2.7998c-0.5 -1.59961 -1.09961 -3.2998 -1.7002 -4.89941\\nc-0.299805 -0.900391 -0.599609 -1.80078 -1 -2.80078c-0.399414 -1 -0.699219 -2 -1.09961 -3c-0.299805 -0.799805 -0.599609 -1.5 -0.900391 -2.2998l-1.19922 -3c-0.300781 -0.700195 -0.600586 -1.5 -0.900391 -2.2002c-0.400391 -1 -0.799805 -2 -1.2998 -3\\nl-0.900391 -2.09961c-0.399414 -1 -0.899414 -2 -1.39941 -3c-0.300781 -0.700195 -0.600586 -1.2998 -0.900391 -2c-0.5 -1 -1 -2.09961 -1.5 -3.09961c-0.299805 -0.600586 -0.599609 -1.10059 -0.799805 -1.7002c-0.600586 -1.10059 -1.10059 -2.2002 -1.7002 -3.2998\\nc-0.0996094 -0.200195 -0.200195 -0.300781 -0.299805 -0.5c-2.2002 -4.10059 -4.40039 -8.2002 -6.7998 -12.2002c-0.200195 -0.400391 -0.5 -0.799805 -0.700195 -1.2002c-0.700195 -1.09961 -1.2998 -2.2002 -2 -3.2998\\nc-0.299805 -0.5 -0.600586 -0.900391 -0.900391 -1.40039c-0.700195 -1.09961 -1.39941 -2.09961 -2 -3.2002c-0.299805 -0.5 -0.599609 -0.899414 -0.899414 -1.39941c-0.700195 -1.10059 -1.40039 -2.10059 -2.10059 -3.2002\\nc-0.299805 -0.400391 -0.599609 -0.799805 -0.799805 -1.2002c-0.799805 -1.09961 -1.5 -2.2002 -2.2998 -3.2998c-0.200195 -0.200195 -0.299805 -0.5 -0.5 -0.700195c-37.6006 -54.7002 -94.5 -91.3994 -160.101 -102.399\\nc-0.899414 -0.100586 -1.69922 -0.300781 -2.59961 -0.400391c-1 -0.200195 -2.09961 -0.299805 -3.09961 -0.5c-0.900391 -0.0996094 -1.80078 -0.299805 -2.80078 -0.400391c-1 -0.0996094 -2 -0.299805 -3 -0.399414c-1 -0.100586 -2 -0.200195 -2.89941 -0.299805\\nc-1 -0.100586 -1.90039 -0.200195 -2.90039 -0.300781c-1 -0.0996094 -2.09961 -0.199219 -3.09961 -0.299805c-0.900391 -0.0996094 -1.7998 -0.200195 -2.7002 -0.200195c-1.09961 -0.0996094 -2.2998 -0.0996094 -3.40039 -0.199219\\nc-0.799805 0 -1.69922 -0.100586 -2.5 -0.100586c-1.2998 -0.0996094 -2.59961 -0.0996094 -3.89941 -0.0996094c-0.700195 0 -1.40039 -0.100586 -2.10059 -0.100586c-2 0 -4 -0.0996094 -6 -0.0996094s-4 0 -6 0.0996094c-0.699219 0 -1.39941 0 -2.09961 0.100586\\nc-1.2998 0 -2.59961 0.0996094 -3.90039 0.0996094c-0.799805 0 -1.69922 0.100586 -2.5 0.100586c-1.09961 0.0996094 -2.2998 0.0996094 -3.39941 0.199219c-0.900391 0.100586 -1.7998 0.100586 -2.7002 0.200195c-1 0.100586 -2.09961 0.200195 -3.09961 0.299805\\nc-1 0.100586 -1.90039 0.200195 -2.90039 0.300781c-1 0.0996094 -2 0.199219 -2.90039 0.299805c-1 0.0996094 -2 0.200195 -3 0.399414c-0.899414 0.100586 -1.7998 0.300781 -2.7998 0.400391s-2.09961 0.299805 -3.09961 0.5\\nc-0.900391 0.0996094 -1.7002 0.299805 -2.60059 0.400391c-65.5996 10.8994 -122.5 47.6992 -160 99.3994c-0.199219 0.200195 -0.299805 0.5 -0.5 0.700195c-0.799805 1.09961 -1.59961 2.2002 -2.2998 3.2998c-0.299805 0.400391 -0.599609 0.799805 -0.799805 1.2002\\nc-0.700195 1.09961 -1.40039 2.09961 -2.09961 3.2002c-0.300781 0.5 -0.600586 0.899414 -0.900391 1.39941c-0.700195 1.10059 -1.40039 2.10059 -2 3.2002c-0.299805 0.5 -0.599609 0.900391 -0.900391 1.40039c-0.699219 1.09961 -1.2998 2.2002 -2 3.2998\\nc-0.199219 0.400391 -0.5 0.799805 -0.699219 1.2002c-2.40039 4 -4.60059 8.09961 -6.80078 12.2002c-0.0996094 0.199219 -0.199219 0.299805 -0.299805 0.5c-0.599609 1.09961 -1.09961 2.19922 -1.7002 3.2998c-0.299805 0.599609 -0.599609 1.09961 -0.799805 1.7002\\nc-0.5 1 -1 2.09961 -1.5 3.09961c-0.299805 0.700195 -0.599609 1.2998 -0.899414 2c-0.5 1 -0.900391 2 -1.40039 3l-0.900391 2.09961c-0.399414 1 -0.899414 2 -1.2998 3c-0.299805 0.700195 -0.599609 1.5 -0.899414 2.2002l-1.2002 3\\nc-0.299805 0.799805 -0.600586 1.5 -0.900391 2.2998c-0.399414 1 -0.799805 2 -1.09961 3c-0.299805 0.900391 -0.600586 1.80078 -1 2.80078c-0.600586 1.59961 -1.10059 3.2998 -1.7002 4.89941c-0.299805 0.900391 -0.599609 1.7998 -0.900391 2.7998\\nc-0.299805 0.900391 -0.5 1.80078 -0.799805 2.7002c-0.299805 0.900391 -0.599609 1.90039 -0.799805 2.7998c-0.299805 0.900391 -0.5 1.80078 -0.799805 2.7002c-0.299805 1 -0.5 1.90039 -0.799805 2.90039c-0.200195 0.899414 -0.5 1.7998 -0.700195 2.7002\\nc-0.299805 1 -0.5 2 -0.700195 3c-0.200195 0.899414 -0.400391 1.69922 -0.599609 2.59961c-0.200195 1.09961 -0.5 2.2002 -0.700195 3.2002c-0.200195 0.799805 -0.299805 1.59961 -0.5 2.39941c-0.299805 1.30078 -0.5 2.7002 -0.799805 4\\nc-0.100586 0.600586 -0.200195 1.10059 -0.300781 1.7002l-0.899414 5.7002c-0.100586 0.599609 -0.200195 1.2998 -0.299805 1.90039c-0.200195 1.2998 -0.400391 2.59961 -0.5 3.89941c-0.100586 0.799805 -0.200195 1.5 -0.300781 2.2998\\nc-0.0996094 1.2002 -0.299805 2.40039 -0.399414 3.60059c-0.100586 0.799805 -0.200195 1.59961 -0.200195 2.39941c-0.0996094 1.2002 -0.200195 2.40039 -0.299805 3.5c-0.100586 0.800781 -0.100586 1.60059 -0.200195 2.40039\\nc-0.0996094 1.2002 -0.200195 2.40039 -0.200195 3.7002c0 0.799805 -0.0996094 1.5 -0.0996094 2.2998c-0.100586 1.2998 -0.100586 2.7002 -0.200195 4c0 0.700195 0 1.2998 -0.0996094 2c0 2 -0.100586 4 -0.100586 6c0 53.5 16.9004 103 45.7998 143.6\\nc2.30078 3.2002 4.7002 6.40039 7.10059 9.5c4.89941 6.2002 10.0996 12.3008 15.5996 18c2.7002 2.90039 5.5 5.7002 8.40039 8.40039c2.89941 2.7002 5.7998 5.40039 8.7998 8c4.5 3.90039 9.09961 7.59961 13.9004 11.2002c1.59961 1.2002 3.19922 2.39941 4.7998 3.5\\nc27.2998 19.5996 59 33.7002 93.2998 40.7998c16.0996 3.2998 32.9004 5 50 5s33.7998 -1.7002 50 -5c34.2998 -7 66 -21.0996 93.5996 -40.7002c1.60059 -1.2002 3.2002 -2.2998 4.80078 -3.5c4.7998 -3.59961 9.39941 -7.2998 13.8994 -11.2002\\nc12 -10.3994 23 -21.8994 32.7998 -34.3994c2.5 -3.10059 4.80078 -6.2998 7.10059 -9.5zM448 76.5v71.2998c0 2.10059 -1.59961 3.7002 -3.7002 3.7002h-22.2002c-2.09961 0 -3.69922 -1.59961 -3.69922 -3.7002v-25.7998h-29.5v144\\nc0 2.09961 -1.60059 3.7002 -3.7002 3.7002h-22.1006c-2.09961 0 -3.69922 -1.60059 -3.69922 -3.7002v-25.9004h-29.5v25.9004c0 2.09961 -1.60059 3.7002 -3.7002 3.7002h-22.2002c-2.09961 0 -3.7002 -1.60059 -3.7002 -3.7002v-25.9004h-29.5v25.9004\\nc0 4.7998 -6.5 3.7002 -9.5 3.7002v30.7002c6.7002 1.59961 13.7998 2.7998 20.7998 2.7998c8.80078 0 16.8008 -3.5 25.4004 -3.5c3.7002 0 22.4004 0.899414 22.4004 6.5v48.3994c0 2.10059 -1.60059 3.7002 -3.7002 3.7002c-4.2002 0 -12.2002 -3.5 -19.4004 -3.5\\nc-7.89941 0 -16.8994 3.5 -26.2998 3.5c-6.5 0 -12.9004 -0.899414 -19.2002 -2.2998v3.90039c4.40039 2.09961 7.40039 6.69922 7.40039 11.5c0 16.7998 -25.4004 16.7998 -25.4004 0c0 -4.80078 3 -9.5 7.40039 -11.5v-90.2002c-3 0 -9.5 1.09961 -9.5 -3.7002v-25.9004\\nh-29.5v25.9004c0 2.09961 -1.60059 3.7002 -3.7002 3.7002h-22.2002c-2.09961 0 -3.7002 -1.60059 -3.7002 -3.7002v-25.9004h-29.5v25.9004c0 2.09961 -1.59961 3.7002 -3.69922 3.7002h-22.1006c-2.09961 0 -3.7002 -1.60059 -3.7002 -3.7002v-144h-29.5996v25.7998\\nc0 2.10059 -1.59961 3.7002 -3.7002 3.7002h-22.0996c-2.10059 0 -3.7002 -1.59961 -3.7002 -3.7002v-71.2998c9.40039 -15.5 20.5996 -29.9004 33.5996 -42.9004c20.6006 -20.5996 44.5 -36.6992 71.2002 -48c13.9004 -5.89941 28.2002 -10.2998 42.9004 -13.1992v75.7998\\nc0 58.5996 88.5996 58.5996 88.5996 0v-75.7998c14.7002 2.89941 29 7.39941 42.9004 13.1992c26.7002 11.3008 50.5996 27.4004 71.2002 48c13 13 24.1992 27.4004 33.5996 42.9004z\\\" />\\n    <glyph glyph-name=\\\"freebsd\\\" unicode=\\\"&#xf3a4;\\\" \\nd=\\\"M303.7 351.8c11.0996 11.1006 115.5 77 139.2 53.2002c23.6992 -23.7002 -42.1006 -128.1 -53.2002 -139.2c-11.1006 -11.0996 -39.4004 -0.899414 -63.1006 22.9004c-23.7998 23.7002 -34.0996 52 -22.8994 63.0996zM109.9 379.9\\nc-31.6006 -19.4004 -57.9004 -46.5 -76.4004 -78.7002c-20.7998 36.2998 -44.5 89.0996 -27.9004 105.7c16.4004 16.5 68 -6.40039 104.301 -27zM406.7 274c3.2998 5.5 7 11.7998 10.8994 18.7998c17.6006 -31.2998 27.7002 -67.3994 27.7002 -105.8\\nc0 -119.1 -96.5 -215.6 -215.6 -215.6c-119.101 0 -215.601 96.5996 -215.601 215.6c0 119.1 96.5 215.6 215.601 215.6c35.8994 0 69.7002 -8.7998 99.5 -24.2998c-7.2998 -4 -13.9004 -8 -19.6006 -11.5996c-26 4.7002 -32.8994 -16.4004 -14.8994 -48.7002\\nc21.7998 -43.0996 89 -90.4004 109.3 -70.0996c5.40039 5.39941 6 14.7998 2.7002 26.0996z\\\" />\\n    <glyph glyph-name=\\\"gitkraken\\\" unicode=\\\"&#xf3a6;\\\" horiz-adv-x=\\\"592\\\" \\nd=\\\"M565.7 329.9c11.7998 -31.6006 18.2998 -65.7002 18.2998 -101.4c0 -155.1 -122.6 -281.6 -276.3 -287.7v145.8c-8.40039 -0.5 -16.6006 -0.399414 -23.4004 0v-145.899c-153.7 6.2002 -276.3 132.7 -276.3 287.8c0 35.7002 6.5 69.7998 18.2998 101.3\\nc2.2998 6.2002 9.2998 9.2002 15.2998 6.60059c5.7002 -2.40039 8.5 -8.80078 6.30078 -14.6006c-10.9004 -29 -16.9004 -60.5 -16.9004 -93.2998c0 -134.6 100.4 -245.7 230.2 -262.7v123.7c-7.90039 1.59961 -15.4004 3.7002 -23 6.2002v-104\\nc-106.7 26 -185.9 122.1 -185.9 236.8c0 91.7998 50.7998 171.8 125.8 213.3c5.80078 3.2002 13 0.900391 15.9004 -5c2.7002 -5.5 0.700195 -12.0996 -4.7002 -15.0996c-67.8994 -37.7002 -113.899 -110.101 -113.899 -193.2c0 -93.4004 57.8994 -173.2 139.8 -205.4\\nv92.2002c-14.2002 4.5 -24.7998 17.7002 -24.7998 33.5c0 13.1006 6.69922 24.4004 17.2998 30.5c-8.2002 79.6006 -44.5 58.6006 -44.5 83.9004v14.7998c0 38 87.8994 161.7 129.1 164.7c2.60059 0.200195 5.10059 0.200195 7.60059 0\\nc41.0996 -2.90039 129 -126.7 129 -164.7v-14.7002c0 -25.2998 -36.2002 -4.39941 -44.5 -83.8994c10.5 -6.10059 17.2998 -17.4004 17.2998 -30.5c0 -15.8008 -10.7002 -29 -24.9004 -33.5v-92.2002c81.9004 32.2998 139.8 112.1 139.8 205.399\\nc0 83.2002 -46 155.601 -113.899 193.2c-5.2998 2.90039 -7.40039 9.60059 -4.7002 15.1006c2.90039 5.89941 10.2002 8.19922 15.9004 5c75 -41.5 125.8 -121.5 125.8 -213.301c0 -114.699 -79.2002 -210.899 -185.9 -236.8v104\\nc-7.5 -2.59961 -15.0996 -4.7002 -23 -6.2002v-123.699c129.9 17 230.2 128.1 230.2 262.699c0 32.8008 -6 64.3008 -16.9004 93.3008c-2.19922 5.69922 0.600586 12.1992 6.30078 14.5996c6 2.59961 13 -0.5 15.2998 -6.59961zM365.9 172.5\\nc-13.1006 0 -23.7002 -10.5996 -23.7002 -23.7002c0 -13.2002 10.7002 -23.7002 23.7002 -23.7002c13.0996 0 23.6992 10.6006 23.6992 23.7002c0 13.2002 -10.6992 23.7002 -23.6992 23.7002zM226.1 125.2c13.2002 0 23.7002 10.7002 23.7002 23.7002\\nc0 13.0996 -10.5996 23.6992 -23.7002 23.6992c-13.1992 0 -23.6992 -10.6992 -23.6992 -23.6992s10.5 -23.7002 23.6992 -23.7002z\\\" />\\n    <glyph glyph-name=\\\"gofore\\\" unicode=\\\"&#xf3a7;\\\" horiz-adv-x=\\\"400\\\" \\nd=\\\"M324 128.2c54.2998 0 65.7002 -50.1006 67.7002 -77.7002c-46.5 -56.2998 -107.8 -82.5 -171 -82.5c-123.7 0 -220.7 101.5 -220.7 224c0 123.4 98 224 220.7 224c59 0 114.3 -23.2998 156.1 -65.5996l-62.2998 -63.3008c-25 25.4004 -58.2998 39.4004 -93.5996 39.4004\\nc-73.2002 0 -132.4 -60.2998 -132.4 -134.4c0 -74.1992 59.2002 -134.399 132.4 -134.399c33.5996 0 65.3994 12.7002 89.8994 35.7998v34.7002h13.2002zM311.9 240.7c47.6992 0 88.0996 -35 88.0996 -100.2v-30.5996c-15.5 26.6992 -42.5 41.7998 -76 41.7998h-118.4v89\\nh106.301z\\\" />\\n    <glyph glyph-name=\\\"goodreads\\\" unicode=\\\"&#xf3a8;\\\" \\nd=\\\"M299.9 256.8c5.09961 -37.2998 -4.7002 -79 -35.9004 -100.7c-22.2998 -15.5 -52.7998 -14.0996 -70.7998 -5.69922c-37.1006 17.2998 -49.5 58.5996 -46.7998 97.1992c4.2998 60.9004 40.8994 87.9004 75.2998 87.5c46.8994 0.200195 71.7998 -31.7998 78.2002 -78.2998\\nzM448 360v-336c0 -30.9004 -25.0996 -56 -56 -56h-336c-30.9004 0 -56 25.0996 -56 56v336c0 30.9004 25.0996 56 56 56h336c30.9004 0 56 -25.0996 56 -56zM330 134.8c0 0 -0.0996094 34 -0.0996094 217.3h-29v-40.2998c-0.800781 -0.299805 -1.2002 0.5 -1.60059 1.2002\\nc-9.59961 20.7002 -35.8994 46.2998 -76 46c-51.8994 -0.400391 -87.2002 -31.2002 -100.6 -77.7998c-4.2998 -14.9004 -5.7998 -30.1006 -5.5 -45.6006c1.7002 -77.8994 45.0996 -117.8 112.399 -115.199c28.9004 1.09961 54.5 17 69 45.1992\\nc0.5 1 1.10059 1.90039 1.7002 2.90039c0.200195 -0.0996094 0.400391 -0.0996094 0.600586 -0.200195c0.299805 -3.7998 0.199219 -30.7002 0.0996094 -34.5c-0.200195 -14.7998 -2 -29.5 -7.2002 -43.5c-7.7998 -21 -22.2998 -34.7002 -44.5 -39.5\\nc-17.7998 -3.89941 -35.5996 -3.7998 -53.2002 1.2002c-21.5 6.09961 -36.5 19 -41.0996 41.7998c-0.299805 1.60059 -1.2998 1.2998 -2.2998 1.2998h-26.7998c0.799805 -10.5996 3.19922 -20.2998 8.5 -29.1992c24.1992 -40.5 82.6992 -48.5 128.199 -37.4004\\nc49.9004 12.2998 67.3008 54.9004 67.4004 106.3z\\\" />\\n    <glyph glyph-name=\\\"goodreads-g\\\" unicode=\\\"&#xf3a9;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M42.5996 44.7002h2.80078c12.6992 0 25.5 0 38.1992 -0.100586c1.60059 0 3.10059 0.400391 3.60059 -2.09961c7.09961 -34.9004 30 -54.5996 62.8994 -63.9004c26.9004 -7.59961 54.1006 -7.7998 81.3008 -1.7998c33.7998 7.40039 56 28.2998 68 60.4004\\nc8 21.5 10.6992 43.7998 11 66.5c0.0996094 5.7998 0.299805 47 -0.200195 52.7998l-0.900391 0.299805c-0.799805 -1.5 -1.7002 -2.89941 -2.5 -4.39941c-22.0996 -43.1006 -61.2998 -67.4004 -105.399 -69.1006c-103 -4 -169.4 57 -172 176.2\\nc-0.5 23.7002 1.7998 46.9004 8.2998 69.7002c20.5996 71.0996 74.5996 118.2 153.899 118.8c61.3008 0.400391 101.5 -38.7002 116.2 -70.2998c0.5 -1.10059 1.2998 -2.2998 2.40039 -1.90039v61.6006h44.2998c0 -280.301 0.0996094 -332.2 0.0996094 -332.2\\nc-0.0996094 -78.5 -26.6992 -143.7 -103 -162.2c-69.5 -16.9004 -159 -4.7998 -196 57.2002c-8 13.5 -11.7998 28.2998 -13 44.5zM188.9 411.5c-52.5 0.5 -108.5 -40.7002 -115 -133.8c-4.10059 -59 14.7998 -122.2 71.5 -148.601\\nc27.5996 -12.8994 74.2998 -15 108.3 8.7002c47.5996 33.2002 62.7002 97 54.7998 154c-9.7002 71.1006 -47.7998 120 -119.6 119.7z\\\" />\\n    <glyph glyph-name=\\\"google-drive\\\" unicode=\\\"&#xf3aa;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M339 133.1l-163.6 282.9h161.199l163.601 -282.9h-161.2zM201.5 109.5h310.5l-80.5996 -141.5h-310.5zM154.1 380.6l82.9004 -141.399l-156.4 -271.2l-80.5996 141.5z\\\" />\\n    <glyph glyph-name=\\\"google-play\\\" unicode=\\\"&#xf3ab;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M325.3 213.7l-220.7 221.3l280.801 -161.2zM47 448l256.6 -255.9l-256.6 -256c-13 6.80078 -21.7002 19.2002 -21.7002 35.3008v441.3c0 16.0996 8.7002 28.5 21.7002 35.2998zM472.2 222.4c19.2002 -14.3008 19.2002 -46.5 1.2002 -60.8008l-60.1006 -34.0996\\nl-65.7002 64.5l65.7002 64.5zM104.6 -51l220.7 221.3l60.1006 -60.0996z\\\" />\\n    <glyph glyph-name=\\\"gripfire\\\" unicode=\\\"&#xf3ac;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M112.5 146.6c0 -26.8994 16.5996 -47.1992 32.5996 -69.5c22.5 -30.1992 44.2002 -56.8994 44.2002 -86.5c-0.0996094 -14.5 -4.39941 -29.6992 -17.5 -46.3994c0 5.2998 4.7998 12.2002 4.7998 22.2998c0 15.2002 -13 39.9004 -78.0996 86.5996\\nc-34.2998 29.1006 -66.5 58.5 -66.5 108.301c0 114.699 147.1 176.5 147.1 268.6c0 3.2998 -0.199219 6.7002 -0.599609 10c5.09961 -2.40039 39.0996 -43.2998 39.0996 -90.4004c0 -80.5 -105.1 -129.199 -105.1 -203zM317.8 185.6\\nc1.5 -8.39941 2.2002 -16.5996 2.2002 -24.5996c0 -51.7998 -29.4004 -97.5 -67.2998 -136.8c-1 -1 -2.2002 -2.40039 -3.2002 -2.40039c-3.59961 0 -35.5 41.6006 -35.5 53.2002c0 0 41.7998 55.7002 41.7998 96.9004c0 10.7998 -2.7002 21.6992 -9.09961 33.3994\\nc-1.5 -32.2998 -55.7002 -87.7002 -58.1006 -87.7002c-2.69922 0 -17.8994 22 -17.8994 42.1006c0 5.2998 1 10.7002 3.2002 15.7998c2.39941 5.5 56.5996 72 56.5996 116.7c0 6.2002 -1 12 -3.40039 17.0996l-4 7.2002c16.7002 -6.5 82.6006 -64.0996 94.7002 -130.9z\\\" />\\n    <glyph glyph-name=\\\"grunt\\\" unicode=\\\"&#xf3ad;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M61.2998 258.7c0.5 4.89941 2.7998 10 7 12h0.100586c-4.60059 1.7002 -9.2002 3.09961 -13.5 4.09961c42.1992 10.2002 73.3994 -20.5996 83.0996 -31.7998c16.5996 -19.2002 35.5 -8.7998 35.5 -8.7998c0.299805 -11.1006 -10.2998 -19 -21.0996 -19.5\\nc1.19922 -15.4004 -13.9004 -32.5 -13.9004 -32.5s5.59961 15 2.7002 25.2998c-0.900391 3.2002 -2 6.09961 -3 8.5c-19.2998 -17.2002 -48 -1.5 -54.9004 6.09961c-9.59961 10.6006 -12.3994 23.8008 -12.7998 34.1006c-1.7998 -3.7998 -3.2998 -9.10059 -4 -16.6006\\nc0 0 -6.2998 9.10059 -5.2002 19.1006zM89.5996 260.5c-2.89941 -9.09961 -3.39941 -27.7002 6.90039 -35.2998c16.2998 -12.1006 32.2998 -5 38 -1.7002c-7.5 11.2998 -25.4004 26 -44.9004 37zM231.7 214.7c-10.7998 0.399414 -21.4004 8.39941 -21.2002 19.2998\\nc0 0 18.7998 -10.4004 35.5 8.7998c9.7002 11.2002 40.7998 42 83.0996 31.7998c-4.2998 -0.899414 -8.89941 -2.2998 -13.5 -4.09961h0.100586c4.09961 -1.7998 6.39941 -6.7998 7 -11.7998c1.2002 -10 -5.2002 -19.1006 -5.2002 -19.1006\\nc-0.599609 7.5 -2.2002 12.8008 -4 16.6006c-0.5 -10.2998 -3.2002 -23.5 -12.7998 -34.1006c-6.7998 -7.59961 -35.5 -23.3994 -54.7998 -6.09961c-1 -2.5 -2.10059 -5.2998 -3 -8.5c-2.90039 -10.2998 2.69922 -25.2998 2.69922 -25.2998s-15.0996 17 -13.8994 32.5z\\nM294.4 260.5c-19.5 -11 -37.4004 -25.5996 -44.9004 -37c5.7002 -3.40039 21.5996 -10.5 37.9004 1.59961c10.3994 7.7002 10 26.3008 7 35.4004zM160 29.5c4.09961 0 7 -0.900391 8.7998 -2.7002c2.2002 -2.2998 1.5 -5.2998 0.900391 -6.7998\\nc-1.10059 -2.7002 -5.5 -11.5996 -13 -19.7998c-2.7002 -2.90039 -6.60059 -4.60059 -11 -4.60059c-4.2998 0 -8.7002 1.60059 -11.7998 4.30078c-2.30078 2.09961 -10.2002 9.5 -13.7002 18.5996c-1.2998 3.40039 -1 6.09961 0.899414 8.09961\\nc1.30078 1.30078 4 2.90039 9.5 2.90039h29.4004zM349.2 130.7c0 0 29.2998 -22.5 21.0996 -70.9004c-5.2998 -29.5 -23.2002 -46 -47 -54.7002c-8.7998 -19.0996 -29.3994 -45.6992 -67.2998 -49.5996c-14.5 -11.7998 -34.5 -19.5 -63.5996 -19.5h-0.200195\\nc-29.2002 0 -49.2002 7.7002 -63.6006 19.5c-37.8994 3.90039 -58.5 30.5 -67.2998 49.5996c-23.7998 8.60059 -41.7998 25.2002 -47 54.7002c-8.59961 48.2002 20.6006 70.7998 20.6006 70.7998c2.39941 -17.8994 13 -33.8994 24.5996 -43.7998\\nc3.09961 22.7002 3.7002 55.5 3.7002 62.4004c0 14.7002 -9.5 24.5 -12.2002 26.0996c-2.5 1.5 -5.2998 3 -8.2998 4.60059c-18 9.59961 -40.4004 21.5996 -40.4004 43.6992c0 16.1006 9.2998 23.2002 15.4004 27.8008c0.799805 0.599609 1.5 1.19922 2.2002 1.69922\\nc2.09961 1.7002 3.69922 3 4.2998 4.40039c4.39941 9.7998 3.59961 34.2002 1.7002 37.5996c-0.600586 0.700195 -16.8008 21 -11.8008 39.2002c2 7.40039 6.90039 13.2998 14.1006 17c5.2998 2.7002 11.7998 4.2002 19.5 4.5c0.0996094 2 0.5 4 0.899414 5.90039\\nc0.5 2.59961 1.10059 5.2998 0.900391 8.09961c-0.400391 4.7002 -0.799805 9.10059 -2.2002 11.2998c-8.39941 13.3008 -28.7998 17.6006 -29 17.6006l-12.2998 2.39941l8.09961 9.40039c0.200195 0.200195 17.3008 17.5 46.3008 17.5c7.89941 0 16 -1.2998 23.8994 -3.5\\nc24.2998 -7.7998 42.9004 -30.5 49.4004 -39.2998c2 0.599609 3.89941 1.2002 5.89941 1.7002c-1 26.3994 20.7002 47.3994 28.2002 48.2998c0.5 -4.5 -0.399414 -22.2002 7.2002 -27.6006c2.2002 14.4004 9.59961 30.3008 39.0996 40.7002\\nc-6.2998 -16.7002 -0.799805 -30.7002 1.80078 -37.2002c20.0996 18.2002 33.6992 15.2002 33.6992 15.2002s-13.1992 -22.7002 -9 -38.5c3.30078 -0.799805 6.5 -1.7002 9.60059 -2.7002c6.5 8.80078 25.2002 31.5 49.3994 39.3008\\nc8.10059 2.59961 16.2002 3.89941 24.1006 3.89941c29 0 46.2002 -17.2998 46.2998 -17.5l8.09961 -9.5l-12.2998 -2.39941c-0.200195 0 -20.5996 -4.30078 -29 -17.6006c-1.39941 -2.2998 -1.7998 -6.59961 -2.2002 -11.2998\\nc-0.199219 -2.7998 0.300781 -5.5 0.900391 -8.09961c0.400391 -2 0.799805 -3.90039 0.900391 -5.90039c7.59961 -0.299805 14.1992 -1.7998 19.5 -4.5c7.19922 -3.7002 12.0996 -9.59961 14.0996 -17c4.90039 -18.2998 -11.2002 -38.5996 -11.7998 -39.2002\\nc-1.90039 -3.39941 -2.7002 -27.7998 1.7002 -37.5996c0.599609 -1.40039 2.19922 -2.7002 4.2998 -4.40039c0.700195 -0.599609 1.39941 -1.09961 2.2002 -1.7002c6.09961 -4.59961 15.3994 -11.5996 15.3994 -27.7998c0 -22.0996 -22.3994 -34.0996 -40.3994 -43.7002\\nc-2.90039 -1.59961 -5.80078 -3.09961 -8.30078 -4.59961c-2.69922 -1.59961 -12.1992 -11.4004 -12.1992 -26.0996c0 -6.90039 0.599609 -39.7002 3.69922 -62.4004c11.6006 9.90039 22.2002 25.7998 24.6006 43.7002zM305.7 410.3\\nc-17.7998 -5.7002 -31.6006 -23.0996 -37.7002 -32.2002c1.59961 -0.699219 3.09961 -1.39941 4.7002 -2.19922c2.59961 -1.2002 4.89941 -2.40039 7.09961 -3.7002c2.7002 5.5 8.40039 13.7002 20.7002 22.3994c8.2002 5.80078 18.2002 8.90039 28.7002 8.90039\\nc3.59961 0 6.7998 -0.400391 9.2002 -0.799805c3.2998 2.09961 6.59961 3.89941 9.69922 5.2998c-4.7998 2 -13.6992 5 -24.6992 5c-6.10059 0 -12.1006 -0.900391 -17.7002 -2.7002zM326.7 392.1c-7.40039 -0.299805 -14 -2.69922 -19.6006 -7\\nc-8 -6.39941 -12.0996 -17.6992 -13.5 -22.5c4.90039 -4.19922 8.2002 -8.09961 10.5 -11.1992c3.40039 1 7.30078 1.89941 11.5 2.69922c3.30078 4.5 3.90039 10.6006 4.40039 17c0.5 6.2002 1.09961 12.6006 4.40039 17.8008c0.699219 1.09961 1.5 2.19922 2.2998 3.19922\\nzM45.5996 402.7c2.40039 0.399414 5.60059 0.799805 9 0.899414c10.6006 0 20.5 -3.09961 28.8008 -8.89941c12.3994 -8.7002 18.0996 -17 20.6992 -22.4004c2.2002 1.2002 4.60059 2.5 7.10059 3.7002c1.59961 0.799805 3.2002 1.5 4.7998 2.2002\\nc-6.09961 8.89941 -19.9004 26.2998 -37.7002 32.0996c-5.7002 1.7998 -11.5996 2.7002 -17.7002 2.7002c-11 0 -19.8994 -3 -24.6992 -5c3.09961 -1.2998 6.39941 -3.09961 9.69922 -5.2998zM90.2998 362.6c-1.39941 4.80078 -5.5 16.1006 -13.5 22.4004\\nc-5.5 4.40039 -12.0996 6.7002 -19.5 7c0.799805 -1 1.60059 -2.09961 2.2998 -3.2002c3.30078 -5.2002 3.90039 -11.5996 4.40039 -17.7998c0.5 -6.40039 1 -12.5 4.2998 -16.9004c4.2002 -0.799805 8.10059 -1.7998 11.5 -2.69922c2.2002 3.19922 5.60059 7 10.5 11.1992z\\nM58.0996 188.1c8.7002 -5 18.1006 -16.7998 19 -34.1992c0.900391 -14.7002 -0.899414 -49.9004 -3.39941 -75.9004c12.5 -4.7998 26.7002 -6.40039 39.7002 -6.7998c2 4.09961 3.89941 8.5 5.5 13.0996c0.699219 1.90039 19.5996 51 26.3994 62.2002\\nc-5.39941 -39 -17.5 -73.7002 -23.5 -89.5996c3.40039 0.399414 7.2998 0.699219 11.7002 0.699219h117c4.40039 0 8.2002 -0.199219 11.7002 -0.699219c-6 15.8994 -18 50.5996 -23.5 89.5996c6.7998 -11.0996 25.7002 -60.2002 26.3994 -62.2002\\nc1.60059 -4.59961 3.5 -9 5.5 -13.0996c13 0.399414 27.3008 2 39.7002 6.7998c-2.5 26 -4.2998 61.2998 -3.39941 75.9004c1.09961 17.5 10.3994 29.1992 19.0996 34.1992c2.7002 1.5 5.5 3.10059 8.40039 4.60059c14.7998 8 30.1992 16.2998 30.1992 30.5\\nc0 11.0996 -4.2998 14.5 -8.89941 18.2002l-0.5 0.399414c-0.700195 0.600586 -1.5 1.2002 -2.2002 1.7998c0.900391 -7.19922 1.90039 -13.2998 2.7002 -14.8994c0 0 -12.1006 15 -15.7002 44.2998c-1.40039 11.5 1.09961 34.2002 5.09961 43\\nc-0.199219 -4.90039 0 -9.7998 0.300781 -14.4004c0.399414 0.900391 0.799805 1.60059 1.2998 2.2002c3.2998 4 11.8994 17.5 9.39941 26.6006c-1 3.39941 -3.19922 6 -6.69922 7.7998c-3.80078 1.89941 -8.80078 2.89941 -15.1006 2.89941\\nc-12.2998 0 -25.8994 -3.7998 -32.8994 -6c-25.1006 -7.89941 -55.4004 -30.8994 -64.1006 -37.6992c-0.200195 -0.200195 -0.399414 -0.300781 -0.399414 -0.300781l-5.60059 -3.89941l3.5 5.7998c0.200195 0.299805 19.1006 31.4004 53.1006 46.5\\nc-2 2.90039 -7.40039 8.2002 -21.6006 15.0996c-21.3994 10.5 -46.3994 15.8008 -74.2998 15.8008c-27.7998 0 -52.9004 -5.30078 -74.2998 -15.8008c-14.2002 -7 -19.6006 -12.1992 -21.6006 -15.0996c34.1006 -15.0996 53 -46.2002 53.2002 -46.5l3.5 -5.7998\\nl-5.59961 3.89941s-0.200195 0.100586 -0.400391 0.300781c-8.7002 6.7998 -39 29.6992 -64.0996 37.6992c-7 2.30078 -20.6006 6 -32.9004 6c-6.2998 0 -11.2998 -1 -15.0996 -2.89941c-3.60059 -1.7998 -5.7998 -4.2998 -6.7002 -7.7998\\nc-2.40039 -9.10059 6.2002 -22.6006 9.40039 -26.6006c0.5 -0.599609 0.899414 -1.39941 1.2998 -2.2002c0.299805 4.60059 0.5 9.5 0.299805 14.4004c4 -8.7002 6.5 -31.5 5.09961 -43c-3.59961 -29.2998 -15.6992 -44.2998 -15.6992 -44.2998\\nc0.799805 1.59961 1.7998 7.7002 2.69922 14.8994c-0.799805 -0.599609 -1.5 -1.19922 -2.19922 -1.7998l-0.5 -0.399414c-4.60059 -3.60059 -8.90039 -7.10059 -8.90039 -18.2002c0 -14.2002 15.2998 -22.5 30.2002 -30.5c2.7998 -1.5 5.7002 -3 8.39941 -4.60059z\\nM34.7998 43.4004c11.9004 -19.7002 35.5 -29.4004 58.2002 -29.5c-4.5 13.2998 -3.09961 24 4.09961 31.7998l1.40039 1.39941c1.7998 2.40039 4.2998 5.80078 7 10c-27.2002 1.10059 -63.5 11 -74.4004 45.4004c-5 -5 -8.39941 -39.0996 3.7002 -59.0996zM80.5 -0.0996094\\nc6.5 -9.5 16.5 -19.6006 30.9004 -25.5c-4.90039 7.19922 -8.80078 15.0996 -12.3008 23.0996c-6.39941 0.5 -12.5996 1.2998 -18.5996 2.40039zM192 -50.2002c60.5996 0.100586 78.2998 45.9004 84.9004 64.7002c3.59961 10.5 3.2998 18.2998 -0.900391 23.0996\\nc-2.7998 3.30078 -9.5 7.2002 -24.5996 7.2002h-118.801c-15.0996 0 -21.6992 -3.89941 -24.5996 -7.2002c-4.2998 -4.89941 -4.59961 -12.5996 -0.900391 -23.0996c6.60059 -18.9004 24.3008 -64.5996 84.9004 -64.7002zM272.6 -25.5996\\nc14.4004 5.89941 24.4004 16 30.9004 25.5c-6 -1.10059 -12.2002 -1.90039 -18.5996 -2.40039c-3.5 -8 -7.40039 -15.9004 -12.3008 -23.0996zM349.2 43.4004c12.2002 19.8994 8.7998 54 3.7998 59c-10.9004 -34.4004 -47.2002 -44.2002 -74.4004 -45.4004\\nc2.7002 -4.2002 5.2002 -7.59961 7 -10c0.5 -0.5 1 -1 1.40039 -1.5c7.2002 -7.7002 8.59961 -18.5 4.09961 -31.7998c22.5 0.399414 46.1006 10 58.1006 29.7002zM191.9 260.3c-12.7002 0.200195 -27.2002 17.7998 -27.2002 17.7998\\nc9.89941 -6 18.7998 -8.09961 27.2998 -8.2998c8.5 0.200195 17.4004 2.2998 27.2998 8.2998c0 0 -14.5 -17.6992 -27.2002 -17.7998h-0.199219zM253.6 29.5996c5.40039 -0.0996094 8.10059 -1.69922 9.40039 -3c1.90039 -1.89941 2.2002 -4.59961 0.900391 -7.89941\\nc-3.5 -8.90039 -11.4004 -16.1006 -13.7002 -18.1006c-3.10059 -2.59961 -7.40039 -4.19922 -11.7998 -4.19922c-4.40039 0 -8.30078 1.59961 -11 4.5c-7.5 8 -12 16.6992 -13 19.2998c-0.600586 1.5 -1.30078 4.39941 0.899414 6.7002\\nc1.7002 1.7998 4.7002 2.69922 8.90039 2.69922h29.3994z\\\" />\\n    <glyph glyph-name=\\\"gulp\\\" unicode=\\\"&#xf3ae;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M209.8 56.9004l-14.0996 -24.6006l-4.60059 -80.2002c0 -8.89941 -28.2998 -16.0996 -63.0996 -16.0996s-63.0996 7.2002 -63.0996 16.0996l-5.80078 79.4004l-14.8994 25.4004c41.2002 -17.3008 126 -16.7002 165.6 0zM13.7998 310.2\\nc30.7002 -17 197.8 -16.9004 228.3 0.200195l-14.7998 -136.801c-4.7998 -4.19922 -11.5996 -10.1992 -16.5996 -14.0996c-1.60059 -1.2002 -6 -4.7002 -8 -4.7002c-1.2998 0 -2.2002 0.5 -2.2002 1.7998c0.0996094 1 3.40039 4.5 5 6.40039\\nc4.90039 5.7002 13.7998 16 13.7998 23.4004c0 7 -10.7002 14.0996 -25.7002 0.199219c-1.59961 -1.5 -3.09961 -3 -4.5 -4.5c0.400391 1.10059 1.10059 5.10059 1.10059 6.2002c0 2.7998 -1.40039 4 -4.2002 4c-1 0 -1.90039 -0.599609 -2.7002 -1.59961\\nc-2.59961 -3.10059 -3.89941 -7.5 -5.2998 -11.2998c-0.5 -1.80078 -1.09961 -3.60059 -1.7002 -5.5c-0.399414 -0.200195 -0.700195 -0.300781 -0.899414 -0.600586c-3.80078 -3.89941 -17.7002 -17 -23.1006 -17c-2.2998 0 -1.59961 3.60059 -1 5.7998\\nc1 3.40039 6.7998 17.7002 8.7002 22.3008c4.59961 11.0996 8 19.7998 13.2002 31.8994c3.89941 9.2002 3.7998 8.60059 4.5 10.5c0.700195 2.10059 0.700195 4.90039 -1 6.2002c-1 0.700195 -2 1.09961 -3.2002 1.09961c-2.40039 0 -4.7998 -1.39941 -6.09961 -4.69922\\nc-25.5 -64.4004 -25.2002 -63.3008 -26.4004 -68.2002c-2 -1.7002 -4.40039 -3.40039 -6.7998 -4.5c-3.10059 -1.40039 -6.7998 -2.2002 -6.7998 1.2002c0 3.69922 1.39941 8.19922 2.69922 11.6992c2.2002 6.10059 4.90039 11.1006 6.90039 16.7002\\nc0.900391 2.40039 1.2998 4.7002 -0.400391 6.90039c-0.799805 1 -1.89941 1.5 -3.19922 1.5c-2.60059 0 -4.10059 -2.60059 -5.2002 -5.10059c-0.700195 -1.5 -1.2998 -3.09961 -1.7998 -4.7998c-1.2002 -4 -3.60059 -8.7002 -5.60059 -12.2998\\nc-2.7998 -5 -6.5 -10.0996 -11.0996 -13.5c-2.2002 -1.59961 -4.5 -2.40039 -6.90039 -2.40039c-3.5 0 -2.39941 5.7002 -1.5 9c2.2002 7.80078 5.5 13.3008 9.2998 20.8008c1.30078 2.69922 2.30078 5.39941 -0.299805 7.19922c-0.5 0.300781 -1 0.5 -1.59961 0.700195\\nc-3.40039 0.900391 -6 -1.09961 -7.60059 -4.5c-3.09961 -6.2998 -5.39941 -11.7002 -7.09961 -16.2002c-3.2998 -8.89941 -6.90039 -18.2998 -4.59961 -23.7998c1.5 -3.7002 4.5 -5.09961 8.59961 -5.09961c9.7998 0 17.7998 6.7002 22.4004 14.8994\\nc-4.30078 -19.7998 8.19922 -17.2998 20 -8.09961c0.0996094 -0.400391 0.0996094 -0.799805 0.199219 -1.2002c1.5 -6.7002 8.7002 -6.7002 14.5 -4.09961c3.5 1.59961 8.2002 4.5 14.4004 10.5c0.200195 0.299805 0.799805 1.39941 -0.799805 -2.2998\\nc-7.2002 -16.2002 -13.5 -28.2002 -15 -34.3008c-0.200195 -0.899414 -0.299805 -1.7998 -0.299805 -2.69922c0 -1.80078 0.399414 -3.10059 1.2998 -3.7002c1.59961 -1.2002 4.2002 -1.2998 6.09961 -0.299805c1.7998 1 3.10059 2.59961 4 4.5\\nc1 2.19922 0.200195 0.699219 5.2002 14c5 13.3994 2.90039 7.7998 9.09961 22c1.90039 4.2998 4.2002 9.5 8.5 15.5c2.5 3.39941 5.5 7 8.7002 9.69922c5.7002 4.7002 11.7002 5.40039 11.7002 2.5c0 -2.19922 -3.2998 -6.39941 -4.7002 -8.09961\\nc-5.2998 -6.7002 -14.3994 -16.2998 -14.3994 -21.5c0 -9.5 12 -8 17.3994 -5.7002c7.2998 3.2002 13.9004 9.60059 19.6006 14.7998l-10.9004 -94.5996c-1.90039 -4.90039 -39.0996 -17.0996 -88.2002 -17.0996c-49 0 -86.2002 12.0996 -88.2002 17.0996l-7.59961 79.5996\\nc2.09961 -1.5 4.2998 -2.39941 7.7002 -2.39941c7.39941 0 16.0996 6.7002 21.5 11.7998c2.2998 2.2002 4.39941 4.40039 6.39941 6.59961c-1 -3 -7.09961 -22 -7.2998 -25.1992c-0.0996094 -1 -0.200195 -4.90039 0.799805 -6.30078\\nc0.5 -0.799805 1.40039 -1.19922 2.60059 -1.19922c2.89941 0 5.59961 4.69922 6.2998 7.5c0 0 1.7998 6.2998 7.59961 25.7998c6.30078 21.0996 10 24.5 10 34.7002c0 5.59961 -7.2998 6.7998 -9.89941 0l-5.2002 -15.5c-2.2002 -4.5 -8 -11.5 -12.5 -16\\nc-3.5 -3.5 -10.7998 -10.1006 -15.7998 -10.1006c-2.40039 0 -3.90039 1.40039 -4.90039 3.60059c-2.2998 5.2998 -0.899414 14.2998 0.600586 19.8994c2.59961 9.7002 6.89941 19.4004 12 28.2002c4.19922 7.2998 10.1992 15.7002 17.0996 20.7002\\nc6.59961 4.7998 12.7998 4.5 16.9004 -2.7998c1.5 -2.7002 3.7998 -7.30078 6.7998 -7.30078c2.5 0 5.7002 2.60059 4.5 9.10059c-0.5 2.5 -4.90039 8.7998 -10.1006 11.7998c-6 3.59961 -12.3994 3.59961 -18.6992 0.900391\\nc-19.2002 -8.2002 -34.1006 -35.2002 -40 -55.2002zM243.5 318.7c0 -21 -231.2 -21 -231.2 0c0 8.7998 51.7998 15.8994 115.601 15.8994c9 0 17.7998 -0.0996094 26.2998 -0.399414l12.5996 48.7002l61.2998 64.5c1.40039 1.39941 5.80078 0.199219 9.90039 -3.5\\nc4.09961 -3.7002 6.59961 -7.90039 5.2998 -9.30078l-0.0996094 -0.0996094l-57.2998 -60.5l-10 -40.7002c39.8994 -2.59961 67.5996 -8.09961 67.5996 -14.5996zM174.1 314.1c0 0.800781 -0.899414 1.5 -2.5 2.10059l-0.199219 -0.799805\\nc0 -1.30078 -5 -2.40039 -11.1006 -2.40039c-6.09961 0 -11.0996 1.09961 -11.0996 2.40039c0 0.0996094 0 0.199219 0.0996094 0.299805l0.200195 0.700195c-1.7998 -0.600586 -3 -1.40039 -3 -2.30078c0 -2.09961 6.2002 -3.69922 13.7002 -3.69922\\nc7.7002 -0.100586 13.8994 1.59961 13.8994 3.69922z\\\" />\\n    <glyph glyph-name=\\\"hacker-news-square\\\" unicode=\\\"&#xf3af;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM21.2002 218.8h-0.200195c0.0996094 0.100586 0.200195 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.0996094 -0.400391z\\nM239.2 164.9l80.7998 155.1h-34.7998c-54.7998 -101.2 -48.2998 -98.5996 -60.6006 -125.6c-10.0996 24.3994 -6.7998 27.2998 -59.2998 125.6h-37.2998l79.7998 -153.3v-102.7h31.4004v100.9z\\\" />\\n    <glyph glyph-name=\\\"hire-a-helper\\\" unicode=\\\"&#xf3b0;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M443.1 448c3.90039 -36.4004 32.5 -65.7998 68.9004 -71.7002v-370.5c-35.4004 -4 -64.9004 -33.3994 -67.9004 -69.7998h-372.199c-5.90039 36.4004 -34.5 63.9004 -71.9004 68.7998v371.5c37.4004 3.90039 67.9004 34.4004 71.9004 71.7002h371.199zM406.1 43.0996\\nc7.80078 0 5.80078 10.8008 0 10.8008c-10.2998 3.39941 -13.5 3.59961 -21.6992 13.7998c-7.80078 12.8994 -7.90039 44.3994 -7.90039 127.8v101.2c0 22.0996 12.2002 28.2998 28.5996 32.3994c8.90039 2.2002 3.90039 11.8008 -1 11.8008\\nc-36.5 0 -20.5996 -2 -57.0996 -2c-32.7002 0 -16.5 2 -49.2002 2c-3.2998 0 -8.5 -8.30078 -1 -10.8008c4.90039 -1.59961 27.6006 -3.69922 27.6006 -39.2998c0 -45.5996 0.199219 -55.7998 -1 -68.7998c0 -1.2998 -2.30078 -12.7998 -12.8008 -12.7998h-109.199\\nc-10.5 0 -12.8008 11.5 -12.8008 12.7998c-1.19922 13 -1 23.2002 -1 68.7998c0 35.6006 22.7002 37.7002 27.6006 39.2998c7.5 2.5 2.2998 10.8008 -1 10.8008c-32.7002 0 -16.5 -2 -49.2002 -2c-36.5 0 -20.5996 2 -57.0996 2c-5 0 -9.80078 -9.60059 -1 -11.8008\\nc16.3994 -4.09961 28.5996 -10.1992 28.5996 -32.3994v-101.2c0 -83.4004 -0.200195 -114.9 -7.90039 -127.8c-8.19922 -10.2998 -11.5 -10.4004 -21.6992 -13.7998c-5.80078 0 -7.90039 -10.8008 0 -10.8008c36.2998 0 18.7998 2 55.0996 2c35.7998 0 21 -2 56.0996 -2\\nc6 0 4.90039 8.2002 0 9.80078c-22.7998 7.59961 -22.8994 10.2998 -24.5996 12.7998c-10.4004 15.5996 -5.90039 83 -5.90039 113c0 5.2998 6.40039 12.7998 13.8008 12.7998h111.199c7.40039 0 13.8008 -7.5 13.8008 -12.7998c0 -30 4.5 -97.4004 -5.90039 -113\\nc-1.7002 -2.60059 -1.7998 -5.2002 -24.5996 -12.7998c-4.90039 -1.60059 -5.90039 -9.80078 0 -9.80078c35.0996 0 20.2998 2 56.0996 2c36.2998 0 18.7998 -2 55.0996 -2z\\\" />\\n    <glyph glyph-name=\\\"hotjar\\\" unicode=\\\"&#xf3b1;\\\" \\nd=\\\"M414.9 286.5c30 -53 41.7998 -121.6 26.2998 -180.9c-14.7002 -56.6992 -68.2998 -120.3 -148.8 -145.6c54.5 76.9004 43.8994 200.1 -27.1006 215.5c54.2002 -93.9004 -53.7002 -180.3 -110.8 -93.9004c-2.5 -7.19922 -25.0996 -74.5 4.09961 -129.6\\nc-61.0996 9.09961 -117.8 33.5 -144.6 93.4004c-35 78.1992 -2.7002 149.8 79 204.899c129.2 87.2998 28.0996 197.7 28.0996 197.7s219.101 -29 293.801 -161.5z\\\" />\\n    <glyph glyph-name=\\\"hubspot\\\" unicode=\\\"&#xf3b2;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M267.4 236.4l-163.2 114.699c-7.90039 -4.69922 -17 -7.59961 -26.7998 -7.59961c-28.8008 0 -52.2002 23.4004 -52.2002 52.2998c0 28.7998 23.3994 52.2002 52.2002 52.2002c28.8994 0 52.3994 -23.4004 52.3994 -52.2002c0 -4.7998 -0.799805 -9.39941 -2 -13.7998\\nc51.4004 -39.0996 141.3 -103.9 168.9 -124.8c13.0996 6.89941 27.5 11.5 42.7002 13.5996v61.2002c-17.5 7.40039 -28.2002 23.7998 -28.2002 42.9004c0 26.0996 20.5996 47.8994 46.7002 47.8994c26.0996 0 47 -21.7998 47 -47.8994\\nc0 -19.1006 -10.7002 -35.5 -28.2002 -42.9004v-61.5996c62.5 -9.5 110.2 -63.5 110.2 -128.7c0 -71.9004 -58.1006 -130.2 -130 -130.2c-29.9004 0 -57.3008 10 -79.3008 26.9004l-50 -50.2002c1.30078 -3.90039 1.90039 -7.90039 1.90039 -12.1006\\nc0 -10.6992 -4.2002 -20.8994 -11.7998 -28.5c-7.7002 -7.69922 -17.7998 -11.5996 -28.6006 -11.5996c-10.6992 0 -20.8994 4 -28.5 11.5996c-7.59961 7.60059 -11.7998 17.7002 -11.7998 28.5c0 10.8008 4.2002 21 11.7998 28.6006\\nc7.60059 7.59961 17.7002 11.7998 28.5 11.7998c4.90039 0 9.60059 -0.900391 14 -2.5l49.5 49.7998c-16.2998 21.7002 -26 48.7002 -26 78c0 37.2998 15.7002 70.9004 40.8008 94.6006zM356.9 72.7998c38.0996 0 69 30.9004 69 69c0 38.1006 -30.9004 69 -69 69\\nc-38.1006 0 -69 -30.8994 -69 -69c0 -38.0996 30.8994 -69 69 -69z\\\" />\\n    <glyph glyph-name=\\\"itunes\\\" unicode=\\\"&#xf3b4;\\\" \\nd=\\\"M223.6 367.7c94.5 0 171.2 -76.7002 171.2 -171.3c0 -94.5 -76.5996 -171.2 -171.2 -171.2c-94.5996 0 -171.1 76.7998 -171.1 171.3s76.5 171.2 171.1 171.2zM303 127.7c1.40039 6.2002 0.900391 -3 1 167.6c0 5.7002 -3.2998 9.10059 -9 8.7002\\nc-1.7998 0 -14.0996 -2.40039 -115.1 -21.4004c-0.900391 0 -4.60059 -1 -6.7002 -2.69922c-2 -1.60059 -3.10059 -3.80078 -3.5 -6.40039c-1.7002 -6.7002 2.39941 -128 -2.60059 -133.7c-2.09961 -2.5 -4.69922 -3.2002 -7.69922 -3.7002\\nc-17.7002 -3.19922 -29.6006 -4.7998 -38 -12.7998c-14.5 -14.2002 -7 -38.8994 14.3994 -42.8994c8 -1.40039 23.1006 0.599609 31.4004 5.19922c7.2998 3.80078 12.7998 10.6006 14.8994 19.6006c1.7002 7.7002 1.2002 2.39941 1.2002 118.5\\nc0 5.7002 1.7002 7.2002 6.7002 8.2998c0 0 87.9004 16.4004 91.9004 17.0996c5.69922 1 8.39941 -0.5 8.39941 -6.09961c0 -78.7998 1 -77.2002 -2.2002 -80.7998c-2.09961 -2.5 -4.69922 -3.2002 -7.69922 -3.7002c-17.7002 -3.2002 -29.6006 -4.7998 -38 -12.7998\\nc-10.6006 -10.4004 -10.4004 -26.7998 1.39941 -36.7998c9.7002 -7.80078 19.7998 -7.2002 31.9004 -5c13.7998 2.59961 24.0996 10.1992 27.2998 23.7998zM345.2 416c56.8994 0 102.8 -45.9004 102.8 -102.8v-242.4c0 -56.8994 -45.7998 -102.8 -102.8 -102.8h-242.4\\nc-56.8994 0 -102.8 45.9004 -102.8 102.8v242.4c0 56.8994 45.9004 102.8 102.8 102.8h242.4zM223.6 4c106.301 0 192.5 86.2002 192.5 192.5s-86.1992 192.5 -192.5 192.5c-106.3 0 -192.5 -86.2002 -192.5 -192.5s86.2002 -192.5 192.5 -192.5z\\\" />\\n    <glyph glyph-name=\\\"itunes-note\\\" unicode=\\\"&#xf3b5;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M381.9 59.7998c-6.40039 -27.3994 -27.2002 -42.7998 -55.1006 -48c-24.5 -4.5 -44.8994 -5.59961 -64.5 10.2002c-23.8994 20.0996 -24.2002 53.4004 -2.7002 74.4004c17 16.1992 40.9004 19.5 76.8008 25.7998c6 1.09961 11.1992 2.5 15.5996 7.39941\\nc6.40039 7.2002 4.40039 4.10059 4.40039 163.2c0 11.2002 -5.5 14.2998 -17 12.2998c-8.2002 -1.39941 -185.7 -34.5996 -185.7 -34.5996c-10.2002 -2.2002 -13.4004 -5.2002 -13.4004 -16.7002c0 -234.7 1.10059 -223.899 -2.5 -239.5\\nc-4.2002 -18.2002 -15.3994 -31.8994 -30.2002 -39.5c-16.7998 -9.2998 -47.1992 -13.3994 -63.3994 -10.3994c-43.2002 8.09961 -58.4004 58 -29.1006 86.5996c17 16.2002 40.9004 19.5 76.8008 25.7998c6 1.10059 11.1992 2.5 15.5996 7.40039\\nc10.0996 11.5 1.7998 256.6 5.2002 270.2c0.799805 5.19922 3 9.59961 7.09961 12.8994c4.2002 3.5 11.7998 5.5 13.4004 5.5c204 38.2002 228.899 43.1006 232.399 43.1006c11.5 0.799805 18.1006 -6 18.1006 -17.6006c0.200195 -344.5 1.09961 -326 -1.7998 -338.5z\\\" />\\n    <glyph glyph-name=\\\"jenkins\\\" unicode=\\\"&#xf3b6;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M487.1 23c1.5 -11.9004 -5.2998 -28.2998 -8.69922 -39.7002c-4.90039 -16.2998 -9.7002 -31.8994 -14.6006 -47.2002h-422c-0.700195 1.90039 -1.39941 4 -2.09961 6c-4.60059 14.2002 -12.6006 31.7002 -14.7002 45.8008\\nc-3.09961 20.8994 16.5996 22.0996 29.2002 31.0996c19.5 14 34.7998 21.7998 55.8994 34.2998c6.30078 3.7998 25.1006 13.2002 27.3008 17.6006c4.2998 8.69922 -7.30078 20.8994 -10.4004 27.6992c-4.90039 10.7002 -7.5 19.8008 -8.2002 30.4004\\nc-17.7002 2.7998 -31.0996 13.2998 -39.2002 25.2002c-13.3994 19.7002 -22.6992 56 -11.0996 83.7002c0.900391 2.19922 5.40039 6.5 6.09961 9.7998c1.40039 6.59961 -2.5 15.3994 -2.69922 22.3994c-1.2002 36 6.09961 67 30.2998 77.8008\\nc9.7998 39.0996 45 52.1992 78.0996 71.5996c12.2998 7.2998 26 11.9004 40.1006 17.0996c50.5 18.7002 128.1 15.1006 170.1 -16.5996c17.7998 -13.5 46.2002 -41.9004 56.4004 -62.5c26.8994 -54.2998 25 -145.1 6.19922 -211.2\\nc-2.5 -8.89941 -6.19922 -21.8994 -11.2998 -32.5996c-3.59961 -7.40039 -14.7002 -22.2998 -13.2998 -28.9004c1.40039 -6.7998 25.2998 -24.8994 30.4004 -29.8994c9.19922 -8.80078 26.7998 -20.7002 28.1992 -31.9004zM205.9 414.3\\nc-33.2002 -9.39941 -75.7002 -33.5 -89.3008 -63.3994c10.6006 1.5 17.9004 6.7998 28.3008 7.5c3.89941 0.299805 9.09961 -1.60059 13.5996 -0.5c9 2.2998 16.5996 22.5 23.4004 30c6.59961 7.39941 14.5996 10.5 20 17.1992c3.5 1.7002 8.69922 1.60059 8.89941 6.80078\\nc-1.5 1.69922 -3.09961 2.89941 -4.89941 2.39941zM101.1 320.7c-14.6992 -16.1006 -11.5996 -46.2998 -9.7998 -67.7998c26.5 16.6992 61.6006 -1.30078 61.2998 -29.6006c12.6006 0.299805 4.7002 15.7998 2.40039 25.7002c-7.5 32.5996 12.5996 67.9004 0.900391 97.5996\\nc-22.7002 -1.7998 -41.3008 -11 -54.8008 -25.8994zM137.8 120.5c4.90039 -20 15.7002 -46 26.2998 -61.4004c13.6006 -19.3994 40.1006 -22.2998 68.7002 -24.1992c5.10059 11 23.9004 10.0996 36.2002 7.19922c-14.7002 5.80078 -28.4004 19.9004 -39.7002 32.4004\\nc-13 14.2998 -26.0996 29.7002 -26.7998 48.4004c24.5 -34 44.7998 -63.8008 89.5 -78.8008c33.7998 -11.2998 73.2002 5.2002 99.2002 23.4004c10.7998 7.59961 17.2002 19.5996 24.8994 30.5996c28.7002 41.2002 42 100.101 39.1006 157.101\\nc-1.2002 23.5 -1.10059 47 -9 62.7998c-8.2998 16.5996 -36.2002 31.2998 -52.5 16.4004c-3 16.0996 13.5996 26.0996 33.0996 20.2998c-13.8994 18 -28.5996 39.5996 -48.2998 50.7002c-34.4004 19.5 -92.7002 34.0996 -129.3 15.7998\\nc-29.6006 -14.7002 -69.5 -39.1006 -83.1006 -70c12.7002 -29.7998 -3.7998 -57.1006 -4.7998 -87.4004c-0.599609 -16.0996 7.60059 -30.2002 8.2002 -47.7002c-4.40039 -7.19922 -17.7002 -8.09961 -26.9004 -7.59961c-3.09961 15.5 -8.5 32.9004 -24.5 34.7002\\nc-22.5 2.39941 -39.0996 -16.2998 -40.0996 -35.7998c-1.2002 -23 17.7002 -61 44.4004 -58.4004c10.2998 1.09961 12.7998 11.4004 24.0996 11.2998c6.09961 -12.2002 -9.40039 -16 -11 -24.7002c-0.400391 -2.19922 1.2998 -11 2.2998 -15.0996zM359.8 -3.59961\\nc-1.59961 -4.40039 0.299805 -10.4004 -0.599609 -16.5c14.8994 -4.2002 31.8994 -6.40039 50.7002 -7c3.69922 4.7998 4.89941 13.7998 4.5 22.7998c-0.600586 10.7998 -3.40039 33.0996 -10.1006 37c-14.0996 8.2002 -39 -16.5 -49.5996 -20.2998\\nc1.2002 -3.40039 3.09961 -6 3.2002 -10.2002c6.2998 1.5 13.8994 0.5 19.2998 -2.2002c-6.2998 -0.700195 -13.2998 -0.599609 -17.4004 -3.59961zM342.6 16.4004c7.60059 5.5 14.3008 12 22.2002 17.0996c-18.2002 -1.59961 -41 -12.9004 -59 -4.90039\\nc-0.0996094 -0.899414 -1.2998 -0.599609 -1.5 -1.39941c12.2998 -9.60059 21.5 -11.6006 38.2998 -10.7998zM330.5 -16.7998c26.9004 -8.40039 22.2002 36.7998 -2.7998 20.2002c-0.700195 -8.2002 1.2002 -10.8008 2.7998 -20.2002zM226 9.40039\\nc0 6.19922 3.59961 12 2.7998 16.3994c-13.7998 2.40039 -31.8994 0.799805 -41.2998 7.2998c-9.59961 -9.69922 26.9004 -23 38.5 -23.6992zM57.7002 -49.0996v-0.100586h180.7c-0.800781 2.5 -1.5 4.90039 -2.2002 7.2002c-4.7998 15.2998 -7.5 26.7002 -8.7002 35.5\\nc-19.2002 9.2002 -39.7002 18.5 -56.2002 30.2002c-3 2.2002 -23.3994 28.7002 -26.2002 27.5996c-36.8994 -14.5996 -71.3994 -39.7002 -102.199 -63.5c5.59961 -11.7998 10.5 -24.2002 14.7998 -36.8994zM298.3 -54.7998h-0.799805\\nc0.299805 0.200195 0.5 0.399414 0.799805 0.5v-0.5zM305.8 -49.0996h9.60059c-1 1.5 -2.10059 2.89941 -3.2002 4.2998c-2.10059 -1.5 -4.2998 -2.90039 -6.40039 -4.2998zM320.9 -24.4004c0.0996094 3.60059 0.299805 7.2002 0.399414 10.6006\\nc-6.5 3.2002 -14 5.5 -23.5 5.89941c6.5 3.30078 15.9004 3.2002 21.7998 7.10059c0.100586 1.5 0.100586 2.89941 0.200195 4.2998c-10.7998 0.900391 -14.7998 5.59961 -21.8994 9.5c-11.6006 6.40039 -29 13.2002 -43.9004 16.0996\\nc-18.5 3.60059 -16.7998 -25.1992 -16 -42.3994c0.700195 -13.6006 7.7002 -28 10.7998 -37c1.5 -4.2002 1.7998 -8.7002 5.40039 -9.5c6.39941 -1.5 27.3994 6.89941 33.3994 10.2002c12.7002 6.89941 22.5 17.8994 33.3008 25.1992zM374.3 -49.0996l0.600586 12.5996\\nc-11.2002 -0.700195 -17.5 10.2002 -25.4004 11c-6.90039 0.700195 -12.7002 -7.90039 -21.7002 -4.2002c-2 -2.2002 -3.89941 -4.7002 -6 -6.89941c3.2002 -3.90039 6.10059 -8.10059 8.90039 -12.5h17.3994c0.200195 3.19922 2.80078 5.7998 6.10059 5.7998\\ns6 -2.60059 6.09961 -5.7998h14zM383 -49.0996h36.2998c-6.7002 10.1992 -20.0996 18.7998 -35.7002 11.5c-0.199219 -3.7002 -0.399414 -7.5 -0.599609 -11.5zM466.4 -12.0996c1.19922 6.19922 4.59961 19.5996 3.7998 25.0996\\nc-1.40039 9.7998 -14.6006 17.0996 -21.4004 23.0996c-12.3994 11.1006 -20.2002 21 -33.2002 31.4004c-5.19922 -7.7998 -16.5 -13 -20.7998 -19.2998c30.7002 14.8994 36.2998 -55.7998 24.2002 -78.5c1.90039 -6.7998 8.2998 -9.40039 10.9004 -15.5\\nc-0.700195 -1.10059 -1.30078 -2.2002 -1.90039 -3.2998h27.9004c0.199219 0 0.399414 0 0.599609 -0.100586c4.09961 13.1006 7.59961 25.9004 9.90039 37.1006zM222.2 317.5c5.39941 14.9004 27.2002 34.7002 45 32c7.7002 -1.2002 18 -8.2002 12.2002 -17.7002\\nc-30.2002 7 -45.2002 -12.5996 -54.4004 -33.0996c-8.09961 2 -4.90039 13.0996 -2.7998 18.7998zM406.3 254.4c8.2002 3.59961 22.4004 0.699219 29.6006 5.2998c-4.2002 11.5 -10.3008 21.3994 -9.30078 37.7002c0.5 0 1 0 1.40039 -0.100586\\nc6.7998 -14.2002 12.7002 -29.2002 21.4004 -41.7002c-5.7002 -13.5 -43.6006 -25.3994 -43.1006 -1.19922zM309.5 251.7c-6.7998 10.8994 -19 32.5 -14.5 45.2998c6.5 -11.9004 8.59961 -24.4004 17.7998 -33.2998c4.10059 -4 12.2002 -9 8.2002 -20.2002\\nc-0.900391 -2.7002 -7.7998 -8.59961 -11.7002 -9.7002c-14.3994 -4.2998 -47.8994 -0.899414 -36.5996 17.1006c11.8994 -0.700195 27.8994 -7.80078 36.7998 0.799805zM336.8 181.7c3.7998 -6.60059 1.40039 -18.7002 12.1006 -20.6006\\nc20.1992 -3.39941 43.5996 12.3008 58.0996 17.8008c9 15.1992 -0.799805 20.6992 -8.90039 30.5c-16.5996 20 -38.7998 44.7998 -38 74.6992c6.7002 4.90039 7.30078 -7.39941 8.2002 -9.69922c8.7002 -20.3008 30.4004 -46.2002 46.2998 -63.5\\nc3.90039 -4.30078 10.3008 -8.40039 11 -11.2002c2.10059 -8.2002 -5.39941 -18 -4.5 -23.5c-21.6992 -13.9004 -45.7998 -29.1006 -81.3994 -25.6006c-7.40039 6.7002 -10.2998 21.4004 -2.90039 31.1006zM135.5 190.9c-6.7998 3.89941 -8.40039 21 -16.4004 21.3994\\nc-11.3994 0.700195 -9.2998 -22.2002 -9.2998 -35.5c-7.7998 7.10059 -9.2002 29.1006 -3.5 40.2998c-6.59961 3.2002 -9.5 -3.59961 -13.0996 -5.89941c4.7002 34.0996 49.7998 15.7998 42.2998 -20.2998zM435.1 162.1c-10.0996 -19.1992 -24.3994 -40.3994 -54 -41\\nc-0.599609 6.2002 -1.09961 15.6006 0 19.4004c22.7002 2.2002 36.6006 13.7002 54 21.5996zM293.2 149.7c18.8994 -9.90039 53.5996 -11 79.2998 -10.2002c1.40039 -5.59961 1.2998 -12.5996 1.40039 -19.4004c-33 -1.7998 -72 6.40039 -80.7002 29.6006zM385.4 103\\nc-1.7002 -4.2998 -5.30078 -9.2998 -9.80078 -11.0996c-12.0996 -4.90039 -45.5996 -8.7002 -62.3994 0.299805c-10.7002 5.7002 -17.5 18.5 -23.4004 26c-2.7998 3.59961 -16.8994 12.8994 -0.200195 12.8994c13.1006 -32.6992 58 -29 95.8008 -28.0996z\\\" />\\n    <glyph glyph-name=\\\"joget\\\" unicode=\\\"&#xf3b7;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M378.1 403c116.601 -71.7998 152.9 -224.6 81 -341.2c-71.8994 -116.5 -224.6 -152.8 -341.199 -80.8994c-116.601 71.8994 -152.9 224.6 -81 341.199c46.8994 76 128.1 117.9 211.3 117.9c44.3994 0 89.3994 -11.9004 129.899 -37zM429.9 79.7998\\nc5.2998 8.7002 9.89941 17.6006 13.8994 26.6006c-32.0996 -1.10059 -157.1 1.5 -208.8 -17.6006c-58.4004 -21.5 -36.9004 -53.3994 -31.2002 -67.0996c3.7998 -9.10059 14.7002 -28.7998 23.7002 -42.4004c6.7998 -0.599609 13.5996 -1 20.4004 -1\\nc71.5996 0 141.6 36 182 101.5zM229.1 166.1c51 -1.2998 205.4 -4.39941 230.301 -4.89941c11.8994 81.7998 -24.5 166.6 -99.3008 212.7c-100.5 61.8994 -232.1 30.6992 -294 -69.8008c-28.5996 -46.3994 -37.2998 -99.3994 -28.5 -149.1\\nc11 40.9004 49.7002 131.5 178.301 140.2c50.8994 4 41.5 -19.2002 23.5996 -29.7002c-17.7998 -10.5 -45.7002 -23.7998 -68.9004 -51.2002c-23.1992 -27.3994 3 -46.7998 58.5 -48.2002zM412.9 220.9c22.6992 -6 19.0996 -15.5 19.0996 -15.5l-46.5 -23.4004\\nl-169.5 -1.59961s33.7998 10.7998 65.2998 31.2998c26 16.8994 49.7002 35.5996 67.5 35.5996c3.7002 0 7.2002 -0.899414 10.4004 -2.7002c18.5 -10.5996 -2.90039 -18.1992 -13.4004 -24.5996s-50.7002 -34.5 -50.7002 -34.5s1.40039 -7.59961 31.1006 8.2002\\nc29.7002 15.8994 64 33.2002 86.7002 27.2002z\\\" />\\n    <glyph glyph-name=\\\"js\\\" unicode=\\\"&#xf3b8;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM243.8 66.5996v143.7h-42.0996v-143.1c0 -21.1006 -8.7998 -26.5 -22.6006 -26.5c-14.5 0 -20.5 9.89941 -27.0996 21.5996l-34.2998 -20.7002c10 -21.0996 29.5 -38.5 63.2002 -38.5c37.2998 0 62.8994 19.9004 62.8994 63.5zM343.4 3.09961\\nc39.8994 0 69.6992 20.8008 69.6992 58.6006c0 35.2002 -20.0996 50.8994 -55.8994 66.2002l-10.5 4.5c-18.1006 7.89941 -25.9004 13 -25.9004 25.5996c0 10.2002 7.7998 18 20.1006 18c12.0996 0 19.8994 -5.09961 27.0996 -18l32.7998 21\\nc-13.7998 24.4004 -33 33.7002 -59.7998 33.7002c-37.5 0 -61.5996 -24 -61.5996 -55.6006c0 -34.2998 20.0996 -50.5996 50.5 -63.5l10.5 -4.5c19.2998 -8.5 30.6992 -13.5996 30.6992 -28c0 -12.0996 -11.1992 -20.7998 -28.5996 -20.7998\\nc-20.7002 0 -32.5 10.9004 -41.5 25.6006l-34.2998 -19.8008c12.2998 -24.3994 37.5996 -43 76.7002 -43z\\\" />\\n    <glyph glyph-name=\\\"js-square\\\" unicode=\\\"&#xf3b9;\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM243.8 66.5996v143.7h-42.0996v-143.1c0 -21.1006 -8.7998 -26.5 -22.6006 -26.5c-14.5 0 -20.5 9.89941 -27.0996 21.5996\\nl-34.2998 -20.7002c10 -21.0996 29.5 -38.5 63.2002 -38.5c37.2998 0 62.8994 19.9004 62.8994 63.5zM343.4 3.09961c39.8994 0 69.6992 20.8008 69.6992 58.6006c0 35.2002 -20.0996 50.8994 -55.8994 66.2002l-10.5 4.5c-18.1006 7.89941 -25.9004 13 -25.9004 25.5996\\nc0 10.2002 7.7998 18 20.1006 18c12.0996 0 19.8994 -5.09961 27.0996 -18l32.7998 21c-13.7998 24.4004 -33 33.7002 -59.7998 33.7002c-37.5 0 -61.5996 -24 -61.5996 -55.6006c0 -34.2998 20.0996 -50.5996 50.5 -63.5l10.5 -4.5\\nc19.2998 -8.5 30.6992 -13.5996 30.6992 -28c0 -12.0996 -11.1992 -20.7998 -28.5996 -20.7998c-20.7002 0 -32.5 10.9004 -41.5 25.6006l-34.2998 -19.8008c12.2998 -24.3994 37.5996 -43 76.7002 -43z\\\" />\\n    <glyph glyph-name=\\\"keycdn\\\" unicode=\\\"&#xf3ba;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M63.7998 38.7002l60.5 59c32.1006 -42.7998 71.1006 -66 126.601 -67.4004c30.5 -0.700195 60.2998 7 86.3994 22.4004c5.10059 -5.2998 18.5 -19.5 20.9004 -22c-32.2002 -20.7002 -69.6006 -31.1006 -108.101 -30.2002\\nc-43.2998 1.09961 -84.5996 16.7002 -117.699 44.4004c0.299805 0.599609 -38.2002 -37.5 -38.6006 -37.9004c9.5 -29.7998 -13.0996 -62.4004 -46.2998 -62.4004c-26.7998 0.100586 -47.5 21.7002 -47.5 48.5c0 34.3008 33.0996 56.6006 63.7998 45.6006zM418.7 291.1\\nc19.0996 -31.2998 29.5996 -67.3994 28.7002 -104c-1.10059 -44.7998 -19 -87.5 -48.6006 -121c0.299805 -0.299805 23.7998 -25.1992 24.1006 -25.5c9.59961 1.30078 19.1992 -2 25.8994 -9.09961c11.2998 -12 10.9004 -30.9004 -1.09961 -42.4004\\nc-12 -11.2998 -30.9004 -10.8994 -42.4004 1.10059c-6.7002 7 -9.39941 16.7998 -7.59961 26.2998c-24.9004 26.5996 -44.4004 47.2002 -44.4004 47.2002c42.7002 34.0996 63.2998 79.5996 64.4004 124.2c0.700195 28.8994 -7.2002 57.1992 -21.1006 82.1992zM104 394.9\\nc6.7002 -7 9.40039 -16.8008 7.59961 -26.3008l45.9004 -48.0996c-4.7002 -3.7998 -13.2998 -10.4004 -22.7998 -21.2998c-25.4004 -28.5 -39.6006 -64.7998 -40.7002 -102.9c-0.700195 -28.8994 6.09961 -57.2002 20 -82.3994l-22 -21.5\\nc-19.2998 31.5996 -28.9004 67.6992 -27.7998 104.699c1 44.6006 18.2998 87.6006 47.5 121.101l-25.2998 26.3994c-9.60059 -1.2998 -19.2002 2 -25.9004 9.10059c-11.2998 12 -10.9004 30.8994 1.09961 42.3994c11.9004 11.2002 30.6006 10.9004 42.4004 -1.19922z\\nM464.9 440c26 0 47.0996 -22.4004 47.0996 -48.2998c0 -25.9004 -21.0996 -47.7002 -47.0996 -47.7002c-6.30078 -0.0996094 -14 1.09961 -15.9004 1.7998l-62.9004 -59.7002c-32.6992 43.6006 -76.6992 65.9004 -126.899 67.2002\\nc-30.5 0.700195 -60.2998 -6.7998 -86.2002 -22.3994l-21.0996 22c32.1992 20.7998 69.5996 31.0996 108.1 30.1992c43.2998 -1.09961 84.5996 -16.6992 117.7 -44.5996l41.0996 38.5996c-1.5 4.7002 -2.2002 9.60059 -2.2002 14.5\\nc-0.0996094 26.7002 22.3008 48.4004 48.3008 48.4004zM256.7 334.6c5.5 0 10.8994 -0.399414 16.3994 -1.09961c78.1006 -9.7998 133.4 -81.0996 123.801 -159.1c-9.80078 -78.1006 -81.1006 -133.4 -159.101 -123.801c-78.0996 9.80078 -133.399 81.1006 -123.8 159.2\\nc9.2998 72.4004 70.0996 124.601 142.7 124.8zM197.7 215.2c0.599609 -22.7002 12.2002 -41.7998 32.3994 -52.2002l-11 -51.7002h73.7002l-11 51.7002c20.1006 10.9004 32.1006 29 32.4004 52.2002c-0.400391 32.7998 -25.7998 57.5 -58.2998 58.2998\\nc-32.1006 -0.799805 -57.3008 -24.7998 -58.2002 -58.2998zM256 288z\\\" />\\n    <glyph glyph-name=\\\"kickstarter\\\" unicode=\\\"&#xf3bb;\\\" \\nd=\\\"M400 -32h-352c-26.4004 0 -48 21.5996 -48 48v352c0 26.4004 21.5996 48 48 48h352c26.4004 0 48 -21.5996 48 -48v-352c0 -26.4004 -21.5996 -48 -48 -48zM199.6 269.5c0 30.7002 -17.5996 45.0996 -39.6992 45.0996c-25.8008 0 -40 -19.7998 -40 -44.5v-154.8\\nc0 -25.7998 13.6992 -45.5996 40.5 -45.5996c21.5 0 39.1992 14 39.1992 45.5996v41.7998l60.6006 -75.6992c12.2998 -14.9004 39 -16.8008 55.7998 0c14.5996 15.0996 14.7998 36.7998 4 50.3994l-49.0996 62.7998l40.5 58.7002c9.39941 13.5 9.5 34.5 -5.60059 49.1006\\nc-16.3994 15.8994 -44.5996 17.2998 -61.3994 -7l-44.8008 -64.7002v38.7998z\\\" />\\n    <glyph glyph-name=\\\"kickstarter-k\\\" unicode=\\\"&#xf3bc;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M147.3 333.6v-70.5996l82.7998 118.2c31.2002 44.3994 83.3008 41.7998 113.601 12.7998c27.8994 -26.7002 27.7998 -65.0996 10.3994 -89.7998l-74.8994 -107.4l90.7998 -114.8c19.9004 -24.7998 19.5996 -64.5996 -7.40039 -92.2002\\nc-31.0996 -30.7002 -80.5 -27.2002 -103.199 0l-112.101 138.3v-76.5c0 -57.7998 -32.5996 -83.3994 -72.3994 -83.3994c-49.6006 0 -74.9004 36.0996 -74.9004 83.3994v283c0 45.2002 26.2002 81.4004 73.9004 81.4004c40.8994 0 73.3994 -26.2002 73.3994 -82.4004z\\\" />\\n    <glyph glyph-name=\\\"laravel\\\" unicode=\\\"&#xf3bd;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M504.4 332.17c0.131836 -0.549805 0.240234 -1.45605 0.240234 -2.02246c0 -0.0185547 0 -0.0488281 -0.000976562 -0.0673828v-109.85c0.000976562 -0.0205078 0.000976562 -0.0527344 0.000976562 -0.0722656c0 -2.5498 -1.79199 -5.65332 -4.00098 -6.92773\\nl-92.2393 -53.1104v-105.26v-0.0224609c0 -2.54883 -1.79199 -5.65332 -4 -6.92773l-192.561 -110.84c-0.37207 -0.194336 -0.999023 -0.454102 -1.39941 -0.580078c-0.180664 -0.0605469 -0.350586 -0.169922 -0.550781 -0.220703\\nc-0.555664 -0.148438 -1.47363 -0.269531 -2.0498 -0.269531c-0.575195 0 -1.49414 0.121094 -2.0498 0.269531c-0.219727 0.0605469 -0.419922 0.180664 -0.629883 0.260742c-0.378906 0.119141 -0.975586 0.360352 -1.33008 0.540039l-192.5 110.84\\nc-2.20801 1.27441 -4 4.37891 -4 6.92773v0.0224609v329.699c0.00195312 0.589844 0.126953 1.53125 0.280273 2.10059c0.0693359 0.189453 0.199219 0.489258 0.290039 0.669922c0.111328 0.354492 0.339844 0.910156 0.509766 1.24023\\nc0.149414 0.259766 0.370117 0.469727 0.549805 0.719727c0.177734 0.270508 0.496094 0.6875 0.709961 0.929688c0.208008 0.179688 0.561523 0.448242 0.790039 0.600586c0.226562 0.210938 0.621094 0.520508 0.879883 0.689453v0l96.2705 55.4199\\nc1.02441 0.591797 2.81641 1.07227 4 1.07227c1.18262 0 2.97461 -0.480469 4 -1.07227l96.29 -55.4199v0c0.25293 -0.173828 0.647461 -0.478516 0.879883 -0.679688c0.223633 -0.154297 0.573242 -0.422852 0.779297 -0.599609\\nc0.21582 -0.24707 0.538086 -0.667969 0.720703 -0.94043c0.169922 -0.25 0.399414 -0.459961 0.540039 -0.719727c0.170898 -0.331055 0.404297 -0.886719 0.519531 -1.24023c0.0800781 -0.230469 0.219727 -0.44043 0.280273 -0.679688\\nc0.154297 -0.561523 0.280273 -1.48926 0.280273 -2.07129v-0.0195312v-205.93l80.2197 46.1904v105.239c0.00195312 0.584961 0.126953 1.5166 0.280273 2.08008c0.0693359 0.240234 0.199219 0.450195 0.279297 0.680664\\nc0.120117 0.354492 0.352539 0.915039 0.520508 1.25c0.149414 0.259766 0.370117 0.469727 0.540039 0.709961c0.179688 0.270508 0.50293 0.6875 0.719727 0.929688c0.205078 0.179688 0.553711 0.448242 0.780273 0.599609\\nc0.229492 0.208008 0.624023 0.516602 0.879883 0.69043v0l96.2803 55.4502c1.02441 0.591797 2.81641 1.07129 4 1.07129c1.18262 0 2.97461 -0.479492 4 -1.07129l96.2598 -55.4199c0.259766 -0.171875 0.663086 -0.476562 0.899414 -0.680664\\nc0.25 -0.199219 0.540039 -0.379883 0.770508 -0.599609c0.214844 -0.24707 0.538086 -0.667969 0.719727 -0.94043c0.164062 -0.18457 0.40625 -0.50293 0.540039 -0.709961c0.173828 -0.333008 0.411133 -0.892578 0.530273 -1.25\\nc0.0888672 -0.182617 0.214844 -0.487305 0.280273 -0.679688zM111.6 430.72l-80.1895 -46.1602l80.1797 -46.1699l80.2002 46.1807l-80.1904 46.1494v0zM199.85 370.72l-33.6895 -19.4297l-46.5303 -26.79v-201.29l33.6904 19.4004l46.5293 26.79v201.319zM199.85 -42.0596\\nl-0.109375 92.3594l-92.1904 52.1807v0v0c-0.248047 0.166992 -0.633789 0.462891 -0.859375 0.65918c-0.25 0.200195 -0.540039 0.360352 -0.770508 0.580078v0c-0.198242 0.219727 -0.494141 0.595703 -0.660156 0.839844\\nc-0.177734 0.206055 -0.446289 0.555664 -0.599609 0.780273v0c-0.139648 0.266602 -0.328125 0.713867 -0.419922 1c-0.125977 0.240234 -0.295898 0.643555 -0.379883 0.900391v0c-0.0683594 0.322266 -0.140625 0.850586 -0.160156 1.17969\\nc-0.0498047 0.246094 -0.103516 0.649414 -0.120117 0.900391v215.18l-46.5205 26.7998l-33.6895 19.3799v-311.18zM207.85 64.1104l117.62 67.1494l58.7998 33.5605l-80.1299 46.1299l-92.2598 -53.1104l-84.0898 -48.4102zM392.37 59.54v91.4102l-45.7705 -26.1504\\nl-130.72 -74.5996v-92.3105zM392.37 178.67v91.3301l-46.5303 26.8096l-33.6895 19.4004v-91.4199l46.5293 -26.79zM400.37 283.95l80.1797 46.1797l-80.1797 46.1504l-80.2002 -46.1602zM408.37 178.67l80.3096 46.1504v0v91.3896l-33.6797 -19.4004l-46.6299 -26.8096\\nv-91.3301z\\\" />\\n    <glyph glyph-name=\\\"line\\\" unicode=\\\"&#xf3c0;\\\" \\nd=\\\"M272.1 243.8v-71.0996c0 -1.7998 -1.39941 -3.2002 -3.19922 -3.2002h-11.4004c-1.09961 0 -2.09961 0.599609 -2.59961 1.2998l-32.6006 44v-42.2002c0 -1.7998 -1.39941 -3.19922 -3.2002 -3.19922h-11.3994c-1.7998 0 -3.2002 1.39941 -3.2002 3.19922v71.1006\\nc0 1.7998 1.40039 3.2002 3.2002 3.2002h11.2998c1 0 2.09961 -0.5 2.59961 -1.40039l32.6006 -44v42.2002c0 1.7998 1.39941 3.2002 3.2002 3.2002h11.3994c1.7998 0.0996094 3.2998 -1.40039 3.2998 -3.10059zM190.1 247c1.80078 0 3.2002 -1.5 3.2002 -3.2002v-71.0996\\nc0 -1.7998 -1.39941 -3.2002 -3.2002 -3.2002h-11.3994c-1.7998 0 -3.2002 1.40039 -3.2002 3.2002v71.0996c0 1.7998 1.40039 3.2002 3.2002 3.2002h11.3994zM162.6 187.4c1.7002 0 3.10059 -1.5 3.10059 -3.2002v-11.4004c0 -1.7998 -1.40039 -3.2002 -3.2002 -3.2002\\nh-45.7002c-0.899414 0 -1.59961 0.400391 -2.2002 0.900391c-0.599609 0.599609 -0.899414 1.2998 -0.899414 2.2002v71.0996c0 1.7998 1.39941 3.2002 3.2002 3.2002h11.3994c1.7998 0 3.2002 -1.40039 3.2002 -3.2002v-56.3994h31.0996zM332.1 247\\nc1.7002 0 3.10059 -1.5 3.2002 -3.2002v-11.3994c0 -1.80078 -1.39941 -3.2002 -3.2002 -3.2002h-31.0996v-12h31.0996c1.80078 0 3.2002 -1.40039 3.2002 -3.2002v-11.5c0 -1.7998 -1.39941 -3.2002 -3.2002 -3.2002h-31.0996v-12h31.0996\\nc1.80078 0 3.2002 -1.39941 3.2002 -3.2002v-11.3994c0 -1.7998 -1.39941 -3.2002 -3.2002 -3.2002h-45.6992c-1.80078 0 -3.2002 1.5 -3.2002 3.2002v71.0996c0 1.7998 1.5 3.2002 3.2002 3.2002h45.6992zM448 334.3v-285.3\\nc-0.0996094 -44.7998 -36.7998 -81.0996 -81.7002 -81h-285.3c-44.7998 0.0996094 -81.0996 36.9004 -81 81.7002v285.3c0.0996094 44.7998 36.9004 81.0996 81.7002 81h285.3c44.7998 -0.0996094 81.0996 -36.7998 81 -81.7002zM386.4 211.7\\nc0 73 -73.2002 132.399 -163.101 132.399c-89.8994 0 -163.1 -59.3994 -163.1 -132.399c0 -65.4004 58 -120.2 136.399 -130.601c19.1006 -4.09961 16.9004 -11.0996 12.6006 -36.7998c-0.700195 -4.09961 -3.2998 -16.0996 14.0996 -8.7998\\nc17.4004 7.2998 93.9004 55.2998 128.2 94.7002c23.5996 26 34.9004 52.2998 34.9004 81.5z\\\" />\\n    <glyph glyph-name=\\\"lyft\\\" unicode=\\\"&#xf3c3;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M0 366.9h77.7998v-208.7c0 -33.1006 15 -52.7998 27.2002 -61c-12.7002 -11.1006 -51.2002 -20.9004 -80.2002 2.7998c-17 14 -24.7998 37.2998 -24.7998 59v207.9zM485.9 193.4c0 -14.2002 11.5996 -25.9004 26.0996 -25.9004v-76.5\\nc-56.7002 0 -102.7 46.0996 -102.7 102.7v77.0996c0 34.6006 -52.2002 34.6006 -52.2002 0v-23.2998h38.8008v-76.7998h-38.8008v-6.7002c0 -21.7998 -7.69922 -45 -24.7998 -59c-16.2998 -13.7002 -35.7002 -16.2998 -51.7002 -14v179.2\\nc0 56.7002 46.1006 102.7 102.7 102.7c49.1006 0 90.2002 -34.4004 100.3 -80.7002h26.1006v-76.7998h-23.7998v-22zM191.6 292.4v0.5h77.1006v-178.2c0 -52.4004 -29.7002 -91.7002 -76.7998 -100.8c-26.1006 -5.10059 -52.5 -2.80078 -77.6006 4.69922v70.3008\\nc9.7998 -4.2002 29.5 -9.40039 45 -7.80078c20.4004 2 32.7998 11.9004 34.9004 25.3008c0 0 -21.2002 -20.4004 -58.2002 -10.6006c-37 9.90039 -45 40.1006 -45 63.9004v132.7h76.7998v-113c0 -15.4004 23.7998 -15.4004 23.7998 0v113z\\\" />\\n    <glyph glyph-name=\\\"magento\\\" unicode=\\\"&#xf3c4;\\\" \\nd=\\\"M445.7 320.1v-256.1l-63.4004 -36.5v255.8l-158.5 91.6006l-158.6 -91.6006l0.399414 -255.899l-63.2998 36.5996v255.9l221.9 128.1zM255.6 27.5v255.9l63.4004 -36.6006v-256l-95.0996 -54.8994l-94.9004 54.8994l-0.0996094 255.9l63.2998 36.5996v-256\\nl31.7998 -18.2002z\\\" />\\n    <glyph glyph-name=\\\"medapps\\\" unicode=\\\"&#xf3c6;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M118.3 209.6c3.5 12.5 6.90039 33.6006 13.2002 33.6006c8.2998 -1.7998 9.59961 -23.4004 18.5996 -36.6006c4.60059 23.5 5.30078 85.1006 14.1006 86.7002c9 0.700195 19.7002 -66.5 22 -77.5c9.89941 -4.09961 48.8994 -6.59961 48.8994 -6.59961\\nc1.90039 -7.2998 -24 -7.60059 -40 -7.7998c-4.59961 -14.8008 -5.39941 -27.7002 -11.3994 -28c-4.7002 -0.200195 -8.2002 28.7998 -17.5 49.5996l-9.40039 -65.5c-4.39941 -13 -15.5 22.5 -21.8994 39.2998c-3.30078 0.100586 -62.4004 1.60059 -47.6006 7.7998zM228 0\\nh-136c-21.2002 0 -21.2002 32 0 32h136c21.2002 0 21.2002 -32 0 -32zM204 -64h-88c-21.2002 0 -21.2002 32 0 32h88c21.2002 0 21.2002 -32 0 -32zM238.2 77.5c-3.60059 -21.2998 -36 -15.5 -32.6006 5.09961c3.60059 21.2002 5.60059 40.6006 15.3008 58.6006\\nc32.5996 60.2998 66.0996 95.5 66.0996 151.6c0 67.9004 -57 123.2 -127 123.2s-127 -55.2998 -127 -123.2c0 -56.0996 33.5 -91.2998 66.0996 -151.7c9.7002 -17.8994 11.7002 -36.8994 15.3008 -58.5996c3.5 -20.7998 -29.1006 -26.0996 -32.6006 -5.09961\\nc-3.2002 19.0996 -5.2002 36.3994 -11.8994 48.8994c-8 14.7002 -16.1006 28.1006 -24 41c-24.6006 40.4004 -45.9004 75.2998 -45.9004 125.5c0 85.6006 71.7998 155.2 160 155.2s160 -69.5996 160 -155.2c0 -50.2998 -21.2998 -85.0996 -45.9004 -125.5\\nc-7.89941 -12.8994 -16.0996 -26.2998 -24 -41c-6.69922 -12.3994 -8.69922 -29.8994 -11.8994 -48.7998z\\\" />\\n    <glyph glyph-name=\\\"medium-m\\\" unicode=\\\"&#xf3c7;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M71.5 305.7c0.599609 5.89941 -1.7002 11.7998 -6.09961 15.7998l-45.1006 54.4004v8.09961h140.2l108.4 -237.7l95.2998 237.7h133.7v-8.09961l-38.6006 -37c-3.2998 -2.5 -5 -6.7002 -4.2998 -10.8008v-272c-0.700195 -4.09961 1 -8.2998 4.2998 -10.7998l37.7002 -37\\nv-8.09961h-189.7v8.09961l39.1006 37.9004c3.7998 3.7998 3.7998 5 3.7998 10.7998v219.8l-108.7 -275.899h-14.7002l-126.399 275.899v-184.899c-1.10059 -7.80078 1.5 -15.6006 7 -21.2002l50.7998 -61.6006v-8.09961h-144v8l50.7998 61.7002\\nc5.40039 5.59961 7.90039 13.5 6.5 21.2002v213.8z\\\" />\\n    <glyph glyph-name=\\\"medrt\\\" unicode=\\\"&#xf3c8;\\\" horiz-adv-x=\\\"544\\\" \\nd=\\\"M113.7 192c0 -121.8 83.8994 -222.8 193.5 -241.1c-18.7002 -4.5 -38.2002 -6.90039 -58.2002 -6.90039c-137.6 0 -249 111 -249 248s111.4 248 248.9 248c20.0996 0 39.5996 -2.40039 58.1992 -6.90039c-109.6 -18.2998 -193.399 -119.3 -193.399 -241.1zM411.1 91.7002\\nc77.7002 55.3994 104.4 155.1 67 233.899c11.2002 -9.89941 21.5 -21.2998 30.5 -34.1992c61.6006 -88.3008 40.8008 -210.301 -46.5 -272.601c-87.2998 -62.2998 -208.1 -41.2002 -269.699 47c-9 12.7998 -16.2002 26.4004 -21.7002 40.5\\nc60.7998 -62.0996 162.7 -70 240.399 -14.5996zM192.3 335.7c72.5 54.5996 171.601 45.7002 221.601 -19.7998c45.2998 -59.7002 34.3994 -145.601 -22.3008 -201.801c18.5 51.4004 11.3008 111 -24.3994 158c-43 56.5 -114.601 78.3008 -178.9 60.5\\nc1.2998 1 2.60059 2.10059 4 3.10059zM296 224h40c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-40c-4.40039 0 -8 -3.59961 -8 -8v-40c0 -4.40039 -3.59961 -8 -8 -8h-48c-4.40039 0 -8 3.59961 -8 8v40c0 4.40039 -3.59961 8 -8 8h-40\\nc-4.40039 0 -8 3.59961 -8 8v48c0 4.40039 3.59961 8 8 8h40c4.40039 0 8 3.59961 8 8v40c0 4.40039 3.59961 8 8 8h48c4.40039 0 8 -3.59961 8 -8v-40c0 -4.40039 3.59961 -8 8 -8z\\\" />\\n    <glyph glyph-name=\\\"microsoft\\\" unicode=\\\"&#xf3ca;\\\" \\nd=\\\"M0 416h214.6v-214.6h-214.6v214.6zM233.4 416h214.6v-214.6h-214.6v214.6zM0 182.6h214.6v-214.6h-214.6v214.6zM233.4 182.6h214.6v-214.6h-214.6v214.6z\\\" />\\n    <glyph glyph-name=\\\"mix\\\" unicode=\\\"&#xf3cb;\\\" \\nd=\\\"M0 384h448v-204.1c0 -56.6006 -88 -59.9004 -88 0v23.7998c0 56.7998 -82.7002 59 -88 4.2998v-116.1c0 -58 -96 -57.9004 -96 0v175.3c0 56.8994 -80.0996 59.3994 -88 6.5v-238.601c0 -58.0996 -88 -56.1992 -88 0v348.9z\\\" />\\n    <glyph glyph-name=\\\"mizuni\\\" unicode=\\\"&#xf3cc;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111.1 248 -248c0 -137 -111 -248 -248 -248s-248 111 -248 248c0 136.9 111 248 248 248zM168 88.0996v223.9c0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-272.1c21.2002 20.8994 48.5996 37.5996 80 48.1992zM288 98v214\\nc0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-214c13 2 26.4004 3.09961 40.2002 3.09961c13.5996 0 26.8994 -1.09961 39.7998 -3.09961zM408 40.2998v271.7c0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-223.7c31.4004 -10.5996 58.7998 -27.2002 80 -48z\\n\\\" />\\n    <glyph glyph-name=\\\"monero\\\" unicode=\\\"&#xf3d0;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M352 64h108.4c-43.4004 -71.9004 -122.301 -120 -212.4 -120s-169 48.0996 -212.4 120h108.4v127.8l104 -104.8l104 105v-128zM88 112h-74.7998c-8.60059 25.0996 -13.2002 52 -13.2002 80c0 137 111 248 248 248s248 -111 248 -248c0 -28 -4.7002 -54.9004 -13.2002 -80\\nh-74.7998v208l-160.6 -159.4l-159.4 159.4v-208z\\\" />\\n    <glyph glyph-name=\\\"napster\\\" unicode=\\\"&#xf3d2;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M298.3 74.4004c-14.2002 -13.6006 -31.2998 -24.1006 -50.3994 -30.5c-19 6.39941 -36.2002 16.8994 -50.3008 30.5h100.7zM342.3 274c-56.3994 39.7998 -132.1 39.9004 -188.899 -0.0996094c-19.9004 16.7998 -43.6006 29.5 -69.5 36.3994v-161.6\\nc0 -217.3 328 -219.101 328 0.299805v161.2c-26 -7 -49.6006 -19.2998 -69.6006 -36.2002zM133.5 332.5c6.5 -3.2002 14.0996 -7.40039 20.4004 -11.4004c58.6992 30.5 129.199 30.6006 187.899 0.100586c6.7002 4.2002 13.5 8 20.6006 11.5\\nc-64.6006 59.8994 -164.5 59.7998 -228.9 -0.200195zM43.7998 354.8c17.5 -0.5 34.2998 -3.09961 50.6006 -7.5c82 91.6006 225.5 91.6006 307.5 0.100586c16.0996 4.39941 32.7998 6.89941 50.0996 7.39941v-69.2002c58.7002 -36.5 58.5 -121.899 -0.200195 -158.199\\nl-0.299805 -1.7002c-25.9004 -238.8 -381.2 -243.601 -407.6 1.5c-58.5 37.2002 -58.5 121.8 -0.100586 158.3v69.2998zM259.2 96c13.0996 59.2998 33.5 56 113 55.4004c-0.799805 -8.2002 0.0996094 -32.3008 -26.2002 -47.4004c-4.40039 -2.5 -15.2998 -6 -25.5 -6.5\\nc-25.2998 -1.2002 -61.2998 -1.5 -61.2998 -1.5zM123.7 151.3c79.2998 0.700195 99.7998 4 113 -55.3994c0 0 -36 0.399414 -61.2998 1.5c-10.3008 0.5 -21.1006 4 -25.5 6.5c-26.3008 15.0996 -25.4004 39.1992 -26.2002 47.3994zM292.8 27.9004\\nc3 -4.90039 3.2002 -8.80078 3.2998 -8.90039c-29.0996 -17.5996 -67.0996 -17.5996 -96.1992 0c0 0 0.899414 5.5 3.69922 9.59961c3.5 5.10059 6.40039 6.60059 6.40039 6.60059c23.7002 -6.90039 51.0996 -7.2998 75.9004 0c0 0 3.69922 -2 6.89941 -7.2998z\\\" />\\n    <glyph glyph-name=\\\"node-js\\\" unicode=\\\"&#xf3d3;\\\" \\nd=\\\"M224 -60c-6.7002 0 -13.5 1.7998 -19.4004 5.2002l-61.6992 36.5c-9.2002 5.2002 -4.7002 7 -1.7002 8c12.2998 4.2998 14.7998 5.2002 27.8994 12.7002c1.40039 0.799805 3.2002 0.5 4.60059 -0.400391l47.3994 -28.0996c1.7002 -1 4.10059 -1 5.7002 0l184.7 106.6\\nc1.7002 1 2.7998 3 2.7998 5v213.2c0 2.09961 -1.09961 4 -2.89941 5.09961l-184.601 106.5c-1.7002 1 -4 1 -5.7002 0l-184.5 -106.6c-1.7998 -1 -2.89941 -3 -2.89941 -5.10059v-213.1c0 -2 1.09961 -4 2.89941 -4.90039l50.6006 -29.1992\\nc27.5 -13.7002 44.2998 2.39941 44.2998 18.6992v210.4c0 3 2.40039 5.2998 5.40039 5.2998h23.3994c2.90039 0 5.40039 -2.2998 5.40039 -5.2998v-210.5c0 -36.5996 -20 -57.5996 -54.7002 -57.5996c-10.7002 0 -19.0996 0 -42.5 11.5996l-48.4004 27.9004\\nc-12 6.89941 -19.3994 19.7998 -19.3994 33.6992v213.101c0 13.7998 7.39941 26.7998 19.3994 33.7002l184.5 106.6c11.7002 6.59961 27.2002 6.59961 38.8008 0l184.699 -106.7c12 -6.89941 19.4004 -19.7998 19.4004 -33.7002v-213.1\\nc0 -13.7998 -7.40039 -26.7002 -19.4004 -33.7002l-184.699 -106.6c-5.90039 -3.40039 -12.6006 -5.2002 -19.4004 -5.2002zM373.1 150.1c0 -40.1992 -33.5996 -63.2998 -92 -63.3994c-80.8994 0 -97.7998 37.0996 -97.7998 68.2002c0 2.89941 2.2998 5.2998 5.2998 5.2998\\nh23.9004c2.7002 0 4.90039 -1.90039 5.2998 -4.5c3.60059 -24.2998 14.2998 -36.6006 63.2002 -36.6006c38.9004 0 55.5 8.80078 55.5 29.4004c0 11.9004 -4.7002 20.7998 -65.2002 26.7002c-50.5 5 -81.7998 16.2002 -81.7998 56.5996c0 37.2998 31.4004 59.5 84.0996 59.5\\nc59.2002 0 88.5 -20.5 92.2002 -64.5996c0.100586 -1.5 -0.399414 -3 -1.39941 -4.10059c-1 -1.09961 -2.40039 -1.69922 -3.90039 -1.69922h-24c-2.5 0 -4.7002 1.7998 -5.2002 4.19922c-5.7998 25.6006 -19.7998 33.8008 -57.7002 33.8008\\nc-42.5 0 -47.3994 -14.8008 -47.3994 -25.9004c0 -13.4004 5.7998 -17.2998 63.2002 -24.9004c56.6992 -7.5 83.6992 -18.0996 83.6992 -58z\\\" />\\n    <glyph glyph-name=\\\"npm\\\" unicode=\\\"&#xf3d4;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 160h-32v64h32v-64zM576 288v-192h-288v-32h-128v32h-160v192h576zM160 256h-128v-128h64v96h32v-96h32v128zM320 256h-128v-160h64v32h64v128zM544 256h-192v-128h64v96h32v-96h32v96h32v-96h32v128z\\\" />\\n    <glyph glyph-name=\\\"ns8\\\" unicode=\\\"&#xf3d5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M187.1 288.1h44.9004l-48.5 -160.1h-56.9004l-50.5996 106.5l-31.0996 -106.5h-44.9004l49 160.1h49.4004l54.5 -113.699zM639.6 289c4.60059 -28.5996 -36.0996 -44.7002 -65.6992 -50.5996h-0.100586c17.5 -29.3008 22.1006 -69.3008 3.40039 -105.5\\nc-26.4004 -51.2002 -86.5 -79.9004 -135.101 -68c-29.3994 7.19922 -51.3994 29 -56.7998 59.5c-0.700195 3.5 -1 7.09961 -1.2002 10.7998c-5.5 -2.7998 -11.8994 -4.2002 -18.5 -4.90039c-15.5996 -1.7002 -21 -2.2998 -160.899 -2.2998l11.5996 39.5h126.8\\nc9.10059 0 12.2002 3.2002 13.8008 7.40039c1.69922 4.59961 3.39941 10.1992 4.5 14.5996c1.09961 3.90039 0.0996094 6.59961 -7.7002 6.59961h-87.2998c-33.4004 0 -38.2002 9.2002 -32.8008 28.6006c3.2002 11.5 10.8008 37.2002 17.6006 47.0996\\nc7.09961 10.2002 18.2998 13.7002 30.5996 15c15.6006 1.7002 20.4004 1.2002 160.101 1.2002l-9.7002 -31.5h-133.5c-5.5 0 -11.2002 -0.700195 -13.2998 -7.09961c-1.80078 -5.40039 -2.10059 -6.7002 -3.7002 -12.2002c-1.40039 -5.10059 2.2002 -7.40039 11.5 -7.40039\\nh87.5996c20.4004 0 31 -6.7998 34 -16.5996c19.9004 21.3994 50.4004 39.5 94.2002 48.2002v0.0996094c-13.4004 42.5 43.9004 66.5996 88.5 58.7998c18.2002 -3.2002 39.2002 -13.2998 42.0996 -31.2998zM530.7 184.3c3.09961 15.7998 -0.5 33.7002 -7.2002 47.7998\\nc-23.2998 -2.89941 -52.2998 -10.0996 -68.5 -26.8994c-24.4004 -25.2998 -16.7998 -60 14.0996 -64.7998c25 -3.90039 55.7002 14.3994 61.6006 43.8994zM552.5 267.4c10.5996 1.5 23.5 3.5 34.2002 9.59961c14.7998 8.5 10.3994 21 -4.90039 24.4004\\nc-10.8994 2.39941 -25.0996 -0.5 -31.7998 -7.7002c-7.2998 -7.7998 -1.7002 -20.2998 2.5 -26.2998z\\\" />\\n    <glyph glyph-name=\\\"nutritionix\\\" unicode=\\\"&#xf3d6;\\\" horiz-adv-x=\\\"400\\\" \\nd=\\\"M88 439.9c0 0 133.4 8.19922 121 -104.4c0 0 19.0996 74.9004 103 40.5996c0 0 -17.7002 -74 -88 -56c0 0 14.5996 54.6006 66.0996 56.6006c0 0 -39.8994 10.2998 -82.0996 -48.7998c0 0 -19.7998 94.5 -93.5996 99.6992c0 0 75.1992 -19.3994 77.5996 -107.5\\nc0 -0.0996094 -106.4 -7 -104 119.801zM400 124.3c0 -48.5 -9.7002 -95.2998 -32 -132.3c-42.2002 -30.9004 -105 -48 -168 -48c-62.9004 0 -125.8 17.0996 -168 48c-22.2998 37 -32 83.7998 -32 132.3c0 48.4004 17.7002 94.7002 40 131.7\\nc42.2002 30.9004 97.0996 48.5996 160 48.5996c63 0 117.8 -17.5996 160 -48.5996c22.2998 -37 40 -83.2998 40 -131.7zM120 20c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM120 86.2002c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28\\ns12.5 -28 28 -28s28 12.5 28 28zM120 152.4c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM192 20c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM192 86.2002c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28\\ns12.5 -28 28 -28s28 12.5 28 28zM192 152.4c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM264 20c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM264 86.2002c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28\\ns12.5 -28 28 -28s28 12.5 28 28zM264 152.4c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM336 20c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM336 86.2002c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28\\ns12.5 -28 28 -28s28 12.5 28 28zM336 152.4c0 15.5 -12.5 28 -28 28s-28 -12.5 -28 -28s12.5 -28 28 -28s28 12.5 28 28zM360 192c-4.7998 22.2998 -7.40039 36.9004 -16 56c-38.7998 19.9004 -90.5 32 -144 32s-105.2 -12.0996 -144 -32\\nc-8.7998 -19.5 -11.2002 -33.9004 -16 -56c42.2002 7.90039 98.7002 14.7998 160 14.7998s117.8 -6.89941 160 -14.7998z\\\" />\\n    <glyph glyph-name=\\\"page4\\\" unicode=\\\"&#xf3d7;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 -56c-137 0 -248 111 -248 248s111 248 248 248c20.9004 0 41.2998 -2.59961 60.7002 -7.5l-266.4 -376.5h205.7v-112zM248 87.5996h-149.4l149.4 213.601v-213.601zM344 56h111.4c-26.9004 -41 -65.7002 -73.5 -111.4 -92.7002v92.7002zM401.4 194.2v-16.7002\\nl-21.2002 8.2998zM381.1 139.7c5.90039 0 8.2002 -4.7002 8.2002 -10.6006v-10h-16.2002v7.7002c0 6.60059 1.30078 12.9004 8 12.9004zM496 192c0 -37.2998 -8.2002 -72.7002 -23 -104.4h-129v333.101c89.2998 -37.5 152 -125.8 152 -228.7zM360.4 304.4h68.1992v47.5996\\nh-13.8994v-32.5996h-13.9004v29.5996h-13.8994v-29.5996h-12.7002v32.5996h-13.9004v-47.5996h0.100586zM428.5 119.1h-26.5v11c0 15.4004 -5.59961 25.2002 -20.9004 25.2002c-15.3994 0 -20.6992 -10.5996 -20.6992 -25.8994v-25.3008h68.1992v15h-0.0996094zM428.5 222.1\\nl-68.2002 -29.6992v-12.4004l68.2002 -29.5v16.5996l-14.4004 5.7002v26.5l14.4004 5.90039v16.8994zM423.7 290.6h-35.6006v-26.5996h13.9004v12.2002h11c8.59961 -15.7998 1.2998 -35.2998 -18.5996 -35.2998c-22.5 0 -28.3008 25.2998 -15.5 37.6992l-11.6006 10.6006\\nc-16.2002 -17.5 -12.2002 -63.9004 27.1006 -63.9004c34 0 44.6992 35.9004 29.2998 65.2998z\\\" />\\n    <glyph glyph-name=\\\"palfed\\\" unicode=\\\"&#xf3d8;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M384.9 254.1c0.0996094 -53.3994 -46.5 -96.1992 -83.3008 -96.1992c-12.5 0 -14.3994 3.39941 -15.0996 6.19922c0.5 39.1006 1.7002 80.4004 3 119.801c40.2002 14.3994 95.4004 17.5996 95.4004 -29.8008zM190.4 181.9\\nc-0.200195 0.599609 -0.400391 2.09961 -0.600586 4.59961c0 25.5996 37 60.9004 58.5 75.9004c-1.2002 -36.4004 -5.5 -198.101 -1.39941 -242.5c3 -32.3008 26.7998 -32.9004 36.3994 -22.3008c5.90039 6.60059 5.5 15.7002 5.2998 19.1006v0.200195\\nc-1.7998 25.5996 -2.7998 60.5996 -2.69922 100c60.7998 -14.4004 140.1 60.2998 140.1 138.199c0 71 -63 94.2002 -135.2 72c-2.89941 14.6006 -18.2998 20.1006 -29.5 11.1006c-7.5 -6.2002 -9.5 -15.7998 -10.5 -28.2002c-57.7998 -30.9004 -100.7 -84.5 -100.7 -126.5\\nc0 -24.9004 15.6006 -43 37.1006 -43c35.0996 0 41 44.0996 14.3994 44.0996c-4.69922 0 -11 -2.69922 -11.1992 -2.69922zM8 266.9c0 38.5996 38.4004 37.3994 38.4004 37.3994h29c15.5 70.1006 120.5 74.2998 120.5 74.2998h28.0996v19.1006\\nc0 18.3994 21.0996 18.3994 21.0996 18.3994h85.8008c18.3994 0 21.0996 -18.3994 21.0996 -18.3994v-19.1006h28c89.2002 0 112.1 -48.6992 119.4 -74.2998h30.0996c38.5 0 38.4004 -37.3994 38.4004 -37.3994c0 -38.6006 -38.4004 -37.4004 -38.4004 -37.4004h-30\\nl-22.4004 -217.2c0 -43.8994 -44.6992 -44.2998 -44.6992 -44.2998h-288.9c-44.7002 0 -44.7002 44.2998 -44.7002 44.2998l-22.3994 217.2h-30c-38.5 0 -38.4004 37.4004 -38.4004 37.4004z\\\" />\\n    <glyph glyph-name=\\\"patreon\\\" unicode=\\\"&#xf3d9;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M512 253.2c0 -101.3 -82.4004 -183.8 -183.8 -183.8c-101.7 0 -184.4 82.3994 -184.4 183.8c0 101.6 82.7002 184.3 184.4 184.3c101.399 0 183.8 -82.7002 183.8 -184.3zM0 -53.5v491h90v-491h-90z\\\" />\\n    <glyph glyph-name=\\\"periscope\\\" unicode=\\\"&#xf3da;\\\" \\nd=\\\"M370 384.4c38.4004 -40.7002 59.5 -94.3008 59.5 -150.801c0 -74.2998 -57.4004 -159.5 -82 -192.6c-8 -10.7998 -79.2998 -105 -120.9 -105c-34 0 -88.7998 56.5 -125.399 104.9c-24.9004 32.8994 -82.7002 117.6 -82.7002 192.699c0 118.2 93.4004 214.4 208.1 214.4\\nc53.9004 0 104.801 -22.5996 143.4 -63.5996zM226.6 -45.9004c37.3008 0 184.801 167.301 184.7 279.4c0 107.3 -83.8994 196.3 -184.7 196.3c-106.1 0 -190 -88.8994 -190 -196.3c0 -112.1 147.5 -279.4 190 -279.4zM338 241.2c0 -59.1006 -51.0996 -109.7 -110.8 -109.7\\nc-100.601 0 -150.7 108.2 -92.9004 181.8v-0.399414c0 -24.5 20.1006 -44.4004 44.7998 -44.4004c24.7002 0 44.8008 19.9004 44.8008 44.4004c0 18.1992 -11.1006 33.7998 -26.9004 40.6992c76.5996 19.2002 141 -39.2998 141 -112.399z\\\" />\\n    <glyph glyph-name=\\\"phabricator\\\" unicode=\\\"&#xf3db;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M323 185.9c0 0 21.5996 -19.6006 20.9004 -20.7002l-8.10059 -19.7998c-0.5 -1.40039 -29.7002 -0.5 -29.7002 -0.5l-9.09961 -9.10059s1.59961 -31.5 0.200195 -32.0996l-20 -7.5c-1.2998 -0.5 -21.7998 23.2998 -21.7998 23.2998l-13.1006 0.200195\\ns-19.2998 -24.1006 -20.7002 -23.5l-20.0996 8.2998c-1.40039 0.5 -1.2002 32.2998 -1.2002 32.2998l-9.39941 9.2998s-28.9004 -0.899414 -29.5 0.5l-9.5 20c-0.600586 1.40039 21.0996 21.2002 21.0996 21.2002l-0.0996094 12.9004s-21.6006 19.5996 -21 21\\nl8.09961 19.7998c0.5 1.2998 29.7002 0.400391 29.7002 0.400391l9.09961 9.09961s-1.59961 28.4004 -0.200195 28.9004l20 8.2998c1.40039 0.599609 21.9004 -20.7998 21.9004 -20.7998l13.0996 -0.200195s19.3008 21.5996 20.7002 21l20.1006 -9.2002\\nc1.39941 -0.599609 1.19922 -29.0996 1.19922 -29.0996l9.40039 -9.30078s28.9004 0.900391 29.5 -0.5l9.5 -20c0.599609 -1.39941 -21.0996 -21.1992 -21.0996 -21.1992zM278.1 194.6c-0.699219 17 -15.5 30.3008 -32.7998 29.5\\nc-17.2998 -0.699219 -30.7998 -15.1992 -30.0996 -32.2998c0.700195 -17.0996 15.5 -30.3994 32.7998 -29.5996s30.7998 15.2998 30.0996 32.3994zM479.3 232.5c22.2998 -22.2998 22.2998 -58.7002 0 -81c-67.3994 -67.4004 -44.2998 -44.4004 -95.2998 -95.2998\\nc-74.4004 -74.5 -194.7 -74.9004 -269.8 -1.60059l-0.100586 -0.0996094c-51 51 -27.5 27.5996 -97.3994 97c-22.2998 22.2998 -22.2998 58.7002 0 81c67.8994 67.4004 44.7998 44.2998 95.7002 95.2998c74.3994 74.4004 194.699 74.9004 269.8 1.60059l0.0996094 0.0996094\\nzM140.4 84.2002c59.5996 -59.5 156 -59.6006 215.6 -0.100586c59.5996 59.6006 59.5 156.101 0 215.601c-59.5996 59.5 -156.1 59.5996 -215.6 0c-59.6006 -59.5 -59.6006 -156 0 -215.5z\\\" />\\n    <glyph glyph-name=\\\"phoenix-framework\\\" unicode=\\\"&#xf3dc;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M212.9 103.7c-36.7002 -1.2002 -108.7 29.2998 -127.7 106.399c-8.7002 35.3008 -2.7002 51.8008 -8 86.1006c-8.2002 53.3994 -32.1006 72.2002 -55.9004 76.5c-6.2002 1.09961 -12.3994 1.2998 -18.7002 0.299805\\nc-0.799805 -0.0996094 -1.59961 -0.200195 -2.39941 -0.200195c-0.100586 0.200195 -0.100586 0.299805 -0.200195 0.5c0.700195 0.600586 1.40039 1.2002 2.2002 1.7998c36.8994 26.9004 92 38.4004 136.3 35c123.6 -9.5 141.3 -156.6 252.5 -173.1\\nc6.09961 -0.900391 12.2998 -1.09961 18.5 -1.7002c0.700195 -0.0996094 1.40039 -0.0996094 2.5 -0.200195c-2.09961 -2.19922 -21.5996 -11.7998 -36.5 -14.5c-18.4004 -3.39941 -35.7002 -0.0996094 -51.2998 10.3008c-14.5 9.7998 -24.5 23.5 -38.9004 27.3994\\nc-13 3.60059 -34.0996 1.7002 -35.8994 -19.5996c-1.30078 -15.9004 14.1992 -51.7998 51.7998 -74.6006c40.3994 -24.5 101.399 -26.8994 134.7 -14.7998c0.299805 0.100586 0.699219 0.200195 1.09961 0.299805c0.200195 0.100586 0.400391 0 1 -0.0996094\\nc-23.5996 -28.4004 -71.2002 -49.9004 -108.2 -45.4004c-50.3994 6.2002 -77.7002 75.9004 -113.7 97.5c-19.0996 11.5 -49.0996 7 -52 -18.5c-1.09961 -10 2.10059 -19 6.40039 -27.5996c24.4004 -48.5996 65.5996 -47 68 -49.5996\\nc-2.7998 -0.800781 -21.7998 -2.10059 -25.5996 -2.2002zM75.2998 383.1c13.1006 -14.5 34.2002 -7.89941 35.2998 6.80078c-12.3994 -0.700195 -24.5 -2.2002 -36.5996 -4.80078c0.400391 -0.799805 0.400391 -1 1.2998 -2zM272.2 32.5996\\nc-42.7998 -1.19922 -92 26.7002 -123.5 61.4004c-4.60059 5 -16.7998 20.2002 -18.6006 23.4004l0.400391 0.399414c6.59961 -4.09961 25.7002 -18.5996 54.7998 -27c24.2002 -7 48.1006 -6.2998 71.6006 3.2998c22.6992 9.30078 41 0.5 43.0996 -2.89941\\nc-18.5 -3.7998 -20.0996 -4.40039 -24 -7.90039c-5.09961 -4.39941 -4.59961 -11.7002 7 -17.2002c26.2002 -12.3994 63 2.80078 97.2002 -25.3994c2.39941 -2 8.09961 -7.7998 10.0996 -10.7002c-0.0996094 -0.200195 -0.299805 -0.299805 -0.399414 -0.5\\nc-4.80078 1.5 -16.4004 7.5 -40.2002 9.2998c-24.7002 2 -46.2998 -5.2998 -77.5 -6.2002zM447 284.6c16.4004 5.2002 41.2998 13.4004 66.5 3.30078c16.0996 -6.5 26.2002 -18.7002 32.0996 -34.6006c3.5 -9.39941 5.10059 -19.7002 5.10059 -28.7002\\nc-0.200195 0 -0.400391 0 -0.600586 -0.0996094c-0.199219 0.400391 -0.399414 0.900391 -0.5 1.2998c-5 22 -29.8994 43.7998 -67.5996 29.9004c-50.2002 -18.6006 -130.4 -9.7002 -176.9 48c-0.699219 0.899414 -2.39941 1.7002 -1.2998 3.2002\\nc0.100586 0.199219 2.10059 -0.600586 3 -1.30078c18.1006 -13.3994 38.2998 -21.8994 60.2998 -26.1992c30.5 -6.10059 54.6006 -2.90039 79.9004 5.19922zM549.7 167.1c-32.4004 -0.199219 -33.7998 -50.0996 -103.601 -64.3994\\nc-18.1992 -3.7002 -38.6992 -4.60059 -44.8994 -4.2002v0.400391c2.7998 1.5 14.7002 2.59961 29.7002 16.5996c7.89941 7.2998 15.2998 15.0996 22.7998 22.9004c19.5 20.1992 41.3994 42.1992 81.8994 39c23.1006 -1.80078 29.3008 -8.2002 36.1006 -12.7002\\nc0.299805 -0.200195 0.399414 -0.5 0.700195 -0.900391c-0.5 0 -0.700195 -0.0996094 -0.900391 0c-7 2.7002 -14.2998 3.2998 -21.7998 3.2998zM537.4 191.2c-0.100586 -0.200195 -0.100586 -0.400391 -0.200195 -0.600586c-28.9004 4.40039 -48 7.90039 -68.5 -4\\nc-17 -9.89941 -31.4004 -20.5 -62 -24.3994c-27.1006 -3.40039 -45.1006 -2.40039 -66.1006 8c-0.299805 0.200195 -0.599609 0.399414 -1 0.599609c0 0.200195 0.100586 0.299805 0.100586 0.5c24.8994 -3.7998 36.3994 -5.09961 55.5 5.7998\\nc22.2998 12.9004 40.0996 26.6006 71.2998 31c29.5996 4.10059 51.2998 -2.5 70.9004 -16.8994zM268.6 350.7c-0.599609 0.599609 -1.09961 1.2002 -2.09961 2.2998c7.59961 0 29.7002 1.2002 53.4004 -8.40039c19.6992 -8 32.1992 -21 50.1992 -32.8994\\nc11.1006 -7.2998 23.4004 -9.2998 36.4004 -8.10059c4.2998 0.400391 8.5 1.2002 12.7998 1.7002c0.400391 0.100586 0.900391 0 1.5 -0.299805c-0.599609 -0.400391 -1.2002 -0.900391 -1.7998 -1.2002c-8.09961 -4 -16.7002 -6.2998 -25.5996 -7.09961\\nc-26.1006 -2.60059 -50.3008 3.7002 -73.4004 15.3994c-19.2998 9.90039 -36.4004 22.9004 -51.4004 38.6006zM640 112.3c-3.5 -3.09961 -22.7002 -11.5996 -42.7002 -5.2998c-12.2998 3.90039 -19.5 14.9004 -31.5996 24.0996\\nc-10 7.60059 -20.9004 7.90039 -28.1006 8.40039c0.600586 0.799805 0.900391 1.2002 1.2002 1.40039c14.7998 9.19922 30.5 12.1992 47.2998 6.5c12.5 -4.2002 19.2002 -13.5 30.4004 -24.2002c10.7998 -10.4004 21 -9.90039 23.0996 -10.5\\nc0.100586 0.0996094 0.200195 0 0.400391 -0.400391zM427.5 -24.7002c2.2002 -1.2002 1.59961 -1.5 1.5 -2c-18.5 1.40039 -33.9004 7.60059 -46.7998 22.2002c-21.7998 24.7002 -41.7002 27.9004 -48.6006 29.7002c0.5 0.200195 0.800781 0.399414 1.10059 0.399414\\nc13.0996 -0.0996094 26.0996 -0.699219 38.8994 -3.89941c25.3008 -6.40039 35 -25.4004 41.6006 -35.2998c3.2002 -4.80078 7.2998 -8.30078 12.2998 -11.1006z\\\" />\\n    <glyph glyph-name=\\\"playstation\\\" unicode=\\\"&#xf3df;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M570.9 75.7002c-11.3008 -14.2002 -38.8008 -24.2998 -38.8008 -24.2998l-205.1 -73.6006v54.2998l150.9 53.8008c17.0996 6.09961 19.7998 14.7998 5.7998 19.3994c-13.9004 4.60059 -39.1006 3.2998 -56.2002 -2.89941l-100.5 -35.5v56.3994\\nc23.2002 7.7998 47.0996 13.6006 75.7002 16.7998c40.8994 4.5 90.8994 -0.599609 130.2 -15.5c44.1992 -14 49.1992 -34.6992 38 -48.8994zM346.5 168.2v139c0 16.2998 -3 31.2998 -18.2998 35.5996c-11.7002 3.7998 -19 -7.09961 -19 -23.3994v-347.9l-93.7998 29.7998\\nv414.7c39.8994 -7.40039 98 -24.9004 129.199 -35.4004c79.5 -27.2998 106.4 -61.2998 106.4 -137.8c0 -74.5 -46 -102.8 -104.5 -74.5996zM43.2002 37.7998c-45.4004 12.7998 -53 39.5 -32.2998 54.7998c19.0996 14.2002 51.6992 24.9004 51.6992 24.9004l134.5 47.7998\\nv-54.5l-96.7998 -34.5996c-17.0996 -6.10059 -19.7002 -14.7998 -5.7998 -19.4004c13.9004 -4.59961 39.0996 -3.2998 56.2002 2.90039l46.3994 16.8994v-48.7998c-51.5996 -9.2998 -101.399 -7.2998 -153.899 10z\\\" />\\n    <glyph glyph-name=\\\"pushed\\\" unicode=\\\"&#xf3e1;\\\" horiz-adv-x=\\\"432\\\" \\nd=\\\"M407 336.1c21.7002 -1.89941 33.7998 -28 17.4004 -44.7998l-235.2 -231.3l-35.2998 -80.7998c-11 -17.2002 -41.2002 -14.2998 -47.7002 7l-105.101 348.3c-4.59961 18.2998 6.30078 33.9004 21.4004 36.5996l271.3 44.4004c17.9004 3.40039 39.1006 -13.5 28.7002 -37\\nl-14 -33.4004zM297.6 394.4l-189 -31l177.4 -16.3008l16.7998 39.9004c2.2998 4.90039 -0.0996094 8.09961 -5.2002 7.40039zM22.7002 340.1l157.899 -244.3l96.9004 230.7l-248.7 22.7002c-5.09961 0.899414 -9.2002 -4 -6.09961 -9.10059zM136 -8.40039\\nc0 0 28.2002 64.1006 35.2002 79.1006l-127.7 197.6l83.0996 -275.5c1.5 -4.2998 6.80078 -5.2002 9.40039 -1.2002zM408.8 306.1c3.10059 3.30078 1.40039 7.5 -2.59961 8.60059l-106.4 9.7002l-89.7002 -213.7z\\\" />\\n    <glyph glyph-name=\\\"python\\\" unicode=\\\"&#xf3e2;\\\" \\nd=\\\"M439.8 247.5c10.7002 -42.9004 11.2002 -75.0996 0 -108.6c-10.7998 -32.5 -22.2998 -54.2002 -53.3994 -54.2002h-160.2v-13.6006h106.7v-40.6992c0 -30.8008 -26.5 -46.5 -53.4004 -54.3008c-40.5 -11.6992 -73 -9.89941 -106.8 0\\nc-28.2002 8.30078 -53.4004 25.3008 -53.4004 54.3008v101.8c0 29.2998 24.2002 54.2998 53.4004 54.2998h106.8c35.5996 0 66.7998 31 66.7998 67.7998v47.4004h40.1006c31.0996 0 45.6992 -23.2998 53.3994 -54.2002zM286.2 44c-11 0 -20 -9 -20.1006 -20.2998\\nc0 -11.2002 9.10059 -20.4004 20.1006 -20.4004c11.0996 0 20.0996 9.10059 20.0996 20.4004c0 11.2002 -9 20.2998 -20.0996 20.2998zM167.8 199.9c-36.2998 0 -66.7998 -31.1006 -66.7998 -66.4004v-48.7998h-36.7002c-31.0996 0 -49.2002 22.5996 -56.7998 54.2002\\nc-10.2002 42.5 -9.7998 67.8994 0 108.6c8.5 35.5 35.7002 54.2002 66.7998 54.2002h147v13.5996h-106.899v40.7002c0 30.9004 8.19922 47.5996 53.3994 55.5996c32.1006 5.7002 71 6 106.8 0.100586c29 -4.90039 53.4004 -26.6006 53.4004 -55.6006v-101.899\\nc0 -29.7998 -23.7002 -54.2998 -53.4004 -54.2998h-106.8zM161.1 342.5c11.1006 0 20.1006 9.09961 20.1006 20.2998s-9.10059 20.4004 -20.1006 20.4004c-11.0996 0 -20 -9.10059 -20.0996 -20.4004c0 -11.2002 9 -20.2998 20.0996 -20.2998z\\\" />\\n    <glyph glyph-name=\\\"red-river\\\" unicode=\\\"&#xf3e3;\\\" \\nd=\\\"M353.2 416c52.3994 0 94.7998 -42.4004 94.7998 -94.7998v-258.4c0 -52.3994 -42.4004 -94.7998 -94.7998 -94.7998h-258.4c-52.3994 0 -94.7998 42.4004 -94.7998 94.7998v258.4c0 52.3994 42.4004 94.7998 94.7998 94.7998h258.4zM144.9 247.1\\nc-0.600586 12.4004 11.6992 24.6006 24 24h56.2998c27 0 48.8994 21.9004 48.8994 48.9004h-154.199c-13.2002 0 -23.9004 -10.7002 -23.9004 -23.9004v-154.199c27 0 48.9004 21.8994 48.9004 48.8994v56.2998zM321.2 175.1c27 0 48.8994 21.9004 48.8994 48.9004h-154.199\\nc-13.2002 0 -23.9004 -10.7002 -23.9004 -23.9004v-154.199c27 0 48.9004 21.8994 48.9004 48.8994v56.2998c-0.600586 12.4004 11.6992 24.6006 24 24h56.2998z\\\" />\\n    <glyph glyph-name=\\\"wpressr\\\" unicode=\\\"&#xf3e4;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM419.33 281.4c2.41016 5.47949 0.459961 8.2793 -5.62012 8.26953c-104.8 0.00976562 -107.69 -0.0302734 -130.78 0.0302734\\nc-4.31934 0.00976562 -7.10938 -1.82031 -8.83984 -5.78027c-5.70996 -13.0996 -11.5195 -26.1504 -17.2998 -39.21c-2.57031 -5.7998 -1 -8.26953 5.26953 -8.26953c25.2607 0 50.5205 -0.0107422 75.7803 0.0195312\\nc10.0303 0.00976562 8.54004 -13.6602 -3.89941 -13.6396c-26.4307 0.0498047 -52.8604 0 -79.29 0.0498047c-4.91016 0.00976562 -8.33008 -1.88965 -10.3506 -6.5c-4.2998 -9.83008 -32.1494 -73.0801 -32.1895 -73.1602\\nc-3.2002 -7.16016 -16.2607 -6.09961 -11.2803 5.33008c8.26953 18.9902 16.6504 37.9297 24.9795 56.8896c2.25 5.11035 -0.0996094 8.74023 -5.65918 8.75c-15.21 0.0205078 -30.4307 -0.0400391 -45.6406 0.0400391\\nc-3.35938 0.0107422 -5.41016 -1.29004 -6.76953 -4.38965c-31.4307 -71.8701 -29.7803 -67.3203 -30.0098 -67.6904c-3.87012 -6.37012 -14.8604 -3.34961 -10.9502 5.60059c5.66992 13.0098 11.3701 26.0098 17.0898 39c13.5703 30.7793 27.1396 61.5596 40.7402 92.3301\\nc2.54004 5.75 -0.419922 10.5801 -6.66016 10.5898c-14.2402 0.0302734 -28.4805 -0.0498047 -42.7197 0.0498047c-4.26074 0.0302734 -6.84082 -1.76953 -8.54004 -5.65039c-12.8604 -29.3896 -25.8203 -58.7295 -38.75 -88.0791\\nc-8.62012 -19.5605 -17.2305 -39.1201 -25.8906 -58.6602c-1.58008 -3.55078 -1.47949 -6.78027 1.20996 -9.73047c11.2207 -12.3096 22.4707 -24.6094 33.6807 -36.9395c2.08984 -2.30078 4.58984 -3.4502 7.71973 -3.4502c45.9395 0.0195312 91.8701 0.00976562 137.81 0\\nc3.86035 0 6.37988 1.78027 7.91992 5.29004c10.3203 23.5 20.7607 46.9395 30.9502 70.5c2.08984 4.83008 5.21973 6.75 10.3398 6.71973c23.0205 -0.110352 46.0303 -0.0400391 69.0508 -0.0498047c6.0791 0 10.5293 2.72949 12.9697 8.24023\\nc15.2598 34.4795 30.4502 68.9893 45.6299 103.5z\\\" />\\n    <glyph glyph-name=\\\"replyd\\\" unicode=\\\"&#xf3e6;\\\" \\nd=\\\"M320 -32h-192c-70.4004 0 -128 57.5996 -128 128v192c0 70.4004 57.5996 128 128 128h192c70.4004 0 128 -57.5996 128 -128v-192c0 -70.4004 -57.5996 -128 -128 -128zM193.4 174.8c-6.10059 2 -11.6006 3.10059 -16.4004 3.10059\\nc-7.2002 0 -13.5 -1.90039 -18.9004 -5.60059c-5.39941 -3.7002 -9.59961 -9 -12.7998 -15.7998h-1.09961l-4.2002 18.2998h-28v-138.899h36.0996v89.6992c1.5 5.40039 4.40039 9.80078 8.7002 13.2002c4.2998 3.40039 9.7998 5.10059 16.2002 5.10059\\nc4.59961 0 9.7998 -1 15.5996 -3.10059zM308.6 71.4004c-3.19922 -2.40039 -7.69922 -4.80078 -13.6992 -7.10059s-12.8008 -3.5 -20.4004 -3.5c-12.2002 0 -21.0996 3 -26.5 8.90039c-5.5 5.89941 -8.5 14.7002 -9 26.3994h83.2998\\nc0.900391 4.80078 1.60059 9.40039 2.10059 13.9004c0.5 4.40039 0.699219 8.59961 0.699219 12.5c0 10.7002 -1.59961 19.7002 -4.69922 26.9004c-3.2002 7.19922 -7.30078 13 -12.5 17.1992c-5.2002 4.30078 -11.1006 7.30078 -17.8008 9.2002\\nc-6.69922 1.7998 -13.5 2.7998 -20.5996 2.7998c-21.0996 0 -37.5 -6.09961 -49.2002 -18.2998s-17.5 -30.5 -17.5 -55c0 -22.7998 5.2002 -40.7002 15.6006 -53.7002c10.3994 -13.0996 26.7998 -19.5996 49.1992 -19.5996c10.7002 0 20.9004 1.5 30.4004 4.59961\\nc9.5 3.10059 17.0996 6.80078 22.5996 11.2002zM286.8 141.7c3.7998 -5.40039 5.2998 -13.1006 4.60059 -23.1006h-51.7002c0.899414 9.40039 3.7002 17 8.2002 22.6006c4.5 5.59961 11.5 8.5 21 8.5c8.19922 0.0996094 14.0996 -2.60059 17.8994 -8zM366.7 139.2\\nc4.09961 -3.90039 9.39941 -5.7998 16.0996 -5.7998c7 0 12.6006 1.89941 16.7002 5.7998c4.09961 3.89941 6.09961 9.09961 6.09961 15.5996s-2 11.6006 -6.09961 15.4004s-9.59961 5.7002 -16.7002 5.7002c-6.7002 0 -12 -1.90039 -16.0996 -5.7002\\nc-4.10059 -3.7998 -6.10059 -8.90039 -6.10059 -15.4004s2 -11.7002 6.10059 -15.5996zM366.7 38.7002c4.09961 -3.90039 9.39941 -5.7998 16.0996 -5.7998c7 0 12.6006 1.89941 16.7002 5.7998c4.09961 3.89941 6.09961 9.09961 6.09961 15.5996\\ns-2 11.6006 -6.09961 15.4004s-9.59961 5.7002 -16.7002 5.7002c-6.7002 0 -12 -1.90039 -16.0996 -5.7002c-4.10059 -3.7998 -6.10059 -8.90039 -6.10059 -15.4004c0 -6.59961 2 -11.7002 6.10059 -15.5996z\\\" />\\n    <glyph glyph-name=\\\"resolving\\\" unicode=\\\"&#xf3e7;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M281.2 169.8l-197.9 -57.2002l-28.5996 98.6006l188.2 54.0996c52.6992 15.2998 65 8.10059 71.0996 -12.7998l11.2002 -39.2998c5.59961 -19.9004 2 -30.1006 -44 -43.4004zM248.5 440c137 0 248.5 -111.4 247.5 -247.7c0 -136.899 -111.5 -248.3 -248.5 -248.3\\nc-46 0 -89.5 12.7002 -126.3 34.7002l-23 80.2002l286.8 -37.3008l48.0996 13.3008l-9.69922 34.1992l-220.4 27.1006l92.5996 26.5996c30.2002 8.7002 42 15.7998 61.4004 33.2002c24.5 23 31.7002 45.5 23.5 73.5996l-10.7002 37.8008\\nc-8.7002 30.1992 -25.0996 49.0996 -61.3994 55.1992c-25.1006 3.5 -44.5 2 -79.3008 -8.19922l-221.899 -63.9004c26 108.8 124.2 189.5 241.3 189.5zM38.2998 59.4004c-24 38.3994 -38.2998 83.2998 -38.2998 131.8z\\\" />\\n    <glyph glyph-name=\\\"rocketchat\\\" unicode=\\\"&#xf3e8;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M486.41 340.43c119.649 -76.54 119.26 -221 0 -297.14c-77.1201 -50.9199 -179.37 -62.3896 -264.12 -47.1602c-95.5205 -91.1895 -201.72 -49.1602 -222.29 -37c0 0 73.0801 62.1006 61.21 116.49c-45.3896 46.3701 -86.5195 144.57 0 232.77\\nc11.8701 54.3906 -61.21 116.49 -61.21 116.49c20.7695 12.1201 127.26 54.2803 222.29 -37.3799c84.9404 15.3301 187.19 3.75977 264.12 -47.0703zM294.18 43.7803c126.67 0 229.409 66.2197 229.409 148.22s-102.74 148.43 -229.41 148.43\\ns-229.41 -66.4297 -229.41 -148.43c0 -35.79 19.4707 -68.5195 52 -94.1299c9.11426 -29.127 3.78125 -62.0234 -15.999 -98.6904c-0.889648 -1.67969 -1.76953 -3.45996 -2.76953 -5.23926c15.0498 1.33594 38.2158 7.93555 51.71 14.7295\\nc11.0684 6.26562 27.46 18.5361 36.5898 27.3896l19.7705 19.0908c23.6396 -6.27734 62.6758 -11.3721 87.1348 -11.3721c0.269531 0 0.706055 0.000976562 0.974609 0.00195312zM184.119 156.7c-0.133789 -0.00195312 -0.351562 -0.00390625 -0.485352 -0.00390625\\nc-18.6182 0 -33.9912 15.1084 -34.3145 33.7236c-0.700195 45.3896 67.8301 46.3799 68.5195 1.08984v-0.509766c0.000976562 -0.0888672 0.00195312 -0.232422 0.00195312 -0.321289c0 -18.6152 -15.1074 -33.8467 -33.7217 -33.999v0.0205078zM257.889 190.42\\nc-0.790039 45.3896 67.7402 46.4805 68.5303 1.19043v-0.610352c0.389648 -45.0801 -67.7402 -45.5703 -68.5303 -0.580078zM401.269 156.7c-0.133789 -0.00195312 -0.350586 -0.00390625 -0.485352 -0.00390625c-18.6182 0 -33.9951 15.1084 -34.3242 33.7236\\nc-0.69043 45.3896 67.8398 46.3799 68.5303 1.08984v-0.509766c0.000976562 -0.119141 0.00292969 -0.311523 0.00292969 -0.430664c0 -18.6152 -15.1084 -33.7979 -33.7236 -33.8896v0.0205078z\\\" />\\n    <glyph glyph-name=\\\"rockrms\\\" unicode=\\\"&#xf3e9;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM405.4 20.5l-101.5 118.9s73.5996 0.199219 74.1992 0.199219c29.6006 -1.09961 46.6006 33.3008 27.6006 56.1006l-157.7 185.1c-13.2002 17.2998 -40.0996 18.4004 -54.5 0\\nl-147.1 -172.5h90l84.2998 98.9004l84.5996 -99.2998h-75.2998c-30.5 0 -44.5 -35.7002 -26.5996 -56.1006l112 -131.3h90z\\\" />\\n    <glyph glyph-name=\\\"schlix\\\" unicode=\\\"&#xf3ea;\\\" \\nd=\\\"M350.5 290.3l-54.2002 46.1006l73.4004 39l78.2998 -44.2002zM192 325.9l45.7002 28.1992l34.7002 -34.5996l-55.4004 -29zM126.9 319.3l31.8994 22.1006l17.2002 -28.4004l-36.7002 -22.5zM103.6 231.1l-8.7998 34.8008l29.6006 18.2998l13.0996 -35.2998z\\nM82.4004 314.8l23.8994 18.1006l8.90039 -24l-26.7002 -18.3008zM59 241.5l-3.59961 28.4004l22.2998 15.5l6.09961 -28.7002zM28.4004 224.9l20.7998 12.7998l3.2998 -33.4004l-22.9004 -12zM1.40039 180l19.1992 10.2002l0.400391 -38.2002l-21 -8.7998zM60.5 120.7\\nl-28.2998 -8.2998l-1.60059 46.7998l25.1006 10.7002zM99 184.8l-31.0996 -13l-5.2002 40.7998l27.3994 14.4004zM123.2 71l-41.6006 -5.90039l-8.09961 63.5l35.2002 10.8008zM151.7 210.9l21.2002 -57.1006l-46.2002 -13.5996l-13.7002 54.0996zM237.4 -19.5996\\nl-70.9004 3.2998l-24.2998 95.7998l55.2002 8.59961zM152.5 260.1l42.2002 22.4004l28 -45.9004l-50.7998 -21.2998zM193.5 165.2l61.2998 18.7002l52.7998 -86.6006l-79.7998 -11.2998zM244.9 250.8l67.2998 28.7998l65.5 -65.3994l-88.6006 -26.2002z\\\" />\\n    <glyph glyph-name=\\\"searchengin\\\" unicode=\\\"&#xf3eb;\\\" horiz-adv-x=\\\"460\\\" \\nd=\\\"M220.6 317.7l-67.1992 -209.3v130.3l-54.7002 -24.2002l54.7002 190.3v-115.3zM137.4 414.4l-1.30078 -4.7002l-15.1992 -52.9004c-40.3008 -15.5 -68.9004 -54.5996 -68.9004 -100.3c0 -52.2998 34.2998 -95.9004 83.4004 -105.5v-53.5996\\nc-77.9004 10.5 -135.4 78.1992 -135.4 159c0 80.5 59.7998 147.199 137.4 158zM448.8 -32.7998c-11.2002 -11.2002 -23.0996 -12.2998 -28.5996 -10.5c-5.40039 1.7998 -27.1006 19.8994 -60.4004 44.3994c-33.2998 24.6006 -33.5996 35.7002 -43 56.7002\\nc-9.39941 20.9004 -30.3994 42.6006 -57.5 52.4004l-9.7002 14.7002c-24.6992 -16.9004 -53 -26.9004 -81.2998 -28.7002l2.10059 6.59961l15.8994 49.5c46.5 11.9004 80.9004 54 80.9004 104.2c0 54.5 -38.4004 102.1 -96 107.1v52.1006\\nc83.2002 -5.10059 148.8 -74.5 148.8 -159.3c0 -33.6006 -11.2002 -64.7002 -29 -90.4004l14.5996 -9.59961c9.80078 -27.1006 31.5 -48 52.4004 -57.4004s32.2002 -9.7002 56.7998 -43c24.6006 -33.2002 42.7002 -54.9004 44.5 -60.2998\\nc1.7998 -5.40039 0.700195 -17.2998 -10.5 -28.5zM438.9 -14.9004c0 4.40039 -3.60059 8 -8 8c-4.40039 0 -8 -3.59961 -8 -8c0 -4.39941 3.59961 -8 8 -8c4.39941 0 8 3.60059 8 8z\\\" />\\n    <glyph glyph-name=\\\"servicestack\\\" unicode=\\\"&#xf3ec;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M88 232c81.7002 -10.2002 273.7 -102.3 304 -232h-392c99.5 8.09961 184.5 137 88 232zM120 384c102.8 -15.5 335.3 -167.9 376 -384h-96c-26.2998 126.7 -150.7 216.7 -233.6 250.4c1.2998 49.6992 -14.1006 98 -46.4004 133.6z\\\" />\\n    <glyph glyph-name=\\\"sistrix\\\" unicode=\\\"&#xf3ee;\\\" \\nd=\\\"M448 -1l-30.5 -31l-146 148.1c-28.7002 -23.6992 -65.2002 -37.8994 -105 -37.8994c-91.7998 0 -166.5 75.7998 -166.5 168.899c0 93.1006 74.7002 168.9 166.6 168.801c91.8008 0 166.5 -75.8008 166.5 -168.9c0 -37 -11.8994 -71.2998 -31.8994 -99.2002zM166.5 117.2\\nc70.7002 0 128.1 58.2998 128.1 129.899c0 71.6006 -57.5 129.9 -128.1 129.9s-128.1 -58.2998 -128.1 -129.9c0 -71.5996 57.5 -129.899 128.1 -129.899z\\\" />\\n    <glyph glyph-name=\\\"slack-hash\\\" unicode=\\\"&#xf3ef;\\\" \\nd=\\\"M446.2 177.6c6.2002 -19 -3.90039 -39.6992 -22.9004 -45.6992l-45.3994 -15.1006l15.6992 -47c6.10059 -19.0996 -3.89941 -39.7002 -23 -45.8994c-21.2998 -6.10059 -40.0996 6 -46 22.8994l-15.6992 47l-93.6006 -31.2998l15.7002 -47\\nc6.09961 -19.0996 -3.90039 -39.7002 -23 -45.9004c-21.2998 -6.09961 -40.0996 6 -46 22.9004l-15.7002 47c-45.7002 -15.2002 -50.8994 -17.7998 -57.7002 -16.7998c-14.5 0.599609 -28.5996 10.0996 -33.5996 24.5996c-6.09961 19 4 39.7002 23 45.9004l45.4004 15.0996\\nl-30.3008 90c-45.6992 -15.2002 -50.8994 -17.7998 -57.6992 -16.7998c-14.5 0.599609 -28.6006 10.0996 -33.6006 24.5996c-6.09961 19.1006 3.90039 39.7002 23 45.9004l45.2998 15l-15.6992 47c-6.10059 19.0996 3.89941 39.7002 23 45.9004\\nc19.0996 6.19922 39.7998 -3.90039 46 -22.9004l15.6992 -47l93.4004 31.2002l-15.7002 47c-6.09961 19.0996 3.90039 39.7002 23 45.8994c19.1006 6.2002 39.7998 -3.89941 46 -22.8994l15.7002 -47l45.4004 15.0996c19.0996 6.2002 39.7998 -3.89941 46 -22.8994\\nc6.09961 -19.1006 -3.90039 -39.7002 -23 -45.9004l-45.4004 -15.0996l30.2998 -90l45.4004 15.0996c19.0996 6.2002 39.7998 -3.90039 46 -22.9004zM192.1 130.4l93.5 31.2998l-30.2998 90.2002l-93.5 -31.3008z\\\" />\\n    <glyph glyph-name=\\\"speakap\\\" unicode=\\\"&#xf3f3;\\\" \\nd=\\\"M64 56.2197c-79.4102 88.1904 -72 224.36 16.6396 304.141c88.6406 79.7793 224.801 73 304.21 -15.2402c79.4102 -88.2402 72 -224.36 -16.6396 -304.14c-18.7402 -16.8701 64 -43.0908 42 -52.2607c-82.0596 -34.21 -253.91 -35 -346.229 67.5h0.0195312z\\nM277.31 267.82l38.5 40.8594c-9.60938 8.89062 -32 26.8301 -76.1699 27.6006c-52.3301 0.910156 -95.8594 -28.2998 -96.7695 -80c-0.200195 -11.3301 0.290039 -36.7207 29.4199 -54.8301c34.46 -21.4199 86.5195 -21.5098 86 -52.2598\\nc-0.370117 -21.2803 -26.4199 -25.8105 -38.5898 -25.6006c-3 0.0498047 -30.2305 0.459961 -47.6104 24.6201l-40 -42.6104c28.1602 -27 59 -32.6191 83.4902 -33.0498c10.2295 -0.179688 96.4199 -0.330078 97.8398 81\\nc0.280273 15.8105 -2.07031 39.7197 -28.8604 56.5898c-34.3594 21.6406 -85 19.4502 -84.4297 49.75c0.410156 23.25 31 25.3701 37.5303 25.2607c0.429688 0 26.6201 -0.260742 39.6201 -17.3701z\\\" />\\n    <glyph glyph-name=\\\"staylinked\\\" unicode=\\\"&#xf3f5;\\\" horiz-adv-x=\\\"440\\\" \\nd=\\\"M382.7 155.5l44.2998 -41.2998c3.7002 -3.5 3.2998 -9 -0.700195 -12.2002l-198 -163.9c-9.89941 -7.59961 -17.2998 -0.799805 -17.2998 -0.799805l-208.7 196.101c-3.5 3.5 -3 9 1.2002 12.1992l45.7998 34.9004c4.2002 3.2002 10.4004 3 13.9004 -0.5l151.899 -147.5\\nc3.7002 -3.5 10 -3.7002 14.2002 -0.400391l93.2002 74c4.09961 3.2002 4.5 8.7002 0.900391 12.2002l-84 81.2998c-3.60059 3.5 -9.90039 3.7002 -14 0.5l-0.100586 -0.0996094c-4.09961 -3.2002 -10.3994 -3 -14 0.5l-68.0996 64.2998\\nc-3.5 3.5 -3.10059 9 1.09961 12.2002l57.2998 43.5996c4.10059 3.2002 10.3008 3 13.8008 -0.5l170 -167.3zM437.2 238.9c3.7002 -3.5 3.39941 -9 -0.700195 -12.2002l-45.7998 -35.7998c-4.10059 -3.2002 -10.4004 -3 -14.1006 0.5l-160.399 159\\nc-3.60059 3.5 -9.7998 3.69922 -13.9004 0.5l-92.2002 -71.5c-4.19922 -3.30078 -4.69922 -8.7002 -1.09961 -12.2002l94.5996 -91.7998c3.7002 -3.5 10 -3.60059 14.2002 -0.400391l0.100586 0.0996094c4.19922 3.2002 10.5996 3 14.1992 -0.5l57.1006 -54.3994\\nc3.7002 -3.5 3.2998 -9 -0.900391 -12.2002l-7.7002 -6l0.300781 -0.299805l-50.2002 -38.7998c-4.2002 -3.30078 -10.6006 -3.10059 -14.2998 0.399414l-171.7 165.101l-42.2998 41.6992c-3.60059 3.5 -3 9 1.19922 12.2002l206.801 162.101\\nc8.2998 6.59961 14.7998 2.2998 16.2998 1.09961z\\\" />\\n    <glyph glyph-name=\\\"steam-symbol\\\" unicode=\\\"&#xf3f6;\\\" \\nd=\\\"M395.5 270.5c0 -33.7998 -27.5 -61 -61 -61c-33.7998 0 -61 27.2998 -61 61s27.2998 61 61 61c33.5 0 61 -27.2002 61 -61zM448 270.3c0 -63 -51 -113.8 -113.7 -113.8l-109.3 -79.7998c-4 -43 -40.5 -76.7998 -84.5 -76.7998c-40.5 0 -74.7002 28.7998 -83 67\\nl-57.5 23.0996v107.3l97.2002 -39.2998c15.0996 9.2002 32.2002 13.2998 52 11.5l71 101.7c0.5 62.2998 51.5 112.8 114 112.8c62.7998 0 113.8 -51 113.8 -113.7zM203 85c0 34.7002 -27.7998 62.5 -62.5 62.5c-4.5 0 -9 -0.5 -13.5 -1.5l26 -10.5\\nc25.5 -10.2002 38 -39 27.7002 -64.5c-10.2002 -25.5 -39.2002 -38 -64.7002 -27.5c-10.2002 4 -20.5 8.2998 -30.7002 12.2002c10.5 -19.7002 31.2002 -33.2002 55.2002 -33.2002c34.7002 0 62.5 27.7998 62.5 62.5zM410.5 270.3c0 42 -34.2998 76.2002 -76.2002 76.2002\\nc-42.2998 0 -76.5 -34.2002 -76.5 -76.2002c0 -42.2002 34.2998 -76.2002 76.5 -76.2002c41.9004 -0.0996094 76.2002 33.9004 76.2002 76.2002z\\\" />\\n    <glyph glyph-name=\\\"sticker-mule\\\" unicode=\\\"&#xf3f7;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M561.7 248.4c-1.2998 -0.300781 0.299805 0 0 0zM555.5 325.8c20.2002 -50.0996 20.5996 -45.2002 20.5996 -52.8994c0 -7.5 -4.09961 -11 -7.19922 -16.5c-1.5 -3 -4.60059 -7.5 -7.2002 -8c-0.400391 0 -3 -0.5 -13.4004 -2.5c-7.2002 -1 -13.3994 4.5 -14.8994 9.5\\nc-1.60059 4.69922 2.7998 10.0996 -11.8008 22.8994c-10.2998 10 -21.0996 11.2998 -31.8994 17c-9.7998 5.7002 -11.9004 -1 -18 -8c-18 -22.8994 -34 -46.8994 -52 -69.7998c-11.7998 -15 -24.2002 -30.4004 -33.5 -47.4004\\nc-3.90039 -6.7998 -9.5 -28.0996 -10.2998 -29.8994c-6.2002 -17.7002 -5.5 -25.7998 -16.5 -68.2998c-3.10059 -10 -5.7002 -21.4004 -8.7002 -32.4004c-2.2002 -6.7998 -7.40039 -49.2998 -0.5 -59.4004c2.09961 -3.5 8.7002 -4.5 11.2998 -8\\nc0.0996094 -0.0996094 9.59961 -18.1992 9.2998 -20c0 -6.09961 -9.39941 -5.59961 -11.2998 -6.5c-4.7998 -2.89941 -3.7998 -5.89941 -6.40039 -7.39941c-5.89941 -2.90039 -32.0996 -3.2002 -36.5 0.5c-4.09961 3 -2.19922 11.8994 -1.5 15\\nc2.2002 15 -2.5 7.89941 -9.7998 11.5c-3.09961 1.5 -4.09961 5.5 -4.59961 10c-0.5 1.5 -1 2.5 -1.5 3.5c-1.7002 10.7002 6.7998 33.5996 8.2002 43.3994c4.89941 23.7002 -0.700195 37.2002 1.5 46.9004c3.69922 16.2002 4.09961 3.5 4.09961 29.9004\\nc-1.40039 25.8994 3.2998 36.8994 0.5 38.8994c-14.7998 0 -64.2998 -10.7002 -112.2 -2c-46.0996 8.90039 -59.3994 29 -65.3994 30.9004c-10.3008 4.5 -23.2002 -0.5 -27.3008 -7c-0.0996094 -0.100586 -35 -70.6006 -39.5996 -87.7998\\nc-6.2002 -20.5 -0.5 -47.4004 4.09961 -66.8008c0 -0.0996094 4.5 -14.5996 10.3008 -19.5c2.09961 -1.5 5.09961 -2.5 7.19922 -4.5c2.80078 -2.69922 9.40039 -15.1992 9.80078 -16c2.59961 -4.5 3.59961 -8 -1.5 -10.5c-3.60059 -2 -9.30078 -2.5 -14.4004 -2.5\\nc-2.59961 -0.5 -1.5 -3.5 -3.09961 -5c-2.90039 -2.7998 -20.7002 -6.09961 -29.9004 -2.5c-2.59961 1 -5.7002 3 -6.2002 5c-1.5 4 2.10059 9 -1 12.5c-4.5 2.90039 -13.0996 2 -17 12c-2.2002 5.40039 -2.59961 7.60059 -2.59961 49.4004\\nc0 9.7002 -5.90039 38.7002 -8.2002 46.9004c-1.5 5.5 -1.5 11.5 0 16c0.299805 0.899414 4.09961 4.59961 4.09961 13c-1 1.5 -4.59961 0.5 -5.09961 1.5c-10.4004 80.5996 -5.90039 79 -7.7002 98.2998c-1.5 16 -10.8994 43.8994 -6.7002 64.2998\\nc0.5 2.40039 3.40039 21 24.2002 38.9004c31 26.6992 48.4004 38.2998 159 11.5c1.10059 -0.400391 66.2998 -21.1006 110.7 9c15.5 11.2998 28.7998 11.2998 35.5 16c0.0996094 0.0996094 61.7002 52.0996 87 65.2998c47.2002 29.3994 69.9004 16.7002 75.0996 18\\nc4.7002 1 13.4004 25.7998 17 25.7998c5.5 0 1.60059 -20.2002 3.60059 -25.9004c0.5 -2 3.59961 -5 6.2002 -5c2.2998 0 1.69922 0.800781 10.2998 5c8.39941 5.40039 14.8994 17.6006 20.5996 17c11.7002 -1.59961 -19 -41.5996 -19 -46.8994\\nc0 -2 0.200195 -0.799805 4.60059 -9.5c2.59961 -5.5 4.59961 -13.5 6.19922 -20c8.30078 -29.7002 5.7002 -14.6006 13.4004 -36.9004z\\\" />\\n    <glyph glyph-name=\\\"studiovinari\\\" unicode=\\\"&#xf3f8;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M480.3 260.3l4.2002 -28v-28l-25.0996 -44.0996l-39.8008 -78.4004l-56.0996 -67.5l-79.0996 -37.7998l-17.7002 -24.5l-7.7002 -12l-9.59961 -4s17.2998 63.5996 19.3994 63.5996c2.10059 0 20.2998 -0.699219 20.2998 -0.699219l66.7002 38.5996l-92.5 -26.0996\\nl-55.8994 -36.8008l-22.8008 -28l-6.59961 -1.39941l20.7998 73.5996l6.90039 5.5l20.7002 -12.8994l88.2998 45.1992l56.7998 51.5l14.7998 68.4004l-125.399 -23.2998l15.1992 18.2002l-173.399 53.2998l81.8994 10.5l-166 122.899l114.9 -18.0996l-101.3 108\\nl252.899 -126.6l-31.5 38l124.4 -74.4004l-143.3 99l18.7002 -38.4004l-49.6006 18.1006l-45.5 84.2998l194.601 -122l-42.9004 55.7998l108 -96.3994l12 8.89941l-21 16.4004l4.2002 37.7998l37.7998 10.4004l29.2002 -24.7002l11.5 -4.2002l-7 -6.2002l8.5 -12\\nl-13.1006 -7.39941l-10.2998 -20.2002z\\\" />\\n    <glyph glyph-name=\\\"supple\\\" unicode=\\\"&#xf3f9;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 185.5c0 -64.0996 -109 -116.1 -243.5 -116.1c-24.7998 0 -48.5996 1.7998 -71.0996 5c7.69922 -0.400391 15.5 -0.600586 23.3994 -0.600586c134.5 0 243.5 56.9004 243.5 127.101c0 29.3994 -19.0996 56.3994 -51.2002 78\\nc60 -21.1006 98.9004 -55.1006 98.9004 -93.4004zM47.7002 220.1c0.0996094 -29.3994 19.2998 -56.5 51.5996 -78c-60.2002 21 -99.2002 55 -99.2998 93.3008c-0.0996094 64.0996 108.8 116.3 243.3 116.699c24.7002 0 48.5 -1.69922 71 -4.89941\\nc-7.7002 0.299805 -15.3994 0.5 -23.2998 0.5c-134.5 -0.299805 -243.4 -57.4004 -243.3 -127.601zM107.9 180.2l8.7998 10.8994s8.7998 -10.0996 20.7002 -10.0996c6.5 0 12.2998 3.5 12.2998 10.0996c0 14.5 -40.2002 13.3008 -40.2002 39.9004\\nc0 13.9004 12 24.0996 28.5 24.0996c10 0 25.4004 -4.69922 25.4004 -16.7998v-7.89941h-14.2002v3.89941c0 4 -5.60059 6.60059 -11.2998 6.60059c-7.2002 0 -12.5 -3.7002 -12.5 -9.10059c0 -14.5996 40.1992 -11.7002 40.1992 -39.7002\\nc0 -13.5996 -10.5 -25.0996 -28.3994 -25.0996c-18.7998 0 -29.2998 13.2002 -29.2998 13.2002zM228.7 253.8h15.7002v-55c0 -18.8994 -13.3008 -31.8994 -33.4004 -31.8994c-20.2998 0 -33.7002 13 -33.7002 31.8994v55h15.7998v-54.5\\nc0 -11.2002 7.10059 -17.7002 17.8008 -17.7002c10.6992 0 17.7998 6.5 17.7998 17.8008v54.3994zM263.1 168.4v72h-7.7998v13.3994h39.1006c16 0 27.1992 -11.2002 27.1992 -27.7998s-11.1992 -28.0996 -27.1992 -28.0996h-15.5v-29.5h-15.8008zM278.9 211.4h12.5996\\nc8.90039 0 14 5.7998 14 14.6992c0 8.7002 -5 14.4004 -13.7002 14.4004h-12.8994v-29.0996zM335.9 168.4v72h-7.80078v13.3994h39.1006c16 0 27.2002 -11.2002 27.2002 -27.7998s-11.2002 -28.0996 -27.2002 -28.0996h-15.5v-29.5h-15.7998zM351.6 211.4h12.6006\\nc9 0 14 5.7998 14 14.6992c0 8.7002 -5 14.4004 -13.7002 14.4004h-12.9004v-29.0996zM408.7 176.6h0.0996094v61.2002c0 1.60059 -0.899414 2.60059 -2.59961 2.60059h-5.2002v13.3994h15.4004c5.7998 0 8.19922 -2.5 8.19922 -8.2002v-61.1992\\nc0 -1.60059 0.900391 -2.60059 2.60059 -2.60059h18.5996c1.60059 0 2.60059 0.900391 2.60059 2.60059v5.19922h14.2998v-13c0 -5.7998 -2.40039 -8.19922 -8.2002 -8.19922h-37.5996c-5.80078 0 -8.2002 2.39941 -8.2002 8.19922zM472.1 176.6h-0.0996094v63.9004h-7.7998\\nv13.4004h51.5996c5.7002 0 8.2002 -2.5 8.2002 -8.2002v-13h-14.2002v5.2002c0 1.59961 -0.899414 2.59961 -2.59961 2.59961h-19.2002v-22.4004h27.7002v-13.3994h-27.7002v-20.2998c0 -1.60059 0.900391 -2.60059 2.59961 -2.60059h19.7002\\nc1.60059 0 2.60059 0.900391 2.60059 2.60059v5.19922h14.2998v-13c0 -5.7998 -2.5 -8.19922 -8.2002 -8.19922h-38.7002c-5.7998 0 -8.2002 2.39941 -8.2002 8.19922zM531 252.6h-2.7002v1.2002h7v-1.2002h-2.7002v-5.89941h-1.59961v5.89941zM536.7 253.8h2.39941\\nl2.10059 -5.09961l2.09961 5.09961h2.2998v-7.09961h-1.5v5.7002l-2.2998 -5.7002h-1.2998l-2.2998 5.7002v-5.7002h-1.5v7.09961z\\\" />\\n    <glyph glyph-name=\\\"telegram-plane\\\" unicode=\\\"&#xf3fe;\\\" \\nd=\\\"M446.7 349.4l-67.6006 -318.801c-5.09961 -22.5 -18.3994 -28.0996 -37.2998 -17.5l-103 75.9004l-49.7002 -47.7998c-5.5 -5.5 -10.0996 -10.1006 -20.6992 -10.1006l7.39941 104.9l190.9 172.5c8.2998 7.40039 -1.7998 11.5 -12.9004 4.09961l-236 -148.6\\nl-101.6 31.7998c-22.1006 6.90039 -22.5 22.1006 4.59961 32.7002l397.4 153.1c18.3994 6.90039 34.5 -4.09961 28.5 -32.1992z\\\" />\\n    <glyph glyph-name=\\\"uber\\\" unicode=\\\"&#xf402;\\\" \\nd=\\\"M414.1 416c18.7002 0 33.9004 -15.2002 33.8008 -33.9004v-380.199c0 -18.7002 -15.2002 -33.9004 -33.9004 -33.9004h-380.1c-18.7002 0 -33.9004 15.2002 -33.9004 34v380.1c0 18.7002 15.2002 33.9004 33.9004 33.9004h380.199zM237.6 56.9004\\nc74.6006 7.5 129 74.0996 121.5 148.6c-7 69.4004 -65.3994 122.2 -135.1 122.2s-128.1 -52.7998 -135.1 -122.2h94.3994v20.4004c0 3.7998 3.10059 6.7998 6.7998 6.7998h67.9004c3.7998 0 6.7998 -3.10059 6.7998 -6.7998v-67.9004\\nc0 -3.7998 -3.09961 -6.7998 -6.7998 -6.7998h-67.9004c-3.7998 0 -6.7998 3.09961 -6.7998 6.7998v20.4004h-94.3994c7.5 -74.6006 74.0996 -129 148.699 -121.5z\\\" />\\n    <glyph glyph-name=\\\"uikit\\\" unicode=\\\"&#xf403;\\\" \\nd=\\\"M443.9 320v-256l-225.9 -128l-218 128v214.3l87.5996 -45.0996v-117l133.5 -75.5l135.801 75.5v151l-101.101 57.5996l87.6006 53.1006zM308.6 398.9l-87.3994 -53l-86 47.2998l88.5996 54.7998z\\\" />\\n    <glyph glyph-name=\\\"uniregistry\\\" unicode=\\\"&#xf404;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M192 -32c-39.5 0 -76.2002 11.7998 -106.7 32.2002h213.5c-30.5996 -20.4004 -67.2998 -32.2002 -106.8 -32.2002zM102.9 161.1c0 -2.5 0.0996094 -5 0.299805 -7.39941h-103.101c-0.0996094 2.39941 -0.0996094 4.89941 -0.0996094 7.39941v12.4004h102.9v-12.4004z\\nM123.4 104.1c8.89941 -10.5996 20.0996 -19.0996 33 -24.7998h-138.301c-3.7998 8 -7 16.2998 -9.59961 24.7998h114.9zM105.7 138.8c2 -7.89941 5.2002 -15.3994 9.2002 -22.2998h-109.7c-1.7002 7.2998 -3 14.7002 -3.90039 22.2998h104.4zM102.9 208.1v-17.2998h-102.9\\nv17.2998h102.9zM102.9 381.3v-4.89941h-102.9v4.89941h102.9zM102.9 416v-2.5h-102.9v2.5h102.9zM102.9 346.7v-7.40039h-102.9v7.40039h102.9zM102.9 242.7v-14.7998h-102.9v14.7998h102.9zM102.9 312v-9.90039h-102.9v9.90039h102.9zM102.9 277.4v-12.4004h-102.9v12.4004\\nh102.9zM269.1 116.5c4 6.90039 7.10059 14.4004 9.2002 22.2998h104.4c-0.799805 -7.59961 -2.10059 -15 -3.90039 -22.2998h-109.7zM281.1 302.2v9.7998h102.9v-9.7998h-102.9zM281.1 265v12.4004h102.9v-12.4004h-102.9zM281.1 339.3v7.40039h102.9v-7.40039h-102.9z\\nM281.1 416h102.9v-2.5h-102.9v2.5zM78.0996 5.09961c-11.7998 8.7002 -23.5996 18.7002 -33.1992 29.7002h293.1c-9.5 -11.0996 -20.4004 -21 -32.2002 -29.7002h-227.7zM281.1 376.4v4.89941h102.9v-4.89941h-102.9zM281.1 227.9v14.7998h102.9v-14.7998h-102.9z\\nM38.7998 42.2998c-6.59961 8.5 -10.5996 17.6006 -15.7998 27.2002h338.9c-5.2002 -9.59961 -11.1006 -18.7002 -17.8008 -27.2002h-305.3zM227.6 79.4004c12.8008 5.59961 24.1006 14.0996 32.9004 24.7998h115c-2.7002 -8.60059 -4.7998 -16.7998 -8.5 -24.7998h-139.4z\\nM281.1 161.1v12.4004h102.9v-12.4004c0 -2.5 -0.0996094 -4.89941 -0.200195 -7.39941h-103.1c0.299805 2.39941 0.399414 4.89941 0.399414 7.39941zM281.1 190.8v17.2998h102.9v-17.2998h-102.9z\\\" />\\n    <glyph glyph-name=\\\"untappd\\\" unicode=\\\"&#xf405;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M401.3 398.1c-79.7998 -160.1 -84.5996 -152.5 -87.8994 -173.199l-5.2002 -32.8008c-1.90039 -12 -6.60059 -23.5 -13.7002 -33.3994l-148.9 -207.8c-7.59961 -10.6006 -20.3994 -16.2002 -33.3994 -14.6006c-40.2998 5 -77.7998 32.2002 -95.2998 68.5\\nc-5.7002 11.7998 -4.5 25.7998 3.09961 36.4004l148.9 207.899c7.09961 9.90039 16.3994 18 27.1992 23.7002l29.3008 15.5c18.5 9.7998 9.69922 11.9004 135.6 138.9c1 4.7998 1 7.2998 3.59961 8c3 0.700195 6.60059 1 6.30078 4.59961l-0.400391 4.60059\\nc-0.200195 1.89941 1.2998 3.59961 3.2002 3.59961c4.5 0.0996094 13.2002 -1.2002 25.5996 -10c12.2998 -8.90039 16.4004 -16.7998 17.7002 -21.0996c0.599609 -1.80078 -0.599609 -3.7002 -2.40039 -4.2002l-4.5 -1.10059\\nc-3.39941 -0.899414 -2.5 -4.39941 -2.2998 -7.39941c0.100586 -2.7998 -2.2998 -3.60059 -6.5 -6.10059zM230.1 411.6c-3.19922 0.800781 -8.19922 1.2002 -6.7998 5.40039c1.2998 4.2998 5.40039 12.2002 17.7002 21.0996c12.4004 8.90039 21.0996 10.1006 25.5996 10\\nc4.2002 -0.0996094 3.10059 -4.89941 2.80078 -8.19922c-0.300781 -3.60059 3.2998 -3.80078 6.2998 -4.60059c2.59961 -0.700195 2.59961 -3.2998 3.59961 -8c9.10059 -9.2002 17.6006 -17.8994 25.6006 -26.0996c1.2998 -1.40039 1.19922 -3.5 -0.100586 -4.90039\\nc-15.8994 -16.3994 -29.2998 -30.5996 -40.5 -42.5996c-1 -1 -2.59961 -0.799805 -3.2998 0.5c-6.90039 13.5 -14.2998 28.0996 -22.2002 44c-4.2998 2.5 -6.59961 3.2998 -6.39941 6c0.199219 3 1.09961 6.5 -2.30078 7.39941zM620 41.2998\\nc7.7002 -10.7002 8.7998 -24.7002 3.40039 -36.5996c-17.7002 -36.6006 -55.4004 -63.7002 -95.7002 -68.6006c-12.9004 -1.5 -25.5 4.10059 -33.1006 14.7002l-148.899 207.9c-7.10059 9.89941 -11.7998 21.3994 -13.7002 33.3994\\nc-1.59961 9.80078 -2 19.1006 -0.299805 29.8008c1.89941 12 2.7002 6 49 94.7998c0.700195 1.39941 2.59961 1.59961 3.59961 0.5c16.2998 -18 19.2998 -23 30.5 -28.9004c29.7998 -15.7002 43.2002 -20.5996 56.4004 -39.0996z\\\" />\\n    <glyph glyph-name=\\\"ussunnah\\\" unicode=\\\"&#xf407;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M156.8 162.9l5.7002 -14.4004h-8.2002c-1.2998 3.2002 -3.09961 7.7002 -3.7998 9.5c-2.5 6.2998 -1.09961 8.40039 0 10c1.90039 2.7002 3.2002 4.40039 3.59961 5.2002c0 -2.2002 0.800781 -5.7002 2.7002 -10.2998zM454.1 144.1\\nc-2.09961 -13.7998 -5.69922 -27.0996 -10.5 -39.6992l43 -23.4004l-44.7998 18.7998c-5.2998 -13.2002 -12 -25.5996 -19.8994 -37.2002l34.1992 -30.1992l-36.7998 26.3994c-8.39941 -11.7998 -18 -22.5996 -28.7002 -32.2998l24.9004 -34.7002l-28.0996 31.7998\\nc-11 -9.59961 -23.1006 -18 -36.1006 -25.0996l15.7002 -37.2002l-19.2998 35.2998c-13.1006 -6.7998 -27 -12.0996 -41.6006 -15.8994l6.7002 -38.4004l-10.5 37.4004c-14.2998 -3.40039 -29.2002 -5.2998 -44.5 -5.40039l-1.7998 -38.2998l-1.90039 38.4004\\nc-15.2998 0.0996094 -30.1992 2 -44.5 5.2998l-10.5996 -37.2998l6.7002 38.1992c-14.6006 3.7002 -28.6006 9.10059 -41.7002 15.8008l-19.2002 -35.1006l15.6006 37c-13 7 -25.2002 15.4004 -36.2002 25.1006l-27.9004 -31.6006l24.7002 34.4004\\nc-10.7002 9.7002 -20.4004 20.5 -28.7998 32.2998l-36.5 -26.2002l33.8994 29.9004c-7.89941 11.5996 -14.5996 24.0996 -20 37.2998l-44.3994 -18.7002l42.5996 23.2002c-4.7998 12.7002 -8.39941 26.0996 -10.5 39.9004l-51 -9l50.2998 14.1992\\nc-1.09961 8.5 -1.69922 17.1006 -1.69922 25.9004c0 4.7002 0.199219 9.40039 0.5 14.0996l-55.4004 2.90039l56 2.7998c1.2998 13.1006 3.7998 25.7998 7.5 38.1006l-57.0996 16.0996l58.8994 -10.4004c4 12 9.10059 23.5 15.2002 34.4004l-55.0996 30l58.2998 -24.5996\\nc6.2998 10.5996 13.5 20.3994 21.5996 29.5996l-49.5 43.5996l53.9004 -38.6992c8.09961 8.59961 17 16.5 26.5996 23.5996l-40 55.5996l45.6006 -51.5996c9.5 6.59961 19.6992 12.2998 30.2998 17.2002l-27.2998 64.8994l33.7998 -62.0996\\nc10.5 4.40039 21.3994 7.90039 32.7002 10.4004l-12.4004 70.6992l19.5 -69.1992c11 2.09961 22.2998 3.19922 33.7998 3.39941l3.7002 72.2002l3.59961 -72.2002c11.5 -0.200195 22.8008 -1.39941 33.8008 -3.5l19.5996 69.2998l-12.4004 -70.6992\\nc11.3008 -2.60059 22.2002 -6.10059 32.6006 -10.5l33.8994 62.1992l-27.3994 -65.0996c10.5996 -4.90039 20.7002 -10.7002 30.2002 -17.2002l45.7998 51.7998l-40.1006 -55.8994c9.5 -7.10059 18.4004 -15 26.5 -23.6006l54.2002 38.9004l-49.7002 -43.9004\\nc8 -9.09961 15.2002 -18.8994 21.5 -29.3994l58.7002 24.7002l-55.5 -30.2002c6.10059 -10.9004 11.1006 -22.2998 15.1006 -34.2998l59.2998 10.3994l-57.5 -16.2002c3.7002 -12.1992 6.2002 -24.8994 7.5 -37.8994l56.2998 -2.7002l-56 -2.7998\\nc0.299805 -4.60059 0.5 -9.2998 0.5 -14.1006c0 -8.69922 -0.599609 -17.2998 -1.59961 -25.7998l50.6992 -14.2998zM432.3 175.1c0 97.5 -79 176.5 -176.5 176.5s-176.5 -79 -176.5 -176.5s79 -176.5 176.5 -176.5s176.5 79 176.5 176.5zM408.3 175.1\\nc0 -84.2998 -68.2998 -152.6 -152.6 -152.6s-152.601 68.2998 -152.601 152.6c0 84.3008 68.3008 152.601 152.601 152.601s152.6 -68.2998 152.6 -152.601zM195 207c0 -2.09961 1.2998 -3.7998 3.59961 -5.09961c3.30078 -1.90039 6.2002 -4.60059 8.2002 -8.2002\\nc2.7998 5.7002 4.2998 9.5 4.2998 11.2002c0 2.19922 -1.09961 4.39941 -3.19922 7c-2.10059 2.5 -3.2002 5.19922 -3.30078 7.69922c-6.5 -6.7998 -9.59961 -10.8994 -9.59961 -12.5996zM154.3 226c0 -2.09961 1.2998 -3.7998 3.60059 -5.09961\\nc3.5 -1.90039 6.19922 -4.60059 8.19922 -8.2002c2.80078 5.7002 4.30078 9.5 4.30078 11.2002c0 2.19922 -1.10059 4.39941 -3.2002 7c-2.10059 2.5 -3.2002 5.19922 -3.2998 7.69922c-6.5 -6.7998 -9.60059 -10.8994 -9.60059 -12.5996zM135.3 226\\nc0 -2.09961 1.2998 -3.7998 3.60059 -5.09961c3.2998 -1.90039 6.19922 -4.60059 8.19922 -8.2002c2.80078 5.7002 4.30078 9.5 4.30078 11.2002c0 2.19922 -1.10059 4.39941 -3.2002 7c-2.10059 2.5 -3.2002 5.19922 -3.2998 7.69922\\nc-6.40039 -6.7998 -9.60059 -10.8994 -9.60059 -12.5996zM340.2 138.1c-8.40039 3 -8.7002 6.80078 -8.7002 15.6006v112.3c-8.2002 -12.5 -14.2002 -18.5996 -18 -18.5996c6.2998 -14.4004 9.5 -23.9004 9.5 -28.3008v-64.2998c0 -2.2002 -2.2002 -6.5 -4.7002 -6.5h-18\\nc-2.7998 7.5 -10.2002 26.9004 -15.2998 40.2998c-2 -2.5 -7.2002 -9.19922 -10.7002 -13.6992c2.40039 -1.60059 4.10059 -3.60059 5.2002 -6.30078c2.59961 -6.69922 6.40039 -16.5 7.90039 -20.1992h-9.2002c-3.90039 10.3994 -9.60059 25.3994 -11.7998 31.0996\\nc-2 -2.5 -7.2002 -9.2002 -10.7002 -13.7002c2.39941 -1.59961 4.09961 -3.59961 5.2002 -6.2998c0.799805 -2 2.7998 -7.2998 4.2998 -10.9004h-9.2002c-1.5 4.10059 -5.59961 14.6006 -8.40039 22c-2 -2.5 -7.19922 -9.19922 -10.6992 -13.6992\\nc2.5 -1.60059 4.2998 -3.60059 5.19922 -6.30078c0.200195 -0.599609 0.5 -1.39941 0.600586 -1.69922h-17.7002c-4.59961 13.8994 -11.4004 27.6992 -11.4004 34.0996c0 2.2002 0.300781 5.09961 1.10059 8.2002c-8.7998 -10.7998 -14 -15.9004 -14 -25\\nc0 -7.5 10.3994 -28.2998 10.3994 -33.2998c0 -1.7002 -0.5 -3.30078 -1.39941 -4.90039c-9.60059 12.7002 -15.5 20.7002 -18.7998 20.7002h-12l-11.2002 28c-3.7998 9.59961 -5.7002 16 -5.7002 18.7998c0 3.7998 0.5 7.7002 1.7002 12.2002\\nc-1 -1.2998 -3.7002 -4.7002 -5.5 -7.10059c-0.799805 2.10059 -3.10059 7.7002 -4.60059 11.5c-2.09961 -2.5 -7.5 -9.09961 -11.1992 -13.5996c0.899414 -2.2998 3.2998 -8.09961 4.89941 -12.2002c-2.5 -3.2998 -9.09961 -11.7998 -13.5996 -17.7002\\nc-4 -5.2998 -5.7998 -13.2998 -2.7002 -21.7998c2.5 -6.7002 2 -7.89941 -1.7002 -14.0996h61.7002c5.5 0 14.2998 -14 15.5 -22c13.2002 16 15.4004 19.5996 16.7998 21.5996h107c3.90039 0 7.2002 1.90039 9.90039 5.7998zM360.3 164.7v101.6\\nc-9 -12.5 -15.8994 -18.5996 -20.7002 -18.5996c7.10059 -14.4004 10.7002 -23.9004 10.7002 -28.2998v-66.3008c0 -17.5 8.60059 -20.3994 24 -20.3994c8.10059 0 12.5 0.799805 13.7002 2.7002c-4.2998 1.59961 -7.59961 2.5 -9.90039 3.2998\\nc-8.09961 3.2002 -17.7998 7.39941 -17.7998 26z\\\" />\\n    <glyph glyph-name=\\\"vaadin\\\" unicode=\\\"&#xf408;\\\" \\nd=\\\"M224.5 307.3c1.5 17.6006 4.90039 52.7002 49.7998 52.7002h98.6006c20.6992 0 32.0996 7.7998 32.0996 21.5996v12.3008c0 12.1992 9.2998 22.0996 21.5 22.0996s21.5 -9.90039 21.5 -22.0996v-36.5c0 -42.9004 -21.5 -62 -66.7998 -62h-100.5\\nc-30.1006 0 -33 -14.7002 -33 -27.1006c0 -1.2998 -0.100586 -2.5 -0.200195 -3.7002c-0.700195 -12.2998 -10.9004 -22.1992 -23.4004 -22.1992s-22.6992 9.7998 -23.3994 22.1992c-0.100586 1.2002 -0.200195 2.40039 -0.200195 3.7002c0 12.2998 -3 27.1006 -33 27.1006\\nh-100.7c-45.2998 0 -66.7998 19.0996 -66.7998 62v36.5c0 12.1992 9.40039 22.0996 21.5996 22.0996c12.2002 0 21.5 -9.90039 21.5 -22.0996v-12.3008c0 -13.7998 11.4004 -21.5996 32.1006 -21.5996h98.5996c44.7998 0 48.2998 -35.0996 49.7998 -52.7002h0.900391z\\nM224 -8c-11.5 0 -21.4004 7 -25.7002 16.2998c-1.09961 1.7998 -97.0996 169.5 -98.2002 171.4c-11.8994 19.7002 3.2002 44.2998 27.2002 44.2998c13.9004 0 23.4004 -6.40039 29.7998 -20.2998l66.9004 -117.7l66.9004 117.7c6.5 13.8994 15.8994 20.2998 29.7998 20.2998\\nc24 0 39.0996 -24.7002 27.2002 -44.2998c-1.10059 -1.7998 -97.1006 -169.601 -98.2002 -171.4c-4.2998 -9.2998 -14.2002 -16.2998 -25.7002 -16.2998z\\\" />\\n    <glyph glyph-name=\\\"viber\\\" unicode=\\\"&#xf409;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M444 398.1c42.2002 -36.6992 65.5996 -117.899 49.7998 -246.5c-15.2002 -124.6 -109.1 -136.6 -125.7 -142c-7.19922 -2.2998 -70.2998 -18.0996 -152.5 -11.1992c-9.09961 -10.5 -21.0996 -24.3008 -29.7998 -33.7002\\nc-15.8994 -17.1006 -25.7002 -33 -42.2998 -27.7998c-13.7998 4.19922 -13 25.0996 -13 25.0996l0.0996094 51.5996h-0.0996094c-120.1 33.8008 -118.4 158.4 -117 224.9s14.2998 120.2 50.9004 156.8c65.7998 60.4004 200.899 52.2998 200.899 52.2998\\nc114.601 -0.5 166 -37.7998 178.7 -49.5zM457.9 161c13.2998 107.3 -4.90039 180.5 -40.6006 211.1c-10.7998 9.80078 -57.2002 39 -154.1 39.4004c0 0 -114.7 7.5 -170.4 -43c-31 -30.5996 -41.5 -76.0996 -42.5996 -131.6\\nc-1.10059 -55.5 -7.10059 -161.601 94.7002 -189.801c-0.100586 0 -0.100586 0 0 0c0 0 -0.400391 -78.7998 -0.400391 -85.6992c-0.0996094 -10.5 5.7002 -11 11 -5.7002c16.2002 16.2998 68.2002 79 68.2002 79c69.7002 -4.5 125.2 9.2998 131.2 11.2002\\nc14 4.5 90.0996 11.0996 103 115.1zM318.9 241.8c0.399414 -8.59961 -12.5 -9.2002 -12.9004 -0.599609c-1.09961 22 -11.4004 32.7002 -32.5996 33.8994c-8.60059 0.5 -7.80078 13.4004 0.699219 12.9004c27.9004 -1.5 43.4004 -17.5 44.8008 -46.2002zM339.2 230.5\\nc1 42.4004 -25.5 75.5996 -75.7998 79.2998c-8.5 0.600586 -7.60059 13.5 0.899414 12.9004c58 -4.2002 88.9004 -44.1006 87.7998 -92.5c-0.0996094 -8.60059 -13.0996 -8.2002 -12.8994 0.299805zM386.2 217.1c0.0996094 -8.59961 -12.9004 -8.69922 -12.9004 -0.0996094\\nc-0.599609 81.5 -54.8994 125.9 -120.8 126.4c-8.5 0.0996094 -8.5 12.8994 0 12.8994c73.7002 -0.5 133 -51.3994 133.7 -139.2zM374.9 119v-0.200195c-10.8008 -19 -31 -40 -51.8008 -33.2998l-0.199219 0.299805c-21.1006 5.90039 -70.8008 31.5 -102.2 56.5\\nc-16.2002 12.7998 -31 27.9004 -42.4004 42.4004c-10.2998 12.8994 -20.7002 28.2002 -30.7998 46.5996c-21.2998 38.5 -26 55.7002 -26 55.7002c-6.7002 20.7998 14.2002 41 33.2998 51.7998h0.200195c9.2002 4.7998 18 3.2002 23.9004 -3.89941\\nc0 0 12.3994 -14.8008 17.6992 -22.1006c5 -6.7998 11.7002 -17.7002 15.2002 -23.7998c6.10059 -10.9004 2.2998 -22 -3.7002 -26.5996l-12 -9.60059c-6.09961 -4.89941 -5.2998 -14 -5.2998 -14s17.7998 -67.2998 84.2998 -84.2998c0 0 9.10059 -0.799805 14 5.2998\\nl9.60059 12c4.59961 6 15.7002 9.7998 26.5996 3.7002c14.7002 -8.2998 33.4004 -21.2002 45.7998 -32.9004c7 -5.69922 8.60059 -14.3994 3.80078 -23.5996z\\\" />\\n    <glyph glyph-name=\\\"vimeo\\\" unicode=\\\"&#xf40a;\\\" \\nd=\\\"M403.2 416c24.7002 0 44.7998 -20.0996 44.7998 -44.7998v-358.4c0 -24.7002 -20.0996 -44.7998 -44.7998 -44.7998h-358.4c-24.7002 0 -44.7998 20.0996 -44.7998 44.7998v358.4c0 24.7002 20.0996 44.7998 44.7998 44.7998h358.4zM377 267.2\\nc1.90039 42.2002 -13.7998 63.7998 -47.0996 64.7002c-44.9004 1.39941 -75.3008 -23.9004 -91.2002 -76c19.8994 8.5 49.2998 10.7998 45.7998 -22.4004c-1 -11.2002 -8.2998 -27.5 -21.7998 -48.9004c-37.7002 -59.3994 -46.9004 -39.5996 -67.6006 91.6006\\nc-5.7998 36.8994 -21.2998 54.0996 -46.5 51.7002c-22.2998 -2 -57.8994 -38.4004 -95.1992 -71.2002l15.1992 -19.6006c14.5 10.1006 23 15.2002 25.4004 15.2002c21 0 31.9004 -54.7002 57.4004 -148c13.0996 -34.8994 29 -52.2998 47.8994 -52.2998\\nc30.4004 0 67.7002 28.5996 111.7 85.7998c42.5996 54.7002 64.5996 97.9004 66 129.4z\\\" />\\n    <glyph glyph-name=\\\"vnv\\\" unicode=\\\"&#xf40b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M104.9 96c-34.1006 0 -46.4004 30.4004 -46.4004 30.4004l-55.9004 111.5s-10.3994 18.0996 10.4004 18.0996h32.7998c10.4004 0 13.2002 -8.7002 18.7998 -18.0996l36.7002 -74.5s5.2002 -13.1006 21.1006 -13.1006c15.8994 0 21.0996 13.1006 21.0996 13.1006\\nl36.7002 74.5c5.59961 9.5 8.39941 18.0996 18.7998 18.0996h32.7998c20.7998 0 10.4004 -18.0996 10.4004 -18.0996l-55.7998 -111.5s-12.2002 -30.4004 -46.4004 -30.4004h-35.0996zM499.9 96c-34.1006 0 -46.4004 30.4004 -46.4004 30.4004l-55.9004 111.5\\ns-10.3994 18.0996 10.4004 18.0996h32.7998c10.4004 0 13.2002 -8.7002 18.7998 -18.0996l36.7002 -74.5s5.2002 -13.1006 21.1006 -13.1006c15.8994 0 21.0996 13.1006 21.0996 13.1006l36.7998 74.5c5.60059 9.5 8.40039 18.0996 18.7998 18.0996h32.9004\\nc20.7998 0 10.4004 -18.0996 10.4004 -18.0996l-55.9004 -111.5s-12.2002 -30.4004 -46.4004 -30.4004h-35.1992zM337.6 256c34.1006 0 46.4004 -30.4004 46.4004 -30.4004l55.9004 -111.5s10.3994 -18.0996 -10.4004 -18.0996h-32.7998\\nc-10.4004 0 -13.2002 8.7002 -18.7998 18.0996l-36.7002 74.5s-5.2002 13.1006 -21.1006 13.1006c-15.8994 0 -21.0996 -13.1006 -21.0996 -13.1006l-36.7002 -74.5c-5.59961 -9.39941 -8.39941 -18.0996 -18.7998 -18.0996h-32.9004\\nc-20.7998 0 -10.3994 18.0996 -10.3994 18.0996l55.8994 111.5s12.2002 30.4004 46.4004 30.4004h35.0996z\\\" />\\n    <glyph glyph-name=\\\"whatsapp-square\\\" unicode=\\\"&#xf40c;\\\" \\nd=\\\"M224 325.2c35.2002 0 68.2002 -13.7002 93.2002 -38.7002c24.8994 -24.9004 40.0996 -58 40.0996 -93.2002c0 -72.7002 -60.7002 -131.8 -133.3 -131.8h-0.0996094c-23.7002 0 -46.9004 6.40039 -67.1006 18.4004l-4.7998 2.89941l-49.9004 -13.0996l13.3008 48.5996\\nl-3.10059 5c-13.2002 20.9004 -20.2002 45.2002 -20.2002 70.1006c0.100586 72.6992 59.2002 131.8 131.9 131.8zM301.5 136.8c3.2998 9.2002 3.2998 17.2002 2.40039 19.1006c-1 1.59961 -3.60059 2.59961 -7.60059 4.59961s-23.5 11.5996 -27.0996 12.9004\\nc-3.60059 1.2998 -6.2998 2 -8.90039 -2c-2.59961 -3.90039 -10.2002 -12.9004 -12.5 -15.5c-2.2998 -2.7002 -4.59961 -3 -8.59961 -1c-23.2998 11.6992 -38.6006 20.7998 -53.9004 47.0996c-4.09961 7 4 6.40039 11.6006 21.5996\\nc1.39941 2.60059 0.699219 4.90039 -0.300781 6.90039s-8.89941 21.5 -12.1992 29.4004c-3.2002 7.69922 -6.5 6.69922 -8.90039 6.7998c-2.2998 0.0996094 -5 0.0996094 -7.59961 0.0996094c-2.7002 0 -7 -1 -10.6006 -5c-3.7002 -4 -13.8994 -13.5996 -13.8994 -33.0996\\ns14.1992 -38.4004 16.1992 -41c2 -2.60059 28 -42.6006 67.7002 -59.7998c25.1006 -10.8008 34.9004 -11.8008 47.5 -9.90039c7.60059 1.09961 23.4004 9.5 26.7002 18.7998zM400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48\\nv352c0 26.5 21.5 48 48 48h352zM223.9 34.7998c87.3994 0 160.1 71.1006 160.1 158.5c0 42.4004 -18 82.2002 -47.9004 112.2c-30 30 -69.7998 46.5 -112.199 46.5c-87.4004 0 -158.5 -71.0996 -158.601 -158.5c0 -28 7.2998 -55.2998 21.2002 -79.2998l-22.5 -82.2002\\nl84.0996 22.0996c23.1006 -12.5996 49.2002 -19.2998 75.8008 -19.2998z\\\" />\\n    <glyph glyph-name=\\\"whmcs\\\" unicode=\\\"&#xf40d;\\\" \\nd=\\\"M448 287l-29.0996 -7l-2.2002 -12.0996l20.8994 -18.8008l-10.2998 -20.0996l-28.7998 8.7998l-7.7998 -8.09961l8.7998 -28l-20.4004 -12.1006l-20.6992 21.6006l-11.6006 -3.5l-6.7002 -28.7998l-22.5996 0.299805l-6.7002 28.5l-11.5996 2.89941l-19.4004 -20.3994\\nl-19.8994 11.5996l8.09961 26.9004l-7.2002 8.59961l-29.5996 -7.5l-10.4004 18.5l20.1006 19.9004l-2.40039 12.0996l-28.7998 7.5l0.299805 21.7002l28.5 7.7998l2.90039 10.4004l-20.7002 21l11 19.0996l28.5 -7.5l8.09961 8.40039l-8.09961 27.7002l19.3994 11\\nl19.7002 -21l12.1006 3.19922l6.19922 26.4004h22.6006l7 -26.4004l10.7002 -3.19922l21.2998 21l19.0996 -11.6006l-7.5 -28.2002l7.2002 -7.5l29 7.5l10.4004 -19.3994l-20.1006 -20.7002l2.2002 -10.4004l28.5 -8.7998v-21.2998zM328.8 241.8\\nc31.4004 0 56.7998 25.2998 56.7998 56.7998c0 31.4004 -25.3994 56.8008 -56.7998 56.8008c-31.3994 0 -56.7998 -25.4004 -56.7998 -56.8008c0 -31.3994 25.5 -56.7998 56.7998 -56.7998zM401.1 225.4l46.9004 -14.5v-39.9004l-55.0996 -13.4004l-4.10059 -22.6992\\nl38.9004 -35.3008l-19.2002 -37.8994l-54 16.7002l-14.5996 -15.2002l16.6992 -52.5l-38.2998 -22.7002l-38.8994 40.5l-21.7002 -6.59961l-12.6006 -54l-42.3994 0.5l-12.6006 53.5996l-21.6992 5.59961l-36.4004 -38.3994l-37.4004 21.7002l15.2002 50.5l-13.7002 16.0996\\nl-55.5 -14.0996l-19.6992 34.7998l37.8994 37.3994l-4.7998 22.8008l-54 14.0996l0.5 40.9004l53.5 14.6992l5.7002 19.7002l-38.9004 39.4004l20.7002 35.7998l53.5996 -14.0996l15.2002 15.6992l-15.2002 52l36.4004 20.7002l36.7998 -39.3994l22.7002 6.09961l11.5996 52\\nh42.4004l11.5996 -45.9004l-22.5996 5.90039l-6.2998 1.7002l-3.2998 -5.7002l-11 -19.0996l-3.30078 -5.60059l4.60059 -4.59961l17.2002 -17.4004l-0.300781 -1l-23.7998 -6.5l-6.2002 -1.7002l-0.0996094 -6.39941l-0.200195 -12.9004\\nc-47.5 -10.3994 -83.2998 -52.7998 -83.2998 -103.5c0 -58.2998 47.2998 -105.7 105.7 -105.7c50.5 0 92.7002 35.4004 103.2 82.8008l13.1992 -0.200195l6.90039 -0.100586l1.59961 6.7002l5.60059 24l1.89941 0.600586l17.1006 -17.8008l4.7002 -4.89941l5.7998 3.39941\\nl20.3994 12.1006l5.80078 3.5l-2 6.5z\\\" />\\n    <glyph glyph-name=\\\"wordpress-simple\\\" unicode=\\\"&#xf411;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M256 440c136.7 0 248 -111.2 248 -248c0 -136.7 -111.3 -248 -248 -248s-248 111.3 -248 248c0 136.8 111.3 248 248 248zM33 192c0 -88.2002 51.2998 -164.5 125.7 -200.7l-106.4 291.4c-12.3994 -27.7002 -19.2998 -58.4004 -19.2998 -90.7002zM256 -31\\nc26 0 50.9004 4.5 74 12.5996c-0.599609 1 -1.09961 2 -1.59961 3.10059l-68.5 187.8l-66.9004 -194.4c20 -5.89941 41.0996 -9.09961 63 -9.09961zM286.7 296.5l80.7002 -239.6l22.1992 74.2998c9.7002 30.8994 17 53 17 72.0996c0 27.6006 -9.89941 46.7002 -18.3994 61.5\\nc-11.2998 18.4004 -21.9004 33.9004 -21.9004 52.2998c0 20.5 15.5 39.6006 37.4004 39.6006c1 0 1.89941 -0.100586 2.89941 -0.200195c-39.6992 36.2998 -92.5996 58.5 -150.6 58.5c-77.9004 0 -146.4 -40 -186.3 -100.5\\nc5.2998 -0.200195 10.2002 -0.299805 14.3994 -0.299805c23.3008 0 59.4004 2.7998 59.4004 2.7998c12 0.700195 13.4004 -17 1.40039 -18.4004c0 0 -12.1006 -1.39941 -25.5 -2.09961l81.1992 -241.5l48.8008 146.3l-34.7002 95.2002\\nc-12 0.700195 -23.4004 2.09961 -23.4004 2.09961c-12 0.700195 -10.5996 19.1006 1.40039 18.4004c0 0 36.7998 -2.7998 58.7002 -2.7998c23.2998 0 59.3994 2.7998 59.3994 2.7998c12 0.700195 13.4004 -17 1.40039 -18.4004c0 0 -12.1006 -1.39941 -25.5 -2.09961z\\nM368.1 -0.700195c66.3008 38.6006 110.9 110.4 110.9 192.7c0 38.7998 -9.90039 75.2002 -27.2998 107c1 -7.09961 1.5 -14.7002 1.5 -22.9004c0 -22.6992 -4.2998 -48.0996 -17 -79.8994z\\\" />\\n    <glyph glyph-name=\\\"xbox\\\" unicode=\\\"&#xf412;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M369.9 129.8c44.2998 -54.2998 64.6992 -98.7998 54.3994 -118.7c-7.89941 -15.0996 -56.7002 -44.5996 -92.5996 -55.8994c-29.6006 -9.2998 -68.4004 -13.2998 -100.4 -10.2002c-38.2002 3.7002 -76.8994 17.4004 -110.1 39\\nc-27.9004 18.2002 -34.2002 25.7002 -34.2002 40.5996c0 29.9004 32.9004 82.3008 89.2002 142.101c32 33.8994 76.5 73.7002 81.3994 72.5996c9.40039 -2.09961 84.3008 -75.0996 112.301 -109.5zM188.6 304.2c-66.3994 -81.5 -106 -155.4 -120.3 -194.4\\nc-9.7998 -26.5 -13.7002 -53 -9.5 -64c2.7998 -7.39941 0.200195 -4.7002 -9.2998 9.90039c-23.2002 35.5 -34.9004 70.3994 -40.5 120.899c-1.90039 16.7002 -1.2002 26.3008 4.2002 60.5c6.7998 42.7002 31.0996 92 60.2998 122.4\\nc12.4004 12.9004 13.5 13.2002 28.7002 8.09961c28.2998 -9.5 56.7002 -36.5 86.3994 -63.3994zM500.2 240.7c4.7002 -22.6006 5.09961 -70.9004 0.799805 -93.4004c-3.59961 -18.5 -11.2002 -42.5 -18.5996 -58.7002c-5.5 -12.1992 -19.3008 -35.7998 -25.4004 -43.5\\nc-3.09961 -3.89941 -3.09961 -3.89941 -1.40039 4.60059c2.30078 11.2002 -0.599609 31.5996 -7.39941 52.2998c-20.7002 62.9004 -80.5 149 -122.9 202.3c23.2998 21.4004 41 38.2998 64.2998 52.7998c11.8008 7.40039 28.7002 13.9004 36 13.9004\\nc7.10059 0 57.7002 -50.2998 74.6006 -130.3zM141.3 405c-14.5996 -0.700195 -14 0.0996094 9.40039 11.2002c81.2002 38.2998 170 27.5996 233.899 -11.7002c-13.3994 0.599609 -43.5 5.90039 -107.399 -25.2002c-11.2002 -5.5 -20.9004 -9.7998 -21.6006 -9.7002\\nc-4.59961 0.900391 -66.5996 37.9004 -114.3 35.4004z\\\" />\\n    <glyph glyph-name=\\\"yandex\\\" unicode=\\\"&#xf413;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M153.1 132.2l-87.3994 -196.2h-63.7002l96 209.8c-45.0996 22.9004 -75.2002 64.4004 -75.2002 141.101c-0.0996094 107.399 68 161.1 148.9 161.1h82.2998v-512h-55.0996v196.2h-45.8008zM198.9 401.5h-29.4004c-44.4004 0 -87.4004 -29.4004 -87.4004 -114.6\\nc0 -82.3008 39.4004 -108.801 87.4004 -108.801h29.4004v223.4z\\\" />\\n    <glyph glyph-name=\\\"yandex-international\\\" unicode=\\\"&#xf414;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M129.5 -64v166.1l-111 297.9h55.7998l81.7998 -229.7l94.1006 277.7h51.2998l-120.7 -347.8v-164.2h-51.2998z\\\" />\\n    <glyph glyph-name=\\\"apple-pay\\\" unicode=\\\"&#xf415;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M116.9 289.5c-7.5 -8.90039 -19.5 -15.9004 -31.5 -14.9004c-1.5 12 4.39941 24.8008 11.2998 32.6006c7.5 9.09961 20.5996 15.5996 31.2998 16.0996c1.2002 -12.3994 -3.7002 -24.7002 -11.0996 -33.7998zM127.8 272.3c6.7998 -0.5 26.2998 -2.5 38.7998 -21.0996\\nc-1 -0.799805 -23.1992 -13.5 -22.8994 -40.2998c0.299805 -32 28 -42.6006 28.2998 -42.9004c-0.200195 -0.799805 -4.40039 -15.0996 -14.5 -29.9004c-8.90039 -13 -18 -25.6992 -32.5 -26c-14 -0.199219 -18.7002 8.40039 -34.7998 8.40039\\nc-16 0 -21.2002 -8.09961 -34.5 -8.59961c-14 -0.5 -24.6006 13.7998 -33.5 26.7998c-18.2002 26.2998 -32.1006 74 -13.2998 106.3c9.09961 16.0996 25.6992 26.2002 43.5996 26.5c13.7998 0.299805 26.4004 -9.09961 34.7998 -9.09961\\nc8.2002 0 23.1006 10.8994 40.5 9.89941zM228.2 308.5h73.2002c37.6992 0 64.0996 -26 64.0996 -64s-26.7998 -64.2998 -65.0996 -64.2998h-41.9004v-66.6006h-30.2998v194.9zM258.5 283v-77.4004h34.7998c26.4004 0 41.4004 14.2002 41.4004 38.8008\\nc0 24.5996 -15 38.5996 -41.2998 38.5996h-34.9004zM420.7 112.1c-28.1006 0 -47.7002 16.8008 -47.7998 42c0 25 19 39.4004 54.0996 41.5l37.7998 2.30078v10.7998c0 15.8994 -10.3994 24.5 -28.8994 24.5c-15.2002 0 -26.3008 -7.90039 -28.6006 -19.9004h-27.2998\\nc0.900391 25.2002 24.7002 43.6006 56.7998 43.6006c34.6006 0 57.1006 -18.2002 57.1006 -46.3008v-97h-28v23.4004h-0.600586c-8 -15.2998 -25.5996 -24.9004 -44.5996 -24.9004zM428.9 135.2c20.5 0 36 13 36 31.2002v11l-33.6006 -2.10059\\nc-18.8994 -1.09961 -28.7998 -8.2002 -28.7998 -20.5c0 -11.7998 10.2998 -19.5996 26.4004 -19.5996zM531.4 60.5996c-2.30078 0 -9.80078 0.300781 -11.6006 0.700195v23.4004c1.90039 -0.200195 6.5 -0.5 8.90039 -0.5c13.3994 0 20.8994 5.7002 25.5 20.2998\\nl2.7998 8.59961l-51.2002 141.9h31.6006l35.5996 -115.1h0.599609l35.6006 115.1h30.7998l-53.0996 -149c-12.1006 -34.0996 -26 -45.4004 -55.5 -45.4004z\\\" />\\n    <glyph glyph-name=\\\"cc-apple-pay\\\" unicode=\\\"&#xf416;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M302.2 229.6c0 -17.1992 -10.5 -27.0996 -29 -27.0996h-24.2998v54.2002h24.3994c18.4004 0 28.9004 -9.7998 28.9004 -27.1006zM349.7 167c0 8.59961 6.89941 13.5 20.2002 14.4004l23.5 1.5v-7.7002c0 -12.7998 -10.8008 -21.9004 -25.2002 -21.9004\\nc-11.2998 0 -18.5 5.40039 -18.5 13.7002zM576 369v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM127.8 250.8c8.40039 -0.700195 16.7998 4.2002 22.1006 10.4004\\nc5.19922 6.39941 8.59961 15 7.69922 23.7002c-7.39941 -0.300781 -16.5996 -4.90039 -21.8994 -11.3008c-4.7998 -5.5 -8.90039 -14.3994 -7.90039 -22.7998zM188.4 176.3c-0.200195 0.200195 -19.6006 7.60059 -19.8008 30c-0.199219 18.7002 15.3008 27.7002 16 28.2002\\nc-8.7998 13 -22.3994 14.4004 -27.0996 14.7002c-12.2002 0.700195 -22.5996 -6.90039 -28.4004 -6.90039c-5.89941 0 -14.6992 6.60059 -24.2998 6.40039c-12.5 -0.200195 -24.2002 -7.2998 -30.5 -18.6006c-13.0996 -22.5996 -3.39941 -56 9.2998 -74.3994\\nc6.2002 -9.10059 13.7002 -19.1006 23.5 -18.7002c9.30078 0.400391 13 6 24.2002 6c11.2998 0 14.5 -6 24.2998 -5.90039c10.2002 0.200195 16.5 9.10059 22.8008 18.2002c6.89941 10.4004 9.7998 20.4004 10 21zM323.8 229.7c0 26.5996 -18.5 44.7998 -44.8994 44.7998\\nh-51.2002v-136.4h21.2002v46.6006h29.2998c26.7998 0 45.5996 18.3994 45.5996 45zM413.8 206c0 19.7002 -15.7998 32.4004 -40 32.4004c-22.5 0 -39.0996 -12.9004 -39.7002 -30.5h19.1006c1.59961 8.39941 9.39941 13.8994 20 13.8994c13 0 20.2002 -6 20.2002 -17.2002\\nv-7.5l-26.4004 -1.59961c-24.5996 -1.5 -37.9004 -11.5996 -37.9004 -29.0996c0 -17.7002 13.7002 -29.4004 33.4004 -29.4004c13.2998 0 25.5996 6.7002 31.2002 17.4004h0.399414v-16.4004h19.6006v68h0.0996094zM516 237.1h-21.5l-24.9004 -80.5996h-0.399414\\nl-24.9004 80.5996h-22.2998l35.9004 -99.2998l-1.90039 -6c-3.2002 -10.2002 -8.5 -14.2002 -17.9004 -14.2002c-1.69922 0 -4.89941 0.200195 -6.19922 0.300781v-16.4004c1.19922 -0.400391 6.5 -0.5 8.09961 -0.5c20.7002 0 30.4004 7.90039 38.9004 31.7998z\\\" />\\n    <glyph glyph-name=\\\"fly\\\" unicode=\\\"&#xf417;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M197.8 20.2002c12.9004 -11.7002 33.7002 -33.2998 33.2002 -50.7002c0 -0.799805 -0.0996094 -1.59961 -0.0996094 -2.5c-1.80078 -19.7998 -18.8008 -31.0996 -39.1006 -31c-25 0.0996094 -39.8994 16.7998 -38.7002 35.7998c1 16.2002 20.5 36.7002 32.4004 47.6006\\nc2.2998 2.09961 2.7002 2.69922 5.59961 3.59961c3.40039 0 3.90039 -0.299805 6.7002 -2.7998zM331.9 380.7c23.8994 -40 27.7998 -73.2998 20.7998 -112.5c-15.2002 -69.9004 -103.601 -166.5 -155.9 -215.7c-1.7002 -1.59961 -1.39941 -1.40039 -3.5 -2.09961\\nl-3.2998 0.0996094c-1.7002 0.599609 -4.5 3.5 -6.2002 5.09961c-58.7998 57.8008 -148.7 151.601 -155.8 233.801c-1.5 71.3994 29.2998 113.399 82.9004 141.3c9.89941 4.09961 37 17.2998 81.0996 17.2998c22 0.200195 51.0996 -4.5 76.5996 -15.2002\\nc24.7002 -11.5 47 -26.3994 63.3008 -52.0996zM186.8 96.0996v325.7c-57.8994 -5.5 -72.7002 -89.2002 -69.2998 -136.7c4.09961 -58.2998 41.2998 -137.899 69.2998 -189zM328.7 268c15.7998 54.9004 -10.9004 134.7 -99.7002 153\\nc38.2002 -25.5996 49.5996 -85.5 48 -131.4c-2 -58.5996 -39.4004 -140 -67.2002 -191.899c41.6006 42.2998 102.5 113.5 118.9 170.3z\\\" />\\n    <glyph glyph-name=\\\"node\\\" unicode=\\\"&#xf419;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M316.3 -4c-2.09961 0 -4.2002 0.599609 -6.09961 1.59961l-19.2002 11.4004c-2.90039 1.59961 -1.5 2.2002 -0.5 2.5c3.7998 1.2998 4.59961 1.59961 8.7002 4c0.399414 0.200195 1 0.0996094 1.39941 -0.0996094l14.8008 -8.80078\\nc0.5 -0.299805 1.2998 -0.299805 1.7998 0l57.7998 33.4004c0.5 0.299805 0.900391 0.900391 0.900391 1.59961v66.7002c0 0.700195 -0.300781 1.2998 -0.900391 1.60059l-57.7998 33.2998c-0.5 0.299805 -1.2002 0.299805 -1.7998 0l-57.8008 -33.2998\\nc-0.599609 -0.300781 -0.899414 -1 -0.899414 -1.60059v-66.7002c0 -0.599609 0.399414 -1.19922 0.899414 -1.5l15.8008 -9.09961c8.59961 -4.2998 13.8994 0.799805 13.8994 5.7998v65.9004c0 0.899414 0.700195 1.7002 1.7002 1.7002h7.2998\\nc0.900391 0 1.7002 -0.700195 1.7002 -1.7002v-65.9004c0 -11.5 -6.2002 -18 -17.0996 -18c-3.30078 0 -6 0 -13.3008 3.60059l-15.1992 8.69922c-3.7002 2.2002 -6.10059 6.2002 -6.10059 10.5v66.7002c0 4.2998 2.2998 8.40039 6.10059 10.5l57.7998 33.4004\\nc3.7002 2.09961 8.5 2.09961 12.0996 0l57.7998 -33.4004c3.7002 -2.2002 6.10059 -6.2002 6.10059 -10.5v-66.7002c0 -4.2998 -2.2998 -8.39941 -6.10059 -10.5l-57.7998 -33.3994c-1.7002 -1.10059 -3.7998 -1.7002 -6 -1.7002zM363 61.7998\\nc0 -12.5996 -10.5 -19.7998 -29 -19.7998c-25.2998 0 -30.5996 11.5996 -30.5996 21.2998c0 1 0.799805 1.7002 1.69922 1.7002h7.5c0.900391 0 1.60059 -0.599609 1.7002 -1.40039c1.10059 -7.59961 4.5 -11.3994 19.7998 -11.3994\\nc12.2002 0 17.4004 2.7002 17.4004 9.2002c0 3.69922 -1.5 6.39941 -20.4004 8.2998c-15.7998 1.59961 -25.5996 5 -25.5996 17.7002c0 11.5996 9.7998 18.5996 26.2998 18.5996c18.5 0 27.6006 -6.40039 28.7998 -20.2002\\nc0.100586 -0.5 -0.0996094 -0.899414 -0.399414 -1.2998c-0.299805 -0.299805 -0.700195 -0.5 -1.2002 -0.5h-7.5c-0.799805 0 -1.40039 0.5 -1.59961 1.2998c-1.80078 8 -6.2002 10.6006 -18.1006 10.6006c-13.2998 0 -14.7998 -4.60059 -14.7998 -8.10059\\nc0 -4.2002 1.7998 -5.39941 19.7998 -7.7998c17.7998 -2.40039 26.2002 -5.7002 26.2002 -18.2002zM417.5 111.9c0 -6.10059 -5 -11.1006 -11.0996 -11.1006c-6.10059 0 -11.1006 5 -11.1006 11.1006c0 6.2998 5.2002 11.0996 11.1006 11.0996\\nc6 0.0996094 11.0996 -4.7998 11.0996 -11.0996zM415.7 111.9c0 5.19922 -4.2002 9.2998 -9.40039 9.2998c-5.09961 0 -9.2998 -4.10059 -9.2998 -9.2998c0 -5.2002 4.2002 -9.40039 9.2998 -9.40039c5.2002 0.0996094 9.40039 4.2998 9.40039 9.40039zM411.2 105.7\\nh-2.60059c-0.0996094 0.599609 -0.5 3.7998 -0.5 3.89941c-0.199219 0.700195 -0.399414 1.10059 -1.2998 1.10059h-2.2002v-5h-2.39941v12.5h4.2998c1.5 0 4.40039 0 4.40039 -3.2998c0 -2.30078 -1.5 -2.80078 -2.40039 -3.10059\\nc1.7002 -0.0996094 1.7998 -1.2002 2.09961 -2.7998c0.100586 -1 0.300781 -2.7002 0.600586 -3.2998zM408.4 114.5c0 1.7002 -1.2002 1.7002 -1.80078 1.7002h-2v-3.5h1.90039c1.59961 0 1.90039 1.09961 1.90039 1.7998zM137.3 257l-0.200195 -95\\nc0 -1.2998 -0.699219 -2.59961 -1.7998 -3.2002c-1.09961 -0.700195 -2.59961 -0.700195 -3.7002 0l-36.3994 20.9004c-2.2998 1.2998 -3.7002 3.7998 -3.7002 6.39941v44.4004c0 2.59961 -1.40039 5.09961 -3.7002 6.40039l-15.5 8.89941\\nc-1.09961 0.700195 -2.39941 1 -3.7002 1c-1.2998 0 -2.5 -0.299805 -3.69922 -1l-15.5 -8.89941c-2.30078 -1.30078 -3.7002 -3.80078 -3.7002 -6.40039v-44.4004c0 -2.59961 -1.40039 -5 -3.7002 -6.39941l-36.4004 -20.9004\\nc-1.19922 -0.700195 -2.59961 -0.700195 -3.69922 0c-1.10059 0.700195 -1.80078 1.90039 -1.80078 3.2002l-0.0996094 95c0 2.59961 1.40039 5.09961 3.7002 6.40039l61.2002 35.2998c1.09961 0.599609 2.19922 1 3.39941 1h0.600586\\nc1.19922 -0.100586 2.39941 -0.400391 3.39941 -1l61.2998 -35.2998c2.30078 -1.30078 3.7002 -3.7002 3.7002 -6.40039zM472.5 360.7v-176.4c0 -2.59961 -1.40039 -5.09961 -3.7002 -6.39941l-61.2998 -35.4004c-2.2998 -1.2998 -5.09961 -1.2998 -7.40039 0\\nl-61.2998 35.4004c-2.2998 1.2998 -3.7002 3.7998 -3.7002 6.39941v70.7998c0 2.60059 1.40039 5.10059 3.7002 6.40039l61.2998 35.4004c2.30078 1.2998 5.10059 1.2998 7.40039 0l15.2998 -8.80078c1.7002 -1 3.90039 0.300781 3.90039 2.2002v94\\nc0 2.7998 3 4.60059 5.5 3.2002l36.5 -20.4004c2.2998 -1.19922 3.7998 -3.69922 3.7998 -6.39941zM426.5 231.8c0 0.700195 -0.400391 1.2998 -0.900391 1.60059l-21 12.1992c-0.599609 0.300781 -1.2998 0.300781 -1.89941 0l-21 -12.1992\\nc-0.600586 -0.300781 -0.900391 -0.900391 -0.900391 -1.60059v-24.2998c0 -0.700195 0.400391 -1.2998 0.900391 -1.59961l21 -12.1006c0.599609 -0.299805 1.2998 -0.299805 1.7998 0l21 12.1006c0.599609 0.299805 0.900391 0.899414 0.900391 1.59961v24.2998h0.0996094\\nzM636.3 232.5l-36.7002 -21.2998c-2.5 -1.40039 -5.59961 0.399414 -5.59961 3.2002v17.3994c0 1.2998 -0.799805 2.5 -1.90039 3.2002l-19.1992 11.0996c-1.10059 0.700195 -2.60059 0.700195 -3.7002 0l-19.2002 -11.0996\\nc-1.2002 -0.700195 -1.90039 -1.90039 -1.90039 -3.2002v-22.2002c0 -1.2998 0.700195 -2.5 1.90039 -3.19922l61.7002 -35.4004c2.5 -1.40039 2.5 -5 0 -6.40039l-36.7998 -20.5c-2.30078 -1.2998 -5.10059 -1.2998 -7.30078 0l-60.8994 34.7002\\nc-2.2998 1.2998 -3.7002 3.7002 -3.7002 6.40039v70.7998c0 2.59961 1.40039 5.09961 3.7002 6.40039l61.2998 35.3994c2.2998 1.2998 5.09961 1.2998 7.40039 0l60.8994 -35.3994c2.2998 -1.30078 3.7002 -3.80078 3.7002 -6.40039v-17.0996\\nc0 -2.60059 -1.40039 -5.10059 -3.7002 -6.40039zM559 229l11.7998 6.7998c0.400391 0.299805 1 0.299805 1.40039 0l11.7998 -6.7998c0.400391 -0.200195 0.700195 -0.700195 0.700195 -1.2002v-13.5996c0 -0.5 -0.299805 -0.900391 -0.700195 -1.2002l-11.7998 -6.7998\\nc-0.400391 -0.299805 -1 -0.299805 -1.40039 0l-11.7998 6.7998c-0.400391 0.200195 -0.700195 0.700195 -0.700195 1.2002v13.5996c0 0.5 0.299805 0.900391 0.700195 1.2002zM304.8 185.5c0 -0.599609 -0.0996094 -1.2002 -0.200195 -1.7002\\nc-0.5 -2 -1.7998 -3.7002 -3.59961 -4.7002l-61 -35.1992c-2.2002 -1.30078 -5 -1.40039 -7.40039 0l-61.1992 35.1992c-2.10059 1.2002 -4 3.60059 -4 6.40039v70.4004c0 2.69922 1.59961 5.09961 3.89941 6.39941l61.1006 35.2002\\nc2.39941 1.40039 5.2998 1.2002 7.39941 0l61.1006 -35.2002c2.2998 -1.2998 3.89941 -3.7998 3.89941 -6.39941v-70.4004zM230.5 310.4l-0.799805 -0.5h1.09961zM306.7 180.2l-0.400391 0.700195v-0.900391z\\\" />\\n    <glyph glyph-name=\\\"osi\\\" unicode=\\\"&#xf41a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M8 181.56c2.2998 135.801 97.3994 232.441 213.799 248.102c138.8 18.5996 255.601 -75.7998 278 -201.101c21.2998 -118.8 -44 -230 -151.6 -274c-9.2998 -3.7998 -14.4004 -1.69922 -18 7.7002c-17.7998 46.2998 -35.5996 92.6328 -53.3994 138.999\\nc-3.09961 8.10059 -1 13.2002 7 16.7998c24.2002 11 39.2998 29.4004 43.2998 55.8008c0.469727 3.01562 0.850586 7.94043 0.850586 10.9922c0 36.2061 -29.2764 68.1074 -65.3506 71.207c-39 3.40039 -71.7998 -23.6992 -77.5 -59.6992\\nc-5.19922 -33 11.1006 -63.7002 41.9004 -77.7002c9.59961 -4.40039 11.5 -8.60059 7.7998 -18.4004c-17.8994 -46.5996 -35.7998 -93.2324 -53.7002 -139.899c-2.59961 -6.90039 -8.2998 -9.30078 -15.5 -6.5c-52.5996 20.2998 -101.399 61 -130.8 119\\nc-24.8994 49.1992 -25.2002 87.6992 -26.7998 108.699zM28.8994 183.461c0.399414 -6.59961 0.599609 -14.3008 1.2998 -22.1006c6.2998 -71.9004 49.5996 -143.5 131 -183.101c3.2002 -1.5 4.39941 -0.799805 5.59961 2.2998c14.9004 39.1006 29.9004 78.2012 45 117.302\\nc1.2998 3.2998 0.600586 4.7998 -2.39941 6.69922c-31.6006 19.9004 -47.3008 48.5 -45.6006 86c1 21.6006 9.2998 40.5 23.7998 56.3008c30 32.6992 77 39.7998 115.5 17.5996c25.3174 -14.5977 45.8643 -50.1641 45.8643 -79.3877\\nc0 -3.05078 -0.296875 -7.98438 -0.664062 -11.0127c-3.59961 -30.5996 -19.2998 -53.8994 -45.7002 -69.7998c-2.69922 -1.59961 -3.5 -2.89941 -2.2998 -6c15.2002 -39.2002 30.2666 -78.4336 45.2002 -117.7c1.2002 -3.09961 2.40039 -3.7998 5.59961 -2.2998\\nc35.5 16.6006 65.2002 40.2998 88.1006 72c34.7998 48.2002 49.0996 101.9 42.2998 161c-13.7002 117.5 -119.4 214.8 -255.5 198c-106.1 -13 -195.3 -102.5 -197.1 -225.8z\\\" />\\n    <glyph glyph-name=\\\"react\\\" unicode=\\\"&#xf41b;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M418.2 270.8c54.3994 -18.7002 93.7998 -48.0996 93.7998 -78.3994c0 -31.7002 -41.7998 -62.6006 -99.5 -81.7002c-3.09961 -1 -6.2002 -2 -9.40039 -2.90039c1.10059 -4.59961 2.10059 -9.09961 3 -13.5c11.4004 -57.5996 2.60059 -104.899 -24.3994 -120.5\\nc-26.1006 -15.0996 -68.4004 -0.200195 -111.2 36.6006c-4.59961 4 -9.2002 8.09961 -13.5996 12.3994c-3.5 -3.39941 -7 -6.59961 -10.5 -9.7002c-44.2002 -38.6992 -89.6006 -54.6992 -116.601 -39.0996c-26.2002 15.0996 -34.3994 59.0996 -23.8994 114.6\\nc1.19922 6.10059 2.5 12 4 18c-4.60059 1.30078 -9.10059 2.80078 -13.6006 4.30078c-55.5 19 -96.2998 50.2998 -96.2998 81.5c0 30.1992 38.2998 59.3994 91.7002 77.8994c5.89941 2.10059 12.2002 4.10059 18.5996 5.90039\\nc-1.39941 5.59961 -2.59961 11.0996 -3.7002 16.7002c-11 56.3994 -3.19922 101.5 23 116.699c27.3008 15.9004 72.9004 -1.09961 118.4 -41.5c2.7998 -2.5 5.59961 -5.09961 8.2998 -7.69922c4 3.89941 8.2002 7.7998 12.5 11.5\\nc43.4004 37.7998 86.2998 53.5 112.601 38.3994c27.2998 -15.7998 35.3994 -63.7002 23.0996 -123.3c-0.799805 -3.7002 -1.59961 -7.40039 -2.5 -11.0996c5.40039 -1.60059 10.7998 -3.30078 16.2002 -5.10059zM282.9 355.7c-4 -3.5 -7.80078 -7 -11.7002 -10.7002\\nc15.3994 -16.7002 29.5996 -34.5 42.5996 -53.0996c22.6006 -2 45.1006 -5.60059 67.2998 -10.6006c0.900391 3.2998 1.60059 6.60059 2.30078 10c10.5996 51.5 4.09961 90.7002 -12.8008 100.4c-15.7998 9.09961 -50.5 -3.60059 -87.6992 -36zM167.2 140.5\\nc-5 8.59961 -9.7002 17.2998 -14.2998 26.0996c-6.40039 -15.1992 -11.9004 -30.0996 -16.3008 -44.5c15.3008 -3.2998 30.8008 -5.7998 46.4004 -7.5c-5.5 8.5 -10.7002 17.2002 -15.7998 25.9004zM136.9 260.8c4.39941 -14.0996 9.69922 -28.7002 16 -43.5996\\nc4.5 8.7998 9.2998 17.5 14.1992 26c4.90039 8.59961 10.1006 17.0996 15.4004 25.3994c-15.9004 -2 -31.2002 -4.59961 -45.5996 -7.7998zM164.3 191.9c6.7002 -13.8008 13.7998 -27.3008 21.5 -40.6006s15.9004 -26.2998 24.6006 -39\\nc14.6992 -0.899414 29.8994 -1.39941 45.5996 -1.39941s31.2002 0.5 46.0996 1.59961c8.5 12.7998 16.6006 25.7002 24.2002 39c7.7002 13.4004 14.9004 27 21.6006 40.7998c-6.80078 13.7002 -14 27.2002 -21.7002 40.4004s-15.7998 26.0996 -24.2998 38.7002\\nc-14.9004 1.09961 -30.3008 1.69922 -45.9004 1.69922s-30.9004 -0.599609 -45.9004 -1.69922c-8.59961 -12.7002 -16.7998 -25.6006 -24.3994 -38.9004c-7.60059 -13.2998 -14.7998 -26.7998 -21.4004 -40.5996zM344.9 140.7c-5 -8.60059 -10.1006 -17.2002 -15.5 -25.6006\\nc15.7998 1.80078 31.5 4.5 47 8c-4.90039 15.1006 -10.5 29.8008 -16.9004 44.3008c-4.7002 -9 -9.5 -17.9004 -14.5996 -26.7002zM359.3 217.2c6.10059 14.2002 11.5 28.5996 16.1006 43.3994c-14.4004 3.30078 -29.8008 6 -45.9004 8\\nc5.2998 -8.2998 10.4004 -16.6992 15.2998 -25.1992c5 -8.60059 9.7998 -17.4004 14.5 -26.2002zM256.2 329.7c-10 -10.9004 -20.1006 -22.9004 -29.9004 -35.7998c19.7998 0.899414 39.7002 0.899414 59.5 0c-9.2002 12.3994 -19.0996 24.3994 -29.5996 35.7998zM140.2 391\\nc-15.7998 -9.09961 -22 -45.5996 -12.6006 -94c1.10059 -5.2002 2.2002 -10.4004 3.5 -15.5c22.2002 4.90039 44.6006 8.40039 67.2002 10.4004c13.1006 18.5996 27.4004 36.3994 42.9004 53.0996c-2.60059 2.40039 -5.10059 4.7998 -7.60059 7\\nc-39.2998 34.7998 -76.5996 48.7998 -93.3994 39zM115.7 127.4c6.89941 22 15.2002 43.5996 24.7998 64.5c-9.5 20.5996 -17.7002 41.8994 -24.5 63.5996c-5.7998 -1.7002 -11.5996 -3.5 -17.2998 -5.5c-45.6006 -15.9004 -77.2002 -39.2998 -77.2002 -57.5996\\nc1.90039 -12.1006 8.7002 -22.9004 18.7998 -29.9004c17.5 -13.9004 41.7002 -24.5 63 -31.2002c4.10059 -1.39941 8.2002 -2.7002 12.4004 -3.89941zM232.3 29.4004c3.2002 2.7998 6.40039 5.7998 9.60059 8.89941c-15.5 16.7998 -30 34.7002 -43.2002 53.4004\\nc-22.9004 1.7002 -45.5 5 -67.9004 9.7998c-1.39941 -5.5 -2.59961 -11.0996 -3.7002 -16.7002c-9 -47.5 -2.39941 -82.7998 13.5 -92c11.4004 -4.5 24.2002 -4 35.3008 1.2998c20.7998 8.2002 39.8994 20.2002 56.3994 35.3008zM256.8 53.7002\\nc10.5 11.5996 20.4004 23.7002 29.6006 36.3994c-10 -0.5 -20.1006 -0.699219 -30.4004 -0.699219c-10 0 -19.9004 0.199219 -29.5 0.599609c9.90039 -13.0996 20.0996 -25.2998 30.2998 -36.2998zM387.5 23.7002c3.2002 22.2002 2.40039 44.7002 -2.5 66.2998\\nc-0.799805 4 -1.7002 8.09961 -2.7002 12.2002c-22.5 -5.10059 -45.2998 -8.60059 -68.2002 -10.5c-12.7998 -18.7998 -26.8994 -36.7002 -42.1992 -53.6006c4.2998 -4 8.5 -7.89941 12.6992 -11.5c36.6006 -31.3994 70.5 -43.3994 86.4004 -34.1992\\nc9.59961 7.69922 15.5996 19.0996 16.5 31.2998zM405.7 131.2c49.8994 16.5 84.7998 41.7998 84.7998 61.3994c0 18.2002 -32.7002 42 -79.2998 58c-4.7998 1.60059 -9.7998 3.2002 -15 4.7002c-6.7998 -21.5 -14.9004 -42.5 -24.5 -62.8994\\nc9.89941 -20.7002 18.5 -42 25.5 -63.8008c2.89941 0.800781 5.7002 1.7002 8.5 2.60059zM256 146.2c-25.2998 0 -45.7998 20.5 -45.7998 45.7998s20.5 45.7998 45.7998 45.7998s45.7998 -20.5 45.7998 -45.7998s-20.5 -45.7998 -45.7998 -45.7998z\\\" />\\n    <glyph glyph-name=\\\"autoprefixer\\\" unicode=\\\"&#xf41c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M318.4 432l164.1 -480h-77.5l-25.2002 81.4004h-119.5l-25.3994 -81.4004h-77.5zM278.1 90.0996h83.6006l-40.9004 130.4h-1.5zM640 43l-158.5 -9.5l-19.4004 56.5l167.9 -15.5996zM177.9 90l-19.4004 -56.4004l-158.5 9.40039l10 31.2998z\\\" />\\n    <glyph glyph-name=\\\"less\\\" unicode=\\\"&#xf41d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M612.7 229c0 -11 6.7998 -22.5996 27.2998 -23.2998v-27.2998c-20.5 -1 -27.2998 -12.6006 -27.2998 -23.6006c0 -20.3994 3.2002 -32 3.2002 -54.5996c0 -34.2002 -12.7002 -45.2002 -40.5 -45.2002h-20.5v25.2002h6.2998v0.5c13.5996 0 17.2998 4.7002 17.2998 22.5996\\nc0 17.2998 -1.59961 32.6006 -1.59961 51.5c0 24.2002 7.7998 33.6006 23.5996 37.2998v1.60059c-15.7002 3.7002 -23.5996 13.0996 -23.5996 37.2998c0 18.9004 1.59961 35.2002 1.59961 51.5c0 17.4004 -3.09961 22.0996 -17.2998 22.0996h-6.2998v24.2002h20.5\\nc27.8994 0 40.5 -11 40.5 -45.2002c0 -22 -3.2002 -34.0996 -3.2002 -54.5996zM507.1 197c20.5 -6.7998 43 -18.9004 43 -47.7998c0 -28.9004 -22.5996 -51 -64.5996 -51c-20 0 -44.0996 9 -59.9004 22.0996l21 30.5c14.2002 -11 27.4004 -16.2998 40.5 -16.2998\\nc14.2002 0 20.5 5.2002 20.5 13.0996c0 10.5 -15.7998 15.8008 -32.0996 22.1006c-18.9004 7.2998 -41.5 20.5 -41.5 46.2002c0 28.8994 24.2002 49.3994 59.9004 49.3994c24.1992 0 42.0996 -10.5 55.1992 -20.5l-21 -27.7998c-11.5 8.40039 -22 13.0996 -33.5996 13.0996\\ns-17.9004 -4.69922 -17.9004 -12.5996c0 -10.5 14.7002 -14.2002 30.5 -20.5zM148.2 137.6c1.59961 0 3.09961 0 6.2002 0.800781l5.2998 -34.2002c-5.7002 -2.10059 -13.6006 -3.7002 -23.6006 -3.7002c-32.0996 0 -43.0996 21 -43.0996 53.0996v150.801h-14.0996\\nc-13.6006 0 -17.3008 -4.80078 -17.3008 -22.1006s1.60059 -32.5996 1.60059 -51.5c0 -24.2002 -7.7998 -33.5996 -23.6006 -37.2998v-1.59961c15.7002 -3.7002 23.6006 -13.1006 23.6006 -37.3008c0 -19.3994 -1.60059 -34.1992 -1.60059 -51.5\\nc0 -17.2998 4.2002 -22.5996 17.3008 -22.5996h6.2998v-24.2002h-20.5c-27.9004 0 -40.5 11 -40.5 45.2002c0 22.5996 3.2002 34.2002 3.2002 53.5996c0 11 -6.80078 22.6006 -27.3008 23.1006v27.2998c20.5 1 27.3008 12.5996 27.3008 23.5996\\nc0 19.4004 -3.2002 32 -3.2002 54.6006c0 34.2002 12.5996 45.2002 41 45.2002h74.5996v-178.2c0 -9.90039 4.7002 -13.1006 8.40039 -13.1006zM379.9 197c20.5 -6.7998 43.0996 -18.9004 43 -47.7998c0 -28.9004 -22.6006 -51 -64.6006 -51\\nc-20 0 -44.0996 9 -59.8994 22.0996l20.5 30.5c14.1992 -11 27.3994 -16.2998 40.5 -16.2998c14.1992 0 20.5 5.2002 20.5 13.0996c0 10.5 -15.8008 15.8008 -32.1006 22.1006c-18.8994 7.2998 -41.5 20.5 -41.5 46.2002c0 28.8994 24.2002 49.3994 59.9004 49.3994\\nc24.2002 0 42.0996 -10.5 55.2002 -20.5l-21 -27.7998c-11.5 8.40039 -22 13.0996 -33.6006 13.0996c-11.5996 0 -17.8994 -4.69922 -17.8994 -12.5996c0 -10.5 14.6992 -14.2002 31 -20.5zM224.9 265.8c44.0996 0 67.2998 -33.0996 66.6992 -75.7002\\nc0 -8.39941 -1.09961 -15.6992 -1.59961 -19.3994h-95.2002c4.2002 -24.2002 20.5 -34.2002 41.5 -34.2002c11.6006 0 22.6006 3.2002 34.2002 10l15.7998 -27.7998c-16.2998 -11.1006 -37.2998 -17.9004 -56.2002 -17.9004c-45.0996 0 -79.2998 30.5 -79.2998 82.5\\nc-1 50.4004 35.7002 82.5 74.1006 82.5zM194.9 199.6h56.7998c0 17.9004 -7.40039 31 -26.2998 31c-14.7002 0 -27.3008 -10 -30.5 -31z\\\" />\\n    <glyph glyph-name=\\\"sass\\\" unicode=\\\"&#xf41e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M301.84 69.0801c-0.299805 -0.599609 -0.599609 -1.08008 0 0zM550.97 156.08c57.9092 0.300781 90.5703 -37.0801 88.9707 -71.0801c-1.10059 -26.9004 -25.6904 -37.9004 -30.29 -38.7002c-3.30078 -0.599609 -5.10059 -0.700195 -5.60059 1.90039\\nc-0.299805 1.7998 0.900391 2.7002 4.7998 5.09961c3.90039 2.40039 15.6006 10.5 17.7002 25c2.10059 14.5 -8.7998 49.2998 -64.4795 55.7998c-26 3 -46.3906 -0.599609 -62.0898 -7.19922c2.89941 -7.60059 5.09961 -15.5 5.39941 -23.4004\\nc0.799805 -17.5 -11.29 -30.4004 -23.79 -39.5996c-5.48535 -3.98535 -15.1572 -8.95801 -21.5898 -11.1006c-5.2002 -2.2002 -12.2002 -4.5 -17.0996 -3.5c-10.9004 2.2002 -16.7002 11.7998 -9.30078 33.1006c4 11.5 15.5 29 34.0908 44.0996\\nc-4.30078 8.7002 -8.99023 17.5996 -11.3906 25.7002c-2.18164 7.00781 -4.95898 18.5664 -6.2002 25.7998c0 0 -15.2998 -31.7197 -35.0898 -60.6201c-1.09961 -1.7002 -2.2998 -3.39941 -3.39941 -5c3.7998 -9 6.89941 -18.5996 7.2998 -28.2002\\nc0.700195 -17.3994 -6.90039 -30.5996 -19.4004 -39.7998c-5.16211 -3.70605 -14.208 -8.45508 -20.1895 -10.5996c-3.90039 -1.7998 -12 -4.60059 -23.5 -5.40039c-6.29004 -0.5 -12.29 -0.0996094 -15.6904 2.5c-4.59961 3.40039 -5.2002 7.7998 -2.7998 13.7002\\nc2 5 17.21 22.4004 30 37.5996c3.5 4.2002 6.90039 8.5 9.90039 12.5c-0.0498047 0.0449219 -0.09375 0.134766 -0.100586 0.200195c0 0 2.2998 3 6.10059 8.2002c-4.7002 10.0996 -10.6006 20.5 -13.4004 30c-2.18164 7.00781 -4.95898 18.5664 -6.2002 25.7998\\nc0 0 -15.4902 -39.7002 -31.6895 -71.5c-12.4902 -24.5996 -20.79 -39.5 -24.5908 -46v-0.299805s-0.5 -0.900391 -1.5 -2.40039c-0.5 -0.799805 -0.699219 -1.19922 -0.699219 -1.19922v0.0996094c-4.20996 -6.2002 -13.6104 -18.2998 -23 -18.2998\\nc-25.7002 0 -16.3008 52.2002 -16.3008 52.2002s-7.5 -19.3008 -16 -35.9004c-6.88965 -13.5996 -13.0898 -25 -26.8896 -25c-3.90039 0 -10.1904 0.0996094 -15.3896 5c-11.8008 11.2002 -20.9004 39.7002 -19.1006 61.7002c1.5 18.7998 4.40039 31.7998 8.40039 42.5996\\nc-7.10059 -3.89941 -15.2002 -8.39941 -23.4902 -13.2998c-4.2998 -2.5 -8.59961 -5 -12.7998 -7.5c0.0996094 -0.299805 0.299805 -0.5 0.400391 -0.799805c10.5996 -20.4004 13.3896 -65.2002 -9.60059 -99.5s-65.7803 -55.2002 -107.57 -43.6006\\nc-13.3896 3.80078 -33.79 31.6006 -16.29 70.4004c15.4902 34.2002 77.3809 66.5996 93.6709 74.7002c1.39941 0.799805 2.89941 1.59961 4.5 2.5c-32.4902 28.3994 -113.671 66.7998 -125.061 125.7c-3.2002 16.5996 4.58984 56.2998 53.2803 101.899\\nc40.9902 38.2998 97.9697 67.7002 150.66 86.4004c88.4297 31.3994 181.949 12.8994 196.31 -43.5c14.1006 -55.5 -33.9902 -121.8 -95.7695 -145.601c-54.9902 -21.2998 -100.471 -17.8994 -119.17 -11.7998c-21.29 7 -33.79 21 -36.79 28.9004\\nc-1.2002 3.09961 -3.30078 8.2998 0 10.0996c2 1.10059 2.7998 0.799805 8.09961 -5.09961c5.09961 -5.60059 25.4902 -20.6006 64.2803 -16.2998c101.77 11.3994 163.06 90.5 143.66 133c-13.4902 29.7998 -91.8408 43.1992 -189.841 -5.60059\\nc-119.569 -59.5996 -126.069 -108.7 -127.069 -127.399c-2.7998 -51.3008 63.2793 -78.3008 99.0693 -116.5c0.5 -0.5 0.900391 -1 1.40039 -1.5c6.7002 3.69922 13.7998 7.59961 20.7002 11.3994c18 9.90039 35.0996 19.2002 43 23.5\\nc12.5801 18.2998 38.1797 38.5 56.5801 38.5c29.4893 0 19.3896 -42.3994 19.3896 -42.3994s0.599609 2 1.40039 2c0.799805 0 4.09961 5.5 13.1992 2.19922c9.40039 -3.5 7.2002 -10 7.30078 -10.6992c0.0996094 -1.30078 -11 -38.9004 -15.7002 -63.1006\\nc-2.2002 -11.5 -0.900391 -19.8994 -0.299805 -19.8994c0.899414 0 2.7998 2.89941 4.5 6.09961v0.0996094s1.2998 2.40039 3.5 6.7002c0 0.200195 -0.200195 -0.299805 -0.5 -0.799805c0.199219 0.400391 0.5 0.900391 0.899414 1.7002\\nc2.60059 5 6.2002 12.3994 10.4004 21.5996c8.18945 18.1006 39.4795 87.7002 42.0801 95.4004c2.59961 7.7002 4 15.7002 5.2998 19.0996c1.2998 3.40039 12.4102 6 25.2998 5.90039c12.8906 -0.100586 14.1904 -5.60059 14.29 -6.7002\\nc0.100586 -1.09961 -6.2002 -16.4004 -7.59961 -27.2002c-1.40039 -10.7998 -0.100586 -16.2002 1.09961 -25.2998c0.799805 -6 4.5 -13.5 8.90039 -22c13.2998 21.7998 36.79 63.5996 39.0898 75.2998c1.03613 5.38965 3.41016 13.9473 5.2998 19.1006\\nc1.29004 3.39941 12.3896 6 25.29 5.89941c12.9004 -0.0996094 14.2002 -5.59961 14.2998 -6.7002c0.100586 -1.09961 -6.2002 -16.3994 -7.59961 -27.1992c-1.40039 -10.8008 -0.100586 -16.2002 1.09961 -25.3008c1 -7.7998 7.10059 -18.1992 13 -30.0996\\nc15.1289 7.45215 41.0938 13.5 57.958 13.5h0.0419922zM121.79 11.3799c19.4004 21.0996 27.3896 47.9199 19.0996 78.3203c-1 -0.600586 -2 -1.10059 -2.89941 -1.7002c0 0 -0.400391 -0.200195 -1.2002 -0.700195c-4.7998 -2.89941 -8.7002 -5.2998 -11.4004 -6.89941\\nc-11.7998 -7.40039 -29.5898 -19.4004 -43.3896 -32.4004c-22.6904 -21.4199 -27.3896 -51 -15.4902 -57.9199c11.0898 -6.40039 36.8906 1.2002 55.2803 21.2998zM256.15 102.78c4 9.7998 19.6992 53.2998 16.1992 59.2002c-2.59961 4.5 -13.6992 0.899414 -23.79 -10.4004\\nc-6.2998 -7 -16.8994 -25 -21.8994 -40.0996c-9.90039 -30 -5.60059 -60.5 1.39941 -62.3008c8.2002 -2.09961 21.6904 37.9004 28.0908 53.6006zM367.15 49.7803c7.7998 4.7998 24.96 16.8994 25.0898 34.7998c0 0.599609 -0.100586 1.09961 -0.100586 1.59961\\nc-3.98926 -5.19922 -7.68945 -9.89941 -10.8896 -13.8994c-5.5 -6.7998 -19.4004 -21.7002 -19.4004 -21.7002s-2 -1.90039 -1.09961 -2.40039c1.2002 -0.699219 3.7002 0.200195 6.40039 1.60059zM452.73 69.2803c9.68945 3.5 25.7998 11.8994 25.8994 34.3994\\nc-0.0673828 3.06152 -0.918945 7.90039 -1.89941 10.8008c-10.4102 -9.2002 -16.4004 -18.8008 -19 -24.5c-6.7002 -14.6006 -7 -19.3008 -5 -20.7002z\\\" />\\n    <glyph glyph-name=\\\"vuejs\\\" unicode=\\\"&#xf41f;\\\" \\nd=\\\"M356.9 383.7h91.0996l-224 -383.7l-224 383.7h176l48 -88.6006l56 88.6006h76.9004zM55.7002 351.7l168.3 -288.2l168.2 288.2h-53.7998l-114.4 -198.2l-114.5 198.2h-53.7998z\\\" />\\n    <glyph glyph-name=\\\"angular\\\" unicode=\\\"&#xf420;\\\" \\nd=\\\"M185.7 179.9l38.0996 91.5996l38.1006 -91.5996h-76.2002zM223.8 416l207.8 -74.4004l-31.7998 -275.699l-176 -97.9004l-176 97.9004l-31.7998 275.699zM354 74.2002l-130.2 292.3l-130.1 -292.3h48.7002l26.1992 65.3994h110.601l26.2002 -65.3994h48.5996z\\\" />\\n    <glyph glyph-name=\\\"aviato\\\" unicode=\\\"&#xf421;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M107.2 164.5l-19 41.7998h-52.1006l-19 -41.7998h-17.0996l62.2002 131.4l62.2002 -131.4h-17.2002zM62.2002 262.6l-19.6006 -42.5h39.2002zM174.9 160.2l-62.2002 131.399h17.0996l45.1006 -96l45.0996 96h17zM255.5 164.5v127.1h15.5v-127.1h-15.5zM464.6 280.1\\nv-115.6h-17.2998v115.6h-41.2002v11.5h99.6006v-11.5h-41.1006zM640 229.2c0 -9.2002 -1.7002 -17.7998 -5.09961 -25.7998c-3.40039 -8 -8.2002 -15.1006 -14.2002 -21.1006s-13.1006 -10.7998 -21.1006 -14.2002c-8 -3.39941 -16.5996 -5.09961 -25.7998 -5.09961\\ns-17.7998 1.7002 -25.7998 5.09961c-8 3.40039 -15.0996 8.2002 -21.0996 14.2002s-10.8008 13 -14.2002 21.1006c-3.40039 8 -5.10059 16.5996 -5.10059 25.7998s1.7002 17.7998 5.10059 25.7998c3.39941 8 8.2002 15.0996 14.2002 21.0996s13 8.40039 21.0996 11.9004\\nc8 3.40039 16.5996 5.09961 25.7998 5.09961s17.7998 -1.69922 25.7998 -5.09961s15.1006 -5.7998 21.1006 -11.9004c6 -6 10.7002 -13.0996 14.2002 -21.0996c3.39941 -8 5.09961 -16.5996 5.09961 -25.7998zM624.5 229.2c0 7.2998 -1.2998 14 -3.90039 20.2998\\nc-2.59961 6.2998 -6.19922 11.7002 -10.7998 16.2998c-4.59961 4.60059 -10 8.2002 -16.2002 10.9004c-6.19922 2.7002 -12.7998 4 -19.7998 4s-13.5996 -1.2998 -19.7998 -4s-11.5996 -6.2998 -16.2002 -10.9004c-4.59961 -4.59961 -8.2002 -10 -10.7998 -16.2998\\ns-3.90039 -13.0996 -3.90039 -20.2998c0 -7.2998 1.30078 -14 3.90039 -20.2998c2.59961 -6.30078 6.2002 -11.7002 10.7998 -16.3008c4.60059 -4.59961 10 -8.19922 16.2002 -10.8994s12.7998 -4 19.7998 -4s13.6006 1.2998 19.7998 4\\nc6.2002 2.7002 11.6006 6.2998 16.2002 10.8994c4.60059 4.60059 8.2002 10 10.7998 16.3008c2.60059 6.2998 3.90039 13.0996 3.90039 20.2998zM529.7 132.5c6 -0.900391 10.5 -6 10.7002 -12.2998c0 -6.7998 -5.60059 -12.4004 -12.4004 -12.4004\\ns-12.4004 5.60059 -12.4004 12.4004c0 6.2002 4.60059 11.2998 10.5 12.2002v5.7998l-80.2998 -9v-5.40039c5.60059 -1.09961 9.90039 -6.09961 9.90039 -12.0996c0 -6.7998 -5.60059 -10.2002 -12.4004 -10.2002s-12.3994 3.40039 -12.3994 10.2002\\nc0 5.89941 4.19922 11 9.89941 12.0996v4.90039l-28.3994 -3.2002v-23.7002h5.89941v-13.7998h-5.89941v6.59961h-5v-6.59961h-5.90039v13.7998h5.90039v23.2002l-38.3008 -4.2998c-8.09961 -11.5 -19 -13.6006 -19 -13.6006l0.100586 -6.69922l5.09961 -0.200195\\nl0.100586 -12.1006h-4.10059l-0.0996094 5h-5.2002l-0.0996094 -5h-4.10059l0.100586 12.1006l5.09961 0.200195l0.0996094 6.69922s-10.8994 2.2002 -19 13.6006l-38.2998 4.2998v-23.2002h5.90039v-13.7998h-5.90039v6.59961h-5v-6.59961h-5.89941v13.9004h5.89941\\nv23.6992l-28.3994 3.2002v-4.89941c5.59961 -1.10059 9.89941 -6.10059 9.89941 -12.1006c0 -6.7998 -5.59961 -10.2002 -12.3994 -10.2002c-6.80078 0 -12.4004 3.40039 -12.4004 10.2002c0 5.90039 4.2002 11 9.90039 12.1006v5.39941l-80.3008 9v-5.7998\\nc5.90039 -0.900391 10.5 -6 10.5 -12.2002c0 -6.7998 -5.59961 -12.3994 -12.3994 -12.3994s-12.4004 5.59961 -12.4004 12.3994c0 6.2002 4.60059 11.2998 10.5 12.2002v6.2998l-88.8994 10l242.899 -13.5c-0.599609 2.2002 -1.09961 4.60059 -1.39941 7.2002\\nc-0.300781 2.09961 -0.5 4.2002 -0.600586 6.5l-64.7998 8.09961l64.9004 -1.89941c0 0.399414 0 0.799805 0.0996094 1.09961c2.7998 17.2002 25.5 23.7002 25.5 23.7002l1.09961 26.4004h-23.5996l-19 -41.8008h-17.0996l62.1992 131.4l62.2002 -131.4h-17.0996\\nl-19 41.8008h-23.7998l1.09961 -26.3008s22.7002 -6.5 25.5 -23.6992c0 -0.400391 0.0996094 -0.700195 0.0996094 -1.10059l64.9004 1.90039l-64.7998 -8.10059c-0.100586 -2.2998 -0.299805 -4.5 -0.600586 -6.5c-0.299805 -2.59961 -0.799805 -5 -1.39941 -7.19922\\nl242.899 13.3994l-88.8994 -10v-6.2998zM328.9 220.1h17.8994l1.7002 40.3008l1.7002 -40.3008h17.8994l-19.5996 42.5z\\\" />\\n    <glyph glyph-name=\\\"ember\\\" unicode=\\\"&#xf423;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M639.9 193.4c1.09961 -10.8008 -5.30078 -14.3008 -5.30078 -14.3008s-26.5996 -19.5996 -47 -13.6992c-20.3994 5.89941 -21.5 43.1992 -21.5 43.1992h-1.89941l-20.7002 -57.1992s-8.2998 -27.9004 -20.7002 -22.8008\\nc-12.3994 5.10059 -12.0996 18.6006 -12.0996 18.6006s-19.2998 -21.2998 -54.7998 -18.6006c-31.1006 2.30078 -41.1006 26.7002 -41.1006 26.7002s-20.7998 -14.3994 -79.0996 -25.8994c-26.1006 -2.90039 -44.6006 12.8994 -44.6006 12.8994\\nc-2.39941 -2.39941 -18 -10.2002 -18 -10.2002s-22.2998 -10.2998 -30.8994 5.30078c-8.60059 15.5996 -3 63.6992 -3 63.6992h-1.60059s-12.8994 -26.2998 -19.5996 -49.8994c-6.7002 -23.6006 -15 -21.2002 -15 -21.2002s-15.2998 -1.40039 -18.7998 11.4004\\nc-3.5 12.8994 5.59961 59.6992 5.59961 59.6992l-1.2998 -0.299805s-0.799805 1.40039 -12.5996 -23.5996c-20.1006 -48.9004 -24.9004 -50 -36.5 -47.9004c-11.6006 2.10059 -12.1006 16.7002 -12.1006 16.7002l-15.8994 -8.7998s-38.6006 -16.6006 -58.8008 -1.2998\\nc-13.3994 10.1992 -18 22.1992 -19.5996 29.6992c0 0 -17 1.80078 -28.0996 6.10059c-11.1006 4.2998 0.0996094 18.2998 0.0996094 18.2998s3.5 5.2998 10 0s18.7998 -2.90039 18.7998 -2.90039c1 8.5 2.5 19.7002 7.7998 31.5c11 24.7002 27.6006 33 41.3008 33.3008\\nc13.6992 0.199219 23.3994 -3.5 31.6992 -15.3008c18.6006 -45.8994 -49.3994 -69.1992 -49.3994 -69.1992s-1.7998 -12.1006 16.7002 -11.8008c18.5996 0.200195 46.7998 20.4004 46.7998 20.4004c1.2998 15.4004 12.0996 63.5 15 70.7002\\nc2.89941 7.2002 14.2002 5.89941 14.2002 5.89941s8.89941 1.90039 10.5 -7.5c1.69922 -9.39941 -6.40039 -47.5996 -6.40039 -47.5996l1.2998 -1.59961c0.799805 3.69922 20.4004 36.5 20.4004 36.5s11.2998 19.5996 28.5 18.7998s-0.799805 -53.5 -0.799805 -53.5\\nl1.2998 -1.60059l1.2998 2.40039c2.2002 5.90039 27.7002 44.5996 27.7002 44.5996s9.59961 11.3008 18.5 8.60059c8.7998 -2.60059 9.39941 -6.7002 9.89941 -14.2002s-7 -52.0996 -7 -52.0996s-4.2998 -29.2002 5.40039 -28.7002s20.2002 10.7002 20.2002 10.7002\\ns7.5 57.5996 12.5996 105.1c5.10059 47.5 27.1006 79.5 27.1006 79.5s6.5 10 23.5 16.7002c11.1992 4 23.3994 1.2998 29.1992 -23.1006c9.5 -41 -23.2998 -87.8994 -36.8994 -105.199c5.89941 5.7998 15.7998 12.0996 27.2002 5.2998\\nc40.2998 -25.2998 7.2998 -80.9004 7.2998 -80.9004c11.7998 3.7998 33 18 33 18s0.5 6.10059 0.700195 7.5c7.19922 41.2998 32 56.2002 36.5996 59.7002c4.7998 3.59961 47.0996 19.7998 49 -24s-52.9004 -59.0996 -52.9004 -59.0996s4.80078 -12.6006 25 -9.40039\\nc20.2002 3.2002 43.3008 22.7998 43.3008 22.7998c0.799805 18 12.5996 61 15 67.2002c2.39941 6.2002 17.1992 6.5 18.7998 3c2.2002 -7 0.299805 -37.5996 0.299805 -37.5996l1.59961 0.5c5.90039 17.5 18.3008 31.1992 18.3008 31.1992s9.89941 9.7002 18 7.30078\\nc8.09961 -2.30078 5.09961 -30.4004 5.09961 -30.4004s-4.2998 -30.7002 9.40039 -32c13.6992 -1.40039 29.2998 10.7002 29.2998 10.7002s9.59961 3.89941 10.7002 -6.7998zM61.9004 188.1c0 0 6.19922 -1.89941 19.8994 7.60059\\nc13.7002 9.39941 16.4004 24.3994 9.10059 31.3994c-7.2002 6.90039 -28.2002 -7 -29 -39zM334.7 311.9c0 0 -15.9004 -54.5 -16.4004 -70.7002c0 0 44.5 72 40 96.2002c-4.5 24.1992 -23.5996 -25.5 -23.5996 -25.5zM357.5 173.5\\nc12.5996 33.0996 -3.59961 45.5 -3.59961 45.5s-23.4004 12.9004 -33.3008 -20.2002c-9.89941 -33.0996 -6.39941 -44.8994 -6.39941 -44.8994s30.7002 -13.4004 43.2998 19.5996zM442.1 188.1c0 0 15.7002 -1.09961 26.4004 14.2002s1.2998 25.5 1.2998 25.5\\ns-8.59961 11.1006 -19.5996 -9.09961c-11.1006 -20.1006 -8.10059 -30.6006 -8.10059 -30.6006z\\\" />\\n    <glyph glyph-name=\\\"font-awesome-flag\\\" unicode=\\\"&#xf425;\\\" \\nd=\\\"M444.373 88.5762c0 -7.16797 -6.14453 -10.2402 -13.3125 -13.3125c-28.6719 -12.2881 -59.3916 -23.5518 -92.1592 -23.5518c-46.0801 0 -67.584 28.6719 -122.88 28.6719c-39.9365 0 -81.9209 -14.3359 -115.713 -29.6953\\nc-2.04785 -1.02441 -4.0957 -1.02441 -6.14355 -2.04883v-77.8232c0 -21.4053 -16.1221 -34.8164 -33.792 -34.8164c-19.4561 0 -34.8164 15.3604 -34.8164 34.8164v374.783c-13.3115 10.2402 -22.5273 26.624 -22.5273 45.0566c0 31.7441 25.5996 57.3438 57.3438 57.3438\\ns57.3438 -25.5996 57.3438 -57.3438c0 -18.4326 -8.19141 -34.8164 -22.5273 -45.0566v-31.7432c4.12402 1.37402 58.7676 28.6719 114.688 28.6719c65.2705 0 97.6758 -27.6484 126.976 -27.6484c38.9121 0 81.9209 27.6484 92.1602 27.6484\\nc8.19238 0 15.3604 -6.14453 15.3604 -13.3125v-240.64z\\\" />\\n    <glyph glyph-name=\\\"gitter\\\" unicode=\\\"&#xf426;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M66.4004 125.5h-50.4004v322.5h50.4004v-322.5zM166.9 371.9v-435.9h-50.4004v435.9h50.4004zM267.5 371.9v-435.9h-50.4004v435.9h50.4004zM368 372v-247h-50.4004v247h50.4004z\\\" />\\n    <glyph glyph-name=\\\"hooli\\\" unicode=\\\"&#xf427;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M144.5 96v16c12.2998 -6.59961 25.0996 -12.2002 38.2998 -16.7998zM202.2 101.3c29.5 -10.7002 55.3994 -13.5 75.2998 -13.2998c-24.7998 -7 -58.2002 -5.2998 -94.7002 7.2002l19.4004 0.799805v5.2998zM611.1 216.5c-16 0 -28.8994 13 -28.8994 28.9004\\nc0 15.8994 13 24.5 28.8994 24.5c16 0 28.9004 -8.5 28.9004 -24.5s-13 -28.9004 -28.9004 -28.9004zM582.1 96v110.5h57.9004v-110.5h-57.9004zM508.4 96v168l57.8994 27.2998v-195.3h-57.8994zM477.4 215.4c18.0996 -18.1006 16.6992 -33.8008 16.7998 -52.6006\\nc0 -18.7002 1.39941 -34.2998 -16.7998 -52.5c-18.1006 -18.2002 -50.4004 -17.0996 -50.4004 -17.0996s-32.2002 -1.10059 -50.4004 17.0996c-18.1992 18.2002 -16.7998 33.7998 -16.7998 52.5s-1.39941 34.4004 16.7998 52.6006\\nc18.1006 18.1992 50.4004 17.0996 50.4004 17.0996s32.2002 1.09961 50.4004 -17.0996zM437.6 143.5v40.4004c0 8.7998 -7.2998 10.8994 -10.6992 10.8994c-3.40039 0 -10.7002 -2.2002 -10.7002 -10.8994v-40.4004c0 -3.59961 1.7998 -12.5 10.7002 -12.5\\nc8.89941 0 10.6992 8.90039 10.6992 12.5zM331.4 215.4c18.1992 -18.1006 16.6992 -33.8008 16.6992 -52.3008c0 -18.6992 1.5 -34.2998 -16.6992 -52.5c-18.1006 -18.1992 -50.4004 -17.0996 -50.4004 -17.0996s-32.2002 -1.09961 -50.4004 17.0996\\nc-18.1992 18.2002 -16.7998 33.8008 -16.7998 52.5c0 15.6006 -0.899414 29.1006 9.2998 43.7002c-16 11.7998 -58 37.4004 -99.8994 58.2998v-54.2998c8 13.7002 22.7002 22 38.5 21.9004c27.2002 0 40.5996 -18.7002 40.5996 -37.4004v-93.8994\\nc-20.3994 7.5 -39.7002 17.3994 -57.7002 29.5996v48.7002c0 8.09961 -1.5 15 -10.5996 15s-10.7998 -11.2998 -10.7998 -18.2002v-29.7998l-4.5 3.59961c-22.9004 18.9004 -40.2998 35.6006 -53.4004 50.2998v-31c11 -9.7998 23.6006 -20.1992 38.4004 -31.3994\\nc6.39941 -4.90039 12.8994 -9.40039 19.3994 -13.6006v-28.5996h-57.8994v73.7002c-86.7002 78 -61.7998 110.8 -61.7998 110.8c8.2998 18.2998 42.8994 22.2002 97.2998 0.0996094l22.5 10.6006v-20.7002c29.5996 -14.5996 63.8994 -31.5 102.1 -61.0996\\nc1.60059 2.09961 3.40039 4.09961 5.2998 6c18.2002 18.1992 50.4004 17.0996 50.4004 17.0996s32.2002 1.09961 50.4004 -17.0996zM65.2002 264l29.2002 13.7002c-26.9004 10.0996 -50.9004 13.5 -64.4004 2.09961c-3.7002 -3.09961 -13.5 -24.5996 35.2002 -79.0996\\nv63.2998zM291.7 143.5v40.4004c0 8.7998 -7.2998 10.8994 -10.7002 10.8994s-10.7002 -2.2002 -10.7002 -10.8994v-40.4004c0 -3.59961 1.7998 -12.5 10.7002 -12.5s10.7002 8.90039 10.7002 12.5z\\\" />\\n    <glyph glyph-name=\\\"strava\\\" unicode=\\\"&#xf428;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M158.4 448l150.199 -292h-88.5l-61.6992 116.1l-62.2002 -116.1h-89.2002zM308.6 156h67.6006l-111.5 -220l-112.2 220h67.5996l44.6006 -88.2002z\\\" />\\n    <glyph glyph-name=\\\"stripe\\\" unicode=\\\"&#xf429;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M165 303.3l0.0996094 -38.5h33.7002v-37.7998h-33.7002v-63.2002c0 -26.2002 28 -18 33.7002 -15.7002v-33.7998c-5.89941 -3.2002 -16.5996 -5.89941 -31.2002 -5.89941c-26.2998 0 -46.0996 17 -46.0996 43.2998l0.200195 142.399zM254.1 251.7\\nc10.4004 19.0996 31.1006 15.2002 37.1006 13.0996v-40.7998c-5.7002 1.7998 -23.4004 4.5 -33.9004 -9.2998v-103.101h-44.2998v153.2h38.4004zM346.4 324v-36.2002l-44.6006 -9.5v36.2002zM44.9004 219.7c0 -20 67.8994 -10.5 67.8994 -63.4004\\nc0 -32 -25.3994 -47.7998 -62.2998 -47.7998c-15.2998 0 -32 3 -48.5 10.0996v40c14.9004 -8.09961 33.9004 -14.1992 48.5996 -14.1992c9.90039 0 17 2.69922 17 10.8994c0 21.2002 -67.5 13.2002 -67.5 62.4004c0 31.3994 24 50.2002 60 50.2002\\nc14.7002 0 29.4004 -2.30078 44.1006 -8.10059v-41.7998c-13.5 7.2998 -30.7002 11.4004 -44.2002 11.4004c-9.2998 -0.100586 -15.0996 -2.80078 -15.0996 -9.7002zM640 186.4c0 -4.30078 -0.400391 -13.6006 -0.599609 -15.9004h-86.9004\\nc2 -20.7998 17.2002 -26.9004 34.5 -26.9004c17.5996 0 31.5 3.7002 43.5996 9.80078v-33.4004c-12.0996 -6.7002 -28 -11.5 -49.1992 -11.5c-43.2002 0 -73.5 24.7002 -73.5 78.2002c0 45.2002 25.6992 81.0996 67.8994 81.0996s64.2002 -35.8994 64.2002 -81.3994z\\nM552.1 203.2h45.9004c0 20 -11.5996 28.3994 -22.5 28.3994c-11.0996 0 -23.4004 -8.39941 -23.4004 -28.3994zM439.2 267.8c31.2002 0 60.5996 -28.0996 60.5 -79.7002c0 -56.3994 -29 -79.5996 -60.7998 -79.5996c-15.5 0 -25 6.5 -31.4004 11.2002l-0.0996094 -50.2002\\nl-44.4004 -9.40039v204.801h39.0996l2.30078 -11c6.19922 5.69922 17.3994 13.8994 34.7998 13.8994zM428.6 145.3c16.5 0 27.5 17.9004 27.4004 41.7998c0 23.2002 -11.2002 41.4004 -27.4004 41.4004c-10.1992 0 -16.5996 -3.7002 -21.1992 -8.7998l0.299805 -66\\nc4.2998 -4.60059 10.5 -8.40039 20.8994 -8.40039zM301.9 111.6v153.2h44.5996v-153.2h-44.5996z\\\" />\\n    <glyph glyph-name=\\\"stripe-s\\\" unicode=\\\"&#xf42a;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M155.3 293.4c0 -64.2002 218 -33.7002 218 -203.9c0 -102.6 -81.7002 -153.6 -200.3 -153.6c-44.8916 0.101562 -114.78 14.6172 -156 32.3994v128.5c47.9004 -26 108.9 -45.5 156.1 -45.5c31.8008 0 54.7002 8.5 54.7002 34.9004c0 68.0996 -216.8 42.5 -216.8 200.399\\nc0 101 77.0996 161.4 192.8 161.4c47.2998 0 94.5 -7.2002 141.8 -26.0996v-134.301c-43.3994 23.4004 -98.5 36.7002 -141.899 36.7002c-29.7998 0 -48.4004 -8.59961 -48.4004 -30.8994z\\\" />\\n    <glyph glyph-name=\\\"typo3\\\" unicode=\\\"&#xf42b;\\\" \\nd=\\\"M178.7 369.6c0 -66.3994 83.3994 -264.899 140.6 -264.899c6.90039 0 11.5 0 18.5 2.2998c-49.3994 -79.5 -110.399 -139 -146.7 -139c-77.2998 0 -184.1 234 -184.1 337.5c0 16.2998 3.90039 29.4004 9.2998 37.0996c27 32.4004 106.8 57.9004 176.3 66.4004\\nc-8.5 -7 -13.8994 -14.7002 -13.8994 -39.4004zM301.5 416c71.7998 0 138.8 -11.5996 138.8 -52.5c0 -82.5996 -52.5 -182.3 -78.7998 -182.3c-47.9004 0 -101.7 132.1 -101.7 198.5c0 30.8994 11.6006 36.2998 41.7002 36.2998z\\\" />\\n    <glyph glyph-name=\\\"amazon-pay\\\" unicode=\\\"&#xf42c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M14 122.7c2.2998 4.2002 5.2002 4.89941 9.7002 2.5c10.3994 -5.60059 20.5996 -11.4004 31.2002 -16.7002c33.6992 -16.8047 90.7744 -37.5469 127.399 -46.2998c17.2734 -4.16797 45.5869 -9.4541 63.2002 -11.7998c22.083 -2.96875 58.0898 -5.37793 80.3721 -5.37793\\nc4.03809 0 10.5908 0.0800781 14.6279 0.177734c17.4004 0.399414 34.7998 1.7998 52.0996 3.7998c46.7393 5.44824 119.897 24.623 163.301 42.7998c2.89941 1.2002 5.89941 2 9.09961 1.2002c6.7002 -1.7998 9 -9 4.09961 -13.9004\\nc-2.47168 -2.27246 -6.77246 -5.58789 -9.59961 -7.39941c-30.7002 -21.1006 -64.2002 -36.4004 -99.5996 -47.9004c-20.3311 -6.55176 -53.9756 -14.4365 -75.1006 -17.5996c-14.6006 -2.23633 -38.4346 -4.38672 -53.2002 -4.7998\\nc-0.694336 -0.0419922 -1.81445 -0.176758 -2.5 -0.300781h-21.0996c-0.685547 0.124023 -1.80469 0.258789 -2.5 0.300781c-3.59961 0.199219 -7.2002 0.299805 -10.7002 0.399414c-13.9971 0.634766 -36.5762 3.00879 -50.3994 5.2998\\nc-22.7275 3.7041 -58.7471 13.0674 -80.4004 20.9004c-44.8652 16.1797 -110.094 55.1562 -145.6 87c-1.80078 1.59961 -3 3.7998 -4.40039 5.7002v2zM172 382.9c2.7998 0 5.5 0 8.2998 -0.100586c3.2998 -0.5 6.60059 -0.799805 9.7998 -1.5\\nc21.3008 -4.39941 35.4004 -17.2998 43.9004 -36.8994c6.90039 -15.9004 8.59961 -32.7002 8.09961 -49.8008c-0.399414 -15.3994 -3.2998 -30.1992 -10.2998 -44.0996c-9.2002 -18.4004 -23.3994 -30.9004 -43.7998 -34.9004c-22.5 -4.39941 -43.0996 0.5 -61 15.4004\\nc-0.5 0.5 -1.09961 1 -2.2002 1.90039v-72.4004c0 -1 0 -2 -0.0996094 -3c-0.299805 -3 -2.10059 -5 -5 -5c-7 -0.0996094 -14.1006 -0.0996094 -21.1006 0c-2.89941 0.0996094 -4.69922 2 -4.89941 5c-0.100586 1 -0.100586 2 -0.100586 3v209.3\\nc0 6.90039 1.30078 8.2002 8.2002 8.2002h11.5c4.60059 0 6.90039 -2 7.60059 -6.59961c0.5 -2.7002 0.899414 -5.5 1.2998 -8.2002c0.0439453 -0.405273 0.222656 -1.0332 0.399414 -1.40039c2.5 1.90039 4.7002 3.7002 7.10059 5.40039\\nc9.39941 6.90625 26.4238 13.6709 38 15.0996zM124.6 341c0.100586 -14.0996 0 -28 0 -42.0996c0 -14.1006 0.100586 -28.1006 0 -42.2002c-0.00488281 -0.0703125 -0.00878906 -0.183594 -0.00878906 -0.253906c0 -1.10547 0.765625 -2.46973 1.70898 -3.0459\\nc11.2002 -7.90039 23.4004 -13.3008 37.4004 -13.9004c20.2002 -0.900391 35.7998 7.2002 42.5996 28.5c3.2002 10 4 20.2002 4 30.5996c0 11.2002 -1 22.3008 -4.89941 33c-6.40039 17.5 -18.6006 24.8008 -33.5 25.9004\\nc-16.8008 1.2998 -31.9004 -3.7002 -45.6006 -13.2002c-0.945312 -0.556641 -1.71289 -1.90039 -1.71289 -2.99805c0 -0.0830078 0.00585938 -0.21875 0.0126953 -0.301758zM330.3 382.9c4 0 8 0 11.9004 0.0996094c3.59961 -0.5 7.2002 -0.799805 10.7998 -1.2998\\nc7.7002 -1.10059 15.0996 -3.10059 21.7998 -7.10059c11.6006 -6.89941 17.1006 -17.5 19 -30.3994c0.5 -3.29297 0.905273 -8.66895 0.905273 -12c0 -0.248047 -0.00195312 -0.651367 -0.00488281 -0.900391v-106\\nc0.00195312 -0.128906 0.00390625 -0.336914 0.00390625 -0.46582c0 -0.645508 -0.046875 -1.69141 -0.104492 -2.33398c-0.0742188 -2.57422 -2.22461 -4.67969 -4.7998 -4.7002c-5.39941 -0.0996094 -10.8994 -0.0996094 -16.2998 0\\nc-2.90039 0.100586 -4.7998 2.10059 -5.40039 5.2002c-0.699219 3.59961 -1.19922 7.2002 -1.7998 11c-0.481445 -0.245117 -1.19824 -0.737305 -1.59961 -1.09961c-11.7998 -9.7002 -25.2002 -16.1006 -40.2998 -18.4004c-13.1006 -2 -26 -1.2002 -37.9004 5.40039\\nc-12.4004 6.89941 -19.4004 17.6992 -21.4004 31.6992c-1.5 10.5 -0.799805 20.9004 3.90039 30.7002c6.09961 12.6006 16.5 20.4004 29.4004 24.9004c10.7998 3.7998 22 4.5 33.2998 3.89941c8.95312 -0.556641 23.2891 -2.75195 32 -4.89941\\nc0.399414 -0.100586 0.799805 0 1.2998 -0.100586c0.0898438 0.381836 0.179688 1.00879 0.200195 1.40039c-0.100586 8.2998 0 16.5996 -0.299805 24.9004c-0.200195 5.89941 -1.60059 11.5996 -5.30078 16.3994c-4.19922 5.5 -10.2998 7.40039 -16.7998 8.40039\\nc-12.5 1.89941 -24.8994 0.899414 -37.2002 -1.40039c-7.89941 -1.5 -15.6992 -3.7002 -23.5 -5.7002c-4.69922 -1.19922 -6.69922 0.100586 -6.7998 4.90039c-0.0996094 3.2998 0.100586 6.59961 0 9.90039c-0.0996094 3.89941 1.7002 6.5 5.2998 7.69922\\nc5.90039 2 11.8008 4.2002 17.9004 5.80078c7.86426 1.92188 20.8115 3.75879 28.9004 4.09961c0.899414 0.0996094 1.89941 0.299805 2.89941 0.400391zM365.3 255.2c-0.0996094 4.7002 0.100586 9.2998 0.100586 14.0996s-0.100586 9.5 0 14.2998\\nc0 1.60059 -0.5 2.40039 -2.10059 2.60059c-8.39941 1.09961 -16.5996 2.7002 -25 3.39941c-1.95117 0.227539 -5.12891 0.412109 -7.09375 0.412109c-4.99316 0 -12.9258 -1.16992 -17.7061 -2.61133c-8 -2.60059 -13.9004 -7.30078 -16.4004 -15.6006\\nc-0.779297 -2.57422 -1.41211 -6.84766 -1.41211 -9.53809c0 -2.78613 0.677734 -7.2041 1.5127 -9.86133c1.55762 -5.40918 7.11328 -11.3672 12.3994 -13.3008c5.40039 -2.19922 11.1006 -2.39941 16.8008 -1.7998c13.8994 1.40039 26.1992 6.7998 37.3994 14.9004\\nc0.832031 0.543945 1.50684 1.79199 1.50684 2.78613c0 0.0595703 -0.00292969 0.155273 -0.00683594 0.213867zM625.2 125.8v-17.2998c-0.700195 -3.59961 -1.2998 -7.2998 -2.10059 -10.9004c-4.39941 -20.2998 -11.8994 -39.1992 -24.6992 -55.5996\\nc-3.27148 -3.9209 -8.96094 -9.92383 -12.7002 -13.4004c-1.1416 -1.04102 -3.29199 -2.16113 -4.7998 -2.5c-2.90039 -0.699219 -4.60059 1.2002 -4.10059 4.10059c0.201172 0.852539 0.649414 2.19629 1 3c5.7998 14.7998 11.7002 29.7002 15.7998 45.0996\\nc2.10059 7.60059 3.90039 15.2998 3.5 23.2998c-0.199219 5.2002 -2.5 9 -7.59961 10.4004c-3.89746 1.15332 -10.3486 2.36328 -14.4004 2.7002c-11.3994 0.899414 -22.8994 0.200195 -34.2998 -0.900391c-7.7998 -0.799805 -15.5 -1.7002 -23.2998 -2.5\\nc-0.504883 -0.0576172 -1.32617 -0.103516 -1.83398 -0.103516c-0.100586 0 -0.264648 0.000976562 -0.366211 0.00390625c-1.5 -0.100586 -3.2002 0.299805 -3.59961 1.7998c-0.111328 0.383789 -0.201172 1.01855 -0.201172 1.41797\\nc0 0.764648 0.314453 1.92188 0.701172 2.58203c0.838867 1.1582 2.49609 2.72656 3.7002 3.5c12.0996 8.2998 25.6992 12.9004 40 15.5996c7.29883 1.34375 19.2461 2.43457 26.668 2.43457c3.46484 0 9.0791 -0.239258 12.5312 -0.53418\\nc5.92773 -0.371094 15.335 -2.11816 21 -3.90039c4.30078 -1.39941 8.10059 -3.2998 9.10059 -8.2998zM493.1 249c0.300781 -0.700195 0.501953 -1.2998 0.902344 -2.40039c2.59961 7.7002 5.2002 15 7.7002 22.2002l34.7998 100\\nc0.5 1.40039 1.09961 2.7002 1.59961 4.10059c0.932617 2.87988 4.14648 5.21777 7.17383 5.21777c0.145508 0 0.381836 -0.0078125 0.526367 -0.0185547c6.60059 0 13.2998 0.100586 19.9004 0c2.7998 0 4.09961 -1.59961 3.7002 -4.39941\\nc-0.277344 -1.56641 -0.994141 -4.03027 -1.60059 -5.5c-23.3662 -59.9336 -46.8994 -119.801 -70.5996 -179.601c-2.1416 -5.27734 -6.2627 -13.5205 -9.2002 -18.3994c-8.7998 -14.9004 -22.4004 -21.7998 -39.5 -21.4004c-4.70801 0.18457 -12.2793 1.08008 -16.9004 2\\nc-5.39941 0.900391 -7.2998 3.40039 -7.39941 8.90039c-0.100586 3.2666 -0.100586 6.56641 0 9.89941c0.0996094 3.5 1.7998 5 5.2002 4.80078c2.5 -0.200195 5 -0.800781 7.5 -1c1.30664 -0.148438 3.43359 -0.268555 4.74902 -0.268555\\nc2.98828 0 7.75977 0.612305 10.6504 1.36816c7.2002 1.90039 12.2002 6.7998 15.2002 13.2998c3.40039 7.2998 6 15 9.2998 22.2998c1.90039 4.2002 1.5 7.7002 -0.200195 11.8008c-19.7998 48.5 -39.5 97 -59.1006 145.5\\nc-0.649414 1.64453 -1.50098 4.37695 -1.90039 6.09961c-0.5 2.5 0.700195 4.5 3.2002 4.5c7.7002 0.0996094 15.2998 0 22.9004 -0.0996094c3.2002 0 5.2998 -1.90039 6.39941 -4.80078c2.10059 -5.59961 4.30078 -11.1992 6.30078 -16.8994\\nc12.8994 -35.7666 25.7988 -71.5 38.6982 -107.2z\\\" />\\n    <glyph glyph-name=\\\"cc-amazon-pay\\\" unicode=\\\"&#xf42d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M124.7 246.2c0.0996094 11.7998 0 23.5 0 35.2998v35.2998c0 1.2998 0.399414 2 1.39941 2.7002c11.5 8 24.1006 12.0996 38.2002 11.0996c12.5 -0.899414 22.7002 -7 28.1006 -21.6992c3.2998 -8.90039 4.09961 -18.2002 4.09961 -27.7002\\nc0 -8.7002 -0.700195 -17.2998 -3.40039 -25.6006c-5.69922 -17.7998 -18.6992 -24.6992 -35.6992 -23.8994c-11.7002 0.5 -21.9004 5 -31.4004 11.7002c-0.900391 0.799805 -1.40039 1.59961 -1.2998 2.7998zM279.6 231.6c-5.19922 2 -8.7998 5.7002 -10.3994 11.2002\\nc-1.7002 5.40039 -1.7002 10.7998 -0.100586 16.2002c2 6.90039 7 10.9004 13.7002 13.0996c6.7998 2.2002 13.7998 2.5 20.7998 1.90039c7 -0.700195 13.9004 -2 20.9004 -2.90039c1.40039 -0.199219 1.7998 -0.799805 1.7998 -2.19922c-0.0996094 -4 0 -8 0 -12\\nc0 -3.90039 -0.0996094 -7.90039 0 -11.8008c0 -1.19922 -0.399414 -1.89941 -1.2998 -2.5c-9.40039 -6.7998 -19.7002 -11.2998 -31.2998 -12.5c-4.7998 -0.5 -9.5 -0.299805 -14.1006 1.5zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352\\nc0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM368.5 344.1c0.400391 -1.69922 0.900391 -3.39941 1.59961 -5.09961c16.5 -40.5996 32.9004 -81.2998 49.5 -121.9c1.40039 -3.5 1.7002 -6.39941 0.200195 -9.89941\\nc-2.7998 -6.2002 -4.89941 -12.6006 -7.7998 -18.7002c-2.59961 -5.5 -6.7002 -9.5 -12.7002 -11.2002c-4.2002 -1.09961 -8.5 -1.2998 -12.8994 -0.899414c-2.10059 0.199219 -4.2002 0.699219 -6.30078 0.799805c-2.7998 0.200195 -4.19922 -1.10059 -4.2998 -4\\nc-0.0996094 -2.7998 -0.0996094 -5.60059 0 -8.2998c0.100586 -4.60059 1.60059 -6.7002 6.2002 -7.5c4.7002 -0.800781 9.40039 -1.60059 14.2002 -1.7002c14.2998 -0.299805 25.7002 5.39941 33.0996 17.8994c2.90039 4.90039 5.60059 10.1006 7.7002 15.4004\\nc19.7998 50.0996 39.5 100.3 59.2002 150.5c0.599609 1.5 1.09961 3 1.2998 4.59961c0.400391 2.40039 -0.700195 3.60059 -3.09961 3.7002c-5.60059 0.100586 -11.1006 0 -16.7002 0c-3.10059 0 -5.2998 -1.39941 -6.40039 -4.2998\\nc-0.399414 -1.09961 -0.899414 -2.2998 -1.2998 -3.40039l-29.0996 -83.6992c-2.10059 -6.10059 -4.2002 -12.1006 -6.5 -18.6006c-0.400391 0.900391 -0.600586 1.40039 -0.800781 1.90039c-10.7998 29.8994 -21.5996 59.8994 -32.3994 89.7998\\nc-1.7002 4.7002 -3.5 9.5 -5.2998 14.2002c-0.900391 2.5 -2.7002 4 -5.40039 4c-6.40039 0.0996094 -12.7998 0.200195 -19.2002 0.0996094c-2.2002 0 -3.2998 -1.59961 -2.7998 -3.7002zM242.4 242c1.69922 -11.7002 7.59961 -20.7998 18 -26.5996\\nc9.89941 -5.5 20.6992 -6.2002 31.6992 -4.60059c12.7002 1.90039 23.9004 7.2998 33.8008 15.5c0.399414 0.299805 0.799805 0.600586 1.39941 1c0.5 -3.2002 0.900391 -6.2002 1.5 -9.2002c0.5 -2.59961 2.10059 -4.2998 4.5 -4.39941\\nc4.60059 -0.100586 9.10059 -0.100586 13.7002 0c2.2998 0.0996094 3.7998 1.59961 4 3.89941c0.0996094 0.800781 0.0996094 1.60059 0.0996094 2.30078v88.7998c0 3.59961 -0.199219 7.2002 -0.699219 10.7998c-1.60059 10.7998 -6.2002 19.7002 -15.9004 25.4004\\nc-5.59961 3.2998 -11.7998 5 -18.2002 5.89941c-3 0.400391 -6 0.700195 -9.09961 1.10059h-10c-0.799805 -0.100586 -1.60059 -0.300781 -2.5 -0.300781c-8.2002 -0.399414 -16.2998 -1.39941 -24.2002 -3.5c-5.09961 -1.2998 -10 -3.19922 -15 -4.89941\\nc-3 -1 -4.5 -3.2002 -4.40039 -6.5c0.100586 -2.7998 -0.0996094 -5.60059 0 -8.2998c0.100586 -4.10059 1.80078 -5.2002 5.7002 -4.10059c6.5 1.7002 13.1006 3.5 19.7002 4.7998c10.2998 1.90039 20.7002 2.7002 31.0996 1.2002\\nc5.40039 -0.799805 10.5 -2.39941 14.1006 -7c3.09961 -4 4.2002 -8.7998 4.39941 -13.7002c0.300781 -6.89941 0.200195 -13.8994 0.300781 -20.7998c0 -0.399414 -0.100586 -0.700195 -0.200195 -1.2002c-0.400391 0 -0.799805 0 -1.10059 0.100586\\nc-8.7998 2.09961 -17.6992 3.59961 -26.7998 4.09961c-9.5 0.5 -18.8994 -0.0996094 -27.8994 -3.2002c-10.8008 -3.7998 -19.5 -10.2998 -24.6006 -20.7998c-4.09961 -8.2998 -4.59961 -17 -3.39941 -25.7998zM98.7002 341.1v-175.3c0 -0.799805 0 -1.7002 0.0996094 -2.5\\nc0.200195 -2.5 1.7002 -4.09961 4.10059 -4.2002c5.89941 -0.0996094 11.7998 -0.0996094 17.6992 0c2.5 0 4 1.7002 4.10059 4.10059c0.0996094 0.799805 0.0996094 1.7002 0.0996094 2.5v60.7002c0.900391 -0.700195 1.40039 -1.2002 1.90039 -1.60059\\nc15 -12.5 32.2002 -16.5996 51.0996 -12.8994c17.1006 3.39941 28.9004 13.8994 36.7002 29.1992c5.7998 11.6006 8.2998 24.1006 8.7002 37c0.5 14.3008 -1 28.4004 -6.7998 41.7002c-7.10059 16.4004 -18.9004 27.2998 -36.7002 30.9004\\nc-2.7002 0.599609 -5.5 0.799805 -8.2002 1.2002h-7c-1.2002 -0.200195 -2.40039 -0.300781 -3.59961 -0.5c-11.7002 -1.40039 -22.3008 -5.80078 -31.8008 -12.7002c-2 -1.40039 -3.89941 -3 -5.89941 -4.5c-0.100586 0.5 -0.299805 0.799805 -0.400391 1.2002\\nc-0.399414 2.2998 -0.700195 4.59961 -1.09961 6.89941c-0.600586 3.90039 -2.5 5.5 -6.40039 5.60059h-9.7002c-5.89941 0.0996094 -6.89941 -1 -6.89941 -6.80078zM493.6 109c-2.69922 0.700195 -5.09961 0 -7.59961 -1c-43.9004 -18.4004 -89.5 -30.2002 -136.8 -35.7998\\nc-14.5 -1.7002 -29.1006 -2.7998 -43.7002 -3.2002c-26.5996 -0.700195 -53.2002 0.799805 -79.5996 4.2998c-17.8008 2.40039 -35.5 5.7002 -53 9.90039c-37 8.89941 -72.7002 21.7002 -106.7 38.7998c-8.7998 4.40039 -17.4004 9.2998 -26.1006 14\\nc-3.7998 2.09961 -6.19922 1.5 -8.19922 -2.09961v-1.7002c1.19922 -1.60059 2.19922 -3.40039 3.69922 -4.7998c36 -32.2002 76.6006 -56.5 122 -72.9004c21.9004 -7.90039 44.4004 -13.7002 67.3008 -17.5c14 -2.2998 28 -3.7998 42.1992 -4.5\\nc3 -0.0996094 6 -0.200195 9 -0.400391c0.700195 0 1.40039 -0.199219 2.10059 -0.299805h17.7002c0.699219 0.100586 1.39941 0.299805 2.09961 0.299805c14.9004 0.400391 29.7998 1.80078 44.5996 4c21.4004 3.2002 42.4004 8.10059 62.9004 14.7002\\nc29.5996 9.60059 57.7002 22.4004 83.4004 40.1006c2.7998 1.89941 5.69922 3.7998 8 6.19922c4.2998 4.40039 2.2998 10.4004 -3.30078 11.9004zM544 136.7c-0.799805 4.2002 -4 5.7998 -7.59961 7c-5.7002 1.89941 -11.6006 2.7998 -17.6006 3.2998\\nc-11 0.900391 -22 0.400391 -32.7998 -1.59961c-12 -2.2002 -23.4004 -6.10059 -33.5 -13.1006c-1.2002 -0.799805 -2.40039 -1.7998 -3.09961 -3c-0.600586 -0.899414 -0.700195 -2.2998 -0.5 -3.39941c0.299805 -1.30078 1.69922 -1.60059 3 -1.5\\nc0.599609 0 1.19922 0 1.7998 0.0996094l19.5 2.09961c9.59961 0.900391 19.2002 1.5 28.7998 0.800781c4.09961 -0.300781 8.09961 -1.2002 12 -2.2002c4.2998 -1.10059 6.2002 -4.40039 6.40039 -8.7002c0.299805 -6.7002 -1.2002 -13.0996 -2.90039 -19.5\\nc-3.5 -12.9004 -8.2998 -25.4004 -13.2998 -37.7998c-0.299805 -0.799805 -0.700195 -1.7002 -0.799805 -2.5c-0.400391 -2.5 1 -4 3.39941 -3.5c1.40039 0.299805 3 1.09961 4 2.09961c3.7002 3.60059 7.5 7.2002 10.6006 11.2002\\nc10.6992 13.7998 17 29.5996 20.6992 46.5996c0.700195 3 1.2002 6.10059 1.7002 9.10059c0.200195 4.7002 0.200195 9.59961 0.200195 14.5z\\\" />\\n    <glyph glyph-name=\\\"ethereum\\\" unicode=\\\"&#xf42e;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M311.9 187.2l-151.9 -92.7998l-152 92.7998l152 260.8zM160 64.5996l152 92.8008l-152 -221.4l-152 221.4z\\\" />\\n    <glyph glyph-name=\\\"korvue\\\" unicode=\\\"&#xf42f;\\\" horiz-adv-x=\\\"446\\\" \\nd=\\\"M386.5 414c32.7002 0 59.5 -26.7998 59.5996 -59.5v-327c0 -32.7002 -26.5 -59.5 -59.5 -59.5h-327.1c-32.7002 0 -59.5 26.7998 -59.5 59.4004v327.1c0 32.7002 26.7998 59.5 59.5 59.5h327zM87.0996 327.2v-132h187.5l81.2002 132h-110.899l-61.8008 -116v116h-96z\\nM248.9 55.0996h118.399l-88.5996 130.801h-191.5v-130.801h96v113.601z\\\" />\\n    <glyph glyph-name=\\\"elementor\\\" unicode=\\\"&#xf430;\\\" \\nd=\\\"M425.6 416c12.4004 0 22.4004 -10 22.4004 -22.4004v-403.199c0 -12.4004 -10 -22.4004 -22.4004 -22.4004h-403.199c-12.4004 0 -22.4004 10 -22.4004 22.4004v403.199c0 12.4004 10 22.4004 22.4004 22.4004h403.199zM164.3 92.5v199h-39.7998v-199h39.7998z\\nM323.6 92.5v39.7998h-119.5v-39.7998h119.5zM323.6 172.1v39.8008h-119.5v-39.8008h119.5zM323.6 251.8v39.7998h-119.5v-39.7998h119.5z\\\" />\\n    <glyph glyph-name=\\\"youtube-square\\\" unicode=\\\"&#xf431;\\\" \\nd=\\\"M186.8 245.9l95.2002 -54.1006l-95.2002 -54.0996v108.2zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM406 191.7c0 0 0 59.5996 -7.59961 88.2002\\nc-4.2002 15.7998 -16.5 28.1992 -32.2002 32.3994c-28.2998 7.7002 -142.2 7.7002 -142.2 7.7002s-113.9 0 -142.2 -7.7002c-15.7002 -4.2002 -28 -16.5996 -32.2002 -32.3994c-7.59961 -28.5 -7.59961 -88.2002 -7.59961 -88.2002s0 -59.6006 7.59961 -88.2002\\nc4.2002 -15.7998 16.5 -27.7002 32.2002 -31.9004c28.2998 -7.59961 142.2 -7.59961 142.2 -7.59961s113.9 0 142.2 7.7002c15.7002 4.2002 28 16.0996 32.2002 31.8994c7.59961 28.5 7.59961 88.1006 7.59961 88.1006z\\\" />\\n    <glyph glyph-name=\\\"flipboard\\\" unicode=\\\"&#xf44d;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM358.4 236.8v89.6006h-268.801v-268.801h89.6006v89.6006h89.5996v89.5996h89.6006z\\\" />\\n    <glyph glyph-name=\\\"hips\\\" unicode=\\\"&#xf452;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M251.6 290.4v-201.801c0 -1.89941 -0.899414 -2.7998 -2.7998 -2.7998h-40.8994c-1.60059 0 -2.7002 1.40039 -2.7002 2.7998v201.801c0 1.39941 1.09961 2.7998 2.7002 2.7998h40.8994c1.90039 0 2.7998 -0.900391 2.7998 -2.7998zM156.5 280\\nc18.7002 -13.5 28 -31.9004 28 -55.2998v-136.101c0 -1.89941 -0.900391 -2.7998 -2.7002 -2.7998h-27.2998c-9.09961 0 -16.4004 7.2998 -16.4004 16.2998v122.601c0 0.899414 2.7002 27 -45.7998 27c-48.5996 0 -45.7998 -26.2002 -45.7998 -27v-136.101\\nc0 -1.89941 -0.900391 -2.7998 -2.7998 -2.7998h-41c-1.7998 0 -2.7002 0.900391 -2.7002 2.7998v279.2c0 1.7998 0.900391 2.7002 2.7002 2.7002h40.8994c1.90039 0 2.80078 -0.900391 2.80078 -2.7002v-81.2002c15.1992 7.7002 31.6992 11.5 49.7998 11.4004\\nc24 -0.0996094 44.2002 -6.2002 60.2998 -18zM634.9 169.9c5.5 -12.6006 6.59961 -25.6006 3.09961 -39.1006c-9.59961 -36.8994 -44.9004 -45.5 -45.5996 -45.7998c-10.5 -3.09961 -23.6006 -4.2998 -36.3008 -4.2998c-16.5996 0 -32.5996 2.7002 -48.1992 8.2002\\nc-9.7002 3.39941 -14.6006 10.2998 -14.6006 20.6992v34.4004c0 2.09961 2.2998 3.7002 4.40039 2.2998c13.7002 -10.2002 34.0996 -19.0996 58.3994 -19.0996c23.3008 0 32.8008 4.5 36.5 13.5996c3 7.90039 -0.599609 16.1006 -12.1992 21.2002l-53.6006 23.5\\nc-21.3994 9.40039 -33.7998 24 -37.2002 43.5996c-5.69922 33.7002 22.2002 53.3008 22.7002 53.7002c13.2002 9.60059 32 15.4004 58.5 15.4004c19 0 37.4004 -3.2998 55.1006 -9.90039c1.2998 -0.5 1.89941 -1.2998 1.89941 -2.59961v-44.7002\\nc0 -2.09961 -2.2998 -3.40039 -4 -2.40039c-39.7002 20.7002 -76.5996 12.3008 -84 6.80078c-6.59961 -4.90039 -6 -12.5 2.60059 -16.1006l57.5996 -25.2998c16.5 -7.09961 28.0996 -18.4004 34.9004 -34.0996zM376.2 298.2c60.3994 0 108.7 -48.2998 108.6 -108.601\\nc0 -60.1992 -48.2002 -108.699 -108.7 -108.699c-21.8994 0 -41.1992 6.39941 -57.6992 19.0996v-88.7998c0 -1.7998 -0.900391 -2.7002 -2.80078 -2.7002h-40.8994c-2.10059 0 -2.7002 1.90039 -2.7002 2.7002v183.5c0 83.3994 72.5 103.5 104.2 103.5zM376.2 127.3\\nc34.8994 0 62.2998 27.9004 62.2002 62.2002c0 34.5996 -27.7002 62.2002 -62.2002 62.2002c-34.6006 0 -62.2002 -27.7002 -62.2002 -62.2002c0 -17.2002 6 -31.7998 18.2002 -44c12.0996 -12.0996 26.7998 -18.2002 44 -18.2002zM228.3 375.5\\nc15.9004 0 28.9004 -12.7002 28.9004 -28.9004c0 -15.7998 -12.7002 -28.8994 -28.9004 -28.8994s-28.8994 13.2998 -28.8994 28.8994c0.0996094 16 13 28.9004 28.8994 28.9004z\\\" />\\n    <glyph glyph-name=\\\"php\\\" unicode=\\\"&#xf457;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M320 343.5c-171.3 0 -303.2 -72.2002 -303.2 -151.5s131.8 -151.5 303.2 -151.5c171.3 0 303.2 72.2002 303.2 151.5s-131.8 151.5 -303.2 151.5zM320 360.3c176.7 0 320 -75.2998 320 -168.3s-143.3 -168.3 -320 -168.3s-320 75.2998 -320 168.3s143.3 168.3 320 168.3z\\nM218.2 205.5c7.39941 38.4004 -18.4004 34.2998 -56.4004 34.2998l-13.7002 -70.5996c34.3008 0 62.2002 -4.2002 70.1006 36.2998zM97.4004 97.7002l32.6992 168.7h70.7002c21.2002 0 36.7998 -5.5 46.5 -16.7002c18.6006 -21.4004 11.7998 -64.1006 -14.2998 -88.1006\\nc-23.5996 -22.0996 -49.0996 -19.0996 -90.2002 -19.0996l-8.7002 -44.7998h-36.6992zM283.1 311.3h36.5l-8.69922 -44.7998c31.5 0 60.6992 2.2998 74.7998 -10.7002c14.7998 -13.5996 7.7002 -31 -8.2998 -113.1h-37c15.3994 79.3994 18.2998 86 12.6992 92\\nc-5.39941 5.7998 -17.6992 4.59961 -47.3994 4.59961l-18.7998 -96.5996h-36.5zM505 205.5c7.40039 38.4004 -18.2002 34.2998 -56.4004 34.2998l-13.6992 -70.5996c33.3994 0 62.0996 -4.7998 70.0996 36.2998zM384.2 97.7002l32.7998 168.7h70.7002\\nc21.2002 0 36.7998 -5.5 46.5 -16.7002c18.5996 -21.4004 11.7998 -64.1006 -14.2998 -88.1006c-23.1006 -21.5996 -47 -19.0996 -90.2002 -19.0996l-8.7002 -44.7998h-36.7998z\\\" />\\n    <glyph glyph-name=\\\"quinscape\\\" unicode=\\\"&#xf459;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M313.6 -26.5996c4.40039 -4.40039 8.10059 -9 13.3008 -12.5c-18.5029 -5.58008 -49.2031 -10.1074 -68.5283 -10.1074c-0.516602 0 -1.35547 0.00292969 -1.87207 0.00683594c-135 0 -244.5 109.5 -244.5 244.601c0 135.1 109.4 244.6 244.5 244.6\\ns244.6 -109.5 244.6 -244.6c0 -35.3008 -6.89941 -67.4004 -20.2998 -97.7002c-3 5.7002 -7.2002 10.2002 -11.2002 15.2998c11.2002 93.5 -62.0996 176.6 -157 176.6c-87.2705 0 -158.1 -70.8281 -158.1 -158.1s70.8291 -158.1 158.1 -158.1h1zM313.5 -26.5\\nl0.400391 -0.0996094zM391.9 142.4c54.7471 0 99.1992 -44.4326 99.1992 -99.1807v-0.0195312c0 -54.7588 -44.4414 -99.2002 -99.1992 -99.2002c-54.7588 0 -99.2002 44.4414 -99.2002 99.2002c0 54.7578 44.4414 99.2002 99.2002 99.2002z\\\" />\\n    <glyph glyph-name=\\\"readme\\\" unicode=\\\"&#xf4d5;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528.3 401.5c26.4004 -0.200195 47.7002 -21.7002 47.7002 -48.0996v-245.7c0 -26.5 -21.5 -48 -48 -48h-89.7002c-102.1 0 -132.6 -24.4004 -147.3 -75c-0.799805 -2.7998 -5.2998 -2.7998 -6 0c-14.5996 50.5996 -45.0996 75 -147.3 75h-89.7002\\nc-26.5 0 -48 21.5 -48 48v245.8c0 26.5 21.5 48 48 48h139.7c48.0996 0 89.7998 -33.2998 100.399 -80.2998c10.5 47 52.3008 80.2998 100.4 80.2998h139.8zM242 136.1h0.0996094v22.9004c0 2 -1.59961 3.5 -3.5 3.5h-160.399c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.9004\\nc0 -2 1.59961 -3.5 3.5 -3.5h160.3c2 0 3.5 1.60059 3.5 3.5zM242 197h0.0996094v22.9004c0 2 -1.59961 3.5 -3.5 3.5h-160.399c-2 0 -3.5 -1.60059 -3.5 -3.5v-22.9004c0 -2 1.59961 -3.5 3.5 -3.5h160.3c2 0 3.5 1.59961 3.5 3.5zM242 257.9h0.0996094v22.8994\\nc0 2 -1.59961 3.5 -3.5 3.5h-160.399c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.8994c0 -2 1.59961 -3.5 3.5 -3.5h160.3c2 0 3.5 1.59961 3.5 3.5zM501.3 136.2h0.100586v22.8994c0 2 -1.60059 3.5 -3.5 3.5h-160.4c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.8994\\nc0 -2 1.59961 -3.5 3.5 -3.5h160.3c2 0 3.5 1.59961 3.5 3.5zM501.3 197.1h0.100586v22.9004c0 2 -1.60059 3.5 -3.5 3.5h-160.4c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.9004c0 -2 1.59961 -3.5 3.5 -3.5h160.3c2 0 3.5 1.60059 3.5 3.5zM501.3 258h0.100586v22.7998\\nc0 2 -1.60059 3.5 -3.5 3.5h-160.4c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.7998c0 -2 1.59961 -3.5 3.5 -3.5h160.3c2 0 3.5 1.59961 3.5 3.5z\\\" />\\n    <glyph glyph-name=\\\"java\\\" unicode=\\\"&#xf4e4;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M277.74 135.1c-94.5 -24.8994 -277 -13.2998 -224.5 12.1006c44.5 21.3994 80.5996 19 80.5996 19s-93.0996 -22.1006 -33 -30.1006c25.4004 -3.39941 76 -2.59961 123.101 1.30078c38.5 3.19922 77.1992 10.1992 77.1992 10.1992s-13.5996 -5.7998 -23.3994 -12.5z\\nM192.34 167.2c-48.5 43.7998 -84.0996 82.2998 -60.2002 118.2c35.1006 52.5 132.2 78.0996 110.7 162.6c0 0 53.1602 -53.2002 -50.5 -135c-83.0996 -65.5996 -19 -103.1 0 -145.8zM306.94 343.4c-111.601 -64.7002 -91 -83.5 -64.1006 -121.301\\nc28.7998 -40.5 -33.8994 -72.8994 -33.8994 -72.8994s31.1992 25.5996 6.5 54c-83.7002 96.3994 91.5996 140.2 91.5 140.2zM300.84 72.9004c96.1006 49.8994 51.6006 97.8994 20.6006 91.3994c-3.10352 -0.581055 -8.03125 -1.92578 -11 -3\\nc1.71973 2.44629 5.39258 5.26855 8.19922 6.2998c61.3008 21.6006 108.5 -63.5996 -19.7998 -97.2998c0.649414 0.642578 1.5459 1.80762 2 2.60059zM348 10.5996c53 -23.8994 -115.16 -72 -319.4 -38.7998c-74.8994 12.1006 36.1006 54.5 56.4004 40.2002\\nc0 0 -6.5 0.400391 -17.7002 -2c-10.7998 -2.2998 -45.0996 -13.4004 -26.7998 -21.2998c50.7998 -22.1006 233.7 -16.7998 291.6 0.700195c30.4004 9.2998 15.9004 21.1992 15.9004 21.1992zM124.44 52c0 0 -19.6006 -11.4004 13.8994 -15.2002\\nc40.6006 -4.59961 61.2998 -4 106 4.5c7.46094 -4.46777 20.0938 -10.6504 28.2002 -13.7998c-100.2 -42.9004 -226.8 2.5 -148.1 24.5zM304.24 -45.2002c69.7998 13.2002 76.2002 29.7002 76.2002 29.7002c-3.30078 -43.5996 -144.9 -52.7998 -237.101 -46.9004\\nc-60.5996 3.90039 -72.3994 13.7002 -72.3994 13.6006c57.5 -9.5 154.6 -11.2002 233.3 3.59961zM260.64 95c5.08594 -4.74902 14.5391 -10.4834 21.1006 -12.7998c-121.3 -35.5 -256.3 -2.90039 -169.5 25.8994c0 0 -21.9004 -16.1992 11.5996 -19.6992\\nc43.2998 -4.5 77.6006 -4.80078 136.8 6.59961z\\\" />\\n    <glyph glyph-name=\\\"pied-piper-hat\\\" unicode=\\\"&#xf4e5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 423.1c-80.7998 -53.5996 -89.4004 -92.5 -96.4004 -104.399c-6.69922 -12.2002 -11.6992 -60.2998 -23.2998 -83.6006c-11.7002 -23.5996 -54.2002 -42.1992 -66.0996 -50c-11.7002 -7.7998 -28.2998 -38.0996 -41.9004 -64.1992\\nc-108.1 4.39941 -167.399 -38.8008 -259.2 -93.6006c29.4004 9.7002 43.3008 16.7002 43.3008 16.7002c94.1992 36 139.3 68.2998 281.1 49.2002c1.09961 0 1.90039 -0.600586 2.7998 -0.799805c3.90039 -2.2002 5.2998 -6.90039 3.10059 -10.8008l-53.9004 -95.7998\\nc-2.5 -4.7002 -7.7998 -7.2002 -13.0996 -6.09961c-126.801 23.7998 -226.9 -17.2998 -318.9 -18.6006c-73.4004 -1.09961 -97.5 33.5 -97.5 35.1006c0 1.09961 0.599609 1.7002 1.7002 1.7002c0 0 38.2998 0 103.1 15.2998c73.6006 140.3 139.2 189.399 210.601 189.399\\nc0 0 71.6992 0 90.5996 -61.8994c22.7998 39.7002 28.2998 49.2002 28.2998 49.2002c5.2998 9.39941 35 77.1992 86.4004 141.399c51.5 64 90.3994 79.9004 119.3 91.7998z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-by\\\" unicode=\\\"&#xf4e7;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M314.9 253.6v-101.399h-28.3008v-120.5h-77.0996v120.399h-28.2998v101.5c0 4.40039 1.59961 8.2002 4.59961 11.3008c3.10059 3.09961 6.90039 4.69922 11.2998 4.69922h101.9c4.09961 0 7.7998 -1.59961 11.0996 -4.69922\\nc3.10059 -3.2002 4.80078 -6.90039 4.80078 -11.3008zM213.4 317.3c0 23.2998 11.5 35 34.5 35s34.5 -11.7002 34.5 -35c0 -23 -11.5 -34.5 -34.5 -34.5s-34.5 11.5 -34.5 34.5zM247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248\\nc-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8c103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-nc\\\" unicode=\\\"&#xf4e8;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c139.801 0 248.4 -107.9 248.4 -248c0 -147.2 -118.5 -248 -248.4 -248c-134.5 0 -247.6 110.8 -247.6 248c0 132.9 104.7 248 247.6 248zM55.7998 258.9c-7.39941 -20.4004 -11.0996 -42.7002 -11.0996 -66.9004c0 -110.9 92.0996 -202.4 203.7 -202.4\\nc122.399 0 177.199 101.801 178.5 104.101l-93.4004 41.5996c-7.7002 -37.0996 -41.2002 -53 -68.2002 -55.3994v-38.1006h-28.7998v38.2002c-27.5 0.299805 -52.5996 10.2002 -75.2998 29.7002l34.0996 34.5c31.7002 -29.4004 86.4004 -31.7998 86.4004 2.2002\\nc0 6.19922 -2.2002 11.1992 -6.60059 15.0996c-14.1992 6 -1.7998 0.0996094 -219.3 97.4004zM248.4 395.7c-38.4004 0 -112.4 -8.7002 -170.5 -93l94.7998 -42.5c10 31.2998 40.3994 42.8994 63.7998 44.2998v38.0996h28.7998v-38.0996\\nc22.7002 -1.2002 43.4004 -8.90039 62 -23l-32.2998 -33.2002c-42.7002 29.9004 -83.5 8 -70 -11.0996c53.4004 -24.1006 43.7998 -19.7998 93 -41.6006l127.1 -56.6992c4.10059 17.3994 6.2002 35.0996 6.2002 53.0996c0 57 -19.7998 105 -59.2998 143.9\\nc-39.2998 39.8994 -87.2002 59.7998 -143.6 59.7998z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-nc-eu\\\" unicode=\\\"&#xf4e9;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.7 440c140.7 0 248.3 -109 248.3 -248c0 -147.1 -118.1 -248 -248.3 -248c-136 0 -247.7 111.7 -247.7 248c0 131.2 103.6 248 247.7 248zM248.3 -10.7002c122.601 0 177.3 102.2 178.8 104.3l-128.3 56.8008h-90.2998\\nc9.2002 -39.3008 39.0996 -50.2002 67.2998 -50.2002c19.1006 0 38.6006 6.2002 47.2998 10.7998l10 -46.0996c-14.1992 -7.90039 -38.1992 -15.8008 -64.7998 -15.8008c-57.3994 0 -113.2 34.3008 -124.6 101.301h-27v29.5h22.7998\\nc0 16.2998 0.400391 13.2998 0.400391 19.5h-23.3008v29.5h4.7002l-65.7002 29.0996c-7.19922 -20.7998 -10.8994 -42.7998 -10.8994 -66c0 -110.2 91.5996 -202.7 203.6 -202.7zM231.6 179.9l-0.5 0.399414l0.900391 -0.399414h-0.400391zM308.8 199.4l136.101 -60.5\\nc4.19922 16.5996 6.2998 34.1992 6.2998 52.8994c0 113.2 -90 203.4 -203 203.4c-13 0 -106.101 3.2002 -170.7 -93.6006l81.5996 -36.0996c4.10059 7.2002 8.60059 14 13.9004 20.0996c23.7002 26.5 56.9004 42.3008 95.9004 42.3008\\nc25.2998 0 47.2998 -5.80078 62.2998 -12.4004l-11.6006 -47.2998c-10.7998 4.59961 -27.7998 10 -46.0996 10c-20 0 -38.2002 -6.60059 -51.0996 -22.4004c-3.40039 -3.7998 -6.30078 -8.7998 -8.80078 -14.2998l28.6006 -12.5996h70.2998v-29.5h-3.7002z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-nc-jp\\\" unicode=\\\"&#xf4ea;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.7 440c140.8 0 248.3 -109.2 248.3 -248c0 -147.2 -118.1 -248 -248.3 -248c-135.9 0 -247.7 111.6 -247.7 248c0 131.2 103.6 248 247.7 248zM248.3 -10.7002c118.101 0 173.7 96.1006 175.2 98.2998l-81 36.1006v-35.7002h-64.2002v-56h-61.7002v56h-63.7998\\nv38.7002h63.7998v18.7002l-5.69922 11.7998h-58.1006v38.5996h27.9004l-127 56.5c-6 -19.0996 -9 -39.2002 -9 -60.2998c0 -110.2 91.5996 -202.7 203.6 -202.7zM335.9 126.6l-54.7002 24.3008l-2.90039 -5.60059v-18.7002h57.6006zM342.4 178l101 -45.0996\\nc5.19922 18.3994 7.89941 38 7.89941 59c0 113.399 -90.2002 203.399 -203 203.399c-91.0996 0 -145.899 -54 -173.7 -98.0996l81.9004 -36.5l-27.2998 51h65.7998l39.5996 -85.7002l23 -10.2002l43.4004 96h65.7998l-63 -116h38.6006v-17.7998z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-nd\\\" unicode=\\\"&#xf4eb;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM342.4 251v-42.5h-180.301v42.5h180.301zM342.4 171.2v-42.5h-180.301v42.5h180.301z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-pd\\\" unicode=\\\"&#xf4ec;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111.1 248 -248c0 -137 -111 -248 -248 -248s-248 111 -248 248c0 136.9 111 248 248 248zM248 -9.5c76.0996 0 142.4 42.4004 176.7 104.8c-1.40039 0.299805 12.5 -5.7998 -217.9 96.7998c0.200195 -32 16.1006 -71.8994 53.9004 -71.8994\\nc18.7002 0 30.7998 10.3994 36.2998 16.7002l36.0996 -43.9004c-25.8994 -22.7998 -56.5 -29.5 -79.3994 -29.5c-46.5 0 -120.4 27.9004 -120.4 126.9c0 11.3994 1.2002 22.3994 3.2998 32.8994l-78.7998 35.1006c-45.5996 -129.9 51 -267.9 190.2 -267.9zM442.2 140.5\\nc0.200195 -0.200195 0.299805 -0.299805 0.599609 -0.400391c4.40039 16.6006 6.7998 34 6.7998 52c0 111.101 -90.3994 201.5 -201.5 201.5c-70.3994 0 -132.399 -36.2998 -168.5 -91.1992l74.9004 -33.4004c19.7998 31.0996 53.2998 51.5996 100.7 51.5996\\nc20.0996 0 51 -4.19922 78.0996 -27.5l-40.3994 -41.5996c-19.8008 19.7002 -55.9004 23 -74.7002 -11z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-pd-alt\\\" unicode=\\\"&#xf4ed;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 -10.7998c103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3\\nc-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8zM316.7 262c21.3994 0 70 -5.2002 70 -68.5996c0 -63.5 -48.6006 -68.6006 -70 -68.6006h-53.2002v137.2h53.2002zM317.5 153.5c24 0 34.5 15.2998 34.5 39.9004\\nc0 42 -31.2002 39.8994 -35 39.8994l-19.4004 -0.0996094v-79.7002h19.9004zM203.7 262c33.7002 0 50.5 -15.5 50.5 -46.5c0 -9 -3 -46.5 -57.1006 -46.5h-27v-44.2998h-34.5996v137.3h68.2002zM198.8 194.7c27.9004 0 30 41.5996 -0.899414 41.5996h-28.3008v-41.5996\\nh29.2002z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-remix\\\" unicode=\\\"&#xf4ee;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM410.1 187.6l4.90039 -2.19922v-70c-7.2002 -3.60059 -63.4004 -27.5 -67.2998 -28.8008c-6.5 1.80078 -113.7 46.8008 -137.3 56.2002l-64.2002 -26.5996l-63.2998 27.5v63.7998\\nl59.2998 24.7998c-0.700195 0.700195 -0.400391 -5 -0.400391 70.4004l67.2998 29.7002l151.9 -62.9004v-61.5996zM339.7 106.1v43.8008h-0.400391v1.7998l-113.8 46.5v-45.2002l113.8 -46.9004v0.400391zM347.2 163.7l39.8994 16.3994l-36.7998 15.5l-39 -16.3994z\\nM399.5 125.6v43l-44.2998 -18.5996v-43.4004z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-sa\\\" unicode=\\\"&#xf4ef;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM137.7 227c13 83.9004 80.5 95.7002 108.899 95.7002c99.8008 0 127.5 -82.5 127.5 -134.2c0 -63.5996 -41 -132.9 -128.899 -132.9c-38.9004 0 -99.1006 20 -109.4 97h62.5\\nc1.5 -30.0996 19.6006 -45.1992 54.5 -45.1992c23.2998 0 58 18.1992 58 82.7998c0 82.5 -49.0996 80.5996 -56.7002 80.5996c-33.0996 0 -51.6992 -14.5996 -55.7998 -43.7998h18.2002l-49.2002 -49.2002l-49 49.2002h19.4004z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-sampling\\\" unicode=\\\"&#xf4f0;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM252 342.1c2.7998 0.300781 11.5 -1 11.5 -11.5l6.59961 -107.199l4.90039 59.2998c0 6 4.7002 10.5996 10.5996 10.5996c5.90039 0 10.6006 -4.7002 10.6006 -10.5996\\nc0 -2.5 -0.5 5.7002 5.7002 -81.5l5.7998 64.2002c0.299805 2.89941 2.89941 9.2998 10.2002 9.2998c3.7998 0 9.89941 -2.2998 10.5996 -8.90039l11.5 -96.5l5.2998 12.7998c1.7998 4.40039 5.2002 6.60059 10.2002 6.60059h58v-21.2998h-50.9004l-18.1992 -44.3008\\nc-3.90039 -9.89941 -19.5 -9.09961 -20.8008 3.10059l-4 31.8994l-7.5 -92.5996c-0.299805 -3 -3 -9.2998 -10.1992 -9.2998c-3 0 -9.80078 2.09961 -10.6006 9.2998c0 1.90039 0.600586 -5.7998 -6.2002 77.9004l-5.2998 -72.2002\\nc-1.09961 -4.7998 -4.7998 -9.2998 -10.5996 -9.2998c-2.90039 0 -9.7998 2 -10.6006 9.2998c0 1.89941 0.5 -6.7002 -5.7998 87.7002l-5.7998 -94.8008c0 -6.2998 -3.59961 -12.3994 -10.5996 -12.3994c-5.2002 0 -10.6006 4.09961 -10.6006 12l-5.7998 87.7002\\nc-5.7998 -92.5 -5.2998 -84 -5.2998 -85.9004c-1.10059 -4.7998 -4.7998 -9.2998 -10.6006 -9.2998c-3 0 -9.7998 2.09961 -10.5996 9.2998c0 0.700195 -0.400391 1.09961 -0.400391 2.59961l-6.19922 88.6006l-4.90039 -56.7002\\nc-0.700195 -6.5 -6.7002 -9.2998 -10.5996 -9.2998c-5.80078 0 -9.60059 4.09961 -10.6006 8.89941l-11.0996 76.4004c-2 -4 -3.5 -8.40039 -11.1006 -8.40039h-51.3994v21.3008h44.7998l13.7002 27.8994c4.39941 9.90039 18.2002 7.2002 19.8994 -2.7002l3.10059 -20.3994\\nl8.39941 97.8994c0 6 4.80078 10.6006 10.6006 10.6006c0.5 0 10.5996 0.200195 10.5996 -12.4004l4.90039 -69.0996l6.59961 92.5996c0 10.1006 9.5 10.6006 10.2002 10.6006c0.599609 0 10.5996 -0.700195 10.5996 -10.6006l5.30078 -80.5996l6.19922 97.8994\\nc0.100586 1.10059 -0.599609 10.3008 9.90039 11.5z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-sampling-plus\\\" unicode=\\\"&#xf4f1;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM355.4 189.7l58.3994 0.299805v-23.2002h-50.5l-18 -43.3994c-4.59961 -11 -20.8994 -8.7002 -22.2998 3.09961l-2.7002 22.2998l-6.7998 -83\\nc-1.09961 -14.0996 -22 -14.2002 -23.0996 0.100586l-4.90039 64.3994l-4.59961 -58.5996c-1.10059 -14.2998 -22.3008 -14.1006 -23.2002 0.200195l-4.5 71.7998l-4.90039 -80.5c-0.899414 -14.5 -22.2998 -14.5 -23.2002 -0.100586l-4.7998 73.3008l-4.59961 -70.4004\\nc-0.900391 -14.2998 -22.1006 -14.5 -23.2002 -0.0996094l-5.7002 78.2998l-3.7998 -43.6006c-1.2002 -13.6992 -21.0996 -14.1992 -23.0996 -0.699219l-10.7002 73.0996c-2 -3.90039 -6 -6.40039 -10.4004 -6.40039h-51.2998v23.2002h43.9004l13.1992 27.7002\\nc4.90039 10.2998 20.3008 8.09961 22 -3.2998l1.80078 -12.2002l7.69922 89.7998c1.2002 14.1006 22.1006 14.1006 23.2002 -0.200195l4.10059 -57l5.2998 80.2002c1 14.4004 22.2998 14.4004 23.2002 0l4.2998 -66.2998l5.09961 83.7002\\nc0.900391 14.3994 22.2998 14.5 23.2002 0l5.90039 -94.2998l3.5 44.8994c1.09961 14.2002 22.0996 14.2998 23.1992 0l5.2002 -68.7998l4.2998 51.4004c1.10059 13.7998 21.4004 14.2998 23.1006 0.399414l11 -92.7998l4 9.5c1.7002 4.40039 6 7.2002 10.7002 7.2002z\\nM277.4 184.5c4.09961 0 7.5 3.40039 7.5 7.5c0 4.2002 -3.40039 7.5 -7.5 7.5h-21.9004v21.9004c0 4.19922 -3.40039 7.5 -7.5 7.5s-7.5 -3.40039 -7.5 -7.5v-21.9004h-21.9004c-4.09961 0 -7.5 -3.40039 -7.5 -7.5c0 -4.2002 3.40039 -7.5 7.5 -7.5h21.9004v-21.9004\\nc0 -4.19922 3.40039 -7.5 7.5 -7.5c4.2002 0 7.5 3.40039 7.5 7.5v21.9004h21.9004z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-share\\\" unicode=\\\"&#xf4f2;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM349.4 262.9c7.7998 0 13.6992 -6.10059 13.6992 -13.7002v-182.5c0 -7.7002 -6.09961 -13.7002 -13.6992 -13.7002h-135.101c-7.7002 0 -13.7002 6 -13.7002 13.7002v54h-54\\nc-7.7998 0 -13.6992 6 -13.6992 13.7002v182.5c0 8.19922 6.59961 12.6992 12.3994 13.6992h136.4c7.7002 0 13.7002 -6 13.7002 -13.6992v-54h54zM159.9 147.7h40.6992v101.399c0 7.40039 5.80078 12.6006 12 13.7002h55.8008v40.2998h-108.5v-155.399zM336.1 235.8h-108.5\\nv-155.399h108.5v155.399z\\\" />\\n    <glyph glyph-name=\\\"creative-commons-zero\\\" unicode=\\\"&#xf4f3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M247.6 440c141.801 0 248.4 -110.1 248.4 -248c0 -147.1 -118.5 -248 -248.4 -248c-134 0 -247.6 109.5 -247.6 248c0 132.9 104.7 248 247.6 248zM248.4 395.3c-118.2 0 -203.7 -97.8994 -203.7 -203.3c0 -109.8 91.2002 -202.8 203.7 -202.8\\nc103.199 0 202.8 81.0996 202.8 202.8c0.0996094 113.8 -90.2002 203.3 -202.8 203.3zM248 334.8c81.9004 0 102.5 -77.2998 102.5 -142.8s-20.5996 -142.8 -102.5 -142.8s-102.5 77.2998 -102.5 142.8s20.5996 142.8 102.5 142.8zM248 280.9\\nc-42.0996 0 -44.0996 -60.1006 -44.0996 -88.9004c0 -9.2998 0.199219 -21.7002 1.89941 -34.4004l54.5 100.2c5.7002 9.7998 2.7998 16.7998 -3.09961 21.9004c-2.7998 0.700195 -5.90039 1.2002 -9.2002 1.2002zM288.8 234.7l-60.8994 -105.2\\nc-12.5 -18.7002 6.59961 -26.4004 20.0996 -26.4004c42.0996 0 44.0996 60 44.0996 88.9004c0 11.2998 -0.399414 27.2998 -3.2998 42.7002z\\\" />\\n    <glyph glyph-name=\\\"ebay\\\" unicode=\\\"&#xf4f4;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M606 258.5h34l-99.2002 -194.8h-35.8994l28.5 54.0996l-61.5 116.101c3.09961 -6.60059 4.7998 -14.5 4.7998 -23.8008v-65.5996c0 -9.2998 0.299805 -18.5996 1 -26.7998h-29.7998c-0.800781 6.89941 -1.10059 13.5996 -1.10059 20.2002\\nc-16.0996 -19.8008 -35.2998 -25.5 -61.8994 -25.5c-39.5 0 -60.6006 20.8994 -60.6006 45c0 3.19922 0.200195 6.19922 0.700195 9c-8.40039 -32.3008 -36.4004 -54.2002 -73.2998 -54.2002c-23.2998 0 -45.1006 8.2998 -58.7002 24.8994\\nc0 -6.59961 -0.400391 -13.1992 -1.09961 -19.5h-31.5c0.5 10.2002 1.09961 22.8008 1.09961 33.1006v169.5h32.0996v-80.6006c15.7002 18.7002 37.4004 24.2002 58.7002 24.2002c35.7002 0 75.4004 -24.0996 75.4004 -76.2002c0 -5.59961 -0.5 -11 -1.5 -16.1992\\nc7.09961 24.3994 34.2998 33.5 76.7002 34.3994c13.6992 0.299805 29 0.400391 41.6992 0.400391v3.39941c0 23.4004 -15 33 -41 33c-19.2998 0 -33.5996 -8 -35 -21.7998h-33.6992c3.59961 34.4004 39.6992 43.1006 71.5 43.1006c27.3994 0 51.7998 -7 63.2998 -26\\nl-10.9004 20.5996h37.5l54.9004 -109.9zM243.7 134.2c29.7998 0 50.2002 21.5 50.2002 53.7998c0 32.4004 -20.4004 53.7998 -50.2002 53.7998c-29.6006 0 -50.2002 -21.3994 -50.2002 -53.7998c0 -32.2998 20.5996 -53.7998 50.2002 -53.7998zM444.6 181.5v3.2998\\nc-11.7998 0 -26.2998 -0.0996094 -39.3994 -0.599609c-29.1006 -0.900391 -47.2002 -6.2002 -47.2002 -25.2998c0 -12.4004 9.90039 -25.8008 35 -25.8008c33.7002 0 51.5996 18.4004 51.5996 48.4004zM32.7002 179.9c3.5 -58.3008 79.2002 -57.4004 91.2002 -21.6006\\nh33.0996c-6.40039 -34.3994 -43 -46.0996 -74.4004 -46.0996c-57.1992 0 -82.5 31.5 -82.5 74c0 46.7998 26.2002 77.5996 83 77.5996c45.3008 0 78.4004 -23.7002 78.4004 -75.3994v-8.5h-128.8zM127.7 201.3c-2.2998 54.7002 -87.5 56.6006 -94.4004 0h94.4004z\\\" />\\n    <glyph glyph-name=\\\"keybase\\\" unicode=\\\"&#xf4f5;\\\" \\nd=\\\"M286.17 29c9.93652 0 18 -8.06445 18 -18s-8.06348 -18 -18 -18c-9.93555 0 -18 8.06445 -18 18s8.06445 18 18 18zM398.09 176.6c22.9102 -33.46 35.9102 -72.3398 35.9102 -110.92c0 -31.6797 -5 -60.6797 -14.5996 -86.2295\\nc-3.04004 -8.0498 -10.9502 -12.7197 -18.3701 -11.1504c-6.83984 1.24023 -11.1201 9.28027 -8.60059 15.7402c11.1904 28.71 14.8799 58.3398 14.8799 81.6396c-0.0517578 7.91797 -1.30566 20.6543 -2.7998 28.4307\\nc-0.649414 -1.06055 -1.12988 -2.2207 -1.84961 -3.2207c-17.29 -24.5293 -50.54 -33.8896 -84.7402 -23.8398c-78.8701 23.1699 -178.02 3.81055 -236.25 -38.5898l24.6602 74.1104l-46.8203 -59.8301c2.04297 -15.3486 9.10352 -39.1504 15.7598 -53.1299\\nc6.25 -13.1904 0.460938 -18.2402 -3.75 -20.1104c-4.76953 -2.12012 -13.8594 -2.7998 -19.6396 7.33008c-5.43652 9.81641 -11.96 26.6436 -14.5596 37.5596l-23.3203 -29.7998v33.6406c0 55.7695 0 125.109 62.6504 188.409c11.4258 11.5684 32.1631 27.4902 46.29 35.54\\nl-8.93066 0.540039c-27.8799 1.64062 -49.2402 24.8506 -47.6299 51.8506l2.36035 36.6797c0 -6.24023 0.139648 45.8799 50.75 45.8799c2.05957 0 -0.470703 0.120117 41.0596 -2.33008c2.31641 -0.15625 6.03027 -0.71582 8.29004 -1.25\\nc7.41992 11.3398 15.6504 22.8301 24.3398 34.8906l5.48047 7.55957l22.8994 -13.5195c-11.29 -24 -10 -33 -9.39941 -35c9.08008 0.229492 20 -1.6709 32.4102 -5.77051c29.6523 -9.84375 53.7188 -43.1914 53.7188 -74.4355\\nc0 -8.5127 -2.61621 -21.8154 -5.83887 -29.6943c6.18652 -2.13965 12.3135 -4.56348 18.3799 -7.27051c47.8896 -21.2598 77.7598 -59.0898 87.2598 -73.71zM142.37 319.42c1.55664 5.42773 4.69336 14.0156 7 19.1699l-29.1104 1.73047\\nc0.610352 -0.0507812 -12.2598 0.849609 -13.2598 -11.3203l-2.41016 -36.6602c-0.00585938 -0.143555 -0.0107422 -0.376953 -0.0107422 -0.520508c0 -6.50293 5.27344 -12 11.7705 -12.2695l22.3809 -1.33984c-0.380859 3.10645 -0.689453 8.16797 -0.689453 11.2969\\nc0 2.28809 0.165039 5.99414 0.369141 8.27344l-13.1299 0.779297l1.38965 21.79zM290.79 147.24c2.06152 1.58789 3.73438 4.9873 3.73438 7.58887c0 1.80273 -0.893555 4.42383 -1.99414 5.85059l-81.0898 96.3203c-1.71484 1.99023 -5.23828 3.60547 -7.86523 3.60547\\nc-1.99023 0 -4.87305 -1.00098 -6.43555 -2.23535c-2.05957 -1.58398 -3.73242 -4.97949 -3.73242 -7.57812c0 -1.7998 0.892578 -4.41699 1.99316 -5.8418c0.0898438 -0.140625 18.5996 -22.1406 18.5996 -22.1406l-16.9102 -13.29\\nc-1.59473 -1.22266 -2.88867 -3.8457 -2.88867 -5.85547c0 -1.37988 0.680664 -3.38867 1.51855 -4.48438c0.0800781 -0.109375 2.52246 -3.07324 3.7998 -4.5293c1.27832 -1.45703 3.8877 -2.63867 5.8252 -2.63867c1.4707 0 3.60547 0.734375 4.76562 1.63867\\nl17.0898 13.4492l14.1396 -16.7393l-34.5703 -27.1807c-1.58398 -1.22266 -2.86914 -3.83984 -2.86914 -5.84082c0 -1.38574 0.685547 -3.40039 1.5293 -4.49902l15.7803 -18.6396c1.33594 -1.55176 4.08203 -2.81055 6.12988 -2.81055\\nc1.54492 0 3.78516 0.775391 5 1.73047l34.4199 27l9.68066 -11.4902c1.7334 -1.98242 5.27832 -3.5918 7.91211 -3.5918c1.98438 0 4.86816 0.986328 6.4375 2.20215zM187.44 29c9.93555 0 18 -8.06445 18 -18s-8.06445 -18 -18 -18c-9.93652 0 -18 8.06445 -18 18\\ns8.06348 18 18 18z\\\" />\\n    <glyph glyph-name=\\\"mastodon\\\" unicode=\\\"&#xf4f6;\\\" \\nd=\\\"M433 268.89c0 0 0.799805 -71.6992 -9 -121.5c-6.23047 -31.5996 -55.1104 -66.1992 -111.23 -72.8994c-20.0996 -2.40039 -93.1191 -14.2002 -178.75 6.7002v-0.339844c0 -3.75977 0.40332 -9.83496 0.900391 -13.5605c6.62988 -49.5996 49.2197 -52.5996 89.6299 -54\\nc40.8105 -1.2998 77.1201 10.0996 77.1201 10.0996l1.7002 -36.8994s-28.5098 -15.2998 -79.3203 -18.1006c-28.0098 -1.59961 -62.8193 0.700195 -103.33 11.4004c-112.229 29.7002 -105.63 173.4 -105.63 289.1c0 97.2002 63.7197 125.7 63.7197 125.7\\nc61.9209 28.4004 227.96 28.7002 290.48 0c0 0 63.71 -28.5 63.71 -125.7zM357.88 143.69c0 122 5.29004 147.71 -18.4199 175.01c-25.71 28.7002 -79.7197 31 -103.83 -6.10059l-11.5996 -19.5l-11.6006 19.5c-24.0098 36.9004 -77.9297 35 -103.83 6.10059\\nc-23.6094 -27.1006 -18.4092 -52.9004 -18.4092 -175h46.7295v114.2c0 49.6992 64 51.5996 64 -6.90039v-62.5098h46.3301v62.5c0 58.5 64 56.5996 64 6.89941v-114.199h46.6299z\\\" />\\n    <glyph glyph-name=\\\"r-project\\\" unicode=\\\"&#xf4f7;\\\" horiz-adv-x=\\\"581\\\" \\nd=\\\"M581 221.4c0 -54.8008 -33.9004 -104.301 -88.4004 -139.7l67.4004 -113.7h-112l-40.0996 75.4004c-21.8008 -6.5 -45.1006 -11.2002 -69.4004 -13.9004v-61.5h-99.0996v61.9004c-136.101 16.0996 -239.4 95.6992 -239.4 191.5c0 107.5 130.1 194.6 290.5 194.6\\ns290.5 -87.0996 290.5 -194.6zM114.2 206.9c0 -52.8008 51.0996 -98.4004 125.2 -119.9v208.3h199s90.5996 -1.59961 90.5996 -87.8994c0 -86.3008 -86.5996 -92.7002 -86.5996 -92.7002s17.5996 -5.2998 27.7998 -10.5c1.7002 -0.799805 4 -2.10059 6.39941 -3.7002\\nc43.8008 21.4004 70.3008 56.2998 70.3008 106.4c0 92.2998 -90 133 -211.9 133s-220.8 -59.5 -220.8 -133zM339.3 168.6c49.6006 0 87.7998 -8.19922 87.7998 28.3008c0 34.0996 -30 27.2998 -87.7998 27.2998v-55.6006zM338.4 96.0996v-22.0996\\nc17.5996 0.0996094 34.5 1 50.5996 2.90039c-5.09961 7.5 -13.2002 19.1992 -24 19.1992h-26.5996z\\\" />\\n    <glyph glyph-name=\\\"researchgate\\\" unicode=\\\"&#xf4f8;\\\" \\nd=\\\"M0 416h448v-448h-448v448zM262.2 81.5996v7.30078c-10 0 -20 6.89941 -27.2002 14.6992c-12.2002 13.3008 -28.5996 34.7002 -42.2002 58.9004c22.5 5.2998 39.2002 26.4004 39.2002 47.5c0 31.2002 -24.2002 45.5996 -55.9004 45.5996\\nc-17.7998 0 -45.0996 -1.59961 -70.8994 -0.599609v-8.09961c15.5996 -2.90039 22 -1.30078 22 -23.9004v-109.4c0 -22.5996 -6.5 -21 -22 -23.8994v-8.10059c7.5 0.200195 20.5 0.800781 33.5996 0.800781c12.5 0 28.7002 -0.5 35.6006 -0.800781v8.10059\\nc-19.8008 2.7002 -25.8008 0.399414 -25.8008 23.8994v46.4004c6.7002 -0.599609 12.5 -0.599609 21.4004 -0.599609c16.9004 -30.3008 33 -53 42.2002 -63.6006c16.7998 -20.2002 43.3994 -17.2002 50 -14.2002zM285.1 216.6c38.7002 0 34 29.4004 34 49.9004h-30.3994\\nv-10.7002h17.8994c0 -15.8994 -7.39941 -26.7998 -21.5 -26.7998c-11.2998 0 -17.8994 9.90039 -17.8994 23.2998v26.7998c0 12.4004 11.7998 19.7002 19.7002 19.7002c14.1992 0 19.6992 -12.5 19.6992 -12.5l10.7002 7.2002s-5.2002 17.9004 -30.3994 17.9004\\nc-25.2002 0 -34 -18.2002 -34 -30.4004v-32.2002c0 -16.5 8.89941 -32.2002 32.1992 -32.2002zM168.6 171.9c-9.39941 0 -13.5996 0.299805 -20 0.799805v69.7002c6.40039 0.599609 15 0.599609 22.5 0.599609c23.3008 0 37.2002 -12.2002 37.2002 -34.5\\nc0 -21.9004 -15 -36.5996 -39.7002 -36.5996z\\\" />\\n    <glyph glyph-name=\\\"teamspeak\\\" unicode=\\\"&#xf4f9;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M244.2 101.21c-2.40039 -12.5 -10.6006 -20 -22.5 -24.2998c-9.2002 -3.2002 -50.1006 -1.60059 -61.7002 -1c-18 1.2998 -33.2002 8.5 -43.4004 24c-14.5 22.5 -19.5 47.7002 -14.5 73.8994c4.60059 24.5 24.6006 34.7002 46.3008 22.7002\\nc15.1992 -7.5 42.5 -27.3994 63.3994 -46.5996c20.4004 -18.7002 34.7998 -36.4004 32.4004 -48.7002zM449.2 80.4102c6.7002 -5.41016 11.2002 -22 11.5996 -32.1006c1 -50.3994 -23.8994 -68 -46.5996 -85.3994c-65.1006 -50 -295.101 -16.9004 -145.4 -6.40039\\nc127.4 9 164.101 96.1006 172.101 121.5c0.647461 1.99023 2.87109 3.60547 4.96387 3.60547c1.04102 0 2.53516 -0.540039 3.33594 -1.20508zM511.2 202.81c0 -17.1992 1.89941 -34.5996 -1 -51.6992c-4 -24.7002 -29.1006 -41.7002 -53.2002 -36.7002\\nc-7.2002 1.7002 -9.40039 7.2002 -9.40039 14.2002c0 28.0996 0.800781 56.3994 0 84.5996c-1.89941 75.79 -36.1992 132.79 -102.3 169.4c-111 60.3896 -253.2 -7 -277.8 -131.5c-6.09961 -30.4004 -1.7002 -48.3008 -3.7002 -125.801\\nc-0.299805 -7.19922 -4.2998 -11.1992 -12 -11.5c-30.7998 -1.39941 -51.7998 18.2002 -51.7998 49v20.9004l0.799805 26.4902c2.40039 15.5 10.7002 27 24.9004 34c3.5 1.7998 5.7002 3.5 6.39941 7.7998c6.10059 33.4102 19.5 64 39.3008 91.71\\nc2.2998 3.09961 4 5.2998 1 9.2998c-3.7002 5.40039 -1 10.2002 3 14.5c28.0996 31.7998 61.8994 55.1006 102 67.4004c96 29.4668 180.1 9.29688 252.3 -60.5098c6.7002 -6.40039 15.5 -12.9004 7 -24.4004c-1.2998 -1.7998 1.09961 -3.5 2.2002 -5\\nc17.2246 -23.209 35.3242 -65.1367 40.3994 -93.5898c0.900391 -3.7002 3 -5.10059 5.90039 -6.40039c17.3994 -8.7998 25.7002 -23.2998 26 -42.2002zM351.6 71.3096l-51.5996 7.7002c-22.7998 5.90039 -51 32.7002 22.2002 60.7998\\nc21.5996 8.5 85.7002 37.2002 87.7998 -8c0.900391 -32 -21.9004 -63.2998 -58.4004 -60.5z\\\" />\\n    <glyph glyph-name=\\\"first-order-alt\\\" unicode=\\\"&#xf50a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 -48.21c132.66 0 240.21 107.55 240.21 240.21s-107.55 240.21 -240.21 240.21s-240.21 -107.55 -240.21 -240.21s107.55 -240.21 240.21 -240.21z\\nM248 411.71c121.34 0 219.71 -98.3701 219.71 -219.71s-98.3701 -219.71 -219.71 -219.71s-219.71 98.3701 -219.71 219.71s98.3701 219.71 219.71 219.71zM248 -19.5098c116.81 0 211.51 94.7002 211.51 211.51s-94.7002 211.51 -211.51 211.51\\ns-211.51 -94.6895 -211.51 -211.51s94.7002 -211.51 211.51 -211.51zM434.23 143.47c-3.69141 -14.209 -12.709 -36.0225 -20.1309 -48.6895l-74.1299 35.8799l61.4805 -54.8203c-8.85352 -11.7021 -25.5195 -28.4082 -37.2002 -37.29l-54.7998 61.5703l35.8799 -74.2705\\nc-12.6445 -7.45215 -34.4307 -16.5156 -48.6299 -20.2295l-27.29 78.4697l4.79004 -82.9297c-8.61035 -1.17969 -17.4004 -1.7998 -26.3301 -1.7998s-17.7197 0.620117 -26.3301 1.7998l4.75977 82.46l-27.1494 -78.0303c-14.2021 3.70996 -35.998 12.7588 -48.6504 20.2002\\nl35.9297 74.3398l-54.8701 -61.6396c-11.6836 8.87988 -28.3584 25.582 -37.2197 37.2793l61.5898 54.9004l-74.2598 -35.9297c-7.42383 12.667 -16.4463 34.4795 -20.1396 48.6895l77.8398 27.1104l-82.2305 -4.75977c-1.15918 8.56934 -1.7793 17.3193 -1.7793 26.21\\nc0 9 0.629883 17.8398 1.81934 26.5098l82.3799 -4.76953l-77.9395 27.1592c3.71973 14.208 12.7822 36.0127 20.2295 48.6699l74.2207 -35.9199l-61.5205 54.8604c8.88086 11.6836 25.582 28.3584 37.2803 37.2197l54.7598 -61.5293l-35.8301 74.1699\\nc12.6562 7.41895 34.4521 16.4375 48.6504 20.1299l26.8701 -77.25l-4.70996 81.6094c8.60938 1.18066 17.3896 1.80078 26.3193 1.80078c8.93066 0 17.71 -0.620117 26.3203 -1.80078l-4.74023 -82.1592l27.0498 77.7598c17.2705 -4.5 33.6006 -11.3506 48.6309 -20.1699\\nl-35.8203 -74.1201l54.7197 61.4697c11.6924 -8.86133 28.376 -25.54 37.2402 -37.2295l-61.4502 -54.7705l74.1201 35.8604c7.43945 -12.6533 16.4893 -34.4492 20.2002 -48.6504l-77.8105 -27.0996l82.2402 4.75c1.19043 -8.66016 1.82031 -17.5 1.82031 -26.4902\\nc0 -8.87988 -0.610352 -17.6299 -1.78027 -26.1904l-82.1201 4.75z\\\" />\\n    <glyph glyph-name=\\\"fulcrum\\\" unicode=\\\"&#xf50b;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M95.75 283.86l-35.3799 -43.5508l-35.3701 43.5508l35.3799 43.5498zM144.23 448v-211.11l-41.0801 -44.8896l41.0801 -44.8896v-211.11l-20.5107 198.18l-51 57.8203l50.9707 57.8203zM223.9 283.86l35.3799 43.5498l35.3799 -43.5498l-35.3799 -43.5508zM175.42 236.86\\nv211.14l20.5801 -198.18l51 -57.8203l-51 -57.8203l-20.5801 -198.18v211.11l41.0801 44.8896z\\\" />\\n    <glyph glyph-name=\\\"galactic-republic\\\" unicode=\\\"&#xf50c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 -56c-136.75 0 -248 111.25 -248 248s111.25 248 248 248s248 -111.25 248 -248s-111.25 -248 -248 -248zM248 423.47c-127.63 0 -231.47 -103.84 -231.47 -231.47s103.84 -231.47 231.47 -231.47s231.47 103.84 231.47 231.47s-103.84 231.47 -231.47 231.47z\\nM275.62 401.66c37.6602 -4.91016 72.21 -19.7402 100.96 -41.7998l-17.3896 -17.3604c-20.6758 15.3154 -58.1152 30.7891 -83.5703 34.54v24.6201zM220.25 401.59v-24.54c-30.9697 -4.60938 -59.4502 -16.8301 -83.5195 -34.6699h-0.0800781l-17.2803 17.3604\\nc28.7197 22.0498 63.2402 36.9102 100.88 41.8496zM232.5 351.42h31v-82.8604c10.0498 -2.0293 19.3701 -6.00977 27.6201 -11.5l58.6699 58.6709l21.9297 -21.9307l-58.6699 -58.6699c5.46973 -8.24023 9.48047 -17.5996 11.5 -27.6201h82.8701v-31h-82.8701\\nc-2.03027 -10.0195 -6.04004 -19.3096 -11.5 -27.54l58.6699 -58.6895l-21.9297 -21.9307l-58.6699 58.6904c-8.25 -5.49023 -17.5703 -9.52051 -27.6201 -11.5498v-82.9004h-31v82.9004c-8.25781 1.66895 -20.6533 6.80762 -27.6699 11.4697l-58.6201 -58.6201\\nl-21.9297 21.9297l58.6699 58.6904c-5.45996 8.23047 -9.4502 17.5205 -11.4697 27.54h-82.9004v31h82.9004c2.01953 10.0303 6 19.3896 11.4697 27.6201l-58.6699 58.6699l21.9297 21.9297l58.6201 -58.5898c8.25 5.48047 17.6299 9.38965 27.6699 11.4199v82.8701z\\nM415.74 320.7c22.0996 -28.7402 36.9795 -63.3398 41.9297 -101.03h-24.6201c-3.7832 25.4902 -19.3154 62.9746 -34.6699 83.6699zM80.1904 320.57l17.3896 -17.3906c-17.8301 -24.0693 -29.9902 -52.5596 -34.5898 -83.5195h-24.6504\\nc4.94043 37.6494 19.79 72.1895 41.8506 100.91zM38.3398 164.33l24.6504 0.00976562c4.58984 -30.9502 16.7002 -59.4502 34.5098 -83.5195l-17.3604 -17.3906c-22.0498 28.7207 -36.8799 63.2607 -41.7998 100.9zM433.04 164.33h24.6201\\nc-4.9502 -37.6699 -19.8506 -72.2197 -41.9297 -100.96l-17.3604 17.3604c17.8701 24.0996 30.0596 52.6094 34.6699 83.5996zM136.66 41.6201c24.0703 -17.8604 52.6094 -30.0205 83.5996 -34.6504v-24.6396c-37.6602 4.9502 -72.2295 19.8398 -100.96 41.9297z\\nM359.19 41.5703h0.0791016l17.3105 -17.3906c-28.75 -22.0596 -63.29 -36.9297 -100.96 -41.8496v24.5703c30.9902 4.58984 59.4795 16.8301 83.5703 34.6699z\\\" />\\n    <glyph glyph-name=\\\"galactic-senate\\\" unicode=\\\"&#xf50d;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M249.86 414.52h12.2793v-26.0693c13.5801 -20.6201 23.8604 -108.59 24.4902 -215.351c-11.7402 15.6201 -19.1299 33.3301 -19.1299 48.2402v16.8799c0.0302734 5.32031 -0.75 10.5303 -2.19043 15.6504c-0.649414 2.13965 -1.38965 4.07031 -2.61914 5.82031\\nc-1.23047 1.73926 -3.44043 3.79004 -6.68066 3.79004c-3.25 0 -5.4502 -2.04004 -6.67969 -3.79004c-1.23047 -1.74023 -1.96973 -3.68066 -2.62012 -5.82031c-1.44043 -5.12012 -2.21973 -10.3301 -2.19043 -15.6504v-16.8799\\nc0 -14.9102 -7.38965 -32.6201 -19.1299 -48.2402c0.610352 106.761 10.8906 194.73 24.4707 215.351v26.0693zM223.52 266.75c-1.59961 -22.4004 -2.75 -46.5195 -3.47949 -72.0703c-23.2998 -11.2793 -40.7705 -33.1602 -46.3203 -59.5098\\nc-7.71973 -2.25977 -22.71 -3.91992 -40.4893 -4.21973c-7.51074 3.66016 -16.5 5.85938 -26.1807 6.04004c1.90039 14.9102 5.87012 29.1699 11.6504 42.4199c15.4395 -8.10059 30.9297 -8.66016 35.4697 -0.959961c4.57031 7.74023 -3.58984 21.04 -18.3203 30.6602\\nc8.68066 11.7695 18.9805 22.2998 30.5605 31.0898c9.50977 -15.5898 23.3594 -24.4404 31.3594 -19.8203c8.05078 4.65039 7.19043 21.1699 -1.70996 37.29c8.76074 3.88965 17.9404 6.92969 27.46 9.08008zM288.48 266.75\\nc7.82227 -1.75977 20.1201 -5.82812 27.4492 -9.08008c-8.89941 -16.1299 -9.75977 -32.6396 -1.70996 -37.29c8 -4.62012 21.8506 4.23047 31.3604 19.8203c11.5801 -8.79004 21.8799 -19.3203 30.5596 -31.0898c-14.7197 -9.61035 -22.8896 -22.9199 -18.3193 -30.6602\\nc4.54004 -7.7002 20.0293 -7.14062 35.4697 0.959961c5.79004 -13.25 9.75 -27.5098 11.6504 -42.4199c-9.68066 -0.19043 -18.6709 -2.37988 -26.1807 -6.04004c-17.7793 0.299805 -32.7695 1.95996 -40.4902 4.21973c-5.5498 26.3496 -23.0293 48.2305 -46.3193 59.5098\\nc-0.719727 25.5508 -1.87988 49.6699 -3.46973 72.0703zM256 258.15c3.23047 0 5.86035 -8.81055 6.08984 -19.9307h0.0498047v-16.8799c0 -41.4199 49.0107 -95.04 93.4902 -95.04c52 0 122.76 1.4502 156.37 -29.1699v-2.50977\\nc-9.41992 -17.1104 -20.5801 -33.1699 -33.1797 -47.9697c-12.5303 21.0898 -51.5898 40.96 -108.021 41.3496c-45.6797 -1.01953 -79.0195 -20.3301 -90.7598 -40.8701c-0.00976562 -0.00976562 0.00976562 -0.0400391 0 -0.0498047\\nc-7.66992 -2.13965 -15.8496 -3.23047 -24.04 -3.20996c-8.19043 -0.0205078 -16.3701 1.07031 -24.04 3.20996c-0.00976562 0.00976562 0.00976562 0.0400391 0 0.0498047c-11.7295 20.54 -45.0801 39.8506 -90.7598 40.8701\\nc-56.4307 -0.400391 -95.5 -20.2598 -108.021 -41.3496c-12.5996 14.7998 -23.7598 30.8496 -33.1797 47.9697v2.50977c33.6201 30.6201 104.37 29.1699 156.37 29.1699c44.4795 0 93.4902 53.6201 93.4902 95.04v16.8799h0.0498047\\nc0.229492 11.1201 2.85938 19.9307 6.08984 19.9307zM256 161.56c-22.4199 0 -40.5996 -18.1797 -40.5996 -40.5996s18.1797 -40.6504 40.5996 -40.6504s40.5996 18.2305 40.5996 40.6504s-18.1797 40.5996 -40.5996 40.5996zM256 153.92\\nc18.1904 0 32.96 -14.7695 32.96 -32.96s-14.7695 -32.96 -32.96 -32.96s-32.96 14.7695 -32.96 32.96s14.7695 32.96 32.96 32.96zM256 147.78c-14.8096 0 -26.8203 -12.0107 -26.8203 -26.8203s12.0107 -26.8203 26.8203 -26.8203s26.8203 12.0107 26.8203 26.8203\\ns-12.0107 26.8203 -26.8203 26.8203zM141.2 81.1104c18.75 -0.419922 35.1895 -4.18066 48.6094 -9.66992c12.5508 -16.0303 29.1602 -30.04 49.5801 -33.0703c0.100586 -0.00976562 0.169922 -0.0302734 0.270508 -0.0498047\\nc0.0498047 -0.0107422 0.109375 -0.0400391 0.160156 -0.0507812c5.23926 -1.06934 10.6396 -1.59961 16.1895 -1.59961c5.56055 0 10.9502 0.530273 16.1904 1.59961c0.0498047 0.0107422 0.109375 0.0400391 0.160156 0.0507812\\nc0.0996094 0.00976562 0.179688 0.0292969 0.269531 0.0498047c20.4199 3.04004 37.04 17.04 49.5801 33.0703c13.4199 5.5 29.8496 9.25 48.6104 9.66992c10.1797 -0.0800781 21.5996 -0.360352 30.5 -1.66016c-0.430664 -4.41992 -1.51074 -18.6299 -7.11035 -29.7598\\nc-9.11035 2.55957 -18.3604 3.89941 -27.6201 3.89941c-41.2803 -0.939453 -71.4795 -34.3496 -78.2598 -74.4697l-0.110352 -4.7002c-10.3994 -1.91992 -21.1797 -2.93945 -32.21 -2.93945c-11.0195 0 -21.8096 1.0293 -32.21 2.93945l-0.109375 4.7002\\nc-6.78027 40.1201 -36.9805 73.5303 -78.2607 74.4697c-9.25977 0 -18.5098 -1.33984 -27.6201 -3.89941c-5.59961 11.1299 -6.67969 25.3398 -7.10938 29.7598c8.89941 1.2998 20.3096 1.58984 30.5 1.66016z\\\" />\\n    <glyph glyph-name=\\\"jedi-order\\\" unicode=\\\"&#xf50e;\\\" \\nd=\\\"M398.5 74.4004c0 0 26.2998 16.1992 49.9004 77.6992c0 0 -17 -183.3 -222 -185.699h-4.10059c-205.1 2.39941 -222 185.699 -222 185.699c23.2002 -61.5996 49.4004 -77.6992 49.4004 -77.6992c-95.9004 122.1 -17.2002 233.1 -17.2002 233.1\\nc-45.4004 -85.7002 41.4004 -170.5 41.4004 -170.5c-105 171.6 60.5 271.5 60.5 271.5c-96.9004 -72.5996 10.0996 -190.7 10.0996 -190.7c-85.7998 -158.399 68.5996 -230.1 68.5996 -230.1s0.400391 16.8994 2.2002 85.7002l-34.5 -36.2002l24.2002 47.3994\\nl-62.5996 9.10059l62.5996 9.09961l-20.2002 55.5l31.4004 -45.8994c2.2998 87.8994 7.89941 305.899 7.89941 306.899v2.40039v-1v1v-2.40039c0.100586 -1.7998 5.7002 -219.2 7.90039 -306.899l31.4004 45.8994l-20.2002 -55.5l62.5996 -9.09961l-62.5996 -9.10059\\nl24.2002 -47.3994s-30.2002 31.7002 -34.5 36.2002c1.7998 -68.8008 2.19922 -85.7002 2.19922 -85.7002s154.4 71.7002 68.6006 230.1c0 0 107 118 10.0996 190.7c0 0 165.5 -100 60.5 -271.5c0 0 86.7998 84.7002 41.4004 170.5c0 0 78.7002 -111 -17.2002 -233.1z\\\" />\\n    <glyph glyph-name=\\\"mandalorian\\\" unicode=\\\"&#xf50f;\\\" \\nd=\\\"M232.27 -63.8896c-1 3.25977 -1.68945 15.8301 -1.38965 24.5801c0.549805 15.8896 1 24.7197 1.40039 28.7598c0.639648 6.2002 2.87012 20.7197 3.2793 21.3799c0.600586 1 0.400391 27.8701 -0.239258 33.1299c-0.310547 2.58008 -0.629883 11.9004 -0.69043 20.7305\\nc-0.129883 16.4697 -0.530273 20.1191 -2.72949 24.7598c-1.10059 2.31934 -1.23047 3.83984 -1 11.4297c0.0449219 1.07324 0.0820312 2.81641 0.0820312 3.89062c0 2.43945 -0.189453 6.39062 -0.422852 8.81934c-2 13 -3.45996 27.7002 -3.25 33.9004\\ns0.430664 7.14941 2.06055 9.66992c3.0498 4.70996 6.50977 14 8.62012 23.2695c2.25977 9.86035 3.87988 17.1807 4.58984 20.7402c0.921875 4.24121 2.90137 10.9834 4.41992 15.0498c2.26953 6.25 2.49023 15.3906 0.370117 15.3906\\nc-0.299805 0 -1.37988 -1.2207 -2.41016 -2.70996c-1.03027 -1.49023 -4.75977 -4.80078 -8.29004 -7.36035c-8.37012 -6.08008 -11.7002 -9.38965 -12.6602 -12.5801s-1 -7.22949 -0.160156 -7.75977c0.34082 -0.209961 1.29004 -2.40039 2.11035 -4.87988\\nc0.791992 -2.41602 1.43457 -6.43945 1.43457 -8.98145c0 -1.78223 -0.320312 -4.64062 -0.714844 -6.37891c-0.389648 -1.76953 -1 -5.46973 -1.45996 -8.22949c-0.459961 -2.76074 -1 -6.46094 -1.25 -8.2207c-0.149414 -1.27637 -0.84375 -3.18555 -1.5498 -4.25977\\nc-1 -1 -1.13965 -0.910156 -2.0498 0.530273c-0.619141 1.24316 -1.26465 3.37109 -1.44043 4.75c-0.25 1.73926 -1.62988 7.10938 -3.08008 11.9297c-3.2793 10.9004 -3.51953 16.1504 -1 21c0.683594 1.19141 1.43164 3.25684 1.66992 4.61035\\nc0 2.38965 -2.19922 5.31934 -7.40918 9.88965c-7 6.17969 -8.62988 7.91992 -10.2305 11.2998c-1.70996 3.60059 -3.05957 4.06055 -4.54004 1.54004c-1.78027 -3 -2.59961 -9.10938 -3 -22l-0.339844 -12.1895l2 -2.25c3.20996 -3.7002 12.0703 -16.4502 13.7803 -19.8301\\nc3.41016 -6.74023 4.33984 -11.6904 4.41016 -23.5605c0.0693359 -11.8701 0.949219 -22.75 2 -24.71c0.359375 -0.660156 0.509766 -1.34961 0.339844 -1.51953s0.410156 -2.08984 1.29004 -4.27051c0.871094 -2.41406 1.79395 -6.44629 2.05957 -9\\nc0.306641 -2.88867 1.07227 -7.53516 1.70996 -10.3701c2.23047 -9.55957 2.77051 -14.0801 2.39062 -20.1396c-0.200195 -3.26953 -0.530273 -11.0703 -0.730469 -17.3203c-1.30957 -41.7598 -1.84961 -58 -2 -61.21c-0.120117 -2 -0.389648 -11.5098 -0.599609 -21.0693\\nc-0.360352 -16.3008 -1.30078 -27.3701 -2.41992 -28.6504c-0.640625 -0.729492 -8.07031 4.91016 -12.5205 9.49023c-3.75 3.87012 -4 4.79004 -2.83008 9.9502c0.700195 3 2.25977 18.29 3.33008 32.6191c0.360352 4.78027 0.80957 10.5 1 12.7109\\nc0.830078 9.36914 1.66016 20.3496 2.61035 34.7793c0.55957 8.45996 1.33008 16.4404 1.71973 17.7305s0.889648 9.88965 1.12988 19.1094l0.429688 16.7705l-2.25977 4.2998c-1.71973 3.28027 -4.87012 6.94043 -13.2197 15.3398\\nc-6 6.07031 -11.8398 12.2998 -12.9102 13.8506l-1.9502 2.80957l0.75 10.9004c1.08984 15.71 1.10059 48.5693 0 59.0596l-0.889648 8.7002l-3.28027 4.51953c-5.85938 8.08008 -5.7998 7.75 -6.21973 33.2705c-0.100586 6.07031 -0.379883 11.5 -0.629883 12.0596\\nc-0.830078 1.87012 -3.0498 2.66016 -8.54004 3.05078c-8.86035 0.619141 -11 1.89941 -23.8506 14.5498c-6.14941 6 -12.3398 12 -13.75 13.1895c-2.80957 2.41992 -2.79004 2 -0.55957 9.62988l1.34961 4.65039l-1.68945 3c-0.630859 1.17676 -1.79102 3 -2.58984 4.07031\\nc-1.33008 1.50977 -5.5 10.8896 -6 13.4893c-0.0859375 0.307617 -0.155273 0.816406 -0.155273 1.13574c0 0.868164 0.458984 2.10645 1.02539 2.76465c2.22949 2.86035 3.39941 5.67969 4.44922 10.7305c2.33008 11.1895 7.74023 26.0898 10.6006 29.2197\\nc3.17969 3.46973 7.7002 1 9.41016 -5c1.33984 -4.79004 1.36914 -9.79004 0.0996094 -18.5498c-0.445312 -3.05176 -0.893555 -8.02832 -1 -11.1104c0 -4 0.19043 -4.69043 2.25 -7.38965c3.33008 -4.37012 7.72949 -7.41016 15.2002 -10.5205\\nc1.41992 -0.591797 3.53418 -1.86914 4.71973 -2.84961c11.1699 -10.7207 18.6201 -16.1807 22.9502 -16.8506c5.17969 -0.799805 8 -4.54004 10 -13.3896c1.30957 -5.65039 4 -11.1396 5.45996 -11.1396c0.994141 0.203125 2.48633 0.826172 3.33008 1.38965\\nc2 1.21973 2.25 1.73047 2.25 4.17969c-0.21875 4.96191 -1.11523 12.9541 -2 17.8398c-0.370117 1.66016 -0.780273 4.06055 -0.930664 5.35059c-0.149414 1.29004 -0.609375 3.84961 -1 5.68945c-2.5498 11.1602 -3.64941 15.46 -4.09961 16\\nc-1.5498 2 -4.08008 10.2002 -4.92969 15.9209c-1.64062 11.1094 -4 14.2295 -12.9102 17.3896c-4.0791 1.50293 -10.0547 5.0332 -13.3398 7.87988c-1.15039 1 -4 3.21973 -6.35059 5.05957c-2.34961 1.84082 -4.40918 3.53027 -4.59961 3.76074\\nc-0.701172 0.606445 -1.90625 1.50293 -2.69043 2c-6.23926 4.21973 -8.83984 7 -11.2598 12l-2.43945 5l-0.220703 13l-0.219727 13l6.91016 6.5498c3.9502 3.75 8.47949 7.34961 10.5898 8.42969c3.30957 1.69043 4.4502 1.89062 11.3701 2\\nc8.53027 0.19043 10.1201 0 11.6602 -1.55957c1.54004 -1.56055 1.35938 -6.40039 -0.290039 -8.5c-0.501953 -0.564453 -1.10156 -1.60352 -1.33984 -2.32031c0 -0.580078 -2.61035 -4.91016 -5.41992 -9c-0.879883 -1.80371 -1.94141 -4.85938 -2.37012 -6.82031\\nc20.4395 -13.3896 21.5498 -3.76953 14.0693 -29l11.3604 -2.51953c3.11035 8.66016 6.46973 17.2598 8.61035 26.2197c0.290039 7.62988 -12 4.19043 -15.4004 8.68066c-2.33008 5.92969 3.12988 14.1797 6.05957 19.1992c1.60059 2.33984 6.62012 4.7002 8.82031 4.15039\\nc0.879883 -0.219727 4.16016 0.349609 7.37012 1.28027c2.04395 0.641602 5.42676 1.39453 7.5498 1.67969c1.69336 0.183594 4.38184 0.760742 6 1.29004c3.65039 1.11035 4.5 1.16992 6.35059 0.400391c1.56738 -0.539062 4.1748 -1.14844 5.81934 -1.36035\\nc1.74902 -0.236328 4.43652 -1.0918 6 -1.91016c1.30762 -0.765625 3.54785 -1.73828 5 -2.16992c2.51074 -0.679688 3 -0.570312 7.05078 1.66992l4.34961 2.40039l10.7402 0.389648c10.4395 0.400391 10.8096 0.469727 15.2598 2.67969l4.58008 2.32031l2.45996 -1.42969\\nc1.75977 -1 3.13965 -2.73047 4.84961 -6c2.36035 -4.51074 2.37988 -4.58008 1.37012 -7.37012c-0.879883 -2.44043 -0.889648 -3.2998 -0.0996094 -6.39062c0.435547 -1.68164 1.37695 -4.3291 2.09961 -5.90918c0.535156 -1.04785 1.12207 -2.83984 1.31055 -4\\nc0.30957 -4.33008 0 -5.30078 -2.41016 -6.91992c-2.16992 -1.4707 -7 -7.91016 -7 -9.34082c-0.206055 -0.859375 -0.685547 -2.2041 -1.07031 -3c-5 -11.5098 -6.75977 -13.5596 -14.2598 -17c-9.2002 -4.19922 -12.2998 -5.18945 -16.21 -5.18945\\nc-3.10059 0 -4 -0.25 -4.54004 -1.25977c-0.972656 -1.19629 -2.80566 -2.8584 -4.08984 -3.70996c-1.53223 -1.02344 -3.49512 -3.16504 -4.37988 -4.78027c-0.411133 -1.04004 -1.52734 -2.34375 -2.49023 -2.91016\\nc-0.78125 -0.321289 -1.87891 -1.08789 -2.4502 -1.70996c-1.83496 -1.61133 -4.9707 -4.02148 -7 -5.37988c-3.33008 -2.33984 -6.87012 -5 -7.87012 -6c-0.560547 -0.604492 -1.62695 -1.36621 -2.37988 -1.7002c-0.697266 -0.314453 -1.65137 -1.05273 -2.12988 -1.65039\\nc-1.31055 -1.38965 -1.49023 -2.10938 -1.13965 -4.59961c0.255859 -1.65527 0.892578 -4.29004 1.41992 -5.87988c1.31934 -3.7998 1.30957 -7.86035 0 -10.5703c-1.31055 -2.70996 -0.890625 -6.64941 1.34961 -9.58984c2 -2.62988 2.16016 -4.55957 0.709961 -8.83984\\nc-0.587891 -2.27344 -1.06445 -6.02344 -1.06445 -8.37109c0 -0.148438 0.00195312 -0.390625 0.00488281 -0.539062c0 -4.87988 0.219727 -6.28027 1.45996 -8.37988c1.23926 -2.09961 1.81934 -2.48047 3.23926 -2.32031c2 0.230469 2.30078 1.0498 4.70996 12.1201\\nc2.18066 10 3.70996 11.9199 13.7607 17.0801c2.93945 1.50977 7.45996 4 10 5.44043c2.54004 1.43945 6.79004 3.68945 9.37012 4.90918c4.99414 2.18652 11.8125 7.41504 15.2197 11.6709c7.10938 8.78906 10 16.2197 12.8496 33.2998\\nc0.298828 2.31445 1.58008 5.77832 2.86035 7.72949c1.19434 1.86133 2.48828 5.13574 2.88965 7.31055c1 5.2998 2.85059 9.08008 5.58008 11.5098c4.7002 4.17969 6 1.08984 4.58984 -10.8701c-0.459961 -3.86035 -1.09961 -10.3301 -1.43945 -14.3799l-0.610352 -7.36035\\nl4.4502 -4.08984l4.4502 -4.08984l0.109375 -8.41992c0.0605469 -4.62988 0.470703 -9.53027 0.919922 -10.8896l0.820312 -2.4707l-6.42969 -6.2793c-8.54004 -8.33008 -12.8799 -13.9307 -16.7598 -21.6104c-1.77051 -3.49023 -3.74023 -7.11035 -4.38086 -8\\nc-2.17969 -3.11035 -6.45996 -13 -8.75977 -20.2598l-2.29004 -7.2207l-7 -6.48926c-3.83008 -3.57031 -8 -7.25 -9.16992 -8.16992c-3.0498 -2.32031 -4.25977 -5.15039 -4.25977 -10c-0.00683594 -0.166992 -0.0126953 -0.438477 -0.0126953 -0.605469\\nc0 -1.94336 0.717773 -4.9248 1.60254 -6.65527c0.660156 -1.29688 1.59668 -3.45996 2.08984 -4.83008c0.290039 -0.875 0.993164 -2.16992 1.57031 -2.88965c1.40039 -1.58984 1.91992 -16.1201 0.830078 -23.2197c-0.679688 -4.48047 -3.62988 -12 -4.7002 -12\\nc-1.79004 0 -4.05957 -9.27051 -5.07031 -20.7402c-0.179688 -2 -0.620117 -5.94043 -1 -8.7002s-1 -10 -1.34961 -16.0498c-0.770508 -12.2197 -0.19043 -18.7705 2 -23.1504c3.41016 -6.68945 0.519531 -12.6895 -11 -22.8398l-4 -3.49023l0.0703125 -5.18945\\nc0.0439453 -2.4834 0.554688 -6.45703 1.13965 -8.87012c4.61035 -16 4.73047 -16.9199 4.37988 -37.1299c-0.459961 -26.4004 -0.259766 -40.2705 0.629883 -44.1504c0.410156 -1.91406 0.893555 -5.05078 1.08008 -7c0.169922 -2 0.660156 -5.33008 1.08008 -7.35938\\nc0.469727 -2.26074 0.780273 -11 0.790039 -22.7402v-19.0605l-1.80957 -2.62988c-2.70996 -3.91016 -15.1104 -13.54 -15.4902 -12.29zM261.8 -18.7803c-0.179688 0.299805 -0.330078 6.87012 -0.330078 14.5898c0 14.0605 -0.889648 27.54 -2.25977 34.4502\\nc-0.400391 2 -0.80957 9.7002 -0.900391 17.0605c-0.149414 11.9297 -1.39941 24.3701 -2.63965 26.3799c-0.660156 1.06934 -3 17.6602 -3 21.2998c0 4.23047 1 6 5.28027 9.12988s4.85938 3.13965 5.47949 0.719727c0.280273 -1.09961 1.4502 -5.61914 2.60059 -10\\nc3.92969 -15.1191 4.13965 -16.2695 4.0498 -21.7393c-0.0996094 -5.78027 -0.129883 -6.12988 -1.74023 -17.7305c-1 -7.07031 -1.16992 -12.3896 -1 -28.4297c0.169922 -19.4004 -0.639648 -35.7305 -2 -41.2705c-0.709961 -2.7793 -2.7998 -5.47949 -3.42969 -4.42969z\\nM190.8 18.7998c-0.638672 2.95215 -1.41406 7.78613 -1.72949 10.79s-1.09082 7.83789 -1.73047 10.79c-0.433594 1.76758 -0.880859 4.6748 -1 6.49023c-0.30957 3.18945 -0.910156 7.45996 -1.33008 9.47949c-1 4.79004 -3.34961 19.3506 -3.41992 21.0703\\nc0 0.740234 -0.339844 4.0498 -0.700195 7.36035c-0.669922 6.20996 -0.839844 27.6699 -0.219727 28.29c1 1 6.62988 -2.76074 11.3301 -7.43066l5.28027 -5.25l-0.450195 -6.46973c-0.25 -3.55957 -0.599609 -10.2295 -0.780273 -14.8301\\nc-0.179688 -4.59961 -0.490234 -9.87012 -0.669922 -11.71s-0.610352 -9.36035 -0.939453 -16.7197c-0.790039 -17.4102 -1.94043 -31.29 -2.65039 -32c-0.101562 -0.107422 -0.302734 -0.193359 -0.450195 -0.193359c-0.208008 0 -0.454102 0.149414 -0.549805 0.333008\\nh0.00976562zM103.62 285.39c21.0703 -12.79 17.8398 -14.1494 28.4902 -17.6592c13 -4.29004 18.8701 -7.13086 23.1494 -16.8701c-43.6602 -36.1406 -69.0098 -57.8604 -76.71 -70.8604c-31 -52 -6 -101.59 62.75 -87.21c-14.1797 -29.2305 -78 -28.6299 -98.6797 4.90039\\nc-24.6797 39.9492 -22.0898 118.3 61 187.659v0.0400391zM314.41 106.39c56.6602 -6.87988 82.3203 37.7402 46.54 89.2305c0 0 -26.8701 29.3398 -64.2803 68c3 15.4502 9.49023 32.1201 30.5703 53.8203c89.2002 -63.5107 92 -141.61 92.46 -149.36\\nc4.2998 -70.6396 -78.7002 -91.1797 -105.29 -61.71v0.0195312z\\\" />\\n    <glyph glyph-name=\\\"old-republic\\\" unicode=\\\"&#xf510;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M235.76 437.77c7.5 0.310547 15 0.280273 22.5 0.0908203c3.61035 -0.140625 7.2002 -0.400391 10.79 -0.730469c4.91992 -0.269531 9.79004 -1.03027 14.6699 -1.62012c2.93066 -0.429688 5.83008 -0.979492 8.75 -1.45996\\nc7.90039 -1.33008 15.6699 -3.28027 23.3906 -5.39941c12.2393 -3.4707 24.1895 -7.91992 35.7598 -13.21c26.5596 -12.2402 50.9395 -29.21 71.6299 -49.8809c20.0303 -20.0898 36.7197 -43.5498 48.8896 -69.1895c1.12988 -2.58984 2.44043 -5.10059 3.4707 -7.74023\\nc2.80957 -6.42969 5.38965 -12.9697 7.58008 -19.6299c4.13965 -12.3301 7.33984 -24.9902 9.41992 -37.8301c0.569336 -3.13965 1.04004 -6.2998 1.39941 -9.46973c0.549805 -3.83008 0.94043 -7.69043 1.18066 -11.5605\\nc0.829102 -8.33984 0.839844 -16.7295 0.769531 -25.0996c-0.0703125 -4.96973 -0.259766 -9.94043 -0.75 -14.8896c-0.240234 -3.38086 -0.509766 -6.76074 -0.979492 -10.1201c-0.390625 -2.7207 -0.630859 -5.45996 -1.11035 -8.16992\\nc-0.900391 -5.15039 -1.7002 -10.3105 -2.87012 -15.4102c-4.09961 -18.5 -10.2998 -36.5498 -18.5098 -53.6299c-15.7705 -32.8301 -38.8301 -62.1699 -67.1201 -85.1201c-14.3926 -11.7676 -39.8887 -27.3848 -56.9102 -34.8604\\nc-6.20996 -2.67969 -12.46 -5.25 -18.8701 -7.41016c-3.50977 -1.16016 -7.00977 -2.37988 -10.5703 -3.38965c-6.61914 -1.87988 -13.2891 -3.63965 -20.0391 -5c-4.66016 -0.910156 -9.34082 -1.73047 -14.0303 -2.48047c-5.25 -0.65918 -10.5 -1.43945 -15.79 -1.73926\\nc-6.69043 -0.660156 -13.4102 -0.839844 -20.1201 -0.810547c-6.82031 -0.0292969 -13.6504 0.120117 -20.4502 0.790039c-3.29004 0.230469 -6.57031 0.5 -9.83008 0.950195c-2.71973 0.389648 -5.45996 0.629883 -8.16992 1.11035\\nc-4.12012 0.719727 -8.25 1.37012 -12.3496 2.21973c-4.25 0.939453 -8.49023 1.88965 -12.6904 3.01953c-8.62988 2.16992 -17.0801 5.01074 -25.4102 8.13086c-10.4893 4.11914 -20.79 8.75 -30.6396 14.25c-2.13965 1.14941 -4.28027 2.28906 -6.34961 3.56934\\nc-11.2207 6.58008 -21.8604 14.1006 -31.9199 22.3398c-34.6807 28.4102 -61.4102 66.4307 -76.3506 108.7c-3.08984 8.74023 -5.70996 17.6504 -7.7998 26.6797c-1.48047 6.16016 -2.52051 12.4209 -3.58008 18.6602\\nc-0.400391 2.35059 -0.610352 4.73047 -0.950195 7.08984c-0.599609 3.96094 -0.75 7.96094 -1.16992 11.9404c-0.799805 9.46973 -0.709961 18.9902 -0.509766 28.4902c0.139648 3.50977 0.339844 7.00977 0.700195 10.5098\\nc0.30957 3.16992 0.459961 6.37012 0.919922 9.52051c0.410156 2.80957 0.649414 5.64941 1.16016 8.43945c0.699219 3.94043 1.2998 7.90039 2.11914 11.8203c3.43066 16.5195 8.4707 32.7295 15.2607 48.1797c1.14941 2.91992 2.58984 5.71973 3.85938 8.58984\\nc8.05078 16.71 17.9004 32.5605 29.4902 47.0605c20 25.3799 45.1006 46.6797 73.2705 62.4697c7.5 4.15039 15.1592 8.0498 23.0693 11.3701c15.8203 6.87988 32.4102 11.9502 49.3105 15.3799c3.50977 0.669922 7.04004 1.24023 10.5596 1.84961\\nc2.62012 0.470703 5.28027 0.700195 7.91016 1.08008c3.53027 0.530273 7.09961 0.680664 10.6504 1.04004c2.45996 0.240234 4.90918 0.360352 7.35938 0.509766zM244.4 413.36c-9.23047 -0.100586 -18.4307 -0.990234 -27.5703 -2.23047\\nc-7.2998 -1.08008 -14.5303 -2.59961 -21.71 -4.2998c-13.9102 -3.5 -27.4805 -8.33984 -40.46 -14.4199c-10.46 -4.99023 -20.5898 -10.7002 -30.1797 -17.2197c-4.18066 -2.9209 -8.40039 -5.80078 -12.3408 -9.03027\\nc-5.08008 -3.96973 -9.97949 -8.16992 -14.6797 -12.5898c-2.50977 -2.24023 -4.80957 -4.7002 -7.21973 -7.06055c-28.2207 -28.79 -48.4404 -65.3896 -57.5 -104.689c-2.04004 -8.44043 -3.54004 -17.0205 -4.44043 -25.6504\\nc-1.09961 -8.88965 -1.43945 -17.8496 -1.41016 -26.7998c0.110352 -7.13965 0.379883 -14.2803 1.2207 -21.3701c0.620117 -7.12012 1.87012 -14.1602 3.19922 -21.1797c1.07031 -4.65039 2.03027 -9.32031 3.33008 -13.9102\\nc6.29004 -23.3799 16.5 -45.7002 30.0703 -65.75c8.63965 -12.9805 18.7803 -24.9297 29.9805 -35.7705c16.2793 -15.8193 35.0498 -29.04 55.3398 -39.2197c7.2793 -3.51953 14.6602 -6.87012 22.2695 -9.62988c5.04004 -1.75977 10.0605 -3.57031 15.2197 -4.98047\\nc11.2607 -3.22949 22.7705 -5.59961 34.3906 -7.05957c2.91016 -0.290039 5.80957 -0.610352 8.71973 -0.900391c13.8203 -1.08008 27.7402 -1 41.54 0.430664c4.4502 0.599609 8.91992 0.989258 13.3496 1.7793c3.63086 0.670898 7.28027 1.25 10.8701 2.10059\\nc4.12988 0.979492 8.28027 1.91016 12.3604 3.07031c26.5 7.33984 51.5801 19.71 73.5801 36.1992c15.7803 11.8203 29.96 25.7607 42.1201 41.2803c3.25977 4.02051 6.16992 8.30957 9.12988 12.5498c3.38965 5.06055 6.58008 10.25 9.59961 15.54\\nc2.40039 4.44043 4.74023 8.91016 6.9502 13.4502c5.69043 12.0498 10.2803 24.6201 13.75 37.4902c2.58984 10.0098 4.75 20.1602 5.90039 30.4502c1.76953 13.4697 1.93945 27.0996 1.29004 40.6494c-0.290039 3.89062 -0.669922 7.77051 -1 11.6602\\nc-2.23047 19.0801 -6.79004 37.9102 -13.8203 55.7998c-5.9502 15.1299 -13.5303 29.6299 -22.6104 43.1299c-12.6895 18.8008 -28.2393 35.6807 -45.9697 49.8301c-25.0498 20 -54.4697 34.5498 -85.6504 42.0801c-7.7793 1.92969 -15.6895 3.33984 -23.6299 4.4502\\nc-3.90918 0.589844 -7.84961 0.820312 -11.7695 1.24023c-7.38965 0.569336 -14.8105 0.719727 -22.2197 0.580078zM139.26 364.47c13.2998 8.89062 28.0801 15.3799 43.2998 20.1807c-3.16992 -1.77051 -6.43945 -3.38086 -9.5293 -5.29004\\nc-11.21 -6.68066 -21.5205 -14.9004 -30.3799 -24.4902c-6.80078 -7.42969 -12.7607 -15.7305 -17.0107 -24.8896c-3.29004 -6.86035 -5.63965 -14.1904 -6.85938 -21.7109c-0.930664 -4.84961 -1.2998 -9.80957 -1.16992 -14.75\\nc0.129883 -13.6592 4.43945 -27.0791 11.29 -38.8193c5.91992 -10.2197 13.6299 -19.3301 22.3594 -27.2598c4.85059 -4.36035 10.2402 -8.09082 14.9502 -12.6006c2.25977 -2.18945 4.49023 -4.41992 6.42969 -6.91016c2.62012 -3.30957 4.89062 -6.98926 5.99023 -11.0996\\nc0.900391 -3.02051 0.660156 -6.2002 0.69043 -9.31055c0.0195312 -4.09961 -0.0400391 -8.19922 0.0292969 -12.2998c0.140625 -3.54004 -0.0195312 -7.08984 0.110352 -10.6299c0.0800781 -2.37988 0.0205078 -4.75977 0.0498047 -7.13965\\nc0.160156 -5.77051 0.0605469 -11.5303 0.150391 -17.2998c0.109375 -2.91016 0.0195312 -5.82031 0.129883 -8.74023c0.0302734 -1.62988 0.129883 -3.28027 -0.0302734 -4.91016c-0.910156 -0.120117 -1.81934 -0.179688 -2.72949 -0.160156\\nc-10.9902 0 -21.8799 2.62988 -31.9502 6.92969c-6 2.7002 -11.8105 5.89062 -17.0898 9.83008c-5.75 4.19043 -11.0898 8.95996 -15.79 14.3105c-6.53027 7.24023 -11.9805 15.3896 -16.6201 23.9502c-1.07031 2.0293 -2.24023 4.01953 -3.17969 6.12012\\nc-1.16016 2.63965 -2.62012 5.13965 -3.66992 7.81934c-4.05078 9.68066 -6.57031 19.9404 -8.08008 30.3105c-0.490234 4.43945 -1.09082 8.87988 -1.2002 13.3496c-0.700195 15.7305 0.839844 31.5498 4.66992 46.8203c2.12012 8.14941 4.76953 16.1797 8.30957 23.8301\\nc6.32031 14.1992 15.3398 27.1797 26.3008 38.1895c6.2793 6.2002 13.1299 11.8398 20.5293 16.6699zM314.63 384.59c2.74023 -0.740234 5.41016 -1.74023 8.08984 -2.67969c6.36035 -2.33008 12.6807 -4.83984 18.71 -7.95996\\nc13.1104 -6.44043 25.3105 -14.8105 35.8203 -24.9697c10.2002 -9.9502 18.7402 -21.6006 25.1396 -34.3408c1.28027 -2.75 2.64062 -5.45996 3.81055 -8.25977c6.30957 -15.0996 10 -31.2598 11.2295 -47.5703c0.410156 -4.54004 0.44043 -9.08984 0.450195 -13.6396\\nc0.0703125 -11.6396 -1.49023 -23.25 -4.2998 -34.5303c-1.96973 -7.26953 -4.34961 -14.4893 -7.86035 -21.1797c-3.17969 -6.63965 -6.67969 -13.1602 -10.8398 -19.2402c-6.93945 -10.4697 -15.5996 -19.8701 -25.8203 -27.2197\\nc-10.4795 -7.63965 -22.6396 -13.0195 -35.3994 -15.3799c-3.50977 -0.69043 -7.08008 -1.08008 -10.6602 -1.20996c-1.84961 -0.0605469 -3.71973 -0.160156 -5.55957 0.0996094c-0.280273 2.15039 0 4.31055 -0.0107422 6.45996\\nc-0.0292969 3.73047 0.140625 7.4502 0.100586 11.1699c0.189453 7.02051 0.0195312 14.0508 0.209961 21.0703c0.0292969 2.37988 -0.0302734 4.75977 0.0292969 7.13965c0.170898 5.07031 -0.0390625 10.1406 0.140625 15.21\\nc0.0996094 2.99023 -0.240234 6.04004 0.509766 8.95996c0.660156 2.5 1.78027 4.86035 3.08984 7.08008c4.45996 7.31055 11.0605 12.96 17.6807 18.2607c5.37988 4.17969 10.4697 8.76953 15.0195 13.8398c7.67969 8.37012 14.1699 17.8799 18.7803 28.2695\\nc2.5 5.93066 4.51953 12.1006 5.5498 18.46c0.860352 4.37012 1.05957 8.83008 1.00977 13.2705c-0.0195312 7.84961 -1.39941 15.6494 -3.63965 23.1699c-1.75 5.72949 -4.27051 11.1797 -7.08984 16.4502c-3.87012 6.92969 -8.65039 13.3096 -13.96 19.1992\\nc-9.94043 10.8506 -21.75 19.9404 -34.6006 27.1006c-1.84961 1.01953 -3.83984 1.82031 -5.62988 2.96973zM213.83 326.14c0.979492 1.18066 1.99023 2.33008 3.12012 3.37988c-0.610352 -0.929688 -1.27051 -1.80957 -1.9502 -2.67969\\nc-3.09961 -3.87988 -5.54004 -8.30957 -7.03027 -13.0596c-0.870117 -3.27051 -1.67969 -6.60059 -1.72949 -10c-0.0703125 -2.52051 -0.0800781 -5.07031 0.319336 -7.57031c1.13086 -7.62988 4.33008 -14.8496 8.77051 -21.1201c2 -2.7002 4.25 -5.26953 6.91992 -7.33008\\nc1.62012 -1.26953 3.53027 -2.08984 5.33984 -3.0498c3.11035 -1.67969 6.32031 -3.22949 9.07031 -5.47949c2.66992 -2.09082 4.5498 -5.33008 4.39941 -8.79004c-0.00976562 -73.6709 0 -147.341 -0.00976562 -221.021c0 -1.34961 -0.0800781 -2.7002 0.0400391 -4.04004\\nc0.129883 -1.47949 0.820312 -2.83008 1.46973 -4.14941c0.860352 -1.66016 1.78027 -3.34082 3.18066 -4.62012c0.849609 -0.770508 1.96973 -1.40039 3.14941 -1.24023c1.5 0.200195 2.66016 1.34961 3.4502 2.57031c0.959961 1.50977 1.67969 3.15918 2.28027 4.84961\\nc0.759766 2.12988 0.439453 4.41992 0.540039 6.62988c0.139648 4.03027 -0.0205078 8.06055 0.139648 12.0898c0.0302734 5.89062 0.0302734 11.7705 0.0605469 17.6602c0.139648 3.62012 0.0292969 7.24023 0.109375 10.8604\\nc0.150391 4.0293 -0.0195312 8.05957 0.140625 12.0898c0.0292969 5.99023 0.0292969 11.9795 0.0693359 17.9697c0.140625 3.62012 0.0205078 7.24023 0.110352 10.8604c0.139648 3.92969 -0.0205078 7.85938 0.139648 11.7803\\nc0.0302734 5.98926 0.0302734 11.9795 0.0605469 17.9697c0.160156 3.93945 -0.00976562 7.87988 0.189453 11.8193c0.290039 -1.43945 0.129883 -2.91992 0.220703 -4.37988c0.189453 -3.60938 0.419922 -7.22949 0.759766 -10.8398\\nc0.320312 -3.43945 0.439453 -6.88965 0.859375 -10.3193c0.370117 -3.10059 0.510742 -6.2207 0.950195 -9.31055c0.570312 -4.08984 0.870117 -8.20996 1.54004 -12.29c1.45996 -9.04004 2.83008 -18.1104 5.08984 -26.9902c1.13086 -4.81934 2.40039 -9.60938 4 -14.2998\\nc2.54004 -7.89941 5.7207 -15.6699 10.3105 -22.6201c1.72949 -2.63965 3.87012 -4.97949 6.09961 -7.20996c0.270508 -0.25 0.549805 -0.509766 0.879883 -0.709961c0.600586 -0.25 1.31055 0.0703125 1.7002 0.570312c0.709961 0.879883 1.16992 1.93945 1.7002 2.92969\\nc4.0498 7.7998 8.17969 15.5605 12.3398 23.3105c0.700195 1.30957 1.44043 2.62012 2.56055 3.60938c1.75 1.57031 3.83984 2.69043 5.97949 3.62988c2.87988 1.2207 5.90039 2.19043 9.03027 2.41992c6.58008 0.620117 13.1094 -0.75 19.5596 -1.84961\\nc3.69043 -0.580078 7.40039 -1.16992 11.1299 -1.41016c3.74023 -0.0996094 7.48047 -0.0498047 11.21 0.280273c8.55078 0.919922 16.9902 2.95996 24.9404 6.25c5.2998 2.24023 10.46 4.83008 15.3096 7.92969c11.46 7.20996 21.46 16.5703 30.04 27.0107\\nc1.16992 1.41992 2.25 2.89941 3.45996 4.2793c-1.19922 -3.24023 -2.66992 -6.37012 -4.15918 -9.47949c-1.25 -2.90039 -2.84082 -5.61035 -4.27051 -8.41992c-5.16016 -9.62988 -11.0195 -18.9102 -17.75 -27.5205\\nc-4.03027 -5.20996 -8.53027 -10.0498 -13.3301 -14.5703c-6.63965 -6.0498 -14.0703 -11.3691 -22.4297 -14.7598c-8.20996 -3.37012 -17.3105 -4.62988 -26.0898 -3.29004c-3.56055 0.580078 -7.01074 1.69043 -10.4102 2.87988\\nc-2.79004 0.970703 -5.39062 2.38086 -8.03027 3.69043c-3.42969 1.70996 -6.63965 3.80957 -9.70996 6.08008c2.70996 -3.06055 5.69043 -5.86035 8.7002 -8.61035c4.26953 -3.75977 8.74023 -7.30957 13.6299 -10.2295c3.98047 -2.4502 8.29004 -4.40039 12.8398 -5.51074\\nc1.45996 -0.369141 2.95996 -0.459961 4.4502 -0.599609c-1.25 -1.09961 -2.62988 -2.04004 -3.99023 -2.97949c-9.60938 -6.54004 -20.0098 -11.8604 -30.6895 -16.4307c-20.8604 -8.7002 -43.1699 -13.9697 -65.7402 -15.3398\\nc-4.66016 -0.240234 -9.32031 -0.360352 -13.9805 -0.360352c-4.97949 0.110352 -9.96973 0.130859 -14.9199 0.650391c-11.2002 0.759766 -22.29 2.73047 -33.1699 5.42969c-10.3496 2.70996 -20.5498 6.12012 -30.2998 10.5508\\nc-8.70996 3.85938 -17.1201 8.41992 -24.9902 13.79c-1.83008 1.30957 -3.74023 2.5293 -5.37012 4.0791c6.60059 1.19043 13.0303 3.39062 18.9902 6.48047c5.74023 2.86035 10.9902 6.66016 15.6299 11.0703c2.24023 2.18945 4.29004 4.58984 6.19043 7.08984\\nc-3.43066 -2.12988 -6.93066 -4.15039 -10.6201 -5.78027c-4.41016 -2.16016 -9.07031 -3.76953 -13.8105 -5.01953c-5.72949 -1.52051 -11.7393 -1.73047 -17.6094 -1.14062c-8.12988 0.950195 -15.8604 4.27051 -22.5098 8.98047\\nc-4.32031 2.93945 -8.2207 6.42969 -11.96 10.0596c-9.93066 10.1602 -18.2002 21.8105 -25.6602 33.8604c-3.94043 6.26953 -7.53027 12.75 -11.1201 19.2197c-1.0498 2.04004 -2.15039 4.0498 -3.17969 6.10059c2.84961 -2.9209 5.56934 -5.9707 8.42969 -8.88086\\nc8.99023 -8.96973 18.5596 -17.4395 29.1602 -24.4795c7.5498 -4.90039 15.6699 -9.23047 24.5596 -11.0303c3.11035 -0.729492 6.32031 -0.469727 9.46973 -0.80957c2.77051 -0.280273 5.56055 -0.200195 8.34082 -0.299805\\nc5.0498 -0.0605469 10.1094 -0.0400391 15.1592 0.15918c3.65039 0.160156 7.27051 0.660156 10.8906 1.09082c2.06934 0.25 4.10938 0.709961 6.13965 1.19922c3.87988 0.950195 8.11035 0.959961 11.8301 -0.609375c4.75977 -1.85059 8.44043 -5.64062 11.3799 -9.70996\\nc2.16016 -3.02051 4.06055 -6.2207 5.66016 -9.58008c1.16016 -2.43066 2.45996 -4.79004 3.5498 -7.26074c1 -2.23926 2.15039 -4.41992 3.41992 -6.51953c0.669922 -1.01953 1.40039 -2.15039 2.62012 -2.5498c1.06055 0.75 1.70996 1.91016 2.28027 3.03027\\nc2.09961 4.15918 3.41992 8.64941 4.88965 13.0498c2.02051 6.58984 3.78027 13.2695 5.19043 20.0195c2.20996 9.25 3.25 18.7197 4.54004 28.1299c0.55957 3.98047 0.830078 7.99023 1.30957 11.9707c0.870117 10.6396 1.90039 21.2695 2.24023 31.9395\\nc0.0800781 1.86035 0.240234 3.70996 0.25 5.57031c0.00976562 4.34961 0.25 8.68945 0.219727 13.0303c-0.00976562 2.37988 -0.00976562 4.75977 0 7.12988c0.0498047 5.06934 -0.200195 10.1396 -0.219727 15.21c-0.200195 6.60938 -0.709961 13.2002 -1.29004 19.7793\\nc-0.730469 5.88086 -1.5498 11.7803 -3.12012 17.5107c-2.0498 7.75 -5.58984 15.0293 -9.7998 21.8193c-3.16016 5.07031 -6.79004 9.87988 -11.0898 14.0303c-3.87988 3.86035 -8.58008 7.08008 -13.9404 8.4502c-1.5 0.410156 -3.05957 0.450195 -4.58984 0.639648\\nc0.0703125 2.99023 0.700195 5.93066 1.25977 8.85059c1.58984 7.70996 3.7998 15.2998 6.76074 22.5996c1.51953 4.03027 3.40918 7.90039 5.38965 11.7197c3.4502 6.56055 7.62012 12.79 12.46 18.46zM245.1 324.44\\nc0.350586 0.0595703 0.709961 0.119141 1.07031 0.189453c0.19043 -1.79004 0.0898438 -3.58008 0.0996094 -5.37012v-38.1299c-0.00976562 -1.74023 0.130859 -3.49023 -0.149414 -5.21973c-0.360352 0.0302734 -0.709961 0.0498047 -1.06055 0.0498047\\nc-0.949219 3.75 -1.71973 7.5498 -2.61914 11.3096c-0.380859 1.53027 -0.580078 3.09082 -1.07031 4.59082c-1.7002 0.239258 -3.42969 0.169922 -5.15039 0.199219c-5.05957 0.0107422 -10.1299 0 -15.1895 0.0107422\\nc-1.66016 0.00976562 -3.32031 -0.0898438 -4.98047 0.0292969c-0.0302734 0.390625 -0.259766 0.910156 0.160156 1.18066c1.28027 0.649414 2.71973 0.879883 4.05957 1.34961c3.43066 1.13965 6.88086 2.16016 10.3105 3.31055\\nc1.38965 0.479492 2.90039 0.719727 4.16016 1.54004c0.0400391 0.55957 0.0195312 1.12988 -0.0498047 1.67969c-1.23047 0.549805 -2.53027 0.870117 -3.81055 1.28027c-3.12988 1.0293 -6.29004 1.95996 -9.41016 3.01953c-1.79004 0.620117 -3.66992 1 -5.41016 1.79004\\nc-0.0292969 0.370117 -0.0693359 0.730469 -0.109375 1.08984c5.08984 0.19043 10.2002 -0.0595703 15.2998 0.120117c3.36035 0.129883 6.73047 -0.0800781 10.0898 0.0703125c0.120117 0.389648 0.259766 0.769531 0.370117 1.16016\\nc1.08008 4.93945 2.33008 9.8291 3.38965 14.75zM251.07 324.64c0.359375 -0.0498047 0.719727 -0.120117 1.08008 -0.199219c0.979492 -3.85059 1.72949 -7.76074 2.70996 -11.6104c0.359375 -1.41992 0.55957 -2.87988 1.0293 -4.27051\\nc2.53027 -0.179688 5.07031 0.0107422 7.61035 -0.0498047c5.16016 -0.120117 10.3301 -0.120117 15.4902 -0.0693359c0.759766 0.00976562 1.51953 -0.0302734 2.2793 -0.0800781c-0.0390625 -0.360352 -0.0693359 -0.720703 -0.0996094 -1.08008\\nc-1.82031 -0.830078 -3.78027 -1.25 -5.66992 -1.89062c-3.73047 -1.22949 -7.48047 -2.38965 -11.2197 -3.56934c-0.570312 -0.169922 -1.12012 -0.419922 -1.66992 -0.640625c-0.150391 -0.549805 -0.180664 -1.12012 -0.120117 -1.68945\\nc0.870117 -0.480469 1.81934 -0.810547 2.76953 -1.08984c4.87988 -1.52051 9.73047 -3.14062 14.6299 -4.60059c0.379883 -0.129883 0.780273 -0.269531 1.12988 -0.490234c0.400391 -0.269531 0.230469 -0.790039 0.150391 -1.17969\\nc-1.66016 -0.129883 -3.30957 -0.0302734 -4.96973 -0.0400391c-5.16992 -0.00976562 -10.3301 0.00976562 -15.5 -0.00976562c-1.61035 -0.0302734 -3.21973 0.0195312 -4.82031 -0.209961c-0.519531 -1.66992 -0.719727 -3.41992 -1.16992 -5.11035\\nc-0.94043 -3.56934 -1.51953 -7.24023 -2.54004 -10.7793c-0.360352 -0.0107422 -0.709961 -0.0205078 -1.05957 -0.0605469c-0.290039 1.73047 -0.150391 3.48047 -0.150391 5.21973v38.1299c0.0205078 1.78027 -0.0800781 3.58008 0.110352 5.37012zM65.0498 279.67\\nc1.12012 2.15039 2.08008 4.40039 3.37012 6.45996c-1.82031 -7.55957 -2.91016 -15.2695 -3.62012 -23c-0.799805 -7.70996 -0.849609 -15.4902 -0.540039 -23.2295c1.0498 -19.9404 5.54004 -39.8301 14.2305 -57.8809c2.99023 -5.98926 6.34961 -11.8291 10.5 -17.1094\\nc6.12012 -7.46973 12.5293 -14.7598 19.8398 -21.0898c4.7998 -4.10059 9.99023 -7.78027 15.54 -10.8008c3.26953 -1.64941 6.50977 -3.38965 9.93945 -4.67969c5.01074 -2.03027 10.1904 -3.60938 15.4209 -4.93945c3.8291 -0.959961 7.7793 -1.41016 11.5195 -2.70996\\nc5 -1.57031 9.46973 -4.61035 13.0303 -8.43066c4.92969 -5.22949 8.08984 -11.8701 10.2002 -18.6699c0.989258 -2.89941 1.58984 -5.91016 2.16992 -8.91992c0.149414 -0.75 0.219727 -1.51953 0.15918 -2.29004c-6.5 -2.78027 -13.2598 -5.05957 -20.2598 -6.17969\\nc-4.10938 -0.780273 -8.29004 -0.990234 -12.46 -1.08008c-10.25 -0.240234 -20.4697 1.75977 -30.1201 5.12012c-3.73926 1.41992 -7.48926 2.84961 -11.0293 4.71973c-8.06055 3.83984 -15.6406 8.7002 -22.46 14.46c-2.9209 2.5498 -5.83008 5.12988 -8.40039 8.03027\\nc-9.16016 9.83008 -16.2998 21.4102 -21.79 33.6494c-2.38965 5.55078 -4.61035 11.1807 -6.37012 16.96c-1.16992 3.94043 -2.36035 7.89062 -3.25977 11.9102c-0.75 2.94043 -1.21973 5.9502 -1.87012 8.91992c-0.459961 2.14062 -0.69043 4.32031 -1.03027 6.48047\\nc-0.849609 5.42969 -1.2793 10.9297 -1.33008 16.4297c0.110352 6.18066 0.25 12.3701 1.07031 18.5c0.400391 2.86035 0.669922 5.74023 1.15039 8.60059c0.979492 5.69922 2.13965 11.3691 3.70996 16.9297c3.08984 11.6504 7.47949 22.9502 12.6895 33.8398z\\nM428.78 286.11c1.09961 -1.66016 1.91016 -3.48047 2.7793 -5.26074c2.10059 -4.44922 4.24023 -8.89941 6.02051 -13.4893c7.61035 -18.7607 12.2998 -38.79 13.04 -59.0508c0.0195312 -1.75977 0.0703125 -3.51953 0.110352 -5.29004\\nc0.129883 -9.56934 -1.27051 -19.0898 -3.18066 -28.4492c-0.729492 -3.58984 -1.54004 -7.16992 -2.58008 -10.6904c-4.04004 -14.7197 -10 -29 -18.4102 -41.7803c-8.20996 -12.5693 -19.0098 -23.5498 -31.8398 -31.4092\\nc-5.72949 -3.59082 -11.79 -6.64062 -18.0498 -9.19043c-5.78027 -2.19043 -11.71 -4.03027 -17.7998 -5.11035c-6.40039 -1.0498 -12.9102 -1.51953 -19.4004 -1.22949c-7.91992 0.479492 -15.7793 2.07031 -23.21 4.84961\\nc-1.93945 0.799805 -3.93945 1.45996 -5.83984 2.33008c-0.209961 1.50977 0.25 2.99023 0.530273 4.45996c1.16016 5.74023 3.03027 11.3604 5.7002 16.5801c2.36914 4.50977 5.51953 8.65039 9.45996 11.9004c2.42969 2.0498 5.23926 3.60938 8.15918 4.83008\\nc3.58008 1.5 7.4707 1.96973 11.2402 2.83008c7.23047 1.70996 14.3701 3.92969 21.1504 7c10.3496 4.64941 19.71 11.3799 27.6494 19.46c1.59082 1.60938 3.23047 3.17969 4.74023 4.86914c3.37012 3.76074 6.70996 7.57031 9.85059 11.5303\\nc7.47949 10.0703 12.8193 21.5898 16.71 33.4805c1.58008 5.2998 3.20996 10.5996 4.20996 16.0498c0.629883 2.87012 1.04004 5.78027 1.51953 8.67969c0.870117 6.08984 1.58984 12.2207 1.67969 18.3799c0.120117 6.65039 0.140625 13.3203 -0.529297 19.9404\\nc-0.730469 7.99023 -1.87012 15.96 -3.70996 23.7803z\\\" />\\n    <glyph glyph-name=\\\"phoenix-squadron\\\" unicode=\\\"&#xf511;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M96 384.62c46.4902 36.1299 105.55 56.0703 164.51 54.5703c29.5801 0.379883 59.1104 -5.37012 86.9102 -15.3301c-24.1299 4.62988 -49 6.33984 -73.3799 2.44922c-42.8701 -5.30957 -83.04 -27.1494 -111.83 -59.1797c5.66992 1 10.7803 3.66992 16 5.86035\\nc18.1396 7.87012 37.4902 13.2598 57.2305 14.8301c19.7393 2.12988 39.6396 0.429688 59.2793 -1.91992c-14.4199 -2.79004 -29.1201 -4.57031 -43 -9.59082c-34.4297 -11.0693 -65.2695 -33.1592 -86.2998 -62.6299c-13.7998 -19.71 -23.6299 -42.8594 -24.6699 -67.1299\\nc-0.349609 -16.4902 5.21973 -34.8096 19.8301 -44c7.01465 -4.23926 19.3594 -7.67969 27.5547 -7.67969c2.77539 0 7.23926 0.420898 9.96484 0.939453c15.4502 2.45996 30.0703 8.64062 43.6006 16.3301c11.5195 6.82031 22.6699 14.5508 32 24.25\\nc3.79004 3.2207 2.53027 8.4502 2.62012 12.79c-2.12012 0.339844 -4.37988 1.11035 -6.30078 -0.299805c-9.47656 -5.19531 -25.5244 -12.0811 -35.8193 -15.3701c-20 -6.16992 -42.1602 -8.45996 -62.1006 -0.779297c12.79 -1.73047 26.0605 -0.310547 37.7402 5.43945\\nc20.2305 9.71973 36.8105 25.2002 54.4404 38.7705c23.0107 17.7168 62.8379 42.4951 88.8994 55.3096c25.71 12 52.9404 22.7803 81.5703 24.1201c-15.6299 -13.7197 -32.1504 -26.5205 -46.7803 -41.3799c-14.5098 -14 -27.46 -29.5 -40.1094 -45.1807\\nc-3.52051 -4.59961 -8.9502 -6.93945 -13.5801 -10.1592c-18.8516 -12.6768 -42.0986 -39.6016 -51.8906 -60.1006c-9.33008 -19.6797 -14.5 -41.8496 -11.7695 -63.6494c1.93945 -13.6904 8.70996 -27.5908 20.8994 -34.9102c12.9004 -8 29.0508 -8.07031 43.4805 -5.10059\\nc32.7998 7.4502 61.4297 28.8906 81 55.8408c20.4404 27.5195 30.5195 62.1992 29.1602 96.3496c-0.520508 7.5 -1.57031 15 -1.66016 22.4902c8 -19.4805 14.8203 -39.71 16.6504 -60.8301c2 -14.2803 0.75 -28.7598 -1.62012 -42.9004\\nc-1.91016 -11 -5.66992 -21.5098 -7.78027 -32.4297c17.209 19.293 34.833 55.6123 39.3398 81.0703c1.24121 7.8584 2.24902 20.6953 2.24902 28.6514c0 21.957 -7.37305 55.999 -16.459 75.9883c20.7803 -32 32.3398 -69.5801 35.71 -107.48\\nc0.490234 -12.7295 0.490234 -25.5098 0 -38.2295c-2.37305 -28.7334 -15.6289 -72.5254 -29.5898 -97.75c-26.1201 -47.3398 -68 -85.6299 -117.19 -108c-78.29 -36.2305 -174.68 -31.3203 -248 14.6797c-32.9014 20.1289 -73.8711 64.3281 -91.4492 98.6602\\nc-12.291 24.2021 -23.6523 65.8301 -25.3604 92.9199v31.3398c3.92969 69.7402 40.8701 135.92 96 178.36zM318 304.29c4.54688 0.770508 11.7148 2.77734 16 4.47949c5 1.77051 9.24023 5.94043 10.3203 11.2207c-8.95996 -4.99023 -17.9805 -9.91992 -26.3203 -15.7002z\\n\\\" />\\n    <glyph glyph-name=\\\"sith\\\" unicode=\\\"&#xf512;\\\" \\nd=\\\"M0 416l118.75 -69.71l-11.5195 58.9004l91.0596 -69.8701c8.5 1.50977 17.0996 2.29004 25.71 2.29004s17.21 -0.770508 25.71 -2.29004l91.0596 69.8701l-11.5195 -58.9004l118.75 69.71l-69.71 -118.75l58.8604 11.5195l-69.8408 -91.0293\\nc3.04004 -17.0098 3.03027 -34.4404 0 -51.4502l69.8408 -91.0303l-58.8604 11.5205l69.71 -118.78l-118.75 69.71l11.5195 -58.8604l-91.0293 69.8408c-17.0098 -3.04004 -34.46 -3.04004 -51.4805 0l-91.0293 -69.8408l11.5195 58.8604l-118.75 -69.71l69.71 118.78\\nl-58.8604 -11.5205l69.8408 91.0303c-1.25488 7.04492 -2.27246 18.5693 -2.27246 25.7246c0 7.15625 1.01758 18.6807 2.27246 25.7256l-69.8408 91.0293l58.8604 -11.5195zM224 316.22c-31.7998 0 -63.6104 -12.0898 -87.8496 -36.3398\\nc-48.4902 -48.4902 -48.5 -127.2 0 -175.7c48.5 -48.4893 127.21 -48.5195 175.699 -0.0292969c48.4902 48.4893 48.5 127.199 0 175.699c-24.25 24.25 -56.0498 36.3701 -87.8496 36.3701zM224 279.56c22.4199 0 44.8301 -8.51953 61.9199 -25.6094\\nc34.1904 -34.1904 34.1797 -89.6904 0 -123.87c-34.1895 -34.1797 -89.6504 -34.1904 -123.84 0c-34.1904 34.1895 -34.1797 89.6895 0 123.87c17.0898 17.0898 39.5 25.6094 61.9199 25.6094z\\\" />\\n    <glyph glyph-name=\\\"trade-federation\\\" unicode=\\\"&#xf513;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 439.2c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -43.5996c129.7 0 234.8 105.1 234.8 234.8s-105.1 234.8 -234.8 234.8s-234.8 -105.1 -234.8 -234.8s105.1 -234.8 234.8 -234.8zM403.1 284.9v-0.100586h-145.699\\nv-34.7998h83.2998v-47h-83.2998v-195.8h-48.8008v196.8h-117.699l-36.7002 46h155.1v81.7002h193.8v-46.7998zM329.8 239.8h-82.8994v56.2002h145v24.4004h-171.801v-80.6006h-143.899l20.0996 -23.8994h123.8v-197.4h26.8008v197.4h82.8994v23.8994zM168.5 308.8l22 9.2998\\nl-15.7998 -18.0996l15.7002 -18.0996l-22.2002 9.5l-12.2998 -20.5l2.09961 24l-23.2998 5.39941l23.5 5.40039l-2.10059 23.7998zM138.9 328.5l9.5 -10.2002l-13.8008 5.2998l-6.7998 -12.1992l0.799805 14.6992l-13.6992 2.7002l14.2998 3.7998l-1.7002 13.9004\\nl8 -12.4004l12.7002 5.90039zM304.3 183.3l-9.2998 -10.7998l9.40039 -10.7002l-13.1006 5.5l-7.2998 -12.2002l1.2002 14.2002l-13.9004 3.2002l13.9004 3.2002l-1.2998 14.2002l7.2998 -12.2002zM411.2 260.5l-15 -17.5996l15.0996 -17l-21.2002 8.7998l-11.5 -19.6006\\nl1.80078 22.9004l-22.2002 4.90039l22.2998 5.39941l-2.2002 22.7002l12 -19.5996zM248 418.1c125.3 0 226.9 -101.6 226.9 -226.899s-101.601 -226.9 -226.9 -226.9s-226.9 101.601 -226.9 226.9s101.601 226.899 226.9 226.899zM342.6 252h-83.1992v30.9004h145.699\\nv50.6992h-197.8v-81.5996h-157.399l40 -49.9004h116.699v-196.8h52.7002v195.7h83.2998v51zM248 404.8c-94.5996 0 -174.9 -61.5996 -202.9 -146.8h157.4v81.5996h199.1c-38.7998 40.2002 -93.2998 65.2002 -153.6 65.2002zM248 -22.2998c117.9 0 213.5 95.5996 213.4 213.5\\nc0 51.8994 -18.5 99.5 -49.3008 136.5v-50.7998h-145.6v-19.2002h83.2002v-62.7002h-83.2998v-195.8h-64.6006v196.8h-114.7l-43.7998 56.2998c-5.7998 -19.2998 -8.89941 -39.8994 -8.89941 -61.0996c0 -117.9 95.6992 -213.5 213.6 -213.5zM178.8 173l22.7002 9.2998\\nl-16.9004 -17.0996l15.8008 -18.7998l-21.5 10.7998l-13 -20.9004l3.69922 23.7998l-23.7998 5.90039l23.7002 3.90039l-1.7002 24.5z\\\" />\\n    <glyph glyph-name=\\\"wolf-pack-battalion\\\" unicode=\\\"&#xf514;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M267.73 -23.5303l-11.4404 -21.1396l-11.4404 21.1104l-10.5596 -15.8408l-5.28027 12.3203l-5.2793 -7v-29.8301c-21.0605 7.91992 -21.1104 66.8604 -25.5107 97.21c-4.62012 31.8799 0.879883 92.8105 -81.3701 149.11c8.88086 23.5996 12 49.4297 2.64062 80.0498\\nc-27.8701 -3.33008 -53.9404 -10.5801 -63.3398 -54.0996l30.3496 -8.36035c-11.2002 -23.04 -17.0195 -46.7598 -13.2002 -72.1396l27.2705 7l6.16016 -33.4307l18.4697 7l8.7998 -33.4297l19.3496 7l-26.4297 -21.0596l-8.7998 28.1494l-24.6299 -5.28027l-7 35.6309\\nl-26.3906 -14.5205c-0.25 20.0205 -6.95996 58.0605 8.80078 84.4502l-26.3906 -5.28027c-3.99023 22.0703 2.37988 39.21 7.91992 56.7402l-22.4297 -9.67969c0.44043 25.0693 29.9404 56.79 61.5898 58.5098c20.2197 1.08984 56.7305 25.1602 54.1006 51.8994\\nc-1.95996 19.8701 -17.4502 42.6201 -43.1104 49.7002c43.9795 -36.5098 9.71973 -67.2998 -5.28027 -73.46c-4.39941 11.4404 -17.54 69.0801 0 130.2c40.4697 -22.8701 89.7002 -65.0996 93.21 -147.86l58.0605 -38.71l3.51953 -93.25l-107.33 59.8203l-7 -7\\nl17.5801 -3.50977l44 -38.71l15.8398 5.2793l28.1504 -49.2598l3.51953 -119.64l-21.1094 -15.8398l32.5498 -15.8398l32.5498 15.8398l-21.1094 15.8398l3.51953 119.64l28.0996 49.25l15.8408 -5.28027l44 38.7109l17.5898 3.51953l-7 7l-107.3 -59.7695l3.51953 93.25\\nl58 38.71c3.5498 82.6895 52.8096 124.92 93.2002 147.79c17.54 -61.1201 4.39941 -118.761 0 -130.2c-14.96 6.16016 -49.2803 36.9502 -5.28027 73.46c-25.6602 -7.08008 -41.1104 -29.8301 -43.1104 -49.7002c-2.63965 -26.7305 33.8809 -50.8096 54.1006 -51.9004\\nc31.6396 -1.70996 61.1396 -33.4297 61.5801 -58.5l-22.4307 9.68066c5.54004 -17.5303 11.9209 -34.6699 7.9209 -56.7402l-26.3906 5.28027c15.7998 -26.3906 9.0498 -64.4502 8.7998 -84.4502l-26.3896 14.5195l-7 -35.6299l-24.5898 5.24023l-8.7998 -28.1504\\nl-26.3906 21.1104l19.3506 -7l8.7998 33.3896l18.4697 -7l6.16016 33.4307l27.2803 -7.05078c3.7998 25.3809 -2.0498 49.1406 -13.2002 72.1406l30.3496 8.35938c-9.42969 43.5205 -35.4297 50.7305 -63.3398 54.1006\\nc-9.35938 -30.6201 -6.24023 -56.4404 2.64062 -80.0498c-82.25 -56.3008 -76.75 -117.221 -81.3701 -149.11c-4.40039 -30.3496 -4.4502 -89.29 -25.5107 -97.21v29.9502l-5.2793 7l-5.28027 -12.3203zM346.9 71.4697l-15.8408 10.5303\\nc7.4707 4.36035 13.7607 8.41992 19.3506 12.3203c-0.600586 -7.2207 -0.270508 -13.8398 -3.50977 -22.8398v-0.0107422zM375.05 120.73c-0.399414 -10.9404 -0.899414 -21.6602 -1.75977 -31.6709c-7.84961 1.86035 -15.5703 3.80078 -21.1104 7\\nc8.24023 7.94043 15.5508 16.3203 22.8701 24.6807v-0.00976562zM399.68 115.45l-23.75 6.16016c5.62695 7.16797 13.9014 19.3848 18.4707 27.2695c3.22949 -9.21973 5.2793 -20 5.2793 -33.4297zM403.2 196.39c19.4395 -12.8096 27.7998 -33.6592 29.9102 -56.2998\\nc-12.3203 4.53027 -24.6299 9.31055 -36.9502 10.5605c5.05957 12 6.64941 28.1396 7 45.7393h0.0400391zM401.44 242.13c18.5596 -2.62988 35.1494 -9.18945 45.7598 -28.1494c-14.2197 -4.36035 -24.7803 -5.9707 -44 -14.0801\\nc0.0800781 13.4092 -0.950195 27.9297 -1.75977 42.2295zM165.68 71.4805c-3.23926 9 -2.91016 15.5791 -3.50977 22.8398c5.58984 -3.90039 11.8799 -7.95996 19.3496 -12.3203zM137.53 120.74c7.31934 -8.36035 14.6299 -16.7402 22.8701 -24.6699\\nc-5.54004 -3.2002 -13.2607 -5.14062 -21.1104 -7c-0.860352 10.0098 -1.36035 20.7295 -1.75977 31.6699zM112.89 115.46c0 13.4297 2 24.21 5.28027 33.4297c4.56934 -7.88477 12.8438 -20.1016 18.4697 -27.2695zM109.37 196.4h0.0898438\\nc0.349609 -17.6006 2 -33.7402 7 -45.7402c-12.3701 -1.25 -24.6797 -6.03027 -37 -10.5605c2.11035 22.6406 10.4697 43.4902 29.9102 56.3008zM111.13 242.14c-0.80957 -14.2998 -1.83984 -28.8193 -1.75977 -42.2295c-19.2197 8.10938 -29.7803 9.71973 -44 14.0801\\nc10.6299 18.9502 27.2295 25.5195 45.7598 28.1494z\\\" />\\n    <glyph glyph-name=\\\"hornbill\\\" unicode=\\\"&#xf592;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M76.3799 77.7002c0.182617 -1.37207 0.331055 -3.6084 0.331055 -4.99219c0 -20.8662 -16.9346 -37.8008 -37.7998 -37.8008s-37.7998 16.9346 -37.7998 37.8008c0 20.8652 16.9346 37.7998 37.7998 37.7998c1.49805 0 3.91602 -0.173828 5.39844 -0.387695\\nc-78.2793 111.35 52 190.53 52 190.53c-5.85938 -43 -8.23926 -91.1602 -8.23926 -91.1602c-67.3105 -41.4902 0.929688 -64.0605 39.8096 -72.8701c18.6445 -50.7129 77.6279 -91.9023 131.66 -91.9404c1.91992 0 3.76953 0.209961 5.66992 0.280273l0.110352 -18.8604\\nc-99.2207 -1.38965 -158.7 29.1406 -188.94 51.6006zM184.38 405.4c109.75 73.9395 187.601 -54.0605 187.601 -54.0605c-43.04 5.86035 -91.1807 8.24023 -91.1807 8.24023c-43.0996 70.0098 -65.7998 -6.58008 -73.7998 -44.29\\nc-48.4805 -19.5557 -87.8545 -77.8545 -87.8896 -130.13c0 -0.910156 0.139648 -1.78027 0.139648 -2.67969l-21.8398 -0.150391c-1.41016 100.43 29.8701 160.09 52.4199 190c-0.842773 -0.0683594 -2.21191 -0.123047 -3.05664 -0.123047\\nc-20.9482 0 -37.9502 17.001 -37.9502 37.9492c0 20.9492 17.002 37.9502 37.9502 37.9502c13.1934 0 28.5273 -9.65723 34.2266 -21.5566c2.04199 -4.25488 3.7002 -11.5381 3.7002 -16.2578c0 -1.35547 -0.143555 -3.54785 -0.320312 -4.8916zM488.57 271.23\\nc-4.21777 -2.00879 -11.3906 -3.63867 -16.0615 -3.63867c-0.886719 0 -2.32422 0.0625 -3.20898 0.138672c84.4502 -113.45 -49 -194.61 -49 -194.61c5.87012 43.0303 8.20996 91.1602 8.20996 91.1602c66.6006 40.96 0.640625 63.54 -38.46 72.54\\nc-19.3633 48.9775 -77.8232 88.7422 -130.49 88.7598c-2.75 0 -5.43945 -0.259766 -8.13965 -0.410156l-0.139648 22.5c93.6094 1.33008 151.72 -25.7998 183.45 -47.7402c-0.226562 1.52539 -0.40918 4.01465 -0.40918 5.55566c0 20.9434 16.9971 37.9404 37.9395 37.9404\\nc20.9434 0 37.9404 -16.9971 37.9404 -37.9404c0 -13.2236 -9.69043 -28.5703 -21.6309 -34.2549zM374.06 11.7598v-0.0595703c0.0917969 0.000976562 0.239258 0.000976562 0.330078 0.000976562c20.9375 0 37.9297 -16.9922 37.9297 -37.9297\\ns-16.9922 -37.9297 -37.9297 -37.9297c-13.1963 0 -28.5273 9.66211 -34.2197 21.5684c-1.76367 3.66602 -3.39453 9.93848 -3.63965 14c-111.98 -80.3398 -191.9 51 -191.9 51c43.0703 -5.87988 91.1904 -8.21973 91.1904 -8.21973\\nc41.3301 -67.1709 63.9199 0.540039 72.7695 39.4893c50.418 18.7646 91.3604 77.6543 91.3906 131.45c0 2.08008 -0.220703 4.08984 -0.300781 6.15039l19.5205 0.139648c1.28027 -89.9697 -23.71 -147.2 -45.1406 -179.66z\\\" />\\n    <glyph glyph-name=\\\"mailchimp\\\" unicode=\\\"&#xf59e;\\\" \\nd=\\\"M330.61 204.48c-2.50977 3.17969 -4.70996 8.31934 -5.9707 14.3193c-2.22949 10.6807 -1.98926 18.4102 4.24023 19.4199c6.23047 1.01074 9.25 -5.45996 11.4805 -16.1299c1.5 -7.17969 1.20996 -13.7803 -0.450195 -17.6094\\nc-1.27832 0.165039 -3.36133 0.299805 -4.65039 0.299805c-1.28809 0 -3.37207 -0.134766 -4.64941 -0.299805zM277.05 196c-4.45996 1.95996 -10.2598 4.13965 -17.2598 3.7002c-12.5996 -0.770508 -21.75 -7.21973 -22.5996 -3.48047\\nc-0.400391 1.83984 2.40918 4.87988 5.40918 7.06055c4.5791 3.35254 12.9014 6.07422 18.5762 6.07422c3.45312 0 8.84473 -1.07324 12.0342 -2.39453c8.63965 -3.7002 14.0098 -11.1504 12.1201 -13.0898c-1.08008 -1.12988 -3.81055 0.129883 -8.28027 2.12988z\\nM268.05 190.87c9.68066 1.14941 16.8604 -4.62988 15.4004 -6.85059c-0.629883 -1.00977 -2.02051 -0.829102 -4.94043 -0.489258c-1.55078 0.239258 -4.08301 0.433594 -5.65234 0.433594c-3.72656 0 -9.58105 -1.06738 -13.0674 -2.38379\\nc-4.04004 -1.62012 -4.30957 -1.15039 -5.20996 -0.810547c-1.53027 3.57031 4.40039 8.68066 13.4697 10.1006zM322.22 173.77c-3.40039 -6.91016 -17.7002 0.0703125 -14.2998 7c3.40039 6.93066 17.6797 -0.129883 14.2998 -7zM337.88 194.24\\nc7.69922 -0.149414 7.42969 -16.0605 -0.259766 -15.9307c-7.69043 0.130859 -7.40039 16.0605 0.259766 15.9307zM119.09 115.34c4.0293 0.910156 3.40039 -1.25 3.37012 -0.359375c0.256836 -0.317383 0.46582 -0.904297 0.46582 -1.3125\\nc0 -0.299805 -0.119141 -0.755859 -0.265625 -1.01758c-3.16016 -7.37012 -20.1904 -7.68066 -21.5801 9c-0.910156 10.8594 9.30957 21.0293 -2.28027 28.6191c-1.77734 1.17773 -4.95117 2.13281 -7.08301 2.13281c-3.84961 0 -8.67285 -2.62207 -10.7666 -5.85254\\nc-3.2998 -5.16016 -3.11035 -12.2002 -7.37988 -11.6299c-3.7207 0.540039 -3.70996 14.4805 5 24.0801c7.22949 8 25.9492 11.9297 35.0498 -5.54004c8.11035 -15.3896 -8.2002 -27.7695 -3 -35.7695c2.46973 -3.80078 7.14941 -2.66016 8.46973 -2.35059zM418.81 132.41\\nc6.44043 0 16.5605 -7.5 16.5605 -25.2705c0 -17.7695 -7.37012 -37.9092 -9.11035 -42.3799c-54.3896 -130.279 -264.56 -130.06 -322.29 3c-31.5293 -0.0400391 -64.1699 26.9805 -67.5293 60.3799c-0.256836 2.25195 -0.463867 5.91992 -0.463867 8.18652\\nc0 7.21289 2.04395 18.5537 4.56348 25.3135l-14.7598 12.5107c-67.5498 57.04 143.72 291.85 211.27 232.93c0.339844 -0.299805 22.9902 -22.5205 23.0498 -22.5703l12.5508 5.33008c59.2695 24.5303 107.359 12.6904 107.42 -26.4697\\nc0.0292969 -20.3604 -12.9404 -44.1006 -33.7305 -65.6504c26.1699 -24.2998 20.0205 -71.6094 21.5205 -83c7.19922 -2 30.6992 -7.62012 41.0996 -18.54c18.3604 -19.25 5.52051 -39.5801 3.07031 -43.25c4.20996 -11.2998 3.42969 -8.79004 6.7793 -20.5195z\\nM102.81 84.25c29.4502 -0.680664 38.6309 28.2002 34.0908 57.8398c-9.74023 62.9404 -90.1699 48.9805 -84 -12.3301c2.44922 -24.3594 27.0898 -44.8994 49.9092 -45.5098zM84.2998 198.45c19.3105 51.8096 51.54 99.5498 94.2002 132.399\\nc31.6504 26.4102 65.7998 45.3506 65.7998 45.3506s-18.3896 21.3193 -23.9395 22.8896c-34.1699 9.23047 -107.94 -41.6494 -155.051 -108.88c-19.0596 -27.21 -46.3096 -75.3604 -33.2998 -100.21c1.58984 -3 10.71 -10.9297 15.5898 -15\\nc8.18066 11.9102 21.54 20.5 36.7002 23.4502zM323.18 97.2998c2.58984 0.259766 0.560547 -2.53027 0.560547 -2.53027s-27.4004 -12.75 -71 0.740234c1.20996 -10.2295 11.1699 -14.8193 15.9395 -16.6699c31.4004 -12.21 86.6904 -2.58008 128.46 26\\nc0.850586 0.589844 1.41992 0 0.730469 -1c-28.9697 -41.3496 -128.73 -54.7598 -151.37 -21.3496c-12.0801 17.8301 -0.599609 43.8594 19.5498 41.1494c6.7998 -0.769531 53.7705 -8 100.48 13.6807c27.4893 12.7598 37.8701 26.79 36.3096 38.1602\\nc-0.447266 3.00293 -2.57031 7.16504 -4.74023 9.28906c-5 4.83008 -12.79 8.60059 -26 12.3105c-4.35938 1.22949 -7.31934 2.00977 -10.5098 3.05957c-5.67969 1.83008 -8.47949 3.33008 -9.10938 14c-0.280273 4.62988 -1.09082 20.9102 -1.38086 27.6299\\nc-0.519531 11.7607 -1.91992 27.8506 -11.9199 34.4902c-2.37305 1.51953 -6.58691 2.75195 -9.40527 2.75195c-1.1748 0 -3.05371 -0.229492 -4.19434 -0.511719c-5.69043 -0.969727 -9.06055 -4.00977 -13.2598 -7.50977\\nc-12.4404 -10.3701 -22.9502 -12.0605 -34.6406 -11.5605c-6.98926 0.290039 -14.3994 1.37988 -22.8799 1.87988l-5 0.290039c-19.5801 1 -40.5693 -15.9092 -44.0693 -39.9092c-4.86035 -33.4307 19.3291 -50.7002 26.3291 -60.8301\\nc0.912109 -1.0918 1.77246 -3.12598 1.9209 -4.54004c0 -1.94043 -1.25 -3.48047 -2.48047 -4.79004c-19.9805 -20.54 -26.3701 -53.1699 -18.8398 -80.3701c0.768555 -2.76562 2.35938 -7.12891 3.5498 -9.74023c17.7002 -41.2598 72.4902 -60.4795 126 -43\\nc5.81152 1.89844 14.9238 5.74219 20.3398 8.58008c9.78906 4.8418 23.7441 15.2852 31.1504 23.3096c14.2002 14.8408 22.6396 30.9707 25.9297 50.8408c2.81055 18.6191 -7.78027 18.7598 -11.4395 18.0996c-1.13477 6.94531 -4.32422 17.8223 -7.12012 24.2803\\nc-15.6299 -12.3506 -35.71 -20.9707 -51 -25.3506c-69.4004 -19.9102 -90.1904 6.35059 -96.4004 -13.8096c33.7705 -12.3701 69.5098 -7.07031 69.5098 -7.07031zM171.31 290.5l0.0605469 0.00976562c-0.0947266 -0.115234 -0.171875 -0.331055 -0.171875 -0.481445\\nc0 -0.418945 0.34082 -0.759766 0.759766 -0.759766c0.124023 0 0.308594 0.0546875 0.412109 0.121094c11.4199 8.30078 64.9502 42.7705 134.5 26.8301c0.860352 -0.189453 1.39941 1.29004 0.639648 1.7207c-11.3398 6.33984 -28.6895 10.6494 -41 10.7393\\nc-0.404297 0.00976562 -0.732422 0.345703 -0.732422 0.75c0 0.134766 0.0634766 0.332031 0.142578 0.44043c1.84668 2.41602 5.30078 5.88379 7.70996 7.74023c0.166992 0.126953 0.302734 0.401367 0.302734 0.611328c0 0.424805 -0.344727 0.770508 -0.770508 0.770508\\nc-0.0146484 0 -0.0380859 -0.000976562 -0.0517578 -0.00195312c-17.5205 -1.08008 -37.5107 -9.4707 -49 -17.2998c-0.107422 -0.0751953 -0.300781 -0.136719 -0.431641 -0.136719c-0.414062 0 -0.75 0.335938 -0.75 0.75\\nc0 0.0498047 0.00976562 0.12793 0.0214844 0.176758c0.899414 4.30957 3.72949 9.98926 5.18945 12.6494c0.0566406 0.0947266 0.102539 0.261719 0.102539 0.37207c0 0.402344 -0.327148 0.729492 -0.730469 0.729492\\nc-0.110352 0 -0.276367 -0.0449219 -0.37207 -0.101562c-18.4697 -9.4502 -39.0898 -26.2803 -55.8301 -45.6299z\\\" />\\n    <glyph glyph-name=\\\"megaport\\\" unicode=\\\"&#xf5a3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M214.5 238.4l33.4004 33.3994l33.3994 -33.3994v-66.4004l-33.2998 -33.2998l-33.5 33.5v66.2002zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM393.1 25.5996h0.100586v87.1006l-59.7002 59.7002v87.5996l-59.5 59.5\\nv75.5996l-26.0996 19.2002l-26.1006 -19.2002v-75.5996l-59.5 -59.5v-87.9004l-59.5 -59.5v-87l26.1006 -19.1992l26.0996 19.1992v65.5l33.5 33.4004l33.4004 -33.4004v-65.5l26.0996 -19.1992l26.2002 19.1992v65.5l33.3994 33.4004l33.4004 -33.4004v-65.5l26 -19.1992z\\n\\\" />\\n    <glyph glyph-name=\\\"nimblr\\\" unicode=\\\"&#xf5a8;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M246.6 148.71c15.5703 0 27.1504 -11.46 27.1504 -27s-11.6201 -27 -27.1504 -27c-15.6992 0 -27.1494 11.5703 -27.1494 27s11.5498 27 27.1494 27zM113 121.75c0 15.6104 11.6797 27 27.1504 27c15.4697 0 27.1494 -11.46 27.1494 -27s-11.4697 -27 -27.1494 -27\\nc-15.4404 0 -27.1504 11.3096 -27.1504 27zM191.76 289c98.3701 0 177.76 -78.9102 177.76 -176.48c0 -97.5693 -79.6094 -176.52 -177.76 -176.52c-98.1494 0 -177.76 78.8701 -177.76 176.52v335.48l45.25 -227c30.2002 48.2305 97.75 68 132.51 68zM191.76 -19.1201\\nc73.2402 0 132.51 58.96 132.51 131.64c0 72.6807 -59.2393 131.54 -132.51 131.54c-73.2695 0 -132.51 -58.8994 -132.51 -131.59c0 -72.6895 59.2402 -131.59 132.51 -131.59z\\\" />\\n    <glyph glyph-name=\\\"rev\\\" unicode=\\\"&#xf5b2;\\\" \\nd=\\\"M289.67 173.11c0 -36.1943 -29.375 -65.5801 -65.5703 -65.5801c-36.1943 0 -65.5693 29.375 -65.5693 65.5693c0 36.1953 29.375 65.5703 65.5693 65.5703h0.0107422c36.1445 -0.0439453 65.5156 -29.415 65.5596 -65.5596zM429.22 178.16v-210.16h-210.16v0.110352\\nc-110.939 2.70996 -200.06 93.4092 -200.06 205c0 108.569 84.2998 197.319 191 204.569v38.3203l108.77 -62.7803l-108.77 -62.79v39.1201c-80 -7.16016 -143 -74.5498 -143 -156.43c0 -86.6201 70.4902 -157.12 157.11 -157.12s157.09 70.5 157.09 157.12\\nc-0.0224609 47.1709 -32.1934 106.235 -71.8105 131.84l45.3799 26.2002c39.8018 -32.8584 73.0977 -101.402 74.3203 -153h0.129883z\\\" />\\n    <glyph glyph-name=\\\"shopware\\\" unicode=\\\"&#xf5b5;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M403.5 -7.41016c-36.0898 -26.8223 -101.875 -48.5908 -146.841 -48.5908c-0.181641 0 -0.477539 0.000976562 -0.65918 0.000976562c-137.19 0 -248 111 -248 248c0 137.19 111 248 248 248h0.211914c52.3994 0 126.538 -28.4482 165.488 -63.5\\nc0.643555 -0.585938 1.16602 -1.76855 1.16602 -2.63965c0 -1.9707 -1.59961 -3.56934 -3.57031 -3.56934c-0.125977 0 -0.330078 0.0126953 -0.456055 0.0292969c-15.2227 2.03223 -40.042 3.68164 -55.4004 3.68164\\nc-0.361328 0 -0.948242 -0.000976562 -1.30957 -0.00195312c-129.36 0 -222.399 -53.4697 -222.399 -155.35c0 -109 92.1299 -145.881 176.829 -178.73c33.6406 -13 65.4004 -25.3604 87 -41.5898c0.788086 -0.592773 1.42676 -1.87402 1.42676 -2.86035\\nc0 -0.985352 -0.638672 -2.2666 -1.42676 -2.85938zM503 214.91c0.578125 -6.2832 1.04688 -16.5039 1.04688 -22.8135c0 -25.8613 -7.62793 -66.4043 -17.0273 -90.4971c-0.495117 -1.2373 -1.98047 -2.24316 -3.31348 -2.24316\\nc-0.495117 0 -1.25 0.19043 -1.68652 0.423828c-29.4893 16.3594 -61.6094 28.3398 -92.6797 39.9297c-60.2803 22.4902 -112.34 41.8896 -112.34 84.4902c0 1.45996 -3.87988 53.6299 80.25 53.6299c50.8604 0 92.7197 -17.4805 144.48 -60.4805\\nc0.625 -0.530273 1.19336 -1.62305 1.26953 -2.43945z\\\" />\\n    <glyph glyph-name=\\\"squarespace\\\" unicode=\\\"&#xf5be;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M186.12 104.66l157.22 157.2c38.5703 38.5898 101.13 38.5898 139.72 0c38.5908 -38.5801 38.5908 -101.13 0 -139.721l-119.25 -119.239l-0.0400391 -0.0400391c-19.2891 -19.2705 -50.5498 -19.25 -69.8193 0.0400391l154.149 154.14\\nc19.29 19.29 19.29 50.5703 0 69.8604s-50.5693 19.29 -69.8594 0l-157.181 -157.181c-9.64941 -9.64941 -25.29 -9.64941 -34.9395 0c-9.65039 9.65039 -9.65039 25.29 0 34.9404zM430.65 209.46c9.63965 -9.63965 9.63965 -25.2803 -0.0107422 -34.9297l-157.199 -157.2\\nc-38.5801 -38.5703 -101.141 -38.5703 -139.721 0l-0.0195312 0.0195312c-9.64062 9.65039 -9.62988 25.29 0.0195312 34.9307l0.0107422 0.00976562c9.64941 9.63965 25.2793 9.62988 34.9199 -0.00976562l0.0498047 -0.0498047\\nc19.29 -19.2607 50.5498 -19.2402 69.8193 0.0498047l157.2 157.18c9.64062 9.65039 25.2803 9.65039 34.9307 0zM168.66 122.13c-38.6006 -38.5801 -101.13 -38.5801 -139.73 0.00976562c-38.5801 38.5801 -38.5801 101.13 0 139.721l119.23 119.25l0.0195312 0.0195312\\nc19.3008 19.2803 50.5703 19.2705 69.8506 -0.0195312l-154.17 -154.17l-0.0302734 -0.0302734c-19.2803 -19.2998 -19.2598 -50.5605 0.0302734 -69.8398l0.00976562 -0.0107422c19.29 -19.29 50.5703 -19.2793 69.8496 0.0107422l157.21 157.18\\nc9.64062 9.63965 25.2705 9.63965 34.9102 0c9.64062 -9.65039 9.64062 -25.29 0 -34.9404zM81.3301 174.53c-9.64062 9.64941 -9.65039 25.29 0 34.9297l157.189 157.19c38.5908 38.5898 101.131 38.5898 139.721 0c9.64941 -9.64062 9.64941 -25.2803 0 -34.9307\\nc-9.64062 -9.64941 -25.2803 -9.64941 -34.9307 0l-0.0195312 0.0205078c-19.29 19.2793 -50.5596 19.2695 -69.8398 -0.0205078l-157.21 -157.189c-9.64062 -9.64062 -25.2705 -9.64062 -34.9102 0z\\\" />\\n    <glyph glyph-name=\\\"themeco\\\" unicode=\\\"&#xf5c6;\\\" \\nd=\\\"M202.9 439.57c9.89941 5.72949 26 5.81934 35.9492 0.209961l191.15 -107.63c10 -5.60059 18 -19.4404 18 -30.8604v-217.29c0 -11.4404 -8.05957 -25.29 -18 -31l-191.19 -108.74c-9.92969 -5.66016 -26 -5.56934 -35.8496 0.209961l-185.1 108.41\\nc-9.86035 5.78027 -17.8604 19.7402 -17.8604 31.1201v217.29c0 11.4404 8 25.3604 17.9102 31.0801zM125.5 239.74c-15.9404 0 -31.8896 -0.140625 -47.8301 -0.140625v-101.449h19.1299v29.8496h28.7002c49.71 0 49.5596 71.7402 0 71.7402zM265.64 139.45\\nl-30.7295 34.6396c37 7.50977 34.7998 65.2305 -10.8701 65.5098c-16.0898 0 -32.1699 0.140625 -48.2598 0.140625v-101.59h19.1299v33.9092h18.4102l29.5596 -33.9092h22.7598v1.2998zM224.05 221.77c23.3398 0 23.2598 -32.46 0 -32.46h-29.1299v32.46h29.1299z\\nM128.49 223.37c21.1797 0 21.1094 -38.8506 0 -38.8506h-32.3105v38.8408zM321.14 241.62c-68.46 0 -71 -105.8 0 -105.8c69.4805 0.00976562 69.4102 105.8 0 105.8zM321.14 224.23c44.1201 0 44.8008 -70.8604 0 -70.8604c-44.7998 0 -44.4297 70.8604 0 70.8604z\\\" />\\n    <glyph glyph-name=\\\"weebly\\\" unicode=\\\"&#xf5cc;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M425.09 382.17c50.9102 0 87.5498 -35.1504 86.9199 -83.4697c0 -21.6201 -0.950195 -18.5498 -77.5 -227.2c-22.3799 -60.5703 -67.7695 -69.6699 -92.7402 -69.6699c-39.2393 0 -70.0391 19.46 -85.9297 54.29c-15.8896 -34.5205 -46.7002 -53.9805 -85.9297 -53.9805\\nc-24.9697 0 -70.3701 8.78027 -92.7402 69.3506c-72.9902 200.21 -77.1699 204.52 -77.1699 233.479c0 43.3105 38.5898 77.2002 87.54 77.2002c40.21 0 73.2803 -25.7295 83.6602 -64.3301c18.4795 58.0498 65.5 64.3301 85.2803 64.3301\\nc19.4492 0 66.7891 -6.26953 84.9492 -64.3301c10.3799 38.6006 43.7803 64.3301 83.6602 64.3301zM451.43 267.36c3.49023 11.1992 7.29004 19.3701 7.61035 27.2393c0 22.3906 -16.1602 35.71 -38.3301 35.71c-18.6904 0 -31.9902 -11.7998 -36.1104 -29.0498\\nl-44.0293 -139.819h-0.950195l-44.6602 136.79c-6.01953 19.9697 -16.4697 32.0791 -38.96 32.0791s-32.9404 -12.4092 -38.96 -32.0791l-44.6602 -136.79h-0.950195l-44.0293 139.819c-4.12012 17.25 -17.4199 29.0498 -36.1104 29.0498\\nc-22.4902 0 -38.3301 -13.0195 -38.3301 -29.3594c0 -10.5898 2.54004 -19.6699 7.91992 -34.5l64.9404 -175.23c7.91016 -21.4795 21.2197 -37.2197 46.2393 -37.2197c23.1201 0 37.0605 12.0996 44.0205 33.5996l39.2803 117.42h0.949219l39.2803 -117.42\\nc6.65039 -21.4893 20.5898 -33.8994 44.0303 -33.8994c25.0195 0 38.3203 15.7295 46.2402 37.2197z\\\" />\\n    <glyph glyph-name=\\\"wix\\\" unicode=\\\"&#xf5cf;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M393.38 316.31c0 -13.0293 2.08008 -32.6895 -28.6797 -43.8291c-9.52051 -3.4502 -15.9502 -9.66016 -15.9502 -9.66016c0 31 4.71973 42.2197 17.4004 48.8594c9.75 5.11035 27.2295 4.62988 27.2295 4.62988zM277.58 280.77\\nc5.47949 26.3408 30.8799 38.3408 55.2998 35.2705l-65.5703 -247.93s-21.6396 -1.56055 -32.46 3.95996c-14.2197 7.25 -20.9893 12.8398 -29.5898 46.5693c-7.66992 30.0703 -29.1494 118.4 -31.1201 124.7c-4.30957 13.8105 -10.6396 14.9404 -15.3994 0\\nc-2.00977 -6.29004 -23.4502 -94.6299 -31.1201 -124.7c-8.61035 -33.7295 -15.3701 -39.3193 -29.5898 -46.5693c-10.8301 -5.52051 -32.46 -3.95996 -32.46 -3.95996l-65.5703 247.93c23.8604 3 49.7305 -8.5498 55.2803 -35.2705l34.2393 -132.659l28.4805 108.569\\nc7.76953 32.3506 21.0596 48.5303 48.4297 48.5303c27.6201 0 40.7402 -16.54 48.4307 -48.5303l28.4795 -108.569zM393.36 275.56v-8.97949l0.0195312 0.00976562v-150.27c-0.129883 -30.8301 -3.33008 -37.6807 -17.2598 -44.7803\\nc-10.8203 -5.52051 -27.3701 -3.42969 -27.3701 -3.42969v152.069c0 21.25 -1.95996 27.9404 13.1797 35.2002c6.19043 2.96973 11.96 5.25 17.9707 8.61035c9.35938 5.22949 13.46 11.5693 13.46 11.5693zM556.8 191.48l82.9902 -123.36s-35.9297 -4.62012 -53.3203 11.21\\nc-13.9102 12.6602 -23.7393 28.3398 -53.1396 70.7197c-0.5 0.770508 -6.25977 10.5205 -13.0703 0c-34.9297 -50.3496 -41.0195 -60.2598 -52.5098 -70.7197c-17.3799 -15.8301 -53.9502 -11.21 -53.9502 -11.21l82.9697 123.36l-83.1992 123.739\\ns35.1094 5.98047 52.5 -9.84961c13.3799 -12.1797 24.8896 -30.2402 54.1797 -72.4697c6.82031 -10.54 12.5996 -0.730469 13.0703 0c29.7695 42.9199 40.8799 60.3691 54.1797 72.4697c17.3896 15.8301 52.5 9.84961 52.5 9.84961z\\\" />\\n    <glyph glyph-name=\\\"ello\\\" unicode=\\\"&#xf5f1;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM391.84 154.8c2.48047 7.44043 -2.47949 15.71 -9.91992 17.3604c-7.43945 2.47949 -15.71 -2.48047 -17.3604 -9.91992\\nc-14.0498 -52.9102 -62 -90.1104 -116.56 -90.1104s-102.51 37.2002 -116.56 90.1104c-1.65039 7.43945 -9.9209 11.5693 -17.3604 9.91992c-7.44043 -1.65039 -11.5703 -9.91992 -9.91992 -17.3604c16.5303 -65.3096 76.0498 -111.6 143.84 -111.6\\ns127.31 46.29 143.84 111.6z\\\" />\\n    <glyph glyph-name=\\\"hackerrank\\\" unicode=\\\"&#xf5f7;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M477.5 320c14.5 -25 14.4805 -230.92 -0.00976562 -256s-192.391 -128 -221.33 -128c-28.9404 0 -206.83 102.8 -221.32 128s-14.4102 230.79 0 256s192.351 128 221.32 128s206.84 -103.05 221.34 -128zM316.13 33.7803c3.95996 0 40.4404 35.7793 37.5605 38.6895\\nc-0.870117 0.839844 -8.82031 1.49023 -17.6904 1.83984c0 32.4004 -3 19.0508 0.679688 210.341c0.0703125 3.65918 -1.04004 5.37988 -4.5 5.37988c-11.0801 0.0693359 -22.1602 0.0195312 -33.2295 -0.0605469c-3.25977 -0.0292969 -4.31055 -1.80957 -4.20996 -5.2002\\nc1.58984 -48.8994 1.2002 -79.0898 1.2002 -83.6396h-80.2607c0.629883 25.7998 0.209961 79.6396 2.62988 105.39v3.16016c8.87012 0.350586 15.9004 0.970703 16.7705 1.83984c2.90039 2.91016 -34.3203 38.6904 -38.2705 38.6904\\nc-3.94922 0 -41.4092 -35.7695 -38.4893 -38.6904c0.879883 -0.839844 7.58984 -1.48926 17.2598 -1.83984v-3.16992c3.15039 -128.67 1.07031 -179.229 0.150391 -212.67c-0.130859 -4.58008 1.63965 -6.10938 5.73926 -6.10938\\nc10.1406 0.0292969 20.2803 -0.0800781 30.4102 -0.0800781c4.16016 -0.0605469 5.96973 1.39941 5.74023 5.93945c-1.83008 36.6797 -1.37012 65.7803 -1.37012 72.8799h79.9297c0 -2.41992 0.44043 -3.84961 0.44043 -5.84961\\nc-0.350586 -17.7305 -0.94043 -60.0898 -0.94043 -86.3203c-11.29 -0.349609 -16.6797 -0.959961 -17.5498 -1.83008c-2.91016 -2.91992 34 -38.6895 38 -38.6895z\\\" />\\n    <glyph glyph-name=\\\"kaggle\\\" unicode=\\\"&#xf5fa;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M304.2 -53.5l1.39941 -7.59961c-0.5 -2 -2.5 -3 -6 -3h-66.8994c-4 0 -7.5 1.7998 -10.5 5.2998l-110.5 140.6l-30.7998 -29.2998v-109c0 -5 -2.5 -7.5 -7.5 -7.5h-51.9004c-5 0 -7.5 2.5 -7.5 7.5v497c0 5 2.5 7.5 7.5 7.5h51.9004c5 0 7.5 -2.5 7.5 -7.5v-306\\nl132.3 133.7c3.5 3.5 7 5.2998 10.5 5.2998h69.2002c7 0 7.89941 -7.7998 5.2998 -10.5l-139.8 -135.3z\\\" />\\n    <glyph glyph-name=\\\"markdown\\\" unicode=\\\"&#xf60f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M593.8 388.9c25.5 0 46.2002 -20.7002 46.2002 -46.1006v-301.6c0.0996094 -25.4004 -20.5996 -46.1006 -46.0996 -46.1006h-547.7c-25.5 0 -46.2002 20.7002 -46.2002 46.2002v301.5c0 25.4004 20.7002 46.1006 46.2002 46.1006h547.6zM338.5 87.4004h-0.200195v209.199\\nh-61.5l-61.5 -76.8994l-61.5 76.8994h-61.5v-209.199h61.7002v120l61.5 -76.9004l61.5 76.9004v-120h61.5zM473.8 84.2998l92.2002 107.7h-61.5v104.6h-61.5v-104.6h-61.5z\\\" />\\n    <glyph glyph-name=\\\"neos\\\" unicode=\\\"&#xf612;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M415.44 -64h-95.1104l-108.21 154.54v-91.0996l-86.4297 -63.4404h-97.6904v482.18l40.4697 29.8203h108.05l123.74 -176.13v112.68l86.4307 63.4502h97.6895v-461.5zM38.7695 412.73v-460.73l72 52.8799v249.12l215.5 -307.64h84.79l52.3506 38.1699h-78.2705\\nl-316.14 450.47zM121.31 -53.8799l80 58.7803v101l-79.7598 114.399v-220.939l-72.5498 -53.25h72.3398zM80.6299 437.23l310.601 -442.57h82.3691v442.57h-79.75v-317.561l-222.939 317.561h-90.2803zM311 256.35l72 -102.81v278.53l-72 -53v-122.721z\\\" />\\n    <glyph glyph-name=\\\"zhihu\\\" unicode=\\\"&#xf63f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M170.54 299.87h122.68v-217.55h-49.5293l-42.0107 -26.3701l-7.70996 26.3701l-23.4297 0.00976562v217.54zM268.29 105.94v170.31h-72.8203v-170.31l11.9004 -0.0400391l5.08008 -17.4707l27.8994 17.5107h27.9404zM149.83 200.33\\nc7.5 0 7.58984 -23.6104 7.58984 -23.6104h-61.6504c-0.879883 -13.1201 -3.50977 -26.6895 -7.86914 -40.6699l14.6191 11.6201c8.73047 -8.75 29.2109 -32.8896 36.79 -41.8096c9.15039 -13.1006 1.24023 -39.9902 1.24023 -39.9902l-53.96 64.9395\\nc-12.6094 -48.3496 -35.5898 -69.25 -35.5898 -69.25c-10.0898 -8.96973 -30.5098 -15.75 -51 -9.89941c42.8301 33.2197 66.4502 75.2402 70.8496 125.1h-65.5801s3.82031 23.6201 15.5605 23.6201h52.2695c0.480469 6.56055 1.68066 62.9404 1.68066 73.4404h-28.8701\\nc-2.62988 -7.87012 -3.03027 -8.64062 -5.14062 -14.5303c-11.4697 -21.0303 -30.9492 -21.5703 -36.8398 -22.21c17.4902 34.9795 27.3105 69.2197 30.7002 78.1201c8.2002 21.5693 32.2705 21.5693 32.2705 21.5693c-5.25 -14.0098 -9.63086 -27.5498 -13.1201 -40.6699\\nh88.5c10.5498 0.25 8.58008 -22.3096 8.58008 -22.3096h-51.1602c0 -21.8701 -0.459961 -46.3604 -2.2002 -73.46h52.3301zM561.85 201.93l-19.2295 14.4307s30.8301 40.0498 36.8301 48.1992c8.72949 10.7402 27.3799 -4.05957 27.3799 -4.05957\\ns-24.1504 -32.9297 -44.9805 -58.5703zM411.76 261.02l0.00976562 0.0107422c8.99023 -8.25 34.6602 -45.8604 34.6602 -45.8604l-19.46 -13.7295c-1.59961 2.40918 -41.1201 57.4492 -41.1201 57.4492s16.9004 10.3799 25.9102 2.12988zM640 189.65\\nc0 0 0.950195 -23.79 -8.73047 -23.79h-122.359v-73.3203c0.780273 -28.0303 -15.3301 -45.3096 -44.8906 -45.3096c-9.84961 0 -16.1396 1.75977 -26.0195 6.56934c-12.9805 7.4502 -17.3203 17.8701 -19.3096 21.8398c15.6094 -0.65918 27.6094 -1.91992 41.6895 -1.80957\\nc13.29 -0.870117 24.4805 7.15039 24.4805 21.1201v70.9199h-107.94c-22.6895 0.540039 -25.5098 22.8496 -25.5098 22.8496h133.47v99.8105c-12.8301 0 -31.6797 -0.830078 -56.5098 -2.43066c-26.46 -0.80957 -35.8398 -2.58984 -49.1504 0.890625\\nc-8.16016 2.46973 -14.1797 10.7295 -15.7793 19.5498c67.1396 1.55957 232.359 18.0498 232.359 18.0498s20.1006 5.75977 23.1699 4.58008c12.8105 -6.25 0.589844 -33.4395 0.589844 -33.4395c-17.6396 -0.810547 -46.8896 -2.40039 -87.7695 -4.81055\\nc-10.4297 -0.799805 -18.04 -1.2002 -22.8496 -1.2002v-101c0.149414 0 111.279 0.930664 131.06 0.930664z\\\" />\\n    <glyph glyph-name=\\\"alipay\\\" unicode=\\\"&#xf642;\\\" \\nd=\\\"M377.74 416c38.6895 0 70.0898 -31.5703 69.9297 -70.2598v-234.41c-48.6104 16.7002 -99.6895 36.04 -148.62 52.7402c23.1406 44.2998 38.3506 90.9199 38.3506 90.9199h-88.7705v31.2402h109.45v19.0098h-109.44v50.4199h-50.9199v-50.4199h-109.439v-19.0098h109.439\\nv-31.2402h-92.0801v-16.7002h178.2s-9.91992 -30.25 -26.4502 -60.3398c-47.7793 14.71 -91.75 24.96 -127.13 24.96c-84.6396 0 -103.49 -42.4902 -99.5195 -81.5c3.30957 -31.0703 26.4502 -76.3701 97.04 -76.3701c64.4795 0 116.55 37.0303 148.62 81\\nc61.0098 -28.0996 125.64 -62.8203 171.6 -88.4404c-0.5 -38.5195 -31.7402 -69.5996 -70.2598 -69.5996h-307.48c-38.8496 0 -70.2598 31.4102 -70.2598 70.2598v307.48c0 38.8496 31.4102 70.2598 70.2598 70.2598h307.48zM47.2803 125.05\\nc-0.990234 17.5205 10.9102 50.5801 78.3594 50.5801c24.96 0 64.8105 -12.7295 109.44 -31.4102c-25.29 -33.2197 -65.7998 -72.8994 -117.87 -72.8994c-59.6797 0 -68.9404 33.5596 -69.9297 53.7295z\\\" />\\n    <glyph glyph-name=\\\"the-red-yeti\\\" unicode=\\\"&#xf69d;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M488.23 206.3c2.49805 -3.35254 5.51465 -9.31152 6.76953 -13.2998c3.37793 -9.19922 7.36523 -24.5205 8.90039 -34.2002l-2.5 -0.5l-13 14.2998c-17.9004 -28.0996 -9.90039 -15.3994 -16.7002 -25.0996c0 -124.2 -101.3 -211.5 -223 -211.5\\nc-61.5 0 -113.9 20.2002 -157.5 60.2002c-64.5 60.8994 -64.9004 125 -64.9004 150.5c-0.5 1.7998 -0.700195 3.5 -1.2002 5.2002l-20.1992 -22.4004c-6.80078 43 25.6992 74.2998 33 80.7002c0.5 1 0.699219 2.2002 1.19922 3.2002l-28.7998 1l-3 3.39941\\nc8.5 3.5 25.2998 13.2998 40.2998 14.2998c6.30273 12.0684 18.7568 30.123 27.8008 40.3008c1.2998 6.39941 3.2998 14.1992 6.59961 25.7998l-7.59961 -4.7002l-1.7002 1.7002l1.7002 8.39941c8.87207 21.3857 29.7939 51.5811 46.6992 67.4004l-33 14.2998h3.7002\\nc20.9004 4.90039 33.2002 3.2998 49.2002 0c-2.5 4.10059 -5.40039 10.5 -8.40039 18.9004c-1.16699 3.20996 -2.11426 8.58691 -2.11426 12.0029c0 3.81152 1.1709 9.76855 2.61426 13.2969c8.90039 -7.40039 14.3008 -24.5996 15.2002 -27\\nc0.700195 3.59961 2.10059 21.2998 33.7002 45.5l1.83008 -0.5l-12 -44.2002c30 17.7002 63 21.9004 97.9004 11.7998c-12.7002 -12.1992 -24.3008 -28.8994 -42.5 -33c7.39941 -2.2998 28.6992 -9.69922 34.1992 -15.1992l-24.7998 7.09961\\nc6.5 -6 19.6006 -16.4004 25.1006 -25.0996c19.418 -0.893555 50.0615 -6.85254 68.3994 -13.3008l-0.5 0.5c29.4004 14.7002 37.7002 27.3008 74.7998 3c0 -30.1992 -2.2998 -23.3994 3 -29.7998c6.41602 5.42383 17.75 12.8154 25.3008 16.5\\nc13 6.40039 23.0996 4.7002 30.6992 -5.89941c11.8008 0 17.8008 -15.7002 18.4004 -27c14.7998 -2.90039 2.7002 -30.7002 2.5 -30.7002l-7.09961 -18.2002c7.7998 -7.7998 22.0996 -20.9004 31.6992 -44.7998zM398 336.8c-13.0996 8.90039 -22.7002 11.9004 -28.2998 8.5\\nc8.09961 -7.2002 13 -14.2998 13.5 -20.7002c1.2002 -7.59961 -2.2002 -14.7998 -10.6006 -21.8994l-4.19922 -3.40039c3.60059 -5.90918 7.36328 -16.2578 8.39941 -23.0996h2.5c-2.09961 13.8994 -2.5 11 0.700195 14.7998c11 -6.40039 14.9004 -14.5 16 -19.9004\\nc21.7998 10.1006 29.5 12.7002 54.7998 20.9004l-18.2002 -16c11.4004 0 25.6006 0.299805 46.5 -8.40039c7 24.3008 7.10059 20.7002 2.5 20.7002l-4.69922 -11.2998c-1.7002 10.5 -2.90039 18.9004 -3.40039 25.2998c-0.5 6.7002 -3.90039 9.60059 -9.2998 10.1006\\nc-0.00976562 -0.384766 -0.0175781 -1.00781 -0.0175781 -1.3916c0 -3.87012 0.769531 -10.0566 1.71777 -13.8086l-1.7002 -5.90039c-2.90039 10.6006 -5.90039 20.2002 -9.2998 27.7998c-9.7002 17.7002 -30.2002 -9.19922 -43 -11.2998\\nc3.72266 -0.207031 9.77051 -0.375977 13.5 -0.375977c3.72852 0 9.77637 0.168945 13.5 0.375977l-22.4004 -5.39941l3.40039 -4.7002c-5.5 0 -16.9004 -0.900391 -22.4004 17.2002zM358.4 346.9l-20.3008 -11.8008c11.3008 -7.59961 20.2002 -18.1992 27.8008 -31.1992\\nc6.39941 2.89941 10.0996 5.09961 11.7998 7.59961c2.5 2.7998 2.5 4.7002 3 7.09961c0.599609 1.30078 0.799805 2.7002 -3.40039 11.1006c-7.5 11.7998 -16.2002 15.2998 -18.8994 17.2002zM91 304.9c-7.7998 -24.1006 -11.7002 -49.4004 -13.2002 -74.6006l13.2002 -5\\nl1.2002 27c9.5 -16.3994 11.2002 -23.2998 12.2998 -28.7998c2.7998 2.09961 7.7002 7 22.5996 11.2998l1.2002 -1.7002l-7.59961 -10.5996c10.0996 3.5 19.5 3.5 28.2998 0.5l-10.5996 -8.40039c22.7998 -8.39941 26.5996 -7.59961 38.3994 -26.0996l-11.7998 1.2002\\nc34.9297 -20.5 66 -47.9004 141.2 -63.2002c15.5996 24.0996 14 21.0996 14 22.9004l0.200195 0.199219l-0.200195 0.200195c-0.700195 1.90039 -14.1006 16.6006 -18.2002 20.7002c7.2998 -1.7998 6 -0.900391 10.7998 -3.7002\\nc1.7002 -0.899414 -5.39941 5.40039 -21.8994 20.2002c16.5 -6.7002 27.5996 -15.5 33 -27.7998l1.69922 30.7002l-22.3994 17.6992l6.39941 5.90039c-7.2998 0 -31 3.7002 -49.1992 -16l-2.5 0.5c5.89844 12.1807 13.0664 32.7881 16 46\\nc1.61914 7.72656 2.96289 20.4053 3 28.2998c0 19.5 -4.7002 38.4004 -13.5 56.6006c-6.40039 13.5 -16.5 25.2998 -30 35.3994c-5.4707 4.09961 -14.7441 10.1475 -20.7002 13.5c3 0.700195 1 1.2002 -5.40039 1.2002c-6.39941 0.200195 -13 0.700195 -19.3994 1.2002v-3\\nc-8.67773 -1.375 -20.0127 -8.18457 -25.3008 -15.2002h-1.19922l-5.40039 -3.40039c-1.2002 2.90039 0 6.30078 4.2002 9.30078l10.5996 11.2998l-3.39941 -0.5l2 3.39941c-2.30078 0.200195 -4.2002 0.5 -6.2002 0.700195l-0.5 1.2002l2.5 1.7002\\nc2.2002 -0.200195 4.59961 -0.5 7.09961 -0.700195c2.52539 1.3457 6.89746 2.43848 9.75879 2.43848c1.18359 0 3.08301 -0.196289 4.24121 -0.438477l2.5 -1.2002l0.200195 -0.5c6.50488 0.421875 16.9883 1.7207 23.4004 2.90039\\nc20.6992 2.89941 36.6992 11.2998 48.5 24.7998l-21.1006 0.5c-25.7998 0.5 -49.3994 -5.40039 -71.2998 -18.9004l-2.5 2.5l0.5 4.7002l1.7002 7.10059c1.37695 7.08105 4.24414 18.415 6.39941 25.2998c-1.69922 -0.700195 -4.59961 -4.90039 -9.2998 -11.2998\\nc-4.7002 -6.40039 -8.39941 -13 -10.0996 -19.4004c-0.905273 -4.24512 -3.54785 -10.6514 -5.90039 -14.2998l-13.5 29l8.40039 -35.7998l-0.5 -1.7002h-0.015625c-4.51953 0 -11.6807 1.12012 -15.9844 2.5c-3.40039 0.700195 -10.6006 1.2002 -20.9004 1.2002\\nc0.5 0 -0.700195 0 -3.2002 -0.5c5.40039 -1.30078 13.5 -4.2002 24.8008 -8.40039l6.39941 1.2002c-4.2002 -3.40039 -10.8994 -10.1006 -20.2002 -19.4004c-9.39941 -8.89941 -20.1992 -26.0996 -32.5 -50.2002l4.2002 1.2002l10.1006 9.2998l-5.40039 -4.69922\\nl13 12.2998l-2.5 -3.40039c-5.09961 -7.59961 -8.09961 -12.2998 -9.2998 -15.2002zM367.5 -25.0996c8.2998 40.2998 3.59961 55.1992 -0.700195 89.5c-35.5 -11.8008 -20.2998 -6 -32 -10.8008l10.5 -14.1992l-1.2002 -1.2002c-20.1992 6 -23.1992 10.7998 -27.7998 15\\nc6 -22.2002 13.9004 -26.4004 29.5 -31.7002c-9.5 -9.59961 -25.3994 4 -34.3994 13l2.5 -23.5996l-4.2002 -3c-5 22.0996 -22 39.0996 -25.2998 39.0996c-44 -13 -79.1006 -5.7998 -113.9 10.5996c-1.59961 -0.399414 -70.5996 -18 -120.5 37.1006\\nc13.7002 -35 32.2998 -63.7002 71.2998 -82.6006c-4.13574 8.56934 -13.4102 20.4863 -20.7002 26.6006c0 0 0.700195 3.7002 1.2002 10.0996c19.4004 -19.3994 50.7002 -39.5 93.2002 -60.2002c-59.5996 24.5 -59.9004 24.8008 -69.0996 29l16 -20.6992\\nc-3 -1.30078 -6.7002 -0.5 -10.1006 1.19922c-10.3359 6.03809 -26.1943 17.1484 -35.3994 24.8008c1.89941 -2.2002 80.0996 -98.5 200.899 -74.3008c-43.0996 21.8008 -52.3994 52.4004 -66.5996 73.5l17.7002 -7.59961l-11.8008 23.0996\\nc20.1006 -27.7998 28.6006 -35 38.4004 -44.2998l-30 16.5c12.5996 -27.0996 33.7002 -47 63.5 -58.7998c2.90039 1.5 9.09961 -1.09961 59 23.9004zM482.8 189.3l8.93066 -12.7998l-12.3008 32.5c10.9004 0 10 -0.0996094 21.2002 -3.40039\\nc-6.72168 9.44824 -18.8184 23.7842 -27 32l-26.5996 23.1006l1.2002 3l23.5996 2.5c-9.00293 1.98535 -23.7871 3.86719 -33 4.2002l-17.7002 -0.5l-0.5 2.89941l14.7998 13l-41.7998 -20.2002l-12.2998 18.9004l3.40039 -16l-2.5 -1.2002l-5.90039 4.2002h-10.0996\\nl5.39941 -4.2002v-2l-13.5 -27.7998c-10.0996 -31.2002 -21.8994 -67.9004 -35.3994 -109.7l1.19922 16l-1.19922 -3v-0.5c-6.40039 -16 -13.6006 -29.5 -21.2002 -39.5996l9.2998 21.8994l-46.7002 -20.1992c11.7998 13.5 23.6006 19.3994 34.9004 18.8994\\nc-71.2002 11.4004 -106.2 41 -110.4 46c3.60059 -6.2002 13.2002 -17.7998 16 -40.0996l-1.7002 -1.2002c-4.2998 15.5996 -16.3994 46.5996 -55.7998 69.5996l23.6006 -2.5c-10.5 12.6006 -36.3008 17.8008 -40.8008 16l-2.5 2.5l8.40039 8.40039l-22.2998 -5.7998\\nl5.39941 13.5c-8.09961 -4.40039 -4.2998 -2.40039 -17 -8.90039l-1.69922 0.5c0.599609 0.600586 0.899414 -0.700195 -3 9.2998c-0.600586 -11 -0.400391 -8.59961 -1 -11.7998c-1.07324 -0.355469 -2.73145 -1.11719 -3.7002 -1.7002c-40 20.6006 -57.2002 11 -73 5.2002\\nc36.7998 -6 29.2998 -4 38.3994 -9.2998c-25.7998 -12.2002 -31.8994 -12.5996 -51.3994 -70.0996l22.2695 22.2998l2.5 -16.4004c13.4004 -58 68.7002 -92.5 126.4 -83.3994l-26.1006 22.3994l44.8008 -22.3994l-1.2002 -3c4.59961 -1.7002 9.2998 -3 13.5 -4.2002\\nc16.4727 -4.87598 43.7852 -8.83203 60.9648 -8.83203c8.94727 0 23.3887 1.08887 32.2354 2.43164l-32.5 21.2002c35.7998 -7 50.6992 -31.4004 56.7998 -39.5996l-7.60059 29l1.2002 2.5l19 -27.9004l-9.2998 26.5996l21.9004 -13.5h1.19922l-3.39941 4.2002\\nl7.09961 -4.7002l-14.2998 16l1.2002 3l7.59961 -7.09961c4.2998 1.2002 41.4004 10.5 80.9004 40.2998c47.8994 35.4004 68.0996 73.7998 71.5996 79.7002l-3 9.2998zM476.7 260.6l-18.2002 -1.19922l14.2998 -11.8008zM221.9 253.5\\nc2.69922 -5.09961 5.69922 -12.4004 18.3994 -18.7998c-7.5 -10.9004 -8.2998 -10.5 -20.2002 -16c-7.59961 -7.7002 -13.5 -13.1006 -17.6992 -14.7998l7.09961 13c-4.61914 -1.69336 -12.3604 -3.06641 -17.2793 -3.06641c-2.08789 0 -5.45703 0.25293 -7.52051 0.566406\\nl-0.5 1.19922c19 2.10059 37.2002 9.40039 46.5 16c-4.10059 4.2002 -7.10059 11.3008 -8.7998 21.9004zM225.6 355.8c4.92578 -2.78809 11.3486 -8.9707 14.3008 -13.7998c14.6992 -24.0996 19.1992 -40.0996 11.2998 -47.7002\\nc-7.90039 -7.59961 -16.7998 -7.09961 -26.1006 3c-9.2998 10.1006 -13.5 23.7002 -11.7998 39.6006c1.7002 15.8994 5.90039 22.2998 12.2998 18.8994zM220.9 309.5c7.09961 -21.2998 33.3994 -23.0996 26.8994 4.90039c-3.89941 16.5 -8.7998 27.0996 -15.2002 32.5\\nc-6.59961 5.39941 -10.0996 6.69922 -11.2998 4.19922c-2.5 -2.89941 -3.5 -11.2998 -3 -24.7998c7.5 12.7998 11.6006 5.90039 12.5 4.7002l-0.5 -0.5c-0.799805 -1.7002 -2.59961 -3.09961 1.7002 -6.2002l1.2002 0.5v-4.7002\\nc-1.7998 -12.5 -6.90039 -12.7998 -12.2998 -10.5996zM175.9 315c-2.09375 0.388672 -4.49707 2.27051 -5.40039 4.2002c-3.5 8.5 0 21.2002 8.09961 21.2002c2 -0.5 3.7002 -1.7002 5.40039 -4.7002c-1.5 -0.400391 -4.7002 -4.7998 0.700195 -5.90039h0.5\\nc0 -13.7002 -7.7002 -15.0996 -9.2998 -14.7998zM216 365.1l-3.7002 2.40039l-0.5 2.5c18.2998 0 25.7998 -8.7998 28.2998 -14.2998c-6.0459 3.29688 -16.542 5.97266 -23.4297 5.97266c-0.737305 0 -1.93359 -0.0322266 -2.66992 -0.0732422l-0.5 3zM144.2 315.7\\nc1.59961 -1.60059 0.599609 -0.299805 4.89941 -6.60059c-25.3994 -4.69922 -23.1992 -12.2998 -30 -12.2998c0.300781 0.600586 7.10059 16 23.6006 16l-7.10059 7.60059c9.40039 0.5 15.2002 2.09961 19.9004 -5.90039c0.0175781 6.60938 1.31641 17.1826 2.90039 23.5996\\nc2 7.60059 3.69922 11.8008 5.39941 13.5c1 1.5 16.2998 15.7002 29 22.4004c2.05469 1.48047 5.77637 2.68262 8.30859 2.68262c1.48438 0 3.81055 -0.44043 5.19141 -0.982422c0.285156 -0.345703 0.515625 -0.989258 0.515625 -1.43652\\nc0 -0.0732422 -0.00683594 -0.191406 -0.015625 -0.263672l-13 -7.59961c7.60059 -11.8008 10.5 -25.3008 8.7998 -41.3008c-0.932617 -9.45898 -7.5625 -22.1377 -14.7998 -28.2998l2.90039 -4.7002c-30 2.2002 -24.7998 6.80078 -46.5 23.6006zM162.9 334.4\\nc-1.80078 -7.2002 -2.30078 -16 -3.10059 -26l5.40039 -6.40039l7.09961 -3.40039c2.01465 -0.384766 5.31445 -0.697266 7.36523 -0.697266c1.08887 0 2.85156 0.0888672 3.93457 0.197266c1 1.7002 3.5 4.2002 6.40039 7.60059c5 5.89941 7.90039 13.7998 8.40039 23.0996\\nc0.0703125 1.18262 0.126953 3.10449 0.126953 4.28906c0 5.92773 -1.40137 15.3408 -3.12695 21.0107c-3 8.10059 -5.90039 11 -10.1006 9.30078c-5.39941 -1.7002 -10.5996 -5.40039 -16 -11.8008c-3 -4.19922 -5.2002 -9.59961 -6.39941 -17.1992zM204.9 278.3\\nl-3.10059 -6.5c7.10059 4.2002 13.5 7.2002 19.4004 8.40039l7.09961 0.5l11.7998 -7.60059h-2.5c-8.7998 3.7002 -19.3994 1.2002 -30.6992 -7.59961c-0.5 -4.7002 1.69922 -14.7002 5.89941 -29.5l9.2002 0.5c-21.9004 -6.59961 -37.5996 -8.40039 -48.9004 -5.40039\\nc-24.8994 6.7002 -27.3994 23.6006 -27.5 24.1006c-1.47754 5.69238 -2.67676 15.0869 -2.67676 20.9688c0 3.53418 0.438477 9.23828 0.977539 12.7314c-6.40039 -0.5 -11 -4.2002 -15.2002 -10.6006c-2.90039 5.90039 -5.40039 8.7998 -5.90039 9.2998\\nc1.5 0.700195 12.2998 7.5 32.5 4.90039l0.5 -2.5l-5.89941 -1.2002c-0.100586 -0.399414 -1.90039 -29.5 18.8994 -24.7998c1.40039 0.299805 1.2998 -0.0996094 36.1006 14.2998z\\\" />\\n    <glyph glyph-name=\\\"acquisitions-incorporated\\\" unicode=\\\"&#xf6af;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M357.45 -20.2002c2.2002 -14.2998 4.09961 -28.7002 6.59961 -43.7002h-337.1c-4 0 -6.10059 0.700195 -5.2998 5.7002c2.09961 12.9004 3.5 25.9004 5 38.7998c0.5 4.80078 2.2998 6.80078 7.59961 6.80078c118.1 -1 114.9 -0.300781 121.4 2.39941\\nc9.39941 4 14.8994 12.9004 14.8994 23.1006c-0.0996094 42.8994 -0.299805 85.8994 -0.200195 128.8c0 3.7998 -1.19922 5.89941 -4.59961 6.7998c-15.7002 3.90039 -31.2998 7.7002 -47.5996 11.7002c-5.30078 -12.2998 -10.4004 -24.4004 -15.7002 -36.7002\\nc1.7998 -3.2998 28.3994 -2.90039 35.2998 -2.90039v-27.5996h-114.3c1 8.59961 1.7002 16.7998 3.2002 24.9004c0.299805 1.39941 3.59961 3.09961 5.5 3.19922c8.39941 0.400391 16.8994 0.300781 25.3994 0.100586c4 0 5.90039 1.09961 7.60059 5.2002\\nc16.5996 40.6992 13.5 31.1992 67.2998 161c31.5 76.0996 33 76 32.5996 87.3994c-0.700195 18.6006 -25.3994 22.2998 -37.7002 22.1006c-30 -0.400391 -38.3994 0.5 -101.8 0.5c-7.2002 44.5 -4.2002 32.0996 -6.39941 45.2998c-0.700195 4.2002 1 5.2998 4.59961 5.2998\\nl339.1 -0.200195c-0.799805 -5.39941 -1.59961 -10.7998 -2.39941 -16.0996c-1.2998 -9.7002 -2.7998 -19.4004 -4 -29.2002c-0.299805 -2.90039 -1.2002 -4.2998 -4.2998 -4.2998c-20.6006 -0.100586 -41.2002 -0.100586 -61.8008 -0.5\\nc-18.6992 -0.400391 -37.5996 -0.299805 -56.1992 -2c-13.4004 -1.2002 -23.3008 -12.6006 -18.9004 -26.6006c8.59961 -27.0996 27.7002 -69.0996 36.5 -89.1992c65.7002 -154.2 61.4004 -157 84 -158.601c6.59961 -0.5 13.4004 -0.0996094 20.4004 -0.0996094\\nc1.2998 -9.40039 2.59961 -18 4 -27.5h-116v27c10.3994 0 20.3994 0.0996094 30.3994 -0.100586c3.5 0 5 0.700195 3.40039 4.40039c-4.40039 10.2998 -8.7002 20.5996 -13.2002 30.9004c-1.59961 3.69922 -4.09961 4.7998 -8.40039 3.5\\nc-12.3994 -3.60059 -24.7998 -6.7002 -37.2998 -9.7002c-4.2998 -1.10059 -6 -2.7998 -5.89941 -7.5c0.799805 -57.5 0.899414 -127.5 1 -129.101c0.399414 -12.5996 8.69922 -21.3994 21 -23.0996c0.899414 -0.200195 12.8994 -2.7998 112.699 -2.59961\\nc8.30078 0 8.40039 0.0996094 9.60059 -7.60059zM182.55 185.5c2.46484 -0.869141 6.58691 -1.5752 9.2002 -1.5752s6.73535 0.706055 9.2002 1.5752c13 4.2002 26.2998 7.7998 39.3994 11.7002c1.1123 0.512695 2.86035 1.45312 3.90039 2.09961\\nc-6.7002 17.4004 -13.0996 34.2002 -19.7002 50.9004c-8.89941 22.7002 -17.7002 60.2998 -27 82.7998c-1.5 0.799805 -1.89941 -2.40039 -9.39941 0c-17.1006 -44 -34.1006 -87.7998 -51.3008 -132.1c1.54297 -0.917969 4.1416 -2.2168 5.80078 -2.90039\\nc13.2998 -4.2998 26.5996 -8.2998 39.8994 -12.5z\\\" />\\n    <glyph glyph-name=\\\"critical-role\\\" unicode=\\\"&#xf6c9;\\\" \\nd=\\\"M225.82 448c0.259766 -0.150391 216.569 -124.51 217.12 -124.72c3 -1.18066 3.69922 -3.45996 3.69922 -6.56055c-0.0732422 -83.4463 -0.0732422 -166.899 0 -250.359c0.00976562 -0.124023 0.0175781 -0.326172 0.0175781 -0.450195\\nc0 -2.06836 -1.52148 -4.45703 -3.39746 -5.33008c-21.3701 -12 -207.859 -118.29 -218.93 -124.58h-3c-79.3301 45.6602 -218.25 125.44 -218.4 125.52c-1.04297 0.491211 -1.89062 1.8252 -1.89062 2.97754c0 0.0732422 0.00488281 0.19043 0.0107422 0.262695\\nc0 0.870117 0 225.94 -0.0498047 253.101c-0.0078125 0.102539 -0.0136719 0.269531 -0.0136719 0.37207c0 1.78223 1.31836 3.82422 2.94336 4.55762c23.2607 13.0996 209.271 119.21 220.141 125.21h1.75zM215.4 427.58l-0.219727 0.158203\\nc-64.7471 -36.8604 -129.474 -73.7305 -194.18 -110.61c0 -0.120117 0.0800781 -0.229492 0.129883 -0.349609l30.8604 -11.6406c-7.70996 -6 -8.32031 -6 -10.6504 -5.12988c-0.0996094 0 -24.1699 9.28027 -26.7998 10v-230.43\\nc0.879883 1.41016 64.0703 110.91 64.1299 111c1.62012 2.82031 3 1.91992 9.12012 1.51953c1.40039 -0.0898438 1.47949 -0.219727 0.780273 -1.41992c-41.1904 -71.3301 -36.4004 -63 -67.4805 -116.939c-0.80957 -1.40039 -0.609375 -1.12988 1.25 -1.12988h186.5\\nc1.44043 0 1.69043 0.229492 1.7002 1.63965v8.87988c0 1.33984 2.36035 0.810547 -18.3701 1c-7.45996 0.0703125 -14.1396 3.21973 -21.3799 12.7002c-7.37988 9.66016 -14.6201 19.4297 -21.8496 29.21c-2.28027 3.08008 -3.4502 2.37988 -16.7607 2.37988\\nc-1.75 0 -1.7793 0 -1.75977 -1.82031c0.290039 -26.21 0.150391 -25.2695 1 -32.6592c0.520508 -4.37012 2.16016 -4.2002 9.69043 -4.81055c3.13965 -0.259766 3.87988 -4.08008 0.519531 -4.91992c-1.57031 -0.389648 -31.5996 -0.509766 -33.6699 0.0996094\\nc-0.982422 0.269531 -1.78027 1.31543 -1.78027 2.33398c0 1.16016 0.931641 2.2334 2.08008 2.39648c3.29004 0.759766 6.16016 -0.80957 6.66016 4.44043c1.2998 13.6592 1.16992 9 1.09961 79.4199c0 10.8193 -0.349609 12.5801 -5.35938 13.5498\\nc-1.21973 0.240234 -3.54004 0.160156 -4.69043 0.549805c-2.87988 1 -2 4.83984 1.77051 4.84961c33.6699 0 46.0801 1.07031 56.0596 -4.85938c7.74023 -4.61035 12 -11.4805 12.5098 -20.4004c0.880859 -14.5898 -6.50977 -22.3496 -15 -32.5898\\nc-0.282227 -0.241211 -0.510742 -0.738281 -0.510742 -1.11035c0 -0.371094 0.228516 -0.868164 0.510742 -1.10938c2.60059 -3.25 5 -6.62988 7.70996 -9.83008c27.5605 -33.2305 24.1104 -30.54 41.2803 -33.0605c0.890625 -0.129883 1 0.419922 1 1.15039v11\\nc0 1 0.320312 1.42969 1.41016 1.25977c2.98633 -0.454102 7.86133 -0.822266 10.8818 -0.822266c3.53223 0 9.2207 0.50293 12.6982 1.12207c1.08008 0.150391 1.5 -0.199219 1.47949 -1.33008c0 -0.109375 0.880859 -26.6895 0.870117 -26.7998\\nc-0.0498047 -1.51953 0.669922 -1.62012 1.89062 -1.62012h186.71c-27.1533 47.0342 -54.2334 93.9746 -81.2402 140.821c2.25977 0.660156 -0.400391 0 6.69043 1.38965c2 0.390625 2.0498 0.410156 3.10938 -1.43945c7.31055 -12.6396 77.3105 -134 77.3701 -134.061\\nv230.44c-1.71973 -0.5 -103.3 -38.7197 -105.76 -39.6797c-1.08008 -0.419922 -1.5498 -0.200195 -1.91016 0.879883c-0.629883 1.89941 -1.33984 3.75977 -2.08984 5.62012c-0.320312 0.790039 -0.0898438 1.12988 0.649414 1.38965\\nc0.100586 0 95.5303 35.8496 103 38.7705c-65.4199 37.5693 -130.56 75 -196 112.6l86.8203 -150.39l-0.280273 -0.330078c-9.56934 0.899414 -10.46 1.59961 -11.7998 3.93945c-1 1.69043 -73.5 127.71 -82 142.16c-9.09961 -14.6699 -83.5596 -146.21 -85.3701 -146.32\\nc-2.92969 -0.169922 -5.87988 -0.0800781 -9.25 -0.0800781c28.833 49.8271 57.5596 99.4941 86.1797 149.001zM267.331 297.658c1.54688 0.120117 4.02832 0.500977 5.54004 0.849609c1.68945 0.299805 2.53027 -0.200195 2.59961 -1.91992\\nc0 -0.109375 0.0703125 -19.0596 -0.859375 -20.4502c-0.930664 -1.38965 -1.87988 -1.21973 -2.60059 0.19043c-5 9.68945 6.2207 9.66016 -39.1201 12c-0.699219 0 -1 -0.230469 -1 -0.929688c0 -0.130859 3.7207 -122 3.73047 -122.11\\nc0 -0.889648 0.519531 -1.2002 1.20996 -1.50977c2.46484 -0.980469 6.3623 -2.79492 8.7002 -4.0498c7.30957 -4.33008 11.3799 -10.8408 12.4102 -19.3105c1.43945 -11.7998 -2.77051 -35.7695 -32.21 -37.1396c-2.75 -0.129883 -28.2607 -1.08008 -34.1406 23.25\\nc-4.66016 19.2598 8.25977 32.7002 19.8906 36.3994c1.11035 0.202148 2.0127 1.28223 2.0127 2.41113c0 0.0683594 -0.00585938 0.180664 -0.0126953 0.249023c0.0996094 5.62988 3 107.101 3.70996 121.351c0.0498047 1.0791 -0.620117 1.15918 -1.35059 1.14941\\nc-32.3496 -0.519531 -36.75 0.339844 -40.2197 -8.51953c-2.41992 -6.18066 -4.13965 -1.32031 -3.9502 -0.230469c1.05957 6 2.16309 12 3.31055 18c0.399414 2.11035 1.42969 2.61035 3.42969 1.86035c5.58984 -2.11035 6.71973 -1.7002 37.25 -1.91992\\nc1.72949 0 1.78027 0.0800781 1.82031 1.84961c0.679688 27.4902 0.579102 22.5898 1 29.5498c0.00976562 0.0878906 0.0185547 0.231445 0.0185547 0.320312c0 0.986328 -0.738281 2.09766 -1.64941 2.48047c-5.59961 2.90918 -8.75 7.5498 -8.89941 13.8691\\nc-0.350586 14.8105 17.7197 21.6699 27.3799 11.5107c6.83984 -7.19043 5.7998 -18.9102 -2.4502 -24.1504c-1.24316 -0.68457 -2.25195 -2.3916 -2.25195 -3.81055c0 -0.146484 0.0146484 -0.383789 0.0322266 -0.529297c0 -0.589844 -0.110352 4.30957 1 -30.0498\\nc0 -0.900391 0.429688 -1.12012 1.24023 -1.11035c0.0996094 0 23 0.0898438 34.4697 0.370117zM68.2705 306.298c19.8408 4.50977 32.6807 0.560547 52.4902 -1.68945c2.75977 -0.310547 3.74023 -1.2207 3.62012 -4c-0.209961 -5 -1.16016 -22.3301 -1.24023 -23.1504\\nc-0.0371094 -0.932617 -0.767578 -1.98145 -1.62988 -2.33984c-4.05957 -1.7002 -3.60938 4.4502 -4 7.29004c-3.12988 22.4297 -73.8701 32.7002 -74.6299 -25.4004c-0.30957 -23.9199 17 -53.6299 54.0801 -50.8799c27.2402 2 19 20.1904 24.8398 20.4697\\nc0.0996094 0.0136719 0.261719 0.0244141 0.362305 0.0244141c1.50195 0 2.7207 -1.21875 2.7207 -2.71973c0 -0.186523 -0.0371094 -0.483398 -0.0830078 -0.664062c-1.83008 -10.8506 -3.41992 -18.9502 -3.4502 -19.1504\\nc-1.54004 -9.16992 -86.6992 -22.0898 -93.3496 42.0605c-2.70996 25.8496 10.4404 53.3691 40.2695 60.1494zM148.271 218.628h-19.4893c-0.0576172 -0.00488281 -0.151367 -0.00878906 -0.208984 -0.00878906c-1.04102 0 -2.13867 0.805664 -2.45117 1.79883\\nc2.37988 3.75 5.88965 -0.919922 5.86035 6.13965c-0.0800781 25.75 0.209961 38 0.229492 40.1006c0 3.41992 -0.530273 4.64941 -3.32031 4.93945c-7 0.720703 -3.10938 3.37012 -1.10938 3.38086c11.8398 0.0996094 22.6201 0.179688 30.0498 -0.720703\\nc8.76953 -1.06934 16.71 -12.6299 7.92969 -22.6201c-2 -2.25 -4 -4.41992 -6.13965 -6.72949c0.950195 -1.15039 6.89941 -8.82031 17.2803 -19.6797c2.65918 -2.78027 6.14941 -3.51074 9.87988 -3.13086h0.0214844c1.1709 0 2.16016 0.950195 2.20801 2.12012\\nc0.299805 3.41992 0.259766 -4.72949 0.450195 40.5801c0 5.65039 -0.339844 6.58008 -3.22949 6.83008c-3.9502 0.350586 -4 2.25977 -0.69043 3.37012l19.0898 0.0898438c0.320312 0 4.49023 -0.530273 1 -3.37988c0 -0.0498047 -0.160156 0 -0.240234 0\\nc-3.60938 -0.259766 -3.93945 -1 -4 -4.62012c-0.269531 -43.9297 0.0703125 -40.2295 0.410156 -42.8203c0.110352 -0.839844 0.270508 -2.22949 5.10059 -2.13965c2.48926 0 3.85938 -3.37012 0 -3.39941c-10.3701 -0.0800781 -20.7402 0 -31.1104 -0.0703125\\nc-10.6699 0 -13.4697 6.2002 -24.21 20.8203c-1.59961 2.17969 -8.31055 2.35938 -8.2002 0.369141c0.879883 -16.4697 0 -17.7793 4 -17.6699c4.75 0.100586 4.73047 -3.56934 0.830078 -3.5498h0.0595703zM423.271 228.778\\nc-1.20996 -7.12988 0.170898 -10.3799 -5.2998 -10.3398c-61.5498 0.419922 -47.8193 0.219727 -50.7197 0.30957c-1.02246 0.100586 -2.64844 0.426758 -3.62988 0.730469c-2.53027 0.599609 1.47949 1.22949 -0.379883 5.59961\\nc-1.43066 3.37012 -2.78027 6.78027 -4.11035 10.1895c-0.210938 0.797852 -1.05078 1.44434 -1.875 1.44434c-0.0351562 0 -0.0908203 -0.00195312 -0.125 -0.00390625c-1.82812 0.0878906 -4.79785 0.15918 -6.62793 0.15918\\nc-2.19727 0 -5.75879 -0.102539 -7.95215 -0.229492c-0.587891 -0.0771484 -1.31348 -0.551758 -1.62012 -1.05957c-1.58008 -3.62012 -3.06934 -7.29004 -4.50977 -11c-1.26953 -3.23047 7.86035 -1.32031 12.1904 -2.16016c3 -0.570312 4.5293 -3.71973 0.65918 -3.72949\\nh-26.3691c-2.91992 0 -3.09082 3.14941 -0.740234 3.20996c0.0791016 -0.00390625 0.208008 -0.00683594 0.288086 -0.00683594c2.14648 0 4.66992 1.55762 5.63184 3.47656c1.5 3 2.7998 6 4.11035 9.08984c18.1797 42.1396 17.0596 40.1699 18.4199 41.6104\\nc0.300781 0.431641 0.973633 0.78125 1.5 0.78125s1.19824 -0.349609 1.5 -0.78125c2.92969 -3.33984 18.3994 -44.71 23.6201 -51.9199c2 -2.7002 5.73926 -2 6.35938 -2c3.61035 -0.130859 4 1.10938 4.12988 4.29004\\nc0.0898438 1.86914 0.0800781 -1.1709 0.0703125 41.2393c0 4.45996 -2.36035 3.74023 -5.5498 4.27051c-0.259766 0 -2.56055 0.629883 -0.0800781 3.05957c0.209961 0.200195 -0.890625 0.240234 21.7002 0.150391c2.31934 0 5.31934 -2.75 -1.20996 -3.4502\\nc-0.0322266 0.000976562 -0.0830078 0.00292969 -0.115234 0.00292969c-1.41309 0 -2.55957 -1.14746 -2.55957 -2.56055c0 -0.0751953 0.00683594 -0.197266 0.0146484 -0.272461c-0.0703125 -1.62988 -0.19043 -38.8896 0.290039 -41.21\\nc0.27832 -1.34668 1.62109 -2.43848 2.99609 -2.43848c0.0644531 0 0.168945 0.00390625 0.233398 0.00878906c13.25 -0.430664 14.9199 -0.44043 16 3.41016c1.66992 5.7793 4.12988 2.51953 3.73047 0.189453zM318.551 164.408\\nc-4.24023 0 -4.41992 3.38965 -0.609375 3.41016c35.9092 0.160156 28.1094 -0.379883 37.1895 0.649414c1.67969 0.19043 2.37988 -0.239258 2.25 -1.88965c-0.259766 -3.38965 -0.639648 -6.78027 -1 -10.1602c-0.25 -2.16016 -3.2002 -2.61035 -3.39941 0.150391\\nc-0.380859 5.30957 -2.15039 4.44922 -15.6309 5.08008c-1.58008 0.0693359 -1.63965 0 -1.63965 -1.52051v-16.1299c0 -1.65039 0 -1.59961 1.62012 -1.46973c3.12012 0.25 10.3096 -0.339844 15.6895 1.51953c0.470703 0.160156 3.30078 1.79004 3.07031 -1.75977\\nc0 -0.209961 -0.759766 -10.3496 -1.17969 -11.3896c-0.530273 -1.29004 -1.87988 -1.51074 -2.58008 -0.320312c-1.16992 2 0 5.08008 -3.70996 5.2998c-15.4199 0.900391 -12.9102 2.5498 -12.9102 -6c0 -12.25 -0.759766 -16.1104 3.88965 -16.2402\\nc16.6406 -0.479492 14.4004 0 16.4307 5.70996c0.839844 2.37012 3.5 1.77051 3.17969 -0.580078c-0.44043 -3.20996 -0.849609 -6.42969 -1.22949 -9.63965c0 -0.360352 -0.160156 -2.39941 -4.66016 -2.38965c-37.1602 0.0800781 -34.54 0.189453 -35.21 0.30957\\nc-2.7207 0.509766 -2.2002 3 0.219727 3.4502c1.09961 0.19043 4 -0.540039 4.16016 2.55957c2.43945 56.2207 -0.0703125 51.3408 -3.91016 51.3301zM318.141 273.928c2.45996 -0.609375 3.12988 -1.75977 2.9502 -4.64941\\nc-0.330078 -5.2998 -0.339844 -9 -0.549805 -9.69043c-0.660156 -2.22949 -3.15039 -2.12012 -3.33984 0.270508c-0.379883 4.80957 -3.0498 7.81934 -7.57031 9.14941c-26.2803 7.73047 -32.8096 -15.46 -27.1699 -30.2197c5.87988 -15.4102 22 -15.9199 28.8604 -13.7803\\nc5.91992 1.85059 5.87988 6.5 6.91016 7.58008c1.22949 1.2998 2.25 1.83984 3.11914 -1.09961c0 -0.100586 0.570312 -11.8906 -6 -12.75c-1.59961 -0.209961 -19.3799 -3.69043 -32.6797 3.38965c-21 11.1904 -16.7402 35.4697 -6.87988 45.3301\\nc14 14.0596 39.9102 7.05957 42.3203 6.46973h0.0292969zM289.801 167.858c3.28027 0 3.66016 -3 0.160156 -3.43066c-2.61035 -0.319336 -5 0.419922 -5 -5.45996c0 -2 -0.19043 -29.0498 0.400391 -41.4502c0.109375 -2.28906 1.14941 -3.51953 3.43945 -3.64941\\nc22 -1.20996 14.9502 1.64941 18.79 6.33984c1.83008 2.24023 2.75977 -0.839844 2.75977 -1.08008c0.350586 -13.6201 -4 -12.3896 -5.18945 -12.3994l-38.1602 0.189453c-1.92969 0.230469 -2.05957 3 -0.419922 3.37988c2 0.480469 4.93945 -0.399414 5.12988 2.7998\\nc1 15.8701 0.570312 44.6504 0.339844 47.8105c-0.269531 3.76953 -2.7998 3.26953 -5.67969 3.70996c-2.46973 0.379883 -2 3.21973 0.339844 3.21973c1.4502 0.0205078 17.9697 0.0302734 23.0898 0.0205078zM258.171 225.648\\nc0.0703125 -4.08008 2.86035 -3.45996 6 -3.58008c2.61035 -0.100586 2.53027 -3.41016 -0.0703125 -3.43066c-6.47949 0 -13.6992 0 -21.6094 0.0605469c-3.83984 0 -3.37988 3.34961 0 3.37012c4.49023 0 3.24023 -1.61035 3.41016 45.54\\nc0 5.08008 -3.27051 3.54004 -4.7207 4.22949c-2.58008 1.23047 -1.35938 3.08984 0.410156 3.15039c1.29004 0 20.1904 0.410156 21.1699 -0.209961c0.980469 -0.620117 1.87012 -1.65039 -0.419922 -2.86035c-1 -0.519531 -3.85938 0.280273 -4.14941 -2.46973\\nc0 -0.209961 -0.820312 -1.62988 -0.0703125 -43.7998h0.0498047zM221.261 -48.6221c0.408203 -0.273438 1.13867 -0.495117 1.62988 -0.495117c0.492188 0 1.22168 0.22168 1.62988 0.495117c17 9.79004 182 103.57 197.421 112.51\\nc-0.140625 0.430664 11.2598 0.180664 -181.521 0.270508c-1.21973 0 -1.57031 -0.370117 -1.53027 -1.56055c0 -0.0996094 1.25 -44.5098 1.2207 -50.3799c-0.0791016 -2.17969 -0.688477 -5.63379 -1.36035 -7.70996c-0.549805 -1.83008 0.379883 0.5 -13.5 -32.2295\\nc-0.730469 -1.7207 -1 -2.20996 -2 0.0800781c-4.19043 10.3398 -8.28027 20.7197 -12.5703 31c-1.12109 2.52441 -2.03125 6.81543 -2.03125 9.57812c0 0.333984 0.0146484 0.876953 0.03125 1.21191c0.160156 2.45996 0.800781 16.1191 1.51074 48c0 1.94922 0 2 -2 2\\nh-183c2.5791 -1.63086 178.319 -102.57 196 -112.761zM130.361 140.128c0 -2.39941 0.359375 -2.79004 2.75977 -3c11.54 -1.16992 21 -3.74023 25.6396 7.32031c6 14.46 2.66016 34.4102 -12.4795 38.8398c-2 0.589844 -16 2.75977 -15.9404 -1.50977\\nc0.0498047 -8.04004 0.00976562 -11.6104 0.0205078 -41.6504zM236.111 155.178c0 -2.12988 1.06934 -38.6797 1.08984 -39.1299c0.339844 -9.93945 -25.5801 -5.76953 -25.2305 2.58984c0.0800781 2 1.37012 37.4199 1.10059 39.4307\\nc-14.1006 -7.44043 -14.4199 -40.21 6.43945 -48.8008c1.88184 -0.816406 5.0752 -1.47949 7.12695 -1.47949c5.53418 0 12.3721 3.83008 15.2637 8.5498c4.90918 7.75977 6.83984 29.4697 -5.43066 39c-0.0966797 -0.0400391 -0.257812 -0.09375 -0.359375 -0.120117\\nv-0.0400391zM223.831 353.178c-9.83008 0 -9.73047 -14.75 -0.0703125 -14.8701c9.66016 -0.119141 10.1006 14.8809 0.0703125 14.9102v-0.0400391zM143.681 249.348c0 -1.7998 0.410156 -2.39941 2.16992 -2.58008c13.6201 -1.38965 12.5107 11 12.1602 13.3604\\nc-1.68945 11.2197 -14.3799 10.2002 -14.3496 7.81055c0.0498047 -4.5 -0.0302734 -13.6807 0.0195312 -18.5908zM356.001 242.948l-6.09961 15.8398c-2.16016 -5.48047 -4.16016 -10.5703 -6.23047 -15.8398h12.3301z\\\" />\\n    <glyph glyph-name=\\\"d-and-d-beyond\\\" unicode=\\\"&#xf6ca;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M313.8 206.5c-9.89941 0 -16 7 -15.7002 7.09961c-4.2998 5.7002 -3 -0.299805 -2.39941 -1.89941c-10.9004 10.2998 -5.2998 25.3994 -5.10059 26c0.700195 1.89941 0 2.2002 -0.599609 1.89941c-1 -0.299805 -2.09961 -1.89941 -2.09961 -1.89941\\nc0.799805 9.09961 9.2998 14.7002 9.2998 14.7002l0.200195 -0.200195c1 -1.5 -0.400391 -3.2002 -0.600586 -9c1.60059 2.2998 7.90039 6.59961 11.4004 7.89941c-1.10059 -1.5 -2.10059 -3.59961 -2.10059 -6.59961c3.7002 4.2002 7.5 2.59961 8 2.40039\\nc-12.1992 -11.9004 -7 -26.6006 3.2002 -26.6006c5.7002 0 11.5 6.40039 13.9004 10.7002c2.39941 -2.40039 6.39941 -5.5 7.39941 -6.59961c-3.7998 -7.80078 -11 -17.9004 -24.7998 -17.9004zM366.2 227.6c0 -2.89941 -2.90039 -4.09961 -5.40039 -4.5\\nc0.700195 1.5 1.7998 5.10059 -0.200195 9c0.700195 -0.0996094 5.60059 -0.5 5.60059 -4.5zM376.5 222.4c-0.400391 -6.5 -6.90039 -11.6006 -14.5996 -10.6006c2 -1.7002 6.59961 -3 9 -1.89941c-3.90039 -6.90039 -23.1006 -7.5 -23.1006 6.39941\\nc-2.89941 -2.89941 -2.09961 -7.39941 0 -9.2998c-2.2002 0.700195 -5.7998 3.09961 -6.39941 7.40039c-1.30078 10.0996 4.39941 6.5 -10.4004 18.0996c-4.7998 3.7002 -3 6.59961 -4 8.5c-1.09961 2.2002 -7 4.09961 -4.5 8.5\\nc-0.0996094 -1.59961 1 -2.90039 2.59961 -3.5c1.80078 -0.700195 3.2002 -0.200195 4.80078 -1c1.69922 -1.2002 0.899414 -3.90039 2.19922 -5c1.10059 -0.799805 4.2002 0.299805 6.60059 -1.7998c2.59961 -2 8.2002 -6.7002 10.5996 -8.60059\\nc4.40039 -3.59961 8.7998 0.400391 7.40039 4.60059c4.5 -2.60059 5 -9.90039 1.2998 -12.5c10.5996 -2.40039 13 10.0996 5 11.3994c7.2998 0.700195 13.5 -4.2998 13.5 -10.6992zM337.1 240.8c4.30078 6.10059 13.3008 15.2998 23.8008 15.7998\\nc-5.90039 0.800781 -15.1006 -3.19922 -19.7002 -9c0.899414 3.90039 5.09961 10.1006 10.2002 13c0 0 -2.5 -3.19922 -1.40039 -3.69922c1.59961 -0.800781 5.7998 5.69922 11.2002 5.89941c0 0 -4 -2 -3.2002 -3.39941c0.599609 -0.900391 3.2998 1.2998 8 1.2998\\nc5.7998 0 10.9004 -3.5 13.2998 -6.2002c-4 1.09961 -11.5996 -0.799805 -13.7998 -2.7002c-0.299805 0.200195 -11.7998 9 -22 -15.5c-4.7998 3.7998 -4.40039 3.7002 -6.40039 4.5zM579.6 188.9c37.2002 0 60.4004 -19.6006 60.4004 -48.9004\\nc0 -28.2002 -17 -48.9004 -59.0996 -48.9004c-20.7002 0 -41.2002 1.30078 -51.6006 2.10059l7.40039 8.2002v77.1992l-7.40039 8.2002c10.2998 0.799805 29.6006 2.10059 50.2998 2.10059zM564.5 113.3c25.4004 -3.2002 46.7998 1.40039 46.7998 27\\nc0 22.5 -16.7002 29.6006 -46.7998 26.2998v-53.2998zM301.6 267c0.100586 -0.299805 -2.7998 2.2998 -3.2998 7.5c-0.200195 2.2998 0 19.7998 20 18.9004c11.2002 -0.600586 16.7002 -8.30078 16.7002 -16.5c0 -4.30078 -2.2998 -10.1006 -5.5 -13.8008\\nc-2.2002 2.2002 -5.59961 4.60059 -7.7002 7.80078c3.7998 5.59961 2.2002 14.3994 -4.7002 14.3994c-4.2998 0 -7.7998 -4.5 -6.39941 -9.89941c-0.700195 -2.40039 -1 -5.60059 -0.5 -8c-4.90039 2.59961 -6.5 6 -7.5 9c-1.2998 -2.5 -2.10059 -6 -1.10059 -9.40039z\\nM301.2 261c0.299805 1.7002 -3.10059 4.59961 -4.7998 5.2002c4.7998 0.200195 7 -0.600586 7 -0.600586c-1.30078 1.7002 -1.60059 4.5 -1 6.7002c2.5 -6.09961 11.6992 -7.09961 13.8994 -12.2002c-0.299805 2.30078 -2.39941 4.7002 -4.7998 6.10059\\nc-1.2998 3.2002 -0.299805 9.39941 1.2998 11c-0.5 -8.7998 12 -13.7998 14.6006 -20.2002c-1.40039 5.5 -7.40039 9 -10.1006 12.2002c-1 2.09961 -0.200195 5.7998 0.799805 7.09961c-0.5 -9.7002 15.8008 -14.2998 14.1006 -23.8994\\nc0.899414 -0.400391 2.09961 -1.2002 1.89941 -2.60059c1.30078 0.299805 2.60059 1.7002 2.90039 2.7002c0.700195 -4.5 -1.90039 -9 -4.7998 -10.4004c1.59961 4 -2.7002 5.60059 -6.7002 5.10059c0 0 1.59961 2.2998 1 3.39941\\nc-0.799805 1.5 -8 0.800781 -11.2002 -0.299805c1.10059 0.100586 3.60059 -0.200195 4.60059 -0.5c-2.10059 -2.89941 -1 -7.09961 1.2998 -4.2002c0 0 -1.10059 -3.5 -0.299805 -4.2998c0.799805 -0.799805 2.59961 -0.200195 2.59961 -0.200195\\nc-1.2002 -2.69922 -5.2998 -4.59961 -8.2002 -4.59961c1.10059 0.400391 2.7002 2.2998 3 3.40039c-0.799805 -0.5 -2.7002 -0.700195 -3.5 -0.5c6.10059 3 0 13.1992 -7 8.19922c1 2.7002 3.7002 5.30078 5.7998 6.10059c-1.2998 0.5 -2.69922 0.799805 -4.2998 1.09961\\nc1.7998 1.5 6.2998 2.7998 8.5 2.60059c-3.5 0.799805 -9.89941 -0.300781 -12.7998 -3.7002c0.900391 0 3.2998 -0.5 4.2998 -0.799805c-4 -0.700195 -9.39941 -4.40039 -11 -6.2002c0.299805 2.2002 1 4.2002 0.5 5.59961c-0.799805 2 -3 2.7998 -7.7998 1.7998\\nc3.2002 3.2002 9.7002 5.10059 10.2002 6.90039zM327.1 253.6c0 0 -0.899414 3 -4.19922 4.30078c0.699219 -2.2002 1.5 -4.30078 4.19922 -4.30078zM366 249.9l0.700195 0.699219c0.5 0.400391 1.59961 0.900391 2.7002 1.40039v-18.4004\\nc-1.7002 0.800781 -3.5 1.10059 -5.60059 1.10059c-2.39941 0 -5 -0.5 -5 -0.5c-0.5 0.5 -3.59961 2.89941 -5.09961 3.2002c4.09961 -4.30078 0.5 -9.80078 -3 -7.2002v15.7002c0.700195 0.799805 1.2998 1.7998 2.09961 2.59961\\nc1.7002 2.09961 4.60059 3.40039 7.5 3.40039c1.7998 0 3.60059 -0.400391 4.7002 -1.40039zM79.9004 142.1c22 -6.39941 19.3994 -20.0996 19.3994 -25.1992c0 -7.80078 -3.2002 -13.6006 -9.89941 -17.6006c-12.6006 -7.39941 -24.7002 -5.89941 -86.4004 -5.89941\\nl8.40039 8.59961v32.2998l-11.4004 14.6006h11.2998v29.5l-8.2998 8.59961h56.0996c12.9004 0 37 -4.40039 37 -25c0 -1.90039 1 -15.2998 -16.1992 -19.9004zM38.5996 169.6v-20.8994c10.6006 0 29.6006 -3.2998 29.6006 8.7998v3\\nc0 9.90039 -9.60059 9.09961 -29.6006 9.09961zM38.5996 110.4c20.4004 0 32.9004 -1.90039 32.9004 9.2998h-0.200195v4.5c0 11.0996 -20.5 8.7998 -32.7002 8.7998v-22.5996zM139.8 129.7v-15.4004l60.1006 0.200195l-14.1006 -21.2002h-81.2002l7.40039 8.2002v77.0996\\nl-7.40039 8.2002l73.5 0.200195v-0.200195l14.1006 -21h-52.4004v-14.8994h37.2002l-14.0996 -21.2002v-0.200195zM354.5 189.8c73.7998 0 77.5996 -99.2998 -0.299805 -99.2998c-77.2002 0 -73.6006 99.2998 0.299805 99.2998zM354.2 112.3\\nc39 0 37 55.2002 0.200195 55.2998c-37.1006 0 -37.6006 -55.2998 -0.200195 -55.2998zM262.9 120.6l0.199219 -19l7.2002 -8.19922h-42.5996l7.7002 8.19922l-0.200195 19.4004l-44.1006 65.7998h44.9004l-6.40039 -7.2002l21 -37.1992h0.300781l20.5 37.1992\\nl-6.10059 7.2002h41.7002zM234.5 271.9c-9.09961 6.69922 -9.5 14.0996 -9.59961 14.8994c7.2998 -4.2998 9 -4 39.8994 -4c-5.7998 0 24 3.10059 32.2002 -22.8994c-0.400391 0 -8.40039 -4.80078 -10.4004 -7.90039c5.30078 1.90039 8.90039 1.09961 9 1.09961\\nc-8 -5.09961 -9.59961 -14.7998 -9.59961 -20.5c0.900391 2.10059 2.7002 3.7002 2.7002 3.5c-0.600586 -2.5 -1.40039 -7 -0.799805 -12c-8.60059 -7.09961 -16 -8.59961 -26 -8.59961h-35.1006c0.400391 0.0996094 7.7998 4.5 7.90039 4.59961\\nc1.89941 1.10059 2.7002 2.2002 2.7002 6.40039v38.7998c0 4.2002 -1.30078 5.2998 -2.90039 6.60059zM256 266.4v-34.6006c4.7002 0 23.0996 -3.39941 23.0996 17.2998c0 20.6006 -18.5 17.3008 -23.0996 17.3008zM484.9 186.8l39.1992 -0.0996094l-7.39941 -8.2998\\nv-85.2002h-21.2998c-4 12.7002 -44.8008 45 -48.5 55.5996h-0.300781v-47.3994l7.40039 -8.2002h-39l7.2002 8.2998v76.9004l-7.40039 8.5h31.6006c2.89941 -9.40039 39.7998 -36.5 45.1992 -50.9004h0.300781v42.5zM378.2 282.9\\nc32.7002 -1.60059 33.7998 -29.8008 33.7998 -33.6006c0 -6.7002 -3.2998 -34 -36.7002 -34h-0.299805c3.59961 4.2998 3.5 11.9004 -2.2002 16.2998c1.2002 0 19.7002 -3.19922 19.7002 17.3008c0 20.6992 -18.4004 17.2998 -23.0996 17.2998v-4.2998\\nc-5.40039 0.799805 -7.40039 -0.300781 -7.5 -0.300781c2.09961 1.80078 4.5 2.60059 6.09961 2.90039c-7.09961 1.59961 -13.5996 -2.40039 -14.5996 -3.5c0.799805 1.7998 2.39941 3.40039 3.5 4.5c-2.30078 -0.799805 -4.30078 -1.90039 -6.10059 -3\\nc0 5.2002 0.200195 7.5 -2.89941 9.5c-9.10059 6.59961 -9.5 14.2002 -9.60059 14.9004c7.10059 -4.2002 7.7002 -4 39.9004 -4z\\\" />\\n    <glyph glyph-name=\\\"dev\\\" unicode=\\\"&#xf6cc;\\\" \\nd=\\\"M120.12 239.71c3.87012 -2.90039 5.82031 -7.25977 5.83008 -13.0596v-69.6504c0 -5.80957 -1.94043 -10.1602 -5.82031 -13.0596c-3.87988 -2.90039 -7.76953 -4.35059 -11.6494 -4.35059h-17.4502v104.47h17.4395c3.87988 0 7.77051 -1.44922 11.6504 -4.34961z\\nM404.1 416c24.2002 0 43.8408 -19.5898 43.9004 -43.7998v-360.4c-0.0595703 -24.21 -19.6904 -43.7998 -43.9004 -43.7998h-360.199c-24.2002 0 -43.8408 19.5898 -43.9004 43.7998v360.4c0.0595703 24.21 19.7002 43.7998 43.9004 43.7998h360.199zM154.2 156.81\\nl-0.00976562 70.9307c-0.0107422 18.8193 -11.9307 47.2793 -47.3701 47.2793h-47.3799v-165.46h46.3994c36.75 -0.0595703 48.3604 28.4404 48.3604 47.25zM254.88 245.47l0.00976562 29.5205h-63.1895c-11.1504 -0.280273 -19.9805 -9.54004 -19.71 -20.6904v-125.109\\nc0.279297 -11.1602 9.55957 -19.9805 20.7197 -19.6904h62.1797v29.5703h-53.29v38.4102h32.5703v29.5693h-32.5703v38.4199h53.2803zM358.52 130.18l38.4609 144.801h-32.5801l-29.5703 -113.721l-29.71 113.721h-32.5703l38.5303 -144.801\\nc10.5898 -24.6299 34.2402 -30.75 47.4395 0z\\\" />\\n    <glyph glyph-name=\\\"fantasy-flight-games\\\" unicode=\\\"&#xf6dc;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M256 415.14l223.14 -223.14l-223.14 -223.14l-223.14 223.14zM88.3398 192.17c11.3447 -11.2461 29.7705 -29.4893 41.1299 -40.7197c20.1602 19.8799 40.46 39.8994 61.8506 60.9902c12.0596 -12.5801 24.5195 -25.5703 36.54 -38.1104\\nc12.0293 11.6895 23.7393 23.0596 35.6895 34.6602c-6.99023 7.4502 -32.1494 32.8301 -35.0898 35.7793c-1.91016 1.9209 -2.29004 3.2207 -0.120117 5.35059c15.5801 15.2295 39.21 17.79 56.9805 5.09961c7.98926 -5.70996 14.2998 -11.6396 48.5098 -43.9502\\nc10.8203 11.1504 22.2295 22.8506 33.5 34.6904c0.490234 0.520508 0.0996094 2.63965 -0.580078 3.37988c-0.0898438 0.100586 -37.5195 40.6006 -62.1504 59c-33.5801 25.0801 -78.3193 23.0605 -119.77 -18.6895c-84.5703 -85.1807 -94.5303 -95.4805 -96.4902 -97.4805z\\nM323.16 90.5703c18.8203 18.79 80.3301 80.6396 100.5 101.5c-13.7305 13.4492 -27.1797 26.6299 -40.8604 40.0293c-20.0098 -19.7393 -40.2402 -39.6895 -61.25 -60.4199c-12.3301 12.8301 -24.8799 25.8799 -37.25 38.75\\nc-1.25977 -0.689453 -1.64941 -0.80957 -1.91016 -1.06934c-10.7295 -10.7705 -21.4199 -21.5801 -32.21 -32.29c-2.22949 -2.20996 -0.519531 -3.35059 0.800781 -4.69043c10.5791 -10.7402 21.1797 -21.4502 31.7695 -32.1797\\nc3.5498 -3.60059 3.54004 -3.85059 -0.139648 -7.24023c-16.8008 -15.4697 -40.8408 -16.54 -59.3203 -1.7998c-7.62012 6.08008 -11.6602 10.1797 -44.6797 42.0898c-11.5801 -11.8896 -23.3203 -23.9404 -35.3701 -36.3096\\nc33.5498 -34.7607 50.8496 -53.3408 72.9297 -66.8408c28.9004 -17.6699 71.5 -14.96 106.99 20.4707zM256 448l256 -256l-256 -256l-256 256zM16 192l240 -240l240 240l-240 240z\\\" />\\n    <glyph glyph-name=\\\"penny-arcade\\\" unicode=\\\"&#xf704;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M421.91 283.73c7.33984 -16.2705 2.29004 -5.07031 24.6299 -54.6807l-39.7305 -10.6094c13.7002 59.2295 10.6104 45.8398 15.1006 65.29zM215.82 232.62c32.5 8.99023 41.9492 -37.6396 -0.350586 -47.4297c-14.2002 -3.77051 -6.64941 -1.75 -34.8193 -9.34082\\nl-4.45996 46.1904c28.3193 7.5498 19.4395 5.17969 39.6299 10.5801zM541.98 258.81c75.7998 -37.9092 98 -76.3193 97.9893 -104.47c2.10059 -78.8496 -183.3 -130.33 -399.89 -84.8301c0.540039 -13 -8.00977 -24.6494 -20.5801 -28.0195\\nc-125.54 -33.54 -117.35 -31.75 -122.53 -31.7598c-14.3701 -0.0107422 -26.4102 10.8896 -27.7998 25.1992l-4.2998 44.4805c-0.0683594 0.724609 -0.125 1.90332 -0.125 2.63184c0 10.5811 8.01758 22.2461 17.8945 26.0381l-1.73926 17.8799\\nc-50.2305 28.2598 -80.9004 61.8701 -80.9004 95.3701c0 72.9199 144.26 113.4 309.41 98.3701c2.68945 7.54395 11.1514 15.3438 18.8896 17.4102c96.8701 25.9092 65.3203 17.4795 135.59 36.2295c13.1602 3.50977 26.9307 -2.95996 32.6201 -15.3301zM255.14 149.7\\nc17.5 4.0498 40.2363 19.1562 50.75 33.7197c21.6006 32.5898 14.1104 105.561 -42.5498 104.43c-16.04 -0.229492 -8.07031 0.890625 -186.22 -46.6494l4.34961 -44.5l20.1201 5.38965l11.1104 -114.64l-20.0205 -5.35059l4.30078 -44.5195l115.31 30.7803\\nl-4.50977 44.5098l-20.5303 -5.50977l-2.45996 23.5498l48.4404 12.9102zM454.32 133.08l108.55 28.96l-4.2998 44.4795l-20.79 -5.55957l-66.6699 145.47c-70.5801 -18.8301 -42.2305 -11.25 -135.591 -36.2393l4.2002 -44.4805l17.1504 4.55957l-33.0801 -126.47\\nl-20.9902 -5.58984l4.45996 -44.4297l112.851 30.0693l-4.05078 39.54l-19.1992 -5.12012l4.09961 17.54l57.7598 15.4209l6.61035 -14.6807l-14.9004 -3.97949z\\\" />\\n    <glyph glyph-name=\\\"wizards-of-the-coast\\\" unicode=\\\"&#xf730;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M219.19 102.31c7.44922 5.80078 16.2598 0.680664 21.7295 -7.0791c7.08984 -10.1201 6.24023 -18.1602 -0.259766 -23.04c-7.62012 -6.24023 -17.0898 0.129883 -21.7305 6.5498c-10.8096 15.1299 -1.63965 22.1895 0.260742 23.5693zM555.94 26.3701\\nc1.30957 4.4502 3.92969 10.21 3.93945 20.1699c0 34.04 -41.6299 64.4102 -100.03 68.0801c-53.1592 3.39941 -120.46 -15.4502 -184.35 -73.8506l-0.790039 0.260742c1.58008 10.4697 -0.780273 16.2295 -3.40039 21.21l0.260742 1.56934\\nc64.4199 51.3203 134.069 66.5107 188.8 60.4902c61.0098 -6.54004 104.479 -39.54 101.34 -78.0303c-0.790039 -9.68945 -2.88965 -15.71 -4.97949 -19.8994c-1.34082 -1.66992 -1.13086 -1.7002 -0.790039 0zM392.28 207.58\\nc-0.530273 7.07031 3.13965 11.7803 6.7998 15.46c3.66992 3.91992 14.9297 10.4697 14.9297 10.4697s-1.2998 -26.4502 -2.08984 -29.8496c-1.04004 -3.92969 -4.96973 -6.81055 -10.4697 -6.5498c-4.98047 0.259766 -8.37988 3.39941 -9.16992 10.4697zM342.26 358.68\\nc147.17 0 275.48 -86.6797 291.21 -196.939c0 0 -3.66992 -1.31055 -9.68945 -4.4502c0 -0.259766 1.0498 -10.7402 0.259766 -16.5c-0.259766 -1.83008 -1.0498 -1.0498 -1.0498 0c-0.270508 5.24023 -1.57031 11.5303 -2.36035 14.9297\\nc-4.70996 -2.60938 -10.21 -6.54004 -15.9697 -11.7793c0 0 4.70996 -10.21 4.70996 -25.9209c0 -21.21 -8.37988 -32.9893 -16.5 -37.9697l-0.259766 0.520508c9.16992 9.16992 12.5693 21.4795 12.5693 31.9492c0 13.8701 -6.80957 33.25 -14.3994 41.3701\\nc0 0 4.4502 -8.12012 6.80957 -17.8096c0 0 -21.21 -21.4697 -26.9697 -62.3203c0 0 -3.66992 9.16992 -10.7402 16.2402c0 0 12.0498 -15.4502 12.0498 -38.2305c0 -19.3799 -12.8398 -37.4395 -27.5 -48.1797c-0.989258 0 -0.790039 -0.169922 -0.790039 0.790039\\nc15.71 12.8301 22.2607 28.0205 22.2607 46.3506c0 38.2295 -49.2305 80.3896 -130.15 80.3896c-96.1104 0 -181.74 -58.1299 -236.99 -128.05l-1.0498 0.259766c-40.3203 120.979 -135.64 185.66 -196.13 202.16c-2.09961 0.519531 -1.83984 0.790039 -0.790039 1.30957\\nc12.3096 14.4004 136.96 151.88 341.47 151.88zM243.02 69.0596c16.8408 14.5908 4.99023 30.7705 4.71094 31.1602c-4.08008 5.99023 -16.3105 16.8506 -31.1602 5.5c-10.9502 -8.37988 -11.6406 -22.8896 -4.19043 -32.4697\\nc6.44043 -8.26953 19.5801 -13.1797 30.6396 -4.19043zM245.11 205.49l1.83008 -8.11035l-3.6709 4.4502l-14.1396 -26.71l24.6201 -28.7998l12.5703 6.01953l-11.7803 70.96zM263.7 87.9102c3.41016 2.35938 7.33984 4.97949 9.67969 6.57031l-0.259766 0.259766\\nc-1.56055 -0.780273 -3.11035 -1.0498 -12.5703 15.9697v0.259766c6.87012 5.16016 8.45996 4.89062 11.5205 5.5l0.259766 0.260742c-1.31055 3.66992 -1.31055 3.66992 -1.83008 5.5h-0.259766c-3.95996 -3.31055 -1.4707 -1.58008 -11.5205 -7.86035h-0.259766\\nc-1.83008 3.13965 -4.19043 7.33008 -5.75977 9.68945v1.31055c4.4502 3.91992 10.2197 6.7998 12.3096 7.58984c2.87988 1.0498 4.19043 0.520508 5.24023 0.259766l0.259766 0.520508c-1.30957 1.83008 -2.08984 2.87988 -3.39941 4.70996l-0.520508 0.259766\\nc-9.9502 -5.5 -17.54 -9.9502 -25.3994 -15.71l0.259766 -0.519531c1.30957 0.259766 3.13965 -0.260742 4.4502 -2.62012c15.04 -25.0801 19.5898 -27.5908 17.54 -31.6904zM318.96 120.38v0.25c-1.99023 0 -2.34961 -1.37012 -14.6602 30.6396v0.260742\\nc4.95996 1.85938 8.78027 4.37988 12.3105 2.62012l0.259766 0.519531l-3.13965 4.98047l-0.520508 0.259766c-2.22949 -0.929688 -20.4697 -8.00977 -27.7598 -12.5703l-0.259766 -0.519531l1.0498 -5.76074h0.519531c1.0498 3.68066 9.7998 7.33008 9.9502 7.33008\\nl0.259766 -0.259766c12.9404 -29.7598 13.0703 -29.8799 11.7803 -32.4697l0.259766 -0.259766c3.93066 2.09961 6.81055 3.40918 9.9502 4.97949zM363.73 136.88c-0.780273 0.520508 -2.09082 1.31055 -2.63086 3.92969c-1.56934 6.02051 -4.70996 20.1709 -6.2793 26.4502\\nc-0.530273 1.57031 -0.530273 3.14062 0.519531 4.4502l-0.259766 0.259766c-3.41016 -0.529297 -6.29004 -1.30957 -10.7402 -2.35938v-0.260742c1.57031 -0.529297 2.10059 -2.09961 2.62012 -3.92969l2.62012 -9.42969l-0.259766 -0.259766\\nc-3.40039 -1.05078 -8.90039 -2.62012 -12.8301 -3.93066h-0.259766c-0.780273 2.10059 -1.83008 5.75977 -3.14062 9.69043l0.259766 4.70996l-0.259766 0.259766c-4.71973 -1.30957 -7.59961 -2.34961 -10.7402 -3.40039v-0.519531\\nc1.05078 0 2.10059 -1.30957 2.62012 -3.13965c1.0498 -3.40039 8.12012 -24.0908 9.16992 -27.2305c0.790039 -2.09961 0.790039 -3.66992 -0.259766 -4.97949l0.259766 -0.260742c3.14062 1.31055 6.54004 2.87988 10.21 3.93066v0.519531\\nc-1.0498 0.259766 -2.08984 0.780273 -2.87988 3.13965c-1.0498 3.93066 -3.39941 11.2607 -4.18945 13.8809l0.259766 0.259766c3.92969 1.30957 9.42969 3.13965 12.8301 3.92969l0.259766 -0.259766c0.530273 -2.09961 2.62012 -10.2197 3.66992 -13.6201\\nl-0.519531 -4.4502l0.259766 -0.259766c4.4502 1.57031 5.5 1.83008 9.69043 2.87988zM395.94 143.69c0.529297 1.8291 1.0498 3.65918 1.5791 6.04004h-0.259766c-2.0293 -4.06055 -15.0898 -5.09082 -16.2402 -4.71094l-0.259766 0.260742\\nc-0.519531 3.13965 -1.83008 10.4795 -2.08984 12.5693l0.259766 0.260742c8.06055 0.899414 5.40039 1.0293 10.21 0h0.260742c0 3.40918 0.259766 3.66992 0.259766 5.23926h-0.259766c-5.98047 -2.2998 -1.2207 -0.679688 -10.7402 -2.35938l-0.259766 0.259766\\nc-0.520508 3.40039 -1.31055 8.37988 -1.57031 9.9502l0.259766 0.259766c12.9004 2.41016 15.1006 0.349609 16.2402 -0.790039l0.259766 0.259766c-0.780273 2.36035 -1.0498 3.14062 -1.57031 5.5l-0.259766 0.260742\\nc-4.71973 -0.260742 -15.71 -1.05078 -24.8799 -2.62012l-0.790039 -0.520508c1.83008 -0.790039 2.36035 -1.83984 2.62012 -3.66992c1.58008 -7.59961 3.41016 -18.3301 4.98047 -26.1895l-0.790039 -4.19043l0.259766 -0.259766\\nc8.37988 1.83008 17.8096 3.66992 22.5195 4.18945zM406.68 188.2c3.14062 1.56934 7.33008 5.5 7.33008 5.50977c1.95996 -4.58008 0.970703 -2.70996 4.19043 -7.86035c10.1494 -0.459961 8.60938 0.0205078 20.4297 -1.0498l0.790039 4.70996\\ns-4.18945 0 -5.75977 1.83008c-1.0498 1.31055 -1.31055 3.14062 -1.57031 5.5c0 2.36035 0.270508 16.5 0.790039 20.6904c0.259766 4.18945 2.08984 20.4199 2.08984 23.04c0.260742 2.62012 1.0498 8.91016 0.260742 12.0498\\nc-4.82031 19.2803 -24.4307 17.8096 -50.0205 16.2402l-5.24023 -16.2402l2.62012 -2.87988c16.5498 16.5498 37.6201 4.56934 29.5898 -5.75977c-5.18945 -6.9209 -19.7393 -8.90039 -28.54 -17.0205c-6.47949 -6.49023 -12.2393 -20.9004 -5.5 -31.6904\\nc6.12988 -11.0391 17.29 -9.96973 17.54 -9.94922c2.87988 0 6.55078 0.519531 11 2.87988zM443.86 166.99c0 1.83984 0.269531 4.18945 0.269531 5.25l-0.259766 0.519531c-14.3604 8.98047 -26.8604 0.919922 -28.7998 -9.9502\\nc-2.83984 -16.0898 15.3594 -25.46 25.6602 -18.5898l0.519531 0.520508c0 0.259766 1.30957 4.4502 1.83008 6.2793l-0.259766 0.260742c-6.39062 -9.58008 -23.3203 -6.87012 -20.6904 10.21c1.91016 12.6602 15.3799 16.0801 21.7305 5.5zM449.63 254.72\\nc0 0 4.96973 -0.790039 4.99023 -3.66016c0 -2.08984 -4.98047 -55.25 -4.98047 -55.25c-0.109375 -1.48926 -0.339844 -6.80957 -7.58984 -6.80957l-0.790039 -4.70996c18.3906 -2.83008 19.3701 -3.04004 36.9199 -7.33008l0.520508 4.70996\\nc-13.0498 3.91992 -9.74023 7.37012 -4.4502 46.0898c1.09961 0.870117 8.62012 7.14062 20.6904 0.790039l11.2598 11.2598s-9.69043 8.90039 -14.9307 7.33008c-5.23926 -1.30957 -15.4492 -10.7393 -15.4492 -10.7393l1.56934 17.54\\nc-8.10938 4.0498 -27.0693 7.3291 -27.7598 7.3291v-6.5498zM460.62 140.28c9.42969 -2.35059 16.2402 2.62012 18.8496 11.5195c2.08984 7.60059 -1.56934 16.7598 -10.7393 19.3799c-6.54004 2.10059 -15.7109 -0.779297 -18.8506 -10.21\\nc-3.39941 -9.68945 2.62012 -18.5996 10.7402 -20.6895zM502.78 130.59c-0.780273 1.31055 -1.04004 2.10059 -0.799805 3.91016c1.22949 27.0098 1.5293 24.6602 1.0498 25.1396c-2.08984 0.790039 -5.5 2.09082 -7.58984 2.87988l-0.520508 -0.259766v-2.08984\\nc-3.92969 -6.01953 -10.4795 -15.4502 -13.8799 -20.1602l-2.62012 -1.83008v-0.259766c2.08984 -0.259766 4.70996 -1.30957 6.02051 -1.57031v0.260742l0.790039 3.39941c0.789062 1.0498 2.35938 3.66992 3.66992 5.5c0.40918 0 2.25 -0.549805 7.06934 -2.35938\\nc0.330078 -0.320312 0.330078 0.649414 -0.259766 -7.59082l-1.57031 -1.8291v-0.260742c1.57031 -0.519531 6.28027 -2.35938 8.64062 -2.87988zM498.07 220.41c-13.2207 -21.1504 -9.39062 -51.6006 9.66992 -52.9004c5.75977 -0.259766 9.42969 3.93066 9.68945 3.66992\\nl-2.08984 -6.80957c8.91016 -4.21973 11.4404 -5.29004 17.8105 -8.63965l1.83008 4.44922c-6.14062 3.51074 -1.29004 11.25 24.6191 84.3203c-6.13965 6.45996 -10.2998 10.0596 -22.5195 20.4297l-1.83008 -3.66992c1.62988 -1.35938 6.79004 -5.00977 4.4502 -11.2598\\nl-7.58984 -26.1904c-3.28027 12.79 -22.79 14.8701 -34.04 -3.39941zM527.4 141.07l2.35938 3.39941v0.520508c-3.41016 6.83008 -11.9395 7.41992 -14.6602 2.35938c-1.83984 -3.40918 0.260742 -7.06934 1.83008 -9.68945\\nc1.57031 -2.87988 3.14062 -6.29004 2.08984 -8.37988c-2.31934 -4.62988 -8.94922 -0.680664 -8.37988 4.97949l-0.790039 -0.259766c-2.09961 -4.7998 -1.83008 -4.00977 -1.83008 -4.70996c3.05078 -6.09961 12.8105 -7.12988 15.4502 -0.790039\\nc1.57031 3.15039 0.520508 6.80957 -1.0498 9.42969c-1.83008 3.40039 -4.18945 6.29004 -2.87988 8.37988c1.51953 2.65039 7.86035 0.470703 7.86035 -5.23926zM548.61 127.71l1.30957 3.91016l-0.259766 0.259766c-2.36035 2.08984 -8.64062 6.54004 -12.3105 8.90039\\nh-0.259766l-3.13965 -3.40039v-0.259766c4.7998 -0.320312 3.37988 0.149414 6.01953 -1.83008v-0.259766c-2.62012 -4.9707 -6.0293 -11.2607 -9.16992 -17.0205l-2.08984 -1.30957l-0.259766 -0.259766l5.75977 -4.4502l0.259766 0.259766\\nc-0.259766 0.530273 -0.519531 1.57031 0.790039 3.92969c2.87988 5.77051 6.28027 12.0508 8.64062 16.2402h0.259766c3.54004 -2.57031 2.49023 -1.43945 4.4502 -4.70996zM575.84 171.97l7.85059 10.46s-9.4209 18.8604 -23.04 16.5\\nc-20.8408 -4.0293 -3.15039 -34.21 -2.09082 -38.2295c4.33008 -15.1299 -16.3193 -12.5605 -13.3496 5.24023l-2.87988 2.08984l-4.98047 -14.4004s11.7803 -11.2598 20.1602 -10.4697c8.12012 0.790039 13.8799 6.29004 13.8799 16.5\\nc0 8.37988 -7.85938 22.7803 -7.85938 27.7598c0 6.86035 12.2695 4.75977 11.5195 -4.97949c-0.259766 -2.61035 -1.2998 -5.23047 -2.08984 -7.59082zM611.46 182.18c0.780273 -2.35938 1.57031 -1.83008 0.790039 0.270508\\nc-32.4697 98.9795 -132.76 138.78 -199.8 139.83c-50.54 0.779297 -89.5605 -11.79 -131.98 -35.8799l20.6904 61.0098l-33.7803 -65.7305l-8.89941 20.9502c3.13965 1.04004 6.2793 2.08984 6.2793 2.08984l-2.62012 8.64062s-3.13965 -0.780273 -7.33008 -2.09082\\nl-12.0498 28.2803l13.6201 -61.0098c-5.12012 2.55957 -19.0996 6.83008 -6.5498 19.3799l-2.62012 11c-6.97949 -2.21973 -13.2295 -3.62012 -32.21 -9.68945l-23.0801 11.5l59.1797 -42.6807l-4.70996 -2.08984l-17.2793 13.8799\\nc2.23926 -5.13965 3.2998 -12.1699 4.70996 -19.6396l-28.54 -13.0898l-30.1104 36.1396l-17.2803 -9.16992l13.6201 -42.4199l-11.2598 -4.98047l94.2695 29.3301l-3.66992 -10.4697l-0.519531 3.13965l-13.0898 -3.39941l4.97949 -24.6201l-4.4502 -12.3105\\nl-25.6592 30.6406l-39.8008 -10.21l18.8506 -58.9199c-60.1299 62.3994 -67.7002 66.3994 -61.7998 75.6797c2.09961 2.87988 7.85938 7.07031 7.85938 7.07031l-4.18945 7.06934c-26.7803 -18.3496 -27.8398 -19.1494 -58.4004 -42.6797l4.98047 -6.01953\\ns8.12012 5.75977 13.6201 5.5c7.81934 -0.350586 1.76953 2.93945 113.659 -98.7305l11.7803 8.37988l-27.7598 93.4805l35.8799 -42.1602l-4.70996 -13.8799l41.9004 88.5098c34.6699 -80.5098 29.1494 -66.9502 32.9893 -78.8203l-33.5195 67.2998l-2.36035 -4.44922\\nc1.2998 -1.30078 -0.919922 3.05957 22.7803 -59.4404c3.22949 -8.88965 -1.10059 -9.88965 -5.5 -12.8301l2.36035 -4.70996c15.3594 6.79004 22.9395 9.54004 39.0195 14.4004l-1.0498 4.97949c-8.89062 -1.33008 -10.1006 0.169922 -12.0498 4.4502\\nc-1.05078 2.09961 -14.1504 40.0703 -20.4307 58.6602l-10.21 4.97949l-2.35938 8.12012l61.54 -36.6602l-13.0908 -43.21c12.1904 3.26074 27.0303 6.74023 49.4902 9.9502l-0.259766 26.71l-4.98047 -1.0498c-0.669922 -13.7998 -6.0293 -22.0801 -19.6396 -22.7803\\nl22.2598 80.3906c-27.6201 -0.450195 -59.2695 -7.19043 -66.7695 -8.90039l3.92969 -16.5l-25.1396 19.6396l91.3896 20.6904l-85.6299 -9.16992c38.4902 22.5195 79.3398 39.0195 132.76 37.9697c131.46 -2.08984 180.95 -99.2402 191.95 -129.62zM203.48 295.57\\nl2.35938 -8.64062c7.82031 2.61035 10.8604 2.36035 11.2598 2.36035l-9.42969 7.58984c-2.36035 -0.790039 -4.18945 -1.30957 -4.18945 -1.30957zM347.24 257.07l-11.5303 -37.71l-21.7295 17.0195c6.7998 25.5 31.6895 21.29 33.2598 20.6904zM318.43 380.93\\nc224.94 0 321.83 -143.76 321.57 -227.55c0 -11 -0.269531 -17.5498 -0.790039 -19.6396c-0.259766 -2.10059 -1.0498 -0.790039 -1.0498 0.519531v9.9502c0 106.58 -121.51 223.37 -301.67 223.37c-61.2705 0 -103.69 -12.0498 -110.24 -13.8799l-1.57031 0.259766\\nc-6.80957 7.58984 -12.8301 9.69043 -21.21 11.7803v0.790039c8.91016 2.34961 56.5605 14.3994 114.96 14.3994zM529.49 211.25c-8.61035 -34.4502 -13.6504 -35.3496 -18.3301 -35.3604c-7.33008 0 -6.81055 9.43066 -6.02051 14.9307\\nc0.879883 9.72949 7.40039 34.6494 17.0205 33.5195c7.33008 -0.780273 8.63965 -7.33008 7.33008 -13.0898zM467.96 168.3c3.40039 -0.780273 7.84961 -4.4502 5.23047 -14.3896c-2.88086 -11.2598 -8.11035 -11.79 -11.7803 -10.7402\\nc-5.5 1.31055 -7.85059 7.84961 -6.02051 14.6602c3.14062 11.2598 9.9502 11.2598 12.5703 10.4697zM491 147.35v0.270508c1.0498 1.83008 5.5 8.63965 6.5498 9.9502c-0.269531 -3.66992 -0.790039 -10.2207 -0.790039 -12.0508\\nc-2.62012 0.780273 -3.92969 1.31055 -5.75977 1.83008z\\\" />\\n    <glyph glyph-name=\\\"think-peaks\\\" unicode=\\\"&#xf731;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M465.4 38.5996l-206.2 353.801l-204.2 -352.101l-32 0.299805l236.2 407.4l206.2 -353.9l55.0996 95l32 -0.299805zM110.1 82.7002l149.601 257.899l235.8 -404.6l-32.5 0.0996094l-203.4 349.101l-117.399 -202.5h-32.1006z\\\" />\\n    <glyph glyph-name=\\\"reacteurope\\\" unicode=\\\"&#xf75d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M250.6 236.26l2 6.7998l-5.69922 4.30078l7.19922 0.0996094l2.30078 6.7998l2.2998 -6.7998l7.09961 -0.0996094l-5.7002 -4.30078l2.10059 -6.7998l-5.7998 4.10059zM314.3 236.26l1.90039 6.7998l-5.7002 4.30078l7.2002 0.0996094l2.2998 6.7998l2.2998 -6.7998\\nl7.2002 -0.0996094l-5.7002 -4.30078l2.10059 -6.7998l-5.80078 4.10059zM223 185.76c4.90039 0 3.7998 -3.89941 3.7998 -13.7598c0 -10.2998 -6.7002 -14.0996 -16.7998 -14.0996h-0.200195c-10.0996 0 -16.7998 3.69922 -16.7998 14.0996v40.0596\\nc0 9.90039 6.7002 14.1006 16.7998 14.1006h0.200195c10.0996 0 16.7998 -4.2002 16.7998 -14.1006c0 -8.39941 0.900391 -12.1992 -3.7998 -12.2998h-3.40039c-4.5 0 -3.7998 3.2998 -3.7998 10.5c0 4.7002 -2.2998 6.10059 -5.7998 6.10059\\ns-5.7998 -1.40039 -5.7998 -6.10059v-36.5996c0 -4.7002 2.2998 -6.10059 5.7998 -6.10059s5.7998 1.40039 5.7998 6.10059c0 8.09961 -1 12.0996 3.7998 12.0996h3.40039zM142.3 168.36c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961\\nc0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-21.8994c-2.5 0 -3.80078 1.2998 -3.80078 3.7998v59.0996c0 2.5 1.30078 3.90039 3.7002 3.80078h21.7002c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-14.4004v-18.2998h11.4004\\nc2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-11.4004v-19.2998h14.7002zM100.3 186.86l8.10059 -23.9004c0.799805 -2.59961 -0.400391 -4.40039 -3.2002 -4.40039h-3.2998\\nc-0.0820312 -0.00585938 -0.21582 -0.0107422 -0.297852 -0.0107422c-1.81543 0 -3.6084 1.43848 -4.00293 3.21094l-7.39941 23.5h-5.60059v-22.8994c0 -2.5 -1.2998 -3.80078 -3.7998 -3.80078h-3.39941c-2.5 0 -3.80078 1.30078 -3.80078 3.80078v59.0996\\nc0 2.5 1.30078 3.7998 3.80078 3.7998h13.3994c10.1006 0 16.7998 -4 16.7998 -14.0996v-11.9004c0 -6.39941 -2.69922 -10.3994 -7.2998 -12.3994zM96.5 200.86v8.69922c0 4.80078 -2.5 6.10059 -6.09961 6.10059h-5.80078v-20.9004h5.80078\\nc3.59961 0 6.09961 1.2998 6.09961 6.10059zM176 222l11.2002 -59.2002c0.5 -2.7002 -0.799805 -4.09961 -3.40039 -4.09961h-3.5c-0.100586 -0.00976562 -0.264648 -0.0185547 -0.366211 -0.0185547c-1.94531 0 -3.61816 1.57617 -3.7334 3.51855l-1.7998 11.2998h-12.2002\\nl-1.7998 -11.2998c-0.116211 -1.94238 -1.78809 -3.51855 -3.7334 -3.51855c-0.101562 0 -0.265625 0.00878906 -0.367188 0.0185547h-3c-2.5 0 -3.89941 1.39941 -3.39941 4.09961l11 59.2002c0.135742 1.88477 1.78027 3.41504 3.66992 3.41504\\nc0.0908203 0 0.239258 -0.00683594 0.330078 -0.0146484h6.89941c0.110352 0.0117188 0.290039 0.0205078 0.401367 0.0205078c1.89844 0 3.60059 -1.53223 3.79883 -3.4209zM163.7 182.7h9.39941l-4.69922 29.7002zM253 162.5c0 -2.45996 -1.2998 -3.83984 -3.7998 -3.7998\\nh-3.40039c-2.5 0 -3.7998 1.2998 -3.7998 3.7998v53.2002h-7.2998c-2.5 0 -3.7998 1.2998 -3.7998 3.7998v2.09961c0 2.5 1.2998 3.80078 3.7998 3.80078h25.7998c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-7.5v-53.2002z\\nM501 163.3c0.0449219 0.00390625 0.119141 -0.0322266 0.164062 -0.0322266c1.01562 0 1.84082 -0.824219 1.84082 -1.83984c0 -0.0351562 -0.00292969 -0.0927734 -0.00488281 -0.12793v-0.799805c0.00195312 -0.0273438 0.00292969 -0.0722656 0.00292969 -0.100586\\nc0 -0.999023 -0.810547 -1.80957 -1.81055 -1.80957c-0.0527344 0 -0.139648 0.00488281 -0.192383 0.00976562h-22.5c-0.0527344 -0.00488281 -0.139648 -0.00976562 -0.192383 -0.00976562c-1 0 -1.81055 0.810547 -1.81055 1.80957\\nc0 0.0283203 0.000976562 0.0732422 0.00292969 0.100586v63c-0.00878906 0.0625 -0.0166016 0.166016 -0.0166016 0.229492c0 0.893555 0.725586 1.62012 1.62012 1.62012c0.111328 0 0.289062 -0.0224609 0.396484 -0.0498047h22.2002\\nc0.0644531 0.00878906 0.169922 0.015625 0.235352 0.015625c0.977539 0 1.77051 -0.792969 1.77051 -1.76953c0 -0.0400391 -0.00292969 -0.105469 -0.00585938 -0.145508v-0.800781c0.00195312 -0.03125 0.00292969 -0.0820312 0.00292969 -0.113281\\nc0 -1.04297 -0.84668 -1.88965 -1.88965 -1.88965c-0.03125 0 -0.0820312 0.000976562 -0.113281 0.00292969h-19.1006v-25.7998h16.1006c0.03125 0.00195312 0.0820312 0.00390625 0.113281 0.00390625c1.04297 0 1.88965 -0.84668 1.88965 -1.89062\\nc0 -0.03125 -0.000976562 -0.0820312 -0.00292969 -0.113281v-0.799805c0.00195312 -0.03125 0.00292969 -0.0820312 0.00292969 -0.113281c0 -1.04297 -0.84668 -1.88965 -1.88965 -1.88965c-0.03125 0 -0.0820312 0.000976562 -0.113281 0.00292969h-16.1006v-26.7002\\nh19.4004zM407.9 226.2c10.0996 0 15.2998 -4.74023 15.2998 -14.1006v-40.0996c0 -9.2998 -5.2002 -14.0996 -15.2998 -14.0996h-0.800781c-10.0996 0 -15.2998 4.7998 -15.2998 14.0996v40.0996c0 9.40039 5.2002 14.1006 15.2998 14.1006h0.800781zM418.1 173.8v36.6006\\nc0 7.89941 -3 11.0996 -10.5 11.0996s-10.5 -3.2002 -10.5 -11.0996v-36.6006c0 -8 3 -11.0996 10.5 -11.0996s10.4004 3.09961 10.5 11.0996zM371.6 188.3l10.6006 -27.2998c0.5 -1.2998 -0.100586 -2.2998 -1.5 -2.2998h-1.5\\nc-0.0351562 -0.00195312 -0.0927734 -0.00390625 -0.128906 -0.00390625c-0.886719 0 -1.85938 0.673828 -2.1709 1.50391l-10.4004 27.2002h-11.5996v-26.9004c0.00390625 -0.0458984 0.0078125 -0.12207 0.0078125 -0.167969\\nc0 -0.960938 -0.779297 -1.74023 -1.74023 -1.74023c-0.0458984 0 -0.12207 0.00390625 -0.167969 0.0078125h-1.2002c-0.0527344 -0.00488281 -0.139648 -0.00976562 -0.192383 -0.00976562c-0.999023 0 -1.81055 0.810547 -1.81055 1.80957\\nc0 0.0283203 0.00195312 0.0732422 0.00292969 0.100586v63c-0.000976562 0.0273438 -0.00292969 0.0722656 -0.00292969 0.100586c0 0.999023 0.811523 1.80957 1.81055 1.80957c0.0527344 0 0.139648 -0.00488281 0.192383 -0.00976562h13.7002\\nc10.0996 0 15.2998 -4.7002 15.2998 -14.1006v-9.7002c0 -7.19922 -3.09961 -11.6992 -9.2002 -13.2998zM365.2 192.2c7.5 0 10.5 3.16016 10.5 11v6.39941c0 8 -3 11.1006 -10.5 11.1006h-10.2002v-28.5h10.2002zM451.1 225.3c10.1006 0 15.3008 -4.7002 15.3008 -14.0996\\nv-10.5c0 -9.2998 -5.2002 -14.1006 -15.3008 -14.1006h-10.5996v-26.0996c0.00488281 -0.0458984 0.0078125 -0.12207 0.0078125 -0.167969c0 -0.960938 -0.779297 -1.74023 -1.73926 -1.74023c-0.046875 0 -0.12207 0.00390625 -0.168945 0.0078125h-1.19922\\nc-0.0537109 -0.00488281 -0.139648 -0.00976562 -0.193359 -0.00976562c-0.999023 0 -1.80957 0.810547 -1.80957 1.80957c0 0.0283203 0.000976562 0.0732422 0.00292969 0.100586v63c-0.00976562 0.0625 -0.0166016 0.166016 -0.0166016 0.229492\\nc0 0.893555 0.725586 1.62012 1.62012 1.62012c0.111328 0 0.288086 -0.0224609 0.396484 -0.0498047h13.6992zM461.3 202.5v7.09961c0 7.90039 -3 11.1006 -10.5 11h-10.2002v-29.1992h10.2002c7.5 0 10.5 3.19922 10.5 11.0996zM259.5 140l7.09961 -0.0996094\\nl-5.69922 -4.30078l2.09961 -6.7998l-5.7998 4.10059l-5.7998 -4.10059l2.09961 6.7998l-5.7002 4.30078l7.10059 0.0996094l2.2998 6.7998zM487.1 276.1c122.301 -46.0996 118.401 -132.54 -33.8984 -176.34c13.3994 -49.7002 18.0996 -101.899 0.0996094 -133.8\\nc-3.7998 -6.7002 -16.7998 -27.7002 -47.5996 -27.7002c-41.5 0 -110.2 41.6006 -182.101 142c-42.7998 3.5 -72.1992 10.1006 -84.5996 13c-20.5 -82.2998 -6.7998 -125.3 15.5 -137.899c1.2002 -0.700195 38.4004 -27.2002 120.9 52.7998\\nc3.39941 -3.5 6.79883 -6.90039 10.1982 -10.2002c-63.0996 -61.2002 -110.199 -71 -138.199 -55.2002c-32.4004 18.2998 -42.8008 72 -22.3008 153.9c-18.8994 5 -121.6 33.2002 -122.1 92.7998c-0.400391 40.9004 49.7998 74.7002 120.3 95\\nc-13.3994 49.5996 -18.2002 101.8 -0.0996094 133.8c3.7998 6.74023 16.7998 27.7402 47.5996 27.7402c41.6006 0 110.3 -41.6396 182.2 -142.14c23.6113 -1.88379 61.5127 -7.70801 84.5996 -13c20.5 82 6.90039 125.1 -15.5 137.8\\nc-1.2998 0.700195 -38.3994 27.2002 -120.899 -52.7998c-3.40039 3.5 -6.80078 6.89941 -10.2002 10.1992c52.2998 50.9404 103.7 74.6006 138.2 55.2402c33.8994 -19.2002 41.8994 -75.8994 22.2998 -153.899c9.98535 -2.61523 25.9346 -7.67773 35.5996 -11.3008z\\nM135.901 411.16c-23.1006 -40.7998 1 -121.562 1.19922 -122.961c22.9912 5.78516 60.8018 12.3262 84.4004 14.5996c12.7793 18.6787 35.4922 47.4404 50.7002 64.2002c3.39941 -3.33301 6.7998 -6.74609 10.2002 -10.2393\\nc-12.5371 -13.7451 -31.4434 -37.2207 -42.2002 -52.3994c14.8213 1.11914 38.9141 2.02734 53.7783 2.02734c11.082 0 29.0566 -0.504883 40.1211 -1.12793c-64.5 86.6006 -126.5 126.2 -163.3 126.2c-23 0 -32 -15.2002 -34.8994 -20.2998zM440.701 -27.1406\\nc3.2998 6 21.5 38.5996 -1.2002 123c-4.09961 -1.10059 -37.0996 -9.90039 -84.4004 -14.6006c-12.7578 -18.6943 -35.4717 -47.4551 -50.6992 -64.2002c-3.40039 3.2998 -6.80078 6.7002 -10.2002 10.2002c12.5371 13.7461 31.4424 37.2207 42.2002 52.4004\\nc-14.7715 -1.14258 -38.7842 -2.06934 -53.5996 -2.06934c-11.1328 0 -29.1875 0.524414 -40.3008 1.16895c64.5996 -86.7998 126.6 -126.2 163.3 -126.2c23.1006 0 32 15.2002 34.9004 20.3008zM449.801 111.459c25.6006 7.2998 85.9004 27.4004 105.7 62.5\\nc1.40039 2.5 33.5 50.5 -72.5996 90.4004c-9.36914 3.51562 -24.8252 8.44336 -34.5 11c-3.60059 -12.9004 -7.90039 -26.1006 -12.8008 -39.5c-3.15723 -0.430664 -7.14453 -2.93945 -8.89941 -5.60059l-0.100586 0.100586\\nc-1.6416 1.55762 -4.68848 3.48438 -6.7998 4.2998c5.7002 15 10.6006 29.7998 14.6006 44.2002c-7.2002 1.69922 -31.8008 7.59961 -72.2002 11.6992c16.7002 -24.5 27.8994 -44.0996 34.2998 -55.5c-3.50781 -1.14648 -8.16699 -4.46094 -10.4004 -7.39941\\nc-13.5996 16.3994 -11 19.8994 -42.5 64.5c-13.752 0.96582 -36.1016 1.75 -49.8877 1.75c-17.2871 0 -45.292 -1.23145 -62.5117 -2.75c-16.9004 -25 -28.2998 -45.2002 -34.7998 -56.9004c-3.49707 -1.49023 -8.06738 -5.25391 -10.2002 -8.39941\\nc-0.914062 2.88965 -3.78125 6.47363 -6.40039 8c6.10059 11.3994 16.9004 31 32.7998 55.2998c-39.5996 -4.60059 -65 -11.2002 -72 -13c4.30078 -14.1006 9.40039 -28.6006 15.2002 -43.2998c-0.71582 -0.522461 -1.74609 -1.50781 -2.2998 -2.2002\\nc-1.5 1.89941 -4 5.2998 -14.4004 5.2998c-4.69922 12.2998 -8.7998 24.5 -12.3994 36.4004c-138.8 -40.3604 -158.4 -121.36 1.5 -164c3.59961 12.8994 7.7998 26 12.7002 39.3994c0.269531 -0.0146484 0.708008 -0.0273438 0.978516 -0.0273438\\nc1.68359 0 4.33594 0.460938 5.9209 1.02734c3 -1.2002 5.2002 -1 8.40039 -1c-5.5 -14.5996 -10.2002 -28.8994 -14.1006 -42.8994c19.7119 -4.56055 52.0576 -9.80176 72.2002 -11.7002c-16.2998 23.8994 -27.5 43.3994 -33.7998 54.5996\\nc8.7002 0 10.7002 1.60059 12.5996 3.2002c0.794922 -0.480469 2.13965 -1.15234 3 -1.5c15.3008 -26.7002 28.9004 -46.5996 36.8008 -57.7998c13.751 -0.96582 36.1006 -1.75 49.8857 -1.75c17.2871 0 45.2939 1.23145 62.5137 2.75\\nc16.5 24.2998 27.7002 44 33.9004 55.2002c7.2998 0 9.7998 3 10.8994 4.19922c1.5332 -1.11426 4.2207 -2.54785 6 -3.19922c-15 -28 -28.6992 -48.9004 -32.1992 -54.2002c20.1172 2.22656 52.373 8.05078 72 13c-4.10059 13.7998 -9 27.8994 -14.7002 42.2002\\nc1.65723 0.743164 4.07617 2.35645 5.39941 3.59961l0.100586 0.0996094c2.07227 -3.14648 6.8125 -5.7002 10.5811 -5.7002c0.0322266 0 0.0859375 0 0.119141 0.000976562c4.69922 -12.3008 8.7998 -24.5 12.3994 -36.4004zM335.401 225.459\\nc0.0556641 0.00585938 0.145508 0.0107422 0.201172 0.0107422c1.05566 0 1.95117 -0.856445 1.99805 -1.91113v-51.5c0 -9.5 -5 -14.0996 -15.0996 -14.0996h-0.400391c-10.0996 0 -15.0996 4.5 -15.0996 14.0996v51.5\\nc-0.00195312 0.0283203 -0.00292969 0.0732422 -0.00292969 0.100586c0 0.999023 0.810547 1.81055 1.81055 1.81055c0.0527344 0 0.139648 -0.00488281 0.192383 -0.0107422h1.2002c0.0615234 0.00878906 0.162109 0.0146484 0.224609 0.0146484\\nc0.933594 0 1.69043 -0.756836 1.69043 -1.68945c0 -0.0625 -0.00683594 -0.163086 -0.015625 -0.225586v-49.7998c0 -8 2.60059 -11.0996 10.1006 -11.0996s10.0996 3.2002 10.0996 11.0996v49.7998c-0.00390625 0.046875 -0.0078125 0.12207 -0.0078125 0.168945\\nc0 0.959961 0.779297 1.73926 1.74023 1.73926c0.0458984 0 0.121094 -0.00292969 0.167969 -0.0078125h1.2002zM321.701 139.999l7.09961 -0.0996094l-5.7002 -4.30078l2.10059 -6.7998l-5.7998 4.10059l-5.80078 -4.10059l2.10059 6.7998l-5.7002 4.30078\\nl7.09961 0.0996094l2.30078 6.7998zM290.601 132.599l7.10059 -0.0996094l-5.7002 -4.2998l2.09961 -6.7998l-5.7998 4.09961l-5.7998 -4.09961l2.09961 6.7998l-5.69922 4.2998l7.09961 0.0996094l2.2998 6.80078zM295.701 163.399\\nc0.0507812 0.00488281 0.133789 -0.03125 0.185547 -0.03125c1.00977 0 1.83008 -0.819336 1.83008 -1.83008c0 -0.0664062 -0.00683594 -0.172852 -0.015625 -0.239258v-0.799805c0.00292969 -0.0400391 0.00585938 -0.105469 0.00585938 -0.145508\\nc0 -0.977539 -0.792969 -1.77051 -1.77051 -1.77051c-0.0654297 0 -0.170898 0.00683594 -0.235352 0.015625h-22.5c-0.0537109 -0.00488281 -0.139648 -0.00976562 -0.193359 -0.00976562c-0.999023 0 -1.80957 0.810547 -1.80957 1.80957\\nc0 0.0283203 0.000976562 0.0732422 0.00292969 0.100586v63c-0.00195312 0.0273438 -0.00292969 0.0722656 -0.00292969 0.100586c0 0.999023 0.810547 1.80957 1.80957 1.80957c0.0537109 0 0.139648 -0.00488281 0.193359 -0.00976562h22.2002\\nc0.0644531 0.00878906 0.169922 0.015625 0.235352 0.015625c0.977539 0 1.77051 -0.792969 1.77051 -1.77051c0 -0.0400391 -0.00292969 -0.105469 -0.00585938 -0.145508v-0.799805c0.00195312 -0.03125 0.00292969 -0.0820312 0.00292969 -0.113281\\nc0 -1.04395 -0.84668 -1.89062 -1.88965 -1.89062c-0.03125 0 -0.0820312 0.00195312 -0.113281 0.00390625h-19.1006v-25.7998h16.1006c0.03125 0.00195312 0.0820312 0.00292969 0.113281 0.00292969c1.04297 0 1.88965 -0.84668 1.88965 -1.88965\\nc0 -0.03125 -0.000976562 -0.0820312 -0.00292969 -0.113281v-0.800781c0.00195312 -0.03125 0.00292969 -0.0820312 0.00292969 -0.113281c0 -1.04297 -0.84668 -1.88965 -1.88965 -1.88965c-0.03125 0 -0.0820312 0.000976562 -0.113281 0.00292969h-16.1006v-26.6992\\nh19.4004zM288.301 262.799l2.2998 -6.7998l7.10059 -0.0996094l-5.7002 -4.30078l2.09961 -6.7998l-5.7998 4.10059l-5.7998 -4.10059l2.09961 6.7998l-5.69922 4.30078l7.09961 0.0996094z\\\" />\\n    <glyph glyph-name=\\\"adobe\\\" unicode=\\\"&#xf778;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M315.5 384h170.9v-384zM196.5 384l-170.9 -384v384h170.9zM256 241.9l107.5 -241.9h-73l-30.7002 76.7998h-78.7002z\\\" />\\n    <glyph glyph-name=\\\"artstation\\\" unicode=\\\"&#xf77a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M2 70.5996h315.1l59.2002 -102.6h-285.399h-0.0146484c-17.4814 0 -38.0381 12.6787 -45.8857 28.2998zM501.8 98c19 -29.4004 -0.0996094 -55.9004 -2 -59.0996l-40.7002 -70.5l-257.3 447.6h88.4004h0.0117188c17.0596 0 37.3936 -12.2305 45.3877 -27.2998zM275 143.5\\nh-231l115.5 200z\\\" />\\n    <glyph glyph-name=\\\"atlassian\\\" unicode=\\\"&#xf77b;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M152.2 211.6c66.2998 -70.7998 89.0996 -189.3 51.2002 -267.1c-2.40039 -5.2002 -7.60059 -8.5 -13.4004 -8.40039h-175c-11 0 -18.4004 11.7002 -13.4004 21.7002l125.801 251c5.09961 10.5 17.0996 11 24.7998 2.7998zM244.4 439.9\\nc6.7998 10.8994 20.2998 10.6992 25.5996 0.0996094c5.90039 -11.7002 240.4 -482.3 240.4 -482.3c5 -9.90039 -2.2002 -21.7002 -13.4004 -21.7002h-174.2c-5.7002 0 -10.8994 3.2998 -13.3994 8.40039c-73.5 146.899 -187.301 302.1 -65 495.5z\\\" />\\n    <glyph glyph-name=\\\"canadian-maple-leaf\\\" unicode=\\\"&#xf785;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M383.8 96.2998c-5 -5 -10 -7.5 -5 -22.5s10 -35.0996 10 -35.0996s-95.2002 20.0996 -105.2 22.5996c-8.89941 0.900391 -18.3994 -2.39941 -18.3994 -12.5c0 -10.0996 5.7998 -112.8 5.7998 -112.8h-30s5.7998 102.8 5.7998 112.8s-9.59961 13.4004 -18.2998 12.5\\nc-10.0996 -2.5 -105.3 -22.5996 -105.3 -22.5996s5 20.0996 10.0996 35.0996c4.90039 15 0 17.5 -5.09961 22.5c-2.60059 2.5 -105.2 92.4004 -105.2 92.4004l17.5 7.59961c10 4.90039 7.40039 11.4004 5 17.4004c-2.5 7.59961 -20.0996 67.2998 -20.0996 67.2998\\ns47.5996 -10 57.6992 -12.5c7.5 -2.40039 10 2.5 12.5 7.5s15 32.2998 15 32.2998s52.6006 -59.7998 55.1006 -62.2998c10.0996 -7.5 20.0996 0 17.5996 10c0 10 -27.5996 129.6 -27.5996 129.6s30.0996 -17.3994 40.0996 -22.3994c7.60059 -5 12.6006 -5 17.6006 5\\nc5 7.5 42.5 79.7998 42.5 79.7998s37.5996 -72.2998 42.6992 -79.7998c5 -10 10.1006 -10 17.6006 -5c10 5 40.0996 22.3994 40.0996 22.3994s-27.5996 -119.6 -27.5996 -129.6c-2.5 -10 7.59961 -17.5 17.5996 -10c2.5 2.40039 55.1006 62.2998 55.1006 62.2998\\ns12.5 -27.3994 15 -32.3994s5 -9.90039 12.5 -7.5c10 2.5 57.6992 12.5 57.6992 12.5s-17.6992 -59.7002 -20.0996 -67.3008c-2.40039 -5.89941 -5 -12.5 5 -17.3994l17.5 -7.5s-102.7 -89.9004 -105.2 -92.4004z\\\" />\\n    <glyph glyph-name=\\\"centos\\\" unicode=\\\"&#xf789;\\\" \\nd=\\\"M289.6 350.5l31.6006 -31.7002l-76.2998 -76.5v108.2h44.6992zM127.2 318.8l31.5996 31.7002h44.7002v-108.2zM168.7 360.4l55.5 55.5996l55.5 -55.5996h-44.7002v-127.9l-10.7998 -10.7998l-10.7998 10.7998v127.9h-44.7002zM194.9 192.3l-10.8008 -10.7998h-128.6\\nv-44.7998l-55.5 55.5996l55.5 55.6006v-44.8008h128.6zM274.2 213l76.2998 76.5l31.5996 -31.7002v-44.7998h-107.899zM447.5 192.3l-55.5 -55.5996v44.7998h-127.7l-10.7998 10.7998l10.7998 10.7998h127.7v44.8008zM65.4004 271.8v78.7002h79.3994l-31.5996 -31.7002\\nl90.2998 -90.5v-15.2998h-15.2998l-90.2998 90.5zM382.1 350.5v-78.7002l-31.5996 31.7002l-90.2998 -90.5h-15.2998v15.2998l90.2998 90.5l-31.6006 31.7002h78.5zM203.5 34.0996v-0.0996094h-44.7002l-31.5996 31.7002l76.2998 76.5v-108.101zM65.4004 213v44.7998\\nl32.5 31.7002l76.2998 -76.5h-108.8zM382.1 112.8v-78.7002h-78.5l31.6006 31.7002l-90.2998 90.5v15.2998h15.2998l90.2998 -90.5zM382.1 171.6v-44.7998l-31.5996 -31.7002l-76.2998 76.5h107.899zM321.2 65.7998l-31.6006 -31.5996h-44.6992v108.1zM97.9004 95.0996\\nl-32.5 31.7002v44.7998h108.8zM279.7 24.2002l-55.5 -55.6006l-55.5 55.6006h44.7002v127.899l10.7998 10.8008l10.7998 -10.8008v-127.899h44.7002zM113.2 65.7998l31.5996 -31.7002h-79.3994v78.7002l32.5 -31.7002l90.2998 90.5h15.2998v-15.2998z\\\" />\\n    <glyph glyph-name=\\\"confluence\\\" unicode=\\\"&#xf78d;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M2.2998 35.7998c42.2998 66.9004 125.2 233.2 373.101 112.601c39.6992 -19.1006 83.6992 -39.9004 105.899 -50.3008c8 -3.69922 11.7002 -13.1992 8.10059 -21.2998l-50.4004 -114.1c-0.0996094 -0.100586 -0.0996094 -0.299805 -0.200195 -0.400391\\nc-3.89941 -8.09961 -13.5996 -11.5996 -21.7002 -7.7002c-200.399 95.2002 -213.8 111.5 -280.899 -0.699219c0 0 -0.100586 -0.100586 -0.100586 -0.200195c-4.69922 -7.7002 -14.6992 -10 -22.3994 -5.2998l-105.9 65.1992c-7.59961 4.7002 -10 14.6006 -5.5 22.2002z\\nM509.7 347.9c-42.6006 -67.5 -125.4 -232.9 -373.4 -112.9c-39.7002 19.2002 -83.7998 40 -106 50.4004c-8 3.69922 -11.7002 13.1992 -8.09961 21.2998l50.5 114.1c0.0996094 0.100586 0.0996094 0.299805 0.200195 0.400391\\nc3.89941 8.09961 13.5996 11.5996 21.6992 7.7002c199.5 -94.7002 213.301 -111.7 280.601 0.899414c0.200195 0.400391 0.399414 0.700195 0.599609 1c5 7.5 15.1006 9.40039 22.6006 4.40039l105.8 -65.1006c7.59961 -4.69922 10 -14.5996 5.5 -22.1992z\\\" />\\n    <glyph glyph-name=\\\"dhl\\\" unicode=\\\"&#xf790;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M238 146.8l22.2998 30.2002h58.7002l-22.2998 -30.2002h-58.7002zM0 165.1h86.5l-4.7002 -6.39941h-81.7998v6.39941zM172.9 177h68.1992c-5.69922 -7.7998 -24.0996 -30.2998 -57.1992 -30.2998h-100.101l41.1006 55.7998h51c5.59961 0 5.59961 -2.2002 2.7998 -5.90039\\nc-2.7998 -3.69922 -7.60059 -10.2998 -10.4004 -14.0996c-1.39941 -1.90039 -4.09961 -5.5 4.60059 -5.5zM490.4 183.9h-62.2002l39.2998 53.3994h62.2002zM95.2998 177l-4.7002 -6.40039h-90.5996v6.40039h95.2998zM206.3 203.6\\nc2.7998 3.7002 2.90039 5.90039 -2.7002 5.90039h-111.399l20.3994 27.7998h117.9c29.9004 0 37.5996 -23.5996 29.2002 -35c-6.2002 -8.39941 -13.5 -18.3994 -13.5 -18.3994h-45.6006c-8.69922 0 -6 3.5 -4.59961 5.5c2.7998 3.7998 7.5 10.3994 10.2998 14.1992zM0 146.8\\nv6.40039h77.7998l-4.7002 -6.40039h-73.0996zM323 146.8c0 0 22.2002 30.2002 22.2998 30.2002h58.7002l-22.2998 -30.2002h-58.7002zM545 146.7l4.7002 6.39941h90.2998v-6.39941h-95zM567.3 177h72.7002v-6.40039h-77.4004zM553.8 158.7l4.7002 6.39941h81.5v-6.39941\\nh-86.2002zM389.6 237.3h58.7002l-39.2998 -53.3994h-143.6l39.2998 53.3994h58.7002l-22.5 -30.5996h26.1992zM423.1 177h133.4l-22.2998 -30.2998h-94.2998c-24.1006 0 -30.6006 11.5996 -23.2002 21.5996c2.09961 2.7998 6.39941 8.7002 6.39941 8.7002z\\\" />\\n    <glyph glyph-name=\\\"diaspora\\\" unicode=\\\"&#xf791;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M251.64 93.4502c-1.39941 0 -88 -119.9 -88.6992 -119.9c-0.700195 0 -86.6006 60.4502 -86.9404 61.2002s86.5996 125.7 86.5996 127.4c0 2.19922 -129.6 44 -137.6 47.0996c-1.2998 0.5 31.4004 101.8 31.7002 102.1c0.599609 0.700195 144.399 -47 145.5 -47\\nc0.399414 0 0.899414 0.600586 1 1.30078c0.399414 2 1 148.6 1.7002 149.6c0.799805 1.2002 104.5 0.700195 105.1 0.299805c1.5 -1 3.5 -156.1 6.09961 -156.1c1.40039 0 138.7 47 139.301 46.2998c0.799805 -0.900391 31.8994 -102.2 31.5 -102.6\\nc-0.900391 -0.900391 -140.2 -47.1006 -140.601 -48.8008c-0.299805 -1.39941 82.7998 -122.1 82.5 -122.899s-85.5 -63.5 -86.2998 -63.5c-1 0.200195 -89 125.5 -90.9004 125.5h0.0400391z\\\" />\\n    <glyph glyph-name=\\\"fedex\\\" unicode=\\\"&#xf797;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M586 163.5l54 -60.5h-64.4004l-22.2998 25l-22.0996 -25h-212.2v11.9004h-0.5c-7.90039 -11.7002 -20.7998 -18.6006 -34.9004 -18.6006c-32.6992 0 -56.3994 26.4004 -60.0996 56.9004h-85.5c0 -23.5 31.0996 -35.5 45.7998 -14.6006h42\\nc-27.5996 -67.6992 -130.2 -49.3994 -130.2 23.7002c0 6.40039 0.800781 12.5 2.30078 18.2002h-48.9004v-77.5h-49v184.4h109v-41.1006h-60v-26.2002h54.7998v-24.1992c24.5 43.5996 103.9 45.3994 121.9 -14c7.5 25.5 28.8994 44.8994 57.2998 44.8994\\nc13.9004 0 25.7998 -3.7998 35.4004 -14.7998h0.5v75.5h151.199v-48.0996h-56.0996v-16h118.7l22.5 -24.8008l21.7002 24.8008h62.3994zM139.3 180.1h46.5c-4.7998 25.6006 -40.3994 26.3008 -46.5 0zM292.7 131.2c34.5 0 32.5996 62.7998 0 62.7998\\nc-34 0 -34.6006 -62.7998 0 -62.7998zM460.5 112.1v29.6006h-56.0996v44.7002h56.0996v28.0996h-55.5v33.9004h56.0996v30.1992h-95v-166.5h94.4004zM414.6 151.9h56.1006v-45.6006l50.7002 57l-50.7002 57v-44h-56.1006v-24.3994zM553.2 141.6l26.2998 -29.5h40.5\\nl-46 51.4004l45.4004 51h-38.5l-25.6006 -29.2998l-26.5996 29.2998h-39.7002l45.5996 -51.2002l-45.5996 -51.2002h38.0996z\\\" />\\n    <glyph glyph-name=\\\"fedora\\\" unicode=\\\"&#xf798;\\\" \\nd=\\\"M225 416c123.7 -0.299805 223.7 -100.9 223.4 -224.6c-0.300781 -123.7 -100.9 -223.7 -224.601 -223.4l-170.2 0.400391v0c-29.5879 0 -53.6006 24.0127 -53.6006 53.5996c0 0.0830078 0.000976562 0.216797 0.000976562 0.299805l0.400391 170.3\\nc0.399414 123.7 100.899 223.7 224.6 223.4zM394.8 258.8c-0.0771484 6.26953 -1.33203 16.3047 -2.7998 22.4004l-55.2002 56.0996v-1.59961c0 -5.10059 -1.5 -9.60059 -3.7998 -14.2998zM331 353.7c1.65332 -2.31348 3.53516 -6.43555 4.2002 -9.2002l54.2998 -54.5996\\nc-8.27539 24.8252 -34.4834 53.4082 -58.5 63.7998zM118.1 200.8c-4.54785 -0.369141 -11.8057 -1.66895 -16.1992 -2.89941l8.5 -8.5c1.68457 3.44336 5.13477 8.55078 7.69922 11.3994zM97 196.6c-3.91211 -1.08984 -10.0498 -3.41895 -13.7002 -5.19922l27 -27.2002\\nc-1.30469 3.32617 -2.37988 8.92676 -2.39941 12.5l0.899414 8zM78.7998 189.2c-3.21484 -1.79492 -8.23242 -5.02051 -11.2002 -7.2002l35.3008 -35.9004c3.70801 1.84668 10.0254 3.95215 14.0996 4.7002zM63.5996 179.4\\nc-3.06738 -2.29395 -7.5918 -6.50488 -10.0996 -9.40039l34.9004 -34.5996c2.66113 2.6377 7.36523 6.44629 10.5 8.5zM50.2998 167.1c-2.89941 -3.2998 -5.7998 -6.69922 -8.59961 -10.5l35.7998 -35.8994c1.74121 3.40527 5.19141 8.5127 7.7002 11.3994zM39.2998 152.8\\nc-2.07715 -3.18457 -5.0791 -8.56055 -6.7002 -12l39.5 -39.7998c0.306641 4.3584 1.91895 11.168 3.60059 15.2002zM30.5 136.5c-1.7998 -4.90039 -3.2998 -9.59961 -4.7002 -14.5l52.7002 -53.5c-3.42578 6.82812 -6.42773 18.5654 -6.7002 26.2002zM22.5996 93.5\\nc0.0380859 -6.14551 1.33789 -15.957 2.90039 -21.9004l55.4004 -55.6992v1.09961c0.0341797 4.18848 1.64746 10.5947 3.59961 14.2998zM27.9004 62.7998c8.29785 -24.8047 34.5059 -53.3867 58.5 -63.7998c-1.61816 2.33008 -3.5 6.45117 -4.2002 9.2002zM22.5996 99.7998\\nl64.4004 -64.2002c2.30469 2.8877 6.74023 6.78613 9.90039 8.7002l-72.2002 72.5c-1.08105 -4.62988 -2.02148 -12.2461 -2.10059 -17zM275.9 151.6c32.5996 -0.0996094 32.6992 49.2002 0.199219 49.4004l-33.5996 0.0996094\\nc-4.91309 0.0224609 -8.90039 4.02734 -8.90039 8.94043v0.0595703l0.100586 47c0.0996094 40.5 38.5996 60.8008 66 54.9004c15.3994 -3.90039 30.2998 8.40039 30.2998 23.9004c0 12.0996 -8.7002 22.1992 -19.9004 24\\nc-5.39062 1.26953 -14.2617 2.30078 -19.8008 2.30078c-0.110352 0 -0.289062 -0.000976562 -0.398438 -0.000976562c-0.116211 0 -0.304688 0.000976562 -0.420898 0.000976562c-57.96 0 -105.081 -47.041 -105.18 -105.001l-0.0996094 -56l-42.6006 0.0996094\\nc-32.5996 0.100586 -32.6992 -49.2002 -0.0996094 -49.2998l33.5996 -0.0996094c4.40039 0 8.90039 -4.5 8.90039 -9l-0.0996094 -47c-0.00585938 -30.8574 -25.0537 -55.9004 -55.9102 -55.9004h-0.19043c-9.39941 0 -9.39941 1.59961 -15.7002 1.59961\\nc-13.3691 -0.208008 -24.3457 -11.2295 -24.5 -24.5996c0 -15.5 14.2002 -24.2002 19.9004 -24.2002c61.2998 -12.8994 125.5 33.6006 125.7 102.9l0.0996094 56zM299.4 151.9c4.50781 0.442383 11.7207 1.74219 16.0996 2.89941l-8.5 8.5\\nc-1.48047 -3.55762 -4.88477 -8.66504 -7.59961 -11.3994zM320.4 156.1c3.9248 1.09082 10.0625 3.46484 13.6992 5.30078l-27 27.1992c1.30566 -3.32617 2.38086 -8.92578 2.40039 -12.5l-0.900391 -8.09961zM338.4 163.5c4 2.2002 8.09961 4.7002 11.8994 7.2002\\nl-36.2002 35.8994c-4.09961 -2.2998 -8.7998 -3.59961 -13.6992 -4.69922zM353.9 173.3c2.92188 2.33301 7.44727 6.36426 10.0996 9l-34.9004 35c-2.63672 -2.66797 -7.34082 -6.47656 -10.5 -8.5zM367.1 185.6c2.52539 2.77441 6.37793 7.47852 8.60059 10.5\\nl-35.7998 35.9004c-1.78125 -3.37891 -5.23047 -8.48633 -7.7002 -11.4004zM378.1 199.9c2.10938 3.16602 5.11133 8.54199 6.7002 12l-39.5 39.7998c-0.305664 -4.3584 -1.91895 -11.168 -3.59961 -15.2002zM391.6 230.8l-53.0996 53.4004\\nc3.69434 -6.76172 6.875 -18.499 7.09961 -26.2002l41.3008 -41.5c1.50879 3.87695 3.61426 10.2832 4.69922 14.2998zM392.6 236.4c1.05957 4.52246 2.08984 11.959 2.30078 16.5996l-64.3008 64.7002c-2.18359 -3.12988 -6.61816 -7.25098 -9.89941 -9.2002z\\\" />\\n    <glyph glyph-name=\\\"figma\\\" unicode=\\\"&#xf799;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M277 277.3h-85.4004v-256c-0.0273438 -47.085 -38.2637 -85.2998 -85.3496 -85.2998c-47.1133 0 -85.3496 38.2363 -85.3496 85.3496s38.2363 85.3506 85.3496 85.3506h0.0498047c-47.1133 0 -85.3496 38.2363 -85.3496 85.3496s38.2363 85.3506 85.3496 85.3506\\nc-47.085 0 -85.2998 38.2139 -85.2998 85.2998c0 47.085 38.2148 85.2998 85.2998 85.2998h170.7c47.1133 0 85.3496 -38.2363 85.3496 -85.3496s-38.2363 -85.3506 -85.3496 -85.3506zM277 277.3c47.0801 -0.00488281 85.2949 -38.2197 85.2998 -85.2998\\nc0 -47.0859 -38.2139 -85.2998 -85.2998 -85.2998s-85.2998 38.2139 -85.2998 85.2998s38.2139 85.2998 85.2998 85.2998z\\\" />\\n    <glyph glyph-name=\\\"intercom\\\" unicode=\\\"&#xf7af;\\\" \\nd=\\\"M392 416c30.9004 0 56 -25.0996 56 -56v-336c0 -30.9004 -25.0996 -56 -56 -56h-336c-30.9004 0 -56 25.0996 -56 56v336c0 30.9004 25.0996 56 56 56h336zM283.7 333.9v-199.5c0 -19.8008 29.8994 -19.8008 29.8994 0v199.5c0 19.7998 -29.8994 19.7998 -29.8994 0z\\nM209.1 341.4v-216.5c0 -19.8008 29.9004 -19.8008 29.9004 0v216.5c0 19.7998 -29.9004 19.7998 -29.9004 0zM134.4 333.9v-199.5c0 -19.8008 29.8994 -19.8008 29.8994 0v199.5c0 19.7998 -29.8994 19.7998 -29.8994 0zM59.7002 304v-134.3\\nc0 -19.7998 29.8994 -19.7998 29.8994 0v134.3c0 19.7998 -29.8994 19.7998 -29.8994 0zM383.1 76.2002c14.9004 12.8994 -4.5 35.5996 -19.3994 22.7002c-63.2002 -53.9004 -213.4 -55.3008 -279.3 0c-15 12.7998 -34.4004 -9.90039 -19.4004 -22.7002\\nc76.4004 -65.4004 245.3 -63 318.1 0zM388.3 169.7v134.3c0 19.7998 -29.8994 19.7998 -29.8994 0v-134.3c0 -19.7998 29.8994 -19.7998 29.8994 0z\\\" />\\n    <glyph glyph-name=\\\"invision\\\" unicode=\\\"&#xf7b0;\\\" \\nd=\\\"M407.4 416c22.3994 0 40.5996 -18.2002 40.5996 -40.5996v-366.801c0 -22.3994 -18.2002 -40.5996 -40.5996 -40.5996h-366.801c-22.3994 0 -40.5996 18.2002 -40.5996 40.5996v366.801c0 22.3994 18.2002 40.5996 40.5996 40.5996h366.801zM176.1 302.4\\nc-0.599609 35.0996 -53.5996 34.7998 -53.6992 -0.400391c0 -15 12.1992 -27 27.0996 -27c4.2002 0.0996094 27 4 26.5996 27.4004zM332.8 71c23.7998 0 42.7002 15.2998 53.2002 52l-17.9004 6.7002c-14.2998 -39.5 -31.7998 -32.4004 -31.7998 -16.9004\\nc0.299805 8.10059 0.700195 7.7002 14.9004 58.7998c26.0996 85.8008 -61.2998 113.5 -101.8 38l8.89941 40.5h-68.7998l-9.7002 -35.5996h32.2998l-19.7998 -79.4004c-16.5 -36.6992 -57.3994 -44.0996 -57.3994 -23.1992c0.299805 11.2998 -0.700195 4.5 32.8994 138.199\\nh-76.3994l-9.7002 -35.5996h31.7998c-22.0996 -90.0996 -22.9004 -89.7998 -23 -104.1c0 -48.7002 63.0996 -56.1006 94.5996 -4.30078l-8.09961 -32.5h45.0996l25.8008 103.301c14.6992 59.6992 74 47.0996 59.8994 0.699219c-9.09961 -32.5996 -40.5996 -106.6 25 -106.6z\\n\\\" />\\n    <glyph glyph-name=\\\"jira\\\" unicode=\\\"&#xf7b1;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M490 206.3c8 -7.89941 8 -20.7002 0 -28.5996c-225.8 -225 137.9 136.3 -241.5 -241.7c-180.7 180.1 -109.7 109.3 -242.5 241.6c-7.90039 8 -7.90039 20.8008 0 28.7002c0 0 77 76.7998 242.5 241.7c72.0996 -71.7998 168.6 -169 241.5 -241.7zM248.5 116.3l76 75.7002\\nl-76 75.7002l-76 -75.7002z\\\" />\\n    <glyph glyph-name=\\\"mendeley\\\" unicode=\\\"&#xf7b3;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624.6 122.8c23.1006 -22.7002 17.8008 -73.5 0 -88.2998c-36.1992 -38.9004 -100 -18.2002 -104.899 35.2002c-1 11.7002 1.09961 23 5.7002 33c47.2998 103.7 -185.9 106.1 -146.5 8.2002c0.0996094 -0.100586 0.199219 -0.200195 0.299805 -0.400391\\nc26.5996 -42.5996 -6.7002 -97.2998 -58.7998 -95.2002c-52 -2.2002 -85.6006 52.4004 -58.8008 95.2002c0.100586 0.200195 0.200195 0.299805 0.300781 0.400391c39.3994 97.8994 -193.801 95.5 -146.5 -8.2002c20.3994 -44.9004 -14.1006 -93.7002 -61.2002 -87.7998\\nc-61.9004 7.7998 -62.5 82.8994 -42.6006 102.6c16 16 31.8008 24.7998 53 22.5c43.3008 1 49.7002 34.9004 37.5 98.7998c-22.6992 57.5 14.5 131.601 87.4004 130.8c76.9004 -0.699219 82.7998 -82 130.9 -82c49.1992 0 53.5 81.3008 130.899 82\\nc72.5 0.700195 110.2 -73.2998 87.4004 -130.8c-12.2002 -63.8994 -5.7998 -97.7998 37.5 -98.7998c18.7002 2 36.0996 -4.7998 48.3994 -17.2002zM320.7 141.9c43.5996 0 62.7998 37.7998 62.7998 62.7998c0 34.7002 -28.0996 62.7998 -62.7998 62.7998h-0.600586\\nc-34.5996 0 -62.7998 -28.0996 -62.7998 -62.7998c0 -25.2998 19.4004 -62.7998 62.7998 -62.7998h0.600586z\\\" />\\n    <glyph glyph-name=\\\"raspberry-pi\\\" unicode=\\\"&#xf7bb;\\\" horiz-adv-x=\\\"407\\\" \\nd=\\\"M372 215.5c28.7002 -17.2002 54.5996 -72.5996 14 -117.7c-2.59961 -14.0996 -7.09961 -24.2002 -11 -35.3994c-5.90039 -45.2002 -44.4004 -66.3008 -54.5996 -68.8008c-14.9004 -11.1992 -30.7002 -21.7998 -52.2002 -29.1992\\nc-20.2002 -20.6006 -42.1006 -28.4004 -64.2002 -28.4004h-1c-22 0 -44 7.7998 -64.2998 28.4004c-21.4004 7.39941 -37.2998 18 -52.2002 29.1992c-10.0996 2.5 -48.7002 23.6006 -54.5996 68.8008c-3.90039 11.1992 -8.40039 21.2998 -11 35.3994\\nc-40.5 45 -14.6006 100.5 14.1992 117.7l3.7002 6.5c-0.0996094 46.4004 21.4004 65.2998 46.5 79.7002c-7.59961 2 -15.3994 3.7002 -17.5996 13.2002c-13.1006 3.39941 -15.7998 9.39941 -17.1006 15.7998c-3.39941 2.2998 -14.7998 8.7002 -13.5996 19.7002\\nc-6.2998 4.39941 -9.90039 10.0996 -8.09961 18.0996c-6.90039 7.5 -8.7002 13.7002 -5.80078 19.4004c-8.2998 10.1992 -4.59961 15.5 -1.09961 20.8994c-6.2002 11.2002 -0.799805 23.2002 16.5 21.2002c6.90039 10.0996 21.9004 7.7998 24.2002 7.7998\\nc2.5 3.2998 6 6 16.5 4.7002c6.7998 6.09961 14.3994 5.09961 22.2998 2.09961c3.2002 2.5 6.09961 3.40039 8.7002 3.5c5 0.100586 9.2998 -2.89941 13.8994 -4.2998c11.3008 3.60059 13.8008 -1.39941 19.4004 -3.39941c12.2998 2.59961 16.0996 -3 22 -8.90039\\nl6.90039 0.0996094c18.5996 -10.7998 27.7998 -32.7998 31.0996 -44.0996c3.2998 11.2998 12.5 33.2998 31.0996 44.0996l6.90039 -0.0996094c5.90039 5.90039 9.7002 11.5 22 8.90039c5.5 2.09961 8.09961 7 19.4004 3.39941\\nc7.09961 2.2002 13.2998 8.10059 22.5996 0.799805c7.90039 2.90039 15.5 4 22.2998 -2.09961c10.5 1.2998 13.9004 -1.5 16.5 -4.7002c2.2998 0 17.2998 2.2998 24.2002 -7.7998c17.2998 2 22.7998 -10 16.5996 -21.2002c3.5 -5.2998 7.2002 -10.5996 -1.09961 -20.8994\\nc2.90039 -5.7002 1.09961 -11.9004 -5.7998 -19.4004c1.89941 -8 -1.7002 -13.7002 -8.10059 -18.0996c1.2002 -11 -10.1992 -17.4004 -13.5996 -19.7002c-1.2998 -6.40039 -4 -12.5 -17.0996 -15.7998c-2.2002 -9.60059 -10 -11.2002 -17.6006 -13.2002\\nc25.1006 -14.4004 46.6006 -33.2998 46.5 -79.7002zM349.8 223.5c1.5 48.7002 -36.3994 75.4004 -82.0996 67.9004c-16.7998 -2.80078 80.5996 -86.6006 82.0996 -67.9004zM306.8 130.4c24.5 15.7998 28.9004 51.5996 9.90039 80\\nc-19 28.3994 -54.2998 38.5996 -78.7998 22.7998s-28.9004 -51.6006 -9.90039 -80c19 -28.4004 54.2998 -38.6006 78.7998 -22.7998zM238.9 418.7c-16.6006 -15.9004 -40.1006 -55.9004 -5.80078 -71.7998c29 23.5 63.6006 40.6992 102 53.5\\nc-49.2998 -25.1006 -78 -45.3008 -93.6992 -62.6006c8.09961 -31.7002 50 -33.2002 65.3994 -32.2998c-3.09961 1.40039 -5.7998 3.09961 -6.7002 5.7998c3.80078 2.7002 17.5 0.299805 27 5.60059c-3.69922 0.699219 -5.39941 1.39941 -7.09961 4.09961\\nc9 2.90039 18.7002 5.2998 24.4004 10c-3.10059 0 -6 -0.599609 -10 2.09961c8.09961 4.30078 16.6992 7.7002 23.3994 14.2002c-4.2002 0.100586 -8.7002 0.100586 -10 1.60059c7.40039 4.5 13.6006 9.5 18.7998 15c-5.7998 -0.700195 -8.2998 -0.100586 -9.69922 0.899414\\nc5.59961 5.60059 12.5996 10.4004 16 17.2998c-4.40039 -1.5 -8.30078 -2.09961 -11.2002 0.100586c1.89941 4.2998 10 6.7002 14.7002 16.5996c-4.60059 -0.399414 -9.40039 -1 -10.4004 0c2.09961 8.5 5.7002 13.2002 9.2998 18.2002\\nc-9.7998 0.200195 -24.5996 0 -23.8994 0.799805l6 6.10059c-9.5 2.5 -19.3008 -0.400391 -26.4004 -2.60059c-3.2002 2.5 0 5.60059 3.90039 8.7998c-8.10059 -1 -15.5 -2.89941 -22.1006 -5.39941c-3.59961 3.09961 2.2998 6.2998 5.10059 9.39941\\nc-12.5 -2.2998 -17.8008 -5.59961 -23.1006 -8.89941c-3.7998 3.59961 -0.200195 6.7002 2.40039 9.7998c-9.40039 -3.5 -14.2998 -7.90039 -19.4004 -12.2998c-1.7998 2.2998 -4.39941 4 -1.2002 9.59961c-6.69922 -3.7998 -11.7998 -8.2998 -15.5 -13.2998\\nc-4.19922 2.59961 -2.5 6.09961 -2.5 9.40039c-7 -5.60059 -11.3994 -11.5 -16.7998 -17.3008c-1.09961 0.800781 -2.09961 3.40039 -2.89941 7.60059zM204.5 304.1c-27.2002 0.700195 -53.4004 -19.8994 -53.4004 -31.7998\\nc-0.0996094 -14.5996 21.5 -29.3994 53.6006 -29.7998c32.7998 -0.200195 53.7002 11.9004 53.7998 26.9004c0.0996094 16.8994 -29.7998 35 -54 34.6992zM81.5 316.9c9.59961 -5.2002 23.2002 -2.80078 27.2002 -5.60059\\nc-0.900391 -2.59961 -3.60059 -4.39941 -6.7002 -5.7998c15.4004 -0.900391 57.4004 0.5 65.4004 32.2998c-15.7002 17.2998 -44.4004 37.6006 -93.7002 62.6006c38.3994 -12.8008 73 -30 102 -53.5c34.0996 15.8994 10.5996 55.8994 -6 71.7998\\nc-0.900391 -4.2002 -1.7998 -6.7998 -2.90039 -7.60059c-5.39941 5.80078 -9.7998 11.7002 -16.7998 17.3008c0 -3.2002 1.59961 -6.80078 -2.5 -9.40039c-3.7002 5 -8.7998 9.5 -15.5 13.2998c3.2002 -5.59961 0.5 -7.2998 -1.2002 -9.59961\\nc-5.09961 4.39941 -10 8.89941 -19.3994 12.2998c2.59961 -3.09961 6.19922 -6.2002 2.39941 -9.7998c-5.2998 3.2998 -10.5996 6.59961 -23.0996 8.89941c2.7998 -3.09961 8.59961 -6.2998 5.09961 -9.39941c-6.7002 2.5 -14 4.2998 -22.0996 5.39941\\nc3.7998 -3.19922 7.09961 -6.2998 3.89941 -8.7998c-7.09961 2.2002 -16.8994 5.10059 -26.3994 2.60059l6 -6.10059c0.700195 -0.799805 -14.1006 -0.700195 -23.9004 -0.799805c3.5 -4.90039 7.2002 -9.7002 9.2998 -18.2002c-1 -1 -5.7998 -0.399414 -10.3994 0\\nc4.7002 -9.89941 12.7998 -12.3994 14.7002 -16.5996c-2.90039 -2.10059 -6.90039 -1.60059 -11.2002 -0.100586c3.2998 -6.89941 10.3994 -11.6992 16 -17.2998c-1.40039 -1 -3.90039 -1.59961 -9.7002 -0.899414c5.2002 -5.5 11.4004 -10.5 18.7998 -15\\nc-1.2998 -1.60059 -5.7998 -1.5 -10 -1.60059c6.7002 -6.5 15.2998 -9.89941 23.4004 -14.2002c-4 -2.7998 -6.90039 -2.09961 -10 -2.09961c5.7002 -4.7002 15.3994 -7.2002 24.3994 -10c-1.69922 -2.59961 -3.39941 -3.40039 -7.09961 -4.09961zM141.6 292.8\\nc-45.5996 7.60059 -83.5996 -19.2002 -82.0996 -67.8994c1.5 -18.6006 98.9004 65.0996 82.0996 67.8994zM38.2002 106c21.5996 -9.5 39.0996 105.3 12.5996 98.2998c-43.8994 -24.5996 -36.2998 -79.5 -12.5996 -98.2998zM129.2 7.7998\\nc14.0996 10.4004 6.39941 45.7002 -10.5 65.7002c-19.4004 22.2002 -44.6006 35.4004 -60.9004 25.5996c-10.8994 -8.19922 -12.8994 -36 2.60059 -63.3994c23 -32.6006 55.5 -35.7998 68.7998 -27.9004zM102.8 127.5c24.4004 -15.7998 59.7002 -5.59961 78.7998 22.7998\\nc19 28.4004 14.6006 64.2002 -9.89941 80s-59.7998 5.60059 -78.7998 -22.7998s-14.6006 -64.2002 9.89941 -80zM205 -48c28.4004 -0.5 57.7002 24.4004 57.2002 35.4004c-0.100586 11.3994 -32 19.8994 -55.7002 18.8994c-23.5 0.600586 -59.7002 -9.2998 -59.2998 -22\\nc-0.400391 -8.59961 28.3994 -33.5 57.7998 -32.2998zM263.9 76.9004v0.599609c-0.200195 29.5996 -26.8008 53.5996 -59.4004 53.4004c-32.5996 -0.200195 -59 -24.3008 -58.7998 -54v-0.600586c0.200195 -29.5996 26.7998 -53.5996 59.3994 -53.3994\\nc32.6006 0.199219 59 24.2998 58.8008 54zM346.1 34.2002c18.4004 23.2002 12.2002 62 1.7002 72.2998c-15.5996 11.9004 -38 -3.2998 -58.8994 -26.5996c-18.3008 -21.1006 -28.4004 -59.6006 -15.1006 -72c12.7002 -9.60059 47 -8.30078 72.2998 26.2998zM369 107.4\\nc23.7002 18.6992 31.2998 73.5996 -12.5996 98.2998c-26.4004 7 -8.90039 -107.7 12.5996 -98.2998z\\\" />\\n    <glyph glyph-name=\\\"redhat\\\" unicode=\\\"&#xf7bc;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M341.52 162.59v-0.149414c33.6504 0 82.3408 6.93945 82.3408 47c0.219727 6.73926 0.859375 1.81934 -20.8799 96.2393c-4.62012 19.1504 -8.68066 27.8398 -42.3105 44.6504c-26.0898 13.3398 -82.9199 35.3701 -99.7295 35.3701\\nc-15.6602 0 -20.2002 -20.1699 -38.8701 -20.1699c-18 0 -31.3105 15.0596 -48.1201 15.0596c-16.1406 0 -26.6602 -11 -34.7803 -33.6201c-27.5 -77.5498 -26.2803 -74.2695 -26.1201 -78.2695c0 -24.7998 97.6406 -106.11 228.47 -106.11zM429.07 193.19\\nl-0.0703125 -0.0302734c4.65039 -22 4.65039 -24.3506 4.65039 -27.25c0 -37.6602 -42.3301 -58.5605 -98 -58.5605c-125.74 -0.0800781 -235.91 73.6504 -235.91 122.33v0.0771484c0 5.65332 1.81836 14.4531 4.05957 19.6436\\nc-45.2402 -2.26074 -103.8 -10.3301 -103.8 -62.0303c0 -84.6699 200.63 -189 359.49 -189c121.79 0 152.51 55.0801 152.51 98.5801c0 34.21 -29.5898 73.0498 -82.9297 96.2402z\\\" />\\n    <glyph glyph-name=\\\"sketch\\\" unicode=\\\"&#xf7c6;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M27.5 285.8l78.9004 105.8l-6.90039 -130.699h-90.5zM396.3 402.3l7.10059 -133.5l-135.7 147.2zM112.2 229.7l122.6 -239.7l-224.899 261.7h91.0996zM114.2 260.9l142.1 154.1l60.4004 -65.5996l81.5 -88.5h-284zM411.5 251.8v-0.0996094h90.9004l-224.801 -261.7z\\nM415.4 379l87.8994 -118.1h-90.2998l-6.09961 113.399l-0.900391 17.2998zM113.5 354.5l2.59961 47.7998l128.601 13.7002l-135.8 -147.1zM401.2 251.8l-144.9 -283.8l-102.7 200.9l-42.3994 82.8994h290z\\\" />\\n    <glyph glyph-name=\\\"sourcetree\\\" unicode=\\\"&#xf7d3;\\\" \\nd=\\\"M427.2 245c-0.0947266 -81.5225 -63.1279 -168.031 -140.7 -193.1v-101.601c0 -7.89355 -6.40625 -14.2998 -14.2998 -14.2998v0h-96.4004c-7.89355 0 -14.2998 6.40625 -14.2998 14.2998v101.7c-77.5566 25.0537 -140.5 111.535 -140.5 193.037v0.363281\\nc0.200195 112 91.0996 202.8 203.2 202.6c112.1 0 203 -90.9004 203 -203zM155.6 245c0 -91 137.2 -89.9004 137.301 0c0 90.7998 -137.301 90.7998 -137.301 0z\\\" />\\n    <glyph glyph-name=\\\"suse\\\" unicode=\\\"&#xf7d6;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M471.08 345.34c0 1 1.01953 0.759766 0.919922 0.660156c4.2002 -0.599609 92.2002 -13.7002 129.2 -35.2998c12.0996 -6.90039 20.7002 -21.5 34.5 -69.6006c0.700195 -2.7998 -2.7998 -5.09961 -3.60059 -5.69922\\nc-26.8994 -18.8008 -56.7998 -36.6006 -145.199 21.6992c11.0996 -26.6992 10.6992 -25.0996 11 -25.5c5.39941 -2.7998 56.2998 -28.6992 81.5996 -28.1992c20.4004 0.399414 42.2002 10.3994 50.9004 15.5996c0 0 4.5 2.7002 3.19922 -2.40039\\nc-0.5 -1.89941 -3.2998 -14.5996 -7 -17.6992c-1 -1 -36.5996 -28.4004 -103.1 -28c-42.7002 1 -76.7998 16.3994 -82.4004 -17.4004c-2.7998 -17.0996 6.10059 -37.5 18.9004 -55.7998h-48.5996c-15.9004 28.3994 -23.1006 68.2998 -79.8008 68.2998\\nc-51.5996 0 -48.3994 -50.7002 -42.6992 -68.2998h-45.9004c-18.7998 68.7998 -69.2002 98.5996 -102.4 104.3c-74.2998 12.7998 -113 -49.2002 -87 -98.4004c23.1006 -43.5996 81.4004 -44.0996 99.7002 -20.3994c19.2002 25 3.7998 62.8994 -28.5 65.7002\\nc-12.2998 1.09961 -25.2998 -4.60059 -25.5 -16.9004v-0.0595703c0 -10.9004 10 -13.8008 12 -14c7.2998 0.399414 8.90039 1.89941 11.7998 2.39941c5.2002 0.900391 16.8008 -1.7998 16.8008 -13.8994c0 -8.40039 -6.80078 -13.1006 -13.3008 -14.9004\\nc-4.2373 -1.46777 -11.3154 -2.67773 -15.7998 -2.7002c-17.2002 0 -41.2002 14.7998 -41.5 42.6006c-0.200195 15.6992 7.7002 30 21.6006 39.1992c15.8994 10.5 43.5996 14.1006 69.1992 -1.59961c31.5 -19.2998 39.7002 -57.0996 31.5 -82.9004\\nc-11.8994 -37.2998 -45.5996 -57.1992 -90 -53.2998c-31.5 2.7998 -60.6992 19.4004 -78.0996 44.4004c-6.32715 9.0332 -13.7197 25.0264 -16.5 35.7002c-7.12012 28.0596 0 58.0596 5.48047 71.3994c25.6992 63.6006 80.1992 97.2998 99.5996 109.7\\nc100.2 61.5996 171.1 59.0996 223 57.2998c61.2998 -2.2002 126.6 -23.2998 135.7 -26.2998c0 2 0.299805 20.2998 0.299805 20.2998zM531.48 272.54c-1.10059 -33.5 39.0996 -51.5996 63.2998 -28.9004c24.3994 22.9004 9 64 -24.4004 65.2002\\nc-0.380859 0.0136719 -0.999023 0.0253906 -1.37988 0.0253906c-20.0615 0 -36.8711 -16.2734 -37.5195 -36.3252zM570.08 297.84c14.0312 -0.413086 25.4199 -12.1406 25.4199 -26.1787c0 -0.282227 -0.00878906 -0.739258 -0.0195312 -1.02148\\nc-0.50293 -13.9795 -12.2646 -25.3262 -26.2539 -25.3262c-14.501 0 -26.2695 11.7695 -26.2695 26.2705s11.7686 26.2695 26.2695 26.2695c0.236328 0 0.618164 -0.00585938 0.853516 -0.0136719zM574.38 269.04c15.4004 0 15.4004 15.5996 0 15.5996\\nc-15.3994 0 -15.3994 -15.5996 0 -15.5996z\\\" />\\n    <glyph glyph-name=\\\"ubuntu\\\" unicode=\\\"&#xf7df;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM300.7 347c-8.7998 -15.2002 -3.60059 -34.7002 11.7002 -43.5996c15.1992 -8.80078 34.6992 -3.5 43.5 11.6992c8.7998 15.3008 3.59961 34.8008 -11.7002 43.6006\\nc-15.2002 8.7998 -34.7002 3.5 -43.5 -11.7002zM87.4004 160.1c17.5996 0 31.8994 14.3008 31.8994 31.9004s-14.2998 31.9004 -31.8994 31.9004c-17.6006 0 -31.9004 -14.3008 -31.9004 -31.9004s14.2998 -31.9004 31.9004 -31.9004zM115.5 157\\nc8.7002 -32.7002 29.0996 -60.7002 56.5 -79l23.7002 39.5996c-51.5 36.3008 -51.5 112.5 0 148.801l-23.7002 39.5996c-27.4004 -18.4004 -47.9004 -46.2998 -56.5 -79.0996c22.4004 -18 22.2998 -52 0 -69.9004zM344.2 25.2998\\nc15.2998 8.7998 20.5 28.2998 11.7002 43.6006c-8.80078 15.2998 -28.3008 20.5 -43.5 11.6992c-15.3008 -8.7998 -20.5 -28.2998 -11.7002 -43.5996s28.2002 -20.5 43.5 -11.7002zM344.5 94.7998c23 22.9004 38 53.9004 40.2998 88.4004l-46.0996 0.700195\\nc-5.5 -62.7002 -71.9004 -100.9 -128.9 -74.4004l-22.5 -40.2998c47.7998 -23.7002 91.5 -10.7998 96.7002 -9.40039c4.40039 28.4004 33.7998 45.2998 60.5 35zM338.6 200.1l46 0.600586c-2.19922 34.5996 -17.0996 65.5996 -40.1992 88.5\\nc-26.7002 -10.2998 -56.1006 6.7002 -60.5 35c-5.2002 1.39941 -48.8008 14.2998 -96.7002 -9.40039l22.5 -40.2998c57.5996 26.7998 123.5 -12.4004 128.899 -74.4004z\\\" />\\n    <glyph glyph-name=\\\"ups\\\" unicode=\\\"&#xf7e0;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M103.2 145v123h32.5996v-141.6c-17.7002 -12.1006 -97.8994 -35.9004 -97.8994 39v102.6h32.6992v-104c0 -32.0996 27.4004 -22.5996 32.6006 -19zM4 373.18c93.5996 49.6006 259.1 61.6006 375.4 0v-220.899c0 -103.9 -75.3008 -135.2 -187.7 -184.101\\nc-112.8 48.9004 -187.7 80.4004 -187.7 184.101v220.899zM362.1 152.28v216.2c-109.3 10.1992 -238.6 4 -340.899 -89.8008v-126.399c0 -86.6006 53 -113.5 170.5 -165.3c117.2 51.6992 170.399 78.6992 170.399 165.3zM152.5 259.68\\nc23.7002 15.3203 104.4 31.8008 104.4 -65.5996c0 -75.9004 -47.3008 -85.7998 -71.7002 -78.5v-68.7002h-32.7002v212.8zM185.2 142.38c2 -0.799805 38.3994 -16.8994 38.3994 51c0 62 -30 53.5 -38.3994 49.2998v-100.3zM264.3 228.78\\nc-0.200195 41.0996 51.2002 53.8994 79.7002 31.8994v-28.3994c-17.9004 18.2998 -47.9004 18.0996 -48.5 -2.2002c-0.700195 -26.5996 55.0996 -21.7002 53.4004 -73.2002c-1.30078 -41.5996 -47 -55 -83.2002 -33.5v30.1006\\nc20.3994 -18.1006 51.3994 -18.6006 50.7998 4.89941c-0.599609 27.9004 -52.0996 23.1006 -52.2002 70.4004z\\\" />\\n    <glyph glyph-name=\\\"usps\\\" unicode=\\\"&#xf7e1;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M460.3 206.3c-1.39941 -2.2002 -4.2998 -4.39941 -3.7998 0.100586c2.90039 11.5996 13.9004 30.5 4.40039 32c-17.8008 3.09961 -88.1006 -4.5 -88.1006 0c0 2.39941 26.7002 3.09961 37.9004 8.69922c9.39941 9.40039 10.7998 8 10.8994 8h27\\nc26.9004 0 37.5 -7.5 11.7002 -48.7998zM348.2 183.7c-62.2998 -21.2002 -124.8 -54.2002 -321.2 -151.5l52.4004 245.5c185 0 335.199 5.59961 337.899 -22.6006h-196.6l30.7002 -93.2998c35 16.7998 120.899 51.7002 172.6 53.9004\\nc21.7998 0.799805 30.5996 -2.90039 26.2002 -5.7998c-4.7002 -2.30078 -38 -4.90039 -102 -26.2002zM94.7002 352h454.3l-67.7002 -319.7h-423.1s402 157.3 406.399 160.2c0 0 35.7002 48 14.6006 67.7002c-6.5 6.59961 -16 6.59961 -52.4004 6.59961\\nc-2.09961 19.5 -78.7998 31.5 -332.1 85.2002z\\\" />\\n    <glyph glyph-name=\\\"yarn\\\" unicode=\\\"&#xf7e3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M393.9 102.8c-39 -9.2998 -48.4004 -32.0996 -104 -47.3994c0 0 -2.7002 -4 -10.4004 -5.80078c-13.4004 -3.2998 -63.9004 -6 -68.5 -6.09961c-12.4004 -0.0996094 -19.9004 3.2002 -22 8.2002c-6.40039 15.2998 9.2002 22 9.2002 22\\nc-8.10059 5 -9 9.89941 -9.7998 8.09961c-2.40039 -5.7998 -3.60059 -20.0996 -10.1006 -26.5c-8.7998 -8.89941 -25.5 -5.89941 -35.2998 -0.799805c-10.7998 5.7002 0.799805 19.2002 0.799805 19.2002s-5.7998 -3.40039 -10.5 3.59961\\nc-6 9.2998 -17.0996 37.2998 11.5 62c-1.2998 10.1006 -4.59961 53.7002 40.6006 85.6006c0 0 -20.6006 22.7998 -12.9004 43.2998c5 13.3994 7 13.2998 8.59961 13.8994c5.7002 2.2002 11.3008 4.60059 15.4004 9.10059c20.5996 22.2002 46.7998 18 46.7998 18\\ns12.4004 37.7998 23.9004 30.3994c3.5 -2.2998 16.2998 -30.5996 16.2998 -30.5996s13.5996 7.90039 15.0996 5c8.2002 -16 9.2002 -46.5 5.60059 -65.0996c-6.10059 -30.6006 -21.4004 -47.1006 -27.6006 -57.5c-1.39941 -2.40039 16.5 -10 27.8008 -41.3008\\nc10.3994 -28.5996 1.09961 -52.6992 2.7998 -55.2998c0.799805 -1.39941 13.7002 -0.799805 36.3994 13.2002c12.8008 7.90039 28.1006 16.9004 45.4004 17c16.7002 0.5 17.5996 -19.2002 4.90039 -22.2002zM496 192c0 -136.9 -111.1 -248 -248 -248s-248 111.1 -248 248\\ns111.1 248 248 248s248 -111.1 248 -248zM416.7 116.8c-1.7002 13.6006 -13.2002 23 -28 22.7998c-22 -0.299805 -40.5 -11.6992 -52.7998 -19.1992c-4.80078 -3 -8.90039 -5.2002 -12.4004 -6.80078c3.09961 44.5 -22.5 73.1006 -28.7002 79.4004\\nc7.7998 11.2998 18.4004 27.7998 23.4004 53.2002c4.2998 21.7002 3 55.5 -6.90039 74.5c-1.59961 3.09961 -7.39941 11.2002 -21 7.39941c-9.7002 20 -13 22.1006 -15.5996 23.8008c-1.10059 0.699219 -23.6006 16.3994 -41.4004 -28\\nc-12.2002 -0.900391 -31.2998 -5.30078 -47.5 -22.8008c-2 -2.19922 -5.89941 -3.7998 -10.0996 -5.39941h0.0996094c-8.39941 -3 -12.2998 -9.90039 -16.8994 -22.2998c-6.5 -17.4004 0.199219 -34.6006 6.7998 -45.7002c-17.7998 -15.9004 -37 -39.7998 -35.7002 -82.5\\nc-34 -36 -11.7998 -73 -5.59961 -79.6006c-1.60059 -11.0996 3.69922 -19.3994 12 -23.7998c12.5996 -6.7002 30.2998 -9.59961 43.8994 -2.7998c4.90039 -5.2002 13.7998 -10.0996 30 -10.0996c6.7998 0 58 2.89941 72.6006 6.5c6.7998 1.59961 11.5 4.5 14.5996 7.09961\\nc9.7998 3.09961 36.7998 12.2998 62.2002 28.7002c18 11.7002 24.2002 14.2002 37.5996 17.3994c12.9004 3.2002 21 15.1006 19.4004 28.2002z\\\" />\\n    <glyph glyph-name=\\\"airbnb\\\" unicode=\\\"&#xf834;\\\" \\nd=\\\"M224 74.8799h0.0595703c24.71 31.1797 39.5508 58.9297 45 83.1797c22.5508 88 -112.609 88 -90.0596 0c4.91992 -23.75 19.7598 -51.5098 45 -83.1797zM362.15 1.65039c35.6396 15.3496 50.1797 53.5693 37.0098 86.6396\\nc-25.4902 61.6104 -78.8398 168.47 -114.84 239.09c-16.9707 33.9297 -28.0303 59.8701 -60.3701 59.8701c-33.8203 0 -43.6299 -27.3301 -59.3799 -57.4004c-4.15039 -10.3799 -100.771 -202.399 -115.87 -241.56c-17.8105 -50.0303 21.2998 -98.5205 71.2998 -91.0898\\nc24.5996 2.22949 52.6201 18.8701 85.1504 54.9199c-29.2002 37.1104 -47.5 70.3096 -54.4307 99.5c-11.8799 53.9902 18.3604 100.5 73.2803 100.5c64.96 0 122.75 -69.9297 18.8496 -200c35.6309 -39.5898 77.2402 -68.7803 119.301 -50.4697zM409.15 137.77\\nc0 -0.679688 16.8496 -35.6895 16.8301 -39.5791c25.2393 -69.3301 -26.7207 -130.24 -89.6104 -130.19c-11.1104 0 -53.6904 -1.37988 -112.37 62.4004c-51.7598 -56.3408 -90.6602 -62.4004 -112.37 -62.4004c-62.8896 0 -114.85 60.8604 -89.6299 130.19\\nc0.889648 2.61914 11.1797 32.71 117.34 245.02c19.79 41.1201 39.1406 72.79 84.6602 72.79c49.1299 0 56.2695 -3.92969 185.15 -278.23z\\\" />\\n    <glyph glyph-name=\\\"battle-net\\\" unicode=\\\"&#xf835;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M448.61 222.38c60.75 -36.25 71.9893 -73.8096 57.3193 -93.6895c-4.70996 -6.88086 -25.1797 -36.2402 -148 -31.6406c-21.8193 -30.3994 -45.25 -53.2695 -67.4697 -69.2695c28.54 -53.7803 54.2998 -85.0303 62.54 -91.7803c0 0 -3.44043 0.160156 -8.58008 3.37012\\nc-2.69434 1.61133 -6.61426 4.78809 -8.75 7.08984c-15.6299 16.1797 -35.5195 41.9404 -55.7002 74.1201c-43.9502 -28.1104 -81.1299 -29.0996 -88.4395 -9.4502c-4.83984 10.8301 1.5293 26.5 9.05957 39.3398c-31.3203 -17.5098 -61.7002 -26.8496 -86.7002 -21.1396\\nc-6.79004 1.54004 -17.6299 5.50977 -23.1992 18.2598c-4.52051 9.53027 -6.02051 24.2598 -0.150391 47.1406c9.07031 35.3398 37.5801 82.2998 47.3096 97.6992c3.75 -8.62988 -20.7793 40.1904 -26 93.1904c-89.1592 0 -110.56 -8.83984 -111.56 -9.21973\\nc1.54004 2.44922 7.86035 7.26953 17.7598 9.71973c22 5.47949 54.6406 9.84961 93 11.2295c-2.38965 52.0703 15.3398 84.7705 36 81.29h0.180664c11.3291 -1.2998 21.2598 -13.5801 28.5 -25.9297c0.669922 35.2002 7.7998 65.54 25 84.0703\\nc4.72949 5.14941 13.5693 12.5498 27.3994 11h0.0498047c10.5205 -0.850586 24 -6.91992 40.8398 -23.4707c25.6006 -25.0693 51.54 -71.9893 60.4805 -88.9297c37.25 -3.7002 68.7695 -12.5801 93.7695 -23.7998c32.3506 51.5898 46.4805 89.5303 48.2002 100.05\\nc0.640625 -1.25 2.93066 -8.41992 -0.450195 -20.25c-6.22949 -21.6201 -18.5791 -51.7197 -36.3398 -85.2998c45.79 -23.7305 65.3203 -55.0098 52.8506 -71.3301c-3.35059 -4.94043 -12.0498 -12.5498 -38.9199 -12.3701zM370.76 116.16\\nc70.4102 4.37988 79.6504 20.5703 78.5098 33.5c-1.87988 21.25 -21.1992 41.2598 -49.0596 58.8301c0.889648 -24.5605 -5.63965 -54.6201 -29.4502 -92.3301zM216.9 60.3096c-19.04 -30.46 9.19922 -39.5596 49.7998 -17.6992\\nc-7 12.0898 -13.9199 24.8594 -20.6006 38.1895c-9.66992 -7.37012 -19.4395 -14.2598 -29.1992 -20.4902zM431.9 231.66c36.2598 -1.23047 29.4199 27.8496 -9.64062 51.9502c-5.9707 -10.373 -16.1582 -26.9043 -22.7402 -36.9004\\nc11.2207 -4.70996 22.0908 -9.70996 32.3809 -15.0498zM279.18 50c28.3799 18.2002 60.1689 48.1201 84.7695 85.4297c18.46 27.96 26.1494 56.0205 25.4102 79.5703c-30.5801 17.3203 -89.3604 42.7197 -167.23 57.21c0.350586 18.4805 2.08984 19.8799 2.16016 20.3301\\nc10.9229 -1.33496 28.5693 -4.04492 39.3896 -6.0498c32.5664 -6.08984 84.2383 -20.2959 115.34 -31.71c-15.6191 33.1494 -41.4092 47.2197 -41.5195 47.2197c1.59961 0.160156 28.1299 -6 48.8604 -43.7197c8.42676 11.2061 16.2031 22.0293 23.3301 32.4697\\nc-29.96 15.46 -71.75 28.04 -116.32 30.71c-33.4502 1.99023 -61.6299 -5.38965 -81.6299 -17.8096c0.240234 -35.2607 7.66992 -98.96 34 -173.431c-16.8301 -9.12988 -17.7402 -7.87012 -18.6699 -8.25c-17.1924 40.7627 -37.2041 109.235 -44.6699 152.84\\nc-21.0908 -30.3994 -20.1406 -59.5 -20.1406 -59.5693c-0.919922 1.22949 -8.81934 27.4297 13.4707 64.2295c-13.5801 1.70996 -26.5508 2.9707 -38.8506 3.87988c1.57031 -33.6797 11.5703 -76.1494 31.5703 -116.069c14.8701 -29.71 35.1201 -50.3105 55.71 -61.4902\\nc30.4102 17.9199 81.0498 55.6504 132.75 115.92c14.9697 -9 16.1494 -11.71 16.5098 -12c-7.91309 -10.5332 -16.2227 -20.9033 -24.9287 -31.1104c-21.542 -25.1426 -59.6494 -62.7744 -85.0605 -84c37.5303 -3.38965 62.5303 12.1807 62.5303 12.25\\nc-0.860352 -1.67969 -20.0303 -21.6797 -63.2803 -20.4092c5.5 -12.9404 10.9902 -25.0908 16.5 -36.4404zM306.579 337c-1.58008 2.4502 -39.5801 58.8496 -56.4805 54.6104c-16.8994 1.09961 -36.21 -22.9805 -38.21 -75.2803\\nc21.1104 13.2402 50.1299 22.3301 94.6904 20.6699zM175.929 333.9c-3.7998 6.68945 -8.66992 12.4795 -14.4297 13.5693h-0.0898438c-24.79 1.41016 -24.75 -52.8301 -24.6699 -49.5898c13.6602 -0.00976562 27.8496 -0.410156 42.3994 -1.25977\\nc-1.62012 12.6602 -2.72949 25.1699 -3.20996 37.2803zM147.869 171.9c-30.7998 -61.5098 -19.8701 -76.6104 -19.6699 -76.8203c7.38965 -15.4902 38.1299 -20.25 84.9199 4.50977c-21.9502 11.7402 -44.4902 32.6104 -65.25 72.3105zM357.929 97.0996z\\\" />\\n    <glyph glyph-name=\\\"bootstrap\\\" unicode=\\\"&#xf836;\\\" \\nd=\\\"M292.3 136.07c0 -42.4102 -39.7197 -41.4307 -43.9199 -41.4307h-80.8896v81.6904h80.8896c42.5605 0 43.9199 -31.9004 43.9199 -40.2598zM242.15 209.2h-74.6602v72.1797h74.6602c34.9297 0 38.4395 -20.3496 38.4395 -35.8701\\nc0 -37.3096 -37.7695 -36.3096 -38.4395 -36.3096zM448 341.33v-298.66c-0.120117 -41.0977 -33.5723 -74.5498 -74.6699 -74.6699h-298.66c-41.0977 0.120117 -74.5498 33.5723 -74.6699 74.6699v298.66c0.120117 41.0977 33.5723 74.5498 74.6699 74.6699h298.66\\nc41.0977 -0.120117 74.5498 -33.5723 74.6699 -74.6699zM338.05 130.14c0 21.5703 -6.64941 58.29 -49.0498 67.3506v0.729492c22.9102 9.78027 37.3398 28.25 37.3398 55.6406c0 7 2 64.7793 -77.5996 64.7793h-127v-261.33c128.229 0 139.87 -1.67969 163.6 5.70996\\nc14.21 4.4209 52.71 17.9805 52.71 67.1201z\\\" />\\n    <glyph glyph-name=\\\"buffer\\\" unicode=\\\"&#xf837;\\\" \\nd=\\\"M427.84 67.3301l-196.5 -97.8203c-1.93848 -0.832031 -5.22461 -1.50684 -7.33496 -1.50684c-2.10938 0 -5.39551 0.674805 -7.33496 1.50684l-196.51 97.8203c-4 2 -4 5.28027 0 7.29004l47.0596 23.3799c1.94238 0.832031 5.23242 1.50684 7.3457 1.50684\\nc2.1123 0 5.40234 -0.674805 7.34473 -1.50684l134.76 -67c1.93848 -0.836914 5.22461 -1.51562 7.33496 -1.51562c2.11133 0 5.39746 0.678711 7.33496 1.51562l134.76 67c1.94043 0.832031 5.22949 1.50781 7.34082 1.50781s5.39941 -0.675781 7.33984 -1.50781\\nl47.0596 -23.4297c4.0498 -1.95996 4.0498 -5.24023 0 -7.24023zM427.84 203.86c4.0498 -2.01074 4.0498 -5.29004 0 -7.31055l-196.5 -97.7998c-1.93848 -0.832031 -5.22461 -1.50781 -7.33496 -1.50781c-2.10938 0 -5.39551 0.675781 -7.33496 1.50781l-196.51 97.7998\\nc-4 2.02051 -4 5.31055 0 7.31055l47.0596 23.4297c1.94238 0.832031 5.23242 1.50684 7.3457 1.50684c2.1123 0 5.40234 -0.674805 7.34473 -1.50684l134.76 -67.0801c1.93945 -0.828125 5.22559 -1.5 7.33496 -1.5s5.39551 0.671875 7.33496 1.5l134.76 67.0801\\nc1.94043 0.832031 5.22949 1.50781 7.34082 1.50781s5.39941 -0.675781 7.33984 -1.50781zM20.1602 317.58c-4.0498 1.86035 -4.0498 4.88965 0 6.74023l196.5 90.2793c1.9502 0.774414 5.23633 1.40332 7.33496 1.40332s5.38477 -0.628906 7.33496 -1.40332\\nl196.51 -90.2793c4 -1.85059 4 -4.87988 0 -6.74023l-196.51 -90.29c-1.95215 -0.765625 -5.23828 -1.3877 -7.33496 -1.3877s-5.38281 0.62207 -7.33496 1.3877z\\\" />\\n    <glyph glyph-name=\\\"chromecast\\\" unicode=\\\"&#xf838;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M447.83 384h0.169922c23.5811 0 42.7197 -19.1387 42.7197 -42.7197v-298.561c0 -23.5811 -19.1387 -42.7197 -42.7197 -42.7197v0h-149.36v42.7197h149.19v298.561h-383.83v-63.9199h-42.7197v63.9199c0 23.5811 19.1387 42.7197 42.7197 42.7197h383.83z\\nM21.2803 64.4199c35.2783 0 63.9102 -28.6318 63.9102 -63.9102v-0.00976562h-63.9102v63.9199zM21.2803 149.7l0.0292969 -0.339844h0.330078c82.248 -0.105469 149 -66.9424 149 -149.19v-0.169922h-42.7197v0.339844v0.0302734c0 58.8594 -47.7705 106.63 -106.63 106.63\\nh-0.00976562v42.7002zM21.2803 234.97v-0.330078c129.46 -0.370117 234.34 -105.18 234.8 -234.64h-42.7197v0.5c-0.0800781 106 -86.0801 191.85 -192.08 191.75v42.7197z\\\" />\\n    <glyph glyph-name=\\\"evernote\\\" unicode=\\\"&#xf839;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M120.82 315.79c1.59961 -22.3096 -17.5508 -21.5898 -21.6104 -21.5898c-68.9297 0 -73.6396 1 -83.5801 -3.33984c-0.55957 -0.220703 -0.740234 0 -0.370117 0.370117l108.53 110.319c0.379883 0.370117 0.599609 0.219727 0.379883 -0.370117\\nc-4.34961 -9.98926 -3.34961 -15.0898 -3.34961 -85.3896zM199.82 7.79004c-14.6807 37.0801 13 76.9297 52.5195 76.6201c17.4902 0 22.6006 -23.21 7.9502 -31.4199c-6.19043 -3.2998 -24.9502 -1.74023 -25.1396 -19.2002\\nc-0.0507812 -17.0898 19.6699 -25 31.1992 -24.8896h0.0107422c25.1934 0 45.6396 20.4463 45.6396 45.6396v0.00976562v0.0800781c0 11.6299 -7.79004 47.2197 -47.54 55.3398c-7.71973 1.54004 -65 6.35059 -68.3496 50.5205\\nc-3.74023 -16.9307 -17.4004 -63.4902 -43.1104 -69.0898c-8.74023 -1.94043 -69.6797 -7.64062 -112.92 36.7695c0 0 -18.5703 15.2305 -28.2305 57.9502c-3.37988 15.75 -9.2793 39.7002 -11.1396 62c0 18 11.1396 30.4502 25.0703 32.2002c81 0 90 -2.32031 101 7.7998\\nc9.81934 9.24023 7.7998 15.5 7.7998 102.78c1 8.2998 7.79004 30.8096 53.4102 24.1396c6 -0.860352 31.9102 -4.17969 37.4795 -30.6396l64.2607 -11.1504c20.4297 -3.70996 70.9395 -7 80.5996 -57.9404c22.6602 -121.09 8.91016 -238.46 7.7998 -238.46\\nc-15.9795 -114.38 -111.07 -108.85 -111.07 -108.85c-18.9492 0.230469 -54.25 9.40039 -67.2695 39.8301zM280.76 212.63c-1 -1.91992 -2.2002 -6 0.850586 -7c14.0898 -4.92969 39.75 -6.83984 45.8799 -5.53027c3.10938 0.25 3.0498 4.43066 2.47949 6.65039\\nc-3.5293 21.8496 -40.8301 26.5 -49.2393 5.91992z\\\" />\\n    <glyph glyph-name=\\\"itch-io\\\" unicode=\\\"&#xf83a;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M71.9199 413.23c19.2197 1.66992 114.32 2.76953 184.08 2.76953s116.56 -0.400391 184 -2.73047c21.7197 -12.9297 64.5195 -62.0996 64.9199 -75v-21.3398c0 -27.0596 -25.25 -50.8398 -48.25 -50.8398c-27.54 0 -50.54 22.8799 -50.54 50\\nc0 -27.1494 -22.2295 -50 -49.7598 -50s-49 22.8799 -49 50c0 -27.1494 -23.5898 -50 -51.1602 -50h-0.5c-27.5703 0 -51.1602 22.8799 -51.1602 50c0 -27.1494 -21.4199 -50 -49 -50s-49.7598 22.8799 -49.7598 50c0 -27.1494 -22.9697 -50 -50.54 -50\\nc-22.96 0 -48.25 23.7803 -48.25 50.8398v21.3398c0.400391 12.8906 43.2002 62.0605 64.9199 74.9609zM204.24 278.84c9.14844 -15.9902 31.5527 -28.9785 49.9746 -28.9785c0.498047 0 1.30664 0.0126953 1.80469 0.0283203c28.7109 0 44.6602 16.4502 51.7607 28.9404\\nc22 -38.3398 77.8496 -38.7598 99.8496 -0.240234c13.1201 -23.0596 43.0801 -32.0996 56 -27.6602c3.57031 -37.1494 13.9004 -236.88 -17.75 -269.149c-77.6797 -18.1201 -299.76 -18.6699 -379.76 0c-31.4004 32.0195 -21.6006 229 -17.7305 269.149\\nc12.8301 -4.41016 42.8301 4.52051 56 27.6602c21.9502 -38.46 77.8506 -38.1494 99.8506 0.25zM162.66 225.07l-0.0205078 -0.0703125c-52.3193 0 -65.21 -77.4502 -83.8799 -144.45c-17.2598 -62.1494 5.52051 -63.6699 33.9404 -63.7295\\nc42.1494 1.56934 65.4902 32.1797 65.4902 62.79c53.6191 -8.79004 116.3 -6.43066 155.55 0c0 -30.6104 23.3398 -61.2207 65.4902 -62.79c28.4297 0.0595703 51.21 1.58008 33.9492 63.7295c-18.6494 66.9199 -31.54 144.45 -83.8701 144.45\\nc-16.46 0 -31.0898 0 -49.25 -19.71c-12.1377 1.23145 -31.8896 2.23047 -44.0898 2.23047c-12.1992 0 -31.9521 -0.999023 -44.0898 -2.23047c-18.1299 19.7803 -32.75 19.7803 -49.2197 19.7803zM256 177.21l-0.0595703 -0.00976562s44.3496 -40.7598 52.3496 -55.2402\\nl-29 1.16992v-25.2803c0 -1.15918 -11.6602 -0.699219 -23.3096 -0.15918c-1.99023 0 -23.3301 -1.39062 -23.3301 0.15918v25.3203l-29 -1.16992c7.96973 14.4404 52.3496 55.21 52.3496 55.21z\\\" />\\n    <glyph glyph-name=\\\"salesforce\\\" unicode=\\\"&#xf83b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M248.89 202.36h-26.3496c0.69043 5.15918 3.32031 14.1201 13.6396 14.1201c6.75 0 11.9707 -3.82031 12.71 -14.1201zM385.55 216.24c0.450195 0 14.1104 1.75977 14.1104 -20c0 -6.45996 -1.11035 -20 -14.1104 -20c-0.479492 0 -14.1094 -1.77051 -14.1094 20\\nc0 21.7695 13.6396 20 14.1094 20zM142.33 192.48c4.2002 3.60938 15.6104 2.71973 20.9297 1.64941v-16.9395c-5.85938 -1.1709 -16.2295 -2.75 -20.9297 0.949219c-1.20996 1 -3.29004 2.27051 -3.29004 7.05078\\nc-0.0078125 0.137695 -0.0146484 0.361328 -0.0146484 0.499023c0 2.31738 1.48047 5.36035 3.30469 6.79102zM640 216c0 -87.5801 -80 -154.39 -165.36 -136.43c-18.3701 -33 -70.7295 -70.75 -132.199 -41.6299c-41.1602 -96.0508 -177.891 -92.1807 -213.811 5.16992\\nc-119.72 -23.8906 -178.82 138.37 -75.2695 199.279c-34.75 79.4307 22.6396 173.61 114.31 173.61c33.834 -0.0214844 77.9883 -21.8389 98.5605 -48.7002c20.6992 21.4004 49.3994 34.8105 81.1494 34.8105c42.3398 0 79 -23.5205 98.7998 -58.5703\\nc92.8203 40.6797 193.82 -28.2305 193.82 -127.54zM120.45 184.2c0 11.7598 -11.6904 15.1699 -17.8701 17.1699c-5.27051 2.11035 -13.4102 3.50977 -13.4102 8.93945c0 9.45996 17 6.66016 25.1699 2.12012c0 0 1.16992 -0.709961 1.64062 0.470703\\nc0.239258 0.699219 2.35938 6.58008 2.58984 7.29004c0.0292969 0.0927734 0.0537109 0.24707 0.0537109 0.34375c0 0.441406 -0.337891 0.918945 -0.753906 1.06543c-12.3301 7.63086 -40.7002 8.51074 -40.7002 -12.6992c0 -12.46 11.4902 -15.4404 17.8799 -17.1699\\nc4.71973 -1.58008 13.1699 -3 13.1699 -8.7002c0 -4 -3.5293 -7.06055 -9.16992 -7.06055c-5.82617 0.00976562 -14.3379 2.85449 -19 6.35059c-0.469727 0.229492 -1.41992 0.709961 -1.64941 -0.709961l-2.40039 -7.4707\\nc-0.469727 -0.939453 0.230469 -1.17969 0.230469 -1.40918c1.75 -1.40039 10.2998 -6.59082 22.8193 -6.59082c13.1699 0 21.4004 7.06055 21.4004 18.1104v-0.0498047zM152.45 226.78c-10.1299 0 -18.6602 -3.16992 -21.4004 -5.18066\\nc-0.237305 -0.164062 -0.430664 -0.532227 -0.430664 -0.822266c0 -0.178711 0.0859375 -0.442383 0.19043 -0.586914l2.59082 -7.06055c0.114258 -0.399414 0.544922 -0.723633 0.960938 -0.723633c0.0605469 0 0.15918 0.0107422 0.21875 0.0234375\\nc0.650391 0 6.7998 4 16.9297 4c4 0 7.06055 -0.709961 9.18066 -2.35938c3.59961 -2.80078 3.05957 -8.29004 3.05957 -10.5801c-4.79004 0.299805 -19.1104 3.43945 -29.4102 -3.75977c-4.05762 -2.7832 -7.34961 -9.03418 -7.34961 -13.9541\\nc0 -0.162109 0.00390625 -0.424805 0.00976562 -0.585938c0 -5.90039 1.50977 -10.4004 6.58984 -14.3506c12.2402 -8.16016 36.2803 -2 38.1006 -1.41016c1.5791 0.320312 3.5293 0.660156 3.5293 1.87988v33.8809c0.0400391 4.60938 0.320312 21.6396 -22.7793 21.6396z\\nM199 247.76c0.000976562 0.0205078 0.00195312 0.0527344 0.00195312 0.0722656c0 0.613281 -0.49707 1.11035 -1.10938 1.11035c-0.0205078 0 -0.0527344 -0.000976562 -0.0722656 -0.00195312h-9.82031\\nc-0.0175781 0.000976562 -0.0449219 0.000976562 -0.0625 0.000976562c-0.612305 0 -1.10938 -0.49707 -1.10938 -1.10938c0 -0.0205078 0.000976562 -0.0527344 0.00195312 -0.0722656v-79c-0.000976562 -0.0195312 -0.00195312 -0.0517578 -0.00195312 -0.0712891\\nc0 -0.613281 0.49707 -1.11035 1.10938 -1.11035c0.0175781 0 0.0449219 0.000976562 0.0625 0.00195312h9.87988c0.0205078 -0.000976562 0.0527344 -0.00195312 0.0722656 -0.00195312c0.613281 0 1.11035 0.49707 1.11035 1.10938\\nc0 0.0205078 -0.000976562 0.0527344 -0.00292969 0.0722656zM254.75 218.83c-2.09961 2.30957 -6.79004 7.53027 -17.6504 7.53027c-3.50977 0 -14.1592 -0.230469 -20.6992 -8.94043c-6.35059 -7.62988 -6.58008 -18.1104 -6.58008 -21.4102\\nc0 -3.12012 0.149414 -14.2598 7.05957 -21.1699c2.63965 -2.91016 9.06055 -8.22949 22.8105 -8.22949c10.8193 0 16.4697 2.34961 18.5791 3.75977c0.470703 0.240234 0.710938 0.709961 0.240234 1.87988l-2.34961 6.83008\\nc-0.1875 0.402344 -0.699219 0.728516 -1.14258 0.728516c-0.0751953 0 -0.194336 -0.0126953 -0.267578 -0.0283203c-2.58984 -0.94043 -6.34961 -2.82031 -15.29 -2.82031c-17.4199 0 -16.8496 14.7402 -16.9404 16.7002h37.1709\\nc0.522461 0.0107422 1.04688 0.431641 1.16992 0.939453c-0.290039 0 2.06934 14.7002 -6.09082 24.2305h-0.0195312zM291.44 166.14c13.1699 0 21.4092 7.06055 21.4092 18.1104c0 11.7598 -11.6992 15.1699 -17.8799 17.1699\\nc-4.13965 1.66016 -13.4102 3.37988 -13.4102 8.94043c0 3.75977 3.29004 6.34961 8.4707 6.34961c4.87988 -0.0976562 12.3613 -1.99316 16.7002 -4.22949c4.33789 -2.2373 1.17969 -0.710938 1.64941 0.469727c0.230469 0.700195 2.35059 6.58008 2.58008 7.29004\\nc0.0292969 0.0927734 0.0537109 0.24707 0.0537109 0.34375c0 0.441406 -0.337891 0.918945 -0.753906 1.06641c-7.91016 4.89941 -16.7402 4.93945 -20.2295 4.93945c-12 0 -20.46 -7.29004 -20.46 -17.6396c0 -12.46 11.4795 -15.4404 17.8701 -17.1699\\nc6.10938 -2 13.1699 -3.26074 13.1699 -8.7002c0 -4 -3.52051 -7.06055 -9.16992 -7.06055c-5.82617 0.0126953 -14.3379 2.85742 -19 6.35059c-0.155273 0.132812 -0.447266 0.241211 -0.651367 0.241211c-0.526367 0 -0.973633 -0.426758 -0.999023 -0.951172\\nl-2.34961 -7.52051c-0.470703 -0.939453 0.229492 -1.17969 0.229492 -1.40918c1.71973 -1.40039 10.3301 -6.59082 22.79 -6.59082h-0.0195312zM357.09 224c0 0.709961 -0.240234 1.17969 -1.17969 1.17969h-11.7598c0 0.140625 0.939453 8.94043 4.46973 12.4707\\nc4.16016 4.14941 11.7598 1.63965 12 1.63965c1.16992 -0.469727 1.41016 0 1.63965 0.469727l2.83008 7.77051c0.700195 0.939453 0 1.16992 -0.240234 1.41016c-5.08984 2 -17.3496 2.86914 -24.46 -4.24023c-5.47949 -5.48047 -7 -13.9199 -8 -19.5205h-8.46973\\nc-0.600586 -0.0498047 -1.125 -0.578125 -1.16992 -1.17969l-1.41992 -7.75977c0 -0.700195 0.240234 -1.16992 1.17969 -1.16992h8.23047c-8.50977 -47.9004 -8.75 -50.21 -10.3506 -55.5205c-1.08008 -3.62012 -3.29004 -6.89941 -5.87988 -7.75977\\nc-0.0898438 0 -3.87988 -1.67969 -9.63965 0.240234c0 0 -0.94043 0.469727 -1.41016 -0.709961c-0.240234 -0.709961 -2.58984 -6.82031 -2.83008 -7.53027s0 -1.41016 0.469727 -1.41016c5.11035 -2 13 -1.76953 17.8809 0\\nc6.2793 2.28027 9.71973 7.88965 11.5293 12.9404c2.75 7.70996 2.81055 9.79004 11.7598 59.7393h12.2305c0.601562 0.0498047 1.13086 0.578125 1.17969 1.18066zM410.48 208c-0.560547 1.67969 -5.10059 18.1104 -25.1709 18.1104c-15.25 0 -23 -10 -25.1592 -18.1104\\nc-1 -3 -3.18066 -14 0 -23.5195c0.0898438 -0.300781 4.40918 -18.1201 25.1592 -18.1201c14.9502 0 22.9004 9.60938 25.1709 18.1201c3.20996 9.60938 1.00977 20.5195 0 23.5195zM455.88 224.7c-5 1.64941 -16.6201 1.89941 -22.1104 -5.41016v4.46973\\nc0.000976562 0.0175781 0.00195312 0.0449219 0.00195312 0.0625c0 0.612305 -0.49707 1.11035 -1.10938 1.11035c-0.0205078 0 -0.0527344 -0.000976562 -0.0722656 -0.00292969h-9.39941c-0.0205078 0.00195312 -0.0527344 0.00292969 -0.0722656 0.00292969\\nc-0.612305 0 -1.11035 -0.498047 -1.11035 -1.11035c0 -0.0175781 0.000976562 -0.0449219 0.00195312 -0.0625v-55.2793c-0.000976562 -0.0175781 -0.00195312 -0.0449219 -0.00195312 -0.0625c0 -0.618164 0.501953 -1.12012 1.12012 -1.12012\\nc0.0175781 0 0.0449219 0.000976562 0.0625 0.00195312h9.63965c0.0166016 -0.000976562 0.0449219 -0.00195312 0.0615234 -0.00195312c0.618164 0 1.12012 0.501953 1.12012 1.12012c0 0.0175781 -0.000976562 0.0449219 -0.00195312 0.0625v27.7695\\nc0 2.91016 0.0498047 11.3701 4.45996 15.0498c4.90039 4.90039 12 3.36035 13.4102 3.06055c0.555664 0.00976562 1.1875 0.430664 1.41016 0.939453c0.972656 2.15918 2.34375 5.74316 3.05957 8c0.0449219 0.113281 0.0800781 0.302734 0.0800781 0.423828\\nc0 0.356445 -0.246094 0.798828 -0.549805 0.986328v-0.00976562zM502.69 170.6l-2.12012 7.29004c-0.470703 1.18066 -1.41016 0.709961 -1.41016 0.709961c-4.23047 -1.81934 -10.1504 -1.88965 -11.29 -1.88965c-4.63965 0 -17.1699 1.12988 -17.1699 19.7598\\nc0 6.23047 1.84961 19.7607 16.4697 19.7607c0.245117 0.00585938 0.643555 0.0107422 0.888672 0.0107422c3.00586 0 7.76855 -0.744141 10.6318 -1.66113c2.8623 -0.916992 0.939453 -0.469727 1.17969 0.709961c0.939453 2.58984 1.63965 4.46973 2.58984 7.53027\\nc0.230469 0.939453 -0.469727 1.16992 -0.709961 1.16992c-11.5898 3.87012 -22.3398 2.5293 -27.7598 0c-1.58984 -0.740234 -16.2305 -6.49023 -16.2305 -27.5205c0 -2.89941 -0.580078 -30.1094 28.9404 -30.1094c4.42383 0.00878906 11.377 1.27637 15.5195 2.83008\\nc0.290039 0.214844 0.525391 0.682617 0.525391 1.04395c0 0.105469 -0.0244141 0.274414 -0.0546875 0.375977v-0.0107422zM556.56 210.12c-0.799805 3 -5.36914 16.2295 -22.3496 16.2295c-16 0 -23.5195 -10.1094 -25.6396 -18.5898\\nc-0.913086 -3.0166 -1.6543 -8.02441 -1.6543 -11.1768c0 -0.161133 0.00195312 -0.421875 0.00390625 -0.583008c0 -25.8701 18.8398 -29.4004 29.8799 -29.4004c10.8203 0 16.46 2.35059 18.5801 3.76074c0.469727 0.239258 0.709961 0.709961 0.240234 1.87988\\nl-2.36035 6.83008c-0.186523 0.402344 -0.698242 0.728516 -1.14258 0.728516c-0.0742188 0 -0.194336 -0.0126953 -0.267578 -0.0292969c-2.58984 -0.939453 -6.34961 -2.81934 -15.29 -2.81934c-17.4199 0 -16.8496 14.7402 -16.9297 16.7002h37.1602\\nc0.522461 0.0126953 1.05078 0.433594 1.17969 0.939453c-0.239258 0.00976562 0.94043 7.07031 -1.41016 15.54v-0.00976562zM533.27 216.47c5.11035 0 11.8506 -2.2002 12.7305 -14.1201h-26.3701c0.639648 5.12012 3.31055 14.1201 13.6396 14.1201z\\\" />\\n    <glyph glyph-name=\\\"speaker-deck\\\" unicode=\\\"&#xf83c;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M213.86 152h-113.86c-55.2002 0 -100 44.7998 -100 100s44.7998 100 100 100h132.84c22.0801 0 40 -17.9199 40 -40s-17.9199 -40 -40 -40h-134.84c-26.4697 0 -26.4502 -40 0 -40h113.82c55.1992 0 100 -44.7998 100 -100s-44.8008 -100 -100 -100h-171.82\\nc-22.0801 0 -40 17.9199 -40 40s17.9199 40 40 40h173.86c26.4795 0 26.46 40 0 40zM298 32c23.5957 16.0176 46.4932 51.8574 51.1104 80h64.5498c10.8525 0.0927734 19.6602 8.97656 19.6602 19.8291v0.170898v120v0.170898c0 10.8525 -8.80762 19.7363 -19.6602 19.8291\\nh-117.24c8.29199 9.4834 15.0205 27.4033 15.0205 40s-6.72852 30.5166 -15.0205 40h136.93c43.4404 0 78.6504 -35.8203 78.6504 -80v-160c0 -44.1797 -35.21 -80 -78.6504 -80h-135.35z\\\" />\\n    <glyph glyph-name=\\\"symfony\\\" unicode=\\\"&#xf83d;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.74 296.46c15.3496 0.540039 19.7695 15.4404 19.5195 23.1299c-0.639648 18.0605 -19.6699 29.46 -44.8301 28.6504\\nc-1.89941 -0.0703125 -65.2598 3.46973 -102.43 -105.53c-10.0596 8.29004 -57.7695 65.1602 -110.58 25.8096c-18.9502 -14.1797 -31.4199 -47.9199 -2.9502 -79.6699c16.9502 -18.1396 26.7207 -25.3301 22.25 -39.8496c-9.14941 -29.79 -55.5596 -16.1602 -51 -1.38965\\nc1.36035 4.38965 3.49023 4.46973 6.28027 13.0693c7.74023 25.3203 -27.1104 37.75 -34.6201 13.6006c-4.32031 -14.0605 2.37988 -39.5107 38.3799 -50.6201c42.1602 -12.96 77.8203 10.0098 82.8799 39.9395c3.2002 18.75 -5.29004 32.6904 -20.7998 50.6201l-12.6299 14\\nc-7.66016 7.7002 -10.29 20.7002 -2.37012 30.7002c6.69043 8.45996 16.2002 12.0605 31.8105 7.83008c22.7695 -6.16992 32.9199 -21.9697 49.8496 -34.7197c-1.23047 -4 -10.04 -32.3398 -18.2305 -82c-12.1094 -63.4902 -21.3496 -98.3506 -45.3496 -118.351\\nc-4.83984 -3.48926 -11.7598 -8.63965 -22.1797 -9c-1.94043 -0.0595703 -14.1406 2.83984 -2.0498 12.5508c15.2393 8.3291 7.00977 34.75 -14.8809 34c-9.85938 -0.330078 -24.8691 -9.59082 -24.3096 -26.5908c0.580078 -17.5293 16.9297 -30.6895 41.5801 -29.8398\\nc13.1797 0.44043 42.5801 5.7998 71.5801 40.2598c39.8496 46.7207 47.4395 102.2 58.2002 161.721c51.6797 -6.11035 77.2393 17.8398 77.5996 35.7002c0.549805 24.2998 -28 23.46 -32 5.2998c-1.91992 -8.83984 13.4199 -16.8105 1.41992 -24.5605\\nc-8.49023 -5.5 -23.71 -9.37012 -45.1396 -6.21973c10.2998 56.8496 19.1094 112.56 58.8896 113.85c2.70996 0.150391 12.6396 -0.119141 12.8701 -6.66992c0.150391 -5.41016 -6.7998 -9.66992 -6.53027 -18.8496c0.370117 -10.4199 8.2998 -17.2803 19.7705 -16.8701z\\n\\\" />\\n    <glyph glyph-name=\\\"waze\\\" unicode=\\\"&#xf83f;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M502.17 246.33c14.5205 -85.8604 -30.9395 -167.92 -113.17 -208.13c13 -34.1006 -12.4004 -70.2002 -48.3203 -70.2002c-27.0625 0.0214844 -50.166 21.9736 -51.5693 49c-6.44043 -0.19043 -64.2002 0 -76.3301 0.639648\\nc-1.10645 -27.3809 -24.2441 -49.6035 -51.6484 -49.6035c-0.588867 0 -1.54395 0.0195312 -2.13184 0.0439453c-33.8604 1.36035 -57.9502 34.8398 -47 67.9199c-37.21 13.1104 -72.54 34.8701 -99.6201 70.7998c-13 17.2803 -0.479492 41.7998 20.8398 41.7998\\nc46.3105 0 32.2207 54.1699 43.1504 110.261c18.4297 93.9395 116.75 157.14 211.72 157.14c102.48 0 197.15 -70.6699 214.08 -169.67zM373.51 59.7197c42 19.1807 81.3301 56.71 96.29 102.141c40.4805 123.09 -64.1494 228 -181.71 228\\nc-83.4502 0 -170.32 -55.4199 -186.07 -136c-9.5293 -48.9102 5 -131.351 -68.75 -131.351c24.9404 -33.1094 58.3301 -52.6201 93.7305 -64.0498c24.6602 21.7998 63.8701 15.4697 79.8301 -14.3398c14.2197 -1 79.1895 -1.17969 87.9004 -0.820312\\nc7.9502 15.5303 28.5635 28.1348 46.0107 28.1348c10.2002 0 24.8799 -5.24805 32.7686 -11.7148zM205.12 260.87c0 34.7402 50.8398 34.75 50.8398 0s-50.8398 -34.7402 -50.8398 0zM321.69 260.87c0 34.7402 50.8594 34.75 50.8594 0s-50.8594 -34.75 -50.8594 0z\\nM199.08 190.18c-3.44043 16.9404 22.1797 22.1807 25.6201 5.20996l0.0595703 -0.279297c4.14062 -21.4199 29.8506 -44 64.1201 -43.0703c35.6797 0.94043 59.25 22.21 64.1104 42.7695c4.45996 16.0508 28.5996 10.3604 25.4697 -6\\nc-5.22949 -22.1797 -31.21 -62 -91.46 -62.8994c-42.5498 0 -80.8799 27.8398 -87.9004 64.25z\\\" />\\n    <glyph glyph-name=\\\"yammer\\\" unicode=\\\"&#xf840;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M421.78 295.83c-48.1602 -26.3896 -118.561 -58.1504 -130.2 -50s91.4395 80.3701 106.689 88.7695c0.920898 0.5 1.80078 0.970703 2.63086 1.40039c1.76562 0.521484 4.69336 0.945312 6.53516 0.945312c12.7295 0 23.0605 -10.3311 23.0605 -23.0596\\nc0 -6.14453 -3.90527 -14.2334 -8.71582 -18.0557zM421.78 78.6602c4.76855 -3.82324 8.63965 -11.8877 8.63965 -18c0 -12.7344 -10.335 -23.0703 -23.0703 -23.0703c-1.81641 0 -4.70605 0.412109 -6.44922 0.919922\\nc-0.830078 0.410156 -1.70996 0.900391 -2.63086 1.41016c-15.2695 8.38965 -118.25 80.6396 -106.689 88.7402c11.5596 8.09961 82.04 -23.6201 130.2 -50zM464.21 211c10.0947 -2.11328 18.2559 -12.1992 18.2559 -22.5117\\nc0 -10.7881 -8.63965 -20.9561 -19.2861 -22.6982c-54.9102 0.0195312 -131.93 6.00977 -138.21 18.7598c-6.2793 12.75 118.84 26.5098 136.24 26.5098c1.0498 0 2.0498 -0.0595703 3 -0.0595703zM31 351.35c-0.699219 2.10742 -1.2666 5.61914 -1.2666 7.83887\\nc0 13.7334 11.1455 24.8799 24.8799 24.8799c8.72949 0 18.8213 -6.41504 22.5264 -14.3184l81 -205.06h1.20996l77 203.529c3.22559 8.26074 13.041 14.9648 21.9092 14.9648c12.9834 0 23.5205 -10.5371 23.5205 -23.5195\\nc0 -1.89258 -0.438477 -4.90137 -0.979492 -6.71484l-109.6 -273.391c-18.5498 -47.2197 -37.1201 -79.5596 -93.29 -79.5596c-0.151367 -0.000976562 -0.395508 -0.000976562 -0.545898 -0.000976562c-6.4668 0 -16.8887 0.874023 -23.2646 1.95117\\nc-8.52051 2.44238 -15.4365 11.6201 -15.4365 20.4844c0 11.7637 9.54688 21.3105 21.3096 21.3105c0.28418 0 0.744141 -0.0117188 1.02734 -0.0253906c0.660156 -0.0595703 10.9102 -0.660156 13.8604 -0.660156c30.4697 0 43.7393 18.9404 58.0693 59.4102z\\\" />\\n    <glyph glyph-name=\\\"git-alt\\\" unicode=\\\"&#xf841;\\\" \\nd=\\\"M439.55 211.95c4.66504 -4.66602 8.45117 -13.8076 8.45117 -20.4053s-3.78613 -15.7393 -8.45117 -20.4053l-194.689 -194.689c-4.66602 -4.66211 -13.8047 -8.44629 -20.4004 -8.44629s-15.7344 3.78418 -20.4004 8.44629l-195.609 195.6\\nc-4.66504 4.66602 -8.45117 13.8076 -8.45117 20.4053s3.78613 15.7393 8.45117 20.4053l134.12 134.14l50.79 -50.8496c-5.95996 -14.2607 -2.16016 -36.4902 18.6396 -45v-123c-22.3203 -9.09082 -28.8203 -38.4004 -11.25 -56\\nc5.55176 -5.54883 16.4268 -10.0518 24.2754 -10.0518c7.84766 0 18.7236 4.50293 24.2744 10.0518c13.1807 13.1494 16.2197 42.46 -9.08008 55v121.85l46.3506 -46.29c-14.21 -34.4697 29.5098 -63.8301 56 -37.3398c25.71 25.6895 -1.24023 68.4902 -35.4707 56.6895\\nl-49.6592 49.6602c9.29004 26.9102 -16.3301 52.8203 -43.3906 43.6807l-51.5195 51.5195l40.6602 40.6299c4.66602 4.66309 13.8076 8.44727 20.4043 8.44727s15.7383 -3.78418 20.4053 -8.44727z\\\" />\\n    <glyph glyph-name=\\\"stackpath\\\" unicode=\\\"&#xf842;\\\" \\nd=\\\"M244.6 215.6c0 -8.5 -4.25977 -20.4893 -21.3398 -20.4893h-19.6094v41.4697h19.6094c17.1299 0 21.3398 -12.3604 21.3398 -20.9805zM448 416v-448h-448v448h448zM151.3 160.16c0 21.2402 -12.1201 34.54 -46.7197 44.8496c-20.5703 7.41016 -26 10.9102 -26 18.6299\\nc0 7.7207 7 14.6104 20.4102 14.6104c14.0898 0 20.79 -8.4502 20.79 -18.3496h30.7002l0.189453 0.569336c0.5 19.5703 -15.0596 41.6504 -51.1201 41.6504c-23.3701 0 -52.5498 -10.75 -52.5498 -38.29c0 -19.4004 9.25 -31.29 50.7402 -44.3701\\nc17.2598 -6.15039 21.9102 -10.4004 21.9102 -19.4795c0 -15.2002 -19.1309 -14.2305 -19.4707 -14.2305c-20.3994 0 -25.6494 9.09961 -25.6494 21.9004h-30.7998l-0.180664 -0.560547c-0.679688 -31.3203 28.3799 -45.2197 56.6299 -45.2197\\nc29.9805 0 51.1201 13.5498 51.1201 38.29zM276.68 215.79c0 25.2998 -18.4297 45.46 -53.4199 45.46h-51.7793v-138.18h32.1699v47.3594h19.6094c30.25 0 53.4199 15.9502 53.4199 45.3604zM297.94 123l49.0596 138.22h-31.0898l-47.9102 -138.22h29.9404zM404.46 261.22\\nh-31.0898l-47.9102 -138.22h29.9404z\\\" />\\n    <glyph glyph-name=\\\"cotton-bureau\\\" unicode=\\\"&#xf89e;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M474.31 117.59h25.1807c-25.7998 -109.78 -111.4 -173.59 -239.67 -173.59c-154.63 -0.339844 -247.82 92.8604 -247.82 248.18c0 154.63 93 247.82 247.82 247.82c128.399 0 214.06 -63.5098 240.18 -173.61h-25.2598\\nc-24.8506 95.6104 -99.9199 148.811 -214.69 148.811c-141.85 0 -223.2 -81.3799 -223.2 -223.2c0 -137.93 76.6699 -218 211.101 -223v49.2002c0 48.1602 -26.5498 74.3896 -74.5498 74.3896c-62.1309 0 -99.4004 37.2803 -99.4004 99.4102\\nc0 61.3701 36.5195 98.2803 97.3799 99.0596c30.7402 64.6504 144.24 69.3203 177.24 0c60.8496 -0.779297 97.3799 -37.6895 97.3799 -99.0596c0 -62.0098 -37.2002 -99.21 -99.2002 -99.21c-47.9795 0 -74.3896 -26.3896 -74.3896 -74.3896v-49.1602\\nc107.67 3.75977 178.24 56.5 201.899 148.35zM357 265.67c3.7998 -21.0801 11.2695 -104.2 -71.79 -120.75c12.2598 -17.7402 32.9805 -27.3301 61.5898 -27.3301c47.9697 0 74.4004 26.4102 74.4004 74.4102c0 44.6699 -22.8301 70.2197 -64.2002 73.6699zM275.32 168.31\\nc72.7803 9.89062 58.5 86.9102 56.2295 97c-72.5596 -10 -58.6895 -86.6592 -56.2295 -97zM260 316l-0.179688 -0.259766c-28.3008 0 -49.1602 -9.66016 -61.5703 -27.3506c28.3701 -5.44922 49.3701 -20.5898 61.5996 -43.4492\\nc12.2305 22.8594 33.2305 37.9697 61.5908 43.4492c-12.4404 17.9404 -32.8301 27.6104 -61.4404 27.6104zM188.48 265.28h0.239258c-2.75 -10.0498 -16.1602 -87.1602 56.25 -97c2.41992 10.1895 16.6807 86.4297 -56.4893 97zM173.2 117.59l0.330078 0.0302734\\nc28.2998 0 49 9.66992 61.1396 27.2998c-73.0303 14.2197 -78.4004 83.5498 -71.6504 120.75c-41.3594 -3.66992 -64.2197 -29.3096 -64.2197 -73.6699c0 -48.0098 26.4004 -74.4102 74.4004 -74.4102zM226.41 105.2h0.269531\\nc14.4902 -7.60059 25.5605 -19.3301 33.5605 -33.8301c6.36523 12.2188 21.4092 27.374 33.5801 33.8301c-14.4902 8.00977 -26.0508 19.0596 -33.8203 33.5498c-6.4248 -12.1094 -21.4736 -27.1396 -33.5898 -33.5498z\\\" />\\n    <glyph glyph-name=\\\"buy-n-large\\\" unicode=\\\"&#xf8a6;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 416c154.73 0 280.21 -100.32 280.21 -224s-125.479 -224 -280.21 -224s-280.21 100.32 -280.21 224s125.479 224 280.21 224zM202.61 58.8096c61.5498 0.600586 99.4697 24.3604 117.71 61.5205c-35.79 6.4502 -62.9307 37.3096 -62.9307 74.4502\\nc0 41.7695 34.3408 75.6494 76.6904 75.6494h0.0341797c4.80078 0 12.4951 -0.864258 17.1758 -1.92969c0.524414 1.86621 1.19629 4.93555 1.5 6.84961c6.92969 44.1904 -14.8496 72.8408 -78 72.8408h-133.44l-77.25 -290.74zM358 240.89l-9.4502 -36.75l-15 36.75\\nh-31.3398l-26.6299 -90.3096h37.8301l7.83008 35.6299l11.1895 -35.6299h35.4102l22.1602 90.3096h-32zM503.86 58.8096l21.1992 84.0605h-103.869l53.0498 205.36h-92.5l-21.3301 -82.3506c29.3799 -10.5996 50.3799 -38.4102 50.3799 -71.0596\\nc0 -41.7803 -34.3496 -75.6504 -76.6904 -75.6504h-0.0625c-3.16504 0 -8.27539 0.37207 -11.4072 0.830078l-15.8398 -61.1904h197.07zM211.7 178.61c16.1494 0 29.7002 -7.51074 24.1396 -29.8203c-5.83008 -23.4697 -21.7998 -26.6504 -37.9395 -26.6504h-24.7002\\nl13.7998 56.4707h24.7002zM233 278c18.0703 0 32.2305 1.29004 27.5801 -17.5703c-3.83008 -15.5 -21.21 -30.1396 -39.21 -30.1396h-21.3701l11.6602 47.71h21.3398z\\\" />\\n    <glyph glyph-name=\\\"mdb\\\" unicode=\\\"&#xf8ca;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M17.3701 287.59h46.2998l42.3301 -117.33l40.7002 117.33h45.5098l12.79 -191.59h-45.5303l-4.79004 77.4297l-25.54 -77.4297h-44.71l-27.9297 79.8301l-5.58984 -79.8301h-43.9102zM298.37 287.59c0 0 93.4199 -1.58984 94.2002 -95.7998\\nc0.799805 -96.5898 -94.2002 -95.79 -94.2002 -95.79h-47.9004v191.59h47.9004zM297.17 141.13c0 0 47.5996 5.21973 46.7998 51.5205c-0.799805 46.2998 -46.7998 50.5693 -46.7998 50.5693v-102.09zM535.46 215.37c0 0 33.54 -11.96 33.54 -55.1006\\nc0 -68.6396 -87 -63.8496 -87 -63.8496h-45.5195v191.58h51.8994s49.7402 1.44043 55.0801 -34.3203c0.348633 -2.30371 0.630859 -6.06445 0.630859 -8.39453c0 -8.94336 -3.86621 -22.3457 -8.63086 -29.915zM483.56 247.31v-21.5898h12s5.43066 5.33984 4 12\\nc-2.42969 11.1807 -16 9.58984 -16 9.58984zM483.46 137.85c0 0 41.04 -4.92969 41.3701 20.7207c0.389648 27.1602 -41.1904 22.4297 -41.1904 22.4297h-0.0800781v-18.2305z\\\" />\\n    <glyph glyph-name=\\\"orcid\\\" unicode=\\\"&#xf8d2;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M294.75 259.81c58.1299 0 84.6699 -35.2598 84.6699 -76.8994c0 -25.5703 -15.5 -76.9102 -83.1201 -76.9102h-47.4697v153.81h45.9199zM256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM175.21 79.2402v207.5h-29.8398v-207.5\\nh29.8398zM160.29 310.38c10.7646 0.0380859 19.5312 8.80566 19.5703 19.5703c0 10.8027 -8.76758 19.5693 -19.5703 19.5693s-19.5703 -8.7666 -19.5703 -19.5693s8.76758 -19.5703 19.5703 -19.5703v0zM300 79c68.3799 0 110 50.6104 110.04 103.89\\nc0 49.0205 -33.71 103.851 -110.44 103.851h-80.5996v-207.74h81z\\\" />\\n    <glyph glyph-name=\\\"swift\\\" unicode=\\\"&#xf8e1;\\\" \\nd=\\\"M448 291.91c0 -5.35059 -0.000976562 -10.7002 0.00878906 -16.0498v-183.771c-0.0292969 -4.50977 -0.0800781 -9.00977 -0.200195 -13.5098c-0.0966797 -8.1748 -1.25781 -21.3545 -2.58984 -29.4199c-1.38477 -8.11035 -5.51465 -20.6543 -9.21973 -28\\nc-7.66406 -15.0459 -26.0898 -33.4854 -41.1299 -41.1602c-7.34766 -3.69824 -19.8916 -7.82422 -28 -9.20996c-8.07129 -1.32715 -21.2607 -2.4873 -29.4404 -2.58984c-4.51953 -0.120117 -9.00977 -0.200195 -13.5195 -0.200195h-199.79\\nc-4.52051 0.0302734 -9.02051 0.0800781 -13.5205 0.200195c-8.17676 0.0976562 -21.3613 1.25781 -29.4297 2.58984c-8.1084 1.38379 -20.6523 5.50977 -28 9.20996c-15.0342 7.67676 -33.4609 26.1113 -41.1299 41.1504c-3.70508 7.3457 -7.83496 19.8896 -9.21973 28\\nc-1.3252 8.06543 -2.48145 21.2461 -2.58008 29.4199c-0.129883 4.50977 -0.209961 9 -0.209961 13.5098v199.83c0.0292969 4.51953 0.0800781 9.00977 0.209961 13.5195c0.0888672 8.16797 1.22754 21.3389 2.54004 29.4004c1.38672 8.10938 5.5166 20.6533 9.21973 28\\nc3.74121 7.34473 11.5146 18.0293 17.3496 23.8496c1.74023 1.7207 3.55078 3.39062 5.43066 5c4.6748 3.99805 12.9141 9.51758 18.3896 12.3203c2.2334 1.11328 4.50391 2.15332 6.81152 3.12012c5.67188 2.31348 15.1738 5.04688 21.21 6.09961\\nc6.04688 1.03516 15.9297 2.07422 22.0596 2.32031c2.45996 0.120117 4.91992 0.200195 7.37012 0.269531c4.51953 0.120117 9.00977 0.200195 13.5195 0.200195h199.75c4.52051 -0.0292969 9.01074 -0.0800781 13.5205 -0.200195\\nc8.17676 -0.0976562 21.3613 -1.25781 29.4297 -2.58984c8.11035 -1.38281 20.6543 -5.51367 28 -9.21973c15.0547 -7.66211 33.4941 -26.0977 41.1602 -41.1504c3.70117 -7.34668 7.83105 -19.8906 9.21973 -28c1.3252 -8.06543 2.48047 -21.2461 2.58008 -29.4199\\nc0.120117 -4.51953 0.200195 -9.00977 0.200195 -13.5195zM378.119 50.9102c4.91016 -9.58008 15.3604 41.1797 -23.1602 88.5801c0.490234 1.68945 1 3.35938 1.44043 5.08984c18.5996 74.0801 -26.79 161.67 -103.58 207.75\\nc33.6494 -45.6201 48.5293 -100.87 35.3096 -149.2c-0.970703 -3.50098 -2.83398 -9.08789 -4.16016 -12.4697c-1.72949 1.14941 -3.84961 2.41992 -6.72949 4c0 0 -76.3906 47.1699 -159.181 130.59c-2.16992 2.2002 44.1504 -66.25 96.7207 -121.74\\nc-24.7803 13.9004 -93.7803 64.1201 -137.48 104.12c4.60156 -7.57031 13.0146 -19.1738 18.7803 -25.8994c36.4902 -46.2207 84.0898 -103.37 141.09 -147.221c-40 -24.4902 -96.6396 -26.3994 -153 0c-11.4521 5.37598 -29 15.8457 -39.1699 23.3701\\nc21.3398 -33.9365 68.5098 -74.4219 105.29 -90.3701c53.3203 -22.9199 106.35 -21.3799 145.85 -0.379883l0.419922 0.25c1.77051 1 3.53027 2 5.25 3c19.0801 9.7998 56.3105 19.46 76.3105 -19.4697z\\\" />\\n    <glyph glyph-name=\\\"umbraco\\\" unicode=\\\"&#xf8e8;\\\" horiz-adv-x=\\\"510\\\" \\nd=\\\"M255.35 440c136.99 -0.169922 247.83 -111.31 247.65 -248.28c-0.179688 -136.97 -111.15 -247.67 -248 -247.67c-137 0.0703125 -248.07 111.271 -248 248.271c0.139648 136.96 111.36 247.85 248.35 247.68zM400.35 174\\nc0.296875 4.31738 0.518555 11.3311 0.518555 15.6582c0 4.16406 -0.222656 10.9141 -0.498047 15.0693c-0.354492 12.1631 -1.97168 31.8213 -3.61035 43.8799c-1.87012 13.2197 -3.56934 22.3799 -5.38965 32c-1.02051 4.87988 -1.28027 6.39941 -1.83008 8.44922\\nc-0.489258 2.14746 -2.67285 3.89062 -4.875 3.89062h-0.0253906h-0.819336l-32 -5c-2.31934 -0.375977 -4.20117 -2.58691 -4.20117 -4.93555c0 -0.0175781 0.000976562 -0.046875 0.000976562 -0.0644531c-0.00878906 -0.106445 -0.0146484 -0.27832 -0.0146484 -0.384766\\ns0.00585938 -0.279297 0.0146484 -0.385742l1.68945 -8.7793c1.60645 -8.86719 3.23633 -20.0938 4.88965 -33.6807c1.35156 -11.5938 2.5166 -30.4775 2.59961 -42.1494c0.266602 -26.9072 -2.44336 -46.834 -8.12988 -59.7803\\nc-5.01953 -11.3809 -18.9746 -22.6836 -31.1504 -25.2305c-13.7178 -2.9043 -36.2324 -5.26074 -50.2549 -5.26074c-1.93652 0 -5.0791 0.0449219 -7.01465 0.101562h-10.25c-1.9668 -0.0576172 -5.15918 -0.104492 -7.12695 -0.104492\\nc-14.0098 0 -36.5059 2.34863 -50.2129 5.24414c-12.2217 2.49805 -26.248 13.7793 -31.3105 25.1797c-5.60645 12.9336 -8.31641 32.877 -8.12988 59.8301c0.0820312 11.6738 1.26562 30.5576 2.64062 42.1504c1.62012 13.6201 3.2334 24.8467 4.83984 33.6797\\nl1.7002 8.78027c0.0078125 0.105469 0.0146484 0.27832 0.0146484 0.384766s-0.00683594 0.279297 -0.0146484 0.384766v0.0126953c0 2.33398 -1.86426 4.56836 -4.16016 4.9873l-32 5h-0.69043c-2.18848 -0.0195312 -4.38379 -1.7627 -4.89941 -3.88965\\nc-0.540039 -2.03027 -0.820312 -3.57031 -1.82031 -8.4502c-1.83008 -9.41992 -3.52051 -18.6094 -5.40039 -32c-1.63184 -12.0586 -3.24414 -31.7168 -3.59961 -43.8799c-0.290039 -4.2334 -0.525391 -11.1123 -0.525391 -15.3545\\nc0 -4.24316 0.235352 -11.1221 0.525391 -15.3555c0.766602 -27.0928 5.43359 -48.7598 14 -65c8.57324 -16.2061 23.0801 -27.873 43.5195 -35c20.4404 -7.12695 48.9209 -10.6172 85.4414 -10.4697h4.59961c36.5605 -0.15332 65.0439 3.33691 85.4502 10.4707\\nc20.4336 7.12012 34.9365 18.7871 43.5098 35.001s13.2402 37.8809 14 65.001z\\\" />\\n    <glyph glyph-name=\\\"firefox-browser\\\" unicode=\\\"&#xf907;\\\" horiz-adv-x=\\\"512\\\" \\nd=\\\"M130.63 324.51c0.160156 -0.00976562 0.0800781 -0.00976562 0 0zM482.05 279.16c15.2803 -36.7598 20.6709 -80.748 15.8213 -122.578c-0.370117 -3.15039 -0.700195 -6.29004 -1.11035 -9.41016c-19.6094 -115.04 -119.79 -202.62 -240.43 -202.62\\nc-134.71 0 -243.92 109.19 -243.92 243.891v1.23926c0.149414 2.70996 0.30957 5.41016 0.490234 8.12012c0.0498047 0.240234 0.0498047 0.480469 0.0498047 0.719727c0.439453 6.29004 0.870117 10.3105 1.43945 14c0.240234 1.91309 0.5 3.82617 0.780273 5.73926\\nc1.66992 12.2705 3.94043 22.21 4 22.4805c4.9502 22.2051 19.6123 55.3125 32.7305 73.8994v0c5.65527 8.06738 15.8564 20.3115 22.7695 27.3301c6.08203 6.21973 16.7627 15.3721 23.8398 20.4307c0.930664 0.629883 8.03027 4.83984 8.15039 4.30957\\nc-0.570312 -8.42969 -1.24023 -48.8301 8.42969 -61.0801h0.120117c14.1602 15.9199 33.6504 33.96 58.71 45.3701c-2.02344 -7.75098 -3.66504 -20.543 -3.66504 -28.5537c0 -8.74512 1.95117 -22.668 4.35547 -31.0762\\nc1.81641 -1.21777 4.64258 -3.35449 6.30957 -4.77051c3.71973 -3.14941 7.91992 -7.34961 16.7705 -16.0596c16.5498 -16.3096 59 -33.1797 59.0898 -35.1797c-0.400391 -6.08008 -21.8301 -27 -29.3301 -27c-69.3701 0 -80.6201 -41.9502 -80.6201 -41.9502\\nc3.07031 -35.3301 27.6699 -64.4102 57.5098 -79.75c1.36035 -0.730469 2.74023 -1.37012 4.12012 -2c2.36035 -1.04004 4.74023 -2.02051 7.16016 -2.92969c8.50586 -3.00977 22.7246 -5.75195 31.7402 -6.12012c121.569 -5.7002 145.13 145.34 57.3896 189.199\\nc22.4697 3.91016 45.8203 -5.12988 58.8203 -14.2793c-8.68652 15.1641 -27.7988 34.9346 -42.6602 44.1299c-0.993164 0.620117 -1.99316 1.21973 -3 1.7998c-1.55957 0.913086 -3.13965 1.79004 -4.74023 2.62988c-0.75 0.390625 -1.5 0.759766 -2.25 1.12988\\nc-1.65332 0.813477 -3.32031 1.59668 -5.00098 2.34961c-1.07031 0.469727 -2.16016 0.910156 -3.25 1.34961c-1.33984 0.580078 -2.68945 1.08008 -4.0498 1.58008c-1.86035 0.669922 -3.73047 1.2998 -5.62012 1.87012c-0.679688 0.209961 -1.33008 0.429688 -2 0.629883\\nc-9.20996 2.66309 -24.4668 4.82422 -34.0537 4.82422c-0.275391 0 -0.72168 -0.00195312 -0.996094 -0.00390625c-2 -0.0205078 -4 -0.100586 -6 -0.220703l-1.41992 -0.0996094c-12.1934 -0.852539 -31.0586 -5.78027 -42.1104 -11l-0.519531 -0.209961\\nc-0.536133 -0.18457 -1.43066 -0.334961 -1.99805 -0.334961c-2.40918 0 -5.00391 1.84863 -5.79199 4.125c-0.210938 0.575195 -0.381836 1.53906 -0.381836 2.15137c0 2.13965 1.55469 4.64746 3.47168 5.59863c12.6738 6.01074 34.3252 11.5342 48.3301 12.3301\\nc5.7793 35.3994 28.2695 91.0098 82.5 122.78l-0.100586 -0.140625l0.180664 0.100586l0.120117 0.0693359c0.0615234 0.0166016 0.165039 0.0302734 0.229492 0.0302734s0.167969 -0.0136719 0.230469 -0.0302734c0.303711 -0.0380859 0.550781 -0.318359 0.550781 -0.625\\nc0 -0.00976562 -0.000976562 -0.0253906 -0.000976562 -0.0351562c0.698242 -2.77051 2.3291 -7.08008 3.63965 -9.61914c0.830078 -1.70996 1.69043 -3.40039 2.69043 -5.05078c1.87988 -3.21973 3.80957 -6.2793 5.73926 -9.33008\\nc38.2002 -60.3594 84.9707 -88.0791 112.551 -156.829c-0.0507812 0.269531 -0.0507812 0.40918 -0.0507812 0.40918c-3.0293 20.1201 -10.9795 47.1104 -24.6992 74c16.8594 -8.72949 38.3301 -36.2295 48.9395 -61.7295z\\\" />\\n    <glyph glyph-name=\\\"ideal\\\" unicode=\\\"&#xf913;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M125.61 282.52c27.0693 -0.0107422 49.0488 -21.9893 49.0596 -49.0596v-0.00976562c0 -27.0869 -21.9834 -49.0703 -49.0703 -49.0703c-27.0859 0 -49.0693 21.9834 -49.0693 49.0703s21.9834 49.0693 49.0693 49.0693h0.0107422zM86.1504 22.1602v140.52h78.9395\\nv-140.52h-78.9395zM237.61 233.76c0 -20.4502 -8.99023 -23.2598 -18.7402 -23.2598h-14.0498v45.79h14.0498c8.74023 0 18.7402 -2.53027 18.7402 -22.5303zM439.3 187.76h57.0898c-1.7793 -98.4795 -52.1094 -165.64 -196.72 -165.64h-94.8301v165.62h14\\nc25.9805 0 41.5 17.1895 41.5 46c0 27.9102 -15.8994 45.2598 -41.5 45.2598h-14v82.8096h94.8301c88.9404 0 186.83 -26.8896 196.07 -151.31h-33.6904v68.5703h-22.75v-91.3105zM329.55 187.76l-0.0400391 22.7402h-33.5098v12.5h30v22.6904h-30v10.5791h31.7305v22.7305\\nh-54.4307v-91.2402h56.25zM404.21 187.76l23.6699 -0.0195312l-27.5303 91.3398h-32.3496l-27.5303 -91.3203h23.6602l5.17969 17.6699h29.7402zM299.65 416c218.35 0 250.97 -140 251 -223.48c0 -144.789 -89.1504 -224.52 -251 -224.52h-267.65v448h267.65z\\nM299.65 -10.9199c148.899 0 229.899 69.3496 229.899 203.439c0 137.801 -87.7998 202.41 -229.899 202.41h-246.58v-405.85h246.58zM383.51 253.93h1.37012l7.52051 -25.8096h-16.4004z\\\" />\\n    <glyph glyph-name=\\\"microblog\\\" unicode=\\\"&#xf91a;\\\" \\nd=\\\"M399.36 85.7695l0.149414 0.0605469c-12.0234 -13.6182 -21.7812 -39.4141 -21.7812 -57.5811c0 -16.3584 8.10547 -40.1514 18.0918 -53.1094c0.521484 -0.658203 0.944336 -1.87402 0.944336 -2.71387c0 -0.25293 -0.0419922 -0.658203 -0.0947266 -0.90625\\nc-0.40332 -1.94336 -2.34277 -3.52051 -4.32715 -3.52051c-0.249023 0 -0.649414 0.0410156 -0.892578 0.0908203c-32.2803 7.17969 -61.3105 24.8301 -79.8906 49.9199c-1.18652 1.62598 -3.78516 2.94629 -5.79785 2.94629\\nc-0.658203 0 -1.69824 -0.172852 -2.32129 -0.385742c-21.1924 -7.41895 -56.6133 -13.4404 -79.0654 -13.4404h-0.375c-122.86 0 -222.46 91.4805 -222.46 204.43c0 112.95 99.5996 204.44 222.46 204.44s222.46 -91.4902 222.46 -204.44\\nc0 -47.4492 -17.6104 -91.0996 -47.0996 -125.79zM329.52 235.6c1.4209 1.07617 2.57422 3.36816 2.57422 5.15039c0 3.5625 -2.8916 6.47461 -6.4541 6.5l-71.8799 1.50977l-23.6602 67.9199c-0.836914 2.41113 -3.58789 4.36719 -6.13965 4.36719\\ns-5.30273 -1.95605 -6.13965 -4.36719l-23.6602 -67.9199l-71.8799 -1.50977c-3.51953 -0.0673828 -6.375 -2.97949 -6.375 -6.49902c0 -1.7832 1.15332 -4.10449 2.5752 -5.18066l57.2998 -43.4902l-20.79 -68.8604\\nc-0.152344 -0.505859 -0.276367 -1.3457 -0.276367 -1.87402c0 -3.59375 2.91699 -6.51074 6.51074 -6.51074c1.12598 0 2.79102 0.522461 3.71582 1.16504l59.0596 41.0801l59.0596 -41.0498c0.925781 -0.646484 2.59277 -1.1709 3.72168 -1.1709\\nc3.58789 0 6.5 2.91211 6.5 6.5c0 0.533203 -0.125977 1.38086 -0.28125 1.89062l-20.7803 68.8604z\\\" />\\n    <glyph glyph-name=\\\"pied-piper-square\\\" unicode=\\\"&#xf91e;\\\" \\nd=\\\"M32 29l-32 -60.2002l0.799805 328c0 65.9004 53.2002 119.2 119.2 119.2h327.2c-93 -28.9004 -189.9 -94.2002 -253.9 -168.6c-70.5996 -81.4004 -110.7 -137.4 -161.3 -218.4zM448 416c0 0 0 -328.8 0.0996094 -328.8c0 -65.9004 -53.2998 -119.2 -119.3 -119.2\\nh-328.399c18.5 25.5 61.6992 54 84.8994 66c35.5 18.0996 76.4004 28.5 105.3 56.2998c42.1006 40.5 47.8008 105 71 158.601c43.6006 100.3 186.4 167.1 186.4 167.1z\\\" />\\n    <glyph glyph-name=\\\"unity\\\" unicode=\\\"&#xf949;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M498.11 241.6l-30 -49.5996l30 -49.6299l-52.8008 -191.62l-197.079 51.3604l-29.2402 50l-59.1699 -0.430664l-144.28 140.32l144.26 140.29l59.2002 -0.429688l29.2002 50.0596l197.109 51.3604zM223.77 323.8l-108.899 -108.13h173.13l86.5498 145.82zM223.77 60.1699\\nl150.78 -37.6895l-86.5498 145.81h-173.13zM416.77 46.1699l41.79 145.83l-41.8096 145.84l-86.5801 -145.84z\\\" />\\n  </font>\\n</defs></svg>\\n\"\nvar _Assetse5228f4473380f8aaf60204d3214f579490bdba3 = \"wOF2\\x00\\x01\\x00\\x00\\x00\\x01)4\\x00\\r\\x00\\x00\\x00\\x02\\xf4\\xf0\\x00\\x01(\\xd8\\x01J\\xc0\\x83\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00?FFTM\\x1c\\x1a\\x1e\\x06`\\x00\\x99.\\x11\\b\\n\\x8a\\xa7@\\x88\\x8f$\\x016\\x02$\\x03\\x9e\\x1a\\v\\x9e \\x00\\x04 \\x05\\x8a+\\a\\xde\\x19[\\xcbX\\x92\\xc0\\xe0fH\\x85\\xdb\\x06\\x00Qe\\xe7O\\xff\\xe6\\xb3\\x11\\x11\\xe8\\x0e\\xe6$y\\x12\\xef,Q\\xbdf\\x8e\\xbb[U\\x05\\xb2\\x03 \\xd9\\xff\\xff\\xff\\xff\\x8b\\x92\\x89\\xc8Vr\\x1d\\x976i[\\xd8\\x1c\\xa8C\\x00E\\xd5\\xff\\u007fE*\\x92\\xd8L2\\xb3\\xceŔK\\xd4PMj\\x14\\xefC\\xb9\\xd3d\\xafb\\x8f\\x0f\\tm^\\x9e֢\\x8e \\x14\\x01\\x15\\x01\\x15\\x01\\xc5dDDI?)\\xba{w\\xf5\\f\\xa8\\b\\xa8\\b\\xa8\\b(/\\xf1Zk\\x8f\\xc4\\r\\x8d\\x1a\\x11\\xae\\u038b\\x1cjQEyd\\x95\\xcd\\xe3\\xd9%{Xٻ\\xb8Iou\\xe0\\xd0gp:\\x95\\xb9\\xb5&\\ai\\xe0\\xed\\\"\\x06L\\x11P\\x11P\\xb1֥\\xf6\\xab\\x84\\xecո\\xdc\\xf4b7\\xb9\\x16S6ħ;fdr\\xd7T\\xad\\xe3\\xa7\\xe9\\xdf9\\xb5\\xebw\\xfd\\xf1\\xf8\\xa4i\\xc3&D_\\xe06\\xe9uӤ\\x10\\x93\\x90D\\x14B\\x12\\x91\\x88\\xa4\\x90\\x14.g\\xd9\\x14\\xb5\\xc1U2\\xa20\\x99ӭ\\xb2\\xc97\\xf8\\xa9\\xf7-\\xe4\\x9c\\xf0\\x83\\t\\xbbaK\\xff\\r\\xd9t\\xfe3F\\x91Ko\\x81\\t\\xfb\\x84\\xc4\\x0f\\x19 \\xaf\\xd2\\xf3<\\xf7\\x94\\x9e\\xde\\xd3{\\xca\\x11\\xe5\\xb9\\xf7\\xdeU\\xc5\\x0f\\xc8\\x1d\\xf8\\x96\\x17p\\xbc\\x8f!\\xaf\\xa7\\xb5%D2w\\xc2\\xe7D\\xdb\\xc1\\xf8K\\xf4e\\xe8\\x9f\\xfcGy\\xf2\\x170\\xc6U\\x03\\b\\x1a\\r\\xe8\\xa2}\\xa8\\xcb\\xeb\\xd3\\xfe\\u007f\\xbf6s\\x9f\\xfd\\xf5/k\\xf2\\x12I\\xb4ySo\\x90\\\")A\\x87Dh[*$B\\xe7lB.<\\xffo\\xf7\\xef>3\\x1f\\xac\\\"}\\xa8\\x8d|\\x03\\xa8\\x03\\xd0e\\xe5̇\\x82\\xeeWѼ@\\xbc\\xf3^\\x8c\\x96\\x9a@ՠ\\x85w\\xe9\\x84elo1]%ߔur\\xe70_\\x89(oݙ\\x00\\xcb\\ue81c\\x88\\xfc\\xab\\bx\\xe8\\xb66\\b\\xfbzn\\xc1\\xca\\xfe\\x0f\\x10\\x00HD\\xbf\\xd7\\x1d\\x0f\\x97\\x04t\\x15\\x06!\\xe9\\xaa\\xfa\\xf7S\\x1ct\\x89\\xb0\\x8b\\xf0\\xad+\\x18_\\x9aph\\xa2a\\x90\\xa6\\xebn\\xd6\\xf9u\\xdaNS:\\x93N)2\\x96\\x89#-\\xa6)0C\\x0f\\x9f=\\x04\\xf3b\\x1e\\xc4<\\x98\\f:L\\x0f\\xfd\\x0e=\\xcc\\xe3\\xff\\xeb\\xb4\\xe7\\xbf\\x18\\x196\\x87\\x838\\bI\\x16X`\\x8c\\x19\\xe7\\xf1\\x84t\\x83g^\\n\\xa1}E\\x1f\\x9b\\xee\\xb5\\u007f}ƀ\\v}\\x95m\\xb9\\xe0\\xe3\\xff\\xb4\\xe9'\\xb5R\\x1b`;\\xe8u\\x80\\r\\x1ct\\xfc\\x81\\x05\\x1f\\xc8\\xf1\\u0378\\xbaI\\xd1\\xee\\xb6\\xd2\\xfd\\x12\\x11\\xf4\\xa4C(ob\\xad\\xd6\\x1a\\xd3\\xf9ꬊ\\x9fAcb\\xad6C\\\"\\x172\\xa5\\x93\\x89\\xff\\xbe*zw\\x98\\x0e\\xad\\xab|-|\\t\\xf50\\xd0\\nx)\\x16\\xf8\\a\\xdb\\x1d\\x9bԂf\\xef\\x1f# \\x1a\\x82`x~n\\xbd\\xe5\\xff\\xeb\\xbf5\\x1b\\xb01\\xd8\\x18=ؠu\\u007fE\\xd46`\\xa4\\xb2Q\\x1b\\\"J\\n\\x98\\x9b\\xc90Q\\f\\xb0\\xc0(\\xf0\\x0e\\x8cD\\x0f\\x8cS\\xef\\xe4N\\xcfh\\x8c;=\\xbd0.\\x8cK@a'j\\t\\xa4\\x89\\xc5\\xfb\\x16\\f\\xa8\\x8e\\x1d\\xa2\\xacX\\xddc\\xc0\\x0f\\xe7\\xfc(\\xf9\\xdc8\\xed #\\xb7}\\x10fB\\x05\\xae@\\x17\\x1a\\x99\\xb9Z\\xf7K\\xd2r̜\\xc1#\\xbc@K\\x84Gb\\xe1ZE\\xae*\\xb3\\xea@\\x18 u\\xfc\\xa0\\x18\\x92\\xf4\\x11G>\\tSgw\\xec\\xcc>Y`r\\xef\\x90\\x18\\xc0\\xe0F\\v\\xfe\\x97\\xcdRo\\x95\\xfdߣ=3\\xc7\\x17\\x1aC\\xe2\\xe9\\xe9\\xdd\\x1d\\xd3l\\x97v\\xa2+\\x1d\\x04\\x89^\\xfa_j \\x8a\\\\\\x8e9H\\x04F\\xa8\\xdc\\xfb\\xa9\\xea\\x03⯀\\x14o\\xa9\\xad^\\xb1\\xa2\\xdf\\xf4h;\\xe3o\\xc3\\\"\\xac\\x87\\x95G\\xcaN\\xad\\xed\\xe7sj\\xfcK\\xe9N7yh\\b\\xb4\\x1c0$<\\x100\\x14!p!m6\\xd4\\x19?\\xee\\x83\\xc5\\xc6\\xdaZ\\xdb{\\uec6c@\\xc12\\x06\\x06\\x92\\x86\\x9ad\\x18l\\xeb\\x11\\xfe\\xff\\u007f\\xa9\\xda\\xf7U\\xe7\\xed\\xaaf\\xf2\\xad*\\x06\\x87\\xd7=\\xa4\\x98l\\xab\\x83\\xa3\\x1c_\\xcc\\x00a57\\x92\\xf1\\xfaq\\xb2\\x16^l\\x80-0\\xb3C\\x01\\f\\xb2\\xe4\\x193 (\\xd8m\\xcbV\\xa0\\xc8ζ;\\xdb\\x06\\x88\\x0e\\x93\\xba\\xfdN{\\xe2\\xff\\b\\xe2aý\\xc0S\\xd8\\xd0:C>\\xf1AM%\\xb4\\x85\\x00\\xa2\\xc86\\xd2+nc\\x86\\xff\\x15\\xbfl\\xael\\x01DLd\\x978\\xa8\\xf7TRӔ\\xbeg\\x19K\\xdfvD\\x82M\\xc4\\xd4\\xe1L\\x1d\\xbfl\\xb6\\xfc\\xff\\xaf\\xea\\x05Ü\\x9c\\xa1{^\\xf6Zۅb+\\xc6\\x1f!ӒH.w\\xfeK\\x9d\\xff[\\vG\\x89SL\\xc2\\xeb\\x15^+{\\xc2\\xebu\\xf9~\\xa9\\xab\\xbf\\x9c\\xb9\\xa3\\x9143\\xbe\\xb2g\\xc6w\\xec\\xb1\\x18cY\\x91c\\xd9\\x184\\x92\\xc7H\\x16\\x0e\\x96d\\x13!\\fg\\x18dp\\x04\\xf9\\x9f\\xc7oi\\xff\\x1d Y\\xf4sf$\\xe4H6&\\x92\\x8d\\x89\\x05q\\xbe\\x8d\\xc3+\\xa5\\x92\\xbc\\xc6+\\xb5\\xaf~\\xa9\\xab\\xbe\\xab\\xab\\xe5_\\xec\\xfb\\xf2/\\xd6\\x1f\\xaa\\xb5H\\xa1\\xc2\\v闢!\\fM\\xe3\\x97%\\xf8\\x13\\x11v\\xee\\xd5\\x1c\\x11*\\xc2\\xfd\\xff\\x95j\\xd5\\x15\\x94{\\x1a_=fw\\xac\\xa9\\xe9u\\xe6\\\\\\xad\\x19\\u007f\\x9a\\xfb\\x9e.\\x88\\xff#\\\"\\x99\\x11\\x19\\x99\\xcaL\\x80\\x14\\x90\\x00)\\x18\\x92\\x03\\x80\\x94\\x04'\\x15\\x9d\\x94H\\x82\\xacD\\x12\\x90H\\xaa\\xaaWd;IU\\xf3V\\xa5ql\\xaf\\xf1\\\"AJ-ReTƯ\\xf7\\x87\\x8bڸZ_\\xc7\\xf5\\xa7\\xe3\\x1e\\xf7p\\xde\\xd3n-\\xffg\\xa9JF\\t\\xac\\xbb\\x92r\\xf5-\\xa5v\\x0f\\x93\\xe4\\xb7l\\xa8E\\x81\\xc4\\xe8\\xaf\\x15P\\xaf\\x1f\\xdbN/\\xfc\\xcf\\xdb\\xf6\\b\\xaa!蛑F\\xf3hw\\x9c\\xa1dW\\x18.\\x04\\x91LDĝ\\x9fw\\xedϤ\\xd7\\xfc\\xc3w\\xcf!\\x87U\\xab\\xaa\\\"\\xea\\x89\\xf1\\x8c1\\\"\\xf6\\xd8O\\xeb3\\x18\\xddb\\x9aA%\\xc6\\x1eD\\xb1`\\xc1\\x92\\xb0\\xa5\\u007f\\xddݫ\\x87\\xccU\\x8fm\\x8b\\xed\\x8b\\x1e\\x16P\\x10\\xc1\\x06\\b\\x9a@\\xca$\\x99\\x10\\xf9\\x9f\\xd8&\\xff\\x81\\xa3t\\x9bl\\xef\\x88R\\x0fڂ\\xaf\\x882\\xda\\xc2\\xfay/s\\xf5O\\xb7^k\\x9f\\xf5<\\xbf\\xb2J\\xb5P\\x9a@ m&\\xc9\\xe8\\x8f\\xe8\\xd6/P\\xef{\\xfb\\xab\\xb8z\\x8aP\\xc6\\x14\\xdaBW\\xd2d\\xbf\\xe4%\\xa82ZEGN_H\\x1a\\x8a\\f+:\\xc4\\xfd\\xfa\\xffKu:\\x9f\\xdfn\\xab\\xa1\\xc8?T*\\x95\\xf2\\x19\\xcc0c\\f\\xd9\\xee}\\xef\\x8e\\x00؆\\x8fy\\x85\\xa9\\xdf\\xf5\\xb3\\xc1u`\\x1a\\x92\\xaa\\xa2\\xa9M\\xc9 \\x1a\\xf7je,\\u0601\\x8f\\xfc\\u007f\\xe5s\\xb88\\xd4\\xcc\\x03\\xdcö\\x19MV\\xfe\\xf1\\xb6\\x9d\\xcb\\xfdA\\x9d\\xcf\\xec7\\x9d'\\U0007f5c5-\\xba\\xbdk\\rwd\\x17\\xee`\\xe2\\x00M\\xab\\x1a\\xd2ly;2<\\x9c\\x91\\x94Q\\xcd\\xca\\xe6\\xcf\\U0003f584g\\xf8\\xdeH\\x14\\x96\\x8eӈzﾊf\\xb0\\xd5N\\x0f\\x10\\x14\\x89%RX\\\\\\x95\\xce\\u007f\\x86T\\xae2y\\x91OAY\\x9bq\\u007f|~\\xff\\xf9\\xa7\\xef\\xbf\\x1aN\\xa4k\\xedѿ\\x91|\\xb1\\\\m\\xae6\\xfb\\xfb_\\xd5\\xfep\\xba=\\u007f\\xd3\\x0f\\x92E*\\x17\\xf8\\n\\x13#^\\x1a\\x9a\\xa5\\xb4\\xd8\\xfdG\\xe2\\x884\\x96@b\\xb2ڝ>S\\x99b\\x8d\\xceh\\xe1\\xff9]\\x1e_[\\\\\\x9f\\xa2\\xb8J\\xb2r\\xf3{\\x15v\\xedS8\\x9e\\x92QR^\\xd3\\xd2Wo\\xbf\\xb9\\x92@\\x90\\x12\\x80\\x9a\\x18\\x12HB\\x83\\x16\\x00\\b\\x04\\x02\\x1a\\x16\\x01\\x15\\v\\a\\x9f\\x98\\x8a\\x9e\\x91\\x8d;/`p(\\x04d,Jz6.\\xdc\\x00 T,\\\"2\\xaa]\\xb6v\\xe6\\xbc\\xc5k7lٹo\\x93\\xa6Μ\\xb7p\\xf1\\xb2\\x15\\xab\\xd7mں߭\\x96\\xad\\x97b\\xfdT\\x1ak\\x92ZA\\x11q\\x199%Um}c\\v+\\x1bGg7O\\xef\\xfe\\x13UR\\xd756\\xb5tv\\xf7\\xe2M\\xa4\\xa6\\xa1\\xa5\\xa3g`jek\\xef\\xe2\\xb9]۳\\x9b\\xa2Ǎ\\x9fo҂\\x8ahRh@HTBrFNYECWπ\\x90\\x88\\x84\\xa4\\x8c\\x9c\\xbc\\xa2\\U000aa9b6\\xcen\\x81p\\\"5=\\xb3\\xb0\\xb6\\xb9\\xads_\\xf7\\xbc\\xa2oZG\\xf6\\xf1\\x99|\\xa1C\\xb7\\xbd\\xf7\\xed\\xc8\\u0604\\x82\\xaa\\xb6\\xae^Mjv\\v;\\x99\\\\\\xd0\\u007f\\xba=(GF\\x90L\\xeal\\x96\\xcf\\x17]\\xf9\\x12\\x14\\xbb\\xc0՚_M\\xbc\\xb1\\xc1\\xe1k\\xdc\\xe8\\xdc\\xd2T\\xea\\x10z\\xa8IZ\\x0f`<\\x9c\\xde}\\xfc\\xfa\\xed\\x17\\xcbXx*\\xdb\\xe8~\\x05\\xb3e\\x811\\u007f\\xe0\\xee\\xf2V\\xb9g<Oy,\\xf66 sB~T\\xe2\\xa0(\\\\\\xb9ug+g\\x1e\\xdc䈍\\x0f\\xfd\\t\\xa5\\x8bn}8o\\xbd\\x96\\xdd6\\xb6B\\xd3\\xf3q\\xbb\\x98T\\x8fM\\xbc\\xc94y\\v\\xd2\\xd9.\\xba\\x88\\xe3\\xe2\\tp_\\x12\\x06\\xe9\\xb6\\v\\xa7I\\x99\\xaeKJ\\xc9\\xd7:\\xack\\xf6\\x82e\\xeb7m\\xdbu?\\xa6L/\\x8b\\xa7\\x8b\\xff\\x98\\xc2Ϝh\\x12L\\xd6\\xedC\\xb3\\x05\\xabǂ\\xa7\\xf0m\\x15\\x1d\\xf3tfx\\xeb\\xc4\\xf2V\\xb3\\xfb\\x1d\\xb7?0s~\\xae\\xa2\\xf0\\x12o\\xadg?|\\xdf٣נr\\xded?|PZ\\xd9\\x18\\x82\\x87L\\xf4\\xdeh|\\xf2\\xb3z\\xab\\x17\\xc4\\x0f&\\xf7\\x98\\xf6\\xf7>z6~\\xb1\\x13\\xff\\x1bK\\xe5de`~|\\xfb\\xf4\\xeeų\\xc3n3\\x1b\\xf5\\x1a\\xa5B&\\x16\\t\\x05d\\x12\\x8a\\xc0\\x80\\xab\\xddf\\xb5\\xe8\\xb4\\x1a\\xb5J\\xa9\\x90I%B\\x01\\x9f\\xc7\\x05\\x02\\xdc9\\xec6\\x8b\\\\&\\x15rYD\\x02\\x1e\\x87\\x06\\x01\\x01~|y\\xf2\\xe8\\xde\\xc9ѵ\\xd1\\xc0\\xd0\\x15\\xf1\\xdbO_}\\xf4\\xd2\\xd9\\xd1VUQ^V\\x9c\\x9f\\x97\\x16\\x8d\\x84\\x02\\xdd:ۛ\\x1bjs\\x92C\\xfbPVR\\x1cگ\\xf8_5q\\xc9\\x19\\a\\xb6\\x9d\\x84\\xb6b\\x16G\\xb1\\u007f\\xbc\\xbdޟ\\r\\xd6<K\\xe20\\xf0=\\xd72tU\\xe4X\\x86$0\\x14\\x06^_\\x1eo\\xd79\\xa7\\x81c\\x99\\x86\\xce\\xd3$\\x8e\\xfe\\xden\\xae\\xa7q5,\\xfb..\\xe6\\xce\\xd6F4\\x01\\xc1/\\xf0\\xa1\\xfe\\xbeJ\\x13Cb\\bܯۺL]]\\x15y\\x16\\x85\\x81\\xef:\\x16ǒ\\b\\f\\xdcm\\xcb<\\xe6Y\\x9ađ\\xefX\\xa6\\xa6\\xb0\\f\\x05\\xfc\\xf9\\xb8\\xbc<\\x9e\\x0f\\xcbn\\x11j\\x8dy\\xf7-\\xb0\\xa23\\xf8\\xe0\\x85\\x1d\\xc6e\\x9e\\xfa\\xb2\\x88\\xc3\\xc0w\\x1dM\\x91\\x04g\\x18Ap\\x1d\\x9b\\xaa\\xc8\\xd2ȔD\\x9e{yh\\xa3\\xd0sX\\xe4=\\x93L\\fF\\xb7\\xfc\\xf9aʸ\\x9aQ\\xf1\\x9f\\xff\\x8fU\\xe0ʗs\\xd6Z\\v\\xa4\\xf4\\xb6\\x80\\x8f\\v\\xff\\xc9\\v\\xe5iӕ\\xa5\\x88\\xc4|@\\xba\\x06Y\\xbd\\x9ek;_\\xb9\\x9f\\xf2\\xc4\\xe7x\\a\\x00<\\x89\\x1b7\\xa6\\x86p!H\\xe0\\x83\\x86[x\\xe1\\x90^\\\\\\x87\\x05\\xbe'\\x1bx\\xb9D\\xae\\x03\\x0f\\x9fE\\b\\x15mSk'\\xed\\xe1ᅲ4\\x8a\\x12e\\x97\\x00szJ\\xe0\\n\\x05\\x1bKR\\x8d:\\x06\\xc9k_\\xedeD\\\\ב\\xec\\x16E,\\xa8ؑ\\xaa\\xa7\\xd4\\x17\\x84m\\xd12\\xbfz\\x1d\\xb2=\\x88;\\xb9\\xdfmrU?\\x99,M/\\x80\\u007f\\xf3\\x81\\xad\\xda2%\\xdc|ĕJu\\xba\\\\\\xc0\\xe6m\\x83\\x12\\xb0\\x9b\\xe9\\xdfz\\xb6\\xa2\\xe0\\x86C\\x85v\\\\1\\x0fd\\xe5G<Y\\xcf61\\xa3\\xf0\\x19\\x83O\\a\\xd3\\x12\\xd1Ư]\\x92\\xd5dB\\xfd\\x8c{-E\\xf2\\xbb%\\xacu\\x12\\xab\\x80W;\\x17\\xe5\\x0e\\x9emQf\\xd3\\xdc#\\xee\\x98\\x17f[\\x9fA\\xe2|\\x13\\xc1Syo\\x0f\\xca\\x15v\\xd3ߚ7\\xbem1\\xea\\xfe\\x93\\xb7\\x15\\xde+\\xaf\\x19\\x8d\\xcc֨o\\xe8'1s`Z6\\x88C\\x84\\x91\\xa4\\t\\f!I\\xb8\\xa2r\\x12\\x83?\\x92L\\x12Y\\xa6q\\x16/\\x11t\\t\\xd4LL\\x85:L썞\\x1d\\xf6)\\xa2\\x83\\r\\x19\\x1e\\xec9\\x91R\\xa5%\\x8c\\xe7\\xc4Gj&\\xc2z\\x00݆\\xa65\\xe1q\\x18\\xb8D7\\x93r煮\\xab^\\x05}F\\xba\\xe9\\xc7\\n)\\xfa\\xbd\\xff\\x15\\a\\xa5\\xc8*\\xb8)\\x8f4K\\x8c\\xb2H 3ZR\\x16\\xa37\\xca/\\xb09\\x88S\\xbc\\x9cpq3\\xcfT\\xc0\\a\\x1c\\xf7\\xca9\\\"z\\xfa\\xf3;\\x98\\x87\\xfd\\xc4\\x12\\x83r^\\xcf\\x15i\\u07b6j\\x81\\x95\\xa4\\x01==\\f\\xac\\xeb\\xdb3\\xd8\\xc27c\\\"\\xe5U\\x9cc\\xf5\\x1a\\xa0\\xda;\\x90\\x9a\\x89\\xa8\\xde\\f\\xef\\xe5~\\xf4kh\\x9b=\\fj^V\\xff\\xba<\\xe1e\\xccO@\\xf4\\xf3\\xb0\\xe4-7t\\xc5-\\x1bªE\\xdd\\xc0ޱ\\xf6\\x1c\\xe6\\xc9\\vUb\\xc4\\xc7M\\xb1\\x05\\xb7\\xea\\x10,\\xf4\\r\\xcb\\rd\\xad\\x8d\\xf7\\xc0\\x1coǃ\\x00\\xe0uπ݃\\xb9\\xb3\\x9f\\x1b\\xf5\\xe4Y\\x15n` \\x819\\xcb'\\x95a\\x01\\x9c\\xafz`:\\xc7Y\\xbf@5\\xdb\\xfb\\x12\\x12\\xe4\\x01\\x89\\x91Bw~\\x10\\x13\\xa3b\\xf02\\xe7\\x10\\xc18\\x8f`\\x02\\x10\\xf6; I\\xfaC岚\\xf8$\\xaf\\x80N\\xd3UN\\xbbѐ1㜡\\x8fīQ{\\xcb\\xd1U\\xe5\\xe0\\xdc8\\xde\\x1a\\xa9\\xda\\\\\\xaa\\x14\\x15 k\\\\\\xf0e\\xbe\\xc0\\x06}\\xf3\\x00\\xf8\\x16\\x98l\\x90\\xe56߾\\t\\xd6K\\t\\xdc\\xe0\\xb2\\x13l\\x05N-z\\xcb7A\\x92dYb[\\a\\xef1\\xa4\\xe3\\xb7V]\\x80\\x12Vo6]\\xa4\\x1d`L\\xf6hP\\xea\\x1c@\\xa7\\x8e8\\xa4\\x9d\\x1e\\xd6w\\\"\\xea\\xe0\\x05 \\x8a\\xa5u&\\xb3\\x19JȇS\\xca5\\x18\\x16\\xa7\\x0f\\xadlDΜK6\\x99\\xae\\x05\\xf8\\xfaW@\\x8a(\\xd9\\x18\\xe8\\xc8\\f\\xe6\\xb8C\\xc4L'\\xe4\\x99\\xeeڌY&\\x89\\u07b9\\xb9E9b\\xe4\\x06\\x15H\\t\\x04\\xdda1\\xb4\\x1b\\x00\\xfat\\xc1\\b\\bÔ\\xb0M&',\\xb2\\xf0\\xf2\\xe1\\x15@\\br\\xc0\\x12\\x90\\xe1i\\xf6\\xe5g\\xdf\\xe5\\xfb\\xcdJ\\xf7\\x1fq\\x03\\xb8\\xd5ʯ`ˀ\\x00\\x811\\xd0\\x12\\xed^\\xe8\\xe5\\b\\x94\\x92\\xa3\\xdc_\\u007f\\xfd\\xf2\\xf3\\xe7C\\xf6\\xf5L\\x81\\x94\\xc9\\f\\xaf\\xb6\\xcc\\x0f\\xed\\x15\\x16\\xc5\\v\\x00\\x9b\\x1b|Obw\\x88\\xe0Fp\\x8b\\xce:\\xcc\\x1d\\x1ab\\xf9b\\\"9p\\xf6\\x9f\\x9f2\\xf1!h;\\xe5\\t=Ӽ\\x10\\x97\\t/\\x1a\\xb8~\\xacs}\\xd8&\\xaaW\\xe00\\xe5.v\\x1f\\xa8\\xac\\x1e\\x90\\xe1N\\x88\\xd2\\x04&f\\xca\\x1c3\\xb3ΐ\\x99Es!\\xcfث\\x95\\x11\\xad\\xb3̴inl\\x03\\xc9\\x06%\\xd3|c\\xbe;N˳\\x91Mhَ\\xfdld\\xc8@ΑB\\x84K\\x82B\\x8de\\x95ob\\x04\\xc2\\xfdg\\xe6`\\x9b\\xa9jЛ\\x84p\\x96\\x8b\\xeb\\x19\\xc4\\xf8\\xa8\\xca\\xc4?C !t\\xdd\\xd3\\xf4T\\xbf\\xe1Q\\xa9\\xf8\\xad\\xd2w\\x88:\\x8ehp\\xc1\\x03~\\x84\\x11\\xe7\\x167\\xdb\\x11'\\xdc`/5\\x87\\x1c\\xef0\\xc1\\xc6{`\\n\\x82_U\\x00\\xb4\\xaa\\x00\\xff\\xad\\x1b.O\\x0f&\\x13\\xe3\\xaf\\xe2\\xd5\\xe9\\x98\\f\\x95\\xd8\\x05}\\xf1\\xe3\\xed\\xf6\\xbbg\\xa5Թ=\\x03\\x8bI\\xf5:.\\x86\\x9dB\\xa5%\\xf0\\x82\\\\\\xae\\xd8C\\x04b\\x00\\x1c\\xd9Ư*L\\x97\\x8c;\\x06\\xb6)\\xa4\\x91\\xd1\\xd4hC:\\xf6\\x1a\\b\\xea\\xb1|\\xd4_\\x86\\\\<\\x16\\xa7shS\\xa4\\x98Ǿ;8\\x81\\xe5\\xd5\\x1d\\x10aX\\\"\\xdf[\\xd7+\\x11L\\x1cM\\x88\\xa2\\x19=\\xc5\\a\\x1e6\\x10\\x88AVh\\xfe\\u007fw4K\\xf3\\xa6\\xe2\\xd0\\xf5k\\xedc\\xf4\\xd7\\xf7`\\x18A\\xae\\x19)\\x88\\x82\\xb5\\xce^<8F\\xd4\\xd6\\xc3,\\xbdX\\xef;פ\\x94J\\xd6\\xde\\xdav\\x1bp?\\n\\xb8_vS\\xd0\\v\\x81]-f\\x02\\xd6\\x15`\\t*\\n\\xacD\\x8b\\u05ed\\x92d\\xa6\\x01\\xfb\\x83\\x06\\x00.a@\\x98D\\xa1t\\xb2\\xddA&\\x81<Lc|C\\xa64\\xc5\\xc5k\\xca\\ty`\\xa3r\\x87\\x1cĤ?\\x03\\x9cDʭ\\xcfȱ\\xf7V\\xc5<\\xebA\\x1e\\xe2\\xa1|\\x19\\xdc\\xfaXykD^?\\xc0\\x9d3\\x13\\xef2R\\x91Z\\xd6rEfD\\x8b\\x9a<\\\"\\xbb\\x89\\x99a\\x10\\x8d\\\"\\x14\\xa7\\x88o\\x033\\x0e\\xa2\\xe6<,\\xb9$\\xda{e\\x95Xż#\\xf5-*@\\xec\\xb7C\\x9e;\\x00\\xe2\\xcc\\x0e_\\x18i\\xc0\\xa6\\xde|\\xfd\\xb0^o\\x16/@\\xfe\\x9d\\xec\\xab(\\xb3\\xd5\\x16\\x05$\\x9f\\x14P\\x170\\x98\\xd78\\x00\\t\\x96X\\x06Z\\n\\\"\\x00+\\x10\\x8b\\vp\\x84C\\x0e\\v[\\x1d`\\x03 ^)\\x0e\\xf5\\f!\\x90a\\xed\\xe0/\\xc0|\\xad\\x8f\\xe1\\xca_\\x9dj\\xfbp\\x04\\x932\\x95\\xa9\\x9d鯂\\xd1֢9SF\\xd0\\x19\\x90\\xf2\\x009U\\x90ehs\\xa0\\x04\\b\\xdd\\x12\\x9bz\\x8b\\xca@d\\xfd\\tr\\xaf\\xbeZ\\x14\\xa1\\x91mbL^<\\xb3\\nsi\\x94\\xee\\xe9eX^\\xe3\\xadK\\x900\\\"\\xc9\\xc5\\xe1\\x9f<\\xa2k\\xbbY\\x9cl\\x12\\xe7(\\x90R\\xa4\\xe8\\xc34}\\xb8#\\xf1 Ҁ\\xa9\\x8f\\x00\\x01\\xca,\\x16\\x8d\\xd6$\\xca|\\xdf\\xf8\\x9f\\x93\\xea7x,;\\xa03\\xcdzf\\xdd\\x14\\x98\\x03.|77Q\\x82xy 2xf\\x10ᷮ\\x0e\\xbe\\x95\\rF\\xb6\\xb6i\\x14\\xf1a\\v\\xa3E\\xc8>\\xe0i\\xc19\\x11\\x8f\\x86\\xf9\\x98\\x19\\x9fee\\xa4l\\xa5T'-N\\xe8gs@\\xf6!\\x9bх\\xfaP\\xe6]U\\x0fva\\xd6\\xcd\\xedxtAP\\xf8\\v~Y\\xe2\\xfe\\x19i\\nu\\x00\\xde\\f\\x00%\\xb4.!V\\xb3\\x11[\\xc2\\xe8\\x1ae\\xa1\\x99C\\xa1\\x05\\x8dn\\x12\\xb4\\x14\\xd1=\\xd0#+\\n\\xf45\\xb6C\\xebR@\\xc7T\\xbd\\xc8Vi\\xb211\\x87s\\x8a,\\x11\\x99\\xa3\\xc9\\x0e\\x8c\\x11\\xa57\\xb5\\xc5\\xd2\\x02\\xd00N\\x97?\\x12\\f4\\xd19W\\xac\\x89\\x19\\xf6rG\\x84\\xe6\\x99i6\\x8d\\xe4B\\xa3\\xacf\\xb3\\x143a\\xccB\\xdaQM0\\xb2\\x94\\xf1\\x88X\\xc3\\x02\\x8c\\xbcW\\xb0\\xc2\\xdea\\xd98\\xab\\x0e-K\\xbd\\xa6\\xb9\\xd0Mm\\xbb|b\\xd6\\xdax\\xf3BC\\xa9\\xe1\\x19\\xcf/\\rP\\x16\\xe5\\x13e\\xb9\\xbd\\xcb>B\\xe8\\xb0TwP\\xeb:o\\x90\\xf7\\xca\\r\\xcd\\u007f\\x88\\xaa\\xdelNTW\\x13\\xc7\\xe3\\xc5js\\r\\xa5 _\\x9eK\\xd8UC:)\\t\\xa4ʪ\\x1a[~T\\xf9=D>\\x88>T\\x8b\\xfdm\\x92\\x8e\\xda0\\xf4-\\x80\\a\\xf5c\\xfc\\b\\x1f\\x14p\\x05i\\xc2\\xc4\\xf3\\t\\x90\\xa0\\xca3\\xc3#\\xb8/\\xd6oa\\xfaeB\\x01fODo\\x8d\\x98\\xc9\\xe1\\xfd\\xefD\\x0f\\x1a\\x8f\\xe6\\xbfs\\xfc\\xf3W\\xba\\xd4\\xfa\\x1f\\x80\\xf1\\\"\\xc1\\xa8\\x92\\xe0\\x84|R\\xefT\\x1e\\x8b\\xf2\\xd7\\xf1\\xff\\x00\\xa4J\\x81\\xf2\\x85\\xac\\xf4\\xb0:\\xec\\xe7\\x8b\\x0em\\xfe\\xb9#p^\\xe5$q\\xe8\\xba\\xfe*\\xb9\\x82&\\\"\\xdb\\xdfv^\\xac:ڭ\\xc9\\a\\xa5\\xbeDZ\\x13\\x01\\x8d\\xd8\\b0\\xf7s\\xad\\xae\\xce\\x04\\x84\\xa1\\x1b\\x96\\x9b\\\"\\xc9\\\\8\\xcd(O\\x14?\\xfaңzLn+\\x19\\x9b\\xb2\\xccı\\xc9\\xf8#\\x8b,\\x818\\x1f]\\xefy^X\\xb8S\\x988\\xb0\\xdc\\xe2\\v\\xf8.B\\xf7\\x9b@TϾ\\xab\\xae\\xeb\\xf5\\x05\\x809\\x81\\xbeɅ'\\v\\xb0\\xfd\\xad{\\xe9\\xe2\\xf3{\\xccRE\\x9b\\x85\\x8d\\x1a\\xaeVmT@\\u007fh\\x97\\x85v\\xaf^K\\xa9\\x9b\\xfb\\xc51\\xdf\\xd4<4\\xe0\\x92+\\xd2L\\x00\\xf8\\x80\\xbc\\xa0\\x13\\\\Z\\x84\\x97e\\xdfSz\\xcdIV@\\x00D\\x8c\\x9dk`\\xb99\\x9dP\\x96\\x01G '\\xe4\\x1bXYG\\xd2\\x1f\\xebש\\xa29A_\\xb03\\xea%k\\xe9\\xde;\\x9f)\\x95\\x1d\\x12Ugm)O\\x1f\\xd2t \\xfa\\xa4\\x94Q\\xf8\\xad\\xf4\\x82\\x98\\xd3|>\\xf0\\xfd\\xe1\\x0e\\x8bt\\xa6f\\x19e\\x90\\xd2:\\x83B\\xa3(t\\u007f\\x88\\xadt\\x83\\xdc\\xda.\\x16Z]^\\xad\\xd2TYŢ\\x12\\xea\\xd0-\\xb1\\xb5\\xdc\\x1eܸ\\x1a\\xf1\\xce?\\x03\\x9c\\x92#\\xd7eƖ7\\f\\xdf\\x120\\xaaL\\x04eus\\x9aG4\\x94U1\\xba(>S\\\"\\xa5\\x01_\\xb2\\x12\\x0eD\\x1e\\x91T\\x10\\\"\\xf1\\xd1\\x14\\x00ȇcHi\\\"\\xce\\x18\\x80\\x88'\\xb4\\x81\\n\\x18\\xbbk\\xd4\\x11\\xbe\\x9fd\\xa8x\\xb5\\x8a \\xb5;\\xf5\\\"\\x8e4\\xfc\\xc4\\xfb\\xc1\\x01\\x8f\\x12\\x80\\xee\\xca\\xcd\\x01\\xbd\\x93\\x9en8\\xfe\\xc0\\x02B\\x8bA\\xc0\\x0f/S\\x0f\\x1ao3\\x1a\\x15 \\xc4\\x02fD\\x1d]\\xbeI\\x1b]o\\\"\\x95\\x94\\xa8,?P\\x1f\\x82\\x8fTL\\xa7\\xe0\\x97r\\xca\\xec\\x8a%0 $-\\xce\\x15\\xc6\\v\\x12\\xd3\\xc0i@.Q\\xd27\\xb4\\v\\xac2~\\xf5(\\xc9R\\xeaMr\\x9c\\x16N\\x92\\\\8z\\x92V\\x1d;˘{\\r(\\xb3\\xfd\\x19N\\xf3a^p\\xb5Z\\x12\\xff\\x93\\x9b\\xf5\\x19\\x87qD>I!Đ\\x94\\xfaE\\xfbT\\xca\\x12!\\x9bC\\f\\x85X@qdl\\x84\\x8b\\xa7\\xe2Q\\aQW\\x8c\\xca\\xea$\\x8dj\\xa3\\xd1P\\x1bF7\\x8bi\\xbd\\xaa\\xc5rM\\xa2\\xd2Н\\x88\\xee\\xa25<\\xb2\\xb1\\xe9\\x1en\\xb9\\xac\\x864\\x1e\\xef\\xe83\\x12s\\xbd\\x9av\\xc2k\\xa1^n\\xdd.\\x06\\xe8Q\\xb5\\xbac\\xb5ǪQm8\\xea\\x905\\xaa4'\\xb0\\xac\\xa8\\xbe.\\xb5\\x0f\\x87\\x9b\\xf0\\x91\\xaf'\\x88\\xca4\\\"\\xe1i\\xa6H\\xa2͘\\xb0Ϗ\\x83\\x01O\\xa5\\xa5\\xb1\\xe9\\x033D\\x8fP1ˑ\\xe8@xrI\\x13\\xb1\\x99)\\x80\\xbf]\\xa8?\\xa2(]\\xccO=R\\xa2\\x9c\\x9aYЕB\\xc0\\xbcHF2WSHLy\\x11\\x163}ڇ}\\xd6\\x06-\\x90\\xfe\\xda2ʻE\\x95bN{UGt\\xe0PIK+P\\x16Aa\\xb3\\xce^6[{)\\xe8\\xc5\\xd5\\b\\x1f\\x9c\\x93|\\xbct\\\\\\x13|QT\\x18\\x97\\xaa\\xa3yc\\xc7/)1\\x913\\xf3\\xe3J||\\x11\\xd9X\\xf5\\x94n\\x8a\\xafg\\x01\\xe5Ne\\\"{\\x1e\\xbd\\b0\\xbar\\xa0\\xa6\\x1f\\x9ackd4\\x87\\xd0'\\x80\\xed\\xba\\xbb\\x90Ӥt\\x1a\\xd1\\xc0\\xebD\\xcf+\\v\\xe8\\xe9DDa\\x0e\\bm\\x9e<\\xdf7\\r\\xbeQ6(\\x83\\x18@\\xfe\\xf0\\n\\x98Ş\\x81O\\xccIyo\\xc3A\\x95B(\\xe6\\x1c\\xea=Ӓ\\xbaz\\xf8bbe\\xe9i\\x19p\\xf8Y\\x86\\x06\\xd5\\xf2<|y\\xe6z4\\x93\\x96\\x92\\xf6\\xdc\\vT\\x1bn\\x10\\xba\\xca;\\x8e\\xe2\\xbd:}\\xb0\\xfa\\xe7\\xde\\x14m1CT\\xc6\\xc1\\x0e\\xcb1\\xa4\\x9d\\x92\\x95K\\xa0 Hs\\xe3\\xbeK\\xb4\\xd1>\\x9b\\xa7d\\x12\\x19!|\\xdb\\xd0א\\xe6cS\\\"\\xe1\\x93Ti\\x1f0\\xfd\\x9a\\x11\\x90\\xdb\\xdbwd]K\\x95@\\x94\\x9b\\x19\\xe5\\xe8\\xacv-L\\r#\\x1c\\xc9\\x10o3\\x17g\\xad\\xb4\\xb3\\x97Ҡ6k\\n\\x83,\\x8d\\v\\xb4^i\\xf9\\xeehRn\\xe6{j*\\x11m4@e\\xe9\\u007f\\xadN\\x19\\x81\\x1d\\x991\\tk*\\xa6\\x1b\\xe4\\xebz~_\\xc7\\v\\x11u\\x9c\\xca\\xe9\\x00c^\\x83\\x92TC\\xaa\\x80Y>B\\xe2\\x87]\\xd8bz\\fsRt\\x83l:=\\xb5k'\\xe3:\\x88\\xb8\\xb1\\x05\\xbe\\xe5x&;\\xe7\\xf5\\xa5p%ʳ\\xc5\\xff\\xc2Ӷ\\x80\\xea`H\\x03\\xfb\\xa8,{\\x9cg] \\xf6\\xb9\\xec\\xc1uc\\xad \\a\\x9d\\xae(\\x9a3\\xea\\xb9̐\\xfe\\xa8\\xf4%\\xf8fi\\xccu\\x0eߺ\\xa6b\\xcbmo\\x18\\x8f%u\\xae\\xd7\\x157W͕\\x8d\\x9c\\x1b\\xb3}\\x85\\xdbsc0D <\\x03\\n\\x12,\\x86\\aR\\xb2\\x1e\\x00X\\x0e\\xeeF\\u007f\\xad\\x12.1\\xa6\\x83\\x8b*\\x82\\xcdQ\\x95\\xca\\xc9\\xd2c\\x9c\\xae\\xd7R\\xf4\\x90\\\"\\xfeΜ\\x14U\\xb3\\xcas\\x9d\\xa5\\xa7A\\x1aL1V\\x1e\\xe3\\xa9<Q\\x8a\\xddl=\\xc5\\xe4\\xd5\\\\\\xbe\\xb9\\x82a:\\x99-\\xc5.\\xb5\\xf6%\\xa1\\x8d:\\x1dHoBA\\x87\\xd9<\\xd9\\xc72XZ\\x85\\xe0\\x8f\\u07b9P\\x92ͦ\\xccP\\xceV>\\x00\\xbd!u\\r\\xd8\\x19[\\xc57\\xbdߝ\\xf3?\\xa9/\\xc1W]Y27\\xf5\\xc9\\xc6 \\x89\\xcbZ\\xee\\x87\\xed\\xb3ǜ\\xb8\\xb4|\\xeb\\xc0\\xf3\\x89c%^\\xad&\\xe1\\xe5\\xba\\xc6\\xde\\xe8Cvt\\xd3\\xdc \\x06\\xa9\\x8ceZK\\xf3\\x15\\xe8\\x94W\\xed\\xdaTb[\\x95P\\xb0\\xf3ԍ#C\\xa1\\xa3\\xb8\\x1ch\\xd5\\xd4Zʱ\\xe1\\x03ј\\x8f\\xad\\x18d\\x83i\\nOD\\xbf;\\xec\\xa3\\x102ԞȢ\\x0e\\xc3\\xe1\\xfc\\xa4\\aiQ\\x03\\xeae\\xa4E\\xf5O\\xcck\\xecP$\\xb0\\xee\\x8b9)\\xfbR\\xd6p\\xe03۱\\xfa\\xa8\\fK\\xdau\\xab\\f\\xf4\\x93RO\\xecnL\\x8c\\xa8\\x02\\xa2\\xc8ϕ\\xe1R}B\\xcb1\\xc6۴\\xb6pRC\\xb1\\x13\\xbe\\xf96\\xe7zE\\x91\\xdf㞱oOL\\xa5\\x05]\\x0et\\x1a\\xcfa\\x9b\\xd3\\vO\\xf6\\x1c\\xe8\\xa8\\xe5\\xed\\xb4\\x96[\\xaf\\x9f3\\xfd\\xd2J\\xb5\\xbco\\x94\\xb4\\x8f\\x00r\\x89\\xf4{\\x93\\xc7\\x147Vp\\xe3o\\x8f\\xebt\\xec˖g\\xba$Ƙ\\xae\\xe5 I\\x95\\x01P*]W\\b\\x81\\x1a\\x18\\xf0\\x9a\\xc0\\xe5J\\x8d\\xb2gM\\xd7'\\x04iQty\\xb1\\x81X\\xa9\\xb2*\\x81H\\xa6\\xe5\\x98\\xc2 \\u007fLK4O\\x92\\xda[\\xa0Q-\\xfb\\xea%\\xd7(\\xcc\\xe7\\xdf\\xcb;\\xfe~73\\x18\\t-\\xf9\\xa0\\xde\\x0er\\x18Xe\\x94G\\xea\\xbb\\xfe\\xaf\\xdcc4\\x91j\\x02f\\x106\\x11\\x91`\\xfaj\\x1duM\\xb2\\xa61\\x1d\\xba\\xd4#}_\\xb8\\x92y\\xad\\xd6\\xe0\\x8b囤(\\x8cD\\x1d\\x90\\xe5\\xcf4\\x93\\x84\\xa9\\x03\\xcb\\x03\\x9dC\\xdda0 Ͱ.:\\x05㿌\\a\\x0f\\xb1&\\xbb\\xbc\\x85%\\x8btJ\\xbb\\xa4\\xc4\\x05\\xf2\\x84\\x8cm\\xae\\x86:\\xc7\\x18\\x95\\xaa7'\\x04\\x83ѐ\\xcf\\x12SN\\xaf\\xd5\\x0fE\\x06B&\\xc4\\xcd`\\x99K\\x92\\x8d\\x81\\xe0\\xc2\\x17*@\\x9cB\\xbe\\xe7\\xb3\\xfe\\xb3\\xa2\\xe1&\\xe6\\x14\\n\\xf0G\\xa9\\xbf\\xc2a\\xb5\\xa8W\\x89:\\xc0\\x01\\x82\\x9a\\x88\\xed\\x88\\xcd8\\xdc\\xcd~\\xb2B\\xe9\\xcd~v\\x12.7\\u007f\\x00Nw\\x9f\\x84ⲻ\\x1e\\xc7\\xd3\\x15/|\\xd2B2gv>\\x8ay\\xe7\\x1e\\x1b\\xbe\\x15\\x9aQ\\x05\\xec\\xfe\\x87\\xb5K\\xdf\\xfb\\xfcw\\x80\\x15\\xef\\u007fR\\xa9UCTu\\xac\\xa5\\xc1\\xfe1\\x1bۍ\\xea5\\xa0\\xcec]ޖ\\x9a\\x1a\\x97w\\xb4\\xc8%T\\xed\\x8f\\r4\\x95\\xf7\\xb4\\xc9zzX\\x9e\\x82\\t\\x10\\xeb\\xabS,\\xf0T)Űɞ\\xb7y`^\\x9d\\xf3\\x0fB\\x8f\\x1f4\\x99\\xdcG\\xe7\\xe6\\xf6\\xc3\\xec\\x14dc\\xc6BR7\\xb9'7\\x1c̬\\xceq\\x13\\\"\\xd96\\x1a>3&\\xd6@\\xbb\\xc1\\xf5ѕ\\xb4\\u05fa\\xa2b\\x86ܠ\\x125\\r\\xa8\\x87\\x8f\\xe1\\xd0,i\\xd0(V\\x80@\\x1am\\x1e\\x91\\x81oz\\x9d\\xb0v\\xaf|\\xceq\\x19\\xd4\\xc4Q!\\xd2\\x03\\xde_s\\xa4\\xc7Rb\\x00\\x95\\x99ǕW\\x0fG\\x81\\xa6\\xfb\\xac\\xaf\\xce99\\xa9\\xefIí3\\n2\\n\\xc4\\xceQ0T\\xab\\xab.\\xa9F\\xf6\\xf7\\xe3\\x9c-\\xce;\\xf2.\\xcc'T;G\\xb7\\xf6\\xa8\\x1e!\\x99fr\\xef\\x0e\\x89^\\v\\tdv9zkG\\xfe\\x813\\x95\\xd8\\x17v\\xf0\\x87\\xa6\\xd5\\f:\\xc2\\xd9|\\xa2\\xf6\\\"\\u007fr\\x15e\\x9c\\xdfA\\xd3!\\xb4\\x1b\\xe97\\xde\\u007f\\xe6b\\xf27|\\xfc\\xcc}\\xaa\\tf輍\\x95۳\\xb8\\xb5\\x04\\xeaq\\x1f;\\xaaL\\xe19\\rL\\x9f\\x02\\xe5#-\\xadG\\xe3\\x1c\\xa6\\x80jg`r\\xd4-\\xf1@-\\a\\\"8ש\\xb1\\x957ޗM\\x95\\xf4\\xdf+L\\x19\\x8f\\xa6b\\xac\\xf8\\xfeK\\x91\\xd0\\xd1\\x1e\\xd9\\xd7=\\xee`NI<\\xa8a\\x98\\x1d\\x9eH?f\\xff\\x92xf\\xaf\\x91\\x146\\xf2s\\x8e\\x9d\\xad$\\xa1\\x13x\\x96\\x98\\xa9\\xf6\\xa4\\xb1p\\x13\\xe7\\xfd=\\xeaʮ\\x10܍1\\xad\\xb1\\xe1k\\xdd\\xe8\\xc0\\xedb\\xd6\\xe3\\x80U&\\xe3H\\x83\\xc9{\\xdf\\xd6Z\\x80$5\\x81\\xf3\\x99)B\\xe4j\\x91\\xee&\\x19\\x9b\\x9cn)0\\x1e\\x8c\\xfb\\x82\\xba܃\\xf4\\xd8nS$~\\x8c\\xab]\\xae\\xbc\\xe8v~p\\x19\\xd0b48.\\xc7ѩ\\x9b\\x1e\\x8az\\xcf\\xca\\rK\\xc7F+\\xf2A\\x90\\xf4#\\xfdud4\\x1am\\xac\\a\\xd4\\xc9Z23\\xd9\\x0f\\f\\x0f\\xf6ǩ\\xb4\\x96\\x1a\\xb1\\b\\xea\\xfb\\x90\\xfbL@u\\xaf\\x04\\x92\\xab\\xd1\\x0fƂ\\x1fZ\\x8dϙ+\\x13|\\\\A\\xf7\\x85_BB\\xa3\\x96\\xb2$\\xf5j\\xb1\\xda\\xd0\\xea\\\"#\\x898T2\\xb6+kOT$\\x87\\x9dI\\x11N5)\\x14E\\xfa\\xa6\\x06\\xe8\\xdbA\\x00\\x85\\xf6\\x1e\\xbd\\xdcp%\\xd3\\xf3\\x81\\xc6\\xd3V\\x18\\x04\\xbc\\xa2<\\xdcKJ\\xb2\\xf2\\x00\\xeeG\\xe36(}E\\xfeɊ\\xd6\\xcd^\\xb7\\x18\\xd6\\r.\\xb1\\x00\\xbdT\\xa0~\\xb0\\x95\\x19\\xae\\x05\\xe4\\x83\\xc7z盠\\r,?B\\x9ao\\xd0\\xe5!\\xb5\\x9f\\xaf\\xd0s\\x84\\x80\\x16\\xa0\\x87JC\\xd1[\\x87V\\xd3'y\\x81+\\x11T<{u.\\x8f\\xd4\\v\\x11\\xfeU,!\\xf37\\x16\\xbc\\xb7\\xcb\\x00|\\xc0\\x88\\xc5\\xec\\x8c$\\x96\\x01\\xfc\\xa3\\x97\\x05\\xc9\\x03\\xf2%\\xf7\\xdej\\xaepgY\\x19s3\\xd9sr&R*hr`\\xfb\\xa4r1\\x0eUCy\\xbe\\x99˕&r\\xf9\\xf1Bޙ\\xc5bW\\xb5\\xa4\\x9b\\x9e\\xd8=aI\\xff\\x17\\x1a\\xe5L\\xa5\\xa7\\xc86\\xb2va\\xd4V\\xaa\\xab\\x1b\\xbbwʥ\\xe5\\xf5\\x9d{\\x8b\\x85\\x91\\xcfH\\xf8\\xe0\\xdeޢz\\xf8\\x183\\xd5\\xebV*\\xe0\\x90\\x98\\xfb\\xc6\\xe0\\x96\\xaeef3\\xfe- \\xcd&D\\xb1I8\\xba\\xbb\\xb3^aD\\xb5\\xea\\x962\\xa5&\\xd3\\xcd\\xf8VF\\x18\\x90ڵ\\xff\\xc7\\xd3\\u007f\\xfa\\xe6\\xbb\\x1f\\x9c֨\\x9d\\x1d\\xd1Ȧ\\xdf\\x1eu\\xcc\\xddq\\xee\\xab\\xfcO\\x13\\xcb/\\xb8\\xef\\xec\\xc1\\xe2\\xea!C\\x93\\xaeӎ\\x03\\xc5ҡ\\xe8\\b0A\\xd6\\xcb\\xd1h\\b\\x98\\\"\\x8c\\x97\\x03\\xa6q\\x9bg\\xf7\\xf7\\x83\\\\\\xbev\\xfdz\\xec\\xe7|\\xf6\\xec\\xc65\\x90w\\xc7+\\x02WWn\\xdcH\\xf3\\xb9_\\xbe\\xbc~S\\xa0\\x82\\x9e\\xeb\\xc2\\x17&\\x9c\\x96\\xf9\\xaf\\x95YTb-\\xad\\xba\\xc8\\xefI\\xe4x\\xae$\\x90M}\\xefƦU^8E\\x18&\\xf7\\xab\\xe8\\xb9x\\x86\\x04P\\x89\\xb0\\xb1\\x1a\\xebW\\x81\\x0f\\v5\\x11UЈM\\x8ciq,\\xf5hI\\x11\\xd6xXX\\xd9g\\x9bZ\\x05\\x9a\\x89\\xb4\\x9d\\x8e\\x99\\x13[\\xbd<\\xbb\\xb1\\xa2\\x12.\\xbb\\x86\\xe3\\xb8Q\\v\\xe0n\\xe2\\xdb\\xcd\\x01Н!\\xa6\\x94\\\"5\\xf5k\\xfe\\xbf\\xefijq\\xc6\\xc77\\x88e\\xc8QXcv\\xc8}\\x84)\\x8c\\xccX;\\xfe\\xb7\\xccU\\x13H\\xd5F\\xf1\\xc9\\xcc\\x1a\\x99\\xe4\\xeaR\\x1cZp}\\b|~\\xf7\\xbc\\xec\\xf1DL\\x0e\\xf8\\xc5\\xdb2\\x14#7UG$\\x13\\xaa+n\\r\\xab\\x88ݹ\\x84C\\x16Ob\\x9f]\\xb8\\x87\\x01\\fހ6@ݽ\\xe3r\\xc1^\\x06\\xbbu\\x87\\x84Ebڣ\\x8a\\xfen\\x95\\x8ai\\xb3C\\xb5\\x9e\\x91@\\xac`\\x01O\\xe5\\xefy\\xfb\\x06\\xc9yn\\x93*k'\\xdd\\xee܃||\\x83wk|X\\xad\\xe4\\v+\\xc2Ȅ\\x98Ѣ\\xb6\\xaa\\x12]\\x1eE\\xf8\\xfd\\x8eme\\x8b[lw\\x1f1\\x90\\xb8\\xc1v\\xfcn\\xe6rӞ\\x02\\xe6^\\x11\\x98nF\\xf3\\x97\\xe2\\x9ds\\x9e\\xa9ꕙ\\xbb9\\xads\\x95\\xccN\\xae1ctRޙ\\xc9\\xde\\xe1U\\u007f\\x9d\\b\\x1b\\xba\\xf5\\x97S\\xa7\\xf9\\xa5\\x8d\\xbeȉz<\\xac\\xe2\\v\\x93\\a\\xf0\\xc3\\v\\f\\xc6\\xc0\\x16A\\x84\\xac\\t\\xc9\\xf0ƴ\\xa4\\x9e0\\xe0\\x87\\x94\\x03<\\xe6\\xe3z\\x90+D\\\"܊]\\x8a\\x03\\x96\\x9a\\xab7YNuˡʥ\\xf8 \\xf6`\\xa7i(\\x13\\x0fj\\x82fb\\x1b\\x19c\\x89>M}\\t\\xf3\\x9f0\\xe3|Z\\xb6Ql\\x8f5\\xf3\\x10M\\x1f4V\\xcd\\xc3dY%\\x82\\xedo\\x11\\xff\\\\\\x923\\xf1<\\xf98\\xf9\\x95\\xad\\xae\\xc4^)\\x8eӒ56kb5\\xed\\xab\\xa61\\x90@\\x19ː\\xfc}\\xad\\x8b.\\x99\\x86R\\x89->\\xc9\\xf0\\f\\xdaj8Ƌ\\xf5i\\xf0|1u=X\\x8ch\\x06\\xdaɈ\\x01\\x16\\r\\xa3\\x027l\\v\\x8a\\xab\\xa8\\xa8Y\\x01j\\\\>0y#@\\xb0\\x80\\x83\\x04!\\x18\\x01\\xec\\xa8UA\\xa8\\a\\x01\\xd5N[hv\\xdf\\xf8җ\\n\\xd6\\x14\\xf3?\\xb5]\\x1b\\x1b3U\\x1a]3\\x15\\x9e\\u007f\\xbd\\xc5\\bC3\\xabj\\x1e\\x19\\xe7蛬\\xa2\\xd0d\\xb6\\xb3\\xb3\\x00\\xbe\\xd2\\xf5Jٮ\\xd9\\xc2ʊ+\\xfc\\x02\\xa8ϧ\\xe0g\\x1b\\xdc\\xcb\\xca\\xe5\\x94\\bVoT+V\\x99\\x96\\x8c\\n0@\\x97:\\xc1\\x96\\xc7\\xe6Eq\\xb2\\xe4\\xee\\xdfB\\xe2\\x9a@\\xc5O$L\\x1b\\xad;PTU]}#R\\r\\xa1]-\\xa4\\x9a\\x06\\xcfuw?\\x02\\xc1\\x12\\x03(YU\\x1e\\xb2\\x11\\xc2\\x15\\xa7̒\\tIvp\\x83\\xf9\\x99\\xb0\\xa8\\xda\\x15\\x80\\xff\\xc4\\xed\\xd4g\\xbe\\xf9\\x87o\\x04\\xe5ym\\xa9\\xb1O\\xfb\\x86\\xdc\\xf8c\\xb6\\xb0\\x11\\x05`ec_n\\xe5ŉ}\\xbe\\xdc\\xd3K\\xef\\xf6Vn\\xd4\\x042\\x8e\\x05*\\x19\\x10'P\\xf2x\\xc9x\\xa4\\xe3\\xae}c5\\x81)\\x8f5\\xca\\xfe\\x11\\xb3\\x17\\rZ\\xf6\\xa9\\x87\\x81\\xec;\\xaa\\x97X\\xbd<\\x19V?QaT\\xe2/)Uz\\x0f\\xc46W\\x001^A\\x06TL^\\xf2\\xa0)\\f!\\x89\\xc0\\xf6\\xa2lIQ\\xf3\\xb0\\xd1]\\x98G\\n\\xb8\\xf5\\xf84/\\x87\\xb4\\xdf3\\xbbC\\x0f\\x93\\x04\\xc8;=ޡ귑\\x96\\xa3\\x01Ɂ7N\\xfb\\xb1\\x9cl\\xdf\\xfe#uM\\x1a\\xfd\\x80\\xc0\\xa8\\xcc\\xf3\\xf6\\x03b\\xc1G\\x02\\xc6\\x18\\x89q\\xc7c\\xc2=vǹ\\x80\\xc2\\x14\\x13H\\xc5\\xe0 \\xa9\\xe9\\xb1v\\xa7AN`\\xdbY\\x0e\\x93\\x19\\x1a;O\\x05\\xed\\xb8Qi\\x1f\\t\\f\\xab9\\xff\\xde\\x13\\xbd\\xbb{:ں:\\xe9\\xf0\\xdd{#Cwn/\\x80>\\xe8\\x1b\\xc2)\\x86\\xcd\\xf6\\xfc\\x14ڌ\\x8ai\\xfa\\xec1\\xa8\\x1f\\xb1\\xb5\\xdf\\xf6$\\x830\\x0f\\xa1\\x90\\xef\\xe1/\\x9b4\\xdd\\x11\\x1c\\xcdő\\xd9Kc\\x19\\x13\\xe8\\x04\\xdbG\\xfd4x\\xa2\\x1e\\xf9e=\\x8c\\x8asUc_k\\xc1RW\\xe8͓\\x15\\x8d&FB8hl#\\xb8\\x84\\xb9\\x84J\\x15\\xbc\\xd2\\xf3-P\\xb9\\xa7\\xcb\\xd68?7Z\\xd5DG\\xce\\xed=\\xb6\\xafB \\xfb}\\xaa\\xa17\\xd3=\\xe1\\xb1\\xcc\\xc0\\r\\xc9\\xf7\\x03\\x1c\\x0e\\xa0[cS\\x96\\xf1\\x9d\\x9ef\\xaa\\x97\\x9f\\xa5t\\r\\xc6%bc\\x1e\\xfb\\x91Zײ\\x11\\xf7\\xbf(K\\xb7G4\\x99\\\"\\x98\\xa0\\xfe\\xa0J,\\xc6\\xfc\\\"\\xe1K\\xe0\\x1d\\x8f\\x8e\\x8f\\xf1r\\xe0\\xc7\\xee\\xac,j\\xd1\\b\\xae\\xebh\\xc2r\\x98\\xc2\\xc8g\\x8aJ\\xa6\\x00\\x16\\xfc\\xc0\\xf4\\x93\\x160\\xe8\\x8d\\x00{AT\\x13\\xaeZD\\x87W\\xde}\\xaf]\\xb4\\xb8\\xe9\\xfe\\x9d\\x1f\\x90\\x18\\r\\xea7?z\\xe6IWXsD\\x94%\\x8e\\xd8J\\xb5\\xdbi\\x1a\\x91\\xd8ͩ\\xee\\xb0\\xdf,\\xaf\\xf0p\\xdf1\\xee\\x1d\\xb7+\\xa5'\\xf9\\xcdT\\xfe\\xaf$\\xd0\\xd1H\\x02\\t\\xa911\\x97\\x01R\\x00:6v\\x05\\xcaW\\x98\\xed}\\x90Ko\\x0e\\x98\\xa8E\\xfcʅϤN\\x12\\x8bmik\\xe6\\xa4\\xd3\\xfe\\xf34\\xc1N[\\x1a\\x8e\\xa5})\\x1d\\x8a\\t\\xed\\xb4\\xdfn\\xee\\xc5pF\\a\\xe6\\xda%\\xcb\\x13\\xda\\xe9\\xd1\\xc3\\x03\\xb2.\\x10A\\xe4ݺ\\xb9\\xb7\\x83\\xd2&\\x99\\x1fD\\x0f\\xea\\xdf0\\x9e)\\x06H\\xb9+v+\\xf1\\x95\\xc5\\x10O\\xdcBy\\xf9\\x84\\x03\\x9d\\xc4\\x1e\\x95\\x9f`\\fW\\x9c'n\\x89\\xdd\\x00\\x89\\xd8\\xee<c\\xaf?\\xa4J1\\xae\\x1dv&`\\xc9Rqʚ\\x03 l\\xe9GOv\\xd6o핳?\\xaa\\a\\xd8\\x1b\\x1a\\xa0\\xf1\\x19\\xae\\x8b)p\\xf2Q\\x8a\\x89*a\\x1d\\xefz\\xe7C@\\x92ӵ\\xa0e\\x1e\\xb3V\\xc4\\vj\\x1b\\x9f\\x90\\x9e\\x80l۞\\xff\\x83W_\\xcf/\\x90\\xeej&[\\x90\\x8b\\x9a\\x83POt\\x05\\xe6\\xe6\\xdcT\\xa2\\xe2\\xfa\\x8a\\xf6\\x1fV\\xf0\\x00\\xa1\\xae\\xaf!DK\\xf2c\\x05\\xa1\\xce.\\x19\\x89m\\x96K\\xca \\xba\\xd5Pώ\\x84y\\xac\\b\\t\\xc0\\xe8\\x8e\\u0557\\xae\\x8b{-\\xa6\\x9ai\\x80OS\\xe9`\\xf5@\\x8b\\x8f>\\xa3o\\x19\\x94\\xd5 \\x86\\x8cd\\xa8\\xbb[\\u0378\\x1cW Y\\xb9\\x1e\\x841`R\\xc1\\xf2\\xb4\\x14\\xfcX\\xb7V\\xa0b\\x18E\\x9a\\f\\x0f)\\u008e\\\"V?\\xf1^-\\xfb\\x88\\xa6\\\\M\\x04J\\x9e\\xb4\\xdci\\x9e\\xe6\\xad-\\xae\\xa5\\xbf\\xdd\\xda15\\xeep\\x8a2\\x90\\x8e\\x959\\xac\\xb0\\r\\x93\\xf6k\\xf8\\x19ĕ`hl\\x88\\xc5=\\x9dgK\\xf61\\xc4(\\xdau\\xa4\\x14\\a\\x1f\\x8ec\\xb9\\x9fI\\x10vK\\xc5M\\xfd\\xc36r\\xbap\\x91\\x96m\\xdc}\\xe1\\x87p\\x992i\\xfd\\x88%\\xdf\\r1\\x86|\\x005\\x14\\xe7I\\xb9D\\x8fވ\\xccL0B٥\\x11P\\xd7H\\xcc5u{'\\xfae\\x86\\xc0:\\xe7\\xca\\x17\\x8f;\\x96u\\xea\\xac2\\x9cj(\\xcfx\\x84\\x82\\x13\\aS\\x8b\\x9b;4\\xb1\\xcbvm\\x03\\xf5\\x9f%\\\\}\\n\\x9cT\\xea\\xab\\u007f\\x88;\\x9c\\x1c~\\xaa\\xbe\\xf6\\xb8\\tĽ\\xa8?4\\xd7-T4]ׁ7\\xd6\\x05\\xf77\\xe6\\x18\\xecS\\x9d\\xea\\xae0\\xf4\\xf8gjB\\xb6\\xfb\\xe2$\\x85\\t\\t\\x17X&\\xb1`\\xd0m\\xbd\\x91m\\r\\x89i\\xafQ\\xfa\\xf3k\\r\\x1c\\xcdm\\x9d_\\x18\\xf5ǎ\\xad\\xf0\\xef\\xec\\x95\\x17S\\xdb_\\xaa\\x85\\xb4?\\x1b\\xfd\\xf7\\xb9\\x01\\x0fk\\xb5\\xda{u=\\x1c\\xca\\xd0o3\\x18ݎJ\\xd1/\\x1c\\xd7\\xee\\xe9\\xfa\\x95\\xfb\\xbf\\xd9\\xdb'u\\xf5c\\xed\\xeeq=\\xffC\\xedQI\\xbbwB+\\u007f\\xa4_<\\xa5\\xdd;\\xab\\x97\\x8e\\xebE\\xbd=\\x84\\x17!\\x1dp\\x9e\\xe9۫\\x95\\x98Cv\\a^\\x10Ⱥ\\x1b\\xae,\\x90še\\xd5\\xc0\\x82\\xe4\\tu!\\x80\\x0f\\x12\\x96s\\xba\\x97\\xf3\\x06$\\a\\xf4k\\x18\\x13\\x9e\\x15F\\x99\\xa9\\xfc\\xcc\\xf4Y\\v\\x8d,یE\\xceJ\\x15\\xf73\\xb3\\xd9ޠ\\xc3`tc\\xb5\\xd4]\\xa9=\\x99g\\x18|\\x9f\\v[s\\x8e\\x14\\by\\x8bi\\x91\\x9aԒ\\xca\\xdcu\\xb9,\\xb7{\\x85/j$\\xb8\\xebxim7\\x12za\\x03\\x1bw:\\xa2\\x9e\\xd4\\xce\\xfd\\xa0h\\x9d\\xc0|!\\xecD\\xa8\\xaf\\xc0\\x81\\xfaTn\\xaa/\\xc2c:@̜\\x83rV\\xc5Jƾ]\\xf3m\\x9extOlMN\\xf0\\xc1\\x0fWͱU\\x9e\\x9a\\x97\\x16\\u007f\\xbf\\xfab\\xef=$\\xccY\\trs{۷F\\xccX\\x8d\\x86\\xa5b\\x84\\xe9np\\xfc\\x8c\\x05\\xa6Vu\\x84\\xf7\\x83\\xbe\\x9f\\xcf\\r\\xcc\\x1aQ\\xb3\\x83,\\x19\\xea\\x8bs8\\xb6\\xa4^\\x99\\xaa\\xfe\\xe9eFG?\\xf1\\xb2\\x14\\x1d\\xd7:\\x12W\\x18{S\\xe0x\\xbe\\xd4+\\xbc\\xbb;\\xb0=\\x9f\\x8d\\xb0\\x9d\\xdb\\xfd|\\x8f'\\xaa\\xd1`B\\xa93-\\xc7\\xc0\\xb8R\\xb8\\xe4\\xff\\xb6\\x82\\xb6\\x84^\\x15\\x89\\x8fH\\xf8\\xcbט?s\\xa7wg0p1'\\x15\\xf6f\\x90 @\\xb6\\xdf~\\xd1\\xd3}\\xca\\xfc^\\x1d\\xf35\\xcc=\\xaa\\x1dd\\x94||랳E\\xd0TjT\\xef;\\x85\\x05\\xb4\\xddD\\xe4\\xe0\\xbe\\\\\\xcczC\\xac\\xfcd5\\x9bB2\\xfb\\xa5\\v\\x96ND\\b\\xc9/\\\\\\x88\\x91`\\xcc]\\xb4\\xf9:\\x8a 줼\\xfc\\x11z\\xa3\\xafq]\\xe7\\xfaN\\x11ă<hVQ\\x1e\\xaft\\xbbj(\\xea\\xcb\\xc7\\xfd\\x8c\\x02d\\f@\\xc3*a\\x832\\xe8\\x05\\xdfuO\\xbe\\x15\\xd13\\x1e\\xef9\\xe39-pG\\xddћ˽E\\xb5\\x9f!\\xa6\\xa8}\\xf0b\\xaf\\xa0\\x1f\\x17y\\x9aZ\\x1f\\xb5\\xa5]\\f{\\x82\\x98v\\xfd\\x92\\x10\\xed\\xe1v'oH\\xfd\\xbe\\xa3*B\\xac51\\x18k\\xcd[\\xa0\\xfc\\xb8\\x96\\xcf\\xe9ˑ'\\xbf5\\x8b[\\xb1\\xac\\r\\xc7\\xfe_\\xbf+\\x98\\xdd\\xc8o\\xbbr\\xb5\\f\\xef\\xc0.\\xbfѝI\\xac\\u007f\\xa3}\\xe8\\xcdA\\xde,\\xb6\\xf3\\by\\xbd\\xeb-\\xdd\\b\\xf7Ґ\\x91\\x1alXC\\xe2_\\xfa\\\"-\\x81\\xe5\\xd6\\tXR\\a%=/\\x91\\xcf\\xf9@\\xc3\\n\\xec\\x10\\xeai\\xd3RvSS_\\xf9\\x87\\xbf\\x90\\xa6\\x9d(;\\xb2>\\xf5ڒ\\xe3\\x9ejy\\x16^t\\x80\\x14\\xbe\\x81\\xf64\\xe0Ҏ\\x00\\a\\xb6h\\xe5\\xe6\\xd03\\xdd!\\xfb\\x04{(ꋛ\\x85\\xf7;\\xe2\\x03\\xfb\\xd3E\\xd5;\\xdb\\x03\\x93\\x9cW\\xa8\\xbdܦwdy\\xbfi\\xa5E\\x94eO\\xc1\\x9cvͫV\\xb0Lx\\xfb\\x96Ky\\xa0r\\xf4\\xf6\\x84\\xa3d\\xaeb\\xe2\\x1dQ\\xa2\\xa7\\x05h\\x80n\\xbe<M|>+\\xee\\xadϟ@w\\x85\\xd0\\xe5\\xf1\\xa6\\x81\\x10(\\xc0hj\\x81A\\x12.Z\\n\\a\\xa7\\x1d\\x9dgBH\\x1a\\u0605\\xa4\\xcf\\v\\xedr\\xa5\\xbaV\\xe9g\\x00\\xf2d\\xe4\\xb9\\xf6;ԕ\\xdf\\xca\\xf3\\x04\\x1d\\xf7\\xb5\\xc0i\\xc9\\v$>h!\\x96\\x84VI\\xac\\x99\\x1dܥ3\\b\\xb6\\xa8J\\xa8[\\x1d\\x1c\\xd4\\xf6\\x82\\xbe.\\xb9\\x89\\x82O\\xf7J\\xee\\xfe՝\\x03\\xb7\\xc5\\x18\\xe6\\x94<\\xb7\\\\LZ\\x96?\\x18\\xa7*/\\xcc)i\\xc7,'\\x9b\\xcf\\xf0\\xd7o\\xb6\\xbdL\\xb5\\x9et~\\x06\\xfa\\xa4\\xa0M+\\xe67I\\x962b\\xf6z\\x99=\\xf1L\\x877\\xfd\\x88\\x0eR'\\xf7\\xf2\\xf90\\x8fu\\xcd\\x0f4MjZ\\x12\\xe8l\\xd5X\\xcd\\xc9o\\xe1b\\xab\\xf1\\x1b\\xd6m\\xfb(\\xc6\\xc8\\xee\\xc3bE\\xa1\\xb4\\x9dΘ\\xbb\\xed!\\x00\\xef\\xcd\\x15Z\\x97\\xf5Ԙ,\\xa8\\xe7\\xf9\\x86)\\x98\\xe6\\xd3YT\\uf1ec\\\"~\\xc0\\v\\xf9\\x80\\v\\x97\\x8c\\vg\\x88\\xe5u\\xb5\\x0e\\xa3\\x8d\\x90\\xee\\x8a\\x1b\\x12XB\\x05\\xda\\x12\\xfbx!T\\x91N.\\xc3 \\xba\\xabj\\xdft\\xffN\\xd3\\xe4;\\xb4O㴎I\\xaaN@\\xd1Z\\xb8\\xb5%\\\\a\\x89\\x12c\\x8a<`\\xf8\\x12\\xc8\\x1a\\x9f\\xeb\\x1aJ\\xfaϡ\\xc8\\xdag\\x1b\\x97\\xac~\\xbd\\xc0O\\xb2\\xba}\\xb8\\xc0m~p\\xd6K\\xf9\\xd0k\\xf9.\\xd7\\x17\\xb3r\\xc3\\xceQ\\xda/ =\\x1d{Y\\xbc>\\xef\\xcdQA\\xba\\xbc]\\t\\x14\\xaf\\xdf\\f9\\x11\\x0eх\\xf2T\\v\\xa6?\\xb2\\xd7K\\xfda\\x11\\xae4\\fS\\x8b\\xd2\\xd2\\xf0\\x1b\\xed\\xd1L\\xdf\\x04b\\xed#e\\xc3^\\xcet_\\xe52\\xf2\\xce\\x1d3Y\\u007f\\xfd\\xbe\\xbe`մ\\x1e\\x0f\\xbf\\xa2\\xea\\xf7\\xaf}\\xe3\\u007f\\x00ȯ\\xd4\\xc0\\x9d\\\\\\xeb\\xd5\\xcc\\xf3\\xab\\\\ml\\xe4~s:\\xe5Q\\xd6\\xc7o\\xf5\\x99\\x9d\\x81k\\x19\\xbb\\xcfC\\xcaȈX\\xbc\\x85,\\xf7z\\x82B\\xcdw\\x85\\x86I\\a)1Ϻz\\x96X\\x92\\x9dA\\x91\\xb1N\\xe7,\\xd6W!\\x8e\\xfa\\x97\\xceq\\xa3\\xac\\xc9\\x1a\\x8e\\x8eJl\\xd7\\x153\\x02\\x867%P\\x94@k\\x12m\\b\\xca\\xfd\\xbbg\\x16A\\xc2^\\x8c$\\xa7&J\\x1f\\x18ړ\\xe3\\xb1Z\\x94\\xdeK\\x06\\x9d}w\\x02e\\xa6\\xc0\\xf0->\\xbdgB\\xedP\\x9d\\x9b\\x94Vh\\x8a\\x99\\x9c\\x91H\\xd69\\xc7\\xf9j]bSdK\\xb1\\xff\\xa2@L\\xa3\\x82\\xaf5\\xa0\\x16%\\x11\\xc8'\\xc4\\x1d4\\x8d\\x0f\\x05ny\\xdf\\xd6\\xdb@j\\x88\\x01\\x9f\\x89\\x9f\\x17h`FQ\\xd1\\xddϦ[>\\x9cy\\x19N/\\xe2\\n\\xad\\x99@Y\\x1fZ\\xd7\\xf0fa\\xa6K\\xec\\x83\\xf9\\x9bx\\xdb)8OBM\\xdf\\xfe5(\\x8f\\xb14\\xfb\\xb6B\\xdcz\\xe3\\x00@\\xdaa}\\xcb\\xe3y\\xca\\xcb\\xf7\\xe8\\xe2\\xaaq\\xfa\\x1b\\x922 \\xdb\\xf1\\xbd{\\x0f\\b\\b\\xaa\\x1b\\x18\\xd7:\\xf6\\xe7\\xbbe\\x93N\\xf6Ӈ\\xf7\\xef'1\\x03X\\x8b\\xa5X\\xab+W\\x9f\\xc0\\xc1\\xba&k_J{\\xa2U\\xdaft\\xd3%\\xcdpP\\x1e,\\x96\\x14\\xf9\\xfd\\xa8\\xe5\\x92\\xc4\\xedҫI\\xd2F=<^Ϗ$\\xd6]\\xe5\\xe5\\f\\xe3\\xaey\\xe2\\xd1\\xc2@\\xfcJ\\bI\\xd9\\xe4\\xff\\xe8\\xc4\\vfx>\\x03\\b@\\xa8\\xa0\\xe5\\xf4uj\\xef\\x14\\xcc\\xd2R\\xb1\\xc8\\x04\\x13՟_\\xec\\x8ev\\xc68wζɸ\\\\Jx\\xe33\\x9ae\\xc5\\x15X\\x92\\f\\x98\\x94\\x1b\\xfc \\x8a%\\x90Wn\\xab\\xf8\\xd6ab\\xfd\\xbd\\xe9ѦTG\\xdcG2\\xb5A^t\\x906\\x0f\\x86\\xe8\\xeb\\x12\\v\\x90\\x13\\xca!ځ2\\xa8\\x80\\xcd^\\xd4}\\xac;lD\\x10\\xc5#\\xe6\\x90\\x13\\\\J\\xf6\\xa4\\xca\\x11\\xbaܿ\\xad\\xf2\\xaaW3{R_0y\\xe9\\xf4\\xb4\\xaf\\xa3\\xe4\\xd86\\x13N@\\xba\\x86ߏ\\x11_\\xa4\\x1a\\x00\\xd9\\xe6\\xcbg\\xc6$v1S{\\x18¿e\\x98\\xcbm\\xdeK\\xae=\\x98^\\x8d\\xe00\\x84\\a_Q\\xdd\\xf5\\xeb\\xdbw7\\xf2N4T\\n\\xaf\\xa5\\x0f\\xaf\\xdf: }\\xbf\\xd7\\xd8V\\x02\\xba\\xa0]\\xa0;T\\x14>\\xf5\\x17\\x82j\\xc1\\xeb\\xad^7\\xa9닝_\\xf2=NI\\xfcJ!cLyP\\xa7\\x10\\x0f;\\xeaZ\\x9b\\xc0\\x1ce\\v\\xdey\\x02z|\\x9c\\xcau\\x9c\\x9e\\x1d>:y(\\xc6!v\\x05\\x94LL\\x06\\a\\xf9\\xef8\\xa9-\\xfbh\\xbe\\xca\\xf5\\x81ʨwQ\\x1d1\\xc1lcm\\x9b\\xa8T\\xd9\\xe3.\\xda\\xe4\\xfdJL K\\xb1Tp\\xaaVF\\xf4d\\x95W?܅!5R\\xb0\\xbf\\x01\\x8f\\xfa\\x04\\x8c\\xa2!u\\xfd\\xb0\\xb1oq\\xb0eX\\x85Ă\\xafX\\x0exi\\xcc\\xf1D^\\xfd!\\xf6.\\xd7B$\\x9d\\xb2m\\xbd\\xf9\\x8e\\xb2\\xf0\\xe0d\\x89\\xb8\\xa9l\\x96\\x843Q\\x04OP\\xfbY!\\xaf\\xd7\\xe2\\xf2f\\xc8UB\\xa8\\x8dIB_\\xeb0F\\xae\\xc2\\xec\\xb7\\xe0\\x97\\x95\\xf6l)\\xb7\\xf0$\\xb1a\\xc5\\xd8&\\x80O|\\xc0\\x9a\\xd7\\xe4{\\xa4\\xee\\x1a\\xfd\\xb8\\x8d\\xaf\\xf6\\x96\\xaacR\\x19ߴ\\x8b\\U000873825\\xf9=\\xa21i\\xf9\\x1b\\x06I\\xb5rh-\\xa7\\x06=\\xc8>\\xf7A9?b@\\xf5\\x9d\\xef#\\xfbT\\xab\\\\i\\x8aԧ{,O\\xee\\xb2C\\x93\\x01j\\xe8\\xacCy\\xb5\\x9a\\xdc\\x1b\\xf4\\x9ds\\xa8\\xab\\xf0ꉽ\\xfa\\x14\\nt]R&N\\xae-B\\x0fQ\\xf3\\x912\\xd9S\\xe2\\xf3\\xfa\\x8d\\xa3]\\xb6\\x85q:m\\xb4\\x88\\xe1IEӸ\\xd2U\\x19?\\x84\\x9dN騭\\xb1\\x1a\\xe9v\\x9bqD+\\x05\\xc0\\xd1+\\x8e\\xaa\\x83\\x87\\a\\x12CZJ\\xfe\\v\\xff\\x8fz\\xbbDz\\xd6\\x00\\xd3ӎU\\x02\\x82\\r\\xce\\u007f\\xd1\\x17sg?\\x8a\\x8c\\xbf~\\x000\\xe1e|3\\xd3\\xd0\\xdf$!ֆ\\xf3\\xf3\\xc0\\xfb\\x8e\\x10\\x11\\xb4\\xf15\\xbd\\x16\\x03C\\xfb/]6\\xca;\\x86O\\xcc\\xcb\\xf7]\\xc0B\\x97\\xbd\\xf1\\x00&\\xfb\\xa4g\\xba)\\x0e\\xf1\\xc7\\x19J\\x141y\\\"\\xf9ǈ`\\x8et\\xc3S\\x9e\\xeaWf\\xc9\\xe9\\xe6\\xbco\\xec6\\x8bi\\x84\\x81D\\x04i\\x8f\\xc4\\xe6\\xc4c\\u007f\\xec0\\xf8\\xe1#\\xe5ߑJ\\xa5:Y\\xae\\xd4\\xf4\\xd7\\xe0\\x8b\\xfa\\xe4\\x8bRy\\xaaZ\\xa3\\xe5\\xcaL\\xa5ʪ\\xb5\\xe9R9e\\x0eY\\xff\\x83\\x80ӌ0S\\xeb\\x02\\xa7\\xf0\\xc5؏\\xa8\\xd3y\\xc5\\x02\\x1e\\x8b\\x00f\\x81\\x8c\\xb5\\x18\\xb5\\u0085\\xf9\\xb6\\x8e`3x\\x1b\\r\\xe2P\\x898\\xf4\\xcb)\\xa4\\\"\\x89\\xb40\\xe5Q\\x85\\xd2\\xf8\\x9bOr5\\xb4!\\xd5db\\xb2\\x90\\x01K\\xb0\\nyMb[\\x8e;}L\\x1d_\\x19\\x10掺J\\xadw\\xd04\\xa9E\\xdd\\x14,<\\xb4 \\xc7\\xd4\\xf6\\x1f\\xdb\\x16L\\x82\\xa3s3\\xbcD0\\x14\\xf9\\x8aP\\xf8\\xf5\\v\\xed\\u007f\\\"Q\\xa5`\\x00\\xab\\xea\\\\\\xe6f\\x80\\xa3\\xc9\\x05PaB\\r¨\\\"ӛ\\n\\x95`R)\\x987\\xc7\\xcdI\\x85B&\\xb4\\x81\\x84$\\x05\\xaa3Q\\b\\xcd\\x16\\xc22\\x88\\x05\\x93~\\xa9\\x85i\\x16\\xc6<\\x19\\x8a\\xe8\\xd6\\xcaш\\x8a\\xb2\\x81\\xed\\xff\\btnf\\x17\\xcc\\tP2\\xf6ɰ\\xb4\\xc1\\xf7\\u007f\\xefxhZ\\xbc\\xfd\\xd9\\xe26\\xca;\\xbe\\x99x\\x97MF\\xd2\\xdf:\\xc7X\\xe8\\xdb%\\x11!\\xce|θ`t\\xces\\xc0\\xc1\\xf2q\\x80\\xdf\\x02_\\xd3`\\x17Ld+\\xa4Z\\x8f^T\\xb4\\xbeT[A\\u007f6\\xdb\\xd9C@\\x89l\\xb2`F\\xd4\\x01a~\\xb7\\xdd767Wu\\xfb\\xd6zҺ]O\\xc8*\\xe5\\x15\\xdd/\\x84\\xc9d\\xe4\\xc8WEv\\xa0\\x96\\xb9\\x1d\\xcf0\\xa0a\\xd5x\\x1e\\xb6\\u007f誅Q\\x19\\x1ec=\\xe6\\xe6\\xdfk\\f\\x02c\\n\\xc2ͺ\\x9b\\xce/T\\x846\\tzƆ\\xa5\\xd0\\xf8\\x8eI\\xdd;\\xd9\\x01\\xea{\\xe6\\xdf\\xd0w\\u007f\\xd7oj\\xe52\\x1aG\\xf1\\x04\\xb2N\\x81\\xfb\\xaco\\xb0\\xa4\\x94\\x01m\\x95u\\x9a\\x9fk\\u007f՛\\xc7\\xf84!\\x0e>\\xb42\\xc4\\x02z\\xb7U\\xd5\\U0005af8f\\x9e\\x91>c\\xabgmO\\x9f\\xb4\\xb46\\xab\\xc2'\\u07b21\\xab\\r)\\x17\\xa4${\\x86>3&T\\x15\\xf0Ā/j\\xfb\\xf5\\x01\\x0f\\xbdT\\x05\\xa8\\xde?);\\xff\\xb3c\\x12\\xee\\xc0\\xe5\\xd9m\\xf9x\\x1cV\\x15\\b\\xc2\\xd9R\\xb2\\xe2mL\\xe3VRg\\x99d~h\\x81\\x8d\\xb3\\\\\\xa7vG\\f\\xb1\\x1dh{{\\xdf\\x12\\xb1\\x95\\xa3Gt\\xf3\\xd9g\\xdf\\xc3?\\xa8\\x98\\xbeP&\\x17\\x93U\\x8d\\x99r\\xb4w\\xf0\\xd3\\xdfal\\x85\\xc2wd\\xfa\\xd03\\xf8t\\x0eӻn\\x1bE\\x93\\xbd'}E=\\xb3km\\xefAr\\x04Y1\\xe4C\\xcbĜ|68螽\\xf3k\\x90\\x1e\\x97\\x1e͓>i\\xacuç\\u007f5\\x89\\x145Tڢ\\xd4B2\\u058c\\xbe\\xd8\\x15\\xa5g\\x96\\x84Z\\xb6Hp\\xe1\\f`\\x9aGװ\\x95\\x81s-\\xc8\\x17\\xb1fE\\xc3I\\x94h\\x17\\x8eM+\\xc6\\xeb\\xf1\\xc8|\\x91\\xec]z\\xe4\\x13\\xb9\\xc4bDu\\xa9\\xb2\\x8c\\xf6\\xaah\\r\\x99\\x0f\\xac\\xe2\\u007f\\x9eE쭿2Y\\x02\\xc7Ic\\v\\xb9\\xf0\\xf3\\xb8\\xb8`\\xe6\\xf1b;\\x95\\xc4vh`\\x05\\xaa\\xe2\\x80u\\xc3\\xf4\\xcc\\xf5\\x8e\\x8b\\x11\\xff\\xba\\xe2B/\\xc9)\\xf8\\x16y\\xb9E\\x19\\xe1m4a\\x8c\\xdd?\\xc8v>\\xc6I\\x93\\x80\\xb2|\\x9e>\\xe9r^\\xca\\xda\\xfbM\\xc6\\x1c\\rp;\\x84\\xff\\ajyx\\xaf\\xf5\\x1f\\xf8\\xa54»\\x04I_Q_\\xbaU5\\r\\xad\\xe6\\xc8{\\x98\\xefGq\\xd0i\\xbc25\\xc8#\\xe7=\\xa9\\x88\\x8a\\xbb\\xb2a\\x8e\\xc5\\x12>\\x95\\x0fe\\x96=\\xbf\\b\\xc7\\xf11\\xe9Q\\x93@\\xb8~\\xcao\\x93x\\x1f kS}\\xe6-\\xc15f\\xd7\\x13K6\\xfe\\x88h\\xb6ޫ\\x80\\\\zBnɴ=\\x80\\x91\\xa08\\x8e\\xe8+\\x1f\\xca\\xde\\xef\\x8e_gG\\xa7\\xc2\\xdd0\\xf7Kƴ>\\x0e9\\x020\\xe5Q\\xef\\x1aj\\x94\\x14\\xa0\\f=\\xce\\\"\\xb1\\xa8\\xd9\\xcd_\\x99\\x1e}C\\b\\xbf\\xc7[}\\xc3ʣ~\\f\\u007f\\x8b\\xa9\\xbd\\xb2\\xe2\\x11]\\x10\\x97\\x1d\\xfal\\xe3\\xb9:\\xf2\\xddtٜ\\xe7M\\xf4\\xdfe\\xe2v\\xaf0\\x85\\xbeM⤶B\\x9fF\\x97\\f\\xa4\\x1d\\xe5\\xe3+\\xd9\\xfd\\xa1\\xc0\\xbd\\xed(z<\\x989\\x95_[\\xceB\\x83\\x9b\\xdb\\xf9*\\x9d+\\x16;r䅠+\\x8f\\x92\\xc8\\xf3ʾ$\\x9b\\xb1\\xc1\\xa4\\xe2B\\xc3[\\xaf\\xaf\\xbd\\xb9\\xbc\\x00\\xf90Q\\x9c\\xe8u\\x9b\\xc4f\\tL\\xbb\\xfd\\xf6)\\x96\\xe9\\xd4{E\\xbd\\x98\\\"D\\xb9\\x9aa\\xe4\\xa0]\\xc29\\xf1Z\\xe9\\xd5q\\xa4\\x9dI\\xa2\\a9k\\xee(\\xc9\\x1aÊ\\x8f\\x19Ը\\x95\\x16\\x82'6\\x1dH\\xfc\\x88\\xd4\\xd8ӆ(\\x17\\xdaV1\\xd5`\\x98\\x04\\xc7j\\x1e@\\xf2m\\x98N\\x13ȡ\\v\\xc3\\x11UV\\xf4\\xa0\\xc73\\xf9\\v\\xc5\\x0f\\x0e\\xc9j\\x1b\\xecbٮ\\x15ej\\x9f4,\\x9f\\x96\\xf0c\\n\\xed\\x9fT\\xe0\\x91\\x17\\x1fi֡\\x8f\\xae`\\xce\\x06B\\xbd\\xcfX4\\x12\\x92\\xe05R\\xe2\\xb8\\xe1\\xa8\\xeavÐ\\xff0֥)\\x9c\\xae\\x16\\x8fX\\xaeV\\xf3e\\xfa~=\\x89r\\xaezHG\\x13z\\xb2W[<r?7?\\xf0\\x1a\\xad3\\xfc\\xfd8M\\x1f=i\\xdb-\\xa5\\xe1\\\\}6v\\t-\\xfc\\xe2\\xe1\\x9dJ\\x885\\xceh\\xb0ȹ\\xe3\\xd1d\\xe5\\xef\\xc7m\\xfbb\\xac$7\\r\\xf9\\xe4\\x86\\xfc\\x03\\xb2\\n0\\x88\\xd4\\xe2\\xc5;\\x13\\r\\fЫ\\xfcѳu\\xb5\\xa3L\\\\[\\xa8\\x9eҵ\\xb4ub\\x06\\xd9\\x14L\\xb3\\xf9\\xc7\\f܉\\x83\\xdb\\xfb\\xfa\\ts(\\x05\\xedD\\xbc\\x1d\\xe57\\xd3\\xc7+s\\xe5\\x83\\xca\\xc9!\\x8f\\x1d\\x8c\\x95A\\x83\\xf1\\xc2g\\xc7V_\\xd8\\x01\\xab\\xe9@\\xbfF\\xb5\\x19㧦\\xfat\\xee]Ju_\\xafK\\x13\\xf7n\\u007fC\\xb7\\xddg\\xf1|5\\x12\\xc3!\\x19\\xf6\\x00\\xf9\\xe9Ɠ\\x8d\\xb0\\xed(\\x1c-ޡ\\xeb\\x17Ww\\x83\\x01\\x81\\x9b\\xb1\\x89q,\\x80\\x9c\\x17\\xa9\\n\\xec\\xcc\\xd4i ]+al\\x97\\x8a\\x8b\\xad\\xfd\\xa0~\\xb6-J\\xdbTk\\xf3j\\xf5\\x957\\xf7j3d`$/\\x11\\xd1r\\x89ba\\a\\xf0\\xff\\xc9\\x00\\x0e\\x01~\\xae\\xf8\\xb9g\\xa7\\xd2\\xd5\\xf8\\xc0m\\x98\\x97\\x02\\xe2\\xd6~\\x0f\\xda\\xf4W9$P\\xab\\xe1\\\\\\xdb\\xd91ح\\x96\\xb6{\\xaf!u\\xa4\\x82(\\x19wG\\xdc\\x19T\\xfd\\x9dJuox,\\x98\\xa5r\\xa3\\xd8P\\xd9AN(\\x01q\\xab̻Z\\xc4\\xfe\\x92\\x00\\x8a\\xed\\xffؙ^E]\\xb5h?3\\xf2Ͽ~\\xc0\\xf0p\\xbcV\\x00\\xdeUĐC>\\x92\\x06\\xa7\\x05\\xf5\\x97/WR\\xf9\\xfe\\x02\\\"\\xe6\\xd5;\\xac\\x94-\\x82\\xf6\\xb5\\xab\\xc4\\x03av_\\xfexֱ\\xb3\\x1b/~\\xd8F\\xea\\x94\\xd4\\x1b\\xfd\\xd9|\\xf7\\t\\xf4\\xba\\x13\\x12\\xefmH\\\\\\x95\\x85\\x1fO.\\x1d2\\xd6\\x1cH+4\\xec\\xaa\\xe3\\f\\xe5\\xef\\xca!˸\\xf4-\\xa0P\\xcdL\\x97\\xbc~l\\xf1\\x8b\\x9c\\x13\\xaa,\\xd9\\xc1\\xf6\\xae\\x8f\\xce\\xdb~z\\x85\\x83\\xad\\x91M}dj\\xacT\\xac\\xdd\\xe7R=\\x8a&\\x98\\xbe\\x1cehv\\x83K(\\x12\\x9c7\\xc1S\\nP\\x9a\\xdf~\\x06\\x0e3\\x8a\\x9a\\x96>QU\\x90\\xda\\xd1y\\xd1\\x16\\xeb\\xd3\\xcd\\xee0\\x18\\xac\\xd0>\\xb05\\xb4\\x9e\\x88\\xe3\\xa0\\x10\\xa2\\xa5ћ\\xed\\xf2NG8\\xf7\\x8a̒T@\\xa2\\xba?\\\"\\x94X<!\\xa5NmƄ\\xba\\x0e\\xc5\\bn\\xaaqFR}\\xf6\\xd8k.\\xb5.\\u007f\\x80\\xf4\\xf78Li\\x8cM\\x99\\x87\\xfe\\xca@\\xce\\x14G\\xe1M\\xb7/\\x9f(\\x0e\\xc4\\x11\\xa3\\f\\xf0\\xd2x\\xb9\\xc43t\\xe9B\\x00\\xd7'/\\x98!\\xe3\\xd4Lp-\\u0083GO1@\\xc7\\f\\xbf\\x8c\\xbf\\x00\\xea4\\xa4\\xed\\xba\\xfc\\x17\\xa1+\\xa2<\\xb7zo+\\xcb\\x16\\xbfnӒ\\x12\\xfao\\x8f\\x9e\\x8a)\\x8f\\xe9\\xb4#\\xa3y\\xce\\f\\x1b\\xf6_@\\xa0!7Q\\xb9@\\x9c\\xbcXzKi2\\xdbW\\xa9𣰮Qw\\xd8f[\\xe0\\xae\\xc2>Z]\\xecf4\\x18\\xb9j\\x98\\xe1\\xdf詤[i\\x1bBg}\\xb4\\x80\\xe7\\xe9r\\x11^x\\xf1p\\x12~\\x89\\xc1\\xd2E\\x91I\\xec\\xc77\\xc5\\x12\\xa4\\xb7\\x90p\\x9eH\\xc69\\x97\\xa5K\\u0088\\xc8dU\\x88#\\x90M\\xea\\\"\\xbf\\x18\\x13\\x05fd\\x8e\\x1d\\xab\\xf3Jͦ\\x94c><i\\x99\\\"\\xa8\\x8a\\x8d9i\\xd2pD\\xa7\\x91\\xb8\\x89b\\xb3:\\x97\\xb3\\xd5\\xc8{\\x04\\xcf\\xc1'\\x9ba\\t\\xfbxB4\\x99\\xcc\\xc5%\\xb1\\xa5ZA\\xc27\\xcdq\\x80\\x9eڦ\\xfbFzD\\xec\\x1d\\x17$\\x93\\xb1&\\xc0\\x99^\\xf8\\xe0觼h\\xf5s\\x9a$9\\x94\\xf00\\xfe\\xd1kM\\xe8J\\x8ak\\x8dU\\xecɥsΛ\\xac\\xd5+\\xa8P\\x0e̖\\xf3Ű\\u007f\\xf0\\xb8\\xc4Y \\xc4ؐ\\\\\\x80b\\x1b\\xf2$\\xf8\\xfa\\xb1uь\\xc9a\\x05\\xaa\\xf8\\x8d\\xef\\xb57\\x82Źd\\xb5%\\xc7Uh\\v\\xf8M<\\xabϓ\\x14\\x8e\\x95\\xb5\\x12\\x14\\x13\\xe5vk\\x1aD\\xdb\\xf04Ά\\x8eH\\xe135\\xc3W\\u007f\\x060\\x9d\\xa7arc^\\x0ejJp[K\\xf6ew:\\xde\\xd5 \\xa5\\xf4\\xc4\\x19?{\\xe5\\xa86\\xcb\\xe3\\xb9\\xce\\x14\\xbf\\xbb(!\\xacA\\xc1\\x00Q\\xc2\\xeb\\xbdc\\x9f\\xfc\\x174\\xb0\\x1d\\x18V\\x1b$;[\\x91@X\\x9f\\xe6qj\\x9e\\xd0{\\x0e\\xd6\\x19\\x17\\xa3\\xbb\\xce\\x11mF\\a\\n\\xd0\\xe8\\x17\\xd7D\\x0f\\x12\\xa2\\xea\\x0e\\x9d.\\xb9U\\xb9\\xe8x\\x1a\\xe3\\xed\\xab\\xbc\\xd2\\x13\\xfe\\x9bu\\xb5\\xdb\\xe4\\x03\\x10\\\\6\\x90\\xdb?\\xf0[\\x16\\xe2?\\x05\\xee\\xcfT\\x1a`\\x804\\xa0\\xb2\\xd1\\xc4\\xf5A\\x94ڧ\\xfe\\xc4\\xff\\xbe\\xfdļP\\xb8\\xb4a\\x1cy\\x04\\xa5\\x00\\xa18\\xb2Ҋ\\xa1\\xccT>\\x17hG\\xc6\\xfd~6_.\\x10\\x94zSZڱ\\\\$*\\xae\\xf6p-g\\xaa\\x01Y\\xf6\\xfd\\x16\\xc2s\\xc3sC\\x84\\xb9\\x19m\\xba$\\xa3Ax,\\xfc\\xa4\\f}1\\x1d\\xe3\\x93]\\xac:\\x02%\\xc1\\x00e\\xf7Z\\x88\\xf1d\\xaap\\xdcz\\x11ZDm\\xe86s:\\xc3N\\xe5\\x95x$t\\x01{\\xb7[P\\xca\\x1c\\x9e\\xc2>\\x03ǁ|aW\\x80_\\x90=%\\aQگ-\\xa9\\xf2H\\xdf\\xd1\\x01\\xee\\xd3\\x1a#\\x1f\\xcbU\\xf3{\\xc7whJyމ`g{.\\xa5-\\x86\\xcc=\\x95yIui\\x94Z\\xfb\\xed\\xd1\\xecQ2\\x9a\\xc9H\\xf26\\xb3O\\xfc҄Y$KUTJ5ƞ\\x86\\xc1^\\x80\\xd8,\\xd5\\xc4h\\x88\\xc37\\xb6\\xf5\\x880\\xbbr\\xb4۴,\\x03\\x04\\u007f$\\xac\\xd0,\\x9a\\x81ΰZ^c~\\x91\\xc6\\x19\\x02`Z\\x99B\\x81\\xfb\\xad͂ougU4\\xec#\\xa7\\x1d6\\xbb\\x92\\x95\\xe1遞\\xe4\\v\\x8f\\xf3$f\\xae\\xf2l\\x865D.\\xefɫ^\\xf1\\xa9n\\x97*a'R\\xc8B!\\xbc{\\xa6\\xf8D?K\\xb9篗S\\xa5p\\x9dV\\xe3<\\x8a\\xf0\\xc7Z\\xad\\xb8˕)Z@:s\\xe9ܕ\\xae.\\xeeߞb\\xe3\\xd4\\x1bs\\x1b}qg\\x10\\xd6\\xe1\\x01\\xd7(\\xdbv\\x97\\xde\\xee\\xe5\\x06n)\\xa8\\x1b\\x8b҉w\\xfa\\xa2\\v]\\xa5\\\\:\\xd4\\xcch\\x14߿/\\x03\\xbcN\\xb9\\xa8氧\\x98\\xbe\\xd3\\x13\\x9a\\x96\\x06\\xbc\\x91V\\xd1\\f!\\xc6eG\\xed\\xe1\\xad\\\"\\xe1e\\x10\\x93\\xa7\\xc0a\\xdc\\vh\\x85\\x06\\xf2SS\\xeed\\xb6\\xaa˘\\xd8\\x01k\\x06\\x84\\xcbzШ\\xab\\f\\xe92\\xeb\\x03ã^y\\x91\\x9av\\x8d\\xf8G|r\\xbd1=\\xf8^\\xcb\\xdcG$ \\x96\\x9b+\\x12\\x1f4\\x88\\xf0\\xa0\\xb8 \\xe6gj\\xbadu\\\\\\xeb\\xaa\\xf1\\xf0G\\xb2\\x97\\xb4\\xb82iY\\xf3\\vg\\xd0\\xc4Q\\x9e۽|\\xb7\\xa1\\xcd\\xf7%\\x99j9\\xab\\x13\\x1a_kM\\xb0\\xf1\\x9a\\xe2\\x80SU|oB\\xd6wh\\xa1\\xf0`S\\xa0\\xc8\\v\\x9bѳ\\xf1=y\\xd4\\u007f\\xfe\\u007f\\x82\\xeb$:\\xbfn^l-\\x9a|jD\\x97u\\xcd\\xd4\\xd3\\x1f\\x81\\xee\\x99j\\xb44\\x1f\\xefc\\x9b\\xf2\\xc1\\xe7\\xacc\\xbd槒\\a5y8\\xfc\\xc9\\xcf\\xc6\\xe7\\xc7\\xe0\\x16I\\x03\\x81\\x87\\x0f\\xaa\\r\\xcc|\\xa0B\\x82\\xbc\\xb5FKZ\\x93R=\\xac\\xf5\\xb7\\xb0\\x87\\xeb\\xb3 \\xdalDo\\x01\\xad\\x81fQ[\\xad\\x9doX墊c\\xb2\\xcf\\u0087g\\xa8_\\xb4#y\\x9b\\xb3\\x91ɀ3\\xd7$0\\xb8\\r\\xa6\\x8d\\xc4\\x02@N\\x15?\\xc6Lg/\\x17\\x16u\\xe8(\\fK9\\xcc\\xc7\\xe3w\\xabҗs\\x86\\x8eZ8;KW8\\xf9\\xc3\\x14\\xf3\\xb5\\xf1\\xee{\\xea\\x92\\xd9)@\\x97Yp\\xf8wR$:\\xfc,h\\xd9u\\x99\\x14\\x9c0\\xa1\\xf6RZwQ\\xf8%P\\x9fI;\\x04\\v\\xe4\\xa3<3U9V\\bm\\x97\\x97ls\\xfd\\x15\\x02\\x0en/\\xa6\\xb6pt\\x00\\xa0\\x8c\\xf0\\xf16!n\\xf6\\xa1\\xb6\\x8fDǊ\\x94\\x88\\x1a\\x99ۅ\\x19}\\xad\\x99\\x06\\x94]\\xd11*!\\x87j\\u00902\\xcfأ\\x87\\xe3cU@y\\xa2g\\xdc\\xe9\\x11dc\\xb6\\xe7\\t\\xb5R2\\xf6@\\xdf\\xdc0F\\x91\\x85YY\\xd5[\\x92\\xb9Im\\x8f\\x0f+\\xfc\\xe7\\xf0\\xc8\\x042\\aF\\xb1v\\xbao\\x19\\xe3\\xfc\\xfe\\x03a\\xb8Y\\x9b:\\x8a'\\xde\\xc4\\xe9r\\x87xf\\x88ʹ\\xf0\\xb3\\xdbP\\a\\xb9k\\x88\\xad\\xaaB\\xb8\\x81\\xa9\\xc59M+m\\x81\\xe9Qlؠ\\xb2D\\xdbl\\xfex\\xea\\xdcGJ\\x96\\xeb\\x899KN͍~\\a\\x8e6\\x97\\x9ee\\xb5l\\\\Y?\\x1a\\xf7\\xba\\x81~F\\xd3p\\x15\\xc7\\xe0n\\x94u7\\xba&o8\\xf5\\x13\\x05\\xac\\x10Ϯ\\x9a\\x84\\x14\\xd0I\\xa5\\x98\\x9f`\\x8a\\x18X \\xf14Ĝ\\xa2-\\xb2\\x8c9$\\x1c\\xf2tY\\xba_L\\xd2$b\\xf0&'\\xf3]\\xe9\\xfbT\\xb8E\\x90\\xd2I\\x9f\\xb4\\xb6\\x83@t\\xd4\\x10\\xa3-\\a\\x8fL\\x15;\\xb0a\\x8e%JU>|\\xb9\\xc9#\\x14}\\\"\\xdcH\\xf9c\\x8b\\x98;\\xfb\\x1d\\x92\\xc7\\xf5\\x86\\xe1u\\xa02\\xf3\\xa1\\xa6cc\\x15w\\x1f\\xf1\\x069NJ\\x15\\x9c\\xa0\\xfeԠ\\x13\\xcc\\x1c:\\x0f\\xa3\\xa0R\\\\r\\xe1\\x1b\\x05ۜ\\xed0\\xfb\\xa1~k\\xc1G\\x81R\\x1a\\x04W\\xb6\\f\\xb3\\xf2?H1\\xb0\\x15\\x8dJ1\\x96\\b\\xa5\\\\\\x1e\\x92=Z\\xd6-\\xabj\\x9fR\\x19\\n\\xe1\\x81\\xeb\\xb7\\f\\x81R\\x9d\\x06\\x86o\\xe9\\xdb켘+R\\x8d\\xd1\\xe63~}\\xabj\\xca\\x18}\\x13\\x8f;\\x9dZK\\v\\\"\\xc2Vu\\xd8F\\xe9\\t\\xea\\x1a\\xc7\\xce\\x1ey\\x06b\\xcf\\x13\\xa4\\x16>\\x05f&00\\xf3k\\xf4\\x84*&h\\x18\\u05fc\\\\\\xcdi\\r4E3\\x90\\xb4\\x91\\bƐ1\\xb5L\\xbe\\xc7\\x13\\xb4\\x1c\\x02\\xa8Z\\x91a$\\x94&\\tn\\xa1 \\x0f \\xf0h9\\xd7'\\xcbB\\x8a\\xaa9!\\xf4+\\xbd\\x18\\xd7\\xce\\xcd_P\\xddf\\x02:\\x15\\xc7~\\xfe-\\xcf\\t\\xe8pj\\x85\\x80\\xe7\\xa1\\xd1Y\\x1a:\\xec\\x91\\xda.\\xd0\\xfa\\x1bi\\x99K0\\xc9Y\\x1c\\x9f\\x1bQ\\xb8lnu\\a\\xb9\\xb1\\x90\\xe9n\\xa1\\xc5\\u0094\\x97\\x1f\\x14\\xbbi\\x88!\\xee7\\xf0+\\xfe\\xcb\\x1f-\\a\\x97\\xb0\\xa2\\xb5 ڧ\\x10Y\\xaf`\\xc7lY\\xb4\\nc\\x11\\x81\\x13V\\xf7\\x02\\xc3m\\x1d\\xe4>۬\\xe1Ȗ=\\xb1! 0\\xd9nieSB\\x10>\\xa47,A}\\x1eSH_\\xed\\xdanB\\xb7=1\\x83\\xefҒZ\\xee\\xff\\x1b\\xee,C\\xfb\\x9e\\xb6\\x9c\\x8cvN\\xb57Ke\\xebe\\xad\\fł\\b&\\xb9מY\\xae\\xab\\x9d\\xaa\\x99\\xe1BF\\xc9F&\\x99\\xb9\\t\\xf1\\xb9\\xf6\\xe8v\\xc1%\\x05խ\\xfb\\x16\\xa7u,\\xb1\\x9ac\\xab\\x95\\v\\x00\\xcdȼ\\xb75\\xeb\\xe4\\xea3\\x8a\\xb9\\x88\\x92b\\xbd\\xb9U\\xa6\\xefi\\x9esc%\\f\\xef\\xbe\\x1bo4\\xa9&\\xb4\\xe7\\xc6}Ի\\xae\\xfc\\xcc\\xc1\\x14\\xc5\\xe7\\xd2+\\x95\\xdfЬ\\xe7$7s\\x82\\xec\\x1fLn\\xa3\\xec\\x89T\\xe4:\\xf5\\rL=\\xe38\\xb4\\x8a\\xbf;\\xd1a\\n\\xc4ϸ\\x9f\\xda\\xdc::2\\x84\\xb7S=\\xa0\\xf9\\x11\\xc2\\b\\x92\\xad\\n\\xa0a\\xb4@\\x8a\\x91k\\x01\\xf7W\\x14Z\\x1d\\xc0}\\x9arh\\x8dj]\\x9d\\xd2\\x03\\xbe\\xabB\\xc0\\x05t;wi*\\xf2\\x18Y\\xad\\x9f\\x92\\xfdW\\xce+\\x9bt\\xacg\\x93}\\xc46\\xcbj\\xdb<Z\\xcbSZ\\xdf830>Xu\\xb6{\\xbd\\xdc\\bd\\xf9`\\xcff\\xd5Ӽt\\xa4k\\xad\\xb6\\xaa\\u007f\\x8b*\\xc7\\x16=\\xd1Yg\\xa2\\xc6{\\x1ar\\xae6\\xc1\\u007f\\xe6\\tO\\xd6Wͳ\\x1f\\x98WN\\x88_y\\x8d\\xc5{\\xa2\\xb1z\\xe9\\xcfwI\\xd6\\xe6\\xe3\\xf47\\xe1qo\\x9a\\xfd\\xf0\\x93\\xdcG\\xa5\\x8e\\xf1\\xf8\\xe6\\x88ƕ\\x90\\xb3\\x13\\xdfL\\x80\\xf3~\\x9dҎ\\xe5T\\xe39\\xe3\\x15~\\xee\\xcc\\xc6-\\xa1\\x1e\\xfc\\\\h4eh\\x90W#\\b1\\xc3\\xff\\xfbṖ\\x13\\xf5\\x94\\xa4\\x05\\xd5A\\xef\\x9eւ\\xfdo\\xd9\\x11\\xfe\\xae?D~\\xa8\\x01\\xcf(\\xa3\\xa7\\x01`\\x18P\\xd4\\x01\\xabw\\xa0W\\x93 \\x1b\\u007fѪ\\x0e\\f-\\x19d\\x98`d\\x9b/E\\xe5\\x88\\xf9`\\xcc\\x1f\\xa3\\x13J\\xc55$\\x01AEu\\x9b\\x8cuO\\xa1\\x1f\\x1c\\x03\\xa2\\xb1c-Ӹ\\x0f\\xc2B3\\x9ae\\xebm\\x15\\xad47\\xf2\\x05\\x11lW;e\\x82Wߢ\\x1b\\x89{\\xd8\\xc5\\x18*+\\xb0\\xcd\\xe0\\x93$\\xb89\\xdc\\x05\\xd2\\xea\\x88b\\xbd\\x8c\\x8e\\x9b\\xe2\\xf8\\xf5f7=jla\\xd8\\xf0\\xf0\\xe0\\xea?Ee\\xe4\\xfc\\xe9\\xfa\\x9ew\\x12=ȠOEߍ*\\xa4\\x81A`G\\xa2j\\xf2\\x82\\\"h\\x1b\\x10\\xe7\\xfd{C\\xd9\\xdaP\\x9b?㻩:q\\xa5\\xf6fu\\x81g\\x10\\xeeo\\xf1\\xe0˙u\\x1e=a\\x96\\xe6\\x97/wƠ\\xed\\xa8U_\\xf2\\xde\\xe7\\xf8\\x97\\xb3\\xeeo_>Ͼ*\\x16ꞓ\\xacf\\xd8\\\\(\\\"\\xe7X\\x9b\\x85=\\xb4ap\\xa3\\xe1\\xe7\\xe8Ȳ\\x0ey@i\\xe4\\xban\\xf9}\\xb7\\x1e*sC=}}mT0\\x0e\\x14ݒ\\xd9\\xf8\\x1d\\xb7\\xfd\\x0e\\xaaW\\x1eZ=.\\xe52\\xb4-\\xa2\\x9b&\\xa9\\xdbԏ\\xe0Vh\\xf6\\x16ۤ\\x9d\\xe5\\xe55(\\xc5ś\\xba\\x8a\\xb4\\v\\xb7]\\xac%\\xe80;\\x83\\xca\\u007f\\xf4\\xb0\\x01@㐻\\xceG\\xb0\\xe6\\t=\\xfd\\xeb\\xfc\\x83\\x1f[\\xd2kq\\x96\\xcf\\xfc\\xaeW\\x1d%,\\x8bd_W\\x133\\x87\\xa9De:\\xf4_\\x16A\\xd5r/\\x0e\\xabq.\\xf1\\u007f\\x17>\\xac\\u007fc\\x86\\x1bN\\xee\\xab_\\xa5_N\\xf3\\xbb\\xdf\\xfb\\x15X\\x9d\\xef\\x9ez~\\xa4f\\x97;\\x13\\xa5.]\\\"\\xfc\\xe7\\xe8Yk\\xec'\\x80\\x18腐l\\xed\\u007f\\xfa\\xb4\\x12\\xcb\\xca=\\xcah\\x17\\x15\\x80\\xb4\\xb5\\xe6\\xc6\\xf2*\\xf5\\xbaI6\\x03\\xfd@n_\\xef%\\nc\\xbc :)\\x8d\\x88%mm\\x14\\xce\\xeaEŊ~\\xbeYi\\x9a\\xccеW?\\xcc5<\\x8bG\\\"\\xda:d\\\\\\x13/\\x06\\xf9gAoX_\\xfc\\x87\\xb7\\x99e\\xdb@\\xc1\\x06+\\x9aM\\xc13\\x8e@8\\x91\\b5\\xf0B\\x8f\\xfeA\\u007fŬ\\xd7vZڈ\\x93%\\x12\\xdf\\xe6\\x8a\\xfb\\x13v7\\xaaG\\xadk\\xb5*շ\\xe6;I~\\xce\\xf3\\x9cPk\\xed\\xe5\\xec\\x91q\\xf2k\\xfe\\xbcR\\xeb^M1\\xd3F\\xc0\\xc0\\x8a\\xd0<\\x96@\\xaf\\xf3r7\\xf5T\\xb0bLI\\xe2\\x1c\\u007f\\xab\\x1b\\xeb\\xfd\\xb1T~\\x1fo\\xa9\\xd4\\xec\\xfa\\xbd\\xbc[\\x846\\t\\xee\\x17\\xe8\\xbb\\xc5\\x1a\\xf0\\xa4$\\aO+JM\\xa3\\xf3\\xab\\xf6\\xe1Y\\xd5\\xe4\\xd4j\\xea25\\ny\\xc0\\x1a\\xa4A\\x19\\xb0\\x16\\xece\\xf6\\x87\\xec\\xf2\\xcd\\xd7Mi\\xef4Q\\xbcZ;J.#\\xbc\\x1a\\x03W\\xbcY\\x82\\xb2\\xe8A\\x0ekFYk\\x8e\\x8c\\xe0喜\\x1bR\\xe7J8\\xf3\\x1e\\xbb\\xc7\\uf854\\xa4I\\xc1\\x01Z\\xf9s\\xcb\\xe58^\\x18\\xe7^^\\x84\\xbe\\xa5\\xb2\\x8fw\\xca\\xe3a\\xc9lC4l\\xfe\\xc8\\xda1\\x9d\\xa36\\x8f7\\x89[GķBL\\xb1j%\\x9e\\x80\\x83\\xbb\\x1e\\xad#\\xdaU\\a\\xb6\\x04t\\xc1\\x8e\\x1c\\x8d>\\xc1\\xa54\\x80ؕ\\xfd\\x8a\\\\!}\\xae\\xf6\\xb0\\x94Q^\\xac\\xe7|\\x12\\xe1\\x12l\\xad\\x9b\\x9c\\xc5LX\\\"\\x96\\xa5\\xf9\\x1fP\\xa3/\\xe6\\xe8]\\xa0\\xda&M\\xeae^\\x88k\\x96\\xa3\\xb4\\x06\\xa1Q\\x03\\x05\\xc7\\x13\\x0e\\x84\\x007@\\xd0ꁔ\\x03?=\\xfdEt\\x96n\\xe7O\\xb5\\xf5\\x92\\xb4\\xf6?\\xbccU\\xdf\\x10ʪ\\xe1\\xc7\\xce\\xe8\\xca\\xd8\\xf5--\\xe8\\x04\\x19\\xd0;\\xc9\\xd0\\xce\\xcd\\xe9\\x05\\xce0\\v\\xf0f\\xead\\x01S\\x00\\xee}\\xe4D\\xd3E0\\xbe\\xaa\\n\\xf0z)n\\t#\\xf6-6۩\\xf6^\\x970IfG\\xa2M\\xf2C\\xc6fCn\\x8ct\\xab\\x9a\\x8eY|\\xb8\\xc6.,H\\xaa\\xa5\\x15\\x1b\\r\\x1b\\xb8\\xe6\\xc6\\xf4\\x8bv\\xce\\x17>\\xc8#\\x8d\\x1e\\\\M\\xfe\\x19\\x9d\\xf6V\\xe4C\\xe1\\xcb`f\\x88\\xf1\\xdc\\x01\\t\\xd2\\xd1[\\xc1\\x86\\xe7~z\\f\\xabq\\x89\\x1e\\xea흼I\\xd5yu\\xe2\\xe2j-:5\\xc4'\\xa6\\x93\\x9e\\x10\\x82\\xb9\\x02\\x8fĘ]\\xbe\\x17\\xe1\\x11љ\\x17\\x9eJ*\\xfe\\x1a\\x98\\xa7\\xa1\\x1d\\n\\\\\\xbc\\xd9{M{\\x88I\\xbc\\xf7\\xe0J\\x0eY\\xffW\\xa4\\xa5T\\xee\\xcc\\xe6\\x91Q\\xa6\\x86ɬ1y\\r}A:>ϫ\\xa6մ\\xfa\\x05h\\x89ıJ\\xda'\\x02i>\\x9b\\tN\\xe7Db\\xc8\\x12L\\x80\\x81ĊGf\\xed\\x04iqe\\x10\\x1e֚\\x9f~\\x05e\\x1et߯A\\xa2\\xe1ka*\\xa5%\\x9a?\\xaaYWI\\xa7\\x9e\\xf4\\x13\\x88W\\xf3\\x98\\x8aX\\x17\\xde\\xe1k\\x0e\\x93\\vv\\xc8\\x01ɹJ\\xae\\xf4\\xc7jD\\x9d\\xda\\xd4\\xfdtK\\xa7k\\xf0\\x01-s\\x01O\\xfa\\xc7J\\x83a\\xb1\\xda\\f\\xbbJQ\\xb7\\x84\\xd0\\uf04db?\\f\\x1b\\xa9\\xf2\\x82ٚ\\x80\\xaa\\x96s\\x81\\xec\\x0fp\\x16G\\x9c.\\xef\\n2x>'\\n\\xf4\\xa643\\xbf\\xb0}\\xe0\\xb3\\xc4\\xe7\\xa1߾\\xe5\\xba\\r\\xe6\\x14\\xb0\\xee\\x97\\xc2\\x1c\\x13\\xbb\\x95\\x91\\xfb\\bͭ]W%\\x80\\v)\\x03\\x98\\xb0P\\x06ذ\\xa1\\x88\\xf2\\xa4B\\xcct\\xc7\\u058bw\\xe0 $E\\x19v\\x8bB\\x15q\\x18c\\x9a\\x9d\\xb9\\xab\\x86\\x9a\\xf3D\\x10]^\\x98\\xd1o;\\x169\\x90\\x86\\xac>y\\xc6\\xee\\xa4t}6\\xd5X\\xfd\\xea\\x81y}V\\x9f\\x14d\\xa2\\xe6\\xe4\\u007f\\x8f\\x8dP\\x9e\\x10\\x85j\\x03\\xf3e\\xb4\\x15\\xc5ú\\xb8\\v\\x14K\\xf7U\\b\\xe5žrA\\x1f\\x9b\\x06\\xd9K\\x0fϩ\\xaa$\\xd0\\xd6\\xf9\\x9e\\xfb\\x1fz\\xf5\\x9d\\xa8?X\\xbd\\x1f-'\\x1e\\x95\\xd6b(ٴ\\u007f\\xf5\\xf1}\\xf2\\fA\\xa9H笮Fy\\x84\\xddp]u\\x85\\xbdV\\x00c\\xc9C\\x92\\x13a\\xe6;\\xc4\\xe1ar\\x9d~kJ\\x0e\\xde{\\xda\\bA/Y\\x8dm\\xf4\\x82I\\xae\\xeeTE\\xbc\\x18qO\\xe3\\xf0\\xabX\\r\\r\\xab\\xa4\\xe0X\\t\\x99\\xc5r$.K\\xfes\\x9d.:D\\xd10\\xf4\\x89\\x1c\\x80\\x9a\\x88C\\xb2&\\x9c\\xa3\\x8a4\\xf3(k\\xa1S\\x05J\\xab*\\xfc\\x96\\x00\\xa9\\x148\\xfe\\x93\\x11]\\x10\\xfa\\vެHE\\xa8\\x94\\xa8\\xa1V憐\\x80'\\xe7\\x89\\tC\\xea\\xdf\\x02\\x94B}\\xe9\\xe9\\xf3\\x91\\vɚ?\\xae#)\\xec2\\xa5\\xd24\\trk\\x97\\x9c#\\xae\\xf1\\xfb.nq_\\x82\\xa1\\xf8\\xc3B\\xae\\xfd|\\xb5\\x9de\\xa2\\xcc@\\xd2\\xee\\xca+yᔊ\\xc5\\xfd\\x83g\\xfc\\xf9\\xbeS빵\\xb3Ţ\\x9b\\xfd\\xabx\\x1b6C\\xeb\\xe97n\\x164\\xae\\xeb\\x8e8\\xb4\\xb1\\x82-\\x8c\\xf3\\x18\\r\\xc5\\xee?\\xec8 \\xdbwߟRW\\xb6E\\xdd\\x1c\\xcd\\xd6\\xdc6d\\v\\xa6;O\\x9d\\x8e\\x9f!\\x17\\bF\\xe5\\xcc\\x01\\x8a\\xc5s\\x9b<\\u007f\\xa2V̮'D\\xf7=\\xb4+\\xc0X\\xf9z9\\xc6\\u007f\\xaf?\\xb0N\\x1b\\xdaM\\x92t\\xbaF\\xba:~K\\xfa\\xbdx\\xbc\\xd8\\v\\xf5\\a&E\\xaa\\xa8\\xff\\xf0\\xb9BmL;rGc\\xe8{\\x810ŕ\\x1b1{y\\xc1\\x99\\xbc\\xffv,\\xf5\\x13F\\x04\\xe2\\x93\\xc6ǰ\\x02\\x1c\\x9c\\xfaI\\x14_\\xd6\\xfc\\xe0q\\xb3\\xa42\\x89\\xed\\x8c\\xec\\x84\\xcfe+\\xaa\\xe7\\xb0O\\xf54\\x86\\xf0\\xc6J\\xf5l>\\x19\\x05\\xbb\\xc7bRi\\x18hJɦ\\xfe\\x19\\x82\\xdd\\xe2\\xc2JI\\xb7Y\\x96\\xc3\\xf2Nm\\xf3\\x92\\x9fUb\\xe9\\x94D\\xa2\\xb4\\xe1\\xa52\\x13\\x8a\\x1c\\\".&G$\\xaa%ؓ6\\xba\\xaeU\\xf9\\xcfk\\xd79\\xba\\xc6\\xdb\\x14\\xb9\\x1d\\x1b\\xfd\\x9c\\xe1\\xef\\x8f/\\xb1\\x0fJt\\xeb\\xf76\\xaa\\xf8\\xf07z\\xfb\\xd0ک\\xde\\x06u\\xfc\\x91\\xed\\x14&<7i\\xf6\\xc63\\xda\\xf5\\xcfX{\\\"M\\xe2$%\\bm+e\\xa1\\xf4\\xd3\\x0e\\x13[;\\xebY\\xe9D\\x9f\\x13\\xb1\\xb2\\x83B\\xd3#J[\\x8aU\\xba\\x8b\\xaf\\x9e}\\xe7\\xddsg\\xde~\\x8b\\x11\\xa6*\\xf3ˠ \\xa9\\xb1\\xb9};\\x1e\\\\\\xd4Ԃ\\xafma\\x1e\\x05\\x8bH~n\\xc0;\\x87\\xfe\\a\\x13\\xd6A\\x18\\xcek\\xea\\xe9$\\x15e\\x8aXl}\\x9adi\\xa1\\v \\x9b\\xc0rw\\xbe\\xa0\\xe9\\xd6\\x0f\\x04\\xfd\\xd93\\x9d\\x92WrJ\\xf4井pb\\xb6\\xbb\\x8a\\x14A\\xf0z\\x87b\\x0f\\xb2r\\x16\\xa0\\xd3\\xcek\\x9e\\xcc'\\xb0N\\x13\\x93\\xe4(\\xf7\\x92t頓6\\xf3K\\xe6\\x93-\\xf6\\n\\x87\\x1b\\xa8D\\x10.\\xe9㝧>\\xdfyɞtv\\xd8\\x14\\xaeKWX\\x06J\\xae\\x02\\xea\\xd6\\xcb\\x03\\xf5?36\\xf0'\\xe8}&\\x9e{\\xa1h\\xa3\\x12\\xb1\\xe4\\x9c6=Ǟ0+@40f\\x00\\xb5y\\xd7\\xea<\\xd7J\\x04\\xea>T(\\u007f\\xc3%\\x85)Ĩ\\xab5\\x9d\\xd9͈ɤN\\xe0k8\\xd6\\xc7La(\\x8d\\x1d\\x0e\\x9c\\x99w\\xbd\\xaa\\xc8\\xc0\\xd3ܕ\\x9bg\\x0f\\xb0\\x8eb\\x14ݣ\\xee\\x1d_I[I\\xcb\\xf8\\xa8͐,\\x0e\\\"7\\xd7F\\xdb\\x05\\xad7\\b\\xcaO\\xd1ݴ\\x93W\\xc3_\\x81\\xa5\\x93\\xdc\\x1atj\\xb4\\xe7\\xbc\\xf5\\xf6iF<>o\\xde\\xfe8\\xb2\\xf0b.\\xee\\xc8\\xc4.k\\xb6V\\xa8\\xe5y\\xa6\\xeb\\x8e0z}8\\b$\\x96҇\\x8f\\x83܌\\xa7+S\\xd9#X\\xc5\\\\\\v\\xbc\\x98\\xdfv1L\\x06YmS_M\\xd4\\x13jF8\\xf5\\xba\\x90LƁ\\x80\\\"\\x01\\xa5\\x03\\x19`\\x9a\\x98q>5T\\xf4Y\\xfat\\xed\\xfb~\\x93|\\x91\\x8d .\\xec\\xc3\\u007f\\\\F\\x85i\\xce)-\\x8f\\xf4\\xa8D\\xbc\\t\\x15\\xf7,۸\\xeb\\x8d\\nMKXr|L\\xd5kA0\\xfeB\\x94G`\\x18zA!\\xce~s\\x0e\\x1db\\xc8D\\x87\\xc2]n\\xa9L]`\\n\\xfc\\xb8\\xc79\\x87\\xf7\\xccV\\x17\\n\\x12\\xc4\\xday\\xdd5\\xc4UQ\\xed\\n\\xef\\xa47\\x89\\xe4\\xc5;<\\xa1\\x83\\x01m\\xf7kM4\\xbc\\xa1f^_\\xe74\\x13牣\\xff\\x8b\\xb9\\xa4\\xbeJ\\xae\\xee~z\\xc2c\\x02\\x81\\fo\\x88\\xd9e3\\xab\\xcb\\fϙfSv\\xd6\\xf83h ]\\xf3z2 \\xa5\\xf0>2_\\xf6-,}h\\xbcp\\xf2%Wl\\xa5GR\\x0e|\\xea\\x14\\x8b\\xd9F\\xe6)%\\x1c\\x93KӶ\\n\\bp\\xa5K\\xadEv?\\xf1Z7\\xa70\\xa3\\x88\\xfc\\xf9\\xc3R\\x88\\x13\\x1aFWA\\xe1\\xe8\\\\\\x13Q\\xebldIu\\xca=\\xd5 \\x83\\xf5\\x05n\\bk\\xab\\xceFI\\xec\\xf4\\x13\\x9aBk\\x87]U\\xa23pZ\\x06\\x95ʊ\\x1ao\\xabJ\\xd4\\xcb\\ta\\\\\\xe3\\x93A\\xbf߬t\\x85\\xd0\\xd4B\\xa3>\\x86\\xf8r\\x9b\\x00T\\xfd\\xd7\\x05\\xe6l-'T\\xe9\\xdb>\\x9f\\xf3+>\\xcehrzw\\xa0\\xa8\\xe9\\xf2\\xea\\x9c\\xc8\\xd4z\\xa0n\\x9dg\\xa6\\x14!F\\xc3!\\x94\\xbb\\x9e-_\\xb5>D\\x15\\x00\\xa3\\xb3| \\xa5\\xa7\\x00\\xa6K\\x92\\xd8\\xcb\\x1c\\xc3d!\\xa6H\\x99\\x15\\xf3\\xf6H\\xe4\\x1f\\xf3\\xc4a.sHp\\xda\\xec2B\\\\a\\x01\\x9c\\x1c\\nQ\\xc0\\x89XA\\xf6\\x8b|\\xc7R\\xe56\\xee\\x8f\\xdf\\xc8\\xcd0\\\\\\xf7\\xd8\\x06]\\xe8nj\\x8cΨtX \\xa5\\x15\\xf5\\x83,,*\\x19\\xf0\\xcb%\\x99\\xa6\\xad\\xb4\\x17c=\\x8f\\xb6浨y\\x06\\x0e\\x16\\x95\\x86\\x93LfZ}\\x05\\xd13ѻ\\x9dG^\\xc0\\xb9:\\x05\\x1fY\\xb4\\x84\\x10\\xe6\\x1c\\x0e\\xe0PJ\\xfb\\x05\\ue2ba\\xdekv\\xac\\x96\\x81:\\x17\\x94\\xbc\\xdfx3\\x99\\xa0$;Gɑؼ\\xe8\\xe9ʋ\\x94rE\\xff\\x97i\\x01'\\x17OR\\xa8~\\x9brM2\\x90\\x80\\x82E\\xbe\\x1a\\xb7}#\\xe4\\x15\\xab<*\\x03\\x11=<\\xe1&^\\xec}\\xd8^\\x9b\\xa9d'\\x9c\\xcd\\xe2\\x85\\\"Xj\\x04\\xcb\\xd7G\\xfd\\x94\\x94$r\\xc1u\\xbb\\x8b\\xba\\x8f\\xa2\\xb7\\x82\\x1a9\\xe3\\x87B\\f|\\x95\\x02\\xd5\\t\\xf0\\x9f\\xd1$\\xbb\\xd2v\\xd68\\xbd\\xfc$\\xf0\\xb19\\xb6\\x96\\xc6\\xfcJG\\xaf.P\\x00\\x99\\xa1\\xbbT?\\\"ϩN\\xf0\\x1cW\\x05\\x9ff\\xd3\\x0e\\xc1ݤ\\xf5\\xe9\\xb9\\xd7$\\x8e+Τ#]\\u007f\\xf5\\xcdgl8rK-\\x98\\x97\\x83\\xa3>\\xf3\\xc17\\xd0\\xe1\\xcd)\\xb7\\xbaN\\x0f\\xd9\\xc2H\\xab\\xd0\\v\\x14\\xf4\\x9c\\xae\\x81s\\x8e\\x1e\\x17\\x8dHS\\x06TC\\x0f\\xdb\\x01_x\\xf3\\xc3:0`\\x0fb8\\x191\\xf8fU\\xbf\\xd9K\\xaaǬ\\xef|Fb\\xdbG\\xf6\\xffPmUv\\x15\\x02\\xa6]\\xfatA\\x13dȒn\\x90$\\x94<\\xcdB\\xac\\xd6\\xcc\\x15\\xcal\\xfa=\\xbc;\\x14\\x1e\\xafS\\xd7$\\x13\\xa8ۚ2U?R\\xf0>8\\xd0:o\\xb1\\x80!]\\xb1\\xe4\\xf9ܡ\\\"i\\x95z\\x8a\\x8d\\x13\\xb8\\xa1\\xee\\x99l.;\\x04L\\xab\\xa0\\x88̐\\x17\\xd9\\xe6\\x00m!\\x01\\xff\\x9f\\x9a\\xc5\\x16\\x80\\xde\\u007f[\\x83@\\xa0\\xd9\\x055\\x10>\\x187\\x12\\xe0Y\\xf2\\\"K2*Ȃv\\xd4x\\xa3\\xe2\\x90\\xe0\\xaf\\x1dQ\\xb9?.\\xd0\\r[\\x89\\xedP\\xa5T\\u007f\\xab\\xe5iy\\xa1x}\\xd9=\\x91\\x1b\\x93\\xadW\\x8c/\\x93\\x03~\\xc6\\xd5\\xf4C3\\xf6\\xfa\\xc4\\xea\\xf7\\xe3\\x1bX\\x95\\xf6\\xe0,\\x10xBc\\x12ZW8\\x13\\xabR\\x18\\x86\\xd8c\\xb2\\xf2Y\\x06\\xaaFHu\\v5\\x1e\\xf2w\\x94\\\\\\x12\\x1d\\x90\\xa9\\x99\\xf6<\\xba\\x01\\x1eaoC\\a\\x1f\\x01ˌ\\xe2l\\xdbr\\xb2\\xed[\\xf6`ða\\xfcT0\\x8d(\\x8d\\x84՞T㹆\\xa5*4<\\x00aUux}\\xc0\\xbeY\\xd8\\xee\\x00\\xfc\\xb5H\\xcf}_}.\\x80FF~\\xcf\\x02\\xac\\x93\\xa4o\\x8e\\x8a\\x86\\xdf\\xefU\\x85FR1\\x9a\\x13\\\\\\x94Ñ@b\\xfb!\\x0f\\x80\\x13LB(s\\xdf\\x1b\\x81c\\xa8\\x11\\x87\\xbc.q_Z\\xfcᝊ\\xd9V\\xda\\xf1G\\x11\\xca\\a\\x17\\xbd6\\t\\x87P\\xf7\\x12/;\\x97\\xb8\\x85ܢ+\\xa3\\xfd\\x85.\\xf3(Ud\\x16\\x16\\xf0\\x86v\\xf6r\\xac\\xc1\\xd5\\xc3\\xca|\\xcaI\\x91,[=~\\xafo\\xf0d\\xfa\\xef%\\x81\\x9d2!4\\x9fc\\xee\\xb6\\xc3=\\xb4\\x86\\xd2}=\\x17D\\xda\\xe0\\x1b\\xa8\\xffGs\\xcbӶ\\xd2\\x04^\\xc2\\xcc\\x02<\\xff\\xb6\\xcb\\xc2$\\x8c\\xc2R\\x9bu.\\x1eU\\x83\\x88y\\xb5ET4\\xb0\\xcc)\\x11\\xc1\\xf5\\x97\\xa8\\xe4f/K\\xb6m\\xa2\\x86\\xc9].ts\\xdc\\xe663)\\xb0\\x98+\\x1c\\x05\\xea\\xf0\\xf9\\xdeC\\xe8ݗ\\xbel\\xfb\\xfb\\xafO\\xde\\xd4\\xf5\\x9eW:\\x14L\\x8a\\x0f,\\xd2\\xe7\\x16ܻ\\x04+.\\x9f\\xfaZ}\\xf8V\\x8f\\xbc|\\x96\\x81\\xe38lX>(\\x85+\\x84s\\xe9\\x8f\\xcf\\x1a\\x9d_\\x18\\x9a8j\\x98\\x02p\\xa3\\xbd\\xcez.\\xeel$\\x91a\\xa2\\xdb\\xfb\\x06\\x10\\xa1\\x9f\\x82\\x80\\x8f9\\xdd\\xc9F\\xf00\\x87\\xab\\x01\\x89A\\xc8\\u007f\\xee\\x04\\xfd\\xab\\x1b\\xf1\\xb8$ql\\xfd/T/\\xe4\\x8et\\xd0\\x00\\x9c\\xc3f-\\x81\\xc2'\\xc9\\v 2\\xa0*i\\x19\\xa2\\xae\\xf3\\x11\\xb4\\v\\xc3B\\\\#\\xb3\\xb0!&H\\x9eb\\xba!\\x10'jQ^\\xca\\u007f\\xb5̋%DO$i\\xf2\\xe5\\x031V\\xa6N\\xc05\\x10J$u\\x04L\\xd0'x\\n\\xb1D\\x92\\xe9\\x1b<\\x85x\\xec\\x9c\\xcd\\xf7)$\\xe3\\xe7-\\xeb\\xa1\\xf3\\x95dms^hZ\\x9e\\xa8)\\x9d\\xcf!\\xde'ŸN\\x10\\xd0\\xd4|\\x97\\xdeU\\x90\\x80\\u007fW\\xdeUN\\x9b\\xc8p\\xad\\xb0\\x81\\xfa\\x03-\\xd6P\\xb3}\\xd7d\\xbb\\xd5\\xe3\\xdd|FŌ\\xbf\\x88\\xa7\\x86\\xca\\xe1K\\x9d\\x12\\x1c\\x93\\x97\\x82\\xce)\\x1c~\\xc7ݕ\\xea\\xc3\\xd66:\\x02\\xe7OKp\\x1a\\x1aª\\x90\\x96\\x1df\\xd3f\\x1aw\\fI\\x85DZ\\x17\\x80\\t\\x1d\\xea-\\x1bK\\xa0iSz\\xd2\\x01)\\xf5X\\x97D\\x87\\xc8oZGd\\xb2\\x8f\\xf4D\\xd5\\xd6\\xd0\\xe3\\n\\x82z\\x9eÀ\\x8a>\\x85\\xa6m\\xa1l\\x1d =\\x11\\xd0p\\x92\\x12,P\\x82\\xf1\\xb7\\xa0\\xee9\\xed\\x1c\\x9e0Vs\\xfbuh_\\xcb\\x1a\\xce\\xea\\xf1\\xec\\x01\\xe3\\x95z\\xf0<YѲˠ:\\x9f\\x97g!\\x0e$ѯ\\xa1]b\\x9d\\x1e\\xd0\\xc0`iZ%\\n\\xf6/\\xae\\x1f[\\x0e\\xb0?5\\v\\xe0\\x90\\xdb\\xe7\\x96\\u007fg\\xb8T5\\x14\\xd4X\\x9eG\\x9f\\x15iRʂ\\xb9J\\xfd\\x9e\\xc6\\v\\xb9\\x9c\\xcb+\\xf9\\xa6c)WC/ߟK|\\xda\\xd5b;.W\\xac\\x80\\xec\\xc8\\xd5AJ\\xb1r\\xa6U\\x9a\\xb7\\xcb\\xd2A\\xe2\\xa1\\x17r\\x8a_\\v6s\\xc3q\\xb5=.\\xab\\x1d\\x96J\\x95\\x0e\\x9bg\\xf4\\n\\xbeirڝ\\x9a\\xd44\\x953\\xd0\\xe0Q\\xcd\\x1ad\\xb7\\aA\\xec\\x87ac-\\xcd\\x18\\xe0M\\xd0\\xdb(Ȳ4bl\\xd5\\x13˻\\x953\\xf6\\x93V㣟#\\x06o\\x8f\\xe6S\\xfc\\xde\\x06\\n\\xc761\\xd3\\f\\xb2X\\xe6L%\\xe9mMN\\xc9龶@l\\x039\\xb2^\\xdf;Ҳ9\\u05ed\\x1b\\xe09\\xd8\\xdb\\xc3JC\\xccDa\\xe3\\x14Ɖ\\x9eȒ;\\x0f\\n\\xcf7u\\xbc9\\x1f\\xd6t-sM\\xb9\\\\Cd\\xa9\\x05\\x03\\xbe!A\\xbc\\xfda\\x1bI͕\\xed\\xe4V9b\\x05\\x03\\x8d\\xc1\\f\\xdb\\xfdX\\x99\\xa2zjsz\\xa0\\xce\\\\P\\xb5\\x18l%)\\xf3+\\x97^\\xacG\\xbe\\x9f\\\\\\xbf\\x96 \\xe8;\\xbdY?bs\\x90\\xcbq\\xffN\\xd3#\\x9a\\x16?\\x889\\xaf\\t\\x0e\\xaf\\xc0\\xf7\\xc6F\\xd2Z\\x8cae\\xa0;\\xd9\\x06\\xaaM\\xb4\\xa3\\vsI\\x97\\x12\\x1a\\xa4\\xe7\\x9a\\xec\\xb6\\xc9j\\x1dPG\\x11?h\\x87\\a*\\x88\\xfdé;\\x8fP\\xe9\\xfb@\\xf7N\\xf2\\xc2.\\x9fV\\x1b9\\xae0\\xf3\\x02'B\\x1c\\x9e`;\\x95)X\\a\\xdb\\f$v\\x163\\xe5o\\xecEB\\x97\\xc9U\\xb0\\xef\\x0fֵK\\x1c\\x95\\b\\x8f`\\xae} \\xd1\\xd890|}\\xed\\x97^W_\\xa2V\\f\\x84\\x97[\\xd4fpx\\xb8\\xcc\\xf1\\\"Q\\x94\\x83:\\xa1\\x88,\\xe0\\x9cpH\\xb6\\xa5h$\\x89\\xc3\\xea\\x8e{%\\xa2\\x13\\xa4uv\\xbe\\x8a-\\xf3Cm=&\\xa6\\xb7\\xa2\\xb7\\xa5\\xe5\\xba\\xf8jqp\\x8cj\\xeeAfWDNܱ]\\x86\\xbd9\\xceM˴p\\xdb\\xda>k\\bY\\x17H3ߦf\\x1dEJ\\xd7!\\xf9z\\xe6\\xf1[\\xde\\x16\\x8f~\\xc4}'ﻛT\\xdf\\x13H\\xc5\\x04m\\xe8w|\\\"\\xbc;C\\x95\\x92\\r\\xe1jm\\xf5C\\xd0a\\xf0\\x9c\\\\\\xbf\\xabȺ\\xd9\\xe2C\\x1d\\xc9!nԁ\\xd0\\x0fY\\x05Q\\xd7Iu\\xf7\\xfd\\xbb\\xfc\\xe7\\x99\\x16{\\xb3Y\\xbbYc\\x9443\\x94\\xbca\\xf9\\xb7Ƀ4\\xb3\\xb3v\\x18\\xb77\\xeeB\\x80\\xa6]\\x19Ǽ\\xb33<w\\x17\\xce\\xe6\\xac\\f\\xf7\\x8cJ\\xf1f\\x0fE\\xc7\\x100\\v\\x8b\\xfaU\\xb6\\x89\\x9f\\xd9+\\xc4,0\\xe7\\xe5\\xaaJ\\xedö\\x18[sщ\\xae\\x0fS\\x03\\f\\xeb$ʐ\\xcdCk\\x058\\xed$\\x18\\xe6 z\\x0f\\x98ۖ\\xd7\\xf5}&\\xc1\\xa0\\xbe]\\xc0@\\x0f\\xa7\\xfc\\r\\xa6\\x00\\xa4\\xdaAmm\\u007f\\xab\\x1aM@\\x11\\xfc`\\xe0qV\\xfe\\xe7\\xcf\\xf4\\xc1\\xe1\\b\\xb3\\xe3RO\\v\\xedT =䡄\\xb3\\x15V!z\\x13\\x91\\\"\\xf8*^!\\rǡ\\xec塿c?,\\x0f\\xb5\\xec\\x16\\xfd\\x1b\\xb31qY\\x11\\x8c\\x1a\\x15\\xedӇx\\x14\\xf79Z&DY}\\xd3_\\xc0d\\x82\\xa2\\xa1\\x16+fM\\b\\x89\\xb0*\\x1d{\\xfc\\x88O\\x82\\x9b7Q\\x9f\\x84\\xa5\\xba\\xb0\\xed\\xa3p;/R\\xdf\\xdb\\xd3\\xdbѐeIt\\x84'Lm\\xe7\\x91mP\\x9a\\xe6\\xca\\xfd\\x91ߝ\\xc9\\xf8}\\xa77\\xb8\\xdai\\xf5\\x89ݾ\\x1b\\xd6\\x0f\\xbe\\xf8fz\\xe4\\xdd_=\\xff\\xf2;\\xa8Ձ\\xa7\\x91o\\xfe\\xebL\\x8b\\x8d>\\xc4|\\x02\\x1e|\\xd1b^\\x90\\xcfr\\x1c\\xa5\\xe9:\\xb4\\xb0cg\\x87\\xbbw\\xef\\x92\\xcd\\xca_\\xb8DY\\xb2`>\\xd8'\\xe9q\\xeb\\x9d\\xd7\\xf7\\xabV\\xf2\\xf9\\xb1\\xff\\xe8\\x93!1\\xcdgo`\\xe0l:d\\xec$\\x05\\xc6G\\xe8\\xa9d\\r\\a\\x9a\\xff\\x13\\x06\\xa6\\xe5\\xf3\\xabŠ\\x9d\\xb4QT\\xa1<\\xaf\\x82\\xc7\\rr\\xe5\\x1dq\\xe8\\xf0ך1\\xd8NLE\\xe3J\\xf3\\xbc\\x96\\xe9Keӣ\\x9e@Z\\xe0\\bGD\\x96\\x97\\x1c\\xe6\\xbfo\\x90\\b\\xbc%\\xb1`\\xb3\\x10\\xca[x\\xe9R=\\x9a\\x85\\xb2\\xe8@\\x81wf\\x94ŀ\\xf2\\t\\xac7Eר\\xf5A\\xc4p\\x930\\x8f\\xa1<\\xac\\xec\\x86zp\\x11\\xba\\x17\\x86\\xdbe\\x90/\\xe2$\\xc4\\xc3\\xd6\\x11\\t\\x9a\\x1c\\xde]c\\x1b\\f|\\xa5\\x8bne\\xb1:\\xdbny-/\\r\\xfc\\xa8F\\xad\\v1\\x8f\\xad\\xf59!i\\xb00\\xd4\\tP,\\t\\xe7*^d\\xc6\\x14\\x8f\\xca\\xd6T\\x96Xk:\\\"Y\\x1fc\\x04\\x97#Qӎ\\x18\\xf4@u\\xc1w\\x00\\xb2-\\xd6e\\xe2Ʉ\\xaee\\x88\\xae0\\x19iKrt\\xda)\\xc65\\xa4\\x89\\xf9)S\\bAnh\\xed\\a\\fx\\xe6@R#a\\xba\\x02\\xafk\\xcfg\\xd8i\\b]ضN*\\xc7a+\\xfd\\xaf\\xb7\\x92=\\xb0\\x92\\x05[8\\x87Ws\\xcaR\\x12]|6\\xfe\\xb6\\u007f\\xa9{\\x99\\xb4\\x14\\x1d\\x8e\\x9dm\\xcb1\\x11\\xf5\\xe4\\xb3T\\xa7㺓}ml\\xe5\\x99:\\x83\\xf9\\x1d\\xb4٧\\xc8%K\\xb8g\\xfb\\x8c\\xfcY\\x16ٟ\\xce˿\\x1a\\x19.\\xdb6_\\xbf\\x9b\\x90+\\x1f|\\x01\\xd5[h\\xad\\x8e]\\xae\\xdc\\xc1\\xd0|\\b\\xd2O\\xa7\\xe5\\\"\\x84k\\x16\\x9e\\x03\\xe7\\xf9\\xa6\\xeb\\x02\\x8dǤ\\xf4\\xe8\\x1d\\xe1̠\\xae\\x99q\\x85W\\xef\\x03\\xa1\\xbe\\xf4[KB\\xad\\xa6\\xbbsF\\xb5\\xb9[\\xaa\\x1bo#\\x9c\\xbc\\x13\\x16\\xb6\\v\\r\\x97z\\x9e\\xcdd\\x83:\\x9dˌ\\x0e\\xbfyQ\\r\\x14hB`\\xe6d5\\xf5\\x1b\\x87\\xeb\\xc3\\r\\xaa\\x1e\\xac\\xc7I\\xd9b\\xae\\xfd\\xfe6T\\x1c\\x16>-\\xcb\\xdbi\\x1e?\\x1bE\\x97\\xbf\\x93\\xfakB\\xeb\\xa6\\xf0a\\x11o\\x8d\\x1d\\x16\\xab$\\xff\\xae\\x1cۺRW\\x1e\\xab\\xb3z\\x14$\\xfe,\\xfa\\xd2h0X\\xd5\\xd61!!ܟ\\x9b\\xb6+^\\xf0wz`\\xb23^2\\xe50\\xdc\\xc8\\x1c\\x8c\\xebC>\\x893\\x9a\\xb2\\r\\xaby\\xe5*\\x96V\\x04*8\\x80O6\\x0f\\x87\\xa9+W(\\xeaq\\xbb\\xd7Gt\\xff\\xf9R\\fu\\x0f\\x19,\\xb3Ȯ#\\x1cݓֳ\\xea\\xaf\\xfdi\\x835?LF\\xdeu\\xaf\\xaeR\\xb0\\x0eIp\\xcfat!2\\xf9̠\\x1f\\xe8U\\xb7\\x17O^\\xcc.\\xed\\xb1\\xfa^\\xf2\\xf9\\x92\\x9e\\xfb\\xd7\\x1d\\xfb\\xd0?\\xb0\\xef\\xeb_\\xb9\\xd1\\x10\\x98\\xd3\\rS\\x12\\xb1\\xe9%>\\xcb)y\\xec\\x02+\\x02u+`\\x1e\\xee\\xe8\\xf3\\xcb\\xe4'\\x042\\x8b,\\n\\xa1C\\xe8\\x8do\\x16g\\xa0\\x9e\\x8d\\xcd%w*;\\xf3\\xce\\xe0Wy֙\\xc8\\xce׀r\\x81[,\\xb5Z=~^4\\x91^\\xa9\\x1ciy~(\\v\\xf5\\xb7t\\xbb(s\\x93\\xae\\xc9G\\xb3\\xc8(\\xa2\\xa3\\xfaZ\\xaa\\x15\\xbe\\x1a͏\\x9f(\\r\\x84D\\xe7Z\\xc5\\xeda_\\xd0\\xe4\\xb1\\xeaQ\\xeaxNf\\xb6F/\\x12\\n:\\xd4T\\x9c\\r\\x9fѧ\\xbd\\xf5\\xc2n\\x85\\x19\\xa1\\xeeU\\xf5q\\xc9\\xfb(\\xb5ܦ\\xfa\\x929\\xdf0p9\\xb70\\x84\\xc0\\xf9O\\x90\\xedYA5O\\xeev4vQ\\x0e\\xebr\\x8dB\\xa74\\x067\\x95\\xa2\\xb8\\x972xn\\x00\\x0f\\xbf0\\xaeL\\x161\\xa5\\xd0R^\\xb1\\x11\\x92k}\\xe9\\x9aA\\xd4\\xffy\\x81\\xeeP\\x14\\x03\\xe6\\x0fb_\\xa9\\xa3\\x8f\\x80\\xb7~\\xc7#\\x8a|2\\xed/MW\\x8c\\x1c\\x88\\x16\\xbf}\\xac#\\xb4#ӧ\\xf3\\x85z\\xe7\\xed\\xe1\\x93\\x16\\xac\\xb4\\x13\\r\\x0f\\xafb/\\x12Z[\\xf8+\\xc5OlL\\xc2_Sd\\x03\\x05\\xef\\x84\\x16\\xa7\\xfa\\x88]ӆ\\xa6\\xadԴ2\\xc1\\xf5\\xd5Cdm\\xafZkZK\\xb2\\xb9\\xcd\\x05\\x0e\\xbcf\\xab\\xb5\\x14&\\x0fC\\x00\\x8e\\xb7Z\\xd4}\\xf7(\\xd2\\xcc\\xf3q\\x8a\\xb0\\xb3\\x9a\\xcf\\\\\\xf7ǐn\\xa2\\x9bOf\\xb5\\x88'\\xcf/\\xa1\\x9c;\\x80x\\xb5\\xa4\\xd5J\\xfe\\xc5N\\xb3\\xc2{\\x03v\\x04\\xf0\\x0es+\\xf6z\\x16\\x8fV\\x1b_d\\xaf\\xd2ʖX\\x1f\\x9b\\x1c\\u007f_ ]\\xf9\\xa4{\\x8f\\xf2\\x9b\\xfdʂ\\xde\\xeb\\xd2a\\xf1\\xf3R\\x8a\\x891\\xf0\\xf8\\xc5\\xe2\\x1a\\x9d\\xb0\\x1d\\x11\\xec՚\\xdb\\x15\\xe1\\xbdVq\\xeb\\xb0e\\x90d\\xb7Xm\\xae\\x15x\\x85\\x91ʁ\\xe7R\\x83\\\"\\x1fv\\xaf\\x89\\xef\\xea\\x1aq\\xa9\\x9c\\x85\\xcb\\xd3©}gy3\\x11cL\\x18.\\x9a-\\a\\xaf\\xf7\\t1\\xa8xi\\x05\\xf5R#\\xdc\\xef?\\x9b=0JV\\xb2\\a\\xaaZɑ\\xecr\\xddY\\x15\\x9c\\xcbO\\x889\\x87\\xc9\\xf3\\x06\\xd7\\u0558[\\x9d\\xe0\\u007fjk\\x80\\\\\\x96\\xfb\\xcf\\x19\\xab\\x9f6Iu\\x150\\xc3-Y>\\xc2l3\\xb1y\\x92@\\x96\\xf2\\xb9\\x8f6\\xf2a\\xbe\\xef\\xcc\\xe1oKw;`\\n͈D|R\\x9d\\xb6f&\\xceb<\\xf9O\\x16\\x8c:`\\x81\\x16N\\x96!R\\xac)f\\xe4\\xfe\\xb2<T\\xb3\\xb7\\x811Ƶ\\x03\\xec\\v\\xbcS)_?\\xbe}rQ\\xf1qA\\x9a$'\\xf8e\\xf0\\x84\\xbbYg=NU;\\xb7\\x8e\\xac\\x9f\\x9e\\xff\\xcc\\x04\\x9d)E\\xb2\\xfc\\x13\\xc5M\\f\\xc1\\xfbdb\\x9cI\\xfd\\xd4b,W\\xb45\\xa3\\x96\\xf2V\\xb2\\xf7\\xad\\xb9'\\xf1\\xbe\\x85\\x10\\xed\\xef\\xc7\\xf9D/\\x9a\\x1b֚\\xa1\\xbdK6.\\xb0\\x1c\\xb9k\\xac\\xcfb~[Y\\xf0\\tB\\xa2\\xa3\\xdf\\xe3q\\x12\\x06\\r\\xf9\\xac\\r\\x0f\\xe7\\x13\\xd9y\\x82\\xbc\\xc8qM'(\\xbecu\\xe2H\\xe5\\xee\\xa4C\\x9e\\xdav.\\xd4HT+\\u007fQc\\x88\\xfe5\\x18\\xc2}\\xe9n\\xfa\\u007f\\xeeG\\xd5w\\xee_\\xceP\\xcfE\\x8a\\xc15\\x03\\xb2mI\\xf5\\x13LI\\xcd\\xe0J\\xcb\\x1d\\xa9z\\xaf\\x95\\v\\xcag\\x9f\\x125\\x01\\x15q\\x90w9\\n\\xed\\xe7N|]\\r\\xe0\\xcf%\\xd9\\bk\\xe4\\xcc\\x05J\\x9c\\x11F\\t\\x94,q\\xe4\\xb14+\\xfd\\xaf\\x03\\xb2|\\xfdu\\xaf\\xa6D\\xe5\\xcd#\\a0\\xa9\\xb6ށ\\xe8ы\\x1f_\\xac\\xa6/on\\xadT+s\\x9eDV\\xe7{咾\\x93$o\\xe73\\xe7\\x97\\xe3އ\\x95\\x02\\xdd~\\xdc<\\xe2T\\xafV\\xdeꟼE-YMZ/\\xd8E\\x9b!\\x0e\\xa0&\\x15\\xf5\\n~\\\\\\r=\\xa1-:\\xf5L\\xc0\\xa1\\xe24QS\\xcf\\xd7|ڛ\\xbd\\xa8\\xb7@\\x9c\\x9ev\\xa9\\xfa\\xbe\\x94\\xc3Lc\\xee~\\xd6άw[\\xe5\\x18\\xf5_\\x12|Lܑ\\bE\\x90./`g\\x19\\x13\\xbc\\xbb\\x9d7\\rc\\xbc\\x9dپ\\x90\\xfe\\xb5\\xc62oG&k\\xd57NGz \\xad\\xce7L\\xa3\\xd1\\xe1hK\\x9f\\xf2|x\\xb0\\x05֧\\xc2\\x13\\xe2IS\\xc1b\\xa5;7&TZ\\xe8\\x0e9˹\\xf0\\xf0\\x80\\x87\\xdfc\\xee\\xfa\\xf2\\xf6\\fW\\xd0\\xc9\\xf2ei\\xf1\\n\\xb1\\xa0Z\\x8b\\x19\\x9e\\x98\\xdb\\xfb\\xeb\\x13\\xac8Z\\xbb[\\x93\\x95\\ak\\xd2?\\x8d\\x8d\\x96l\\xc2S\\x87\\x81+\\xeeߗ\\xe75T6]\\x9eC>\\x81\\x02$\\x01\\xf9\\xb9\\xd0\\xc7v\\x00\\x8dE\\xab\\f\\x8b\\xe6\\xec\\x02vĢ\\x9b\\xe0m\\x12eZ\\xa4\\x94\\xe2\\xd0nDf\\xaf6_\\\\ZWj\\xe1Ӑk\\xba\\xebH\\x96\\xf5 @\\xa5c\\r\\xf8ٗ\\xf5\\xc6\\xe0g\\x9dkO\\x12\\xc531\\x01{!\\x85\\xe2\\xe4\\x05\\xb7\\xdbmP\\xae\\xf8\\xdc\\xf1\\xbdx\\xb8\\x8b\\xc6:\\x83\\xed'L\\xfc\\xb8?Ѵù'rZ|%\\xf7\\xabhJh\\xa9\\xf2;\\xac\\xea\\xf7\\x13\\xfc\\xaa=(U ʠJ\\x96j\\xac\\b\\x85)2\\a\\xc1\\xf4f\\r\\x14\\xe9\\x14\\x0e\\xa9\\xe7H\\xc7\\xc7e\\x18\\x95\\x92\\x91K\\x8b\\xd0\\x10/\\x8e\\x1b\\xe2\\x10\\xb6\\x16t\\xabʑ\\xb6\\x86\\x15ִ#\\f7\\x17\\xfd[=o\\x00ǋG\\xcb\\aW\\x0eԲ\\x9f\\x90\\x98Q\\x16\\xe4I|\\xfb\\xb8\\xbezx\\xad\\xb6u\\xaaxb\\xa7X<\\xb5{L\\x16$9_\\xe5\\xdf\\xfb`\\t\\xe9y\\xfe4d5\\xcb{8\\x18_t\\xa4}\\xa8ԇ?\\xa8ה\\x90\\xd6\\xdd\\xdd\\xdcGZc\\xecc\\xd5\\xd3}\\xd0o\\xe0T.\\xa7\\xf8\\xba\\xe6\\xe43.\\t\\x90G1U\\xfd\\xeee\\xb5\\xb9\\u007f\\xd4C\\x85ko9\\x87k/\\x15\\x8fI\\xc8fv\\xea[\\\\\\x91pD:\\x85%i0\\x042\\f3\\\"ev\\\\\\xe9\\xfbI\\n\\x0e\\xb8UD\\xea`\\xcef\\tM^\\xd8\\xc0n\\xbeJ\\x01K\\xb7%\\xf3}\\xb4Q/\\x83_ܣ_\\x92k\\xcf\\x02\\x8e\\x93\\xac\\x97\\xe7\\r\\xa1\\xce놬^\\xb1\\xe4\\x95\\x01ڧ\\x03P\\x1bDud\\xa1B.¦\\x88=ͳ\\xb9E\\t\\xb5\\x14\\x9bv\\xa4\\x95W\\xd3k\\x05X7\\x83\\xaf\\t\\xd4\\xe9)\\xedd\\x1dP\\xb1V\\xb8{\\xd1\\xd8\\xf7\\xa3֖\\x8f\\xb68\\xc3\\x1d#\\xde\\xd9~\\xe6!\\xc64\\\\\\xc0C\\xdbBF\\xd3\\xc1\\xae\\x01.\\x86\\xb7\\\"-k\\xa7ev\\xb4= \\xd1h\\v\\xfd\\x15\\x1b\\x1e\\xbf\\x06\\x1f\\xf6\\x9cA\\t\\xe7%\\xf4\\xfa\\xf2\\xa3\\xc5\\xd3Y\\x90\\xaf\\xd2r\\xa6[AMp\\xe5,r>\\x1a4\\xd6\\xe7\\xf2\\\\\\xfe\\x9cSB\\x11\\xe5\\xd4\\xc5\\xe7\\xf6\\xa5\\\"c.s\\xb3v\\xf6B\\x1b\\xdc\\xce\\x15\\x95m%)%\\x03)\\xe6\\x95\\x04n,^\\fB\\x8a3\\xb2Y\\xdb@/\\xab\\x9f\\xb8\\x05\\xe0\\xc8K\\x83}h.U$\\xad\\rp\\xc2\\xc5\\x18t\\xee\\x1eŤ\\xf4\\xc5\\x18q\\x9a\\f\\xb3k\\x92\\x03\\xc9B\\xf7\\f߂\\x99S\\x97\\x1f\\xe8\\xfe\\xe5\\x02\\x81]\\xd6\\xda\\x10s\\xf1O\\x94pgo\\x15.\\xb1!\\b\\x91\\xeaP\\xbf\\xdbHbI!\\xd5b`Ea\\xdf\\xe66#Œ|֫\\x1a\\xa5\\\\e\\xd4L\\xd4*\\xaa\\x90*\\x1d\\xea\\x92\\xf8\\xb5\\x9ac-\\x00#W\\x03V1\\x99ZB\\x19ԑPyT<\\x1an>\\x1b\\xc6c\\xefs\\xb5i\\xbf\\x03)?\\xc0\\xa3Ȋ\\xe0\\x93\\x1a\\xc0>\\x95\\xe7\\xc6&{_\\x88\\x90!\\\\\\v\\x8c\\xaaH%\\x17\\x0f\\xb0a\\x89{\\fk<\\xe8\\x1f\\u07b5\\xd1\\n]p}j\\xd6\\xd5\\f\\f\\x97\\x98\\xae\\xa4\\x81%0\\xe8\\v/\\xdaV\\xaa3\\xb8\\xa0\\xccj\\x00\\r\\f]\\xf1H\\xc8到\\x9a\\x90\\xfaݙקks\\xb2)\\x82\\x9fVEK\\v\\x1c\\xc6\\xd9\\xefP\\rC\\xd7\\x1a\\xdagb\\b\\xed\\x1dD\\xe2W\\xd5(aPn\\xb0\\xb69\\xb5&s\\xf9\\xb0\\xf2\\b\\n\\xc7\\x15*\\xe1<\\x88ɸ[\\xa2X!\\xd9\\x108@\\xffaa\\xe4\\xb7]\\xd3O\\xf0{\\x932\\x02^\\xb0e\\xc1y\\x86\\xd4\\xe1h\\xdbFU\\xc0\\x97\\xee\\\"x~\\xb0l_f\\xc7\\xe9\\xcc#:\\xb5y\\x04'\\xfc\\xe7\\nQ?\\xb0\\r\\xb0+\\x03\\x96ש\\xadY{\\tH\\xf5 \\xa7\\xf3eՍ\\x14;\\x89\\xadT$\\x89\\xa9m\\xe3C\\x13\\xff\\x8exT'\\xdcl\\xbe\\x90/g,\\x12\\x8ai\\xa0&\\xb6\\x1c\\x90aN\\xe1\\xb7\\xef\\tС݆\\x178n\\xaco9$\\x9c\\xa8\\xe41\\x89\\x9e\\xb6\\x18\\n'\\x1c\\xf8\\t\\xb8\\xd0\\xde4\\xbf\\xac\\xa1\\xc0\\x8e\\xcbb>.\\xd9?'\\xf4tkM\\xef\\x81\\xc6\\xe5\\x9a_X\\xde\\u0085\\xb6\\u009b\\x18\\xe9\\x9e\\xddi\\x8a:\\x13\\xcbe\\xbf`8\\x13\\x95\\x0e\\xb4\\xf6\\x91ӵ\\xab\\x8b\\x99\\xf7\\x8c\\xca\\xf4\\xbeU\\x0eNg\\xa3\\xfaf^\\x93\\xf3\\xbc\\x99ڋ\\x80\\xa9\\x00\\xb3D\\xa8热\\xf4r\\xee\\xeb\\xfe`\\x94Zl.x+\\xa2\\x17\\x96(\\xe2^ɂ\\xb4Ј\\x0fغ\\x99\\xf5\\x8e\\xc5\\xffQ3\\xd56RE\\xa3\\xa4\\xb0x\\xf2m걣\\xeb\\x02\\xbb/\\xa6\\xe6\\xc3#CN>\\x8350\\xb1\\x8e\\x81\\x1f\\xca\\xf1<O\\x9dL\\xfbr\\x89\\xe6\\xb3\\x0f>x\\x92\\x9e\\xeeq$y\\x0f\\aV\\xfa%\\xd1P\\xe7\\x90[\\x15\\xdc\\\\Ō~\\x12z\\v\\xe18\\x05D\\x91\\xc2U\\x86\\xda3c\\xdb s\\xba9\\x0e&\\xbc\\x935=\\xaf\\xab\\x9a\\xc8\\xd1+\\xb5@\\xb2\\xa3\\x8a\\x11\\xcb{\\xb5\\xb3\\xef\\xa9\\xd7Y\\x05\\xd0\\xff\\x1b\\xd4\\xd1\\xed\\x83FP\\xfb\\xeb\\n\\xa6\\xc0\\xae\\xb1\\xf6\\x8e\\x8b\\xc5\\xcd\\\\.\\x9c\\xb9\\xa90\\xa9\\x18\\x1b\\x84\\x1ep\\xcbvش\\xc2o1;(ޘО\\x17\\x92\\xf2\\x9c\\xeeb-\\x94\\xb2\\n\\xa6\\xa8\\xe6{\\x06[h\\xd3\\xe1\\b\\xd3u%\\xe4K\\xd3\\u007f2\\vv\\x18f\\x8b\\x0f\\x82\\x8f\\xe6\\x88\\xc2\\xf5\\xcf\\xcf\\xf9mК,\\x1ex\\xf3ݶ\\x025|\\xc9W\\xf1\\xf8\\x8c\\x05\\x8f\\x9f\\xef\\xcc_c\\u05fd\\xba\\x18\\b,c\\xcc\\u007f\\xf2\\x83\\xf6\\xac\\x1a\\x9f\\xf82\\x17\\x8c\\xd9\\xe7\\xcd\\x1c=\\xc7\\xcf\\x03\\xbbV\\xa9o\\x97\\xaf\\xa00J\\an\\xa0\\xa0+\\x95G\\x8a\\xb3\\xfa\\xd0\\xf0\\xe52[\\xe1=\\xb4[\\xbb*\\x81T\\x0fߔ n\\xadV\\xef\\x83֘E\\xb51pM$:\\\"\\xa8\\xdc\\xfdl\\xea\\xa2x,CD)\\xa1ؠ\\xc1B\\x0e@\\xedIɶo\\x992$\\xb9H\\xcb\\x03kg\\xe4\\\"\\xbc\\x9e\\x89\\xa6^J\\xf6W\\xf2N\\xa4X([NB\\xedF\\xf0=ٞ\\xb68#_\\xe9\\x8fe\\x9ck\\xed\\xe0\\x96\\xf8\\x87\\xc6R\\xea[\\x93$\\x18ovML*\\xdc\\xe0\\xd6\\xd9\\x02\\x03\\xedNķ8?ߧ\\x811\\xc9\\x16\\xe8/j5 \\x97\\xe5(S\\xb7\\xe5|\\xe9\\xf9\\xa9\\xff\\xd0wEP\\x85\\x1f\\xa9[\\xe0\\x83\\xe0\\x89;x\\x16\\x03\\xe4)\\xceY\\xdaa6T\\\\\\\\L\\x86\\xf62\\xb8A\\x87\\x15a\\xc5ǂ\\xbf=41qsd\\xf4\\xe2\\xf9\\xf1\\xa1\\xebc\\xb1[\\xe7\\x93\\xf1\\x8b\\xcfj\\x86\\x04\\xd9XA6w\\xe5LLA\\x12W\\xfc\\xa1^Z\\x1d\\x02Y\\xc4\\xd5~\\xed\\x1b$\\x89\\x89\\xd0\\x12`}\\xab\\a\\xdeQ\\xa6x\\xb7\\xdf ~v\\bϙ\\x14\\x8a\\x06cP\\x94_\\xdb\\xfb6\\x18\\xf0V\\xdf\\x05\\xa4\\xb5#\\xecm\\x1c+\\x88\\xb9\\x12N\\x96\\xff\\x1937\\x90H\\x01\\xff^[c\\xc4\\xc6\\xcb\\xcc\\xe4R\\xb5\\x99)K\\xa5T\\x9c\\xd9l\\x15\\x03\\xcd\\x012+}\\xe5\\xf2F=\\xb4\\x16\\x06\\xfa\\xa9\\tӌ\\r֊p[EU'䀴\\xc0ƥ\\x1e\\x9c\\xf5\\xc3$\\x8f\\x89\\xcf\\xef\\xae=\\xd2\\x1d4\\xf7'A\\xce妅j\\xf7\\f\\t\\x84\\xf9%\\r\\x05\\x9fDt\\t\\xa6\\x9dV\\x83\\x0ef^\\xe1)!}\\b/P\\xcf\\xde\\x1aQ\\x9d\\xf9C\\x85y]R\\xb4\\x11mF\\x91-8\\xa4PV\\x9fB\\x89\\x1a\\b64\\xa4%\\x9a%-\\x85\\xaa\\t\\x05\\x9fx\\\\\\xed\\xd4/\\xec\\xe6\\xb7o\\x91*\\x8ex{\\xac\\x84\\xe2\\x88UPO\\x90p\\x1d\\xc57i\\xfcfW\\x1f}\\xa7\\xc6\\xf4(Y\\x92\\x11\\xbe\\r\\xaf\\xe4\\x1an\\t2\\x00\\xd7\\x1d{\\xa5\\x98>_\\x89\\x8e\\xc2k\\x98\\xb7K\\x01\\xa5й\\a\\xf8\\xdc[\\xc8\\xcdB\\x1b@L3\\xe8h\\xd8W\\xff%\\x04*f\\xb5u\\xf9\\xa0\\xbfZOW\\x82k\\x87\\xdaK͎\\nݬ\\x16d\\xcb\\x03rc\\xf1\\xa8\\x16\\xf5i\\xd9g\\xab\\xbf\\xa8\\\"ܗQa\\xe0΅?:\\x9d\\xd9&1\\x18\\xf0\\x83\\xb1y\\x8cf\\x9a\\x90\\xc4.g\\xd3ހ\\x04\\xaeǭ\\xda'\\x10\\xa3\\x86\\xef\\xd6\\xee\\xfdIl?\\x89DW\\xe8\\b<\\xa1ϡ\\xc5R\\xaf\\x9bO\\xb8\\x18\\xe1Ǖdg`\\b9\\x16\\xa1Q\\a\\a}\\xc1\\xa5\\xe6c\\x98\\x9a7\\x1d\\xf4\\u007f\\xca\\xeb\\b\\xdaXJĒI\\xdd\\x06\\x0fHg\\xed9\\x14Z\\xbdϊ\\xe8A\\x94ApmXaS\\xa4\\\"\\x95=\\x96\\xedŐ\\xb4\\x128\\xe3\\xd9$\\xee\\x86\\x1d|\\xben:|\\x96\\xc36v\\x03\\x84JĎ\\xfa/u\\x1e\\\\y\\xbf\\x01\\x98\\xdd\\xdey\\xc7\\v\\x9d4\\x1b^\\x93\\x02jJ٬\\xa4N\\xbe\\xe7\\x0e\\xd2oX9B,\\x11E\\x88\\x1ettzw2I\\x0e\\xe08\\xa7G\\f\\xe4\\xd6\\xd6\\xfd\\xff\\x8f_\\xea\\xed\\r\\n%\\x8a\\x84̛\\xe4\\xa5\\xe3+\\xb7\\x00\\x83J\\xb1\\xbb\\xb1\\x92\\xe3\\x8b\\xd9\\xe5\\xb5\\xed|\\xb8\\x8dn\\x1f~]\\x95 [\\xfeA^\\xaa\\x16z\\x03>okO\\xe0P\\xf6%s\\x87yG\\x04\\x86\\xd9$y.5!ͷ\\xa96\\xdf\\xea\\xeb/\\x8c}E4C_\\xd1.\\x0e\\xa8\\xc4\\xecQ\\xa1\\xb7\\xfc\\xc6y\\xaa<Z\\x11.Sf\\x94\\x8f\\xc9BHK\\xde\\xee\\x97HI\\xefs*\\x94S\\xa3>M\\xa3W;\\x15Z8\\xad\\xe8榦\\xbd+<َ\\rrT<\\x83\\xc8Z\\x1c\\xfckը\\xddj\\xa0\\xbd\\xab\\x9c(\\xf8\\xe8\\xc0hQ\\xbex{ђ\\x81@\\xcfQ[\\xf2\\xd8^\\xd4\\v\\x0e\\xe3\\x98V\\\"4\\xdeS&\\xfd\\x06\\x10\\xc0\\x92\\xd8:\\xb5[\\x19\\xc0Ӹ\\x15,\\x03\\x95wݙ\\xb8\\xaf\\x8fs\\xf8%.\\x97f\\xe9\\x92\\x17&}v\\x88\\xf3df\\x8d\\n\\xa5X\\xf1a\\xfc\\x80ï߬_\\xe8\\xfb*\\x87\\x83\\xf1)\\xb1p\\xeeDi\\xc3~\\xaeڳ3\\xe3\\xb0p\\xab\\xa4\\xa27tY\\xf9n\\xde\\x1e\\xc5\\xc9\\xebەU\\xc7\\xe3m.!&\\xa1\\x85\\x9a}\\x9e\\x8d\\x9f\\xa62\\xc9;\\xed\\xda6\\xc3\\xe8\\x8e\\xfd\\xa7\\x879E\\xf5m\\x96\\x10 ~A\\x0em\\x1e\\x8a\\xc1-N\\xca\\xc3,\\xe1\\xe1\\xa05\\x870\\x9b\\x18N#u$\\xa3;\\xec\\xe2\\xe7-\\\\\\xeeb\\xb2HC\\xe5[LC\\xa4\\xd4\\xf6⁃\\xe9N\\xb1\\x9b\\xdbL\\xfb\\x84\\xceP\\xcf[w\\x99\\xac\\xd00\\x81XF#7\\vt,\\xe3\\x19\\xa7caLA\\xcd\\xd78 \\\"\\x8fF\\x95\\u007fOk\\x96\\xb1\\\\\\xf5a\\x92\\x05\\xdb6\\x8fsN\\x00HB\\x97\\xec\\xc2[x\\x1aH\\x98dP\\x9b\\xd7\\v1\\xad<!jpg\\x89q\\vr\\xa6i\\xe5\\\"Lm\\xe4E\\v֥.Wx\\x03D\\xd73\\xd4\\x187\\xc8\\rc\\xc9ֱ\\x84\\x8e\\x1b\\xa0d<\\x1b0\\xc4\\r\\x93m\\x1bo2P\\xc4\\x1f\\x02\\n\\xa6\\xf2\\xb8\\x04g\\xb6Hc\\xe3B~\\xad\\x97.\\xaa\\x91=*Mr\\xea\\x1a\\x19=\\xe6\\x19\\x92\\xfa8\\xb0\\xc5@\\x9en\\x88\\x1012\\xf2\\xdf\\a\\x06^\\x9d\\x9c\\x8f\\x86I\\xf5\\xf9;\\x95\\x89\\x8e=\\xe0\\x0e\\r6\\xa0\\xd5>\\t\\xa8\\xc4\\b@\\x96\\xd9\\xc3#\\xf2û\\xc4&+\\x82\\x00\\x83F\\xe6\\xe9\\xc4_\\xbf\\x126FC\\x11v\\xf5\\x1aY\\xb40e\\xa5\\x11\\r\\xabk9\\x83W\\xea$\\xfc\\xae\\xd98\\x98\\xd0\\x16\\bk(\\xfb\\xb4 \\xe1\\xb6(E{\\xaaZ\\x9ds%\\x84\\xa2\\x9bH\\f\\xffD\\xcf` \\xa1SC7B\\xfd\\x1e\\xe6\\x810\\x15,\\a\\xf2\\xdcm\\xdd{d\\xa0H\\x19A`h6\\x0e\\xc7c)RWMX\\x82\\x9aS\\x95\\x89O\\x01\\x02\\x82\\xaemX\\x89C6\\xc6\\xec\\xf9}\\xe1\\xef\\xd4\\xf8\\xbb\\xc8\\x16\\\\\\x1c\\xa8g.\\xb8ڳD\\x99\\xb8\\x87T\\b\\xe8\\xe2qL\\x05\\xe4\\xf8\\x90\\x9f\\x9a\\xd5%x\\x00\\x00Y\\xb1\\xa3S\\xfd4\\xc3`3l\\xa3\\xa6\\f\\xeb^\\xb9\\xb6\\xa93\\xe9\\xe3EJ\\xd2\\xce\\xf5\\x9d\\xc8j|\\x1c)\\x93\\x03\\x1aA~\\xb4\\f++\\xa8\\xbd\\x1a/}\\xfc\\xf2\\xa4\\x9c\\xd1\\xe0\\xe4\\\"7\\x99̣\\x94\\x0e}^\\n\\xf4\\xa4\\xe6B\\x87{\\xda+\\xaf\\x82\\x9f\\xed\\xf9\\x10\\x8a\\x0ek\\a\\x95\\xe5\\xb5!Bx\\xf6\\xad\\x88)\\xc0\\x10Y^消\\x86\\x12jl\\xf3$\\xe2,\\xb8NAq\\x15\\x14\\xc9Ȃ\\xfb\\x06;\\xa9\\x8eO\\x12\\xa6k~\\xe4}؈S~ʜ+P\\x94\\x99XKJy\\xc8\\xf1c\\xd6\\x18Z\\xda\\xcc\\x1f\\x98\\x84\\xc2Xc\\x1c<ŐB\\xeb~\\x8c*\\x8ff\\x90ßLM\\x82\\f1\\xe3\\\\\\xa0a6o\\x8f\\x91\\xb0%0`\\xd6\\xe2\\xd0\\\"\\xc0\\x81?\\xdeO\\xb4\\x8e\\x14\\xa5u8\\x9dW\\xad\\xb0\\xf4N\\x99\\xceX\\xb8>N\\xfct\\x15\\\\mцp\\x8aґ\\x1dT\\xb5\\xb8k\\x8eB\\xf4\\x86,,\\xd5\\t\\xfb\\x83\\xb3Li\\xb2s\\xa0\\x93\\xe7\\x0fz\\x9a\\x0e\\xd2\\t\\xe9\\x05\\xf7\\r\\xd3rd\\x92\\x1e\\x17\\x9e\\x05y0Ň\\x88q\\x0fĝ\\xfaג\\xad\\x0e\\xb7\\x1e\\xcf#\\x86\\xa66\\x13r\\u05f8\\xf9ԯ\\xac\\x12T\\xe4\\xec\\x81<\\tbseց\\xd1d\\xb5rx\\xbbZVo#护n\\xfe\\x06\\xf7\\\\\\xb9\\by|\\xe2M\\xad+\\xd6f\\xd1c\\xccM\\xe6\\xf3\\xefӢ<Q\\xb4/G*#\\xfb\\x89QX0k\\xeb,J\\xc62\\xfcx&F\\xc3\\xc6ApH\\a\\bG\\xdfB\\x8c}\\x8b\\x99W\\xb1+l\\x06\\x94\\x97鶗\\x1e\\xbf\\xbf?\\x98\\xd5\\x16\\f/\\\"D\\xfcPH\\x9c\\xe0\\x95\\xbaTm\\xceVF\\x14T\\xa2\\xf4cy\\xc0\\x195\\xa0\\x88\\x16y<}\\x1elq\\xc2\\xfeX\\x91\\xc9i\\xad\\x8f\\xcf\\x19\\x01\\xc8\\xcb\\xfe\\rh\\x19b\\x9a\\xc3\\xe8c\\fV\\x15\\xde\\x15\\xecb\\xe9\\b\\xba\\x93\\xf4\\xd3*\\x83UUiIF8\\xd5\\xc4\\xfeK\\x05B0Gmu\\xf3\\xa3<\\xe9\\xf5\\x9f\\xa1\\x9c\\x03<AR\\xb4%\\x94\\xf5\\xe0B\\xc8X82U\\x931\\x97<u\\xbd\\xda`d\\xbb:]\\xc1p\\xb7\\xed\\xf3\\xf1\\xf2\\x81p\\x10\\xd9\\xfc\\x14\\xb0\\xc82\\x8b\\xd0 j^\\xca\\x06ǢJ}\\xa5\\xfe\\xe0\\xdb%\\xf9\\xe3\\x168\\x0e\\x1d\\xf9\\xd0r\\xdb\\xf3\\xa1\\xff}\\x8e\\xe9Z\\u007f\\x85\\x13\\x0f\\v\\x9d\\xb8\\xb8\\xc2q\\xec\\xf3\\xc7$ݼ\\x932P\\xaa3\\xb3\\xf42D\\xb1)\\x04͊7\\xc0\\x8c>\\xf7\\xee\\x0e\\x0f\\xde\\x16\\x9d]m\\x1d=\\xdd\\xedLLQ\\xd9#\\xc1\\x95%M:\\xfc\\xa6\\xfa\\xbb\\x11\\xc2\\xf98\\x06\\x12\\x98\\x83\\xec:\\x1e\\xa1\\x12\\xdf\\xdaa\\xa0\\xc2\\a\\x1b\\xd3\\xd7`\\x84[\\x89o\\xa9ڨ(Į\\\"R\\xe8\\x82\\xf5\\xda\\xe8\\x13\\xb5\\xf8\\x05u\\xa7\\xb5\\xcf\\xe8\\xfcsT[A\\x16\\x87ÊW\\\\\\xdd\\x0e\\x01\\xf8n\\xe7\\xf6\\a\\xb4\\x15\\xe4\\xc8D+\\xdc\\xc4\\x18\\x95nM!*\\x98\\xf8\\x82\\xfc\\xb1R\\xf7\\x84N\\xaeQ\\xaf\\xacϖ\\x90-\\x00\\x83\\xf9U\\x9a\\f$\\xbd\\xad[\\xec9\\xa3즨\\x1e\\xaej7+\\x14\\xe8nYl\\xadF\\x17hf=o\\x8cl7H\\xf5\\xb1\\x06\\xd16\\xa7}%\\xd2\\xed\\x19図Ǘ5\\xe7\\xc9\\x18CNȀ\\xd5fG\\xd4\\xd69\\xbbJ]\\x1f6nD\\xc1X۴\\xd4:\\xab\\x95dʷ\\xeb\\xcfY\\x99\\xdeOHL\\xa57w3\\xba\\x80\\xfc\\xd8:'\\xd9\\u007f=ɿfr@m\\x87\\xcc\\x04\\fHr\\x8a\\xc6g\\xc8ߢ\\x9e@\\x87W˕\\xdf\\xf2\\xb5Z\\xae\\t\\x8a\\x11\\xf2\\xcc\\xf1\\x1dF\\xb5\\n\\xe5\\xa9\\x19\\xba\\xf1I\\x04e\\x87\\x82\\xb0k<\\xa9Q\\x8c\\f\\xe6]\\x19\\xe7Vk'\\x99\\x89X\\x90\\xa7X+\\xfe/@\\xa2?\\x9e\\x15\\t\\x83\\xf6\\x12\\x96\\\\\\xf6S%ܙy\\x9a#\\xe6·z\\xc9wJ\\xbd\\xe5,\\xc5.\\xfa[\\xb3\\xdd\\b\\x95κ\\x90\\xeb\\xa7\\x0f\\xa8\\x04\\x8f\\x04\\x8f\\x1d\\xbb\\xa6\\xb0\\x92\\x17\\x01E\\x8a\\xe4;]1a\\xf5\\x979:\\xf4/\\x14:l\\x9c>\\u007f\\nS\\xe4\\x1bw'\\xd7\\\"]rҨ\\xed\\x9a#&I\\x9f\\xe0\\x01\\xd4\\t\\x03\\x15\\xa2N\\xa44\\xd8'\\xed\\xc7\\x10\\xaf\\xf0͇^\\xf7\\xb4ߢ<\\xfdJ\\xe3\\xef\\x145\\xc4\\xdf\\x15\\x9adc8\\x8a1\\xc4[\\xaa\\xa5}\\x12Z\\x8d\\x85\\x9bu\\x9c\\x1b\\x18\\x03\\x86\\x8b{t\\x023Oߒ0\\xca\\x00\\x85- u\\x87\\x87\\xa8\\aWd\\xcf;d\\bzݡ\\xddoKv\\x81\\xdc\\xf3\\xf3\\xc5\\x18\\xb6\\xf2D\\x19o\\x80\\xa8\\x0f(\\xc8\\x11\\xdf=\\xd8i\\xb4\\x97\\xe6Z\\x8e܌i\\xfd\\xfa\\xe5\\xfbpܧ\\x04v\\xbf\\x89\\x04Y\\xd2\\r@\\x9f\\xf3\\x81/\\xd60\\xaa\\x1e\\xa6\\x9e¸\\xb7\\x06:{\\x81`\\xb2@\\xe2\\x9c!\\xb4\\xa1\\x94L\\xe0\\x0f\\xc6\\\"\\x0e\\xfa\\x01\\xe7\\x8a\\xc9Et\\xc9z(\\xb3\\f\\xe2S\\x90E\\xf9m\\x9dx?\\xe2\\b\\x921v\\u007fL\\xa5\\x1a\\xfe\\xa8h\\xe59\\t \\v(\\x98\\xe1P.j\\xd5\\x10\\x92\\\"\\xe9<H\\x9b4\\xd7+\\x8e\\xb9s\\rI\\x17l\\xfaŰ\\xfdV(\\v\\x89\\xc0Ս\\xcc/\\x17En\\x01\\x17+(\\xfa<\\n\\x81\\\"\\x95\\u05cdM\\x94\\xae\\xb4\\xcf;s\\xf3P`H\\\"C\\x0e\\x90\\xc76\\xa6\\x9e\\xdfo\\fVu\\xa3\\x95\\x84\\xb3\\xa3\\xfbm\\xf8\\xa6&\\x13pZ%S\\x95\\xc9\\x04]\\x89=k\\xadB5\\x8d\\x89o7{*8\\xf5\\x82\\x14\\xac\\xd4]\\xa3`3-\\xd3Y+\\xf7\\xb0G%_0K\\xb9Iѱ\\xb3\\xc5\\xfd\\xf4\\x18<3\\xe7\\x15\\xf2\\x81U\\x9e\\xa4\\x84\\xf6\\xa4R\\xe4 \\xfd\\xef&`\\xd9X\\xf2]\\xd74\\xc9M\\xfb(\\\"]\\xe5ʟ\\x90p-\\xa5\\xb8\\xdc\\xcc\\xeaܫ/ȫ\\x10\\xa4R\\xe3\\xfa\\xce;\\f\\xe0\\xb2q\\xf0G\\xe3\\x1az\\xaf\\x8c&4f;+b/`jP\\xa93qS2\\xb1\\xbe\\xd5#\\xd78\\\"ӍR\\xe2\\xca\\r\\xae_\\x11\\x90\\xf8\\xc0i\\xb7O\\x87w\\xaf\\xadL{\\xbb\\xe5Ke'X\\x00\\x96E$\\xbe\\x93\\x98\\xaei5-\\x1ce\\xf2\\xb1hh\\xf9\\xb2V\\xc2G\\x9b\\x95\\x16w\\x97\\\\\\xca\\x15J\\xfdގk\\xae\\x9b+\\x89\\x85\\\\\\xbb`\\xbdN(\\xaeV\\x04Ŷ\\x9bd\\xf620\\xa2It\\x9e{!\\x81\\xb1\\xf1\\x15\\xd7ߚ\\x96\\xa2\\xa7\\v<|\\xb1xw\\xe3y\\xbdR#\\x9b_\\xc0y`\\xdb\\xf1\\xe5\\xbc\\xfa%\\xd5O4\\x15\\xbe1o\\xac)\\xe9\\xd7\\xd3\\xeb\\xf2\\xcd_p?\\xbe\\x11\\u007f}7N\\x96\\x14\\xd7J6\\xef1Z\\xec\\xfb;?\\xbf\\xee2\\xc5\\x00\\xe5\\xf4\\xdb\\xd7n\\f\\x1aۨ\\xd5R&t\\x98\\x99Q\\x91\\xcd\\x1a\\x03\\xd6}S\\x8dI\\a=\\x87\\xecQ\\xe9\\xb3<\\xe1\\xe9ƺ\\xc0\\x06c\\x12\\xf9\\xf4\\xab\\x11H\\xc1p\\xc6zBO\\f$\\x9b`dXEp\\xa6\\xf5E\\x91G\\xb4u\\xfa\\xa90\\xc6i\\x8c7]\\xfc\\x8a\\xaa;\\fU\\xe2\\xad\\x15\\xa9\\xb9\\xef \\x1c|\\x98\\tyV\\x15\\x92\\x06\\xf4\\xd2QwL\\\"՜F8\\x9c\\v\\xc7=V\\x82ʻ\\u007f\\x0f'\\x97#\\xd6\\xc7\\xd9 \\x16|\\xa0\\x1a\\nY\\x17J\\xbfb]\\xd3\\x03L\\xa9\\xab\\xa7\\xa2a^\\xafO\\xb97\\xe2\\x97)~\\xb5a\\xf1\\xe1y5B\\xed|\\xec\\xad\\x05\\xad\\xd2Y\\x1dۊ.\\xcf\\aRr\\xc5\\xe8\\xb9\\xe0\\xc5c)ߥ\\x14Ijm{\\xa6\\xed\\xb60\\xcf\\xc2l\\xe1\\xd3m\\xe4\\xd1\\x05m\\x1eH\\xcd\\x04B\\xdf\\x19\\x1d\\u007f)y\\xfeĳ\\x17\\x86x2qŚ\\xfb\\xffM\\x10\\xd3\\xc97\\xb5\\x98#\\xf4Y1\\xad\\xe1\\xfb\\x1d\\xaa\\xaa\\xdb\\x1e/\\xe3ˡ\\a^C\\b\\xb8\\x9e\\u0a63\\x8f\\xdc\\U00074eb4ֱg\\xc4\\x10\\xbd\\xe1l\\x80\\xb6|\\xb8q\\xcf\\x18ꙩ@\\x92|\\xae>\\xfa\\x9d\\xf9;\\x05G\\xecz\\xd5\\x1f*'\\xf71;R\\x1b\\xf3\\xaf\\xfe\\xde\\xf1\\x9e\\xfa\\x82I[\\xb8\\xdc\\a\\xcbr\\xae]\\xae*S\\\\\\x9b\\x12W\\xc0(\\x95\\x1ehE\\fD\\xbcӻ`\\xb4TЀC\\xd5qՉ:x\\xee\\xbeo\\x9f\\x9d\\xc0\\x06k\\x96\\xb4\\x80[j\\xb4\\x1e\\xe8\\x97E\\x1dU\\xff\\xc8mi\\n^jV\\xa3\\xd2o\\xb8)\\xe6<\\xe2\\x15\\xf9\\x8f\\xf7\\xb7\\v\\xecf\\xa6P\\xc8\\x1d\\xdag\\xb2\\x8f\\xfc\\xe5\\x83i\\xdbq]\\xae/\\xcbj?_\\xff\\x93b\\xcbq\\xb2\\xa2};\\x02\\x0eW\\xfc 6\\x90\\x82\\\"\\x18\\xf0\\xc5\\xe2B\\xb5T\\xf8\\xa6\\xa8LQ\\x14\\x87\\xa9\\xb5I\\x99\\x91\\xae\\xf8\\xf8'\\xc5R\\x0e\\xf3;H2l)\\xa1\\xfa\\xf8*fNyle\\x863.\\xbc\\xab\\xfe\\xe5y\\xaak>\\x19\\xafYz̰m\\xce\\xf1\\v)tj\\xf1n\\x1fT!\\xf5-\\xd8:\\xd3\\xdb\\x0e\\x84n\\xd0j\\xb1Խ\\x1e)|\\xd04\\x87\\x9b\\x9fS*\\xa7\\xb3\\xf1\\xd2\\xf9\\xfd\\xe1\\f+\\xb7o\\x89.\\x8f\\xb9\\t\\xb3\\xeb\\xb5tE\\xcf!U\\xc2P\\fK\\x18\\x9a\\x8d>\\f\\x89\\xff\\xb7\\x06\\x96T\\x9c\\xa1\\xb8\\x9b\\x06\\t7I\\x91\\xe1\\x04\\xf0\\xb5\\x17\\xf2\\xd2`Sn\\xc1k\\x94\\x98\\x9b\\x02\\xdb\\xe1\\xff}\\xab\\xa9,&\\xd1\\xf58\\x1f8N3夒\\x838\\x10\\xed\\xaf+\\x04\\x0e\\xa9s\\xbc\\x9bQ}F7>J\\xb1\\xe2Z\\xa3\\xa3\\u007f\\xae['HF`\\x11\\xc7'_\\x035\\n\\x98\\x8b\\x10]\\xf8\\xbc\\x9d1t\\u0081\\xf1P\\xf9\\xc1\\xc2a\\x85\\x1f,\\xe0\\xd7+9\\xef\\xf5\\xf0\\x18~\\x1fYӚ\\x88)4\\xf1\\x0f\\xc6\\xd7\\x02\\xd9ɹ\\xa2\\xa1\\xb0%\\xfc+\\xb4\\xc3-\\x93ۗ3\\f>\\x1f\\xc7u\\xcf\\xde\\u007fؚ*\\x95\\r\\x9d\\tPꁋs\\xba\\xab\\xe5`r\\xc5#!\\t\\x95ka\\xf5\\x03\\x965\\xa6\\x1e~v\\xe4\\xabg\\xbf\\x15GG\\xabj\\xf5FN\\xf1X\\xa3n}-\\xb8^\\xbf\\xf8\\xbf\\x13\\xfe_@د\\t\\xf3\\x9b,\\xeb9-\\x04\\xb4\\x8bJ\\f\\x14G\\xc2\\b\\x1b\\xa5\\x8fK64\\xe2\\x1fVE\\xbd\\xc1~\\xdc\\x10\\xb1\\xb2{\\x97OS\\xe0\\xc04\\x05\\x90\\xc4\\x04\\r\\x14r7\\xa1z\\xe4T\\xc6 \\xa7\\x84\\x1a.htn1\\x8e\\x10伐\\xcft\\x0f\\x97d\\xf5\\fN\\x97? \\xc1\\xa9\\x87\\x1et\\x86\\rA\\xd78\\xe2\\xc0\\xa9\\x16\\vQ_g/%ڎ\\xf5`\\xff\\x8a\\xe0\\x97\\x99\\xb8\\xea;\\xb0\\x04\\xb3\\xd2\\xef\\xb1\\x0f9\\b\\xf9\\x13\\x15ѡl\\xed\\xf4\\xbd)\\x89N8\\xd3<\\xf0z\\x10+\\xa3\\xc14\\x1d\\x06,\\xb7\\xd00\\xfd\\xe8ǆ\\x842ܢ<2\\x02>i\\xdb_@i\\x92F\\xf0Cۿ\\xa2\\xec\\xb7\\xc5\\x10ׂ\\xd0\\xe3\\xafݐQ\\xd0R\\xc4\\xe6C\\x9f\\x00\\xa3y\\x14\\x15\\xc30\\x93E\\x85V\\x1d\\x95\\xfd\\x9cD\\r\\x92\\xc0<\\xd5c\\xab\\xbc\\x05\\xb5\\xb3/\\xceɂ\\xf4\\xe1MW\\xc0\\u007fGM\\xf5\\x14F\\u0091\\x84\\x16\\x8a\\xe2\\x1c:\\xd6\\xe1\\xe5i\\xcbi\\x1c=G\\xf0$M1ʸ\\xe0\\x87I\\xcek\\xc9H\\xfb~ȷZ6\\x8e\\xf2\\\\\\xcd2\\x9f/\\xc8V\\xfc\\xdf{;\\xf0EI\\x0e0_R\\x9eG\\xdf-a7\\xe8\\xefj\\x8f~\\xb7\\x04\\xa5ʈ\\x0f\\x0e.\\xe7\\xbb\\\"}s\\xdb<vx\\x86;\\xb9ML\\x93\\x99\\x1e\\xfbv\\x16$d3\\xacTO\\xb7\\x81\\\\\\xf5\\xf8\\xd5|\\xa0˨\\xabr\\x8e\\xfdaL\\v1\\xd8۸5\\x19\\x81\\xec\\xc5iY\\xae\\xc6y9kVZ\\xfc\\t\\x8dh\\x17\\xef ck\\x1a\\r\\x9a\\x9a\\v\\xffs\\u007fE\\x03_^\\xaas\\xc3\\\"\\x9fEUr\\x05\\xb0d5\\xc0\\a\\u007f\\xfd\\x8ez\\xcf\\xd0\\rrS(-R\\x96\\xfd\\x86\\x80\\xec\\xee\\x17\\xfe\\xeb\\xfe\\xe12mv\\xfbR\\a\\xed,Zm\\xe4lh\\xbfϮ\\x94\\x0f\\n\\xed-Ө\\xd2n-5\\x84d\\xca\\xc5#\\xfb\\x1b\\xa5\\xe3\\n\\xb0 s\\xfcY;i\\x17J\\xad\\x05\\a:\\xb0\\xa0\\xa3\\x91u\\xed\\xce\\ueb7b\\x92q\\xf1\\x9b)\\x93W\\xdf\\xf3{\\xa0\\xaa\\xff\\xe8\\x8bP\\xe9h\\x8bo`\\xbd\\x1d\\xa7\\x86g\\\\\\xe1\\xad\\x18'[BC\\xe7\\xc3\\xeaG@.e\\xe6\\x13\\xf5E\\xec\\xe7\\v\\x05jx\\xd2)\\xb9v7\\xc8.Z_S\\xe8\\xe9\\xdb\\xd8o\\xeb\\x01\\xea\\x91_\\x8ayZ\\xe7\\xdb@\\x96[^\\xa0͐}B\\r\\x15\\x8br%\\n\\x8f[\\xa4:\\x13\\x94\\x04 '\\x9d\\x19ĕ \\xc6\\xc0ș\\xc7\\xe9B\\x1d\\xb6\\xb0\\xf1$\\x83\\xa2B\\xaf\\x11\\xb5\\x9b@\\xa7\\xc5㡥4F\\xc8\\xd0jԸgS\\xe150S\\xb1I\\xb9\\r+\\xf4\\xf0\\xfdVw\\xbc+\\xbduP\\x8aj\\xe7\\xa6\\x1d.\\xcb\\x15f\\x06\\xe3\\xa7\\xd2\\x14\\xc8gM9ȀX\\xb3\\xc1\\u007fFM;\\x9f鍃\\xa5\\xe1\\x91V\\xf2\\xcc?x\\x96\\xf1(x\\x95Q\\xb0\\xa7\\x02Pl\\x89\\xaf8\\xccn\\xfb\\x82[e\\x9aq\\xf0C\\x91\\xbb9~\\xecF-ʕ\\xd2?\\v8Y\\\"1\\xb3\\x18\\xccA\\x8d\\xe0\\x95<\\x8b\\xdbo\\xbf<\\xe6\\xd6\\xf0w\\x11%\\x90\\xbd\\xdd\\xe1\\xa2M_\\xdc\\xc9\\x0e݁\\xa2\\x1b\\xb8{\\xba\\x93\\x8f\\x97f\\xa6\\x87\\xf51G\\xe1\\x19\\x9f\\xae\\x89\\x8b\\x9fa]\\r\\x90\\xb4\\x02]˰\\xc2\\xdcz\\b\\x98%\\xbe\\xb3\\xd8E\\x89g\\x81\\x9d~V>\\x90\\x1d\\xb5\\xabGv\\xd5sܑe\\u007f\\xa3o\\xc6\\xfc\\xad\\xad \\xc8\\xda\\xfb\\x0f\\xe9\\xc9\\r\\xc0\\xfe\\x01F\\x1ek6.\\u007fi\\xea}f\\xb1\\x82\\x01~\\xb2\\f\\x9d\\xfd@\\xaa\\x95I`\\x8b\\x91\\x97\\xde\\xe8\\xe4\\x1a\\x9b\\xaf\\x1f\\xa7\\x0f\\xca\\x19*\\x81\\x81\\b\\xfe\\xa11O\\x82/\\xbe>\\x147w\\x91\\xbd\\xad8\\x9a\\x89}v\\xe2\\xf6\\t9<\\xa4<t\\xc7-\\xb2:\\xa4HBy\\x18\\x8b\\xca=\\x81)\\x91\\x02\\ahZ\\x1a\\b\\x1cu\\xe6\\xc8d\\xb5\\xb4\\xdb\\xc1\\x14\\xf3\\xa2\\xc2\\x14\\\\a\\xa9\\x1b]E\\x91\\x96\\xffMx\\xb2\\xad\\x10\\x15\\x87V\\x9b\\x94\\x81\\xdd3\\xcd\\xdaa\\xaa\\x13%\\xfb\\xef\\x12K}68֍\\xac\\xe6`*v\\x98}\\xcc@\\v\\xf0\\xe1\\x1fx\\x99\\\\\\x8cs\\xcb\\xceI\\x1ccP\\xa7OcRi\\xf6\\xeba&\\xb2\\x8c\\x18L^L\\x123\\xfdb%\\x14\\xfdN\\xdbǮZ\\x1eQ!\\xe8rc\\xbcF->\\x97r#\\xc1\\x99\\xd8U\\xb2:v\\x84\\xf84\\\"Kd]\\xcbI\\x0fqo\\xbfh&\\v\\xc7\\xc8\\u007f\\x89\\xcaJ\\x9e\\x1bn\\v\\xd3\\xc2\\xe1\\xad\\xcat\\x06\\xf8ˋ\\xa1\\xf8\\v\\x16\\xa7\\u007fS!RQ\\xb2Yi\\n/\\xe5\\xf9\\xfe\\x15\\xf6^Y\\xc8O\\xf2\\xab5\\x81\\x04W\\x9eX\\xc2\\xdf\\xea\\x04\\x06\\x04\\x11\\xf0\\xc7)V4\\u007f\\fvj\\xfb_'\\xab\\xf3\\x87\\xe9\\xa0\\xe2\\xb4QWj\\vŒ\\x9c&\\xfd^\\xf1#\\xb2!T\\xa4\\x0f\\u007fb2\\nj\\xbc\\xcd\\xee\\xe6\\xde\\xfb\\xae\\a\\xb7\\xa2b\\xf1\\xd2\\xe9|o{\\xb4\\xd6\\a\\xea\\xb4\\xd6\\xfc\\xbb\\xa4\\xf7~\\x98a/ح\\x9b\\x03\\xb5e\\x9e\\xfa\\xc9%\\xaag\\xb1\\xa8\\xfb\\xf71\\x12\\xd5\\xcdn\\xde\\xe9nn\\xee\\rK\\xdf\\x17\\xf4\\xa2\\xdb\\xc35\\xe3J#\\x17\\x8e\\x9a\\xc0cd\\x9b(\\xe3\\x80VR\\x1c+\\xfdr\\x0ew\\xc1\\xe3G@㵠\\x14@\\xa8$yh?\\xb8\\xedvO\\f+H\\x1f\\xf9P\\xd4\\ue32c\\xa6\\xea\\tk\\xf9\\x9e3\\x13\\xa7\\xa5\\x02mM\\xa7\\x84S\\x1b\\xea|&\\vr\\x9f\\x04\\n\\x89[\\xcb\\x04ʆ'I\\xc0F1,A(\\xfe}\\xf1h\\t\\xaf\\xe5?N5\\x8c\\xd87\\xc9\\x06#\\xb3\\xa4k\\xba\\xf9\\xe0C쮺\\r\\xa9\\x19f4ٍCƣ7X\\xd4C\\xb2)\\xa2\\xc2o\\a7\\xf6\\x90\\xedi\\xf0~\\xfcy\\x8b@\\xd7\\x1c$]\\\"\\x92\\xb9\\xbe=\\x05\\xeeA\\x96H \\x8c,<\\x95w\\b=\\xfaZD\\n\\xef\\xd9[\\n\\x9a\\xae\\x05\\xb2\\x90\\x1fe\\xb2\\xfe\\xbd(\\xaf\\x14\\xd8`\\x8dO\\xf2NtQ\\xb3\\x10\\xa8\\xfcsM\\xe0H\\xa5\\x98\\xbf\\\\\\x8b \\u007f\\x83\\x80\\x95\\x81\\xd4f'=\\x17\\n|\\x91a\\x96\\xb7\\x98\\xacg\\r4\\xbf\\xba\\xf4\\x88\\xecL\\xad\\x86ڲ-\\ntH?\\xb4\\x8f\\x1d\\x1eZ\\xd1*\\xb05\\xe1q\\xa3\\x91\\xb8Έt2o=\\x96\\x81]\\xbe\\xee\\xf7\\x1f^\\xbc\\xbd\\xb9)\\xee\\x88r\\x82d\\xa6\\rtש\\x8a[\\xd5Ss\\xf9ip\\xedz\\xa3\\x0e9ǁ\\xeb\\xbf\\xdc'\\xc4%\\xbc\\x84\\xf2\\x06(M\\x18\\xa7-\\x88h\\xebG\\xf1\\xd2uj\\x10f\\x8a\\x81ͺ\\x11\\x91\\x19\\xf8\\xe2;X\\xc2i\\x00e\\x85\\xf3gɇ\\xf4dE\\xaakm\\xf5\\x8c\\xdb(B\\x98T\\x8a\\xed\\x8fQw\\xc6Ț~\\xbf]\\x060\\xf2ؓ\\x0f?K\\xab\\x8d\\xae\\x93\\x98\\x1c\\x03\\xc9&\\xb5\\xacb\\xecĨ\\x87\\xf1\\x18G}\\x95\\f\\x8ej\\\"G\\xc0\\x0e~\\xa4e$\\x1b\\x18\\x06l/~\\xd9KR\\bXԴ\\xbd\\x94\\x8b^\\xdaQ\\xc7ڻ\\x98\\xfd\\xb2{yr\\xdd/f\\xb9\\\\Զ]LK\\xdbK\\xbe覟ևԅNe\\x01\\x97\\xb1\\x8e\\xf3\\x15$v\\x03\\\"\\x84\\xae\\x9c\\xe8\\x10\\x1c\\x88\\xd5\\xc2KF\\xc3t\\x97'\\x05Ĥ\\xe6\\xa5\\xee\\xc0?\\xb1\\x05\\x86\\x9c\\xeb\\x84\\xf7h\\xa1\\f1\\xff$\\x94\\xe5\\xcczJ\\xf4\\xdc\\xc1\\xb9\\x80˧\\xb6\\xad]s\\xef\\x84\\x00\\xb5\\x17<G;\\xc1\\xb8\\x05\\x12_cUR\\x13ucʓ\\x1f&\\x8bf\\x12\\x81\\xb95;\\x17\\x1c\\xe5e\\xa1\\xb70m\\x8a\\xc4\\x05.=\\xd2fM\\xae%\\x04k*\\xe1\\x04\\xf4\\x9a\\xbf\\xc2_\\xcbK\\xb4\\x12\\x13\\x00\\x0f\\xbe\\xf3\\xe6\\xceD&\\xb5/<\\xf6\\xa1\\xbdm=ѠV\\xc6\\x14\\x8c\\xf9) \\xe3\\x84\\x01\\x11\\x16\\x9bE\\xc2ښ'|>\\xe5/r\\xbe\\xbc\\x84vvAF-A\\xc9\\xc0\\x1a-\\n\\xa3\\x96O[\\xf8\\x84\\xceq\\xf9\\xc3_m\\xec\\xcc\\xc8!\\x8b\\x02c/\\xc7\\x18\\x8a/\\xffz\\xb2\\xb7|#D\\xe2K\\xf6\\xea\\xec|_\\x1a\\xa8\\xfa\\xc3\\xc64\\x92\\x81\\x9cX\\x8b.> \\x1d\\xf02Iځ\\xd5eɯ8k\\x9c\\x16\\xdeu\\xac\\xbf\\xd2խ\\x945g\\xc6\\xd4\\xf7\\x87\\x86\\x9e\\x97_\\x06\\xa2\\x0ej\\xf5\\xbbCJ.G.\\xe85%T\\xf7*\\xb6(R\\x1dc\\x9el\\xc5_\\xdbh\\xcc\\xee\\xa9S\\x00\\xcb\\x15\\x19\\xec<|\\x8e6$ߒ\\xa9'u\\xb6\\xbf\\xff&\\xe8\\xc9*\\x88\\xbc\\xab\\x85\\xdc\\xe2\\xce\\xc3\\xf3+~/\\x9fĻ7\\xee\\x84U\\xfe\\x13\\t\\x10\\xce@n\\x10P\\xca\\xecI5\\\"\\xb2\\x8a\\xd4\\xd1F̾\\v\\xea\\xcb\\xe7\\xb5\\x12\\xb6\\xe6٩\\xa6d?Y\\x893\\xc8y\\x9d|\\x11\\x85\\x18ꍝ\\x8b\\xd4\\xe4\\xe6\\xe0\\x84\\xe3\\xae\\xfbxmZ\\xf8\\r\\xbd\\fg\\x9d?\\xbc%\\x8c\\x9er\\xcc\\xccns\\xe6qe\\xaf8\\xc5Z\\x19\\x85\\x12^\\xe1ʊ\\x1b\\xe8\\xbe_z\\xfb\\xf6h\\x1c\\xd3\\xc1\\x84\\xe1wŵ?|\\xdc\\xe8\\xed\\xdb\\x13$\\xfe\\x19>\\t\\xdc:\\xa6%\\x90\\xee\\xad\\\"\\xd9E\\xcd\\xe6\\xe6\\x98f\\x05\\xf2ǩ\\x89\\xf4\\xd7\\x01#\\x02\\xf9\\xdc\\\"\\xf0\\x03\\xef\\xe08\\x86q\\xa6\\x8a\\n\\a\\x19\\x99\\x9b\\x9a?{\\xf6A-[~\\xea\\t\\x84\\xec\\xf8\\x8bX\\x93\\x9e\\xbe\\xd2\\x05WF\\xbf$\\xcc\\xed\\x1f\\xbd\\xdc#\\xec9\\xf6\\xfe\\uf817\\x8bj\\xe0|\\x95*\\xff.\\x10\\xd8|\\xb6P\\xb1\\x10]\\xbc\\x96\\x1byl|\\x9aC\\xb0V\\xfa\\x01^\\xa4\\x9fz\\xd2G\\xe9\\xcf1Ls\\x8c\\x1f\\x8b\\\\\\xcb\\x05\\u07b4\\x1c#YMlvvl0g\\x98c\\xc7tp\\xc0\\x88\\x19\\x91\\x19\\x01\\xac\\x98<N6CO\\x98C\\xa5*\\xa8T\\x0eJ\\x06\\x02\\xa79]*ŉp\\x06R\\xbb\\x0fc\\\\\\xb0S\\xa9W\\xa8T\\x88?\\n\\x83\\xad[Q0\\x04D\\x90Q\\xf28\\xb9\\x0f\\x93$Arp(\\x99\\x0f\\x19\\x00i\\x05\\xf2\\xa9\\r`\\xde$\\xc1aU\\apMy\\xec/\\xa8f\\x0f\\xd1\\x11\\x01\\xa0!\\xee\\xa5\\xee\\x8e,!\\xc4U5\\x11t\\xf57\\xed;\\xa0i\\xf1O\\xb0'\\\\Dժ\\xec}DQNNV\\x8e\\xa9\\xc0<\\xabXZ\\xeb\\x0f\\x98On\\u07beʣ#'\\x8a\\xe2\\xf7\\x05\\x1c\\\"\\xa1\\\"\\xa8E\\x81m\\x8e{\\xf78x\\x0e\\xbd\\x93\\xdbZW\\xf7\\xf6m+ש\\x0f\\x8eC.s\\xf2\\xc0\\xa7\\x91\\x8a\\n\\x8f\\xb0\\xc3\\xda-\\xf4TT\\x9co\\xd7m툚\\xf2~\\x04:&\\xa1R\\xe3\\xe2\\xa8T7\\xc9+\\x8a\\x89\\x8c#\\x05g\\xdf7\\xf5&\\xd3\\xd1R\\n\\xb3\\u007f\\xbd\\x11\\xf7\\x17z嘧\\xfc\\x16[3\\xc9\\xd9\\xd9\\xe9\\xd47hu\\r\\x86 \\xaf\\x8c\\xf1\\x0fK\\r\\xa9\\xff\\xc4FV\\xfe\\xb3\\x12\\xb3\\x91k,+O6\\x96\\x97\\xa5\\x04\\xfa'\\u007f\\xac\\x8c\\x8c\\xfd'\\xd5PzW\\x9e8\\x86\\xef\\x88\\x1c\\xdc!\\x90\\a\\x1a\\x05\\xa8\\x04\\xd6dӡ=\\x02\\x10\\x1b1\\x02f\\t\\x00z\\x90jv;\\xdc\\xc8\\xfc\\x14\\xa09\\x00\\xff\\x8f[\\x1c\\x84/\\xccoڿW\\x14I^8\\xbdd-9R\\xb4\\xb7{q~!^\\xb1\\xa4[\\x12 \\xe9\\xbetڒM\\xa7O_\\x18\\x1e\\xb4\\xb8;'g<T\\xf7\\xc6\\x1a'P\\xc5D\\u0091'6\\xed\\x86<P=\\xd4A\\xb4\\xe3c\\x9b\\xf0\\xa8H,\\xb1#\\x92\\xd7\\x03\\xed~\\xa8T\\x11\\xf1\\xd2\\xd5j\\x02A\\xfa\\xf396\\xec\\xdcS\\x8a'\\xaaW\\x1b\\xab\\xfe\\xbd\\xf6@\\xfauQZ\\x1a\\xc1A\\x88\\xc3\\xca\\x15`сo;;\\x8f\\xbaʱ\\x8d\\xd5ǧ-\\xfbo9\\x95\\xaa\\xcc\\x1b\\xc6~\\xa2\\x1e\\xa4\\xc5\\xd6y3/\\x92ˈ\\xed\\x90\\x01_aē\\xcb.2\\xbd\\xebVh\\x1a\\xd9\\xe5r\\xbc\\x01\\xe7\\x8b3\\xe0\\xe5\\xe5\\xecƃ\\xaaD\\xbc\\x93\\xa8 :\\xf1\\x89DH\\x01\\xc5\\f\\xe2\\x9bc\\t6b;1\\x1c\\xba\\xd9\\b\\xb1\\xcdxp\\x87N3\\x9d\\xfd\\x85\\xb4nϦMV\\xc4zt<ݴ\\xc2\\xfd\\xe4\\xf1\\xc8\\xd6\\xfa\\xb0\\xe4\\xeb\\b\\x90\\xcc]\\xe0}\\xf4\\x1b\\xd0\\xe5<>w\\x1a2l\\xa1\\f\\xca\\xc9\\x00\\xe8/\\xcfe,\\xe4\\fs\\x9ej\\x05.d̝\\xb6]\\xfd\\xd5{\\x88J\\xa9-\\b\\t\\xces͝\\x18\\xc4j\\x9eJ\\xf0y\\x84\\xe0 \\\\\\x01S\\x84.\\xe0+\\U00076f30\\xc04\\x87c]\\x8fT\\x9a\\xb7\\xde+2\\nOP1\\xa5\\x04bԣ\\xf6\\xd1\\xfb\\x1c}\\xa3V\\xdb`p\\xac]\\xeb\\x10\\xa7\\xf2PE\\f\\u0382\\x01E\\xf8\\x83\\xbb\\xc9y\\\"\\xa8T^L\\x95!O\\xa8Ⱦ, G\\x86;c0H\\xbe\\xa7\\xb18\\x9f\\xe2\\x8c9\\xbe\\\"\\xfbn\\xe2)@\\xf0(gD\\xfdPZ\\xf4R\\x94&k\\x18\\xb0\\x80>5K\\x12w\\x8eS\\xea\\xb04y\\xa9'\\xe7\\xc7\\xed\\x12\\xe5H8\\x03\\xc9\\xf3E`\\x96\\xb8\\xc0Q\\x8e\\x80\\xf8\\bR5\\x85\\x85\\v:\\x1b\\x9aTs\\xaaoOR\\x8fo*\\xe8\\xdeMi\\x10\\xff\\xf8\\x1d\\xeb\\x0f\\xe6\\xbd\\xfd\\x9a\\x00\\xa7T89\\xa6\\x94<NF\\xf0,-\\xaa\\xf7\\x11 \\xf5\\xe6\\xd7x,\\x96\\x1cOIqJ\\xc1|rkÆ\\x1a%\\xdc\\xd9t\\xc7\\x1b\\x9d\\x1c& \\x8f\\x93\\x87VA\\x82\\b\\f\\xd6T_\\xbf\\x9d\\xb3MXLDJ\\xb1a\\xe8d\\xef;M\\x9d\\xb0\\xb2\\x06ܮ\\xec\\u007f\\x88\\x98\\x91\\x87\\xfd\\x85\\x85\\x8ed\\xaaS\\xfbm\\x1c\\xe0vE\\xc2\\xe7\\xf2MV\\x86G\\xe9\\xc9h\\x8ev\\xeb\\x96d\\x84g,ѹ\\xa3s\\xfahW\\x1c\\xd7\\xcf_\\xdd\\xef1\\xc7g\\xa9\\aUK\\b\\xbfz\\xa5\\x05&\\xc69\\xc1\\xf8\\xe4Au\\xe09{h\\x8egi@Jj\\xd4Ґ\\v\\xbf\\x84\\xffr!diT\\xa7z\\x96\\xc7\\x1e]n͓\\x13\\x9e\\xe1r\\xa1\\x9cK\\xe3\\x994\\x82F\\x13\\xcf%\\xd6H\\xdcv\\x89Ď\\x8e\\xda%\\xa8[\\x025\\x81e\\x80s{\\xbaI\\x16p\\xa8\\x00D\\x89<F\\x14\\xb3 F\\xb8\\xa9fY\\f\\t\\xacT\\f\\x1fp\\xa6\\x963\\xcc\\xd9!\\xe37o\\x8e+Ư^\\xb5qϽ\\xf8\\x9ab\\xd8\\x1a\\n>\\x8e'A\\x0e\\x1b:\\xb7\\xf6\\x12\\x1f\\xb9#y\\xb5\\xcf>ۜ\\xbe\\xf9\\xe2\\x85\\xc8\\x12\\xd2\\x00ڑ\\xba,X\\x1d\\xdcN\\x193o\\xaa\\xa2U\\x81b*\\xd5\\xf7\\xd1\\xcc\\xe0\\x10\\x89\\xb7J8\\xf1\\xc9\\xc8\\xf8\\xdf\\t]\\x84\\x0fM*\\x94\\xd2@F]\\xf9\\x94\\x04\\x17s}\\xa4\\x0eP&2\\x88\\xea!\\x0f\\xa4\\xb4Ӥ4t\\xc5ڕ!\\xaa>\\x85\\xea{\\xcc̦y\\xc6=4M\\xa3\\x1d\\x98\\x98\\x94\\x1a\\xa8\\x1c퓥p\\xc6-\\x0f`:\\xc9\\xdc\\x05d2\\x85Cq\\xdf\\xf0\\xc9\\v\\x18\\xf5S\\x87\\n9\\xc3\\xed\\xb7+\\x8dƣ[\\xb6%U\\xa5I`\\a\\xb8eB\\xb7vQ\\x1cW\\xb7\\x8b\\x13\\xd7\\xe1/\\x9a\\xa6\\xf0&)Iފ\\xd7~_\\xae)\\rw\\x83\\x16\\xd7v\\u007f\\xa1\\xd2[\\x8c1\\xdf)]$\\x91xF\\x97\\xe33r\\v\\xfdo\\xd8\\xed\\x05\\x9c\\xdeJˑ\\bޅ\\xbf\\x13\\x14\\xd4\\x03h\\xa6z4&MD\\x89p\\x94D\\x89J@G\\x94:\\xd8x$qJ\\xc5\\x06\\xf6iwU(\\xe3$\\x80AGl\\xa24\\xb5\\x98Lj\\xba\\xfa\\xecQK\\x13E\\xf9T\\x19\\xe6\\xc0 7\\xb3ygH[\\xbd\\xa0c\\x1eA}\\x1b\\x02\\x80\\xc1\\xb7\\x18o2\\xe9\\xe9\\xfa\\xc3;cKҊu\\x86\\xe5\\xc0\\xd5Fh%\\xc81$\\x12-\\xc2DDk\\xab\\xa6\\xc1Z\\xbd\\x13Ы\\xd7\\xfbvYV\\xa2!8\\b\\n\\f_\\x11\\rP\\x1fI\\x05\\x84'\\xd9\\x13\\x8d>\\x0ej\\xa7K\\xc8X\\\"l\\\\WD\\x04\\x06\\x83\\x1e\\x8fbM\\x8d\\x06-\\xa9\\x17=\\x19\\xcc\\tQ\\xa2\\xa9Ѡ%\\xf5zAq;\\x9bM\\x0e\\xd8\\xc1\\xe1\\x12\\x8dRb\\xf5\\xa1m5\\xff\\x98\\xf0E$\\xf1\\xf7ͮ\\xf5oǉq\\xf2\\xdd\\xda\\xea\\xf5\\xfc\\x90\\x01/>+\\xdeϸ\\xeco\\x84\\x03\\xbc5?\\xcfH\\xdf\\x0e\\xea\\x96&I\\xdcSR\\u0081\\xa5W\\xf6\\xa3\\xbb\\xbe\\xa0\\xa0\\xb5\\xb5\\xbd\\xbd\\xd5\\x02RR\\xc0\\x96\\xd4Ƥ\\x82.Ξs\\n\\xa6\\xb9\\xae\\xae\\xaf\\xbef\\xa6\\xe2\\xdc\\x1eNׇ]4N\\x13\\x02E\\xe1K\\x05\\x1f\\x87&s\\xfa\\xf4\\xee\\x95+\\x13\\xd4n\\xfa#\\xba\\xf4\\x98$U\\x9e\\xeep\\xae˄\\xd2咔\\xcb\\xea\\xa9\\u007fT\\x85\\xf1F \\x0f\\xdd\\x03\\xf9\\xbd\\xf1#\\x05\\x85k\\xb5`N\\xff\\xa2\\\"\\x87\\xe3\\xc1\\x83\\x12\\x92yO1\\x81T\\xf2\\u007f\\x91\\xdeݱ\\x9f1 \\x19\\x88r8\\f\\xb3G\\rH\\x86\\x17g\\x11\\xa2Z\\x8d/\\xe0\\xed\\x19\\x18Xd\\xf6\\x85K\\xf3Z\\xfd\\t?\\xa2(\\xf8\\xbc\\xbfh\\x92~\\xe8\\xc2\\xd1_\\xb5\\x1c7G\\xfb\\xeb\\x85#\\x83:'p\\xad.\\x15\\x88\\xdd\\x03[\\xe72K$\\nur\\x0elY,Л\\xbe\\xf7\\x00.{O\\xf9\\x9e\\x1a\\xe9\\xfd\\xb2\\x89\\xa6W\\xf3\\xe9\\x04\\xfb\\xea\\xe7\\xc7̷]\\x9bA\\xf6\\xee\\xf3Ud\\x01s\\xb0}\\xf7\\xf8\\x87\\x86(B\\xbbS\\x0e0\\x93y\\xb2\\x9f\\xef\\xf9>艡\\xe1K\\n\\xcf=>\\x8e\\u0084\\x19\\xba\\x13h\\\\\\xd5Y\\x13%\\xf6$\\x0f\\x8e<\\t~\\xa2\\xbc\\xc9\\x1e1\\xd0֝;\\xe7\\xe08\\xac\\x0e\\x9cc\\xb3\\x84+\\x94\\xd5zٝ;\\xd7\\xc2\\x01\\x81ۍ#\\n\\x80W\\xb5}Q\\x1c\\x95:e\\n\\x95:\\x89t\\xe5lZ\\r\\x9b\\x11R䯦\\x86}Z\\x145m\\xad\\x99jWi\\xedm\\x95\\xb8M7\\x04|\\x97\\xbbγxΉ\\x13\\xa7O\\xe7\\x9f\\xee߰\\xc1h\\xec\\xd7^\\xfc\\xb4\\xd39`;a\\x9b%}\\xb0pYв\\xea\\x83c\\xf14\\xe6y:\\xe5W\\x92\\x17e\\x12\\x1b\\xbf\\xfb\\xcc\\x18\\xd2ڷ\\x1b\\x84\\xc1)\\x89\\xe2\\x8f\\xf2\\xfe\\xb7Ȱ\\xb8a\\xa9\\xd4#4ў\\v\\xa8ٯ\\x92JE\\xa9T\\x05W\\xc0\\xac\\xbd\\x90\\n>?\\xb9(\\xab\\xf9Έ\\xcaʊ\\xba\\xe3\\xabz0#\\xb9\\xb2\\x92l\\xac \\x1b75\\x92M\\x03\\x8e\\x1d=\\xf5fK\\x90\\xce\\x13\\xb4\\xe5\\xcd)%\\xd6/\\xe7l\\xa1\\xf4-2D\\xc3\\x1e\\xe0\\xd8l\\xed\\xe4h\\xc0\\xe5\\x0e\\x14M\\xdc\\x1c\\x8f\\xad\\xba\\\"\\xd6\\x0f\\xaaj\\x17I\\xad\\x8d\\xe2r\\xc95(nmt\\xe0\\xc0\\xb1\\xff\\xec\\x9fU\\xbb<\\xff\\xa1\\xacN\\xa5\\xa3\\xb1\\xf5\\xd7\\xd3\\xd8\\xeaP\\x82eO\\x9fB\\xbe\\xe3\\xc8}Ǵ\\xf0Z\\x067\\x9d:\\xc3(\\x04\\xd9\\u0382i\\xe8\\u05c9Y\\xfb\\x14\\x11y\\xa1\\xa1>ZA\\x86\\xc0\\x04+͌3\\xa7\\x80뼊(q\\x9a\\\\^\\xde2\\x95\\xb8\\x8b\\xaa\\xd7\\xec\\xfa\\xe5K\\xe2_\\xecS\\x83=̗D\\xfc\\x8dM\\xa8\\xfbU\\xc0i\\xdd\\xc8\\xdc\\x15\\xe9H\\x04D>4(\\t$\\xd9\\xd9)\\xf7r\\x01\\xdd\\xd3\\xc2\\xc0\\xa3\\xc1Kt\\xa9~\\xa9\\xeaY\\xcbs\\xb1;\\xc8\\xe3\\x149e\\x9c\\xbc`\\x13;KMh\\xd2-Y\\x95\\x85ޖ;'\\xd6\\xec\\x85f\\x911\\x16\\xe5\\x06\\xc5\\xc5C+\\x1a\\x81\\xda)T%\\x95\\x02\\xb5\\x13\\x1d\\x04\\x94\\xe0\\x00\\x9aѣ}}4\\xe9\\x04\\xabot\\u05ecX\\xc3BsI\\x912\\x9b\\x86\\xa1\\xeb\\xb8\\x01\\xaa\\x00\\xdf'\\xbbv=\\xf1\\xd5rp\\xba\\xbc\\xf3\\x03\\xc8,\\x8ap\\a\\x85\\xe9x¹\\x91:\\x98T\\xe2\\x1fK@\\x83}>\\xda\\xec\\xc5\\x1bO6ó\\x8a\\xc3vg\\x84e,\\x9f\\xbd?c\\xc9\\xff\\xff\\x19#\\xe6\\xf9\\xa5$\\xb9\\xde\\x03\\u0379>\\xc4#\\xf9$\\xcc\\xe6\\x88\\xec\\xf0\\xb6\\x146\\xb8\\xb3\\xc1ۏ\\x82\\x91fF\\x14ݏVv\\xf5\\xc0C\\xa6Ud\\x14\\x8a\\xf2D̈\\x9e\\xab~E\\x99\\xeb\\xb7{\\x81\\xb4\\xabrD\\x1ed\\xdad/I\\x9a\\x19j\\xcd>\\xaa\\xb1\\x1f\\xa7\\xec\\xf77I\\xb9\\xb9I\\xc0\\xb4\\t%'\\xbeU\\xb4\\x9a\\xdaL\\x9e@Z\\xe2I\\x843\\xccAV\\x1c\\x01PG;\\x1f\\xd7!+\\xd9d\\x0f2\\x05\\xcau\\xbf\\xb6\\xda\\x1cP\\xfb{i|\\x1eL\\b\\x883jYT\\xe6\\xa5U\\x17W\\xb9\\x10\\x9d\\xc6u\\xe6\\u007f\\xf9\\x1fmj\\xdc#q\\xe0ߏqs\\xfeK\\x8d\\xe3\\x10\\x90\\x15\\x17h\\x81\\xad\\x81\\x80gd\\x83Ɗ˃\\xdeO\\xbd\\a/\\xbf\\xed\\xbd\\x1bw\\x97\\x97vn}$櫕G\\xb1@\\xdf\\xc6\\xea\\x13)$\\x1d\\xbc\\x92\\xa7\\x1cp\\x1e0\\xc2\\nx\\x05$\\x9e\\x0e\\x16Za\\x1c\\x90\\xf1\\x80S9\\x80\\x85\\x8c9x\\x1d)\\xa5\\xfa\\x04P*G\\x91D\\\\\\xad\\xb9\\x8be\\x8a_\\xb9ޢ\\xae&\\xc3n&\\rg\\x98\\xa3\\x1cUJV\\\\A\\x9dҭ\\x84\\x80\\x1f\\x85\\x0e\\x8e\\xc3dj\\xeb\\x18(\\x12\\t*czZ\\xaaD\\xd1\\xe8\\xe1\\xb7:\\x925X\\xb7\\xf9@\\x92\\x87\\xbf\\xa8\\butފN\\xb4\\x17L\\xa6\\xed\\x882Z\\xcd\\xec\\x83,\\xad&N\\x8aFeb\\xa30\\x1c\\a~\\xc8\\xeaI\\xcf\\akb\\xba\\t\\x0e\\x82\\x99a`T\\x83̌\\x93\\xe5\\x14R\\xa6\\x1a\\xbb\\xa9\\xd4oܮ\\xb9\\xb6A\\x1485\\xab\\xa9)a.۲\\x9bR\\b\\x91?pȪ\\x0ec'\\xb1\\xc3\\xd4\\x04\\a\\xf8\\x90\\x94y\\x9c\\xa04+˜\\xc9]\\xcd2\\xbe\\xe3\\xf0\\xb2\\xca\\n⣘~\\a\\xd71\\xe7\\xf8\\x19R\\xcb\\xc4\\xe6\\xb3ȟ\\xe4q\\xf2\\xe393?o\\xbf\\x83\\xc3\\xe0\\xae\\xc7\\xe1a\\xc2@X\\x17Ŗ\\xd9h\\x94\\uf105\\xff\\xfb\\xf3A<\\xa7R3n0\\x04J\\x87fȘ\\x9f\\\\}\\xcdꄿ\\xe6\\xaf\\xec\\xa0~\\x17\\f,\\x10Y`\\x83}\\x86\\x9f\\x00iKS\\xe7\\xd6b\\x19\\x9d\\xf4\\xbb\\xd3\\xe5\\xf0\\x81X\\xe6?KV\\x1bf\\xf1l\\x81\\xbb\\x06%h\\x01o\\xc1e\\xb0\\x16\\x00\\xf1\\t\\xb0\\x17\\x10`\\xf2\\x02\\xca\\x05`g\\xbe\\x04\\x04\\xc7#\\xb8\\x12^\\xbf\\xab-WZKG*\\xfb\\xc0\\x89\\x9bL$6W\\xcfj46\\xa7ҧ\\x82\\xfeñ\\x1e-'\\x12\\x03\\xa8\\xda\\aU\\x9e*s;(\\\\\\x9e\\xc6c$\\xee\\xed\\xc9\\n\\xadB\\b0!\\xcd\\xe1Hc\\xfe>\\xc7I\\x91)\\xc8\\xe3d\\x85\\x02\\x9bb\\x9cMv\\xecر\\xdc[\\x19n6\\x87+݅A|ysʌ\\x1bY\\xb0\\x8e\\xf7\\xb0%u\\xfe\\x96R\\x84B\\x8e\\x8c\\\"Q\\x90\\xd2-\\vRg=\\xe4u\\xa5.\\xf8\\xfd\\xf7~\\x87.\\xee\\xa3Y\\xc0\\xe6N\\xa4\\xa8H\\xf2\\xc9\\xf3\\xd3Bץ\\xce\\xff}\\x9bOɢ\\v\\xf0\\xa6\\xe4\\xf8\\f!\\x95w@ߒ\\xae7?\\x90\\xc2g\\xeb\\xf3\\xf3ݟ\\xc1ҟ\\x9bGI\\xdf~\\xd8\\\\N\\x02\\xa8\\a\\xf0\\x1b\\xb2\\xf9\\xc3\\x17^זܗ\\x92\\x0e\\xba\\xf3\\xf3\\xf1\\x95\\xd6@\\xbc\\xf4A\\xd3\\x13\\xf2\\xb5\\xf7[\\xcaIH\\xe9\\x1c5A\\x93#\\xfb\\xd3,m\\x0e\\xdes@\\x0f\\xb5u~j\\xcbC.\\x98\\xac\\xb3U\\xc0\\xa9H!\\x1d \\x99KfO\\xcdOR\\xec\\x0f\\u007f\\x04|\\xfc\\xf5\\xcf\\nU\\xba\\xb3#v\\xf0\\x8f\\xb9\\xcf\\xf4\\xfe\\xf1\\x84\\xf0\\xfd\\x8a$\\xd4\\x19=\\x97I\\xafXYo\\xa2\\xc0\\vS̑*\\x00\\xe8\\xc9Ez\\xf8\\x83\\xbf\\xa0\\x13'^Z\\xd4Z\\x0e\\xbax!\\x88z\\xb5\\xc2V\\xebE\\x1e'{\\xaa\\xb1\\x18\\x17\\x9b\\xccva\\xb0՞\\x91,\\xe0\\x1f\\veV\\xb0\\x06\\x95\\xf1\\r\\x00W0\\x88\\xc0(s\\\\ܣ\\xdf\\xee\\xfc`LU\\x8a\\xb2\\x84\\xd4\\xc7?\\x1fU\\x98%R\\xa6Fޏ\\xbe{\\xe7\\xb7Gqq\\xee\\xa8Z\\xe1\\xe5\\xf3\\x8cb\\x8a;Թ\\xdf\\x1bE\\xf8#<\\x04\\xf5\\xde\\xef\\f\\r\\x02\\x11\\x10Q\\xf6$\\xdf@2\\x0f\\xcc\\a*#l\\xdeу,\\xfb\\\\\\xbds\\x88\\xb9|\\xf5<a\\xad\\xb0Gn\\xd4j\\x8d\\xf2\\x9e\\x1d\\x97v\\\\~\\xb5\\xdf\\xe0g\\xc4\\xc9rKM\\xe8^\\xfb\\xa4i\\xd3n\\xe2\\x88\\x01z\\t\\x16KM\\xdc2u*x\\xbbޟ=\\xca`\\x8c\\xb2\\xa3\\xf8N]`]ć\\xb3\\x94\\xfe\\xe2\\x92\\x03\\x87\\x1e\\xd8#\\xea\\x1a\\x02\\n\\xbe\\xdfFa\\xae\\xb6\\x03\\aڨ\\x87Q:\\x06K\\x8e\\xf31bqP^\\xb64=]\\xfa\\xdc\\b\\xe1$F\\x9f\\xc5d,\\x86\\x8e\\x86\\x003\\x8d\\xfb\\x04\\xc8\\\"p\\xa0\\x85E\\xf3\\x8b\\n5H\\xc1c\\xef\\x88\\xef\\x01_\\x9f;N\\xa0܉\\x0e\\xdd\\xc1\\x01#\\x05\\n*\\xd5s6]\\x1e\\xaa\\x8b\\xa20\\xa9\\xaaΩ\\xd4\\tA\\x89*\\x1d\\x94\\x02p\\x93hc\\xb45:/\\xfa\\xd6L\\xa8\\x03RB\\x1e\\\"!\\xb7\\xa5%\\x97@\\xf4P\\xe7膚\\x88\\xbbvml2\\xbdۚ\\xaf\\xbf^\\x93Պݚ\\xdc\\xd8`\\xdc\\n\\xa0ٞb\\x90\\xa0\\xcb?O\\x91\\x17\\xf6NTc\\x87\\xbd\\xf3E\\x94\\xad(\\x87\\x1aYr\\xc9\\x00~I\\xff\\xad\\x87\\xfc\\x1e\\xa1,\\xcb\\xd3k\\xd5Vo\\r\\x12\\xb2v\\x90\\xc5\\xce\\xe0\\xd4/I@\\xc4\\xd2^\\x14\\xca\\x0e\\x85\\x8dZ\\xb5\\xea<\\xfd2\\n\\xf2\\x9eܣ\\xb9 $\\xe5\\xea\\xa6ۧ\\xeb\\xab\\a\\x8c\\xec\\xfa\\x87\\x8b\\xab\\xc1\\xdc\\xe7m\\xec\\xab\\xf1\\xff\\xd3A\\xdf_\\xe9\\xd8?`\\xdf=\\xd5[\\xeb\\xff`\\x8e\\xfan\\xf3\\\"\\x1f\\xae\\xf6l\\x88\\x0fy\\x02\\x10z\\xb4\\x01\\xfb\\xce<\\xc0\\xaa\\x1c#\\xfb\\xae=z7v\\\"\\\\\\x88\\xa1c\\xfc\\x93\\xfdY\\xf5gH\\a\\xc5g~5\\x846\\x9e\\xf1\\x16\\x9eޔ\\xb1r\\x03\\xeb@/s\\xf4F%\\x81 :u\\xab\\x14\\x1d\\x1b\\xb2aeƦ\\xd3B\\xef3\\x8d\\x86\\xd0_ψ\\x0f\\x92\\xceԳ\\x92\\xfd\\xfdc\\xd2WT\\xe4\\xdc=\\xba֗<V\\xc9:\\xc0\\xa4z+{k\\x00\\x04\\xaf\\x9b>\\xb8&Q\\xe6\\xe6\\xd5\\xe8\\xd6\\xf7\\xcc+c\\xbe,F1\\xc5\\xec\\x1e~\\x84i\\xeb\\x89\\v]\\xfd6\\xd4\\x10x\\xf5\\x0e\\x03\\xb3\\x8f^yv\\x9b\\x99\\xbd\\xf3O\\x89\\x16\\xee\\xea\\xb9\\xe1\\xca\\xd1\\xd9\\x03\\x8b\\\\\\r\\f5|{U\\xbc\\n\\xf9m\\x0e\\x10\\x16\\x8d\\x91\\xcd\\xcf\\xf0z\\xd6W\\xb6\\xf9\\xd9mfo\\x9d\\u007f\\xd3KU\\xaa\\x87\\xc1:\\x1e\\x80\\x8c\\xfc\\x13\\x0f\\x9b\\xfd\\xc4 \\xb3\\x17a\\xf1\\x92\\x0f\\x9c\\x8a\\x84\\xcb\\xfb\\xed6\\xa2\\x1a|6x\\x90\\x9f!`\\x83\\x14\\x84%\\x8b?\\x80\\x10\\x01\\x13\\xf6[\\b2\\x80!\\xb2>\\\"7\\x81\\xb2\\x83\\x17Ј\\xd3\\x11\\x90S\\xdb[K/\\xf13\\xe5\\xa4s\\x8b#i%\\xb59\\xed k\\xb6\\xad\\x91H\\xd64J&K\\xfe\\xd5\\xf8\\xfa5\\xba'\\xbb\\x1b%\\x81\\v\\xb6B]iN\\x90}\\xbe\\xf0\\xd2\\x04\\xbfs\\x16\\xb3S\\a\\x1e\\x99\\x98SnݒF\\x1b\\xa2\\xa5\\xb7n_d\\x9a\\xc7\\xfa\\xd3\\xd8qe\\xa1\\x86\\xb4t\\xb2^ONO3\\x9c\\xbfЀ\\xda3\\x9c\\xb6\\x94\\xe1O\\xf2OMy\\x1bE\\x8e\\x82\\xfc\\xaa7*\\xb2\\u007f\\xd5\\xff\\xfed\\xdcN\\xa0uV\\xa5\\xa4\\xd8\\xf1Y\\x96\\xa4\\\"\\xd3R3\\xbed(oi\\xb9\\xaaxJ\\xc1\\xa5\\x91_5Ś\\x8d%\\xf5\\xe6\\x06V\\x8a\\x9c\\xed?y\\x92\\xc8\\xd8z\\xc2\\x14\\xbb\\x89\\xfa\\xed\\xc0\\xeb\\x04\\x06\\x00\\x8a\\xca\\xd1N\\xf6\\x18\\xbb\\x0fP\\xe7h\\r\\f\\xbb掭\\xc1\\f\\x8c\\x12TZ\\xe8+Q\\x89[\\x02\\x90Ov\\xb6\\x83\\xe3P\\x96\\x813\\x88\\xaa\\xaaJ\\x85\\\\=\\xbdq\\xda\\xf0\\xd8\\xe0Ɔm\\xdb\\xc1lIm}C=2\\x99\\x15\\x1b\\xcbYPFȦ\\x93ǿK\\x90\\n\\xd7M\\xd1jߕ\\xd22\\xa5N\\xa7\\xf4)`\\xd0>*\\x03\\x12#\\x99q\\x87\\xfad\\xb6N盒\\x842B\\x85 \\xcf\\xe1̂a\\xbd~\\xb8+\\xbe\\xa0\\x05\\xc3VG \\x89ܡp|c \\x1b\\x8cI\\x06\\x9dΠ\\x0f6\\x83\\xbe\\x02\\xc6\\f\\xe7uئ\\rZWu\\a\\x93\\x16\\xf8=\\xbcxs\\x8fotzzt=\\xc4<\\xb5\\x88\\xe8\\xb4\\xed\\x04\\x9cn\\xeaT]hZ\\x88\\xde\\xe5\\xa3hU\\xb0\\xc0ޘ\\x9c\\xc0\\xd4\\xe0\\xa8\\xe0\\xb5#\\xa7\\xf9\\xcc&\\xf8\\xb6\\x83\\xd7A\\xc9\\xf0\\xa6c\\xd5\\a#\\xb2\\n\\xc8}h\\x1f\\xb9\\x00\\xf8\\xd0={<\\xedm\\xc9mM\\x8d\\x1e;K\\xd1j\\xfeV* 3\\xe0\\xcc\\nU=\\xcb\\uee4d;z\\xda=\\xd5\\xc6ԯ\\x9a\\x95\\f:2\\xf25\\x90A\\x9d\\x9c\\xaa`7\\x14\\xe8\\xeaj\\xd8\\xe8\\xf5b\\u007f[\\xaa\\x83L\\xb4ۉd\\aX\\xb5\\x15\\x8c:z\\xfd\\x0e\\xb3\\x14\\x83\\xb1\\x81\\xfd\\x87\\xf3\\xdf\\xe5\\x1b\\xe9\\xd6\\xd5\\xebN\\xf7W\\r\\xf4\\xafY\\xe7\\xf1\\xb4:\\x8f\\x9fz\\x1b\\xfc\\xe6\\xb1\\xe2\\xcdw\\xb77g\\x04\\xa4v\\f\\f\\x0e\\x0fT\\xf5\\x0f\\xc4\\xe5\\x8e-\\x00\\xbb\\x9a\\x8ds\\xa8\\xb9O \\x953\\xde\\xdd\\x10cx\\xeb\\xdeK\\xc1\\xab\\xa4*\\xfc\\v*V\\xa8\\xecU,L\\x8dBH\\x84<\\x90\\x02\\x87\\x06\\xc0\\xa0z{7$\\x10`\\x86\\x9f4E\\x8b\\xe5-\\xfc\\x96\\x82[<\\xcc\\xc77nPY\\xb3\\x05\\xdcO\\xcb\\n\\x8bR\\xf7\\x94\\xc3t\\x98\\x84\\xe0\\xe1\\x14\\x8c\\xbc \\xdfh\\xe5\\xffWW|\\x10\\xc5S(x\\xc0Cƾ\\xad\\x01E\\xdf\\x17\\xdf\\xfb\\xc43\\x8b\\xa0\\f\\x80_\\x02\\b\\x02\\x18.D\\xf4\\x87\\xad\\xef\\xa5R\\xf0\\xccO!\\xff\\xe0a\\x12Q\\xd5^ղ\\xd1yCH\\x91\\u007fO'w~}o\\x0f6Ё\\x00dT\\xaf\\xf9ia\\x8e`o\\x02Q\\n\\xbb\\xa5\\x06\\x89N\\xf1\\x1a`\\xf1\\xe4\\xc5{$* \\xb6\\xa4\\x97\\xa6c\\xf5\\xb0h\\xfc\\v\\xf9B\\xae\\xad4\\x91b\\x97\\xa7JIU\\x1b\\xb87\\xd0u.\\xdad='.@\\xf3\\x16\\xd21\\x00\\x10\\x98\\xe6NQ\\xd2\\xe7wz3\\xb5_\\x9f\\xc4\\f\\xcf\\xca\\xd4\\x12Q\\xbb\\xaf\\x0e\\xe7\\xa9a!\\xb0t\\bg\\xd0e\\xef\\xb3\\xf7\\xf6b\\xc1ի\\x9c\\x05$4\\xf1W\\xb6Ŷ;=}7 \\xc3Qyز\\x0f\\x1dB\\xcf\\xf4\\xe9\\x1eaw^\\xde$K¹|\\xabԚ\\x0fD\\xb4\\vZy\\xd3\\xf3\\n\\xb7ԁp\\x869\\xe8\\\"\\x9b2\\x943^Q1Ω\\xbdYw\\xf9Q\\x89H\\xce\\xe2:B\\xad\\xa8\\b\\xad\\a\\b\\xa3ꬓ\\x06\\x86\\t\\xadU\\xc1\\xa9E\\xd17ou/\\xcd/9\\x9bS/j\\x9e\\xa0\\x8a.\\bfXZ\\xb7\\xc7\\xed\\xb6\\\"V]\\x84\\xa7\\x1bh\\x90\\xb6\\x82f\\x9cԑ\\xa2\\x03\\xc0i\\xac\\xc8p\\x81\\x95\\xdchpq\\n\\xf2\\xa6hmmiqp\\x1cr\\xf5\\x9f\\xa5W\\u007f\\xd8tQmR\\x00_\\xe9\\xa7\\xe2+\\xd0\\xf6Ə\\xf9z4\\xc6\\xf0\\xe5~p[\\x01\\xb3\\xec\\xde\\x14#\\x99\\xc4\\xf9 :\\xf9\\x8ftV\\xdew\\x95pͽݘم\\xb1˨lW\\x99\\xd9\\xd4e\\x84yŘ\\xdd\\xf7j\\xc0\\r\\xa9\\xfe\\x93\\xc0lN:[n\\x0f\\x8eq\\x00\\xf3,P;\\xab\\xd3iK\\xd6t{\\x98\\xad\\xed\\\"]#\\xad7$M\\xee.\\xf7\\x98CIp\\x80\\x1f\\x9fJ9\\x8e\\xb9\\xf3Z؎l\\xc8q䵚\\xcdV\\x8f\\xc8\\xd3؈\\x1d\\xe3\\xb2\\xd7j6\\xb7\\x1a]\\xb0\\xd5\\xc5vΛKS\\xf9\\xe02\\xd4\\xd7\\x1b\\x14\\x11D\\x80\\x96ވ\\x83\\x11\\xd3\\xe9\\xd4\\xefB\\xc2εB'J\\x88\\xe2\\xb7\\x05\\x92\\xee\\x9d\\xd4\\x1b\\xc1A\\v\\x01F\\xcd]\\xbd\\x17\\xd9RLJe\\x02\\xc3\\xc1\\xf8\\x1aU\\xe8\\xa0\\x1b\\x88\\n\\xf4k\\x12\\x9b\\xa0l\\xcccY+\\xc5\\xe4%\\x91Y;\\x97\\x00\\xae\\x87N\\xb5l\\xc9,_\\x1eC\\x95\\x83\\x86\\xfa\\xb9s\\x06\\xee\\xbf\\xe4\\x90\\xc4-\\x91rj\\xcc\\xf2\\x8aI\\x03-\\xa7 N\\xf9\\xea\\xd9%$V\\x93\\x9c\\x9dհI\\x1e\\xdc\\xfa\\x9a\\x89\\xfc\\xb7\\xa8˼\\xbb\\xd7\\xd6\\xd6\\xcc\\x13\\x9e\\xe9\\x19\\tiJ\\a\\xc0\\x8aW\\xd5\\x04\\x1b^\\x8b8]lQ\\x15\\xa9\\x1e>\\x88\\xaa̦=\\xbd?U_\\xa1a0))\\x8f\\xc7\\xda\\x06Y\\x02[\\x82V\\xeb\\x00\\xc8^\\xde''\\xa7\\x90\\xb61'3Wy\\xa5\\xd8\\xc4)\\x15\\xd5\\x19\\xe9\\xe9\\xbc\\x1fݡ\\xf4\\xb7\\x00Ӈ\\x01rѡ\\xc1\\xb5hz\\x18\\x8e\\xb7\\x8f\\xa4\\rB\\x1f\\xffݏ\\xd1W\\xdb-iY\\xd1a\\xec\\x1e\\xb6\\x03\\xc2\\xc3\\\"5\\xe9\\x1f-\\xf8Zv5\\xfc]\\xdak\\n'\\xe7\\xd0\\xceS\\t_a\\x94 ~o\\xa2O(\\xfd\\xbb\\x1f\\xea\\x89\\x1a\\xa8A*\\x92|\\xfa\\x14\\xec\\xed\\xdf\\x00i\\x88\\xf5\\x1f\\xceт}\\x12\\x8f\\x82\\xe3\\x06\\xd6u*K\\xf6[\\x83\\xd1Q\\x9e\\x96\\xe2(\\xc5\\xe8kR\\v㷐\\x0e6\\xfc\\xb2\\xf6oA\\x84\\xd7\\xe0\\xc2\\x17s\\x15\\xed\\x8a\\xc0فs^\\xac\\x1d\\xf4\\xd2\\x10f\\x1f\\xb1\\xff\\xdap\\x90\\xb4%>\\xb5`\\xbap<\\xc8'\\\\\\x9b\\x14Ҁ!\\x90\\xd4l\\x13\\xdd\\xf3\\xe6\\x01\\x18t\\xdex\\xa1\\x9d#.\\x89[2b\\x02\\xa6\\\\iWr\\x86{\\xf5\\x98\\xe1\\xfc\\x99\\x03\\xf0S\\xa3\\xce\\x13\\xb9E\\x1b\\xeb;\\xa84\\x16\\xddMz\\xb5\\x00\\xa6v\\x00\\xcf\\xf7\\x10[\\x17\\x9a\\x90b\\x9dý\\x1e\\xe3\\xe1&o\\x91h\\xe5\\xa1l\\x1d\\xf4\\x86\\x05(T\\xb4*^E,\\x13\\x1d\\x19l\\xb4\\xc4κ\\xc4\\xf1S\\xc2\\xea\\xc1\\xb8\\xb9.Ѐ\\xb6_Bp\\xa9\\x8c\\x98\\xcc\\xeeF@c8\\xa3\\x1c*\\x95sɄ\\xc2\\xd4\\xec\\x90*\\xfc\\xbc`5\\x87\\xbaB\\x8c R\\x1fѨNnr\\xed2\\x0fͣ\\xaal&*\\x17\\xe5{;\\x95\\xf4\\x87P\\x88-\\x88\\xb9\\\\\\xebi\\xd6U\\x1dy\\xa8\\x84\\xe1\\xb88\\x18\\x164\\xb7\\xbcM\\xd0<\\xc0.Q\\x9e\\xdf\\x1d\\x94\\x12\\xfb\\x93\\xf9\\x19\\x88\\x1d\\xb9\\xed\\x88\\x1ei@\\xc4k\\x0e\\xc1\\x86\\xe9\\xea\\x83<\\xfb\\x00H6\\x0e\\xcf\\xc6q1&\\xd4\\xcd]\\n.\\x95\\xdbDEv+u&i\\xbf\\x11F\\x94\\xb8\\x8f\\xc1\\x1fqJ\\x046\\xf6Ku&\\xe5n\\x84\\xda\\xe4jW<\\xc5\\n&\\x12\\x89\\xe7\\x11\\xe5B\\xc1\\xc64\\xb3\\u007fp\\xd1\\x02v\\x82f\\x85\\xe6\\xfaB\\xdf\\x03NV/>n\\xa0g^\\x84\\xa4·U\\xa9\\x00\\x15kx\\xb8:\\xfd!\\xa52\\xbb\\xcdy^\\xa4.\\x06\\x1c\\x91\\xb4\\xe6\\x9f&\\x13\\x8fT\\xd7ޞ\\x1eQ6\\xa9\\xd9\\x10\\x12\\xaa_\\x03\\x03tR(\\xdbl\\xc8\\xd56\\x81\\xb4ݨ\\x8f\\xeeâ\\x16\\x93\\x16K\\xc1N:_\\xac\\xca\\\\5_x\\xd2jѦZDZ\\xe4?\\xdfR`\\xa6H\\x8aI\\x02pD}\\r\\xf7v\\x81\\x9d`7\\xdb\\af\\\"c$\\x8cܶ\\xec\\xe8D.b8\\x97\\x17\\x97\\xa5ԉ\\x13fy\\xaf\\xd9$\\xa3\\x12 \\x02\\xc8\\x03!B\\xab\\x10\\x00\\x85\\x98{\\u007fKQ\\xd3&\\xd1\\x11\\xfa\\xb9:30\\xc6\\u058b\\xd1\\xf8\\x83\\xd1\\x1c\\xfeA\\xd8\\xf9\\xa4\\xf0\\xea\\x10\\x8c\\xcdOO*\\x9fg\\x81\\xee\\x05\\xfd\\xae\\x80\\rᤖ\\x86\\xe1\\xfb\\x81_\\xb7\\xb1d\\xcb1̠\\xd9\\xf5\\xc0\\xfb&\\x12Эy\\x00Q`\\xaf\\\\\\xf9\\xcb/\\x10\\x9d\\\"\\xce:\\xa1R+\\xaa$i#K\\xb7jЩBy\\xbc\\x13C\\x87Y\\x93/$;7\\xaa(\\xf9K֪\\x83f\\x06\\xa9\\xd7.ɧ\\xa8\\xbe\\\\\\xe9ڧ㒓mJy\\xa6\\xf5\\xcb|;\\xd6\\xf1N\\xa4\\xcb\\x13\\x8f\\xba\\xd6\\x1cD$\\xbd똣\\x9d\\xae\\x89\\x04$\\x04\\xd7\\xf9x\\xebD\\xfeS\\xfc\\x05\\xbd\\xb5\\x81\\x05\\x03\\x02*U\\xadn\\x9a\\x8b\\xbeD\\x974\\xf4P(?U\\x96\\x80\\xf2Iɋ\\x04\\xea]\\x94dsc\\xdbT[Ӕ\\xeb~\\x9e\\xb8\\xfc\\xd5\\x12^\\xc9\\xc1'\\xccB\\xe4{\\x034>\\xfe\\xe2\\x03\\t\\xd6\\xcfS\\xed\\xe759\\xda\\xef\\xfa\\xfc\\x1fi\\xd4\\xf4\\xe9l\\b\\x95?|\\x9f\\xcaZ\\x90\\x1c\\x9aّb\\x97\\xa5\\xca\\n\\r\\x87n\\x1a\\x8a\\x03R$\\x95\\xc9\\u05cf$7\\x12\\r;~\\xb0\\xee%U\\x9f\\x92\\xfcǆ\\x94]\\x80o\\xe6\\x05w\\x8e\\xa7gs\\xcf\\xe6\\x15У\\x96\\xb3\\xb7\\x15\\x94\\x80\\f\\xc0\\x17\\x9e;\\x9c\\xd8~;\\xe4\\xf048q^S[\\xfb\\x9ae\\xdd\\xdd\\xee\\xdb\\xde\\xf6\\x99\\xa7\\xbd\\u0604\\x1d\\xdb=\\xa2pU\\xd5g\\x96N0\\x89o\\x12,2\\xd7?\\x8bsOb\\x8c\\b\\x8d\\xc8S\\xec\\xcbJ\\x14\\x15\\xc5YrIy\\x02\\xf6\\xa0\\xa5\\x85\\xd7\\xea]w\\xa8\\x83\\xd4Nm\\xd9G\\x01.\\xfbZ\\x1a\\x85Г\\x04G\\x8f\\f\\xbf\\x19\\xfe\\xa2\\xb7\\xfe\\xbf\\xdb\\xd3XCC^\\xbb\\xb7\\xd6\\x00+: \\x02u\\r&\\x8b\\x88֭k\\xb2\\xbf\\xda<\\xac0>\\xac\\x9b\\xfd\\x03\\xc3\\xd6\\xe1\\xd3\\xfd\\u007f\\x00\\xac\\x13\\xdeo%\\xa5];\\xff\\xfe\\x10\\xe7\\xe3\\xfa\\x94\\xea\\x93^Ո0\\xd6\\xe3\\r\\u007f^Y\\xf6\\x93H5\\xa2\\xe8\\xa7e\\x9ds\\x9664>\\xa8>\\b\\xe17\\xbce\\x19 E8Āx-r凘N@\\x17\\xd5\\xee\\x19+\\xa9sc\\x9e\\x9a\\xeb\\x85\\xc7\\fI=I\\x86\\xb1\\xeda<l5\\x96?+up\\x1c'Ob\\x87C\\x1e\\x01\\\\\\xa4\\xba\\x19E\\xa8\\xa43]\\xbf\\x9eB\\xcc\\xfdqT*\\x99w\\xee\\xe7\\x90\\xe0\\xcf\\xf3\\x18\\xbca/\\xf6X\\xd4\\xd3\\x02鬾Y҂\\xc9\\xc5\\xc6愶\\xf86xx\\xa0\\xf7\\xee\\xe4\\xc0ð\\xd2T︥\\xaa\\xea\\x06l\\xf4\\xbe\\xa5\\x817\\t\\xecH \\f\\x959\\x93ɏɥ\\xb0\\b\\x8dA~D\\xd6\\r\\x052\\xa0Y\\x02@D\\xec\\x88,ó&\\xe2\\xc8JM\\xea\\\\c\\xa3\\x9f\\xaa\\xf7˪\\x03\\xf4S\\xb5\\xea\\xe1dS\\xa3m\\u007f2\\xac\\xb7\\x19\\x14\\xf8\\x10\\xf0\\x13\\xcc\\xd5\\xfe\\xf1\\xb3U\\xab:\\xef\\x18\\x83Jθ\\xcd6\\xae\\x18\\x9f\\x98\\xc0\\x15\\xbd\\xbdo\\xfaIʹ\\xf3L\\xa6F\\xbd\\x0e8lg\\xed<\\xc3\\x14\\x9d\\x17rpL\\xa6\\x00\\x1b\\x15\\x1aB\\xc6\\xfd\\xaez\\xb6\\xf4\\t\\x8d\\xa9\\xe1z\\x85\\x8a\\x98WI,\\xd6\\xe4\\x18\\x12G\\x8f\\xaa\\xfc\\xd9Y\\xe0g\\x1d9\\x8a\\xf4\\x1b_8\\xc3[\\x18*\\xe4hXL\\xad\\xb4k\\x8bp\\xd7.\\xa0\\xcca\\xd5\\x04\\x91|\\xc1\\x1ddnU\\xf4\\x15\\x97\\xb0\\xc2i\\x9c!\\xf2\\xd7嗣\\xb04\\xee\\xe8Ȓ'\\x00=\\xe2\\xa4(\\x9c_mP\\xa8ÃU\\xda,\\xdc\\xd2\\xdc\\xcc8x&\\xbc\\xca\\xe9\\xd4ʸ-'3/-\\xc7>\\xdc\\x11\\xa6hU\\bOm\\x11\\xf6\\xd1M]\\xfb\\x84J\\xf7\\x97@\\x19\\x1c\\x9d\\xe1\\xf2s2P\\\\\\xd1/\\xbf\\xee\\xb0_\\xe7q\\u007f\\x93\\x02\\x97\\x89\\x8dT*>\\xa7r\\xe3\\xa9#!M\\xe0T\\x80\\x85W\\xaa\\u007f \\xb5\\x1b\\x10\\xb0\\xed\\xe4v\\xad3\\xb7\\x12\\x9a\\t\\xad\\xe6}\\xa2\\xb5\\x88B\\xf4Î\\xc0ϑOŢ\\x97\\xc2G\\xbf%/Ex_bC\\x0ew\\xdaآ\\fE \\xaf1\\xce'\\xe3\\x8b~\\x10\\x1c\\xe8='\\x01Y\\xebf\\xc6}\\xc3\\x1f\\a\\xedQ\\xa9\\xfa\\x8a\\xe3մO\\xbb;\\xb7\\xc0m{\\xe3\\xab\\xf3\\xf7w\\xb6K;\\xc8mU\\xd5Оb\\x88\\x18\\xa0,\\x8fyH\\x84\\xabk+t\\xa9\\xaa\\x0fk۷\\xa7\\xc5\\x11\\xa8W\\xfdi\\xd6\\xf6eN\\x8es\\xa2«\\xa5\\xb2\\nb\\v\\xa7\\xc5؉\\xb3}\\x99\\x83줯N\\\"\\x10\\xad\\x1e\\xeb\\xb4e\\xed\\xe6\\xb8\\x0fX\\xe9\\x9a^\\x06!D\\xe0W\\xfb\\xea$\\xd8\\xd5\\x06\\x97\\x1a\\xf4\\xfa\\xd6V\\xefi(\\x85\\xfd\\xefX\\x94\\uffc8\\xb8\\xb1\\b\\xa7\\\"\\xc5\\nO}\\xbd3P\\x1cy\\x8a\\xa0\\xa6{\\u06dd\\xfa\\x8b\\xf7\\x16\\xe5\\x1d\\u007f\\x0f>\\x12F\\xea\\xaa\\xfc~b!L\\x80\\x8cl-\\xd5i8\\xeb6)\\xeb\\xef\\t)2\\xa3t\\x0e\\xf8v\\x93T\\x01Q\\xb5\\xe8j\\xa5\\vU5c %\\x90\\xff葇\\xcd\\x00E\\a\\xcdR\\x81L\\x85\\xf1\\xfc\\xa0\\xe8\\xe8\\xd0*\\nqA\\x05\\x85}#\\xc2;\\b\\xf8\\x9c\\xe6\\xe6\\x1c<\\xc1\\x81\\xf7\\xa7P\\x8e\\xe4\\xe5%\\x16z\\xb9\\xc9]\\xe7\\r\\x1d\\x9a\\u007f\\x85U\\xb8\\xb5kqU\\x14\\xca\\xe5\\xfa\\x98M_\\x90SB-\\xc9\\x19\\xac9>\\x9f~\\x9d>\\xff\\xf8.ց(\\x84\\xb4̠\\xa0\\xcd>-\\xbb\\xe8\\xe7N\\xc3\\xd6\\xe1\\x01\\\"\\x1d\\xc7l=\\xfdN\\xc6s,\\xac\\xbd\\xbd\\x10'/\\xc7-moW\\xa9\\x9cz\\a<\\x9e\\xbaΦJ\\xedЫ\\x1c\\x0e\\x0eл\\xafiￊ\\xa4\\x86\\xfd\\xf4!9\\xf1DbҲ\\x97\\xc1\\xd9A\\xc1g\\xbf4r\\xd3\\xe0\\x88T\\xe4j\\xff\\x9a\\xfd\\x80\\x1d\\xb9\\x9e\\x1b.\\x17%P\\x8fX6\\x12\\x8b\\x82\\xde\\xc7l\\x92\\xb6\\xf9\\xb1QEP\\xa1(\\xb8S{\\x1d\\x87H\\x93\\xf1'8\\xd2,llݭEk\\xb4\\xbbӵkJT\\xc7\\xe4\\x18U\\x06\\x9f\\x8a\\u07b9s[[\\x1d\\xdf/\\xfe\\x00\\x1f\\xe0R\\xa0\\xb4\\xd2ґYeo\\x85\\xe9E\\xbe\\x17 \\xa6\\xc1\\n\\xe1λ\\xe2\\xac:+\\xcb\\xe8\\xbb\\xf7ɽ\\xa9T.\\x8e\\xcb\\xd3\\xcb|K\\xf4\\xb3\\xcd4\\xa5z\\xedV\\xeay\\xd8\\xe1\\xe0\\x1dz\\xa6\\xe2\\xee\\xefˉՄ)^\\xe4.\\x16o\\xd9\\x1fc\\x96\\bȍ\\x8d\\xae\\x17S\\xb8\\xbc\\xaaC \\x19Q\\xc9\\xe2p\\xd1\\x19\\xe0\\xf6\\x06\\x13\\xf6\\xd6\\xc5f'O\\x8a\\xfd~ٴ\\vΥ7D$\\xdc\\xdd\\x03\\xb5\\x93`4\\xcf\\u0095皫Z\\xca僺\\xdbgBs\\xff\\x1d\\xdaXR\\xfb\\xfc35\\xcf'\\x8fٽ\\xf1'\\xb6\\x8e\\x06\\xdcxF\\x87\\x8f\\xd7\\xcdH%\\x9a\\x1c\\x89\\xb5\\x16I#\\x8b\\x16\\xeeN[\\x8d&\\xce\\\\\\xd1)\\x19\\xc6a\\\\F\\xd6R8\\x97 \\xdd\\xdd\\x1dE\\x88^F{\\x9e\\xb8.\\xbd\\xd7ʵ.!\\xc8:\\xe5\\b+\\\"\\x85\\xf5 \\xd0t\\x99iC\\x02a\\xbb\\xbbP-\\xaa\\x95am\\x95\\x8a\\xd48E\\xeaB1g\\x82i\\x83l:\\xa4\\x85\\xe51\\xf5\\xc2\\x14\\xec\\xd1\\xef#L\\x0e\\x83\\xf7x\\x8ad\\x87_\\xf4\\x8e;\\xb9*\\xb1\\x00iRP\\x12\\x95\\x0e{\\xac\\xed\\xd7l\\xa2\\xbbPs\\xb6\\xdbl\\xde\\xf2`cV@\\x9b\\xbf\\xb4\\xd5\\x1f$3M]\\xb2\\xa3l֠\\xe3\\x02r<I\\x10|<V\\xa9U\\x1c?G\\xced\\xd7\\xe4I!J\\xa6\\x19_M\\f&\\v\\x10\\xeb\\f\\xb6U@\\n%\\v\\xb6\\x9a\\x99\\xb4\\xb5\\x1b9\\x9cX\\x8dg\\x99\\x95.\\xbc\\xed\\x1b\\x8e\\xc9\\xf7to\\x1f-J\\xa0\\x8f\\xdbe\\xb1-\\x12\\n\\x82ETQ\\xb0{\\xc1\\xb1\\xc0c\\xc1\\x81\\x14\\xc0s}V\\xd7Yꀤ'\\x8f\\x93=\\xa98\\x1e\\x80\\x9d\\u007f\\xbf^\\xe9\\x9dMt\\xbb\\x89dGY\\x99\\xc3ʩi\\x823\\x02B\\x8a\\xcf\\\\\\xc7\\xe5M\\xd5T\\x9bwn\\a\\xa2T\\x9eg\\x9bg\\xb3]6\\xa2vf\\x97,\\xfa\\x81$c\\x1c\\xa9r\\xe4\\x86k{\\x1e\\x06'\\x86zQ\\x833S\\x92\\x12(^\\xe8\\xe3\\x06\\x87I\\xe8M\\xa0\\x04S\\x12T\\x95\\x92\\t \\x88}~\\x06\\xdb\\\\Z:\\x80\\xda\\x1e\\xc8Ďl\\xadṣ)\\\\.\\x88\\xf8\\x1aM\\xb0/\\x0e\\x00\\xa2\\xfb<\\xa0'\\xb3\\x8d]/\\xac\\x83`\\\"\\xcdz\\x04f\\x9a\\x06J\\xda9\\xe7z \\xc5\\xdfO\\xfb\\xc8\\xf2%\\xb7+\\xfb\\xe2\\xd1v\\xd5\\xc1\\r\\xda\\xff\\xc5%M\\x99\\xc9l\\x81\\x0ed\\x9b\\xa0\\xf0\\xa8\\xa7\\xf9t\\xdf\\xc1\\x88>\\xeeV\\xebV\\x82\\u007fP\\xb9\\x1b\\t\\x94I\\xb8Dh\\x06\\xc8\\xe7#\\xee\\xafĂ6\\xaf\\xff\\x89U^R\\xbe\\xaf\\x14S?i4\\xb7\\xfblѡm\\xdb0>8e\\x8a8\\x82\\x99\\xa7\\x8e\\xff\\x0e!J\\xad\\xce\\xfc\\xff\\xf1\\xc0}\\x0eŰ\\xfa\\a\\xe0\\t\\x00L\\xacM\\x8bF\\x18>\\xe7\\xfe\\xc0\\xe3G'~~\\x17\\xe5\\xff(9\\b̈\\x14\\xb1\\x12\\xc7u\\xab\\xe7\\xcd9Tt\\xb6;wtR=F\\xea˗zU\\x11\\xff\\xf7\\xf2\\xfaa\\xb5\\x01\\x14Ӧ\\x1d\\xe5\\xf1\\xa4\\x90\\xef\\xa8q\\xd5\\xd9*[\\x1dױ\\xbb\\x9f\\x88\\x11\\xde\\xd70\\x05E)\\xf0\\xd7<\\x90\\xe3HVW\\xc3\\x19\\xe6x\\x10\\x8d|P(p\\x1eD\\xc0\\t4%\\xbdw\\x02s\\xeb\\xdb4\\xad\\xfc\\xf5\\xbc\\xf5S\\xc3%\\x15Ao\\xbb*$\\x11S\\xe3yi\\xe1S+$]\\xff'H*\\xa6\\x86\\x9b\\x9f\\x11\\xffv\\xd7mç\\xa6UL\\xc4ו\\u007f\\x91Ec4\\x00\\xfe\\xd08\\xcb`hN\\xae\\xb9ef\\U00082286\\x88ʟb\\xa6Ɣ\\xaem\\x9b\\xc2lX`\\x9c\\u007f?\\x8d\\a4\\x9aQ\\x8aCg\\xefS8a&$V<2\\xc7\\xca*F)MC\\xc0V\\xd0\\\"i\\xb1\\x88\\xe4\\xd1Վ\\xf2\\xa8\\xbd;ߥ\\xfa\\xb3\\xfc\\xeb\\xfdS\\xe5\\xca\\uf791u\\\\}$Ab\\xdd;ѥ\\xb4\\xb8\\xc4׳\\xaa\\x1f\\x8d\\xe5\\xaf\\x13\\xe3h\\xd2P֙\\xc9m\\x84?\\r\\xcfM\\xa3\\xe55\\x11\\x19\\xba\\x90\\xd2\\xcef6}\\xb9\\xd9CYR\\x0e*9\\xd6]2i\\xe9J\\xaaX(~\\x8ag\\xf9<E\\xdc\\xfe0\\xf2h\\xe1o\\xe8\\xa2\\xd82\\x8e٦%09&n\\x8e\\xcer\\xe4\\x98hcv~|4)R\\xf7ؤBVB\\xf2\\xea\\xefŘ\\xe4\\xb6\\xe0\\x1f\\v\\xc1PƬ\\x83\\xc0U̩\\xab2S\\xa9\\xe7\\xc8\\xe6e\\xc4 \\xf2\\xc2\\xe9\\xbe2cLҗ\\xaa\\xdc\\xde\\xda!\\xcb||Ws֛\\\\\\x96\\x99\\x8aw\\x10\\x80Q~\\xa1~\\x11k\\xf4\\x9d\\xb6\\xf4\\xdbV\\xadt\\u05fa*\\xa9\\x1bqs\\x8e\\x8aP\\x89@!\\x90 \\x92\\v\\x15\\x1d\\xe5\\x10>G\\xa4U\\xebvi\\xa5\\xad\\xdf.\\x9d\\xe6kT\\xd71N\\x9c`\\xc00\\n\\xc3'c-|\\x81\\xa15\\xffH\\xfe\\xb1\\x99\\x86IS\\xbb\\xbc\\xcaߓ\\xf4r\\xf1as\\xaa\\x1a\\xfc^\\xfa\\xe9\\a\\xe4\\x87O\\xb3(\\xa0 ż\\xda\\\"\\b\\xc8\\x10\\x81a\\x015S\\x1e\\xd0\\x13\\xc00Bо,\\x00v@\\rZ\\xbeځ\\b\\xc3\\xd7\\t\\xb8\\xde\\x12\\xfb\\x16\\x1d}\\x13\\x03\\xa8\\xd4:\\xe1\\x14\\xa9\\xd4\\x000 \\x9c+\\xe5\\xf2\\xf2\\x9c\\xce\\v\\x89a\\xbc\\xbf\\x98\\xc8}\\xafF\\xe2\\n8\\x0e^Al\\xca\\xfb\\b\\xeb\\x13\\t\\xff\\xbf\\xa5\\x0e\\xe9Cg\\b\\xad^T\\x17\\xd0\\xc7z\\x11\\xad~\\xcaF\\x02\\vo\\xec\\x91\\xef\\xa97\\xdcp\\x85$D\\x80NT(\\xa9T\\x14\\xc0\\x84A\\x97F\\x8dK\\x8c\\x1ds\\xaa\\x97VT\\xec\\x9d\\xf6\\xbc\\xb0\\x89\\xde\\xdbP4\\xbfx\\xaf\\x90\\xf6o\\xe2\\xc6\\xe2\\xf9E\\x1b.\\u007f\\xf5\\xfbN\\n\\xd54}KJ Og\\x1f\\x8e\\x97\\x87\\xe7\\x93\\x14\\xab\\x93V+H|\\xe24n\\xdc\\xfe@\\x92\\x84\\x14\\b$@\\x17K\\xa1`\\x1ae\\xfe`\\x04J1R.i\\xb6OԮ\\x1d\\x8c\\xab\\xcdrA+\\xaa\\xecP\\xf6\\xb9]\\x9a\\x80\\xad{X\\x0e\\xf6\\x00*\\x15i\\x0e\\xaf\\xa4\\x14\\xdbsE\\xdc\\xc5\\x00\\xacR\\xf5\\xae\\x1b\\xa9M\\xbd\\xd0\\xcb\\x06\\x0f\\xb4\\x1eF\\x15\\x9d\\v\\xc6\\xecצ\\xdcrF\\xe9T\\nKC@\\xaaG\\xea\\x15'\\xa5t\\xea\\x1dUo\\xcdw\\xb0\\xf0npO\\xca,\\xd1M*\\x95\\v\\xa7J\\xbd2\\x04lV\\xa6\\xc0K:U(\\xbfx\\xbd\\x10L\\xfb#)\\xefƃjtvҩm\\u07bf|\\xc9Dcf\\xfd\\xf0fM\\x9e\\xfb\\xb5o^\\xd2\\x1f[O%\\xcdF\\xab\\x1f\\xac\\x92̊a\\xa2_\\xfe\\x12\\xe3\\u0590\\xd1\\x16\\xf0\\xfe\\x10\\x81p-\\xeb6\\xc4x\\xe6{\\xf0\\x9a3\\xbd\\xd8\\xf5\\xb7\\xfa>c@\\xb7\\x9f2FR\\xb0#Y(\\x10\\xdb+\\xea5-\\xebՂ\\xfa\\xb3\\xd5^3y\\xf1\\x15\\x91\\x1f?\\x96\\xa9\\x12V\\xb0\\x1e\\x14ϛ\\xe9Um\\xf7\\xafUS\\x85\\xec\\xe2Eׯ\\xf6\\xaaE\\xd2\\xf2\\xfc\\x8d-\\xab1U\\n`\\x8b\\x91\\x8c\\x99\\x9a\\x91'7\\xe5m\\xae\\x92S\\xe7\\t\\xb2\\x1a5Y\\xc1\\xc1C^\\xdeKۢ̽\\b\\x1b\\x16*6\\xc0\\x06\\xa3\\xcc(sǒ\\x80\\x9d3\\x04\\x96\\xe3Ĺ\\xa9\\xab\\x03V{\\x17ݯ\\xec\\x06N\\xf3>Ss&H۶\\xd4;H0\\x83\\xb7\\xd72C\\xb03`\\xc9\\xec\\x83[~\\x8c\\x9esUdgS\\xaa=}zjlg#\\xbd\\x03\\xd36r6L\\x03\\x9f\\x19\\x95\\xd0,\\x05\\n\\x12'\\xc7G)\\xf8-\\xe6\\xdaJ\\x12\\xa0QJ\\x8f\\xf9M\\xa0\\xf4\\xc9\\xe1\\x90\\x14\\x05\\x84jb\\x12\\xa94}\\xc7_L\\xb7t\\xe9\\bɟ\\x19\\t\\x12[\\xb8\\xe9\\xdf9\\xe2>\\xc7҈}\\x96r\\x19\\x9e\\x81x3\\x13\\x9bMǟ\\xe5tR\\xdd\\a\\x12^Vn\\xe9#\\xd2\\xc0\\x95+\\xb9\\x87\\xf9ʀ߃\\x82\\xbe\\xf6\\xa0\\xdfdJ\\xfe\\xe1\\\\n^\\xcd\\x0e\\x11\\x85\\xc0[A\\x11\\xed\\xa8\\xa9<_Zˮ\\x9e\\xc2Ct\\xf8M\\xf8;\\xd40\\xea!\\xfd\\f\\x82\\xaa\\xdcͧ\\x19\\x1d\\x82뱫Iv\\xd2\\xea\\xd8\\xeb\\x82\\x0e\\xc6\\xe9ͦ\\\"1\\xe3\\xd4\\xf2\\xecb\\x1f\\xc6\\xd4)\\x9bg4K-D\\x8b4Z7O\\x99\\xca\\xf0\\xf9\\xbd\\xee\\xe5\\xa7\\x18b@G\\x84\\xfb.\\n\\x9e:\\xc9\\xc1\\x1e\\xe2('\\xcfu\\xdaOsw\\xbe\\xcedeT\\xf2L\\xcdW\\x01\\xd8Gy<&\\x96\\xa8\\xb0\\xde\\xcf>\\xe4\\u007f9ۚ\\xf0k\\xd1\\x17my\\x92\\x1d\\x94\\x82\\xddM\\xe2!\\x8fc\\x06\\xce\\xdd\\xfc\\x02\\rK/\\xf0\\xb2ީ\\x12\\u007fc\\x1d\\x99M\\xf7\\x9at\\x13\\x1b\\xe5\\xcdY\\xdb\\xfd\\u007f\\xf6\\x03\\a\\xf9\\xeb\\xc5\\xf2\\xed\\xf9\\xa6>\\xe80W\\xdc\\x04\\x99ĭ\\xf4\\xf6\\x155\\nH>dA\\x14\\xcb'\\xb3J\\xbd\\xc8^\\xc4jn\\xc0>\\x01YFR\\xf0\\xcb)\\x98\\x18Ζ\\xfa@\\x97\\x93\\x05\\xb2}8y.>{iq3O\\xe2o\\xd1\\xd3!\\u007fH\\x16`\\xc0\\x04\\xe8ez\\xa7\\xda\\xe8\\xc4)\\x89S\\r\\xbcށ $\\x15\\x95M\\x1f2\\xb5\\xf7v\\x10Ý\\xdcI\\xbb.zJ\\x13M\\xba\\xb1'\\xbc\\xda1n\\u007fөC\\xfd\\xe6\\xfaY\\xb0Z)\\a[SL\\x89\\xe1Z\\xe31\\x1cj\\xd9\\xfb\\xe0\\xa16\\x80s\\xfd\\xd2n\\x8f8K\\xe24F`c\\xd60\\xf0\\xaa\\xa2\\xf7f}kk\\xbb\\xc3\\xd9*\\xb5(Ae\\x87]}4\\xb7\\xa72\\u007f\\\\\\tQ\\\"D\\x11\\x14he˷\\xfb\\xad\\xa9\\x96,\\\"\\xea\\x12\\xcb\\x1f\\b\\x02Wԋ8f\\xbe\\x17\\x99'\\x11\\xb6Ͳ\\xa7\\x14\\xc3\\x03\\xbb<\\xf0\\v\\xa3\\xca;\\x173\\xf6V\\x19_@\\x9b;f\\x9dT'\\xaa\\xfa\\x9f(\\x90\\xcb\\xc1Ξѳ\\xaf`\\xc5@\\xf6@\\u007fO\\xf3\\xfe\\xab*\\xcd\\xf63\\xd3\\xfb\\xa4\\xb4{\\xf9A\\xb26\\xfe\\x95\\xde\\xc8!o<\\xb4.8\\xb9\\x83\\xea\\xbb\\x1fё\\xab\\xf1\\x9d\\x1a\\x83\\xc5!MM\\b\\x0e\\x8bQ\\x03-\\x042Ҙx\\xa6\\x1e\\xb0\\xc1\\xa1\\x80\\xc7\\xe3&\\xdd\\xc0\\xec*剕0\\xec\\xb0K\\b\\xb6\\x8b\\x84\\x11z\\xee\\x11\\xc4w\\xbd\\x1d\\xa2l\\xe8+8\\x85\\x8bow\\xc5\\xffO\\x19\\xaa}mĿ\\xaeռT\\x00XD\\xf59l\\xe6T/\\xc9\\xd7k\\x1b\\x1atzg\\xe7\\x1aPڡz\\xa9\\x99\\xb33\\x8c\\xcadqz3\\xcaZ\\x91\\xd95\\xe35\\xd3\\xcba\\x81\\aG/\\xb9}S\\x06\\x85\\x19\\xeb\\xe7\\xa94\\x99[\\xfffZ\\xde\\x05\\x04\\xb4D\\xf9\\xfe;-\\xe4\\xb6\\xcf%\\xf0Q\\xfeM\\xe7Zg\\xa1>\\xa6\\x05\\xdf\\xdao\\x95T\\xf2\\xd1m\\xa7\\x93\\xa6\\x95:\\x9a(k!\\x0f\\xb4\\x96\\x12\\xeb`\\xa6\\x18*\\x9c\\xfeƂ\\xa8Yh\\x94'\\x8f\\xbc\\x85\\xaa\\xd7\\xccb\\x17\\x00\\x8aP\\t\\x05\\xc9\\xce%\\xeeQ\\xb7\\xbe\\xff.\\xce\\v\\xa8\\xb9<\\xa0\\xaa\\x97(d#\\x86\\xf8\\x0e\\xf2T\\x15H\\x13dFdmĬ\\xdbb\\xa6^\\a']O|]\\x90\\x00\\xc2TZ~\\x14\\xaf*\\xcdz\\xa9\\xaa^!]\\xff\\x81\\xbc(f\\x84H\\xf3,b`1\\x82\\xd7\\xfc\\xc2\\xfb_\\xaf\\xe0\\xd1yr\\xfe\\xcf\\xe3\\xb3\\b֩\\x14*FeQ\\x05\\x995s'\\xcaTd\\x8bC\\x80:\\xae[\\x061l!\\x98\\x0eجʤP\\x05oU\\xff,\\xc7)x\\xd0\\xc6l\\a\\x95|k\\x1e\\x02*\\xf860\\x89\\xdf\\x0f*\\xb9\\x19g\\x1f\\xa1`\\xf7\\xf7\\xd0=\\x90\\xa2U!Db\\xf1t\\xed\\x1f7\\xfc\\x84䲪n<N\\x0fB!\\x8foTI\\x19\\xb9?m\\xd0\\xe56\\xe4\\x91\\x032\\xbf\\xbby\\U000fb893Gn\\xc8\\xfd\\x88\\xf3)Ɋ5\\xcc|\\x81]\\x81^\\u007f\\\\i\\x98\\xe5\\xee\\x99\\x17lH\\xa1\\xe0$\\xf9\\xd2]4\\f芤\\xf6i,\\x01<mW\\xbeT\\x82\\xa3\\xa4\\x04\\x1b\\x02\\b\\xb0\\xedR\\xe1a\\v\\xdb\\x02U[\\xd3\\xd4\\xee^%\\x0e\\xac%\\x8a\\\"\\xb8\\x011+\\x99\\xad\\xdbP\\xc8ck!(\\x91\\xfa$}t%c\\x85\\xe2\\xbe\\x16p\\xc6\\xdc^tE5;\\x99\\x12j\\x82\\xbbQ\\xf6;\\xcbp\\x8c\\x96\\x18IlgP7\\xb1\\x12\\xed\\x03\\x90\\xd8Q\\xa6E(\\x8dX\\x19C\\x82%1\\xe9%\\xe9\\x15hEz\\b1\\x92x\\x83\\xea\\\\nHBv<;\\xb8\\xef\\xf1\\x81\\xaa6\\x9d\\x82qx\\xa0\\t\\x81?!\\x9f\\xfeP\\x94X\\x98n)\\xbez\\x9dL\\xac\\xcdдɡ\\xc0B\\xe9\\x82\\xeaP=\\xdd\\xc0\\xec\\xef\\x9fQ\\x11L,\\x82\\x98\\x06\\xba>\\xdf\\xfcC\\x1c\\xd0\\xff\\xdc\\x12\\x9bHn3\\xb8\\xb6\\x1e8\\xf0b\\xff\\v\\xe1\\x1f.C~ƫ\\xdeU\\x92\\xca\\x13ځd:,g\\xb7 \\x85DK\\xb5\\x83sͱ4\\ufd4aKpD\\xc3\\xe2{:\\xeb\\xd01\\xa2\\x10Ϝ\\x14k\\xc2t/S\\\\1X0fҭ]\\xbfS\\x90\\xc8\\x1e\\x9f\\xb5\\xec}.\\xbc\\xb2d)\\x93v\\xbd%xD\\x8a\\xa1߶\\xa8\\x96\\xd1Ȩ]\\x84=\\xcc\\xc9qs\\xb7\\xd8S\\xec\\x0f\\xecS\\t\\xeb{B\\xedW\\xfex<k\\xa1\\xff\\x90?ȹp\\xd7J\\xf1\\xaf\\x93\\xf8͑\\x06lR\\xed\\xf0\\xcfa\\xe1\\b\\xfe@\\xbba\\xaf \\xba\\x8b6\\xd9b\\x99\\x14\\xe4\\xaf\\xd5ɂ$\\xad\\f\\xc0\\x0eԬ\\x9a[\\xa9I\\xcb\\xcdd\\xbc\\xabz\\x1c2\\xba\\x81\\x13\\x1a\\x17\\xa93[ヹ\\x14j\\x18\\xf5\\xba\\x88\\xdf\\x16j\\x1aZ\\xf7\\x9b8}\\x9a5;\\xc9\\xcc\\x183\\xd6\\xcc\\xca\\xdfR\\xad^z9ݹ߂\\xcc\\x11\\xdcT1\\x9b\\xcb\\xe4\\xc7I\\xd8j\\x904d\\xfe|\\x97\\xcb\\xf3JEa\\xae\\x89\\xefa\\xa2}\\xb6V\\xf3pf\\xe6\\xd8\\xc1My(\\xb4c\\x87\\xfc\\x8a\\x1b\\xcb\\xcc\\x1c\\x06\\xeb\\xa7\\x16\\xa4\\x01\\al\\x9cQ\\x93\\x80j\\n\\xf4̓W\\xee\\xed\\xc1Q\\xe2\\xbd\\xf4\\xd3\\xe2y\\xff\\xf0\\xd8\\x0f\\xf2\\xb6\\x9b\\xec\\xe1\\xe4\\xc3\\u007f.\\xe2\\x90h\\xae\\xb91\\x91\\xe5\\xd9/\\x1fT\\x9b| \\xb5.\\xa2N\\x00\\x17\\xdfE\\xa1\\xe94\\xb5\\xb1{\\x19҉\\x8a\\x80\\x90D\\xbc>jw%\\xdc`VC\\xa3\\x04m+3\\\\e\\xfa?<r\\x9e\\x9cӸj\\x04\\x9f5w\\x94%ƽ\\xbc\\xd4\\xea'\\xaa\\x9d\\x9c\\xa2awu~g\\xc0\\xa8:\\xaf\\x01\\b\\xbd\\xd0f\\\"%\\xe7\\xab\\x03\\xfd۷\\x8d\\xa3P\\a\\xf4\\xf4)\\xd4\\r\\x15\\x12\\\\.\\xaf\\x9e-[\\f\\xf4\\xdc\\xd3\\xe9\\x00\\xa5c\\x9a\\x8c\\xb5aKZV\\x16Q\\xec\\xfb\\xe1t<\\xb2U\\x0f\\xbbFLQ-%t\\xf8\\x84\\ru\\v\\xbbS\\xd3\\xc61ټޠ\\xc2\\x00Z7I\\x00\\xe3\\x16\\xd5p\\x14\\xa8\\\\˱\\xfb\\xe8\\xcf\\tr\\xa2\\xdf&\\x92\\xb8\\x8e\\xe8쉖kX\\xc0\\xb1Ef\\xe2\\xf1\\xe9i\\xa82=]\\x1d\\xb7\\xf4\\xa5uy\\rM}\\xc0\\x10\\x1d\\x1a>m\\x8c:#]͏}\\x12I\\x1e'\\xb7O\\xa4\\v\\xeet\\xa9\\xf1\\xa5\\xaanI\\x0f\\xa5\\xd5d\\xcd+\\bM\\x9b\\x15\\x12\\xed\\xe9\\x04\\xb3\\x97Z\\xe8\\xf7憦6\\x90\\x1aB\\xa7p\\xc1\\x96\\xd6\\xean\\xd5\\xd8\\xfe\\xb51\\xc5R\\xbf7~䵡)\\xb2М+9\\xe7K\\x8f\\xe4X:}\\x18X!t\\xd1\\x05\\xdeKyL%\\x16\\xb4-\\xd8\\f\\xebB\\xe8\\x83\\x1d\\xb4*\\xa5\\v\\xc3\\xce\\xd0#U\\xcec@\\xd7R\\xc4\\x14\\x00\\x89\\x93\\x001\\xea~\\xa5\\x00\\x16̠^:\\xe7\\xc0\\x93\\x9f/ɤ\\u007f\\xde͍\\xa6\\xb1\\xa4\\x1e\\v\\x16U\\x85G\\xbc\\xc8\\xc1oQ\\xf9'D\\x9f\\xc4?\\xb8C\\xbe\\xdfK}\\xb4\\x0f\\xd6\\xe8\\xbd\\x05?\\xe0\\xef\\x1f\\x1c\\r\\xbe\\xf3\\x8b+Ǡ\\xeez\\xe8nj\\xe3\\x8e8\\x93)n\\xbf\\xc0\\x9e\\x88`\\x19\\x85\\x0e\\x9f\\x0f\\x05&\\xec\\xd3\\xfa\\x00T$\\x1a\\n~\\xb8X\\xccdj\\xdf\\t\\x02\\x8c\\xb0\\xc7(\\x90ԣo\\xf0\\x94\\xdco\\x97~s\\x13\\xd6W\\xe3g]¯E5mR6\\x03V+j\\xf7\\xa2\\xea\\xce\\x15\\x9f\\xddm\\xae\\x90$ď:)\\xa4\\tJ\\x01>\\xa4\\u007fw%\\xd4m\\xd6\\u009a\\x03\\xef|ݜ\\xf0~{M\\xe1f\\x9a\\xd0{\\xe7\\x8c\\xc63\\x8d\\xf8m+K\\xd6PQ\\xffG+\\xca\\xd8\\xfa+\\xb7\\xe1\\x1bϴ|^8K\\xa6%k\\xb5j!\\xc0\\xd3΅\\xfa\\x93\\xf3\\xbdb\\x03\\xb2\\xbe[\\x11\\xbb\\rN\\xf0\\xf5\\xfb\\x97\\xcd1R\\xaf\\xef\\xa8\\xce[\\u007f\\xf6Ν\\xb3\\xeb\\xf3\\xaaw\\\\7R9\\xec\\u007f\\xfd|\\x13\\xe1m\\x81/\\u007f\\x12\\xb7\\xb6\\x8a;F\\x82Fĭi\\x87p9\\x94c\\xea\\xa8\\xdb}\\xd9M:\\x9c\\xa7\\xb5\\x19q\\x94f.\\x9d[\\xf9m\\x9e\\xb5%\\xc3R)\\x19\\xb5\\x99\\x90\\x91a\\x06\\xe9\\x12/]\\f\\xef>\\x03\\x91ސ\\xf3\\xe2l\\x9e\\x98\\xf4L\\x026%\\x85i\\x96\\x1d\\xf9$\\x89\\xe3qQ\\x11g|\\xb9Y\\xa3\\xfb\\xdd\\xc3L\\x9fn-rR\\xc2P}\\xa19\\x1f\\x92k\\xae\\t\\xe6,\\xb1\\\\\\xd5٬HG\\xa1\\x98k\\xfc.\\x83\\xf9\\x9b\\x14nP\\x9a\\x03Bs/g\\xd7\\xc2\\\"-\\xf9\\x12\\xa9\\x98\\xf9\\xac\\x1f\\x88\\xc3QJv\\x98\\xb7bC\\xec-\\xd6(\\xbc\\x87>Jik\\xe2\\xe3\\xc3\\x0fS\\xf8\\xb3%\\a\\xad\\a\\x1f\\xf9Z\\xceoʼ\\x91\\xefp\\xae\\xe79i g\\x98C\\x85\\xe4\\x10i9\\x99\\xb3\\x12\\xa8\\x89`x\\xb9dƱSV\\x86QyK}R\\xe2\\x16\\xc4q\\xe2\\xaeRոj\\xa8\\xf5\\xb8q\\x83\\x95e\\xf1\\vS\\xb9\\xf1\\xfeV\\a\\x84\\xabV\\xfb\\x15\\xcct\\x0e\\x9fq\\xcc\\xcc\\a@PM\\xce\\\"\\xab\\x03\\xea`\\xa2,\\x97\\xabɓ\\xb3T\\xac\\xb4\\xc2\\x13!\\xe2\\xedڇb*\\xd5\\x04\\xbf0\\x00\\xa3!'\\xb8\\xa5\\xedpI\\xc12\\x93\\x19\\xe4\\xf4\\x80\\x8fi\\x1c\\r\\x06ȁ\\xfa郣\\xa4\\xb6l\\xfeL\\xe9\\xc8^Q\\xf4\\x8a\\xe4\\nz\\x94\\x17\\x99WӪ\\xd96\\x95_\\xf0\\x13\\xbf\\xbd-NApfo\\xb2\\xb9Ȫ!C\\x1a\\xeb06\\xc6\\r\\xcfy?\\x04~-\\rΙHno=\\xd3\\xee\\x91JA\\x0f$m\\xf2\\xf41(\\xcd\\x03I!\\xed\\xadc\\xadm\\xaa\\tY\\xdeI\\xae\\xcd\\xe8KF\\xf2\\xd0]\\xc0\\x8f]i\\x9f;\\xa5\\x04!~R\\xe7`\\xeąc\\xc1\\xe3\\xe5@ۃ\\xdf\\x03\\x82\\x83,\\x05\\xc2\\x19\\xa7\\xdfM+7\\x88/t\\xc4Lp\\x10܄'ɞը\\xb0\\x8f1\\xd8\\xe02\\xf1\\f\\x06\\x1e\\xb0\\x05\\xef4\\xd8s^\\xb4@\\xf2\\x9f\\x95IQ3S\\aw^\\xf1y\\x1a\\x19\\xf8\\xd2NM[(\\xfa~\\x82\\xaa\\x99+n\\x10p\\x10x{s\\x18\\xe0\\xf1\\xc8\\xd3>\\xeci\\x1bg\\x86\\xf9\\xb3 )P\\xae\\xd5\\xca\\x03\\x83e\\xcc\\u05edmW\\xdb<\\xe3\\x983\\xb9\\xf4\\xeb\\xed\\x9e\\x13S\\xb4\\xf5<j\\x13r\\xea\\xb9\\xe5\\x1c\\x81\\x00.\\xb5\\xb6J+\\xadSa\\x81\\x97\\xd1Y\\xc26\\xf9\\x8d\\xad\\xfcހ\\x87\\xe7\\xdb۹s \\x81\\x80\\xd3\\xdf2\\xef\\xf6o\\x82\\x91\\xbei\\xf76\\xc1?Z^\\x18\\u007f_\\xe3\\xc1r\\xe1\\x98\\xeei\\\\\\xf7\\x85\\xaa\\x1e:\\r\\xb4SP\\x1aW\\xccl\\x8b\\xf4\\v\\xb6\\x01\\t\\x8cb\\x1eq\\x15E\\x15\\xd4\\x1b\\xa0,\\x9a\\xbc\\xd5\\v~\\xb2n\\x04\\xa2\\\\\\xfb3@T\\x1c\\xa40\\x82S\\xa2NK\\xcb7\\xa7O;\\x06\\x06\\x1e=r\\xbb\\xa3\\xaf\\xfb\\x8df\\x90U\\x93\\xb6Fu4\\x128\\x86\\x19o^=\\xda̓(\\xa1\\xe6\\xc6y\\xfdig\\t4'\\x02\\x11-\\xe3\\xd4Ϣ\\x82\\x89Jbp\\xd43\\xf5\\x14\\x14\\b\\\"Z\\xc5E\\x8eFu)\\xe2\\xf3zr)\\x12\\xa0\\xee\\xe8\\x8e_\\xfa\\xe1\\xa5\\xfc\\xa3\\xb9\\x1a\\xa7\\xb5.\\x936\\x1cgY_̢ \\x00\\xc0\\xd3ѧ\\xa8\\x044#\\x1bG\\b\\x9c\\xd78`R`\\xe6)\\x91\\xe6\\xf9w\\xf7\\xb9]\\x95\\xd5=\\x1e\\xd02\\xc6\\xe3\\xe1i\\xd9\\xe0\\xe3\\xc1}\\xa8 nDMl\\xbb|j9\\xa1\\xec\\xa2\\\\\\xed\\xce/l+\\xa2~N\\xadvz\\a\\xb4.\\x03lZ\\xad5R\\xd6ߓ\\x9e\\xfa\\xc8\\\\\\xf0\\x90\\xf4\\xe0\\xdf8\\x870\\xbf\\xfb\\x8e\\xa7\\x8eb\\u007f\\x8c\\xb692\\x9c\\x02ˑF⾭\\x00\\x12\\x94p*{*\\x8e{\\xb5~Ԅw\\x1di\\xcce<\\x12\\xaby\\xa9\\xd2y\\b\\x1f.U\\xbd\\x11\\b \\x16\\x12\\x89\\xeaw\\x95pt\\xb5~\\x89ɶG4}\\xd6R\\xaa\\a\\xae%\\x03\\x8b!pj\\xb5\\xf1\\x02\\xa0\\xc7\\x0eOd\\x01\\x91\\x86\\xd1N\\x16욅66^2\\x19\\xdaw]\\xa9\\xd1S^\\xf7{\\x03&\\xc4\\x06\\xe9\\xe15\\xbcq~\\x80\\x877>\\xec\\x92}\\x95\\xf4U\\xec\\xfa+\\x1bH\\x18Woʚ\\xce\\x13\\f\\x1eg\\xb7\\u007f\\xb4\\xd5*ii\\xbb]{ҭ\\xf7\\xec2\\xa33e\\r\\x83Q\\x95j\\x19\\n\\xb4\\xb55Cut\\xae\\xc9^ӹV.j\\xb3\\x05\\x822Z\\fj\\xd5\\xebk\\xb4Z\\x87zu\\xbc٨#\\xc4\\xe9\\x9b\\x1d6\\xf3a\\x8c$&\\xe5\\xe5s\\xe3&z\\xfa\\xe4\\x81w]\\x10%\\x89.\\x9c\\x9a\\xf8Lz]\\xfa\\x19(\\xc3_\\xc8\\t\\xf7h\\xcd\\x1e\\xb7\\xec\\xf5ĭ\\x8a\\x02\\xd7EZ֗\\xb4\\xa5\\x9c\\x86\\x88\\xa6\\x066\\x0e*\\xde\\x03\\xbdc\\xf7\\rq\\xff\\xab\\xab\\xf87Dǹ\\xcaa\\x9f\\xe1([<\\xf2mİ\\xb21\\x02\\x96\\xe8\\x8e\\x18\\xe7*\\xe8\\x86\\xe4ൔ\\x8d|\\x83\\xb0>b7r\\x89<\\xbd`\\xde\\xc06t'~\\xe5?\\xbfR\\xd6\\x06\\x93\\x99\\xad\\xccA\\xf8\\x9eb\\x04\\xbf\\xef\\xb7\\xc1w\\xe1C\\x88\\x13\\x99\\xd4\\x0f\\xc1\\x05\\xc5\\x0e\\xe6v\\xa9\\x83\\tK虜\\x12\\xf8z\\alG\\xf2:\\xfd\\x90\\xe1\\xe8\\x1f\\x8a\\xa4\\x06\\x8d\\xfcl\\xfa\\xea\\x15\\x17/\\xd5i\\x9a\\x8f\\x90\\xdf\\xd1\\t7\\xda\\xc5J\\x82\\x99\\t0\\x98D\\xdf[\\x97|\\x9c\\xdeu\\x03\\xe1C\\x9f\\xec\\xf3\\xa4\\b\\xccQ\\xf4\\x92\\u007fD6\\xccN6y^\\xe1N\\xec\\x8f\\xde\\xcd\\xe0_\\xb8\\u07b7\\xfe\\v\\xa9\\x8bW\\xf5\\xff\\xf4\\xaa\\xabL\\xa6\\x83\\x89\\xf4_\\t:\\x11\\xb4\\x86C4\\xf3Q\\xed!\\xb2y\\x04\\\"\\t\\xc6`\\xa2.\\xe0\\t3\\xb3\\x00Cg\\xf9\\xb1\\xf7\\xf90̗\\x9d\\x10|\\x06\\x93\\x88\\x96\\xe7?G\\xf8\\xed\\xc6\\x00G\\x88\\xc8\\xf5\\x9e\\x13ZF\\xf3\\xb0o\\x02\\xa0\\x16;\\x01'n\\x0f3ӯsF\\\\\\x83\\xc7\\xcapN\\xc0y\\x05V\\x80[+`\\x01'\\x80\\xa7\\xf5\\x13&G\\b\\x05\\xb6\\x0f\\x11L\\xb4·f\\xef\\x93{G\\xbcu*@SW\\x9by\\xf2U\\xfa\\xd9\\xf2?\\xb25\\r\\x86C\\xf4h\\xb0EK(\\x13\\xd8\\xd9p\\xbahlH\\xaeg\\xad\\xbfa*\\x06\\xd8߬\\xd4\\xcb!\\x84Jm\\x8a\\xa2\\xd2b(dxI\\ffG\\x85O\\x9e\\x9c\\x14E\\xe2\\xf9\\xe6q1>|x\\t\\x99\\x12Ct\\xe2\\xf9\\x81d\\x8a\\x96\\x14\\x18\\xbc\\xe0O̚\\xe6\\xfd\\xb8\\x03IZ\\n\\x19\\x04~\\xf0\\xf1\\xf6\\x8d\\xe3s\\x1f>\\xc0\\x98\\x8d\\x03g\\v\\xce\\xc6\\x14D\\x15դ\\x90^\\x93_\\x91_\\x93\\xf8\\t\\xc40\\u0090\\x9cZ\\xba\\x80~\\x17\\x98h\\xe9S\\xbe\\x93\\f=HH\\xf2μ\\x89a\\x93\\x00$\\xbb\\a\\x90\\x19\\xf2\\x01T\\xab^d\\x89\\x15)+\\xf8\\xa4\\xa4_1\\x96k3\\x18>qĂ9\\xf9kmz\\v\\xa6\\xf6Nxڇ\\xdb<\\x13q\\xab\\xb6\\xe1\\xf6ޚ\\xb5\\x19̍(\\xb4\\r\\xb7\\xb5O\\x9b\\xf6\\xb8\\xb5}\\xd8\\xd3n\\xc9mo]\\xbd\\xca\\x03\\xee\\a\\x9cXEoC\\v;sD\\xf1\\xe2\\xf2\\x02\\xc2\\xf1\\x18\\x808\\x16\\xeb\\x8b\\xddfVS\\xd5f\\xd1\\xfd\\x82L\\xc8\\x1a\\x88*\\xa0ʭr9\\x9bw+\\xf8Us\\xfa\\U001001fe\\xf0!\\xaeޏ\\xbbU\\xf6\\xd0=o/գhd\\xf4\\x92g\\xe9^H\\xf7\\f\\xb8\\x9en\\x8f\\x04\\x95\\x80\\\"\\x87\\x8c\\x1e\\xed\\x8aXw\\xc7\\xe4\\xc6\\xfb\\xf0H\\x84{D\\xe3>\\xf0\\x85e\\x91\\x93Xl\\xc8\\x01\\x8aR\\xa5$Уs\\xde\\xd4\\xdcKP\\x9e]\\x1d\\x89e\\x92^\\x1e\\xef\\xab\\xfa\\x92@\\xab\\x8e\\xb8\\x11鴼\\xa0\\xf7\\x02\\xb0\\x01QH7\\x01%\\xa1%\\xc4.\\xc1_\\xc0Qf(\\xb4am\\xc1\\xaa\\xfa\\x10\\x8c\\xc5A\\xeb\\x19Ӄ\\xbd\\x8e\\vϧSkY{\\xfd\\xba\\x03N\\xdbtj\\xd6\\xcd\\xe9\\xb2\\xc5\\xcf1\\xd5\\xfe\\xca\\xd69\\xf1\\xb6\\xae9g^=y\\x1c:\\x95\\xae\\f\\xe7\\xec\\xee\\xc8\\x19\\xaf#\\xa9\\xce\\xf4d\\x1cओ\\x17\\xd9\\xc4se\\x10\\xda\\xf0\\xad$\\xb2\\x99n\\xad\\xe0\\x18T\\xe3i\\x96r\\x86\\x95D\\x0e2D\\xba%C\\xde\\bN'\\xad\\xa7\\x0e\\xf1\\\\\\x15\\x1c\\x02\\x96K\\xad\\xbcQ\\xc9T8gs\\v/\\x18\\xe4r\\xee\\x92\\xd0\\xefϝym\\x1aUJ\\xbf\\xbf\\xa2\\xae\\xb6\\x80\\xf6\\xe6\\x838\\xf1!\\acv\\x9cC\\xe7\\xbe\\xc2>\\x94\\x0exw\\u007f\\xab\\xf75\\xbc\\xe9X2\\xcd\\xd3C\\xf7\\x96\\xa5 \\x996\\xd3e{Ck,\\x19\\x17\\\"`4g\\x13o\\xea\\xad/e>J\\xb2\\xd2G\\xf6孩\\xbcM90\\x1aq\\x01\\xccMG\\xb0\\x04\\xf6\\xbco\\x1a\\x93\\xe7_\\xc3\\xf4\\xd1ޝ\\x9fܓ\\xb1\\u007f\\xf6\\xf2\\f\\xff\\x02\\\\b@\\x8fxh3\\xcf\\x17\\xb0gUE:\\xab\\xdc\\x18,\\x1e\\x8f\\x05\\xff\\xf7\\xd7\\x1eM\\x9c\\xeb9\\x91\\x19\\xbd~\\xe5\\x1f\\xb1\\t[\\xbf2\\x14[Rv5UB\\xad\\x06\\xab\\xebV\\tWq\\xbd\\xbc\\xf6y\\xf1<\\x82\\xc8\\bz\\xf9\\xc5R<\\f\\xae\\x06\\x93\\xff\\x88\\xdb\\xc7'\\x05\\xc0\\x81[\\xd1X\\x82\\xbf\\x0e\\xe7CR\\xccW\\xcfW\\x90|\\xf0y\\xf2㹾s.\\xf9\\xc6\\x17a\\xd4~\\x98R|\\xb8\\x1e\\x98\\x9aL\\x84\\xf6\\x87\\xf5\\xbf\\xed9\\U0007164cÊ\\xcd\\tT\\ff\\x96\\xb8\\bS\\x9c\\x85\\xc1P\\x13\\xc4f,\\x8e\\xdc\\xfcQG\\x80:\\xfb\\xd6H\\xd7\\x04\\xf4\\xe9\\xad\\xd6\\xd8\\x18$&vu\\xe9\\xfbJ\\xad\\xb7\\x91Lwv\\xb7\\xb1\\xbd5\\xb39\\xb3\\xb5\\xdd\\u061d\\xbf\\xb3p\\xe7\\xecnk\\x8b3^\\x17\\xefl\\xb1v\\x03|\\xbf\\x9a\\x8e\\x02G~ |\\xa3\\xae\\xf2\\xc6fM\\xd6J\\xe3ǒ\\x15\\xc3\\x03b\\xe5\\x88a\\xe0\\xce\\x11\\xea\\x84z\\x82ZV#\\x14p\\xabq\\xca=,\\xaaᢟ\\xd3\\xf4ߓ\\xc2ބ\\x99\\x85\\xf3\\xc6y^\\x95;\\xad^Q\\x9d\\xf50Qz)-gI\\x10\\xa8\\xb6V\\xe6'\\xbe\\xfd\\xf9\\xd7J,\\x06\\x03\\xb2\\x8d3\\xdf\\xefZ\\x1f\\xcci[<\\xa45\\v\\xabV\\x80\\xf6\\xb6\\x8e\\xa3L\\x93\\x89\\t\\xb46\\x13.\\x93\\x1ak?\\xd1\\xe9\\x9fj\\xf7\\x0e\\b\\xa7\\xc2:I\\xc5-YH\\xe1\\x82W\\x9d\\x8a4R\\x911\\xae\\xc5r\\x9dۢ<\\xcfk\\xde\\xe1C&f\\x9e\\xb4\\x97e~\\xb5{}eZZr\\x00\\xba\\x9e\\xc7P3ȝ\\x1fI\\xbc\\xae\\x99L &\\xbb^\\xba\\u007fօI\\x94u\\x96\\xec\\xe84\\xef\\x12\\xfed\\xb2Wn\\xe0\\\\\\xbf\\xb6&C\\x1f\\x05\\xb2\\xe1\\xcd\\xed\\x9e\\xfc\\xfc⳦\\xad5ry\\xdabb\\x86=\\xed]]*\\xb2\\xffp\\xbbg/\\xa6\\rt\\t\\xa1\\x02\\xb7\\xc9\\xc4\\x05T\\xe0JeP\\\\\\xc4\\xcd\\xec\\xecS\\x80\\xebf\\xe2|*B\\xa1\\xbc\\xa3\\x1ex\\xb11\\xf6F\\xe3ҹE\\xf7Y\\xab\\xa8\\xdf\\x1f2\\xb1\\xfe@\\xa6S'\\n\\xdeeM\\x93/ko\\x9c=\\xfa5\\xeb\\xfe\\xbe\\x0f\\xe99\\a\\x1e\\x17\\xaf1y\\xa29E\\xd9Y*]u`\\xfb\\xc6\\xf2iY\\xe5QS\\xdbf\\an\\\\V^]:[\\x9fY\\xb6\\xfa\\ths,!P\\x80\\tPA\\xa3;5\\xc2\\x1aen~\\xf0\\x81\\x14\\xff毚\\xa3\\n\\xfe\\xa9\\x8c\\xf3>Kg2y9\\x1d-\\xfd\\xef\\xce\\xcf;T\\x1f\\x98X\\xf5\\xf2\\xa5u:u\\xca\\xec\\xe0\\xa2\\xf5\\xf9\\xed\\xa7y*\\x1c\\xa2\\xa1\\xb0-dk.\\xcbâ\\xeeL\\xa4*G\\xe8~\\xa6\\x00\\xec\\xc64\\x8f\\xe3\\xbc:j\\xed\\xacM\\xa7\\xb7\\x18hzS*\\xe6+\\xe6\\xe6-~_cʊ\\xdai\\xe75vP\\x16\\x85A\\x84\\xf6^\\x8d\\x02\\x98\\x9e\\xd8\\xcdk\\x8e\\xd2.Ҧ\\xa0\\xe5+f\\xef\\xecֿ_\\xf1\\xc3)1ި,\\xb6\\xb0\\x9e:<\\xb4<Kz\\xae(Z\\xbd\\xb3\\xe2\\x01\\x98\\x10\\x1eM#H\\xe0\\xb3fn\\x11\\xd8{\\xb7\\x06\\x1ez]s\\x14\\x1c\\x19\\xd6\\xf8\\b\\xb4\\xda\\xe8\\x8a\\xe0\\xe4(\\x13\\x1f\\xe8=\\xf9\\x8a\\x0f\\xf2[`pE\\xf4*&\\x16/\\x8d7F2\\xcd\\xf7k\\x8d\\x1cc\\xed}33y\\xe3\\xa5x,\\xf3\\x17\\xd1ƻ\\xdf\\n\\xa0\\xb2\\x10\\x00\\xfb\\x04Fi\\x86n\\x8b\\t\\xd1?}\\x11\\x97\\u06022oB`p \\x81\\xf5F\\x88\\xb0\\xe1\\xafIGI_\\x03F/\\xe7\\x1cb\\xb2\\x99\\x1e\\x9bcɻL0\\rx\\x92\\x84\\xc0p'\\xaf\\x81\\xed\\xe9\\x84Sב\\x14\\xf2H\\xa4\\xe4\\x82u\\x00C\\xfe\\x87\\xe3\\xf4\\x0f\\x94\\x12\\x9c2Y\\x91\\xac\\xc4I\\x94\\x0f\\n5\\x11\\xbcNy\\x9b\\xb8^\\x91\\xb1KIs]\\xa1\\xb0\\x84ZDP\\x84\\xae\\x8bX\\xc3Qh\\xb0\\xb6\\u007f\\x0eα!P\\xe3\\x83{x[\\xe1\\xd3\\xf0\\x16~\\x8e\\x80\\vǝ\\x06\\xa6/g\\x03\\t]\\xfdS\\xd9AGw\\xc0G\\xa7eD+\\xff\\xb8\\xda\\b\\xcb\\xda6\\x95\\x98\\x19\\x88\\\"A\\xb1\\xacڿ\\r<*&Nx\\x1c\\xcc\\xd6Vˊ\\x05B\\x88k0rQ\\x93\\xc8\\x10c\\x10\\xc9~\\xfb\\xa9\\xb9\\xa9\\xe3\\xa7\\xdf\\x00\\x85\\xba\\xf2\\x03\\xdb:\\xf0ۄ\\xafۯ`\\x88\\xbf\\f\\xc1\\xf8\\xbd\\xf1\\xa5|\\xda\\x13xZy\\xd0\\x13(\\bvI\\x88\\xb7\\x86\\x81\\xe3\\x19)\\xf0\\xa3\\x83\\x14\\xd52tL\\x13y\\xb4h\\xa3BL4!&S\\xcds\\xdd'\\x01\\xa5\\xa6N\\xe4\\xb2\\xefUtՁ\\x03\\x98\\x1a\\xa6Ʋ\\x8e\\x85\\xb1E\\xf7{\\x80\\xda\\x0e\\x9fs\\x81\\x1fU\\xac\\xcb\\x1b\\xa1N͌\\xe2r\\xde\\xf4l\\x13Q\\xef}\\xe6\\xb1zZ\\x13\\xb0\\x84Q%Kq5\\xa8\\xee\\x1e*\\x95\\x8e\\xa0\\xab\\x8akkq\\xdf\\xf0)ȇ\\f{{\\xbc\\xa9W[\\xfd/\\x84\\x18h\\x86~@\\xd5\\xd5r\\x81\\x87\\x13UV\\xd60i\\x188+\\xf2\\xd3\\xf3\\xabiy\\xfcPw(?\\xde\\x12\\x9b?7\\xe4ޟ\\x19k|0yR~\\u07b9\\x85\\x163\\x8cA\\xff1\\xc6μ\\x9fk\\x18S\\x04\\xed_\\xa85p\\x84x\\xec\\xe9E\\x8b\\xa6\\xea\\x8c\\xd3\\xe7\\xf8\\xe5\\xe2\\x12p)!Y\\xe1>\\x1cʠ\\xc5;\\xcd\\xe1H\\r\\vʊ\\xf5\\xc3a\\xe3p\\xb9~\\xcb\\r\\xd3uS/z_\\xa3\\x18\\x1dM\\xd0k\\xc8\\xefLթ\\x80\\x055\\xe44\\x02f\\xae\\xfe;\\xfc0\\x02)\\\\]\\x12dA\\xa8>\\x82J}N\\xa5\\xaa\\xff=\\xed\\x1d\\xd1\\xfe\\x16<\\x80\\xadYT\\\"\\x91\\xc56b\\xb02\\x98\\xa8lL\\x87VxF\\x11\\xaa\\x88\\xa6[\\x96`\\xdb8Pp\\xa04'4\\xe0\\xef\\xda;\\xb8\\\"n\\xb1\\xe5\\a\\xcbq\\x02+\\xf9\\x87lC\\xe4\\xfb\\xa9\\xa3\\x14P7\\U0006ac4a(\\x1bu\\xba\\xc0\\x9f\\xb25\\xfb\\aV2w\\xaf\\xe5\\as\\ta\\x1a\\xeeN\\xed\\xdf\\xf3\\xee\\xb26\\x96\\x15s'\\x13\\xf6\\x96\\x19Y\\u007f\\xfe\\xe9\\x99\\xca\\xf6\\x12&s\\x8b\\xcb6\\xb2\\xee\\xce\\xf3\\xb3;;Ш\\xfcA\\xd9`\\xc5\\xcd\\xd9<u\\x14\\x8d\\x03\\x03Q\\x9d\\x91\\xcb\\x14Qj\\xba\\xfa\\xf4\\x1c:/\\xc8\\n\\xc2\\xf1;Y\\x8a\\xb9EOM\\xed\\xe5\\xfc@\\\"\\xb3ٞw\\xaa\\x02\\xaaa\\xe4N\\x1b\\xbf]\\nE\\xdd\\x191P\\vT\\f\\x0f\\x1bXv2J\\xa5\\xf2\\xe4\\u007f\\xa8\\xaf\\xcf\\xc24\\xa1\\xe47\\xa4VPʯ$\\xa1\\x94Q\\xea\\x1b*^\\x8d\\xa1cȸ\\xe4`\\x8c\\xf8[\\x84\\x88Ky\\xfbꞭ-\\xf4\\xb0\\x9f\\x95\\x95\\x11\\xa4]\\xeaU\\xf2q\\xc5Q\\x9e\\x90\\xce;\\x83\\xfe6\\x966Ꝝ<J\\xd8\\xe4imm\\xf9K\\x93l/\\x039\\\\^q\\xb9\\x01dr\\xbf{\\xfa\\xcf\\\"\\xcb<\\x87.C\\x1e\\xf6\\xab\\x92\\r\\x80\\xddPo\\xb9\\xe4\\x02\\x83͌\\x8f\\xcbIو\\xaad4\\xfb\\x1b\\xd1G\\x03C\\x9aPu\\t\\xc5\\xc9w\\x05\\xe4xb5~@\\x06EE\\x8aA\\xd5\\xffpg\\xcdg\\xfb\\x15m\\xd2U\\xee\\xa1\\xea\\xe4zɧ%n\\x96\\x82A3\\tK\\xe7\\xfc\\xac\\xca\\xe6t\\x8a\\xb4\\xc1\\x82i\\x9b\\xb4{Kێ\\xf4\\x97\\x1cG\\x18\\x03\\xac\\x1de\\xddx'AAp\\xe2\\xbb\\xe7^\\xf0\\xe1\\xf3}\\xfb\\x82\\xb3v\\xcfr(;\\xb0\\x1e{\\xe2\\xb0s#\\a'\\xf6\\x00\\x95\\x9a\\xa7hU\\x8c\\xd2$]*\\x89\\u007f\\xc6m\\xda`\\xe5f\\xb5\\xc2\\xe9\\xc5\\xe5_qp\\x1c\\x01⩼ie\\xf2Q\\x15\\xd8\\xf3\\x8f\\x16\\xe4pŽ@\\x1e\\x97c*K\\xd6\\xfc\\xd5\\xd2\\xda\\xea\\xd9Ti[S\\xbe\\xe1\\xdaNp\\xaaUW\\xa0ȷǷ\\x1e\\xbc\\xa2\\xc0\\xae/\\xfd\\xe9\\x06z\\x8eO\\xebx\\xc0_D|\\xbe\\x90\\xb84\\x91a&N\\x89>9t\\aɟU\\f\\xa5^\\x97\\xab\\x15\\x97\\x8c\\x1f\\xc2'\\xe3\\x9aG\\xe2F\\x02l\\f\\xdb\\x02@Z\\xa4\\xe3@#w\\xb3zФ\\x03\\x00i\\xf4%\\xa2\\x1d\\xf46\\xa5\\x9d\\xbf\\xf8\\x81\\x80\\x8f\\x91㞶\\x993\\xdb=\\xe3\\xe3\\x8a\\xf1\\xe1q\\xc5\\x0f\\\"\\xb51\\x810\\x9b{\\x88)\\xe2\\xce.\\x11\\xabz$\\xf0Q\\xb4\\xbfS\\x1902\\xf1O\\x00\\xd0\\xf6r\\xb9\\xb8\\xdc\\x06\\xea\\xd0\\x04\\x85\\xda\\xf0\\\\\\x11\\xca\\xe5q\\xb9<\\xca\\x10\\xf0\\xdb,\\x95\\xe1\\xe9\\xc0\\xbcܜ\\x9c\\x8b\\x17\\x99\\r1\\xcf}\\xf9f\\xc7407m\\xaaʠ3\\xe9\\xd0\\xe1\\x96Y\\x03~`CIxj\\xb1Vk\\xba\\xb2VkF\\xe4\\xc3é\\xf4\\\\`\\xc2\\xc2p\\xdajv\\xd2\\xc3\\xd3\\x1a[_\\xdc\\x10\\x12b\\x98%\\xd1\\xd1\\xcf\\x17\\x9e\\x96\\x11\\xe6\\xe1dVU#Q\\xaa\\x91e\\xe3ć\\x83{\\x88\\xd8z\\x80\\xcb`O\\r\\x01\\xa0ͥ\\xe8\\x00\\xa1\\x993|L5\\xc7\\x10\\x90R\\xc1!\\x12\\x8fr\\xfb\\xc0J\\nP\\xe5\\x13n\\xad?õ)\\xc0\\xad\\xdc\\x03\\xd5\\xfa3\\\\\\x88\\xa4\\xb5\\xd2[\\xb7\\xb89\\x05.\\xcdkllm\\xf5+\\xce+\\x85S\\x9a\\xa9T\\x94\\xca\\xcc\\xc9.^\\xe7|\\xda\\v#~\\x16\\x88\\x14\\\"\\x90\\x04}\\x11\\\"\\x988\\xfb\\xb2\\x93]\\xee\\xc0\\x90\\arӣY\\xeft\\xbe\\x13E\\x87\\xb0\\x05\\x1a\\x81vG\\x15\\xfa\\xfd\\x0f\\x16k\\xee\\x8fߣ0\\x06\\x19\\x1bW\\xe0\\u007f\\x96\\x83&Ο\\xf2\\xb4\\xbfi\\xf3D\\xd5Ĺ灀\\x14p]e\\xf7\\xb9]\\x94\\xd5\\xe4\\xf1\\x97\\xab\\xc8\\x04\\xa3\\x99\\xf7\\x9bÚry\\xb5\\xa3\\x89\\xa2\\xadG\\x9c\\\\\\xd3\\xf5ZJ\\x93cڴ\\xfe\\xfe\\xed\\xd0\\xc6,\\x87\\x98Gz\\x0f\\x06/iQo\\x95\\xa1W\\xc92^\\x8dۼ\\x14P%\\xa9\\x9a\\xf3\\x0fF\\x87I\\xfe_\\xe0\\x99\\x84\\xc1ct\\xdaY\\xbf\\xea\\xc1\\xff\\x18\\x1dh\\xacwֵrZ\\x15\\xba\\xf9\\f\\x82\\\"y\\x04\\xff\\xd6\\xf4\\xa4/\\\"\\xfc\\xfcP\\xe4\\fh\\x9co\\x04j\\t\\xaa.\\xf2\\xd1g\\xf3\\x10\\x9a\\xd9\\xec\\xbc\\x01\\x94\\xd3\\x16\\xaaf\\xf3\\tf:%{\\x8e\\x18D\\xe6|<MF\\x87\\x06\\x10\\xd8o\\xeb\\U000760811L\\xd79{\\xdb]_)+\\x05F`\\x8aU\\x02\\x06\\xaa\\xe0\\xcc\\xe1\\\\S\\x187\\b\\x0e!9\\x01\\\"P9\\x83\\nr$\\x16\\xc1\\xe1\\xa5\\xf3\\xdb=\\x1f\\x80Q?\\xe5Bt\\x18.d<\\xe1\\xc9\\xe5\\xf3r¬\\xd7N!\\x98\\xa8\\xebʺ\\xe5\\xba<\\x17ݏ\\xc1\\xa6Im\\xf9\\x1b\\xb8\\xa1\\xa6\\xd9\\xee\\xd1{\\xab㷜\\xca\\xfc\\x924\\xac㊝y\\x01\\xcf\\x1b\\xf5\\xd28\\xf9\\xfe\\xec\\xbeJWid\\x03\\x0eT?\\xaa\\xa0N\\x15\\xb2\\x98\\x95&8C \\xf0ц\\xce{\\xae\\xb6Te\\xdex\\x94\\x87\\x14ο\\xcf\\x05\\xd7\\xfa\\xdd\\xfa\\xc8\\xd0\\xf84\\x86\\xe5$\\xe9<\\xa7\\xf9\\xfc\\xceL\\x9d\\xa6T\\xbe0\\x85\\x18\\x9c\\xe6\\\\f\\x1915q\\x9a\\x98\\xa7\\xd2\\x03\\xcaw`\\xa6\\x0f\\xa6uvB_\\x8b\\xb2\\xf2Բ\\xd4\\x1c\\x1bɛ\\xfd\\xfb[\\xb3\\xe5\\xbaլ3\\xac\\xd5ќ\\xdd*\\xae\\xee\\xab\\x0eO\\x9faHKW`X\\x18\\x10\\xfd\\xe7.\\xbb\\xb3C\\x87(9\\f\\x9e\\x1aO\\x8a\\xad\\x8a\\\\'P$\\x9dX\\x18\\xe0\\xc5\\\\=s5ӧ<c\\xc1vfu\\xc0C\\xb0\\x84\\x8d\\xbb\\xbab\\x80\\x01:\\x8a\\xaeiR\\x94\\x0f#5\\xea\\x8cX\\nf\\x00\\x86\\x80\\xa6\\x04\\x81\\xca1\\x9a\\x1e#\\x88\\x9c\\x00\\x8d\\xa8\\xe8\\xd8\\x06\\xd3\\xe8\\xc5Ц\\f?\\x9d\\x16^\\x8f\\xa7\\xd5\\xe3Q\\x19\\xdd,\\xba\\xee\\x82 \\xa7W9=\\x01\\xb6?\\xfdw\\xa9\\x87\\a<\\xa7ϕ\\x19]\\x18\\xdc\\x1c?e\\xca\\f[\\x14\\xfd\\xfd=\\xfd\\xe4\\x1a\\x110\\xc4\\xf7\\x9eȀ\\xd8VNOyn\\x00\\xe6A\\xff\\xc7|\\x03\\x86S\\xf5\\x9f3\\xe4\\xf4\\xbboe\\xff\\xa5\\x18\\xaf\\xcc\\xdeQ\\xf6ͻ\\xd3A1\\xfa~\\f\\xf0Pg\\xc2\\xff'\\xae\\x8e\\xa3{\\xbff5\\x85\\xfb\\x1c-W\\x0fn\\xec\\xc3dn\\xcc\\xcaʨ\\xfej<\\xce\\bz\\xb6\\xc1\\xfd0\\xd5o\\xfe\\xfc0-\\x13C2$n\\x1c߶m2.\\xa7\\f\\xb3!d<ֈ\\xb1X\\n\\x0e\\xbd\\xf6\\x1cYyF5\\xf2K\\x81lEr%c03(\\x94\\xfd\\x8a\\xb08\\xc8\\x03\\xc5K\\x04\\x0fN\\x02\\xc1\\x92\\x95ēW\\xe0\\xb0~E\\xe4\\xea\\x88B\\xfb\\xbf\\xfb\\u007f-\\xa2\\xe98\\xfe\\xcfb2\\xaf\\xb2r6\\x8f\\xbcx\\xfa\\x9d\\x1fڴv\\xc9\\x01z\\\"\\x91(\\xfc\\xa1\\xbc0\\x8c\\x018\\x1d\\x9eH?\\xb0\\x04kY\\x10n\\x1a\\xce\\xe7,\\xba\\xa7e\\xa7\\xf7\\xc5G繳\\x00Eotr\\xc7ڝ\\xd7)\\xf7\\xac\\x11\\xe5\\xfa\\xceR\\xea\\xf4\\xe9L\\x889\\f\\xb7\\\\E\\xe5@\\x88\\xbe>t4\\xb4>p\\nԱh=\\xa3hfG4\\xd82\\xf0\\x13=\\xa1\\xb6)\\xd4(b4\\x9b\\xc0\\x89\\x035\\xaaָu\\x8c:p\\x8c\\xb8\\\"\\x14K0\\xe0Cи\\xf4\\xcc\\xc4\\x16\\x0eͮ\\x88\\xc0\\b\\xf5\\xa6\\xae\\x11\\xeb^\\xae\\xb5\\xc0\\xacF}\\xaeN\\xfc\\xb8\\xb5\\x12\\xf0i\\xb7\\x83\\xc9\\xe1\\t\\x04u\\xbcR\\xc1\\x8b+\\x81bI)k\\xa2\\xdd\\x1a\\xfbH\\x1dd\\x87\\xe7a_\\x18\\xd3[o\\xaa\\xaf3\\x8f\\xa2\\fڙ\\x98c+w\\u007f\\xa2E\\x15\\xaf\\x0f^5\\xf9\\xc5Q\\v\\x11\\xb2\\xecj\\x0f\\xaa\\x15\\xa8\\xda\\xd3X\\xa0\\\\\\x9a\\xfa\\xb9(d,\\u007f,D\\xf4\\xf9T/\\x93\\x9e\\b\\xc1<gh\\x8e\\x99\\x80h5\\x9f<9\\x9f\\xc8\\xd7@F\\xa0UQ\\x1fX\\xf0~\\xa8\\x12Ƴ\\xabn(Y\\x1a\\x1bG\\xaa\\xbcvbkA1\\x19\\x8b\\x91l\\xe3\\x10Z\\t\\x81\\x14\\xaf\\x88c\\x92c\\x11^\\x94@[\\x81\\xac)X%\\x81\\\\\\\\\\xb0\\xf5\\x04\\x10\\t䁆&\\xf2]ӄ&\\xe6O줨8\\xb0+3.W\\x9b\\x15g\\x81\\x18MQR\\xa2\\xd7\\\\G1\\xa4\\f\\x91\\xb9q\\xf3Ղ\\xe8a\\x05\\xd5\\xe6\\x13i\\\\\\xeb(\\xedѦ\\x91\\xa6\\x1b\\xa0\\x91\\xf6\\xbb\\xf7+QtY\\xc1\\xd3q\\x17\\xf0[\\xb7\\x9a\\xc3\\xee^\\xdd-\\xef\\x85\\xf9%2sS\\xa7\\x83~\\xf7\\u07b4\\xe0\\xaaܫ\\xc3V\\xe3i\\xa3\\xf1\\xaa\\xe3L^^\\xbf\\xd5:\\x9c?f\\xc8\\x1b\\xc8K\\xd8\\\\f\\xad2\\xda\\xfc\\xba\\rcU\\xc3V+~\\x06\\x05>e7#\\xb1n\\x16\\xcd^5\\x8fD\\xb7\\xb6DO}tU=%\\xb6\\\\\\xe2=\\xb2\\x90.\\xa5\\xff%\\xde[\\xc7bf\\xa5\\x84\\u05fdd\\xee\\x9dva\\x16\\x9f\\xee\\xaf\\xc9\\xd4\\xe3\\x86\\x13\\xfc0Ӹ\\x11R\\x13\\xcdy\\xc5\\a\\xc89\\x93\\xec\\xed\\r\\x04\\xb0\\xff;\\xd4\\xe2\\xc3/\\xff\\xf0տ\\xbb\\x97 \\x16mL]i\\x9d\\u007f\\xbe\\xf2\\x98 \\xed\\xd2\\x1e3\\xdb\\x1bn\\x97>\\xd6=\\xd6?\\xf6c\\x9e\\xb1^݆n=\\xf5rH\\x18\\x90h\\x1e\\xb0\\xd6.\\v\\x18R\\t_\\x1e\\xba\\xb2\\x050\\b\\xa4\\xa3\\xf8v\\xe1D\\xbd\\x97\\xef͛\\xado\\x0e\\xbfy\\xc3w\\xff汲|\\x0e,\\xb9\\xaa*t\\xe43\\xad\\x06+\\xb3\\xcaQ(\\x1d\\x83\\xcd\\xdaI\\xbbچ\\xbc!\\x82\\xffkǬu?\\xbc\\xa1/B\\x92m\\rz\\xb1\\xd6?{\\xbc\\xb4|5ݜ\\xbc\\xc6 \\v\\xffn\\xac\\xeaoB\\xcc\\xc2\\xe4\\xffd\\x91\\xaa\\xe5\\x8b\\xf32\\x02s\\xc0誡{F\\xceZ\\xaf\\a\\xdf\\xfd\\x94\\x9d?˲\\x9c}e\\x8a\\x9f\\xdc'\\x9d\\xb3z\\xfbW\\xabޥ\\xeb\\x83J\\xa3\\xab>\\xfb>\\x1b\\x06x\\x82A\\xbe\\b\\xcc1\\b\\xa5\\xb4!\\x9e\\xbe\\xe1\\x1a\\t~\\x98\\xf2\\xf5\\xbf\\xdd$Lw\\xa2Ŝ\\\\\\x97\\x9f\\x8c\\xef6\\xf3\\xa4\\xd2\\xeex\\xa3o\\x10\\x9c/k\\xa7ztf\\x85\\xa0H\\x15\\xcc-4hP\\x13\\xed\\xa8]f5\\x13\\x98\\x19U+\\xc5\\x1a\\x14d\\xe4\\xbe,\\xae#\\x9aE֜1C7\\x1d\\xf0\\x97\\b\\x1cގ\\xae\\xa2\\xf0\\x1f\\a=\\x90\\x8c\\xbe%\\x82\\xa4\\x85\\xd9\\v\\x91\\xf2'\\xe0]Nf\\xe9\\x9d\\f\\x8e&\\xa8\\x00\\xec\\xcel\\xff\\xf3OS\\x84F\\x03\\xcd\\xd3\\xcd\\xf6j\\xdcYzBX\\\\\\x82\\xccJ\\x91S\\x8et^\\x98\\xac\\xf8#\\xf7?]@i^f\\xcd\\xee\\x84ҚY\\xfd\\xd4-M\\x98\\xb6;\\xa41//8\\xceV\\x8d\\x89\\xc4\\x05\\x83\\xe8\\xb9{\\x19Sj.\\x06$!\\x8bNO+\\xdd\\x10\\xde$&\\x86?\\r\\xc7ma\\xff\\x89F/\\x98:\\xa1\\xd5\\xf5Y\\xfc>ꥡ\\x96xt\\xca\\v\\x11rRT=\\xd4kU\\x8c\\xb2\\x8e\\x954k\\xb7\\xf6\\xfb\\x9e\\xf63\\xad5\\xaf}r\\xaey\\xc0yVmr\\xe5\\xc2Cjg\\x19\\xb6v \\xd5\\u007f$\\xf0m䢢-\\xc98\\xe6\\xef\\x9e%o\\x85\\xd5\\x19'\\xf6x5U\\x8b\\xad\\xe2\\xf4$\\x037\\xf5\\xf7\\xefo\\x9f\\x99q9\\xb1ZX\\xb3~\\x83Oy\\xc9ӒFچ\\xf51\\xbe\\x17\\x18\\r\\x11\\xfc\\xd1|{%\\x99\\n\\x8e\\x0f},\\xd6kS\\xc7\\xc6\\x1c\\xabG\\xe8q\\x00q3$\\xa1\\xfb\\xf0\\xbd\\xe2\\xbc\\xf8>t\\t\\xb4\\x99\\xc8\\xdc\\xf4\\xb8;S\\x03\\x1f\\xf3v]\\x8d|\\xb7\\xb3+\\xae\\b\\n\\xb2\\xf72h\\x84\\x90\\xb8:!\\x10\\xa6\\xfeT\\xa0:\\xe1>\\xb1\\xd7I\\\\3\\xf2h\\xe4\\xdf\\b\\x82\\xeb\\xda\\xc3\\x11\\x10\\xb6I\\u074b\\x83\\xf2\\x957%\\xe5\\x178\\xfd\\x8b\\x12\\xb3E\\x8dM<\\xca+\\xb1\\xf4\\xa9\\xed\\xff)x\\xc59\\xb7\\x92)\\xfa\\xd8\\xcb\\x17\\a\\xb2Z\\x0e\\x97p\\x8a\\x0ee?\\xf5\\xfc\\xaa\\x8a\\xa0\\xd1#\\xb7\\x93-Ǹ\\xa9\\xfb\\x88\\xb9\\x88\\xc4\\xd5\\x04\\x14\\x9d\\xee\\x89\\t\\xedT\\xc1\\t\\xf7\\xce\\\\\\x05t9\\x97\\xc1\\x81\\x97\\x14:7\\x98\\b\\x1a\\xb5\\xf8\\xfa\\xd6w\\xb1X\\xfd\\x92\\xd4\\x04Ƹ\\xf3\\xc2\\x00\\xb0\\xd7eڟ,5\\xb2\\xc9츆\\x92b|\\x90U\\xed\\x8ee\\x13V]7.\\xee\\x95\\u007fBw\\xf5\\xbe\\x1a\\xc1 \\xefaW.cW\\xc4(::\\x11\\xbf\\x89\\\":cw\\xcc\\x0117X[;.\\x9c\\xaav\\xd3\\r&3Ѷ\\x97\\x97dz\\x9b\\f\\x93a\\x1c\\xeb\\xa4\\x13,\\x93Y\\xe3\\xefA\\x01\\xe6\\xd3[\\x1b6\\xbc;랽;Dg\\xa1\\xbd\\x10DjR\\x01\\xc1\\xd5\\xd4\\x12\\xd0i\\x1f\\xb5\\x1b{\\xe7\\x18.\\xe8}\\n\\xde\\xcak\\x86\\xe8\\x91\\xc4\\xdb\\no\\xed\\xb5\\xbb\\x89\\x99\\xfb\\xf5\\xf0%\\x9b\\xe2\\x17]\\xedW\\x10\\x18\\x1e:\\xef\\xec\\x10ܺ \\x13\\x1c\\xba\\xfeF\\x81\\xf5\\xaa\\x9d\\xba\\\\J\\x94f1\\xbaN\\x96\\xafA\\xfbP74\\x82L\\x92lX\\x00\\xeaݖd\\x1c\\x8d_|\\xbe\\xbb\\xe1\\xa8\\xfc~\\x16\\x9c\\x9b\\x03\\xcd\\xf2\\xcd?\\x1f\\x93\\x93\\v\\xcf\\nOv\\xdc\\xf8.\\xbf\\xea\\x19\\x1034\\xc3ޢ\\x80G\\xdbB\\x93\\xa8m\\x82\\xae\\x8dd\\xe7\\xd0,X\\x88\\xbb\\\"t\\x8d\\xd0\\x13{\\x00Ik.&\\x85\\x9c\\xf0$]\\x1bX\\x1fQ\\xe6)\\xefF\\xf9v\\xd7N3\\xad\\\"\\xb0c#\\xcb\\xe38q\\xc7\\x1d\\xb7l\\xed\\x9c\\x12\\rʘ\\xb8:}謵ʝ31ץ\\xc4\\xef֖\\xf7긮l\\xfb\\xd9\\r5_\\x81\\xd27F)-\\xe4\\v/\\x0fˏ\\x04\\xea0_\\xb9\\xbf\\xf6\\x87\\xf3\\xb2\\xc9_<\\x93)u\\xf4\\x826t7\\xf8e\\xb1աC(\\xa4]{\\xcf\\xcf\\xed\\xf2иSZݗ\\xa1\\xa1\\x05\\xaf\\x03<\\x14pQ\\xa9A\\xdbۏ\\x1d\\x1d\\xc8\\xfb\\xa0\\xd5\\xe5\\x19\\x86\\rF\\x9d\\xb6.\\xba\\u007fs\\xab\\x11\\xe2\\xe1\\x1d\\xdf\\x00W\\u07bf\\xeb\\r\\xf5\\xa0Q\\xad\\xc3c\\xa9iyV\\xa6\\xd5\\b&M\\x02\\xed\\xdb\\xc9\\x15\\xb5\\xc3\\xe3\\x1a\\xc83\\x80ެ\\xb2Kf\\a֊S⌸\\x8e\\xf0r)\\xa483ɷ\\xb2k(s\\\"\\xf9\\xd6\\xe4^zpCHF\\xe3\\x8dxA|\\xcf\\t\\x1en\\x91\\xe4\\f\\xff\\xf7oqa\\xa1\\x833\\xceq\\x84\\xab\\xea\\x1bV^\\x94j+\\x13\\x80\\x033\\xf2\\x1b\\x1f\\xc8$\\x80G\\xf6F\\x03\\xb3Fv\\x83\\u07bf\\u007f\\x14\\x12\\xf1\\xc3 \\xc12\\xfeۻ\\xcdF#3/\\x0fzm4dgwu\\x81|ؑ\\xb9.\\xf1\\x82w\\xf5\\xdf\\xec;垒\\xb0\\x17\\xfe\\x1cP\\x81+'\\xf8n\\x13\\x98zi\\xdd:Չ#e\\x8c{\\xdc[\\xfePRPf\\x0e\\xffD\\x93\\xd2\\x17Х\\xb4O3o\\x81\\xe4!\\xa3\\xbe=\\xef\\x04\\x14\\xf7% Y\\x85n \\t\\xb7\\xaa\\x86\\xf1jWm\\xad\\x98\\x18\\xcfr\\n\\xde\\xdb{\\xe3\\x99N\\x84\\xe8,+c\\xc0/\\x9b\\x9bq\\xf4\\xa8\\f\\xd4\\xc3\\xcc\\xc8q\\xbc\\x89K\\xeb\\xda\\xc6\\xd0k\\xd9F62*\\xed\\xc0\\x84.#0\\xec\\x91T\\xc78X]\\t$5\\xbc\\xc43\\xb3\\xd98%('\\xd6Y\\x1aQ\\t\\xa5\\x1a5\\x9f\\xaa\\a\\x06\\x9b(d\\xf1\\xc8\\x0fS\\xae\\xaf\\xbb\\x17\\xfd\\xc3\\x1fw\\xa3\\xd7]\\xa7\\x1c\\xf6\\xc8-\\x90\\xf7\\x1dM\\r\\xf2\\xddy[\\x173\\xb5\\xe1\\xcb\\xd8#\\xc5%\\x9b\\xfe\\x12\\x0f=d\\xc5>\\x14ظ,\\x8b\\x8f|\\x19\\xdb05f\\x90+\\xd48\\xab\\xf4\\xaa\\xb9\\x8e%\\x87\\x03h\\x11\\xae0\\xfcS\\xa4p/\\x12\\xe2\\xfd\\xbb\\xf17\\x8d_\\x83\\xb4\\xc9SmIU\\xdbk6\\xcc\\xceO\\xed\\x00DJQ(\\xe9O\\x97\\x18\\xb6AD{m\\xcaҀ\\xdfg\\xb3az č(\\xd2\\xec\\xdf\\x03\\xfa\\x84\\xb0\\xa4\\xa6C@{@\\xeeSꋋn\\xb6\\x90[/\\xfb\\xfe0\\x1d\\xee\\x81\\xe4俬\\x13\\xc9d]X=\\x13\\xea\\x80(PO\\x14\\xc0\\xea\\x94\\xe8\\x1b\\xa7\\x12\\x03O!Ea'J*\\xbe)\\x96\\xf0\\x9e\\xde\\xea\\x04\\x8e\\x82\\f\\x92;\\xfb5d\\x18\\x81ɵ\\xd2\\xf8Гw\\x80X\\x9d\\xc5H\\a_\\x9c2/\\x92\\xe1D]z\\xfd\\x04\\xa7|\\x03]\\x16\\x1a\\xbb\\x89Z\\x83\\vK\\xa9h\\x1f\\xec\\x1a\\u007f\\x1bhg\\xac\\x9e\\xb41\\x8e\\x1b\\xefc\\x98W\\x90\\x85O\\xf2{\\xe3e\\x83\\\\\\xb3\\xa4T\\x9c\\xa2\\x9d\\xdc\\xd8\\xe6ë\\xba\\xdc\\x19c_\\xfc\\x15\\xdcǐ\\xfb\\x88&S\\xb3\\x13\\xab\\xc2[\\xf8\\xb4)i\\xed\\x02\\xe0y\\xb6\\xb6\\xc1\\x89M\\xd9Pq\\xd180`=Z\\xb1簷^\\xfc\\x9eX\\xe9\\xa2\\x14\\xcf\\x19\\xdd#8ݒ\\xc0?\\x17\\xb2\\xa0nh1^\\xbfOz\\\"\\x8e\\x85aJ\\xac\\x8b\\xb5\\xc4\\x00\\x12\\f\\xd9K\\x0fO:/\\xb4\\xfe\\x9d\\xe0S\\x9a\\xf0\\xb3=x\\xbb\\xff\\x00\\x9dqjo\\r_\\u007f\\xc1l\\x17\\xab\\x8d\\xc3\\xfe\\xf1\\xab\\xbd\\x17\\x97\\xb96$/ʰ\\x84\\x1a\\x12R]\\xbdl+\\xf3\\x01\\xec\\x9fw}\\xd1\\xf4h\\xbaa\\xac{NΜ [ת-\\xd3i\\x1e0\\xb7V/\\xab\\x0e\\t\\xa1.\\xc9\\xc3BB\\xd6\\xc6e\\xce\\xee\\xb2\\x059\\x0e\\xdb=f\\xa0G\\x17M_O\\x03V\\xd65/(\\x0eL\\x14\\x11Z\\x85\\x1d\\x8e\\xc4=\\x1bkLˋ\\xa7\\xed1\\x85)\\x03\\xbeG\\xe5s\\xfa\\xd9vƅ\\x04l\\x06x\\xf3\\x81\\xea`\\xe1]\\x18\\xb8\\x80\\xf5\\n\\xff\\x17\\xcb\\xe9xd\\xc0\\x94\\xc4\\x1e\\x88\\xe4\\xd9\\xc4źI\\xab\\xee\\x91\\xdcE\\f/\\x96\\xeb\\xd9D\\xda\\xf5F\\xaa0T\\x17\\xb2j\\x92\\xbeֻ\\xe9\\xcdg|\\x95\\xee\\xfa\\x1c\\xf3\\x8cR\\xfa\\xe4Ի\\x95\\x98\\xb2\\xf3\\x1a\\xef\\xda\\xeb\\x8a\\xe7\\x05\\xb9`.J\\xe0\\x1d\\x15)\\xbd+kM\\xc6\\xfe\\x96\\xfe\\x8c\\xf0\\x9a\\x84\\x06\\xd6*RE]\\xa1.\\x834\\x05Zy\\a\\xc6\\xe0\\xce\\xfdA#\\x95\\xf8\\u007fۇ$W\\xe6\\x84Jr\\xfbrk\\xaeĻ\\xbcr\\x9ef߷\\xfe\\xa4\\x12\\xda\\x1f\\xe7p\\x18\\xaaXD\\x9a\\xa2\\xcb(\\xacc\\x99\\xea\\x1e]\\xfd\\\\}i\\xc7_v\\xdc\\xcdd\\xed\\u007f\\xed\\xb8\\x14\\xf0\\xf9\\xc3Gu\\xc2#\\xabXBCƜ\\x8e\\xfd\\x19@'\\xe5\\x13\\x9e\\xc8sޖ\\xfb\\xc12\\xb0\\x1dP2[\\xc2.M\\b\\x15^\\\\\\x85\\x0fq\\x05\\xbd\\xb0s\\xd0\\x18\\xe2\\xfaj\\x8e\\xe8)%doAj\\x82\\x1b\\xfa\\xed\\\\\\xa8\\x84\\x951\\xeb\\x9b\\xea\\x14)\\xb0\\xf78\\u007f\\x16\\x06\\x87\\xc9\\xfcf\\x14\\x03Vڃ\\xb6\\xc3\\x16f\\x17\\x14W=\\x11\\xe9EKe\\xa7!'w\\xa9A$\\xba\\xf6\\x89\\xf5\\xedaQM*+$\\xb5d\\x03w\\xfa\\x8b\\r%m\\x14J]27;?!\\x1aS\\x8c\\x01\\x04o\\xed\\xe6\\xf5e\\xffx\\x91\\x19\\xbb\\xda\\x19vM\\x02\\x02\\x04\\x11\\xa6\\xb9s톨v\\\"u\\x10\\xda\\x0f\\n\\x8f6\\xf0^m\\x15(rR\\\\\\x00\\xa2\\xa9gŭ\\xb8\\x19\\xbaS\\x85\\xf7\\xe8\\f\\x9f\\xdf\\xe4ʃ\\xff\\xfd\\xfc\\xa7\\x0e\\x9f> '\\xffB}\\xbd\\x1c\\x83\\xc7\\xf9\\xaeĚ\\xa7\\xe8SP\\x84}\\xab\\x8c\\x11Nr\\x88\\xd1m}\\t\\xc3#\\xe4h2'\\xc5\\x0f~i\\xed\\xde/?3\\x93\\x97\\xb2\\xb8e\\xf1\\x16\\xe48[HP_;\\x15\\x06\\xe6\\xf4{\\x97\\xa9\\xa5:\\xedEM\\x05{.\\x12\\xf3\\x95\\xa7\\u0601\\xd6\\xc8L\\xb6\\xa0\\xe4\\x89`J&\\agש\\xb1\\x91'\\x89\\xc5ew\\xe3\\xcb\\xf6f\\xcc\\a\\xb3*d\\xfbG'{{\\xa67\\xf0\\xbf\\xe17\\x14M5Ф\\x9e\\x91¾\\xb7\\xffu\\xa90\\x1f9Y|8\\xdbj\\x80\\xf9\\xbb\\x15\\xaf\\x9f\\xc2\\xe5R(\\xb4\\x19\\v\\x85\\xc3\\x1e\\xda\\xe5B\\xe9\\xdb\\u007f\\xd3\\xd85\\\"ƔS\\xfa\\rD,\\xafl\\xbe\\xca\\xe9w\\xc0\\x95C\\x1d͒\\f1]Vҟ\\x9ca\\xce\\xe1\\x8f\\x1d3\\xd2{'6p\\xc3\\fI\\x19\\xefg\\b\\xbfbrNpGx^\\x8a\\xf2\\xeb9\\x15\\xb3\\x125\\xf9ɌC\\x84\\xe8\\n\\xfcSb;\\xd4W$k\\xf2\\x13g\\x05gM\\xb4ۗU\\u007f\\x91\\x99\\xd4z\\xcb@\\x14A(\\x19\\x89R~\\x1cY\\x10\\xbb\\x92\\x1c\\x9b\\x9d\\r\\xa0\\x944\\x1c+]hR+\\x05\\xe3\\xa97\\x97\\xd0uv;C\\x84^\\x05\\x02E\\xabB\\t\\xc6\\x02\\xe6qN'\\xe7xJ\\xe1\\x91\\xc4\\xc4#\\u007f\\xf8\\xafX/3d\\xa8\\xc8а\\xad\\xcf]\\xda\\x1chW\\x95!C\\xf6\\u007f==\\xf1$:\\x93\\xff]+%J\\xe89*>]\\xb9\\xae\\xd6\\xf6\\x95+[=fK\\xbb\\xe7t\\x9bg\\xac\\xda\\xd9\\xde\\x06\\xf6H\\x98m\\xdfkZ*\\x99,\\x8fq\\\\\\xb1g\\xf2\\x8a\\x92\\xc8o\\x19\\xa1\\x81\\x19\\x81%>\\xec\\x82I9\\xc7\\rN\\xd9O~гh\\xbb\\x8e\\xd0ۦҮ\\xa6\\xc5\\xf8\\x12\\xcdD:\\x8fo\\fm\\xbbVU\\xdd\\xcb\\xcdY\\xadV\\xafv)\\xab>\\xd3\\xf6\\xb2\\xd5=\\xdaz\\t\\xba\\xedꎈ\\xeb\\xae\\xeao\\xf2o\\xf7\\xa9\\xa1d\\x02\\xef\\x04#ܟ}Ll=\\x06#\\xc3&\\xf5\\x1co\\xc2ᚏw'\\x1d\\xffb\\x98I^Ҥ;ꛑ\\xb8*+\\xb3\\x95\\\\KJ`\\xcfF\\x98\\xd4\\xd9\\xe1IN\\xf6t\\\\\\xaa\\xef\\x87\\x04O\\xbb\\xa5v\\xa5\\xa4\\xe8\\x8d\\xec\\xf9\\x03\\xef\\xe8 J\\x0e\\x1c\\u007f6.\\xa2\\xe0\\xd6\\xc5\\xe7S\\x87\\n\\x88\\xb1\\x03\\xe3\\xe7|\\xee\\x83w\\x06;A\\xfa(Kzf\\f9\\xa2s\\x92c\\xd23-\\xa5\\xa5ߙn\\bo\\x9c\\rS\\xa9\\\\y\\xd3농\\xf7Ї2\\xf93\\xee\\xf3Pˈ>N\\xa3\\xee{\\x8d#\\xa8p\\xc1\\xf8T\\xce\\xeb}T\\xda\\xf1\\xc4Sحxy\\x1fs\\xb5שw\\x80k#Ō\\x9b\\x1f>\\x05\\xbc\\xc4|\\x8fH\\xe6)k\\xe2;\\xab\\x99\\xf7\\xb5\\x83PJ3\\xb7&\\x83\\xa3\\xd3\\r\\xdd\\xdcrl\\x95\\x9c\\x15\\xea\\xe4\\f\\xb5\\x19P\\x8dUY5rIu\\xf0\\xa0*\\xf2rݜs\\xc1\\xec#P\\x86\\xea\\xd4'\\xcf:l\\x87`\\x00\\x06\\xec\\xe4\\xb1\\x02\\xc4_Ds_n\\x17d05f\\xb3x\\x8d\\xa1\\xfd\\x18ɿ\\xd0\\x13\\xb2\\xe2m\\xb2\\a\\xc8Q\\xedI\\xa3!\\xa6\\xf6\\xf0b\\xf2u\\xbdH\\f\\x8a\\x01\\xf6\\x8f\\x95ߺ\\x86\\b\\xd9\\x02\\xbf\\xc6\\x15\\xe3\\xa0\\b\\xed\\x14\\xd2g\\x92+\\x01/|\\xc7K\\xb9C\\x05#\\xdaxD\\xdd%S<\\\"Oq1Sd\\xa2\\xb1\\xe8&\\x11\\xab\\xc4@\\xdc[C\\xab\\xd9C$\\n\\xf5\\xbb]\\xe0\\xbfC\\xe8\\xbf%\\t\\xf6$}\\xa6b\\xb8\\xe7{\\xfe>5\\x98\\xc6\\b_9]\\x9b\\x9e\\x15}\\xec\\xf6\\xe8)H\\x1b\\xf1\\x85\\xb8\\xfd\\xa3\\xfd\\xa3~\\xcbAϾ\\xb7826%\\xa4\\\\\\xaf1\\x1e\\xb9\\xc2Q\\xedTeB^{1\\x80k\\x1eOf\\x0eW\\x9f\\xc3 U\\xe7\\xc8䢉\\xd8w\\x86^\\x17!\\xf7\\xc7\\x12\\x10\\x8c:w\\x9f\\xbf\\x13\\xe0\\xfdz/\\x82\\xf2\\t\\xf3~\\xa0o/+\\x8e\\x1cTx\\xbd\\x05幫\\\"\\xbaQB\\xb6\\xcbJ\\xca\\\\\\xc1\\x10\\xf6\\xb8\\xe9\\nwΒ\\xcf\\xdc\\xdcm\\xf2\\xe2\\xf2\\xc5!}\\xff\\x05\\x8a\\xd709yKf\\\\99\\x03\\xc9r\\xf6\\x10\\xb1\\x97I\\\\m\\xde4v\\xa7\\x84\\xa0\\xad\\x14[5\\xe2\\xe2\\x04H`z\\xca\\xf7_\\xdf\\xe2\\x90\\xf2b\\xf96\\xee1\\xcb,\\xb93|\\x19cc!WpY\\x89l;\\xae\\xb2A\\xb9*\\\"\\xb7\\xbc\\xe0pjl#\\xd6FZ\\u007frO\\xecWjo)l\\t\\x92\\xaa\\x8f\\x88\\x9d\\x10ϿՆ+\\xebWȺ\\x1en\\x84w\\b~u\\x01\\x04\\x8a\\f\\\"\\xcel\\x94\\xc4t4R\\x81\\xf0)+!\\xfa\\xda\\xedbp\\xeb%\\xe2F\\xc54\\x06p\\xb491\\x8bo\\xf2\\xd7\\x19\\x9f\\xbb,dW2\\b\\\"\\xd7#\\xe99T\\fm\\x05\\x94-\\xd7\\xed\\xa8&Ԓ*2\\xc3\\xe7\\x84W\\x90j\\xe1WM\\xd9\\xf2\\x15\\x10\\rC͡G^\\xef\\x81\\xc1\\x02F\\r\\x9e\\x1d3;\\x98*\\x85W\\xf2\\x9bC\\x9b\\xf9+\\xe1\\xd2\\xfd\\xc7~\\xc0M\\xa9\\x89]M\\xf2'\\xc7\\xed\\x9f\\xd7\\x1dG\\xf1'\\xad\\x86\\b\\xdd\\xcaG\\x9f\\xb8\\x8c\\xcc-\\xc4\\x17\\xbf8\\x1e \\\\F\\xf4\\xa7\\xb4i\\xb6\\xcda\\xa9X\\x18/˰<\\xb2\\x1c\\x95)gm$+;j\\xd6dȮ\\xeck\\x90ä]\\x97^\\xa719u\\x03\\xf6\\x88&\\xec\\xf8\\x93\\x86]\\x99_\\x10\\xa9\\xd8tr\\xe5ɗ\\x87\\x10\\xe2wY*;\\xa4\\xf6\\\"lG\\xdb\\xca+\\xea\\x1d\\xec\\xb4\\r\\xb5\\x9bJ\\x84\\x19\\x11t\\x14\\x05\\x16\\x14\\x81j#\\xd8(\\x1a\\x9a\\xbdꂗ$+\\x92%\\xf9v\\xb1&\\x88s\\x86\\x9b\\xc4=\\xc3y\\xbf\\xf4~&\\xeaFQ\\x89=\\xea\\x99_\\xf8T\\x18\\xb0\\\\\\xf8\\xc4zc\\xb7\\x93Xbq\\x99\\xbea}\\xaaӫ\\x86S鮲\\xdd#\\xf55ֆ\\x8f\\x16E\\xbc\\xb5\\xee@n%ҭ\\x1f\\x05!\\x97\\x88_\\x87\\b\\xebe\\xdb)\\nWkdF\\xbdή\\x9e\\xf8\\xee\\xaeS\\x98 O!\\xdfU\\xaa\\xadr\\xf6*4?C!\\xa4'\\xab\\x83\\x8d\\xeb\\xfa\\xea\\xc2u+\\x98\\xdc\\xcc\\xcd\\xf0\\xa1\\x0f3\\xf0\\x01!\\xac\\x195\\x89\\\\\\x81\\xa3\\xbcAIڟ\\x92i\\x93\\xedDzAO\\xd3\\x02D\\xd1,\\xb21\\xcc\\xda\\xcc\\xcas\\x8a\\xba\\x84]\\x05G\\x12BZ1X,&P\\xe6\\xd4\\x18\\x95\\xb5%\\xfd8\\xcad\\x9cl\\n\\xe0f\\xdee\\x81k\\xd2F\\x16\\x91HI\\xec\\xc5_Ք%[qhʨ\\x9b\\bŕ-ӑ\\xe3S\\x82\\xf7\\xee-\\xb6\\xac\\xf6\\xe5\\xe9\\xea9<ߑ\\xadx\\xe3\\xf1\\x94\\xe0x2\\a\\x18\\x18Z\\f,z\\x84\\xb7{\\x98\\xee\\r\\xd8\\x13\\xbe\\xebp\\x0f>V<\\xfe\\xfc\\xf3\\u05caײ*\\xe8\\xe0O\\x16h\\xd5*\\xf9\\xc9\\xd2\\x1al?\\x1b\\x00&\\xe4\\x02\\xbd\\x17\\xb6\\xbeA+Y\\a5\\x1b\\x1be\\x9bq\\xbf\\xb7\\x1d\\xe4\\x8d\\x1b\\x1e\\x06\\xbbn·\\x84\\x99r\\xaf@\\xa3\\x1b\\xc7\\nb`\\xbd\\xc7\\xd2W\\x876\\xff%p\\x06Q\\x8c\\xa2\\xe2粦+\\xaf\\xf7\\xf5\\xa8u\\x88\\xc3կ\\xe2\\x9e\\xe5H8g\\xb9\\xabj}\\xb3\\xd9_W\\xa7ێ\\xd6s\\xcepL/\\xbf\\xf8a1\\xf2\\x84O\\x96|\\x06\\xe5\\xbbuK\\u007f\\xe5\\x94\\xfb8\\xa4\\x02\\xc4\\x1c\\xbc\\xa6kd\\x87\\x13\\xbd>\\xc7Ar\\xc0\\x8bB\\xca[\\x1d\\xeb\\x94\\xe5\\a\\x92}\\rP\\x97U\\xabE\\x1b\\xb18\\xeck\\x06\\x0f\\xef\\xf0\\xa1<年*̣\\xe1R\\x89\\x99\\x05\\x8e\\xf7\\xe8Z\\xfağN\\xbb\\xd4c-\\xab\\x8e\\xe9\\x85\\xf9\\x80\\xa1\\xe2\\x96\\xf9|\\nv\\xe9\\xee\\xe4\\xa3A\\xa7\\x14W>\\x05\\x95\\xfe\\xc7\\xd6\\x06G\\x98,\\x0eJ)\\xcc\\x13F\\x8a\\xa6\\xa83R\\x12\\v\\x02\\xfe\\x98r4\\xe1h\\x8e\\xeeֱ\\x1e2DA\\xdaGyR\\xd1\\x13\\xc9\\xcf\\u061d\\x19>ސ0W/\\xa9S\\xa2\\xfb\\xa6\\xedp\\x80*@\\xc2\\xea\\xa4\\xd8\\x11\\xf5\\x05w\\xb2\\x95Ș۲\\xa75u\\x9af\\x1b\\xf8pr\\x84N\\xa7\\x94\\xf5\\x86\\xd5$\\x0f\\x90\\x87DQ\\xe12\\xa5N\\x17\\x91\\f\\xf3C\\x8fn\\xd0\\x05$\\xfdi)\\xe1f\\x97\\x119or\\u007f\\xfc\\xa4\\x94\\xf7\\xac\\bJ\\x9c\\x96>-1h\\xc5\\xf0*?\\xfdȽY.\\x15\\x9f\\xcd-\\xb1\\xfc\\x99\\xa4\\v\\xd8`\\xa4ǅ\\xfa˒d\\xdcG\\\\\\x19\\xe7A4\\x8f\\x92\\xf9\\x87\\xc6a\\x1fpf\\xa6\\x02f\\xbc\\xe3s\\xa5\\xa4\\xbe\\xf2\\xa8\\xd5\\xc7<\\x19\\x8fJ<\\xc7\\x1eTݯ\\xba\\xe8)y\\x94i_u\\xa0a\\xdb\\xf2M\\xe9T\\xeeٌ\\x81\\x8ba\\xad\\x0e>\\xc2w\\x84\\xb6\\xde\\x1a\\xc88\\x9by\\xf9\\u00a0~\\xf4I\\xc3\\xea\\x9a@\\a\\x91\\xad\\xd6\\xc6^\\xcd`\\xec\\xda\\xd7QVD\\x1a\\xadnM\\x82&\\xa5\\xf5\\x0eϛ?\\xd3?j\\x18\\xe4\\xb8\\xe7\\xd2\\xfc\\x93gzɴ\\xaa~p\\x1b%\\x97O]¦d\\x8b1\\x1b\\xebXTE>z\\x12\\xf1\\xf6m\\x04\\a4\\xf3\\x10\\xeeɤZEO*\\xc8\\xc2=\\xbe\\xb3\\x93\\x02\\x9a\\x97\\x1f\\xa8G\\xb0Xrl\\x9ag\\x88\\x9a\\x99\\xa1$W'\\x92/(\\\"\\xafc\\x05\\xb3b\\xc4\\xf1\\xa7\\x9fT\\x15\\xaa\\x83D\\xfa\\xe8\\u007fz\\x16沌\\x11\\xba039ܐԒ~\\xf1\\xc6\\\"\\x13\\x16[\\xe3\\bd\\xe7\\xde\\nP\\xce\\xf5\\xef\\x1c\\x01\\xdaQ\\xab#\\xc7\\t\\x1a\\xbe\\x8a\\x88\\x05a\\xad\\x17\\xcfȸ|\\x11\\x83x\\xe1rf*\\xa5\\xbc\\xa5מ\\x93\\x9c8\\xad\\xec\\xe4\\xdc,\\x98!\\xb8U᮸%\\xf0\\xad\\xd0?\\xefU\\xf4\\xf6\\xbaQ\\xf7\\xe8B\\xec\\x1d\\xb1瀫ED\\xec\\xa0w\\x10E\\xeeI\\xcc~(b\\x12Wm\\xa15\\xa1\\xfdR\\x88\\x9bN.F\\x15\\xef\\x99\\xc5\\xf4\\x9f\\x12țDZ\\xfd\\x12&X\\x0eFN~?i\\xb2\\xc68\\xb5\\x8c\\xeeG\\x9b\\x1e\\x04T1\\x89R\\xf0\\xdfaa\\xa4\\x90\\xfb\\x80E\\xd2\\v\\xdf \\x03\\x1e~\\xf0\\xe6&D=\\x88\\xfa\\x9e\\xf7\\\"\\xb2\\xe7\\x06\\xf4{ H\\xa0\\xf1\\xe4\\x01\\x1c:\\x9afk\\x93\\x91Gi\\x05\\xae\\xf2.\\x04\\x89JH\\xac\\xab\\x80e\\x94*FY\\xbfgm\\xa6 \\x1aM-8\\x8a\\x14\\x00\\x91'\\xaa\\x98\\x0emM \\xe9\\xe3@\\x1d\\x89\\xc1\\xbf5\\xb6\\x88Lp\\x12\\xbc\\xa1\\xdc\\x1c\\xd5iG\\xf3\\x03\\x80r\\xdf>\\xa4\\x83e\\xa1~+\\xde\\xf7ɽP\\xb9\\xb9\\xdcl}W\\x02\\\"\\x97\\xa7\\xdb>K}\\xb2}̙\\xb6\\xe2\\xca\\xe2+[\\xa3t\\xb1:Ϣt\\xdb7\\xabf\\xbee\\xda\\x16\\x8bۨt\\x82\\xa3\\x01.\\x1f61V'\\xe5-\\xc8\\x16YEf\\xb9\\v\\xf3\\xcb\\xe6\\xe7?:\\x83L&\\xc5<\\xaa\\x8e\\x9e6\\xa36<$\\x99DQ\\xb5\\xf2\\xfcu\\xa16v\\xb6\\xe8] \\xf3#\\xe2[Be\\x87\\x86;s*#\\\\\\xe5\\x98\\x0e%\\np(S\\x06z\\xf0@\\x96\\x1bo\\xf5\\b{\\x98L\\xec\\xb0\\n\\x12\\xc0\\xf8\\xfcY\\x17\\xa2F,\\xe9\\xf2\\xb8\\x1c\\xa5\\xa6. \\\"\\xd5e7\\xd4\\xeae9\\x1a\\v\\x94\\x1c\\x9d% ?%\\vfM\\x99\\xa2#\\xeb>blV\\xc75}0\\xef\\xcef\\xcc\\xf52\\x00$\\xee\\xda\\x125\\x02A\\x90\\x03BgXO3b\\xaf?8~=.\\x0e籐C3Q\\tj\\x13c\\rg\\xafA\\xe3H\\xaf\\xbbc+\\x11Ԩ\\xfb\\xf1\\xa6\\xf0\\xcekφ\\x12Ӳ\\xe2\\xc2\\xe3\\x06ybeL\\xc5\\xe5\\x8a\\xe8Ī\\x05_\\xc4\\xe4\\xdem5#3?k\\xa2\\xcb\\xcd\\x1e\\x13g\\xcf\\xfc\\\"\\xa6BWvٕPe\\x90\\aZ\\x03\\x10\\x12\\xb4m;\\x17\\x8b\\xc9e\\xe2B\\xab\\x11\\x87\\x02Ԫ\\xb1\\xbb\\fF\\xb1\\x96\\xedۂ\\x1c4\\xc4\\x010\\x87\\xa3\\xcd]\\x00\\xf0\\xcaB\\xd3\\xc1\\x14\\xa2B\\a\\xd8\\x00\\nQ\\xf7\\xd6E?\\x04\\x0e<\\xb1\\xa6\\xd1|\\n95\\xf7\\x12IU\\x19\\xa0ء\\xb9ϜU/\\xcc\\xd83\\xe4,\\xb3\\x98\\xf7{k\\x9a9\\xcdQ\\u007fS\\x82\\xca\\xea\\x10\\x9a\\x94\\x86\\x889\\xcc(\\xa0t\\u0086'\\xe7\\xe4\\xd4L\\xacW\\x9e\\xc9#ǭ\\x93\\xfb'[\\x9b\\x9b\\xfb}\\xfb\\r\\xe0\\x04\\x14\\xc0\\xb7n\\x89\\xfb\\x89p9%\\x89(d$\\xad*2\\\\\\x9e\\xa2\\xcdD\\xbeR\\xf9\\x8d\\xf5\\xba\\xbd\\xfb_\\x85L|\\xa7\\xceD\\xceG\\x97\\x8bEY\\x9c\\x88\\xb8\\x89\\x90W\\xfd\\xde\\xee\\xde1?\\xff\\xfaҏޢ\\xa9R\\x1e\\xba\\xe1\\\"Y\\nk\\xb1<u9.;\\xca\\xc6ʆ\\x96\\x13a\\xad\\x94<\\x12Y\\xa4\\x9e\\xba\\xf4L5\\x10\\xbd\\x90\\xc9\\xc7\\x03\\x90\\x19\\x85<\\x10\\xcffk\\x81<\\xd11\\xf5\\xaf!\\x13A\\x93\\xd8dr\\xe4\\xa4\\x1an\\xe0ܑ\\t\\x95D4s\\xad0Mbϝ\\xbb8\\xf3.\\xce?dD\\x10\\x1e\\x8b\\xc11\\xfd\\xb0\\bD\\x10\\xfaR\\x90\\xb3pę*\\x96I\\xb4\\xe4\\x01\\x9d\\v6Ɋ^ء\\xd0\\xd1\\xeb\\x85\\xd7\\u007f\\xc69\\x1aF\\xb4\\xbf\\x90\\x15mB\\x9d\\xabY\\xebY\\xab\\x89\\b\\xc9m_\\xf4\\xe5\\xc5\\x00t_c\\u007f\\xb9\\xc8\\xee&\\xd1p\\x95\\xee\\xca?\\x00\\x84}(\\xb8ʓ\\x05\\x19+\\xff\\xfe\\x8d0\\xd9(\\x9b9\\x98\\xe7Z\\xc5\\xdc\\xc8\\\\\\x15\\xf0\\fA\\xa1d\\t\\b\\x9ap\\xc0>\\xa0\\xa51m<9\\xdb`\\x138\\xf2v,\\xb3\\xdb\\xf4\\xf8\\xe4У\\xaai\\xf5'\\x1cvz-\\x8bȺz\\xd5XW\\xd7\\xfc\\x88\\t\\xda\\xd7\\xdd1`Yf-7V)\\x9b\\xeb\\x9cyg\\xce4\\xab\\xd5\\x0e\\u007f\\xe3\\xe4$cy\\x1e\\xe2\\xc7h\\xa3\\xfe\\x86\\x04\\xc4n\\x8aZ\\xd5U\\xc1\\x87W\\x1eZ\\xae\\x9bq\\xbe\\xb7\\xc2\\xe4vT\\x8eT\\xe6r赛U4\\x8f\\aF\\xdd\\xe8\\xc85\\xc4]\\xa7\\x12\\xc3Ә`\\x04\\xcaI\\x92\\xc55\\xc8.\\xeaV4\\xbd\\\"\\xfd\\x1f\\xe9\\xfe\\xff\\x93^5\\xad\\xc89j8\\\\R\\xcey\\xdb\\xf3\\x9f2\\u007fz\\x0e~@\\xbe\\xbf\\xeaÆ\\x8eyN\\xb4\\x1f\\xab\\x99\\xeeA\\x11ù~\\r\\xb70\\xf4҆\\xdaPf\\xda\\xe4\\x81Dmu\\xc3/\\x9b\\x8f\\xa4\\xcf(n\\x9b\\xdbV2u\\\"H\\x99ZNXx\\xe3:\\xe4?\\xfb\\xd0ʱn\\xd5\\xec\\xb9\\xdfex\\x06\\xba\\xec\\xcf\\xce\\xec\\x06\\xb5\\x90\\xfb\\x90\\x03\\xbc\\x1fpW\\x15\\xa3\\xa9zʂa_A\\xf7@\\xbak\\xa9wD\\xe5\\x8bo\\xcfO\\xd4\\x02\\xb1\\\\\\f\\x06\\xb8\\x06?\\xc1\\xc1\\xac\\x99\\xf8e{\\xb88\\x02G\\xaf\\xbc߽o_\\x01\\xdbV\\xf0\\xa2\\xfc=\\x8bύα\\x97\\xfb\\xa7&\\x97\\xed\\xb0\\x14\\xf3p\\xd6z\\xa5\\x1f\\xacQ\\xc1òy\\x0e\\xce{\\x1d\\xbd\\xbb!\\x9b\\xc8\\xf2-\\xa4\\xd8\\xf1C\\xd0\\xd8\\x1e\\\"v`\\x12F\\xe8\\x00\\x8fH3\\xb9\\xfe\\xe2\\x19A]\\xa0\\xe0\\xccE\\xab\\x8fzm#>\\x9c\\xf6\\x13\\xf3\\x8c \\xb0>t\\xe3\\xc5\\xfa@A\\x86\\x82\\xf6\\x93è\\x88\\x0f\\x1b\\x18\\xeb\\x05jQ\\x0f\\t\\xa1\\xbe\\xa6$\\a9\\x82P\\xb8`\\xb2P\\xd8/\\xc3\\x00\\xbd\\x03\\xabQ\\t\\xcdϛI\\a\\xa6vy\\xbe,\\x92\\xca\\x15\\x88\\xb5\\x1a#I\\xdb\\x02\\xc3\\xeaN]\\x90\\x98\\x17\\xaa%\\x85\\x81\\xdbH\\x91F+6P\\xe5\\\"\\xb1|\\xf3\\x80G\\xcaB,\\\"\\xc1^8\\x95\\x86\\xed9||\\xa9`\\xe9\\xf1\\xc3=RUT\\x14R&Y(\\xb1\\xe6祾\\x05\\xd6\\xf6\\xe4\\xbc|\\xf0\\xbe\\xc0j\\xcd_ڊl\\x06\\xeds\\xc9F+\\x90\\xc7\\x1b\\xf2\\xad\\x93q\\xf3\\xa5=\\xa0C;\\xb2u\\xaa\\xa2 \\xafH\\xc9ZI\\xb9Do\\xd8w\\xc5\\xec\\xccv*\\x84+\\x0e\\b\\x03\\x01\\xc4[\\x82\\x02LP\\x93P\\xbaqC\\x87\\xb0C\\x01R\\xa1\\xcf\\u007f\\xe3\\xe3\\x83\\x17\\xf1\\xe3\\xe3_\\\"5\\xa9\\x80H\\x06\\x03\\x1e\\xfdc*\\xbd$\\x9f\\x1e5\\x18\\x97\\xddmV|\\U0005331c\\xd8]\\x14\\xe7}Y\\xc0KW\\u0084`\\xfcQ3w\\xc7e\\x0fF\\xd1\\xf3K\\xe8\\xa9ֲ\\xf7l\\xc6\\xf7\\xcc \\x0e>\\x92#[TjU\\xe1\\xc9ͱ\\xb7\\x96ؑ}\\xe3jFds\\x06\\xe2\\xf0\\f\\x9f\\xee\\x1f\\x18VI\\xe3\\xf2\\xf4\\u007f\\x16\\xadڂ<\\xfc\\xd7(\\a\\xe1\\xb9\\xf3\\x8eۏ\\x03T\\x19➺\\xd3w\\xf0\\xecS\\xb4\\xe4\\x96c\\xd0\\x1d\\x83\\xa5\\xf0Uf9\\xe5\\\\\\xe1\\xfb\\xa8\\xd6\\xc4\\x16\\xbaP\\x92)\\xeezz\\xa7\\xf4Շ\\xde\\xd1)K\\xf5\\x8d\\f\\x9b\\x03\\x02\\xdf\\n\\x96\\xb0\\x97|\\x91F\\\"\\x1dC\\x15\\x0e5\\x84\\x95d\\xcc\\xc9l\\xf2\\xa1s\\xd3%XH\\xedP\\xa0\\xc7H\\xa4\\xb4/|\\x84\\xbe;9\\x14l\\xdd\\x19\\x8c\\xc5&\\xb5t,X嗣 \\x01[L\\xb4\\xa4\\xae`^\\f+F\\xbd&k\\xc2\\xd5\\xe8\\x87Ðr\\x14^;@\\xb0Q\\xab\\x04\\xc1;\\x83\\xadCW\\xc0'\\xc4\\xc1q\\x04\\x06\\xb6\\xb2\\xc21\\xd5\\n\\xd4\\xcc\\xf7_\\xb3\\xe7\\xc7W@\\xb4\\xb6\\xaen\\xf8\\xf4\\x98\\x81fplڨ\\xa6\\x19\\xc6N\\x0f_\\xbb\\xa6\\xa6\\x83\\ba<w:\\xf3\\xf7\\xef\\x1f8˜\\xc9<;Ф\\xf9#\\xd7x\\xae\\xb5+\\x02T\\n\\xce\\x1d\\x93[x\\xeaK\\xf5\\xcfij\\x00\\xd2,\\xe4\\x19\\xf3\\xf3F\\xf3\\xd4h!\\xb3i\\xa4\\xa1\\x1d\\xec\\x04\\xb9ƀ\\x86\\x99\\xbd)\\xc0\\xdf\\xd1ir\\u007fC\\x9a\\xbc|\\xbd\\xc1\\xbf|c&\\x05\\xbb\\xfb\\x8c\\xe3j1\\x93\\x92\\xe1E\\x11?\\xf27,\\xc0|4\\xe36<\\x9e\\n\\xd9g\\x8az敕\\x87\\xd7]\\xed\\xe0\\xdfH\\x91Lj(\\n\\xc47g#.--:ړ\\x94\\xd7\\u007f\\x8f\\xd13#\\x9f\\xdaǬ\\xde\\b@\\xbe\\x92(Һ\\x11\\xd8\\x109\\x0e\\tj\\x18\\x13憟°\\xa4~\\x99BĲ\\xa1\\x13kڕ(\\x99\\xae\\x93@\\xcdh\\v(2-\\x1csӤ\\xab\\x0eB\\xb6\\xf3\\xcc\\x19=\\xa9`V\\xa7\\xfa\\xaaF\\xe1@\\xff\\x98U~0\\x97gol\\x9d\\x9c\\xc7\\xfc\\xbcłX\\xcf\\n\\xb8P\\x16c\\x9b\\x06\\xdd-Ϗ)\\x1d\\xb2\\xccߟ\\x91T\\\"\\x8eT\\xb3\\x92\\xe7\\xe4K\\xe0\\\\#~Z\\xf2\\\\J\\xd9\\x03QW\\x1f9\\xb1\\xf2V\\xa4~\\xd61A\\x8db\\xe01U\\xa1\\xff\\xbfQ\\x05\\xffoF\\xf6\\x9754D\\x1a_\\x11\\xf3fޥ/r\\x93~:\\x12}\\x19\\xb6皽\\xe3\\xfb\\xc2SĎ\\n\\xbc\\xbbu\\xf2\\xa1j\\xf9\\xceՇ&\\xb7\\x16\\xe8H\\x11\\x87\\xf7\\xf9\\xfe{\\xdbB=ǎ\\x9f6#9\\x8a@\\x8aY\\xe9\\xaf9\\xa8\\xfct1\\u007fv\\x80\\x88\\xac\\xaf\\xdb0+S\\x87'\\xa5\\xacd\\x13\\xe0\\xca\\xd4\\xf0\\xb5\\x82\\xfc\\xd92!k^)\\xd2f\\xa3)=z4\\xda,\\xa0\\x94\\xb1\\x9cy?o\\x99\\xad\\x97\\xf1\\xf8F\\xd9\\x01\\xd3ɤ\\xefs\\x05\\\\\\xfa\\nvҼ\\x95\\xb4\\xff1#\\x96&L\\xfc\\xb7exm\\xfez\\n\\x83\\xa7\\x97\\xcd\\xde\\xf2\\xf3\\xbcB\\xc0(</t\\xc64\\xb5\\xe5\\xde\\xfbuʪ\\xcet\\xe8\\xfb\\x1f$\\x1e\\x04\\xc8\\xc7\\xfa\\xb0O\\xa4.2_\\x1f[\\x1c\\x96ͷ2\\x8f\\xf6S\\x15\\x9fRՉO]\\x8f6:\\x01\\xc9\\x16\\xee\\u007fx\\xcf,5s\\x03aj.6\\x11*\\xbdn\\xd2瘠>\\fp\\x8e[ \\xa3\\xcbN\\x88\\\"\\xcc\\xeaRy\\xa4{\\xb1\\xfc\\x173\\x8a[\\x06G\\xd9\\x10=\\xf8\\x00\\xab5Zl6\\x03\\xddp\\xd0\\xe2\\xa177|\\xf7\\xe9\\v\\xc3\\xc3\\xcfmU\\xa3E\\xb3LK\\x89u\\n\\xe72ZC\\x1e\\x0e\\xf9\\rd\\x8f;s[\\x06\\x84^\\x8e;I\\xbc=N\\xb0\\xc8y\\xdc~\\b6[\\x90\\x9c\\x1b\\xfe-\\x021\\xed\\xddMV\\xb0\\x91ȱoѢ\\x9eЫ\\xe0\\xf5$\\xc0Z\\x06\\xeb\\a\\xe1ddpq\\x85S\\x11^\\xc3o\\x9f\\xee\\x94\\xdc\\xf0\\xeb\\xa2\\x19I\\xb4Ӈʫ\\xc5\\\"f\\x84\\x87\\x18\\x12N\\xf7\\x8f\\x03\\x8c\\xfcw!ތ\\v\\xe8\\xacd\\xf7\\x8f\\x0f\\xf4\\xf7gul\\u007f\\xbf\\x82\\x89s\\xc54\\x83\\xe2[\\xb1\\xeeʆKp\\xa5\\xc1=Uq\\x12խ8\\xe7\\x97I\\x84kA\\x8e9 V\\xb0\\x96x\\xa1n\\u007f`\\x00#\\xd8~\\u07b9C\\xaf߱\\xd3(\\xf8\\xe4\\xe4:\\x9e|b\\x9b\\x0enKH\\x05\\xd4\\x16#6\\xb5\\xd9bJ]\\xf7\\x87\\x1b\\xc4\\xf0ۏ\\x1e\\x91g||\\xd8<\\xdc܌ݥ\\xa5Vk\\xa6\\x8d\\x05k\\xb1\\x10'\\\\\\xccc\\xec\\xdc\\xd9\\xdf\\xef\\x111E\\x9e~\\xb3呁\\a\\x18\\x86S\\xfc\\xb3ė(2\\xf1\\x91\\xb8`\\xdb7\\x95\\xaf_q\\xc6ɘ\\x06\\xdf\\x19Z\\x16c\\xb7\\xc0\\xa7\\x1aSC\\xe6\\xd9\\xfa\\x1e\\x06\\x83\\x16.鸸\\xbb\\xee\\x85#^\\xe4d\\x90\\xaf\\x12۽\\x9epA\\v\\xf7\\f\\x01\\xd9\\u007fЋf\\x04\\x05\\x8e\\x03\\xa9^\\xbf\\xb2\\n\\xce\\xd3h\\x03\\xb8TGGl#L\\xaf/\\xf0\\xc4g\\x80\\xfe}A\\xa1\\x02\\x8a\\u0383\\xc6\\xfb:\\xafy\\x15\\xc0Ds\\xb6\\x9b\\xf5\\xc7B\\x92\\xbeoa3sv\\tW\\xe0\\xd2ɏI\\x81\\xc9^}k\\x95k+\\v\\xe4\\xd6\\x02\\xd5\\xdfQ\\xa9C\\x0f\\xb9\\xb66n\\x0182\\x19\\xb4V\\x13O\\xd5\\x19\\x03\\x9e\\xfc-\\x99\\vJ\\xf2R\\xd2Ӧ7\\x9d\\xf5\\xa7\\xfc\\x05\\xf2\\x90Ү\\xf8\\xd0(l\\xfc\\x10\\xba\\xca\\xc9u\\x89E\\x05\\xdae\\t^\\x82\\x19\\xf0\\xf1Jؘ\\xaf-\\xba\\xf8\\xa8\\xae8\\xc1~\\xcdyM\\\",\\xaeR\\x10Ƞ\\xe5w.O*䛴\\x18\\x99\\x14\\xfd\\xec\\xc8\\xce~D$\\x88\\x1b\\xd0B\\xa7.J\\x11\\x16\\x06\\xa5\\x93\\x93\\xd9wg\\xd1U8\\xfd\\x9c/{\\x9e\\xb7\\x14\\xbe\\xba\\x88\\xaeV\\xb4\\x9b\\x0e\\x14\\x8c\\xab\\xf2\\\"\\xd2\\bm\\x13\\xeaL\\x00\\xa0\\b\\x8ba\\xdd/\\xb4\\xec\\xe7B\\x1e\\xa2\\x17\\x9c<7\\xc0|\\xf30\\x15O\\x90\\x17\\x13\\rV\\x03\\x91\\xcc\\x16B\\xdd\\xf9֒s\\xe7\\x18\\r\\xc3\\xfay\\xb7MD\\xe7O\\xf0\\xbdҤ(ȇ]\\xbf\\x80ɘ{a\\xf0\\x91\\n\\x1f\\x8dc)\\xfc\\t\\x94\\xd5g\\x14\\x86\\x93/Dg\\x97I\\x10\\x1c>*DJ\\xc0\\xfb\\xbd\\\\L\\xaemiڭ\\xf1\\xbf,\\xdd\\f\\xe9#\\xa7\\x12\\x91;{\\xca!R\\xe3O\\x12,Q\\xdf\\xce\\xc4\\x11\\t\\xb1\\xec7\\x00\\x8bg\\xf60\\xf1$\\x1c\\xb3\\xd5jU5\\xa4\\xc7\\xd0\\xdf?6t\\x88\\xf2\\xce\\xe2;}n\\xb2\\xaf8y\\xe9ʹ\\xddୣ\\xe0\\xe9'\\xb6\\x84\\xe6\\xe9\\xff\\x96$\\xe2\\xe6\\xd11\\x93\\x88zii\\xc5e_JDڗ9\\xea\\xb0hz\\xb40\\xa5Ι\\xfe\\xb5\\x94\\x8a!b\\xd9\\x04\\x1c\\fg\\x93\\x17\\xef\\x89$Ie?\\x89s\\x9b\\x9bs\\x19\\x92ɐA*\\xadg\\xd7Ƒ\\x89\\x90\\a\\\"A\\x06\\x83պ\\u007fb!\\xd2`\\x95\\x00\\xd2\\x0f\\xb3p4<\\x9e\\x88\\xc3N\\xc2\\xe2\\xf0X\\xcc\\x14\\x0e\\x81\\x8aCꙒ:\\v\\x91\\x8c\\xf3\\x1bVCd,\\xd6*\\xc1QZ\\xc7\\fD\\x06d\\xf0\\x186\\xe1k>(\\x140MJku$X\\xbc~\\x84d\\xea'\\n\\xa5⣦Y\\x17{BB'\\xddi[\\a\\xe7ddƆ(~\\xbd\\xb8\\xf7\\xb5\\xbd0\\xda1\\r\\xae\\xf0M\\xf7\\x1bKW\\x11\\xc1a\\xae\\x1e\\xcbx\\x010\\xcf\\v\\xb9\\xa9\\ue9bb\\xe1`\\xd2\\xc1\\x11\\xc5>\\xa3\\xc5 <\\xd2\\a:\\x1c\\xd0yL\\xfe\\xa5;\\xe0<\\xd1綂\\xbd\\xdd\\x15e֎\\x87?\\n\\xf8\\xc5\\xf1iyp\\x0e\\xf0\\x00*\\x86\\xd9\\xfc\\x8d,\\x98\\xb5\\x91\\xcf\\xfe\\x87\\xb4S\\xa3r\\xf2\\xbb|g\\xfa\\xbd\\x06\\xba\\xdf\\xeb\\f\\x88듓]\\xc0#\\xd1!F\\xc3>[\\x8a|\\xb3\\x1f\\xfead6\\xf0\\xd9\\xc6\\xc9\\xe4\\xdfn\\xd4'\\xf1\\xcbnn\\xadƋ\\U0005996d\\xfb\\xe3av\\xdcC\\xd6\\xc22~R\\xfdw\\xbf\\x93'\\xb3\\x8d\\xfc\\x06\\x1e\\xd3\\xf0\\n͡\\xe7\\x98\\\"\\x9a\\x1f;!ȟdm\\x88\\xfa\\x9d\\tA\\xce\\xc7ͦ\\x884\\xad\\x02F\\xdb\\xc6\\\\l \\xe4\\xe1\\xc9)\\x13\\x8f\\xa2\\xbf\\t\\x1a\\as\\xa2BT\\x94\\xf5Y\\t\\x168\\xe1[\\x14\\xc9\\xec}mm\\xfb\\xd8Ɋj\\x13\\xb2\\xbal_\\xc0\\xb2@^1\\xa1\\xa3\\xac\\x88\\xb7\\x96ݩ֓\\\"\\xa7\\xbcݝ\\xbdxE\\xf8\\x98\\nt\\xff\\x99|hc\\n\\xec\\x15\\xc9H\\xec\\xf4\\x9a\\x9a\\xe3M\\xcc\\xe6\\xec\\xa4\\u007f\\x84\\xfd\\xaa(e\\xa0\\niw\\x0e\\xaeJ\\xfb\\xf4i\\xe4,\\\\N\\xb7T\\x81\\x06\\xbce\\x93\\xd9o\\x8d\\x94f\\xd6\\xc9/$\\xc7\\x05\\xb0Wh\\xab\\xce\\x03Jh\\x93ks\\x94\\xa4\\x10R2ފ\\xa6\\x90\\x1b\\xb0\\x14K+\\xf0\\xe0~4\\xea=\\x95}\\x02\\x1e\\x15\\x14K'>\\x9bv\\x9c#MY\\xb9\\xc0\\xa6\\x99\\x1eo\\xa8\\x9crnG\\xe4pz\\x99\\f\\xb5\\xce+\\\"Z\\xdc7=G\\xb4\\xe2ڜ\\xa6\\xc2\\xf9)\\xc2Ŝ\\xf0\\u0379ɷl\\xee\\xe6p\\xce\\xe2\\x14a\\xe1|\\x93ss\\xfe\\xec\\xfe>\\x1cۃ\\xc10\\x95\\x15\\x91\\xa8(OD\\xab\\x01\\v\\xdd4\\x02\\xcc\\xee\\xf4`\\x88G\\xe7A\\xbc\\xfeg \\xa0\\x806ȕ\\xd3+T\\xddF\\xe7\\x00.{bs\\xfa\\xb7K$\\x90\\xa5\\xe8.I\\xb8\\a\\xf9\\xf9Y\\x9f\\xb4GL4k\\xd2\\xfe\\xf6\\x88\\x82\\xf5 \\xa8+\\x8f$&\\x15\\xdcE\\x9c&Z_Aӆ\\xfd\\xaf\\xec\\x91\\xc9\\x15FGn'BQ\\x97\\xe5M7\\xb2>\\x1e]l\\xc8S햜\\xa0\\x8ec\\xf8\\xbfa\\x9a\\x8d-;\\x01\\x9d\\v\\x80\\xd4;\\x8c\\x820\\xafӘ(\\x93v\\x9d\\xf9Td\\x14\\xca\\x101\\xeeqe\\xe2\\xc6܍\\xd8\\xeazx\\x8b\\xaa\\xbf\\x05p\\xd5\\xfc8[l\\xac-n\\xd3\\x0f[\\r\\xa8\\\\\\xef\\x87Kd\\x10)\\x01\\x0f\\xc7\\x0en\\xc5\\xf14\\x03\\xfe\\x0f[\\x10\\xcb\\xf7\\xca\\f\\xb2\\xe3#dĊ\\x92\\xe3`z\\x98\\xbb\\xb1\\x1d\\x9eXK\\xa5\\x14\\x12\\xd7\\xeb@\\x93m\\xd4\\xe9\\xa4\\x02Ƣ\\x83\\a\\x83\\xde\\xe5\\x1f\\x94\\xdalү9D\\xa4w\\xe0\\xad\\xf0\\xed\\x81K\\xfb\\xf7_:\\xf0\\xff\\x8e\\xff\\xc1r\\xb7\\x94=\\xbbf\\x107C\\b\\xddGY\\xef\\f\\x03z b@\\xcbz\\xca\\r\\xa6\\xa7]C\\xb8ԙ9\\xae\\x13\\x8d$\\xb8<x\\x1b\\xa4\\x12\\f\\x9a\\x8e\\x87T:\\x8c\\xe7\\xab~W\\xbcK\\xfc\\x0e\\aH.\\xb4bB\\xfb}IT\\xa5\\xd5r\\x15\\xcf4\\xa26\\ẗ́(\\xd7hIo0\\x13Ł\\f\\x01G\\x9c[G\\xc4\\xcfe\\x998N\\xef\\xee\\xe89\\xf5\\x8b\\x8b6\\xb9LE\\xb1\\xdfJ\\x98/^\\xc8\\xeb\\xff;\\x99ݏ\\xd3a\\xd9_\\xd6Y\\x1dEKOs\\a&\\xbfk\\xd1&&\\xedLۍ\\xc84Җ\\x84|\\xed\\xee\\xfb\\x9c\\x17\\x16\\xc6#c}Psh\\x0e1\\xd5+\\x95\\xa8\\xa5h\\x89\\xa9\\xc2\\x14\\xc8\\x12f~\\xb6\\x9c\\u070f3T\\\\O\\x97\\x1d\\x81|Ҳ\\n\\xf7\\x97\\xc9;O\\x06\\xc0\\xa2\\xc7\\xfd\\xae\\xc4!\\v\\xa9\\xec\\xf9\\x97\\t\\xfc\\x19V\\x06\\xbc\\xdbp\\xd7*x9!\\x0e\\xf1!\\xcca\\x8d\\xa2\\xe1\\xcf7\\xfdd^.\\xe6\\xb9:?\\xcc\\x16N\\xd9\\t\\x1br1\\xe5\\x94\\xde\\x05\\xa1`6\\x856\\f\\xde\\x16\\xba\\xef\\x9d9\\xa9|\\xf6đ\\xe4\\xd5\\x19\\xe7\\xba\\xf7\\a\\xee\\xf7T\\xddM`\\xf6\\x80\\xd6\\xe3/\\x82_\\x16\\x10\\x96H\\x94\\xc5\\xfe\\x1bkN\\xa9\\xcanWH\\x876\\x13\\xab\\xcc)\\xb1?v`D\\x13\\xcf\\xe7\\xf1\\xbbV\\xb0\\xa9\\r\\xc8\\x0e\\xf6&\\xf1\\x8b\\x82&j\\xef\\x96\\xed)$\\xba(9\\xe9\\xe3\\x82$\\xed\\xfbٶ\\xcd\\x145\\xf4*]cOz\\x8eu=D\\xfe=4NJ\\x91(욗\\x16x\\x12$Le\\xe8|\\xaa\\x11/)\\t\\xaa\\x8e`\\xbf\\x9b\\x1f\\b۔\\x18\\x02e\\xbb\\xdb9Dj\\xf9rO(\\xedJ\\xf0\\x86V\\xa7\\xa5\\xa9'7,5ҍ:\\xf4\\xc9\\xeaU\\xabZ\\\"\\xaa\\xee\\xfd\\xd419\\xb2!7\\x06\\xff7\\xe9\\xd0\\u007f+C\\x9fB\\xeb?\\x8ch\\x8e\\xaf\\x87\\u008f\\xf1\\x94=\\xe1\\xef\\xc4\\x12o\\xa8v\\xea\\xd8\\n\\xb7гT\\x1f|\\xba/OOw\\xb9\\xbcWG=3\\xbbZo\\xc8\\xe8߽\\xdb\\xe5*+\\xf3\\xcf\\xcf?\\xdd\\xef\\xe8\\xef\\xafv\\x0e\\xf8\\r\\xeb\\r\\xfd@J\\xfb\\xe9\\xe7\\x99\\xdb\\v\\xdc\\xe4:Vo\\x1e\\x83\\xec.\\x98\\xc2\\u007f\\xfe\\xc9\\xd0\\xd8\\xcb\\xfa\\xaaw\\xdd\\xd3\\xe2\\x80\\xf7\\xaf\\x03\\xd4hC\\xa6=v\\x81\\x9c._\\x10k\\xcf4\\xe4-&\\x9e\\xccy\\xf5*\\xe7$q\\xf1\\xc3b\\xbba\\\"\\xad\\xf8\\x82\\xe4\\xb6o\\x1e9\\x93\\x8bŧK\\xcc'\\xb7K,ZK\\xebL\\xb5\\xe5Br\\x95V\\xa4\\xd87\\x01ЇҚ\\x9910\\xe0;i\\x8d\\xb8/\\u007fN\\xb8\\xfd\\x82\\xaf\\x8b*\\xca7]\\xed^F%U@z\\xe6\\x1a/\\a\\x93\\xa4\\xb3\\xe7%\\x98\\x88[\\xa0\\xa7\\xd0\\x16\\xa2)!OgOJ\\xbdR\\x02\\x021\\xc3\\x00A{Q\\x8aVE\\x9f\\xa4\\xe6\\x1aJFl:\\x14\\x8c\\x11p\\xf1\\xa2\\xe3'\\x1aB>N\\xfc;ǬB\\xca;\\xa6\\xd5\\x1aB{\\x9a\\xacb\\xf4v\\xb35\\x04J\\xb0\\xe1\\xe2\\xb9\\xfd\\xcb\\xd1\\xf7\\xa3\\x83Vks%\\xe5\\xe5\\x92\\xdc\\xec\\xe7C\\t\\x86)S,瀘cS\\xa9\\x86\\x84\\xa1l%N>Ň\\x9b\\x1b{\\xe9xY\\x19\\x98\\x9c\\xb21\\xd8\\xe5\\n\\xde8\\xa9\\xed\\\"\\u007fʛ\\u007f\\xd1:H\\xa1Ӫ\\xa1\\xa4-\\xc7\\xf8f\\n\\x9fS\\xd3ֽg\\xa6\\x96\\x8fSh\\xed\\xe5\\x8a\\n\\x8f\\xc8ST\\x84Y\\xe6\\xf8)\\x9e\\x1a&\\x145\\xc3\\xff9W_\\xdfQT\\xd9\\xd8\\xfe.\\xf8\\xd4\\xd7+\\x145\\xac\\x1d\\x13BV\\xcd\\x0f\\x14\\x87m\\x15\\x95˖\\x0e;Nm5\\x8e_\\x8b\\xef\\xd6\\u07bf}M\\xab\\\"]i\\xa8i\\b\\x14\\xe9\\xaaD\\x11\\xbb\\xe0\\xaf\\x1bQd\\x91\\xa2b\\xa4L\\xd8\\u007f\\xe6\\x9b\\xd19\\xc5\\x03⬛\\a\\xbc\\xcc9Z\\x93\\x99c\\xf4kj\\x8a\\x84#S\\xfc\\x9d\\xaa\\xade\\xf9\\x91M\\xa8$\\x12O\\x8cz`)\\x8fܳ\\xf3F\\xfd\\xb2\\x8acҮ;\\xc8\\\"\\x06\\x88EYYe\\u007f*K\\\"\\xea\\x00\\xb0ht\\xb9\\xd8\\xf9\\x11\\x05\\x10չ\\xa5:\\x02ޫss-k\\x13\\x0e\\r\\xb1\\x06i\\x90b\\xbb\\x0e\\xad\\xb7\\x1f=\\xeb\\xed_ި\\xbc\\xf1\\xa5r\\x15\\x8e\\xda\\xd1z\\x9d\\xf3X2k\\x80,\\xee\\x8a\\xe2\\x98\\xfa\\x18\\xa4\\xfarM\\xb91^\\xa0\\xf4\\xa1\\x12\\xa5\\xfe\\xe1Qi\\x05Eu\\x99\\x8c㫃\\x05\\xfe\\xa6\\x94/\\x93\\x11\\t\\x12\\v\\x86\\xbd=Ȭ\\xbb\\x81z\\xb7A\\xb4\\\"\\xf5}\\xfay\\xd7?[m\\xcf(\\xc3T\\xdb\\xc5^\\xbbi\\xab\\xfc\\xe5\\xed\\x1f\\xb1\\x117יl:0\\x90)\\xba!\\t>\\xa6\\x12\\u007f\\xdd\\xcdn\\xed\\xd2\\xf9\\xf8\\x87T\\xafH\\xc9LZ\\xba\\xac\\x9b\\xc6\\xfe/\\xab\\xec\\xfd\\x8c%w7林\\t\\xe7]\\xa9\\x1cZ\\x9f#\\x1d\\vr\\xa6'\\xa7E\\xa3\\x12\\x9d\\x92\\t\\xf9\\xf1\\xfa)\\xbc\\x82\\xf5\\x06\\xf9W\\xa1\\u05ee3&\\xcfn\\xb6\\xe2Sw\\xbb\\b*Hv}\\xb92j\\x80\\x18-KZg\\xa8\\x11dF\\xf01\\xcdx\\xa5\\xc4-\\xb9\\xb2;F\\x87%\\xadzE\\x9aL\\x97\\xd2p1Zh\\xc5\\x1d\\xf8\\x06\\xd5W\\xa7$\\xd9V2\\xf7\\xf9\\tr]\\r\\xabna/\\xc9fGl\\xed\\xbd\\a\\xe7\\xa9l<\\xb1\\x86ds\\\"6\\xe3\\xc4\\x10Ϻ\\x1a\\xa0g0\\xcc\\xc8\\xfby\\xe6\\x95\\x1c\\xf3++\\xe0\\xca̟\\xf3\\x180\\x8cT\\xbe\\xd1\\xfb\\x9f\\xde\\xebt\\xee=]\\u007f\\xfc\\xdeTB3C7vc\\xbdf\\x1a\\x93ZZ\\x92\\x93\\x043Y=K\\xc1\\x9d\\xdf\\x19\\x04\\x1d\\xf3\\xf1\\x17\\xa2,\\xbf\\x14\\xaf;\\x05\\x8b>\\x18\\xe9\\x85\\xfe\\xff\\x9f\\xfc\\x8a\\x9f\\x9b\\xe9)O!`\\x8c\\x8f;2\\xe8\\xee\\u007fk~\\x06O\\x98r\\x1d\\xbf\\x93n(\\x9eP\\x15\\xad\\x8a\\xa7\\xe8sꩉ|'\\x9a\\xd5\\xd1V\\xc4\\x1a\\xad\\x8c\\x92\\xab3\\t\\xf3\\x1c,\\xc1F1ؙe\\x9c@5\\x13\\x8a\\xebY5z\\x8d\\x8bT\\xe8\\xa9\\xc0\\x15\\xa3([\\xc4\\r\\xd5\\xc7_\\xbe\\xd8?\\xc5\\xf4KZ\\x00y\\xd6\\x0f\\xfca\\xfb}\\xf9z\\xc4\\xd8m\\xe1\\xd1t\\xb8b\\xdeV\\x01ӣ\\xc3\\xe7ͯ\\xbf\\x94\\xae\\x1b\\x1d\\x1fx\\xb2\\xecI\\t:-\\xe6\\x06\\xc6\\xe2\\xbdQ\\x8eI%UѬ\\x868`\\x00t\\x96\\xebC\\x9ac!b\\x9e\\f\\xe3.\\xe5Ɗ\\xc1\\xb7f\\xa5\\x99\\t9\\t\\xa5\\x195\\x84to\\xcb\\x18¢\\x8e#\\x1bs\\xb7\\xca#\\xf2ܸ\\xc1H\\xcf\\xc0x\\x84\\x9e\\xf6\\xdf\\xd3\\xc2\\x1e\\xa1 \\x8b;t\\xf8\\xa8\\x98\\x9d\\xd6b\\x82\\xa6\\xed.\\xe3\\b\\xb1\\a\\xba`)\\x00\\x1c\\x9b\\xecX\\xa2/\\x1b\\xfc\\xdb\\x147\\x8fT\\xc1\\xf5\\xb7\\xccr,r\\xd9s\\xbd\\xebM;*\\xbb\\x95\\xdd\\xcb|\\x10\\x9fe\\xbb\\xb0O|\\x14\\xee\\x04\\x9b\\xad\\xf9\\xbd:ᴮ\\x9c\\xcc\\xef5\\x13a\\xbe\\xf6K\\x9fH\\xb2om\\xd7\\xca\\xf2t:k\\xd7k\\xa0K,\\xe8~\\xf4\\xfe\\xf9\\xe1\\xdb\\\\Z\\x98\\x9a67j7ٳ\\x17\\u007f>\\xea\\x16\\xd8G\\xa9\\xbe\\x94\\xa7;\\xe7GT\\x85YG\\xea\\xfa\\xa1\\x91H.E\\x142䆷.\\xcd\\xe1D\\x14\\xcc\\xe4\\x90+'sR&!}I\\xa4{\\x91\\xbb\\xfc )\\x13\\x1cA\\xafѻ\\x04\\x1d\\x94s\\xa5AH%C\\xc7:x~˓,ޖ\\xa4\\xf8cWп\\\\\\xaa\\xb0\\xe1\\n\\x94C\\xd0\\xdd\\xd5\\xfe\\xda\\xc0\\xe2\\u007f\\x92Vhr\\xcf\\a\\xac\\xba|\\xbe\\v|Z\\xceg\\x81!\\r\\xcbM\\xc6ˋ\\x13\\x92\\xb1\\x8eԢ\\x83?K2l\\xa5!\\xb4\\xae\\xeb\\xfc\\xb5\\xc2b\\xe9\\xcd-\\x93\\x17bR\\xe0{\\x8dU\\x01\\xc2)P\\xda$\\xefiMΗ\\xff:\\xf5\\xf21\\xf4\\x10`\\x90ArC\\xed\\xebz\\x9bX\\x92\\xe3\\xdd\\v\\xb5}\\xb4&\\xb3\\xf7d\\x12\\xe0/\\xa6\\xfa\\x8a\\xa0Op\\xa5:\\xd5?\\x84FI\\xb2!\\xa389'Ü\\x04\\x1f[\\xc1?\\xe7\\x15\\xfb\\xfa\\u0378\\xd4\\xda\\xd0K4\\x1df \\xa8\\x1e\\xd5q\\x94\\xbe|\\xa0\\xd8u\\xecP\\xda(\\x92\\xe5\\xf4\\xa3\\x1dS푔u\\xd5\\r\\xf3\\x8b\\xb3\\xcbz\\x0e\\xa5x\\xac\\xa8^G\\x89\\xb4vI15۲\\xa7\\x92\\xa7\\xa04ݱ\\xa8tA\\xcd\\x1cJ\\xb2\\xe6\\x80\\x16\\t\\xba,\\xb9\\x1c\\x84h\\x0fh\\xe6\\x89ΩYP\\xba\\xc8Ѵ9~ժ\\xf8\\xcd\\xcf\\x1fU\\xfd\\xc9~\\xea\\xc3TI\\xe5\\xcet\\xb6)\\x1fHRg^\\xe0\\x90[\\xbf\\xb7݊I\\x87\\xef\\xad\\v\\xf9$\\u007f\\xeb<^D\\x1f\\xb7\\x89\\xb3v\\x13\\x8b\\xf1\\x17\\xb1\\xa7\\xa3F\\xe6\\xfe\\x039!\\x1b\\xfcU\\x18%F<\\xbd6\\xe7\\xc0ƥ\\x12\\xce\\xff0\\xa7\\xda\\xc8b\\x80@\\xd1\\rξ\\x9b\\xecb\\xb0\\x9fe@\\xa1-9\\xb5\\xd3\\xc5~gK\\xe5\\xbf\\x1ft\\xb8T\\x8e\\x94\\a\\xe5ra\\xdfa_\\xc1\\xf4\\x16\\x8c\\x993\\xa5b=\\xc4\\\"4\\xe4$\\xab\\xe2\\U00049616\\xe9\\x02\\xe2\\x0e077\\xc8\\xcd\\xd9\\xc8Xr\\xf6l\\x17\\v\\xab\\xf4\\x198\\x9b \\x014\\x89\\xce\\xfc\\bOz\\x97\\v\\u007f\\x80.W\\x18\\xa5s\\t}o(O\\xa8\\xe2\\xa1v(\\x11\\x82\\xef̅\\x9fP\\xde\\xf4\\xcd%\\x1a\\xfctk\\v\\xf0\\x1f\\xe0\\\\\\xbd\\x02X\\x06D\\bm\\xf3\\xed\\xf1\\xe5\\x17W\\xd9\\tj\\x1e\\x88X\\xb8\\xcf+\\xbc\\xa5\\x9e嵯\\x9a\\a9\\xf8\\x02\\x1b\\xd0\\xce\\u007fi\\xc4,\\x16\\x12\\xa1\\x89\\x97`\\xaf*\\xe63\\xf26Q\\x9e\\x90'\\xcc\\xfb\\xc0\\xdd?Έ\\xfc\\xea}^\\xac\\xfa\\x16\\xb0\\xff\\r\\xcf\\xce\\x19\\xdc|%\\xc7\\xce\\x1b\\x8e\\x1c\\xd6\\xfc9Gʽ.\\x1d\\x1d:ښ\\x01\\xd1\\u007f\\xaa%H\\xdb\\x05\\x80C2\\xfep\\v\\xe1\\\"\\xa1\\xa8'\\xda\\xc9\\r\\xe7M\\xf0\\n\\xc5,\\xfar\\xf6\\xc0\\xccggM\\xacP\\xfd^.=ӫ3\\x8bh\\x0eѣ\\xc1K\\x1d\\xde\\xea\\x1aK&}-\\x89\\x98E8\\xac\\x0eF\\v\\x1d\\xe7\\\\Kޗ,\\xfd\\xfb\\xb3\\x16\\xfd˭\\xdf*\\xaf\\xaat7y\\xeak\\xea\\x97\\x17.\\x85\\xae\\xfa\\xa8[\\x10Z{\\xfe\\xa5qw\\xbf\\x91\\xde\\xe4p\\xb4\\xe8\\xd9\\xf9W\\x17w\\xf2\\xffN\\xb6\\x0e\\xffX\\xd1\\xf8\\x1c\\x80?\\xe7Hp\\xf7\\xb2n]\\f\\xaa\\f\\xfb\\xa7\\xac|QEٹ\\r\\xb3y\\x02\\xcd\\xe9E\\xc8Ჵv\\xbb\\x01\\x17\\xd6\\xc6\\x11X\\x89\\xf2%ys$\\x16\\x88TS\\xf0\\xf7@\\xd8\\xf4\\xec\\x13\\xed\\x93p\\xdcY\\xd2#\\xe8y\\xc4q3q\\x12\\x00\\x99T\\\"3?\\x04p\\xba\\xfb\\xad\\xe7\\xed0F\\xcc.#\\xb0\\xefо\\x99]۾\\xb8\\xf01l\\xebM{\\x96̶ko\\xa6\\xad\\xe8H\\xf1$:iu\\x03C\\x83(ل?\\xb5\\xb7\\xf9\\xf9\\xb0\\xce\\xcf\\xf0\\xf5\\\"\\xb0&\\xf9\\xfe\\x11B:o\\x9a\\xf2\\xdc\\xdaQJK\\xfbOB\\xf7\\fR\\x97\\x05\\xa1:\\xad\\\"!\\x91M]\\x03%\\x1c\\xc6;\\x89\\x06\\n̨\\xc1\\xb7\\x10\\x12y96}(\\x00|\\xbb\\xd3!\\xecx\\xf2\\xa4[\\xd8-\\xab\\x92fίVk^\\x96\\xb4\\x8b\\x10\\x83\\x88i2ð\\x84\\xab\\xa3\\xf6\\x18B\\x97\\x14`\\xd4i\\xb6W|C,\\x13\\xa9\\xb7\\xfe\\xed\\xc6o\\x16-N\\xf4\\x05\\xbc\\x1c] Y\\xa0p\\x8c\\x18~\\xb9\\xe0\\xba\\r\\x03~+1\\xb6\\xeb\\v^\\x0e\\x96\\xa5\\x04\\xa8\\xc5#WjĚb\\x8d.\\x14\\xfc;\\xb5\\xf9\\xf4\\xe9\\xcd\\xfd\\xa7\\xcf\\xd4ըT\\xde2p:\\x8f\\xa7T\\xf5\\x9b\\xfef\\x10z\\xa0\\xe7\\xa6ҡ\\x84\\x1c\\xf3>\\xf6j\\x9a\\x96\\xaa\\x151\\xf1߽\\xfb\\u007f\\xe61\\x9f\\xa3S̳\\x1f\\xf59v\\xa0/\\xf5\\xa8\\xe0\\xe8\\x8e\\xd4\\xf8\\x1e+\\xc2Mm\\xcf\\x0e\\x13\\t\\x10\\x8cn\\xb3\\xb2\\xcfCDKSg\\xf3\\x14\\xb5\\xfe.z'\\xea)Ev\\xf0GՈ4Jl\\xb7c\\x1a\\xd1!\\xe6\\x841\\x02\\x18\\x0e\\x94yx\\x16\\x8eu\\xebv\\a\\x8d].\\xfe\\xa8\\x1b);\\x9eQm\\xf0\\xea{$\\x9c\\xa4C\\x10\\xa7\\xe4>\\xf9yJ\\x19ϸ#Р\\x9a\\x8f\\x93\\xff\\x9cB.\\xee\\x1d\\xfc\\x8c\\xcf\\xf2\\x04x:\\xc9\\x05\\xb84B8m-\\x01\\xa7HA\\r\\x8aڭM\\xea\\xef\\x85;\\xf2\\xb8w\\xc8^.va\\xcd\\xf1\\x98`Vp\\x8c\\x89Vn\\xb7.\\xb2\\x83;\\x83sC\\x03>\\x06\\\\\\xc8i\\xcf\\xdev\\xe4\\xf6m\\x83\\u03790\\xdb\\x14\\x9a۞\\x85(V\\x17\\xc2\\xe5\\xa8d\\xb8\\xb9\\x04\\x00\\xed\\x92\\x00\\x8e\\x02IS\\x87\\xfe&:\\\\`\\xd6K\\x90\\xa3\\xe7\\xd6ԟ\\xb6\\xc9L\\xc7\\xf5\\xd6͙;MjU\\x9d&}\\xb7H\\xd6\\xd5\\xe6'\\x19\\x02\\x92\\x12\\x8a\\x10\\xf8A\\x89\\xe5\\t\\x12~\\r\\xd1?\\xa8\\xf2=\\x9azS\\x17\\xd1!\\xd5\\x11\\x1eJN\\x06T\\\\\\xebl\\xa6\\xbb\\x15\\x88\\xd2\\x1a\\x91\\xe0\\x10\\xcb\\x05\\xeb\\xfa\\xaa7\\xc5\\xee\\x0e\\xdf0\\xc1\\xd5Ks\\xfef3\\xc6\\xf7N\\t\\x8d5F\\x16\\x9f\\xef\\xb5\\xe3\\xfc\\v\\xfd\\xd3\\xf4V\\xf1a5\\xcf\\xcb\\x117+ \\xba\\xebûq\\xb7\\xf208Le\\xa1\\x12\\xf0\\x18w\\xb0W\\xc5\\u007f;~?\\x8c\\xe0!\\xc1\\xf1oe\\xdb}\\x8f\\xffY\\xe2->R\\x9d\\x93b\\x97\\xa0\\xe4l4\\xdaV\\x1d\\xae\\xd37\\xba͂\\xf6\\x83\\xd6/\\x0f\\xbc$\\xf8\\xfda\\xe1\\xb5\\x1c\\xba1d\\xe3\\xc3E<\\xaf\\xc0\\xf1l\\x19^X\\xf1_\\xdf\\xef\\x87\\xc5x\\\"|\\x02`\\xe6Zp\\xe4i\\xd2.9\\xca\\xc5\\xff,[a\\x8c\\x9b\\xc2\\xd5W\\xdc\\xd3JP\\xf9)\\xa5\\xf8\\xc3\\x06}\\x9f\\x03\\xe5\\xfc\\xf9\\xb5L\\xde\\xf5\\xa4\\x1f\\xbd\\x84\\x15\\xb2\\x00D\\x8e{:̛\\xd3'\\xfc\\xe5:\\xbf\\xa9:\\xb0~\\x99\\xaa\\x9a\\t\\xf5\\x11O\\x0fA4TCa(\\xe68\\xd3\\xf50Tc[\\x12a\\x89\\x10\\xc7\\x1e\\xe0@$\\x04\\x17\\x1d\\xe8v\\a=\\xaa\\xf5\\xbb\\b[I\\x84\\x9d\\x1b\\xf4\\xa7\\xa7%\\xf4ǍcA\\xb2zJ\\xaf\\n<{~l\\xe7[i\\xd7z\\u007f-<\\x00\\x81(E\\t\\t\\\\\\x80\\x86\\x12\\x84\\x86\\xb5#\\xea\\xb8i\\xf4\\xa1\\x82n\\xe1ֵ\\xedJ\\xe5\\x88}{\\xa6\\xed\\x96& !Q\\xe4\\xa7b\\xf9\\x0e\\x0e\\xa7\\x8b\\x01\\xf7k\\xb5\\u007f\\xc3\\v-\\xd7\\xd7bx%?z3\\xef\\x1e$$,v\\xb2\\xfb\\xf0\\xfc\\x950\\x93\\x1aܜ\\xdc\\x1cL=\\xcbH8\\x9c\\x01G\\xa8|\\x1d\\x1a\\x18_\\x1a\\xb5\\x12\\x88\\xa0]\\xe6\\\"{\\xb7\\\\\\xd9m\\xf7\\rK\\x8f֦e\\xd7\\xf2\\xf3\\x816:\\xdd0\\x18\\xba\\xd6Wp\\x8f=\\x80~D|\\x01\\xedL\\xff\\xa8\\x111k$\\x01\\xb1\\xd9\\xfb\\xce\\xfa5\\x06\\xf5!\\x8c\\xec;\\xcb\\xf8EhFb\\x9f\\xacx6N\\xa0\\xb9\\x8eH\\xf7q\\x9b\\xc4-Y\\xf6\\xc4)\\b\\x96\\xf9\\x8f\\xa6\\x93\\x03e\\x1c- \\x8cD\\xa2\\xaaM\\\"ߵ\\x90l\\xf7R`j\\v\\x95\\xf3\\xbb\\xdfvst\\x1d\\x83u\\x1dq\\xf04\\xf7\\xe6>6\\xech]\\xc1< \\f\\xe3X\\xfa\\xef\\xcfM\\x83\\u007f\\xa4\\xecb ҆\\xf75C0I\\x82!h\\x9b\\xac \\xd9%\\xea\\x1e\\x93u\\\"+YO\\x1b\\x86Ŗ\\x89\\x89\\xd3\\xdec\\xc8\\x05~\\xd6\\xe6?\\xfe^W5\\xd1\\x02\\xc4\\vg\\xcd9Y\\xc6\\xff^\\xe0d\\xb9\\xb8\\x16\\\";/\\x9a\\xf68\\xff\\tt+Ȥ\\nS\\x94\\x03\\xd5\\x1f!\\xfbә\\xf0Ԯ\\xb3\\xc9r\\xf0\\xfe1\\xd4\\r\\xf9B3\\xa8N\\xff\\xba\\u007f\\x01Ju\\xe5\\x93\\xf7\\x87}@\\xd1A(\\xebx\\x80\\r\\xcf\\x0f\\x1a\\xe8\\xaa\\x17\\xfbz\\xf2\\x1c\\xe0\\xce\\\"\\xf4M8\\xbc\\v\\v4\\xdf_\\xe9\\xbbUH0\\xde\\xea\\xbb\\xf2}mV\\xde\\x1f\\xe1+32\\xf2\\xb2\\xc8+\\xc3uˌQdK5G\\x1d\\xbfƾ\\x81\\x92\\xf2\\xc7,\\x15\\xd8a\\xcdd7\\x194ipUilPg_\\xdfx\\xfb\\x8e\\xb3\\xdf\\x1e:\\xdeo|\\x04d\\x9b\\xf1\\x14zJ2\\xb2\\xc0\\xe7\\xdf\\xfb\\xa1\\xa4!٠x\\x18\\x1b\\xb1\\x98k5\\xbd\\xd9\\xd0\\aOr\\xcc\\xd96\\x04\\tG\\x83\\xc6\\xd5>:@\\xa9\\xa9\\xb3>\\xc8_\\x16\\xb0\\xd3\\xef\\xadš\\xb7\\xecw)\\xfe6%\\xfe\\xc3\\xd9z\\xfc\\xab7D\\xeeS.\\xf1M[\\a/\\xa5\\xa4\\a\\xd72\\xfd\\xc4#\\fC\\x17\\x89\\xe5\\xf8k\\xb1s\\x01ȟ\\x11Bf\\ue4f8%\\xf6o\\xacH}fs浮لt% \\xf5\\x89;P(:\\xbfy\\x14\\x01T=\\xb2\\x8c\\x11bi\\xfd\\xc7\\xc1.RqK]\\xec\\xf1Aku\\xc1\\x9f\\x952\\x88橚1\\xf7\\xf0\\\\\\xe5\\xf6\\xd0 Y#\\x17\\xbd\\x8e\\xb4JZ\\x91ed2\\x87\\xcc\\xe7\\xeb\\xf2\\xcf˗\\xed\\xf5:ʥ\\xba\\x94\\x13##\\xc9x\\xf6\\xd2q\\xb5\\x9a[\\xa8\\xfce4\\xfdX\\x99:=\\xa7\\xe3\\xee\\xf9\\xe9|\\\\=\\xdc\\x0f\\xc3\\xf9\\xfaB\\xb0\\xf9\\xb0Q\\x83\\xab\\xbf\\x9c\\x02\\x16K]?;=\\xa7L},}t\\x06#ș\\xa9<>5ѯ&I\\x98$\\xac\\xbd\\x1d\\x1dWf\\x069\\xc3\\xe7žJ\\x89\\x1c\\xfb\\xfd\\xf7\\xdaȔW\\xb1\\x89\\\\\\x12\\x89\\vTH\\x92\\xb2\\xb4\\xc0B\\x842q\\v\\xf2}\\r\\x8a\\xfe(\\x1c\\x81@&Ex\\x96O.\\x8d\\x8d\\\"\\xc0\\xc9\\xfe\\x04\\x1c\\xb6[\\x98\\xb2\\xb9\\x12\\x86\\xf2\\x96Ć\\xc5\\xe9\\xf7c\\xd0\\x1d\\b\\x16\\xcfd\\xe2\\xb1\\x18e\\xb7\\x9dn\\xefVb\\xb00\\x8cEnQ\\xc40\\f(\\x92\\xc5\\xcf\\xdd\\xd6QM\\t\\x97\\xdfK\\x91\\x1d\\x184\\xd9\\xd0,\\xa21vF\\x1cȃ\\xe0\\xca\\xcd)\\xa2MX\\x1c\\xc1?\\x86D\\x88\\x8c\\x9bl\\xeb\\xf0D\\x00NX\\xd8\\x0f\\xf6\\xe5&\\xd4ge2t\\xe4D\\xb8p\\x9f\\u007f\\x19\\x80ǘ\\xfc\\xf00\\x8cc6/\\x1d\\xcd\\x1e]\\xda\\xcc\\xc4\\x01;\\x96\\x8c\\xf0~&\\f\\x06\\xb8k\\x8d~8\\x87#\\xc1:\\x10\\xf7;\\xb2x;\\x8b\\xf6p\\xd3;\\x1e\\xf5\\x84\\xe60\\xeb\\n\\xc0\\x00;<\\x06\\xb3\\x9a%!Jث0\\x18U\\xf8}|\\x1d\\x1e\\xc6\\xe3g\\x9e\\x9c\\x8b`\\xa4\\x17\\x99e-\\x88\\xde.\\xb5\\xf1\\x80\\xf5\\xcaÚ\\x13T\\u07bbM\\x0fi\\xac\\xed\\x97\\x0e\\xd6\\x1e`\\x05\\xaa\\xefgԂ\\xa8~\\xf9\\xfcH\\xd8\\xe4px\\xdeH\\xf2\\xe8\\xa2_\\xb2oIn\\x85\\xd4\\u07bcɴ\\xbcx@r\\xebo\\xd1kyk\\x85?49\\xe3\\v\\x97\\x1f\\x82\\xcfS\\x9a\\xb8f\\\"\\x13\\x88\\x965\\xa1\\xac\\x18i\\xf3\\x9aj\\xc2\\xf9\\xa3X\\v\\xb1\\f\\\"\\b\\xd1b\\xe2֪\\x1b\\x98D3\\xe8\\xbcƟI\\xb4ؼ&\\x98\\x8d72\\x0f\\x90\\x91\\xf3#\\x1b\\xff\\xdf\\xf8C\\xe6\\xec=\\xa6\\xa0\\vOQ\\xe0<N\\x1ev\\xb4\\a\\xbe\\xb1*\\x86\\xb0\\xc2\\xf7\\xd3\\xf3l\\x06|\\xf2]\\x01_%\\x91\\xb6\\xce,\\xc8xr\\xc1\\x14\\xb4gv,\\x9a\\xd2-0\\x84\\xbbF\\xf6z:\\xa6\\xb5G(dFBf4\\xe7\\x88#\\xae~\\xfb\\xf7b\\xdf\\x1b\\xab\\x8b\\xe3Zv\\xef>9\\xfa\\xe9\\xabo\\xf8\\x8a\\xbf\\xdf^\\xaf\\xc8?\\xc2Ɉ\\xe6ʌ\\x8a\\x88v\\u007f\\x02Q\\xed\\xc9k\\x92\\xec\\xaa\\xff\\xf2˒\\xf3.?\\xe9\\xf9\\x8c۷\\xed\\xbb\\xc0\\u05ca.\\x8a\\xac\\xb4\\xe0\\x95Q\\xba~.j\\x99t\\xfa\\xfa,\\xdag\\xef[\\xb4#\\x90\\aR\\xe6r)\\x91A\\x1b\\xa9\\xb5bZ\\xf4\\xe0\\xfb\\x89\\x89\\x95\\xeb\\xe6e\\x13\\xefG\\xea\\xe4GdW\\x95\\r\\xad\\xc2rI\\x10\\xac\\x01\\xd3w\\x95U\\x96P\\x84\\t\\xd4^\\xaam\\x99B\\xe9e/\\xc01\\xe2\\x17\\x868\\xdb&\\xb1\\x8f\\xa6\\xdbلV`\\x86\\x90\\a\\xeaD;\\x1f`\\x8b\\xb2\\xbe\\xa7\\xfa\\xb4\\xf3\\xc4B)\\r\\x9e\\xa8\\xa9\\xf9\\x8fE\\xc3֞\\xeb뺉뜊\\x00L\\x1d\\xab5-\\x80\\xb3m\\xf6\\xe0X\\xacߩ\\xa1\\x04\\xd4\\x01M\\xcb\\xca\\x1c\\xba1\\xc7U\\xb1\\xbe \\xd6\\x10\\xbc{\\xf6\\xec\\xdd\\x05\\xeb\\x8dzqR-\\x13\\xc9F\\x97\\x15M\\xe56\\x1d?\\xa1\\xfbk\\x0f7\\x15ݴ6GMإ\\x914[\\xf0\\xd7Y\\x12\\xb7\\xc4{\\xe2/P>\\xd6*\\x85\\xa5V\\x87c9'R\\x98\\xe8\\xca\\xe9\\x0f\\xaa\\f\\xd8%\\x13\\xd5J\\xd7\\x11\\x89r\\xe2N\\xff\\xe0\\bJ6\\xa9\\x92a\\xf0\\xed\\xf1\\x8c\\x05\\xf1|\\xbb\\x1d\\x195\\x18\\xf5\\xd5\\x00\\x95\\xc3\\xeeh\\x8c\\xff\\xae?\\xe94Iݜ\\xcb\\xcf\\x1d;q\\x1f\\bK)\\xa2H\\xe6\\xd7\\x1b7v\\xe52\\x8c\\xb3f\\xe7$w\\x19\\x96\\xe1\\\"\\x18=m\\xf5=7\\x0e\\xcey\\x00N\\x96\\xfcKj2\\x0fyYb\\x1a\\xfb<\\x1aS\\\"٧\\xba[Z\\x99\\tJ\\xcb\\xe4\\r\\xe5|y\\xe9s.\\xb5\\xfa\\xbf\\xae\\xcc\\xe0P\\xd9q\\xf2\\xa2\\x8f\\xec\\x18\\x9a\\x99?w\\xe5-\\xdd(2\\xaa\\xbb\\xb5r._7E\\xf6\\xc7E\\xe4\\xe3\\xb2\\xd0\\xc9\\xe6\\xd4绩\\xdc\\xe7\\xa5r\\xbe\\x82C\\x8eu(\\xbb$7\\xa0\\xe6\\xe6\\xaf\\xccE\\xf3\\xb6\\xa9Y\\x12>\\xd2{v\\xde-ص\\x11\\xd2\\xfb\\xc5\\xdc[0d\\xefrc\\x1e\\x84O\\x94\\xd8\\xc3ك\\x01\\xfb\\x12\\xf6\\x05\\f\\xb25\\xa3x\\x05,ĸ\\xbb\\xec\\x10|k\\xde\\xd9^Ľe\\xb5?\\x01\\xc2Ro\\x9bW$/mn\\x86n\\xac\\x94s 6ÑHڛlС\\xcfw\\xa0\\xe4\\xbdnG\\xf5ݥ\\x8d\\x85ɖ\\xc6\\xeaF\\x85\\xa5{\\xf2>CT`VhD\\xb5\\xdb\\x01\\xfa\\x1b\\x1b\\xfbH]?(&2\\x1c2<Z\\x8e\\x10Z\\xd7>q\\x93\\b\\xfaw(ݓ\\x91>0\\xe0\\xdb\\xf0Л\\x18C\\x85:ӓm\\x91\\x80\\x18\\x92'\\xe2\\x1eJa#\\xa2x\\x96T\\x80\\n><9Sݓ#ڞ,\\xd1\\xe6\\xf0'\\xf5\\xc8T\\xfa\\xed<):c\\x86\\x14\\x15^\\xe7\\xa2Vؔ\\xf3\\u007f\\xb0\\x93\\x11e\\t\\x92\\xdb4\\u007f\\xc6\\xf6S\\xd8T\\xc9\\xd7\\x05)\\xe1\\x026\\x13\\xfe_F\\x81o\\x8a\\x0e\\x87+\\xf1ȟ\\x14\\xfbqpBE>\\x16\\x9f\\x8f̓\\x80\\xafY\\xb2\\xe1xQM\\xe6\\xc2;¬\\x1cs\\x02f\\xda\\xec\\xd5\\xf9|;\\xe5O\\x04\\xaf<\\x1c^\\xf4&\\xd0\\x1d{\\x19\\xb3\\xc5\\xe7\\xb1,\\xe1\\x9d̅5E\\xc76.\\x9d\\x86\\x01\\xc3v|\\xf4\\xb1@\\xed3\\xb1\\xaeu\\xcfb,\\x0e\\x83\\xc4\\xe1\\xf0\\x18LI\\t\\x06\\x83\\xc7\\xc5!\\x18\\x1cv\\xf1\\x1e\\f>A\\x17\\xa1\\xd7\\xd9\\xf5\\xe5\\xe0\\xb9r-\\x81\\b\\x01[L`kvk \\x06\\a8,\\x91N\\x8cin,\\xca\\xf7\\xe7\\x85\\u007fj\\x81c\\x9f\\xfe\\xcd:\\xad,\\x90ͤG\\xbf\\xe1\\x16\\x9f\\xc1\\xea@`\\x0f\\x03p\\u007f\\x98\\xe3\\xb4*'\\x17\\U000ae608\\xe4Ec\\x0e\\xbf\\x03\\xea\\x91P\\xeal\\xad\\xeeG\\xaf~\\xcb\\xe4~q\\x80.[\\nK\\xd5\\x1e NS\\x93+P7\\x88\\f\\x15\\x1f\\x03\\xb7'\\xcf\\xe7N-D\\xd7I\\xbc\\xee]B\\x90\\x94\\xdb\\xf9\\xe8P_\\xdfSI\\xbd\\xf4J\\xace\\xfe\\b\\x03\\x91n f\\f\\x8d^\\x17>\\xcan\\xcc\\xf7Y~%\\x15H8\\xc30\\x15\\xa1A\\xd8\\xe7\\xec$\\xd9.\\x94\\xb5\\xe4\\xfd\\x81\\x88E\\x05\\xbbBu\\x13\\xb3\\xb0;\\xe3\\xa7\\xe5\\xe9\\x84\\xde\\x14\\xd0\\xd6\\x03\\xf2\\x10)\\xbb\\x06\\xc3k\\x18\\x16sԄ\\x8f\\x1c\\r\\x15рɦ`\\xee\\xdc\\xcfY@\\x01־\\xf3\\x1f{\\x88\\xaa\\x8a\\x9a\\x81s\\xe0\\xb1\\x12\\xbd?\\n\\x90`\\xf1UxjF\\x95*ĞA\\xf63Ȩ2\\xe5\\x00\\xf3\\xa9\\xbapg.wz\\xec\\xd4\\x1d\\xc1;\\xd2\\x1eO\\xe7\\xe6\\xeeT\\x17n\\x06iAd\\xc2\\auA\\xfd\\x8a\\xd39biU\\xe1'b\\x95\\xca\\xc0A\\x85r傣\\xd85\\xb1\\n%\\xc8\\xfd\\xa5\\xa6\\xaa\\x8b\\x11\\xf7\\xf7dg\\xa3\\x93\\xfc\\xbd\\x1b)\\xb6\\u007f\\xd7xq\\xd6Uu\\x8a1\\xc7n\\xf7\\xb9t\\xab\\xe2\\xb6`\\xaa}\\x0e㔫J\\x93\\xf22<\\x9c\\x19\\x80\\vl\\xc7\\x101큸\\x00\\xe6tt\\x00[{\\a\\x98=\\xbe\\xe1e\\x97\\x15\\x87i\\xa3\\xb4\\xc3\\xd2w\\xa3G\\x01\\xbe\\xe1\\xf3\\xc2}\\xa5\\x9b\\xfa\\xdc}I\\xdc\\x00\\x021`t4\\x80\\b\\x9f!%\\x8d\\x16Q\\xa9E\\xa3I\\xd4b\\x03\\x06\\xccԍ\\x9f\\xfb0\\xc1'\\v\\xbc\\x03N\\x85\\xf9hgB\\x90\\x0e\\x82@\\x05\\xf15\\xb1\\xb6ړu[U\\xd3JIU\\xf7\\x0e(6s\\\"\\x8d7\\xb4o5\\xb1|!\\x1bjG{5x\\rP\\x19\\xdfL\\x82\\x9a*\\x1c\\xac\\xafO)\\xac\\xa2\\t\\\"5\\x17*ѲŜ\\xc5-\\x91\\xe8\\xa05\\xa2\\xe2\\xb8\\x15\\xf2\\x8a\\b\\xeb \\xda\\x129'\\xa8\\f\\xd5<AG\\xd1\\ta9\\xf6k\\xc0$k\\xb2=_Ad\\xfa\\x88~\\xfe\\x11^\\xe5\\xa1\\xdaQ\\xef\\x90}\\xd6\\xd8\\x15\\a\\xca9a\\n\\x01\\x8f\\xde\\x18]\\x18MQbw3\\xd6\\xd03\\x8f;7,r\\x1a31\\xdf\\x1a\\xb3ږ\\xecu\\x1e\\xcfܞ1tQ\\x98\\x86\\x8e\\x8bC\\x19\\xc5u\\x1d#\\x99\\xed'.j\\x04\\xbe\\xfa\\x0e\\r\\a\\xf0c\\x8a\\xd1\\xe3s\\x1f\\xdd\\v\\xa1\\xe4wZR\\xa7C\\xfb]\\\"<\\xef\\x0e,O\\xf6\\xc1\\xc2\\xe5\\x81S\\x03\\x1b˂\\xa9F\\xcdSn\\xf41\\xea\\xecA\\vf\\xe8\\xaf7\\xa9\\x85\\xa3%\\xf0\\xe8\\x94\\v\\xc6^o\\xd2\\xd4i+\\xaf,\\xba\\xb2\\xb5\\xbd}\\xabb_y2\\x897i\\xbcަ\\xdeW@ʢ\\xab\\xc8\\xdb\\xf9\\fܷ\\xee<\\x9d.\\x9b\\x04\\x13K\\x0f\\xe1~I\\x8a\\x8e\\x8c\\x8aVE~\\xa8<\\xecH\\xbfmb\\\"\\xe2ݳl\\x82n\\xdaWua^\\xd4&B\\xb7ҝE\\xd3\\xe8\\anz\\xc3[\\xbeT^\\xff\\xee\\xfaeK\\x16.;\\x189\\xa8\\xbaz\\xa0\\xe4C\\x12J{g\\xf1k\\xf8\\xb3@\\x87\\x1e϶\\x89\\xfbU\\xa9w\\x82S\\xac\\xfc\\xaa\\xd3G\\x99Bt\\xfa\\x12S\\xb8\\x0e陷\\xe4\\xe6\\x1a\\xb5\\x1a\\xcd\\xc5\\xe3L\\x04\\xb4kIl\\xa2c\\xa37\\xd5\\\\_gb\\xb2\\xcc\\xde:\\u007f\\x851(\\xb9\\xb6\\x18\\xa4W}\\xa5\\x14;Q\\b\\xf8ˣu\\x18\\x1c\\x0e\\xc3\\xd3\\xcb+\\xcd\\x1d\\xff\\x8b\\x15Eq\\x18\\xdcgܷ)o\\x16e\\b\\x16\\x8d)\\xbc\\vr\\x14ͬ\\xe6\\x1cMG1\\xb6\\xa8\\xc0[\\x91\\x93\\xc2J\\x11f8\\xd9ߧ\\x10\\xf3\\xe5\\xe2G\\x80\\x03\\xdd+\\xf8\\xac?\\b\\xf1[\\xbeq\\x17\\xa4?r\\xf9\\xe2Lз~\\xfa\\xd9k\\\\|,\\xbb\\x00k\\xc1\\xed\\xc4E\\\"\\x99a\\xe8\\x8f~\\\\\\xdcU\\xae\\x0e_\\x19\\xd9PhV\\\"x\\xe6\\xc62\\x9dG\\x9d\\xd4=\\xa3t_t\\x98\\\\\\xf3\\xbc\\x91H\\u007f3i\\xc1f\\xcc\\xfe۴\\x9a\\xcd+\\xf3\\xdbX\\xc6\\xc4#\\x98`\\x1c\\xd7\\xef|>\\x82\\xf7ccu͏\\xa7ma\\xc7\\xe2\\xafq\\x05\\x17++\\x06\\xf10`]\\xebHr\\xe4\\x97-\\xb82\\xb5=\\x95\\u007f\\xfc\\xb1gmT3\\xe1\\x92\\xfc\\xf7MS\\x9a\\xff\\\"?}[Kh\\x8e\\xba\\xd0\\xf4\\x94\\xfcW\\xf3Y\\x8f\\xdf\\xe5 J\\xda\\x10\\xfd \\xdeH\\xf5}\\xf5\\x8a\\xe7\\xce)\\xa5\\xf8\\xeaq\\xbdu\\\\\\xc9\\xf2I\\x02\\\\a\\x1b)\\xb1\\xce\\xd3\\xd1\\xc4\\xdd\\xed\\x013܅:ڕ\\xcb\\xebA\\x87\\x96.kn\\xa6\\xad\\x15\\xb5\\xe6\\x87\\x04\\xbfz2d\\xa6\\xd4b\\xc3\\x02\\xedD\\f+<E\\xa3\\xfc\\x03\\xee\\x81\\xe97\\x92\\x19yȰ\\xa0\\b\\xfbMTǐ\\x93kŞ\\xfc\\xae\\xf7\\xe2]\\xea5\\xb25\\xbd\\xbc\\x90\\f\\xcb\\u007f\\t$\\xc1b\\xba\\xe78*\\xa3~\\xdaC\\xfb,\\xe4z\\x9fD\\a\\xaeΐbR\\x9f\\xa6\\xc0\\xdd㠠\\xee+1\\x06\\x93\\xdf\\xf6zi\\x02\\xd5K\\x1aŬj\\xe0\\xe73\\xbd\\x90\\u007fF\\x10\\xea\\xae\\xc27\\xad\\xf9\\xa67\\xe3\\xcb\\x1e\\xb1}\\x8c\\xde`\\xf4\\x9f\\xbd\\x99\\x994\\x1fZ\\x19\\xa12\\x19\\x1f\\x16,\\xbb\\x99\\x8b\\xb4\\x97M\\x91\\x058G\\xff\\x87\\x85R6\\xa5\\xec%:(\\xfe\\t\\xed\\x80x\\xaa\\xc0\\x88\\x8d\\xa2\\x0e\\x8a2\\xf6-m\\xf5\\xec͉\\xca\\r3\\xdeܔsQ\\xfe\\xe7\\xed\\x18\\xb9\\xcc\\xcc\\x1f\\xba7e\\xc1a\\xc4\\x1e(h\\xa71,\\xf7\\xeb\\x13h\\xaf\\xa7u\\xe9\\xbe\\f\\xff\\\"\\xf9ŜM\\xa9?\\xfa\\x1a\\xd0\\xfbz-u\\xad<Yh\\xd7\\xfc{(Q\\xa4\\\\2\\x970\\xf1\\xd0\\u007f,S\\xac\\x8d?\\x17\\xc2x\\b\\xf2\\xff\\\\!y\\x0f\\x8c\\x06\\xc3!6\\xd62\\x04y\\x98\\x83`!\\n\\xd5<!u\\x83\\xb7\\xb5.W\\xe7\\xc6\\xc6\\x18膘X\\xee\\xefU\\xc4\\u007f\\xfd\\x05ڎ\\xb4cR0\\xa0\\x84\\x1b\\xbb\\xfc\\x9cC\\xd7\\xdbB\\xe6\\x87a\\x15\\n26\\x1b\\xa2\\xb3\\x1ba\\t\\xeb\\xe1C\\x96\\x84\\xb2\\xe7\\xd4~\\xed\\xbeB\\f\\x0e/\\xbd\\xcb\\xc4\\xe2\\xfd\\v\\x85s~k)VK\\xf3\\xafeY\\xa5^\\x98\\xf7?\\x811r)\\x95i\\x10B#@<Zu\\x00B(8D-\\x98\\xa6z\\v\\x92\\xa9\\xe4\\vOn\\x1e\\x1c\\x18X\\xb5v\\xf6Uq\\xcb\\x0fn>\\xb9\\xd0\\x19K\\x81\\xcd\\xd3g\\x11\\xc7y0\\a4\\xf9{z\\xb8\\xa8\\xe8\\xe5Nfi\\xe0j\\\\\\x0f\\xd0\\xfa\\xb3\\x8bB\\xdf,y3ֳxl\\xa0\\xff4\\x04\\x81\\xe4\\xe2\\xd7\\xff\\xb3\\xd5\\x06u\\xe4\\xff\\xaf\\x93\\x81\\x15ljG\\x9b\\xa4\\r\\x8e\\x03\\xe6W\\xe6T\\xce\\x06Ix\\x12\\xe0\\xc9\\r\\x02\\xf9\\xd1\\xd7\\nO\\x04?\\u007f4:*\\x98Fi\\x9a\\xe9\\xb1\\xf5r\\x9eP\\x88\\xa7\\x8b\\x8aZ\\xe8\\x94,\\xc6Z\\x01\\x89\\xa1\\xbd%\\xf0lȓk\\x11\\xa2\\xe0\\\"\\xafv\\x80K\\xf6\\xea\\u007fƯ\\xf58\\x10\\xb1S[nj-\\xfeNlP3\\xd19\\xf3\\xaf\\xbag\\xaf\\x86kb\\xf7Ǔi%֯\\xaeO\\xfc\\xbd\\xcdj:\\xf1R\\xc1\\xa8\\x92v\\xa8\\x05\\x95\\xc1T\\n^\\xd90lBƸ{\\xed\\x13\\t\\xd6@\\x9cWق\\xb5PY\\r\\xf7\\xc7\\xe0\\x1a5\\\"\\x9f\\xceD\\xeb\\xceg\\x9b\\x00\\xf7F+\\xcc-Ԏ\\x98\\x9bo\\xed\\xa0\\xe1q\\xc2\\x1a\\xfd'\\x8e\\x00\\xbc\\x0fq\\xe1(\\xc1\\x92w\\x039\\x88\\xb9\\xeb\\rsJ.F\\x86\\x87\\x91\\xb4\\x8a\\x04Au\\xa4\\xc8\\xe7\\xc8S\\xd6=\\xde\\xe9ꦚӪ#\\x87\\xd0\\x11\\xe9\\x04\\xc6\\xf0\\x80\\x15\\xf5\\xe5o\\xba]\\x99C3\\x80C\\xb2\\xc8<\\xb3Rw\\xb7\\xa5\\xcb>8\\x00\\x1f\\xf6\\xee\\xf0\\x967f\\xe3R\\x9e˫\\x9a\\xbf\\x02\\xd6QC\\x04\\x15<\\x98\\x9a\\xe0\\xa5\\xff5\\b\\x8b\\xc3RٍtT\\xdc\\t\\xd8f\\xcchH_vr-mx#.J\\xe8\\xcc\\xf7$\\xd7d\\x86\\x80\\x16\\x0fF\\x81\\x1f\\u007f\\xeaC>\\xd4\\xe2\\xd4ty\\x12e1 u\\x83=\\xd7)L$\\xe6}\\xca達\\x81\\xd3Ͽ:p\\xc0\\xebOo)\\x18=&\\x9e\\x1d\\xf2=UY\\xa4\\u07bb\\xd2\\x03DK\\xa5x\\xd9\\xf1Mo\\xeck\\a\\x894L\\xca#YO\\xb6\\xf89c\\x9d\\xecY\\xa7.\\xcbL\\xec\\xe0Kk>\\xab\\v\\xb6\\xef\\x97\\xcbe\\xde^w\\xa7G\\x10d\\xe0\\xbbi\\xb5\\x91\\xa9\\xbe\\xf9\\u0094\\xd7cbM\\xc1\\x86\\xa1\\xc0\\xa1\\xa5\\x05\\xa8\\xc9\\xde\\xce2\\xf1l\\r!i\\xa2\\xec?J\\xe1\\xe5\\xcb\\xe1\\x8f:\\xa5bu\\x94@\\xb5{\\n\\t\\x8eq\\xb3Q\\xf8\\xaf\\x98\\x18\\x98\\x94\\\"\\x1e\\xd9.\\xdd.̨\\xdan\\x9dh\\xcf\\xe1\\x03\\x90\\a\\xaaV\\xc4U\\xaba\\x1f\\xd8V\\x9cB\\xa9\\x87\\xd5gQ\\x12(R\\x058:iHU\\bR\\b\\x83V7\\xeaָP;:\\n\\x96\\xb6\\x0e\\xa0\\xf9\\xad\\v\\xbf$2f\\x867\\xaf\\x96\\x8e\\xf45\\xebM\\xa8\\xcaB\\x10\\xca\\xd4\\xdf@\\xddk}\\xff̜6>+\\x1c\\xfb\\x99R\\x86\\x89\\xeb.x\\xc9\\xe4`\\x84ұa\\xcb\\ve\\xe43\\x16fe\\xb5$<\\xac\\x8a\\x01s\\xf0\\x83u\\x96\\xc9\\xe5\\x89\\x1brn1Gb\\xf9d\\x13\\xb3\\xaf.\\u070fv05\\xe8^\\x1a\\xf6 \\xcd/\\xa5h\\xd9\\xf6e\\xdd[AH\\x17\\x1a\\xe1\\xdf|\\x1a\\u07be\\xa1yL\\x92\\xb5\\x17\\xa7\\xde\\xdb\\x05\\\\1\\xbe_\\xc7]\\xa1y\\x93\\xde;\\x9b\\xed[U% h\\x0f\\x9f\\b\\x15\\xe5\\xe7Ef\\xbe\\xde\\x10\\x90\\xff\\xfc\\xfc\\xa9\\xf9\\x9b\\xd6\\xfd\\x19\\xbcoF\\xc6\\xe9d\\xce\\xe6\\xd8\\xf5 \\x80*\\x8698Uc΄[p\\xbb\\xe2\\xd6%\\x9fz\\xe1{\\xf3\\xc65\\x00\\r\\xfb\\x03\\xa0\\x03B\\xad\\xb7\\xdf.'I\\xf6PvAw\\xba\\b\\xac\\xee\\x82є\\x94\\xb3\\xca`1M\\x82\\u05ed{W$\\x8d\\xceMoc}\\xb4\\xb4\\xe8\\xe8\\xe9\\xf59\\xbc\\x00\\xde\\xeeյ1e\\xab^\\x94ġ6i\\xe4V\\x96\\xa5\\x01X\\xa0\\xde#\\x87\\bx\\xaf\\xac\\a\\xaf\\x01\\x0el\\x93\\xe4\\xa7\\xc4r\\ti\\x84\\x15\\aW]\\xb9|oeDJD\\x92=\\x85\\x94}\\xbdt\\xd3\\xd2Z|h\\x8aڜZ\\x05\\xdd{\\xc04\\x93\\xd9\\xcf&\\xa5$\\xd9#\\\"RV\\u07bb|e\\x95*{\\x1b3\\xdb\\xc0\\xef\\xaaV\\x9bV]\\xb9{eedƅ\\x80.nݏ_\\x04|\\xf1c\\x1d\\xb7+\\xe0Bd\\xc6J~\\x84UjSu\\x97\\x81\\x9f\\xcd\\xdc\\xd68\\xc0O\\xe1\\xebf\\xa8\\xac\\xb7\\xb2\\xbd\\xb2\\xf0\\x04H\\xbe\\xa7{\\xe1G\\x85\\v0\\xf5f\\x1d\\xa0\\xa7\\x05\\x1d\\xf4\\xaa\\x9f\\xddQ\\xc5\\xf7\\x82\\xb7\\x06*:\\x92r\\x82\\xc3E4\\xf8\\xa09\\xb6\\x0eH\\x174\\xb9TXf\\xf7\\xdd\\xf1d\\xef#\\x90d9k\\x84\\x011\\x01 \\x817\\xe2\\xb09BVb\\xcf;%3iR\\x9a\\x8a摮\\x10%j,D\\xd2\\x18\\tʞa\\xb0\\xb2\\xf2\\xdfT\\xb1\\xac\\x86;ϡ\\x19:\\xd4\\xe4\\xe4\\xe7w\\x16T\\xbd\\xc9?}F6\\xe9\\xee\\xc6<\\xfa\\xa5\\x8b3\\xccYJ\\xe2?\\x8a\\x8d]\\xe4P\\x84ߌf\\x18\\n:f\\x8f\\xf2\\x14\\x9d\\x14\\x91㯺>Sa\\x9bn\\a\\xde{\\x8a\\xf49?\\xfc\\xa3\\x10\\x95\\x98\\x9c\\xda\\xc8%\\xd1c\\xf4\\x03\\x13\\xc5y\\xff덋f\\xb4\\xdc\\xf9\\xbdl\\xdcm\\x8a\\b\\x9e\\xf4i\\x943<\\xa1G\\\"\\xad\\xa0\\x05\\xd9\\xea]<yӘ\\xdf\\v\\xfd\\xde\\xf8%\\a٠\\u007flc\\xb8\\x1f\\xa3\\x8fV\\r\\xban\\x1dK\\x18;X\\xff'\\xbb\\xcf\\x00U\\xbe\\xc5P\\xa0\\xca\\x00\\xb9x\\xb0\\x8c\\xcaV\\xabJ\\xe2\\xd1\\x10\\xff\\f\\vo3,\\xa1\\xc6W\\xf1\\xc9?5\\xc0\\xf7\\xa6\\xd7X\\rѯ\\xcdq6u\\xb2\\xc8G\\xce\\xe0W\\xc5S%\\x84\\xe68\\\\*\\x11)n-^\\x15\\x9f\\x1c6\\x11\\xa3Ͻ4\\xe3\\xf5\\x8b\\x03)\\xc1w\\x02\\xb7\\xc2Rr\\xec]\\xefP\\x064\\xef\\xf9\\n\\xfc\\xdd\\xf2\\xbaD\\xa1\\x99\\x19\\xbfӳ\\x86\\xb7m\\x93fH\\xaa\\bc=\\xf7p\\x16=\\\"#\\xb3\\u007f\\xa0j`\\x00\\xb7c\\xf6\\xec\\xa2\\\"\\x17@\\xc0݅\\x86Er\\xeeddz\\xd4\\xf46\\xe4\\f\\x93\\xd0x<\\xeax9\\x91\\xb9ҭ:6\\xaaU\\xc8\\xd3\\xee\\xbf}\\xb3\\xb9U\\x11R\\xd2a\\xf05$A\\x83gJ\\b\\x84ެ\\xfdJH\\xbes\\xbc\\x12\\xf4\\xe1<Y\\xda\\x18\\x92x\\x18\\f\\x88\\xe4\\xba?\\xba\\x98\\xe1c\\xa5\\x004\\xf8d\\xecֿ\\x1c*\\x14\\x91\\x97?\\xb2|\\x8e>\\x16\\xa2\\xb1\\xfe\\xbb\\x8d8\\x94\\x88H\\xa5W\\xe4\\u007f\\xef\\f\\xca5%\\xd0Ρ^\\xda\\xed\\xcf}\\x85S\\xb3|\\x0e\\x9d\\xb9;_\\x93B\\xc2G\\xc6K\\xc4$;_\\x8c\\xd58A/,\\x93\\f\\b\\rӾS\\xdes\\xa9\\xdc<&\\x93{Fq\\x86\\x8b\\xb0\\xf6p\\xd4\\x17\\xa2_\\x9aB\\xe3\\xcc\\t\\xbbt\\xb4{&\\xb0\\xcbx,T\\xa6\\xa9\\v\\x9cΑS\\xc9j\\xb1\\x93%\\x1e^\\xe2\\xca%\\xe6\\f\\\"\\xe1\\xb7\\x10n\\x02\\xfeF\\xdb\\x13%\\x1e-\\x94\\x8dL]\\xa0\\xf6\\xab\\xb2\\xb0\\xb0x\\xb0fp?_\\x90\\x9e,\\xad@*\\xa4+H\\xe7\\xf77\\xa4\\v\\xa4\\xc91HLb\\xd3\\x05\\xe4o!:\\x80\\r\\b\\xfbr<\\x15\\xd73l.\\xf3\\x19\\x10輅V!\\xeb\\xaf-\\xfa\\u007f\\xce\\xec\\x9fG\\x9ew|\\xe5\\x95\\x1dWV\\xf9\\xcfS\\x17J\\xa3\\xa3\\xf4\\xd2l{\\xf4\\xf4\\x9cn\\x9a\\x98\\xbd\\xf0\\x97\\x86\\xc1\\xf4r\\x90=L:,]\\x99\\xea\\xe8\\xef\\x91v\\xb2\\x87\\xe2ߘͿ\\xcau\\xfe&-\\x9dI\\xc0\\x95\\xafg\\x11\\xb1\\xbbsp\\\\\\xe6D\\fN\\xef\\x17\\x1f\\xef\\xa7\\xc7Ÿ\\x18?W\\xc4\\xfe\\xdai\\xef\\xac\\x1b\\xab\\xed3+\\xab\\x00O*\\x94\\xd2F\\xbcw\\b\\xb4\\x10\\xef'r\\xd5\\xe5\\x00.\\x1f\\x9f\\x83\\xfd\\x1eE\\xf2I\\n\\xe3\\xcel\\xf8R\\x80Ո\\x9d\\xbc\\xc3\\xf0O-\\xba\\x9b\\v\\rM\\xfa~laMG\\x16\\xfa\\xa1e&\\xbf\\x98\\x14_\\xa3\\xf9\\xe4\\xba\\tY\\xd4\\a\\xf4y(\\xb9\\x19~\\xc7\\x16\\xbf֨\\x17\\xe7\\r\\x05&mYV\\xd3=\\xb4\\x0ez\\a-5N\\xe6\\xff\\x87\\xa6?fD\\xbcLe\\x01\\xff\\xfa\\xbd\\xed\\xe2\\xe2\\x1f\\x94\\xbb(xv\\xc6Z\\xad\\x1ex\\xf0\\xadf\\x89\\x9f\\xa5\\xa1\\xc1\\xe2'1\\xb7b\\x98 ;sm\\x86\\x1f\\x9e\\x9a\\x80\\xd5\\x14\\x8b\\xed\\xde\\b\\x0e\\xf2@\\xb8\\x912\\x9a!N\\xdd\\xdb\\U000c397cv\\x10\\xe2B8\\xb6\\tn\\x8a\\xc5C\\x1e\\b\\xdf\\x04\\xa8n\\xa8\\bˉy\\xb6\\xddi\\t\\xecq\\x83ee-\\x92ݧ!\\xbd\\x9aO\\x8a{\\x00\\x10\\xbeJ\\xd5|o\\x15\\xa9\\xaf\\x9bP\\x8a]\\n;\\n\\xef\\xf4\\xf6A\\xbdd\\xb4o+\\x8a\\xf6\\x93\\x89I\\x99*\\xa4'O\\xf6\\xdd\\xecz\\x8c\\x8dcP\\xae?\\xd6H,\\xe1\\x1dH\\x16\\xa1\\xe9\\xd1\\x05\\x9bd\\x10\\xb1\\x9a\\xc0\\xb3'\\xe2\\xf52<\\xa3Ջl\\xb0\\xfa1ѹ3\\x9f}VM\\xaf\\xf7\\x9d\\xffe\\xce\\xe3\\x85\\x14\\xe6\\xad\\xe5\\x19\\x90\\xa5\\x11\\x8cV\\xac\\x92p\\xb1\\xe2Ϟ\\xf52\\xfb\\x13\\x1f\\x8e\\t\\\\\\xb6\\xe7\\x10V\\xa5\\xe7x,\\x8d\\r\\xc3y\\xf2g.\\xc9!WQ7-\\xad\\xda\\x1cnY\\xf3\\xe6Ϧ\\x17\\xe5S\\x166\\xe5\\xff\\xe3X\\xde+\\xb0\\xf5\\xe71v\\xa4\\x976d\\xe5\\xdfN\\x9e\\b\\xaa\\xb7\\xc0\\x13e\\xd5P+/0m\\x03\\fՠ\\x1d\\x11SO\\xf17\\xc5u!~<\\xe5\\xae+X\\x18{e\\x97\\x92\\xe7\\xa7J\\xc7\\xe5FΛ\\x17\\x99\\x8bK\\xdf\\xc56\\xe5\\x8e,\\xbc\\xf5\\xd6\\xe0\\xb7,.\\xfb\\xc1-\\t\\xa1ڕ̣\\xe69=\\xa4\\xaf\\xa2ߨ\\x12\\x10\\ry6\\x94\\x00\\xa4\\xb1\\xcd\\x12\\xb9\\r\\xa1YD\\xa6A\\xdeAY&\\x1d<8I\\xa1\\x0fb\\xce\\x15\\x92\\xba\\xeci\\x92\\xa9\\xd4\\x04*h\\xa7\\xca\\x1d.\\xecޏQ\\xee\\x97F~\\xda\\xeb0\\xacs\\xbe\\ue35f\\xe2\\xe3h\\x06\\x11>\\xfaQ\\xe1g˺%`h\\xf0;\\x8927\\x0f\\xeeo@0'\\xb0\\x89<\\xd1F\\x98\\x00\\x00\\x8f\\xf2\\x86\\xa5a~\\x95\\xd2\\xf0Љ\\xd1(1\\xc3s\\x94hW@h\\x87ӑ\\x96\\xde\\xeat/hm\\xe9hm-\\x9d\\xea9\\xf2\\x82Dhn#J\\xf0)\\x15\\x84]\\xd1\\x1d\\xb5\\a~\\x8a\\\"\\xaf\\xd4Bݐ\\x84\\xd8f\\xc65\\xec_\\xdb}\\xa9\\x00\\x9c[\\xa8\\\\\\xd9B\\xb0\\u007f\\x83h\\xd3\\\"\\xc9\\n\\xb7\\xff6dG\\xa6\\x8d\\x8d\\xe0\\xc9\\x13~\\xbd\\xad,\\t\\xbc\\xb4\\x15\\xfdj\\x1f\\x8d321'`\\xf9\\xbd\\xf3\\xcdQ\\xf7\\x96\\x8b\\xe6LP\\x0em\\xdfW\\xe8\\xd6Kkֽ\\x0f1\\xdd_a\\xffY\\xdc'\\xfeپ\\xe2\\xbe)\\xe4\\xcf{+k\\xcakV\\xde\\x03\\x9d\\xdbg~\\x0e\\x1a\\xeal;N\\x11\\x9c%\\x98\\xd2\\xe5\\x19'6\\b\\xbd\\xc7M\\x12\\x90\\x04'\\xc3IԵ?\\xeb\\xdd\\x1e܉\\f7wJǼQ\\xd0A;\\x98\\\"\\x00\\x06\\xafS\\x1a\\x8f=\\xdf\\xeeќZ\\x9f\\x9c\\x1eb\\n\\xdfI\\xa5\\xde\\\"\\xe8\\xd2\\n\\xbf\\x11\\xc4oo\\xc5ϩ\\x94\\x9d\\xe1!\\xa6\\x04f\\xcd\\v[\\x92\\xec\\xb8\\xfaɫ\\x036ad\\x81WفW*;\\xdd~ն:.n\\xb5\\xed\\xa1\\x99n6\\xbc<\\xe0U\\x16Y`\\x13\\x1exy]}\\x9c\\x9bi\\x9b\\xffb\\xabH\\xe3V\\x1f\\xe3U\\xb0TƔ(?\\xfbG)\\xab\\x82wL\\xbd\\x06\\x15m}q}uip\\xac-\\x0f7\\xeb+\\xc6<\\xc3\\x1e\\x03mZ\\xbe\\xe1\\x13֝\\xf9t\\xfd\\xc7Cn\\x18_D@\\xa2\\xa8\\xb4\\x88\\xa7\\xb3\\t\\x9f\\u007fN\\x98\\ru\\x9c\\xe4Ĉ\\x04{\\xc7r;\\xde\\xec!J\\xa0n\\xa2-\\x870k\\x16!\\xc7\\xf8\\xe6\\xb5Ci9\\x96%\\xf8\\xca\\x18\\xbc\\x04\\xea\\xf9\\xa4U\\xe8\\xa6\\xfd\\xfe!\\x17\\xdbo\\xba\\xc2\\xf9\\xbcT\\x11\\xdbEk*\\xea\\x97P\\xc4ǊnE\\x8b\\xb9\\xe4\\xdb&\\x98\\xd5\\xfb~z\\xd11\\xfbw\\xe7\\x82fj\\r\\x8b\\xd4\\xd4\\xd7Db\\xad&\\xd6L\\xdb;\\x92\\x1c\\x1a\\x9e\\xad\\xdc\\x1a{\\xfc]\\xd6\\xefw\\x92\\xfa\\x8d\\xcf.=\\xdb'xv\\xfcY\\xbfP\\xb3\\xfe\\xbdy\\xfb\\xddU\\xdfl=\\xe9\\xdf=#\\xe2\\x02D\\xe4\\x17\\x82(\\xedm\\xbf\\xb2\\x19\\xdc\\xf2\\xaaH\\xcf\\xc0\\x80\\x9e\\xae\\a\\x132\\x9b\\xb8qq\\xf1.\\xa2\\x9f\\x9af\\xf8'\\xac\\x956\\x98\\xc3Z\\xccx\\xacg\\xcc{Q\\x80ô\\\"\\xb8\\x82\\xd2\\xcb\\f=\\xf8g\\xc0\\x13J\\xa0\\xf4<a\\x1a\\x1d\\xa6\\x84\\x80\\x17\\xf6R|\\xa9V\\xf4\\f@\\x00ְ\\xa3\\xef\\xa9t\\xd1U\\xefv\\xd9\\x16AC\\x9c\\xacM\\x05E\\x98l\\xf7l\\xf5\\xa6Q\\xc9h\\xe0K'\\x89&D\\xf5]\\x17W6-~\\xabw\\xad\\x88\\xfc\\x8d!\\xe0<\\xe9\\v\\xdbe\\xa0\\x19<`\\xe9#;\\x99'\\x1a\\xc3ZF\\xfbF\\xcd\\xc0\\xb0\\xc5?}\\xf2\\x015\\x06\\xa3\\x8a\\xa7o\\x91\\x1b\\xe8@\\x99\\x97\\xab\\x82\\x9aȷA+\\x02]\\xee\\x05f\\u007fE\\xdd\\x05n\\xb1\\v^\\x01\\xf1m\\x89Ԋ_\\xc7\\x17\\xcf_\\xb8̛ݛ\\x8cV\\xa3\\x8a\\xc4\\xee\\xf5\\x9e\\xd5s4\\x00\\xddVw\\xbc\\xb2z\\x92\\xbbr\\x89?{\\x91\\xa4\\x9c:[A\\x13\\xf1m\\x98\\xffmͻ\\xd2eU\\xf5\\xd7\\xdc\\xf3\\xf5\\xf7*\\xff V\\xa7Ǧ\\x12\\xbe\\xf3I\\x87荪l\\xbeکS\\x96pzZ\\xb9\\xbevr\\xd3K\\x19\\xe6\\xc6\\xc2/\\x1eȓgN\\xce1\\xf4\\x15\\xb0\\x03%r\\x1f 3\\x84\\xce\\x05\\xcdn\\x89\\x1b]@\\xb3\\x19\\x11+7U*5Y\\xc1\\x87\\xffV\\v\\xafUR\\x9e2W\\x1fHE\\x9b|n_Y\\x99\\xf3\\xdc\\xfb\\xf0\\x057\\xc3\\xf2\\xder\\x94\\x1b\\x1d\\xcd=\\xaa\\x15\\x97\\xc1\\xfd\\xe2C\\xee\\xb9\\xe8\\x95j\\xef\\xdc\\xdb>\\x9c\\x85+\\xd9f\\xfb\\xa8\\xfb\\x17\\xbe\\xe3\\t\\xcb=jg;\\xc0g\\xceb`0\\x8ci0'\\x91\\xea=W\\x12+I\\a\\xa6\\x99\\x9e\\xebMI\\xfa7\\xda$\\xa0~A\\xa2\\xb4K\\xbfƶSH_P\\x05\\xa6\\xe8H0\\xcaM^\\xbeC\\xd7\\x14X\\xfa\\xed\\x8bB\\xb9s\\b\\xa3x\\xbd\\x97\\x9dn3\\xb0\\xf7\\xb5\\x023$w\\x16\\xbe\\xf8\\xb6T\\u07b8CW.\\xb7=|_(\\xafJc\\xe7\\x17\\xe4o(r\\xeej\\x88H\\xf5\\xbb\\x9cEGa\\x05\\xec\\xfc4yU\\xe1\\xfb\\x87\\x95\\x13\\x9eɥr\\xcd尺0MM\\x0f$\\u0090\\xf9\\xc4V\\x8a\\x05g\\x19L^\\xa8ظb\\x1f\\x19c\\xb3\\xa6\\xc5w$\\xbe\\x91\\x86\\x1bqp\\xaa\\xe9\\x8c\\xc1a\\xbf\\xf4\\xc3sФ%M\\xf8\\xe0\\x1d$\\xff\\x03Ld\\x9e\\x85Hv\\xaa\\xf4\\x90\\x17\\xe4\\x81x\\xe4\\xd8u\\x1c\\x02\\x8e\\xc6\\xf9\\x82\\xb1D\\xf3ϻ(\\x04b\\a$\\xc3;\\b$B\\x15^B\\xf0\\uf592\\xeb<$#\\x814\\xeci\\u007f\\xa7\\x828\\x9fO\\xeaԋ\\xd2n\\u007f\\x19\\x8f\\xf0\\xbbR\\xf7\\xbc\\x04]~\\xecJ\\x1al@:h\\xecݧ\\x99\\x12\\xea\\xde\\x03S\\x84\\x02\\x9e\\x8f\\xf9o\\x0e\\a\\xea \\x02\\x99\\xe0洞\\xb86R\\x01\\xa4\\x9bi\\xba\\x9eX\\xcf\\xf6\\xb7n\\x8f\\xc8\\xf3&\\xaf11#\\xe3\\x96\\xfe\\x92\\xdf\\xe3\\xe8\\v\\xb1\\xb4\\xe86\\xbf\\x1arN\\x0e\\xb9Fښ{\\xbdqR\\xeekV\\xad:+#\\xe3\\xa8\\xdc\\xf8ƣ\\xe0\\x9d\\x9f\\xf2r\\xf7\\x86?S`\\xeb\\xcd\\ay\\f\\x83\\xc0\\xb3\\x04\\xeaKYe\\xc4\\x12\\xef|\\x9bf͚\\bW\\xb9r~\\xceb;\\x91\\x05ְ\\xcf\\x00Q\\x19h\\x9bu\\xcd^j\\xa3|\\x9e\\xbd,\\u007f瑐\\xe4%\\xb2Z{\\xa5\\xf7\\x92`rB\\x19\\x87\\xef X\\x1c\\xbb\\x8e\\x04\\xa7,\\x96\\xd7BK'7}\\xfa~\\x054/\\xc6\\xdc\\xc9\\u07b4TTi\\xef\\xe3\\\\b\\f9\\xb2\\vs\\xa3kQ\\x82\\n\\x83Ð\\xfej\\x9e\\xbc\\xc4^+7ym\\xeet\\x80\\xbfM\\x15\\x8f\\xefzh*d\\xeb\\x93)\\x02\\x9f\\xb7'q\\v\\xa5\\xc3\\xea\\x80_\\xab\\x98\\x18\\x85\\xc5\\x15\\xc6\\xfa\\x95&\\xa5Y4\\x8c\\xb2\\x80<m\\xc2o_\\xa5wy\\xdd\\xfeGo\\x1c\\xaa\\x98\\x1d\\xcbC\\xd2\\xe8_O\\xfeM\\x02\\x9d\\xa0\\x9d\\x1e6\\xd0\\xf8r\\xf9-\\t\\xbb\\xa8\\x1c\\xf9\\x90a\\xffy\\x1c*'\\x9f99\\b\\x19e\\xc8\\x01\\\\\\xbe\\x80Q3ߐ\\xce\\xf8\\xb6\\xd7m\\xd7?\\xd2v\\xd7yM.\\x1dt\\xf5\\xbau\\x8f\\xf4\\xbd\\x1az\\xe4\\xeeX=^\\xb7X쎢\\xaeK^G\\x8dr\\xbb&Lk#\\xe9v7M\\xfaq\\x18/\\xd0*\\xce\\xc2h\\x17\\x8f.\\xe6\\xaa\\xf2Y\\x83\\x01\\x97\\x92\\x1f\\x1dq\\xed\\xbe\\xa6\\xb2IX\\xa9\\xf9\\xcaǕ\\x8a\\x03\\xa3\\xe2\\xe2XR3q3Ĥ\\xfbL\\xb6\\xbe)Q\\xb8\\x194\\x03\\xf0\\xea\\xaa\\x11?\\xd0vq\\x81\\f\\\"\\xe4\\xea \\xf1\\xe6\\xebzsü\\x88\\x1d\\xe4\\xd3\\xd0\\x02\\xb3Kv#w$\\xda\\x16\\x8bسz\\x9b74gƼ\\x19-\\xc1\\x16\\xb3+1l\\x00\\x1a\\x96\\xcfv\\x91\\xc5F\\xdbFro\\x90\\x8a.\\b\\x05z\\xea\\u007f#H'{\\x96\\x1bO\\xd4\\xe2\\x93+\\tC\\xd1\\u007f\\x05\\xfc5\\xf5\\xf9#4W\\x9c*\\xce\\r\\x95\\xe9ڠ\\x1e\\\"Q\\x1b\\x9f\\xfbL\\x16\\xa4\\xbb\\xe1\\xbf\\xf7\\xe3\\x13\\xe3\\v\\xfd\\xd3!\\a\\xb4\\x18\\xfeDE2\\xb9\\xcbd(\\xe4\\x195v\\xf0\\xf3㮎\\xa5>\\x13\\x85\\x9d\\xb46\\xba\\xe2\\\\\\x8dV\\xcc\\xfe\\x18\\v\\x80|\\ue6a1IG\\xa9\\x1eO\\x0e\\xb8\\xab<\\xe2\\x99\\xdf^a\\x1e\\xf6r?W\\x1c\\xf8\\xd6a\\xb7{D\\x1e\\x93\\xb9\\x87\\x10D3\\x0f\\x96Ȟ\\x19j\\xa63\\tX\\x1aK$\\x15\\xf9Ѱf\\xe6\\xf4\\x1a\\x83o\\xce\\x12\\xe7\\xac&r\\x90\\xb9\\xdbl\\xf6\\x88\\xfb\\x16i\\x18\\x1a\\xef\\x9dX\\xec\\xdd\\xf3\\x06\\xf2M\\x98\\r\\x1e\\x91\\xbf35\\xd5`HM\\x8b\\xdc._\\xefT\\xbd\\x01$\\xb8\\xe7\\x89+ִ\\xb3\\xcaʘ\\xed\\xafb~367\\x9d\\xe6\\xb63\\xf73\\xf7\\xeb\\x821\\x80\\xe4|\\xa8\\x84\\xd8]\\xcc\\xf0\\xc7\\xc9T98\\f(\\x84\\xb8\\x8bf\\x03^\\xdd&\\xc1W$\\xe3\\x8b\\x1b<\\xb1cD.\\x1c\\x06\\x14D$\\x00鰙&\\xd0\\x13u\\xb9Ľv\\xa5ݽ\\xa0\\x81!x\\rTҎ~\\xd27?A\\xc6\\x00H\\xa2\\b\\x10ק뮱\\xa1 \\x83A\\tj*\\x80\\x9a\\x01Ԝ\\x8a]t\\x96\\x95j\\xfb\\xa8\\x83\\x18r\\xc1\\xc0;\\x1e8\\xaeן\\xa5\\xc6d\\xa0\\xa7%\\x9d(t\\x8e\\x97\\x94x6\\xc9\\xd9\\x11\\xf1]%&\\xf37BTj\\xc9\\xc1\\x00n\\xec\\x11\\xa7H\\x87\\x0f\\x14\\xef\\xa2\\xe2kQp\\xfaa~\\x851\\xdb\\xc69\\x8e\\x1e\\x19\\aj\\xffzq\\xceBْ/\\xab\\xc2\\f\\xe9\\xe9\\x8e\\xec\\x1au\\xebU\\xe96eZ\\xbbq\\xb9\\xcaQeߨ\\xf2gJd\\xbb\\xd3\\x05\\x8f-\\xe2\\xab\\xffVa\\xe3\\x1fK\\xbc\\x1fϱ\\xad\\x82\\x9c\\xf2\\u007f\\x1b\\xe3^J\\xe6\\x82\\u07bey\\xb7\\x95p\\xc6\\xc9\\xc3X\\x98\\xa7\\xf4GYB\\xa2\\xe9@\\xc9\\xcf\\x0e\\xde4\\x1f\\x8fJ\\x85n\\xa2\\x97\\x17\\xebu(\\xd9i\\x87_\\xfc\\x04f|\\xeb\\xe83r-*\\xbc`\\xd2\\xe2C^S\\x82\\x8b\\xaf\\t\\x06\\xfdг\\x15\\x17^e\\xe3g\\x80b\\xd3%\\xae\\xf7q_|\\xb1a\\x1f\\x10e\\x9cBi\\xdfxj떭\\xa7\\x12Z\\xe8k\\xd2rم\\xe2\\x1f\\x17\\xb8\\u007f\\xfd咄{\\r\\x1c\\xf6A\\xfaD\\x85\\x12\\xad\\xbc]BT\\xbd9\\xda\\xd0\\xd3\\xe7f]\\x1b\\x9a͞\\x98\\xf9\\x80\\xbf\\na\\xc0\\xfd\\xc8q,V\\x1c9\\x04\\x96\\xc1G\\xfd\\r\\xedl2\\xbbݰ\\xde0\\xa5\\xf7^g\\xbd\\bֱ\\xdc\\xc9Z\\x9f\\x98E38U\\x93o\\x17\\xf9\\xfdyg\\xf1\\xd5c\\uf50b!6\\xe3y\\xed\\x12ʻ\\xb82\\x81<n\\xe6\\xf3\\xa9V^\\xe6\\xf1\\vi\\x82h\\x85d=A\\xb6\\xf0\\xab\\xe2\\x8e9\\xed%]\\xcf\\xdbM3s\\xf6%\\xccފP\\xbaC\\xcfp\\x10\\xc1\\xf3<\\x11b>\\x90\\x94\\xe6\\x05\\xfe\\x05r3r\\x96\\xc5`\\xf0x,M\\x83\\x99\\xb7JjN\\xfd\\x87[\\xc1\\xba\\x8c\\x97\\xe9\\x14\\x9aa\\r\\r\\xb8,\\x8b\\x89L\\x86pSeG-\\xc3>\\xf8\\x00\\xb5\\x05w\\x12\\xab\\x87c\\x00߲\\xfaj\\xb1ߨ~{\\x14]]\\xdd\\x02xLxDw\\xf1\\x19\\xb6\\\\\\xe4\\x8aG\\x15\\x85\\x14\\x029Ѳ\\xa9\\x97\\x91\\xfd\\x81\\x04Q\\x1d\\x10\\xde\\x15}N/\\x80\\x01\\x83\\xee$7\\x95&ʉR\\xb5\\x81f\\xb0\\x82\\xbf\\xbe#\\x81\\x1d\\xb2\\xd7\\v\\x9dE\\x83\\x8ff\\xde\\xc7o\\x14\\x83ԱH=\\x95\\xbdSr&\\xfbx\\x06M\\x85\\xb2\\x13:\\xf4\\x8eGQWI\\x1c\\x12W\\x8e}\\xa2:\\xbb7ޕ`V\\x01\\x89\\x1f\\n\\x9e>\\x83_\\xf9|y\\xea\\xf3\\x95\\xa7:]L\\xb5\\x98\\x1e\\x88fd\\xdb\\x04;*<w679\\x87\\xa8G\\x82&7\\xfb\\xecygQ\\xec\\x89m\\x1d\\xea\\xaa\\xe5\\xfc^\\x1f|\\xa2\\xaf5[XB\\x02\\xa9\\x01|Qu4\\x9f{\\xb3\\xb8\\xbf\\xb9\\x19\\xe0555\\x93m\\xae\\t\\x8c&\\xb7\\xe3K\\xf8\\bR\\xdd\\x0e[,\\xd4\\xcd\\xfd\\xa9\\xecԲ0\\xfd\\x8b\\x90\\x8d\\xc6[\\xccN\\xeb\\xf7[.}\\xd3e\\x9992wΧ&k\\xd9\\xd4\\xdd<\\x9e\\x999b_e\\xa5\\xc7\\x17\\xa1%e?$N\\x19be\\x83n\\x90{(\\xf7a\\x02\\x16K\\r\\xe1N7?qY\\xb4\\x85\\xf6\\xccN L\\xb9\\xa1\\xba\\xfc\\xb3C\\xe8dOפ\\xac\\b\\xb1-Zv\\x9ao\\x82\\xb6\\x98\\xd2\\xdeT\\xfd\\x92\\x9eAR\\\\<\\xab0\\xb9\\xb08^W\\xd2\\xec\\x1c<\\xc1gǥ\\x1b\\xe2B\\xc0}q\\xcc2\\xf7\\xce\\x05\\xbd$\\xaa\\x83\\xbciR%P\\xe6\\xf0Di\\t\\x81\\xec\\x8f\\x1fb\\xc2\\x1f\\x1c\\xb8?\\x8bL\\xf3\\x18\\x1e~'/*2lX_^\\xd6hϸ\\xeb\\xe6\\x14\\fX\\xb5\\xb4\\xec}\\xb2.|\\xc1T~\\xe4h1\\xb9\\xfc4K\\xbc:-\\x8b\\xec\\xef\\bq\\x04\\xbd\\x849e\\xa0\\xab\\xfa\\xc4\\x16~\\x15S\\xb1\\x15\\x06\\xa8v\\xa6oJ\\xe4\\x1c\\x1fA\\xb8\\x0fp\\xd31\\xda\\x18:\\x1a(A\\xff/\\xa6L\\xee\\xab\\x01+A6Fݼ\\x90\\xdeB\\xfc\\x1cw1\\xf0\\xbd\\xdbB\\x05Mz\\xb0\\xaf\\x19/\\xd9\\x04\\xfd\\xber\\x9e\\xee2@Du\\x8a\\x01\\x82TϿ\\xd2S\\xf5\\nWA\\x90\\xba@M\\x84\\f\\x8d}\\xb1Z\\x86PQǎKڑ\\x96o\\x9b\\xe1\\xa7\\b~\\x11\\x8aiY\\xbe\\x81f8z\\x14\\x8fY\\xa5\\xa6\\xab1\\x1f\\x1cc3fH\\xf7\\xb6\\n\\xab\\xaanc\\xac5\\t[k\\xa4W&=\\xe6\\xa0\\xce\\xe9\\xd1\\xeb{\\xac\\x02\\x96\\xc9\\xc4Z\\bf\\xd2\\xf2)͑]\\xb1DF\\xf6\\xd8A\\x8c\\x88\\x91Q\\xb0#\\xe02\\xf1l3\\x80\\xc5\\xd2l\\x0f\\x16\\xf6\\n\\x9b^>\\x9b\\xaf\\xddHų\\x97M\\xc2Iu\\x8f\\xa1\\xe0Q\\xc8f\\xde\\xec\\x00il\\xae\\xef\\xcdI\\xbew\\xd9\\xdf\\u007f\\U000e67d1N:\\xb2\\xf8\\xf3L\\x18\\x81\\xbb\\b\\x81ɳ\\xd6\\x13^Կ\\xdf\\x02I\\xec\\xa0\\xfa+À\\x84\\xad\\x9cK_y$\\x94\\xecs\\x0e\\xb4\\xa9*\\x10\\x1f\\x15\\xb7\\x13_\\x13?':\\x8a&j\\xedF\\x85\\x05}u%\\xeb\\x15\\x16\\xa3\\xd6\\xce\\xd8\\f\\xb7\\xe6\\xabߨ^U\\xaa\\x81\\xe8\\xd7;l\\xb6\\x1e\\x1fz\\xaf\\xde\\xc1ҿ\\xeb\\xb1ٺi\\u07b4\\xc0j5\\xad\\x83f\\x18\\xaex\\xef\\xb0ŴJ\\xeb\\x8d28\\x8e\\xc5'\\xfa\\xa5,`\\xb1\\x00?m\\xff\\xf6\\xed\\xebF \\x82.\\xc8pF\\xc2@0\\xea\\xc9\\x17\\x86\\x06\\xb2ʿ\\x01\\xbc,b\\xc8\\b\\x19X\\xa5\\xebC,5ăL\\xa9\\x04kE\\xcc\\xf6\\xab\\x96\\xfe\\xb2\\xe3A\\x96\\xdfh\\x8bP\\\"ݸk\\f\\x896kS\\xf4.C\\xbbg\\xcb\\f\\x8a\\x0eNO\\xf6KO\\x9e\\xa6Y\\xad\\xc8d_\\x9cz\\x10.\\xea놤\\xb9\\x9f\\xa5,\\x92鼵>LkaQv\\xba_\\x8c\\xc2w8=\\x89\\x89\\xc3I\\x1dz-\\xe1\\xa5[\\x8fĀ\\x15\\xb4\\b\\xee)-\\xeb&\\x17B\\xa5\\xfd\\rkpS,\\xabV\\x9b\\xa6`^\\U00076f08\\xaa/\\x00\\x13\\nӗ`\\xads\\xaa%Xb\\x0f\\x11\\x8bi\\xc8\\xe0j\\x01\\x97\\xc8\\u009c9B|\\xd6\\b\\x91W1\\x9cw6S\\xe2)\\x18d\\xf1\\x94fg\\xd1\\xd4̹=\\x0fvC\\xa3b\\xea\\xf5\\x84M[\\xb4xԛ\\u007f:\\xb6\\xa4g\\xc5\\bF\\xa5\\x82\\xb9=f\\xe0O\\xd4\\xe4\\xd43kЂg\\x92\\x0e-\\xca\\x13w\\t\\xba\\xa4\\xbb\\xe8\\x10if\\xf4\\xbe\\xad\\b\\x81\\xc0\\xe3y̥3p\\n\\x82\\xe62B\\xc0\\x03\\xd0\\xcd00\\xa6طʎ\\x95a\\x00\\xaa>\\x18\\t`M\\xce\\xdbY\\xb5\\u07bdc\\xf3}f\\xa1\\xa1\\xbe\\xce\\x12=21\\xf6\\xd7\\xd9ک\\x94e\\xc9q\\xd1߷\\x85Rl/J\\xb2\\xb9\\xe6\\x1e\\x83^]\\xeeY\\x17\\xf56\\x8d;\\xb3#.,\\xb8F\\x94\\x99\\xefs\\xaf\\xf1E/n\\xed\\xb1\\xc0\\a\\xd35\\xb2\\xf5\\x9abۏ\\xc0\\x1fO\\xa9w\\xc4\\xf6\\x97ӈ\\xb5\\x17\\x93X\\x92\\x10\\xf4f\\v~\\x91a\\f\\xb6\\r\\x8e\\xa6HY\\x8cBŞ\\x9eF\\xe4\\x02!\\b\\xde`ƀ\\xc4\\x13\\xdb ̀\\xf1\\xe1\\xcb\\tLpR\\x91y.4P?\\x87r>X\\x11`@C+\\xebOC\\x949\\xa1\\xc1fgM2\\x17\\x9d\\xf8R\\xad\\xef\\x87N\\x1c\\xf6\\xc2~]\\xe6!5i\\r\\xd2͛\\xa5\\x06m\\x93\\x8f\\xd1^\\xae\\xa6\\xaf\\xb0Q&\\\\\\x96\\x13\\xe2[\\xbb\\b?+8\\x8c\\xa2\\x9c\\x11\\xf8\\x13\\x9c\\n\\xffğ_\\xdc\\x15:\\xfeV\\xe8F+\\\\\\xa3.Y\\xae\\xa6\\xb5r\\xf89\\x93\\x89-x\\xa4\\x06\\xa6d\\x12O\\xaeW\\x8e\\xdc\\xf6]\\x14\\xa3\\x93S\\x12\\x9d\\xa1\\xc8\\x10\\xc1\\r\\xca:f\\xedt\\xe4\\xe9\\xd4g;\\xc0\\a\\xeb\\v\\x04\\x87\\xe1;\\xf1\\xd5\\xeb\\t\\xaff\\xf95@H[\\x86:\\xf9\\b\\x0e)\\x8d\\xa8c\\x13(\\xedCeN'\\x8f\\xd2F!D\\x12\\xf1\\x1f\\xb6)\\n\\x83%/6\\xfaHp\\x90\\xe1\\xc5k\\x14}\\\\j\\x80pX\\x1fc\\x1c\\x19\\x8bA釩/oY\\x152\\x1c\\x04\\xc1O̍\\x8e\\xa2}\\xaf\\xc3\\xd6\\xe2\\xf0%\\x91\\xdeնK\\xaa\\x814LS신\\r\\xb2\\x8725g햝\\x183\\xd9l.\\xd7\\x04\\xcb\\x01\\x06\\x10;.\\xadФS\\xadP\\a}NX\\xa9\\xb104\\x89r\\xd8]^\\x9d-\\xca.\\x9dJlk\\xf1y\\xa5\\x91\\xa7\\xad\\xd7\\xf5\\f\\xf1\\xfdy+?\\xd1\\xf8\\xac%#!\\xa1\\xe6eBl7~\\\"\\xe0\\xca1j֗C;׃M\\xaawdַ\\U000dd0a1\\x81h\\x91-\\xa8\\xd9^\\x9fA\\x84\\x8b\\x9e\\xf7\\xc2\\\"ۡ\\xdavx\\xba=\\xa0\\xef\\x92O$\\xb25\\x15\\xae@\\x1d\\xc2\\b5&\\x94!\\xf1\\n\\xc7\\xe19\\v\\xbb\\xbf\\xa7cqb\\xa1_\\xd4e\\xa5\\xa2\\x04\\xec\\x0e\\xb4)\\xe3\\xe4\\x80[\\v\\xf5\\xb71\\xd8\\xcb\\xf6\\x00!G\\n\\x8f\\x84Pk\\xb0\\x98+y\\xb8\\x1d_\\x12\\x85$\\xefɋ\\xc2y\\x86\\xaf\\xafT\\x04A\\xcf \\xa2\\xba\\xaeN\\aÅ,pn\\xda$\\x01\\x19\\xc23q\\xf6Q$\\xcbY\\x8f\\xb7\\xd7o\\u007f̚BM3\\xff [\\xaf\\xec\\x03^-H\\xe6]\\xe2\\x14\\xe4\\xaf\\x12Ya\\xbf(~\\tc%\\x1e\\xbbPA\\xc2a\\xe5\\xe3*\\xbdV\\xdd\\x14\\xecIX`\\x83\\x1f\\x97\\x8f\\xcc\\xe8\\x88\\x13\\xf5̖\\xf3@=0\\x9d\\x14\\x18S\\xc1z9\\x93\\xaa\\xd2\\x13\\t\\xc0nkY\\x1eet\\xf5\\xb0\\\\ʻu+\\x8dn,\\xb2&Ds\\x91E\\u05ee\\xde|\\x8a\\xe9\\xa9\\xf8\\xc0\\x93\\x06\\xee,+\\xcb-F\\xf1\\xbf\\x11P\\xe9\\xa8\\xff\\x17\\n;\\x91\\x9f-\\x03\\xa6\\xd1\\x194\\x99\\x9a\\xd0\\x15\\x83;F\\x87$\\xaap\\x9ddh\\x14܊\\xc8\\x1f{sL\\x1d\\xb2R\\x95\\x8dA=\\xa9\\xcf\\xff\\xd8\\x0f9Z$C\\xaa\\xe8\\x89\\xe3\\xe2T\\x99\\xbb\\x90#\\xa1.\\xda\\x1e\\x9c\\xd0\\xd7\\xf5\\x84\\x1aZu7?ϴ4\\xd28\\xaa\\xaa\\x1b\\x05\\x9f\\xf5p\\xd79\\x85w\\xf2\\xee\\x14F\\xc5Q\\xf7\\xbb\\x91\\x8cڲ]\\xbb\\xfb\\x97za\\x91\\x12P4\\x04O\\x0ft\\xcf\\xdak\\xa1\\x99\\xfa\\x93\\x02:\\xe9\\x060\\xf2\\f\\v:4\\xe1~'\\xb6\\xc7=@\\x97\\x00n\\x87\\x02\\xfcH{\\xb2\\xf8\\xf9\\xaes\\xb7%\\xb8G\\x1b\\xec\\x9aQ\\xfca\\x9a\\x9f\\x1bU\\x88\\xa7y&\\x81@\\xae\\xf5l\\x01\\xaa\\x04\\t\\x13\\xed\\x18\\xd06\\xf3_ߴ\\u007fG\\xd7p\\x00G8'\\x00\\x06\\xf7bI\\xdc\\xdam\\xdf\\x01\\xea\\xfe\\x1f=X\\xe5\\xcd!\\x10ͅ=\\x01X\\xf6\\x8efJ\\x10+\\x19\\xe5\\xa5-c\\xfb-\\x1f\\xab<Z\\xbf\\t\\xa4\\x8f\\xb8\\xf0s\\xdfo{7\\xe2\\xe1vI\\xb6\\a\\xf8{=\\xd5\\a\\xed\\x1aѠ\\xd6\\f\\xb0j\\xc8\\x14K\\x16KY\\xfb=Ct\\xe4\\xdf\\xe1\\xa5w(t\\t\\x19\\xea\\xc5'C\\xfaх\\xe88Ym\\xcfy\\x95s\\xaa\\x94[\\xa5\\xde\\x13&\\v|{\\x82\\xae\\xdbS\\xe1\\xc696\\xb8\\u007f\\x85\\xdc\\x00'c\\x99\\xc5\\x01\\xc3\\x14,\\xea\\xa2\\xe0\\\\1\\xd3\\x17\\xe5\\xc3D\\xde\\x13ٱ\\xe2\\xe0K\\x96\\x1ag$\\x8d|^\\x81\\b\\rD\\x931f'\\xfd\\xb6\\x8a\\x8f\\xce\\x10\\xdck\\xbf\\v\\xee\\x9fcù\\xfa\\xf5v\\x13\\x95\\xaf\\xd2,\\\"00s\\x95\\x96\\xe0\\x98z\\xe3\\xde 9Vʼ0Ũ$\\xb9l\\xa9ܚ\\xbe\\xd8\\xd8\\xee[\\x04z\\xfd7D\\x82f\\xf3\\xf9\\x92\\xe5ʠ\\x8b\\xc3\\x18\\x91\\x80ɔ\\x1dlu\\xf9\\x06\\xdc\\xc6\\nA\\xc8\\x02wҙ\\x80\\xe9\\xd1(\\x9dΊge\\xd2PL{\\x1e\\xb4\\x16\\xc5ڲ\\xba\\x02\\xbe\\x82/i\\xc7\\xea\\xe8X\\x92z\\xa1zk\\xa7\\x11\\xe8@\\x19\\xd74\\x10엄4\\u007fݵ\\xb2\\xa7)=\\xb6\\xfb/;2\\xd6K5P\\x89}\\x98}\\xe3\\xde\\u007fCu/K\\xf0\\xa0\\xa9ļ&gCj\\x94\\xfd\\xdf3v\\x10\\xe3\\xd2况\\x01\\x81Y\\x1a\\xc6*\\x01\\xd8]\\xe9W\\xd55MY\\x11\\xab5\\x1cx\\x1bgv/WV\\\\\\xb00\\xc281\\xb3\\t\\xf5\\xe9H\\xe7\\\\\\rb.\\xb9\\x1focr\\xce\\x06\\a\\xefG\\xba\\\"\\x1d\\xe9t\\xe0qG\\x00ɮ\\x84\\x9a\\xfb\\x16ܦ\\x18{\\xf8\\xe7\\fqD\\xc9@\\x05\\xfdNlu\\x1c9̕+KF\\xef\\xbf\\xd3\\xd66\\xf2:d\\xe9}\\x01J\\xb2\\xe3\\xb9r\\xabΕ\\x94\\x0e@\\xa3\\xc1\\x8e\\x993\\x9c,\\x19\\x9cyAn\\xd6<\\xa7o\\xcdzH\\xd1\\xef\\x96\\xfc\\xcaRX\\xbd\\x02\\xa0\\xe3\\x80\\x05\\xed\\xd2fj\\xd4\\xeb\\xea\\xec}\\xa4\\xbfu\\\\\\xe42\\xe2T\\x16\\xc8l\\xbb\\x1d#\\xa0\\x11\\xf2\\xefL\\x16\\xaezK\\xa2\\x06\\xf8\\x06~\\xff$:\\xf6ߙ\\xa5\\a'\\u007fK\\x06\\x8e\\xa7\\xce0\\x0e[z\\x9c{ע\\xaf}\\x8b\\x8fՉ\\xd8\\xda\\x02\\x18\\bR\\xd9Q\\xa0\\x0e\\xc4\\\\G\\xc6\\x01\\u007f\\xbb`\\xd0\\xf5\\xe1:\\x1aW?i\\x9d\\xa0\\xa3R\\x04\\xcc\\r\\xa8\\x1ed\\x11\\xf3\\x90\\xc9\\x18\\x88\\x84DâB\\x0fd)/\\x8cPv\\xb6\\xd1\\x01|\\x05uT\\x9aQ\\n)0\\a`\\x06\\xaa\\xbc\\xa5D\\x12p\\xe7+\\xaf;\\xce|V\\xdaV\\xf7hoKcK%\\x98捺L\\x969'\\xd5\\x13\\a\\xfe\\xf4\\x06\\x01\\x85\\xd1\\xf1P\\xa5N\\x95\\xb6w\\xfd8\\xbd\\x1b\\b\\xcag\\x03\\x15'\\xd4@\\xdc\\xfb\\xc8d\\xa5\\x1c3|vΐ\\x1a5\\x0f%_q\\xc5*\\x9aW\\x99\\x92\\xd2\\xcb\\x16\\xfe\\xc2\\a\\xd9\\x06\\xd6ñ\\xf6\\xf7\\xa3\\xefj\\xd7\\xec\\r\\x82\\xb7\\xb0\\x025\\x8f\\xba\\xa8\\xacc2T\\xa98\\x9d\\xc1\\x1b\\xeb3\\xfbQ\\xa7\\xfe\\nV\\x10e>\\v\\xd7\\x18\\x0f;\\x8e4\\xc4\\xed6J{)r\\xb5Q\\xa7\\\"B\\xa6. \\xf6\\x90\\xcc\\f\\xac\\x85\\x03\\xf7\\xfc\\xe8q^\\xa7/#l\\x1a\\x83SP\\xe4\\xa2\\x18M\\x95\\xdb\\n\\xb3;,\\x95\\x9abRT\\xb3l\\xe5\\xb1\\xd58\\u007f\\xbb\\x8d\\xa7\\\\٥\\x86y\\rU\\x83-\\xb8uLT\\xda\\xe5l\\xa7\\n\\xef\\xb2\\x03\\x0e\\x8a7\\xac<:\\xae\\xe0\\t\\xe48\\x92\\x91\\xf2\\xb6\\xeb%25DHWU\\x8b\\x03\\xa9\\x92\\x98\\xe90\\x9dEz\\xd6\\xf4u72U.\\x04\\xaf\\x1c\\x9c)v\\xb4\\xbaT!\\x03_fS\\xf2T\\xa9Pa\\xe0\\x9aBt\\x8a \\x8etш%v(\\xffv\\xa5OKd\\xa1\\x06\\xac8ʮ\\x8eq~`9\\xa4.e\\x96^\\xf1Q\\xa1\\xf8\\xaa`Og\\xc6\\a})C\\xb6\\x1f̝\\n\\xa8P}dMV\\xb1\\xe1\\xf1\\xc00x\\x148\\x1aPM\\xefp*\\x89A\\x1b亂\\xccj\\x96\\x1b\\xa1\\xc4\\xc9\\xc4[\\xfcS\\xea<P\\x8b+\\x9b\\x15\\xc3U;\\xf3+G\\xb6#GQYV2\\x81@w\\xe1\\xde;\\x90\\xe8&\\xf2\\xd8w\\xeb\\x17\\x8b^\\x06٨\\x97\\xad\\x1eF\\xfa\\x86\\xa4y\\xc8A\\x05\\x87\\x19\\xec\\x10\\xec\\xea\\xa0\\r\\xf5r1;\\xf3]B\\xd8\\xd1IϙM9\\x12\\xaf\\xd2;\\x99\\xadV6\\x822&\\xbd\\x99O\\x05G\\xda\\xdd47I\\xc9\\b\\xdf+\\xde\\b8\\xf8\\x8f\\xfb[\\xafY\\u007f\\xd0m\\x86L\\a༧\\xd8%\\x9a\\\\S]w\\x86\\xf3>\\xe0\\xbd\\b\\x10\\xd0\\xc2 j2H\\xddY\\x9b\\xf0\\xc7\\xcc\\xd5\\xef\\xf4j \\xa8\\x1c\\xa0y\\x97\\xd7\\xd4n\\xd6\\x10;:\\xf0)'\\xc3~\\xc1\\xd1u\\x03i\\xa6<J\\x1cs\\x85F(\\x81\\xb3\\xda\\x19~\\xb6ˠ\\xce\\xed\\x8eEǞ֜\\x16\\u007fʙU\\xb7\\xc9J\\xb1;\\x99?'Z\\x91S\\xef\\xcai\\x1e\\xbd?\\xb0\\xfb\\x92\\x98٠\\x91\\xce-\\x01%\\x15\\u007fr\\xe8\\\"ɖb\\xfd\\xaa9\\xb3;K?q\\xa9\\x05\\xee?\\xa3\\xe4\\xa3\\xd4U\\x9d\\xb1!\\x9d\\xdb\\x05%ufD\\x95\\xceN\\xaaV\\xe3\\x03w\\x9c\\x9fS\\xb3\\x1a\\xd4\\x1f\\xd3>\\x91p\\x0f\\xc5H\\xb1\\xa8x\\xbeh\\x1b\\x81\\xaa\\x1f\\xabƭ\\xb8/\\xeb@\\xb3О2\\xa5\\xb3خ\\x9a\\xd5\\xc0\\\"̙\\xc2\\xd4#\\xfa<'\\xe7\\xf5\\x18\\xa2r\\xf3\\xf8Q\\xf5pw1\\xa3N\\x90\\xd7\\xc0\\x99\\xb3蟹\\x88\\t\\x05\\xd7 \\x98\\xe7\\xa4\\xf4\\x19(D\\xcc\\xec\\u007fSם\\x05\\x98\\x92\\x8eZ\\x8d:\\x14\\xf74m\\xde>_<\\xeb\\x12^/\\xc4w\\x99\\xc3QYx\\xf0\\x8c\\x97rT\\xdbU]Q8\\uf6f4\\xac\\\"\\v\\xf8\\xc13E\\xff\\x038\\x10\\xbfy\\xa0/g\\x89ߛ4[\\xad\\xab\\xc3\\x0er\\xb9\\xb0\\xef\\xacr\\xbf\\xa3J\\u007f1 \\xfa7e\\x17uW\\xd7J{\\x9d\\xa9\\xf0\\xe1\\xe8\\xab\\xfaZ\\x9fD1\\xe6\\xcd\\xdc\\xe7f\\x14evGY\\xe7\\xc4\\xe4\\x96=Ϛ\\xaf\\xd7\\xe7\\xa5mF\\x05ê\\xf9֪|\\x02\\x8e\\xe2\\xb8\\xdb\\xc0T\\x90a0綝\\xd5c|\\x1bug\\x1f\\xe9c͞A\\x17Tֹ=\\xa2\\x900\\xfe\\x91\\xadr\\xb7\\xc9ɴ\\xf7Z\\xa2\\xe8>f\\xe8\\xfb7P\\xfd<\\xec7\\xae\\xa6\\x8f\\xe8\\xf3Oͨ\\x15\\xc2\\xccg\\x95\\xf5^\\rjs\\xf2\\x87c\\u0378\\xc6w\\xbb\\xc1\\xbb\\x91\\xb8\\x17\\xcdY\\x95<\\xe3d7ul)^\\x8eMU|\\xd4ݸ\\x84\\xfd\\xa6u\\x913g_\\u0099-\\x93\\xac\\xac|\\x9b\\x1e\\xad\\xb9\\xf0\\x1a\\r/n\\xb4`\\x9e\\xb9}R\\v\\xfc\\\\\\x01\\x9f\\xbfY)\\\"\\xc2=j\\x8d\\xba\\xce2\\xa3Ԫlvm6\\xf1k\\xe6\\x1c\\xc3Q\\x8c\\xf5\\xd7\\x1c-\\x8e\\xf7\\xaa\\xb9R\\x1f\\x8c\\xe0?\\xaf\\x88\\xb1ŵz{\\xeb5b\\xab-)(\\xbb\\xb9\\xf4\\f\\xd1`\\xd7\\xd1\\xfcr\\r\\x8d|\\xda\\f\\x94ҟ#\\xd8W\\xca4[E\\xb3\\xc7\\xe1\\xdb\\xc2S\\f5\\x0e\\x9a\\x9f\\xbbo\\xe1\\x1b\\xc6\\xdb\\xda7f7\\xc8\\xcc\\x1e\\xe1\\x9d\\r\\x87V\\xcb\\x03F\\xf1\\xff\\x89\\x8a\\x0e~\\xcd\\xfe\\xa9\\x12C%LqWw\\x92\\x93\\xf3\\x96\\xa3\\xfc\\x95\\xae\\xbcQ\\xec\\xee\\xad\\xd4K\\xc2\\xe6\\xefX똎S3r$\\x12\\xee\\xf9\\xab\\xb1\\x96\\x10&\\xfa\\xbc\\xfb]\\xd1\\xeaL\\x85\\xfb\\x03\\x8d\\x8a]\\xad\\xa6\\xfcʚ\\xd1|\\xa9\\x9d\\xc8\\xc9L\\xe2o\\x9eGF\\x9e\\xd2\\xd8ό.\\x19\\xf9\\xb9;\\xa8\\xf3ˠ\\xbc\\xf7{t\\xa3\\x99\\xe1\\xc7h\\xe5*\\x84\\xa3h\\xaf\\xba\\x01\\xf0\\xfe\\xab\\xed\\xa7\\x1dB\\xb3\\xacV\\xcd9\\x9awk\\x93\\xa2\\x8c\\x11R\\xdd{\\xed.\\x9e\\xe0\\xbf3b|\\xfe\\x8bZ\\xe5#+hւ\\xae\\x9bM\\xad\\xe9\\x9a7\\xa0\\x88\\xb8\\xd0 3\\xfb\\xf9\\x9b43\\xf2\\b\\xe9\\x98p\\xe7\\xe1\\xfdMt-\\xdcK\\xc4\\x17\\xa8\\x19\\xad\\xba%\\xeec\\xf6\\x97\\xa3G\\xd5p\\xd6\\x1e'e\\xb3ƻ\\x98vƐ\\xe3\\x9b\\x15[c\\x17\\x91\\xbd\\xc8\\xfd\\xfd\\xc8X\\x87j\\xce\\x18\\x9f\\xa7\\x11ݶ|\\xeb\\xfdn\\xd4\\xe4~\\xdb;\\xaeu?\\xaa\\xc8{\\x11B\\xef\\xa3W͵F.\\x0e\\x98\\x0f \\xc0=\\x1d\\xae\\r\\x8d\\u007f7}\\xa5\\xbf\\x0e>\\x90\\xde*@p\\xbc\\x81!\\xee'Xz\\x06\\x82c\\xcea\\xf0\\xb4K\\x862\\xf3\\xad\\x84\\n\\x9d\\x1eA\\xbaz\\xaf\\x1edKv\\xdbB\\xbe&o\\xc1آ\\x1f=t\\xb0\\xbd߽\\x19\\x98\\x94\\x0e\\xb0.D\\x87\\x80\\xacn\\x14\\be^\\xc0\\xb0\\xcb;XV\\xd5\\aǱL\\x05ϼgP\\xe6\\xdei\\x0e\\x15\\x16\\xdb\\x06\\xe9\\x8a\\xfa\\x04\\xd92\\xdcb\\xc8\\xd7\\xe6u\\x86֊^U\\xd5T\\x1b\\xcd\\xc5QL\\x000\\xef+j\\xd5\\x1a\\x19\\xccY\\v\\xf0\\x8fM1\\xf9\\xcd\\x1bI\\xc6\\u05fd\\x11\\x11\\xc0\\xfc7\\xb6u\\x931\\xb7\\v\\xfc\\xf3\\x94q{S\\xe2\\x91D\\x0e'(~ΈB7\\xe7\\x81\\rZ\\x8e\\xc8\\xfd\\x11@\\xe1?\\x12\\xe1\\xc1C\\xeb\\x04\\x03\\x19[\\xcbe\\x87n(\\xd2\\xd6\\xce\\x19hYӿW\\x1b%\\xb7;Y6\\x9fz\\xb3\\xc2K҉\\xb2\\x1b\\xd8>\\\"\\xea\\x05\\xedQ\\xd2R\\x99km\\xbd\\x9a}\\xb3\\x17\\xc4[JyR;\\xcc\\x1fW\\u007fQL-OW\\b\\x1f\\xb7У\\x18ժ\\xe1KܐkZ\\x19\\xe6\\x8dS\\xd4\\b\\x04\\xf2\\x8b\\xc6l+\\xc2x\\xc7$\\xb1\\x19?k\\xe4O\\x03-\\x82\\xb3e+\\x14!\\x19\\x80\\x9aI\\x9b8\\x90qET\\u007f\\xf7*\\xc8$!\\x96\\xf0&3K\\x189ex\\xf6\\xcfAG\\xb4\\x96'$\\xcaГCf\\x1e\\xfa6K1!\\xa9\\f\\xde䪰`խ3kFVm8\\x12\\xe9\\xb3Oע\\xa8:t\\x82\\xae\\x91\\xf6\\xac\\x15\\x99Ɣ\\xe3߀9\\xd8\\xe7\\t\\xf27H,~\\x05\\xe4\\xf0\\v\\xfd\\xdf\\xf4\\xfc\\x87\\xa3k`\\x01\\n!\\x18A\\xa11\\xd88\\xbf\\xdaRic\\x1d\\x80\\b\\x13ʸ\\x90J\\x1b븞\\x1f\\x84Q\\x9c\\xa4Y^\\x94Uݴ]?\\x8cӼ\\xac\\xdb~\\x9c\\xd7\\xfd\\xbc\\xfc\\xf8\\x03\\x00\\x82\\xfeߘ\\xdf9Q\\x18\\x1c\\x81D\\xa11X\\x1c\\x9e@$\\xad\\x98k\\x9fB\\xa5\\xd1\\x19L\\x16\\x9b\\xc3\\xe5\\xf1\\x05B\\x91X\\\"\\x95\\xc9\\x15J\\x95Z\\xa3\\xd5\\xe9\\rF\\x93\\xd9b\\xb5\\xd9\\x1dN\\x97\\x9b\\xfb\\x176\\xef\\xcc/\\xaf\\x00\\b\\xc1\\b\\x8a\\xe1\\x04I\\xd1\\f\\xcb\\xf1\\x82(Ɋ\\xaa\\xe9\\x86iَ\\xeb\\xf9A\\x18\\xc5I\\x9a\\xe5EY\\xd5M\\xdb\\xf5\\xc38\\xcd˺\\xed\\xc7y\\xf9\\x02\\xae\\xfb\\x03\\x00!\\xf8ˤ\\x850\\x9c\\xf8_\\x17\\x99B\\xa5\\xd1\\x19̽?\\x9b\\xc3\\xe5\\xf1\\x05B\\x91X\\\"\\x95\\xc9\\x15J\\x95Z\\xa3\\xd5\\xe9\\rF\\x93\\xd9b\\xb5ٗ\\xab\\xf5f\\xbb\\xdbǔ\\xa5\\xa8\\xa9\\r\\xa2\\xe9\\x86i\\xd9N\\x97\\xdb\\xe3\\xf5\\xf9\\x01\\x10\\x82\\x11\\x14\\xc3\\t\\x92\\xa2\\x19\\x96\\xc3\\xe5\\xf1\\x05B\\x91X\\\"\\x95\\x15\\xd2A\\xa1T\\xa95Z\\x9d\\xde`4\\x99\\v\\xdfz\\xb1\\xda\\xec\\x0e\\xa7\\xcb\\xed\\xe1\\u007f\\x87?\\u007f\\x00\\x10\\x82\\x11\\x14\\xc3\\t\\x92\\xa2\\x19\\x96\\xe3\\x05Q\\x92\\x15U\\xd3\\rӲ\\x1d\\xd7\\xf3\\x830\\x8a\\x934ˋ\\xb2\\xaa\\x9b\\xb6\\xebQ\\x1e\\x8a(\\xccG\\x93\\xd9b\\xb5\\xd9\\x1dN\\x97\\x9b\\xbb\\x87g/\\xf5\\xb62\\x00\\x10\\x04\\x86@ap\\x04\\x12\\x85\\xc6`qx\\x02\\x91D\\xa6Pit\\x06\\x93\\xc5\\xe6py|\\x81P$\\x96Her\\x85R\\xa5\\xd6huz\\x83\\xd1d\\xb6Xmv\\x87\\xd3\\xc5U\\xfe\\u007f\\x82\\a\\x80\\b\\x13ʸ\\x90dE\\xd5tôl\\xc7\\xf5\\xfc \\x8c\\xe2$\\xcd\\xf2\\xa2\\xac\\xea\\xa6\\xed\\xfaa\\x9c\\xe6e\\xdd\\xf6\\xe5j\\xbd\\xd9\\xee\\xf61e)j\\xc4ul\\x86$-=#3+;g\\xae\\xdcy\\xf2\\xe6\\xcb\\x0f \\u00842.\\xa4\\xd2\\xc6:\\xae\\xe7\\aa\\x14'i\\x96\\x17eU7m\\xd7\\x0f\\xe34/\\xeb\\xb6\\x1f\\xe7u?/?\\xfe\\x00\\x80w\\xf0\\x1d\\x18\\x02\\x85\\xc1\\x11H\\x14\\xfa\\xe6\\xbc\\xc7\\xe2\\xf0\\x04\\\"\\x89L\\xa1\\xd2\\xe8\\f&\\x8b\\xcd\\xe1\\xf2\\xf8\\x02\\xa1H,\\x91\\xca\\xe4\\n\\xa5J\\xad\\xd1\\xea\\xf4\\x06\\xa3\\xc9l\\xb1\\xda\\xec\\x0e\\xa7\\xcb\\xcd\\xdd\\xe3\\xf9\\xe5\\x15\\x00!\\x18A1\\x9c )\\x9aa9^\\x10%YQ5\\xdd0-\\xdbq=?\\b\\xa38I\\xb3\\xbc(\\xab\\xbai\\xbb~\\x18\\xa7yY\\xb7\\xfd8/\\xd7\\xdb\\x03@\\x84\\te\\\\H\\xb2\\xa2j\\xbaaZ\\xb6\\xe3z~\\x10Fq\\x92fyQVu\\xd3v\\xfd0N\\xf3\\xb2n\\xfbr\\xb5\\xdelw\\xfb\\x98\\xb2\\x145ɑd\\x14U\\xd3\\rӲ\\x1d\\xd7\\xf3\\x01D\\x98PƅT\\xdaX\\xc7\\xf5\\xfc \\x8c\\xe2$\\xcd\\xf2\\xa2\\xac\\xea\\xa6\\xed\\xfaa\\x9c\\xe6e\\xdd\\xf6\\xe3\\xbc\\xee\\xe7\\x15\\xc6o\\xfe\\x00\\x02\\xeb\\a\\x02C\\xa008\\x02\\x89Bc\\xb08<\\xc1\\xb8\\xa2$+\\xaa\\xa6\\x1b\\xa6e;\\xae\\xe7\\aa\\x14'i\\x96\\x17eU7m\\xd7\\x0f\\xe34/\\xeb\\xb6\\x1f\\xe7u\\xbb?\\x9e_^\\x01\\x10\\x82\\x11\\x14\\xc3\\t\\x92\\xa2\\x19\\x96\\xe3\\x05Q\\x92\\x15U\\xd3\\rӲ\\x1d\\xd7\\xf3\\x830\\x8a\\x934ˋ\\xb2\\xaa\\x9b\\xb6\\xeb\\x87q\\x9a]\\x83\\xa0:\\xd1\\f\\x02\\xeaEJ\\x88\\xb6\\x12[\\x105\\xae\\xc1\\x89\\xea\\r\\x16j\\xb3O\\xd2\\xc6\\xc4{_\\x01\\x13\\x9a韊\\xae\\x02\\xa6̃\\x04\\xc5-\\x94v\\xb2\\tD\\x8d+d\\x9e6\\x83\\xe8\\xcfzHN\\x1b\\xd2\\x1fRx\\x1f^-\\x94\\x05\\xf9&\\u038d{\\xa7 Y\\xe3\\xd6,c\\xea\\xd5\\x1f\\xe1\\xd3\\xc8a\\x8cg\\xfd\\xd3,\\xa6\\xda\\xe0.\\xb1\\xaf\\xa3\\x1d(\\xbda\\x1b\\xa7%\\xe6щ\\xe9X\\xab\\x90\\x8d\\xc7|\\xee\\xc4\\x19Ng\\xc0\\x05\\x0ef\\xc6=\\xdb_Ś\\xa8c\\x10ﭐ\\x1b\\xeco\\r\\xbbn\\xbd=\\x8e\\x1du\\vYE\\xbc\\x15\\xec\\xa4ؼ~\\xc3i#sj\\xc7B.q*\\xfeqp\\xbe\\xefX\\x94\\xa3_u\\x95|\\x1d\\xd3\\xe7d\\x81ɗϏ\\x8dBq\\xd2\\xe9\\x0eߦ\\x18\\xcb\\xe3\\x8cO\\x9b\\x97\\xd7\\xd5t\\xa3\\xaa{\\xdb\\x13\\xd5\\xe4\\x8c\\xe1>\\x12\\x8e\\xb6\\xada\\x1c\\x98i\\f\\x1c J\\x99\\xb4\\xa5=\\xc7\\xdf\\\\S\\x12o\\xda^|\\xc1\\xa2\\x03\\x18q\\xfb\\xa0\\xa6\\xc5`\\x1e2\\xfb\\xd3Kj2\\xf1\\n\\x89Ө\\xc1\\xaaGg\\xd649g\\xe5\\x01,\\x85\\xc1Ρ\\xfd\\xa7\\xe8\\xb3\\x04\\xbd\\xb5\\xb6\\xc4\\\\\\x00\\x85\\xef?e\\x9e\\x06\\\"\\x8dL\\xf3Xr\\x84#\\xce\\x01'\\x01\\x83\\xf9\\x8f_\\x93y\\xa9\\xf205\\x8d\\xf1\\xaa\\x8f/b\\x94\\xaaf+\\x16\\xb5\\x1bCF*\\xe4\\xa7Jc:\\xe3\\xc6\\xe8\\xcd\\xe4\\x9e4\\x18O\\b\\x15\\n|\\x19\\x95\\xdav;PR/\\xde\\x0f%\\xb3\\x9fv\\x8b\\x8c;VUT\\xd3\\xf5\\xf2f\\x12_\\x8dI\\xe9\\xd6\\xee4\\xe0\\xdd\\x01\\x12m\\xfd7V㪂\\x92\\x99B&\\x8a\\xf8\\xc6`\\x92\\x84\\n\\x94ޮ\\x1aĺww\\xf4.\\xa9\\xae\\x81,\\xe4c\\xbf\\xd4\\xed\\xd9_@,y\\xb7\\xe8\\x1f\\\"\\t=l\\xd4\\xe3(\\x92AV\\xf7\\xd6̉trC\\xe0\\x9d$\\x83D\\xe2r`\\xe8<\\xd1ƄE\\xd7z\\xfb\\xf2j\\xc4\\xd9\\xfa\\xba\\n\\xb5\\x01\\v\\x15\\x1c\\xfc\\x1a*\\xce\\xfd\\xe9\\x18\\xb7\\xb6\\u0083\\xa9;֫\\xdds\\x91\\xd4M\\xeeU\\xc25 g'\\x0fx>\\xfb\\xc7\\xd9c\\x99\\xd4NR\\x94\\x8a\\v1-\\xdd\\xd6i7\\xdf'\\xc9;l浪LB\\xf5\\xf2*\\x11\\x9d\\xbe\\x1c\\x92 ]\\xc4\\a>\\xfc\\x88\\xe0d\\xf0?\\xaeړ\\x02\\xdd6\\xbe\\xe5C\\x87\\x1dY;\\u007fb\\x94_\\xab\\xb9ƞ9P\\xb6\\xdfݳ>\\xdf\\xe6-\\x92\\xb8\\x86\\x82m֚\\xd8I\\a\\xaeB\\xaf\\x88F\\xa3\\xb9\\xa7\\x01\\xa5\\x87}\\x92Z3%\\x9b\\x02)\\x9d)Xn^\\xccM\\xda\\x1b\\xf1q\\r\\x89\\x834r9(\\xe2Mm\\xbf\\xd45\\f\\xb5N\\x99$v\\x92\\u007f\\xa6o.XZ6\\xf2U\\xeb\\x99\\xd7a\\x8fD\\xcaE(\\x14\\x9eL!\\x90K\\fUg\\xdcư\\xd0\\x05,\\xe6Q\\xa0\\xd4z\\xa3?'\\xf7\\x8c\\xe3D\\xa6\\x80\\xb0G'\\xe6s\\x17k`\\xf5\\xc1ƽ\\xec\\xbc-\\xf7\\xec\\xdbx\\x13׃\\x9aZs5t\\x84\\xdeb\\xc3f\\xef \\xa7\\x1d\\x8f~\\x1fO%f\\f\\ts\\x1a&ǿ\\x15ϓ\\x9f\\xdd>I!\\xf6\\t\\x8b|\\xad\\x16\\xebA=\\xbaxD\\xa3\\x863\\x9d[\\xf1\\xebE\\xd4_\\x98v\\x14G\\x1e\\xe8ȵ=J\\xa46\\x98\\xb6\\xe2\\x93qڝ\\x14>\\xf4\\x86I\\xda\\xfb\\f\\xa2\\xd7<\\xf5\\xe5\\xf7\\x15r\\x1a\\xd4\\xe7S\\xbe-1\\x06-&@\\xcb\\x0e\\xc0\\x18\\xb7t\\xa1\\xe3\\x99\\x01\\x9a\\x00\\x8c9ζ\\x9d\\xd26\\xafG;q\\xb8(\\x87ݽ\\r?\\v\\xd3\\xf8\\xeb\\xeae\\xd03\\xc2\\xdc\\x0e\\xb3\\x88\\x90\\xb63*\\x17p\\x14Ƕ\\xe2u\\xe6-\\xb8v\\x1d\\xbc\\x8c\\x03S\\xff\\xe5\\xf5\\xac\\xa8\\xe9n\\x89\\x19\\f=\\xd3zǤ\\x94\\xfa\\xa2\\xeeE\\x90\\x1bq\\xa2a\\xf1\\xe0\\v(\\xf9>\\x1dY\\x05R^M#U\\x8f\\xe9t-p\\xa1ĵ\\xa9ݺ\\xc8\\u058c\\xf1\\xaa\\x13g\\xb9\\xef\\x84>H-j9|@?\\xb7/\\xb5m\\x85F:g\\xff\\xfd\\xcb\\x04)\\x8a4\\x86\\xaex\\xc3Z\\x85\\xbe\\xa6\\x94W\\x99=C\\xfa\\x1b\\xf86)A\\xbby\\x91|\\x16[I\\xdb帑\\xff\\x8e\\xfc\\xad/\\xeaߎq\\x1e\\xf5=]s\\xcflP\\xeb\\xa2}\\x9eLՑ\\x81\\x14\\x80\\xd2\\x19\\xc6\\xd7bt\\xd1ؒ\\xcba\\xc5\\xc0w7\\x9cO\\xeb4zY\\x03/9A#\\x99h\\xa0\\x81\\xf11)q\\xc8ϙ':\\xaf\\x88f\\xdf\\xed\\x86F`q:\\x1f\\x8b\\xf5{\\xfeL\\xb0d\\xfb\\x0e\\xad\\xb5\\x02\\x94eL\\x9f\\x92v\\x8d\\x93\\x9a\\x195\\xea\\xc7V\\x1fD\\xe3\\xfd\\x1f\\xe5\\xfb[\\x9e\\xfc\\xcd\\xd75\\x8d\\x89\\xa9_U\\x80\\xd2\\x1f\\r\\xb4By\\xacX\\x88\\xf0\\x12\\xce\\xec\\xf95\\xc9\\x1e\\xf5\\xe4\\x83\\x1d\\xf7\\xa5\\xb7\\xe7\\xf7\\xa4\\xf1靴ħh]ơ\\x8c]7\\xef\\xf0\\x84\\xf5_kܑ\\xa9Y\\xbd7nhi\\xc2U:\\xaa\\xb8\\x967ݸs\\xf5\\xc0\\xdb\\x1e\\x1f\\xd5.^kn\\x10q\\x1cW\\x86)\\xc52=߂\\x89\\x91\\x00q\\xba3=\\xf8\\r\\u007f\\x1d\\xde\\x1e\\x05˛\\xe7\\u05fd\\x17\\xa6S\\x96\\xbe\\x19\\x1c\\xfd\\x84\\xe4\\x133\\xdd\\f\\u007fz\\xee©H\\x0e\\x12\\xa7mn\\x89O#\\xfd\\xa4\\xb0z\\x11\\xd6-\\xc6+2\\xdd\\x04\\xda\\x14\\xfe\\x94\\xecVD\\xbd\\xc2\\xf1\\x89V\\x9f\\x85\\xdc_àr\\xadi\\x1c7\\xb4[$~$\\x14\\xfc!\\x15+t\\x81\\n\\x91\\x9c=\\xf6\\xe4t1I\\x9dJ\\xdd!t\\xa2\\xd7\\xc36\\xbb\\xcbԋ`I\\xf2L\\xd0u\\x8f=\\xae\\x93(\\x90 \\xe3\\xb7\\xed\\\\\\xe6U\\xafΉ%\\xd9i@\\x96Dj\\xe0\\x1fIq\\x82ҿ\\xb6&H\\x8d\\xbf\\x1bޟ\\xad\\xb5?+\\xdfj]#Kj<\\x19՚\\xcc3\\x0f\\x0f?v\\x87\\x99\\xcdի\\x8c\\x02N \\xfbɑ\\xc9ܐS\\xa1\\xcay\\xabS\\xbb\\x13h\\xd5\\xe3 \\x9d\\x12E\\x1c\\xb8N[\\x17\\x96\\xfa\\x9aZO\\x11\\x1b\\x8dJ\\xc2$\\x15\\xe1\\xb0\\x1bJE\\x9c\\x98\\x12*\\xe5\\x9cY\\xe95\\a\\xaf8:V\\xf5\\xbf-n\\xfb\\x96\\xacF\\t\\x04\\x87\\x97*E\\U0008480d\\x98\\x16\\xdcA\\xaeW\\xc8\\xd3\\x1e[\\x9f\\x8a\\x15k\\xbcrLb\\xa5/\\x18\\x95|\\f{\\xd5[\\xf6\\x9f\\xb0\\x94\\xc8\\xe1\\x88>\\x83\\x86\\xf0\\xbf\\xe5\\x93\\xd0á\\x9c\\xd6\\x04Ժ\\xa0\\xc6S\\xaf\\xa9\\n\\xc52I\\\"}\\xec+@\\xe9\\xf3\\xb9L(\\x88\\xe9\\x0264\\xc6H8\\xa2\\xb3ͱ\\xb4n\\xb4\\fW\\xc3\\xf9\\x9a\\xeb\\xef\\x1e\\x9eN:\\u07b8/\\x93Y\\v\\xea\\x9bt\\xc8=<\\x9b\\x1c\\xb7\\bT\\xf37f\\xaa\\xff\\xd7Z\\xa4E??x\\xcd\\fw\\xd2\\v\\xac\\x99\\xff#PS\\xa1D\\xf0\\xca\\xc9ֲ\\xe4\\x9ft\\xf0\\xeb\\xc1\\x12\\xcce\\xb4S;\\x0e\\xbf\\x96\\xf0i\\xa4\\x16\\xedAڏ/\\xd2jU\\xe7\\xf7\\x1f\\xc0n\\x86^\\xf5<\\xee\\x01w\\x8f\\xaf~\\x13V\\x89\\xdb\\x05\\x8f]\\x17\\xb2\\x85\\xf8\\xa1t~\\x1c`C\\xa6\\x87c\\xa8\\x91fc\\xe9\\xa1{\\x18\\x8a\\x12Z~'\\xdaH\\xc3H\\x0e\\x00\\xad\\xb2\\x1c\\xb7q\\x8bT)\\x97\\xe9llŬ\\xaaM?\\rS\\u007fQ\\xd3\\x196&kh\\x86vIҌ\\x17\\x10#\\xfdS\\x97\\x05\\x1cC\\x9dZ\\xf7\\x10ry\\xdf\\x14\\xab\\xd9\\xe7!\\xdb\\u007f\\t\\xfd\\x18\\xe94\\u05eb\\v\\x1c\\x90\\x92\\xc1\\xaf\\x82\\xb2\\xd8\\xcdS\\x13\\xe4E\\xd2@݅\\xeb\\r?\\x80U\\x0fk\\x06\\xd6W3\\xf2#\\xb0\\xbbm\\xe4\\x9d\\xc3V\\xc7\\xfc\\xc5\\xc5\\xf6E\\x06\\xda\\\"\\x99\\x05\\xce\\\"\\xe9\\x9b[d@)\\x81\\xb3\\xa5\\n\\\\\\xa6Z\\xe2\\x03u\\\\X\\x98\\xe9\\u007f\\xe9\\xb4b^\\xde\\x04\\x938$W\\xb7q\\xf7\\n\\xbb\\xfd\\x1f1l\\x03E\\x84\\t<QB%\\xe5\\x0e%\\x87\\x8f\\xdb(\\xf1\\xb5$\\xf5\\x1b\\xa7?pd\\xa5\\xca\\v9\\xc7V\\xdch\\xe1\\xbd\\x04\\xbf\\x80̴'%3`\\xd7-P\\x14hj\\x82\\xb4\\xec[\\xf4c\\aF\\xcaԝ\\xe0\\xc4#_\\x15\\xf5{\\xdd\\xc9I\\x89\\xb7\\xe3\\u007f\\x0e\\x02\\b\\xb85\\x1d\\x10Mǯ\\xc7Rt|\\x8f\\x90\\x98\\xff\\xa1\\xb4\\x88\\xfa!m\\x18\\xbev\\xe9\\x14\\xd1\\xfcq%\\xa9~ \\xf0\\xa7\\xec\\xe5/\\x85\\xbfIr\\xf8>kѼ*\\r\\xca\\xccvq-ǀQ?/.\\xfbs\\xecEb\\x85\\x01\\xb3V\\xe9C\\xfd\\xac\\xdf#U\\xa0\\xf4\\x81G¶\\xd2\\xe3.\\xf1\\xb0\\x0fV=>\\xe8q\\x9d\\xab\\xd6}\\x9bP\\xe4\\x14p\\xc7H\\x97X\\xccZ\\xb9\\xa5k+6\\xe6ؘ\\x94X8&E\\xe90\\xec\\xa7~\\xa7%\\xf3;\\xb2G\\x9e\\x17x\\x8c*T\\x90G\\xbd\\xa0i\\x1c\\xe3[#\\r\\x81n28\\xe0\\x96C\\xc1\\f\\xcd\\x11\\xab\\xc0\\x03+\\xce\\xe7\\xec~\\xd5k\\x81\\x18\\xc8E\\xf4\\u007fx8\\x8f\\xfe\\x9d\\xe2|;'\\x15d\\x98\\x92\\xed\\xaf\\x88\\xff:b\\nC?J\\x9f\\xdb-\\xae(9 \\u007ft(\\x13l0px苚\\x9a0\\xebs\\xeb\\xdc\\xef\\x93o\\xe24x9\\r:{zrP\\x17ox'\\xc9\\x1dǀ\\xc8\\xf0]\\xa5%Ac\\x04\\xf14V3\\xa7\\xc0\\xeb\\x98\\xd4\\xde\\xd9iu\\xc5\\xe2\\x01\\x88\\u05cf\\x88B\\x9c.\\xa5\\xa6\\x00zc\\x85\\xb8\\xd2+\\xc6~\\xa7\\xe2&\\xfb\\x86\\x03\\xf9cԈ\\xc2М\\xad\\x06\\x98\\x92\\xbf\\xb48\\x8fZ\\x18FO\\x87ae<8\\x8a\\x16\\x9e\\x9c\\xd9\\x1f\\xe64\\xb3\\x99\\x83\\x04\\x99\\xcd\\xeby\\xc0\\xb2\\xb5\\x1eS`Ҩi\\x1cɯ\\xfaA\\u007f\\xe5\\xc0\\x8d\\xe8|,\\xf1\\x91s\\u007f\\xe2\\xd7D\\xf2\\xb5-\\u05ed\\xd7ޟOb^\\xcc\\xf5Ε\\xa1\\x9b_\\xdf/jrǍ.Ȏ\\xdb\\xf0\\xeb\\x92R\\xf1\\xa8\\xe9mV\\xac\\x99\\xe7Z\\xf9\\x1a\\xa0(R\\xecq\\xccL\\xd7U\\b\\x9eE\\x9a\\vY\\xcfe\\xaeV\\xba\\xb1\\xff\\x04\\x18%\\xfbֱ_/\\x04S\\x89\\xc8\\r\\xb7J/8\\xecd\\xb2\\a9Sv\\x1e\\xba\\x87_\\xfe\\x94\\xf9\\xa0\\xc2,\\xd5\\xc8n:0\\xa8\\x99\\xafe=\\a,џ\\x94T8vێ\\xaf\\x00\\x92M٤\\xe6\\xf91gC\\x15\\xa2\\xacG\\xa0\\x19\\xf7\\xfdYyb|\\xf8\\xbaN=v\\xb2+|Mm\\x82\\x99<\\xa4\\x98\\xed7\\x8b\\xcd\\xff\\x9e\\x80\\xed\\xce\\xf4\\x9f\\xc7H\\x00\\xf7ɪ\\x91ҩd\\v\\xa2H\\x94\\x98\\x95\\xbd\\xc3Q\\xdf`\\xae\\xc3]\\xb5\\x04u\\x14\\xb7\\xd2&\\x1eY\\xd3\\x1c!\\x87\\xd54\\x1b.\\x94֊\\xdc\\xf6\\xda\\t\\xab\\xc3\\xff_\\x16\\xae~`)\\x8b\\xe7\\x02\\xee\\x94\\xdam\\tPPx\\u007f\\xf1\\x19\\xd7V-\\xe8Ԩ\\xdf$\\x82]7\\xd4\\xee\\xf8\\x19JP\\xb9:\\xbf\\x0e\\xf3\\xfbLa\\xe2ڲ\\u0383\\x93\\x9f`\\xab%\\xa1\\x18\\xd7\\xd3\\t\\x1a\\xf0wrNփ\\t\\x04\\xaaט\\xca\\xf9\\x02\\x86l\\xed\\xd2\\xf3Y%,\\x9fN=H\\x89\\xc5\\x18jGh>;pM\\xdbJ\\xe1\\xa0\\x05\\x03\\xc9\\xc34\\xdeӘC\\xa9\\xf0{-'\\x10Nˢ\\x8f\\x99]\\x02\\x10b\\xde\\x1b \\x8de\\xc1\\xbf\\xf0t\\xad\\x82\\xa7\\x8fHJlw4\\xeb\\xa1\\xdes\\x1e6\\x95\\xb6\\x17\\x9f\\xc7y\\xabB%\\xc4%3Q\\f:\\x03.\\xa1\\xd9Q\\x11\\xa1\\xbbؓ\\xfc\\x17\\xc2X\\xe4\\x1b4\\x8a2\\x16\\xf4\\xb2\\x85\\xbc1t\\x15a\\x8f\\xec\\xfc\\x81_\\xc8|#~\\x0fq\\xe1u\\x9c\\x90S\\f2\\x1b_o\\xe5\\xc1UQBVC\\xf9C\\x1a³\\xea>J o\\xcd$\\xf4\\xb3\\xdb\\x03\\x8a\\x18W\\xd2V\\xe2\\xd4\\xf8\\xfa\\xbd\\\"ƙ\\xf6\\xc0蠲\\xd8H\\xd5OX\\xbd\\xbf4\\xaaH\\xc38\\x98\\xde\\xdb\\xef\\xf3\\xa9}\\xe6\\x1d4\\xfa>\\xe8ψ\\xa2\\x9f\\x1e\\xd7\\u05f5N\\xeaZ\\xb1\\x05\\xa34졠o\\xb3m\\xcf'\\xb2uF\\xf4\\x95\\xb4\\xb1\\xaa\\xb9\\xef0\\xc8ޏ\\xee\\xd55\\x92ͽ\\b\\xc1\\xc4:\\x94\\x9f\\x80\\x84\\xacoctr\\x89\\xf5p\\xd2\\xe1\\xabO\\x01\\x96\\xa6a\\xd2\\xec\\f뱥\\xe7\\xfe.\\xda\\xe0^\\xf5\\xfa7Y@_G\\xf8!\\x06nv\\xf1\\xa6\\xdf0\\xa42\\xa6c$\\x97\\xf0c\\x0f\\xf1\\xc5\\xe1\\xb1?`Z\\x97`r'\\\"\\xb4\\xf5\\xee7&5\\x928fzdU\\xf0\\xfd@*̊{\\xb7\\x18\\xa9\\x1c\\x1e\\x96\\x9f\\xd5\\xf9\\xb1f\\xd2\\xfb\\x0e ޟE(}\\x05wqk\\xf9[ő\\x93\\n\\x87\\xea\\\\\\xe7^\\xd8\\xd6Zy¦\\xf4IZ\\xd2\\xea&D%p(TY\\xc0\\xd3\\xc9\\x14\\xcaH&\\x81!A)\\xc2\\xf5\\x96@\\xe9-\\x96\\x12\\xee\\x93\\xfeVj=>\\xf8\\\"\\xeeʕ\\x9f\\xf5O[\\xe7ZԻ\\v\\xbePo\\xc9l&\\x0f4\\xb2^ր\\x97\\xf5\\xc1+\\xd0b\\xb4@W\\xd440\\xe2f\\xe6\\xdfnf\\xfe-\\xa4 \\xad\\xa9kؒ\\x83\\x8eY\\xe8\\xb8M4\\xce\\x13\\x88\\xe0\\xb3\\x182CͯWՋ\\xe3\\xe6X\\xf8.\\x96XH3\\x81\\x15q\\xb2n\\x85\\xa6?9`y6\\xb7\\xaa\\xc4/\\xfc\\xa82{F1\\xbcwV<֠\\xfa\\xfb\\xf7\\xfa\\xd2\\u0097\\x97\\x98\\xe1:5\\x8dֹ/\\xab]\\x00\\x8b\\x88\\x0f\\x94\\x89\\xf2\\x90\\x993\\x1d~J\\\\1\\x86\\xb8*\\\"'\\xaf\\xa1ݎ\\xaa>\\xf9\\xc6q\\x1c\\x9a?\\xdex\\xd7\\x12\\xe9wl\\x80\\xe5G~\\x1f\\xb7\\xf0}y\\x9f\\xa1\\x1b\\xaa\\xe8\\xa7ҍ(\\xc0\\xd1\\x1bpxX\\x95@\\xab\\x1c\\xc9\\x05ɤ\\xef\\x90@?[;\\xcb\\xd3VJ#\\xa6\\x88-\\xa8\\xf3ۅ\\x86\\xaa\\x06\\xe2\\xd8\\xf3\\x80\\x1e\\xb4D\\xbc\\a\\xa8搴q\\xbe\\xe5Y\\xb0\\xebUv\\x8c\\xd4\\x10G\\xfa\\x15\\x120nN3q\\u007f\\x8c\\xeb\\x01WB\\x9f\\xc2\\xc8\\xf9\\r۟\\xc0\\xf3\\xc9J\\xff\\xf6JPD\\xad\\x00\\x8f\\xac\\xb5\\xc3\\x18\\x9a~\\xf3\\xb2\\xe4\\x93~\\xf6,[\\xc7\\xd7!p{Z\\b\\u0602\\x17>h_.a\\xfe\\x1b\\xbawŕ\\x81һ\\xe0\\\\#\\x9f\\\\yelyz\\xe7v\\xa8~\\x06R&\\x0e\\x1f\\xd7e\\xec\\xebذ\\xa2O\\x8a[x\\x10-_}\\x988\\xf3:\\xae\\xf1\\xa41\\xefhNY\\x1c\\x9c\\x1b\\xa7\\xd29c\\x96i!w\\x9e\\xadH\\xf7\\x1d\\xb6/\\xf4^\\x82\\x86`B\\x1e\\x82+p\\xa2l_#o\\x99\\x81\\xdd;jw\\xb2>,\\xe7N\\xe2KX\\x1d\\x15\\x92\\xe6L3J\\x03\\xa9^\\\"i\\x9f0;\\xaa\\xfa\\x90\\x140H\\xbc\\xba\\xe1أ\\xe7\\xacm w\\x90\\x8b\\xadi.Piy#?BӔ\\a\\xaa\\x9f\\xca\\xcfO\\x8f3; \\x81\\xd4\\xd5\\xfb\\xe9\\\"r\\x0f\\xc4\\xe9NÁ\\ftʄ1\\xd4E~\\x829o\\x8f\\x82\\x10\\xdfз\\xc3\\xe4\\xeaq\\x1d0\\xd5~t\\x81\\x04,\\u070fŉDQ-\\xe6\\x1a\\xe0%\\xeeף\\xf5\\xd0b4B\\xb7\\x0296\\xbbõ\\xec;\\xe9\\xe2߭H\\x86t層\\xaaܱ\\xa4\\x94B\\xb9\\xfaz\\uf680\\x02͏\\xebr\\x18\\xbd\\xaa\\x81aܕ \\x01\\xdeUE\\xf2\\x1d\\x14`[\\xbf?I\\xc1\\x8al%!\\x1dh\\x1e\\xcaX\\xb9\\xa1Uwv\\xe5\\xd2$V\\v\\x8b\\x98\\x04\\xe9$\\x16\\xe9\\xa4sNL>\\xb3\\xbc\\x88a\\x9f\\x90\\xc2ʷT\\x80\\x12}I\\xa0\\xe6\\xfb=\\x00\\v\\xbdT\\x19UJq{?\\x9b\\xb5\\xf0\\x03i\\xber\\x95ɹ\\x80\\xc8!\\xf1\\xe5\\xa5Td\\xeay \\xf2\\xe8N\\xf9\\xe1\\xee\\x15\\xc3>Ҥ\\xeb\\xd1\\\"\\xf0 \\x9bkt\\x9f\\xf7\\x01\\xa6^\\x14\\x8a\\xe4\\xeb\\xb8F~\\x90Y*d\\xe4>\\x01\\xdbl\\xa9\\xc2\\u05ebDh\\tL}\\xfaS\\xc3bN\\xfa6Rq;\\x8f\\u007fhohlk`=\\x99\\x16n+\\\":\\xcbک\\x11d\\xd6\\a\\x1f\\xa7\\x98Q\\x1f_\\xca\\xc2\\\"\\x14\\x96\\xb4\\xed\\xf3\\x0e\\xd4\\x1d㊛⏕\\xa1\\t\\x8a\\u007f|vE\\\"HRS`v\\xe6i\\x8b\\xb5\\x88^\\aWz{]\\xf7q*\\xee\\xc1\\xb1\\x1b\\x06Ɗ\\xa5\\xf90\\x95\\xfbǧ!\\xf9`7\\n\\xb3\\x85/\\xf0\\x89\\xed7P\\x12\\xf6\\xd3\\xf9\\xbb\\xbe\\xa3nC\\xa00p\\xf3\\xd6\\x05\\xa5*\\xaem\\xd8\\xfe\\xff\\xa4\\u007f\\xde\\xe3\\x9e0\\xc7\\x17jA)\\xb6\\a\\xdbR\\xea+\\x13\\xa06\\xb7\\xbfV[\\xcbѤ\\x99\\xdbU\\x1a\\xfc\\r9\\x8b\\xc5C\\xf0\\xbb\\x1b$Y\\xf8\\xb5\\xa2,\\x1f\\x19\\xb0\\xba`!\\xee\\xac9;\\xc0q\\xb3\\x87\\x8b\\xc0u5\\t\\xe5\\xf7k\\x9bI#\\x81\\x14Yl\\xe6\\xfcE\\xee\\xadx\\x974\\xe0.\\x98k>)T\\xae\\xf5\\xd1y\\x9eR\\xa0é=ZQ\\xf13\\x83\\xe7\\x88v\\xea\\xff$\\xf0\\aɋ\\\"(\\x81\\rRuPW\\xd8w\\x14\\xecG\\xd6zJ\\xba\\t<\\xa0\\xf2\\xc6hTO\\x86\\xab\\f\\xbb\\fZ\\xa0ZQ\\u007f\\xfe\\x97m\\xf6\\xff\\xfb\\xcf9\\xb7Z\\x98\\xabܵ\\xce\\xddN\\x88rwN\\xa7-\\x99\\xaa \\xea\\xdf-\\xe7{\\xfa\\xbbc\\x0e\\v\\xc5(\\x85\\x1eռu\\xec;i\\xef\\x90s+\\xb8\\x8e\\x0e\\x87\\x8b\\xf5\\xbd\\xacֵ\\x15\\xc9\\xc1u\\x1c5\\xb8\\xd5h\\xd6Z\\xf6\\x04Ŏ\\x99:\\xaf\\xeb-\\x05\\x1bҕ\\xbd#\\xa3?\\x16Y\\x1e\\xfa\\xa7\\xea\\x06\\xb7\\xe1\\xdb\\xefB\\xfbv\\xabE\\x8a\\xe4\\x16\\x9bV\\xe6/\\x98#\\x81\\x04_ɳ\\nY\\x8bY\\x12\\xe9\\\\.L\\x8eA\\xcaN\\xb2'\\xaa\\xaa\\xf3}\\xc6\\xf8ש\\x94\\xe6S&\\x1d\\xc2\\xe2\\xaa\\xe6J\\xd2d+\\xd2\\xd1Խ\\xaa<\\xa2\\x1b澚\\x9b\\x82\\x85\\\"5\\t;\\xf5\\xeb\\xa1\\xcd\\xea\\x02\\x03'\\xbe\\xaf{\\xed\\xe2\\xe9>\\xbdr\\xafQ\\xd1\\xfbο\\xfd\\xf6\\x89mЩ\\xea\\x9cT\\xd3\\v\\xf7\\xa8\\xbe\\x0e\\xe9\\nXU\\xf7.\\xc3v\\xcf\\xfa\\x19\\x17\\x8f\\xf3Ʌ\\vL\\xc3Q\\xf3Wq\\xdf!O\\xfe8\\xe0\\xca\\xeb\\xe3`\\xdf\\xe9O\\u007f\\xec\\x04\\u007f\\xc4p\\xe1\\x16\\xb4\\xf4\\xf3ZV\\xa8\\u007fmS0\\xd3\\xc0\\xaa+\\xbe\\x8e\\x1b\\x1aΚ{\\x1fL(\\xae%0\\xf3\\x92\\xb6Q )SZ\\xa8\\xbdЮN{([a1\\x17s\\xd2_LC×ʽ\\xf6~\\x9c0\\x97\\xcd+\\x03\\x93R\\xdf\\xd6J*\\xe4\\xa1\\xeb\\xe56\\xb3\\xe2F\\t\\\"\\xb5%\\xd0|\\xa3\\xd8F\\x17\\x88\\xa9o\\xad\\xf5\\xa0Q\\xe0o2%d\\xbf;\\x1f\\x00\\xae\\xef]\\x1cu\\x16\\u070f\\x03\\xae\\xba\\x91L\\xa4\\x98/\\xb3\\xa0z\\x8d$\\xf6w\\v\\x9c\\x98\\xba\\xb1\\x95\\xc8da<r\\xadmȝ\\xa4\\x8b\\xce\\xe0\\xf6a!\\x95\\x96k-[f\\xd9Ch|\\xd7}\\x00\\x9c\\x98\\x8b\\xd3}\\xd0\\b*[;\\xe0\\x02\\x85\\x1e\\xda7\\x95\\x0eO\\xe8\\x84i?\\x15\\xf7\\xd0\\xf2rᱦ\\x12[$\\x95\\xbc\\xdep،Q?D\\x87\\x9a>\\t\\xe4w\\x94\\xde\\xdf\\xe9\\xe0\\xfa\\tE\\xc9\\xd4R\\xefO\\x0f\\xe5\\xcaָ{\\xdf\\x19ۇ\\xd2\\x03#V\\x99\\x1b;\\xb3C\\xdc~\\xe2\\\"L\\x80,\\x91Z\\x06\\t \\xdf\\xf1\\\"%&r\\xb6\\xcdÃ-\\xaf\\xe0\\xf4\\xb8\\xde\\xdac\\x1e\\x1c\\xfb\\xf3\\xd4Lj\\xf27\\x86Rb\\x02\\x18:\\xd83\\xa0\\xaf\\n\\u07ba=\\xd5<\\x8c\\x8d@\\x8ap\\xbf\\v1v\\xb5~!\\x91I\\xc7\\xe4q\\x98-)\\x9f\\xf2币\\xc51\\x16t\\x95᳝ߡ,P\\x9a\\xe4uO\\xab\\xd1dt\\xb1^%\\x92yFqd\\xab\\x1b\\x87\\xb4\\x92\\xee\\xa6\\x1e\\v\\xcd\\xe3<\\xd6\\xc5]\\x85\\x17H\\x18[\\x15\\x1b\\f\\xbc\\x8e\\xaf\\x1e*\\x1c\\xe9Kx\\xed\\xbe{\\xb7\\x96Ž\\xbe\\t̺\\xa3\\xff\\xba\\\\)\\xcfnq\\xbb\\xc2Q俹^a\\xf9\\x01?4M\\xf4\\xbf\\xbb`a\\x1a\\xf5놅iÄI\\xcc\\xfa\\xa4\\x1c\\f\\x88\\u008e\\x85٦\\x10\\xfaXq=v\\xa8b\\xc8\\xd0\\xdd\\xf3\\xd6\\xe6\\xc5X5\\xc1\\x91\\\\\\xdc\\t\\x14\\xdf(]\\x15\\x16&\\x05\\x00\\x00\\x00\"\nvar _Assets0f3873af67026ef9adff5293b531a01d11ae6c96 = \"/*!\\n * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com\\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\\n */\\n.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:\\\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\\\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\\\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\\\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\\\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\\\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\\\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\\\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:\\\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\\\"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:\\\"\\\\f26e\\\"}.fa-accessible-icon:before{content:\\\"\\\\f368\\\"}.fa-accusoft:before{content:\\\"\\\\f369\\\"}.fa-acquisitions-incorporated:before{content:\\\"\\\\f6af\\\"}.fa-ad:before{content:\\\"\\\\f641\\\"}.fa-address-book:before{content:\\\"\\\\f2b9\\\"}.fa-address-card:before{content:\\\"\\\\f2bb\\\"}.fa-adjust:before{content:\\\"\\\\f042\\\"}.fa-adn:before{content:\\\"\\\\f170\\\"}.fa-adobe:before{content:\\\"\\\\f778\\\"}.fa-adversal:before{content:\\\"\\\\f36a\\\"}.fa-affiliatetheme:before{content:\\\"\\\\f36b\\\"}.fa-air-freshener:before{content:\\\"\\\\f5d0\\\"}.fa-airbnb:before{content:\\\"\\\\f834\\\"}.fa-algolia:before{content:\\\"\\\\f36c\\\"}.fa-align-center:before{content:\\\"\\\\f037\\\"}.fa-align-justify:before{content:\\\"\\\\f039\\\"}.fa-align-left:before{content:\\\"\\\\f036\\\"}.fa-align-right:before{content:\\\"\\\\f038\\\"}.fa-alipay:before{content:\\\"\\\\f642\\\"}.fa-allergies:before{content:\\\"\\\\f461\\\"}.fa-amazon:before{content:\\\"\\\\f270\\\"}.fa-amazon-pay:before{content:\\\"\\\\f42c\\\"}.fa-ambulance:before{content:\\\"\\\\f0f9\\\"}.fa-american-sign-language-interpreting:before{content:\\\"\\\\f2a3\\\"}.fa-amilia:before{content:\\\"\\\\f36d\\\"}.fa-anchor:before{content:\\\"\\\\f13d\\\"}.fa-android:before{content:\\\"\\\\f17b\\\"}.fa-angellist:before{content:\\\"\\\\f209\\\"}.fa-angle-double-down:before{content:\\\"\\\\f103\\\"}.fa-angle-double-left:before{content:\\\"\\\\f100\\\"}.fa-angle-double-right:before{content:\\\"\\\\f101\\\"}.fa-angle-double-up:before{content:\\\"\\\\f102\\\"}.fa-angle-down:before{content:\\\"\\\\f107\\\"}.fa-angle-left:before{content:\\\"\\\\f104\\\"}.fa-angle-right:before{content:\\\"\\\\f105\\\"}.fa-angle-up:before{content:\\\"\\\\f106\\\"}.fa-angry:before{content:\\\"\\\\f556\\\"}.fa-angrycreative:before{content:\\\"\\\\f36e\\\"}.fa-angular:before{content:\\\"\\\\f420\\\"}.fa-ankh:before{content:\\\"\\\\f644\\\"}.fa-app-store:before{content:\\\"\\\\f36f\\\"}.fa-app-store-ios:before{content:\\\"\\\\f370\\\"}.fa-apper:before{content:\\\"\\\\f371\\\"}.fa-apple:before{content:\\\"\\\\f179\\\"}.fa-apple-alt:before{content:\\\"\\\\f5d1\\\"}.fa-apple-pay:before{content:\\\"\\\\f415\\\"}.fa-archive:before{content:\\\"\\\\f187\\\"}.fa-archway:before{content:\\\"\\\\f557\\\"}.fa-arrow-alt-circle-down:before{content:\\\"\\\\f358\\\"}.fa-arrow-alt-circle-left:before{content:\\\"\\\\f359\\\"}.fa-arrow-alt-circle-right:before{content:\\\"\\\\f35a\\\"}.fa-arrow-alt-circle-up:before{content:\\\"\\\\f35b\\\"}.fa-arrow-circle-down:before{content:\\\"\\\\f0ab\\\"}.fa-arrow-circle-left:before{content:\\\"\\\\f0a8\\\"}.fa-arrow-circle-right:before{content:\\\"\\\\f0a9\\\"}.fa-arrow-circle-up:before{content:\\\"\\\\f0aa\\\"}.fa-arrow-down:before{content:\\\"\\\\f063\\\"}.fa-arrow-left:before{content:\\\"\\\\f060\\\"}.fa-arrow-right:before{content:\\\"\\\\f061\\\"}.fa-arrow-up:before{content:\\\"\\\\f062\\\"}.fa-arrows-alt:before{content:\\\"\\\\f0b2\\\"}.fa-arrows-alt-h:before{content:\\\"\\\\f337\\\"}.fa-arrows-alt-v:before{content:\\\"\\\\f338\\\"}.fa-artstation:before{content:\\\"\\\\f77a\\\"}.fa-assistive-listening-systems:before{content:\\\"\\\\f2a2\\\"}.fa-asterisk:before{content:\\\"\\\\f069\\\"}.fa-asymmetrik:before{content:\\\"\\\\f372\\\"}.fa-at:before{content:\\\"\\\\f1fa\\\"}.fa-atlas:before{content:\\\"\\\\f558\\\"}.fa-atlassian:before{content:\\\"\\\\f77b\\\"}.fa-atom:before{content:\\\"\\\\f5d2\\\"}.fa-audible:before{content:\\\"\\\\f373\\\"}.fa-audio-description:before{content:\\\"\\\\f29e\\\"}.fa-autoprefixer:before{content:\\\"\\\\f41c\\\"}.fa-avianex:before{content:\\\"\\\\f374\\\"}.fa-aviato:before{content:\\\"\\\\f421\\\"}.fa-award:before{content:\\\"\\\\f559\\\"}.fa-aws:before{content:\\\"\\\\f375\\\"}.fa-baby:before{content:\\\"\\\\f77c\\\"}.fa-baby-carriage:before{content:\\\"\\\\f77d\\\"}.fa-backspace:before{content:\\\"\\\\f55a\\\"}.fa-backward:before{content:\\\"\\\\f04a\\\"}.fa-bacon:before{content:\\\"\\\\f7e5\\\"}.fa-bahai:before{content:\\\"\\\\f666\\\"}.fa-balance-scale:before{content:\\\"\\\\f24e\\\"}.fa-balance-scale-left:before{content:\\\"\\\\f515\\\"}.fa-balance-scale-right:before{content:\\\"\\\\f516\\\"}.fa-ban:before{content:\\\"\\\\f05e\\\"}.fa-band-aid:before{content:\\\"\\\\f462\\\"}.fa-bandcamp:before{content:\\\"\\\\f2d5\\\"}.fa-barcode:before{content:\\\"\\\\f02a\\\"}.fa-bars:before{content:\\\"\\\\f0c9\\\"}.fa-baseball-ball:before{content:\\\"\\\\f433\\\"}.fa-basketball-ball:before{content:\\\"\\\\f434\\\"}.fa-bath:before{content:\\\"\\\\f2cd\\\"}.fa-battery-empty:before{content:\\\"\\\\f244\\\"}.fa-battery-full:before{content:\\\"\\\\f240\\\"}.fa-battery-half:before{content:\\\"\\\\f242\\\"}.fa-battery-quarter:before{content:\\\"\\\\f243\\\"}.fa-battery-three-quarters:before{content:\\\"\\\\f241\\\"}.fa-battle-net:before{content:\\\"\\\\f835\\\"}.fa-bed:before{content:\\\"\\\\f236\\\"}.fa-beer:before{content:\\\"\\\\f0fc\\\"}.fa-behance:before{content:\\\"\\\\f1b4\\\"}.fa-behance-square:before{content:\\\"\\\\f1b5\\\"}.fa-bell:before{content:\\\"\\\\f0f3\\\"}.fa-bell-slash:before{content:\\\"\\\\f1f6\\\"}.fa-bezier-curve:before{content:\\\"\\\\f55b\\\"}.fa-bible:before{content:\\\"\\\\f647\\\"}.fa-bicycle:before{content:\\\"\\\\f206\\\"}.fa-biking:before{content:\\\"\\\\f84a\\\"}.fa-bimobject:before{content:\\\"\\\\f378\\\"}.fa-binoculars:before{content:\\\"\\\\f1e5\\\"}.fa-biohazard:before{content:\\\"\\\\f780\\\"}.fa-birthday-cake:before{content:\\\"\\\\f1fd\\\"}.fa-bitbucket:before{content:\\\"\\\\f171\\\"}.fa-bitcoin:before{content:\\\"\\\\f379\\\"}.fa-bity:before{content:\\\"\\\\f37a\\\"}.fa-black-tie:before{content:\\\"\\\\f27e\\\"}.fa-blackberry:before{content:\\\"\\\\f37b\\\"}.fa-blender:before{content:\\\"\\\\f517\\\"}.fa-blender-phone:before{content:\\\"\\\\f6b6\\\"}.fa-blind:before{content:\\\"\\\\f29d\\\"}.fa-blog:before{content:\\\"\\\\f781\\\"}.fa-blogger:before{content:\\\"\\\\f37c\\\"}.fa-blogger-b:before{content:\\\"\\\\f37d\\\"}.fa-bluetooth:before{content:\\\"\\\\f293\\\"}.fa-bluetooth-b:before{content:\\\"\\\\f294\\\"}.fa-bold:before{content:\\\"\\\\f032\\\"}.fa-bolt:before{content:\\\"\\\\f0e7\\\"}.fa-bomb:before{content:\\\"\\\\f1e2\\\"}.fa-bone:before{content:\\\"\\\\f5d7\\\"}.fa-bong:before{content:\\\"\\\\f55c\\\"}.fa-book:before{content:\\\"\\\\f02d\\\"}.fa-book-dead:before{content:\\\"\\\\f6b7\\\"}.fa-book-medical:before{content:\\\"\\\\f7e6\\\"}.fa-book-open:before{content:\\\"\\\\f518\\\"}.fa-book-reader:before{content:\\\"\\\\f5da\\\"}.fa-bookmark:before{content:\\\"\\\\f02e\\\"}.fa-bootstrap:before{content:\\\"\\\\f836\\\"}.fa-border-all:before{content:\\\"\\\\f84c\\\"}.fa-border-none:before{content:\\\"\\\\f850\\\"}.fa-border-style:before{content:\\\"\\\\f853\\\"}.fa-bowling-ball:before{content:\\\"\\\\f436\\\"}.fa-box:before{content:\\\"\\\\f466\\\"}.fa-box-open:before{content:\\\"\\\\f49e\\\"}.fa-boxes:before{content:\\\"\\\\f468\\\"}.fa-braille:before{content:\\\"\\\\f2a1\\\"}.fa-brain:before{content:\\\"\\\\f5dc\\\"}.fa-bread-slice:before{content:\\\"\\\\f7ec\\\"}.fa-briefcase:before{content:\\\"\\\\f0b1\\\"}.fa-briefcase-medical:before{content:\\\"\\\\f469\\\"}.fa-broadcast-tower:before{content:\\\"\\\\f519\\\"}.fa-broom:before{content:\\\"\\\\f51a\\\"}.fa-brush:before{content:\\\"\\\\f55d\\\"}.fa-btc:before{content:\\\"\\\\f15a\\\"}.fa-buffer:before{content:\\\"\\\\f837\\\"}.fa-bug:before{content:\\\"\\\\f188\\\"}.fa-building:before{content:\\\"\\\\f1ad\\\"}.fa-bullhorn:before{content:\\\"\\\\f0a1\\\"}.fa-bullseye:before{content:\\\"\\\\f140\\\"}.fa-burn:before{content:\\\"\\\\f46a\\\"}.fa-buromobelexperte:before{content:\\\"\\\\f37f\\\"}.fa-bus:before{content:\\\"\\\\f207\\\"}.fa-bus-alt:before{content:\\\"\\\\f55e\\\"}.fa-business-time:before{content:\\\"\\\\f64a\\\"}.fa-buy-n-large:before{content:\\\"\\\\f8a6\\\"}.fa-buysellads:before{content:\\\"\\\\f20d\\\"}.fa-calculator:before{content:\\\"\\\\f1ec\\\"}.fa-calendar:before{content:\\\"\\\\f133\\\"}.fa-calendar-alt:before{content:\\\"\\\\f073\\\"}.fa-calendar-check:before{content:\\\"\\\\f274\\\"}.fa-calendar-day:before{content:\\\"\\\\f783\\\"}.fa-calendar-minus:before{content:\\\"\\\\f272\\\"}.fa-calendar-plus:before{content:\\\"\\\\f271\\\"}.fa-calendar-times:before{content:\\\"\\\\f273\\\"}.fa-calendar-week:before{content:\\\"\\\\f784\\\"}.fa-camera:before{content:\\\"\\\\f030\\\"}.fa-camera-retro:before{content:\\\"\\\\f083\\\"}.fa-campground:before{content:\\\"\\\\f6bb\\\"}.fa-canadian-maple-leaf:before{content:\\\"\\\\f785\\\"}.fa-candy-cane:before{content:\\\"\\\\f786\\\"}.fa-cannabis:before{content:\\\"\\\\f55f\\\"}.fa-capsules:before{content:\\\"\\\\f46b\\\"}.fa-car:before{content:\\\"\\\\f1b9\\\"}.fa-car-alt:before{content:\\\"\\\\f5de\\\"}.fa-car-battery:before{content:\\\"\\\\f5df\\\"}.fa-car-crash:before{content:\\\"\\\\f5e1\\\"}.fa-car-side:before{content:\\\"\\\\f5e4\\\"}.fa-caravan:before{content:\\\"\\\\f8ff\\\"}.fa-caret-down:before{content:\\\"\\\\f0d7\\\"}.fa-caret-left:before{content:\\\"\\\\f0d9\\\"}.fa-caret-right:before{content:\\\"\\\\f0da\\\"}.fa-caret-square-down:before{content:\\\"\\\\f150\\\"}.fa-caret-square-left:before{content:\\\"\\\\f191\\\"}.fa-caret-square-right:before{content:\\\"\\\\f152\\\"}.fa-caret-square-up:before{content:\\\"\\\\f151\\\"}.fa-caret-up:before{content:\\\"\\\\f0d8\\\"}.fa-carrot:before{content:\\\"\\\\f787\\\"}.fa-cart-arrow-down:before{content:\\\"\\\\f218\\\"}.fa-cart-plus:before{content:\\\"\\\\f217\\\"}.fa-cash-register:before{content:\\\"\\\\f788\\\"}.fa-cat:before{content:\\\"\\\\f6be\\\"}.fa-cc-amazon-pay:before{content:\\\"\\\\f42d\\\"}.fa-cc-amex:before{content:\\\"\\\\f1f3\\\"}.fa-cc-apple-pay:before{content:\\\"\\\\f416\\\"}.fa-cc-diners-club:before{content:\\\"\\\\f24c\\\"}.fa-cc-discover:before{content:\\\"\\\\f1f2\\\"}.fa-cc-jcb:before{content:\\\"\\\\f24b\\\"}.fa-cc-mastercard:before{content:\\\"\\\\f1f1\\\"}.fa-cc-paypal:before{content:\\\"\\\\f1f4\\\"}.fa-cc-stripe:before{content:\\\"\\\\f1f5\\\"}.fa-cc-visa:before{content:\\\"\\\\f1f0\\\"}.fa-centercode:before{content:\\\"\\\\f380\\\"}.fa-centos:before{content:\\\"\\\\f789\\\"}.fa-certificate:before{content:\\\"\\\\f0a3\\\"}.fa-chair:before{content:\\\"\\\\f6c0\\\"}.fa-chalkboard:before{content:\\\"\\\\f51b\\\"}.fa-chalkboard-teacher:before{content:\\\"\\\\f51c\\\"}.fa-charging-station:before{content:\\\"\\\\f5e7\\\"}.fa-chart-area:before{content:\\\"\\\\f1fe\\\"}.fa-chart-bar:before{content:\\\"\\\\f080\\\"}.fa-chart-line:before{content:\\\"\\\\f201\\\"}.fa-chart-pie:before{content:\\\"\\\\f200\\\"}.fa-check:before{content:\\\"\\\\f00c\\\"}.fa-check-circle:before{content:\\\"\\\\f058\\\"}.fa-check-double:before{content:\\\"\\\\f560\\\"}.fa-check-square:before{content:\\\"\\\\f14a\\\"}.fa-cheese:before{content:\\\"\\\\f7ef\\\"}.fa-chess:before{content:\\\"\\\\f439\\\"}.fa-chess-bishop:before{content:\\\"\\\\f43a\\\"}.fa-chess-board:before{content:\\\"\\\\f43c\\\"}.fa-chess-king:before{content:\\\"\\\\f43f\\\"}.fa-chess-knight:before{content:\\\"\\\\f441\\\"}.fa-chess-pawn:before{content:\\\"\\\\f443\\\"}.fa-chess-queen:before{content:\\\"\\\\f445\\\"}.fa-chess-rook:before{content:\\\"\\\\f447\\\"}.fa-chevron-circle-down:before{content:\\\"\\\\f13a\\\"}.fa-chevron-circle-left:before{content:\\\"\\\\f137\\\"}.fa-chevron-circle-right:before{content:\\\"\\\\f138\\\"}.fa-chevron-circle-up:before{content:\\\"\\\\f139\\\"}.fa-chevron-down:before{content:\\\"\\\\f078\\\"}.fa-chevron-left:before{content:\\\"\\\\f053\\\"}.fa-chevron-right:before{content:\\\"\\\\f054\\\"}.fa-chevron-up:before{content:\\\"\\\\f077\\\"}.fa-child:before{content:\\\"\\\\f1ae\\\"}.fa-chrome:before{content:\\\"\\\\f268\\\"}.fa-chromecast:before{content:\\\"\\\\f838\\\"}.fa-church:before{content:\\\"\\\\f51d\\\"}.fa-circle:before{content:\\\"\\\\f111\\\"}.fa-circle-notch:before{content:\\\"\\\\f1ce\\\"}.fa-city:before{content:\\\"\\\\f64f\\\"}.fa-clinic-medical:before{content:\\\"\\\\f7f2\\\"}.fa-clipboard:before{content:\\\"\\\\f328\\\"}.fa-clipboard-check:before{content:\\\"\\\\f46c\\\"}.fa-clipboard-list:before{content:\\\"\\\\f46d\\\"}.fa-clock:before{content:\\\"\\\\f017\\\"}.fa-clone:before{content:\\\"\\\\f24d\\\"}.fa-closed-captioning:before{content:\\\"\\\\f20a\\\"}.fa-cloud:before{content:\\\"\\\\f0c2\\\"}.fa-cloud-download-alt:before{content:\\\"\\\\f381\\\"}.fa-cloud-meatball:before{content:\\\"\\\\f73b\\\"}.fa-cloud-moon:before{content:\\\"\\\\f6c3\\\"}.fa-cloud-moon-rain:before{content:\\\"\\\\f73c\\\"}.fa-cloud-rain:before{content:\\\"\\\\f73d\\\"}.fa-cloud-showers-heavy:before{content:\\\"\\\\f740\\\"}.fa-cloud-sun:before{content:\\\"\\\\f6c4\\\"}.fa-cloud-sun-rain:before{content:\\\"\\\\f743\\\"}.fa-cloud-upload-alt:before{content:\\\"\\\\f382\\\"}.fa-cloudscale:before{content:\\\"\\\\f383\\\"}.fa-cloudsmith:before{content:\\\"\\\\f384\\\"}.fa-cloudversify:before{content:\\\"\\\\f385\\\"}.fa-cocktail:before{content:\\\"\\\\f561\\\"}.fa-code:before{content:\\\"\\\\f121\\\"}.fa-code-branch:before{content:\\\"\\\\f126\\\"}.fa-codepen:before{content:\\\"\\\\f1cb\\\"}.fa-codiepie:before{content:\\\"\\\\f284\\\"}.fa-coffee:before{content:\\\"\\\\f0f4\\\"}.fa-cog:before{content:\\\"\\\\f013\\\"}.fa-cogs:before{content:\\\"\\\\f085\\\"}.fa-coins:before{content:\\\"\\\\f51e\\\"}.fa-columns:before{content:\\\"\\\\f0db\\\"}.fa-comment:before{content:\\\"\\\\f075\\\"}.fa-comment-alt:before{content:\\\"\\\\f27a\\\"}.fa-comment-dollar:before{content:\\\"\\\\f651\\\"}.fa-comment-dots:before{content:\\\"\\\\f4ad\\\"}.fa-comment-medical:before{content:\\\"\\\\f7f5\\\"}.fa-comment-slash:before{content:\\\"\\\\f4b3\\\"}.fa-comments:before{content:\\\"\\\\f086\\\"}.fa-comments-dollar:before{content:\\\"\\\\f653\\\"}.fa-compact-disc:before{content:\\\"\\\\f51f\\\"}.fa-compass:before{content:\\\"\\\\f14e\\\"}.fa-compress:before{content:\\\"\\\\f066\\\"}.fa-compress-alt:before{content:\\\"\\\\f422\\\"}.fa-compress-arrows-alt:before{content:\\\"\\\\f78c\\\"}.fa-concierge-bell:before{content:\\\"\\\\f562\\\"}.fa-confluence:before{content:\\\"\\\\f78d\\\"}.fa-connectdevelop:before{content:\\\"\\\\f20e\\\"}.fa-contao:before{content:\\\"\\\\f26d\\\"}.fa-cookie:before{content:\\\"\\\\f563\\\"}.fa-cookie-bite:before{content:\\\"\\\\f564\\\"}.fa-copy:before{content:\\\"\\\\f0c5\\\"}.fa-copyright:before{content:\\\"\\\\f1f9\\\"}.fa-cotton-bureau:before{content:\\\"\\\\f89e\\\"}.fa-couch:before{content:\\\"\\\\f4b8\\\"}.fa-cpanel:before{content:\\\"\\\\f388\\\"}.fa-creative-commons:before{content:\\\"\\\\f25e\\\"}.fa-creative-commons-by:before{content:\\\"\\\\f4e7\\\"}.fa-creative-commons-nc:before{content:\\\"\\\\f4e8\\\"}.fa-creative-commons-nc-eu:before{content:\\\"\\\\f4e9\\\"}.fa-creative-commons-nc-jp:before{content:\\\"\\\\f4ea\\\"}.fa-creative-commons-nd:before{content:\\\"\\\\f4eb\\\"}.fa-creative-commons-pd:before{content:\\\"\\\\f4ec\\\"}.fa-creative-commons-pd-alt:before{content:\\\"\\\\f4ed\\\"}.fa-creative-commons-remix:before{content:\\\"\\\\f4ee\\\"}.fa-creative-commons-sa:before{content:\\\"\\\\f4ef\\\"}.fa-creative-commons-sampling:before{content:\\\"\\\\f4f0\\\"}.fa-creative-commons-sampling-plus:before{content:\\\"\\\\f4f1\\\"}.fa-creative-commons-share:before{content:\\\"\\\\f4f2\\\"}.fa-creative-commons-zero:before{content:\\\"\\\\f4f3\\\"}.fa-credit-card:before{content:\\\"\\\\f09d\\\"}.fa-critical-role:before{content:\\\"\\\\f6c9\\\"}.fa-crop:before{content:\\\"\\\\f125\\\"}.fa-crop-alt:before{content:\\\"\\\\f565\\\"}.fa-cross:before{content:\\\"\\\\f654\\\"}.fa-crosshairs:before{content:\\\"\\\\f05b\\\"}.fa-crow:before{content:\\\"\\\\f520\\\"}.fa-crown:before{content:\\\"\\\\f521\\\"}.fa-crutch:before{content:\\\"\\\\f7f7\\\"}.fa-css3:before{content:\\\"\\\\f13c\\\"}.fa-css3-alt:before{content:\\\"\\\\f38b\\\"}.fa-cube:before{content:\\\"\\\\f1b2\\\"}.fa-cubes:before{content:\\\"\\\\f1b3\\\"}.fa-cut:before{content:\\\"\\\\f0c4\\\"}.fa-cuttlefish:before{content:\\\"\\\\f38c\\\"}.fa-d-and-d:before{content:\\\"\\\\f38d\\\"}.fa-d-and-d-beyond:before{content:\\\"\\\\f6ca\\\"}.fa-dashcube:before{content:\\\"\\\\f210\\\"}.fa-database:before{content:\\\"\\\\f1c0\\\"}.fa-deaf:before{content:\\\"\\\\f2a4\\\"}.fa-delicious:before{content:\\\"\\\\f1a5\\\"}.fa-democrat:before{content:\\\"\\\\f747\\\"}.fa-deploydog:before{content:\\\"\\\\f38e\\\"}.fa-deskpro:before{content:\\\"\\\\f38f\\\"}.fa-desktop:before{content:\\\"\\\\f108\\\"}.fa-dev:before{content:\\\"\\\\f6cc\\\"}.fa-deviantart:before{content:\\\"\\\\f1bd\\\"}.fa-dharmachakra:before{content:\\\"\\\\f655\\\"}.fa-dhl:before{content:\\\"\\\\f790\\\"}.fa-diagnoses:before{content:\\\"\\\\f470\\\"}.fa-diaspora:before{content:\\\"\\\\f791\\\"}.fa-dice:before{content:\\\"\\\\f522\\\"}.fa-dice-d20:before{content:\\\"\\\\f6cf\\\"}.fa-dice-d6:before{content:\\\"\\\\f6d1\\\"}.fa-dice-five:before{content:\\\"\\\\f523\\\"}.fa-dice-four:before{content:\\\"\\\\f524\\\"}.fa-dice-one:before{content:\\\"\\\\f525\\\"}.fa-dice-six:before{content:\\\"\\\\f526\\\"}.fa-dice-three:before{content:\\\"\\\\f527\\\"}.fa-dice-two:before{content:\\\"\\\\f528\\\"}.fa-digg:before{content:\\\"\\\\f1a6\\\"}.fa-digital-ocean:before{content:\\\"\\\\f391\\\"}.fa-digital-tachograph:before{content:\\\"\\\\f566\\\"}.fa-directions:before{content:\\\"\\\\f5eb\\\"}.fa-discord:before{content:\\\"\\\\f392\\\"}.fa-discourse:before{content:\\\"\\\\f393\\\"}.fa-divide:before{content:\\\"\\\\f529\\\"}.fa-dizzy:before{content:\\\"\\\\f567\\\"}.fa-dna:before{content:\\\"\\\\f471\\\"}.fa-dochub:before{content:\\\"\\\\f394\\\"}.fa-docker:before{content:\\\"\\\\f395\\\"}.fa-dog:before{content:\\\"\\\\f6d3\\\"}.fa-dollar-sign:before{content:\\\"\\\\f155\\\"}.fa-dolly:before{content:\\\"\\\\f472\\\"}.fa-dolly-flatbed:before{content:\\\"\\\\f474\\\"}.fa-donate:before{content:\\\"\\\\f4b9\\\"}.fa-door-closed:before{content:\\\"\\\\f52a\\\"}.fa-door-open:before{content:\\\"\\\\f52b\\\"}.fa-dot-circle:before{content:\\\"\\\\f192\\\"}.fa-dove:before{content:\\\"\\\\f4ba\\\"}.fa-download:before{content:\\\"\\\\f019\\\"}.fa-draft2digital:before{content:\\\"\\\\f396\\\"}.fa-drafting-compass:before{content:\\\"\\\\f568\\\"}.fa-dragon:before{content:\\\"\\\\f6d5\\\"}.fa-draw-polygon:before{content:\\\"\\\\f5ee\\\"}.fa-dribbble:before{content:\\\"\\\\f17d\\\"}.fa-dribbble-square:before{content:\\\"\\\\f397\\\"}.fa-dropbox:before{content:\\\"\\\\f16b\\\"}.fa-drum:before{content:\\\"\\\\f569\\\"}.fa-drum-steelpan:before{content:\\\"\\\\f56a\\\"}.fa-drumstick-bite:before{content:\\\"\\\\f6d7\\\"}.fa-drupal:before{content:\\\"\\\\f1a9\\\"}.fa-dumbbell:before{content:\\\"\\\\f44b\\\"}.fa-dumpster:before{content:\\\"\\\\f793\\\"}.fa-dumpster-fire:before{content:\\\"\\\\f794\\\"}.fa-dungeon:before{content:\\\"\\\\f6d9\\\"}.fa-dyalog:before{content:\\\"\\\\f399\\\"}.fa-earlybirds:before{content:\\\"\\\\f39a\\\"}.fa-ebay:before{content:\\\"\\\\f4f4\\\"}.fa-edge:before{content:\\\"\\\\f282\\\"}.fa-edit:before{content:\\\"\\\\f044\\\"}.fa-egg:before{content:\\\"\\\\f7fb\\\"}.fa-eject:before{content:\\\"\\\\f052\\\"}.fa-elementor:before{content:\\\"\\\\f430\\\"}.fa-ellipsis-h:before{content:\\\"\\\\f141\\\"}.fa-ellipsis-v:before{content:\\\"\\\\f142\\\"}.fa-ello:before{content:\\\"\\\\f5f1\\\"}.fa-ember:before{content:\\\"\\\\f423\\\"}.fa-empire:before{content:\\\"\\\\f1d1\\\"}.fa-envelope:before{content:\\\"\\\\f0e0\\\"}.fa-envelope-open:before{content:\\\"\\\\f2b6\\\"}.fa-envelope-open-text:before{content:\\\"\\\\f658\\\"}.fa-envelope-square:before{content:\\\"\\\\f199\\\"}.fa-envira:before{content:\\\"\\\\f299\\\"}.fa-equals:before{content:\\\"\\\\f52c\\\"}.fa-eraser:before{content:\\\"\\\\f12d\\\"}.fa-erlang:before{content:\\\"\\\\f39d\\\"}.fa-ethereum:before{content:\\\"\\\\f42e\\\"}.fa-ethernet:before{content:\\\"\\\\f796\\\"}.fa-etsy:before{content:\\\"\\\\f2d7\\\"}.fa-euro-sign:before{content:\\\"\\\\f153\\\"}.fa-evernote:before{content:\\\"\\\\f839\\\"}.fa-exchange-alt:before{content:\\\"\\\\f362\\\"}.fa-exclamation:before{content:\\\"\\\\f12a\\\"}.fa-exclamation-circle:before{content:\\\"\\\\f06a\\\"}.fa-exclamation-triangle:before{content:\\\"\\\\f071\\\"}.fa-expand:before{content:\\\"\\\\f065\\\"}.fa-expand-alt:before{content:\\\"\\\\f424\\\"}.fa-expand-arrows-alt:before{content:\\\"\\\\f31e\\\"}.fa-expeditedssl:before{content:\\\"\\\\f23e\\\"}.fa-external-link-alt:before{content:\\\"\\\\f35d\\\"}.fa-external-link-square-alt:before{content:\\\"\\\\f360\\\"}.fa-eye:before{content:\\\"\\\\f06e\\\"}.fa-eye-dropper:before{content:\\\"\\\\f1fb\\\"}.fa-eye-slash:before{content:\\\"\\\\f070\\\"}.fa-facebook:before{content:\\\"\\\\f09a\\\"}.fa-facebook-f:before{content:\\\"\\\\f39e\\\"}.fa-facebook-messenger:before{content:\\\"\\\\f39f\\\"}.fa-facebook-square:before{content:\\\"\\\\f082\\\"}.fa-fan:before{content:\\\"\\\\f863\\\"}.fa-fantasy-flight-games:before{content:\\\"\\\\f6dc\\\"}.fa-fast-backward:before{content:\\\"\\\\f049\\\"}.fa-fast-forward:before{content:\\\"\\\\f050\\\"}.fa-fax:before{content:\\\"\\\\f1ac\\\"}.fa-feather:before{content:\\\"\\\\f52d\\\"}.fa-feather-alt:before{content:\\\"\\\\f56b\\\"}.fa-fedex:before{content:\\\"\\\\f797\\\"}.fa-fedora:before{content:\\\"\\\\f798\\\"}.fa-female:before{content:\\\"\\\\f182\\\"}.fa-fighter-jet:before{content:\\\"\\\\f0fb\\\"}.fa-figma:before{content:\\\"\\\\f799\\\"}.fa-file:before{content:\\\"\\\\f15b\\\"}.fa-file-alt:before{content:\\\"\\\\f15c\\\"}.fa-file-archive:before{content:\\\"\\\\f1c6\\\"}.fa-file-audio:before{content:\\\"\\\\f1c7\\\"}.fa-file-code:before{content:\\\"\\\\f1c9\\\"}.fa-file-contract:before{content:\\\"\\\\f56c\\\"}.fa-file-csv:before{content:\\\"\\\\f6dd\\\"}.fa-file-download:before{content:\\\"\\\\f56d\\\"}.fa-file-excel:before{content:\\\"\\\\f1c3\\\"}.fa-file-export:before{content:\\\"\\\\f56e\\\"}.fa-file-image:before{content:\\\"\\\\f1c5\\\"}.fa-file-import:before{content:\\\"\\\\f56f\\\"}.fa-file-invoice:before{content:\\\"\\\\f570\\\"}.fa-file-invoice-dollar:before{content:\\\"\\\\f571\\\"}.fa-file-medical:before{content:\\\"\\\\f477\\\"}.fa-file-medical-alt:before{content:\\\"\\\\f478\\\"}.fa-file-pdf:before{content:\\\"\\\\f1c1\\\"}.fa-file-powerpoint:before{content:\\\"\\\\f1c4\\\"}.fa-file-prescription:before{content:\\\"\\\\f572\\\"}.fa-file-signature:before{content:\\\"\\\\f573\\\"}.fa-file-upload:before{content:\\\"\\\\f574\\\"}.fa-file-video:before{content:\\\"\\\\f1c8\\\"}.fa-file-word:before{content:\\\"\\\\f1c2\\\"}.fa-fill:before{content:\\\"\\\\f575\\\"}.fa-fill-drip:before{content:\\\"\\\\f576\\\"}.fa-film:before{content:\\\"\\\\f008\\\"}.fa-filter:before{content:\\\"\\\\f0b0\\\"}.fa-fingerprint:before{content:\\\"\\\\f577\\\"}.fa-fire:before{content:\\\"\\\\f06d\\\"}.fa-fire-alt:before{content:\\\"\\\\f7e4\\\"}.fa-fire-extinguisher:before{content:\\\"\\\\f134\\\"}.fa-firefox:before{content:\\\"\\\\f269\\\"}.fa-firefox-browser:before{content:\\\"\\\\f907\\\"}.fa-first-aid:before{content:\\\"\\\\f479\\\"}.fa-first-order:before{content:\\\"\\\\f2b0\\\"}.fa-first-order-alt:before{content:\\\"\\\\f50a\\\"}.fa-firstdraft:before{content:\\\"\\\\f3a1\\\"}.fa-fish:before{content:\\\"\\\\f578\\\"}.fa-fist-raised:before{content:\\\"\\\\f6de\\\"}.fa-flag:before{content:\\\"\\\\f024\\\"}.fa-flag-checkered:before{content:\\\"\\\\f11e\\\"}.fa-flag-usa:before{content:\\\"\\\\f74d\\\"}.fa-flask:before{content:\\\"\\\\f0c3\\\"}.fa-flickr:before{content:\\\"\\\\f16e\\\"}.fa-flipboard:before{content:\\\"\\\\f44d\\\"}.fa-flushed:before{content:\\\"\\\\f579\\\"}.fa-fly:before{content:\\\"\\\\f417\\\"}.fa-folder:before{content:\\\"\\\\f07b\\\"}.fa-folder-minus:before{content:\\\"\\\\f65d\\\"}.fa-folder-open:before{content:\\\"\\\\f07c\\\"}.fa-folder-plus:before{content:\\\"\\\\f65e\\\"}.fa-font:before{content:\\\"\\\\f031\\\"}.fa-font-awesome:before{content:\\\"\\\\f2b4\\\"}.fa-font-awesome-alt:before{content:\\\"\\\\f35c\\\"}.fa-font-awesome-flag:before{content:\\\"\\\\f425\\\"}.fa-font-awesome-logo-full:before{content:\\\"\\\\f4e6\\\"}.fa-fonticons:before{content:\\\"\\\\f280\\\"}.fa-fonticons-fi:before{content:\\\"\\\\f3a2\\\"}.fa-football-ball:before{content:\\\"\\\\f44e\\\"}.fa-fort-awesome:before{content:\\\"\\\\f286\\\"}.fa-fort-awesome-alt:before{content:\\\"\\\\f3a3\\\"}.fa-forumbee:before{content:\\\"\\\\f211\\\"}.fa-forward:before{content:\\\"\\\\f04e\\\"}.fa-foursquare:before{content:\\\"\\\\f180\\\"}.fa-free-code-camp:before{content:\\\"\\\\f2c5\\\"}.fa-freebsd:before{content:\\\"\\\\f3a4\\\"}.fa-frog:before{content:\\\"\\\\f52e\\\"}.fa-frown:before{content:\\\"\\\\f119\\\"}.fa-frown-open:before{content:\\\"\\\\f57a\\\"}.fa-fulcrum:before{content:\\\"\\\\f50b\\\"}.fa-funnel-dollar:before{content:\\\"\\\\f662\\\"}.fa-futbol:before{content:\\\"\\\\f1e3\\\"}.fa-galactic-republic:before{content:\\\"\\\\f50c\\\"}.fa-galactic-senate:before{content:\\\"\\\\f50d\\\"}.fa-gamepad:before{content:\\\"\\\\f11b\\\"}.fa-gas-pump:before{content:\\\"\\\\f52f\\\"}.fa-gavel:before{content:\\\"\\\\f0e3\\\"}.fa-gem:before{content:\\\"\\\\f3a5\\\"}.fa-genderless:before{content:\\\"\\\\f22d\\\"}.fa-get-pocket:before{content:\\\"\\\\f265\\\"}.fa-gg:before{content:\\\"\\\\f260\\\"}.fa-gg-circle:before{content:\\\"\\\\f261\\\"}.fa-ghost:before{content:\\\"\\\\f6e2\\\"}.fa-gift:before{content:\\\"\\\\f06b\\\"}.fa-gifts:before{content:\\\"\\\\f79c\\\"}.fa-git:before{content:\\\"\\\\f1d3\\\"}.fa-git-alt:before{content:\\\"\\\\f841\\\"}.fa-git-square:before{content:\\\"\\\\f1d2\\\"}.fa-github:before{content:\\\"\\\\f09b\\\"}.fa-github-alt:before{content:\\\"\\\\f113\\\"}.fa-github-square:before{content:\\\"\\\\f092\\\"}.fa-gitkraken:before{content:\\\"\\\\f3a6\\\"}.fa-gitlab:before{content:\\\"\\\\f296\\\"}.fa-gitter:before{content:\\\"\\\\f426\\\"}.fa-glass-cheers:before{content:\\\"\\\\f79f\\\"}.fa-glass-martini:before{content:\\\"\\\\f000\\\"}.fa-glass-martini-alt:before{content:\\\"\\\\f57b\\\"}.fa-glass-whiskey:before{content:\\\"\\\\f7a0\\\"}.fa-glasses:before{content:\\\"\\\\f530\\\"}.fa-glide:before{content:\\\"\\\\f2a5\\\"}.fa-glide-g:before{content:\\\"\\\\f2a6\\\"}.fa-globe:before{content:\\\"\\\\f0ac\\\"}.fa-globe-africa:before{content:\\\"\\\\f57c\\\"}.fa-globe-americas:before{content:\\\"\\\\f57d\\\"}.fa-globe-asia:before{content:\\\"\\\\f57e\\\"}.fa-globe-europe:before{content:\\\"\\\\f7a2\\\"}.fa-gofore:before{content:\\\"\\\\f3a7\\\"}.fa-golf-ball:before{content:\\\"\\\\f450\\\"}.fa-goodreads:before{content:\\\"\\\\f3a8\\\"}.fa-goodreads-g:before{content:\\\"\\\\f3a9\\\"}.fa-google:before{content:\\\"\\\\f1a0\\\"}.fa-google-drive:before{content:\\\"\\\\f3aa\\\"}.fa-google-play:before{content:\\\"\\\\f3ab\\\"}.fa-google-plus:before{content:\\\"\\\\f2b3\\\"}.fa-google-plus-g:before{content:\\\"\\\\f0d5\\\"}.fa-google-plus-square:before{content:\\\"\\\\f0d4\\\"}.fa-google-wallet:before{content:\\\"\\\\f1ee\\\"}.fa-gopuram:before{content:\\\"\\\\f664\\\"}.fa-graduation-cap:before{content:\\\"\\\\f19d\\\"}.fa-gratipay:before{content:\\\"\\\\f184\\\"}.fa-grav:before{content:\\\"\\\\f2d6\\\"}.fa-greater-than:before{content:\\\"\\\\f531\\\"}.fa-greater-than-equal:before{content:\\\"\\\\f532\\\"}.fa-grimace:before{content:\\\"\\\\f57f\\\"}.fa-grin:before{content:\\\"\\\\f580\\\"}.fa-grin-alt:before{content:\\\"\\\\f581\\\"}.fa-grin-beam:before{content:\\\"\\\\f582\\\"}.fa-grin-beam-sweat:before{content:\\\"\\\\f583\\\"}.fa-grin-hearts:before{content:\\\"\\\\f584\\\"}.fa-grin-squint:before{content:\\\"\\\\f585\\\"}.fa-grin-squint-tears:before{content:\\\"\\\\f586\\\"}.fa-grin-stars:before{content:\\\"\\\\f587\\\"}.fa-grin-tears:before{content:\\\"\\\\f588\\\"}.fa-grin-tongue:before{content:\\\"\\\\f589\\\"}.fa-grin-tongue-squint:before{content:\\\"\\\\f58a\\\"}.fa-grin-tongue-wink:before{content:\\\"\\\\f58b\\\"}.fa-grin-wink:before{content:\\\"\\\\f58c\\\"}.fa-grip-horizontal:before{content:\\\"\\\\f58d\\\"}.fa-grip-lines:before{content:\\\"\\\\f7a4\\\"}.fa-grip-lines-vertical:before{content:\\\"\\\\f7a5\\\"}.fa-grip-vertical:before{content:\\\"\\\\f58e\\\"}.fa-gripfire:before{content:\\\"\\\\f3ac\\\"}.fa-grunt:before{content:\\\"\\\\f3ad\\\"}.fa-guitar:before{content:\\\"\\\\f7a6\\\"}.fa-gulp:before{content:\\\"\\\\f3ae\\\"}.fa-h-square:before{content:\\\"\\\\f0fd\\\"}.fa-hacker-news:before{content:\\\"\\\\f1d4\\\"}.fa-hacker-news-square:before{content:\\\"\\\\f3af\\\"}.fa-hackerrank:before{content:\\\"\\\\f5f7\\\"}.fa-hamburger:before{content:\\\"\\\\f805\\\"}.fa-hammer:before{content:\\\"\\\\f6e3\\\"}.fa-hamsa:before{content:\\\"\\\\f665\\\"}.fa-hand-holding:before{content:\\\"\\\\f4bd\\\"}.fa-hand-holding-heart:before{content:\\\"\\\\f4be\\\"}.fa-hand-holding-usd:before{content:\\\"\\\\f4c0\\\"}.fa-hand-lizard:before{content:\\\"\\\\f258\\\"}.fa-hand-middle-finger:before{content:\\\"\\\\f806\\\"}.fa-hand-paper:before{content:\\\"\\\\f256\\\"}.fa-hand-peace:before{content:\\\"\\\\f25b\\\"}.fa-hand-point-down:before{content:\\\"\\\\f0a7\\\"}.fa-hand-point-left:before{content:\\\"\\\\f0a5\\\"}.fa-hand-point-right:before{content:\\\"\\\\f0a4\\\"}.fa-hand-point-up:before{content:\\\"\\\\f0a6\\\"}.fa-hand-pointer:before{content:\\\"\\\\f25a\\\"}.fa-hand-rock:before{content:\\\"\\\\f255\\\"}.fa-hand-scissors:before{content:\\\"\\\\f257\\\"}.fa-hand-spock:before{content:\\\"\\\\f259\\\"}.fa-hands:before{content:\\\"\\\\f4c2\\\"}.fa-hands-helping:before{content:\\\"\\\\f4c4\\\"}.fa-handshake:before{content:\\\"\\\\f2b5\\\"}.fa-hanukiah:before{content:\\\"\\\\f6e6\\\"}.fa-hard-hat:before{content:\\\"\\\\f807\\\"}.fa-hashtag:before{content:\\\"\\\\f292\\\"}.fa-hat-cowboy:before{content:\\\"\\\\f8c0\\\"}.fa-hat-cowboy-side:before{content:\\\"\\\\f8c1\\\"}.fa-hat-wizard:before{content:\\\"\\\\f6e8\\\"}.fa-hdd:before{content:\\\"\\\\f0a0\\\"}.fa-heading:before{content:\\\"\\\\f1dc\\\"}.fa-headphones:before{content:\\\"\\\\f025\\\"}.fa-headphones-alt:before{content:\\\"\\\\f58f\\\"}.fa-headset:before{content:\\\"\\\\f590\\\"}.fa-heart:before{content:\\\"\\\\f004\\\"}.fa-heart-broken:before{content:\\\"\\\\f7a9\\\"}.fa-heartbeat:before{content:\\\"\\\\f21e\\\"}.fa-helicopter:before{content:\\\"\\\\f533\\\"}.fa-highlighter:before{content:\\\"\\\\f591\\\"}.fa-hiking:before{content:\\\"\\\\f6ec\\\"}.fa-hippo:before{content:\\\"\\\\f6ed\\\"}.fa-hips:before{content:\\\"\\\\f452\\\"}.fa-hire-a-helper:before{content:\\\"\\\\f3b0\\\"}.fa-history:before{content:\\\"\\\\f1da\\\"}.fa-hockey-puck:before{content:\\\"\\\\f453\\\"}.fa-holly-berry:before{content:\\\"\\\\f7aa\\\"}.fa-home:before{content:\\\"\\\\f015\\\"}.fa-hooli:before{content:\\\"\\\\f427\\\"}.fa-hornbill:before{content:\\\"\\\\f592\\\"}.fa-horse:before{content:\\\"\\\\f6f0\\\"}.fa-horse-head:before{content:\\\"\\\\f7ab\\\"}.fa-hospital:before{content:\\\"\\\\f0f8\\\"}.fa-hospital-alt:before{content:\\\"\\\\f47d\\\"}.fa-hospital-symbol:before{content:\\\"\\\\f47e\\\"}.fa-hot-tub:before{content:\\\"\\\\f593\\\"}.fa-hotdog:before{content:\\\"\\\\f80f\\\"}.fa-hotel:before{content:\\\"\\\\f594\\\"}.fa-hotjar:before{content:\\\"\\\\f3b1\\\"}.fa-hourglass:before{content:\\\"\\\\f254\\\"}.fa-hourglass-end:before{content:\\\"\\\\f253\\\"}.fa-hourglass-half:before{content:\\\"\\\\f252\\\"}.fa-hourglass-start:before{content:\\\"\\\\f251\\\"}.fa-house-damage:before{content:\\\"\\\\f6f1\\\"}.fa-houzz:before{content:\\\"\\\\f27c\\\"}.fa-hryvnia:before{content:\\\"\\\\f6f2\\\"}.fa-html5:before{content:\\\"\\\\f13b\\\"}.fa-hubspot:before{content:\\\"\\\\f3b2\\\"}.fa-i-cursor:before{content:\\\"\\\\f246\\\"}.fa-ice-cream:before{content:\\\"\\\\f810\\\"}.fa-icicles:before{content:\\\"\\\\f7ad\\\"}.fa-icons:before{content:\\\"\\\\f86d\\\"}.fa-id-badge:before{content:\\\"\\\\f2c1\\\"}.fa-id-card:before{content:\\\"\\\\f2c2\\\"}.fa-id-card-alt:before{content:\\\"\\\\f47f\\\"}.fa-ideal:before{content:\\\"\\\\f913\\\"}.fa-igloo:before{content:\\\"\\\\f7ae\\\"}.fa-image:before{content:\\\"\\\\f03e\\\"}.fa-images:before{content:\\\"\\\\f302\\\"}.fa-imdb:before{content:\\\"\\\\f2d8\\\"}.fa-inbox:before{content:\\\"\\\\f01c\\\"}.fa-indent:before{content:\\\"\\\\f03c\\\"}.fa-industry:before{content:\\\"\\\\f275\\\"}.fa-infinity:before{content:\\\"\\\\f534\\\"}.fa-info:before{content:\\\"\\\\f129\\\"}.fa-info-circle:before{content:\\\"\\\\f05a\\\"}.fa-instagram:before{content:\\\"\\\\f16d\\\"}.fa-intercom:before{content:\\\"\\\\f7af\\\"}.fa-internet-explorer:before{content:\\\"\\\\f26b\\\"}.fa-invision:before{content:\\\"\\\\f7b0\\\"}.fa-ioxhost:before{content:\\\"\\\\f208\\\"}.fa-italic:before{content:\\\"\\\\f033\\\"}.fa-itch-io:before{content:\\\"\\\\f83a\\\"}.fa-itunes:before{content:\\\"\\\\f3b4\\\"}.fa-itunes-note:before{content:\\\"\\\\f3b5\\\"}.fa-java:before{content:\\\"\\\\f4e4\\\"}.fa-jedi:before{content:\\\"\\\\f669\\\"}.fa-jedi-order:before{content:\\\"\\\\f50e\\\"}.fa-jenkins:before{content:\\\"\\\\f3b6\\\"}.fa-jira:before{content:\\\"\\\\f7b1\\\"}.fa-joget:before{content:\\\"\\\\f3b7\\\"}.fa-joint:before{content:\\\"\\\\f595\\\"}.fa-joomla:before{content:\\\"\\\\f1aa\\\"}.fa-journal-whills:before{content:\\\"\\\\f66a\\\"}.fa-js:before{content:\\\"\\\\f3b8\\\"}.fa-js-square:before{content:\\\"\\\\f3b9\\\"}.fa-jsfiddle:before{content:\\\"\\\\f1cc\\\"}.fa-kaaba:before{content:\\\"\\\\f66b\\\"}.fa-kaggle:before{content:\\\"\\\\f5fa\\\"}.fa-key:before{content:\\\"\\\\f084\\\"}.fa-keybase:before{content:\\\"\\\\f4f5\\\"}.fa-keyboard:before{content:\\\"\\\\f11c\\\"}.fa-keycdn:before{content:\\\"\\\\f3ba\\\"}.fa-khanda:before{content:\\\"\\\\f66d\\\"}.fa-kickstarter:before{content:\\\"\\\\f3bb\\\"}.fa-kickstarter-k:before{content:\\\"\\\\f3bc\\\"}.fa-kiss:before{content:\\\"\\\\f596\\\"}.fa-kiss-beam:before{content:\\\"\\\\f597\\\"}.fa-kiss-wink-heart:before{content:\\\"\\\\f598\\\"}.fa-kiwi-bird:before{content:\\\"\\\\f535\\\"}.fa-korvue:before{content:\\\"\\\\f42f\\\"}.fa-landmark:before{content:\\\"\\\\f66f\\\"}.fa-language:before{content:\\\"\\\\f1ab\\\"}.fa-laptop:before{content:\\\"\\\\f109\\\"}.fa-laptop-code:before{content:\\\"\\\\f5fc\\\"}.fa-laptop-medical:before{content:\\\"\\\\f812\\\"}.fa-laravel:before{content:\\\"\\\\f3bd\\\"}.fa-lastfm:before{content:\\\"\\\\f202\\\"}.fa-lastfm-square:before{content:\\\"\\\\f203\\\"}.fa-laugh:before{content:\\\"\\\\f599\\\"}.fa-laugh-beam:before{content:\\\"\\\\f59a\\\"}.fa-laugh-squint:before{content:\\\"\\\\f59b\\\"}.fa-laugh-wink:before{content:\\\"\\\\f59c\\\"}.fa-layer-group:before{content:\\\"\\\\f5fd\\\"}.fa-leaf:before{content:\\\"\\\\f06c\\\"}.fa-leanpub:before{content:\\\"\\\\f212\\\"}.fa-lemon:before{content:\\\"\\\\f094\\\"}.fa-less:before{content:\\\"\\\\f41d\\\"}.fa-less-than:before{content:\\\"\\\\f536\\\"}.fa-less-than-equal:before{content:\\\"\\\\f537\\\"}.fa-level-down-alt:before{content:\\\"\\\\f3be\\\"}.fa-level-up-alt:before{content:\\\"\\\\f3bf\\\"}.fa-life-ring:before{content:\\\"\\\\f1cd\\\"}.fa-lightbulb:before{content:\\\"\\\\f0eb\\\"}.fa-line:before{content:\\\"\\\\f3c0\\\"}.fa-link:before{content:\\\"\\\\f0c1\\\"}.fa-linkedin:before{content:\\\"\\\\f08c\\\"}.fa-linkedin-in:before{content:\\\"\\\\f0e1\\\"}.fa-linode:before{content:\\\"\\\\f2b8\\\"}.fa-linux:before{content:\\\"\\\\f17c\\\"}.fa-lira-sign:before{content:\\\"\\\\f195\\\"}.fa-list:before{content:\\\"\\\\f03a\\\"}.fa-list-alt:before{content:\\\"\\\\f022\\\"}.fa-list-ol:before{content:\\\"\\\\f0cb\\\"}.fa-list-ul:before{content:\\\"\\\\f0ca\\\"}.fa-location-arrow:before{content:\\\"\\\\f124\\\"}.fa-lock:before{content:\\\"\\\\f023\\\"}.fa-lock-open:before{content:\\\"\\\\f3c1\\\"}.fa-long-arrow-alt-down:before{content:\\\"\\\\f309\\\"}.fa-long-arrow-alt-left:before{content:\\\"\\\\f30a\\\"}.fa-long-arrow-alt-right:before{content:\\\"\\\\f30b\\\"}.fa-long-arrow-alt-up:before{content:\\\"\\\\f30c\\\"}.fa-low-vision:before{content:\\\"\\\\f2a8\\\"}.fa-luggage-cart:before{content:\\\"\\\\f59d\\\"}.fa-lyft:before{content:\\\"\\\\f3c3\\\"}.fa-magento:before{content:\\\"\\\\f3c4\\\"}.fa-magic:before{content:\\\"\\\\f0d0\\\"}.fa-magnet:before{content:\\\"\\\\f076\\\"}.fa-mail-bulk:before{content:\\\"\\\\f674\\\"}.fa-mailchimp:before{content:\\\"\\\\f59e\\\"}.fa-male:before{content:\\\"\\\\f183\\\"}.fa-mandalorian:before{content:\\\"\\\\f50f\\\"}.fa-map:before{content:\\\"\\\\f279\\\"}.fa-map-marked:before{content:\\\"\\\\f59f\\\"}.fa-map-marked-alt:before{content:\\\"\\\\f5a0\\\"}.fa-map-marker:before{content:\\\"\\\\f041\\\"}.fa-map-marker-alt:before{content:\\\"\\\\f3c5\\\"}.fa-map-pin:before{content:\\\"\\\\f276\\\"}.fa-map-signs:before{content:\\\"\\\\f277\\\"}.fa-markdown:before{content:\\\"\\\\f60f\\\"}.fa-marker:before{content:\\\"\\\\f5a1\\\"}.fa-mars:before{content:\\\"\\\\f222\\\"}.fa-mars-double:before{content:\\\"\\\\f227\\\"}.fa-mars-stroke:before{content:\\\"\\\\f229\\\"}.fa-mars-stroke-h:before{content:\\\"\\\\f22b\\\"}.fa-mars-stroke-v:before{content:\\\"\\\\f22a\\\"}.fa-mask:before{content:\\\"\\\\f6fa\\\"}.fa-mastodon:before{content:\\\"\\\\f4f6\\\"}.fa-maxcdn:before{content:\\\"\\\\f136\\\"}.fa-mdb:before{content:\\\"\\\\f8ca\\\"}.fa-medal:before{content:\\\"\\\\f5a2\\\"}.fa-medapps:before{content:\\\"\\\\f3c6\\\"}.fa-medium:before{content:\\\"\\\\f23a\\\"}.fa-medium-m:before{content:\\\"\\\\f3c7\\\"}.fa-medkit:before{content:\\\"\\\\f0fa\\\"}.fa-medrt:before{content:\\\"\\\\f3c8\\\"}.fa-meetup:before{content:\\\"\\\\f2e0\\\"}.fa-megaport:before{content:\\\"\\\\f5a3\\\"}.fa-meh:before{content:\\\"\\\\f11a\\\"}.fa-meh-blank:before{content:\\\"\\\\f5a4\\\"}.fa-meh-rolling-eyes:before{content:\\\"\\\\f5a5\\\"}.fa-memory:before{content:\\\"\\\\f538\\\"}.fa-mendeley:before{content:\\\"\\\\f7b3\\\"}.fa-menorah:before{content:\\\"\\\\f676\\\"}.fa-mercury:before{content:\\\"\\\\f223\\\"}.fa-meteor:before{content:\\\"\\\\f753\\\"}.fa-microblog:before{content:\\\"\\\\f91a\\\"}.fa-microchip:before{content:\\\"\\\\f2db\\\"}.fa-microphone:before{content:\\\"\\\\f130\\\"}.fa-microphone-alt:before{content:\\\"\\\\f3c9\\\"}.fa-microphone-alt-slash:before{content:\\\"\\\\f539\\\"}.fa-microphone-slash:before{content:\\\"\\\\f131\\\"}.fa-microscope:before{content:\\\"\\\\f610\\\"}.fa-microsoft:before{content:\\\"\\\\f3ca\\\"}.fa-minus:before{content:\\\"\\\\f068\\\"}.fa-minus-circle:before{content:\\\"\\\\f056\\\"}.fa-minus-square:before{content:\\\"\\\\f146\\\"}.fa-mitten:before{content:\\\"\\\\f7b5\\\"}.fa-mix:before{content:\\\"\\\\f3cb\\\"}.fa-mixcloud:before{content:\\\"\\\\f289\\\"}.fa-mizuni:before{content:\\\"\\\\f3cc\\\"}.fa-mobile:before{content:\\\"\\\\f10b\\\"}.fa-mobile-alt:before{content:\\\"\\\\f3cd\\\"}.fa-modx:before{content:\\\"\\\\f285\\\"}.fa-monero:before{content:\\\"\\\\f3d0\\\"}.fa-money-bill:before{content:\\\"\\\\f0d6\\\"}.fa-money-bill-alt:before{content:\\\"\\\\f3d1\\\"}.fa-money-bill-wave:before{content:\\\"\\\\f53a\\\"}.fa-money-bill-wave-alt:before{content:\\\"\\\\f53b\\\"}.fa-money-check:before{content:\\\"\\\\f53c\\\"}.fa-money-check-alt:before{content:\\\"\\\\f53d\\\"}.fa-monument:before{content:\\\"\\\\f5a6\\\"}.fa-moon:before{content:\\\"\\\\f186\\\"}.fa-mortar-pestle:before{content:\\\"\\\\f5a7\\\"}.fa-mosque:before{content:\\\"\\\\f678\\\"}.fa-motorcycle:before{content:\\\"\\\\f21c\\\"}.fa-mountain:before{content:\\\"\\\\f6fc\\\"}.fa-mouse:before{content:\\\"\\\\f8cc\\\"}.fa-mouse-pointer:before{content:\\\"\\\\f245\\\"}.fa-mug-hot:before{content:\\\"\\\\f7b6\\\"}.fa-music:before{content:\\\"\\\\f001\\\"}.fa-napster:before{content:\\\"\\\\f3d2\\\"}.fa-neos:before{content:\\\"\\\\f612\\\"}.fa-network-wired:before{content:\\\"\\\\f6ff\\\"}.fa-neuter:before{content:\\\"\\\\f22c\\\"}.fa-newspaper:before{content:\\\"\\\\f1ea\\\"}.fa-nimblr:before{content:\\\"\\\\f5a8\\\"}.fa-node:before{content:\\\"\\\\f419\\\"}.fa-node-js:before{content:\\\"\\\\f3d3\\\"}.fa-not-equal:before{content:\\\"\\\\f53e\\\"}.fa-notes-medical:before{content:\\\"\\\\f481\\\"}.fa-npm:before{content:\\\"\\\\f3d4\\\"}.fa-ns8:before{content:\\\"\\\\f3d5\\\"}.fa-nutritionix:before{content:\\\"\\\\f3d6\\\"}.fa-object-group:before{content:\\\"\\\\f247\\\"}.fa-object-ungroup:before{content:\\\"\\\\f248\\\"}.fa-odnoklassniki:before{content:\\\"\\\\f263\\\"}.fa-odnoklassniki-square:before{content:\\\"\\\\f264\\\"}.fa-oil-can:before{content:\\\"\\\\f613\\\"}.fa-old-republic:before{content:\\\"\\\\f510\\\"}.fa-om:before{content:\\\"\\\\f679\\\"}.fa-opencart:before{content:\\\"\\\\f23d\\\"}.fa-openid:before{content:\\\"\\\\f19b\\\"}.fa-opera:before{content:\\\"\\\\f26a\\\"}.fa-optin-monster:before{content:\\\"\\\\f23c\\\"}.fa-orcid:before{content:\\\"\\\\f8d2\\\"}.fa-osi:before{content:\\\"\\\\f41a\\\"}.fa-otter:before{content:\\\"\\\\f700\\\"}.fa-outdent:before{content:\\\"\\\\f03b\\\"}.fa-page4:before{content:\\\"\\\\f3d7\\\"}.fa-pagelines:before{content:\\\"\\\\f18c\\\"}.fa-pager:before{content:\\\"\\\\f815\\\"}.fa-paint-brush:before{content:\\\"\\\\f1fc\\\"}.fa-paint-roller:before{content:\\\"\\\\f5aa\\\"}.fa-palette:before{content:\\\"\\\\f53f\\\"}.fa-palfed:before{content:\\\"\\\\f3d8\\\"}.fa-pallet:before{content:\\\"\\\\f482\\\"}.fa-paper-plane:before{content:\\\"\\\\f1d8\\\"}.fa-paperclip:before{content:\\\"\\\\f0c6\\\"}.fa-parachute-box:before{content:\\\"\\\\f4cd\\\"}.fa-paragraph:before{content:\\\"\\\\f1dd\\\"}.fa-parking:before{content:\\\"\\\\f540\\\"}.fa-passport:before{content:\\\"\\\\f5ab\\\"}.fa-pastafarianism:before{content:\\\"\\\\f67b\\\"}.fa-paste:before{content:\\\"\\\\f0ea\\\"}.fa-patreon:before{content:\\\"\\\\f3d9\\\"}.fa-pause:before{content:\\\"\\\\f04c\\\"}.fa-pause-circle:before{content:\\\"\\\\f28b\\\"}.fa-paw:before{content:\\\"\\\\f1b0\\\"}.fa-paypal:before{content:\\\"\\\\f1ed\\\"}.fa-peace:before{content:\\\"\\\\f67c\\\"}.fa-pen:before{content:\\\"\\\\f304\\\"}.fa-pen-alt:before{content:\\\"\\\\f305\\\"}.fa-pen-fancy:before{content:\\\"\\\\f5ac\\\"}.fa-pen-nib:before{content:\\\"\\\\f5ad\\\"}.fa-pen-square:before{content:\\\"\\\\f14b\\\"}.fa-pencil-alt:before{content:\\\"\\\\f303\\\"}.fa-pencil-ruler:before{content:\\\"\\\\f5ae\\\"}.fa-penny-arcade:before{content:\\\"\\\\f704\\\"}.fa-people-carry:before{content:\\\"\\\\f4ce\\\"}.fa-pepper-hot:before{content:\\\"\\\\f816\\\"}.fa-percent:before{content:\\\"\\\\f295\\\"}.fa-percentage:before{content:\\\"\\\\f541\\\"}.fa-periscope:before{content:\\\"\\\\f3da\\\"}.fa-person-booth:before{content:\\\"\\\\f756\\\"}.fa-phabricator:before{content:\\\"\\\\f3db\\\"}.fa-phoenix-framework:before{content:\\\"\\\\f3dc\\\"}.fa-phoenix-squadron:before{content:\\\"\\\\f511\\\"}.fa-phone:before{content:\\\"\\\\f095\\\"}.fa-phone-alt:before{content:\\\"\\\\f879\\\"}.fa-phone-slash:before{content:\\\"\\\\f3dd\\\"}.fa-phone-square:before{content:\\\"\\\\f098\\\"}.fa-phone-square-alt:before{content:\\\"\\\\f87b\\\"}.fa-phone-volume:before{content:\\\"\\\\f2a0\\\"}.fa-photo-video:before{content:\\\"\\\\f87c\\\"}.fa-php:before{content:\\\"\\\\f457\\\"}.fa-pied-piper:before{content:\\\"\\\\f2ae\\\"}.fa-pied-piper-alt:before{content:\\\"\\\\f1a8\\\"}.fa-pied-piper-hat:before{content:\\\"\\\\f4e5\\\"}.fa-pied-piper-pp:before{content:\\\"\\\\f1a7\\\"}.fa-pied-piper-square:before{content:\\\"\\\\f91e\\\"}.fa-piggy-bank:before{content:\\\"\\\\f4d3\\\"}.fa-pills:before{content:\\\"\\\\f484\\\"}.fa-pinterest:before{content:\\\"\\\\f0d2\\\"}.fa-pinterest-p:before{content:\\\"\\\\f231\\\"}.fa-pinterest-square:before{content:\\\"\\\\f0d3\\\"}.fa-pizza-slice:before{content:\\\"\\\\f818\\\"}.fa-place-of-worship:before{content:\\\"\\\\f67f\\\"}.fa-plane:before{content:\\\"\\\\f072\\\"}.fa-plane-arrival:before{content:\\\"\\\\f5af\\\"}.fa-plane-departure:before{content:\\\"\\\\f5b0\\\"}.fa-play:before{content:\\\"\\\\f04b\\\"}.fa-play-circle:before{content:\\\"\\\\f144\\\"}.fa-playstation:before{content:\\\"\\\\f3df\\\"}.fa-plug:before{content:\\\"\\\\f1e6\\\"}.fa-plus:before{content:\\\"\\\\f067\\\"}.fa-plus-circle:before{content:\\\"\\\\f055\\\"}.fa-plus-square:before{content:\\\"\\\\f0fe\\\"}.fa-podcast:before{content:\\\"\\\\f2ce\\\"}.fa-poll:before{content:\\\"\\\\f681\\\"}.fa-poll-h:before{content:\\\"\\\\f682\\\"}.fa-poo:before{content:\\\"\\\\f2fe\\\"}.fa-poo-storm:before{content:\\\"\\\\f75a\\\"}.fa-poop:before{content:\\\"\\\\f619\\\"}.fa-portrait:before{content:\\\"\\\\f3e0\\\"}.fa-pound-sign:before{content:\\\"\\\\f154\\\"}.fa-power-off:before{content:\\\"\\\\f011\\\"}.fa-pray:before{content:\\\"\\\\f683\\\"}.fa-praying-hands:before{content:\\\"\\\\f684\\\"}.fa-prescription:before{content:\\\"\\\\f5b1\\\"}.fa-prescription-bottle:before{content:\\\"\\\\f485\\\"}.fa-prescription-bottle-alt:before{content:\\\"\\\\f486\\\"}.fa-print:before{content:\\\"\\\\f02f\\\"}.fa-procedures:before{content:\\\"\\\\f487\\\"}.fa-product-hunt:before{content:\\\"\\\\f288\\\"}.fa-project-diagram:before{content:\\\"\\\\f542\\\"}.fa-pushed:before{content:\\\"\\\\f3e1\\\"}.fa-puzzle-piece:before{content:\\\"\\\\f12e\\\"}.fa-python:before{content:\\\"\\\\f3e2\\\"}.fa-qq:before{content:\\\"\\\\f1d6\\\"}.fa-qrcode:before{content:\\\"\\\\f029\\\"}.fa-question:before{content:\\\"\\\\f128\\\"}.fa-question-circle:before{content:\\\"\\\\f059\\\"}.fa-quidditch:before{content:\\\"\\\\f458\\\"}.fa-quinscape:before{content:\\\"\\\\f459\\\"}.fa-quora:before{content:\\\"\\\\f2c4\\\"}.fa-quote-left:before{content:\\\"\\\\f10d\\\"}.fa-quote-right:before{content:\\\"\\\\f10e\\\"}.fa-quran:before{content:\\\"\\\\f687\\\"}.fa-r-project:before{content:\\\"\\\\f4f7\\\"}.fa-radiation:before{content:\\\"\\\\f7b9\\\"}.fa-radiation-alt:before{content:\\\"\\\\f7ba\\\"}.fa-rainbow:before{content:\\\"\\\\f75b\\\"}.fa-random:before{content:\\\"\\\\f074\\\"}.fa-raspberry-pi:before{content:\\\"\\\\f7bb\\\"}.fa-ravelry:before{content:\\\"\\\\f2d9\\\"}.fa-react:before{content:\\\"\\\\f41b\\\"}.fa-reacteurope:before{content:\\\"\\\\f75d\\\"}.fa-readme:before{content:\\\"\\\\f4d5\\\"}.fa-rebel:before{content:\\\"\\\\f1d0\\\"}.fa-receipt:before{content:\\\"\\\\f543\\\"}.fa-record-vinyl:before{content:\\\"\\\\f8d9\\\"}.fa-recycle:before{content:\\\"\\\\f1b8\\\"}.fa-red-river:before{content:\\\"\\\\f3e3\\\"}.fa-reddit:before{content:\\\"\\\\f1a1\\\"}.fa-reddit-alien:before{content:\\\"\\\\f281\\\"}.fa-reddit-square:before{content:\\\"\\\\f1a2\\\"}.fa-redhat:before{content:\\\"\\\\f7bc\\\"}.fa-redo:before{content:\\\"\\\\f01e\\\"}.fa-redo-alt:before{content:\\\"\\\\f2f9\\\"}.fa-registered:before{content:\\\"\\\\f25d\\\"}.fa-remove-format:before{content:\\\"\\\\f87d\\\"}.fa-renren:before{content:\\\"\\\\f18b\\\"}.fa-reply:before{content:\\\"\\\\f3e5\\\"}.fa-reply-all:before{content:\\\"\\\\f122\\\"}.fa-replyd:before{content:\\\"\\\\f3e6\\\"}.fa-republican:before{content:\\\"\\\\f75e\\\"}.fa-researchgate:before{content:\\\"\\\\f4f8\\\"}.fa-resolving:before{content:\\\"\\\\f3e7\\\"}.fa-restroom:before{content:\\\"\\\\f7bd\\\"}.fa-retweet:before{content:\\\"\\\\f079\\\"}.fa-rev:before{content:\\\"\\\\f5b2\\\"}.fa-ribbon:before{content:\\\"\\\\f4d6\\\"}.fa-ring:before{content:\\\"\\\\f70b\\\"}.fa-road:before{content:\\\"\\\\f018\\\"}.fa-robot:before{content:\\\"\\\\f544\\\"}.fa-rocket:before{content:\\\"\\\\f135\\\"}.fa-rocketchat:before{content:\\\"\\\\f3e8\\\"}.fa-rockrms:before{content:\\\"\\\\f3e9\\\"}.fa-route:before{content:\\\"\\\\f4d7\\\"}.fa-rss:before{content:\\\"\\\\f09e\\\"}.fa-rss-square:before{content:\\\"\\\\f143\\\"}.fa-ruble-sign:before{content:\\\"\\\\f158\\\"}.fa-ruler:before{content:\\\"\\\\f545\\\"}.fa-ruler-combined:before{content:\\\"\\\\f546\\\"}.fa-ruler-horizontal:before{content:\\\"\\\\f547\\\"}.fa-ruler-vertical:before{content:\\\"\\\\f548\\\"}.fa-running:before{content:\\\"\\\\f70c\\\"}.fa-rupee-sign:before{content:\\\"\\\\f156\\\"}.fa-sad-cry:before{content:\\\"\\\\f5b3\\\"}.fa-sad-tear:before{content:\\\"\\\\f5b4\\\"}.fa-safari:before{content:\\\"\\\\f267\\\"}.fa-salesforce:before{content:\\\"\\\\f83b\\\"}.fa-sass:before{content:\\\"\\\\f41e\\\"}.fa-satellite:before{content:\\\"\\\\f7bf\\\"}.fa-satellite-dish:before{content:\\\"\\\\f7c0\\\"}.fa-save:before{content:\\\"\\\\f0c7\\\"}.fa-schlix:before{content:\\\"\\\\f3ea\\\"}.fa-school:before{content:\\\"\\\\f549\\\"}.fa-screwdriver:before{content:\\\"\\\\f54a\\\"}.fa-scribd:before{content:\\\"\\\\f28a\\\"}.fa-scroll:before{content:\\\"\\\\f70e\\\"}.fa-sd-card:before{content:\\\"\\\\f7c2\\\"}.fa-search:before{content:\\\"\\\\f002\\\"}.fa-search-dollar:before{content:\\\"\\\\f688\\\"}.fa-search-location:before{content:\\\"\\\\f689\\\"}.fa-search-minus:before{content:\\\"\\\\f010\\\"}.fa-search-plus:before{content:\\\"\\\\f00e\\\"}.fa-searchengin:before{content:\\\"\\\\f3eb\\\"}.fa-seedling:before{content:\\\"\\\\f4d8\\\"}.fa-sellcast:before{content:\\\"\\\\f2da\\\"}.fa-sellsy:before{content:\\\"\\\\f213\\\"}.fa-server:before{content:\\\"\\\\f233\\\"}.fa-servicestack:before{content:\\\"\\\\f3ec\\\"}.fa-shapes:before{content:\\\"\\\\f61f\\\"}.fa-share:before{content:\\\"\\\\f064\\\"}.fa-share-alt:before{content:\\\"\\\\f1e0\\\"}.fa-share-alt-square:before{content:\\\"\\\\f1e1\\\"}.fa-share-square:before{content:\\\"\\\\f14d\\\"}.fa-shekel-sign:before{content:\\\"\\\\f20b\\\"}.fa-shield-alt:before{content:\\\"\\\\f3ed\\\"}.fa-ship:before{content:\\\"\\\\f21a\\\"}.fa-shipping-fast:before{content:\\\"\\\\f48b\\\"}.fa-shirtsinbulk:before{content:\\\"\\\\f214\\\"}.fa-shoe-prints:before{content:\\\"\\\\f54b\\\"}.fa-shopping-bag:before{content:\\\"\\\\f290\\\"}.fa-shopping-basket:before{content:\\\"\\\\f291\\\"}.fa-shopping-cart:before{content:\\\"\\\\f07a\\\"}.fa-shopware:before{content:\\\"\\\\f5b5\\\"}.fa-shower:before{content:\\\"\\\\f2cc\\\"}.fa-shuttle-van:before{content:\\\"\\\\f5b6\\\"}.fa-sign:before{content:\\\"\\\\f4d9\\\"}.fa-sign-in-alt:before{content:\\\"\\\\f2f6\\\"}.fa-sign-language:before{content:\\\"\\\\f2a7\\\"}.fa-sign-out-alt:before{content:\\\"\\\\f2f5\\\"}.fa-signal:before{content:\\\"\\\\f012\\\"}.fa-signature:before{content:\\\"\\\\f5b7\\\"}.fa-sim-card:before{content:\\\"\\\\f7c4\\\"}.fa-simplybuilt:before{content:\\\"\\\\f215\\\"}.fa-sistrix:before{content:\\\"\\\\f3ee\\\"}.fa-sitemap:before{content:\\\"\\\\f0e8\\\"}.fa-sith:before{content:\\\"\\\\f512\\\"}.fa-skating:before{content:\\\"\\\\f7c5\\\"}.fa-sketch:before{content:\\\"\\\\f7c6\\\"}.fa-skiing:before{content:\\\"\\\\f7c9\\\"}.fa-skiing-nordic:before{content:\\\"\\\\f7ca\\\"}.fa-skull:before{content:\\\"\\\\f54c\\\"}.fa-skull-crossbones:before{content:\\\"\\\\f714\\\"}.fa-skyatlas:before{content:\\\"\\\\f216\\\"}.fa-skype:before{content:\\\"\\\\f17e\\\"}.fa-slack:before{content:\\\"\\\\f198\\\"}.fa-slack-hash:before{content:\\\"\\\\f3ef\\\"}.fa-slash:before{content:\\\"\\\\f715\\\"}.fa-sleigh:before{content:\\\"\\\\f7cc\\\"}.fa-sliders-h:before{content:\\\"\\\\f1de\\\"}.fa-slideshare:before{content:\\\"\\\\f1e7\\\"}.fa-smile:before{content:\\\"\\\\f118\\\"}.fa-smile-beam:before{content:\\\"\\\\f5b8\\\"}.fa-smile-wink:before{content:\\\"\\\\f4da\\\"}.fa-smog:before{content:\\\"\\\\f75f\\\"}.fa-smoking:before{content:\\\"\\\\f48d\\\"}.fa-smoking-ban:before{content:\\\"\\\\f54d\\\"}.fa-sms:before{content:\\\"\\\\f7cd\\\"}.fa-snapchat:before{content:\\\"\\\\f2ab\\\"}.fa-snapchat-ghost:before{content:\\\"\\\\f2ac\\\"}.fa-snapchat-square:before{content:\\\"\\\\f2ad\\\"}.fa-snowboarding:before{content:\\\"\\\\f7ce\\\"}.fa-snowflake:before{content:\\\"\\\\f2dc\\\"}.fa-snowman:before{content:\\\"\\\\f7d0\\\"}.fa-snowplow:before{content:\\\"\\\\f7d2\\\"}.fa-socks:before{content:\\\"\\\\f696\\\"}.fa-solar-panel:before{content:\\\"\\\\f5ba\\\"}.fa-sort:before{content:\\\"\\\\f0dc\\\"}.fa-sort-alpha-down:before{content:\\\"\\\\f15d\\\"}.fa-sort-alpha-down-alt:before{content:\\\"\\\\f881\\\"}.fa-sort-alpha-up:before{content:\\\"\\\\f15e\\\"}.fa-sort-alpha-up-alt:before{content:\\\"\\\\f882\\\"}.fa-sort-amount-down:before{content:\\\"\\\\f160\\\"}.fa-sort-amount-down-alt:before{content:\\\"\\\\f884\\\"}.fa-sort-amount-up:before{content:\\\"\\\\f161\\\"}.fa-sort-amount-up-alt:before{content:\\\"\\\\f885\\\"}.fa-sort-down:before{content:\\\"\\\\f0dd\\\"}.fa-sort-numeric-down:before{content:\\\"\\\\f162\\\"}.fa-sort-numeric-down-alt:before{content:\\\"\\\\f886\\\"}.fa-sort-numeric-up:before{content:\\\"\\\\f163\\\"}.fa-sort-numeric-up-alt:before{content:\\\"\\\\f887\\\"}.fa-sort-up:before{content:\\\"\\\\f0de\\\"}.fa-soundcloud:before{content:\\\"\\\\f1be\\\"}.fa-sourcetree:before{content:\\\"\\\\f7d3\\\"}.fa-spa:before{content:\\\"\\\\f5bb\\\"}.fa-space-shuttle:before{content:\\\"\\\\f197\\\"}.fa-speakap:before{content:\\\"\\\\f3f3\\\"}.fa-speaker-deck:before{content:\\\"\\\\f83c\\\"}.fa-spell-check:before{content:\\\"\\\\f891\\\"}.fa-spider:before{content:\\\"\\\\f717\\\"}.fa-spinner:before{content:\\\"\\\\f110\\\"}.fa-splotch:before{content:\\\"\\\\f5bc\\\"}.fa-spotify:before{content:\\\"\\\\f1bc\\\"}.fa-spray-can:before{content:\\\"\\\\f5bd\\\"}.fa-square:before{content:\\\"\\\\f0c8\\\"}.fa-square-full:before{content:\\\"\\\\f45c\\\"}.fa-square-root-alt:before{content:\\\"\\\\f698\\\"}.fa-squarespace:before{content:\\\"\\\\f5be\\\"}.fa-stack-exchange:before{content:\\\"\\\\f18d\\\"}.fa-stack-overflow:before{content:\\\"\\\\f16c\\\"}.fa-stackpath:before{content:\\\"\\\\f842\\\"}.fa-stamp:before{content:\\\"\\\\f5bf\\\"}.fa-star:before{content:\\\"\\\\f005\\\"}.fa-star-and-crescent:before{content:\\\"\\\\f699\\\"}.fa-star-half:before{content:\\\"\\\\f089\\\"}.fa-star-half-alt:before{content:\\\"\\\\f5c0\\\"}.fa-star-of-david:before{content:\\\"\\\\f69a\\\"}.fa-star-of-life:before{content:\\\"\\\\f621\\\"}.fa-staylinked:before{content:\\\"\\\\f3f5\\\"}.fa-steam:before{content:\\\"\\\\f1b6\\\"}.fa-steam-square:before{content:\\\"\\\\f1b7\\\"}.fa-steam-symbol:before{content:\\\"\\\\f3f6\\\"}.fa-step-backward:before{content:\\\"\\\\f048\\\"}.fa-step-forward:before{content:\\\"\\\\f051\\\"}.fa-stethoscope:before{content:\\\"\\\\f0f1\\\"}.fa-sticker-mule:before{content:\\\"\\\\f3f7\\\"}.fa-sticky-note:before{content:\\\"\\\\f249\\\"}.fa-stop:before{content:\\\"\\\\f04d\\\"}.fa-stop-circle:before{content:\\\"\\\\f28d\\\"}.fa-stopwatch:before{content:\\\"\\\\f2f2\\\"}.fa-store:before{content:\\\"\\\\f54e\\\"}.fa-store-alt:before{content:\\\"\\\\f54f\\\"}.fa-strava:before{content:\\\"\\\\f428\\\"}.fa-stream:before{content:\\\"\\\\f550\\\"}.fa-street-view:before{content:\\\"\\\\f21d\\\"}.fa-strikethrough:before{content:\\\"\\\\f0cc\\\"}.fa-stripe:before{content:\\\"\\\\f429\\\"}.fa-stripe-s:before{content:\\\"\\\\f42a\\\"}.fa-stroopwafel:before{content:\\\"\\\\f551\\\"}.fa-studiovinari:before{content:\\\"\\\\f3f8\\\"}.fa-stumbleupon:before{content:\\\"\\\\f1a4\\\"}.fa-stumbleupon-circle:before{content:\\\"\\\\f1a3\\\"}.fa-subscript:before{content:\\\"\\\\f12c\\\"}.fa-subway:before{content:\\\"\\\\f239\\\"}.fa-suitcase:before{content:\\\"\\\\f0f2\\\"}.fa-suitcase-rolling:before{content:\\\"\\\\f5c1\\\"}.fa-sun:before{content:\\\"\\\\f185\\\"}.fa-superpowers:before{content:\\\"\\\\f2dd\\\"}.fa-superscript:before{content:\\\"\\\\f12b\\\"}.fa-supple:before{content:\\\"\\\\f3f9\\\"}.fa-surprise:before{content:\\\"\\\\f5c2\\\"}.fa-suse:before{content:\\\"\\\\f7d6\\\"}.fa-swatchbook:before{content:\\\"\\\\f5c3\\\"}.fa-swift:before{content:\\\"\\\\f8e1\\\"}.fa-swimmer:before{content:\\\"\\\\f5c4\\\"}.fa-swimming-pool:before{content:\\\"\\\\f5c5\\\"}.fa-symfony:before{content:\\\"\\\\f83d\\\"}.fa-synagogue:before{content:\\\"\\\\f69b\\\"}.fa-sync:before{content:\\\"\\\\f021\\\"}.fa-sync-alt:before{content:\\\"\\\\f2f1\\\"}.fa-syringe:before{content:\\\"\\\\f48e\\\"}.fa-table:before{content:\\\"\\\\f0ce\\\"}.fa-table-tennis:before{content:\\\"\\\\f45d\\\"}.fa-tablet:before{content:\\\"\\\\f10a\\\"}.fa-tablet-alt:before{content:\\\"\\\\f3fa\\\"}.fa-tablets:before{content:\\\"\\\\f490\\\"}.fa-tachometer-alt:before{content:\\\"\\\\f3fd\\\"}.fa-tag:before{content:\\\"\\\\f02b\\\"}.fa-tags:before{content:\\\"\\\\f02c\\\"}.fa-tape:before{content:\\\"\\\\f4db\\\"}.fa-tasks:before{content:\\\"\\\\f0ae\\\"}.fa-taxi:before{content:\\\"\\\\f1ba\\\"}.fa-teamspeak:before{content:\\\"\\\\f4f9\\\"}.fa-teeth:before{content:\\\"\\\\f62e\\\"}.fa-teeth-open:before{content:\\\"\\\\f62f\\\"}.fa-telegram:before{content:\\\"\\\\f2c6\\\"}.fa-telegram-plane:before{content:\\\"\\\\f3fe\\\"}.fa-temperature-high:before{content:\\\"\\\\f769\\\"}.fa-temperature-low:before{content:\\\"\\\\f76b\\\"}.fa-tencent-weibo:before{content:\\\"\\\\f1d5\\\"}.fa-tenge:before{content:\\\"\\\\f7d7\\\"}.fa-terminal:before{content:\\\"\\\\f120\\\"}.fa-text-height:before{content:\\\"\\\\f034\\\"}.fa-text-width:before{content:\\\"\\\\f035\\\"}.fa-th:before{content:\\\"\\\\f00a\\\"}.fa-th-large:before{content:\\\"\\\\f009\\\"}.fa-th-list:before{content:\\\"\\\\f00b\\\"}.fa-the-red-yeti:before{content:\\\"\\\\f69d\\\"}.fa-theater-masks:before{content:\\\"\\\\f630\\\"}.fa-themeco:before{content:\\\"\\\\f5c6\\\"}.fa-themeisle:before{content:\\\"\\\\f2b2\\\"}.fa-thermometer:before{content:\\\"\\\\f491\\\"}.fa-thermometer-empty:before{content:\\\"\\\\f2cb\\\"}.fa-thermometer-full:before{content:\\\"\\\\f2c7\\\"}.fa-thermometer-half:before{content:\\\"\\\\f2c9\\\"}.fa-thermometer-quarter:before{content:\\\"\\\\f2ca\\\"}.fa-thermometer-three-quarters:before{content:\\\"\\\\f2c8\\\"}.fa-think-peaks:before{content:\\\"\\\\f731\\\"}.fa-thumbs-down:before{content:\\\"\\\\f165\\\"}.fa-thumbs-up:before{content:\\\"\\\\f164\\\"}.fa-thumbtack:before{content:\\\"\\\\f08d\\\"}.fa-ticket-alt:before{content:\\\"\\\\f3ff\\\"}.fa-times:before{content:\\\"\\\\f00d\\\"}.fa-times-circle:before{content:\\\"\\\\f057\\\"}.fa-tint:before{content:\\\"\\\\f043\\\"}.fa-tint-slash:before{content:\\\"\\\\f5c7\\\"}.fa-tired:before{content:\\\"\\\\f5c8\\\"}.fa-toggle-off:before{content:\\\"\\\\f204\\\"}.fa-toggle-on:before{content:\\\"\\\\f205\\\"}.fa-toilet:before{content:\\\"\\\\f7d8\\\"}.fa-toilet-paper:before{content:\\\"\\\\f71e\\\"}.fa-toolbox:before{content:\\\"\\\\f552\\\"}.fa-tools:before{content:\\\"\\\\f7d9\\\"}.fa-tooth:before{content:\\\"\\\\f5c9\\\"}.fa-torah:before{content:\\\"\\\\f6a0\\\"}.fa-torii-gate:before{content:\\\"\\\\f6a1\\\"}.fa-tractor:before{content:\\\"\\\\f722\\\"}.fa-trade-federation:before{content:\\\"\\\\f513\\\"}.fa-trademark:before{content:\\\"\\\\f25c\\\"}.fa-traffic-light:before{content:\\\"\\\\f637\\\"}.fa-trailer:before{content:\\\"\\\\f941\\\"}.fa-train:before{content:\\\"\\\\f238\\\"}.fa-tram:before{content:\\\"\\\\f7da\\\"}.fa-transgender:before{content:\\\"\\\\f224\\\"}.fa-transgender-alt:before{content:\\\"\\\\f225\\\"}.fa-trash:before{content:\\\"\\\\f1f8\\\"}.fa-trash-alt:before{content:\\\"\\\\f2ed\\\"}.fa-trash-restore:before{content:\\\"\\\\f829\\\"}.fa-trash-restore-alt:before{content:\\\"\\\\f82a\\\"}.fa-tree:before{content:\\\"\\\\f1bb\\\"}.fa-trello:before{content:\\\"\\\\f181\\\"}.fa-tripadvisor:before{content:\\\"\\\\f262\\\"}.fa-trophy:before{content:\\\"\\\\f091\\\"}.fa-truck:before{content:\\\"\\\\f0d1\\\"}.fa-truck-loading:before{content:\\\"\\\\f4de\\\"}.fa-truck-monster:before{content:\\\"\\\\f63b\\\"}.fa-truck-moving:before{content:\\\"\\\\f4df\\\"}.fa-truck-pickup:before{content:\\\"\\\\f63c\\\"}.fa-tshirt:before{content:\\\"\\\\f553\\\"}.fa-tty:before{content:\\\"\\\\f1e4\\\"}.fa-tumblr:before{content:\\\"\\\\f173\\\"}.fa-tumblr-square:before{content:\\\"\\\\f174\\\"}.fa-tv:before{content:\\\"\\\\f26c\\\"}.fa-twitch:before{content:\\\"\\\\f1e8\\\"}.fa-twitter:before{content:\\\"\\\\f099\\\"}.fa-twitter-square:before{content:\\\"\\\\f081\\\"}.fa-typo3:before{content:\\\"\\\\f42b\\\"}.fa-uber:before{content:\\\"\\\\f402\\\"}.fa-ubuntu:before{content:\\\"\\\\f7df\\\"}.fa-uikit:before{content:\\\"\\\\f403\\\"}.fa-umbraco:before{content:\\\"\\\\f8e8\\\"}.fa-umbrella:before{content:\\\"\\\\f0e9\\\"}.fa-umbrella-beach:before{content:\\\"\\\\f5ca\\\"}.fa-underline:before{content:\\\"\\\\f0cd\\\"}.fa-undo:before{content:\\\"\\\\f0e2\\\"}.fa-undo-alt:before{content:\\\"\\\\f2ea\\\"}.fa-uniregistry:before{content:\\\"\\\\f404\\\"}.fa-unity:before{content:\\\"\\\\f949\\\"}.fa-universal-access:before{content:\\\"\\\\f29a\\\"}.fa-university:before{content:\\\"\\\\f19c\\\"}.fa-unlink:before{content:\\\"\\\\f127\\\"}.fa-unlock:before{content:\\\"\\\\f09c\\\"}.fa-unlock-alt:before{content:\\\"\\\\f13e\\\"}.fa-untappd:before{content:\\\"\\\\f405\\\"}.fa-upload:before{content:\\\"\\\\f093\\\"}.fa-ups:before{content:\\\"\\\\f7e0\\\"}.fa-usb:before{content:\\\"\\\\f287\\\"}.fa-user:before{content:\\\"\\\\f007\\\"}.fa-user-alt:before{content:\\\"\\\\f406\\\"}.fa-user-alt-slash:before{content:\\\"\\\\f4fa\\\"}.fa-user-astronaut:before{content:\\\"\\\\f4fb\\\"}.fa-user-check:before{content:\\\"\\\\f4fc\\\"}.fa-user-circle:before{content:\\\"\\\\f2bd\\\"}.fa-user-clock:before{content:\\\"\\\\f4fd\\\"}.fa-user-cog:before{content:\\\"\\\\f4fe\\\"}.fa-user-edit:before{content:\\\"\\\\f4ff\\\"}.fa-user-friends:before{content:\\\"\\\\f500\\\"}.fa-user-graduate:before{content:\\\"\\\\f501\\\"}.fa-user-injured:before{content:\\\"\\\\f728\\\"}.fa-user-lock:before{content:\\\"\\\\f502\\\"}.fa-user-md:before{content:\\\"\\\\f0f0\\\"}.fa-user-minus:before{content:\\\"\\\\f503\\\"}.fa-user-ninja:before{content:\\\"\\\\f504\\\"}.fa-user-nurse:before{content:\\\"\\\\f82f\\\"}.fa-user-plus:before{content:\\\"\\\\f234\\\"}.fa-user-secret:before{content:\\\"\\\\f21b\\\"}.fa-user-shield:before{content:\\\"\\\\f505\\\"}.fa-user-slash:before{content:\\\"\\\\f506\\\"}.fa-user-tag:before{content:\\\"\\\\f507\\\"}.fa-user-tie:before{content:\\\"\\\\f508\\\"}.fa-user-times:before{content:\\\"\\\\f235\\\"}.fa-users:before{content:\\\"\\\\f0c0\\\"}.fa-users-cog:before{content:\\\"\\\\f509\\\"}.fa-usps:before{content:\\\"\\\\f7e1\\\"}.fa-ussunnah:before{content:\\\"\\\\f407\\\"}.fa-utensil-spoon:before{content:\\\"\\\\f2e5\\\"}.fa-utensils:before{content:\\\"\\\\f2e7\\\"}.fa-vaadin:before{content:\\\"\\\\f408\\\"}.fa-vector-square:before{content:\\\"\\\\f5cb\\\"}.fa-venus:before{content:\\\"\\\\f221\\\"}.fa-venus-double:before{content:\\\"\\\\f226\\\"}.fa-venus-mars:before{content:\\\"\\\\f228\\\"}.fa-viacoin:before{content:\\\"\\\\f237\\\"}.fa-viadeo:before{content:\\\"\\\\f2a9\\\"}.fa-viadeo-square:before{content:\\\"\\\\f2aa\\\"}.fa-vial:before{content:\\\"\\\\f492\\\"}.fa-vials:before{content:\\\"\\\\f493\\\"}.fa-viber:before{content:\\\"\\\\f409\\\"}.fa-video:before{content:\\\"\\\\f03d\\\"}.fa-video-slash:before{content:\\\"\\\\f4e2\\\"}.fa-vihara:before{content:\\\"\\\\f6a7\\\"}.fa-vimeo:before{content:\\\"\\\\f40a\\\"}.fa-vimeo-square:before{content:\\\"\\\\f194\\\"}.fa-vimeo-v:before{content:\\\"\\\\f27d\\\"}.fa-vine:before{content:\\\"\\\\f1ca\\\"}.fa-vk:before{content:\\\"\\\\f189\\\"}.fa-vnv:before{content:\\\"\\\\f40b\\\"}.fa-voicemail:before{content:\\\"\\\\f897\\\"}.fa-volleyball-ball:before{content:\\\"\\\\f45f\\\"}.fa-volume-down:before{content:\\\"\\\\f027\\\"}.fa-volume-mute:before{content:\\\"\\\\f6a9\\\"}.fa-volume-off:before{content:\\\"\\\\f026\\\"}.fa-volume-up:before{content:\\\"\\\\f028\\\"}.fa-vote-yea:before{content:\\\"\\\\f772\\\"}.fa-vr-cardboard:before{content:\\\"\\\\f729\\\"}.fa-vuejs:before{content:\\\"\\\\f41f\\\"}.fa-walking:before{content:\\\"\\\\f554\\\"}.fa-wallet:before{content:\\\"\\\\f555\\\"}.fa-warehouse:before{content:\\\"\\\\f494\\\"}.fa-water:before{content:\\\"\\\\f773\\\"}.fa-wave-square:before{content:\\\"\\\\f83e\\\"}.fa-waze:before{content:\\\"\\\\f83f\\\"}.fa-weebly:before{content:\\\"\\\\f5cc\\\"}.fa-weibo:before{content:\\\"\\\\f18a\\\"}.fa-weight:before{content:\\\"\\\\f496\\\"}.fa-weight-hanging:before{content:\\\"\\\\f5cd\\\"}.fa-weixin:before{content:\\\"\\\\f1d7\\\"}.fa-whatsapp:before{content:\\\"\\\\f232\\\"}.fa-whatsapp-square:before{content:\\\"\\\\f40c\\\"}.fa-wheelchair:before{content:\\\"\\\\f193\\\"}.fa-whmcs:before{content:\\\"\\\\f40d\\\"}.fa-wifi:before{content:\\\"\\\\f1eb\\\"}.fa-wikipedia-w:before{content:\\\"\\\\f266\\\"}.fa-wind:before{content:\\\"\\\\f72e\\\"}.fa-window-close:before{content:\\\"\\\\f410\\\"}.fa-window-maximize:before{content:\\\"\\\\f2d0\\\"}.fa-window-minimize:before{content:\\\"\\\\f2d1\\\"}.fa-window-restore:before{content:\\\"\\\\f2d2\\\"}.fa-windows:before{content:\\\"\\\\f17a\\\"}.fa-wine-bottle:before{content:\\\"\\\\f72f\\\"}.fa-wine-glass:before{content:\\\"\\\\f4e3\\\"}.fa-wine-glass-alt:before{content:\\\"\\\\f5ce\\\"}.fa-wix:before{content:\\\"\\\\f5cf\\\"}.fa-wizards-of-the-coast:before{content:\\\"\\\\f730\\\"}.fa-wolf-pack-battalion:before{content:\\\"\\\\f514\\\"}.fa-won-sign:before{content:\\\"\\\\f159\\\"}.fa-wordpress:before{content:\\\"\\\\f19a\\\"}.fa-wordpress-simple:before{content:\\\"\\\\f411\\\"}.fa-wpbeginner:before{content:\\\"\\\\f297\\\"}.fa-wpexplorer:before{content:\\\"\\\\f2de\\\"}.fa-wpforms:before{content:\\\"\\\\f298\\\"}.fa-wpressr:before{content:\\\"\\\\f3e4\\\"}.fa-wrench:before{content:\\\"\\\\f0ad\\\"}.fa-x-ray:before{content:\\\"\\\\f497\\\"}.fa-xbox:before{content:\\\"\\\\f412\\\"}.fa-xing:before{content:\\\"\\\\f168\\\"}.fa-xing-square:before{content:\\\"\\\\f169\\\"}.fa-y-combinator:before{content:\\\"\\\\f23b\\\"}.fa-yahoo:before{content:\\\"\\\\f19e\\\"}.fa-yammer:before{content:\\\"\\\\f840\\\"}.fa-yandex:before{content:\\\"\\\\f413\\\"}.fa-yandex-international:before{content:\\\"\\\\f414\\\"}.fa-yarn:before{content:\\\"\\\\f7e3\\\"}.fa-yelp:before{content:\\\"\\\\f1e9\\\"}.fa-yen-sign:before{content:\\\"\\\\f157\\\"}.fa-yin-yang:before{content:\\\"\\\\f6ad\\\"}.fa-yoast:before{content:\\\"\\\\f2b1\\\"}.fa-youtube:before{content:\\\"\\\\f167\\\"}.fa-youtube-square:before{content:\\\"\\\\f431\\\"}.fa-zhihu:before{content:\\\"\\\\f63f\\\"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format(\\\"embedded-opentype\\\"),url(../webfonts/fa-brands-400.woff2) format(\\\"woff2\\\"),url(../webfonts/fa-brands-400.woff) format(\\\"woff\\\"),url(../webfonts/fa-brands-400.ttf) format(\\\"truetype\\\"),url(../webfonts/fa-brands-400.svg#fontawesome) format(\\\"svg\\\")}.fab{font-family:\\\"Font Awesome 5 Brands\\\"}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format(\\\"embedded-opentype\\\"),url(../webfonts/fa-regular-400.woff2) format(\\\"woff2\\\"),url(../webfonts/fa-regular-400.woff) format(\\\"woff\\\"),url(../webfonts/fa-regular-400.ttf) format(\\\"truetype\\\"),url(../webfonts/fa-regular-400.svg#fontawesome) format(\\\"svg\\\")}.far{font-weight:400}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format(\\\"embedded-opentype\\\"),url(../webfonts/fa-solid-900.woff2) format(\\\"woff2\\\"),url(../webfonts/fa-solid-900.woff) format(\\\"woff\\\"),url(../webfonts/fa-solid-900.ttf) format(\\\"truetype\\\"),url(../webfonts/fa-solid-900.svg#fontawesome) format(\\\"svg\\\")}.fa,.far,.fas{font-family:\\\"Font Awesome 5 Free\\\"}.fa,.fas{font-weight:900}\"\nvar _Assets131cd67b6dd480f64ec4b1e6dc1172c43a81c7a9 = \"{{define \\\"header\\\"}}\\n<!doctype html>\\n    <html lang=\\\"en\\\">\\n        <head>\\n            <meta charset=\\\"utf-8\\\">\\n            <title>{{.}}</title>\\n            <link rel=\\\"apple-touch-icon\\\" sizes=\\\"180x180\\\" href=\\\"/public/img/apple-touch-icon.png\\\">\\n            <link rel=\\\"icon\\\" type=\\\"image/png\\\" sizes=\\\"32x32\\\" href=\\\"/public/img/favicon-32x32.png\\\">\\n            <link rel=\\\"icon\\\" type=\\\"image/png\\\" sizes=\\\"16x16\\\" href=\\\"/public/img/favicon-16x16.png\\\">\\n            <link rel=\\\"manifest\\\" href=\\\"/public/img/site.webmanifest\\\">\\n            <link rel=\\\"stylesheet\\\" href=\\\"/public/css/all.min.css\\\">\\n            <link rel=\\\"stylesheet\\\" href=\\\"/public/css/style.css\\\">\\n        </head>\\n        <body>\\n            <div class=\\\"logo\\\">\\n                <img src=\\\"/public/img/hex.svg\\\" height=\\\"40\\\" alt=\\\"textile\\\"/>\\n            </div>\\n{{end}}\\n\\n{{define \\\"footer\\\"}}\\n        </body>\\n    </html>\\n{{end}}\\n\"\nvar _Assets73d5f881dc044ff1def628efb1b6c854a3374148 = \"\\x89PNG\\r\\n\\x1a\\n\\x00\\x00\\x00\\rIHDR\\x00\\x00\\x00 \\x00\\x00\\x00 \\b\\x06\\x00\\x00\\x00szz\\xf4\\x00\\x00\\x04$IDATX\\x85\\xb5\\xd7]L\\x9bU\\x1c\\xc7\\xf1?\\xf8\\x12\\x02ax\\xab\\xf3\\x02_B\\xc5D\\xbc\\xd0Bb\\\"$@\\xc8tnJ\\x16\\xb7Ev\\xe1\\v\\xcc9]\\x06\\xc38\\x88A\\xcd\\u0605/@\\xe6\\x92y\\xa5\\xbb\\x9a\\xdb\\xc4\\x172lK\\xdbĔ\\x97nŵ\\xcf)0\\x1a3\\xa3ܰM\\x91Hbf 0x\\xbe^\\xb4<\\xf0\\xf4yZh\\xe7H\\xfe\\tiz\\xce\\xefs\\xce\\xd3\\xf3\\x9csD\\xb2\\xfccLJ\\xd0ą&.Ƥ$\\xdb~2\\x0f\\x8eH\\x11c\\xd2E\\xa4p\\x91\\xc1\\xa3\\x10h\\x03\\xadp\\x11%\\xddD\\xa4\\xe8\\xce\\x05#\\xb9D\\xa5i9r\\xd7\\xccٞ\\x03\\xbc\\xd74\\xc5b\\u007f\\f<1\\x18\\b\\xc2\\xc8nP\\xb93h\\xb2\\x1f$\\xf7\\xff\\rWR\\x89\\x92\\xe8\\xc2p\\x05\\xaf5D(uB\\xa9\\x13\\xdej\\xf8g\\rቁ\\xff\\a\\b\\x95\\x83\\x92(J*o?8$\\xc5(\\xe9%\\xbcU\\x9f\\xf7~Ϋ\\xbbo\\x1a\\xe1)\\x11\\x9eI\\xf8\\xe9\\x04\\x84\\xb7\\xea(\\xe9%$ř\\a\\x8fK\\x01\\x11\\xe9$\\x92?\\xcf\\xd0at\\xb7\\xe2\\xe3C\\xb3\\xbc\\xf4\\xc2B\\xa2n\\xae\\xfb\\u007f\\x81\\x13\\xad3\\xe8?N\\xacC\\xc4\\xc0\\xa3`\\xf00D\\xf2\\xe7\\x89H'\\xe3R\\xb0q\\xb0H\\x0e\\x9a4\\xa0r\\xa6\\t\\xee\\x04o\\x00ܓ\\xf12:\\x1e\\x83\\xe0sIa1\\xd8\\xdb\\n\\xfd\\xe3\\xd6Ͻ\\x01\\b\\xee\\x04\\x953MT\\x1a\\x10ɱ\\x0f\\x8f\\x8a\\x13%\\x97\\x18-\\x03\\xff\\xb9xc\\xbb\\xf0\\x8b5\\xa0\\xddk\\rz\\xa2\\x0e\\xea߶Gxb\\xf1>G\\xcb@\\xc9%\\xc2Rn\\x05(\\xf9\\x8d@G\\xfc\\x19\\xa6\\vW\\x92\\x1a\\xe0\\xa8J\\x8f\\xf0LB\\xa0\\x034\\xf9\\xdd\\x1e\\xe0\\xf3ſ\\xe8\\xba\\x02g\\x86\\xe1\\xccH\\xa2\\x86\\xe1\\xc2v\\xf0\\xe5\\x81/\\x0f\\xdd[\\xc8\\xf5\\xb3WMu\\xa3\\xac\\x81\\x1b\\xa5/\\xc7k\\xd71\\x96\\xfb\\xaf\\xd8#|\\xbeM\\x00ܓ\\xf0\\xe6\\xb1\\xf8\\x88lj\\xc9QcY\\r\\xeb닲\\xd3t\\xbe\\xf2k\\xd2\\xea\\xc8\\x04\\xb0\\x01\\\"5@\\xe7T\\xd9ipTQ\\xf3ԟ6K4\\x13@\\x1aD*\\xc0j\\xf8*\\xc0\\xf6=\\x91\\x11 \\x81Г\\x10v\\x80Sί\\xa1\\xacΨ\\xea\\xa7g\\xec_V\\x99\\x02\\x96]1\\xba[cp\\xe4ᴀ\\u007f\\xfb~1\\xb5\\xab\\xae]\\xb2\\u007fcf\\x02Xq\\xc5hk\\x9c\\xa3\\xb2\\xf6:h\\x02-\\x8fd\\r0\\x10n\\xff\\xe6\\x00ˮ\\x18G\\x1b\\xe7(u\\x12\\a(1\\x10\\xd9\\x02J\\x9d\\xd0\\xfcFlc\\xc0rb䫍\\f@\\x02\\xb1tđ5\\xa0v\\xdbTz@r\\xb8\\x05\\xa0\\x04]\\x13>m\\xff\\xcc\\f8t\\x12\\x1e\\xaf6\\xea\\xd6@!K\\x97\\xef\\xb1ԭ\\xf0ݩ\\x01+\\x03>c\\xda\\xd3\\x01V\\x11\\x9f\\xb4w\\x99g\\xa0\\xb9km\\xb5\\xf8\\xf3,mP\\x02?\\x97\\xa4\\x06t\\x1c\\x9c\\xb0\\x9d6;@2\\xc2x\\x04-]\\xa9\\x01\\xa1\\n\\xf0]H\\r\\xa8\\xdd6\\x95\\x11`=\\xc2\\xf4\\x1bh\\xe9\\xb6\\x02B\\x15\\xe0\\xd1\\xd2/ÿ\\x9f\\xadc\\xf6\\xb1z\\xfe\\xaa<\\xc0\\xcc7W\\x8d\\x9a\\xfdj\\x14*\\x9eY\\xabw\\xdf\\a\\xef\\x90Q\\xfa\\xc0\\x10\\xbai\\xe7\\x8c\\xc1\\xe5\\xfb\\x93\\xc2#\\x9bx\\x11\\x1d|\\x14\\x1c\\x95P\\xb5\\xd7\\xdcٹ\\x8bk϶\\xf1#\\xf36ml\\xdbI\\xdbw\\xf8\\x01\\xf3\\xc87\\u070e\\xc3R\\x8e&!\\xce\\x17\\xc2\\xeb\\xdb\\xed\\x01\\x8d\\x1fZ\\xc3=v\\x98\\x04`}\\xb8\\xff<\\x8c>\\t\\x9a\\x84\\x18\\xb39\\x90\\x88\\x18G\\xb2}\\xa8\\x9ckƑl\\x15\\x90r\\xe4ֽ\\x03\\xf7$\\x04\\xeb\\xe3\\xe1\\xde\\x00\\x04_\\x04\\x95s\\rM\\xf6\\xa5<\\x92\\x99 \\xe3R\\x80&\\xc7\\xf5H\\xfe|\\xff\\xc9\\x0fصc\\x8e\\x1d\\xcf/\\x18\\xf5e\\xfb\\x1f\\xf6ᦙ\\t\\xc3`s\\xfcP\\xaa\\xc9\\xf1M\\x1dJ-\\x90\\xa8\\x14\\x13\\x95\\xdei\\xffC\\xfa;M\\xdfS\\xea\\xd4ik\\x9ccŕ\\\"\\xd8t,\\u007fPGɷD\\xb38\\x96[ J\\xaaP\\x12\\x9d\\xf8\\xae\\x8a\\x15o_\\xeap\\u007f\\xdf\\xfa\\x8bI\\xd5m\\a\\x9b\\x10H.\\x9a\\xecG\\xe5\\xce0\\xb2'~\\x1d[\\r\\x1e\\b\\xc2Ȟ;w53A\\\"R\\x84&=h[\\x16\\t\\xb4%.\\xa7[\\x16Ѥ\\x87\\x80\\xdcwǂ-\\x90\\xb08P\\xe2F\\x89\\x9b\\xb08\\xb2\\xed\\xe7?-S\\x12\\xc4\\x17x'L\\x00\\x00\\x00\\x00IEND\\xaeB`\\x82\"\nvar _Assetsbddb83b9a8840e063a3c00a419998f20584423c9 = \"wOF2\\x00\\x01\\x00\\x00\\x00\\x005\\b\\x00\\r\\x00\\x00\\x00\\x00\\x85,\\x00\\x004\\xad\\x01J\\xc0\\x83\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00?FFTM\\x1c\\x1a\\x1e\\x06`\\x00\\x87Z\\x11\\b\\n\\x81\\xdd@\\x81\\xadJ\\x016\\x02$\\x03\\x84T\\v\\x826\\x00\\x04 \\x05\\x8a[\\a\\x8f+\\x1b\\x19k%㘥\\xc0\\xc6\\x01\\xe0!\\xf1X\\xa2(\\xa1\\x9a\\xc0\\xec\\xff\\xcf8:\\xc6\\x10\\x90\\xc1$-\\xa9_AE\\xa4\\xa4\\xc5\\xe0dU\\tTʕRT5\\xb9\\xf6\\xa4\\xe6-a\\xc4|\\x0e4k$\\xee\\xa6Jy\\xfd\\xfd\\xe8\\xf1\\x99p\\xbfT\\xbf\\x1a\\x1206\\xc2\\vp\\xeb=J\\xb85\\x86\\xb9d\\xa5\\x0e\\x9cW\\x85*a\\x1b߯\\xac\\u007f\\x85\\x95\\xc3\\xf4=mbt\\xba\\x1f\\x92\\x14M\\xff\\xff\\xd7ڽ_f\\xfe\\xc8\\xdbE\\xdcOW\\x894\\xb1\\x94H$*[\\x11\\x8ft\\xe2\\x86\\n%y~C\\xa4[M\\xdanʦ\\x91\\x90\\x84$\\x92\\n\\x84\\x96\\x90K\\x02\\x160\\x81Pz\\x02I(-\\xa1%(z \\x02\\x01Q\\xa9B\\xb0\\x1c`9D8\\t\\x9e\\x9c\\xf5\\xcer\\x8a\\x02\\xde[\\v\\xe8Y\\x1a\\a\\x96\\xfaw굊\\xd5O_\\xef\\x9e\\u061dd\\x1a\\x14\\x9a1\\x8a\\x01J\\xc7\\xe9*.]\\xc98\\xac\\x02\\xa2\\xa5\\xbbT\\xd6\\a,\\r\\xa0\\n\\x03`i\\xc3C;\\xf1\\xc5=\\xdbw\\xf7\\xe7\\xa3\\x14Eq\\x93@\\x84gA\\x12`\\x91\\x06\\x9c\\x05\\xde$\\xcdd\\x81a\\x93e\\x16\\x87D\\x19\\xd7\\xf6w\\x04\\f\\xf8~k\\x16%\\xbf+g\\xb70%w\\xf8|\\x85[\\xc8\\x02e\\xa8$\\xec\\x1d\\xff`\\xbb\\xbf\\x8b6\\xbd\\xb9\\x11IJ}J\\x17\\x93u\\x1a\\xea\\x92\\xfc\\x89ܜ\\x1d\\x19\\x03\\x8fP\\xe0\\x89p\\x98\\x86\\xa6@\\xc0\\xff\\xb2\\xa6-m\\xb5zc~~|\\x1f\\x11\\xa2\\xe4\\f\\x84K\\xa0\\vQdkv\\x05w\\x83\\x03K\\x90C\\b\\xe4\\xfb\\x1aʩ5s\\xfdʹ?\\x81\\x13\\x17\\x16\\x8c\\x81v\\x97\\v\\x04\\x92\\xa6\\xbd|\\x9az\\xef\\xfcZ~|\\xa4\\xaf\\xe6K\\xb6ղm\\xd9V\\xa0\\x94\\xbai\\xc0e\\x10,\\xc2\\xc0<\\xe3b]\\x15p\\x89\\xe5\\xf008/\\xe4\\x11\\a\\x11\\x01\\r\\x80\\xf6Fw\\xfe\\xd5Y\\xb50\\xb3!&\\xed\\xa52\\xd5\\x1b\\xd3\\xeb\\xef\\xf5[\\x94\\xfa\\xffK\\xc2__\\x02\\v,۲\\x9c\\x80I\\x18'\\x11f\\xc0\\xac\\xe7I\\x02{\\x003\\xf30\\x0e\\x136\\xe4D\\xb0\\xe7\\x19O\\xc4ސS{)\\xa5\\xa2\\xdfw\\xedu\\xcd\\x15mj\\xafh\\x9b\\xd31E\\xa2ݳ+\\x04pUv\\xb4ø\\xfc_\\xc2\\u07bbg-٣\\x11Bh$Ǯ\\xe3\\x9f\\xc7\\xf0\\xf8\\u05f6\\ahD\\xf9\\xaa\\xa5ϻ\\x05\\x80\\x00|\\xec\\xeb?\\x01\\x80ϟ2\\x89\\x10:\\xb3\\\\\\x0e\\xa8\\x03`\\x90u\\x05\\x88\\xa3\\xee\\x0e\\xe0\\xf2\\x03\\xbb\\x81\\x03\\x1ei\\a\\xc0\\n\\xf8\\x8c\\xff\\xa7Q\\x9b\\x01\\xc37Xܣݳ\\x98\\x12\\xd0\\xf4\\v\\xfb\\xeb\\xa5\\xeb\\x942\\xe7s\\r\\xad\\f1\\xdc\\xf90\\x00:\\xa0h\\x91\\xd0\\xc2\\xf6\\x9a'\\xaa\\xf5\\xff\\xf7Z`\\xeb8\\x00\\x9e\\xac\\xc9 C\\x1f\\xdc\\a\\xf8\\x03\\x1b1R\\xe4,$\\x9al>\\xa6\\x92\\xe5\\u0530\\x92&\\xda\\xe9d3\\x9f\\xe1f\\x17\\xe7\\xb9\\xc4\\f\\xff\\xe7g>\\xfc|ʕ\\xaf\\xcahcM4\\xd5t\\xf3,\\xb5ݍ~\\xe9e\\xaf{\\xdfg\\xbe\\xf57\\xbf=~J(\\xa5\\xdc\\xf2\\xabnE\\xeb\\xda\\xd0H\\xa3\\x8d\\xf7Mg\\xba\\xd5\\xe3~8\\xe8\\x9fe'\\xf7\\f\\x9f\\x9b7\\xed\\xfe\\xf2~\\xb8\\x8c9\\xb6b\\xeb7\\xb0\\xe1\\x1d\\xd9\\xf1\\x9d٥\\u007f\\xe1\\xab˹q\\xe6\\xc1\\x1b\\xac;\\x0f~\\xf1\\xa0\\x9cB)\\x1a͵\\xc45\\xf6\\xcc\\x0e\\xe9\\xb45\\xcej\\xde~Y\\xf5\\x1b\\x1e\\xdd\\xf9t\\x93\\x87\\x94\\xf5\\x89\\xf5kܧ۹\\xaf\\xab\\x84\\xfa\\u007f\\xc7|\\xff\\xc5\\xe7\\x1f\\xbd\\xf6⣇\\xbao\\xff٭\\xb7\\xec\\xfeɶ+O\\x0eۭp\\xf0\\xed˻9\\xd7\\x18o\\xbc\\xf6\\xc23O=\\xf4\\xad#\\xf6\\xea\\xb6\\xcaDK.\\xa4Q \\x00\\xa4\\bK\\xfe\\x8f\\xfc/\\xf9\\xad\\xbc\\x94\\xbbrG\\xbe\\x92\\xfd\\xb2O\\xf6\\xca.\\xd9&=\\xd2,K%^\\xbc\\xea\\xc9|8wdW\\xb3\\xc1L\\x9a\\xcc\\xc4\\x10gћ\\xf8>}\\x9aN\\xa7wӛ\\xc3\\xe2\\xef\\\"h\\xe1\\nj+\\xb3&\\x911\\xf6\\x1f\\x1e\\v\\xcci\\xc04\\x9a\\x94\\x82\\x9bl\\xad\\xf7\\x05\\xa0\\xf7\\rl\\xf8\\x1b\\x9f\\xbc\\x18\\xc4\\xecs\\x9a\\xac\\xb0\\x86sb\\xb1\\xe8\\xc3\\x10\\x12\\xbb\\u007f\\\"\\x1e0\\x0ev\\x9f\\x1b\\x1a\\x1c#\\x1a\\xc4CG\\x81\\xc1\\b`\\f&\\x8f\\xe8\\xd8j\\x10*\\x81\\xbc85\\x14'r\\xb0E$\\xe1ǎ\\x88i.\\x87qD/%'\\x96\\xa1\\xe0\\x87\\xea\\xc4b\\xc4h?\\x9aJ)\\xa1l\\f\\x17\\xf3\\x89\\x13\\xe0\\x10\\n\\x021F\\x1c6\\x00F\\xac\\x10Q\\xdaA\\x05ߝ\\xc5\\x1a\\x8bmI\\x01\\xde>{V\\x9a\\xeejl\\a\\x06\\x1e1A\\xb8\\x04\\xbc\\x97X\\x141\\xc8\\\"\\xcf\\f1Dd\\xa3h뗸\\nM\\\\M\\xe8\\x00\\x91\\xac\\x14p\\xbf\\xd4\\a\\xad\\xf0\\xb0\\xc0ݔFu\\xad\\xbd\\xca\\x00\\x85\\xceӮ7\\xb6\\xc8\\xee\\x1e\\xe5Ѩ\\f\\x04y\\xae@V0\\x1fD\\x81\\xea\\f&\\x1cA\\xc5q\\xdeZ\\xa0\\xb1\\xa2,=\\xfeT˪\\xe0\\xf5\\x06\\xd7X\\xef\\t4\\x8c\\x82\\xf9\\x91\\xc9\\xfb\\x98\\xfa\\xbe(\\x1d\\x10\\xfc\\x88\\xack\\xa9\\xc3J\\xa9\\xa0\\x16>\\u007fjj\\xc1\\r\\xda\\xdbT8\\xc0Vq(\\x9d\\xe6\\x87\\xe4S\\xedt\\t\\x1a\\xbb\\xb9\\xa8\\xfa\\xd0\\x03\\x01kJ\\xdb^d\\xf4Ǩ\\xf0\\xed9ը\\x98\\xfb\\xab\\xfbZ6Eq\\xf8\\xb3\\xcf\\xf3\\x97\\xf1\\xfa\\xe1a\\xfa\\x0e)\\xab'`\\xacG34\\x01`\\xda\\x03\\xb9P\\x83A\\x13[\\x1a\\xa0\\xc2+\\xcc{L\\xda\\xf3\\x9dB\\xe2\\x8ci{_\\xe5\\xa9d\\x03ٕ\\x10\\xd2+\\xfd/k(鄨2r:\\xc2\\x12\\xb3\\xfc\\xaaSn\\x83\\t%\\x19A\\x1c\\x19\\xc5\\b\\x0f\\xb8\\x90\\x80\\xd1\\v\\x03\\x91\\x92\\x89}u\\x96\\xa5\\xd4t!\\x95\\xbb\\xac\\x8d*\\xc5\\xe4*\\xba>Y\\x9f\\x92\\x15cE\\xdbU5AB\\xc1\\xae\\x17\\xb1\\xb4.!OL:%c\\n\\x87\\x1e\\xa10~Q%pø\\b\\b\\xe3*$r\\xb5\\xa91\\x82/\\x93\\xc7\\xda\\xe7\\x05\\xbd\\u007f\\xc3\\x10I*\\xc0F\\xdfGcj\\xd3\\xd9\\xc9t\\x14\\x16\\f\\xe6jV'N\\xd6\\xf4\\xa2u\\xbd\\xc4\\f\\x9c\\xf5\\x9d\\xb0\\xb06\\x1f\\x83\\xb80k\\x17M\\xae\\u007f\\xdb8\\xa5\\x18f\\xb5\\x95\\xb3\\x8cz'M,q&O\\x88G\\xfbL\\xb3\\x9fO\\xcb0L\\x83\\x98%\\x1a\\x81\\xec\\x16\\xaaف\\x8e\\x04\\xeb\\x1e}`B\\xbcF\\xbc\\x8bx\\x1f\\xf1%(a\\xec$4\\xb2c\\xf7\\xa5\\xfd\\x8a\\xbeq~\\x9c\\xe10\\xbc\\xcb\\xf74q|\\xa1=j\\x89l\\x16<.\\xc8\\xe4J\\x81\\x95i\\x1b\\x8c\\xe24\\x15\\x02|\\x9f\\xba\\x80\\x02\\x11\\xa1x\\x04\\x13\\n\\xa6\\xcd\\x04\\xfa\\xda\\xd0n\\xb9\\x1d'\\xa8\\xc0\\x84TR\\xa6ğ\\x06ٙ\\xa7\\x881\\xe2N01\\xfei\\nX=\\x83\\b\\xb2\\x8dv\\x9f\\r(]\\xacȄ\\x1f\\x13\\x95\\x95\\xe0\\t\\xe5ª\\x8d\\xab7\\xe4`팇\\x1a\\xaa_h\\xbb\\xbc\\xee&\\xbc\\xb4RבX\\xc0\\x04\\xe3\\xa0\\xe4*\\x82\\xbc\\xceF\\xdb\\x19\\x83\\xa24\\x0e\\xf2Y\\xdb~[\\x96\\x03Z\\\\\\u05f6\\x8dÆAF\\xd6\\v\\xa5phP\\xaa\\xa9\\xa1t\\xf0P\\x9ez\\xed\\xf0\\xc1\\xd8g@\\xe8G\\x0e\\xef3(\\xd5CGj\\x8b\\x9c\\x0f\\xffɃ#\\xdeЭ\\\\1\\x98f%\\x02\\t\\xcc\\xc5tڭz\\x1d(@\\xeb\\xf0|\\xa9\\xcbE\\fD\\x13\\xb1\\xce\\x14\\xe1]w\\xb0^\\x85\\xad\\x87\\xde&\\x85\\xd09V\\x0fB\\x93\\xa3\\xdcV\\u0096\\xd2\\xc4\\x1f\\bGO4\\xec3hBb\\xc1\\xf9\\x8c\\xf1(\\xfa\\x9c\\x03\\x8a\\xc2LѾ\\x11\\x194\\xba\\xc4RGW\\xeeh\\x89\\xc1\\xdeږ\\x127\\xb3^\\xb9R\\xf4~\\x11\\x05ǆV\\a+\\xe2\\xf8(ͯ{\\x18\\x83-Q\\vM\\xaeX\\xd5\\x1a\\x8a\\\"ҩg\\x01٤\\x8b\\xb3\\xc1\\xf4\\x0f\\xcbfHN\\xd9u%\\xa60\\x1b)\\xa1\\xf6\\xd1\\x05u\\x99p#\\x15)\\x88\\x9f\\xa01j\\xba\\xf4&ӯ!Lu\\x15\\x05\\xd6\\x15S\\x95\\x94?\\x98\\xcfNi\\xff\\xa0}\\x13R\\xea\\xa1c0\\xa8\\x1dF\\xe5!\\xbd\\x942*\\xd1\\xf8v\\xd1\\xf9A'\\xc0\\xe0\\xe1Ɓ\\xe2\\x8e\\xf9\\xffG\\x16\\xb6%\\x95_T\\xe2\\x14ׁ\\x8e>\\xa4\\x14;\\u0088dX\\xb9\\xc6\\xcd\\x14Sx\\xc8\\xdb\\\\\\xe5\\x15\\xc4\\xfdu\\xc4x\\xb9О6A\\rV͕̏D\\xc3Q\\x04\\x9c\\xc86pc,\\xc5|L\\xf1\\xf3\\xa3\\x01\\xc4\\xeb\\xedܾ\\xa40\\xdc\\xfa\\n+\\x9f\\xcf6\\xb2B\\xeb/\\x81q\\xef\\xc46\\xe1\\x1f\\xdb\\u007f\\xe7Υ\\xd8\\xc9Sgφ/ûw\\xaf]U\\xea\\xf7\\xe7ϧ\\xe5\\x99\\xd3\\x17.$o\\x92\\a\\x0f\\xa6\\xba\\xbaoz\\xf3\\x99\\xfa\\xdd\\xfbwC\\xfe\\xaa\\x9e=w6U\\x99\\xcb\\xcb\\xee\\x14}\\xf0b\\xb0\\x97\\\\8\\u007f!\\xae2\\xe5j\\xb8\\x98\\xb1\\xa6\\xd0/$;䷴Q\\xfd\\xf0\\x9c%HI\\xf3\\x8a\\xa0\\xd7\\xc8\\xc6\\xc3\\xd4N6\\xfd\\xa4/'\\x94ơ\\x13鿎\\xd7P\\x8f\\x1b\\x8b\\xfac\\xb0\\xb6?{\\xad\\xae\\xf7\\x96{\\x05TZu\\x14\\xb3r\\xaap\\xf2%z\\a>paV\\xd4}o:L\\aa\\xa0\\xcbI/\\xc0z\\x06(&\\r :(0\\t\\x81X\\xa9(\\x95\\xc2X\\x064\\xa6\\xa7q\\xea\\x1d\\xe9i\\xf2\\x8c\\x16:\\xc2e6\\xa7\\x10op.\\x10/\\xb0\\xda\\xd5q\\x95\\x17a\\x1b\\xa7N\\x04.\\xa1&\\xa8!7t5\\xaf\\x97v\\x96\\t͒6\\xd8\\xf1\\xf7m>\\xa5\\xb2\\xaaz\\x16\\xa7\\x92<l.\\xef\\xf4\\x8bZ\\r\\x11\\x18\\a\\v\\x19\\xc9\\xef\\x05+\\xd2\\x19\\x99\\x97\\xd3\\xf48\\x88\\xab\\xdd\\xe2\\xd4+\\x90\\x1d\\xfa\\xc0\\xb5\\xb3\\xdaG\\xea\\xd0\\x19\\x80\\x1dM4\\xa9\\xd4 &m1\\x958\\x1d\\xc4\\x16ȽQ\\xd8\\xddk4\\xd4Fq\\xba\\x0f{\\ttl\\x15ME\\\\S\\\"\\xc1=M\\xf75\\xf4\\x19\\xf1\\xf6>\\x80\\xa6\\xa4\\xcb6h\\x82\\xbe\\xb4\\t\\x1c\\xe4n\\x05ؑ\\xaby\\xf9Q\\xeb\\x13\\xa6X\\xd2z\\x1a[\\xc1iW\\xe7\\xbe~\\x0f:\\xe2~TY\\xd9ʰ\\xddI,\\xac\\x19lv\\xfbG\\xa1^ᖹ^\\x85h\\xbem\\xea!U{\\x8fR\\xe8\\x92\\vq7Վ>o$z\\x0f\\x10\\xdaz\\x81\\xc2\\xda\\xeb\\x14\\xa7V5\\x90\\xe1-\\xfa\\xa5N\\xb3Ći\\xf1U\\xfd\\x85\\xbe\\xb2_\\xba\\xaf\\x9d\\x88\\x06N\\xc7m\\xd90mZ\\\\\\xf1\\xd1B\\x9b6\\xed6o`\\xf92\\x80_\\xd6\\x1c_\\xe4\\xaf\\r\\xd6ZSen\\xb3):Z\\xbcz\\x84r\\x9b!\\xce\\x02\\xcc\\x15\\xf4\\x0e<\\n\\xd3leh\\xfcʴ\\xe5b\\x84F\\xc0Fv1\\x85\\x1c\\xfdʖI\\x88\\xf8\\xbc 0|\\xeb}\\x0e\\x96e\\xa2\\xa3!\\xb71)q\\x86\\xddT\\x88*\\xe9R\\x90\\xe4xv@\\x04HV\\xa6\\x9eE\\xa9\\xaf\\xad\\xf2㋚\\x11(\\xa0\\xf8\\xf91\\x9f;\\x0fs\\\" \\b\\xb2$\\f\\x89\\x83P\\x9b\\xea\\x8b\\x1a:P\\x9f\\\"\\xa0\\xb0\\x01\\x04\\xbc\\x9e;R'\\xd4^V\\x15\\xe8s\\x0f\\xc8\\xf1\\xee\\x04=lg\\xe3\\xdcN\\xd0\\t\\f/+y\\xecX6\\xe8LCh\\x03\\x14)\\x87_V\\x99ꍎ\\xe9W\\x92HfSێ^\\xbe\\xaa\\f\\xe9\\xf3\\xaar\\xd3\\xdd,<\\xd9P\\xe7hSN\\xcb~m\\x85t\\x13\\xaf(\\xac\\xa9u\\xdc\\x02\\xab\\x8b\\x9a~AL\\xfa]Ӡp$~\\xca\\x1a\\xfaYgrB\\x8f$\\xf4q\\xd0\\xf3\\xa0W\\xbf\\x0e\\x91\\x90^3eUS\\x03\\x06\\x85\\x01\\x9ekGn+\\x06\\x13W^\\xf8\\xea\\xefhP\\x13\\xfa\\x9bE\\xb0l\\xec\\x12\\xdeH\\x98b\\xe62\\x03\\xfaM\\x1d\\xad\\x89\\x86\\\"\\xffv\\x94\\xfb\\xd8z\\f\\xfd\\xc3u\\xbb\\xaf\\xfat\\xe0F\\f\\xb1arO\\x97@<)\\x1e%\\x16\\xe0\\xd5ר\\xebc\\xc0\\xbe\\xdai\\x0fT\\xaeQ\\xb7\\x9b7\\xa5n\\a\\xa1y(J=sÎ\\xab\\x81\\x8e\\xb2l\\xcf\\x1f\\x9c\\x85tt\\\"\\xf5H\\x8cs\\xb5\\u007f j\\x13\\xc1\\xb2p\\x86+K\\xebp\\x97\\x10E\\x1f\\xe7Y59\\xdbl\\x03\\x81\\xa8\\x86h˴|c\\x06D\\x96\\f1-\\xb0\\xb9\\xa8\\x12\\x1e\\xc3\\xfeT4\\xc4\\x14fi\\xc7\\xe6\\x1d\\xdc\\x02\\xb9\\x95~3\\xcax*u\\xaaP\\x19{\\x88\\xe8\\\"\\xc67\\xd0\\\\7H=V\\xc1\\xa4./Lb\\xc3ER\\xea_b\\x98\\x9c\\x1a\\xea\\x19%˕\\xf2\\xa2&\\x9ah\\x0e\\x156\\xd6j\\xa10\\x1a]ζ\\xe4\\x99\\xdf\\x0e\\x83KU\\xe0%\\x8a\\xa7kʉ\\U000dae2d\\x19<\\xdfL\\x82E\\a\\xf7/i/\\xae\\xfe\\xa6\\xb0}\\xcc\\x1e\\xa5\\xfe\\x85\\xaf\\x86V\\xa7\\xb5\\xfbr\\t\\n\\x86Ȱ\\xe6n\\xa9<R\\x8b\\xa7'!.ñag\\xf6\\x9aU\\x85嬍\\x15\\xb7\\u007f\\xf3^\\xa1\\xd0\\xfe\\xa6\\x93?`Ղ\\xac\\xb9\\xc5U\\xd8g\\x13\\xf1۩y\\xc4\\\"\\x86\\xe5\\xc4\\xf4\\x19h8b\\x88\\x0e\\xec9\\xf3\\xee\\xac=ʠS\\xc1\\xca6\\xc6OfZ7\\x81hG\\xf7Va6\\xfc\\xaf%\\xbb\\n\\xacdE\\x18C$k\\x9ae0\\xb1\\xdfi&\\x92\\x93Q\\xfcw\\a,\\xfe\\xc1,\\xb7UD\\xe7\\xecYw\\xde\\x19\\x01O\\xfdG\\u007f\\x82j\\xfa\\x06J\\x17\\xe3\\x98;\\xf8-\\xcb\\xcc=\\xc0v\\x86\\xb6\\xf5\\xef\\f\\xde\\x1ao\\xc5鴜\\xea㋫\\xd9\\a\\x86-=\\xbdE\\\\\\xbb\\xaaJǘћ\\xfd'M\\xd9\\xcc\\xf0\\x86>XL\\x87\\xc59x\\r\\r\\xd4P[\\xda/\\xf9\\xf0]\\x12\\xe7\\t\\xcdˆ!\\x11\\xa0:\\xe4\\xe8\\xfaQm\\x1b\\xae\\x88\\xec\\xef#)Wn\\xa6L\\xee\\x11\\x1fT\\n\\x19@\\xb9`\\x9d_/\\xd5ao\\x85\\xc4[D\\xc8\\xf0\\xcf\\x01\\x15v+\\xbb\\xae\\x89q\\x12\\xcc]#Bіu\\x9d\\x9a\\x8a V\\xd9\\x05G\\xb0\\xa1\\x01\\x84\\xaf'@\\xf7\\xb9}h\\x9d4$O\\x0fؐG\\x19L^i!N\\xa4\\tL\\xc3\\n\\xa9\\x0f!\\x84\\xcb\\x18\\xd0K_&\\x9fk3m\\xfd\\x8e\\xfc{ȥ\\x15\\aS:\\x9a\\xf0|\\xb5m\\x17X\\xb3\\x86\\xbd[,\\x1b \\xbb\\xae\\x1d\\xde\\xd7\\x13\\xe2\\xf7)\\xd4\\x0e{opm\\xa7\\x9d++7\\xa1\\x96!\\xab\\xe0\\xf8\\x1c\\xcb\\v&\\xf4:\\xb9\\xe2\\xfeu@\\xa1\\xaf\\xf9ݷ\\x8e9>M\\xd7\\x1c~\\xb8;\\x91\\xa4\\a8G\\xcdIg\\xf9\\xc1K\\xefY7ܕ\\x87\\x9e\\xec2\\xc6\\xec\\xe1#\\x97?,\\xfb\\xcfRG+\\x99\\x91\\x81\\xa8Nz\\xb5\\x03\\xbdo\\x9eϛ[>1G\\x8e\\x9b\\x04n\\x8b\\x96\\xa3и\\x8a\\x18[qB\\x1c\\xe1\\xc7/2\\xa4>\\xb9l\\xbdal\\\"\\xb7w\\xaf\\x04\\xfb\\x88\\xf5p\\xe3\\xdb\\xe6\\x01\\xb8\\xb9Ų֞\\xdbd>ڳb3\\xba\\xfc-\\xe5'V&\\xcc{%EV\\x01\\u07b4)\\xf48\\xd2F)\\x8a\\xb9\\xb9h\\x0f\\xd2[\\x11L&\\x1f\\a\\x85\\a\\x05\\xbeϹ\\xa20\\x17\\x12d\\x1e\\xf5\\x18\\xbe\\x8e\\\"d5}j\\xd2\\xf3\\xce\\xc0\\v\\x1f\\x89[X\\x1d|\\xba{R\\x97\\xec\\xafݐ\\xa3{\\xa6ܭV\\xc0\\xa1\\xcc,b\\fq\\xe7\\x05\\xd6:\\x0e\\x9cx\\xb4\\x0e\\xa2\\x91\\xd2\\xdc\\xc2\\x1a\\x94ܬe\\x0e\\xacF@\\xbf\\xd8V\\xf8\\x1a\\\"\\x89\\x8a\\xbc\\xa3\\xff!\\xf0hPw\\xc4/Z\\xa6\\x8c\\xca\\n\\x93\\xea\\x95&U+\\xb6/Z\\xad\\xef0H\\xaf\\x1f\\x94\\xe2\\x9137\\xec\\x1d\\xdb\\xc2^j9\\xfa\\x9et\\xad\\x03-\\x90\\xde\\xc1(:\\x8b}\\x89l\\xaa\\x83\\x84ɇ\\xad]\\x12F\\xb4\\xee\\bQ\\t\\xdc\\xf8\\x0ea\\x18y\\xa83q\\af\\x04p\\n\\xa7\\x12K\\xdf\\r\\x17\\\\\\x8f\\xe2\\xedn\\xa4\\xa4\\x8e\\xf4\\x8a:\\x14\\x1c\\x04\\xed,,{R\\x0e\\xcb9\\xc2,\\x9b\\x15\\ax\\xcb9\\xd0\\xed\\xdc;\\xecp\\xe5t4\\xa1P\\xaf\\x03\\xe8\\a`\\u007f0[\\x12\\x9a\\\\h\\x02\\\\\\xb0\\xd8\\xd0\\v\\xdf\\xdd\\bd\\xa7\\f\\xe6\\x86\\x10\\xdc~ӄ#4k\\x1e:^||&Y\\x15Т\\u007fτhօ6\\xa5\\x19$\\x89\\xfb\\xa9\\x85\\x9a\\x96\\xaaE\\xb3\\xbd\\xed\\x904\\x91e\\u007fn4\\\\ϴ\\x9aU\\xbb\\x90\\x0f>\\x1e\\xe3v\\xcdN&\\xc3\\xfe30{՟\\xe3\\xbao\\xf1\\x12\\t\\xc6l\\xd5ăg\\xba\\xb7\\xd3b\\\"\\x8d\\xdcy\\xa7\\x87;\\xaby\\xf9ʓ\\xacyg\\x979\\r\\xb2\\xc72\\x06C=\\x96N$th\\x96\\x80\\x9a\\xdeV3U\\xc9r\\xd5\\xe4Gٕj\\xd4A\\xff\\t$\\xd1_\\xb6A\\xc8{\\x81\\x86F>-\\xbf\\xf1\\x8a}\\x1cm\\xa3\\xe1c\\x10\\xfd\\xf9R\\xcdØ6N\\xb5S\\xef\\xb1Ց\\x96\\xa3\\x00z\\a\\x1d\\U000d7ac0b\\x9c\\fQ\\x04\\x9b\\x043\\x88\\xae\\xd5 \\x06\\x83\\x8f-\\xd1\\a\\xc9?\\x16\\xf4\\xa7\\xda}o\\xa7e\\xe0c\\xf1\\xd8[ɮ!;u\\xc5`M\\x9dx\\xaf`\\xbe\\x8ah\\xb62\\xb1~\\x14}\\n`\\xda~Q\\xaf\\xfc\\x94\\xa6\\xf1Q@/]\\xee>\\x03\\x93H\\x95\\xeb\\x89}\\x00\\xbbc\\xf4\\xe8\\x1c\\xa8[\\xf4\\xa7\\x8e״cD \\x82\\xc6Iu\\xa9\\x19\\xb6\\x93Ͱ\\nS\\x9c\\x8eDk\\f\\xd0u\\x96\\x92?5\\xbe\\x10e\\xb9uy\\aD\\xae\\xac\\xb1ƴ\\x963r\\u007f\\x9a\\xab\\xb8U#\\xa5d[\\xba9\\x80\\t|\\xa9+\\xd0,d^>\\xff\\x00+\\xf9~\\n!\\x9a(\\xcccK4\\x1e\\x96\\x98\\xbf\\x90h\\xf3LJ1J\\xac\\xc4/\\xfb\\xa5{\\xff8;6\\x9fd\\x83u\\x8c)\\x82\\xbe\\x03D\\r|\\xd2\\bXAJ\\fB\\xee\\xccK\\xe4\\xf1\\xfft\\v\\xee\\x11\\\\\\xb5\\xa3\\xf2\\xa1rB\\xe7\\x9an7\\x8bB\\x85\\x1e:\\x8c\\xef\\xf9\\x81X\\xa4\\x98\\xa5\\xb7\\x82\\xe34\\xa2c\\x1a\\x8e5\\xd3\\xed錯\\xe9\\xfeu\\xbdҙU\\xeeoq\\x89+)f*ϻ\\x9ak!\\x86\\xf7\\xfe\\x80\\x85\\xa8\\xdaP\\xe5\\xa5\\xea\\xda\\xec_\\xd6xy\\xa9YJ\\xebjS\\xeb\\\\\\x18܀\\\\\\x86n%\\x15u\\xbc\\xab\\xa7Wq}E\\x91\\xeb\\x04\\xc6\\x1d\\x81\\x82[\\xf6\\xd8*\\xf7\\xf7\\x16\\xbdT\\xae(&W\\xa3\\xf6\\xd9\\xe5\\x0625\\xf9\\x1e\\x91\\xbe\\x8c\\xf5T\\xd3\\x06\\xe7\\xf1\\x86\\x1a\\x1dC9-\\xde\\xefvDӭ\\xb3\\x16zo\\xb0\\xb3<\\xb8\\x91ŕ\\xa7\\n\\xab;=\\x05\\x14\\x04)!\\xf6\\v=-\\xd5g*\\x8d\\x94\\xf0\\xf2\\xa8A\\x97\\a\\xb4܆f{1٣\\v\\xa0\\b\\x92\\x97\\xff\\xa2\\xb8\\xbct\\xce6P\\xa1\\xf4\\xb0\\x06q\\xfaXF\\xce\\xcdf\\xe8\\xa9\\xef\\x99x픻;\\x8cD>\\xd2\\xfd\\b\\f9bJ\\xba\\x0fL|RG\\xfc\\xac\\xabC\\xa5;\\x01\\x97[o\\xd3\\x1d\\xac)\\xda\\xc5^0\\xd9\\t\\x1c\\x90\\f\\\",яk\\x18\\x9cK\\x1d3\\xdb(\\x91#n\\x02\\xf3\\x85\\xa0\\xe8\\xa8\\xd2h\\xf4\\x1b\\x83\\xdd\\xe1\\xda-S\\n\\x1a6\\x94\\x16\\xd4\\x02\\xe6\\x05\\x95\\xb8M\\xe5[\\xbd\\x843\\xf6\\x1a$4\\xcb\\x02\\xb7\\xbf;\\x068\\xb4\\xe8\\xfa\\xaci\\xc2я\\xc0\\xd6`\\xefn\\xa1/[\\xd9\\bkV'\\xfe\\xe4S\\x8c.\\xa5j\\x12\\xcb\\xf8\\xbe\\x9b\\xd4?]\\xad\\xa8\\xab\\x96\\x9e\\xc7蒫\\xa6\\t\\xef\\x9c;\\x8a\\x90I\\x06\\xf9\\xb1\\xed \\x18\\x88|sse\\xf1\\x9aZ\\xe0\\xbbk\\xe5\\xc7s\\xc1LV]&9:+S>*m\\u07be\\xa3pm\\xd76\\x19j\\xb8&\\xfd\\x81\\vru\\x93U\\xc0\\x03\\v\\n\\x1eñ\\x01\\xa5\\xa9#\\x1a\\xd8\\xd0\\xd6\\x02\\x8d\\xa0\\xef,|\\xcf\\x05\\x88W\\xee\\xf7F\\x0e\\xe3\\xb78\\xe9k8B\\xa0.~1\\xd4e\\x8f-\\x00\\xd0&\\x10\\xfa\\xb2\\x13\\x88\\xe3\\xc2\\x16*\\xce/ֻ\\x1a\\xba\\u007f\\x966F\\x94\\xc8\\f\\xe7\\xe5\\u009a\\xa6*D0@\\x9c\\vV\\xc0\\xb18/@\\xfc\\xc1\\xf1\\x15\\x8c\\x05pa\\x0f8\\x98\\xb3L\\x9b\\xb6}\\xc6\\\\\\xed\\xffy끏P\\x87\\x8f\\rܣ\\x16\\x0f\\x86iᮚ\\b\\xfa9\\xdb6\\x13\\x02\\xc5\\xc3J\\xa9(\\fPU\\x8e\\xa5\\a\\x05e\\x11$l\\xb8\\xf6\\xd5\\xfb\\x18r\\x1e\\xd6\\xd3,2:\\aV\\xf4\\xcaA\\xb5L\\xad\\xdfaq\\x01:ӗ%\\x10\\xffN\\xc6\\x14ө\\u007f\\x86\\x11\\x9b6\\xc88\\x0e\\xd8F\\xe8t\\x1fgf\\xb8\\xb2K\\x14\\xba\\f\\xfcN+H躐\\\"O\\x96\\x10\\x05\\xa1\\xe7D\\xcd\\xf3qX\\xa2\\xaaT\\x92jE\\xc9p\\x90\\xebe\\xbf\\x90\\xc6ż\\x97ʙ\\xab\\r\\x14\\x98+\\x1c}p@8\\x92\\xaa\\xc5AI\\xb9\\xad\\x146\\xca<\\x0fh\\x97\\x8ba\\xc0\\xc2|=l\\x11\\a`\\xce\\x1e\\xed\\xaa\\n'.XQ\\x8f\\x86ǆP\\xa7\\xf9\\xb2X\\xeev\\xd08*\\xff\\f%\\xca}wk\\xb6X^\\x94V\\\\\\xfc\\v0.\\x8e\\x84<\\x8f\\x9e\\x1co8\\\"\\x03}\\xc1\\x1b\\xce\\r/\\n\\x96<?g\\x81´\\xe8\\x97Mr\\xe5d\\x88\\xf8x\\xbe_Hu\\x8a\\xc6\\xd38\\t\\x8bk\\xdc\\xfc\\x99\\xb4\\xa4ju\\xc9I\\xf3\\xcb\\xc0\\xf10\\xaa\\x1b/\\xcd\\xfa4I1K\\xe8\\xd2\\xf3\\xa4Ě۶\\xb6\\xbf\\xe6\\xa6R\\x8c\\x9c\\xa5\\xf4\\xbeE\\xff\\xebN@\\x10\\xa9Ff\\xcb֎|ڏ=\\xa9\\x16\\xb5\\x16\\x8d\\xe4\\x14\\x10\\xd5P\\xac}\\x95\\xd4c$\\x8c\\x1d\\x10\\xfd\\xf4\\x8f:\\xc6\\xd1L\\xe6\\xdaӲDM\\x97\\xbe\\xaa>\\xf2<\\x04\\x8a\\t\\x0f\\\"\\x98h\\vt\\xd9\\xe0\\xb9U\\x9c\\x8b\\x13G\\xd4\\xcdq\\xe9\\x16\\xfa\\x86\\xf5on\\x93ۊ\\xb4;\\x85\\x03\\tZ\\xae\\xac]\\xc7\\x19\\xa9\\xf7\\\"\\x86\\x05\\xe6\\xce;z\\xb0\\xa5\\x9e\\x89\\x93#\\t֮J\\xea\\x06\\xe2\\xc1ٰ\\xe4\\xe7\\xa3\\xf0`\\x88\\xb8\\xdaKOc\\x1dy\\x91XL\\xe8ɠ\\xa4s\\xb6\\xd2\\xfa\\x8d\\a\\x9a<\\x8b\\xf6\\xcev\\xf1P\\xf7\\xb8\\x1a\\xa8\\xb8Oշ\\xb7]~\\xd5\\x1b\\xbd\\x15R\\xaa\\xed\\xf0e8 \\xa4>\\xf3#\\x8d\\x9cֲ\\x1a\\xfc\\xa7\\xf4\\xe4\\xfb\\xcc\\xc08\\x85%\\x9ci\\xb9\\f\\x13\\xa5OL\\x9a\\xac\\xd71,:\\xeasnϺZ\\xc7\\x1a\\xe6\\x11GF5{3t\\xe3\\xcd~\\xfaRD\\x93\\x13\\xe2\\xa3\\vIB\\xa3\\xe8\\xedkJ\\x1c\\xbba4\\x19\\\"\\x9dy2`L\\x1fn\\xdew\\u007f\\x14\\x9e[\\xea\\x8a\\xc2\\\\M\\x13M%\\x03\\xec9\\xac \\xc8>I,\\x86\\xab\\x88v\\t\\xe8\\xaf8\\xe3\\x92*\\x05`\\xc70\\xb6Ȇ\\x11~$\\x17ш'\\x18A~\\x86\\xa8\\x17\\x1d\\xa1\\x8d\\xb6\\ng\\xa7ɛI@bQM\\x9d\\xe6_\\x95){\\xa1h\\xa6\\x9adL\\xff\\x03c\\xb2\\xbfu\\xe9a\\u007f4\\x05\\\\\\xcf \\x16\\t\\xcf\\xfbN.'\\x9c\\x17\\xb7.Un\\x81\\x9av\\xda\\xf0O<B\\x03\\xbbM%\\x96.\\xa6\\xec\\xbfxd\\xe04\\xc9\\x00\\xc3\\xf6J\\x8dg`;\\xd1\\x0e4k|\\xbcm\\x12\\xaf\\xd6\\xd3rG\\xab^6\\xa0B\\x9b\\xe7\\xeb~[$C\\x1a\\xc6)\\xf5:\\x12\\xfa\\xd8\\b\\x18\\x12h\\xd1<D\\xb6\\xd8\\x11VA\\xc2߉=R\\xa46\\xf4͠\\xe0\\x1c^\\xa5\\xc5\\r\\xd3\\xfd8o\\xd9`\\xac\\xca\\xe6\\xf4\\xa1\\xa3c\\x84_\\xb2$O\\xa0\\x1a\\xe8ӄ&\\f5\\x02\\x19,T\\xa79\\x13`\\xf7x\\xe6k6D\\x8e\\xff&\\xb5C\\xaf\\x03ϯVd\\xd8\\xed\\xe2\\xb8W\\xf2\\xe8\\x1b>\\xf5\\x1c\\x82\\x90\\xb6!\\x88\\x802o\\xa9\\xbff\\x87dK\\x9b\\xb0m\\\"\\xa6\\xd5A\\xb4>\\x9a&]\\xfc\\x9b\\xc3Y\\x86To\\x19{\\xf3N\\xe9J\\xbf\\xb5\\x1c\\xc0R!\\xcb\\xd5\\xdcĠ\\f\\xa8\\x19XvI\\xa6f9ξF\\x0f\\x03\\xc9a\\xe21C\\x1a\\xa9\\xcd\\xf5\\xbb\\xe6~ĄнI\\x06/7.d\\x9b=S\\xf6}uh6h\\xd6?\\x99o\\x9fg*۴\\xf0\\xf3j|__\\xe4eL_\\xcfT\\xdeKŝ\\x10\\x8bO\\xd4\\xfa\\xdeSf^?pH\\\"\\x01T\\x86\\xf2\\xe8\\xd4\\\";\\xa7G\\xfc\\x1b\\xbeE\\xef\\xf5\\x84\\xdfŝw\\x91}ꨲ\\xc7S\\xd7\\xda,k\\xce\\bh\\xa8\\xb8p-#bՠ\\x8bޭ\\xac\\xb5\\r\\x91\\xa3 \\x98\\xd7\\x15\\x96\\x9a\\x1a\\xc6e\\x8e3m\\x88\\xe7\\x06ʒ\\x15jm\\xe1 W\\\"\\x96`\\xba\\xbc\\xbd\\xbb0^\\x18\\xf7\\xff\\a\\xeaL\\xa6\\xa5\\xd7\\xd1ot:a`\\xeb\\xb1\\x1b\\xdd݀\\xda)\\xff\\xa2\\xba:\\x0f\\x0e1G衝\\b\\\"\\xb4q>\\x89R\\xb4/\\xf2Z\\x04&\\x06ŋn2\\xaf\\xaf\\v\\x82̃l\\xc6\\xdd\\x16\\xe5r\\x10\\xe4\\x12\\x10\\xc8\\xc4\\xec{\\xff\\xc6{G;9\\x99\\xd5^\\xe5\\xc0P\\x11\\xa4\\xe3\\xd5\\xef\\xe3~\\xe0\\xe6_\\xd4\\xfb\\xd8\\x05\\xac\\xc8\\xefM\\xb0\\v\\xa6\\xa1\\xe8OW\\xf1=\\x1f\\xe9@/\\xed\\xf7\\x00\\x15\\xd6\\xc7\\xfe1\\xab\\xda2\\xfba\\xab`\\x81w\\xa9\\xc0{\\xde\\xc4\\xeb\\xb0d\\x18\\t\\f'\\x99\\xe3\\xccɓ\\x15\\x8e'A7\\xc1\\xbeZ\\bbJS\\xdbe\\x02\\x13\\x8d\\x1b\\xa2\\xb0\\xde3\\x84\\xc4\\xc0&\\x9b\\xb1w\\xee\\xefb\\xbb3\\x1b>\\x18\\xe2\\\\\\x8c\\x97\\x99i\\x04=\\xf6Y\\xd5&\\xa8\\xa7\\xa1\\x10\\xfd\\xf6灛\\xa7\\x9au\\x98\\x9fl\\xb6*\\xcc\\xf6\\xab\\x10\\x94MP\\x8e3\\b\\xd9\\x10\\x04Bh{\\x81r\\xb9\\xa2ot\\x14\\xd2頿\\b{k\\xed\\xef\\xfa\\xde\\xd9[72\\xb8{j\\xaa\\xceiwv,kGj\\x1de\\xccq\\x94D[\\xe4\\tWǾ\\xbd\\xae\\xba\\x9c\\x9c\\x1fHy\\xd9\\xf6oX\\xeft\\t/\\xf8Q'\\xdb\\xfa\\x8d\\x15\\x0f\\xe1\\xec89z\\xb0\\x04d\\xb9\\xe0ӣ\\xd5\\xd5\\xed~8\\xa4\\x8bJ\\x82\\xc6ז\\xb5\\x1fiώ\\xd1\\xf9>Ӎ\\x89]N0\\x10(\\x14:]\\xfe\\xf2\\xe1\\xc8i\\v/P\\u0600MY\\xf2<\\xc8\\xe6K\\xf3\\xf57\\xf4\\xdar\\xc3?\\x0e\\xb2\\xa4\\x1e\\xa1\\xaaF\\xd0\\xfd\\xa7w\\x89\\xab\\x93\\xa5Q\\x93.~\\xb3wo\\x1a\\x12t9bP\\xcf2Ð\\xba_\\x83\\x87T\\x96[\\xf31\\xb0\\x1b\\x86\\x90`\\xddB~\\xd62\\xb2`\\xc5&\\xde\\xcbgQ\\xea\\xe2ڲ\\x9e\\xe4o\\xa3\\tq%\\b\\\"/\\x96\\xdbk\\xf37\\x98\\xf3\\x81M\\x832\\x04YfYI\\xfer\\x88\\xd5\\xcfʨ\\x83\\x99z2M\\xf6#\\x9bV]!\\xeawY\\xddDz\\x840\\xc7\\x15K\\x03l\\x01ú;\\xd82x{K\\xfd~\\xad\\xe7bŔ.8\\x91vb\\x1b}\\xa6\\xa40.6c\\xf6W\\xab>\\xbf\\xcd,\\xfb\\xbf\\x99Q\\xaazM\\xff\\xf2#\\x0f>\\x0f\\xb7\\xe7\\x82\\t-s\\x9c9\\xd3ע6\\x91]\\xf6\\x93ԙ\\x8b\\xee\\xca\\xd7\\v\\x01u\\x9a\\u007f\\xf0\\x95\\xa1\\xf1.\\xaf{@\\xf2\\xb3\\xf3\\xe8\\x90\\x03\\x8b\\xde,t\\xdc\\xe5qJ\\xac\\xe0\\xab\\xd9\\xf6\\xd9%046$7\\x82\\xf5V\\x9c\\x13\\xf7\\x12\\x89,b\\xbd+^\\xa0!\\xb0&\\x8a\\xed\\x00\\x02y\\xbfb\\xcatL\\x92\\xc5d\\xa3/\\xe9&\\x98b,\\a$\\xcf\\t`D,\\r\\xd8\\x0f\\xb6\\x8dS#G\\xeez\\xeb욆'\\xb7\\xbe\\x88\\xa2\\x8eoӣ\\xc7¢\\xea\\xf33t\\x0eMC\\\"\\xbe$+<\\xecH\\x88\\xaa\\xc6+\\xb2 2O\\x96\\x96\\xfb,\\x97<v\\xbe\\x0f\\r\\xcdHq\\xca\\x1fK\\xa4\\u007f\\x11a\\xb4L\\x1e\\x9d\\x16\\xc8D\\xa5{ը\\x88)\\x19\\xcfE\\xdf\\x03\\xc1°\\x16=\\xfe7\\t\\xa7{\\xef\\xb5\\xedG=\\xccZf\\xf4>\\xeb;\\r\\xdc8\\xde7|>\\x8c\\xe9\\f\\xeb\\xf5\\xd5O\\xe9}V,wF.\\xcf\\xcb\\tW\\xa2.\\xeb\\x19#\\x10\\x85\\x96\\xc31\\x02\\xbd^\\x10\\x13hA\\xbb_>\\xea\\xf5\\xa6\\x1a\\x15\\xcb}\\x95\\xfep\\x06i\\xb4\\x81\\xa66\\xab5\\x1e\\u007f\\x195\\x00ۗ/\\xb7W\\x02\\xea 9\\xef<٦\\x01H|V\\b\\n\\x98i\\xd5*\\x1b\\xb6\\xd9;\\xb37\\xa8\\xb3X\\x86 \\xf1z\\xa6K:I\\xb2\\x88+\\xd0˅\\x80\\xd0o\\xd7Q;\\xb3M\\xdcI]W\\xf6iV9\\x91B,\\xcfRsS*\\xf6*\\xb6L\\xd04\\xd3t2\\x99+v\\xe4d\\x0f\\xefq\\x00\\xfb5b \\xa6_\\xb7?\\xa6Ky\\xd9\\xcap8J\\xee)N\\xf7#b:\\xc8:\\xb2\\x10y\\x89\\b\\xcd\\n;0\\x848\\x80ޠa\\x1c\\xee\\xa1\\x05xK\\x11\\xae\\xa5\\x86\\x12M\\x81\\x0fz\\x10\\xdeǔ\\x04a\\xbb\\xff\\x8b\\x1b\\xd2\\xfc\\xfc\\xf9AԦ\\x1e\\x86g\\xc4\\xc0H\\xd7\\xeaǸ\\xbe?;\\x99SP\\x02τO\\x9a\\xc1E\\xa4\\xde\\x01\\xb4\\x9e\\xc3\\f\\xcd\\x064\\x88#\\u061d\\xf0\\xce\\xf6D\\b\\x94%\\xa6\\xfb\\x89=\\xe5Qp\\xb82\\x9b'\\x15\\x83\\x1f\\xcdg\\\"\\xb7\\x0f\\xf7xu\\xd7\\xc8@\\x84''\\xc9Gy\\xf0\\xf3\\x9f5Cq\\xffuc\\x83$\\xcc}\\xf0 |\\xae3\\xaf\\xafg.-Zb\\x15b\\x95f\\xb0\\xa4\\x87\\xb60\\xceVJ\\xb7`\\x13\\xbftK]+a\\xd5%<\\xac\\xe8{T\\x87!T\\x03\\xe1\\xfd\\xe2\\x01\\x82|39\\xe0\\x89\\x14\\x19\\xaa\\xb1|\\xce\\x18\\xcbKx_\\xcd5i\\xe7\\x1fd\\xf8$q\\xec\\x13/\\x97\\xff\\xf1꺱\\xaf\\xf3O\\xe7\\t\\xade\\x19*\\xfe$\\x80\\xbcYN\\x18(\\xbe/\\x04\\xd5\\x04\\xa3\\x99\\x8cFL\\x85\\xe8\\x97\\x0e?DZy\\x96\\xb1\\xe5\\xd0L\\xc1\\x87\\x18\\xaf\\xbf\\xfa\\xa3\\xfcr1\\x9f$\\xc6\\xc1\\xf9Z\\x13\\xb7\\xfa=af\\x19\\x9bC\\x89\\xde\\xdag\\x8fsh\\xd5\\x14\\x13a\\x8e3\\x8d!]h\\xd7\\x05b\\xf63\\xa7\\x96\\x9f\\x86\\xa0\\x80~\\xf1\\xa1\\x89\\x10\\xa4\\x86 S\\xf0\\x95,\\xe2\\x141k\\xf1\\xf7\\xd8\\x0ff\\x89\\x86>\\xeb\\xd0D\\x1d8\\x14!B\\xb4\\xa1\\n\\x10\\xe6T\\x8a\\xa8\\xc9\\xd8TO\\x85 ,\\x9a\\x9e\\x92R\\x92\\x05\\x1f\\x04\\xa4l\\x1f\\xe1\\x87\\xd6\\\\\\x8cW9rl\\xd2\\xd1dY\\xd05\\x98\\x17\\\"!\\xfb\\x80\\xc9,\\xe3\\x1c\\x94&\\x1eT\\xb8\\xfd\\x03\\x8bSP#\\xf7\\xcb\\xf1\\xf8\\xf2\\xfb#\\xa8^\\x9f\\xc0\\xc1\\xdf\\xdcc\\x811\\xa1\\xb45\\x0f\\xb6\\xd7rڻ\\x1e\\xb4\\xd1>%\\x03\\xc1\\x81\\n\\xd8Eq\\xc1\\\\\\v\\x97\\xbc\\aeN\\xbf\\x15\\x81\\xee@\\x9c\\xa4:\\x96\\x90J\\x88\\xad\\x96\\x18&\\x12\\xec\\xf6\\x84\\xa8C\\xd3\\xcf\\xed!0+\\xc8\\xfds\\x88&1Q\\xa3NJ\\b\\r\\xf9\\xd9\\x1dĂC\\f\\xd2\\xf0\\xfaCQq%e`\\xc4҉\\x90=(M\\x84\\u05eb\\xf1H'\\xf0x\\a3\\xa2\\x82\\xe6\\xc7YVx\\x92\\xc5\\\\1\\xd93\\xb6_\\x18\\xe9\\x1bĈ\\x82\\xdfy,\\x83掕\\xa0\\x80<22O_\\xa4\\x1c\\xa0J:\\xaf\\xa8ͼ&\\x1eh\\xbc\\xbacN^o\\x1eu\\xb9\\xe9\\xa8I\\xaa}\\xd65HOI\\xb5\\xcc\\x06\\xc2#b\\x96\\xac\\rq%*)\\xcb\\\">\\\"40\\x91\\nP\\xa9\\xe7\\xe8\\xd0WZu\\x9c\\x98 \\x8enT\\xc1\\xe5\\x1e\\xb0\\xe3\\xba1\\xc0:!D\\x90\\xac\\xacS\\x16s\\xb0\\x02\\xeb&\\x9b\\x1eN\\xa2XjN\\xec\\x18:\\x1c\\xd0\\x1d)\\xb7\\x15\\x8d{\\xfb\\xfa\\xe9\\xff\\xb5\\xc9\\xcb\\xcdT~\\xcf\\xc8x\\xbd\\xf9u\\x06\\xe3{e&dϷeUP鏗\\xacn\\xca`\\x94\\xd6*3\\xb7\\xa7o/\\xa2\\xbf\\xde\\xfd~+\\x89S\\xcc~\\bp-\\xa0\\xf6\\xa8\\rg\\xba\\xbd2\\b\\xf1\\xf8\\x19!\\xa3si'\\x82\\xf0\\xc1ȭ\\xbc\\xc0Q\\rK\\x8f\\xd6\\xc8[\\xc2\\x1d\\x82\\x8c`\\x93\\xc2Q\\xcb}B\\xc3+\\x02]\\x8dc\\xc5\\xf4\\x98\\xec\\xf4\\uf6b8\\xe0\\xed\\x9b\\x00\\x96\\xdf\\x1c\\xe1\\x8f\\x1c(i\\xfdi?a\\x92\\xb2jD\\xe5\\xd9RG\\x91\\xefTA\\xf9\\xe7\\x9dO^\\xe3\\xe1\\x97_\\xfd6\\x9f\\xa8\\xf5\\xd6.\\x1b\\a/\\xf8\\xf1\\x84\\xebq\\\\W粸\\x80R4%\\x9b\\xea\\xea\\xb2\\xef\\x16\\x86bv\\b\\x9d\\a\\xb2\\x0e\\xd6\\x05%\\x06/\\b\\x9b\\xd4\\xfd\\x17\\x8f\\x9e'\\xdcU*\\x8a\\xec\\x02?\\xcc2\\xd1OǺ\\xb3d\\xdcȻ\\xa5\\xea\\x86_\\xb7\\xbfio\\xee\\xe6\\x8c\\xef\\xd8b\\x1a\\x81\\x03\\xcbXY\\x1b\\x82`\\tUa^\\\"L\\x86$k\\xe0\\x12@n\\xc4QUndW\\xe2ήH\\xaffn\\xae\\xaeO\\x8b8\\x9b\\xddS\\xf3\\xac|\\u007f\\x01_`.*r:㼛\\v\\x12\\x1b\\xb7uPTW\\xca\\xe3^=\\xbdɁ\\xbc-^\\xc4|\\xf21/\\xa8܋.˟b&\\xef֊_cN\\x05/KJJ\\x9e0\\b\\x85e;\\xcb\\x187\\x10\\\\\\xe4#\\xc8n\\xfd\\xcfލ\\x90L\\x1eĹ\\x18\\xe3\\xd9z\\x9bLS\\x8d\\v\\x92\\x931\\x06\\xeb~\\xb9\\xc1M\\xb7\\xed_}\\x01i\\x91\\xcc\\x17C\\xc3\\x04G3\\x9e\\xd1\\xfd\\xc9$\\x1dYL\\xfe\\x80^\\xf1\\xe2\\xda\\xc6\\x1d[%\\xa37x\\xc1\\x12\\r\\xbb]ʩ\\xcb`q\\x13S\\xde\\xe1\\xf7\\xc0\\xaf(\\x94LZ\\x99\\xc7%\\x06\\x91\\x18\\xd9\\xe9Gq\\x92cg\\xedG\\xf2v\\x11Ic^K||}t\\x84ȑ\\x9eh\\xf3!\\xe4\\x9e\\xde\\xfc\\xee\\x1eW̐J\\xdb\\xd9\\x1aI0\\xefƨd\\xef\\u007f[\\xe1A\\x8f2\\xa2uH\\a\\x89\\xfam,#\\xb8\\xfc^s\\xabH\\x05\\xfa\\u007fw8\\xb2=\\xb7\\x85\\xdeDn\\x0f\\x81\\xf2\\nރ\\u007f\\xd7\\xd83B\\x88\\xd4\\xf9\\xf8.\\xf1\\xf1\\x1a#!\\x1e5\\xceY\\U000b24de\\xb0|\\x0e\\x99q\\xc9\\x03\\xfc\\xf0\\x84\\x17\\xc8;N\\x8eU\\xbf{\\xa7\\x8f%7\\x9c\\x0e<\\u0530\\xc2\\xf4S\\x1ar\\xcc\\xf1H~\\xca\\xdc\\xfe`\\xd0A\\xac\\xdeȳ:Y\\x9d\\xac\\xa2\\xe7\\xe4\\xd0U\\xb3*\\xf9\\xa270\\x9aU\\xf4\\\\\\xda;\\xfa[\\xc65g\\x0fc\\x91\\x1ctci\\x17o\\xd9r[\\xf7a1\\xa7X\\x9f\\xde\\xe1\\xff$E\\xaa\\xb5\\x19\\x1e\\xe18\\t\\xe1\\x0e\\xe5\\xfc\\x89\\x8c\\xfa\\xfa\\xfd\\xf6-\\xc8\\b1\\xcbΚ\\xa8\\xadK,\\x1f)M\\xbdb@\\x15w\\xf5q?\\x10\\x9d\\x95\\xde\\xd1\\xff\\xb2\\xe4;\\xfb\\xa5\\xf7.+\\xea\\x9dsZ@c\\xe0\\xa1ᨻ\\xacK.\\xeb\\x98\\xe1;N\\x9c\\\"\\x1a\\xcd\\xd4\\xe3G\\x8aӻ]\\x00\\xfa\\xde߰\\u007fR{\\xb7ӽf\\x9e\\x1a}\\xf5\\xee\\x11~̽\\xbf#&\\xd2\\xe5JqJ\\xdf\\xff>\\xf1=\\x9e\\x83*\\x99Y\\xb55\\xe5k4\\x05\\xe3\\xe3#\\x9e\\xd3q\\xaa\\x87?r\\xc6I\\x89\\x8a\\xd1ݑ\\xd0\\n.\\xf8h\\x82\\x865\\xb1\\xb0[8\\x85\\x1c\\xa2\\xf3\\xbb풽B\\xbc\\x8c\\x1e\\xc7!x\\x119\\x01\\x17\\xee\\x05{\\xd6\\xe1\\xe8D/\\x0f+\\x06\\x85\\x86\\u06052\\x02\\x99\\xc8a\\xd9\\xd0(\\f\\xc01l^\\x9f\\x15}{\\x00.\\xd7\\x04\\xb9\\x83S4\\xe5\\xf0\\x1c\\xd8\\xc7\\xe3\\x8b1\\x8a\\x8f7\\xbb\\\\\\x13\\x9c\\x12\\xdeG\\xd3\\xec\\xb7F\\xd5W1\\x95\\xc5\\x15\\xefF\\x90\\x18\\xbet\\x0eI\\x99\\xb7w\\xcd\\xf3\\x9e\\x0fx*Zq\\xa9\\xf8\\xb9\\xcaA\\x14E\\x1c\\xd2\\r\\xf6u\\x12G@\\xa3\\xa0Bw\\xc1\\fV\\xfe\\xa6\\xb3\\xefe\\xe3N+h\\x14\\b)i\\x1b\\r<\\x8b\\xac\\xba\\xdc7\\xe7\\x14\\x93tgTW\\x12B\\x13Ҍ\\xee\\x9e\\xf3\\xf4\\fŵ\\x1e\\x9a\\xd7\\xcb8\\x0f\\x1b\\u007fy\\x161h\\rOA\\x82\\u05ff\\xf4\\xb8\\xbb\\x1e&i\\x8f\\x86\\xfb*\\x8f\\xd4e\\x1a\\xba\\x92\\x8aߌ\\xef\\xb9s\\xb1\\x0e\\x1c_\\x15\\xf3\\x02/˲3\\xed}kkF\\xd5\\xf3\\xd5{{\\x1d\\x05|\\xb1ϯ9\\xc2H\\x95\\xa40\\x87\\xde\\a?\\x8e/C\\x13\\xfa\\x80-E\\x96\\f\\x94\\x18\\x8b\\x11\\xaf)-]c?\\xd71\\xcabA\\xfe\\x99jZ)\\xb7{\\xe8\\xcf\\xdafY\\xe88\\xa7\\xc5U\\xd8\\xc2\\xd4\\xec\\xd9\\x19v{\\x19`\\x0f\\x1b;\\xe3\\x14迯\\xfc>\\x9a\\xc9l6\\x8f\\xa11:Y7*oDGFR\\x1eG\\xd6<\\xa6Я086\\xfa\\x19-bAk\\xe8\\xfca\\x84\\xd8R\\x11\\xbcw\\xb2\\xf5o\\x96y\\x99bl\\xc1\\xf6]\\x0f\\\"SoK\\xe6\\xb7\\f\\xbe/\\x0f\\xbau|wTú\\xcb\\xe0\\x19\\\"(\\xcc\\x1f\\xb1\\tr\\xfd\\f\\xad\\xf9\\x9c\\xe4\\x97\\xc2\\xea\\x02\\xff\\xb8\\x94y\\xbf\\x9cLH\\xa0\\x94\\xc4^&D\\x9cP\\xfd\\xa8?\\xfb&\\xf1\\xbf\\xef\\xbc;+\\xbf6m^w\\xf7\\xbf\\xc4<\\xc1\\x97\\xec\\x84XV\\tE_\\x12\\xbf\\xf1'\\xeb\\t\\xc3~\\xe0\\xd78\\x06}\\x1f\\u0600M3\\xa6\\x1b\\x98\\xd2L\\xd5\\xc6\\xe1i\\xf8?hӳB7\\a\\x8b\\tw\\\"\\x88\\xed\\xea\\n\\xe0\\x98r\\x83\\xcc(s\\xae\\xe3\\xd0\\bH'I\\x16)\\v,[\\x86\\f\\x98\\a\\r\\aw\\x14\\x82G\\a\\xfa\\xfbG-\\xb7\\xe0\\x8f\\xa4\\xb1|d\\x9aC\\xf1 #\\x9d\\x80^\\xd7\\xf9gg'\\xe7\\x16^\\xdf\\xf0\\\\|&\\xefu\\xe6\\x19\\xab?\\xec\\xceW\\xbe\\xacsU%x\\x90{\\x92z\\x1a\\xe9\\xe4ɻ%\\xbf\\xa3P]ڈTc\\xb8\\x9f\\xf6\\x17قt\\x15\\x0e\\xe3\\xc1_\\xbc\\xfb\\xa8\\x88\\xa3f\\xb2\\xc4=R\\xe9CU\\xb7j>\\x03\\x8b\\xbd\\x93\\xf4\\xc3?e\\x91\\xa8\\xfaӰ\\xbf*\\xe4:U\\x1a\\xda%\\xf6 kL\\xf7~\\x11\\xfb\\\\x\\x1b\\xad\\xb9ɕH\\xf6\\xb1\\xf7E\\xcf\\xd1\\xe8_\\x95\\xb8\\xfbЬ\\x01?k\\x11\\x80\\\\\\x90\\x82\\xd7,D\\xf7\\x13\\x97\\x01G\\x93\\xf5\\x94\\xd8D\\xf8\\xc6\\x14(\\u0381\\xac]\\xec\\x93GS˥:\\xb5\\x19|3\\x8e\\xb1+\\xbb+\\xad\\a*\\xe7&#H2\\a\\xa8\\xa6\\x11w\\xd1I3\\xefY\\x9c,\\xabO\\x89\\xf5ӃB\\xf2\\x82\\xfa\\xd4i\\x05k\\xfe^:\\x94́\\x18R\\xe3&\\xa6+L\\x1b\\x91\\x9cUxm\\x16'\\x8d]\\x9bW\\x05'\\x8b\\x0f\\xfaƋ/\\xa91wb\\xfa\\rT\\x9bm\\xc6j\\x02\\x13'/\\xec\\xe4\\x90\\x10\\xcf\\x16p>\\x98\\xb8\\xda\\a\\x06\\xbcⷨ]\\x9b\\xac.\\xb3\\x8c\\x00\\x15]Ze\\xd5\\x0f?\\x84\\xac\\xc5\\x0e-\\x88\\a\\xc4F\\xccS''\\x96/\\x96\\x9c\\xec&\\x15\\x80\\xad\\x95ڨ@Y\\x15\\xa7-\\xa0x\\xae\\x88,&\\xff\\x83\\x1e',\\x1e\\x87\\xc3`P(\\x00\\xc0\\\\\\xa8\\x9e'i\\xf0\\xe3\\xc4\\xfb\\xa92t\\x19\\xab\\x06\\xe2nT\\xd1\\x06\\x06\\xa8\\xb0\\v\\x86g\\xd5\\\\z\\xcb4\\x9e\\xb5\\x8d\\x8c\\xf6Y\\x8a?\\xd3Z\\x1d\\x00\\xe9K\\xf5x\\u007f\\xfe\\x17p\\x9ew\\xb1\\xcd\\x1c\\xc2%>\\x86\\x99\\xcb\\x02\\x8a\\x93@u\\xea\\xb9\\xfb\\xdem\\xec\\x989-\\x01d\\xe4;\\xfa@\\xed\\xee_k\\xad\\xe7H\\xabE~\\xbf3\\f(\\xf5\\xab\\xb9\\\"\\xeed\\x1b\\xe2\\xe5ON.\\x02\\xa0\\x80mH\\x80\\x17\\xd2_xQh+|\\x02\\xe1z!\\xdf\\xc0[\\xa1\\x8a\\xf8>\\xe6s|\\x03\\xc9(\\x1b\\xd6\\x1c\\xdeT\\x86h\\xaa\\x86\\xaepkC\\xc0\\xac\\x13\\xd7\\f\\xfe\\x89\\x96d\\t\\xf6\\x86\\xef\\x15\\xe4\\xe3S=\\xae83\\x9dW\\xba\\xc3v\\x92\\nC=\\xfc\\xae\\xb3ϕ\\xd4r\\v\\xf11\\x8aX4\\xed~\\x92\\x9eR\\xaf\\x93\\xda\\nC_\\xf5\\xe7\\xc4\\xc0\\x18ᰶl\\xd3\\xce@!\\xbd\\u007f\\xfe&\\x12\\x02u\\xc2#\\xb4\\xfb\\xf7i#pgUa|\\xa4g#¯SYdc\\x0f\\b\\x1a\\b\\x92\\xae\\x9c\\x89/\\xf6Qb\\xdbv\\x1a\\x05\\xa4*i\\x95\\xe0\\x9c\\xe8\\x9d\\b\\x1f(\\xee맫\\xf98\\xd9\\xf3Pϓ\\xc5d\\xdf?\\x9d\\xfe\\x8f(&\\xdfa\\x14\\x146Νb\\x13\\xaa\\xe8v:\\x1e\\xdfF>W\\xe4{\\x1b\\xa6r\\xc0/IC\\x9exμ\\x1f;\\xe2\\xe7\\x05\\x94\\xa3\\x90\\xbbc\\xdb]\\xb9\\x16\\xcb\\x0e\\x13a\\x8e\\xfa\\x1b';-\\x80\\xc8_q\\x18\\x8d\\xe5\\x10J\\xa3\\xf3\\xfaC\\xee\\xc4*r\\xdeӠ\\xa7u\\xf1\\xba!J\\x9a6}D\\xcbq\\x04\\u007f\\xc1\\xe7\\xaf\\x15\\xa6\\x1fS\\b\\xb6\\x05q\\xc3\\xe5\\xc7\\x16\\x8e\\x98\\x16\\x06\\xec\\f>\\x16!(ӞӧJ\\xea{\\xa4\\xb8֏\\xb4\\xfbƲ\\xfbs,W\\xddtT9\\xf7\\xdb,P\\x8a\\x90:$f<\\x8b[\\x1b\\x9b\\xcc>,^\\xb0\\xa4\\xaf\\x1b&\\x1e\\xe2\\xdb\\xc3\\xec\\xfcD\\xac#\\xe1\\nT\\xbbH_\\x98\\xfdV \\x93p\\x98*\\xe7֢\\xd0f\\xad\\xec\\x87`Êq\\xdbx\\\"\\xfe3<'\\xc1.\\x0f\\xc3J\\x10//D\\x82\\x8d+\\xc6\\xce\\xf9\\x03l\\xfc#\\xe8\\xa6O\\xb3\\xc1u\\x10\\xa3\\xea`\\x1b\\xc6S\\x15\\x85Y\\xbb\\x92\\xa0\\xcdMp.\\x05v\\xe1lK\\xa2\\x9fF\\x81(4\\xdc\\v,\\x9a\\x8d]\\xd5\\u008a\\x95iZ\\xd7\\xfdD\\xa1\\x85\\a\\x13ú\\xf7;\\xc7B\\xa3_\\x17y\\xa4\\xe2\\xf3;5 \\xeb#\\xa1bK\\xac,\\xac6x\\xfe\\x9b\\xc8\\xef%\\xee\\x11چ\\r\\x9dFc\\xba\\bi\\xde\\xfc\\xfe\\x82\\xc3>V\\xed0\\x1a\\x03\\x9b\\x87GW\\x87\\x16Ɠ\\xaeoKb{\\xd02\\x1a\\xb1\\a,M\\xc7\\x04\\xc2>\\x8al\\xa1\\xf9\\xd0\\xfb`\\xfd\\xb0\\xb5\\xb8?p\\xb5X\\x83ݢ\\xaa\\xf1\\xd8*\\x14\\x11\\x93\\xd94\\x9e\\x0e\\x18\\xfa9\\b\\x92\\x9c<\\xc2\\xcc\\xddѩ\\xd8ugVnp>Y\\x80xt\\x1a\\xee\\xe5)\\x16\\x16\\x0f:\\x9c\\x16\\x8b\\xb3\\x03Թ\\xa9u\\xd4\\xe84\\xfe+\\xa2\\x9f\\xaeWc\\xbc/m\\xd8\\xd0Q\\x97\\x98x\\x11\\xb9\\xfd\\x89\\x8f\\x97J\\x8a\\xc1\\xf6\\xfe\\xca\\xe5@I}\\x91\\xbd\\xea\\x8dD\\xe2\\xc6}\\xe1{\\x16\\n1\\xe1|\\xc9\\xf3\\xbc\\x1b\\x83\\xbd\\x15^\\xab\\xe5\\xa8{\\xb7\\xc0\\xe9\\u007fEZp\\xf2$\\xd7\\xc2\\x15\\xa2\\xde\\xdd+\\xf3EX\\x041\\xdbhm\\x97U\\b\\xbb\\xe0&\\x00\\xc9u\\xd9\\x1d\\x1e\\xa5\\xbc\\xec\\x86\\x1f\\x15H~;\\x12$8\\x04\\xb20W\\x05\\xb4q\\x1a\\xc0ﾗ\\xd7M\\x87\\x9dn\\x0e\\x16\\xb6\\x01H[\\x0f.\\x91^\\xf3\\xf3\\x83\\xea\\a\\xff'\\x83\\xfc\\xbcY\\n\\xdbP\\x919\\x89@\\xd8p\\x9f\\xa0\\x03\\xb5\\xb3\\xb3\\xec\\x19\\x9b\\xfa\\x15\\x95\\xd2IvQ\\\\\\xe4-\\xe8XsyF;\\xed\\xcc\\r\\x97\\x86k.\\x9a\\x87\\x12\\xa1\\xa6\\x02\\x9a\\xf8\\xb6\\xccQ\\xcc\\xc0O\\x86\\xf6\\xceo\\xab\\xcc1\\xad\\xf1M\\xc1\\xd7E\\x183uL\\xb7\\xa0\\x86\\xe9\\xc8Е\\x16\\x8d\\xedc\\xafѫ\\xf6t\\x95j\\xa9BH\\x18x\\xc7%\\xb3\\xa1\\xc3\\xf2\\x13\\n\\xb3\\xbc+\\v\\x12\\xc5ޣ)\\xb0\\x85ia/<\\xee-.N\\xc5F\\xfd\\x87\\xa6\\x1b#碾xPN+\\xbf\\xbf\\v\\xf5\\xdc\\x12C\\xc3\\xfcw\\xe4\\x0e\\x11\\x9c\\xae\\xfft\\xc9\\u07fc\\x12\\x11\\xb9\\xc9Vl3\\xea\\xef%\\x9f\\xd6?\\xa9k/\\xff\\xe7m\\x1ax\\xe8\\xdc\\xc8\\xdb]WE\\xff\\x94\\xb7ׁ\\xaf\\x05L\\x1dS\\xb76\\xc2\\x1d\\u007fD7 !\\xacX\\x83\\u00ads\\x8fN\\xa8-\\xce=\\xee\\x1b&\\\\\\xc138\\x85|l/\\x95ڋ\\xe5\\x17r\\x18\\xf8+\\x04@\\xbd\\xe9\\xb0\\xe1\\x8ce\\xfa\\xbc\\xcf\\xd8F\\x0f\\xe4 \\xd3\\xffނT\\xe2aUh\\x03M`\\\"\\xf3I\\x9f\\x9c\\x94yR\\x9e\\x15\\xfam'\\xae\\xfaK\\xf9\\xe6ƚ\\x9b\\x0f\\xbc\\xe7\\xbc9\\xd5.\\x95\\xe8u&}\\x8ee\\xd2\\xe9[u\\x98\\x04i\\x02F\\xf7H-\\xd9}\\xba\\x13,\\x98p\\v\\xddV\\xeb-Gbã\\xeby`ۮF8#\\x14a<\\xb8ο\\af\\xae\\xa11\\xf2\\xbf֊\\xe2<\\x8e\\xdco\\xb0\\xf3\\xad\\xfb\\xad\\x17L\\vN\\x9d\\x02\\\"\\x9c\\xf0IB\\x89\\xe9\\x89I\\xdd\\xe4\\xa0U\\xa7\\v9S\\xb8?\\xe0X\\x9e)\\xd0gժ{\\xf6f,\\xdb\\x12\\xf2,mēi\\x8c\\xf37\\xefݷw\\xa8=\\t.9\\xec\\x82h\\xb0\\v\\x96w\\xeeݻOEQ\\xf5\\x9b\\xe3\\xfc\\x99F\\xcf/Ҟ\\x15\\xe6x\\xb6\\xd8\\xd3\\xcfd\\xcb\\xcbI[\\xccZ\\xc8\\x1a6\\x1a<\\xe3\\xfc\\x9d.\\xc98\\x1c\\fZ\\x9cƱ\\xdf[%Ta\\xe5\\x14\\x9a3q\\x87\\xb6\\x8d\\x96\\xc9\\xdb\\xf1\\xa8\\x8dR\\x01Ip\\xef\\x8cp\\xb0\\xbc\\xce\\xf0\\xbcG\\xa6\\x195&\\x1bi\\xa1\\x1ff:'k\\x15R\\x82\\xff\\xf5\\xa1\\x86s\\x88\\xcf_\\xcf\\xf7\\xc0\\x14`N\\x0f\\x1a\\x85\\xc6$Ef\\xd0r\\x98\\x96\\x037!+\\xe8F\\v!B\\xd0/\\xb2T\\xcf!f\\x1b\\xaa}\\xbaĐX.\\x95\\xec,\\xb8孄t8\\x17\\xd5\\x0eG\\xcc\\x17\\x17g\\x14\\x02\\xc3\\xdeqC\\xa1d\\xe4v\\x9d\\xccͼS\\x12\\xec\\xdcd\\x86\\xa0\\x00\\xe9\\xe9\\xa9 \\xbd\\x8b\\x9e!\\xf3^\\xackׅ\\x89\\x16Y\\xad\\xc7\\x17D\\x17\\x17;\\x9dq]D\\x17\\xe0\\xf5\\x00\\xce\\xda1\\xd5\\x04=J\\xb9\\xd1\\vˋ\\xe1U#\\xfb\\xb1D>\\rWd\\x86\\x9a\\f\\xf1\\xf5-\\x1b\\xc0\\xfc\\x13'!u\\xf1\\xa6\\xd8\\f\\x86Y\\x82H\\xb2:#\\xf6/\\x8f\\x14NV\\xccSY\\xa3\\xf1VT\\x9dQ\\xf5\\x95\\x85\\x87\\xae\\xc8\\xe2.\\xe7\\xa0~Pe\\xfbɫi\\x83#B\\r\\xd8\\ncXd\\x9e ,\\xd3QJ\\xc3\\xe3iYx<\\x056\\xbd\\xf9\\xe8Y\\x03^u\\xa1餅E\\xd0\\xf2\\xe8\\xf0\\xbf\\xcf\\xde\\u007fң\\x93UPݼh^ܱa{VOWt\\xf9\\xf7\\u05ee\\xb9:,u.\\xeb\\xecu\\x96\\x0e\\x17\\xd5\\x04Z\\xde\\xdfW\\xce\\xd9\\xe2\\xe1\\x8d\\xe2\\xe8\\x99G\\xa1\\x19u\\x9f%\\xa4Jn\\x94φ2\\at¿\\x9b5ʘq\\\"\\xf8\\x95y\\xebn\\xdf\\xe3.\\xf3+\\x98'\\xe9\\x130k#w1\\xe7\\xa6\\xf9\\xf6>\\v}\\\\\\xbe\\x95\\x93~\\x9a\\xf8\\xb8\\xe3-\\xdd鄍\\x06vK\\xb7\\xbf\\xee\\x906\\xbd\\xbb\\xe5X<>\\xfa\\xb3\\xccC\\xc7\\xe4\\x84\\xd9u\\x06\\xf6\\xc6\\\"o\\xed\\xbe\\xc5\\xe34\\v\\x9dn\\xa1\\xb9\\xc3ݔ\\x14S\\xdbܺkJH\\xac\\f\\x9d\\xb9\\x96\\x97\\x17\\x18\\xf7\\xc6b\\xee8\\x903Y\\xcccR7\\xba\\x8e5\\xdf\\xd8'M81\\xa1ro\\x97\\xf2\\xc4v\\xf2\\xf5*%/\\xfct\\\"\\xfej\\vEMi\\xb9\\x8aO|\\x90!\\xfe4U\\xc5SF!\\xb6\\x95#\\xc3\\xc3.\\xd8\\xc9\\xe1`-\\xde\\xe1\\xc7\\t\\xe1\\xfc\\x8e\\xec\\x15\\x9e\\xc7\\xc1\\xc6\\xcbؼ\\x80cx\\x1cN9ߖJQ\\xd1(;29؟k\\xaa\\xf1a\\x8f\\x16\\xadoiM)y\\fp\\xf1b\\xbcg\\xd6\\v\\x14\\xea\\x85;\\xb8\\xd238\\x82\\xf3\\x0f\\x8a\\xadJ\\x17\\x89|\\xeb\\xaf\\x1a\\xfcp\\xcfX\\n!R\\xcdУ\\x970C6\\a:\\xeb\\xd3t\\xde\\xf7|\\x93O\\x1f\\xaa\\x10\\x9a#\\xf3\\r\\xe5\\x03\\xd7\\x05AO\\xbc\\xf8\\xc1ы\\x17G\\f\\xdf\\xeb\\x17:\\xd7T\\x12\\x9a۽\\xbeh\\x8cU\\xdc,\\xeb\\x9e3\\xd2tbZ\\xbe\\xce\\xe2\\xc0#2G\\x1d\\x16r\\xe8{\\x1e\\x89\\x04\\xf3M\\xf5\\b3\\x89\\xbe\\xe22\\xd0i\\x8d\\xa5\\xaf\\b\\x14~\\xb2-\\xf7\\xb1\\\"\\\"\\x86\\xfe\\xf3\\xe3\\xd4\\xe4\\xfe[\\x85\\xac\\x88ƛ?\\x11\\xb4\\x8c\\x18\\xf6\\x11}\\xea\\xe3\\x9fc\\xe8\\xcb\\xd8\\xfd\\xf5RK\\xf8\\xa9\\xc9\\xf3\\x1b\\x19\\xab\\xd08y\\xb4\\xef\\xc7\\x03\\x0f\\xb3\\xe2\\xa8c\\x82q\\xf9\\r\\a\\f;\\xbe\\xab6(\\xd2)\\xe9)>'\\rm\\x19\\x0e֟\\xda\\rP\\xad\\xd5ٱ\\xa44\\xf1\\xec5]1\\xbbX3\\x1c\\xea\\xad\\xe7\\xf5\\x96\\xc6\\xc5;\\xc2\\x13K\\x92\\xfe\\x1fj\\xda\\xf6\\x98\\xb1zE\\xeby\\x8d$\\x9a=䊏w\\xa8~)\\xcam\\r6m\\xa3R]Q\\xa6lS\\xa4W\\xf5\\xb1X\\xd9\\x1c\\x02\\xaa\\x9b\\xa0Ww3z\\xb2Y\\x1a\\x828zS$\\x9a\\xdf\\xc3|*\\xbe\\x93\\x86\\xceh\\xe4\\fS\\x9f\\x89\\xf9\\xccD)6m\\x85Me\\x0fj,6\\xbdW\\\"\\xd3I\\xdf1\\x89\\xccwR\\x9dLқ\\x8e\\xadV\\xbe\\u007f\\xaf\\xacƤP\\x1e\\xb4\\xd4(\\xb4\\x92\\xb1<ˁ\\xea\\x93\\xd2\\xd5${\\x90\\x89HiX\\xbb.\\x8dTn8\\xe0-*\\x9f\\xbfZ\\x1f,\\xf2>\\xd0T0\\xbf*\\\"o\\xbfۑ\\x1f]\\xba\\xe4\\x81\\x06\\xbd\\\"\\n\\xb2\\x0e\\x12\\xe3*\\xac\\x9bQ\\xf7\\xf4\\xf7\\xe1,\\x10{\\xe4\\xf4hȆ>'\\xa2\\xbdak\\x0f+\\xec\\xbf \\xce\\xceDn \\x8b\\xc2\\xe2\\x05$\\xee\\xe4\\x04rc\\xb9\\x1e\\x93\\xc8\\b~~\\xc1<{\\xadj\\xdeY\\x00\\x1fA\\n*\\x0e\\x1b',\\xac8\\x88t\\xe2'yr\\x1c\\x16\\xacE?\\xa4\\xeaE\\xff\\x8e\\xfeb\\x1b?\\b\\x9b\\x9e\\xc56n\\xc1\\xe0\\u007f\\xf4\\x1b\\xfb$<\\x00\\xbf\\xadvo\\xb5\\xbc\\x86Eq;T*oio\\xfff1n\\xa0\\\"\\xc9tF\\xcdk\\xcbd\\x1d\\xaf\\xf0\\xa2l\\xc9zs\\xf5\\x99\\xb8a8\\xbb4\\x82!o\\xa3\\xd6\\xff\\xed`W%+8\\x98E[;\\x89\\x82<q\\xe9P\\xbcW<\\xa4$)\\xa1xn\\x1c\\x9c\\x06\\xb1\\x8c\\x1fv\\xf3\\xbe\\xda.\\xedA&\\xeeH\\x14\\xb0ˏ\\x8e>\\xf8k\\x9f\\xee\\xa3ĭ\\x91\\x9eI\\x86A\\xedj3\\xb2Y\\xefɖ\\xc7n\\xf6\\x1d\\xaa\\xd0\\x1c\\xa0Xǒ\\a\\xb3\\xa8ko\\xb6\\xd8\\x19J\\x83\\xc1\\x8b'\\x1dǂ\\x0e51I{|\\xf7lա휓\\u007fi\\x88FU\\xf9\\x9dě݃扸\\xd9C\\x85\\x80\\x99\\xee\\xd9#c\\xa5\\a\\xda\\x05\\x87P\\x87\\xb5\\xb2e\\xbf\\xbcs\\x87\\xecb=W;ΰ\\xe3\\xf9\\xa6\\x1cr\\xd2\\x0e\\xfc\\x92\\xb7ۅ\\x90\\x95\\x1a\\xccBu\\x89\\xf25\\x9ccu\\xf5\\x81W\\xec\\x96o(\\x1d\\xae\\xc3\\xe5E/\\x90S\\xe4y\\x1e\\xf3pupKg\\x97b}[\\x1f\\x96:7\\x8a\\x9f\\x04Y\\x01\\x94\\x99\\xd1y\\x92\\xdcS\\xf6a\\x8c\\u2e9a\\xea\\xef\\x1c?\\x15\\xb6)\\xb3\\xd1ٔ6H\\xcb\\x16\\t\\x97\\x95Y{d\\xe4\\xe5ʍ\\x19\\xc8;\\xfc\\xc5;\\x04\\xd1Pϋ\\x1a\\vﻋ\\r\\x8d\\x11\\xdb\\xe9L\\x1e\\x03\\xab\\xf7ð\\f\\x1e\\x93\\xfe_\\xfe9\\xc5\\xc4\\xd1\\xed'\\xc3:\\xb9\\xc9F\\x98\\xdd\\xf1\\xa1\\xde(;\\xaa\\xb1\\xbe\\xaa\\xca\\xdf{\\xc9~\\xa9\\xf7-\\xe4\\xb0\\xf2\\xb5\\xc5u\\\\H\\x81\\xa5\\x85\\xc9\\x1c\\xd2\\\\\\xe1/ہ\\xf1\\xbb9G+\\x8a\\xd0\\xcbqj\\xdcCb\\xcb-:!\\x0e\\xcfw0jjD\\x19+}\\xfb̩\\xd3\\xfe\\x95\\xc2g\\xdd\\x1aCff\\b\\x83\\xde!\\xee\\xa03\\xfa\\xc8\\xc5\\xf3\\xfa\\x1b\\x8a!v\\xacW\\x8cg;\\xef;(5\\xc9P\\x8d&6\\x98\\\\\\xf6\\u05eb=\\x96\\x8b\\xbabw\\x94X\\xfd\\xe5\\xe7O\\xdfPm\\x836L%4\\xf8~\\x91Q\\t\\xabQ\\x9a\\xd8\\xd0\\u007f$\\xaf\\x1aS\\x865\\\\,8\\xd7k\\xc2;\\x1f\\u007f\\xea~\\x01p\\xe3\\x01\\xa0\\xfbtA\\xa8aP\\xff7(\\xfd4LY\\x80\\x0f\\xb2o$OkK5\\xf3\\x94\\xfa\\x99\\x02\\xbc\\xcd,1\\x90WJ\\xc8\\x02I\\x9b8\\xcd\\x1a\\xfce\\\"k\\x12\\x81Q\\xc0r\\xa6\\xc6/I\\x1c\\xabߌ\\xb2\\x9a\\xff\\a\\x87\\xba\\xac\\xf3\\xa8\\x0e^\\x04P\\x86\\x05\\xefz\\x9f\\xecT\\x15\\xf8,m=uէ\\xf4?I/+\\x0e \\xe8&X\\xcbS;\\x0e\\x14\\xf0\\xf0ޚ\\xf7`\\xce\\xc5>5\\xfc?\\x9e\\x84\\x06\\v\\xc3\\u007f\\xd2v\\xa9\\xaa\\t\\xb9\\fC\\x10\\xa7\\x12\\xfe\\xfb\\xf5-73\\xaa\\x989\\xff\\xe7߭.\\v~\\xfa\\xe8AM\\aj\\xb8\\x9b!\\xfc\\xeb\\xe0\\x1a\\x0e\\x01l\\x8e\\xc5 H\\x03\\xc8\\xf0f\\xeb%\\x03\\x02h \\x06\\xb0ȇ9 \\xe05E\\xc8H\\u007f\\no\\x1b\\xf2\\x815`~\\x1b\\xe4\\x92\\xc5}\\x92AT\\xf2ȫC\\xa9\\xf5\\xf9\\x16s\\x00\\xd3\\xc4\\x10-\\x99\\xfd\\xa1\\x99\\x83tU\\xa2\\x97\\xc5V\\x15ԣA\\x05\\x90\\x86:5\\xc8k\\x90\\x9b\\x15èҖ_ߤ4\\xa36V\\x9c\\xc3\\xc9\\xe9F\\x1f\\x105\\xeb4b\\xa0N\\f\\xea\\xeb3d\\x9a\\xcb\\xea5!\\x1e\\xe1G\\xe2/VF@\\xc9\\xf6\\x1b\\x05\\xea\\x8b\\xc2\\xe0\\x8b\\x85--\\xc9\\x18\\x86MMB}\\x8a\\x9auRF썲\\xba\\x82\\xa1\\x9c\\xe6\\x14P^_.Q\\x91\\x86\\x12Q\\xa9\\x91\\xdaLe\\xea\\xebG\\xaa\\x02\\xa3\\x95T%\\xb8-T\\x15^o\\xc1\\xb5\\xc9\\x1b>\\xb0֕\\xfa\\x17X\\\\\\b\\x00\\x98\\x91\\x02\\x1a\\x14\\xcdI\\xa3\\x8c\\x82[\\xcaZ\\xc47\\x943\\x17_\\xca\\xdb\\xe4\\n*2\\x91\\xf7Tj\\xcf̧2cu\\x9a\\xaa\\xe0\\xdb\\x04\\xaa\\x12\\xa5c\\xa8*\\xa1\\x9d\\x8fk\\x8d\\r\\x0fY람\\x1fp\\xb3\\xf4\\x94\\xf5\\xe6\\xb5j\\x8d\\b\\xe6\\n\\v\\xf0KM!\\xed\\x87'\\x11\\xec\\x9fz#A\\xfaٷo\\xeb&b^,\\xf0\\xabS\\xc4\\xc7S\\x82\\x8eB\\x19T0ũ\\x9eP_ʍ\\xa8\\xdd\\r2\\x1e\\x15\\xf0e\\x85\\xc1\\xaf\\x17\\xc1M\\xea\\xfb\\x90y⳱\\x16A5\\xd1\\x1b\\x06\\xdb\\xda\\xe1\\xcc\\xd3J\\xff\\x19n\\fow\\x9cn\\x11V9\\xb1)vb\\xec\\x14\\x9e`\\x05ʃ\\xd8j\\xd0&\\x92k\\x95\\xba\\xfa\\u007f\\xca\\v\\xa4ڤ|2;\\xcc\\xcb;\\xe5C|hu\\xba\\xa2\\tI\\v\\xcb\\xc4v\\x98\\xfa\\x1f\\xea\\x865yco\\xbcQ\\xcd\\x1a\\xb9\\xacO%7\\x9b+0\\u0099\\x81\\xd8!\\xc5\\x15\\xe1\\x87VQ\\xae\\x1f\\x02I,\\x94\\x99\\x94 R\\xa8\\f\\xfaϩF\\x8c\\xcc\\t\\x9e\\x92\\xcf\\x02F\\r\\x11Vmi\\xd3E[\\xe8\\x84 \\x11\\xd9T\\\"\\xaa\\x0e}\\x1b\\x99\\xfa+\\x8e\\x1f\\xbe\\xe0*qĪq\\a\\xcf\\b\\x97\\xbd\\xda\\x11\\x95=\\xdapM\\x92J\\xa7\\x985\\xe9\\x02\\xe1B\\xc7\\xee\\x8d\\u06dd\\ufae1ه>\\U000fe4d1=\\x96_\\xea싗\\x05\\xbf\\r\\xfc\\xab\\f\\xa5\\xe9\\x86i\\xd9\\x0e\\xa7\\xcb\\xed\\xf1\\xfa\\xfc\\x00\\\"L(\\xe3B*m\\xac\\xf3A\\x18\\xc5I\\x9a\\xe5EY\\xd5M\\xdb\\xf5\\xc38\\xcd˺\\xed\\xc7y\\xdd\\xcf\\xfb\\xfd 0\\x04\\n\\x83#\\x90(t\\xfe\\x19,\\x0eO \\x92\\xc8\\xfeO\\xc3\\xff\\x1e4:#\\u007f&\\x8b\\xcd\\xe1\\xf2\\xf8\\x02\\xa1H,\\x91\\xca\\xe4\\n%e\\x15U5u\\rM-m\\x1d]=}\\x03C#c\\x13S3s\\vK\\xab\\xf5f\\xbb\\xdb\\x1f\\x8e\\xa7\\xf3\\xe5z\\xbb?\\x9e\\xaf\\xf7\\xe7\\xfb\\xfb\\x93z\\x19\\x0f\\x10\\xb4vVA\\xbbf\\xa8\\xbdg\\xf1\\xfb\\xc0d\\xd5\\x01\\xd7ne؆EdO\\xa0{O\\t6\\xec0P\\x9d+%4\\xe7I=\\xe3\\xec#\\xfa=\\xd0\\xfb\\xed\\xbf\\xa1U\\x92\\xfc\\xea{\\xc6\\x1b\\x8eh2g\\f\\x16g\\x0f\\x8c9\\x80\\n^\\xed\\xd1KJ\\x98\\xeba\\x15\\x0e\\xa8\\x93\\xbbF'\\x05\\xf3\\xe8#hu\\v\\xe8\\x90\\xc2ic\\r'q\\x11x\\xed\\x19\\x93\\xe4ɫ\\x14\\xd3s\\x1e4<\\xc7\\x10\\xde#\\xe4\\xe0\\x8aP\\xaen\\x9f\\x9f\\xfc\\xb6qQƵ\\xbe\\x98\\x83ZIx\\xc0A.\\xb9\\xf3Rn\\x9d\\xc1\\x19\\x0f\\xf6\\xdf@q\\xc0|F\\x96\\x82#\\v\\xba\\xcbK\\xe3\\xa5[\\x90y\\x88b\\x85*\\xf0T\\xb8\\x99K)\\x1c\\xb6\\xd4\\xdd[\\\",\\xadZ\\xd8Z\\x9e\\x13\\xc6a\\xc7\\xdb\\\"\\xa0ah2\\xc8P\\v7\\x95\\xb5$ʹ\\xd9\\x16d\\x03\\x92E\\xcc\\x02\\xd8F\\x9a\\x02f\\x1f\\x1e\\x885\\x02ɛ\\xfa\\xf6\\xb5|+\\x9f6j\\x81\\x80n%\\xc6a\\x05\\x95\\xad\\x1dkli\\xb1tⴆEܒgk\\xb9K\\\"Y8T\\xd7\\xecS\\x90*\\xe9)\\x87\\xa5\\x11\\aʛ o\\t\\xeb\\xe8\\xf9/\\xa2\\xe1d\\x85\\xe0\\xd5#\\xbf%x\\xe5\\x82ڲ\\xcc\\x17\\x1a4d\\x06\\xa1\\xa0>\\xd2\\x19_ڡ\\x05\\x92\\x9f\\xf63\\x05\\x94⪽\\xc032\\xad\\xf2?\\x88\\xbcM\\x05\\n\\xaa+\\f\\x19\\x0fk\\xab\\x8b\\xf0\\x98\\xf1bQ\\xfc\\xa9;\\x98aU\\xeeó\\x18\\x06\\xe7\\xa1T\\x92\\x9ck\\r\\xb3,\\u007f\\xe8\\xab\\xdbTZy\\r\\xb8Z\\x9e\\x17\\x9e\\xac\\x92\\xdfo.K\\xc5\\xde(\\x9dq\\x8c\\xd2tc0\\x1b\\x87\\x85_\\xc5\\xef\\xa75\\xaa\\x84\\xe9;\\x1fm\\x9e\\xccDmr3ݡ\\xe1\\f\\x13\\x17ޤy@ɨ\\x19\\xbb\\x10<\\xbe\\fy\\xd8c\\x1c\\xaf\\x14Ҿ\\xee\\x1dM(\\x1d@\\x9f\\x1d\\xcf\\t\\xca4\\x02\\xa0\\xfe\\xc2\\xe6\\x02ͰC@\\x03d)>\\x92x>\\x8b\\xb0\\xe3K\\xbfEӨ\\xe7\\f!(\\x9a\\xb9)l\\v\\xc01\\xd395C\\xed\\xdah\\nn\\x81\\xb0\\xe1у1\\xeb|\\xbbP\\x0erq\\t\\xae\\x94\\xe8\\x8e\\xf4\\xe6\\x947|ͣhU\\x14G\\xcb(\\xb62\\xec8V\\x05\\x8b\\xf5$\\x87.\\x0f\\xb2\\xd13\\x951\\xe0\\xfe\\x01\\xd5\\xf4 \\x9a\\xad\\x10\\r\\xbd8\\f\\xd8\\xef\\xd2\\xff\\x02ԛ\\xd3\\u007f\\xbd\\xaf\\xba\\x95\\xe7\\r\\xd3k\\x92\\x8c7\\xb7\\x10\\xb3\\x82X\\xc9\\xd0p\\xb0\\xcfm\\xe7\\x0fR\\xed4=\\xb1K\\xaah\\xef!oz\\xeb\\x03\\xdd\\xef\\xb7\\xe3\\xca\\xcd\\\"\\xf6c8rQ\\xabE\\x1f7\\xa5\\x04\\x1e;\\xe2\\xcc\\xc3\\nM\\x1f\\xe4u-\\b\\xe9\\xcd\\nvvA\\xa8\\x13\\x8d\\xf6\\xa6\\x82\\xf9'o\\xff\\x8dr\\xfd\\bu\\x15A\\xed\\x14r\\xd47\\xc4`\\xf8\\xaf\\xbaJ\\xde\\x1a~\\xfal\\xb6\\x94\\xf7MXwF\\n\\xb8\\x0e\\xe8v2\\x1bWL\\xad\\x90\\x01#\\x19I\\x82{\\x86\\xb6\\xc5\\x13F\\xb1\\xc2\\xfcÈdYH\\x98\\x940\\xb6\\x9a\\x01\\xfc\\xfbzj*̔7\\x877\\xb4\\xa3Ap^o\\x03\\x81ueU\\b\\x8b\\x9al\\xb0\\xa6Eɰ\\xaf\\xa4\\x18\\x00\\x00\\x00\"\nvar _Assets8d3d84b01d8e875fa96f3fb120e5aef152ba2a3b = \"\\x00\\x00\\x00\\x01Bud1\\x00\\x00\\x10\\x00\\x00\\x00\\b\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x02\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\b\\x00\\x00\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x01\\x00\\x00\\x10\\x00spblob\\x00\\x00\\x00\\xc8bp\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x03\\x00c\\x00s\\x00sbwspblob\\x00\\x00\\x00\\xc8bplist00\\xd7\\x01\\x02\\x03\\x04\\x05\\x06\\a\\b\\b\\n\\b\\n\\r\\n]ShowStatusBar[ShowPathbar[ShowToolbar[ShowTabView_\\x10\\x14ContainerShowSidebar\\\\WindowBounds[ShowSidebar\\b\\b\\t\\b\\t_\\x10\\x17{{126, 43}, {770, 436}}\\t\\b\\x17%1=I`myz{|}~\\x98\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x99\\x00\\x00\\x00\\x03\\x00c\\x00s\\x00sdsclbool\\x01\\x00\\x00\\x00\\x03\\x00c\\x00s\\x00svSrnlong\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x03\\x00i\\x00m\\x00gdsclbool\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\b\\v\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00 \\x00\\x00\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x01\\x00\\x00 \\x00\\x00\\x00\\x00\\x01\\x00\\x00@\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x01\\x00@\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x01 \\x00\\x00\\x00\\x00\\x00\\x00\\x01@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\v\\x00\\x00\\x00E\\x00\\x00\\x02\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04DSDB\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00 \\x00\\x00\\x00`\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00 \\x00\\x00\\x00\\x00\\x01\\x00\\x00@\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x01\\x00@\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x01 \\x00\\x00\\x00\\x00\\x00\\x00\\x01@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\nvar _Assetsdde0973434b88ffc53b81b28400233e4fde8bb40 = \"html {\\n    box-sizing: border-box;\\n    margin: 0;\\n    padding: 0;\\n    height: 100%;\\n}\\n\\n*, *:before, *:after {\\n    box-sizing: inherit;\\n}\\n\\nbody {\\n    margin: 0;\\n    padding: 2em;\\n    font-family: monospace, sans-serif;\\n    color: #666666;\\n    background-color: #222222;\\n    height: 100%;\\n}\\n\\n.logo {\\n    position: absolute;\\n}\\n\\n.title {\\n    line-height: 2em;\\n    font-size: 0.9em;\\n    margin-top: 5em;\\n    margin-bottom: 1em;\\n}\\n\\n.title span.yellow {\\n    color: #FFCE00;\\n}\\n\\n.updated {\\n    font-size: 0.8em;\\n    margin: 2em 0 1em;\\n}\\n\\na {\\n    color: #FFB6D5;\\n    text-decoration: none;\\n}\\n\\nul, li {\\n    list-style: none;\\n    width: 100%;\\n}\\n\\nul {\\n    margin: 0;\\n    padding: 0;\\n}\\n\\nli {\\n    line-height: 2em;\\n    font-size: 0.9em;\\n}\\n\\nli span.right {\\n    float: right;\\n}\\n\\nli:nth-child(even) {\\n    background: rgba(255,182,213,0.05);\\n}\\n\\nli:nth-child(odd) {\\n    background: none;\\n}\\n\\n.aligner {\\n    display: flex;\\n    align-items: center;\\n    justify-content: center;\\n    flex-direction: column;\\n    height: 100%;\\n}\\n\\n.aligner-item {\\n    max-width: 60%;\\n}\\n\\n.aligner-item p {\\n    text-align: center;\\n    line-height: 1.5em;\\n}\\n\\n.icon-big {\\n    font-size: 4em;\\n}\\n\"\nvar _Assets7f20ca1245bb8b3d9d2ba4abac70f5fb42bab011 = \"wOFF\\x00\\x01\\x00\\x00\\x00\\x01\\x82\\xb4\\x00\\r\\x00\\x00\\x00\\x02\\xf4\\xf4\\x01J\\xc0\\x83\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00FFTM\\x00\\x00\\x010\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x1c\\x8d\\x96\\xb6\\x16GDEF\\x00\\x00\\x01L\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x1e\\x00*\\x03\\xcdOS/2\\x00\\x00\\x01l\\x00\\x00\\x00L\\x00\\x00\\x00`C\\x82V\\xa0cmap\\x00\\x00\\x01\\xb8\\x00\\x00\\x06\\x99\\x00\\x00\\f\\xae\\x19M%\\xebgasp\\x00\\x00\\bT\\x00\\x00\\x00\\b\\x00\\x00\\x00\\b\\xff\\xff\\x00\\x03glyf\\x00\\x00\\b\\\\\\x00\\x01O\\n\\x00\\x02\\x93\\xc4k\\x89U\\xechead\\x00\\x01Wh\\x00\\x00\\x005\\x00\\x00\\x006\\x17\\x15\\x91\\x1ehhea\\x00\\x01W\\xa0\\x00\\x00\\x00 \\x00\\x00\\x00$\\x04C\\x06\\ahmtx\\x00\\x01W\\xc0\\x00\\x00\\x03\\xc2\\x00\\x00\\x0f\\x1ao\\xcd\\x02\\xe8loca\\x00\\x01[\\x84\\x00\\x00\\t\\xd4\\x00\\x00\\x0f \\x04xڴmaxp\\x00\\x01eX\\x00\\x00\\x00\\x1f\\x00\\x00\\x00 \\x04)\\x01Sname\\x00\\x01ex\\x00\\x00\\x02\\x0f\\x00\\x00\\x05+\\x1d\\xac'$post\\x00\\x01g\\x88\\x00\\x00\\x1b)\\x00\\x00/\\x197\\f\\x86\\x8fx\\x9cc```d\\x00\\x82\\x9b٪?A\\xf4-\\xd1\\x13\\xdcPZ\\x10\\x00D\\xd7\\x05\\xee\\x00\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x03\\xc6\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00x\\x9cc`a\\xfc\\xc9\\xdc\\xc2\\xc0\\xca\\xc0\\xc0\\xe8Ø\\xc6\\xc0\\xc0\\xe0\\x0e\\xa5\\xbf2H2\\xb40001\\xb023`\\x05\\x01i\\xae)\\f\\r\\x1f\\x18~:2\\x1e\\xf8\\u007f\\x80A\\x8f\\xf1\\fC\\bP\\x98\\x11$\\xc7hŸ\\x14H)00\\x02\\x00l\\xb6\\r\\xb1x\\x9c\\xed\\xd5}T\\xd7\\xd5\\x1d\\xc0\\xf1/\\xa81\\xb9\\xf7s?\\xbfiL[\\x86ʱ\\x96m\\xa3\\x1aM-\\x1f\\x92i\\xd3Y\\x12\\xc6\\x1e,D\\xcc\\xd4\\xc4\\xe6\\xe6\\x9aGGb\\x06b\\xe8\\x8a\\x1d\\x91\\xd0ZJ\\xa0\\xf8\\x84J>\\xa4\\xf1p@$\\xd0\\f\\xc1\\x87\\x96\\x0f\\x88\\xa8\\x90\\x0fS\\x9c\\xf7\\xde\\xef\\xfd\\xde\\xfb\\xd5\\x10\\xf6\\xed\\xd7\\xefT\\x9em\\xed\\xdf:\\xc7\\xf79\\xf7\\xe1s\\uefefs\\xaeeY\\x9d\\xac/V/+\\xc8ۭ\\xd0\\x02o\\n\\xf2ϝC\\x17[Vpn\\xb0e}\\xcf\\xca\\xe5\\xc1\\xbc\\vg\\xbc;\\x0f\\xe3w\\xf0^<\\x9c\\x0f\\xe3#y\\f\\x8f\\xe7\\x13\\xf9\\x1fx\\n\\u007f\\x85\\xbfʗ\\xf0L\\x9e\\xc5s\\xf8\\x9b<\\x97\\xe7\\xf3\\\"\\xbe\\x9d\\xd7\\xf3ü\\x89\\x9f\\xe1-\\xfc2W\\xbc]\\x10\\xc1\\xc4\\xf7E/\\x11.\\\"D\\xa4xP\\xfc\\\\<\\\"\\x86\\x89\\x91\\xe2\\x97\\xe2q\\x11#\\x9e\\x16\\x13\\xc5T\\xb1P,\\x16\\xd9\\\"G\\xac\\x10o\\x89U\\xa2Hl\\x15;D\\x99\\xd8/\\xea\\xc5q\\xd1 \\x9a\\xc4y\\xd1*\\xb4h\\x97A2D\\x12\\xd9S\\x86˟\\xca\\x01\\xf2a\\xf9+\\x19#\\x13\\xe4\\xef\\xe5\\\\\\xf9\\x92|Mf\\xcae2G\\xfe]\\xe6\\xca\\x02\\xb9A\\xee\\x92%\\xb2L\\x96\\xcb*Y/\\x8f\\xc8FyN^\\x90\\x97\\xe4\\x15)\\xa5\\x96\\xd7d\\xbb\\xddŦv\\xb8}\\xaf=Ȏ\\xb7\\x13\\xecI\\xf6d;\\xcd^k\\xef\\xb6\\xf7\\xd85\\xf6~\\xbb\\xce>l\\x9f\\xb2\\xcf\\xd8\\xe7\\xec+\\xf6u\\xfb\\x86ݡnS>\\x15\\xa1\\xfa\\xa9\\x87\\xd4\\x00\\xf5\\x88\\x1a\\xa2\\x1eU\\xd1j\\x84zL\\x8dR\\x8f\\xab\\x18\\x15\\xab\\xe2\\xd4x\\x95\\xa0\\x12\\xd5d5M\\xcdT/\\xaa\\xd9*Y-Pi*C\\xbd\\xa6\\xfe\\xa6\\xdeP+T\\xaeڢv\\xa8RU\\xa1*U\\x95\\xaaV\\xf5\\xeacuR\\x9dV-NW'\\xcbY\\xe5\\xacv\\xd6;ۜ\\xf7\\x9cb\\xa7ܩqj\\x9dz\\xe7\\x88s\\xccip\\x1a\\x9d\\xd3\\xceY\\xe7S\\xe7\\x82s\\xd9\\xf9\\x97sC\\xfbtw}\\x87\\xee\\xad\\xfb\\xea\\a\\xf4@=DG\\xeb\\x91z\\x94\\x1e\\xa3\\x9f\\xd4\\xe3\\xf4o\\xf4x=QO\\xd6\\xd3\\xf4\\vz\\xa6\\xfe\\xa3\\x9e\\xad\\xe7\\xe8d\\x9d\\xa2\\x17\\xe8t\\xbdD/\\xd7o\\xeb|\\xbd^o\\xd4[\\xf4\\xfb\\xbaLW\\xe8J]\\xad\\x0f\\xea\\xc3\\xfac\\xfd\\x89>\\xa6O\\xe8&ݢ\\xcf\\xeb\\x8b\\xfa\\x8a\\x96\\xfa\\xban3\\x96\\xa1\\x86\\x990\\xd3Ä\\x9b\\b\\xd3\\xdf\\xdco\\x86\\x9a\\xe1f\\x84\\x19eƚ8\\xf3[\\x13o\\x12M\\x92y\\xc1\\xfc\\xd9\\xcc7\\xa9&\\xdd,6\\xaf\\x9b7\\xccr\\xb3\\xd2\\xe4\\x99\\xd5f\\x9d\\xd9d\\x8a\\xcc.Sj\\xcaM\\xa5\\xa925\\xe6#So\\x0e\\x99#\\xa6\\xc1\\x9c7\\xad檑\\xc61\\xc6|憸>\\xb7\\x9b\\xfb\\x03\\xb7\\xa7{\\x9f{\\xbf;\\xcc\\x1d\\xe3>\\xe1ƺq\\xees\\xeeL7ٝ惡\\x19n\\x96\\xbb\\xc2\\xdd\\xe3\\x1epO\\xb8\\x1dע;:,\\x8b[\\xbc3\\x0f\\xe1>\\xcfg\\x0f\\xbfϾ<\\x9a\\x8f汞\\xcfI|\\x96\\xe7sa\\xc0g\\xb6\\xe7s%\\xcf\\xe3k\\xf8V^\\xc9\\x0f\\xf1\\xa3\\x9e\\xcff~\\x81s\\xee\\nK\\x80\\xf0\\x89\\x9e\\x9e\\xcf>\\xa2\\x9fx@D\\x89\\x81b\\xa8\\x18\\xee\\xf9\\x1c#ƊX\\x11/&\\x894\\xb1Hd\\x05|\\xae\\x14\\x9b<\\x9f\\xdbE\\xb1\\xa8\\x14u~\\x9f\\x8d⌸\\xe4\\xf9t\\xa5%;\\xcbP\\xd9C\\xfeP\\xf6\\x95Qr\\x90\\x1c.\\xc7\\xcaq\\x9e\\xcf?\\xc9d\\xbfϥ~\\x9f\\xabd\\x9e\\\\/w\\x06|\\xee\\x91\\xfb\\xe4!y\\xf2K\\x9fB:~\\x9f\\xc1vW\\xbfρ\\xf6\\xf8\\x80\\xcfT\\xcfg\\xc5\\xff\\xf5\\x19\\xe5\\xf9|\\xf8\\u007f\\xf8\\x9c\\xe0\\xf9|\\xd6\\xf39]\\xcd\\xf2|\\xceU\\xf3U\\xaaJ\\xf7|f\\xaa\\xa5jy\\xc0g\\xb1*\\x0f\\xf8\\xac\\xf3|\\x1eUM\\xaaY]w\\u009cl\\xe7\\x1d\\xa7\\xc0)tv8\\xbb\\x9cRg\\xb7\\xb3ϩs\\x0e\\x05|6}\\xcdg\\xdb\\xd7|Fz>\\a\\xdf\\xe43\\xce\\xf3\\x99\\xe0\\xf9\\x9c\\xa2\\x93\\xbe\\xf4\\xf9\\x17=\\xcf\\xf3\\x99\\xaa3<\\x9fo꼀\\xcf]\\x01\\x9f\\x1f\\xdc\\xe4\\xf3\\x94n\\xf6\\xfbl\\xd5\\xfcs\\x9f\\xba\\xc3\\x10\\xcf\\xe7\\xed\\x01\\x9f\\xf7\\x9aH3\\xf8&\\x9fϘ\\x89~\\x9f/\\x9a\\x14\\xf3\\x8aYh^\\xf5|f\\xfb}\\xbe\\xe3\\xf9,0\\x1b\\xcd\\x16\\xb3Ӕx>w{>\\xab\\xcd~s\\xc0\\xef\\xf3\\x98\\xf9\\xf4&\\x9f]\\\\\\xf4|\\x86y>\\xfb\\xff\\x17\\x9f\\xf3\\xdcT7\\xdd\\xef\\xb3\\xf2+\\x9f\\xbeN\\xbe`_\\x90\\xcf\\xc2\\x0el\\xc76\\xfc\\f\\xaf\\xa1A\\x856\\n\\xe4x\\x15[\\xf1\\x12^\\xc4s،g\\xf146\\xe2Il\\xc0\\x13x\\x00kq\\x1f\\xee\\xc5\\x1a\\xac\\xc2\\n,\\xc3R,\\xc1b\\u070e\\xdbp+\\xbe\\x8bE\\xb8\\x057c!n\\xc4\\r\\xb8\\x16\\vp\\r\\xae\\xc6|\\\\\\x84阂\\xf3\\xf0%Lƹ8\\x03\\x93p:N\\xc1I\\x98\\x80\\xbf\\xc68|\\n\\xc7a\\f>\\x86#q\\x04F\\xe3\\xa3\\xf8\\x10F\\xe1\\x83\\xf8\\x13\\xfc1ލ\\x11\\xd8\\a\\xbb!C`7X\\x1b\\xbb\\xce\\\\\\xa6\\x98d\\x82]e-\\xec,;\\xc3N\\xb3Fv\\x9c\\x1dc\\a\\xd9>\\xb6\\x97U\\xb3*\\xb6\\x9b\\x95\\xb32\\xf6>{\\x8fmcyl\\x05[\\xc2f\\xb0$\\xf6<\\x9b\\xc6F\\xb3{\\x18c\\xc0BY\\b\\xeb̂@\\x83\\x02\\x0e\\xff\\x84Sp\\x12\\x1a\\xe0\\x1fP\\v\\xa5P\\x02\\x9b\\xa0\\x106\\xc0zX\\v\\x05\\xb0\\x06VC>\\xe4\\xc2Jx\\x1bނ\\x1cX\\x06Y\\xb0\\x142\\xe1u\\xf8+,\\x81\\fH\\x87\\x85\\x90\\x06\\v\\xe0e\\x98\\x0f)0\\a\\xa6\\xc3s\\x90\\b\\t0\\x01\\xe2\\xe1\\x19x\\nb\\xe0\\t\\x18\\x03\\xa3\\xe1g\\xf0#\\xb8\\a\\xee\\x86~\\x10\\x01}\\xa1\\x0f\\xf4\\x86p\\xb8\\vz\\xc1\\x9d\\xd0\\x03\\xc2\\xe0v\\xe8\\x0e\\xdd\\xc0\\a\\f\\bt\\xa5m\\xf4\\x12\\xbdH[h\\x13=E\\x0f\\xd3Z\\xfa!\\xad\\xa6U\\xb4\\x92V\\xd0RZB\\x8b\\xe9.\\xba\\x9d\\xbeK\\x8b\\xe8f\\xba\\x89\\x16\\xd2ut--\\xa0kh>ͣ\\xb9t\\x19͢\\x99t1͠\\xe94\\x85&ӹt\\x0e\\x9dMg\\xd0$:\\x9d>O\\xa7ѩt2M\\xa4\\tt\\x02}\\x9a\\xfe\\x8e\\xc6\\xd2'\\xe9X:\\x82\\xfe\\x82\\x0e\\xa5C\\xe8\\x00\\x1aE#\\xe9}\\xb47\\xbd\\x8b\\xdeI{\\xd2\\xee\\x94QJ\\xbb\\xd2\\x10\\xd2Nn\\x10C\\xae\\x92+\\xa4\\x95\\\\&\\x17I39K\\x1aI\\x039A\\x8e\\x93\\xa3\\xe4\\x13r\\x90ԑZ\\xf2\\x11\\xd9O>$5\\xa4\\x9a|@\\xaaH\\x05\\xd9I\\xb6\\x92\\\"\\xb2\\x99\\x14\\x92\\x8dd\\x1dYE\\x96\\x93\\x1c\\x92M\\x96\\x914\\xf22\\x99E\\xa6\\x92)\\xe4Y\\x92Hb\\xc9(2\\x84\\f&\\x83\\xc8@\\x12I\\xfa\\x93\\xa0P\\x13z9to\\xe8\\xa2/\\xfe\\xfd[\\xdd\\xea[\\xdam\\xc1\\xa1\\x9f\\x1fA\\xd6\\u007fH\\r\\xb2\\x82\\x03\\xb7`뛻e\\xfc;P\\xa7\\x9ao~\\xff7\\x01 \\xacM\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02x\\x9c\\xbc\\xbd\\t\\x9c\\x1cG}(\\xdc\\xd5W\\xf55==\\xd3=\\xd3s\\xed\\xec\\x1c;\\xc7ޣ\\x9d\\x9d\\x99յ\\x1a\\xad\\x0e\\xaf,\\x1fk\\x90l\\xd98\\xf2ږ-a\\x1c#\\x1f\\x801\\x06\\xd6\\xe0\\x80 <\\x90mbL\\xb8\\x96@\\x88\\xc3\\xcf\\x10\\x85p\\x18^\\x80\\xb5\\xe3<\\x9c\\x04\\x1c\\x93\\x80\\xe1\\x05BD\\x12\\U0009cf3c\\x17\\u007f\\x0f^b\\b\\x9e\\xfd\\xfeU\\xd5=\\xd33\\xbb\\x92\\xed\\x1f\\xdf\\xef\\x93v\\xaa\\xab\\xaa\\xab\\xeb>\\xfewqh\\xfd\\x17\\xebk\\xbc\\x8c\\xd68\\x97\\xe3\\x10\\x8e\\xd5g\\xe21g\\x1c\\x15\\x1a\\xb3\\xcd\\xed\\xa8Q)7\\xeb\\xf9\\x998\\xfa\\xf7g\\xe6\\\"\\xae\\xf2\\x9c\\xe2F枱\\\".\\xfac7\\x82\\xde\\xf1̚\\x1bQ\\x94\\x88\\xbb\\xf6\\x8c56\\xc6\\xc1?\\xc4q\\x90\\x17\\ay\\xe5 Ь\\xcfdQ,\\xe2ȅ\\xf2,\\xf8݆\\x14\\xeb\\xfa#\\xb3\\xcd\\x16zF\\x92TS\\x9d[\\x9a\\x9b\\xabZ\\xd6:\\xe7yB*\\xfa\\x1a\\x0f\\xf1\\x9d\\xd5t\\xa9\\xd4,\\x89_>\\xf8/̃$-*p<\\x94\\xf1uZF\\x92\\xcbs\\\\)\\ue111\\\\\\x98F\\xe5\\x9dH.\\x92\\xdcI\\xfd1\\x14Q\\x9eiΖ\\v\\xb2\\x83~\\x8eq\\x06;\\xf8\\x18\\x9e[\\xbc\\xfc\\xae\\xbb\\x1e\\xb9k\\xc2\\xd2\\xf0/n:x\\xf0\\xa6\\x83\\x12Dg0\\xbcѬ\\txq\\xd7\\xe5\\x8bs\\x18\\x1f$\\xaf\\xa0\\xfa\\xeb/\\xac\\x9f\\xe5\\x05\\xf4I.\\n\\x81,\\xf2Ji\\xb6\\x9a\\xf1aԚG\\xe8\\xa9iy\\xfc1-\\xa5=6.O\\x8f\\xbe\\xa6\\xec8\\xe5נ{\\xaaw\\x8f?\\xa9iO\\x8e\\xdf]-\\xaa\\x15ǩ\\xa8\\xd0'\\xe1\\xf5\\xaf\\xf0[\\xd0c\\\\\\x82\\xf4\\xc9\\xcc0O\\xf2r\\xe3\\xf24\\xc2ry\\x17\\x82\\x1eޅ\\x90\\xa0V\\xd5\\xdd\\xf7;\\x86ySR\\xc8E\\xde\\xfe\\xf6HNH\\xded\\x1a\\xce\\xfd\\xe8\\xb3\\xd1\\xe8\\xbdq\\xbel\\x1e\\xbf\\xdfvս{\\xb5\\x84}\\xffq\\xb3\\xcc\\xc7I\\u007f\\x93\\xbeXC\\xf0\\x9f\\xc3\\\\\\x9a\\xe3FX\\xf3\\x1d<\\x13\\x1fB\\x8e\\\\\\xcc\\x17\\xa0S\\xc80\\xc6gZ(F[\\\\n]\\x9aq:\\xabN\\xe6\\xd2V\\xa4xQq\\x8d6\\xf65\\x97\\xb6ƜL\\xc6\\x19k]jY$_\\x95e\\x8eV\\xb8in;w\\x01\\xf7J\\xee\\x1a\\xee5\\xdc\\x1b\\xb8\\xb7s\\xef\\x836@\\aà\\x8e\\xa3\\xc6,L\\x93!\\x94\\xf7\\x9e\\xd0\\xf9\\x8d\\b)-\\xe6lG3;Q\\xde{\\xfa\\xe9Xhs\\xbft\\x8e4\\xeeK\\xf8\\x16=\\xab\\x99\\xa6\\xa6\\x18U\\xa3\\xb3\\x06\\x8e\\xe2\\x87P\\x9bD\\xad\\x803\\xf0\\x87,\\xe3I\\xa3\\xfbwr\\x93\\x04+\\xa6\\xd69\\xa3\\x99\\x8ea8\\xe4gjh\\xa9\\x17\\xea|\\x93&\\xba9\\xe0>\\xb1l\\x18\\xcb\\xc6\\xe7\\xa9\\xfb\\x9e\\ro9N\\x84q:\\v\\xfd\\xb9ʅ\\xb9a\\xe8\\xd3]Ћu6H\\xd0\\f:H\\xc5\\xfe`] =ًkH\\xfeXzc\\x8b\\xaak\\xa4\\xa1\\xc4\\xd9\\xef{\\xb4\\x84\\xf7\\x04\\aU\\xbb\\xb1h\\xd5\\xd4V\\x89\\xa7\\xcf\\xe9<\\xdf\\r%z\\xb1t\\xec\\xbbu\\xcdq5n\\x81{\\x05w\\x1dw\\x1b\\xf76\\xee~\\x8e\\xb3c\\xbd*\\x92\\xaa\\xb8\\x8e\\x89\\x82\\xe1Xk\\xa0\\xdaE\\xc7\\xe4\\xfb\\x12\\xe0\\x81v\\xe2\\x81\\x0fJ\\x03\\xed\\xc4\\x03\\xe1\\xd2@\\xfa\\xdf2\\xb5\\x1bH\\xdd\\xc1\\xf9\\\"\\xd6\\xe5\\x1b\\x89\\x1f\\x9c\\\\/:'bE\\xf2\\xe3\\x9f\\xf2\\\"i\\xa3\\xfd\\x14\\xe8\\xed\\xdd؞\\xd3\\xf9\\x16\\xfd\\x80:\\xe8\\xd4\\x12\\xf1\\x11\\xe7\\x17P\\b\\xf3\\xb1>\\xa3>I\\x95E\\xcf{\\xca{\\x82\\xf3h\\xf7} r\\xb5\\xe7=\\xd1}O\\x96\\x9b\\xbca\\x8e\\\\\\n\\xab\\x8ek\\r\\xf4\\xf8`\\u007f\\xd9\\x03\\xfdi{ϼ?O\\x02~\\xd8\\x0f\\x1a\\xee\\xc0\\xfb@\\xff\\x05\\xbco\\xeev\\xc3\\x17\\xe8\\fJ\\xfb=\\xe2\\xf9~\\xa2\\x99\\x89ދg\\xbb\\xbd\\xf3\\xe9n\\x93\\xd0ý\\x86v\\xda=?z\\xb8\\x9b\\xe4\\xd1^,;;8\\x04\\xed\\u007f+\\xe7@\\xab+\\xe5\\xd9]d\\xb3D-\\xe2\\xc0\\x96\\x06\\xbb\\xefg\\u007f\\x0f\\xe3\\x12\\x8e)'\\x9fSb\\xe0\\xc1\\x9d\\xff\\x8e\\xe3\\xea\\xa7p\\x1c\\x8f($N\\x19\\x01o\\xe7o\\x14\\x92\\xcf\\xfa:\\x17Fע[\\xb9\\\"\\xe4\\xe5\\xfaG\\x04\\xa6;\\xf8,\\xd9s\\ar\\xff\\xe91U\\x8dk)\\xf5\\xd815\\xa5\\xc5U\\xf2\\xec\\v\\xaf\\x9d#\\xde\\x0fC\\x99B\\xf7\\\\Js\\rn'T\\x82\\x1c\\xa3\\xf4(\\xdd\\t{#t:\\x1c\\xa7\\xf0\\x9b\\x19\\x82\\xa5o\\xe3͎,R\\x952=\\xb3\\xe23\\xa8f\\xcc\\x199\\xf8y\\x8f?\\xdbp\\x84\\x1d\\xc3\\x0f/\\x9d\\\\Z:\\x89\\xb8@2c\\xae\\xf3\\xbd\\xc1\\x13\\xed\\x18v\\x9e\\\"\\t\\x97\\x02uԹ\\x127\\xe9Ց\\xd5\\xed\\xa5\\xd5\\xe9a\\x03\\xfe\\xce_\\x17\\xa8\\xc7\\xf9\\xea\\xc0sx\\xfd\\x1b\\xe8y\\xa8\\xc3(\\xb7\\x95\\x9e\\xac0Ë\\x85)\\xe8\\x9cyD\\x0f\\u05f8\\x8cM!\\xe6\\xc4\\xeb3\\xcd\\xc6l\\xb92\\x85v\\xa1y\\x84\\xfb\\x97A\\f\\x9d\\xae\\xcd\\xddw|\\xcfm{RS95&Y\\xa2\\x88\\xaddD\\xbbn\\xff\\xbe\\xebGrX\\x14-)v\\x8d\\xa9\\xe5\\xc8\\xfc\\x02\\a\\xbd\\xbb\\xf0\\x9a\\x9d\\xc7\\xef[\\xb8m\\xef\\xe8E\\xf3\\xae,\\xa9\\x19%*\\x19C\\x85Jl\\xdf\\xf5\\xd7]P\\xb9 !E\\x95\\x8c*}\\x9f$\\u007f\\x8e\\xadH\\x89K\\x00,s\\x02\\xea\\xd9[\\x8f\\\\kp\\xf7\\x1a\\b\\x97\\xfc\\xb3\\x91\\x9d\\x85\\xf5\\u058b\\x84\\xbf\\x8fU\\x15\\u05c8\\xb3\\xd4\\xf5\\xa1Z\\xd7{f\\x13ߪ\\x8a\\xd7\\xc8\\x13\\x9ce\\x15/\\x13/8k*\\ue725_\\xe7h|g\\x85\\x06VX G\\x03\\xf0\\x9e\\x1e\\xeb\\xd6\\xfac\\xe89\\xf4un\\a\\xb7\\x97\\xc0OX\\xc6\\x00\\x8b\\xc8\\x18\\x86[\\xae@3\\xca\\x15\\xf2\\xac\\x00hR\\x9e\\x85u\\xd8\\x02\\x88g\\x185[\\x8d\\xd9VӅ\\xd6\\xc6]\\xf2t\\xe3a\\x04_\\xfa \\xd6\\xffP\\x85HYV\\xc6\\xd3\\x05\\xb5\\xd5\\xd4\\n\\xe91U.G\\x04uL\\x10\\xc6\\xe8\\x1bu\\x8c\\xbci\\xa9\\xbd7\\xb2\\xfc\\xa3\\x85\\xe9\\xe9\\x85\\xe9{E\\xad1\\x8aŤkl\\xd1x\\xc3\\xe0\\xb5-\\x86\\x9b\\x14\\xf1hC\\x95\\x92\\x91\\x91H\\x92\\xbe\\x96\\x12\\x1b^kb\\xb2X\\x9c\\x9c&y@\\x9b\\xd6\\xd7a\\xef\\xdc\\r{g\\x96\\xb4\\x89.\\xed\\u07be9E\\x8e(\\xb97N%\\x98\\xd9a2\\xcba\\xb6\\x17|O\\xc3\\xdb\\x11\\x1a\\xfe\\xfe\\x8a\\x12\\xa2\\\">\\xaa\\xe2\\x93X\\x05O\\x9b\\xf4 x\\xd1\\x0fE!)J\\x92\\xf0?!\\xf2\\u007f\\n\\xa2,&\\x05\\xf1\\x05\\xb3\\x10\\xba\\nKs\\x12F\\x13<\\xff\\xd0'\\xb1\\xaa\\xc9\\xcb\\xf0\\x1eFF\\xd6T\\xfc\\xc9-\\x90L\\x18\\x96\\x84\\xc7y\\xfeqA\\x1a&_=\\xad\\xeb\\x17\\x1e\\x900\\x96~\\x93\\x81Z\\xca\\xfa\\x93\\xb0&\\x1e\\x058\\x0e\\xa0\\xf0(\\xc0p\\x04P\\x96\\xe2P\\xa7\\xe9.\\xfc\\xe4~\\xf0\\xa9\\xfb\\xee{\\xea>\\xb4E\\x03\\xa0Um\\x1b5CB\\x8f\\xdeG⾅Պ\\x86\\xa7\\xde\\r\\x8bS\\x16\\xc9^\\xb4\\xfe\\x9f\\x90\\xe9>\\x80\\xdf\\n\\xf4\\x04\\x87Q\\x86\\xb6Wfː\\x91\\x89b\\x18\\x16xˆvb'\\x0e\\x8dm6*\\x00.CG\\xd0\\x00\\xf4\\x05\\xa4rg\\xe6\\x01\\xf8\\xa7\\x1f\\xc81\\xecdQ\\x9d߉\\xa3\\x91't\\x15\\xef\\x15\\xb1\\xa4?\\x11\\x89\\xe2\\xf7(\\xf6u\\x82$d\\xe1w\\x9d\\xad|F\\x84\\xfd\\xb5*c\\x04\\xcf*nA\\xf3eU\\x9e\\x82\\x1f\\xf8&\\xad\\xa1\\xebd\\x88\\x10\\xaf\\x1b\\xb2P\\xdbv\\xa1\\x03Eמ\\x9d\\x90\\x14E\\x9a\\xc0g$E\\xaaɊ\\\"\\xd7\\xc0Ca%\\x86Cĸq\\xae\\x0e\\xf0'gSX\\t\\x1c\\x1f\\x06';i\\x93\\xee\\x1b]\\x10\\u05cd\\xcf\\xec\\\"Ido\\xafjz\\xcf\\xef\\xc3\\xe9r$\\xa4\\xa9\\x0fɖ\\xfc\\x90\\xaa\\x85\\x8e\\x98h\\x06\\x0e\\xb0\\x1aY\\xe4\\x0fl\\t\\x8f\\x85\\xb7<\\xa0\\x99w\\x1b\\x96aX\\x17Q\\x17\\xad\\x99\\xda\\xc3IH\\x0fɓpXuN\\x9d$i\\xc1\\xd9\\x12\\x0eo1o\\\"i\\xbc?\\x02\\u007fC?\\xb7\\xa1\\x9f\\xe30\\xf3\\xa0\\x97\\x03`7lZ<9e]\\t\\xd7\\xddz\\xab^\\xe1\\xe7\\x14\\x00\\xbdsNF\\xb9I\\fY\\x18\\x19\\xba+w\\xbes\\xf8M\\xb9\\x93\\xb97\\x1d\\xfe\\xa6\\x11\\xbe\\x87\\x80\\xe0\\xf7\\x84\\x8d\\x8fI\\x9a\\x1cR\\xc6W\\xda\\xed\\x15\\x86S\\xe1\\xf5'y\\x04\\xfd\\xb1\\x83\\xc2\\xde}\\xfbM\\xad\\xeeN\\xc1\\xe1\\\"\\xd3Ͳդ\\xdb5\\xaccS`\\x1b*\\xc5\\xc0\\xdc\\xca\\xec\\x16𡟑\\xe9\\xf6$q\\xd0\\r\\xf1Õ\\x03Ǐ\\x1f\\xc8\\xecuDQ\\x12\\v\\x82h\\x8eNN9{n_\\xb8\\xff\\xc6\\xe1\\x03\\xbb\\x1d\\x18a\\xb4\\xe6%\\x9e\\x96\\xb0\\x94\\x9b:~\\xff\\xf1TT\\x80\\x94\\x92,\\x84\\x12\\x11\\rv\\xd2\\x1b\\xefwG\\xddW \\t{x\\b\\x1d\\xb31\\xee\\x10Ԓ\\x14HO\\xba@UYE1\\xdb\\xfbf\\x1b\\xf3\\x88\\xd6M զ\\x1b:Ԛ\\xa0\\x10\\x15\\xd7\\xd9B\\xbf\\xea\\x83\\xfa*Y\\x84\\xbe\\fu1\\xbcJ\\xdd\\b\\r\\xd8v,\\x04ہ\\x84#ﺊ\\xd4\\xf9\\xab[\\x8f\\x994\\x8c\\xacw]U\\xbbeX\\f&\\x8f]\\x8e\\xfe\\bjj\\x04Zt\\xe9\\x9c\\n\\xadDW\\xdc\\x0e\\xad\\xe8\\xfcA7T\\x1fy\\xc5@B\\x18\\x03\\x1c\\x80\\xcd\\\\8\\r*0/wq\\a\\xe1\\x90\\xc8{\\x1by\\x9em\\xec\\x9c7\\xf7\\xe4\\x81g+\\x80\\xc7\\xc4\\xce\\xe1GOw\\x96\\xc9\\x14@\\x80\\x9de:\\x9f)\\xb8n\\xff\\xdf\\xf3A\\xac\\x85\\xfd\\xe5 5\\xfd\\x86`t\\xe8\\x04Mw \\xe0~\\x8c\\x9eƇ\\x02n\\x10g$-\\xe1J\\x83\\xb8b\\x83\\x1c\\xfd\\x80\\xcd5\\xc8\\x02\\x82m\\xf0\\xb4\\x9f\\u007f\\xc6I\\\\\\xf9\\x96+\\x97\\xc6v\\x8c\\x9d\\xcd8k$\\f\\xce\\xe2\\xae+\\xafܵ\\xb8\\x98\\x1d\\x1b\\xcb.\\x92\\xb9\\xaa\\xd0y\\xf0\\x18\\xf4\\x10\\xccU8\\xcd!oL\\xe0\\x89b\\x01\\xc7\\xfcs\\x0f\\x86\\xbf\\xe9\\xc2\\xd8;0\\xe6P\\x16:Z\\xdb\\x17Κ\\xdbw\\x8d\\x9cH\\xcdϚ\\x9a\\x05\\xb0e!\\x01p\\x80\\x98\\xbf\\xe0\\x04\\xfa\\xb5\\x1c\\x8eF\\u007f\\x1aQG\\x8b\\xeeQ\\nW\\xbe-2\\x94\\xc8#\\x94\\x8d\\xf1\\xbc\\xa6\\x19EJs`c\\xb3\\x85\\ue7245aԇ\\x96\\xb8^[\\xfa \\xe7i4\\x85\\xe0\\xfd\\x83\\xdfyPSL~\\xf7$\\x85g\\x13\\xd3\\xf9[?zk~\\x9a\\x05&w\\xf3\\xa6\\x02\\xe8Ӄ7Ք\\x88\\x88'w\\x99\\x1a`\\x85\\x05\\xfe\\xd2[o\\xbd\\x94/\\xd0\\xc0\\xaeI,F\\x94\\xdaM\\x8c\\xf6\\xf1Kġ{\\xb9\\b\\xecXM:\\x1d\\xa6Ɍf\\x95\\xf8\\x9e\\x9e\\xcd\\xeaW2\\x84\\x02\\xbdQ7\\xac\\xce\\x19\\xcbЯ4\\xb5\\xd3\\x00\\xfd\\x921\\xf9\\x05\\xba\\x87~[\\xdc\\xeck\\xe8.\\a\\xd6\\xce\\x14\\x9c\\xc3\\xcdY\\x80\\x88\\xe6\\xfb\\xf2\\xfbN,\\x99\\x8c)\\x8e*\\xa9\\xb1\\x188\\x0e\\xba\\xb3?\\u007f\\xdb\\x18\\xad\\x8d\\x1a\\x92\\x1c\\xb1%cʐ\\xec\\b\\xe0\\x1at\\x9f}\\n\\xf6\\xae\\xcfA\\x99\\x15n\\x9e[ڬ\\xdcR\\xaf\\xdcy\\x9e\\x01c\\xf3\\x00\\x10B\\x14\\x00\\b$\\x0e\\x0eW\\x1a\\xe7\\xc6\\xf1y\\xab\\x88\\x16v\\xecݻCqtQ\\xcdO\\xa7\\xb6nQEݩN\\x8e\\xaa6\\x9c\\x04\\xaa=\\x14\\x0e\\x0f٪\\xa89\\xca赃m\\x19\\xe8\\xab\\xf7T\\xde\\xf2\\u07b7Td\\xc9r\\xa4\\xf8\\xce\\v+\\xdbO\\xe4%ǒ\\x1e_~eR\\x96\\x14Ֆ\\x8d\\x91\\x89\\xa9\\x89\\x11C\\xb6#\\x92\\x9cln\\xd2p\\x8a\\xdf\\xc2\\xfc_\\x05h\\x18\\x03\\x1c\\x1c\\xe6lX\\tE\\xe8\\x83q\\x8eۉ\\xea\\xb1J\\xac\\xdeh\\xd5c\\xc5V\\xa3\\x18C\\r\\x16.A\\x18\\x82E\\b\\x92\\xff\\xc5\\n\\xfc\\xd6V\\xda+k\\xe0t\\x88\\x83r\\xb9\\xe5\\\\{\\xb9\\x9d\\xcb\\xc1\\xdfY\\x12\\xd3n\\xaf\\xc1\\x0f^R\\xffJny-\\xb7\\x92\\xcb\\xe58\\xabK[\\t\\x96\\x9f\\x86\\xb5\\xc8\\xea0\\r{K\\vN\\xbd]\\x1c\\xb7%R\\xff\\x95\\xfeGU5\\xaa\\x8e\\xa8\\xe9hZ%\\xffR\\xd1t\\x94\\xfcS\\xa3i\\x12\\x11E+\\x9d\\x95_\\xe5\\x17\\xdc\\xf7#\\\\\\x92\\xf4\\x1e]n\\x04e\\xf0Ojo\\xff\\xcb8\\xdft\\xcc\\xef\\x98\\xe67\\xcd*<\\xee\\xadf2\\xd5\\xcc\\x13\\xdft2\\x10\\xa8B$<\\x9eΐ\\xc8.\\x1e\\xb5\\xe2\\xe59\\xdaO\\xe1c\\xcb\\xd9\\a;%\\xc0X*0ۦ\\x11\\xc3S\\xd0\\xff\\xf1K\\xa0\\xe5=N\\x8b\\xe1gH\\xd4gS\\xa9?\\xddB\\xaa\\xf0#\\xbf@\\x87\\x14\\u007f?-\\xf5w \\xe2\\xb3\\xe9\\v\\xd3O\\x90\\xeap\\xde\\xda\\xf0\\xf7\\xc8\\\"\\x8c\\xc8\\x1c\\xd4\\x02\\xf61\\xc7\\xed\\xe1\\xd1\\xfe\\xa6/\\xc56\\xa7M\\xd9\\xe5V\\x9e\\x9e\\xcbhM\\x15\\x04\\x15@\\x8eG\\xabssU\\xb4\\b\\x10Ś\\xfc\\x1d\\xb9\\xfb\\xf7\\x82 t\\xfe!dۡ#\\x06\\xd6guE\\x87\\xfd\\x0fҵ\\xabs\\xa6v\\x8b#ˎ\\xbc\\x9f\\xba\\xeb\\\\.g\\xa7lFcE\\xa4\\u007f\\x00I\\x89uϞ\\n\\x1c\\x05\\x00[\\xac\\xb5\\xd1\\xd3tî\\x9d\\xf4\\xdbAǇ̭\\x1aiGw\\a\\xecBO\\xdeb\\xaf7hV\\x04\\x80\\x10\\x1a\\xf9X\\xa9A\\xe3\\x8b1ч\\xf1\\xd7\\xd2%@A\\xecPg-d\\x03&RJ\\xdb!d\\x87\\xd4)\\xb5\\xbd\\x0e\\x95\\x82\\x985TvL\\xd31\\x11WJ\\x03\\xa8\\xbcL\\x1a\\x05\\xd8\\xc7\\xc9ti5dC\\xbaP\\xe7\\xbf,/\\x9f\\x85\\x98\\xda\\xea\\xa2IRұf{w\\n \\xd51\\xa8]\\xa4\\u05fd\\xdb\\x11\\xec/d\\xc7\\x1e\\xee\\x83\\xeb\\x18\\ty\\x86砑\\xf4\\xec;b\\x88\\xa1\\xa8\\xf6\\x96pB6\\x8e8\\x99S\\xfb\\x8f\\xed\\xdf\\u007f\\xac<\\xbb8;\\xbb\\x88j\\x9d\\xb3\\xf4D\\x85\\x8eɫ\\xa6\\x121\\xf3\\x99g\\xc8\\xeb\\xfd\\x1f&\\xafg\\xe9\\xfce{\\xc1$\\xf4\\x8e\\u007f\\x16\\xf6N\\x8eJ\\x11\\xd7\\a\\xe3\\xecyD)_v\\xa5^A\\x14-\\xa3\\xa8\\x96\\x93x(\\xe1tC\\xeeۅ\\xa8ZS\\xa3\\xc2۟=:\\x9dS1E\\xc0\\xc0i\\xb7{~t\\x93\\x1a\\n\\xa9\\x9d\\aO\\xdf\\x03\\xfd\\x10\\x85z\\xdc\\v\\xf5\\x18bx9\\xec\\xbb8x\\x84E\\x8a\\x01\\n\\x90\\f;\\x12\\x19\\x94b\\x84\\xb80\\x92\\xe8\\xe2tF\\x94^\\xd1\\xfc6͙\\xe6\\xff\\x8d\\xad\\x17\\xc9\\xc2__AO\\xed\\\\.q\\xc5_\\xc5v\\x8d\\xcc\\xee\\xa7($\\xca\\xd1ǡ\\xad#\\xd7.\\xc3\\xf4\\xef\\x9c\\xcdO\\xe5O\\xb2\\xf3\\xeb,jC\\x1d\\x8a\\x94.\\x00M\\x1666>P\\x0f\\x04mٵ4\\xed\\xe1\\xa2A?:\\ru\\xe8\\xac\\x05\\x9a\\xea5ۧY\\x9f\\xe5\\xf7\\xd0>?0\\x00\\xd1\\x16#\\x1bJ\\x8c\\x14\\x03\\x04\\xb0:\\xea\\xc3\\x01\\xa02\\fi#\\xd8M\\x8c\\xe1\\xcdP\\xcc\\\\\\x95\\xe2\\xc9ĩ\\xcey\\x95\\xe0s\\xba\\xa2,\\x89\\xa6\\xb8\\xa4(z\\xad\\x16\\f\\xa0U\\x0f\\x8d\\xceu\\x9e\\x0eT\\xb9\\x96\\xf3P\\xeb\\xce\\x19\\a/I\\xd2\\x12v\\xcev=^;\\xfe֛;\\x1b\\xda\\x11\\xdbЎF\\u007f;\\x18M\\x8a&%\\a.\\xa5G\\x11\\x1c\\x87\\xe05g\\xbc*ܙ\\xe8Χĝ^\\xcdЫ\\x06\\xab\\xe2\\x90\\xfaS\\xea\\x81u\\xb2W\\xfd\\x93\\x96GT\\xe8\\xfc\\xe7歆\\x80G\\x97\\xa6m\\xe8ҥ[\\x83\\xf4Á\\xb0\\xdb\\x0f/\\xd6\\xd1@8Dp:$\\x13\\xb7\\xf3\\x8b\\x9e\\xff#\\xa4:\\x1d\\xda\\xcdh\\xb5\\xe7_V\\xa42y\\r\\x0e\\xc0\\x8e]\\u007f`\\x95\\xacs=\\xfff\\xf5\\x1d,\\u007f0l\\x0fЏ\\x83+\\x89D\\xb0\\xde\\xdeX\\xb3\\xab\\t\\x02\\xf0l\\x9f\\x83r\\x9bW\\v\\xb5\\xb1T%\\x89\\xc0Y\\xe7z\\xfe\\x97Կ\\xb1\\x17\\xa9\\xff`\\xd8\\xeaU4P\\xf1O\\f\\xf67\\xf3\\x9f\\xedU2\\xb8\\x1aWz=\\xbd\\x1e\\xe8\\xf5M\\xeb;\\x80\\x1f\\xd4_n\\xf8\\\\\\xfd{.\\u007f\\xa0\\x8fW^\\xccKi\\xe6\\xcf\\xc1\\xf9qz\\x80f>H\\x13\\x1f\\b\\xbb\\x03a\\xe9E\\xfa|\\xf0=]m\\xeds9\\x88\\xd2\\xe1:tOD\\xed\\xcd\\xfdK\\xbd\\x0f\\xc8\\xde\\xe8\\xfbW{\\xde3\\x1bwO\\xe2\\xac\\x06ZOh\\x94\\xfex\\xe9\\x00A\\x8e\\x03\\xd4x\\xb0K;\\xa7U\\x1e\\xac\\xf9\\xc0\\tW\\x1f\\xec\\xa9\\xd6@\\xfa\\x1b\\x96%i\\x19;\\x0e\\xda;8\\xd9\\xfe\\xa9\\xdf\\xf9\\x87\\xde\\xfb\\xc3˰\\xc7,\\xc3\\x1e\\xb3\\xa6+\\x93\\x81q\\xebM\\xb4\\xa0\\xf7%\\xb4G\\xa6u\\xa1t\\xfa_\\xb5=ih\\v\\x866\\xa1\\xc6\\xcbh\\x0fk\\x8aB\\x9a\\xf5[/\\xaf==\\xfaP\\x98\\xc0\\xc7\\x1e\\xe7\\xb4\\v?J>\\xbe\\xd5@K\\x14hc\\xd0ʏ\\xacB1|\\vZ\\xe9F\\x00\\xf8R\\xd6#\\xce:\\xe7D\\xf4\\x83\\x1fe0\\xb2\\x87C\\x10zD\\x81\\xe3F\\xd1\\xe6t\\b\\x9coT\\xcaaD~\\xfd\\xe4\\x85OL\\xe5\\xe1\\xd8?\\x81V\\x8e(ʩ9EYdŰ\\\"\\xd1b\\x9e\\xbc\\xfe\\x1f'\\xfd\\x97>o\\xff\\xeb\\x14\\xeet9Ν\\x92\\x1b\\x8cE`\\x12 \\xfc\\x91\\xc4\\xceTA\\x0f\\t'WO\\n!\\xbd\\x90ڙ\\xc0\\xa9f\\xf1\\xc8H#^HF\\x96N\\x9e\\\\\\x8a$\\v\\xf1\\xc6ȑ\\xa2\\xd6O\\xeb\\fq\\\\\\x93r\\xac\\xe5B\\x8bB4\\n%g\\x1e\\xbf\\xe8\\xe6\\x9b/\\xba\\x92\\x12;\\xdb7?t\\xb3O\\xb3XF\\x8f\\x01N\\x90\\a<5+PI\\x82\\xc6\\xec<\\xdfj\\xce\\b\\xf4S\\x12\\x04\\x101\\xe6Ŀe5'\\xf2\\xc7\\xef?\\x9e\\x9flXx\\xd2%Ñ\\x9fVMu\\x01}z\\xf6\\x9a\\xe6\\x81\\xf2\\x85'N\\\\X^\\x9c;:\\x1b\\xef\\xb4!z:ORL-x\\xb8\\xc7\\x1a\\x8c\\xd7\\x1ag\\x00DڂF\\xbb\\xf10\\x0f8\\xed.\\xbe٢'6\\x1c\\xd5\\x04\\xe4p\\x85\\xee\\x12\\vb\\x03\\x90`\\x1cE\\xf2聫0\\xfe\\xc1ղ.#\\xed\\a\\xf8\\xf7u}\\x04c\\x88\\x19\\xd1sƽbU\\n\\xfb\\xf4\\x14\\x94Ud\\xb9*H\\xff\\x04`ׯ\\x93O4\\x04\\xdf\\\\\\xfd\\x03l\\x199\\xa3H\\xbf)\\x1aF\\xe7s\\x92P\\x95e\\xe5\\xa3\\xf4\\x13\\x18ðT\\x15;klL\\xda\\xeb\\u007f\\x03c\\xf2).\\x06c\\x12aܥ\\x96?\\xab(o\\x87\\x90\\x89\\x9f\\b\\x97J\\xe1'\\xc0㠇\\r\\xe3\\xcc\\x17BQ\\xa7\\xb3\\xe2DC\\x9f\\xff\\x03\\x83\\x8d\\xeb/`.\\xbd\\x83P\\x83\\x1a\\xbd<\\xfa2\\xf2s3\\xaa\\xc6#\\xe1\\xd2#$\\xbfG\\xe0\\x8f\\xb0\\xcb\\xd1\\t\\xc3x\\xe8#\\x90\\xe5\\xbd\\xc4\\xe9\\xacA\\xbe\\x1f~;q>`0\\xba\\x06\\xcd['\\xb3\\xa6\\xc56&\\x92i%\\xe87\\fc\\x8dd\\xd9\\xf6\\x9e\\xbf\\xa7e\\xb5U?\\xb3\\xd5`\\xc0\\x9b\\x87\\x8f\\xa2\\xc7Г\\x90'\\xc1\\r\\xb1$\\xd3\\xfew\\xd1ÉDg\\xd5\\xddR\\x8f\\xfd\\xb3\\xd94\\x9f6\\xd3\\x19\\xb4\\x9aM\\x9a>\\xcc\\xf9c\\xd8W>N\\xcf\\t\\xce\\xed\\x8a*\\xb0\\xd5R\\xeaqdh\\xd4i\\xbaP\\x88\\x83\\xbc'q\\x86\\x83Ķ\\x9a?\\x18\\x19\\x87\\xf3agvnnX\\xe5A\\n\\x1aZ\\xed\\xfa\\xe0\\xdb\\xc1\\xfea\\x98.k\\r\\x0e\\xf8\\xd1\\xcf\\x06:\\xe8\\xbf{}\\x82ځ\\x0e\\xa2\\x81\\x81\\xf1\\x04|\\x8a\\x92R1\\xd9C1ˎ\\xf28\\x86\\x19/\\x92\\xe76\\x8e(\\xba\\xa3\\xf3PpHi\\xbe\\xdd!\\xed\\x9fs\\x81\\xfc\\xfd\\xac\\t%s%8\\xe9\\xd0\\xfb;G\\xbcY\\x87\\xba\\xb3\\x8e\\xf0l\\xfe\\x03\\xfa\\xec\\xcfh\\x9f\\xa5\\xa1\\xed\\x01j>YJ\\xa5\\x1el_Dk\\x80u\\xae\\x10t\\x12\\x81\\xdb99\\x9c\\x8c\\x9d1\\xc7\\xcc3\\xb1\\xe4p\\xbbM\\xa2\\x89S\\xdf\\xea\\xaeY֚\\xbb\\x95\\x8eGz\\xfd'\\xa8\\x84>Dx\\xc9,\\x1bO\\xe8\\xc6\\xc3\\x1ef\\x8b\\x8fc\\a\\xc71\\xc2\\x1f\\xfa\\x108q\\b<\\xae|\\xfbqL}\\x10E\\xdeaH2\\x98W\\x89\\xf2H\\tG\\x92\\x8a\\xed0\\xee1\\x1a\\xda$\\xb3?\\xd8,\\xb3\\xe0\\xdeW\\f\\xf0y\\b\\x15\\xb8+EC\\xa9\\b\\x1eU\\xa1>\\xe3\\xf1|N\\x19W\\x1bs\\xf0\\xf3\\x1e\\x1e\\xdf\\xe7\\xed\\x81(\\xe3\\xea\\xfe\\xfc\\xed^\\xfen\\x9e\\x10%\\xa0w!k\\x96\\xdf\\x1dH\\x81\\x8d\\xe5y?\\x9f\\xf71\\x06\\xf29\\xebWi\\x11\\xb6\\x10;G\\xe4a\\x18mh\\xf6.\\xe8N\\xe8\\x01\\xaf~\\xb7-,(JUQw\\xefV\\xe1\\xa1\\xf4\\x85\\xbcB\\x1e\\xde\\xec\\x9d\\x17\\xda\\xc8\\x03\\xe3<<_\\xe8/:\\x8e\\x9e\\xa7\\x99\\xdd\\xfb\\xa8a\\xc4\\r\\xfd\\xc1\\xfd:<\\x8c\\x13:\\xaa\\xd0zt~\\xe3Q]wu\\x12O\\x1e'\\f\\xb2\\xa7\\xf7\\xf2%\\xfc\\xa4nθ@\\xdbњ\\xe7\\xa9ț\\x8cM\\xbeK\\xc0\\xa1\\xc4N\\x9fx\\xef\\x15\\xb9|Ḭ\\x16U\\xac\\x87\\x9cPd(\\x1c\\x89F\\x1c\\xe8\\xb3\\xd4pj1WN\\xa7\\xcbi\\xaf\\n\\xaf\\x00h-\\x85\\x01\\xb5\\xd7lS\\x0fi\\x9a\\x91\\xb5E\\xd8%ըUN\\x8d\\xedx>M\\xd2r\\\\\\u007f\\xbd\\u0084^\\xee\\xf7\\xf6\\x88W\\xac\\x1b\\x98\\x15dFx3ß\\x11j!\\x99,$M\\xd8;aW \\xff\\x8e\\xf8\\xa3YL\\x92W?I\\x18\\xc7\\f#\\x01o\\x13\\x06\\xd7=\\xdb\\b-\\xa8\\xca-qG\\bd\\x0f\\xf9\\x8d#\\x93Ǟ\\x10\\xc0\\x14\\xaaxr\\n\\xf3\\xa8\\xe5\\x89*d\\x91\\x8b!\\xe4\\xc5C\\n/\\xad\\x89p\\x9d}\\x0f)h\\xdaجׯd\\xb7\\xca\\xe2\\xfa%S\\xb0\\x97\\xec\\xbfA\\xcfBH\\xbfa?\\v|qb\\x976j\\x18\\xa3ڮ\\t\\x88\\xe8\\v\\xd8)\\xdbN\\x9d\\x05\\xcf\\xd4%u\\xdc\\xf7\\x91\\x17\\xf8\\xc2&\\x1f\\xb1\\xc0\\x1bɧ\\xf6@\\x9f\\x86\\x82+@\\x9cB\\x185\\xc5,j!\\xd9\\xeb\\xbfO/\\x9f\\x9aE\\xa8ܹ\\x0f\\x9e\\x9d\\xf5\\xb2\\xd7w\\xb1e\\xbd\\xdcY\\x9f\\xcd\\xc0\\x03\\xa1Y\\x8eɒ\\xc0\\xfa_\\x83\\xf5?\\xe4\\xaf\\u007f_z\\x84l']\\xd9\\x1a7\\x8b\\x10\\uf4b5O\\x17;va+\\xb8\\x13\\rSq\\x99\\x1f߉\\x91\\xc06\\x01\\xec\\xed\\v\\xb7S\\xb9\\x84\\xdb\\xe9\\x16C\\xf7\\xec\\x9f\\xc0\\x99F˰=\\xa1\\x14\\x9fб\\vu\\xb7\\xc5\\xca\\x14\\xfa\\xda`\\x11\\x9d\\x1fS\\xb6\\xc80\\x14\\x81\\xde|\\xde2$\\xd8o\\xff+\\x9c\\x81CA\\xf9\\x1av\\xccL\\xa3\\xaeT\\x02aÝ#\\x9b\\x8f\\x06ʎ+\\xfde\\xd3\\xfc\\xff\\x0e\\xf2_\\xa5\\xfdԕ\\xb9a\\xc7\\xfc0\\xea\\x1e\\xb7Dt\\xf2#\\xe7(\\xe0\\xef\\xcf\\xd3\\u007f~?\\xfd\\x90G\\xe8w\\t\\xb7\\x15\\xf9$\\x14Sp`g\\xafP\\t\\x12\\xa1E\\x98K\\xe8yE9cd\\xb6\\xec\\x9dqCbL/ֲ3\\x17-\\xcdf\\f\\xc4Cy\\x0fi\\xa1\\xf0\\x11\\xa4'\\xc7\\xdaㆩ$\\x0fOL,\\x8c&U\\xb4\\x14\\x0ei>헝\\xe5\\x16\\xc0\\x9a3\\xdc\\x1e\\x8e\\x8b4|v\\xa6'\\xd0S\\x9a\\xf5\\xc8\\a\\x9epO\\xc3\\xf5y\\x9d\\x9e\\x98O\\x1d;\\x1e\\x0e\\xe2\\t\\xfc\\xc4L\\xedn\\xc38D\\x8eלq\\xb7f\\x82\\xe7\\x90\\xf1~Ë\\xfd\\xd7n\\x14:\\xdf\\xcbn\\xd49\\xea\\xe9\\x91r\\xbd\\\"\\xa1F\\xa5`\\x9d\\xc8\\x1a\\x8d\\xf4\\x89#\\xc1p\\xb8N\\x8f\\xd5Jۃ>\\xef\\x97\\xd69ۭ3\\r\\x93j\\x10\\x01K\\x16\\x8b\\xb8\\xeeۄ\\xf7\\x81A\\xce\\xf9C~\\n\\x96M\\x106*\\x06(\\xac]bX\\x97\\x1c\\xd3\\x13\\xbcX%G\\xfai;\\x94\\v٧{\\xde\\xe7\\x06#\\x98\\x97ʍ\\x9d\\x86]\\xed9\\x02{m\\xa0>м\\x18\\xec\\xc02\\xa0\\x0e\\x9bK6\\xe0\\x14\\xff\\v\\xbelRz+\\xe1\\x19N\\x13\\x10\\x81\\xd4k\\x17\\x81h\\xd8\\xe2\\xf3䏆\\xe1\\x04b\\x94߰/\\xa5\\x048ՏTI\\xb2%G\\xf9M\\x01\\x99zY7\\x91\\xf0\\x9b\\x8a\\x031\\x92\\xfa\\xde\\xf7\\xf6^a\\x1d\\xf7\\xbf\\xbbM\\xb2Ղ*ɇ~G7M\\xfdw\\x0e\\xc9\\x12\\x04m\\xe9\\x92K\\xba\\xf1\\xf0I\\xf0ņ\\xf3b\\xa8w\\x8e\\xf1\\xdeyQq\\xc9\\xe9\\xd0h1\\xa1\\r\\xef\\xd0:D\\x8f\\xa6\\xab\\x14\\x80\\xc3\\x14,\\xb5%\\xec\\x1f\\x94\\xcfЃh픮\\x9f\\x921\\xf6qoJ\\x8b\\x97a\\xef\\x9cⶒ\\x19Uo\\xd4\\xe1\\xdc)K\\xf0\\x80^\\xb5\\ay\\xc5e*b\\x10w\\t3\\x9fp\\xf0\\xf3u\\xc2\\xe47\\x11\\x13\\xde\\\"H\\x19\\x9c\\x13\\xb95\\x18\\x04ĭўg\\xc2HvhB\\x9b\\x1d\\xc9N\\xa5\\xd3SّY\\xad\\xf3\\x8f\\x97\\x17\\xf3Q=\\xaa\\xbb\\u007f\\x17q݈\\x11\\xc9%WVm{\\x15\\x86\\r\\xb5\\xed\\x10%\\xb7,\\xc1\\xd0\\xc5Ffs##\\xb9\\xd9\\x11\\xc7i\\xa4!y\\x84\\xb0\\xc5\\xf1H\\x89\\xcaj\\u007f\\x15\\xf06\\xc6w\\xa6\\x87\\xb9\\\\\\xae\\xc0\\x89\\x0e'Vk^\\xf4\\xea\\x82\\xcbl\\x8e5[\\xa4Ӳ\\x1fx\\xddܫ\\xd2\\r[J&tI͵/{\\xf3\\x05\\xa4\\x9c\\xdf\\u007f\\x1d\\u007frii\\xfa҄d\\xa3/.\\\\\\xf2\\xf6/\\xab\\xf2Tib\\xcaе\\xa4\\x11\\x9b\\x9e\\xaf\\x15\\x00c<d\\xcaK'\\xa7G\\x95./\\xe6\\t\\x8a\\x95:]\\xb4\\x941\\xbe\\x99\\x00۔HDƿ_ܲ\\xa5x\\xebGom\\xe9\\xd9R*]\\xb6SC\\xb6\\x1cKi\\x05\\xf4pffb\\xe6\\xe2i\\xc2R\\xbed\\xabaD\\x0e\\xa7˥t$\\x97\\xca\\x14\\xc6v\\x96\\u009a\\x8f\\xeb\\x13\\x1aB\\x04\\xe0\\xe4I\\x86\\xf3\\x10Q\\x89)\\\"\\xc6\\b\\xbb\\xe9L\\x1cSA92\\rZ켃\\x1a\\xb0\\xc2+M~\\xa7 \\x8c=\\xf4\\xaa\\x1d\\xaf\\xbd<C<_|\\xe8\\xa7;\\x0e\\x1d\\xba\\xf3С\\x1dչ\\xb9K\\xb7\\x8a\\x86\\xe5dT\\xe3/\\xb1\\x85\\x97\\xae\\x9d\\xbc\\xb4A\\x9f\\xd7\\xfeۡ\\x1d4\\xd1s\\x90bk%d\\xa8\\x19\\xc72\\xc4.o\\xee\\x1e\\x8a\\x87\\u05f9\\v\\xc9zk\\xb9\\x84\\xbdOj\\xd2l\\xb9Y^\\xf2e\\xab*\\x9eH\\x15\\xe1\\xccQ\\b˥\\xd5\\xc6\\x15RU\\\"\\b\\xe2\\xd2\\xea\\x91yS\\x83\\x99\\x83ڡ\\xd0\\xech\\xe9U\\x0f\\x8d\\t\\x82\\xe9\\xbeZ\\xa8\\xb4\\xd15\\xb2\\xe0H\\x8a$\\xbe\\xf0G\\x9eg%\\xdah\\xc5h\\x8aP-v\\xc0<\\xb4#ִ\\x0e\\xf0\\x00iU椚0\\xaa]\\xbb\\x04\\xd5O\\r]V\\xdaY\\xdc\\x06饤,\\xa0ox\\x9e\\xeb\\xf5\\b{\\x9f\\xd8\\x11\\xdd:4\\xbc\\xe3\\x90mn\\x95$h\\xd5\\\\\\x05\\x85\\xc3\\x14>Z\\u007f\\x1e\\xe0\\xa3Eh\\x9b\\x0e\\x90\\x03\\xd5,\\xa03\\xbde\\x03\\xba\\xbf\\xf9\\x1a㷅ҙN.\\x93\\x0e=gΙ\\xee\\xe0RS\\x12\\xb5Z\\x02\\xad\\x02V\\xfaŁņ\\xd6;\\x1e\\x9da\\x8c\\xe2\\x8bd3\\xc4\\xde\\xc6S\\xf4=\\x952c\\xa6\\xd6a\\xe3\\xe1\\xa9\\x0f\\x9d\\xcd.,do{\\xb5\\xa4.(*\\xbf\\xe5\\xf8\\xb8D\\x00i\\x94\\xcb!\\x02JK\\xe3Ƿ $\\xc9\\xe2\\x82*\\xbd\\x1aq\\x95\\x99ʣJ\\b?\\xb2M6\\x94\\x9boV\\fy\\xdb#\\x82\\\"\\vʣ\\xd0V\\xa5\\xcb\\xdfT\\x01\\x8b\\xcbì\\xda\\xca\\xed\\xe3.\\xe3^K8\\x8ay\\x0fy-\\x9d\\x83\\xb3Yy\\x99\\xf1tS\\xcf7\\xfa\\xf6\\xf8zo\\xb7_\\xf3\\xa4W\\xdaA\\t\\xfc\\x95s\\x06\\b\\xa5\\xac\\xd3\\xce8\\xb5\\x001\\xd8BV\\xe79@\\xaa\\xbfOS0\\x01\\xfc;\\xce\\xe1G\\xe4[\\xc0ޙ\\x90%s\\xe9\\xbc\\xfe\\x01\\x85+l\\xc0\\x9a\\xb7w1qr<M\\xa3\\x96K\\xaa떼C\\x13\\xf0\\x9fJ\\x9e\\x8d\\x12\\x8dh\\xb1\\x86\\xf9\\xa0T\\x83\\xe8\\x9b,\\xe9\\xd9풸\\xbf\\xd1\\xc8e\\xf5\\xce\\xf5\\x86\\xf1Z\\x1a\\x80\\x91\\xfa\\xa1(\\xbd\\x16\\x0eIxl\\xcf\\xeaK4\\xe1\\x95\\x00\\xec,\\xe9\\x86U\\x15\\x0fn\\xdbZ\\xb5\\f\\xfd8\\xa0\\x15\\xc4\\xff\\xaf\\\"x\\xfeU$QK^\\x1a\\x8e\\xcd\\x1d\\xb6O;\\x1e|\\v\\x8b\\x8d\\xad\\xc1y\\xbe\\x05\\x8b\\xee\\xc1\\xef<\\xf8\\xe0Ms\\xf5\\xdd\\x17\\xf1\\\"\\xc0;\\x91\\x8c\\xbc\\x15\\xad\\xde\\xf5\\xc8]v]\\xe0%\\x1c\\xdb\\x12\\xdfz\\xe1\\xe5>>\\xf0א\\xcf#\\x00?\\f\\x13J\\xbf\\xdd\\xcf\\x191Q\\xa9O\\x0e+FX\\xa11\\x99H\\xfcSٲ\\xee\\b\\x92\\x85A\\x12}\\xf2!\\xc8>|\\\"\\x1c\\x13dt%\\x96\\x1e2h\\x80\\xc4\\\"t\\xc9\\x1do\\xba\\xe3R\\x88\\x93\\xf0̎\\x19\\x8c&\\xb0\\xb4\\x14\\x8e\\xc5\\xc2K\\x82,\\x18\\x126h\\xe0n,M\\xa8\\x8bwl\\xdf~\\xc7\\x05\\xd2\\x16\\xc2B\\x99\\x9d\\x9c\\x85?\\xc2G\\x01ؒ\\xdb\\x0e\\xb0\\xe5>\\xd2f\\x9b\\u0096\\xe4\\xb0fg4\\x05d\\xff\\x9f\\x8d\\xe86ڹ\\tZ>\\x90\\x17\\x83\\x83\\xc9\\xe9\\xce\\xcet\\n\\xb4\\xfe\\xe5Ƽ\\xf6l\\x9a\\x15\\xe0\\xac\\xc2\\xfa/\\xf97\\xa3{a\\r\\xed\\x19\\xc4\\x0e\\x1aE\\x8fO9Cii\\x14֖<\\xf8b'\\xeaG$<`9V\\x9f\\xe1_\\u007f\\x03\\xe4~\\x03\\x06\\x00 \\x86\\xab\\u007f\\xac*\\x16\\f\\xfb\\xcf4\\xb3\\nA\\x1dw\\x9e\\xeb\\v\\xe2\\xfe\\xb4'\\x8e\\x11\\xa9k\\x87\\xbc\\x18\\xff\\\"\\xb6\\xf4\\xac\\xa9\\xfdh\\x9c\\xbcu\\xe2\\xc1\\x00\\x0e&\\xf3t\\xb6\\x16`/\\x98\\x82\\x16\\x10D\\x86\\x122\\xe3\\xfeQV\\xec\\xfa\\x84\\xc0\\x04\\x19&\\x88\\x0f\\xe6-\\xd1\\xee\\xfc@F!\\xdd\\xe4\\xe5\\\\~*\\x1f\\xf9\\xab\\b\\xb8\\x99\\xfdT%\\xe5\\xb8\\x12\\xe2U\\xf4.\\xc3\\x14\\x1e\\xb0sQ=\\x19.\\xba\\xf9\\xbc\\x9b\\xb0\\xac\\x04y\\xe6\\\"\\xe8\\n*\\xec\\xa5+\\x93Q\\x9d\\xc9\\xff3\\x9av\\xa4\\x8f\\xabǨr\\xae'\\xd6@)n\\xabm\\xb2\\x8a\\xbb\\xb4\\xf1\\xb6Gg\\xdfK\\xe9\\xe192\\x0ep>\\xe6\\xc9\\x1e\\n\\x80\\t\\xa5%\\x99\\x00ޱ|(c\\x96\\xdfy\\x00\\xe7Ý\\x93\\xa6\\x89\\x89\\a\\x9d6\\xcd\\xce!\\x80:\\xd4}$s؍>|w\\xc8N\\x18ę\\x83i\\xfcz\\x18\\xa0\\f\\xd978\\x06'ui\\xef\\x8c\\xe7t\\bJ\\x1c\\xe02\\xd6\\a\\xc2\\xf9\\x17y\\xef\\x0e\\xb6\\x97`J\\xe8b\\x8f\\xa9\\xa0Hۺ\\xbe\\xceW6\\x89\\xfc[ʭ\\xa8\\x11\\xf0\\x8aq&\\xdeAb\\xdf\\xd1\\xcf\\xd2\\xd8\\xdfu\\xfe\\x9b\\xe70\\xbe\\x92\\x1dB\\x14\\xc2\\xea<ݧ\\x83\\x92\\x81S\\x81\\xe81\\\\\\f+.\\xdfO\\xd2t\\xa945\\xdb\\xe0\\x8b\\x12q\\xc9q\\x18f\\xb4\\xabz\\xd4\\x13\\x18iz\\xb8w\\x9c\\x00\\\"M\\x0f\\x06\\x93cN\\x8dr \\xbc\\xa1Ī|\\x87,\\xa3\\xb6\\xac\\xe2\\x17\\x04>\\xfbnY~\\x98\\nh\\x1c\\xa2\\x02\\x1ay\\x13jG\\xea\\x96*\\xf7SNs*ֈP̲|!V\\x85IyD\\xee<O\\x05?\\xdeM\\x05?fU\\f}a\\xaa\\xe5\\x14\\xee\\xca(=\\xe6I\\x98\\xd0\\xfd\\x12\\xfb(H\\x8f)\\xbf\\x8b\\x00,\\x14\\x90\\xf5Ňy\\xee\\xf8\\x81\\x88\\x95\\xc0z\\xc9ԪT\\x02\\x18\\xff\\x8e:}Y\\xed\\xc0\\xf13Tl\\bY\\a\\x8e\\vi\\xa5\\n\\xab\\x91L\\xf7K4\\xfc;\\xe9L\\xed\\xb2\\xe9\\xe3\\x12\\x15<\\\":=\\xeb\\xbfX\\xff\\x1a\\xff6\\xf4'p\\xa6\\xec\\xe1~\\x83\\xbb\\x8f\\xfb\\x16\\xf7]\\xa2e\\xe9\\v\\xd8W\\xa0.er\\x804{\\x92\\xf6=\\xf9z\\x98\\xacn\\x9cT\\x15\\xa0%_L\\xbf\\x12\\x9f\\a\\xc8\\x00\\x00)7 \\xb8\\x0f\\x9e\\n\\x91f\\f\\x88\\xee\\xf7I\\xee\\x83ǝ\\xc9\\xf2\\xfd\\xc2\\xfb\\xf3\\x00\\x1c\\x13\\x109\\x8b\\x9a\\xd2\\xff\\a\\x15\\xe29EҢ\\xa6\\\")\\x9al\\xe9H\\x14\\x91n\\xc9\\x1a\\x04ͨ&)\\x96u\\u07b7\\xa9hY\\r\\xc1\\xefx!\\x82\\xd5|(\\x92Md\\r\\xa5\\\\V\\xf5\\xe1\\xc4P$\\x94\\xd3p$/\\xcb\\xf9\\xa8\\xa2\\xe5\\x8c\\xe8P2\\xab\\xab岈e\\x01\\x92\\xb1\\xb7\\x05\\xf9M\\x111^\\xacũ\\v\\xe0Я^\\x15\\x84LU\\xc0\\x06VM#\\xacGm-l\\x84U\\xd9\\xc0\\xa2\\x1a\\x16\\x84\\xb0*\\xca!Y\\x85(͎\\xeaa@x፠\\x9a¼i\\x14\\x1d\\xf8}6\\xa2٩jX\\x8b\\xc4\\xf4\\x82\\x02\\x83\\x85\\x91\\xa9\\x14\\xf4XD\\vWҶ\\x16\\xc9\\r\\xc3\\xfbt%\\xacY1\\xad\\xa0\\x86\\xe0\\xbd$+bAw,\\xdd*g \\xc1p#^+ƥ\\bu?5P\\x91\\x90\\xa9bC\\xeeV\\x84\\xbc\\t\\xf9\\x15\\x817}\\x15!tv\\x02/,\\xc0\\x9a\\xb6\\x89\\x84#\\x17\\x80\\x17`|\\tJ4c\\xc3\\xe8vc=ā\\xa8\\xe5\\x00\\xdcp\\xf9\\x8e\\xfa\\xf8\\x14\\x01$\\x84X\\xb8|\\xd7#?\\x83\\xd3]\\x94\\xa6\\xc6\\xeb;\\xda'\\x12Q\\xf3\\xfa\\xff\\x82\\xb6.\\xa2\\x85{\\x8f&\\x93\\x00\\\\\\x88Na\\xb4\\xbep\\xb4so\\xc1\\x11\\xb5d\\xb29\\xc1\\xdfz\\xa9\\xaeF/\\xdbRg\\xf8vx\\xfd+(\\a\\xe7\\faRD\\xba\\xba\\xaf|\\x13\\xe5zꮻU\\xb4\\xd6Yܫ\\xba\\xce}\\xc7Ͳ\\x10\\xbb7\\xda\\xe3=\\xde\\x03\\xdfN\\x10\\\\\\x9d\\xf7\\x96nW,\\x902\\xff\\x00W/\\xf6\\xf8\\a\\x8c̀ƒe\\xd7\\xd4N\\xa1\\x04\\xaf\\xf1\\ttJ3kec\\x8c\\x12\\xad,\\xe2\\x8e\\xfd\\x8b\\x91\\x9bLj\\xe6\\t\\x9e\\xaf\\x89b\\x8d\\xe7O\\x98\\xdaȎ\\xe8\\xebM\\x8d*\\b\\x80\\x13\\xe0\\tn\\x01(y\\xb7\\u007f6\\x91ُ=1\\x1f\\xd8\\x17=\\x1a\\xc6\\x14O\\xd6Q\\x97\\xa0\\xc1*\\\"\\xc5]XW1\\xa7\\xd4(\\xca\\x18\\x96\\x14\\x0f\\xdb\\xc5|m~\\xb8TK\\x97\\x8c\\xce\\xf7\\x8dR\\xba&\\x9a#$\\xca\\xd4N\\xb0\\x9au>a\\xbb:)\\xb4\\xcd\\xeb\\xae]$\\n\\xa9ss\\x93\\x05<\\x1b_̦\\b\\xb17\\x95]\\xe4\\xb5r\\x02\\x17&\\xe7\\xe6\\xbc\\xfd\\xa7zOH\\x19\\x9d\\xb4\\\\ך\\x1cUB\\xa9\\xae\\x1c\\xa3\\xa7K1͵\\xa8<Gѣ\\xba\\x04$\\xa7\\x1c\\xb9էK\\x11cj!;7ӧ@\\xd5\\r\\n\\x15O\\xf9\\xfa\\x14\\xa7\\xf2\\ue49b?կO\\xd1\\xeeW\\xa7P|m\\n\\x85\\x00\\x01ʀ>\\xc5\\xfa/\\xd7\\xff\\x18f\\xdb\\x13\\\\\\x91p_9*\\x05\\x177\\xe52\\x11,\\xe6\\x01\\xd7-\\xcf\\xcbq\\xe8A\\xbaw\\x11l\\xd2\\xc9\\xf2\\xeeL}\\x86\\xd0\\x14\\xbf_PU\\x85ǼVYؿm\\xfb\\xe4x(<\\xbe!\\xe6\\xcb2\\x16t<{\\x93\\x89\\x04I\\xe0yCԎ\\xa2\\xaf\\x14\\xc6á\\xf1\\xc9\\xed\\xdb\\xf6/T4H\\xad\\xa8ꆘ\\xeby=\\x04K\\xf8\\xa6Y\\x01K\\\"2&\\x8eR8\\xfc\\x97\\xb4o\\x9f\\xa0z\\xf3\\x00$q\\x14ރn\\x1d&\\xf4s\\xb2\\x9b6]\\xf4\\xbf\\xec\\xcesk\\xb6\\x98\\x90쓖\\xb1e\\xfb\\xab\\xd2;L\\\\Sl\\xf4{\\xa2\\xbd\\xd6y\\xce>a+5l\\xeeH_\\xbdmF\\x8f\\x9c\\x8cJ\\xbe|\\x9c\\xc7K\\x9c\\xda\\xc8M\\xb4\\xc9\\xea\\x9cF\\x85\\\"\\xd1\\\\\\x8a9ð\\x15W\\xca^ \\xe6ƃ\\xccƩ;?m\\xecF\\xbc&f\\x91\\\\*\\x1e\\x1c\\x96\\xb0 \\xec\\x87]\\xa3\\xff(\\xed\\xac|\\xfaN\\x036\\x92\\xfd\\x024n\\xf8`\\xb1$\\xa3\\xac\\xa8\\xf1h\\xb7G\\xbb#x\\xe2c\\\\\\xf9ܚ\\x02\\xdd\\x13\\x94\\x1c\\xef\\x83\\n\\x03o\\xbe\\x8a\\xd2vǳCc\\x80\\xe8\\xd1Hpnl_u\\xe5.\\xba\\x00\\xad\\xec\\xd8x\\xf6x\\x97\\x9e\\xc9\\x13\\xf9C\\x86\\x93Ri\\xec\\xbc7/[\\x01\\xdc\\x12\\a\\xfc(\\x96\\xf7\\x96\\x19\\xdff\\xca5k\\xc6)\\x03\\xfeV\\x8cE\\x03\\xfex\\xee\\x05(\\x16\\x01\\xa8h\\x9d9\\x03\\x85\\x1f\\xe9S\\x03'x`\\xc6ǅ\\xfe\\x0e=\\x86>N\\xf5\\xe8\\xb7p\\x9c/e\\xeazT\\xf1)T\\xf1\\xb6\\x16\\xa2\\xb7\\xb0!NX)5\\xca\\xe5\\xc6w\\xa9`\\xa5\\xfc\\x86C\\xb2\\xaa\\xe1;>\\xf9\\x01\\x16\\xfc\\x8b\\xd3$x\\xf9Gn߿\\x9d$*\\xbd\\x16k\\xaa|\\xe8\\r2}\\x8b?y\\a\\t\\x9e\\xfe\\v\\x16\\x14.\\xb8\\xed#\\xac/\\xbar#Y\\xe8\\xfb\\xa9\\x8d\\xfc\\xd1J\\xbe\\x80[L\\xc3h\\x18uYU\\xfeZ\\xf5{\\x83\\xb5\\xbd\\xd6\\xc9Y\\xe1k\\xbbJG׆\\xeb\\x94ar;u{\\xcc\\xee\\x1d\\xf2}T\\xf5\\xe8>y\\x992c؟\\xcf?g{\\xe0\\x047\\xcbq#\\x0e\\xa6:\\x9bTU\\f\\xe6\\x1dCj*\\x14[\\xe8\\x02\\xb6\\x94\\xf6\\x03\\xd3\\x03\\xc3V_\\x8c\\u0378|;gY\\xbazx\\xe1pFL\\xc19v\\xd0Q\\x92|!]*\\xa5\\xd7 N\\xd5-\\xab\\x9d?\\xf4\\x9a\\xd7\\x1c\\xfa\\xbf\\x17F?\\xa8\\xc5\\xf1ކe\\x8d\\x17\\xacb\\xa4\\xb1ͲJ\\xe9\\xe5t\\xa9\\xb1\\x17ǵ\\x0f>\\x81R\\xa9=\\xcb{8\\x8f\\xe6'P؊\\xf0\\x1bdߨB\\x173dGL\\x97Y\\v\\x0e5\\xdc\\xe0\\xe1z\\xe0\\x84\\x89^\\x05F\\u007f1\\xa5)\\xa1]Q\\xd11\\xe7-!\\xa3NN\\xaa\\x19\\xc1\\x9a7\\x1d1\\xba+\\xa4hS\\x83o\\xb5t\\xe0\\xedZ hb\\x92\\x18\\x9b~\\xe2\\xb46\\xd9\\xffvz:\\x90UZ\\xeb\\xc9\\xf1\\xdc\\xc3U\\xbcݙ̭\\xb8\\x8c\\xc9\\x1f\\xe00cT#\\x8aꩴ\\x88rl\\x9dH\\xff\\x12<\\\\\\x1a\\xd0\\n\\xf7wi\\x9eKG\\x8f\\x85PT3L\\xd1*\\xa6\\x00K.^\\x10U\\x8c\\xcc\\xf0>pR\\x19MR\\u007f+\\x9a\\xee,\\xf7\\x8e\\xb7\\f\\xddy\\x9f\\x8f\\xa4B\\xe3\\xe1hII\\xe4\\xc2#\\x02\\n\\xa9\\x8f\\f\\x87B\\x93\\xf6\\xd0x\\xc2\\b\\xa5\\xa2]C\\x03_a\\xbbt\\xb0\\xdee\\xae\\xc9\\xcd\\x13\\r=\\xa2\\x0f\\x02\\xd0!,\\x0f\\xba%`\\xbf\\xf6\\xad)D\\xfe\\xd8\\t-\\r\\x88\\xc5\\xfaSv\\xf2\\xb7TI\\x83\\xfa\\x19ʾap\\xa2\\x17\\x14\\xa1\\xe6Պl\\x1aZ\\x14\\x85\\x8eE\\xd3i\\xf4\\x11\\xbf\\xc6f\\x8a\\xd6\\x02\\x8d\\x84\\x8c\\xc4\\xf8\\x90=\\x19\\n\\r?\\x02 \\x9402RTJ\\xd1\\xf0x(\\x15\\x89\\xa6\\x9c\\x9e!\\x84\\xef\\xd0\\x16\\x12\\xfa\\u07ba'7\\xef\\xf55\\xa5f7\\xe3.\\xfd\\x8be\\xc81\\x88\\x999\\x83\\n!\\xad\\x12\\x92O\\xdc\\x05\\xd7\\x1e\\xac\\xb4\\xb7\\xc6N\\xf9\\x9dV\\x1c\\x19\\x11\\x00\\x1d9_\\x9f\\xa1\\xb5\\xee\\xb8ȕ*\\x1b\\x16I\\x93^l\\\\\\x18]ү\\xb7\\xd7\\xd7n\\x83P\\xb7\\x1blFPQt\\x80\\xd5h\\xf5+&\\\"\\u007ftm\\x96\\xed\\x1e\\x81\\x86V\\xdd\\xdf\\x1c\\xae~Y\\xfdf\\xbf\\xfc\\x91\\x19\\xe0\\xe5\\x97`;\\xf3\\xed\\x92T\\xea\\x94T\\x04\\xbb\\x06\\xd5ڠڷp\\x84\\x11\\xd5\\xcd\\xe6,:N9\\x13?\\xb8\\xe8K$\\xbf/]\\xc4h\\x15\\xf7b\\xf8#\\xb4\\x8a9\\xca\\xcf@\\x8b\\x94f\\xb0\\xc8\\xc8\\x1f\\xbf\\x01o~\\x83\\x92?6\\x94\\xe9s~[.=\\x95\\bD\\x83{e\\xf9e\\u007f\\xf0\\xbcEz<\\xe1\\x97\\\\\\xa6/\\xcbViu!(\\xb7\\xbf<R\\xber\\xdeL\\xaf<o\\x8d6\\xf6\\xad\\xcf\\x05rq\\x83\\x11\\xa5\\x87`\\xee\\xf6\\xf5+)\\xdb\\xe3\\x06\\x9d\\xabP\\x8f)t\\xceR\\x89\\xceԓ\\xe89(S\\xa2|\\xf5$\\xe0\\xd2\\xe3pN\\xb6\\xa8\\x9d\\x83\\xe2<݁Zu\\x18\\xe1b\\xa9X\\x06ܡ$c\\x88%\\xcc\\x00\\\\l\\xceV\\xb0\\xe3\\x16a(\\xea\\xb2[7a*\\xba\\xcd\\x16<K\\xf5\\xb8;\\x85\\xd0\\xd2\\x19\\xbd\\xb6\\xad\\xf6\\x19\\xe1+\\x82\\xf0\\x15\\xb4ps\\xb8\\xd8xe\\xe7_F̛\\xe3\\xafD\\xafQ\\xd5\\xdb\\x04\\xe1\\x05\\xe16\\xf2\\xac\\xd2t\\xef\\xa7o:\\x1f\\xa3\\xe9Pn\\xef\\xa1COP\\x9d\\xabիg\\xac\\x83\\xaf\\x9a\\xb9\\xba~\\xf0\\xa39\\xf8\\x97\\x9fϷ\\xb3\\x05p\\xf3o\\x85$\\x17\\x92\\xf8\\xb7\\x90\\x14\\x1c\\xd3\\x15\\xff:/\\xa1?\\xe52\\xdc\\b\\x81\\xdc\\xc8^\\x05xs\\x81\\x10\\xe3\\x88N\\x1b9\\x14\\xc2\\xec\\x94\\xe0|ݗ_\\xaaN:\\xbbT\\xfe\\xae\\xdd(\\xd9\\xdf\\rE\\x87\\xd2\\x17\\x8e`A\\xbaP\\xdf{P\\nuv0\\xad\\x97W\\x8e\\x1c\\xc8\\fECߵK\\r\\xfb\\x99\\xd2eCiG\\xe5C\\xd2\\xc1\\xbd\\xfa\\x85\\x92\\xd0y/SxḮ\\xcc\\xf2\\xc7=\\xfd\\xe6=\\xdc+\\xb9\\xeb=\\xaa&\\x1f$\\n\\xfab\\x00\\x83\\x91\\xb27\\xb37\\xf0:_Dj\\xf9=\\x11A8\\x10\\x165qZ\\x14\\xe1!\\xb8mA\\x13#\\x82\\xb88\\x10w5\\xa1^\\f\\xa1\\x1fS\\x9aPצ\\xc0\\xa6\\xfe\\x0f[\\xa2*.Z\\x82P\\x83\\xac¢\\x18\\xdf%~\\\"\\x02^\\xc8\\x12rTEx\\x03Q\\u007fH\\xa9%\\xc6K\\x10hF\\xeb\\xff\\t\\xf0\\xbf\\x04{\\x9dE!\\xdf0\\xa2\\xf2\\x87P\\u007fr\\xba\\xa0g-C\\xffr\\xcaXҾ\\xac\\x13=\\xed\\xac\\xfe\\xe5\\xce/\\xc2!eN1\\x9e\\xfa\\xb2\\x9e\\xf5\\xe08F\\xbf\\xb2\\x99>_\\x891.i\\x17ԽE\\xd9ڄ\\x1fA\\x94\\xfbP{m\\xc8\\xee,\\xdbCkT\\xed\\xe3\\xb4=\\xd4\\xe1\\x86\\xec\\xa5!{\\xd5\\x1ej\\xaf\\x9c\\xacAĐ}\\x9ap\\f\\xbe\\a\\xd1K\\xf6P\\x8dD\\xd4r9&#\\xf2uJc\\xdaޥ\\x02\\xfb:\\x1fA\\xe5\\x8e~\\xb4\\xab\\x1e\\xe0\\x1ax:#h\\xf9RXq\\x97B\\xf3\\xea7\\f\\x19\\x97b|\\xa91tC\\xdd\\n\\x19\\x9bGǻ^C\\xa7)\\x8cP\\u007f\\x8a\\xbeh\\xdf\\xc6\\xcc\\n\\xf4\\x0f\\xf6 \\xcbm\\xdc\\\"\\xec[\\xde\\xfe,\\xf6ۏ\\x1aG\\x80\\xce6\\xebc\\xe8\\xdcV\\xa5\\xe0\\xb8\\xc1=\\x90\\xef\\xae\\xd9ry\\xb6\\x8c~\\x9b>r\\xa9\\xb2\\x1dZ\\x10\\x9c\\x9cc\\xa7\\xee\\xbfza\\xe1\\xea\\x85bm\\x0f\\x93/\\xdeSS\\xf3\\xfb\\xf3\\xdf\\xcbV\\xa5\\x85\\x90]N\\xb5Sg\\xcb\\xf4\\x13\\xfa\\xb7\\xbf\\x9cʅlw,\\xaf\\xdb\\v\\xe4\\xb3\\xeb\\xf6Ԇ\\b\\x84:T\\xdbcY!k[\\xd1\\x0eA\\xd6\\xfe:&}^\\\"R\\xe2\\x1e\\r\\x9d\\xf55#W\\x99\\xfe\\xeeKp\\xf2\\x06\\xe9\\xf9x\\x93\\xf56#v\\xcd\\xfb;%I\\x1e\\x8b\\xb3\\x17\\xe4{t\\xc1\\xc4\\xc4މ\\xb7\\\\9Q\\xc66B\\xaa\\x80C1\\x14\\x8b\\xed\\x88\\xed\\x89\\xc5$\\t`\\xe8\\xb8\\x1a\\xbf\\xe9|/5\\xf29\\u0093o\\x81Ǖo\\x81\\x84\\x8a\\x96N\\xa9،m\\x8f\\xc5!ݎ\\x98$\\x8aJԈi֙\\xf3\\xbfVi\\x16\\x9e\\f\\x05\\x1d\\xb7\\x8cO\\xff\\xa0\\b\\xe1l\\xb35\\xeb\\xb1\\xe0)'\\xd5\\xe1SCS郍\\xce\\xe9\\x1d\\x87\\x9acG\\x17&.\\x8c%\\x86\\xaas\\u007f+\\x8d4\\xb3\\x8d\\x83\\x87vL_\\x18\\x96\\x84\\x85\\xa3\\x13#\\xd6\\\\5J\\xf7\\u009f\\x01l\\xf1Mj\\xb3\\xa6\\xd4\\xe5x\\xeeB\\x8d\\x01%\\x19\\x98\\xac\\xb8^a\\xdaJ\\x18}!^\\x1d\\xeb<5V\\x8d\\xbf\\x8e\\xda\\xdaz\\x9a\\x1a\\xdc\\xfa\\xe2#5\\xb9-O\\x14\\x0f\\x1c(~\\xf5\\x03\\xf4\\x94\\xa1\\xce\\a^}\\x89\\xa2\\xad\\xaej\\n[\\x9b\\xe8O\\xa1\\r\\x15J\\x8b 0;])8\\xde3\\vת\\x04\\x8cϸ\\xb0\\xd9A\\x1a_\\x01ѧ+\\xa3\\xf8\\xa7T5\\xb1?qG\\x12S\\x8bqX\\xce\\xe7e\\\\\\x9d\\x83\\x00N\\xde\\x01/T\\xb5\\xf3\\x81\\x1e\\xfeb\\xaf}JU\\x92\\xc9ۓ\\x91(M\\x83\\xf2yD\\xbf\\x8bF 2\\xa9\\xa8\\xfbi\\xb2\\xce\\xff\\xf2\\xb0\\x1d\\xa1\\xcb\\x1b%\\xba\\xd8\\xd0\\xf9>\\x0e\\xca\\b\\xf3\\x11'^\\xb7\\xc9Fҧ\\xa9\\xe8\\xd2=\\x04\\x1a\\x80ڦ֡\\x16d\\x16\\xf3\\xeeÔ\\x9eÂ\\x0f\\xbf\\x91\\x18\\x03\\xc1\\x94R\\x83Njf\\xe7\\xfbn\\x1e\\x1d\\xf1\\xcdp\\x91\\x98\\x03\\x00C.c\\xb6\\x97\\x00.\\xfa\\x187\\x03\\xb0\\x1e\\x932u\\xfdiۤ\\xe4\\x052U\\xa9\\xf0\\xe5\\xac7\\x81\\xe94g\\xf1\\x85\\xf1q4\\xf1\\xed\\xc2\\xd1|>\\xff\\xa5x;\\x1eC\\xf1\\xf7\\x19D\\x14\\xf2\\xb4\\xaa*\\xf8K\\xe1\\xb0Y\\r\\xffU\\xaa\\xbe\\x98|\\x84\\xc6>2\\xf9\\x96\\xe8\\xe4['\\xbfW(\\x14\\xae\\xc9\\xffW\\x97\\x88t\\xc6\\x1f\\xd0\\xf5\\xb8\\xa1?\\x00镯Xc\\xe1p\\xf8\\x19\\x98Q\\xa93\\x86\\x11\\u05cd3\\x93\\xde8\\x12\\xfa\\x04\\xd1ϭR\\xdaG\\x90@\\x91\\aT\\xcf\\x1b){\\x96\\x19\\x13â\\x06\\xfa\\x9c\\xd9%<\\x18\\x8e\\xf9\\xc1&\\xb1\\xea\\xb7*\\n\\xa2\\xf8\\x13\\xc3x\\xd6@\\x80'u~\\xe6\\x93%\\xcc\\xce{K$\\x012DHa\\x9c0\\x8c_A\\xceZ\\xa0\\xba\\xf9k\\xe8^\\x8fg\\xc3\\rZɒ^$\\x1cк:\\x97\\xfa\\x12ڡb\\xaaxX\\xa5\\x87\\xda&^.\\xa0\\xaf\\x84\\xa9\\xe6\\x06\\xc1D.\\xe8\\xc1\\xaa\\xf1\\x81\\xe7\\xcb=\\xe1\\xe99\\xdb\\xf7\\x87\\x9e{q]$t\\x9a\\xa6\\xbd7ྔ\\xb3Z^\\xff\\xa5w֎\\xc1)r!w\\x15w\\a\\xf7\\x10ǵ<{N\\x8c\\xfe\\x15\\xaf\\xcfP\\tVF\\x18\\xf3\\xc5Hg\\x86\\x10\\x91\\xf9xQձ\\x81pœd+\\x16\\xa8dIO̭\\x88\\v\\x9e\\xccn\\xb1@x\\x12\\xe5\\x163=\\xe9\\x98\\x02\\x93R-Λf\\\"\\x11\\xb3TY\\x96t\\xac\\x98\\x96\\xa8HH\\x80\\x80\\xec*\\xcaV]B\\x1f\\u007f\\xf1nZU\\x14KQ\\x90\\xc2K\\t\\xe2\\xd9\\v\\xb8\\x11\\xe4'\\xaa\\xb0{c3\\xa5\\xdba-dꨢ(ӢmDa?W5U\\x16\\x14B\\x81T\\xb0,\\xc37:\\xb1\\x90\\xf3\\x91M\\xbb3\\xa8,{\\x16\\x92\\xb6\\x15\\x9e\\x87J\\x1e\\x01\\xef\\xaa.F\\x92\\x86!*\\xa2\\\"c\\xac\\xd8\\xd86\\xb5\\x88N\\xb2\\xb6\\x94\\x9e>-\\xb3\\u007fqh\\x13*\\x1d9\\xfbf\\x99\\xe4\\x1a5\\x0eäs\\x98M$\\x80\\x88\\x86\\xf9:9\\xfd(\\x8e8\\x85\\xa6\\xbbR;nV\\xa0\\xa6\\x81\\xe0<gs\\x88V\\xefF\\x9bG\\xf9\\xad\\x85\\xbd\\xb9=a8\\xfb\\xc6\\x05\\x80\\x1c\\xe5Th!\\x9a\\x8a\\x86\\xae\\x88\\x1f\\x15\\x11Z\\x9c\\xdd\\x1b\\x9b*i\\xfeKA3B\\x18^\\x1b\\x01M\\xc4\\xf4\\x90,\\x17\\xb6\\xe6G\\xb3\\x88\\xa4\\x88#Ű\\xe0\\xf3\\x84\\x98^6\\fY\\xae\\x1f\\xb0\\xf3\\xb6\\xffF\\xd6\\x141\\x15U\\al]R\\xbdD{\\xc3\\t\\xc5\\xe4\\x106\\x9e\\\\d)\\xedD\\x83\\x93\\x89\\xd6\\xe64\\xad\\xd2\\xf4\\xc2t t\\xf4ޣ\\xe8d`q\\a4\\xbaV\\xf3\\xd3\\xd3\\xf9\\xc0\\xa8\\xad.\\x1c=\\xba\\xb0\\xda\\xd9D\\x87\\xcd\\xe3\\xa1\\xfa\\x96\\x1d6Rq\\x014$\\xf6%$\\xef\\x19\\xe4n\\x9fY]]E+\\xc4\\x19\\xa0\\xd3./\\xaf\\xfa\\u007f^9\\x8c\\xb6\\xef\\xef%\\x00\\xef\\xda\\xd3h\\x17\\xa0.aĞX\\xf2\\xfd̂\\x1e\\x81E[\\xe4<\\xc1\\xad\\n>k\\xe5r\\x16\\xfcVӍF\\x1a~h\\x9f\\xe7\\xb9\\x0e\\x0e\\xd0\\xf7\\xab)\\xed\\xb0\\xaa\\xa2\\x9b\\xe1\\xb9\\xfd\\x8a\\xfa\\xe5h\\x99\\xa6\\xb5\\xace\\x9a$\\x9d\\xfe\\x82\\xf7\\xfc\\x0f-ER\\xab\\x87\\xe1\\t\\xa9\\xd5\\xc7/\\xaf_\\xe1\\xf1\\x1d\\x18\\xad\\x85\\x9c\\xf5;\\x02\\x92\\x9fT\\x98\\xa0\\xc8ܞ\\xe6\\xd4\\x103\\xe10\\x84\\xfc\\xd3\\xde\\u007f\\xb6\\x1a\\x95b\\x8c\\xa7\\x03R\\x83c{\\x05~\\x16풶\\x93\\x99p\\xcccfg\\x82\\xedt\\x14mɬ\\x1c\\x9bX\\xa6#A\\x8c-\\x90\\x1fK\\x99qj\\x90Թ\\xf9d`s\\xfc\\xbcq\\xec$\\xc3\\xc7`r\\xadPZ\\xabCmʖIOn\\x18\\xb1\\xfal\\xb9\\u0600\\x05Q\\xf4\\x89VR\\x03\\x16\\x10\\f\\x9e\\x13穩\\x83\\x17ֈk\\xb5K\\xe9t\\xa9\\xfdoԸ\\x19Z\\x06o\\xbb\\x84V\\x98\\xd5\\x04;\\x84\\xda!\\xbbs&]Z-\\xa5\\x9f#@\\xc8\\xd2\\tH~\\xb6\\x9d.Q;O\\xdc\\x15h+\\x1cq:\\xe3\\xb8\\xfb\\xf2\\xdfÈ\\x0fi\\xea=\\xb2%ߣj\\x88K\\x82\\x17|I\\xc6\\x17\\xc3\\xdc2|\\xa3R]\\xa8|\\x0f\\xbb@\\xf9N\\xa7\\xf7\\xd1r\\xff7d\\xae\\xac\\xa1+i9\\x91\\x1e\\x82\\xb2\\xe6\\xa7B\\xbb\\x83\\x1f{\\xfc7\\xf8\\xe6\\xf7\\xd97LчA$\\xfe'\\xbb\\x82u\\f\\xe2al\\rl\\xec\\xcdH1\\x92\\x87_\\xff\\xbc\\x87Y?8\\xe7\\x11G\\x8cK\\xac\\xd3\\xf5\\x1fZ\\u007f\\x1e\\xd5\\xd1)O\\x97,`\\x0e\\xac\\xe4\\v\\xed\\xc2\\xcc\\x1e\\xfd߀\\xf4\\xbc\\x01\\x90\\x9e7\\xe8\\x06\\n\\x03\\xc6\\xe4\\x87W\\xb3\\xf0\\x80\\xd8쫉Y\\x9a7P\\x99W\\xc4\\xf2䈾i_\\x8e\\xc1\\\\\\xba\\x1f\\xd2\\xf4\\xdcY4K\\xeb@9i\\xdd\\xfev\\x03\\x1f\\x9c\\xed~\\xc0weE\\x86\\xe1\\x8c\\xe4\\x02\\x1a\\x83d\\x0f\\x02\\xb4#+\\xd6g\\xe6\\xc5V\\x13\\x17\\xa6\\xf8\\xa2\\xc79\\xf4\\x80\\x0e,\\xe3\\x82ɣ\\u007f\\x170\\xeb ,\\xe4\\xdfȻf<\\xa6\\xa9Q+jX\\xc2\\xeb\\xffJq\\xcd4\\xbakVeJ\\x9d\\xea\\x967\\xa3\\xb4\\xe9\\\"\\xd8<\\xc5o\\x92\\x1e\\xfc\\xa6(\\xf0\\xc9#|T\\r\\xc9\\x126TC8|\\x83\\xaeƮ\\xacb\\xc3&\\xafm\\x03\\x97_\\x15Su\\x0f\\xaez\\x12\\xfd\\x1c\\xd6+\\xcc\\xfcV@\\x8a|\\x1eճ\\x84Z\\xd9;Ι\\x14\\x87o\\x16\\xe3;OB\\xce5\\xa3xm\\xf3\\xf8it\\xdf\\xf1k.\\xd0Ԃ\\xa2\\xce,\\x10\\xe3b\\xe3\\x17&\\xaf\\x930>\\x8b\\xa5'\\r\\xe3\\x92\\xca8\\xba\\xef[\\xf7\\xb5Ux\\xafL\\x1c\\xbf\\xffx%\\x8f\\xa5\\x1a\\x93\\xed\\xe2<<\\xae\\x15\\xb4\\xf5B\\xact\\xe2~-\\x02B\\xfe\\xa8l\\x90\\x9b\\xa2X\\x02\\x91\\xb9\\xbb\\x1b\\xceF\\x17c\\xb9z\\x99\\xac\\xaa\\xb7\\xabiu\\x8a=\\xe4˪\\x12\\xd5'\\xc0of\\xf2\\\\ҭ$\\xfcs\\xf8\\xbd\\x19c\\xa2q \\x91OҐ\\x18>\\xa1\\x0f\\xf8D&\\xafl\\xe5n/\\x05|\\x82\\x19\\x9e\\xbf\\x86\\xf6R\\xdb\\xd3dNcA\\xa6\\x93\\x80\\b\\xe3\\x12{oL<\\x1cUM\\x13\\x9f\\xc1\\xa6a\\nSo\\xc0\\x86\\x8cr\\b@\\xfb\\xd3\\x10\\x1cC\\xb9\\x84\\xd1yڈ\\x1a\\x8f+\\x06~N\\xd6$[\\u007f[\\x97O\\xbbBmM6\\xb8}\\xdc\\xe1\\x8d:\\xec\\xadX\\x91\\x91,6\\x1epu\\x9f\\x82Ql\\fj\\xb6\\xe7\\a\\xc2T\\x10\\x9e\\xeeV\\x8b57\\xfc\\xe7U\\xe2\\xa3q\\xd5?\\x0f\\xbb\\xb5\\xb5\\xdab\\xf7=Z\\xeaz\\x97\\xfdg\\xc8^\\xaam\\v\\xbb\\xed^\\xb8톷\\xd5j\\xb5\\xa5^L\\xcf\\xe1\\x98\\xec\\x01\\x93-\\x9b\\xa4\\xf2qTKC&V{jS\\x98Z\\x83+\\xb0\\x88r\\x8b\\xaa\\x1cQ~b\\x16I\\x04\\xfe`Tl\\\"t\\x1f\\xa7\\xf3\\xae\\xc1\\xb7\\x91\\xa1\\xa4\\x1a\\xad\\xa4h\\xc0\\fW\\x14\\xdd\\fG\\xd5\\xe1\\xaa#\\x18b\\xb25\\x9bV\\f\\x14{\\xdfՀ\\xc4]\\xfd\\xbe\\xcew\\xc3\\x11˚\\xce'\\xc7\\x14\\xc9H\\xba\\x92\\xa8c\\xf5\\xf7\\x00L˄\\x8a\\xe3\\x18`(C74E\\xaa\\x140\\x1e\\x1f13XS\\xae\\xbfK\\x8b\\x92ZG\\xb5\\xbb\\xee4ͷ姇\\x12\\xa1\\x84j\\x18\\xba\\x8a\\x03\\xb6\\x80b\\xdc\\x10\\xb3\\x05dǺ\\n\\xa40\\xf7X\\xf7\\x17d\\xdf֑[\\xefZ:\\xf3\\x98\\xe9d\\xec\\xe8\\xf1\\xb6BM\\xfe^\\x16\\xbd0z\\x99f\\x9er\\xf3c\\x94r\\xb8z\\xc23:zʼ\\x8d\\xe0\\x88\\v\\x18)\\xcf2\\x9bӹ\\x1cA$\\xdfH\\x89\\x87\\xff\\xf2$\\xc5\\x14k\\xd4pp\\x19P\\xc5\\x05\\xec\\xf3.\\xbfNu\\xa3C\\xd4^3\\xe7\\x12\\x9a\\x17\\xd5D&+E\\x98e\\x94\\x01\\xd8Nj\\xb1\\xe2\\xec\\x16\\\"\\xf6\\xd1\\x15\\xc5b\\xa2Y˫RD\\x8b\\xccGԨ\\xb4|\\xec\\xe0\\x85\\xc7'J\\xe1\\xd5pi\\xe2\\fS\\x8b&\\x1a\\xd2r\\xb9\\xac))\\xd3L)(w\\xc1\\xab\\x8f\\x1fX\\x98\\x19\\xaf!T\\x1b\\x9f\\xb9\\x9f\\xa8UO1\\rk.\\x88;\\x13\\x98\\xe4p\\xcf\\\"\\xb9\\xeckygQp\\al\\xc5L\\xe4բ\\\\i\\xc08\\xcf@\\xddH$$\\xa2*\\x86\\xd4\\xfa%\\xd95=\\x95C\\xca=\\xa8x\\xb6̟\\xa7\\xdd\\xf2\\xe7\\xcd\\vSv\\xe7\\xb7\\xedT\\xbb\\x16q\\xf3S\\xf9x\\xd4\\xd03\\xdb\\x00\\x90@\\x99\\x11sX\\x81\\xa7b\\xd7j6\\xf5\\xe4B#\\x19f\\xf2\\xfc\\x05\\xda\\xf3\\x1f\\xe3/iLک\\x94=\\xb9\\xe5\\xa0r\\x994d\\x13\\x99\\x04{Hz\\x05/h\\x00\\xc3NI\\x13C\\x13&\\x0f`\\xbb\\xa5\\xf0B:\\x97Lf3\\\"\\xafX\\x18a>464!\\xf5x\\xa3\\x1cz\\x9c[ \\x12\\xf1\\x88\\\"\\x1e؛\\xbd\\x94u\\xd7d\\x1aP\\x84C\\xc9\\x14#vzJ%<QK\\xa5ܲ,O\\xa3\\xc92\\xf0\\xc1\\v\\xf4\\xf5h6\\x92;~\\xe0\\x82\\xe3|뀮\\xec\\xd2,^\\xe0uuxk\\xb527\\xac\\xe9P+\\xd8Bv)\\xfa\\x81\\x16\\x9f\\xad\\x0fM-\\xe4\\x11\\x1aqL\\x15\\x06\\x04-E\\x86\\xa2\\xa5\\xe8\\xad\\xfb\\xae\\xbff\\xaf~\\xe5\\xd6\\x0f\\xa9!ހ/-\\xc8A~Sun[\\xe5.\\x99\\x87\\x80\\xac\\x89(ć\\xd4\\x0fm=b\\xa4\\xa7R;\\xc7o\\x8d\\x96S\\xa5%\\x95\\xe4\\xc1\\x05m\\x96\\xab0\\xb3\\\\\\\"\\x11\\xefvE\\x13\\x85X\\xbd\\xe1R\\x951b\\xb1\\xa7g\\xfa}\\x85\\xb2\\xf7\\xd7V֘\\x90ug\\x99\\xeaI\\xd7r\\x1en~\\x12\\xad\\xe4rK뜓A˙\\xce\\x1fù\\x05^\\x8f&\\xbf\\x86\\x1e\\x83y#\\x91\\x13(\\x0e\\xd9՝V\\x9c\\x11^\\x88\\xb0q\\x8bٟkv\\xf7\\b>\\xe6\\x10V\\xe3/f\\xcb+\\x1fP\\xa3&\\xc0\\xe0aEE|8\\xe2,\\xce\\xc1\\x1ePږw\\\"a\\x9e\\xc0b\\xb7\\x02\\nb\\xc3[CCB8\\xb1gb\\xdb\\xe5z\\x8c\\xac\\xf5\\x18\\x9eX(O\\xecI\\x84\\x05\\xc2c\\xfb\\xb9G_#4\\x8dJ\\x9f\\x95\\x16\\x06\\xb3\\x16\\xed\\\"3\\xbad穀\\x1c\\xbc!\\x12@k\\xc4J\\x17:\\xd58x\\xb0\\x91\\x9b\\xabB\\xe3R\\xe5r\\xbc\\xc3\\xe5\\r\\xe8s\\x81_\\f\\x8bRJi\\xcfU\\x9f\\xd5L\\x98u\\xd59\\x94[)ϖ;+\\xb9\\x04F\\xee\\x90J٨\\xb8\\xbbf\\xd2Ԯ$\\xb3\\xb7\\xffZ\\x00\\xf0\\x89l\\xc3v&\\xb6\\xda\\x13\\x9c'\\xbd_\\x9f\\x11\\x8a=\\x11{8\\x8b\\xbbB\\xf7.\\x89\\xafS>|\\xef}O \\xbfQ\\xa9w\\x15\\x8b\\xe97A\\xa5c\\xb4\\xd6i\\x13[\\xf7G\\xa8x\\xce\\x11b\\xf0\\x9e\\x89\\xcc\\u007f\\xde\\x17\\xa2o\\xcf\\x06\\xe5\\xf1\\xb5\\x94\\xec\\xc8)Yf\\x8f\\t\\xc71\\x10lL\\x8b\\x94\\xf6ej\\x9d\\x87P\\x8e\\xa5k\\xfbR\\xfc\\x87\\x0e\\x19˞\\xf4\\x05u~\\xd6\\xfd\\x98>\\xba8\\x8d\\x8f7\\x1c\\x84~8\\xf2\\xf21\\x87\\xd6y\\xb4\\xa9\\xe3/\\x13\\xabXS\\xe6\\x94\\x1a\\xfc\\xbcǇ_:\\x8e\\xf1\\xc3\\xc0g\\xca\\xdcs=\\x8c\\xa3\\x87\\x1f\\x86\\xa8FO\\x89X\\x8fr#=\\x8d\\x88\\xfa9W\\x97D8|]6_\\x97\\xaf\\x19\\x10\\xd7j6\\x96st\\t\\xe6Β5hYDY\\x82\\xb6̢f\\xbfh\\xb5\\x99҃\\xef\\xcd!o\\x91vV7[\\x9d\\xa7\\a\\xd3S/\\x17\\xa4IO3\\xb8\\x8d'\\xc6\\xd2\\x1c\\xa8`\\xbdQ\\xc4\\xc5\\n<\\xea\\x8dJ\\x03\\x10$\\xf8ߪ\\xbb\\x10۠\\xefݺ\\xcb疗Wj\\x89\\xd7Uc\\xb1ۭڞ\\x82\\xae\\xd4\\xda횢\\x17\\xf6Ԭ\\xdbc\\xb1\\xea\\xeb\\x12\\xb5\\xb3\\xb1x̲\\xdeo\\x18\\x9f\\\\\\xd2\\xf7Y\\x822\\xa6\\b\\xd6>}铆\\xf1~+\\xa0\\xfbH8\\x91S\\x14\\xb6\\xf6-\\u007f\\xc6\\xfah\\x91\\x10\\xe9\\xd2\\x1e\\x8b\\xb5\\x9a2c>3S\\xd0\\x01?:\\x99\\x9fN\\xc5.\\xf3)\\xb5D\\xfe\\xae\\r\\xadl\\xa9_\\xa2\\xdb\\xe9\\x15lS]\\x9e\\xceߓ\\xa8h#Lz\\xf04\\x95\\xb8\\xfb\\xf6=X}4)\\xeeS1\\xe5\\x87\\x05\\x9d>9\\xaez\\xbfe;R/L\\x87\\xaf\\xd8\\x1d\\xcd\\xee\\x18vGs\\xb6\\xec\\xeb\\xc60d\\xe8\\xe4\\xa6v\\x90\\xd0\\xc9^\\x8a\\xcc^\\x15/-u+\\xd1\\xf5\\xf6\\xd5e\\x13\\xdc\\xf6|\\xf6\\a\\xfa\\xa8\\xaa\\xed\\x01+\\x04}\\xc8\\xda/\\xfb\\x8d\\x11\\xf0\\\\\\x82\\x1bF\\xbf\\x8f\\xae\\x05\\xb8i̷\\xc2@\\x01\\xf6,\\xea\\x9aa\\xc0}\\x90<\\x83\\xf6+gO18}yY\\x12\\x04\\x89([\\x9c\\xc2_Ƹ\\x1b˴3\\xbe}\\x8a\\x81\\xe6\\x90\\xca\\b\\x89.}\\x9f\\xa6i\\xbdh\\x06\\xf3{\\xf5x\\x18\\xea\\xe1P\\xecf\\xe3%\\x00q\\xa7Շv0\\x95\\x90\\x99\\xb8{v\\xa0\\xc8\\r\\xd5\\x10UU\\x15\\xfe`\\xa0\\xc4\\xcd\\xea\\x01\\x00\\xab\\xe0\\x9dsϣ݀?\\xb2\\xbal\\xbc\\x99\\xa09S\\t*\\x84`\\x93Z\\xaa-϶\\xfe\\xf0EJ\\xa1U\\x81\\xf8\\xb5\\xf3\\xd6Y\\x14\\x04\\x91\\xc4\\x0e\\xd4et\\x93\\x1b\\x17H\\x05\\xdcM\\xf8\\xd1\\xf8}/\\xa1\\xbd/V\\x0f\\x16\\a{\\b\\x8c\\r\\xf7\\xcft\\x8e\\x9cc\\x86\\xe46\\x99\\f\\x9b\\r\\xbd\\x97׳t\\x9c7\\x1f\\xe5\\x8dù\\xc9\\xd0ѻ#\\x8e@\\xbfT{\\xbaF\\x03#\\xb4\\xc9P\\xa0܆\\xbc=\\xdb\\x01\\x90W\\x9b\\xe5\\xb5i\\x0foҙ\\xcb\\x1b\\xb3\\xea\\xc9\\xdf\\rS\\xeb\\x8c\\xfe-\\x02\\x04\\xf7`똚\\xcb\\xf4OE\\x14\\xc9Gx\\xba\\xeb\\xafY\\xf4<\\xf68R\\x16\\xb5ڌ\\x9e\\xee\\xb4\\xe9\\xce\\x02\\xa1\\x1a\\x05\\xa1\\xcd\\x1a;\\xc1\\xe0\\x04\\xc8u\\xcevmE0[Oy\\xca\\x19\\x1c\\xa4*{\\xact\\x1bJb\\xfb\\x99@ʄ\\x03\\xb5\\x9c\\xeap\\xa9\\xb2\\x8a\\xff\\xcd\\t\\xed4\\xa3\\xe8\\xf1\\x0eǨ\\x13m\\x80zTl\\x01|\\x94\\xb2\\xb0\\xaa\\xc7\\\"aع\\xceP\\xbbW\\x9d\\x1f2\\nO\\x90\\xc6\\x1bތj\\xd4\\xe5\\x00\\x06\\xf6\\xa4OP\\x1e\\x1fmO\\u05fcU'\\xe7\\xf1\\xf2X~\\xed\\x81\\xfc\\xba\\xb7/t\\xf3\\xa3}E\\xf5\\x89\\xae?_v\\x01Z{\\x86\\xdc]\\xb1\\xc1^h7L\\xb6\\xf6\\xf3\\xbddt\\xaf\\x15'st\\x81\\xddW\\x94*o\\x8cY\\xa3\\xe1\\x8c\\xf3\\xdc\\xc2Q*_UN\\xb57\\xc6\\f\\xd6\\tm(\\xb6G\\x14\\xafo\\xacS\\xe0%\\xa9S\\xaf\\xf0%OTw \\x86l\\xf9\\xe7\\xad\\x0f\\x8d\\xe9µ\\x01\\xfa\\xf4\\xb0\\xcf\\xf7\\xed\\xea\\xad{\\\\._O(\\xe7\\x87|;(ޓ\\xf3\\x9e\\xa8F\\x81\\xa8*\\x85\\xc1\\xfe\\x95\\xba\\x9d5\\x1a\\x15c\\x14\\xe0\\x05\\x16\\xf7\\xef,\\xf4I\\x16Z\\xa6)\\xfe\\x95}Jb\\x1e\\b\\x90\\x80\\xd1\\x02\\xb3:\\x8c\\x022U]n\\x9cg'\\x84ɀ1|\\x88\\xc9@\\xb1\\xf6\\x8c\\x06\\xac\\x8b\\fHߺ\\xcdY\\x8f\\xcc1\\x85L\\x00\\xca\\xe33\\xf7\\xb1\\xbc\\x0e\\xd3\\xd9\\xf5G\\xd4\\xfd\\x84(\\xab\\x9aX\\xbc\\xa5(j\\xaa,N\\xbe\\xc7+\\xc8\\r\\x88\\xde~@Ա\\xc4Kcc\\xe0`]ln\\xa8C\\xe9<u\\xa0j9\\x05,g\\xc9v\\xb3I\\xf9\\xef\\xc6QI\\x9a|Ϥ\\x8c#\\xb8x\\xcb&\\xa5\\u007fC\\x11-\\xa5\\xd9\\xc4\\x11\\x01\\x8fq\\x1b\\xdb?\\x1c\\xe0[\\xfae\\xce\\x10\\x18©7\\xbdz\\xb0R\\xbf\\xc0Č-kͲ\\xbc\\xd5\\x1a,\\xec3\\xb9܊\\xbf\\xbeD\\xd8/s\\xfc=h\\x19 \\xe3I\\xef\\x16\\x1d\\xa6\\xe1Z\\xae\\x14\\xe9\\xf5\\x00\\xc4z\\xe3K\\x80\\xef\\xfd\\x1a\\xa0\\xb3\\x84E\\x93\\xd9c_m\\xef\\xc9\\x10\\xef\\x11c\\xd6H\\xc0\\xcf{|\\x83Zֿ\\x82\\xbah\\xf9\\xe8\\xbdG3\\x0eL\\xf9{\\x8f>\\x12Hc̶\\x03&\\xf5\\x89\\xf6JW6;ݽ\\t\\xe0\\n\\xeez\\xc0\\xd9\\xdeĽ\\x93{\\x80\\xfb\\xd8F{|\\xc1;\\xd0Z/\\xd3/\\xfd\\n\\xe9K\\xe7H\\xc3[=\\xe9\\xf0L\\xe7j\\x86\\x95-\\x9f\\xe7\\xd19\\xf3\\x12^\\x02\\xc6\\xf7,\\xe1\\xe4{\\xd1}&\\x057\\u07b2\\x16\\xfc;\\xf4\\x92\\xe3a\\x1e\\xfaw\\f`\\x80\\xfcg\\t\\x86hg\\x91\\x1b\\x9bB\\x95\\xf3\\xde7\\xc0\\xbbqr\\xdb@}\\x067d\\x1ck\\x96\\x88+W\\x1a\\xe5J\\xac\\xccbZ\\xb1\\xa6\\x1b\\x8b\\xbb\\x8d8xZ\\x10\\xd3h\\xfeT\\x9d\\t\\xc3\\xdf\\xdfY\\xf4v\\x82W'{\\xb7\\x13\\x98\\x890BR\\xfe\\x82\\x13\\xa9\\xda?\\x16\\xaaEtq\\xa5X,\\x1b\\xf3\\xe5\\xa2ݚ\\xcaT\\xf3\\xfa\\xaer\\xb1Tʍ\\xa5\\x11\\xcfG\\x84\\xbd\\xf0\\xfb\\xbaw\\x8bA!\\xdew\\x8b\\x81\\xe9\\x9a!\\xdd(\\xfeâ\\x10\\xde\\x1fz\\xf7\\x05\\x11yQV\\xf7\\xf2\\xce^]\\xba\\x00\\xc5\\xf6G\\xc4\\xfd\\x02f\\xc1E1\\xb1ߑ/\\x10\\xfd\\xbbnV\\xa8=\\xb2\\x91\\xa0\\xceq\\x00ґ\\xfau\\x05b\\x88g\\x16u\\xf0o\\xff6\\x037\\x1e\\xc7\\xe8\\r\\x00\\x16<\\xedS\\x147\\xb1V\\xf65\\xef\\xea$r\\x17\\x92\\xb0\\xfe\\x8b\\xf5\\xaf\\xf2\\xef@\\u007f\\xe2\\xd9\\xe5\\xe4\\xa4\\n\\xb1\\x8b\\x00EaA\\xaeȾ\\xda\\v\\x11\\xa8\\x8fc\\x89\\x85+^\\x1cF\\xeeNC<%\\x18\\xc4\\x15߬\\xa8\\xa75\\xed\\xb4\\xaa\\x8c\\xab\\xea\\xab^\\x05\\xe8K\\xa6\\xeb\\x1d\\xa7\\xaf\\xdaQ\\xc1@\\xcf\\x18\\x02<:c\\xc6\\x1d\\xaa\\xf2NU}\\xa7\\xa2N\\xa9\\xcaҒ\\xa2Nw}S\\xf4\\x8d\\a\\xc7\\xfe\\x10\\xd6\\xe3\\xefr)B\\xfd\\xb4\\xe9$\\xa0\\x968\\bY\\xb9Y\\xaex2x\\xd8\\x17\\xc3\\x03\\x98:\\xb6ŉ\\xd3\\x1b\\x82*\\xa7\\xce\\x18\\x99\\xfa%\\xf3\\xf9ZQ\\x8f\\x89\\x99\\xad\\x872\\xc6\\x19\\xe5Nj<\\xe8\\xd7\\x15]W~\\x9d\\xd8\\f\\\"\\x06\\x83^)\\xc6F\\xf7OO\\x1cN*\\xa6q\\xd5+\\xb4C\\xe1\\x90\\xf6\\x10\\x8e\\x0fy愬\\xa38\\xa1\\xeb\\t|\\xd4bF\\x84\\x88\\x1c\\xe3Wy\\x15\\xfd\\x19\\x95SiB/\\x99\\xf4\\xb6\\t\\x98\\x98\\xcd\\x16\\xfajf\\xda\\xf8\\xba\\x92˺g\\x92i\\xcdE\\u007flL\\xc31\\x151\\xe5T\\xf4LiR\\xf7\\xf5\\xdd\\xd6x\\x8c\\xbeAy\\\"\\x036s\\x1a\\x11\\\\g\\x04\\xe8A\\xdb9\\xb1H\\vp\\xec\\x16\\x1b\\x89\\x18\\xbb\\x17\\xb1J\\x0f\\xe6\\an\\u007f\\xd6\\xd7\\x12\\xf3\\xc2\\u007f\\xbd\\x9dZN\\xdb\\xcedΙXR\\xfa\\x01\\b!\\xa5\\x17\\xd3\\xf9\\xc9\\x03\\xcb۩\\xa1\\xb5\\xed?\\xed\\xea\\x93QYt\\\"\\x89\\xbe\\x9f\\xbb\\x84\\xea\\xd3bb:\\x8d\\xea\\xc3e\\x91o\\x97\\x13\\xb5\\x1aS\\xc83\\x11J\\x17\\x17\\xb1\\xd4ٚ\\xe2i\\x94o\\xe1̗\\x13\\x8a\\xfa\\x86\\xd6V\\xb2\\t\\x14\\vM\\xe623\\x96&\\xb9\\x99\\xe9\\x85i3e%\\x87\\xe19\\x9cLlM$\\xb2XG\\x91T\\x18\\u009d\\xefQ\\xacܥ\\xee\\u007f0\\f\\xbd\\x96\\x1aS\\xc6R\\x96-\\xf3\\x92\\\")\\xeah\\x92\\xb0\\xeb\\xa3\\xc3q\\xe9I<\\x96&\\xfe\\xf4\\x18>\\xad˼\\xa0\\xab\\xa1\\x84\\x14\\xcfE!n\\x9a\\x92;;\\xef\\xa2\\x0f\\xd4\\xf2\\x88\\x9f\\x02\\x95-D\\xb0Ǹ\\x9e\\x15\\xe4xW\\xb8\\x90\\x89Y1\\x91+\\xd73\\a\\x1a0\\r:K%\\xb2l\\x99\\x18@\\xa1\\xebѥ\\xbc\\xf7\\x9a\\xaaN\\x12\\x89\\xc2Ij\\xf4n26\\xb6#6\\xa9(Vu\\xb3过5ع\\x80-T\\x04XӘ\\x02\\x89\\xae|\\v$Ri\\xa2\\x1dc\\xe4\\xdb\\x1fV7\\x8b\\xee|\\x1c\\x93o\\xe8b\\x87<\\x1c\\x8a\\xff\\u0098\\xddE\\xef[\\xdbB\\xb5\\x1e\\x88\\\\L\\x00\\f\\x9c'\\x8au\\r\\xcfX\\x0fQ\\x9e\\x99\\x02\\x88\\xc1?\\xda\\xff|\\xe1\\x96T\\xa9\\x94\\x02\\xe4A3Cö\\x9d\\x8eO$\\xed!',\\xdbʸ\\\"Ȼ\\xf6o\\xabV\\xb7U\\xd1\\xdaU\\xedܖ\\xb4\\x13\\xd3e2m\\xb4x!m\\xe8\\xe1X8\\x9e\\t\\xd9\\x11H\\x96\\x87\\xe4\\xaf\\xea\\xfc\\xe6\\xe8\\xd6\\xd1ѭ]8\\x9f#p>\\x91A\\xe5Z\\xf5~\\xaeր\\u0085_\\x17\\xc7q\\x14\\xc3PN*\\x06}>\\x04Ns\\xc7\\xd8؎\\xb1\\xc4iC\\xa9\\x91\\xa8\\xefxOp\\xd0\\xc3c\\xe4\\x1d\\xbb\\xefl\\x8d;C\\xe1P\\xb7\\xa7\\xd9\\xe5ݯ\\x19\\x13\\xbcEu\\x86^%v\\xc2\\xd4\\xc8\\xfelj\\v\\x9a\\xb9\\x85\\xb1\\xf0/\\xd0\\xc2a\\x82@\\x85`e\\xfb\\xfc\\\\\\x82\\x87\\xbdr\\x13X\\x9b\\xd2%=\\xd9$xU\\xf1\\xdfc\\xb7פi\\xcf\\xd2\\v\\xfb\\xa2U鵜 \\x86u&mCEO,@\\x94xK\\xd4jX\\xa5\\xa2)\\xf9K.\\xa1\\xa6j\\xf7(\\xd2Ғ\\xa4\\xec\\xd9$.h\\xa2|YŢ\\x90#r-\\xcbT\\xb7\\xec\\xe4I\\xa6qv\\xfb\\xedx0\\x1c\\xe4c\\xac\\xb0\\xb6\\xe5_\\xa4m\\xc2\\xff\\xefm۬eD:\\xe7E\\x9a\\xc6\\xceK&o\\x9f\\\"\\xe7%\\x93\\b\\xcbw\\x85aȁY\\x82V\\xb4\\xd0\\xffy\\xefi\\xc3\\xe8|\\xd81\\x97M\\x13qf\\xd5\\\\5;\\u007fr\\xf7\\xd2m{?\\xfb^b\\xd5l\\x19b \\x1ab\\xab[\\u07bc\\xb4\\xc7\\xd7K\\xa6x\\xf9A\\xb2O{\\xa2ot%\\xc1\\xf9R0y\\xba\\xe1yk\\x8bp,`\\xe9!bl\\xaf\\xe6\\xc6!\\xb6\\xe1\\xf1\\xe6d\\xf2j\\x9e߅jX\\xae\\xcf4y\\x1cM\\x1bC)gK$\\x12E\\xa2 h\\xf9\\xdc\\xc8p\\xd2\\x1c)\\xa6#C\\x11\\xc7\\x01\\x98Ύ\\xb6O\\xe6*\\x99Tq$V\\x1c\\x1b+\\xe8z\\xc4\\x1eUg>f\\x0fE\\xd2őd\\xb1\\x182DA\\xe4e+\\x14\\xa9ŒCF*\\x1a\\x1dvU\\xc7A\\xa2(\\xa2\\x8b5}F\\x9dqSY(\\xa1\\x16\\x8dD\\x05\\xd1\\xd0Eq\\xdfk\\x86\\xbb\\xf8\\xf72\\xbd\\x1fr\\a\\x95\\v'\\xc3G\\x87\\xd7\\xe3G\\xe3Mn6`L.\\xdf\\x18\\x8c\\x1b\\xa7\\xd6`\\xea\\xdf'\\xe2-sm\\xac^\\xb1{\\x8e\\xca\\xcf\\x11gn\\xf7\\x150\\xf6X]ز\\xf5\\x10̄\\xb9\\xea*\\xa1\\x9f\\xafVO\\xc0x-\\\\\\xaf\\x16\\xe8K\\xea\\x14\\xd4W壟\\x93c\\xf5KD\\xf9\\xe2\\xb9\\x1a\\x11\\xae\\xe2\\xd7\\u007f\\xbe\\xfee\\xfe\\x9dp.\\x96\\xe0\\xf4\\xe1$\\xb2\\x13W<\\xe0û\\xed\\x8c\\x00\\x80n3P\\xa1\\xf0\\xc6UJ*L\\x01\\u0096\\v\\r\\xe2\\xef2TG3^\\xf8#\\xfa\\xf8\\xa3\\xb9jj\\\"%\\xa5tZ\\v\\xe7\\xa2`\\xd5g\\xe5\\xe1\\xe946g\\xa2\\x96\\xa6\\x85\\x92\\x86\\x8a\\xbeA\\x1f\\uf7ac\\xce\\xc17\\xab\\xa6\\xe5$R\\x8cB>V^\\xe9o\\n\\x1eMM\\f\\xc1\\x89R\\x91\\xf9B\\x90\\xce\\x11\\xa2R[\\xf9\\x99\\x00\\x9d\\xa3\\x14\\xd0'\\xf7l\\xf9u\\xef\\r\\x8d\\xc7`c3<\\x8bIk\\xc4\\xe0^Ʃy,\\x99\\x1aDqF\\xe7\\x97\\x14\\xae\\x17\\x8d\\t\\xc3\\x18q2\\x04}!?j\\xa6\\x98\\xf1\\xe3i\\xb9s\\\\\\xbb+\\x8fB\\x84\\xfe\\x8a\\xb1l\\xf0L\\x00\\x00x\\x8c7%f@\\xad\\xd9*S\\xcd\\xc3\\xfal\\xab{\\xe1\\xe3\\xe7\\xc8}}\\x0fk\\xd5p\\xda\\xd6\\xe9\\xbdL\\xa3\\xc3bVN\\xc8Q\\x1cR%\\xc1\\x8e*bv\\x87\\x9e\\xcff\\n\\xca6\\xed\\x1ev<\\u007f\\n)\\xd2\\x1d\\xb0Eex+-F\\x13\\xc3\\x16\\x95|\\xfe\\x8f|CI\\U000c2b05lCU\\xb0\\xad^\\x14No\\x99L[|\\xd4;\\x8bپ\\x84|\\xddSf\\xdd-F(\\xfdr\\x91\\x19\\xd2\\xf1\\f\\xf5\\xb1+\\xef\\x98\\x18\\x06\\xb1\\xe3\\xe1ƻ\\xb5\\xfd9\\u07bb\\xc3ү\\x93\\xe0t\\x8a\\xeb)\\xb5\\xae\\\"\\xc5=\\x81uY\\xd8\\\"\\x9a\\x11\\xe5D\\xe5\\xd8b=\\xa7\\x9dbX\\xe0g\\xf23\\x8b\\xc7*'BIi\\x8b`j'\\\\H[\\xd7\\xd2j\\\\ֱ,]\\x8f\\r\\xbcs\\x0f\\xe6?\\xc6p\\xc1\\xa0.V\\xa6\\xa7\\xe7V\\xeaj}\\x05\\xd4\\xdc<\\xf5\\xb6\\u0383\\x84\\xbcg)\\xca\\r7\\x10\\x81R\\x1b\\x9f\\xf24\\xdb.\\u007f'\\v\\xdfx#{\\xffN\\xec\\f\\xe6߳\\xc7\\xebkx\\x05T\\xda<r\\xc5M\\x1b\\xb2\\xf7\\xb0헐\\xbf\\xaf\\xbffw\\xb3\\r\\xa8\\xaf)\\xe7\\xca\\xe5\\xcas\\x15\\xcc\\r\\xe6\\x1f\\xb0\\xe9\\xebuK@U\\xcdSQۤ\\x00\\xdfd\\xe1ƞ\\xeb\\xcei~\\x01`5\\xca\\u007fo\\x15<\\xbcCf\\xa6i\\xfd\\x9bw)4\\xea\\xd2\\x1d:\\xb0\\x87Ũm\\xdb\\xde\\x17\\x84\\xdc^\\xf1\\x8d\\xe7\\x87\\x14Yګ({%Y)\\x9a\\xaf\\xa8\\xd1e4\\xb2\\xb5Zm\\x8ddf\\xa9}\\xaa\\xda+\\xccb/M\\xcez\\xef\\xa7\\xdfk!\\x8e\\x928\\x96\\xc3,:\\\\\\xd9\\\"\\u007f\\r\\x16\\xa7\\xa4\\xcd\\fW\\xb7\\\"4W\\x19\\x9e\\xd1$z=\\xc8\\xd7\\xe4-\\x15?Ձ+\\xae8\\x80r\\xfd\\xfa֞\\xde\\xfd\\xccKּ\\xf7\\xaf\\xb9#\\x95?\\xa7\\x16\\xfeIv\\x99\\xe0y\\x94\\xf1\\x1f\\xaa\\x11#\\x8c\\xc49\\x1f\\xcdg\\x13+?\\x01\\x9a\\xcf#\\x0f\\xdd|\\xf3C7\\xbf\\x9d\\x8ai\\xdcȴ\\x82\\xd8,\\xec\\xfc\\xf8f\\xf2\\xea\\x9bT\\b\\xe3uT\\xe1\\x87қ\\x15\\xeeN\\x98'\\x8aW\\x0e7\\xc2f\\xca6\\xbe\\x9f\\x14\\x88\\x16)Pw\\a\\x85\\xfa:\\u007fN\\x1f?\\xa2n\\xe0\\x8f\\xe6\\x97X\\u007f\\x92{\\xb8[o\\xbf\\xd6;xV]ޛ\\xe8\\v\\x83\\xdf\\\"ec\\x01\\\\\\xff\\xbd(\\x84\\xf2\\xb7\\xfdܴiw\\xa6I-\\x03\\x90q\\xa0\\xc6\\x02\\xa8\\x14u_L\\x9f\\xa6\\x02\\xe33?%b\\xe9u\\xaf\\x94\\xb0\\xbe㰨\\xbf\\x1b\\x02\\u007f\\xf8\\x16\\b\\xdcx\\xbf\\xa8\\x0f\\nD2\\xd2%\\x96^\\xf9:\\t\\x8bE]<\\xbcC\\xc7қ?\\xc7\\x02\\xf7ߨ\\xf7\\xad\\xb9X`Ϙ\\x87i\\x02\\x8b\\x8eΏ\\x96\\xb7Y\\xdc,ÿ3F\\\"ᛎ~\\xab`\\x18\\x86\\xf0\\x1al\\x9aO\\x9bf?\\x0f3\\xbd\\x89\\x14g\\xc0\\xaex_\\x9b|\\xeb\\xe2\\xfdu\\u007f\\u07b32\\xdeo\\xe3bx\\xe3-\\x9a\\x95A\\x9bߧ\\x03<\\xce\\x1f\\x0fX\\xfe\\xee\\xbb\\x03\\xf3\\xbaGi\\xec\\x83\\xfbi\\x9a\\x13\\xba\\xaf\\x13蕕!\\x9c\\xc8\\xc1҄0\\\"\\xf7\\xdbRa#b6\\xa9\\xc0\\n\\xa5*\\xc9\\xc1\\x82\\xbfxJ\\x16\\xb0\\xb0\\xf5\\x94(\\xb6\\xa4\\xe3Y\\x82b\\x11\\x9f\\xe8\\xe2\\xfe[8\\xa7Nm\\x85d2$\\x9b\\x13\\xd5,`q\\xa2\\xd4\\x12!\\x95Ӆ\\xb1w\\xa3?\\x05\\xbc\\xa7M\\xed@\\xc1\\xea\\x0501`\\xbf\\xd8W\\nĳTܲ\\xd5\\u007f\\xc9\\x04\\xbb\\xff\\v\\xd3[&\\xf8\\xb9\\xd3\\xfa\\xd0\\xe4\\xaeZ\\xcc\\x10\\x1dux<3\\xb9\\xff\\xc2\\xe9!\\xfd\\xb4\\xb2\\x06[\\x92d\\x18\\xb2\\xe6w\\xfe\\x1bUI\\xc9\\xc6D\\xa9\\x8e\\xda(|J7\\xacEͭl\\xaf\\x1a!\\x9c\\xb8ttl\\xbe\\x1cW\\x17-C\\x87\\xcd\\xf5\\xdbp:#\\x11P\\xf9+\\xfdFG\\xa5pܻkB\\xe8\\xdb\\v\\xb2\\x1c7\\x8f\\xd8\\xd4\\xf2\\xe9\\xf8Rs\\n\\x85)\\xe3\\x8e\\xf4]\\xeb\\xfb\\x8c\\x8e|\\x01\\x9bi\\xaf\\x17\\xb1\\xa9\\x9e֥\\x05\\xd91\\xe0\\xf1-JbF\\x12\\x9dt\\x82bI\\u0082\\xa4\\x9f6\\x1c\\x19\\x1e\\x03\\xf3#\\xb5\\x91w.Q\\xe5'f涏E\\xde\\xf9\\xf0݊r7\\xec\\xc5\\xff\\xae\\xc8}\\x8c\\xf1U\\x1aO\\r}\\x0e\\xe4\\x1d\\x9c\\t\\xd4\\xea%\\x9dt\\x94\\xbb\\xd57\\xac\\xc7z9[\\xbd\\xe8@\\xc6\\x03\\xf9\\x0e\\xdaL\\xb3霦\\xab\\xaf\\xb6\\xc9\\xf7\\x03K%\\xd0\\x0e\\x9f\\x1et\\x16\\x11\\x1bN\\xfb<\\xbd9J\\x11\\xf7\\xe4t\\xcb]\\x89]\\n\\xf6dy\\x02\\x15\\xfbR\\xbaT\\x10Pv}_V s\\n\\xb5T^\\xcf\\x0e_|\\xd2\\xceJ؈!>\\x0e\\x8f|\\xfc\\xb5\\x8bɴ(\\xf1\\xc8\\x10\\xf4X\\xa4:o\\xbd[\\xc6H\\xe6\\xb5\\ax\\xfe\\x1d\\xccw\\x9b\\x92\\x18.\\xc7\\xe2\\xaeQ\\x98\\xd0\\x05\\xe5\\xf2\\xfdX\\xca\\x18N\\x1cKY\\xa3\\xbd$!\\x11\\v\\x13:/V\\x8b\\xaa<\\xa4ٮ*gT;\\x17\\x0f\\xc9|\\xe0n\\xb9\\xa6gw\\x9e\\x81\\xb8\\x14\\xab\\xf4\\xccS\\x13\\x99ϸWsS\\xf44{<-\\xd9:\\x82÷\\xf3}\\x80h3\\x86\\x91\\xb9tgkZ\\xc5CXͦՈ\\xa9c\\xf1\\x90a\\x1cz\\x13\\x96\\x96\\x89\\x96\\x18\\x83\\x85\\x17Z\\x17\\x14\\xb16\\xa2ȶ\\xa8h!S!2Ho\\xadKطۃ\\xc6\\x00\\x9e\\xdcM\\xb5\\x95\\x88\\x19\\xa1\\xae5\\x8d\\x02\\x15̃\\x95\\xc7t_\\b-\\xa4R\\x0e\\xca_\\xcdP\\xe5p\\xa8\\xa4\\xa7>\\xe3~{b\\xd22\\xb6\\x8d0防\\xcc\\xcb\\x05M\\v\\xdb\\v\\xa1H\\xecxaJ\\x14wo\\xe17\\xbe2\\xd4\\xef\\x85\\x0eM\\xe6+\\xdeM\\xefYɔ\\x00\\xf3\\xd1\\\"\\xa1\\xb8\\x9c\\xd5f\\v[.\\x18\\x8cW-!Ї\\x04\\n.\\x12[l\\xb4\\x83\\xa8)8O\\xd8\\xd3g\\xea\\xf9\\x8aVe\\x0f>\\x80\\tN\\xb6\\xe8\\xd9\\x03\\xaa\\xb4\\xdd0\\x1a\\xd2E[? \\xcb\\xca+%\\xe1w\\xe1\\xa894\\\\\\x91>f\\x18\\xf7;\\xa3\\x87a\\x16\\xa0\\xaa\\x81\\x96\\xc3\\x11诹\\xfd\\xfco\\xcaaჂԐp.\\r1i,MR\\x1a<\\xb1\\x9d}\\x16\\xdd\\x02u\\xd9\\xe6\\xe9i{\\x95!\\xa0\\xd5P\\xd7Lz\\xd7\\xd0xÿX\\xc0\\xb3i\\xcb\\u05c9Ld\\x1d]\\x83\\xb1\\xb0\\xb4\\xcd0\\x8e87\\x1b\\xc6\\xcdp6\\x90\\x87s\\xc40\\xb6-\\t\\x18\\xefV\\x84V\\x9a7\\xc2-AA\\xab\\x86\\xfc\\xa0\\x913Jip\\xa8\\x94I\\xceH\\x97\\xc0yP6𭋥\\xe2\\xad]\\x1a\\xc6YDd\\x92F\\t\\xdc\\xd4*\\xf6\\xaa#\\xf7է\\x18D\\xb0`\\xfb\\xa27*\\x12<\\xfd߮\\xfe\\xb8a|\\x1cC71\\xcc\\t\\xa0<\\xe3\\x13\\xed\\xcb.\\xfb\\xf0\\xc5#\\xd5jq\\x85\\x88\\xb4\\x01\\xec\\a/\\xabP\\xf8\\xa4\\x84\\xffҸt\\xe5\\xb2\\x1f<8Z,T9_\\xbf\\xbaM\\xd7\\xe9%\\xdc+\\xb8\\xab\\xb8c\\xdc\\t2Z\\xfee\\t\\x98\\rT\\xd1\\u007fz\\xbd\\xd2\\xdf;\\xa8\\xde\\n>\\xfdޕZEr\\x13\\xe6<LТK\\x12W\\x8a2v[EX\\xf0[H\\u007f\\x16]~v\\x17\\x86\\x93\\xef\\xf0\\x18\\xafmU\\xf9\\xf1\\x16{\\x8e\\xc2\\xf2د\\xcc\\x1bF-\\n\\xe5\\x8fi|\\xe4\\xd7\\x1d^\\x9d\\xd0x\\xe7\\x16\\x93צ`e\\xdb5\\xa3s\\xa7Q\\xd6e\\x84\\x90\\x90U.\\x93ߖ\\xe2\\x05\\xde\\xe0\\x85{\\x8c\\x8a!\\b\\b\\xf1Y|\\x19F\\x1ci\\xfd\\x97T\\xf5K\\xe4G;\\xa0j\\\\&\\xa9\\xea嗳\\x9ft\\x19D<\\xd8lN\\x1b\\x89{r9U7\\f\\xfd\\xadͦ\\x9e0\\xe2\\xef\\xcb\\xe5<\\x98\\x96\\xdd\\xebJ\\xf6Ǎ:\\xb4\\xbe\\x94\\xf4Y\\\"\\t\\xadu\\xce\\x10\\x90\\xf4\\xc9\\xd5\\x15Y\\xc3\\xd7a4\\xa7\\x99\\x9dG)\\x95\\xfaiͼK^\\x818O^\\xd0\\xcbs\\bƼAm\\xd1l\\xc8\\xd9\\x0ep\\xbe\\x82\\xf6\\x89\\x03э֦\\xa5\\xb7\\x8d\\x87\\x8d\\x81\\xbf\\xe5\\xcd*\\xd4y\\x0f!;\\x1a\\x17Q\\xf7\\x10q\\f\\xbf\\x8e\\xe2\\xfa\\v\\u07b9\\x10\\x83\\xfa]\\n\\xb3\\x82\\xc8\\xf6\\xf7n\\xb1\\xec\\xcaԖ<rE?\\x81\\xa5gԮ\\xe5i\\xe9\\xf9ӧK\\x8dsq\\xbdr&x\\xb7#S܄\\x9f\\xbe\\x93\\x92^V\\xba\\xbe\\x8f!\\x15'\\rA\\xba@\\x14\\xf5$\\xa4\\xd9.\\xeac\\xba8\\x9b\\xb3\\x96\\xe9\\xb5hˀl\\u0558-ж\\x8a\\xa3\\xa6\\xb6\\xdf#\\xbau\\xbd\\x87y\\x012\\v\\x85t\\x15\\v\\xfc\\xaa\\xae\\xdf@m\\xa2n\\xd2F;h\\xea\\xa0+t!\\xfd*m\\xb46\\xb6q\\xf9\\xe5\\xb4\\x11\\xe5\\xfcFv\\x9e\\xa6\\xaa}\\xb5\\x95\\x97\\xd1H\\x89\\xb4\\xd1\\xd3i*\\xf9Z\\x1a\\x83\\xf7\\xcfU\\xce3\\xb2\\xe7\\xbe\\u007fpÝ\\x8f5\\xef\\x12@p6\\xb6\\x99\\xbe\\\\\\xf3\\xda\\xec9\\x88#\\xee:u\\x83\\xd7\\xcd\\x0e\\x8e\\xea\\xda\\x06\\xf9A\\x9ae\\xf0\\x8e͗\\xd4Na\\xd3\\xd1\\x1d\\xd46y\\x19\\xed<\\xbb\\xb1\\x9d'_z;\\x1178\\xb2/\\xdeN2g\\u007f\\x84\\xfe\\x10\\xda9L%\\r\\b=\\xbf\\x8f½\\x91\\xd0\\xe96\\x99alFr\\\"\\xfc,\\x14\\x10\\xd8Ǜ\\x8e=i\\xa3G\\xe8\\xb6z\\xd4o\\xad:o\\x97\\xb2r\\x88פ\\x90\\xa1\\x8e\\x8ckR.G\\x8d'}x\\x939\\xeeS\\xbb\\x03\\u05fb\\xb6?\\xa1o\\xa9\\xe8řB\\x88\\x97e',I\\x8a\\xb8\\xb3\\x1c\\x1d\\xbe\\x9a\\xdalR\\x06G=\\xd0V\\xa2\\xc3B\\xdbZ:o[*/\\xd2\\x13\\x15\\xb7o\\xe0=M8t\\xe1\\x86f\\xe5\\x87i\\xb32\\x9bu\\xc2w{\\x8d\\xf4\\xae\\xa6\\xfd\\xeayZ\\xf5\\xfcfݰ=0\\xe4\\xa4\\xd5]\\xd95\\xe4\\xc9|\\xedݨI\\xd5U\\xb0p(\\x80LL\\x14y\\x16װ\\xc9S;vl7\\xa2\\xf6\\xb5\\xa8&9O\\xd5v\\x96\\x88\\x93e\\xb6~\\x8e\\xe4\\xd0\\rɢ\\x8d\\x141$k\\x86lhc\\xf9!\\xa1\\xb6X\\x8c\\x00\\x1e\\xee4,S7\\x1d=\\x96\\f\\x9f\\xf5\\x14{\\xc0a\\xca*\\xe8\\x8d\\xc9]\\x18Nl;2\\x15qF\\xcdT\\xd44\\xf9\\x9c\\x85\\xa5g$!vq8<\\xb1M\\n\\x8flh\\xc3~\\x8e\\x8b\\xf4\\xdb\\xf2j4=Y\\x1fR\\xdb\\n1:J[6C\\xe1\\x05*\\xe9\\x00p-\\xfc\\xd5\\xd9vJ\\xf9\\x0e\\xbc\\xd7\\x02p\\xaa\\xac.\\xbc\\x03\\xf543\\xc3\\x16\\x00\\x81\\x91\\xe2bM\\x88%G\\x12\\ni\\x8d\\x1c\\x12\\x15d\\x17\\x937\\xa0\\\\8\\x19#fS\\xbd\\x86\\xcc\\xd0\\xe6w\\x9e\\xdd6\\x11\\x0eU\\xc7#\\x02T\\x1c[9$\\x85\\xf4h\\xca\\x1cu\\xa0Uv\\xd6-\\xe2]\\xc9\\xe4HX\\\"\\U00018d3e\\xc6\\xfd'彍\\xf4h\\x11v|\\xe0\\x06\\x18\\\"o\\xbb\\x1dŉ\\x06\\xa6{\\x035\\v\\xf1%\\xc14\\xe6(\\xd1j\\xce0\\x85\\x1a\\x1fR\\xf4RIWB<Z\\xa3f!:\\u007fbD騜\\x88\\x1akX\\x8fD<\\xdbX>_\\xb1\\xaf\\xbc\\xee>\\xb4\\xf1֙xk\\x1f-邏15\\xcb\\xd4ښiifƁҼ\\x92^\\x93q\\xa0\\xfd\\xa7\\x98~\\x96v\\xca\\xc9D\\\"\\x01\\xfe0f2m]*\\v\\x93c\\x96=yQ\\xcf\\xc8\\xed\\xaco|\\x90\\t\\u007f\\x92m\\xc2\\x13\\xd4bL\\x12t\\xb9\\xa6\\x1d\\xcd\\va\\xedXM\\x8cK\\xd3\\xc74K\\xcc\\x1f%QbX?6-\\xf9Q\\xd7\\x13j\\xdaA\\x94\\xa3\\x8a\\xc3\\t\\xe9<)Y\\x94\\xa5\\x1d\\xfb:\\xa5\\xb3\\x1dd8d\\x1a`\\xa5g\\xa1o\\x12p\\x98QZ93؇\\xa9\\x0e\\x16T\\v\\xa6?J\\xef{\\xfd\\xbe\\aoJ\\xb8\\x8a\\x80\\xa7[\\xf7\\xff\\x9a\\xa2H\\x89\\xf9\\v\\xdb\\xfb^\\xb7\\xff\\xa6\\aEޒRG\\x9bG\\xdf\\x18\\xe5\\xc3rv\\xcc\\xed\\xb3\\xb7Dlv\\x968\\xae\\u07bd=\\\"h\\xb1sаCο\\xd0o\\x95`l'\\f\\x14\\xb8\\x18\\x86H\\xa0\\x86l\\xfb\\xc7\\x14\\x92\\x82d\\f\\x15\\nٞ\\xbd\\x1f\\xb2&vQ,\\x98\\x8d'Q\\x11%=-\\x17=`\\xae\\xd05\\xe5\\xe5\\x9b\\x05&\\xdb\\x15\\xa1:Sx\\x9a\\xb2\\xea\\t\\xfd\\x97\\x83\\x95_\\x9c\\xe59'\\xd42w\\xaavJkV\\xebF¨W\\x9bZ\\xcaVw\\x9a\\xad\\x90c\\x87\\xe6\\xa6\\xe9\\x9b\\u007f\\xa2q\\xd3s!\\xbb\\xf3\\xd7W/\\x9c\\xfdX(j\\xe5\\x86v\\x90\\xb8V\\xeeg\\x86\\xf1\\xb3\\\\\\x8b$\\xdb1\\x94\\xb3\\xa2!\\xd3\\xde>E\\xdfи\\xa9\\xed6\\xb2\\x17\\xa6\\xa66\\xd2\\x1d6P\\xa1\\xa8\\x86\\x1b\\x13\\xfb?\\xbd\\t\\xe5\\\"w.j\\x047`\\x13.\\x1c\\x90\\t\\xf4\\xa4\\x01=j\\xdf\\\"eq{\\x94\\xbeS\\x94\\xbbݥI\\xf10\\x97\\x99\\x8e&\\xbb$\\xb1<MMORQ\\x0ebԑ\\x9c\\x14=F/\\xf1љ\\\\qM\\xaf\\x97[q\\u05ff\\xf7\\xa7\\x85\\x9e3\\x05Q\\xdem\\xa4\\xe4\\xf9\\xf7\\x18Q>\\x17\\x1d\\x8e&\\x8b\\xc8LZ\\xd2\\xdb\\xc8h\\xbeQ\\xbaW\\x89\\x88[K\\xb2\\xf1\\xc5T\\xec\\x8aƁ\\xe3;gD)9\\xbc05\\xb6K\\x9e\\xcf\\xc8!!/\\xab\\xc6;,\\xfd\\xc7b4\\x1bAh$i\\rE\\xf9<\\xdd\\xf0s:~\\x93͋\\x99\\xd6\\xf4\\xb6\\xe3\\aZW\\x12\\x1b\\xda\\xf5ᩅ֨O#\\xb9\\x87\\xe1\\xa40\\xe3bԔ\\xa3w\\xf5%̇F\\xd7\\x13\\xb8\\xe2\\x94L\\x86\\xae\\x87٩Gw\\xc0\\x1e\\xfe\\xa6\\x1b\\x96\\x8c-\\xb2\\xaa\\xb6\\xa8\\x03\\x88\\xe9=\\xf0|'u\\xf6_\\x87\\xa55,\\x1d;i<\\xa6C\\xe6\\xa3\\x1aod}\\xcf>è\\x0f1\\u007f6\\xeb{>v\\xf1\\xa2\\x88}\\xd9a\\x82\\x9b֩=\\x848\\x11T\\xcb\\xc3\\x11d\\x8aDw\\x97R\\x1f\\b\\xaa\\xde`.\\xd4$Vo\\xccd\\x05\\x17P\\xfd\\xfc\\f\\x9ei\\x96\\xa9\\xb0#\\u007f\\xd9\\xf4\\xf4\\xec\\xbe\\xce\\xdfc\\xf5\\xa9\\xea\\xc2\\xf8X\\xab`9\\x19b\\xf1.\\xe3X\\x85\\xd6\\xd8\\xf8B\\xf5)8\\v\\xb3\\xfb\\x1aa\\xc3\\b+\\xcf\\xc5g\\xe3\\tMV\\x8a#\\xc5\\xf8\\xcaJ)\\xddNT\\x13\\x16\\xfc\\xda\\xe9\\xd2\\xcaJ\\x1cb\\x15Y;Y\\xad*m\\xa5\\x9fNZ\\xf2$/\\xfb\\xa8\\xbdĂ\\xfc\\xcc<\\xa0\\xee-\\x82(\\xe7\\t=;.\\xc9\\xd8\\x14\\vSB\\x85\\x88Y\\xc5a.7\\x1bAB\\xf0\\xdbPD\\tka%\\x02\\x90\\x01\\x93B\\xaf\\xa2D\\xfc\\x00\\xb2T+\\f\\xff!\\xfe@\\x9c)\\xdc\\xf4ӿ\\xfe\\xc9$\\xfc\\x15\\xb3\\x91K\\x92m7\\x99S#\\rdȪ(\\xaa\\xb2\\x81\\x1a\\x91\\xf72\\xa94Rg\\v\\xea\\xfc\\x1cԙ\\xc8\\xc2\\x12\\xe9\\xe7\\x18E\\xf6)u\\x89\\\"\\xd5\\x1e\\x94*\\x04\\xedt\\xd7[\\xa4k\\xbd\\xdf\\f\\xb5\\x05\\xb7\\x1d\\xa1\\xe7\\x94\\x04\\xc1\\x82\\x13\\x8a\\xf4,\\x12ѳRB3\\x95NM1\\xb5\\xb96\\xf97bt\\x96\\x8d\\x11Զ\\x14\\xa2\\xbd\\xa6X\\x12\\u007f\\x04\\xa1#|\\xe7/\\xe0\\xd8P\\x14h\\xc1sk\\xe4\\x9f\\xe18\\x86\\u007f\\xef\\xf3=\\xe8^\\xaeHm8\\xd3[j\\x89\\xa9~j\\xd6ʷV@/\\x8a\\\"Z\\x01\\xad\\x129\\x1c\\\\*:\\xd5r\\xe3\\xfc-\\xd1h\\xe7\\x9f]\\xf7\\t\\x9b\\xb7\\xcc\\x14R\\x959EE)\\xd3B\\x91Z4\\x8a\\\\\\xd7\\xd5\\xee3O\\xae\\x9e4\\xefˣ\\x8a\\\\\\x90\\x0f+\\xca\\x0e\\xd3\\xd5\\\"\\x96v;6\\f|\\xbbfE\\xd5T,\\xcc\\xde\\xfc\\xc7ĭ\\xc4\\xc4\\xee\\xad\\x13\\xb4\\xbf\\b|\\x94\\x839\\xb8\\f\\xbe0\\xc0F\\x97p7\\x10-\\x94\\xe2.\\x14/\\xf9\\xa3\\x1d\\xd9D\\x1bHư\\x15\\x84yٍ\\xbb2\\xbb4\\x93\\xacwB\\x84\\x85\\x81o±]\\\"\\x1bY\\x84̔\\x96\\x9cE\\xd4\\xfao\\x9d\\x11ј\\x05(\\xfc\\x90^\\xd6\\x15\\t\\xfd5\\x95*{\\x16qF\\x1b\\x80\\xba\\xb6aܦ\\xc6T\\x05\\xab\\xc4द\\x13;\\xfa\\x8a\\xacG#\\x96C<Z(\\x94\\xd3u\\xe3\\x8530E\\x12\\x9dg5s;\\xe2e\\xd1U\\x05u\\a\\xfc\\xa0&\\xfcVAͩ\\xc2w\\xca\\xe5|l\\x85\\xcd/Ծ\\xd3b\\xc6\\xc4-#\\x16\\xd7tU\\x16E\\f\\x19\\xa9\\xaa\\xac\\x99:\\xd6͐\\x01\\x0e\\xe4\\xae\\x15\\x8b7\\x03\\u07be\\x06\\xe3\\v\\xe0\\x8f:<\\xacj\\xf2\\xef+JPn=\\xd6\\xc5\\u007f\\x8er\\xb7lX\\x0f\\x94B\\x13\\x8f\\t\\x1b4\\xb8\\xfa\\xc3\\ue2fc\\xf7`\\x91b\\xac2\\xa0\\x9c\\x80\\xceҫ\\xeb\\xa8ِ\\x9f\\x86\\xd4)5\\x80\\xbbm\\x8a\\xdd\\xf4\\x1c83WW\\xbc\\xab\\xeeȉ\\n\\xd9\\xd0\\xcc\\x10d\\x06\\x19\\x85:\\x1f\\xe9&\\u007fg\\xd7\\xf7\\xc6M\\xe2\\xde@\\xf4\\xe0V\\xdaA\\xeb%\\x81\\xbb\\xa3|\\x9a\\xcbN\\xee\\x00\\xf4ѵ0\\xbd\\xfc\\xc5\\xd4=\\xd7\\xd09\\xee\\x84r{qL\\x9e\\x1b|\\xadsPi\\x82~\\xf4y\\x83)\\xa9\\x12\\xe5\\xf8\\xce٠`\\xf0,}\\xde1x_\\x14\\xfbˑu\\x89\\xa8\\x02}g\\x0e\\xbd\\x9f\\xc6\\xddL\\xddU\\x96`\\x95А\\x1f\\t\\xc43\\xb7ˋ]\\xa10%\\x91\\xf9\\xf7X\\x87Ԓ`\\xa4\\vOve3{\\xa0Ɲ\\x94\\x95\\xf8\\x17\\xb6z\\x8d\\x1d\\xb2B\\xb6E\\xddk\\bTp\\xf9\\x8d\\x97k\\xe8*\\xca\\\\\\\\\\x82\\xe0\\xd1\\xce\\xff%\\xbd{\\xf2$\\xedc\\xfd(\\x01\\x1f\\xae\\xb8\\x82\\xda\\x12Z\\xffO83$\\xf4\\xbb\\\\\\x14\\xfa\\xbaJe\\u0379f@\\xceHf\\x87o9N\\f\\xe4\\xd3\\x1b\\n\\xe3\\xf0\\x04\\xac\\x85(G\\xbb\\xc4t\\aA\\xebx<\\x05\\x006\\x81\\U00104ff9\\xe8\\xea\\xf9r!y\\x91\\x1d\\xbd8Y(\\xcf'-'nf]Iq&>:=\\x19u\\x12\\xe1\\u192c\\xfe\\xef\\xb8c\\x8dM8\\x8a\\xe4fߛp\\xa2\\x93ӎ*Fb\\x89\\xb3{\\xae)\\xa7\\xb2\\xc9d6U\\xbe\\xe6\\xa6\\xd9IIГ\\x91Ԥ6d\\x94w\\xb7d1\\x9c\\x8b凥\\xc9\\xd9!m2\\x15I\\xeay\\xb9\\xb5\\xbbl\\xb4\\xf2V:\\x82\\xbd{\\xe3\\x88\\xcc6\\xb1\\x1dK\\xee8mz\\xaa\\xefLn\\x92)\\xc9\\xe3\\x98\\xdbj\\b\\xad\\x06\\xfe\\xb7H\\xe4i3\\x92~:\\x16\\u007f:\\x151\\u007f\\f\\xdb*\\xb1\\x86\\xf4\\x15Y\\xbeDN\\x84\\u007f\\x9c\\r\\x9d\\xd0\\xf5\\x13\\xa1\\xec\\x8f\\xc3\\t\\xd9Z\\xe4/\\xb9\\x84\\xef\\xfc\\xe3\\xd2;\\x16|\\x9d\\x93\\x1f@9\\x9f\\x802\\xf2\\xd4\\\"\\xd24\\xf4\\x19\\xb5+◅\\xbd\\xf2vQY\\x91&\\xd5\\x1c\\xc6\\r\\x1c\\xab\\x90\\xc2+\\x02\\xf8Z\\x15\\xecJ\\xde\\x13\\xfd\\xb3\\xeb\\x1c\\xb3\\xac\\x13',\\xeb\\x98\\xe3^\\xeb\\x1e\\v\\x85\\x8e\\xb9\\x85\\xc3o\\xb8\\xf1\\xc6\\x1b\\xa3\\x87\\x0f\\x83\\x8b.\\xa7\\x8f\\xff\\xa6&o\\x89k3\\x8a2;\\xab(3Z\\xfc\\x96\\xa4:rsR-KRYMތ\\x0e\\x8c\\xec{\\x1f\\x1a\\x1dE\\xe5Η\\x0eV.\\xfdP\\xa52\\xb6\\xdf{\\x12Y\\xd3_\\xae\\u007f\\x95\\xf6M\\x86\\x9b\\xa3\\x96?\\x18\\xfa\\x10\\xf7o\\xe4,\\xf4\\xae\\x9b\\x8e\\xbb-ʞ\\xf4\\xc4N=d\\x82\\xc9l\\x12a\\rj\\xbe\\x9a\\xc9;{&G\\xe9\\x06L8\\x1a_\\xe6\\xa3j\\xb5\\xaeEmB\\xd7\\x1ei\\xaa\\xd1\\xfa\\xa8*\\xe8\\xb7\\xc0yz\\xb7:\\xa2Fe\\xbd\\xa0\\xe1h\\xe6\\xa6\\xccXU\\x8d\\nI^\\x97o\\xd1\\x05\\xb5\\xfa\\x99pb2\\xbd\\xec\\xe0%\\xc3X\\xc2β\\x1d\\xd5\\xd2X\\x83\\x94_\\xd1Br\\xf22+OĎv\\x17.KI1\\xf8\\x06\\xe3\\x03\\xe1\\xf0\\x90&\\xc7emhrr!)\\x87\\xb4[0\\xe6\\x93BLJ}\\xd8m\\x8cg(\\x96\\xaf\\xeb\\x14\\xed\\xcf[\\x13\\x1a\\x8e\\xc9\\x1a'\\xaew`\\x91\\xf1h\\x05\\xc6i7\\xb7D\\xf6\\x11\\xe41\\xab\\xa84\\u007f\\x17g\\xcbw}\\x14;\\xf7o\\xd7j\\xcd\\v̶Y\\t\\xe7=\\xb3fx\\x1b?/x7\\\"\\xe6\\xfd{(cNV؆\\xd0\\xcf\\b'KP\\x9d\\xb8E\\xb7\\xc7u\\x8e>\\xac\\xb8\\xa3\\n2\\xf4\\xfa\\x8e\\x88\\x1cK\\xe7\\\"+\\x85\\xadF\\xa4\\xf3C\\xa2\\x01-%\\xcd\\x153\\xb9\\x95\\x0fɺ\\x8c\\x85B\\x06\\x8e\\xe0K\\xcch\\xd4T]\\v`v]\\x0e\\x014#'T{\\xa8\\x96\\x886\\xe9\\xa6Kw\\xddf4Q\\x1b\\xb2Մ\\xac\\x8e\\x85\\xd3Q\\xad\\x9c\\x1b\\x8b\\xcē\\\"\\x91?@\\xbc\\x00\\x8b%\\x1f\\x85\\x8c2Q\\xcbUEY\\xe0Q\\x9f\\xbd\\x05r\\xcf\\b\\x95e)1q\\xb6s\\xf4@\\x93a\\xcdA\\xd3\\x00nW\\a\\xde늮\\xf1L\\xf4T<\\x93\\v\\xb68\\x97\\x89\\xc7\\xf1xZ\\xa7\\xf6_\\xf4\\xf48\\xee|\\x88\\xf2k\\x1b(\\x1eA\\x9a\\xf8\\x8c!\\xa0\\x10\\x8dxJ,\\xba\\xb5\\x11{\\xb4״\\xd1h\\xa9\\xe6\\x16\\xc5\\xc3\\xe9\\x02\\xbbO\\xb5\\x90\\xfe\\x13\\xca\\xeb\\xfd\\xb5=\\x92b~\\xce\\x17b!2\\xf0_G\\xbf\\x01\\xf3\\x9a\\xea\\x87\\x13l\\xad\\v\\xf94<\\xab9\\xd4a\\xa6X\\xa9u:B\\xf3\\xa5\\x89\\xd0]\\x9a\\x11~WVT\\xd5eU\\x15\\xb3\\xef\\xfa\\u007f\\xa9{\\x13\\xf88\\x8e\\xf3N\\xb4\\xab\\xaf\\xeakz\\xee\\xe9\\xc1`0\\x98\\x033\\x03\\xe2\\x06\\x063\\x03\\x92 0\\x04O\\xf1\\x04%\\x8a\\xa4nX\\x94D\\xea\\xb2`I\\xd6\\xe5C\\xb0|D\\x8ae\\x87\\xf2\\x15\\xd9Il\\xd8q\\x1c\\xd9Ѯi=ǖ\\xe5\\v\\xbe\\xe5l\\x9c0\\x96\\xe38\\xbe\\x96\\xd9u\\xb2ڼ</\\xe5x\\xb3\\x8a\\xd7\\x1a\\xbe\\xfa\\xbe\\xea\\x9e\\xe9\\x01@ZJ\\xde\\xfb\\xbd\\xdf#1\\xdd\\xd5\\xd5\\xd5\\xdd\\xd5\\xd5U_}\\xf5\\x1d\\xff/h\\x19\\xf3\\xbdAK?\\xd8\\x13TU\\xe3Ւ\\xaa\\xaaҫ\\rU\\r\\xf6\\x1cԭ`\\xefN\\xb3;9\\xae\\x05\\x83\\xdax\\xb2ۼ2e^e\\a\\xcc\\xd7J\\xa2(\\xbd\\xd6\\f\\xd8W\\x99)O\\u007f\\xed\\xf9\\x16v\\xa1\\x17%\\x12Qn\\xbc\\xe8Z\\x0e\\\"R\\\\\\\"\\xebĽ\\x14Yy\\xf35[NL\\xf3\\xcd3o\\xdeE&v\\xf1\\x1d\\xb9w$3\\x18\\xcb\\xc5p\\xfb\\xba\\x13\\x99\\xc1\\xc1̉\\xf1;ܽ\\x8b\\xe9\\x00s\\x86*XBL(\\xb1\\xef\\xb9W8\\xc8\\xc6\\xf6\\b\\xe3\\xed'b\\x14\\xf8\\xa8\\x1a\\xad\\xd5m9Z\\xe9\\xe0)@\\xa5\\xc8X*\\x8e\\x8a\\xe3\\x0045\\xb7\\x02\\xc0x\\x9e\\xe5R\\xdd\\xc3\\x19\\x8d\\xaa\\xe5\\xdagDQTU;nU\\x02\\a\\xe5^\\xd5\\xd2T\\xe9#mՅ-\\xf6ؖ\\\"\\xc5\\x13\\xa2j;\\x91\\x9e\\x92\\xa5\\xd9]}3\\xe1\\xbet\\xcc0B\\a)h1\\x92jqp\\x85:\\xe1\\xfeZ*(ƒG\\xcc\\x1e#\\xa8+\\x84Xm\\xc5\\xc6Æ\\xfdd\\xa4o4l\\x9b\\x9a\\xc1\\xb8\\xbe\\xac]\\n\\x1931)\\x9a׃?\\xa2\\x86\\xbaD\\x9b\\x1f\\xa2!\\xd2n_\\xae\\x8b\\x99\\x86\\x15\\xfa:z\\x98<U\\xe3%ԝRd)a\\xb0\\xb2\\xcf\\x0e\\xceI\\x8c\\x8bL \\xc7Ȉ\\xd5\\b)\\xac\\xaf\\x8e\\xd9h\\x90\\x84\\x98\\x16\\xf5\\x1e\\x83mIT4\\xba\\x18\\x13X\\x14\\x8d\\xa2.%\\t\\x91\\xe3\\x92^2\\xc4\\x12a\\x03\\xec\\xe0zZ\\x9a\\xf3\\x82qc:x\\x97\\xaeߥu_g\\xe8\\xea\\x13\\xba~\\xdcr\\x8e\\xe9\\xfa\\x132\\x95\\xdf\\xe6\\xeak\\xfc\\xef1\\t\\xeb\\xa0u4Uh{\\x10$\\x93\\xde\\x1bpj͙b\\xce\\xf4\\xae_\\xffi\\x99\\xd2\\x02\\x95\\x8aE\\x89\\xed\\xa8<\\xed\\x1e\\xe7\\xa5pT\\xe69못~\\xa1Z\\xea\\x0e\\xb2]\\r\\xa8\\xd7\\\\˒[\\xb4\\\\\\x1f\\xdb]\\xfb}\\xb7\\xc6~\\xbf\\f*\\x84\\x84<ԺΑK\\xaa\\xad\\x1eC\\xd7~\\x0e\\xe4D1\\xea\\xbdˊ2\\xba)\\u007f5`\\a\\x03\\xdd\\xcfa\\a\\xa9\\xfb+_\\xed\\xcf\\x1d\\x12\\x15I\\xa4J\\xafBI\\xccrBQK\\xfbT\\xb8;\\xbc\\xe5c\\xd8\\x13\\xdeԡ\\x10{.7$J\\x8a\\xf8,,\\xe46\\x8a\\xaa\\x19\\xeeꨧ&\\xa4X=\\x87a\\x14\\xba\\rE\\xd7\\f\\x04/\\xa8\\x89S-\\xbb\\xc6@q\\xb2\\xc4\\xdb\\xe7a_?\\xbf\\xa5\\x9cN\\x97{\\x96\\xfb5\\xfdD\\xbf\\xa6\\xf5\\x93\\x9d\\xd8,c\\x1d}8\\x84fS\\xdf[d\\x05NB\\xa11\\xbf\\xeePc#t\\x80\\xad\\xd3\\x0e\\xc2J\\xcdm-q\\xa2\\xe5\\xcbR\\xab\\xafi9X:R\\xb6\\x11\\xdd\\xf5M\\x15\\xc1-\\xf8/^\\x88W\\xdc\\x1fU\\xc9\\xfd؎\\x1f\\n\\a\\xf5hwT\\xbf\\xd7מ'\\xb3\\x8d\\xa5l\\xd7D\\xaf\\x1c\\x11\\x8dD\\xb6\\xfd/\\xaa\\x90\\xa3|d}\\x96\\x06\\xa8\\x19\\n\\x994\\xf0\\x97\\xfe\\xa6\\xc5RͥR\\xd7Q\\xc3wY\\xf6U\\xc9N}h\\x8e\\xd1\\xdd- ;^\\xdb\\u007fan\\fzk;'Q\\xab\\xa3\\x93\\xe8$Dqc<D\\x9d\\xef\\xb8\\xe7\\xe8\\xe4\\x05\\xf4\\xa2A\\x05M1\\xfa\\x94`\\xceГ\\x8c\\xbb6Sl\\x15w\\xd0\\xe8V\\xf5\\xeen\\xd3H\\x9a\\x1b\\x1a\\xeb\\xeaIo{XS\\xd5>k\\xca\\xeaS\\xd5)3\\xa5\\xea\\xf1\\xcd1\\x93\\xad\\xbci\\xf4\\xd5\\x06ۥ\\x0f\\xa4͔\\xa2\\x0f\\xbc\\xf6C\\xad\\xbe-u\\xf4\\x99I\\u007f\\x8fY\\xafG\\aɚ\\x05\\x17{ê\\xd7q\\x96\\xfdo\\xb1\\x901\\xeb\\bv\\x83\\x9b\\xba\\x99q\\xfbN\\xb2\\xa3ʀ:_/\\xb9\\x85l\\xa3T\\xe7qX\\x95\\x8ezU\\x84]\\xc2\\xc2E{3\\xad\\xa3A\\t\\xdf\\xf2\\x88M`\\xf7\\xca\\xfa\\xdaX\\x85\\x11\\xbdI\\xc8\\x1e\\x83\\xecX<\\xe6p\\x03\\xd9V\\x8c'\\x8a[\\x98\\b\\xd6\\x1b\\x00wň\\xd8\\xdf/\\x92\\x18a\\x9c\\xc4VQ\\xdc\\xcaX\\x8c*\\x91Ɍ\\x9c\\xc6\\xed\\x17x\\x16\\xf1\\x17[w\\x94\\xbc\\x10gS&\\xe9\\xebc\\x05\\xc48![DY\\xdcB\\xc6\\xe5\\xe7\\b`g\\xf1\\xdd\\t\\xcc#\\x9d\\x05\\xd9,ז?\\x06غ\\xb9\\x1b\\xb9\\xef\\x96\\x1c\\xb2X*Ì\\xe7\\xe9\\x96 \\xf6s\\x9d\\x02/[f\\tv\\xe8\\xca'?\\x16Kͦ\\xc3\\xefC\\x91x6\\x15k\\x84ӷc\\xce\\xcf1\\xed\\xca-\\xbb\\xf0\\xe0\\xc3(\\x03\\xff\\xbe\\xef4/\\xca11\\xcf\\u007f\\x8b\\xd5\\xe5\\xd38ǻ6\\xbf(\\xa5,C\\x1cD\\xe4)}\\xa8c\\xa5*\\xc9F\\xacC7\\xcfݹ\\xed\\xc4c\\xe4\\xe6Cf4\\xb2i\\xdfm\\x8f߶oS\\x84\\xbc߲\\xa5\\xf8[\\x8fl\\xbbs۩\\x13G\\xde\\x16\\x97l+\\x1cQB\\xd7\\xcf\\xee\\xbb\\xed\\xb6}\\xb3ׇ\\x94\\x88\\x8b\\xf1p\\xfe\\xf3\\xac5\\xbe!$Z\\xbe~\\xa3\\\\\\xea\\x18\\xad\\x95\\xa8¦\\xf2:\\xf9q\\xa0K\\xdc-ƍ74\\x8c\\xec\\v\\x92&7\\xff\\xee\\x16[\\f\\x90/\\xd2p\\xb09oZ\\xca\\xe4\\xfe\\x80\\x19>D\\x8a\\n\\x95^\\x1aR3^\\x9c\\x8fo\\x91\\u007femZt\\xbd\\xe6\\vy7\\x16}\\v\\x87\\x91\\xb6\\xc2ɂ\\xd1 \\xe3b\\xf0\\xd9-\\x8e\\x10\\xa3\\x1b\\xbd\\xf8؉c\\xdb5\\xa2\\x99j\\x94N4\\xa0\\xea\\x970⥙\\x8fQ=F'v\\x1f?ѧƴ\\xad\\xe8غA\\x13UR\\xfeλ\\xea4Ί\\x13\\xa5\\x9f\\xb5\\xc3D\\x85\\xc6t\\xfa\\x98\\xa9щ\\x1d\\xcdg4I\\xad<̩\\x17\\xbb\\x8a\\xb5\\xb5'\\u007f\\x03\\x04\\xfe\\xf0Z=aa\\xad\\xbbH\\xb8\\xc3Ջ\\x03\\x18\\xae\\x065,\\x90\\x95l\\xcb\\xf1\\\"\\xebO\\xaf\\x9fM\\x16\\xfc\\x00\\xcaK~\\x95oc\\xfd|\\xe8'YWޙ㼠_\\x9f\\x19\\xf6)\\x8ax\\xb5Ȋ\\x87\\x81\\xc4\\xf5\\xceY\\xf0&?\\xc7\\x1ep\\n\\xe0\\x9bч\\x89,\\xf2\\xfd\\xe2\\xb5o\\xb9V\\xf7\\xe9F\\n\\x8c6\\xdc\\xea\\xb3\\xe2^\\xab\\x85j}\\xb1վ\\x9e\\x8c\\xe7\\xf7\\xdcx[e\\xea\\x17\\xd6f\\xb5\\xa3js\\xcc\\xe6\\xd3XU\\x84\\x01\\x9a\\xe7\\xcd\\xe1K7\\x11\\xe0\\x8f̷˜\\xc1\\xe4\\x99v\\x927\\x1e\\xf7c\\xf1%\\x97_Q\\xb6\\xe7ϊ\\xbc7\\xc7\\x12q\\x03\\n\\xbb`\\xff\\x80\\xfb\\x8fq(y,k\\x9a\\x00\\x0f\\x1e\\xb2\\x80h\\xfd\\xe2M\\xa9<\\xb8\\b\\xe5S7\\x89\\x88\\xda\\x0f\\t\\x96\\xb9\\x84\\a\\xa6ш\\xb3D\\xbca\\x98X\\x9a%\\x12,\\xabC\\xd7R]\\a{)O\\xcbl\\xba\\xab\\xf3a\\x04v|\\x0e\\x05a\\nh/\\xea\\x0e\\xc7E\\\\\\x8d\\xbet*\\x11\\xda.\\x8a\\xdbC\\t'\\x97\\x1bɹ\\t\\a2\\xd9a\\xae\\xc3\\xd8\\xf4\\x9f\\x82\\x1b\\xa8M7\\x04\\xe1\\x84Cy\\x82eQ\\xbc\\xd2'_lcb\\xcc\\\"\\xef\\xc1\\xe1N\\xfd\\xd1\\x10`\\x89?K\\x004+?Y)\\x818 Ϧ3\\x15\\x17\\xf7A\\xaeSL\\x00\\x03\\r\\v\\xfe\\x9a\\xe2\\x0f\\xb2\\v.\\x00OOvS\\x1a\\x8e<\\xf0\\xe4\\x03\\x0f\\x1c\\x19\\xde\\x10\\xa61\\x9a\\x9a\\xdcoYI\\xcb\\x1aK&G\\xb4\\x88\\x1e\\xd6\\xc2\\xda\\xe5\\xb0\\t\\xeb\\xe1\\xcd\\xee\\xbe\\xf9\\xa1R\\n>[\\xff\\x14\\xf8윜\\x04h\\x9f\\xf0\\x86\\xe1#\\x0f\\xb0\\xdbD\\u0094vOZ\\xc9\\xe44\\xdc$9\\xa8G\\xd8\\x15\\xec\\x17\\xc6{E\\xba\\xd8\\xe5\\xb0_I\\x95صS\\xe0\\xbd\\xc5m\\xfb}\\xf1\\x8a\\x06\\x04_Ģr\\x9d\\xadu`\\xa7\\xd2:۱i\\x8fMu\\x89zy\\x96q\\xd8p\\x92\\xba>!\\xafJ͆\\xf3\\xe5\\x19{\\xef^{\\xa6\\\\\\bͦJ\\xda\\xe5\\xc5\\xcc\\xccL\\xa6x\\xb9Vz1s\\xe0@\\xc6u\\x11y1\\xb1\\xe9\\xb0T\\x8b\\xf6\\x0e\\f\\xf4Fk\\xd2\\xe1M\\x89\\xb9ɼ\\xb9?\\x12\\x8bE\\xf6\\x9b\\xf9I\\xf9ꩩ\\xab\\x01\\xbf\\x81\\xb5\\xbfB\\xbe\\xe3\\x8b{\\u007f\\x8dp\\xb3\\xf0Z\\xe1M\\xc2;\\x84\\xf7\\v\\u007f$|\\x8a\\xf1L\\x88:\\x8a.F\\b\\x89>^/Qg\\xcc\\x05O\\xc7\\x1c\\x87\\x1b8\\x82.)\\xfeJ\\xd3ʿ\\xa3\\xfc\\x85\\xaeU\\xb6\\u007f\\xf6\\xb3\\xdb\\rmP1%騩.,\\xa8\\xe6QI2\\x95A\\xe9b\\xb0\\x0e\\xff\\x0et\\arl\\xfb\\xf8\\xf8v#\\xb0C#\\x059@\\xa6\\v\\x85i\\x12\\x90\\vDۡ(ڷ.\\x06\\xf6\\x00\\x11\\x1a_f\\xbe\\xe0\\xc7Sׅ\\f㳶`\\fV\\x17\\rw\\\"\\xa1 {Uh\\xd1\\xc2\\x19\\xb9\\x98\\x91\\x9c6i\\xac\\xc2Ҿ\\xc8\\x11r\\x11x\\xbd\\x12'\\xcb\\vhu\\xd4\\\\\\x8e\\x06\\x16\\xb2\\x88UK\\x02\\x91H\\x80\\xbc\\x89D\\x9d\\x18\\xc1\\x8c\\xec\\x02\\xeb\\xc2\\xcds\\xe8k\\xba\\xd8 \\xa7\\xc6@\\x0f}o \\xba\\xbc\\f\\\"\\x8f\\xa1\\xbe\\xcd\\x1b\\x8aéލ\\x1bv\\r\\rA\\xc6\\xf2\\xb2n\\xdf\\xcb&\\bV꼰\\xbc\\xdcɷR6\\x03\\fzu\\x9eH\\xf8\\xad\\x11(\\xcbs\\x81\\x01|(\\xbfl\\xb6i4\\xa2\\xa9(\\xea\\xbeC{\\xab\\x8d\\xea^$\\xa5\\x8b\\x90\\xc9j\\x0f\\b\\xbb\\xef\\xe0\\xb3P\\xedj\\xf3\\xf8q\\xf3\\xea\\x1a\\x9f\\x94\\x96\\xf0\\x14\\xcaA]\\x8c\\x92\\x18\\xe3M\\xc1\\x87hF\\xd8#\\x1cYG\\x87\\x01m\\\"N\\x80\\x00\\xbb\\xee\\x13\\xc9\\xe7|\\xe9\\xf2\\x05\\xf2\\xebmߏ\\nD\\xb4eĲ\\xdf\\xc9!\\xc0@\\u007f(\\xf4K\\xcbzܲ\\xc8I\\xdcM\\xf9\\x0f\\xd8_\\x13\\x8e@a\\xf3l,\\x9ds@\\xfd\\xa71>\\xfb\\xb4\\xf6⋚\\x85z\\u007f\\xfe\\xb7\\xd0y\\xe0\\n\\xe4%\\xf4\\xe7}\\x13\\xf9\\xa4\\x10a\\xef6\\xe4E\\xfe)\\x97\\xb2(\\xda\\x05\\xb3\\x9d\\x84\\xe7\\x92PtO\\xe5\\xddS\\xb5\\t\\xf1u\\x8a\\x927\\xcdW7\\xbf\\xffj\\xd3\\xcc+\\xcaџ\\xfd\\xec<\\x1a\\x80\\x10\\x13O\\xcc>1\\xcb\\xf3\\x9f'Eن\\x9c\\x1bn\\x80\\f[>\\xb4qc\\xf3\\x1f\\xd1\\\"\\xe4~\\xb0\\xcb6\\x8cZ\\xcd0\\xd8\\te\\x9f\\x1f\\xc3Ӌ\\t\\u007fP\\xb8\\x0e0<\\xd7\\xe2\\xfe\\xff\\xfb\\xb4E\\xabχ[\\xaaX\\xae}%\\x18\\xa4\\x8aul\\xb6\\x9dw\\x83\\xc3wl\\x96~cf\\xf3\\x87\\xb0%,M\\xdcxX=\\xac\\xcfE{\\x9a\\xfb[e\\xde\\xdaJ\\xbdn\\xbd\\xbc\\x8fA\\n6D\\xb9\\t\\x92\\xb0\\xe1\\x18\\xab\\xdcw\\xb7\\xc0mf:\\xbcw\\xdbȮ\\x84#\\xbbbL\\x8a\\xf1\\xa2ý:\\xeb3\\xa2\\x83\\xa0\\xb06\\xe9t\\xd7}\\xac\\xb8\\x85\\x8d\\x89\\xa9݀\\xf6Jt\\xd2|\\xe3_\\xff\\x02\\x90`m+\\xf1ǩ\\xd2R8\\xd3ᨻ8\\x1e\\xe0Я\\xe6\\x91M\\x88\\xfcJ\\f\\x8bH\\x0f\\u007f\\x14\\xd1a\\x83\\xf6\\xc4\\xdf\\x17\\xbbÙp\\a\\x0e\\x19\\xe2ޮ\\xb2[\\xdcL\\\\\\xfbl\\\"\\xe5$\\xb42(\\x11\\xe4\\xa5xĈ\\xfbt\\x1a\\xbc3\\xc8\\xc8\\xcbKq\\xb2\\x14'\\xe9\\xe8\\xbfD\\xd3\\xc4\\x175\\\"\\x1a\\bD\\x9b\\xfb\\xc9e\\xcd\\xff\\x10M\\xa5:m7\\xa6|\\x96D\\xae\\xfb\\x01\\xb5e\\xae\\xe3\\x01\\xf7\\b\\xd0\\x01T'\\xcb#*\\xce\\xf1\\x19\\xb4\\x06w\\x17O\\xb7Kb\\x97dID\\t\\xd8\\t\\xb3P\\xee\\xcf\\xf7\\xa5dSJ\\xb0\\x85\\x89d\\x9a\\x91X*0si߶\\r٩\\xb0\\xbb\\x8e\\xfa3Y\\x96\\xa5\\xbc̖t\\x8a\\xae\\xa9c\\xd9\\xdc`R\\x16\\xe5\\x82$)2\\x914\\xaa\\xab\\xf2\\xa5[6̕\\x92\\xa1N\\xfb\\x92M Q \\xe8\\xb4ξ\\x8cX\\xf6\\xcc?X\\xed\\\\[u5\\xe1\\xb8p\\x12\\x9c\\x9f\\xe2\\xd0ǔ\\xb3zQne\\x8f\\x1c\\n\\x11ny\\xe7\\x9e}\\xc1\\x90cK\\x81\\x81\\xd8\\xd0䡍\\x03\\x11b\\r[\\xb6\\x98\\x94\\x14+\\x95\\xbd\\xe5\\x00,Vj\\xc3Z\\x84\\xadxe}˞\\x13\\x8f=v(^\\x8c\\x84\\x9d\\xbe\\x18y\\xfa\\xf57\\xcc\\x1e&j\\xd0\\n'6\\x8e\\xcf\\x1dIXa\\xeb\\xfe@\\x88H\\x13\\xbd{\\x8e\\xb0UK\\x8f\\\"QK\\x8f\\xab\\xfd\\xe07zfCo4\\xb1!\\x1b\\x8d\\xb7|\\x89\\xbf\\\"\\x98\\xb0:d|\\x06H\\x9c\\x19\\xabQ\\x9d\\x14|\\b\\x94~\\xcc\\xc3\\xca\\x1b\\x97\\xde\\x18\\xed\\x1e\\x9e\\xcaf\\xc9\\x13S\\xe9\\xfd\\x01\\xc6\\xcf1\\x8e\\xe8#|\\x17؟\\xbe\\v\\xceg\\xb3S\\xc3\\xdddaj\\x1e\\n\\xc4\\xd8)V\\x00w\\xac\\x80\\xe0\\xe1\\x1b#\\xcf\\x17\\x05\\x8aUw\\xc6x\\x03\\x96\\xaa\\x10\\x00\\xa0^\\xc3\\x06\\x85\\x90\\xa9\\x9c\\xb7\\x98\\xa1\\xf5\\xda\\x1f\\x1f#;75\\x1a\\xa2\\x15\\xb0MɔS\\xe4\\x96D־|~İ\\x1a:ѴX\\xac\\\\\\x9c\\xcdD\\u07be\\x87\\x8aS\\x8dc\\xdbD\\x1d\\x14\\xdc\\xdbɦt\\\"\\xda\\xfd\\xa1WI\\xd5hL\\xb7C\\x96\\x13)\\xf4Nu\\x87\\\\Y\\x05\\xf4\\xe7\\x820ɨ\\xd3\\x1e\\xb4\\xe9\\xcd3\\xd6\\xd7S\\\"\\xe6U\\x17^\\xdeo\\x1a\\x81q\\xf2&\\x00\\x91\\r\\u007f,\\xa3\\x82&\\xb2\\xb5*t\\xd2ʺI\\xb2b\\x95G\\xcb\\xc9r\\xd2\\xe97\\x03,e\\xa5c!4\\xa0@(Z\\x96\\x8fgG\\xcb\\x01\\xb3\\x9cl\\xb2\\xc94k$\\\"wv\\xec\\x1a\\\\\\x9e5\\xcfxn\\xfc\\x97\\x8e\\x9dY\\xe0Y\\xa4\\x11\\r\\xd8\\xe9D\\xb1\\x14_\\xbd\\x17<\\x9b\\v\\xc1\\xc5\\xe5jy\\x191\\xb2\\v\\xecQ\\xb8\\b\\xfd0W\\xc5\\xf8\\xbf\\x84\\xcdN\\xcd$21U\\xd9\\x14\\xafl.\\x1d\\x95\\x02\\xf2\\xe5\\bT\\f\\xb3T\\xf3\\xcf\\xcfʒ\\U000854cf)D\\xb9\\x13\\xe7\\xf2\\xf3\\xbf>\\xff%1\\xc7\\xfa\\x8dƾ`\\x01\\xd70\\xe0\\x867J\\xea(dŸЊ\\x03ݜb\\x98.\\xd6\\xeb\\xe3b\\x88\\x1a\\xc4\\xdab\\x9a\\x1f\\xfa\\xa9N\\xcf\\x1a\\xf4\\x8a\\xa5\\xe6?\\xfc\\xbeB\\xd4\\xe9\\xbd\\v\\xa7$\\xe9\\xde+\\xa9\\xb9l\\xd2\\xcb6\\x19\\xe6\\a\\xb7R\\xe3,\\x1bqK\\x1f\\xf8}%(\\x0f\\x12\\xf2\\xc8\\xc2\\xd5ﰈ\\xae\\xf9\\xde)\\xb6\\xca\\x0f\\xb8\\xda60\\x9ep\\x9d\\xf8]\\x8bön\\x10c&\\xf2\\x85\\xe0\\x18\\x18\\xd8\\xc1\\xfa\\x8f-P3fv\\xc1H\\x19\\x97\\x8c\\xa0\\xab\\xe4vH^\\x925\\xadPåN|\\x8d\\xd8<\\x03X\\\"\\xf7\\x84,VZ\\xd7\\xf7\\x8c\\xa0C\\xe5\\x0e\\x96ړ\\xc5P\\x8bn\\f`\\xe01L\\xd6&=.R\\x1b\\x10C\\xd6\\x1a\\x1e\\x16]\\x14\\xb6\\x83\\x88\\x80\\xb34\\xbf\\xb88\\xbf\\x02\\x9b%4J\\xfc\\x9f\\x00\\x9a=>>N\\x96\\x16\\x97\\x17\\xd9\\xdf\\xdb\\xd1R\\xf1\\xbc\\xc06\\xf5wս\\xef\\xe9ݿ\\xe3\\xee-\\xdc\\xc6\\xf6=\\xf9\\xd5\\u07bd\\x9a\\x1c\\xe4]Pظ;\\xcfx\\x85%FY\\xa7\\x85\\xbd\\x8c\\xd3?\\xc1\\xe36\\xd8\\x04\\xdd-!\\x9c\\xc4 \\xf1\\xd10\\x1e\\xa7\\x98GK\\xea!\\x95\\x0e\\x00\\x93\\x9aB+%\\x8a\\xceU`\\xbc\\x83\\xf4m\\x96\\x14(\\xd07N\\xd5h\\xcbvNu2D$ս\\x84\\xec\\xadN\\xee\\xdd\\x10<B\\x03\\x93採\\xea\\xde}l\\xe1\\x90\\x197ljңT\\xbf3XA\\v\\xf8\\x00=\\x90h>\\x97\\x1c\\x94\\xf7$\\xfb\\xf5C\\xb6\\xad\\rkznt\\xf4\\xeb{\\x96\\x92}\\xeaK\\xf9\\x89ќa\\fK\\x92\\x1aP\\x03\\xd2p\\x8c\\x90!\\\"\\xec\\xafV\\xf7\\xb0\\xbbON\\x95\\x92o7\\aj{k\\x93{\\xb51\\xdbPM\\xcaX\\xc6$\\xe2N\\x98o\\xd0\\xf6\\x94\\x12\\xf7\\xa4\\x12]\\xd6%\\xe2\\xe8\\xdc\\xe8\\xc2}\\xfdٱ\\x05q,\\x9f\\x1b\\x15w\\xb3;\\xe9쎻\\x92\\xbd\\xbdCn\\xfc\\t\\xa0O\\x93\\xac\\x9d\\xf6A\\x1c)\\xd2!e\\x88\\xaf6tزF\\xf0\\x00兖\\xfa\\x91\\xb3.\\x1ek\\xd2\\xd2B\\\"$\\x95f[*\\xea Wp\\x1b\\x88r\\x84ɇ\\xbe\\xf0P\\xf3ͨr\\x1c#\\x02L\\xd3\\xe7aKB\\x1c2\\xb0\\x81\\x96\\xcb\\x1f3\\x83ٶ\\\"\\x92\\xf1\\xee˘=\\x96\\x1f\\x19ɏ5\\xcfq5\\xa4\\x1b҂m\\x16\\xdb1\\xfdZ\\xb4\\xa1\\f6\\x14kl\\xdbT\\x1e\\xef\\x19,\\x9aF@暨\\xa1\\xbf\\xe6\\x85\\xf2\\xfdqk>ѻ\\xa5\\x91Q\\xe5\\xb0(u]\\xbau\\xf6\\xb2\\x94,\\xc5\\xe4\\xcfef\\x1a\\xbd\\x8a\\x1c!\\x90\\u05f8\\xb4[\\x92\\xa22\\x80\\xe37\\x11d\\x14`\\xf1\\xcev;\\xc5|<)\\xab\\x19I\\xea\\x92&GFkJZ\\x96\\xbbU\\xe5\\x02\\xf9>\\x99\\x06\\xe2|\\xa2\\xf2\\xc6g/\\xd4a\\x1e\\x1e\\xed\\xb4%\\xf2\\xf4\\xc35|\\xd7\\x17s\\x0e\\x87Ǳ\\x8d'\\xa6\\xe61\\xf54\\xd5秞0l\\x0e\\x9e\\xe3\\xe4tJ\\x92N\\xae\\xc9ek\\x8f\\x1b6;\\xe9\\xb9U4\\u007f05\\x0f\\xf6X\\xe8\\xb4\\xc1\\x98w\\x8ck\\au\\xfb\\x12\\xc6\\xf9\\xa8\\bG!\\x12\\x91\\x83\\xf1\\x8b\\x12^\\f\\x8fz\\x01\\x92\\x10V\\x1b\\x90\\xc1\\xa4\\xf6\\xa8\\xca0j\\xccC\\x1d\\x95\\v\\x17\\a6G\\xc3\\xd8\\u007fm\\xfeH%\\x01\\xd3\\x16\\xd5l.\\x99\\xc8\\x12\\x12\\xf9n\\xb8\\x90\\x8c\\xf7\\x125\\xa0\\xef\\xdc\\t\\xbd\\xe8\\x84bP\\xc6\\a>b\\xd9Ҩ|\\xf7\\x18\\x8e\\x03\\x0f\\xb4\\xdcM.e#fW\\xb0\\xe0䲉\\xaep(\\t0|\\xbdq3\\x16T\\xc9Q\\x94\\x82*\\xba2\\x1c1\\xcfD\\x1f\\xe7q\\xfb\\xf0:_\\xd2\\xf33\\xf4\\xdew\\xe7\\xbf\\xfd}]\\x13;\\xd7\\xdb\\xfc\\x15\\xbf\\xde\\xfd\\x83V\\xd2\\x1al\\x01P\\xbc\\xdc\\xf7Z\\x9a\\xb6\\xaci\\x0fx³\\xff\\x85u\\xea4xK\\x143\\x9e\\xbbG!_F施\\x85\\xea\\xadO'\\xc0^\\xb16K:\\xa3\\xe7V<as1\\x8e\\\"\\xab*y\\xc1\\xde2\\x04\\xf5=V7\\xc72K\\xb1B7\\xad\\x1f\\x83㡙\\xc0NK\\v\\x0fD\\x03\\rD\\x8di\\x04\\xa2\\x03a\\xcdj>r\\x8fb(\\xf7\\xec\\xcdo\\xc0\\x9anN\\xe5\\x82\\xdd\\xe1\\xcd\\\\&\\x9d\\xdf\\x19((\\xf6\\xa3\\x81(\\x87\\xaf\\x8b\\x06\\x1e\\xb5\\x95B\\xe0\\x93\\xc7J\\xa2X:\\xd6\\xd2)\\xae\\x90\\xaf\\xb2\\x19\\xb2\\xc6\\xf8\\xd3#\\x9e\\xddD;\\xca\\b\\xfaU\\x96\\xaa\\xdc\\xde\\x12\\x18\\x80\\x84\\x17$\\x96q]1\\xee%]\\x1f%N\\x9d\\xed&\\xebUx\\xf3\\xf8X%\\x11\\a\\v*\\xf6\\xc65\\xb0\\x92g;\\xb2\\xd4S\\xe0\\xa1F\\x8a\\x99.\\xd9\\xd06E\\x1a;\\xedn\\x9a0Ҷ\\x9d6\\x12\\xb4\\xdb\\xdeوl\\xd6\\f\\xe9\\xf9lr\\xe2\\xb7\\a&\\x92{ԡɉ\\x11`\\xb0e;\\x16SE[\\xa4=\\tU{4\\xb2\\xa5\\xc0\\xa3\\x8e\\xf4\\xcdD\\xa65\\xbb7\\x17\\x88\\xc6\\x02\\xe3y]QlJmE\\xd1\\xf3\\xe3`}\\x9e뵵\\u007fd4{e%\\xdb\\xff\\x94$\\x99\\xaaj2\\x9a\\xa0Ij8\\xac\\xaa\\xf1\\xa0\\xa2r\\xfdXk\\x8e\\xdb\\xcd\\xc6\\xde휶%\\xd42\\x97\\xb0ڢ\\x93\\xf0\\xa68thq\\xea%\\xeeW\\x87^u\\x95U\\x10]m*\\xe2ԔΩ\\xaeX\\xeb\\x9c\\xe1\\xc0g`\\x86Mr\\x93{\\xc9>6\\xf9\\f\\a\\xa2)\\x8b\\x90\\xa0q\\x98\\xcds56\\xf1\\xed\\x9eHD\\xadPv\\n\\xbe\\xdaԎ\\xde\\x0f\\xc4\\xe6P\\xf4l\\xd3D\\x89\\x9aÐ{i6\\xde|/\\x9f\\xf0\\xe8\\x06\\x85\\xb2\\t\\x8f\\xbc\\xc0f'M\\x1bw\\xa7:\\xc6t\\xe6{\\a\\x89\\xb0w\\xb2\\xb6\\x8fMu\\x9b\\xcb\\xf1\\xe0\\x86\\xe1\\xa4\\x11\\x1c\\xa8\\xed\\xafUv\\x8bD\\x8duنa\\xf7gq`Z\\xa5\\x01\\r=F\\xea\\xf4Lw<i\\xed%l\\xceۗ\\x9f\\x10\\x0f)\\x01Yc\\xb7\\xbc\\xd4\\xc9\\xe6\\xc7Dq\\xd0\\xf3\\xaf\\x81\\xf9\\x0eb\\x807\\xb0Ǵ\\xb4\\xbd\\t'n\\x8b\\xed\\xa84\\xb5\\x92\\x17\\x15\\xd9\\x17\\xf7\\xd8\\x1b\\\"\\x9e\\xd9\\x1fY\\xdcz\\xf0}\\xdf{\\xdf\\xc1\\xad\\x9a\\x96\\xab\\xa4\\x1fx\\xf2\\x81-\\x15m?\\xca\\x15\\xd8,\\x94\\x8eY\\xe1R؊\\xa5\\xd9T\\x17`=\\xfe\\x1ek$\\x8da#F,]v\\x94`\\xd4\\x04Qr\\xa8\\x9b:\\xf2s(`\\xf8\\xfbh\\x80\\xcd,\\x9a\\x96\\x8e-\\x04\\xa2\\x18N\\xc9Ź9+\\x8a\\xe4\\xc3B\\x00\\xec\\x10\\x8bN\\x05\\x19\\xbeJ\\x1d\\xa2\\xe6D\\xd9\\xe0+\\x94[\\x88:\\x05\\x1e6\\x16=N\\x1c\\xd2H\\xdc\\xfe\\x195\\xa8|\\xe6\\xda\\xccF9&\\xffy\\x9f\\x9c\\xbb7\\xcd\\x12㛔\\xb8\\xdcwSN\\xee\\x93J\\xaf\\x06\\x1d\\xfa\\xabK\\u007f>\\xf4\\x8c\\xaa>\\xb3\\xfbA]'\\x81\\xe2\\xcd\\xfdu]\\xbf\\xfe!\\xdd8\\xd2\\u007fsQ\\xec\\xefO\\xf7\\x94\\xcb-?\\x86,\\xeaM6p\\xfc\\xc7\\v8}\\xbb\\x00\\x90\\x1e/H\\xb2\\xb3\\xe3}\\x96\\xd5Ǹl؍\\xcf\\x1e\\xbe\\xef\\xf0Y\\xee\\x92\\x10\\xaa\\x1c0'\\xdd|0\\xe54\\x0fT\\xa6\\x0f\\x1f\\xee\\xf6\\\\\\x148/H F_R\\xc8B\\x0fw9ގ\\xc8\\xc1%\\x90d\\xb9|\\xc6\\xddVP\\t\\x1fJ\\xb0'\\x1c\\x9e\\x1e(̇\\x15U\\xfb\\f\\x87\\xf3[\\xb2\\x0e2\\x8a\\x19\\x9e/\\f\\xb0'\\xdcw8q(\\xac\\x04\\x9b+X\\roݟe\\xfdb3\\xfaB\\\\\\xfc\\xdd\\xea\\x18G\\x1a\\xc7\\x11\\x86.\\xaa\\xd5[\\xf8\\x1c\\xf4\\xc2o]\\x91\\xa5\\x92\\xc2\\xf8\\xf4~C\\x94\\xc3\\xceN',\\x8bF\\xbfJ\\x89R\\x92\\xa5\\no\\x8fsk\\x9bc۠$eG\\x15͈\\x06c\\xb1`\\xd4ДѬ,\\x0e\\xe6y\\x13\\xb5mT\\xc79\\x06\\xb8\\xaf}.\\xfau.\\xd4p\\xab\\xbfԪF\\\\i5\\\"\\xabi\\x1a\\xa0~-\\vw\\xf8\\xe1\\xd6kSƹ\\b\\xf3\\x80\\xd5\\xfb\\xf2\\xea&rޜ\\x03\\xc9r\\xc7\\r.]p\\\\tS\\xa7\\xb6\\xba\\xe6\\xdf[\\xa7\\xe6\\xd9JO\\\"\\x14ӵ\\xb4\\xaeG\\xa3\\xacRPm5\\x1c\\x8b\\xeaZ\\x0f[B\\x87\\n\\x87_\\xde[\\xd1\\xfe\\xcd\\xf9\\x81B(\\xa6\\xb1\\xcb\\xf0F\\xaav\\x10\\x9e\\x16\\xe59\\xb1P\\xa2\\xf3\\x95}\\xba?\\x18#G_\\xc9(Q.P\\f\\xec\\xec[j_v\\xc0\\x81\\x03/2\\xa6r\\xbe\\xfc\\xdeT\\xdct\\xf2\\x00\\x81\\x9aw\\xccxyb\\xfa\\xf0\\xecE\\xc7\\u070f\\xfd'h,՛d\\x99\\xc9lW\\xef\\xe1\\xe9\\xca\\x01\\xc1O?!^\\xe6\\x01\\ufaee\\t\\xe6\\xed\\xfb>\\xee\\xda\\xd5+\\x02b=\\xf6F1\\x97Ύ\\x90\\xc2X~\\x1ch/_\\xb5\\x1e\\xb6\\xa8!\\x85ǽ\\x01<\\x06M\\xfe>\\xfe\\x95>\\xadP\\xf7\\xdctq\\xb6,\\xe72,3^LHA)׃\\xe5\\xe0;*T\\n\\x8fyC|\\x1c\\xbe\\ro\\x95CTi\\x9f\\xcbo\\ue4c2D\\x84fI\\x14㙜\\x14\\x81\\x92-\\xd9=\\xe2:\\x96ج:\\xbf\\xfa\\xfd\\x18\\u007f\\xb0\\xfac\\xf0z\\xcb\\x13\\xbfi\\xc4yΧ\\xe2\\xa4\\xf7\\x86\\xd3\\x13\\xe5Ώ\\xe3\\xben\\xf3\\x8e\\xfb\\x0e\\xaf\\xfa\\xb8w\\xb4\\xfai\\xeb\\x1dz\\xbb\\xb2\\xf8mzS\\xbd\\xf8\\x9e\\r\\xf8Bk\\xbe\\xeb\\xa3\\xed\\xb1\\xc8\\xde\\x05x\\x85A\\x8cI\\xd3\\x12\\x1d\\xa0\\xae\\xab\\xf5\\xf5`\\x05\\xcc_\\te\\xb3\\xab(\\x84BY\\u05cfغ\\x9e\\xd65;\\x02\\x9f\\xa8<W\\x1e(D\\x828\\x18찟ز\\xe6\\x86\\x11\\xc7J\\xc3\\x18\\xb4#\\xf8I\\xa6Y\\xf9D\\xc4\\xd6t\\xccZM+Β\\x1c\\xf9:\\xc7\\xfa\\xabsQ(#\\xacm\\x03\\x81\\xaa\\x1f\\xae\\xcd\\a\\xe4\\x96\\xf0\\\\*\\xffe\\x80\\xd5h \\xd3\\x1f\\x03˳X\\x92=\\x1e\\x020\\xa9\\xaa\\x96\\xe49\\xfde\\xa8\\xda\\xe8\\xf7\\aX\\u05fao\\xa0GO!\\x18[2ȋ\\xd9]x\\x98ҟ\\x1bug\\x1fh\\xb31\\xf2\\xf7d^\\xe8\\a|iD\\x02\\xe6\\va\\xfeqU\\xea\\xaa3\\x13N\\xa5\\x8d\\xd7Xs\\xbc\\xfa\\x90\\x1f\\xeb\\xfa\\x94\\x12L\\x02!\\xd1{\\xbc\\xa7\\x02]I\\x06\\x95\\u007fƺ<\\xebUвb\\xfd\\x19\\xaf\\xfe\\xec\\x00j\\u007fj\\xb4M\\xe3\\xf9\\xbc\\x1b\\xc6蓈\\x82\\x88U\\xf0(\\x88\\xf7\\x85\\x18M`wGZ\\xf0)\\xfe\\x1d`\\xac\\x83ꅏq\\xaf7x\\xef\\x96e\\xef\\xc6\\xfd\\x06\\xbd\\x18\\x02\\xae\\f\\x9a_\\xfd(T\\xf90\\t\\xe1Uw\\xc0\\x88\\xbc\\x0f\\xae\\xd5}1^\\x1d\\xd4zp=\\xf6Q\\xe1:V;\\x1f\\xfa8| /*A+:\\xc1\\xbf\\xf3<9\\xdblx\\x1e-\\xd1\\n:%\\x1f\\xc0\\xed\\xb1W\\x98\\x0f\\xce1x\\x86m\\x8e\\xf1`(<\\xd8\\xe2+\\xcanӌ%\\x94\\xb1\\x0e\\\"f\\xf4˰\\xd3\\xf0\\x10#\\xe9j\\r\\x03c'xx2.\\x95k\\xb4\\x93ͿGQW\\xa9~\\x90\\x9b'\\x1c\\xac\\x87\\v\\xfb\\n\\xe7V\\x17\\xe3\\xc91\\x94\\x83\\xddz\\xb0>\\x00r\\x87\\x81\\xfa\\xc1P\\xa8]\\xd7\\xdf\\u0098s\\x05\\xf4\\x8f\\xf0\\b@\\av;ε\\xf4\\xa2u<0lY\\x8ei\\x8e\\x8c\\x98\\xa6cY\\xc3\\x1dG\\xcd\\x0f\\xacW\\xd33\\xeb\\x15u\\x8ff֩.\\x97\\x03\\x02\\xefGA\\x8bZ\\xf306\\xfdvE\\x9eI\\x8dO\\xd8\\x01\\xcc\\xcd_\\xb9\\xbd\\u007fd\\x8e\\xb7\\x9c\\x0f\\xfe\\xe1\\xacN9\\xd1947\\x82\\x18\\x13\\xa8\\xe0\\xa5\\x0458gNQ\\xddg/\\ue815\\x06\\xb7\\\"a\\xeb\\x1fh\\x80Y\\xdf\\xc3\\xe8*\\x1d\\x9cg\\xb6JV\\x0eL\\xceʒ\\xda<\\xa3J\\xf2\\xec䁃\\xe3+\\x13\\a\\xc6\\xfc\\xa8\\xfb\\xef\\x1f\\x01\\x8b\\x10\\xb2p^(o\\x9c\\x90LS\\x9a\\xd8X&,\\xbd\\xf1\\x93\\x9eM\\xa2]\\x03#\\x92\\x11\\xa1eo\\xe8\\xd5\\a\\xc6ڮ\\x8b\\xd7ɯ'\\xac\\xaf:\\xf6\\xea\\xd8w\\xb1\\xba\\xbeh\\x1b\\xdc\\xc5ް\\x9fm'9\\x00a\\xf3g<\\xca\\xca\\xc5\\xea\\xdeތ\\xf8b\\xaex\\xb2c\\xee\\x87Hy|!\\xf6\\x05s`<[\\uf01b\\x88\\xfb|\\xc6!\\x1a\\xa2\\x98mf\\xc9\\xd9l6\\xc4\\x16G(2d\\xfdJpC\\x1a-\\x90\\xecJ\\xa3\\xb1\\x94\\x8e\\x85P\\xb0\\xe0E\\xf4YXZ\\xfa\\u007f\\xe3y\\x8b͕\\xffǟW\\xb8\\xc8\\xf3Bg/\\xf6\\xb8\\u007f\\xcb\\xf3\\x9c\\x8b=\\xef\\xf4҅\\x1f'v<\\xebe<\\xe9\\xc2o\\xb5\\xee3\\x04\\xd7^\\xecKd;\\xe3\\x03\\xe2\\x10g\\xbb%t`+\\x01\\xe8\\xe1\\x0eD\\xdc\\x1e\\xb9eJR\\xe98\\rHգZ¡\\x841\\x1f\\xf7>Lm)!*\\xf4MW\\xe8\\x86E\\xfe\\xa3\\xa5k\\xcd\\x1fi\\x0e\\xc7\\xe9&\\xe0c\\xb5\\x1bgN\\x8c\\x92\\xe9\\xf1huO\\xdc\\xc58R[lI\\xba\\xda|\\xdb$\\xe5^\\\"3\\\"ؒ8\\xb0Kĉ@\\x95\\xc3\\xc0c\\x1d\\x06\\xae\\xc2\\xc9\\fG\\\"#\\x99\\x04\\xa4y\\xae\\xa4J\\xa2$K\\xed\\x13\\xe4Q\\x85\\x8e-\\xb2\\x89yq\\x9c \\x8f!E\\u0091\\x88\\x88I/\\x9f]\\xd4\\x0f&\\xf6\\xde)\\x8fV\\xf3yvH\\x98\\xe2cޭz\\x1e\\t\\x9fg\\x02\\x14v\\xab\\xeb\\xf9`\\xf22Jۃ2\\x8e\\x8e\\xbd\\xae8\\x1f|)\\xcf\\xc6м\\a\\xdd%c\\x98&<Ͳ\\x10\\xea\\x8a4\\xacö\\xb1\\x1bS\\xdc\\xd9\\xd2-\\xd6h\\xa7?\\x8df;\\xcf?l\\xed6\\xec\\xc9\\x16\\xb6'b\\xa0\\r\\n\\xd70\\x1e\\xae]\\xc3\\xea\\xba5\\x8c\\xb7ߦ\\x1e_\\xf7ͪ\\xfe\\x98\\x88hlߺ\\xb8\\xa1N\\xaaj*\\xa5\\xb2\\x1dɶ\\xd3+\\xb8m\\x9eŜ\\x87\\x11Ճ\\xf5\\xbb\\x93x\\xb8\\xc4K\\xf8\\nc\\xb2\\xb1\\xdc\\xceٍ\\xfd\\x94]\\xb4\\x1b\\x0f\\xfd\\xd8\\r\\x88]V\\x04Bځ߀\\xeejPO4w\\u007f\\xd1\\v\\x11I\\xaf\\aK\\xfe%\\xb49\\xe7!#\\x9b/֯\\a\\x97\\x806\\xde>،\\xe4\\xd6j$\\u0095\\xf8*\\x03rW\\xe7\\x80\\x1a\\x843^bl\\x14\\xcd\\x14[j\\x057\\xe2.$\\xcf`Hfԁq\\xbe$.$\\x19W]\\x17\\x8e\\xa3d\\x83\\xddy\\f\\xc4](\\xdfL\\xa0\\x95t\\x99V\\x14n*\\xcdOAd\\xfaֹJ9\\xba\\x9a\\x01\\b\\x97\\xda\\xe2C/\\x106t/\\x95\\x86\\t\\xe8\\xf1\\x8cL*\\x1a\\x98\\x0e\\xc4R=\\xc6\\xd2\\xeeS\\xe4\\xe9\\xfc\\xe6B\\x95e*\\x8a\\xa9\\x99\\x8a{\\xe2\\xd9S\\xbbCmۉ\\xd3%\\r!\\\"Nu\\x1d\\xe8B[ڇ\\xb4\\xd2\\\",\\x8d\\x88\\xe6LO\\x96R\\xa9\\xfe\\xeaƄN\\x96O\\x85؊\\x8d\\xe7\\x1aF<\\x940\\xbd3\\xa1S\\xcds>\\xeb\\xdfrh\\x03\\xb7\\x93\\xe2\\xf6Q\\x1bBͿ\\xf5\\xe4\\xf7\\\\^2\\x00<\\xbdg\\xdf\\x11\\xc3\\b&\\xab\\xc0J&1l\\x89\\x87X\\x85\\xe6\\xa2\\x04\\xe7\\xc2\\xed\\xd5\\xeav\\xfc\\xa4\\xa7\\xf9Q\\xa1\\xde\\xcbÇn9\\xb2\\x85\\xac\\xa0\\xf0zۭ\\x91ȭ\\xdb0\\xe9\\x1d[S\\a\\x871\\xddll\\xbe\\xfc\\xf2\\xcd~;1\\xa8K\\xed\\x15\\xd5f\\x04\\x9c\\x1d\\xa3\\xb5j!\\xe6\\\\\\xbcNJ`bz\\\"\\xf0\\x8cy\\xc6|95[\\xea\\x1b\\x1a\\xea#B&\\x9fϬm\\xab\\xdf\\\\-γۀ\\xa0Y\\x88\\x91\\x93\\x17\\xaa\\x13\\xa0\\x11\\xfd\\xe4Ȗ3d\\xe9b\\x95\\xc1ͩ\\xcb7o\\xf6\\xe6\\x05\\xaf./\\xbf&\\xea\\xc5\\xeb\\xf02\\x9e\\xef=\\xfb?c\\x1c\\x89Y\\x1e\\xe5\\x9b{\\x14㛺\\xd6\\xed\\xae'sō:\\xcb\\x13\\x95\\xb5\\x89\\xc9\\x1a\\xf9\\xab@<\\xa0\\x8di\\xaaIϱ\\xa9o1\\xdb\\x13\\x8b\\xa6\\xb5\\xd5\\x1b\\xb2h'\\x02o\\x8dE\\xee\\x8eD%j\\xaa\\xb6A\\xe3\\xf6\\r=\\x83s\\xb1tOl\\x8c>\\f\\xbb\\xde1؎f1\\x8d\\x93'9\\xff\\x92\\x8b\\x1d>\\xe5\\xab'\\xaf#\\xab\\xe0\\fD\\xa6\\xe0\\v|^'He\\xc4U\\xf5$\\xef7\\xa2\\x86\\xd2-u\\x87\\xbei8\\xea\\x1bX2\\xa7gYV8\\xa9\\xb1\\xad\\x162U\\xcd\\t\\xb1\\x83$i\\x98\\x11\\xf3}N\\xfc5\\xa1\\xb8\\xa5=i\\xe7\\xa2J`\\xe8\\x9fXV2\\xfc\\xc9\\x1f\\xb0\\x9dj\\x86\\xb4\\xbf\\xf9T(\\x99\\f\\x9f>\\x1aN\\xba1\\x83\\x05\\xf2Q@\\xc5H\\xb0\\xe7U]\\xfb\\xfa־<\\\"\\xa2\\x86\\x067\\\\\\x8d\\xc3C\\xd9\\xff\\xc0\\tg\\x01\\x97<\\x8bT\\xf0\\xccSVH\\x92\\xb5\\xbe藺\\xf4\\x9e\\xc0\\xa2f\\x85\\xed\\x87ee>\\xac\\xe7\\x1d\\xcda?\\xc6i\\xda;\\x94XW \\x12\\xa2{{-\\x856\\x94\\x98q\\xceNHY\\xe2}K>G\\x95\\x18\\x81D\\x87\\x9c\\xb6\\x83\\xc2D\\xcd\\x05\\x17n\\xf5!'\\n&\\xf5K\\xe6\\xa2e\\xbf۰\\x8bݯ\\xd7\\\"RB2\\x8c\\u007f\\x00{Gr\\xc0H\\xaa\\u007f\\x18\\xccn\\xb1\\xe9.\\xcaf\\x99\\ue8a5U\\xf4P\\xcea\\xfd&\\xa07_r\\xd2w\\xbb\\xf1\\x9c\\x80\\xff\\x00?\\t\\xa9\\xf51\\xb0\\xc9{\\xb1\\xe3\\xf0\\xd6G'\\x9f\\xead\\xb5\\\\r\\xc3Y`\\x06\\xc44\\xa8p\\xe4\\xd9\\xd8x\\f\\x8f1\\x16D\\x8c\\x9c߮M\\xe7\\x1fL\\xd4C\\xb7\\x05\\x9cp\\xc8\\xdcb\\r\\x88N\\xd8r\\xa4\\x12Q\\xf5\\nq\\xc2Z\\xd8\\x12\\xa7DM\\x13K\\xa2\\x19\\xd6U5\\x18\\x94\\xf2T\\x15{$'\\x10v\\xc8h\\xf3\\xefr\\xa3\\x89\\xe0MV8\\xec\\x98\\x1b7\\xf4\\x9fR\\xd40\\xbb\\xfc\\r\\xaaF\\xc8\\xd7\\x15%\\xech\\xb6\\xf6CM{Z\\xb7uQ\\xe9\\x0e\\xfd\\x11\\xd1\\xd4\\xd7\\x05\\\"N\\x18\\xf9\\x12\\xd9\\xedg+°0.T1\\x1ef\\xdc\\xebi^G\\vs\\xbb\\x80Ju\\xd5\\x1evJ!^\\xa9\\xbb?v\\x9f\\xac\\x94\\xb0\\xcfĬ%\\xde\\xd7\\x1c\\xf7C\\xba\\xbf\\xf3\\x82\\xa6\\x1dÿ3\\v\\x8a\\xfc\\xb0\\x1d\\x0e\\x9d\\xe6}\\x8dĠS<\\xdb\\x0f\\xdb\\xfe$la\\xf3\\xaa\\x05\\xf8\\xe7a\\xfd\\xf2:\\n}.\\xf6\\xa4\\xab\\xd4\\xe4A#ʼ\\x9ek+H~+\\xef`\\x9dΩ\\xb6%5\\xa8b\\xf5\\ue961b\\x9f\\xb6\\x03V@X\\xaf\\xe7\\x9d\\xf0<VF1\\x94\\xc5@\\x8f\\xde\\xf5\\xa5h_0\\x14y\\x8a\\xf7P\\xde[\\xc3.\\xbf\\f1\\r\\xbb\\x90{c\\x1f\\x95\\xc6\\xd7\\x11\\vTH\\x02\\x1b\\xaeZp{\\xfc\\xa8X\\xe0n\\xf0y\\x88\\xb5ֆ\\xcd\\x05}\\x03Q\\xc0N\\x8f*\\x97S\\xa5\\xa6P\\xc0\\xed\\x15\\xef&\\x81\\x9aItbҌ\\xa4O\\xe8bo\\x84\\x88\\\";\\xac\\xa9\\x94$\\x89\\xb9U\\x97\\x06CD\\xd7\\x06%}\\xabI\\xc8\\x02c5\\a\\x15\\xfa\\x020\\xac/Pe\\xd0j~'`\\xbe\\xb5\\x96\\x8f]N\\xe9\\xe5\\xb5L\\xf2\\xad\\x80\\xd6\\xd2oj\\x0fV\\xb3\\xf1\\a5s\\x95\\x1d\\u007f\\x10\\xe8o\\x11c}O$\\xbc\\x88J\\xd1R\\xb9\\x86:m\\u007f4k\\xee\\x0fKz\\xd2\\x19'n\\xff\\b-\\x0f\\xe5AR\\xbae\\x97\\x1e\\f\\xea\\x8ea\\xa7\\x86\\xa8\\x9d\\xb4\\xed\\x17z\\xa6,7\\xca\\xc3\\xf2A19q\\x85m\\xa0\\xa9\\xc8\\xee\\xcb\\x02I\\xc1\\xaf\\xa3.\\x80_Y+\\x8e\\xab'\\xff\\xf3EF舁\\x8b!K\\xcf\\xf9l3O\\x9f\\x83\\x1c1\\xd4\\x14\\xbc\\b\\xb8>\\x14\\xc9lG\\x14\\xdc\\xf6\\xfa\\xbf\\x87q\\xb2\\xbbP\\xa6\\xe5IoVGeauP:b\\xb8(\\x17\\x0eQY%\\x9f^\\x1d\\xb6\\xa5\\xb9\\xaf\\x1d\\xd4e\\xb75\\xcd2AE\\x8f;\\x92\\xed\\x8c\\xe2\\xd2ge\\xdb!^\\x1em\\x97c\\u007f\\x1d>\\xeeP\\xe7\\xfa+\\xac\\xb3ϸ\\xfb\\xe2ud\\x8f{ںx\\xd5V<s\\xed\\u007fg;vF\\x02\\xa0\\xdcT\\x82\\xdb\\xe3\\\\\\xbc\\x8e\\x811]Ok\\xfa\\xd8\\x18J\\x9e\\xc7:\\x8e.Z\\xf3\\xe5\\xf5\\xaep\\x8f\\x845\\xef\\xb3\\xf9\\x15\\xbeO\\xd9\\x17ր\\xbd\\xc4\\xc5\\xdf\\xe1\\n\\xf6\\xc8[FPN~\\xa9\\xae\\xfd\\xce\\xc5뽐ֵ[F5V[\\xed\\xb0\\xa6\\xbdSo\\xcfs\\xb0v\\xecB\\xdf\\xc4U\\xf8E\\t\\x17\\x05\\x8d\\xfc\\xc8\\xeab\\xbcј+\\xaey\\xbb\\xd5EҚm\\xf3\\xa8\\xd1|\\xdd\\xf2\\xf5c,c{\\xfb\\xfdAG\\xaa#\\x02\\x90POL\\xd4㨋\\xf6\\xcc\\xee\\xeb\\x13\\x93h\\xe2\\xcbf\\xb2\\xdab8\\x13NȖ\\x9cH\\xa3\\x18\\xf9\\x94e\\x95j\\xc9\\xfe7K\\xd2\\x1f\\xe4\\x14%G~\\x88\\xf2d-Y+Y\\x96+\\x1b:\\xff\\xaf\\x18\\xfbp\\x85\\xad\\xb4\\xfaP\\x9b\\x89~8\\xb95\\xb2S6#J\\xb0\\xe4B\\n\\xd9^\\x9bp\\xfbG\\\\5\\x92\\xffmY\\x83\\xba\\xdd|\\x10\\xde\\xe0\\t\\x1c\\xe3\\xef\\xb7\\xf5s\\\\@\\x8a\\xf4\\xa5\\xf9\\xa0\\xad\\x0fb\\xa1\\xf77ȭ\\xa69\\xa4\\xa3=\\x99\\xeb\\xc3\\xd6ܸ\\b2X\\xe2`\\xa6>\\x04\\xe7\\xb3Y\\xb7\\r~\\xca\\xf8\\x87\\x0f\\v\\x86`Ê0<\\t\\xb0\\xdca\\x90O\\xd4\\xd9\\x14\\x1a\\xad1\\xc64\\xcc\\x18\\xc3 \\x81\\xc9\\xe1\\xd1\\xdf\\xd6압O\\xa8:\\x85\\x03\\xb2G\\xb5\\fq\\xaa\\xb94+\\x19\\xda\\x18Yj4\\x97ȗEIS\\x9b\\x1f\\xc3\\x13d\\t\\xbf\\xdb\\x17]\\f\\xaa6\\xb5C=h\\x8b\\xbe\\xad@(\\xedSoP\\x03\\v\\x90 +\\xa5T\\xf3l\\xaat\\xadL\\xe9av\\x98M\\x95V\\xd1l\\xc7\\uf47bڏ`\\xb5|\\x90\\x1b\\x95?\\x8f\\xf6`\\xdc(\\xac\\x9dt\\r\\xc8?\\xbb\\xdcr\\xbflm:mũ/\\xf2ʤ\\xb2\\xee\\x13ȱ\\xf6\\xd5k\\xee۶\\xedYA\\x9d\\a\\xb77h;V\\xf3\\xc9\\x1a|\\xed\\x11\\xeb\\xc5\\xd3\\x0f\\xb4\\xf4 \\v\\v\\xa3\\xb9\\xe6\\xd9\\xdc\\xe8\\x02[\\x8a\\xae,\\x95&K\\xefCq\\xfdS\\xae\\xe0\\xbfy\\x0e\\x17\\x96\\xa1,\\x18\\xa2fY\\x83\\x95\\xde\\xe5\\x17\\xe9\\xcb.\\x8f\\xf8\\x116\\xd7Մ9\\xd0r\\x16\\xb1\\xb3Q[\\x84珶\\xc5\\xf9u\\x00W\\n\\x92\\x8a\\xc7L0\\xde\\xc6\\x17\\x8a\\xa7\\xeeK\\x97}i\\xb1\\x01a\\xb5\\xc5@\\xdcj\\xbe'\\xd2-\\xa5P\\xe8\\xb0\\xedV-\\x95\\x90\\xb5\\xf9\\u007f\\x9a\\xd7\\xe4DJ\\xbbu\\x1b\\x88\\x13x\\x9d\\x16\\xf9\\xee,\\xdf=\\xcf\\xd8\\xcbϚQӉ|\\x16\\x97(\\xef6\\xe5Pʼ\\xfdv3\\x15\\x92\\xcdw\\xdbϬ#\\x85mo<\\x9b\\xf4\\xb3\\xe4+\\x8c6lC\\xaa\\fo\\xe6E\\x89\\xa0.NK\\xa1\\x95\\xc8\\xf3AUo%<d\\xfa6D=\\x18Q\\x15(\\xf9\\x9ch\\x1ct\\xf6*\\x1aш1\\x1f\\xe4\\xb6\\r\\xf6\\xf5!bl`\\x89\\xe0^\\xb6\\xa1\\xbf\\xb1\\xc43\\xceq\\x87\\x18ƒ\\xae\\xf4\\x1bG\\f]\\xb9\\x147p\\xb4&\\xeb)\\x90\\x80*\\xc8\\xe7}\\xdd\\x17k|\\xb8\\xad)\\xf0tF^\\\\q\\xaf\\x9fD!\\xa6\\x99\\xcb_\\x91\\xda\\a\\xaf\\x9e\\x9b\\xbbz\\xeej\\x14R?\\xe4K\\x9f\\xccڶ\\xd6|\\x8cZy\\xdb\\x06L\\xea\\xb3sp\\xf2Z\\x14e\\u007fݗ&\\x1fMY\\x8c\\x82\\xa6,r\\xc6\\x10\\x94\\x0e^\\t\\xea\\xc3Z\\xd8\\v+\\xe5\\x053\\xf2\\\"'\\xd5<\\x9d\\xd7\\f\\xb8{\\xa8y\\x80a\\x00\\xe34\\x04gF\\xc33\\x80F\\xc90\\x9e\\x9f-\\x8e\\xaa5r\\xe4I\\xf0\\xc5l~\\x1b\\a\\xd0\\x13h\\xef\\xfc\\x97\\x99x<\\x13\\xbfT\\xa5\\x92Iw\\xef\\xdbMM\\x89\\xaa\\xd5\\x1e]5D\\xd5\\x0eH\\x11ِ#R\\xc0VEC\\xd5{\\xc8)p\\b}\\xf2#8خ@{\\xe9\\xedq\\xb8~?\\xb1\\x02T\\f\\x87E\\x1a0EK\\x1e\\xdd\\x1aMR[QUP@\\xa8\\xaab\\xd3dt먌\\xe3⋸\\x06\\a\\xbb\\xecn62\\x04\\x05\\x9d\\\"ku\\xb0\\xa7+;\\t\\fq\\x18q\\xdf\\x10\\x8d\\xe2K\\bf\\x00\\x18\\x06q\\f)\\ah\\x9c\\xdcVr\\v\\xefI\\x0ey\\xbd(*\\xe2\\x1b4\\xe5\\x8d\\xe4\\x85Y\\xc5Lv)}r_*\\u0557\\xbaC\\x155\\x1a\\xa37\\x11Q&\\xbdsr\\xb2\\xcbRj!\\xb0\\xfa\\xdaB\\xd9\\xecGg\\x89\\xfc\\x17\\x12=\\xc3.\\xfe\\xda\\a\\xac.ô\\x8e\\x91\\xe9\\x14\\\\\\xf85-\\xa6\\xb2K\\xdf$\\xca\\\")\\xdf\\xf6\\xa7\\x96\\xa5'\\x03\\xef}4\\x06\\v~\\U000fa0cc\\xb8(-\\x9b`\\x95\\xd1\\xf0\\f\\xe3\\x96v!\\x16\\\"\\xa0\\xb8\\xd4aq\\x05\\xe0)\\xab\\x03ϔ9\\xf0\\x8b\\x9a\\x11}\\x18\\x873\\xa4>Ɂ\\xa7<\\xe2\\xf6\\x87zJ\\x17E\\xf1\\x89Dר\\xfd\\r\\xcfN\\x98\\xb0)\\xbd\\xf9?7\\x8az\\x9f&m$DR\\xa4\\x1e]\\xd2&5I\\xef\\x91U\\xe9\\xb3\\xc9\\xe1\\xccF\\x04K\\x19\\xa9\\xfeU&\\xa3\\x1aF\\xaa+9~\\xfdum\\xd1^\\xfa\\x97Oh\\xda\\x13\\x92*Kz&\\xa3+\\xf4pfС\\xca\\x13\\n\\x9ddk\\xb1_\\xb2\\xfe\\xff&\\xf2MF#+l<_&\\b\\x0e\\xc2\\xc0\\x01B!wZ-\\x94U\\xa7>\\x81\\xd8\\x14nN4\\x11\\xc3p\\xaf%\\x84\\xfe\\x00\\x8b\\xc8:\\xa0~\\xf82\\xe8\\xaa\\xe3W5\\x86Gf\\r\\xab\\xa1\\x91\\xacl\\x112\\x95\\xcdN\\x11b\\xc9Y\\xa25\\x14\\x85>\\xa6\\xeb\\x92\\xc9\\xfa\\x8b\\xcc\\xfe\\xb1\\xfeb^7<\\xac\\x19\\x8a\\xae\\x15\\x8b\\x9a\\xae\\x18\\xa5\\xeen\\xcdP٧\\x8cQM567\\xfe\\xe4O\\x1a\\x86֯\\x18\\x92t\\xc8T\\xaf\\xbcR5\\x0fI\\x92\\xa1\\xf4K\\xe4á|H!\\xec\\x0e\\x1a\\r\\xb1\\xa2\\xaaL\\x8e\\xd4\\x1e\\xad\\x19\\xba\\xaai\\xc3w\\x0fk\\x9a\\xaa\\xd7\\v\\xc7\\n\\xec\\x98j\\xa9\\xb9\\x94FU6OX\\xae\\x8ep\\xb95\\xde<\\xbf\\xea]\\x9eF\\xda[\\xa5\\xa8\\xad\\xf8e\\x1e5\\xe8ܷ\\xb0s/\\x90\\u007f\\xa1\\xf2Kh\\xb9\\u05cf\\xc6\\xea\\nZ\\xfe=\\x87\\xe9\\xa8/\\x87D\\xd7d\\xf9\\v\\xf1\\xbf\\x1fa\\xfe\\n\\x1e\\x90\\xbb\\U0002efc7\\a\\xefx%Y\\x97\\xb5bɩ-\\xd9C\\x14\\xa3>\\xee\\x16\\x16\\x84\\x1bXOw\\xcd\\x1d'<\\x93\\x0fF\\x12K<60\\x1f\\x99h\\xed[\\x9d\\x9c\\x11\\xab\\xdcE\\x1e\\vyo\\xed\\xb5\\\"\\x97#O\\x82\\r\\x02\\xe0\\\\\\xccH\\x88\\x15\\xac\\xd0r\\xfd\\a\\xa1$X\\f\\xb0-\\x9b\\xac\\xc6\\xdfu\\\"\\x18\\x8f\\ag\\x87\\xadP\\xc8Jd\\x9c\\xee\\xc4\\xce\\x1bv\\xb2S\\x97\\xe1\\x1bߎ[Q`\\x19\\xe4P\\xc34$Q\\xd3-\\xe5\\xd0M\\xa4\\xf9\\xfe\\xfc|\\xfe\\vp\\r\\xcc\\u0530g\\xa3\\xf7c'.\\xe9\\x1eLŢ\\xfa\\xf0,\\xbb \\x93\\xe8*FK]\\x13;wN\\xc0\\xf9Kފ\\xef};n\\xff\\x12rDB\\xb6ߑ\\x90㦢\\xcbD\\xec~\\xf4\\x88\\xf4\\xa7\\xec\\xa6(\\xbf\\xf8\\xd5\\xf9o\\x8ao#\\xcf\\b\\x13\\xc2V\\xe1n\\xe1!6\\a\\x96(D\\x8d,\\xa0\\x83H\\xa1\\xcc\\xe9֬\\x88p\\x8a`\\xd4\\an=@\\xde Ɂ\\xb3i\\xa9\\xe5\\x89W\\xafUJ\\xc5DPD$F \\xda\\xdc\\x15\\bA\\xe4Ul\\x1c\\xb6n\\xa9\\xe7\\xc1\\x96\\x06Mq+\\x0e܍\\xe6\\xa9ZH \\xa0\\akgR\\xc8\\xe6\\xb6$i\\xc8f\\x1c\\xa89\\x98\\xbav\\x1b\\xb5\\xa5!-\\xb8i\\x83\\xb1SKآ\\x16\\v\\xe4\\xfb\\xcd\\b!\\x8aE\\x9d\\xf8\\xf0\\xa0A\\x15%^4\\x12\\xc1\\x98\\x11\\xd2\\x13\\x06\\r\\x87\\xc9\\xe2\\xaa\\xd2z\\xac\\xb3\\xb4\\xee\\u007f@\\xfajx\\xc0\\xe7\\xf0J\\n\\xb7\\x89\\x13)dU\\x02]]\\x01'\\xad\\xe7dE\\xbd\\\"\\xa8\\xe7\\xf6\\\\\\xb9\\x91M\\v\\t\\x1a\\x8e:\\x8ah\\x9b4\\xa0\\x131`ĕ\\xb8aЭ\\xec\\xab\\x1aa\\x8d\\x11\\x94ɐ\\xd6Y2`u\\x94T:o\\xbc\\x8b]\\u009e\\x17\\fƸ,\\xe9\\u007f\\xa3O\\xfe7\\xb0\\x8fn\\x17\\x0e\\xfd[\\xfbg1\\xd1BGt\\x88\\xe3\\xc5c`G/\\xab;\\x92/\\xe8\\xfaQ\\xb6\\xdcҴ\\xa3\\xba\\xd6\\xfc6[v\\xbdG6$\\xd8i\\xaf\\xac\\x17\\xfe\\x9e\\xc6\\xee\\x03+\\xb1\\xa3\\xba\\x0e\\xf7\\xd1\\xde#\\xcbl-\\xf7\\x1eݵ\\xd7\\xfe\\xb2k\\xaf>\\v\\xb8 N;\\xba\\xf2\\xeaD\\x1d\\x12e\\x00\\xefD\\x9cJO\\x16\\nQ\\xeaj\\xe8X\\xa9\\x02\\fwl<\\x06\\xa8G\\xecE\\xa9\\x97__\\x93@\\xde4~U80\\xf3F+\\x1c6\\x1f\\xfc\\x00\\xdbZ\\x1fx\\x83\\x15!!\\xeb㽆l'\\xf5\\xd7\\xdbAk>\\x14\\xba\\xd5\\n]R\\xa4\\x92\\xae'\\xb5@\\x80}\\xf0\\xff\\x15\\xd8\\x12y]<>ɲ\\f\\x87\\x1e\\x90\\xaf\\xd5$Cw\\xe8u\\xca~Lh'\\b\\t;\\x91>+\\xac\\x86-+\\xc46f\\x187\\t\\xc60H\\xea\\x95F\\xe4\\x1dVT\\x8cʡ\\x9f\\x8f\\xb0\\xcb\\xd9%a\\xb3`h\\\"\\t\\x1bc\\xe1\\x84ue\\xd0\\xde\\xc6\\x1eD%\\xe3\\xb8t\\xbf\\x91\\xa4\\xec!\\x0f\\xc8\\xd7\\xf3\\xc4[KV\\x98\\xd5\\x0ey\\xd5\\x17\\xcf\\u007f\\x89\\xf1\\xe2_e|\\xdd\\x0e\\x17;\\xdb3E/K*\\x8d\\x02\\x03\\xc2F\\x9e\\x03\\xbe\\x17\\xae\\x8b\\x02\\xbc4\\x86\\xad\\xf5|\\xb3j\\x8e7Tk\\xd5\\x04\\x80\\aS:~tP\\x91\\xb4\\x00c\\x15~\\x1d\\x8b|)\\x12N$6\\xdc\\x1b\\n\\xbc\\xe15\\xd3\\xc1`\\xfbT\\xb5\\u007f\\xe0\\x8a\\xf7>\\x9c\\x9f\\x9fJ%\\xa3\\x03\\xa5H\\x97\\x19\\xb3\\\"]\\xb6\\x12\\xf9\\x81\\x992\\x0f\\x0fn\\xd2blQ'i\\xe4F=\\xd0|A\\x946\\xfdI8\\xfaT\\xffM\\xc9d\\xfb\\xd4n\\xe3\\xe8\\xe7˕\\xa9y=\\x1d\\x88uE\\xac\\xa8\\xd5\\x15Im\\xe9\\xf2h\\xf3Kh\\xdb\\xd2%d\\x85~\\x9c\\xb3\\xc0Z\\x94\\xcd\\xd2\\xf1\\x12`E\\xa15w\\x1c\\xe8\\xc8d\\xbd\\xca(\\x8cS\\x01\\xf8\\x9c\\xea&\\xc2YX\\x85k\\t=\\x0eW\\x81U\\b\\xa2\\x0f\\xc1\\x06~\\x85*\\xb0W\\x80\\\"\\x98aL\\x17\\xf9?\\x02z]\\x96ߕ\\xb2\\f%\\xa0\\xcc\\a\\xf2\\x86\\x11\\xb8^\\x0f|m\\xa1\\x11\\x88n\\xc0 \\xbd/\\xad,D\\x03:\\x8f\\xd7\\xfbQ\\x83\\xf5\\x01\\xad\\xdbP\\xb2z\\xaf\\x15\\tWcWE\\xeaz\\xe0\\xf0\\xa5\\t1\\x16\\xdb\\xcc\\uede4\\u05ff\\xaaH\\xf7$MK\\x91/!\\x86hZ9\\x93\\\\\\xa95\\x00`\\x12o\\xb1\\x81\\bg\\x03\\xd1\\x06\\xa6\\xd9JǴ\\xd8\\r\\xe5\\x92%\\x1b\\xa1\\xb8\\x1a\\xbe\\xf4l]\\xdf\\x1b\\x9b\\x86\\x00\\xec\\xdd-]\\xe8W\\xd8Z\\x1a\\xe2:\\xb7\\xb8.\\xf61\\xc7P\\xed.\\x8e\\x83\\xb7\\x06-\\xb1\\xef>\\x06Jz\\x84\\x1c/!<\\x16((\\xe5\\x89\\x19\\t4\\x99\\xd5ɲ(p\\x86+\\xb2\\xe1\\xf5i\\xdb\\xd14\\xc7N\\xbf~CdN\\xa6\\x85]pLC\\xe1@D\\xdcU\\xa0\\xb2.J};ń\\xed\\xc4cq\\xc7N\\x88;\\xfb$\\x11\\x8d\\x10\\bM\\xda\\xd9+\\xe3\\xbai\\xea\\xf1+\\xb3vrN\\x95\\xbb+\\xecP5u\\x9bT\\xbae\\xd5\\x16EYJM\\x88a#\\xa0\\xaa\\x01#,N\\xa4$Y\\x14\\xfd\\xb2!\\xe0?\\xb6C䯖-h;\\x12\\x99\\x9f\\xa3t\\xed\\x10Zvo\\xb8Jfk\\x00@,\\xf5\\xb8I\\xf2iP\\xb5\\xe3\\x8f\\xcb,\\xb9\\x9c2f}\\x1f#\\xab\\x8e\\x95\\xd3Jt \\xaaDz#\\x01\\xfd\\xd3z\\x80dA=\\xdf\\xe0\\xe2$\\xcevr\\tS\\x16í~+\\x9a\\xcckZ\\xb0;\\x14\\xd5LS\\xf0\\xc7,\\x03\\xce\\t\\xa4\\x86\\xdb\\x10\\x8df\\x95>:\\xb1\\xb6\\x86~\\xe9\\xc1oDn\\xe6M\\xdb\\x04>6\\xf6\\x81\\x8ez\\xa7\\xcbX\\xed\\xb3\\xda)m\\xd5_'(\\xfc\\x82\\xaf\\xfa\\xf9$\\xd4~\\v \\xafk\\xbb}[au\\x9cJ_\\xc4Z\\xcf\\xd6I\\x9c\\xa8\\x8f\\xb0\\x05-\\xae\\xb4 H\\\"\\x8fXKһ''wO~ꩍ\\xf6dV\\x92\\xe3\\xfdqY\\xcaNڮPb|\\x12\\xce6\\u007f\\xbc\\xbd;G(%\\xb9n?\\x96aг\\xa2[\\xe3U\\bO\\x84\\x06b\\x04H\\xbdH\\xfb\\x91\\xf9\\xb6f\\u007f\\xa1\\x15\\x1f'\\xb1^+\\xa1غ\\xb5\\x9c\\xc8\\U000a1eb4\\xa6e\\x04\\x8eI\\xc1\\xbf\\xab\\xcef\\xd5^\\xfc\\xb2\\xb3\\x10\\x99\\x8bp\\xbfn\\x88\\xe2Ԋ\\xd6Q\\xbc\\x00N\\xb7?\\xed\\xf5Q\\x0evYC\\x80Y\\xb7\\xa7\\xc2\\xc7}\\x89\\xd5lLl\\xf0oL\\x16\\xd6~\\xcd\\xf7\\xe1\\xfb\\xfc\\a\\xd1О\\xd1\\xd8\\xc24\\x1f\\xd7\\xd8{ivW\\x04>s\\b\\xdc\\xc3\\x17\\xc9X\\x13\\x94'\\xbf^\\xf3]\\xf9\\x1b~\\x8c\\x06,-ڥif\\x8cϣ+\\x04dd\\x11\\\\\\xf3\\b\\xd18\\xdaf\\x8f\\xe1\\x04\\xca\\xe1$$\\xb4-W=\\xa9\\x8bM\\x91\\xfe\\xbb\\xac\\x85\\x878\\x918\\x9b\\xdd[%\\xd5=\\x10We!7*\\x8a\\x10\\xe6U#`ݦA$WQ\\x8c\\x17\\xe3[\\x19\\x8b\\r\\xf1\\x99\\xb3d\\xe1?\\x15Ǫ{\\xf7U\\xc7\\xfa\\xfeS\\xff\\xd4T\\xf3\\xe4hN\\xb5\\x18m\\xd0e\\x9d\\xfc\\x04\\xbe\\xcbO\\b#s\\x8cT\\x984^L\\xcc\\x03\\xf8~1\\xf2\\xdf\\xc1f\\xf4\\xbfG|u\\x0e\\ny\\xa8\\xf3\\xea\\xaa\\xd4\\u05fcB\\\\Z\\xf3\\x02\\xd0\\xfa+^}\\xb2\\xedʇ֯:ɍ6x5>\\x0e\\xd5\\xf8xd\\xcc\\xff\\x02\\xfdͳ\\x17\\xa9\\xff\\xa8\\xf0\\xffu\\x9do\\x86:\\xdf\\xfc\\xff\\xaf:o\\xe0(\\xc9\\xff\\xd6:S6\\vnn\\xafX_Q]\\x8b\\xb5\\x1d/\\xa7\\xa2W\\xe1\\\"3\\xfeJ*\\x18ru\\t\\x1f\\xbe\\xe0\\x1a\\xfb\\x84p\\x87p\\xaf\\xf0'\\xa8i\\xed\\x90p%\\xfc\\xd2.\\x90ȵ$_n\\xbewv\\xd5ں\\xb6j\\xb5y\\xa1\\xbdW\\xae\\xee\\x87\\xef\\xe0\\xfe\\xfd\\x8c\\xc2\\x17l\\xd2\\x11Xa\\x823\\x86\\x19\\xf0%\\x9ap\\bg|\\xf8\\xb6\\xbe&\\xfd\\xbb\\xb8\\xe5<L\\x16\\xd37\\xaf)\\xe3\\xacI_\\x82ے,\\u007fB\\xb6eK\\x96\\xd5@\\xd46\\xc2IYN\\xf4\\xa0\\xeeᒉ\\xf8D\\xd0Hu[\\x99n]eE\\x96\\xf0\\xfe7\\xe3\\xb6\\xcey\\xa75鬯&Κ2Κ\\xf4%\\xb8\\xfd\\xaf\\xec\\ue7d0Y\\x1dlV\\x89\\x91hw\\xca\\bK}N\\xf3/\\xd0\\xd8ytr?[\\xbe٬\\xa0*\\xcb-\\xbb(\\xe4ú\\x85\\xfdl\\xd4Ts\\xe8β\\x16\\u007f|\\x84\\xac\\x17\\x93\\x9e7\\xad\\x83\\x11WZ_\\xa2\\x8e1\\xb5YGŨO\\xf8\\xfa\\xe7\\xb9!v J\\x10k\\xb0\\x89\\n\\xd8І\\xb4գE\\x87\\v\\x8c55\\x15\\xe5f\\xbeK\\xc7bj\\xc4j\\x8c\\x8dE6X\\x1b\\xb0\\x18\\xeaf\\xd8\\xc1\\xbb\\xd0\\xe9\\x137\\x9fOo\\xb0\\xb4X,\\xad\\xb0+\\x02\\xecJ\\xdc\\x15\\x86b\\xac?\\u007fާC0\\xd9\\x1cxH\\xb8\\x02\\xe4\\x95y\\x84\\u007f\\x98\\x00'm\\xf4\\xd7C{\\v\\x90]$ \\r\\x8b\\b6\\xba`}\\xafF\\xb8K\\x8fZB\\xd7a6\\x9bH\\x1c\\xbd\\xc6\\x01\\xf7`7j\\xb7\\xd7_\\x89\\xa9\\xeeQ\\xa9\\xbdd\\xbfVQm*+#G\\xb7l\\xbc\\x94\\x88c\\x8aLmU\\xe9ټ\\xa1X\\x15E\\xe5\\x997\\uf712T\\\"\\x93\\xe2P$7XK_rb\\xa0Ob\\x87\\xaa\\xb4q\\xc77p\\\\np\\x9c\\xae˝\\xa1!\\xe7\\xf2O*\\xb2\\x11\\xd4\\xd4\\xc1\\x99-\\x97\\x8b⡍[\\x87T-h\\xc8JO\\xff\\x86\\x8d\\xa2X-\\x0e\\x12\\xe9\\xcd\\xd7\\xcc\\xdd\\xd6-\\xcarw,y`\\xa4\\xa7:\\x94\\x8d\\x9c\\xd8=| )J\\xd1.Y\\x16\\xbbo\\x9b\\xbb\\xa6\\aɂk\\x97\\xe9\\xf9k\\xac\\xe1U\\x94*\\a\\xf3\\xf2#\\x1b\\x90S\\x00\\xd5\\xd5Ʌa\\xa0\\f\\x9fnQX\\x00ϑ\\xd5\\x11\\xbe\\xfcwYHǐ\\xeb\\xcbr\\xdb\\u07b6\\xefX\\xd8\\xd5\\xe8\\x849\\x86J\\x89\\x03\\xa9\\x00>\\xe3j\\xbcFΊT\\x80\\xb5\\x1f\\x1b͝\\xe1\\xf2\\xd0\\x0e8\\x85\\xed\\xd6Ϭ_\\x93S\\x90q&7\\n\\x8c\\xef{|\\x92\\xd31˚\\xf4|V<\\x9bK?N׃\\xc2\\xefx\\xf5h+G\\x9d\\xb8\\xeb\\xc2U\\xadL\\xf8̅_\\xf6q\\xb1\\x12/\\xf8\\xbc\\xbf&\\xeb\\xaf\\xf0\\x18\\xda\\xfd\\xacgx\\xadFԁ\\x01\\xb6\\xb9о\\x99\\xb9\\xe8i5\\xc2ڦ\\xc56\\xa6\\x0fX\\xaa\\xaa\\x8e\\xa9\\xeaM\\x17\\xd8[\\xec\\xa7Bz\\xe1\\xc2\\t\\xec\\x03\\xe7\\u007f\\xc5\\xc6\\xd67Y{\\xfe1\\xfaP\\xa3\\xf0ų\\xd6\\x16\\xe3-8\\xa5\\x16ݠ\\x1eu\\xae\\xb6\\xc3Vx>'\\x1c\\xdb\\x16D\\x16\\\\\\xf0Vk\\xf9\\xa1\\x80\\xec\\x82%2\\xa4W\\xacb4\\xbdZo[\\r\\\\\\xf7\\xc8M\\x9c_\\x0e\\xb5\\xf0\\x9cD[\\xebaǅ\\xa1\\n\\x12\\xf2\\xb4*I!j\\xe7TQU\\x83\\xaaE\\xa2\\xb3U$\\x18r\\xccP\\x19!\\x8a\\xb1\\x94\\xa5(\\xb5٨h\\xb2\\xf3*\\xa19\\x9b\\x864;\\x9f\\xa2\\xaa(\\x13\\x93\\xeel4vR\\x93ȢJSy[㷒\\x149(k*\\xbbY\\x8d\\x11[ӌ!\\x81\\x8bq\\xea\\xcf\\xeeE,\\xb8\\x97\\xa8½h`\\xdd{\\x9d\\x90\\x02Jw\\x80\\xc6R\\xaa)\\xca\\\"Uw\\xf5\\x1d\\xa8r\\x1a\\x18\\xe5\\xe8\\x13Q^\\xcdځ\\xbe]*e\\x97[j*F\\x03\\xdd\\x01-J\\xb1\\xaaT\\x8c\\x16\\x8bQve\\x90݁F\\xb5\\x00\\xde\\rj%C\\xdc$\\xef~\\x96\\xd5q?\\xa5\\xeaޏ\\xdd\\xe3b\\xf7C\\x9c\\xe3/\\x8b:\\xf9\\xb6\\x10\\x03\\x9d<\\x84&(\\xb7>g\\t\\x88#9\\xdb\\x1f\\x1b\\xeb;V\\\\\\xd1\\x1c\\xbd\\xa2\\xe9\\u007f\\x13\\x0f\\xf4\\x8d?B\\x96\\a\\x1e\\x19\\xef\\v\\xc4\\xffF\\xd7*\\xba\\xa3\\xad\\x14\\x8f\\xf5\\x8d\\xc5\\xda6\\xb8\\xcbl\\xae\\x19\\x80xhQ$\\xb3\\xad\\b\\x11\\xe8\\x01̦\\xe7xb\\xa2>#Vk\\xae\\x8b5KDG\\b\\xb7\\xc0w\\x87k\\xfdL\\xa8\\x98\\r\\x90\\xa0\\xd10\\x82$\\x10\\xef\\r\\x87\\xc4!\\x91}u\\\"K\\x90\\xa0,)\\x0e\\xdd?\\x94\\x8f\\x0el\\xc4hbS&;\\xf7\\xa9\\xeb\\u0605\\xd6ύ`\\xd0\\xf8\\xb9\\xd63\\x90\\xca_\\x17\\f\\xbdS\\x14\\xcd]\\x9bI(\\xa4\\xbdM\\x14\\xdf\\x19j>W8\\xb2o\\xae\\xc4\\xed\\\"B\\x06\\xa3w\\xa0\\xd3\\xfbW\\xf29\\xb0\\x19$^\\f\\x1e\\xec\\xa1(\\xbe\\xad\\xd7JT]\\x05\\xc8L\\x84mwn{\\xec\\xc4u\\xbb\\f\\xbd_\\xd3\\xc6fw\\xbe\\x8a\\x90\\x1bw̍\\r\\x98V\\xe8m\\x86\\x9d1\\xfbv\\x91\\xa7\\xe7\\xee\\xdavⱆ\\xc6JЁ\\xebw\\xec:N\\xc8Ѐ\\x99\\xb1\\x8d\\xb7\\x85,\\xb3o\\x87\\xcf\\xef\\ab,\\xe6\\xb8\\x04\\xcci\\xad\\xdc8\\x92\\xf5\\x164L\\xa6\\x17H\\xaf\\x99\\xab]\\xfc\\xba\\xac\\aICB|!\\xb9б#\\x8d\\xb5\\xa0v!2\\xdf<\\xcd(\\b\\x89\\x9dE\\x04\\x98\\vl>\\xde\\tw\\xd7i\\x17\\x90ƨ\\xf1\\xb8\\xf6\\xe6_\\x90{\\x9b\\xd6Z\\x0e]u\\x05\\xb5\\xc9\\t\\x80\\xb7s}\\xea\\xc1*\\xddu\\x04\\xaf\\x91\\xbb\\xc6\\xe76]e\\x8b\\xc6F\\x95\\x92\\xf0#W\\x1e\\xdf\\xdd\\xe7\\xb5W\\xf3o`;0>W\\xda>\\xa6\\xaf*@6\\x0f\\xef\\x9a\\xd2u\\xe5\\xe8];\\xfa\\xbc\\xf6\\xbf?c\\x0e\\f\\xe76\\x16;\\xb2\\xa1\\xae!\\xd6\\xe6\\x9fam\\x9eG\\x9fO\\x0f\\x1a\\xc2\\xe7\\xc1\\x00\\xb4>\\xe1z\\xa3\\x8b~\\u007f+\\xf0\\xac8\\xfd\\xc0\\x93\\x0fܸ7mY\\xf7YVzj\\xa8\\x1bm\\x88zH\\xfe4z{X\\xfd֩#\\x0f<pd\\xffk\\xad<7\\x93\\xca\\xeb}\\xddh`\\xc4\\xe6\\x8d\\xeb\\x1f\\x975M~\\xdc\\xf2\\xc6ȯY\\x9b\\xbd\\x85}\\xf9qV\\x0f\\xcf\\x02\\xa4\\xc5q\\x01\\xe5CDX\\xcfv\\x95\\xbbOx\\x92\\x858y\\xe1\\t3\\xc3c\\x97f\\xcc'h\\xf3Y\\xeb0\\xb0\\xfa0\\x87\\xc3\\x1a\\xe5\\xb0\\xf5\\xc9'\\xd8;/\\xd8Ƃa/\\xb0\\x96{\\x82\\xc6>aM\\xf5\\xaf\\xf4O\\xb1ZE\\x03+\\x81h\\xab\\x1e\\xbfD]i7\\xd4#\\xe75\\x83\\x87O\\xe9\\xba\\xe7\\xc3\\xf7+#\\xcd_UM\\x87,\\xb7\\x1f\\x89U8J\\xa9\\xaff\\xad\\x87\\xf5\\xf3\\x87\\u007f\\x9b\\xc6hg\\xc58\\xae;\\xf4\\x9f\\xcfAdW\\xd2\\xd1_\\x18\\xfd)\\x97\\x00r\\v\\xb40\\x18F\\x06\\xf5\\x03D\\xb8aW\\xabg\\f\\x8c\\xcd\\xed\\xb8\\x91\\x90W\\xed\\x9c\\x1dӴ~\\xdd\\xd8u݉\\xc7\\xdeE\\x9enw\\x85\\x81!B\\x8e\\xef\\xdaq\\xfd\\x00e\\xa7\\xb5\\xc6c\\u007f\\xf1\\x98\\xe0\\xc3\\xc5\\x1aC\\xbd\\xc4>\\x0f)\\x04\\xb9\\x13\\xd6!\\xb8\\xa8\\xdeES\\x01\\xe9#\\xf7˧\\xbe\\xad'v\\xe2ACT\\x84\\x94)y&*_K\\x15\\x062\\xcdS\\x99\\x81B\\xaag c'J\\xa9Pn4\\xa8\\xab\\xfdS\\xaa\\x9a*%\\xec\\xcc@\\xf3\\xffB\\xed\\xd8\\x12Q\\xe4ӲB\\xb4\\xe9\\xa9\\xe9\\\"\\xe6\\x1c\\x94\\xfb\\xbb٤\\x9f\\xe9\\xee\\x97\\x13\\x85\\xcc@\\xb4'U\\x1a\\xcdu\\xc5ũ\\xfe`\\xb8\\x94\\xea\\x89\\x0ed\\nW\\xa1\\x1a\\xec>\\x99R9\\x9e\\xcd.p\\x95\\xa0ܒ\\vq\\xfek\\x92۵t\\xb8\\x9aT\\x8a\\x9d\\fX܋$J\\xe397\\x18\\a%g\\x19\\xedX\\x02\\x96\\\"4\\x9a#\\xa7\\xbd\\x03¶\\xcd\\x154\\x89\\xd8N\\x16\\x8ei\\xdaÌ\\xf2e\\xb9\\\\U@\\xe6l\\xdeK\\xa7c\\xdb\\xd1\\xc4bal\\xd1-\\xc7uA\\xcd\\xf3_\\xc28\\xaf\\x01\\xb4\\xf9\\xe9\\ad\\xec6\\xaa]\\\"V\\xc6O\\xccc\\xeb\\xd6\\x108)(V\\vl\\x8a\\xaf\\x92_\\x8c\\xe8\\xda\\x1d\\xba>b\\xf7\\xdb\\xd3\\xf6\\xcf0\\xdd\\xfc\\xd5\\x03VDL\\\\\\x1d3>`\\xb0__\\x9f\\x95m\\x90\\x89\\x11]\\xbfCc\\xe5X\\xb1\\xfe4\\xa6\\x9b\\xbfJ\\x88\\x11끬[\\xee\\xe4X#k\\xf5q;\\x19\\xaf>\\x94\\xb5\\x98@\\x1c\\xfedd9ʸ\\x82,,5\\xff\\xf1N+D\\x02\\xe4\\xefm{\\xe3\\xd2F\\xf6tr\\x9c\\xe5\\x05HȺ\\x93\\xad/\\xfb1\\xd3\\xf6\\xdd\\xeb+\\x8c\\x96\\xe7\\\\\\xe4Z\\xbc\\a\\xedEm\\xa2\\n\\xb4\\x10\\x11/\\xdc\\xf7%\\xbf\\xf0\\xee\\xf8\\xf9\\xcb/\\xfbF\\xfe\\xceQ\\xf6\\x18\\xa5\\x9e\\u007fܹ\\t\\xc1\\xfb\\xee5s\\xe4\\x1e\\xef\\xfe\\xfd\\x87Y\\x89\\xba\\xc2\\x1e:zg\\xfe\\xf1\\xc4M\\xa6\\xe9\\x98\\xd6=\\x16\\xe7\\xd5\\x03\\xe7\\xff\\xb3\\xf0\\xcf\\xec\\x9b3R\\\\\\xaft\\x06*\\a:\\xf1\\xc4\\b\\x1b\\\"Gب;\\u0086È5eݔa\\x87\\xec(CF,\\v\\xe6~a?\\x9b\\x83*x=\\x0f06\\xc9#\\x8c\\xe5\\x10g\\xf1m\\xfe⏯\\xbe\\x19\\xac\\x15\\xd8\\xf5_a׳\\xa9\\xbf\\x88t+CTN'\\xd0z\\xb2B6\\xb1;(\\x92\\xa4\\xb0{4\\xbfkY\\xcf\\xe3=\\x14\\xcbRZ7q\\xdf\\xe3,{\\x8f\\x0fC=\\xa2\\x85\\xce \\xf4ltU\\x8f\\xad~4Iy5\\x83\\xbb\\xb6\\xd6-\\xe8˵ٳ\\xe8\\xca#\\xcaH\\xc7\\xd4]\\xf7&\\x1b\\x0fv\\x84\\x03\\xbd\\xb4\\xf0\\x12\\x18\\xf5\\x01O\\x9aE\\x98\\xa3o\\xbd\\x15\\x88\\xc8\\\"\\xce\\xe7\\x90\\xce\\\\(\\xff\\xe4\\xcb(\\xe3\\xcf\\xf7\\xf9\\x06\\xc51֢\\xd0\\x19\\xee\\x04eA\\xeck\\xfa\\xb4\\a-\\x99m\\x1bmn\\xbe4Ybc\\xee3h6\\xb6[\\xfd\\xb4\\xca\\xfe\\xd8,\\xdeZс\\xf9`z\\x12\\xad\\xcan\\x88\\xa9jL\\x15\\xf8\\xf7f\\xfd\\xb4\\x02H\\x9a\\x84O3-\\xd8\\x03\\xdfǯ\\x90\\a\\xbc\\xe6\\xfde+A\\x12\\xfeo\\xd0\\xf1A\\xbco\\xf8e\\xf6\\rA\\xc6\\x00Q\\x8a\\xda]\\xb1\\xda\\xf1A\\xe3߿\\xe0mv\\xae}h\\xa7\\xdd!\\x18>\\xb8\\x92!\\x1ao\\x03\\xac\\xb96\\xd9.\\xaa\\xfc\\xbbwi\\xaaz\\x97\\xa6ݥ\\xaa\\xda.\\xaba\\xb9\\x18\\xf2o\\xb9;\\xa8@\\xae\\x12\\xbc\\xdbZm\\xcf\\xc8\\xee\\xeby\\xc3#^\\x1d\\xb7\\xe3E\\x80:\\xd6Wȉ57\\x98Z\\xf7I\\xab\\xefٲ\\xca\\x04GGVQ\\xd6\\x1c\\xaak8\\xfe\\xfe5\\xb7t5\\x12\\xbf\\xe9\\x9e5W*V\\xaf\\xf2\\x18\\x80\\x00\\xcc\\xebZ\\xa1k\\xeb\\xde\\xe0\\x8au\\u07be\\xed\\xa3\\x98\\xc1yb-\\xfe(\\x9f\\x82èN\\x88v \\x91\\xbaQ\\xcf+\\x00\\x8d\\xec\\t\\x10д\\xf3\\x14\\xc4\\xe48\\x86=\\xfe\\x9f\\xd9\\x17u(\\xfd%\\x8c\\x81%\\x9d.y]\\x92\\xbb\\xeb\\xaf,B\\xfc\\x0e\\xdbX\\x82\\x01\\xf1K\\xcaJ\\xc6\\xe8?\\xf7\\x99\\x99\\xceXڅu\\xe2;\\x14\\xf2~cq\\x8e\\x1d\\xd8\\x11\\xcd\\xe1\\x18\\f\\xb2\\xec\\xd7t\\xbdWӿ\\x96\\x05\\xe6\\xd0\\x1f\\xc0\\xa1/\\x03\\xe7\\xb4^\\x1d\\xce\\xe1\\xe8ty\\xa0\\u007ffm\\xf1\\x0e6\\x16\\a\\x05!\\\\u\\x83r\\xb4\\xc7\\x06\\xab\\x81\\xe2\\x8b\\xf1\\xd1\\x1e&\\xb6ANf\\xccyJ\\xe7\\x19\\x19zܰ9\\ff\\xf3q/\\x8f$C\\x86=\\xc6j4\\xcf\\xdep\\x9e=q\\xcc~'\\x1auv\\xe4\\xb5|k\\x97\\x10\\x03\\x12\\xf8\\xc1\\x8c\\xe8\\xe3E&\\xb9\\x04\\xceqY\\x10\\xde\\xddې\\x8a\\x10\\xb5WL\\xf5\\x8ct\\xef\\xad6OM\\x1f\\xae\\r\\\\;7\\xb4'\\x9e\\xec\\xe9\\x9fz;\\xd5̭hڻ\\xd5\\xd4\\xe8-\\xa6\\xf9\\x13\\xa5\\xaf\\x96\\xa9\\xee=<=\\xba'\\xa8Hs\\xd7\\x0e\\xf5\\x85\\xa6\\xfa#7\\xd3\\x18\\\"R,Ơ\\xcc+\\xaaKG\\x0ft]C֯\\xcb\\xef\\xf2\\x1a\\xdcҪ\\xd2\\xfau9\\x10\\xe3\\xa5\\xdc\\x1a\\xb5\\xed\\x9c\\x00\\xb3Gb#\\xc0ds\\xb5\\x83\\xa8\\xb4N\\xa1\\\\pr\\xf5B\\x85\\x16\\xe2\\x15\\x90\\xd8I9I͗gI\\x85Qx\\xf2\\x0fW\\u07b8clG\\xf3\\x1fw,\\xcd\\xef\\xb8\\xf1\\xc6\\xd7\\x11\\x85\\xec\\\"\\xc9G؊y\\xdb\\xebn\\xfc\\x11;\\x82ȣ\\xcb\\xcb\\xd9_\\x8b\\x92(\\x9co~U\\x14\\xe7~}^\\x94\\x04\\xd7\\xcf\\xee\\xcbd\\ab \\x01g\\xeeͧ^\\\\JX\\xa1\\xb2\\xb7'\\x9bNj1\\xed\\xa4a\\x85\\x1a\\x87\\x15\\t`^\\xben؍\\x905\\xb5\\xa8i\\x8bf\\x0f\\t\\xc9SJ\\x90u\\x86\\xa7{Z\\xbe{;\\x18m\\xec\\xc25v\\v\\xe1\\x13mn\\xc3.}t\\xc8&\\xb8\\x9dm|\\x1d\\xc0m$\\xe50\\xbb\\x9d\\x01O!\\xbb\\xcd\\x1e\\b\\xe8\\x14T\\xa6d\\x12\\xea1\\x17\\x81\\xa3\\\"n\\xbb|\\x05֭BG4\\x9e\\x12\\xea \\xd7\\xfa\\xd0L\\x92\\x9b\\xdfp%B\\xe9\\rfz\\x06\\xc6\\xda\\xf1\\xbc٘\\xbbb\\x16L(\\x8d\\xf9\\xcc\\xc0`fW:\\x86\\xdah\\xb6\\xd9\\xd9\\xf0\\xd6\\t_\\xc6\\xf9\\n\\xf4\\x03\\x823\\xa2\\xba\\x16<\\xb6\\x02(9.\\xd7\\xfbdrK*o\\x06\\xa4\\xc5\\xe5E)`\\xe6S[\\x924\\x15C\\xa8\\x8eZ\\xe1X_5\\x91\\xef\\n\\x03\\xa4o\\xb8+\\x9f\\xa8\\xf6\\x1d+\\x18\\xe7\\xfcx5\\xac}\\x16\\x90\\x1f\\xf74\\x99\\x1coiu\\xe0!\\x1e\\xd6ѥP\\tN\\x03j\\x15\\x95\\x9f\\a\\xa3q\\xd7+g\\xd5>\\x06\\xe0\\xc7G\\xb7N\\xb5\\xacڧ\\xb6\\x1eE\\x11\\xf3\\xdc\\xf8\\xc6\\xc3:=\\x89\\xb1\\xa9.7\\xcd˽\\x1f\\x11X/\\x9d;\\xae\\xe7\\xdb\\xd2\\xe8\\xbc~\\xf3v\\x94\\xb0\\fT\\x0e\\xc8\\xea\\xfe)\\x88\\xc6<տ\\f\\xeb.-\\xa4eݟ\\x87\\x83\\xc1ާ\\x81\\xf2H\\a)٪ \\xd0\\x1e\\xd2q=\\x8c\\x1e\\xfca\\x9c\\xd9=\\xa4\\x84t\\xec8\\xae\\x04NY\\xcfZ\\xec\\xafS5\\xdc\\xcc\\\"\\xbb\\u007f\\x05\\x99\\xb2,\\xb6\\xec\\xf3bB\\x80\\xadI\\x8f0,L\\xa0\\xe6f\\xbbp\\x89\\x8b\\x94\\xdd\\xf2\\xb5\\xf7\\xe2\\x9bpG3\\x8cH\\xd4\\x19\\xc1\\xa0ºM\\x15\\\\{\\xbd\\xba)ռ\\x1agK\\xe3X\\x82,hZC\\xd3B\\x00|\\xa0\\x89rP\\xa5\\xb6FB\\xb0\\xea{\\t\\xe3G\\x87\\x1a\\xc5\\xee\\xeeb\\xe3ylE\\xb2Ȓ\\x8dⲆ\\n\\xde:\\x91Ъ\\u0090\\xb5cg\\xfd\\U000666e7\\xbb\\x8b\\xcb\\xc5\\xee\\xf3\\x02\\xdaZ_\\xcf\\xeep\\xb6\\xd1]D^\\x1a\\xe2\\t\\xbc\\x89|\\x8b\\xad\\x13Xc\\x16ku\\x87\\xd7\\x1d\\x042h\\t\\xe3\\x06\\x17pH\\xcdC\\xb2\\x02ZD\\xac`t\\xfe\\xfe\\xf7F\\xe5\\xa4\\x12e\\xb3\\x00\\xf9\\x90\\\"ʭx\\x02\\x01\\xf2\\xaa\\x9e\\xf0\\xb4MǴ\\xe8\\xc9\\xe8\\x8dۨ9s\\x94%\\xb41j?\\\"\\a\\x94\\x94e\\x90ob$\\x81\\xe6\\xcf\\xfb\\x8a\\x13fx1\\xa2$\\xe5\\xe8\\xf2R\\xfb[.\\xb9\\xdfr\\xf0\\x95YP\\xf8-\\x00>\\xf1\\x9b\\xf5\\xfe\\xeb)\\xfcA>\\xf7c6?\\xfd\\x11 $Fqu\\x9c\\x91]\\xd5\\xc5\\f\\x19\\x91\\xcb\\ue524\\x9d\\xb6ғ\\xf3\\xfb&2c\\x053.\\xebl\\xf4dFj\\xf9\\xb4uZ#\\xe2\\xe3F 8O\\xf4\\xae\\rsCC\\x97wi\\xb6\\xd5;Q\\xea\\x89\\x06\\x14r,\\x180\\x1e\\xa7\\t>\\x06C\\xe7\\xbf@Ρ\\u007f\\x0e\\x1b\\xe3\\x18\\xb0\\xc1\\x96\\xa8Z\\x1e\\x91\\xaa\\x933\\x12\\x12(i\\x861\\xd0\\xe4\\xbbv(3\\xb2ec:\\x12\\x19\\xd8\\xdf(K\\n\\xd5\\xd5\\x15F\\xa5\\\"{\\x8f\\x8b\\xa7\\xc9mJ28{\\xd7e\\xdb6\\x98\\x9a\\x16\\xdev\\xddC\\xbbT\\xd3Ш8/\\xcb͝ŏܶ\\xa7#^\\xab\\u007fl\\xb4\\xda\\xd376X\\x1e;Ŧ~r\\xaaM\\xac\\xfe\\x10\\a\\xc7\\x19\\xab\\t\\xbej\\xbb\\u007f\\xd3\\xf0\\xf0\\xd9K\\x04\\x18\\xb7S\\x12F\\x849\\x8e\\x84\\x8d\\x1a \\n\\xcf\\x05-Q\\x11C\\t\\xa3S\\xeed\\xbd6>B<`\\xb4\\x9a\\atW\\x1b\\x11\\xcb%\\x15\\x04\\xcf\\xf1\\x98S\\x01\\xa1@\\x1b+\\xce\\xf3=\\xf8\\xf8\\xcf?^\\xd6#\\xcd\\xed\\x11\\xbdL\\xc0\\x88#\\x1a\\xd0u]$R\\xe8\\aX\\xe9m\\x1c\\xf3\\xda!D\\xa6\\xb2\\x11\\x91\\xb6t\\x15\\xf4W\\xeb\\xce>#\\f\\xc3BQG\\xf8\\xf9\\xe5\\x8f\\xdf{`[0\\xb8\\xed\\xc0\\xbd\\xa0:\\fD\\xd54\\x91D3\\xd0<\\xeb\\xb3\\x04\\xae*\\x86\\xa6\\x8a\\x92\\xae?-\\x16\\xbb\\xc2\\xc1`\\xb8'\\xfa`\\x10\\xccm\\u007fځ\\x8d\\r8\\xeb\\x12\\xeaD\\x84h.\\x9e\\xebco\\xd8\\xc2p\\xc1\\xbaW={\\xa5|\\xb9\\x13\\uea3aD\\x1a\\xcd\\x15r*\\x1d\\xe3\\xa6\\x1f\\xd0¬\\x8dYW\\x8e\\xed\\xf3\\x1c\\xee\\xc1ϞdW\\xeefk}\\xae\\x11\\xf2\\x12\\x88\\x0e\\x8bxH>^\\x93\\xc2ʠ\\xef\\\"\\xa8Sd\\x1a}\\xc9Bս\\xfc\\x93\\xee\\xad\\xd6\\v\\xfb\\n\\xcb\\xe8Jv\\xf7\\xde*\\xd2Gv2\\x14\\x12Z<\\x13\\xd7{\\xad3*a\\xfd}!\\x17\\xc3\\x0e]ؾm\\xdbt\\xbd_\\xd7\\xe7\\xe6p\\xd7qԩ\\\"k\\xfet\\xbd2\\xee\\x11ҭ\\xbf%\\xdf\\\"\\u007f\\xccְe\\x88Aѹ\\xb2\\x841JV\\xadE\\x81r)\\xc7s\\xdeB\\xb1\\xf7\\xb8evY䫫s\\xe2\\xc7{\\xbd\\xf5c\\xee\\xb8eu\\x99\\xe4\\xfa\\xd59\\x82\\x9fw\\x8e\\x02ݬ\\xaf\\xf3,\\xafN\\xdc\\xffޭ\\xd4__\\xd3~\\xdc5\\xa6\\x992M\\x9eAM\\xd5\\xcby\\xeb5\\xed\\xc7aƭ\\x90\\xa1\\x9a\\xb4\\x9d\\xe3\\xb7\\xcfʲQ6\\x04֜\\x0eGT,\\xab\\x14t\\xf8\\x10\\x17\\x92\\xd1\\x10\\x8c\\x12ɾ\\u007f\\xa9\\\\\\xac\\x95i\\x82\\xd6Uv\\xa2N\\x16\\xa3\\xb9\\xdd7ܰ;\\x1b\\xeb\\t\\xa7k\\xb5t\\xa8'\\x9a\\xdd\\xfd\\xec\\xeel\\xb4'\\x94\\xaeջ\\xc3\\xcd\\xf3]]\\xbd\\x89\\xf8\\xbftue\\xe2\\x89\\xc3\\xe5ޝ;{\\xcbv.\\xbd\\xfd?n\\xef\\xce\\x05K\\x19vX\\xb2s\\xddp\\x98\\x8f\\xec\\xdfol\\xdbv\\x8am\\xe7\\xc0\\xb1Qk\\xd5K\\x16\\f\\xd6W \\x8a%Ԑ\\xf5\\x99\\xa8J\\xcb5\\a0\\x1f\\x1d\\x05\\x027+lDC\\xfd \\x86q\\x91e\\xabE\\aP \\x1d\\x98\\x82\\xbe'\\x0e\\x1c\\xa8\\xde<\\xb2\\x91\\\\6\\xdb\\xfcȁ\\xfa~\\x83L\\x8f|pR\\xbe\\xfe}#S\\xe2e\\xb3\\xe4Z\\xc8j~\\x1d\\xb3\\x9e\\x81\\xa2\\xe43\\xfb\\xeb\\a\\x86\\xfeld\\xe7\\xf5\\xf2d\\xfe\\xc0\\x80\\xb8\\xe3wG>8{\\x998\\xb4*\\x83\\xfc\\x9fP\\f\\xe5c\\x1d\\xf6m\\x8e\\xdf\\xc2ͣ.5\\x17+\\xcf;\\xe6\\x16n\\xb7\\\"\\xd1\\xe0R@\\x17T\\x9f/%˘u%f\\x9dn\\xf9\\r(\\xad\\xf1\\xb8Y\\xb8L\\xb8Kx\\x9d\\xf0n\\xd6[\\xca-\\xe3dWK麺z6\\x8e\\xe8\\\\\\xd2b\\xc7bN\\xa1\\xe6A72\\xde\\xdbǣ\\xcd\\xfa\\x14x\\xe5\\x92'T\\xaf\\xacr\\xa1\\x85\\x90,\\x85\\xba\\xeb\\xdfw\\xa1\\xeb\\xf7\\xe4\\x89N7&5-\\xc9\\xf8\\b\\xd8md\\xcbƼ\\xc1\\x8d\\x05\\x96\\xb8\\xbd\\xc0g]\\xbd\\x84\\x83l\\xdd\\xdd]\\xa6\\x9aR\\xbb\\xd4\\x1a\\xfb\\xa5T\\xb3Kz\\xe3(\\x10\\xe1{Y\\xa1\\x15^h\\x89\\xea箔$\\xaag\\xdd{\\x02צSI\\xba\\x12Y\\xbc\\xad\\xb3\\xb3[1\\xf1k\\xd9H\\xa0\\xad\\x9e![\\x9c\\xff{Wܰ7s !\\xf8m\\xb6\\x8d\\xf8\\xa5\\xf3\\x18\\xb6\\xf2\\x0fהu\\xf9\\xd9\\x06\\xfa\\xb5WX\\xeb\\x02x\\x89\\xf7b0u'\\x1c\\x8aAb\\xd9d\\x03sP\\xbcPm\\xaf0\\xddV\\xd5v\\r\\x986\\x02\\x12\\xdaf)w\\x9b(Z\\\"\\x15o\\xe8\\x9eZ\\x99\\\"Ȅ6Q'\\xb3\\\\\\xfd\\xed\\xbc\\x146a\\xf60\\xc3R\\xef\\x96\\xdbX!K\\x14o\\x9c\\x1e\\xdc\\x16\\x1e\\x1a\\n_\\xe3\\v\\x8c\\x99m}w\\xbe\\x8e\\n2:ᰱЋ\\xbe\\xf7\\x83l\\x86\\xa80\\xdeq3\\xe3\\x1e\\xc1o\\x10\\xa2\\x9a_&\\x1c\\x15\\xae\\x12\\xae\\x13\\x8e\\v'\\x84[\\x85;X_\\xb9\\x97\\xf5\\x96\\a\\x05\\x8cxF+q\\f\\xe6\\x1de\\xfb2\\xfba\\x84\\\\\\xf6\\x83\\xbd\\xe2\\x06M\\x067\\xde(\\xdb\\x13<ãπ\\xf6\\x1c\\xa2\\xb7Q\\x96\\xc6{\\xb0}\\xd9M\\xc39(\\x0f\\xc1\\xdc\\xcal\\x0f\\x9as\\xc8/\\xc3=\\xe1Z\\xb6w\\xe0z\\xa1\\x01\\bc\\xec?\\xec\\xc9\\x12\\xdb6WXkC8\\x9a%\\xd84!\\v3\\x1b\\xa4\\xe1\\xe6\\xe2\\x89F\\xe3\\xbc\\xd0\\xe0\\u05ed\\xb4s\\xd9\\xfd\\x9axq\\xeb\\x16\\xac\\xd4\\x12d\\xbb\\x17\\xac\\xb8{\\x82\\xb7\\xc6\\u007f+\\r_-xE\\xf0\\xf4\\nO\\xe2\\xfd\\x1b\\xee\\x19_ܩ  \\x01\\xe5V[U\\xa0\\xd61Hr\\x17\\x1f\\x85\\x04\\x91\\x93\\xdc\\xe8\\r\\x8b\\xa0\\xc8\\xdb\\xd3\\xfc\\xfe\\x1e\\x12\\r,C\\xe8kmL\\x83\\x9d\\x0f$\\t\\xfa\\xbe\\xa2|\\xff\\xfb\\x8a\\x12\\x88\\x8e\\xb9\\xa7\\xd9n\\xac\\xcd\\xd3.\\xa3\\xad\\xd7,Ư\\xc7\\xc1\\a\\x15\\xd8\\xec\\x19\\x92Π\\xe2\\x1e\\x94\\xfbA\\x14\\xea2b>\\xe9\\xe1\\n\\xaez\\x03ƪR\\xdd\\x16\\xad\\xf7\\x1c|MsŊY\\x1b\\xcdP\\x02\\xac\\u0083\\x96\\xca\\x18Րe1\\x86\\xbc\\xbf]\\xfb\\xd3RX\\u007f\\x84\\x8d\\xe4\\xb4,[\\x8b\\xf3+\\xc1@\\x8f\\xa3\\xf6(]\\x81\\tS13AU\\x11\\xc5?\\xb4\\xe0\\xa2\\xe6\\x9f\\xfb#\\xbb\\n\\xadq\\xb5\\xec\\x8e+\\x17!\\x15\\x86\\x94\\x0f\\xa2\\x8e\\x11\\xa7v\\xe4=gUMoNto9\\xb2\\xa5;х#5y:\\x19j)8\\xf9\\x90:k\\x8fv\\x0fn\\xd92\\xd8=j\\xe3s\\x95\\xf9\\xc1\\xc1y\\xc5\\x03\\x97l\\xd7F\\xf2\\xf15\\x0e\\xac\\xb7\\x04\\x97\\xb3\\x89\\xae\\xfe\\xba\\x89ַ\\x85U\\vh\\xb3*3.5p\\x03\\x11p\\xba\\x90p\\xf5\\xcd\\x0eq\\x10@\\xf2>\\xdf\\xe7\\xfe8\\x15oj\\x9e\\xb9I\\xa4=\\x96\\xa1&\\f\\x91DS\\x9aR6E)\\x9dM3ް\\xach\\x89\\xb0\\xac\\x18\\tհ\\xc8<bK6\\u007f\\xc7\\xd7\\x154E\\x93\\xe5瞓%]\\ti\\x01\\xcd$\\x99\\x98\\xa2\\x19\\xa1D\\\"dhJ\\xa4G\\\"&\\xcb\\xf5\\xf7\\x8b\\x82\\x8b\\x81\\x00\\xefBcN\\xaeV-\\xb7\\x1d\\xf4;R\\x15\\xc95X\\\\\\xdd\\xd2d\\x91\\xea\\x8d@\\xf3\\x1f\\x02\\r\\xb6ܦ\\xfa\\x98N\\xe7q{\\f\\xb8w߫-\\xb3\\xfe\\x90=\\xb2gϑ\\xec\\xe96`'l\\x9bg9&kGx_\\x177\\x0f\\xea谾{\\x19\\x9b\\xc5\\xdbkk\\x9f\\x95M\\xad\\xa2\\xb4\\f\\xf3;!D\\xcb\\x1d\\xe5\\xd7G\\x18EЭ1Æ)\\xc26\\xc4\\x06\\xee\\xc6\\xdc\\xcc\\xc7\\xdd\\xfdR;\\x8b%\\xc9\\x02\\xe3\\x8a\\x11Y\\xe1$\\x1bd\\xec\\x06K|\\a\\xc8a\\x98\\xbb\\xc2Σ\\xa7\\xf6\\x13O\\xb4\\xf1\\x17 \\xed\\x9f\\xfbU\\x8c\\xb3}\\b\\xa4DN\\x99u\\bR*\\x83\\xf3K\\x99-\\xbc\\x1c\\x9b\\xd0(\\xf5\\xd8\\xd9\\xd5{\\x1f{;\\xcaʮ\\xdacl\\x9b\\xff\\x12 \\u007fP\\xabd\\x9a\\x93|\\x1f\\t?~\\xe2\\a\\xecwSOZU,E\\xe9qҪj\\xaaj:ѣ\\xe0\\x1e\\x0f\\x95\\x8b\\x9e%o\\x99\\xac\\xfe\\x01\\xb1\\xb5\\xe6U|\\xff\\xcd;\\x1e\\v\\xfe-\\xfb\\x91\\xc3i\\xb7\\xb8ӣ(\\xde\\xdeR\\xd4t\\xe7\\xbd\\x13\\xbeR\\xad\\xb3\\x1e&\\xea2\\xeaG\\n°0\\x05\\xde\\xc8\\xf5\\n~*\\xb5%\\xd5@,\\xa7b\\xcc\\x16i\\xc1%\\x04\\x14u\\xb5\\t\\x95\\xb5\\x1c\\xdb٤\\x8c\\x03\\x8a\\xe7\\xb0\\xd4\\xc2\\xd9h \\x84\\xdahܓ\\x86\\x9d\\xeaK\\xfcx\\xb8\\xfa\\xc0\\x93\\x0f|ڎ&hOL\\u06ddPL'\\xa09v\\xb4\\x81\\xc7,\\x81!\\x89\\xc0I\\x83\\xed\\u007f\\xd2]\\x1d*\\xd9\\xe9k\\xeaG\\x1exࡨ\\xedh\\xb1\\x1e\\x9a\\x18u\\xb4\\x80cȉ\\xd8~~\\x1c\\xf3\\xc5\\xf7\\xa2BD\\x10\\xa6\\t\\x97ٗ\\xc1\\xeb\\x9b{\\xb4\\xbd\\xef{\\xefc\\u007f\\xf5o\\u007f\\xbb\\xcev/\\xa2\\xe0\\xc4\\xee\\xcfd\\xfa_\\r\\xe2$\\xec\\xe3_Ę\\x8a\\xb0B\\xae\\x02\\x8e/\\xac\\xc5\\xc1\\xe4\\tA\\xac\\x82\\x04\\xecrX\\x0fw#.ψQPf\\x81\\x1dT\\x99\\xc3l1\\\"\\\"\\x1c\\x95\\x02\\xc1\\x9eP\\xf7[kU\\x99^'\\xa9\\xf2tWO\\xf7\\xa14\\xd1\\xf3##\\xdbF\\xacD\\xcf\\a\\r\\xeb\\xf9\\xbc$\\xab\\x9b\\x8ftI\\x96\\x9c\\u007f>`\\xfc\\xb7\\xdb\\xe5`\\u007f\\xdf@ \\x1e\\x16E'\\xbb(S\\x92\\xd8\\xe3$b\\x0f\\x83\\xa0.\\x17\\xeeIXdk\\xc0\\xf8Ԡb\\x11\\xeb\\xf6\\xbaB\\xe4\\xc1\\xa7\\xf4\\x96\\xee\\xcd\\xe3-\\x04%\\x17ΉB\\x93\\xbd\\u007fC\\xf4\\xfc\\xe2D\\x9d\\x9d3жX(\\x96\\x18\\xdb̓\\xafPp\\xf3)\\xf9\\x15\\v#\\xa4\\xeey\\xe8\\x92sc\\xaf\\xc9\\u007foj\\xf6\\xa9\\xd9\\xd1\\xe4/TsCO\\xdf\\x15jX\\xad\\xaa\\xf4D\\xa1G\\x8f\\x93\\x19l\\xb4ǳ\\xb1QVfv\\xf4M\\x8f$\\\"=)%\\xddw\\x82\\xb22a\\xf5\\x8aBϡ\\xfcG1\\x9c\\xbc \\xa8\\xe7_\\xc2\\xd8\\xf1_du\\x88\\bi\\xb6>\\x9a\\x80\\xe8 u6\\xa2F\\b\\x8c\\xadD\\x19|>a!P\\x82\\xe8>\\xe8\\x05\\x9ap\\\\_\\xcf\\x19\\b^\\xcc#\\xcdע\\x191\\x9e&q\\xb0ۮ\\x95\\xfe\\xdb\\xf0\\x91`0\\xa7\\x87\\x17\\xb6\\xc7\\xfbf\\xae\\xeb\\n\\xee\\xdaQ\\xf8n}\\x8cԋc\\x95\\xc9ɷ\\xec\\xbblC\\xbf\\x95\\xd9\\xf9\\xae\\x19{\\xf4\\xe0=o﹦Գ\\xb7\\xcb\\xf8\\xb3\\xb1\\xbd\\x03C\\xc3D-\\u007f\\xa7gq28\\x1a\\xddugv\\xe2`\\xe6\\xf8\\xec\\xa1S\\xa5\\xde\\xef\\xa8ݵ\\x87ʶ:\\xf1\\xf6\\xcb\\xfb\\t1\\xc67\\xc4S\\x83\\x91\\x81\\xa3\\x97ƺ\\xf2\\xf1\\xe0(ygx\\xfbuU\\\"\\x13{Ǜ\\xa1\\xcd5\\x94S\\x03O\\xb1\\x89\\x8d\\x8e=¥\\u0095\\xc2\\xf5\\xc2-\\u009d\\x9e4x\\x15d\\x97k\\\"\\xef\\xfa}\\\\(\\xbdZꑸ\\xc0\\xf1\\xea|\\xf2\\xeeT\\x94\\xe3\\xca%\\x83\\x1cV.\\xc9\\xc8<\\xe3\\xae\\xfdۿA\\xf3#\\xddgJ\\xedO\\xfb\\r\\xb6\\xc9|4p:\\x11{M(\\x1e\\xe3\\xe0s\\xb9\\x17`\\x14>\\xaeiO\\xc3\\xfeiM{\\xdc=\\xde\\x1dh\\xfeW\\xbc\\xcbQ\\xdc>\\xe2Ko\\xf0\\xd9Kߋ[\\x81˃\\\\\\x9c[\\x1d9`\\xcf\\xde]\\b{Q\\xec\\xabm\\xfd\\x17\\xa0My\\xaf\\xab\\xaez\\xfd\\xd6qja!U\\x12\\x1b\\xa0o]h\\x9e%\\xc2\\xce6ڈ\\xfdj_\\x1a\\xc0[\\x9a+\\xa5\\x14\\x11J\\xa9\\x95T\\t\\xc5+\\xec\\xf7<\\x9e\\xbd\\x14\\xb7\\xaf\\xf6\\xa5;lju\\xec\\xb7\\x02\\x19sx\\xe4c\\x87\\xf1ĵq \\x024\\xe7\\xe9gH\\x93\\xfc\\x8fw\\x98\\x11[\\xfa\\xd1\\xff`\\xb4\\xa1+t\\xdcs\\x99#\\x94\\xaehA#\\xb7B\\x1f\\x0fF\\xce\\\"T\\x96?\\x16BL\\xd8 \\xcc\\xf8p\\xcd=\\x89L\\xbc\\xeeT\\x8b\\xfe\\x03O\\xa3@\\xd7+)\\x8e\\xb5\\x18)\\xb6.j\\x9eq\\x13\\xf3-\\x91\\xbbwj\\x99\\xaf\\xc6`\\xb3\\x10\\x8f/4Z)L4:϶\\xdb\\x00\\xb0\\x8ezx\\x14\\x94\\xb5\\xb1\\x8eݙ\\x9d\\xad0PW~\\x01\\x88.\\xbf\\xdcg>\\x1d[\\x8e\\xa5W\\x96\\xb2\\xda\\x14\\x9b\\xa7!F\\x00\\xeeH\\xc3o}\\x8c*\\x92\\xb1l6\\xfb\\xa2\\xaf\\x886\\xe5\\xc3\\xce4\\xd0b\\xa1\\x1de(\\x823\\x10#k+\\x97\\xdfz\\xeb'n\\xbde\\xe8pma\\x81\\xac\\xec\\xff\\xa3M\\xd7\\xdesϵ\\x9b\\xfe\\xa8\\xf9\\x8e\\xea\\xc0\\xd4\\xcd7O\\r\\xb8|\\xcc.\\xf6^=B\\x11\\xe4sE\\x1eM\\x95\\x8d\\xd72\\xdeͅ\\x9cdT\\b\\xe2Px\\xc83\\n\\xfa>\\x80\\xe7\\xa78\\xd8\\x1d*\\xf7\\xf4M\\xe7\\xdfLU\\x10\\xa2\\x8f\\f7\\xc4@\\x0fd4_\\x04ǐ¥[\\x83\\xdd!+B\\xad\\xf7\\x94\\xaf鎏\\u007f\\xde\\b\\xbew\\x84\\x15;;273\\x94\\x8b\\xc5\\xc7\\u007fg\\x11^oqx\\xd35\\t\\xdd\\xda\\x10\\xee\\x90u\\xc7Q\\x9b\\xb0\\xb6\\xad\\x91\\xddn\\xd9%tH\\xd8\\x12u\\xbf\\xb4\\x1b\\xac\\x13j\\xd8\\xed_\\x85\\x16pm\\xbc+\\xb4`\\xe8\\xb0RHb\\u007f\\xff!FoiC]\\xb9\\xb2\\x9bv}\\x8a\\xacFUa\\xab\\xb0\\x1fl\\xfdׯ\\xd9j\\xf2\\xd5ڻ5\\x8e\\xbe\\f\\x8f\\xc6\\xd5o\\xf1\\t\\xdf\\x10\\xe6\\u007f\\x0f\\xe1\\xf6\\xe4:\\x8e\\x8dk^\\xad\\xf9\\xb8oD\\xf3\\xedS\\xb8m~\\x10\\xf5#'}[7\\xde4\\xe2\\xe1\\x81\\f\\xa8\\x82ъ\\xf6\\xb25xKj\\xeaŬR\\xd0\\xfd\\xbb\\x9e\\xa8U\\xa1o\\xa8\\t\\x98\\xb9\\xb8Q4\\xe3\\x15\\xd9*\\x19歾5\\xe4ڽv5\\x9f\\xfe\\xbf\\x90\\xe4\\xfe>\\xfaI6?\\x1a\\xa1\\x8aeF\\x92\\xf5#{\\xa6w(\\xd9Q;\\xed\\x04d\\x1a\\xa1)c\\xa2~vj\\xdcH\\x91\\xba\\x8f\\xb0}\\x8aSk\\fF\\xfa\\x12\\x8e\\xf2\\x15$\\xb4\\xbbЯ\\xf2\\\\7\\xfb\\xf2\\xaa\\x11\\xeb\\xea\\xcd&\\xba\\nR\\\"`\\xb3O\\xdbm*j&z\\xd5Uь\\xaa\\xf4\\xfa\\x88\\x9e\\x8a\\x17~\\xbb\\x83חѧ\\xfe+\\xe4+\\xc24\\xfb\\xee\\xbb\\xc0w%>#\\xd5\\xc1I\\xd8\\rϔ\\xf3\\x823\\xd92e\\x8b@\\x88\\xa6\\x93\\xe1\\xa1\\xd1\\xf2\\xac%r\\xae%j\\xb4V/$깄S\\xa9I\\xb9R\\xb9\\xa0Jvvnxx.kKĠY[\\x14E2\\xc56v\\x96\\x1aD42\\x03\\xfbǇ\\xf2\\x0f\\x06\\xe4l\\xf7\\xc0\\xc60\\x16\\t\\x12\\\"5\\x9fu\\x8b\\xfc]_z)\\xfd\\xc7\\xcd_\\xe9֏\\xad\\x97\\x88\\xa2\\x05~d\\x8d\\xc4G\\xb7_\\xd2\\xd3s\\xc9\\xf6\\xd185m\\xcd04ۤ\\x91\\xfeٍ\\x8d\\xaeD\\x8f%\\x86\\xa3}WN\\xa5\\xd8\\x19\\xd5b/i\\x92\\xaeX2y2\\x14\\n5τ@\\x9a\\r\\xe3\\xees\\x18w0\\xcez\\xf8\\x16F\\v\\xb8i\\xbcSg\\x8cRF\\xe4\\x16\\xee%\\xe4\\xef0\\xc2i\\xb9\\xe4\\x0f>\\xe8D\\x13\\x889ъ\\xc6ɦ\\x02\\xa2\\xca3\\xb9-\\xb9-\\x12\\x00\\xadL\\x8b\\xaa\\xfaa\\xa7ɶ\\u007fM\\xb6\\x0f\\xf7\\f*\\xda\\xd0\\xd5W\\xa0\\x82ݡ7\\f\\xa7\\xbf\\xafZb\\xf3\\xb3h\\xb2\\xf7\\x89eY\\xa3$v<v<N\\x88\\xa8H\\u007fJ-\\xb1\\x1a\\xde@Mi\\xd7Д\\xa6\\fe\\xea\\x05\\x12ǯ\\x93h~\\x9f\\xf4\\xedb\\xb7|\\xc2E\\xffoc9Ɛ[o\\x99\\x1d\\xf2\\x89\\x03\\a\\xab\\xe3M\\x1c\\x1e\\xf8\\x03\\x0f\\xa8\\xc8SpA\\xfb\\xa5\\xd8\\x058\\x85\\x9c\\x1a\\x1b;\\xe5v\\b\\x9d^&\\xb1\\x87I\\xdf\\xc4\\xeden\\x00\\xc8\\x05\\xaa\\xb3\\x05\\\"\\x11\\xd8.\\x9be\\xa9\\xf3\\x02N\\\"X\\x1eF\\xa2\\xa6\\xb5\\xf7d\\xd1=\\xd1<\\xe5\\xa3u\\x9a\\x90B|fV7\\x98\\\\\\x1d\\n\\xba\\xbb\\x0e\\xda\\x12\\xbd\\x18\\xec\\xe3\\xfd\\x80\\xfbM\\xeb\\b\\x06\\xce\\xd5\\\"\\xcf6VM*G\\x01.\\x9c\\xbeɰA\\x8bϖ~gX\\xea\\a\\xfe\\x19E\\xf3\\xc7&\\x1fE\\x84__%\\x10os\\x82u\\x87\\n\\x0f\\xbb\\xeb\\x06\\x84k\\xe9v\\xa1\\x8a\\x8eW{\\x92m\\xd5dgA4č\\x89+\\xe1\\x8dy:&*\\xef`\\x8fcU|?\\xd6\\x1aaͱNO\\xec\\x94\\xe5;\\x87\\xd8\\x18\\x84}\\xbf\\xcc\\xc8\\xd1\\xf3\\x86}3\\xd6[\\xf0ٖ\\xea\\x18\\xa5\\xae\\xe2\\xe7\\x96\\xc0f\\x1d\\xfd\\x8c[m\\x82Դ\\xd5^Eo\\xbd\\x1dfs)\\x9bQ\\x97H㼰\\xaa\\x81\\x90䎑E\\x88%\\r\\x89\\x95f\\xa3s\\xcau\\xad|\\xf0ky|K\\x17\\x9b\\x11\\xc6\\xd9h\\xb9D\\xb8Qx\\x8d\\xf0\\x86\\x8bq\\x06\\xe4\\x02t߹@~\\xfd\\\"\\\\ą\\xe6\\x101\\v\\xc1\\x98_:\\v\\xa6\\xf1Kh\\xf6|^\\xe0f\\xe0\\xfco\\xd9\\u007f\\x10RSjL\\x05a2\\xeeN\\xf9ϑ\\x85h\\xa0y\\x8aK\\xf9\\x02Q.\\x03i>\\x89\\xa7\\x1e\\xc5\\xedݾ\\xf4g|wQS\\xcd\\x1f\\xfbN\\t\\x1d\\xba\\xb7B\\af\\x1f\\u007f\\xb3\\x8e7\\xa9\\xe0\\x1b\\xf2\\x85)Yd\\xed\\xbe\\xc0~\\ue3ac`\\xfe\\u007f9\\xa7iǎi\\x1a\\xdfyv\\xd4\\r\\x8c\\u007f\\xde-\\x8cpd\\xeaU߀\\xf1d-\\x1f\\xf9N\\xefr\\xaa&*\\xd1x\\xc1\\xfdH~ \\x81S+;QY\\xde\\xd3\\xe9P.\\x8b\\x86\\xf6\\aK(\\x14\\xef\\x9ci\\x17\\x16\\x96Qs\\xfeL\\x80r7\\xf2\\x00\\r\\x90\\xe5\\x05\\b\\xb1\\xe8\\xf3\\xe7\\x8f#\\xff\\xb8\\xe37q5ы|\\xfb\\x8b\\xf1\\t\\x9c\\xdb\\xd9\\xddٳ\\xb5\\xd3\\xf0w!\\x96\\xa7\\xf9ӎN\\xfe\\xac\\x87u \\xfbh)D\\xb8n =]ˈ;\\x85\\xf5\\x91r\\xfd \\xe9J\\xb5\\x10ϱ\\x1fv\\xa8\\xc5F\\x03-\\xab\\x96\\xb8\\x94\\x8dO\\xd9<-\\x82?H\\xf3\\xe3\\xcbdiy\\x05\\x99uNN!\\xd1hO\\xca\\xfe$\\xfc\\xe3u\\xfd\\xb1\\xb8\\x9d\\xd1\\x06\\x1e/\\x9c\\xa3Q\\u0093\\xb1\\x1e\\x8e˷\\xd6\\xc1\\x05\\x13A\\xc03\\xc4\\x05\\x1fCˏ\\xb9eF\\xcc\\xff黔\\x8e\\xdesX˫_\\xbbL/(\\xf49\\x95\\x8e\\x92edUa\\xf3AΨf\\x9e\\xa3JA\\xbf\\xec\\x9eQZ?\\xcc6\\xf4\\xbbT\\xcd\\xfbq\\xecs`\\xaf\\x16\\xad\\xe6\\xdaTӥD\\x1d\\xfbB}\\x15\\xff\\x83\\xe1\\xe7!&\\xf5}\\x9av\\x9f\\xfb;\\xd3\\x06\\x95\\a\\xe5\\xc02\\x8eA\\xf6m\\xbc\\xdfJ[\\xf4\\xb7\\xdaF\\xa4\\v\\xe45k\\xe4\\xe3-\\xbf\\x9e\\xfaE(%\\xc7\\xfa\\xe7\\x8fռZ\\xad\\x9eK|\\x8fnf\\xc9\\x02\\xd6\\xed\\x1b\\x9d˓V̪\\xaf\\xb0Q\\x8f\\xf1\\x84^NT\\xa5\\xb2\\xeb\\xee\\xd1\\xcb]\\xef*<0;\\xf7\\x05\\x13]\\xdeQ\\\\/\\xe6\\x12\\xeb.\\x0fk\\xda;\\x1416!\\xc7\\xe4\\xf4M\\x90\\xfd@\\x02\\xd3\\xfbp\\x18\\x9f\\x9d\\x1b\\xf1u4\\x1e\\x8b\\xe9\\x1c\\xeb\\x8fK\\xac%\\xe5\\xfe\\xe3\\xba\\x0e\\xfe\\xcdC\\xb0?/\\xe08\\x16:\\xc6\\xc0%\\xe8\\xdd{\\xad\\xef-\\x90e(\\xf0\\x1e\\xe6\\rJ^\\xf9U\\xe9B\\xae-\\x0fvQY\\x10q\\xc9c\\x95\\xbc}\\xbdZ.\\xc4y`\\xae\\xb1\\xa9\\xf9\\xa9%\\x90,\\xb1^\\x80\\x94\\x8eo\\x9b\\xec7\\xc5\\xfd\\x1b\\x86b\\xf6\\rvs\\x88\\aJ\\xe2h\\x92K7\\f-`[\\x80\\xf8\\x0e~K\\xdc\\xfc\\xc9\\xff\\xc7\\x17\\x93\\xec\\xd2\\xd8m\\x8b\\xbe\\xb8I\\x9f\\xb6n\\xf0\\xd99r\\xfc\\xc5\\x02\\xea\\xe2\\x0e\\bWvXqU$Tܻ\\xc2϶v5&\\xad\\xeam0䉯\\xac\\xaf\\xa8㻝x\\x1f\\x90w\\xadw\\xc3\\b\\xdb\\xf5\\xf5\\xf6\\xb0-\\xb6\\x80\\xeb\\xf0\\xb1p\\x9ah\\xa9\\f\\x9c\\x9af\\x9bcXօ\\xff z\\xf7\\xd1\\xf1\\x8c\\xa6eJs\\xb1hqF\\xd3f\\xcc\\xe6\\v\\xa8]M\\xc7\\x1a\\xb14\\xa32d.\\xb21\\a%\\x86\\xba\\x06\\xb6α\\x02C?\\xe7\\x97\\n\\xe2\\xf9_\\x9f\\xff\\x82(\\x93\\xaf\\v\\xbd u\\x88\\xd6\\x1d\\xda\\x19\\xa0\\xacCv]\\xae\\xbb\\x01\\xccx 3\\t\\xed\\xbdDn\\xf7\\xe5\\xfcY\\xe3\\xe1\\xcft\\x97\\x1as(\\xa0\\xdeF\\xe5\\xee\\xd4\\x14J\\x97\\xeb\\xc3|\\xff\\x12\\x17*\\x0f_\\xa2\\xb2\\x19H\\t?\\x1c\\xe6\\xfb\\x8d\\xc3\\\\\\xfaL\\xc2[\\x1f\\xfeӴB\\xb7a\\xb1\\xb9F\\xa9\\xbb{\\n\\xc5\\xd1\\xf5\\x11\\xdc+\\xef\\xe5\\xb2\\xea\\xe1=\\n\\xbbN\\x85\\xeb\\x15\\xd8O\\rs\\x918_\\x9f\\xac\\x88oa\\xefb\\\"\\xaa\\xf1\\b\\xd2>7nW\\xb5\\xc6VZq\\x90\\x1b\\x8e\\x88e\\xf6U\\x84\\x16\\xe1\\xa3.-\\xac\\xddp\\xdfU:Q\\xa5\\xe6\\x19I\\xd1\\xc9(\\xdb\\\\5\\x9d\\xa9\\x0f\\xa4\\x15E\\x12{\\x0f#!dtq\\xe7sH\\x1c\\xd9!\\x11\\xf6ob\\f\\xbd\\xb4\\xe98\\xfb\\xed\\x8f\\xf7\\x8d\\xf7H*\\xb9\\x15i!\\x90ƝH\\x1f\\xe1\\x90۱B\\xdd\\b\\xf9\\x1azڀ-s\\x01#\\x1aΒ\\xea\\x1a\\xf5\\x80\\xb7\\x9f!\\xe4'\\x85t\\xf3\\x86+h̦W\\fO`kL\\xf8\\xf6\\xf0ڕ\\x91\\xee\\xfd\\xe4\\xc9ܥ问\\xa0v\\x8c^q\\xe3H\\x05\\x1bpb\\xcd>\\xad\\xa2=\\xdfK\\xe7\\xff\\x92\\xfc\\x8c|\\x9aͿ].\\xea3|o\\xf0\\xb1l\\xbb\\x02\\xd7˔\\xfcT\\x81\\xe65\\xff%38\\xdaۭf~aⱶ\\xf3\\xe0{\\x88\\xaa\\xba\\xa7\\xfa\\xb2\\x97f^`\\x95\\xc9+\\xca\\xcfw\\x1c|O˞a\\ty\\x10\\xc0B\\x06\\r\\xb6\\x10\\xed\\xf0\\xe7s\\t\\x05\\xe3DV\\xd3er\\x81r\\xbbq\\xd8C\\x04\\xce1\\xc6\\xf5\\xb6\\xa7Jr\\xcc\\u007fb\\x893H\\x887|na\\xa1\\xe9ST\\xad>\\xe7\\xa7g&J\\xf5\\xb7\\xbac\\x9b\\x93(\\xae\\xadr\\xd3^~\\xb5\\xce\\xd2\\xc0\\xaa\\xb8C\\xde5\\xcf\\x02\\x87\\x98\\xf0d\\xbd\\b\\x16\\xc3/2\\xca\\xc4\\xc6\\x15\\xe3\\xd7\\xfc{\\xa2\\x91\\xbf\\xcdh\\xf3Z\\xd4n>dGY\\\"CBZ\\xcc\\xcfб\\xbf\\x15\\xbe{\\xbb\\x95m~\\\\\\xd3^\\x84)\\x8eݍ\\x1c\\xcdZ\\xaf\\x01Ԉ\\xceX\\xb0\\x13\\xebpM\\xaa\\x1b\\xe4\\xb5\\xec\\xcd\\x0e\\xe5|+\\xab^\\x1b!*\\xe5`\\xd6\\xcd%ئR\\xaf\\xf9\\xe0kR7\\xbc\\xe5\\xdak\\xdfr\\xedr\\xd8q\\xf2\\x8e\\x99\\x17\\x15˒\\xc8\\x12+\\x82\\x05I#U\\x1a\\xae\\x1c|\\xcdk\\x0eV\\x86\\xcf\\v\\xd7B\\xd1M\\xc9\\x10\\xc4[\\bZ\\aU\\xd6\\xf5Ԏ\\xef\\xcdq\\xa0*\\xc0\\xf9\\xafF$Y\\xa3\\x83]\\x13\\xe2(\\x17.W\\xfd\\xbcA'\\xbf\\xb7v\\xafr\\xb7\\xdbJ\\x9c\\xcbR:\\xb8\\x8a\\xff\\x8eR\\x90\\xcf\\xe2\\xf6L\\xbb\\xb3 G\\xe5\\xf1X\\xa2\\xb0\\xa0=|R\\xd3N\\x82\\xb8\\x87\\xed،\\x89\\x87\\x8c\\\\\\xb2i\\xa0\\x01SA\\xac\\xc1O\\xf8\\xb1@\\xc8\\xef\\xb6\\xfbT\\xd3\\xc7|\\xc1\\xc4\\xff,\\xb78\\xf6\\xccX\\xbc\\x1f\\xde\\np\\x97X\\x023@\\a\\xd3<\\xffS\\xf1!\\xf2\\x11\\xd6\\xf3\\xf2 \\xd7+\\xb2\\xd5d\\x1ca\\a\\xc1W\\u007f\\vq\\xd0\\xf0\\xd1I\\xd4\\x13<\\xaf^sr\\xb5^\\xa4W#\\xa4N>A\\xd5Gl\\xe3o\\x83\\xa1\\x1f\\x18\\xf6#*Mۍ\\x86}NV\\xb5oZ\\xeaտ\\xb2\\x94\\x97\\xfeQ\\xb1~u\\xb5j}SS\\xe5\\x15\\xb1\\xfc\\x94\\x19\\x96j\\xb2\\\\\\x93\\xc2\\xe6Seѹ\\xf5Vg\\x91\\xda\\xe2\\x94l>\\x9e%\\x86A\\xb2\\x8f\\x9b\\xf2\\x94hS\\xd7'\\x90\\xdb\\xf0\\xc50b\\xfb\\x90\\xbbFa\\xb4\\x01\\\\=˥\\x19\\xb1^j\\a\\xd7]\\xbd\\x875\\xc9-S\\x95\\xad\\xfb\\xd8t\\\"\\xd2pZ\\xddx\\x17\\x1a;\\xbd۷%\\xcb\\x0f<\\xf9@\\xb4\\\"\\x89\\n\\x8d\\x8f'6\\xee9r\\xcf*\\\\V\\xb0\\x8aj\\xdb\\x1c\\a\\xc1\\v\\xb5>YW\\xbc:\\xd4k\\xf5\\x92\\xdfꘃ\\x0f\\xc6c\\xb4\\xa1\\x93\\x1d\\xa5~x\\xba\\\"KC\\xe6FqS\\x87\\xc1\\xf1͗,\\xdc\\xf2\\xbe\\x8dgR\\xe9_\\x1bъ!O\\x0en<\\xd5ai|i\\xf5\\x81#\\xbb7\\t\\x82/\\x0ef\\x18\\xa4\\xdbu\\xe8[\\xaew&\\x1a\\x12\\xe7\\x8a\\xf8\\xb8u\\xc0ZJ\\xad\\xe5-\\xba\\xe9,\\x97R٩~\\xd2\\xe8\\x9fB=\\x03YN\\x95\\xb2:m\\xb0~\\xb3\\x84\\xbb,;\\x0f\\v\\xa7h\\xe0l\\xaa\\x04<J)\\xd5X(\\xa5\\xfa\\xa2\\xf7\\xb7\\xf1W\\xee\\x8f\\xf6\\xa5J\\xd1\\x00\\xac\\x9c:1=\\xa8\\xb0S8ٖC\\x96\\xd1X\\x16\\r\\xaf\\xb12\\xacy\\x00\\xaf\\xaf\\xe5\\x04\\x02\\xf6\\rn \\x1c\\xa8!\\xe8,˥2w[a\\x97\\xae\\x898\\x96pp\\xa4\\xb1\\xb7\\xc61U\\xab\\xbbh\\xd8\\xffЕOFg-\\x83\\x96\\x8c\\x90\\x1a\\x92\\x95hR\\xa7&5Xnl\\xc62\\xd42\\xe6\\x129\\x9a4TK\\xd6\\xe4\\u007f\\x01\\\"\\xc6#\\xc2f3\\x83\\xb3\\xac\\xb3\\xddf\\x18\\x8d\\xa1L\\x16\\xa1\\xb1\\xbfA\\xfaR\\xf1\\x9c\\x1a\\x95@>Ǯ3$\\x9b\\x84\\xa9a\\xd0\\xd0\\xfa'dMi\\xbe\\xc0\\x1a\\x03n\\xc76\\xe5.\\xce\\xc7u\\x95q<}\\x99\\xb5\\xcb\\xd7\\x04]\\xd8\\x00\\xab\\x0e\\x02\\x82G\\x00\\x91u\\xea\\x15\\xfe\\xa9\\xd8\\x04W\\xc2\\t\\xae\\x04\\x86\\x1f\\\\\\xdd\\t\\xb1\\xa3\\xbc\\xbeK\\xb2\\a\\xaa\\xe1,\\x8d\\x8a\\xc6\\xd0\\xe2b\\xf6ڹ\\xfd[\\r\\xeb\\xd6\\x11E\\xd5N%\\u0097\\xa7东yÁ\\xd1\\x14\\x17\\xafv\\x856\\x8f\\x175\\xd5\\xd81\\xb5\\xb7\\xb1<w\\xed\\x94&\\xef\\xa6!\\xb1/\\x14>trK]7v\\x1cS\\xa6s\\xa3\\v\\xae\\x86\\x8b\\xebb\\xb7\\nK\\x10/\\xb2\\x88\\xe3y\\x15@\\x00x݃\\\"\\x1d?\\x16\\xd8u\\x8bU\\x8bX\\xbf\\x1bI4\\u007f\\x0f\\xfa@}4;\\xb0\\x1c\\x8c\\x8ab\\xcc:\\x00\\xc7\\xf78\\xe1k\\xf4\\xe4}FF\\xbf\\xdfFq[)\\xe5\\xd8V\\x90=\\xce\\xde\\xe3ɭĭ\\xac-\\\"\\xb0\\xfe/\\xb6\\x10Jg8N\\a\\x9b\\xaa_V%H\\xf4vGJ9[⦙\\x98v\\xba\\xa5\\xe4\\xed\\xaaMҿ\\xb9b\\u07fc3\\xb9;\\x11S\\x12\\x96\\x95Pb\\x89\\xdd\\xc9;\\xd5\\xdd\\x17\\xaaj\\xab\\xae+\\xc2\\x0e\\xe1\\x0e\\xd6T I\\x05\\x94Cw\\x18\\x01\\xf8O\\x8c\\x82\\xd7\\x17\\n\\xd7\\x00\\xd7\\x1c\\x85\\xc9\\xec\\x8bz\\xb1\\xc0\\xf8\\xd7DC\\x1e\\xa88\\x9b\\xe9\\x1c\\x17w\\xbb\\xfdz3\\x84\\xdb\\xf3\\xc4W\\xbfa0\\x92\\x92\\xa4l\\x97A#Ԉ\\x86\\x14Q\\x8c\\xaa\\xba\\xa2\\xf6\\xe9\\xb4f\\xc5\\x02\\\";\\xa3h\\xf2\\xeaS\\xe7L\\u007f\\x03\\x04\\x86\\xc2l\\xbd\\xd7\\xd9\\x00dL\\xe9\\n'\\x8bb\\x04\\xb2\\\"\\xa2.\\xab\\x92Dİ*\\x8b\\x1a%AɎ\\x9ap\\x92\\x8d\\x8e\\xb5g?n\\xd8A\\xc3k*3\\x18\\rHb\\xab\\xb5<y\\xee\\x12\\x9b1v\\x00\\x82\\xba\\xb7\\x82,\\x97\\xdcxh\\x18\\x0e\\r\\xe4\\x925\\xaec\\xf6\\x021\\xb9Bw4(\\xe3\\x11\\x14Tn\\xebX\\x9d\\xfc\\xceƔN\\xdfbI\\x12\\xbd\\xd9`\\xb4\\xf7J\\xd9V\\x02\\x86VҤD\\x8a\\xbc3\\x155n\\xa6\\x92d\\xbd\\x85ꩍZ*!\\xb1\\x13F@\\xb1\\xe5+\\u007f\\xb8??Ȗ&\\x96\\xa5\\xffV \\xfcC\\x18\\x8f\\xef\\xb9MU\\x02\\xbaY\\x81\\xb0\\b\\xbf\\x1f\\r\\xfc0\\x1c\\xf8-8M\\x17\\a\\xf3\\xfb\\r\\x88\\x98P1\\xf5\\x80\\xa2\\xde\\xf6\\x9e\\x80\\xe0\\xf2\\xa0_\\x14\\xdf\\xcc\\xfah\\x11d)-\\xfdn\\x9c/&1\\x04\\aG\\xa6\\x01\\x1b-\\x17a\\x03\\xc7\\x0e\\x92,O\\x1d\\xe7FHH8\\xdc\\xd1O\\x8b\\x06B\\xa5\\xd4\\xff\\xcdۛ\\xc09v\\x94\\xf7\\xa2\\xaa\\xb3\\xd5\\xd9\\x17\\x1dI\\xa7\\xb5\\xb4ZKk\\xe9]\\xddjI=3==\\x9a}\\x9fi\\xcf\\xd8\\xe3\\x8d\\xc1\\xc2\\x18\\xdb\\xd8\\xd8\\x1e\\xdb\\u06001\\xd0\\xf1\\x10c\\x9b\\xcd\\x01\\xae\\xed\\x90\\x1b\\xd2!\\x81\\xd8\\t\\x04c\\b\\x10\\xd6f\\x0fIx\\xcf\\x0f'\\x0eYH\\xe6\\xbd@\\x02y@\\x9c\\x85-7ּ\\xfa\\xaaΑ\\x8e\\xba{\\xc6ν\\xf7\\xf7fZg\\xa9s\\xa4SU\\xa7\\xea\\xabo\\xfd\\u007f\\x0fޠ\\xa5\\U00032135呝\\xe3\\x8b\\xe3h\\x12\\x0e\\xf3ާ\\b\\x83c\\xe5\\xed\\xe8\\rp\\x19E\\xa8\\xbcN\\bS\\xaa\\xbcH\\xae\\xbfUKIӵQ\\xb7r\\x0fD\\xfa/\\x94\\xe04\\xe3\\xe5\\xaf\\x00V\\xe7\\x8dQ%\\xae\\xc2M!\\x1e~\\x8d\\xea\\x14\\xc0\\xaa\\x81Y\\n>\\xbf\\u007f[\\x90\\xa7\\xb1E\\x16I)^\\xf4\\xa8\\xee'Ȝ1絊\\xf3\\x95,\\\"DJ\\xc5ʃ\\x1c\\xa0I\\x92\\x81\\xf3\\xa0\\x82U$L\\xef\\x1e[ʼ\\x1a\\xa3ڙK^zə\\x1a¯\\xce,\\xed\\xb8\\x02H\\xdec\\x12\\xb7B\\xc3\\x16V8\\xe91\\x15\\x8f\\xee\\x9c4\\xf7\\xbc\\xea>n\\xe5ĭ\\xb7\\x9eX\\xe1\\xee{՞8ň\\x12\\xfd\\xfed<X*\\xf2\\x8aȭ\\x90e\\x9c\\xad\\rA$\\xad\\x1b\\xd83wp\\t\\x8b\\x03p\\xd7\\\"@\\x015i\\x1c<\\x8c\\x92\\\"\\xf49\\x15\\xed\\xc0\\xc0\\x81\\v\\xa4-3\\x1c\\xac\\xb1\\x84\\xfbH\\x8cp\\xbdi\\xe9\\x97x\\\"\\r\\xa6'\\xfc\\xc8{\\x98\\xe8}\\x1d\\xdd\\x1d\\x135]\\x92\\x12r\\x9a\\x1bSqb\\xb7\\x8a\\x14SF\\xbca#\\x957&\\x1c,\\xb9uI[դz\\x14cg\\xc2\\xe0Ud\\x1b<ң\\x9c\\xba;\\x81]\\x9c\\x1dN\\x8f\\x1a\\x9aMMԶf\\x14\\xd3\\xd9,~\\xfe{c\\\\Z\\x1cJj\\\"\\xea\\x84\\x04\\xf5\\xee\\x19=)r\\xb1\\xbd\\xee\\xf4u\\xb9\\xe4\\x91Ӳ\\x81\\xb9\\x98\\xf9\\x92\\x985\\xbb?\\xee\\x1ay\\x01!!o\\xb8\\xf1\\xfd\\xb3V\\xec%f\\x8c\\xb3\\xf5\\xd3G\\x92\\xb9圡[\\xf1JAe\\xf0\\x9fj\\xa1\\x12\\xb7t#\\xf7\\xf1iw\\xaf\\xae\\xa9I\\x9aG\\tb\\x03\\xa9\\x0e\\x15l}W\\x85\\xb4\\x1c!\\x84\\xb6b\\xefh\\x9ak\\xb0w\\x1e\\xa4T\\xa5z\\xd4m\\x88\\x12\\x1d\\x18\\x038\\xe1\\x05\\x99R*\\x05<\\x1f`mϖ\\x8b\\xccB?kD);\\xc0\\x98\\x02wخ&\\v<\\xe7$MIB\\x92\\x8a9\\xce\\xd2&\\xb4+\\xb6\\xae`{x2\\xe7\\x0e\\x19\\f\\x17o\\xd5\\x1bB\\v\\xcb\\v\\x9ax\\x8e\\x8a\\xf9Q㒾B\\xe7\\x12\\xb3RK\\x95\\x93\\xa6\\xa7K1ITD\\xddi\\x1d\\xe4\\nG\\x12Y\\xc6\\xc8~\\x12\\x80\\x8a\\x80\\xdf@(\\xc0]\\xf8\\x14\\xfa\\x12\\xfabD\\x86\\xc8w\\xc2u2.\\x93-U\\x15~\\x1aQ\\xc7S\\x96\\xbe\\x94Y\\xbe\\xc8\\xdaZ.`\\xe9\\xae\\xe3W\\x9b\\xd1=\\n\\x8f>\\x839eo\\xd4\\xf8\\x85\\xa1c\\x91\\x9b\\x94\\xd4\\xc2\\xcd#\\xaa4\\xe9\\xe0x\\xe1\\xf8\\xbc\\x90\\xbf*/\\xdcw\\xc5\\xf5\\xb6\\x9e!\\x83BNH\\x19\\xddF\\xaeUL\\xa7\\x15\\xfe\\xa0.%\\x12\\x92~0\\xd3\\xf6ʗo\\x93\\xa2Ѿ\\x9e\\tx\\x1c\\x88\\r\\x02\\x8b+\\xbc\\x01`N\\x9a-\\xdf\\xde\\xc2r\\x18\\xf6P\\xcb-DŁz\\xd4gE\\x05\\xbf\\x14\\xb0\\x8dz\\xcb;\\x8d\\v\\xec\\xfeS:\\xfe\\x0f\\x94}\\x80\\xb3\\xa9)҃\\xb5\\xa1!\\xcaP0p\\xfc\\xeeki\\x89\\x96k0\\xc8|P<\\xe5G\\xc8\\x01ٷs\\xf0\\xa5\\xa1\\xe5L\\x06\\xd8\\xd8\\beU?\\xcc\\n\\xf4\\xf2\\xa9\\xa1\\xea\\x01Ƽ\\x86\\xe3`R\\xd4\\x1b\\xb2\\xaf\\xe9#\\x92Z\\xa9\\x1e\\x83p\\x86%\\xbe}\\xfa,\\x95\\x1cN\\x93i\\xdb~\\xf5e\\xf6\\x8456\\xb7\\ruΞ\\xa6\\x8a\\xe1\\x87Ϟn\\x9fZQ\\xb6ϤƳN\\xc8n\\x10\\xe4ec\\xecZ/\\x84qc\\xc6{\\xb7\\x91\\x8f3;p\\xf7a\\xfa\\x1c\\xe6\\xc6\\xc9\\x12\\xb0!\\\"+3\\x11\\xc67k\\x84\\xee讝;\\xb71\\xfe\\xa1\\x00\\x1e\\x11\\x81\\xdf\\\\\\xd4\\xe7\\xfa\\xc9\\x1aԬP\\xa0>2\\xe4aE\\xc5e\\x13V \\n\\xd1T\\xa01\\x0f-\\xda)\\x1fU\\x01\\x11Lwbj\\xac\\xc4#KR\\xb5\\xf2\\xe7pT\\x14\\xa7\\xde6\\xa5&\\xd5\\xe2\\xad,&\\x1e\\xa5i\\x9fۊ$+d\\xf2KCQE\\x96\\x004D\\xb0\\xe5&Y\\x92\\xf5\\xf1\\x80\\a>\\xe7\\xe7\\xa0\\x00I\\xb8oE\\xe93\\xb1l`\\xe0 \\x10\\xf6kT\\xeb\\xe9\\x83 \\x9e9}\\xf6\\xec\\xa7\\xcf\\xee\\xfe*\\v\\x8ed\\xfa\\xcdO\\xd3\\xf6\\x93⳧_\\xba\\xab͜\\xd4x\\x8a!\\x02rm\\x82\\U00054b7e\\rx.\\xb0\\x01KeD\\x15\\xc9D6\\x12\\xa9.\\xa9\\xe4P\\x9f\\x13\\xfaعY\\x8e\\x97\\x84\\xa3ɥ\\xe4Q\\x1e\\x8b\\x02\\x9a#\\x14\\xe4\\xdbXCGPd\\xd7\\xf4\\xd4N\\xae\\xfb\\x1a\\x9938\\x19]\\xe5>HIځO\\v\\xb2\\xc4\\xc5^b\\x9f\\x8eC֒?\\xc4\\x1a\\xb7\\x95\\xc3\\xe8\\x8d\\xdd3ӻvL\\xbd\\x8a\\x93\\xa7e\\xee\\xa5h\\x8f\\xe1v۾\\x8dW\\xec\\xf5\\x05\\xd4p\\x8b\\xaf[\\xdeԦ\\xeb\\x8bOa<잁:\\x98$\\xa5x\\xbdR.\\x06Ԋ\\xbb\\xc5\\x05\\x0eef\\xd7\\f\\xf7\\xdb\\xdcL\\xbe:4T\\xcdϸ\\x06\\\"\\fO\\x99\\xcc\\x14;,\\xd4\\xd5^2!J<=~\\xc6M\\x9d\\u008a,\\x83\\xa2E\\x96a\\x9f\\xcb\\xcd\\xe4\\xd12\\x9dv\\xee\\xf3!9\\uf6f5\\t\\xf1\\\\/\\x0e\\xa6/\\xf3ei\\xb6P\\x1f\\xe5.PH\\xf9\\xc9^[,\\xb9\\x1a.5\\x18\\x8b\\xc7\\xddC\\xa5<\\xe3\\xa9\\xee[KT\\xce;\\xf6\\xef\\xb1L\\xeeV\\xbb\\xe0\\xe8\\xcf\\u007f\\a\\xddj8`\\x0fR\\xa9\\xa4\\xa7<\\x84\\xf2\\x19*\\xebm\\xcfĞ\\x1az\\xf0\\xb0\\xe6\\xc4\\xceG\\x8c(\\xb2\\u007f\\xd2\\xfd\\x9e\\xca\\xf2\\xa1C~\\x04T\\xa28\\f\\x11\\x8f%\\xa7)4\\xfc@\\xe7\\x1d@\\b)'IY\\xd0o;\\x9e\\xfc\\xb4\\xec9\\xd5\\xf9\\xb6h\\vX8')\\xb6؞\\xb7=G\\x96\\x1d\\xef.\\xfd\\xf2\\xd6S\\xa2$\\xc8\\xf8\\xa9\\xd6\\xe5\\xfa]\\x03\\xed\\xf3`\\xd4\\x0eʰ~\\x9eQHdV\\xf7|\\xce\\xd5oZ \\xc0\\xbeE?:\\xb7x\\xa9\\x9bO\\xac\\xd5~\\u07bd/\\x969\\xae\\x0eȯ\\xaf\\x9c\\xd9~\\xe9b\\xbaV\\xd6\\xebk\\x99\\x98\\xda:\\xce\\xf4\\xd7\\xd4~\\x9d%t\\xb4\\xe9\\xfb#\\xf6\\xedV,\\x1fm?\\x99\\xb4I\\bI\\xa55\\x90\\x01\\xbc y\\x84[@d\\x99\\xf7X\\x88\\xda\\x00\\xd2\\x01\\xfd\\x9dV\\xa2\\x97\\xe9\\xa5<GM\\xde\\xf3\\x14\\xcď.׆\\xa6KY\\xc5\\xf4\\xcf:\\xcb\\xd1\\xd4B\\xb5V]\\xc8\\xc4\\x1e\\x8ee\\x0e裐\\xbd}\\xf4m\\xf5\\xbd\\x99\\xd82ao\\fw9\\x96\\xd9[\\xaf\\x9d\\xb1\\xe8\\xf2v\\xb9\\xa9\\xe4\\xceQ6x\\xa2a&G\\xe3\\xfeac\\xe2\\x8a!J\\x84\\tcv%\\xfd\\x01]\\xffoґ\\xba\\x1a\\xcb0\\xb3,iz\\xfd\\x884\\xe2\\x03\\xab\\xd1\\x05\\xb1/7\\xff\\xb2\\x1f\\xf38q\\xf1\\xa8\\xc7Pn\\v\\xe6\\xb8\\x1b\\xbf\\xe9\\xf0\\xe1\\x9b\\x0e\\x97[Ǚ\\xd1\\xf0x\\xcb)\\x1e)\\xa2Ke\\xe5\\xed\\xb2r\\tu\\xa6\\x9az\\xa5\\\"\\xaf\\x1d\\x86\\xdbn>\\xde\\x1a\\am\\xfdx\\xeb\\xb8m\\xaf\\xc82\\xb9儬\\xa4\\x15e\\xeaFY\\t\\xe9\\x1c1\\x8d]\\xae\\xf71|\\xc3~r`\\x8d\\xaa\\xc4\\x12^\\xb8V\\xe0V\\x14x\\f\\xa1\\x8fӸ̧ղ\\xaa\\xab\\xea\\xa2\\xfa\\\\\\xb5\\xd8\\xfd@P1G3\\xa2\\x13\\xb4\\xc6\\xe7h\\xa0\\xe6.]m\\xaa\\xea\\x11՞<2\\xe4\\u05cb+\\x1f\\xa0\\x95\\xf5\\xebs\\x1f\\x8d=\\x03n\\xe7n\\xf0l\\xa6@\\xad3\\x94\\xdb\\x01\\x90V\\x90\\xb1\\x18X+\\x91\\x9d[4\\xef\\x03(]Z D{TH\\xa3\\xcc \\xe0\\xc8\\x05\\x94#\\xa8\\xa7\\x1b\\x8fy\\x83}KF\\x1bY\\xff\\xe2\\x90NC\\xf2\\xc0i.\\xc14]\\t\\xeeڔ\\x88\\xd4!\\x81\\x88N1)\\x9f\\x97bNJ\\x14<\\x95\\x93\\x92\\x82\\x90$W<AL\\x05W\\x92\\xa20\\xa4\\\"1%<D\\xc9\\xe6\\xef\\xd1\\xc6\\x1e$\\x92R\\xff\\xed8\\x84\\xac\\xf2\\x82\\xaa\\xcb\\bɺ*\\xe8\\x19\\xddQ\\x15Y<l\\xf1R.)p\\x96\\x89\\xb3\\x12\\x00\\xccKYlZ\\x9c\\x90\\xccI<d*\\xb9\\xd8\\xd5\\x1a\\xa5\\xb9\\xaf\\xa6\\x1d\\xd7}F\\x15\\xb1\\xec\\xf7&B\\x12g\\xa4\\xb0 \\b\\\"N\\x1a\\x95\\x11]\\x14x\\u007f\\xfd\\xfc\\x82\\xff\\xaeA\\x976\\x13\\x1eu\\x1ey\\xd4\\xc0\\xeb\\xf5Z\\x1e\\xac&d\\xf0\\x01T\\x15C\\x9f\\xf0\\xc7ݶ\\xb1c2\\xc2H\\xe8\\xfe(h\\xdd\\xd2C\\xfb\\x1f\\xdc.k\\b%1\\x1e? \\x96p\\f\\xfb\\xa3o\\xfa\\xa8\\xacmW5\\xbff\\xbf\\xf2\\xe0\\xfe\\x870\\xd2\\xe4\\xff\\x9b\\xdc0~@(c\\x1c\\t|G\\xd8\\xfa\\xe9\\xe3\\xe97/2\\x1bB3\\x85\\xf2\\xbc\\xf3@\\x1b*\\xecڏ\\xa9\\xc1\\xb8X\\xdb\\xcd\\xcc\\xee\\xbbkJ~_\\x1e\\tte\\xadM\\xef\\xca\\xc4>\\x8a\\xaa\\xe9a\\xc1\\x1b\\xf7\\xd6\\x18\\xaa\\xc0\\xee\\xda0L\\x8e\\xe1\\xdan\\xdb\\xce\\xd1e\\xf6\\x8a]ӱ\\f\\xe1G+[&,\\x86K\\x16\\xf8\\xdd|9b\\x03~a\\x89Q\\x9e\\xa0N-\\x8f\\xf7\\x81I\\xa1\\xa3zK\\\\\\x050\\xe91\\xe4\\f\\xf2q\\xea\\x00\\xc2\\x1b\\xedh\\x1efS\\xf6p\\xf3\\x9ao\\x99\\xe6\\xe7c\\xb1ϛf\\xc7$]e\\xee\\xd25\\v\\xa0+\\xc7\\x05\\x910\\xd8\\xfa\\x9b\\xb8\\xa3M\\x15\\xaa\\xa66\\x8frנe>\\xc5O\\v´\\x90\\xe4\\xbd\\xcc0\\xe4-\\x1c\\xce\\xd8\\r@\\xc5_\\x12$A\\x11\\x97d\\xdd\\xc0\\xdb\\x06u\\xdfi\\xdf?\\xb0\\xff\\x96\\xc9\\xe8\\x1f\\x18\\xfb5O\\xda\\xe0\\xd3\\xeb{\\x81K=\\xbb'\\xb3\\xce\\xfb\\xef>\\xa7t\\xff\\xb17\\xa4\\x89\\x18EC\\x1f\\xceQu\\x1aY\\x96O\\xd3u\\xb4M>\\xec\\xed\\xbfuձ\\x82\\x19nڮA\\xad\\xe4d\\xb3\\fK\\xf1\\xf2\\xc3t\\xa5}\\x03]\\x87\\x97#}\\x9bt\\x0fGa]\\xdd\\xea\\xd2EF\\x053\\xcdR\\xc7\\xe0_ی:>\\xd7\\u05cc\\xd76\\xd2\\xc5\\x10\\xe6\\x80M\\xbdH7\\xbe\\xe5\\xca|\\xabܘ\\xf3\\x96\\xf8:\\xd3?\\x97+R\\xab \\xc5\\x01\\x14\\x03\\xed\\x9d\\xdfϞ\\xb5\\u007f\\xfe\\x15k\\x13\\x13\\xb3\\xc3xh\\xb8\\xe8\\xc2[\\x9aܭgn0\\xdcU\\xd7\\xf8\\r\\xf1\\xc8<{\\xe0\\xfc\\x11\\xf1\\xfa\\xafׇ\\x87\\xebU;\\x1d\\xd5He\\x1acَ\\x0f\\x96Is\\xec\\xd1>\\x88R\\xcf\\xf3\\x16pO\\x01\\xcc\\x02b\\xf1a\\x180\\x16\\x02\\x8a\\x86c\\x89M(ZM\\xe2n\\x8dF3\\xa3\\x05G\\xd3\\x1a\\xcb\\xd1;5M\\xcbo\\x13:\\u007f\\xcd\\xdeakRQC\\x94\\t\\x89\\b}\\x14GG\\xdb3\\xe5\\x04!\\x1a\\xf1;\\x8fE\\xf1\\x94 \\xfc\\xd0:\\xb6\\xb5\\xecо\\xbas\\xcf-E! .R\\xe4\\x05y\\a\\x8a\\xd2Jx\\\"\\x91\\xf0'-\\x11\\xccA\\xebX\\x87w\\xf3Ņ|\\xe3p\\xad\\xdc\\xfd\\xe9p}\\x04\\x8dt\\xdf\\x1f\\xf0D\\x01\\xf7pG\\xae9B:f\\x97\\xf1\\xfb\\xb9-%\\xe9o\\xc1\\x1f\\xbd\\xbfV94\\x03o\\x9b\\xe6\\x03\\xf2Q\\xc4\\x02OG<\\xb7\\x84槙\\xfcU)L#?\\x9b:\\xa9\\x8d\\x17\\x1bA\\xeb{\\xca\\xe3^\\xa3\\xa8/!\\xab\\xe1\\xd5Ѩy<\\x1d}\\x89\\xa4a\\xacI\\xaai>[\\xdcV8܀\\xcd\\xe1\\xccV\\xcb\\vu\\x97\\x13?I\\xbepZ!\\xdfI\\x1f'cw/\\xd6\\fM2c\\xe6\\x15\\x85m\\xc5\\xc6a\\xba\\xb9\\xad\\x9a\\xd9\\xea\\xfa\\x1d&\\x85i\\b\\xcc\\xcb\\xe1Ќ\\\\?\\xcaZ\\x95:\\x0e\\xe8l\\xae\\x11\\x10\\x8bF-\\x97\\xeb\\xe4rlR\\xbd\\x8a;\\xd6`\\x03\\xa9q\\x8c\\xfb\\xc2\\x03\\v\\v\\x0fD\\x82\\\\.\\xf7Ql;X7\\xaf\\x8d\\xfc2Dm\\xff\\xefX;\\x83\\xbaz\\xbd\\xac\\\\\\x98\\x88W\\xd4\\xc7\\\\\\xc2\\x05\\xecA8e\\xafS\\xebs\\xf5f\\x9d\\xae\\xa5\\xb5\\xa2\\xc4\\xd6\\xd2V\\x1dBg\\xfa~\\x9b\\xff\\v\\vk\\xf7\\xd3TnZ\\x9d\\u07b5\\xf3\\xf4.\\xb2\\xda YQ\\x1d\\xdd3\\x10w\\xbdt>\\x96\\xd93\\xa3䋜\\xc8!\\x01\\xf2أ\\xa2\\n\\xab\\xacf\\xa3\\x9ff\\xab\\xe2.\\x90\\x11ک\\x9b\\xff\\xd7\\xd7[*\\x9f\\xed\\xdb5\\r\\x9eGI\\x0f!Qԓ\\x05\\xf4%UU\\xd9:\\x82Dȃ\\x18͑uW\\xf9\\x90\\xbd\\xb5HH#M\\xc9\\x1b\\x11\\xa9\\xaen\\x05})2\\x1e\\xd9\\x15\\xd9\\x1b\\xb9\\x1a<V\\xf2}\\x1a\\xd7p\\xca}\\x00\\xec2\\x1d\\xb8}\\xf4j\\t;\\xa5\\x18\\r1j\\xd4\\x00g\\v\\xb2\\x1eQh\\xe4J\\xbd\\\"\\x82kw<6K\\x97\\x1ez\\x15t#\\xb8^\\xe1\\x82\\xd0U,\\xbdC\\xd29\\x95\\x97\\xf0\\n\\x9a\\xc9O{w\\xfbgo\\xd6r(GG\\xac\\x9a\\x950$n[4N\\\"\\xf4G\\x0f\\x1f\\xe8\\xfe^,5\\xac\\x92\\x01\\xa7fS\\xae\\xb1x\\xfd\\xc3\\a|\\x02\\x8a.\\xe7\\x85\\x1a'I#\\xe4'&d.?S\\xad\\x90\\xb3,\\xd6\\xf8ɼ\\xd9\\xfdˇ\\x13\\xa58\\x11\\xaedoQ7\\x93I3\\x95\\xfa \\xe6Շo\\xaa6\\xb6$\\x14D\\xd3\\xee\\x92K\\xf3\\xe5\\xd4\\xda\\xc3~\\u007f\\xfc\\x12鏉\\xc8Rdg\\xe4r\\xd0mќhN\\x99\\x01\\x84C\\xa0\\x9aoLc\\xce\\xeb\\x1c\\x8c\\xe4@\\xc7P\\xe95գzy\\xd2z2\\xd6P\\xb8\\xb4\\xd7-\\xe4B\\a\\xa2H\\xb57c\\x89W9]\\xbaۛ\\xceϠ\\x158CX\\x16\\xde!a\\xdaQ\\x1d5\\x93\\x8e\\xb1N m_x\\xf8\\x00\\x8a\\xa8\\xc3)(qSY\\x95\\x15\\x91NE\\x153?\\xc9kd\\x94H\\\\\\xa5:\\x93\\xe7\\xe4\\t\\xf2\\x9b#d\\xe9F5\\x81\\xef>A\\xd7\\\"\\xa4ķ4\\xab\\xa9\\xd4\\xef`N\\\"-\\x9f}\\xb8{\\x0e)\\x89-\\rRT\\x9e_\\xf4dD\\v\\xc3\\xfa%X\\xf7\\xa8w\\xc2zT\\xfd^\\xe6ZƋ\\xe3\\xe2\\xba}\\xbe\\xd2\\xf3\\xe9\\xc3b\\xbdRD\\xab\\xe9\\x12\\xc3R*\\xa5\\x99\\xc5\\xf3\\x80,\\xbf/\\xfa6Y~s\\xf4\\x0eY~\\xa5s>\\xa2\\xdc@}x\\x9ev\\xba\\x97\\\\\\xa2\\xedk\\x97\\xd2t)ϥK\\f'\\x02\\xbd=\\xe4\\xcc\\xd6\\xee\\xd0X\\x98\\xf6\\xcaJ@˾Cs`;\\x91B?\\xbb8M\\u007fH3waZ@\\x88\\f\\x93\\xee\\xbd\\x04\\x975c\\x8e\\xf1\\xb6\\xe3\\\"\\xa1\\xaeG_\\x8f-\\xf9\\xf8\\xdb\\f'f\\xbe\\x17\\xad\\xa2\\xa8\\xd9\\xfd}=*WxN\\x11ѫ\\x14afFP\\xba\\xef\\x91\\x15\\xa1\\\"Gut\\u008c\\\"%\\xf0}\\xfa\\xbcO\\xfb!7\\xf8\\xe1\\xc8+#\\xaf\\x02/\\x0eȏƬE`_\\x94\\x8a\\x15\\x9aB\\x97Y!\\xfc+4i\\x1c)\\xa0\\x99\\x18ibFR\\n\\xf9\\x1ec>\\n5$9mֱ\\xeb\\xc3ף\\\"f\\b\\xf5-\\x17\\\"'Y\\xec=\\x99M\\x8f\\xea\\xbc,\\xf3zAV8Y\\xe6\\x14\\xf9\\x1a\\xdd\\x12<AQ\\x8a\\xaa\\x90N\\tZQ!\\xe5)8\\x90\\x14\\xc4%DK'm\\x92\\x8a\\xda\\xeb\\xd6}\\xed\\xc4}\\xbc(e%\\x9d\\x9f}d\\x96\\xd7ɑ\\xc8ߧ9\\xd9B\\xd69ө\\xa1\\x88\\x96j\\xa64C\\x8eO\\xc6e\\xe3\\x89\\xc4\\xfc\\xe9\\t\\xd9R\\xb6ܻE\\xb1$ؒ\\xc5i\\xec\\xea\\xa6G:\\xb2\\x1d\\xbe\\xf1\\xba\\xee\\xd7\\xc8t48Q\\xba\\xfbnI$\\a\\xba\\x84\\xb6\\xda1'됿؇^M\\xdfY\\x10/:v\\xa1h\\xd1ҋ\\x0f\\x11}L\\xd9$2\\xd4\\x1c\\vE\\x86\\xca\\x1c\\x8d\\f\\xfdCCy\\x8a\\x85\\x836%N\\xa4\\xe1\\xa0\\xfd8\\x00\\x03x\\a\\xd7)\\x06`\\xc3\\xe4h\\xbd_F\\xbeQ\\x8fwڞ\\x83\\x9es\\xbc\\xf6r\\xc8\\xcf\\xc6^C+\\xddU\\xf4Z\\xb0\\x88t\\x1f@\\x03\\xbe5m\\x8aI\\xc7\\xfb\\xf4\\x96\\xf9\\x1e\\xcfS\\xcc\\xd1\\xc0\\xb1\\x91\\x12W\\xaa\\x17\\f$\\xd8\\xc0\\a\\xbd\\\\\\x01\\x10\\x8a\\xba\\x93\\x8f3裧gvR̵\\x9d3\\x02\\x1f\\xaf\\xc6y&L0\\xd7ޟ(\\xd9#+\\xed\\xee\\xeaH>\\x13\\xeb\\xec\\x9aq3\\x19wf\\x17\\xac\\x1bL\\x94@\\xf2p\\xbc\\xfb\\x95\\xf80Yx\\xda(7\\x17\\x9d\\x8e\\x0fG\\x06\\xf8\\xdc)\\xc2ߵ\\x99~\\xac\\xe8\\xf3\\xd9E\\xe0\\xf1\\x1a\\x1b\\xb5\\xa7}\\xf4\\x02q\\x9e\\xbc\\xb38,\\x04\\x81^\\xad\\x81\\x9e\\xb6;\\xa5f\\xa9c\\x9f\\t\\xe9T}\\xe5\\xe9\\xaa&\\xdfBxc\\xaa;;\\xf3\\r%\\xfa\\xe3\\x0e\\xa4*\\xea\\xfc8\\xaa쩯W\\xc3\\xd6\\xffRq\\xf8\\x995\\x05\\xff\\x92\\x1c\\xbf\\x0e+k\\xfd\\x1c\\xb2\\x10_\\xe8\\x10~\\xb4J\\xf1\\xb0#\\x8dD\\xce\\x0fS\\x0e0\\rD@- \\xdc\\x1e+-5 \\x8c\\xd9\\xe4\\x02]\\x82\\b\\xd6ori;\\x92\\xb6\\xdf\\xfe\\xbe\\xdb\\xd1;\\xdfw;\\xd9u#\\xd9\\x1b\\xb7\\x96\\x0f,ŠhuG\\xdeL\\x16\\xbb\\x9f\\xa6i\\xadѯ\\xe9\\xb5[\\xeb\\xad\\t\\xf2\\x8f\\xb9\\xfd\\xd0E\\xf7[ɴ6\\xe4\\xccC\\xc9\\xd8\\x0emhB\\xb1-\\xed\\xdd\\x14\\\"P)xbi\\\"\\x9a\\xbd\\x18F\\x0eYY\\xea\\x00X\\xd7\\x0fLe\\xe5\\f#犗\\xee:~\\xfbc\\xf4ݞ\\fC\\xe4ܰ륹ۏw\\xe8\\xfb\\f\\xe9\\xd3?K\\xdf\\x1f\\xb3쓑\\x83Y\\n\\x03\\xaa\\xa6)\\x14\\v\\x13\\xc8?.\\x92\\xf5\\x9c\\xb0V\\x8c\\v\\xedY]\\xb8\\\\u\\xa1st\\xfb\\x98\\xa0%ta\\x12q\\x1c\\xaa\\x94\\xd9\\xf1\\xcb^g\\r\\xeb\\xe8\\xd53\\xf9J\\xf2\\x10\\x8b\\b]-\\xa5\\xed坯\\x88\\x9e\\xd1\\x04Y\\xd0^{#\\xdbmǎc)\\xa8\\x14\\xcf\\xcf\\xe4\\x0e\\x04\\xb1\\xa0\\\\H~ڶ\\x11C$\\xe2\\xfb͐ł\\xa1\\xa4\\xb3u5\\xe13\\x1b\\xc1*K\\xcf\\x18\\xe3\\xc0\\x12\\x00\\xa0?\\x05w!^<\\xd0]9 \\xf2\\xd4iH8\\xa0\\xa5\\xa5\\x13Qr\\x14=!\\xa5\\xf4\\x03B\\xc8\\xed\\b4\\xc1\\xe8\\x8b_D\\xd4\\xc9HU'\\b?\\xfdN+\\x01\\xb3%a\\xbd\\x93\\xd0\\xff\\tU\\x8d\\xf9q{\\xb4\\xaevd\\xc8\\x1fU\\x90\\xa1x9d{\\xa59\\u0097P\\xa5g\\xac\\n'yj\\xf6\\xbbs}\\xa4\\xf1\\xfaHdnهM| \\xaa\\xa8<\\xedքi~ĪZ\\x1fa\\xbb\\x0fӲwl\\x88\\xe2c%(\\xe2c.N?\\x18\\x9dM|\\x8a^\\xfap\\xff\\xcbd\\xf7O\\xb4\\xec\\x1dt{Gh\\xcbJ\\x18o\\xeecֆ\\xa2\\x89/\\x84j\\xf7\\x82\\x81\\xd4+0\\x81\\xbbk\\xb0\\xad\\x87ܔ\\xee\\fm]߳)\\xb8\\x0f\\xb5ӥ\\xee*3\\x10\\xd1흡\\xed\\x87}\\x8d\\xb7\\xb8I=_t-_\\xa8vϼ\\xb8z=3P\\xa3A\\xbc\\xdfMr\\x17E7y\\xea\\xbb7y\\xc6\\xf9\\x88\\xff\\x8bx\\xd3w\\xb1\\xe3\\x85\\xdby\\xa1\\xf6\\xbeP\\xbb7\\xb6\\xfe\\\"}p4\\xb4}fCI`\\x03\\x1b\\xac\\xffF\\xb4\\xc9\\v\\x8c\\x9f\\x8d5\\f\\x8f\\x98\\xc1\\xfa\\xacn\\x18$\\x81\\x9d+\\xf4\\xec\\x17|\\xf2\\xc6'>s\\xc1g\\xb1憞\\xe1\\xe7\\xf0\\xece\\x8f\\v\\xa4\\xd0uT\\x8d\\xe5\\xcdbY\\xedV\\xa8s\\x17\\xddvh\\xea\\xab\\xef\\xd1\\xede\\x84\\xad\\xa5\\xbc\\xad\\xe1\\x86h$\\xb5\\xd4\\xe57x}\\x06\\x9cH`\\xa9cz%\\xc6s\\x9ca1\\xdf\\xcc0\\x1b\\\"yo\\x8fg\\xb3\\xf1\\ue76b}\\\\E\\xfa\\f\\xd0\\x17\\x16\\x88\\xacח\\xf1\\x9c\\\"\\vt\\xe4\\x81e\\x0e?\\xb3\\x95\\x18x\\xdcÝ3\\xb1\\xcc\\xf7\\xadd\\x97\\xe2\\xdd,\\x9b\\xea\\xfd\\x94\\x12\\xf9~\\xc3\\xed\\xe1X\\xf7\\xa3\\xe8\\vB\\xcc\\xee\\xe6Y\\xd1-Z\\x94\\xffQx\\xceDj\\xa4\\x0f\\x97Y\\x0f\\xae\\x97%6d\\xecZ\\xedw\\x1b\\nu\\xe1\\xc3\\xfdn[\\v\\xf5`\\xe0?&\\x12^\\xb2@Q@-T'<c\\xdd\\xe4@|\\x85d|\\x94\\xa3\\xa4\\x89\\x81\\xc8_\\x02=SQ\\xf3g\\xaf\\x95+\\xef\\xbe6\\xbd\\u007f\\xef\\xd6\\xc4.p\\x1dG\\x82\\xe6i\\x1f\\x93\\x86\\xc7p~z\\xf2\\x9aKл+7l\\x99\\x94+\\xb3\\xa9\\x11Y\\x90v\\x81\\xd78\\xe2\\xf5\\x84\\xf6T\\xe3\\xd5\\xe3Raj2\\xefR\\x9d\\xd3y?\\xc6p\\v\\xf8F3g,\\xf2d\\xaf\\xee\\xf3u\\x95\\xe64\\x8b|\\xa4\\xb6_*1\\xb2K\\f\\x9c\\x9a\\x88̄\\x99\\xef\\xe95\\xd0\\x17\\xb6\\x8ee\\x1d\\xe3\\xbd\\xd76!*\\xef\\xaa\\xd7p\\x8e\\xa3\\xa4\\xf7e\\x8a:ig\\xb1\\x9c\\x8b\\xb9\\xc5\\xe3p\\xa1\\xfbt\\xaa\\x9ci\\x1c\\xb8\\xa2&Mn\\x9d<\\xc9V\\x84kb\\t\\xbbhf\\xf1\\xa9W\\xba\\x06V\\xde84\\xe9J\\xf1xJM*ɔe\\xeeJנ\\xb4\\x94\\x9a=}d\\xb1$\\f\\x97J\\xbb\\xd9:\\xc0\\x87\\xe4\\xbc6\\xe4\\bހ\\xf2\\xc5\\xf2\\xa8P\\xa4-p*\\xca;\\x83\\xdc\\x1fu:\\x82\\xab\\x15\\u007f\\x05\\xc4\\x10\\xc6A\\x99\\xe2.\\xd5|\\xa2\\xef\\xb83\\xf9t\\xc9s\\xe4\\xee\\xb9rj5U\\x96G\\x01\\xde?\\x96)\\xb3D\\x80\\xff}54j/s\\xd3\\u007f\\x97\\x9b\\xe0\\xf9\\xc9\\xe1\\x8c\\xe3\\x9dA\\x1d`\\xab\\xd6\\xe6Gs\\xe0\\xb8\\xf4\\x9b\\xfcH|\\xa9̒X}\\x10\\xa4>ޏ\\xef|<\\xb2\\x9b\\xacѧ\\xfb6݂//\\x85\\xfc\\xb9X&.\\x10.\\xca\\xe0\\xc6\\x03\\x9cO\\x1d6~\\xdef_\\xc1\\x01NR-P\\\"\\xf9\\x06\\xbeR\\x83\\xe6\\xeaf\\t-\\xb9%nw\\xad4\\xbd\\x8b\\xe7Gy~\\xd7t\\xa9\\xb6\\x9b\\x9bRw\\x8f\\xdaD\\xdc\\x16\\x89lcF-[\\xa8\\x8c\\x8dmk\\x1djm\\x1b\\x1b\\xab\\b\\xb6\\x155\\x89\\x00$r\\x92d\\x8f\\xeeV\\xbb\\x9f\\x16\\x8a\\xc5\\xd2h6^\\x8aeQs\\xb4T,\\n(\\x1b+ų\\x8f\\xcb\\xf2\\xbe\\x99\\xdd\\xdb'+\\x95\\xc9\\xed\\xbbg\\xf6\\xc9\\xf2\\x1f\\x94K\\x06\\xfc\\\"\\xe4\\xe8\\x12$\\xac8\\xef\\xd5S)\\xfd\\xbd\\x8e\\x82%\\x81\\xa5\\t\\xe3D\\xa3T\\xee\\xfe˘a\\x94\\xe2\\xc3i\\xafd\\x18cnz\\x98\\xd9f\\x9f?\\xff<\\xfa%t\\x16V&\\xd6\\x1fX\\xec%0c\\xfa\\v\\x0f\\xdd\\x1a\\xd5p\\xf7\\x9bzR4%E\\xff\\xeb\\xbf2\\x14\\xc9\\x14\\x93\\xfa\\x8f\\xe5x\\x81\\xf0\\xda\\xef$e\\xc3zR\\xba\\xfezR6L\\xae\\x05k\\xde\\xd3d\\xfe~\\x8crF\\x11w\\x9a\\xa7\\xbf$\\xc2\\x13\\xfa\\x0fXO\\b[X\\x15\\x11\\xa7\\x8bi\\x03M{^\\xf7\\x193-\\xea\\xa2a<\\xf9E\\x1a1Fa\\xa5Х\\xbc\\xac\\x19RV\\xd7\\xc5\\xd7b\\xcf\\xf6\\xf0kE]\\xcf\\x1aC\\u009es\\xe1h5\\xf03\\x00\\xbd\\xcc\\x1aE\\xe9\\x04\\u070f\\xc2\\f_f\\x89\\xa3\\xea\\xeb\\x83\\a\\xc90eS\\xac\\x12\\xafOsn\\x82\\xe1\\xe5\\x06\\xb7\\x10\\t\\xb2f\\xab\\xa7VsH\\x91\\xab\\xb28\\xf1\\xf4\\x93\\fЋB\\xbc\\x9d>\\xeb\\x1a\\xabo\\xc0\\xc5\\xf9ϊR\\x9ep\\xfe\\xf4\\xd2>\\xc3\\xd3\\xdaƝ\\xedWɺ\\xb45\\x1cKx\\xf6\\xb4\\xe1~\\xf6ޑ\\xf9b\\xf7\\xbch\\nY\\x16b\\xae\\xf9\\xf2\\x94\\x8f\\xd7\\xe2D24WF\\xc8C\\x9c2\\xdeM<\\aC\\x8d\\xba$\\xe7\\xe7\\x96x\\x96\\x17>\\x81\\xfeb\\xdf\\xcb_\\xbe\\xef\\x92}\\xe4\\x8f\\xed\\xbf3C\\xfe\\xc5\\xf2\\xb1\\ttDODM<\\x91%\\xe7\\xa8\\xf3\\xd27\\xbf\\xf4\\xf8q\\xba9\\xd7n\\x13\\x81:U\\x96t;\\xa6\\xa6\\xca}9\\x13\\xe6\\xc6\\xef\\x13\\x19\\x93\\xce\\xeb\\x12\\xa8H\\xc1\\xafM\\xa2:Ҟg\\x16\\xd4)\\x94H\\x93R$\\xe6%ʈ\\x12\\xa9!\\x17\\x8fy\\r\\tsm\\x9d\\xe3Tᐮ\\x1f9\\xe2x\\x14p\\xd2䆆\\xe8\\xc1\\xe4|f\\xb4\\x96R.ݷ{Y\\x9d\\xde\\xfb\\x1aBZTQ\\x91\\x84\\x1b\\x1d\\xef\\x1f~\\xaa\\v\\xf2\\x83hVS\\xb6Q?.$5a\\u007f(y\\xe5\\xfc؞rF\\xe5\\xdc\\xda\\xf4\\xf6Ä \\b\\x92\\\"\\xaa\\xbf\\xf3rG\\xa1\\xb4\\xfcyt\\xd6\\x1f\\xc3>@D\\x89)\\xa3K\\xbd\\xccy\\xb7\\xf8\\xa3\\xb6\\xfbM2\\x98Q=\\x18\\xccW\\xf9\\x83\\xf6\\x9d\\xeb\\x06\\xf3\\xc0\\x18N\\x80\\xefD\\x8b\\xfa\\\"\\xf6~0@\\xa2\\xd80\\x86=\\x0fM\\x1b\\xfe\\xc0}\\xd20\\xc8A\\xda\\xdc\\xd3\\x1f\\xc0\\xff\\xd4\\x1f\\xb5\\xfa\\x90\\xb8g\\x8f0d\\xc0`\\xde5\\x18k)\\xf6\\xfc\\xe5\\x87\\xc8x\\xc8EF\\x89\\\\\\x11A&\\x0f\\xf8y\\xf1|c\\tB\\xe3\\xfcp\\xbf8\\x04\\xc2\\xd5\\xfd\\x8f\\xd8\\xc8\\xc7Cb\\xf8\\xa6{n\\x05\\xeb\\xb2\\x185\\x9f_1\\xa3Q\\xd358\\x00*\\xef0,\\xc9\\x0e\\xb7\\x02\\xfel+\\xa1\\x0f\\xda\\xce)\\xba)[I\\xf1\\xe5/\\x17\\x93٤X\\xa4\\x16\\xb0\\x15\\xfao\\xad\\xd3IK\\xaa*\\xa57n}\\xfb\\n\\xe8k\\x1a\\x91\\xcbH\\x93\\x12!\\xf3Jcs\\x1c{\\xafN\\xe4\\xb7f\\x00\\x8e@\\xfdl7\\x05ǧ\\xc9N[\\x1e\\x19\\x97\\xdc=`\\x8c\\xf1m2\\xfa\\xc7\\xc2\\x00\\xf7c\\x93bJ\\xa3\\xc3-v\\xa4\\x87ϳ\\xb0\\xf3\\xf2yuq\\f\\x9bsvT\\xa5V\\x1a\\xf4u\\xba{h*\\x8cq\\x9f3\\xed\\xd8P\\x8a\\xa9\\x15\\xc6\\xcb+\\x83\\xf8\\xf8x\\xac\\xbaE@D\\xa8\\xe3\\n\\x81^\\xef\\x1c\\xa15\\xbfI}l&\\xc9\\f\\xdaJ\\xfdo\\x81\\xb1\\xa4\\x99\\xdf S\\x01\\xecX\\x02_\\x8a\\u007fX\\x9f\\x13\\xe3s\\x10\\xf7\\xc1'\\xbciT\\f8p\\xb1a\\x02\\fW\\xa3\\fN\\xad\\xb7\\xb8\\x8a%\\x8b\\xd2\\xc4\\xec\\xd2O\\x97v4(t6;~\\xfe\\xe7Z\\xc2ֹ\\xd1t\\xb6\\x80J\\xa9\\u007f\\xa6\\xc9\\aP'\\x96\\x15F\\xbcT\\x16\\xe5\\xd0Cr\\xa2\\xfbe\\xf2]\\xceXJ\\xc8\\t\\xb4\\u074c\\x92\\xa3\\xeb\\xb6˦\\xabq\\xdd\\u007f\\xd2\\xf8ԨCu\\x01\\x97n\\xe5\\xd3.\\xff\\x0f\\xb3*?T\\f\\xe4\\x94^;^\\xa8\\xfe\\x91\\x90C\\xd3\\xe6\\xd5\\xec\\xfe#\\xab٦\\xd5\\xe9\\xae\\xf9\\xa8eA\\xff\\xadP܅\\x00\\xed`\\u007f$2\\x1b\\xce\\xef>\\xe0?\\x13F% \\xd7X<\\x05\\xcd\\xff\\xda/\\xefG\\x8cp+\\f\\xc1\\x1f\\xad\\xf9\\xa9\\xe9\\xc9F\\x86\\xfc\\x15rwEF5Y\\xee>\\xed\\a\\xb0\\x83\\xeb\\xe8\\xf3\\x00\\xb3Ѧ\\b\\xfe\\xdf\\t\\xe8\\xb6\\xf2&\\x1a\\x12qE\\b\\xc5\\x06\\xb2\\xc0\\x80_\\xa8?W\\xfd\\xfa[\\x91Ñ\\xcb#/\\xa7^\\xf7\\xeb3\\x0f\\x90\\xb7\\x1d\\x8e\\x16aq\\x9f\\xe5\\x8a\\xef\\x9c2\\x18iBy\\f\\x1ai\\x02\\xde\\xf7\\xad\\x90\\x03Kk\\x10\\x96\\x815\\x9at\\x00\\xd7\\xe9'*xX\\xb15\\x1c5\\xa7\\x14,f\\xb0$\\t:\\x96M\\x87\\xd49\\x9aܤ\\xf09\\xd6\\x15\\xab\\xf2\\xb2\\f\\u007f\\x10\\x00\\x8cH\\xf3V\\xc3\\xdct\\xf7۲n+\\u0590h\\xf0\\xaa(\\v\\xbc\\xa0aQC\\xd0\\x0f(\\x15ݤ8\\x17\\x8a\\a\\xf6A\\u007f\\x80F\\xff!\\xfa\\x1a\\xa1\\x05uB\\xa3\\x8b} S?$\\xb6\\xa7,l\\xf5\\xd6f?\\r\\xaa\\u007f'Z\\xbd\\xf6\\xf0\\x87\\xa1B?;\\xa9\\x18IC\\xad\\xb7\\xe0\\xe4\\xbe\\xc3ߤ\\x95\\xf4N\\xa8P8?DΞ\\xebP&\\xff&B\\x10\\x14c7=\\xdeX\\xc2lY?;\\xffi\\xc2\\xcb\\xfeI\\bw)\\xe26\\xb3>\\x98\\xa6\\x04\\x0ei,\\x98\\xffB\\x80K\\x81\\xc4\\xf3\\xa7\\xcbＬ\\x9c^.W\\x1d+52s\\xe3\\xf2\\x98a\\xdd:C%\\xac\\xfa\\xc6P\\xad\\xcf\\xd8\\xdb\\xdft,]n\\x172\\xdbD<\\xbe\\xfc\\x86݇n\\xe9\\xfe\\x19\\x15|n\\xa1\\xdb)\\xba=\\xb9^\\x96\\xb4\\x98\\x1c\\xb6q\\\\5{\\x93\\u009f$-\\x16\\xd3\\xde\\b\\xa7\\x13X\\x03\\xe2\\xd6\\t\\x9c\\a\\xa0\\xcfj\\xeb`\\xdfϑ\\xf9\\xe8×\\xd5V\\xc0\\x03\\x02x\\x02\\xf2\\xbc\\x15\\xf4K\\x81\\x1c\\x1be\\xce\\vY\\x8eI\\xb3\\x80o\\x1e\\xa4\\xc9\\x06N~\\x85J\\xaa\\xa5\\xbf\\x86Mi\\x9f\\xaav\\u007f\\xac\\xa6Ԅ\\xaa\\xa2(٣\\x12-\\xfekvϟ\\x93\\x12r\\x99\\\\M\\xc1eu\\xc0ob4\\x94\\xad\\xa9\\xe77\\xc1\\xc7\\xeb\\xf1b\\xdc+\\xe0J\\b=g\\xfdML\\xf4\\xa3\\x9b\\xf6\\xb9s\\xedQ\\xf7`\\xc7/`\\x02\\\"\\xbb\\x1c\\xecIi.\\u05ee\\x9d\\xc9\\xf9%n\\xff\\x02\\xf3a@+4\\x96\\x82\\xa1\\xaf\\x046\\\"\\x1f\\xc7\\xd1\\xdfЗ\\xe0c\\tЍ\\xf3b\\xb0\\xb7\\xae\\x97\\xa3Q\\xb9\\xdc\\x14U\\xb1I7\\xe5u\\xe7\\x10\\x8a?\\xf8\\x87>')j7\\xa7*\\xd2\\xd4\\x14ϳ\\x0f)A\\xe7\\xc2%\\xdd?\\xda\\x04m+\\xac\\xa7\\x84\\xbc}\\f\\x03{;\\x91>\\x0f\\x03\\xdah\\xdc\\xef\\xce\\xd2zH\\x19_d\\x13\\xd9@'$\\x1f2\\x10\\xb5\\xe03XB'\\v\\xa8\\x04r9\\x90\\xaf9\\x83Ź\\xce\\xe4ϐAt&?\\xd3\\xfd\\xbeW\\xf0<\\xc7\\xf1\\xe4v\\xbb\\xd3n\\xdf\\xd8?\\x03\\x89\\x9c|\\xe5\\xdc\\x1a\\xed\\xf2Z\\xf79\\xaa&\\xb7\\xf33\\xcc\\xebp\\xe6v\\x1a?\\xeb\\xddF~x58\\\\]\\x01I\\x9e\\xc9-\\xdf\\xe4\\xce\\x12ެ\\xc5\\xf2\\xf9\\xf6d\\xb2\\vE}o\\x00\\x8bMxܽ\\x12ֺ\\x96\\x96\\x92\\x96%I\\u07fb(`\\x03\\v\\x8b\\v\\x19\\x01\\xf2\\x9fgZ\\xe4\\x9c\\xec\\x17[\\x19\\xba\\xa7\\xe7\\xe4\\xfa\\xb6\\xbd\\xe4~\\x94$\\x9b\\xee?\\x90o\\xbdEK\\xe2\\xca+\\xb0@D\\xfe\\xebGf\\xe8\\xbe6r\\xbd\\xc4\\xcb\\x02\\xdep^!\\xf7G\\\"\\x03~\\xe7\\xfb!#!\\x0e\\x81Tl\\x1a\\x9b[\\xef{aWZ\\xf5\\x00Wc\\xdd~\\xf5}\\x1c\\x8d\\xe0\\x03p\\f\\xff\\x83^\\xcbB\\x059\\xe97\\xc6B\\xa6\\xd0ձߐ8D\\u05ca\\\\\\xd8BJ\\xbfν/\\xf4\\x03\\v\\x11\\xa6+\\x89\\xb4\\x89l\\xd0\\xf65\\xbe\\x83ڦ\\v\\xd4f\\xfd\\x9e\\xa3ʗn\\x84\\x92\\x9e\\xf0C\\xfd\\x0f\\x00\\x81\\xd0\\x1a\\x91\\xcd\\x15\\f\\u007fg\\xe0\\x13\\xe8lP\\x84bG\\xc1\\xc8]\\x8f\\xefq\\xe1\\xb0f\\xb2\\u007f\\xfc\\x8a\\v\\xfd~\\x8e\\x0e7\\xd6\\x1d\\xebk\\x15\\xf2E\\x03\\xde\\x04\\xf4\\xac;#\\x91F\\bCs\\xb8\\x9f}\\x88\\x1c\\xb7\\xc0\\xfe\\xd7\\xf7\\xe6u\\x06\\x95\\xfc}\\x8c(\\xf2\\xa4e\\xac\\xa0\\x1b)܄-\\xbf\\xdf\\\\a\\x10_\\xe6\\xaa\\x1c\\x93\\xeb\\x8cm:\\x03\\x9a\\x9b\\xe5sd\\xf9]\\x03\\x96\\x04\\x96Ӷ,W۪\\xd3}+\\x8bf@w9\\xea͢\\xf8?\\xa8\\xf9\\x88\\xfcf\\xf79\\xb0]\\x84ƗB\\xf5\\xcd\\x1e.\\x02\\x00l\\xab\\x81A\\xf9h\\xf5H\\xf6Z\\xbb\\xb3t\\x12\\xdb\\xdaɵ\\xc4\\xd2D\\xe2.-\\xab54\\x8d\\x94\\xae\\x9c\\xd4l|r铉\\x89%RJ\\n\\xb3Zϧ\\xeb\\xcbt-\\xc8\\x03\\x85vY\\xc0H\\x9c\\xa3[\\x86\\x80\\x05\\t{ r\\xaeAs\\x1fS\\xc4H\\xcaANs\\xc5\\x06\\xf83P\\x85i\\xee\\x1c\\xf9\\xe4\\xd2h\\xf2\\xe0\\xf5\\a\\x8eN\\xcd\\x17\\xa7\\xb6f&,\\xb7\\xf6\\xad\\xa3\\a\\xe6\\x8e\\xcd,\\xd4\\\\k\\\"\\xb3u\\xaaXG9P\\x87v\\xbfG6ks\\xd3\\xe5]\\x8e*p\\x86\\xbd\\xa2)z\\x0e%\\x9d]\\xe5\\x91\\xc9xNW\\xb4\\x15\\xdb\\xe0\\x84\\x90^j<2\\a\\x1e\\x8eQ\\xe6\\xf9M\\x11\\xa3M\\xae\\x1f\\xfa\\xde\\v\\x81\\a9\\x84\\xba\\xa3m\\x12o\\xed\\x8d\\x0f;\\xbc\\x828\\x01\\xf3\\xc7\\xfc\\x91p\\x8ct\\xad\\xc2;\\x93s\\xf7S\\xf7\\x9d\\u007f`\\xc1\\x0fkgO\\x17v6㚻\\x8b\\xc7\\\"\\x1fL\\x1a\\r\\xefr\\xb5\\xdcU\\xf3\\xa7?GM~e\\x1f\\xede\\xd0\\x0e\\t8\\x9f3\\x91Cd$3d3R\\xa3\\xc0\\xcaG\\xd8<\\n;\\xd0\\xf2\\xea\\r\\xaf\\xc9\\x04\\xfd\\xbeKye.\\xe1ŠI\\xa4[\\x01v\\x03U\\x02\\x90\\xf5\\x8e\\x82\\x13\\x9d\\xbb\\xb1\\xd2d\\xe8V\\x91\\xedsݟ\\x8c\\xde~o\\xae\\x9e\\x19\\xbd\\xfd\\xf8\\xf6\\xb9{\\xcf¨)N\\x0e\\x15\\x05\\xc4\\xf1\\x9c\\x8d\\x11\\x17\\xd5\\xec\\x8cË\\xbc#\\x91\\xe3\\x87\\xdbX\\xe9(\\xa8EA\\xb0\\xbaώ\\\"mn\\xfb\\xf1\\xdb\\xd7r\\xb9\\xdb`?z/\\r\\xa5Z\\x1b\\x19B\\x02\\xc7I\\x9ae&m^\\\"{\\\"\\xe7\\xfd;i\\u05ebiN\\xa5:\\xa3\\xc6Ts\\xc1\\xfe\\xe0\\xedC\\xa4\\x13aR=~\\xaeEM\\xa8\\x84z\\x80\\x14\\xc7\\\\\\xab\\x888\\x9b\\xe0\\xae\\\"+\\x06Ɠ\\xc3\\xd9+\\xb2\\xe4oxJ\\xc23\\xe5\\xd4N%\\x8a\\xde\\x13U\\xa0\\xd6\\n\\x901\\xea|\\xae(\\x86\\x83Vlt\\xb0z\\x95\\x84\\xf2\\xf4\\x1f\\x92\\xae\\xaa\\xdehY\\xdd\\u007fF\\x88\\xff*\\x995\\xa6\\xf2U\\x1e!\\xe1\\xba\\xebȸ8\\xff\\x1f\\xa4n\\xf7S;}\\x9a\\xc6\\n7꽕\\xae\\x1e/1\\x10\\x93\\xa0zN\\xdd\\xf7\\xcbA\\xed\\x00\\x97\\b\\xfd\\x0f5\\xea>\\xbf\\xe6F\\xb5\\xcb\\x14\\a=\\xe2(%\\xa6\\xd0i\\xaf\\x9e\\xa7\\xb4\\fEV\\xff\\xd5.\\x14\\xec\\x15\\xd3\\xecf\\x91\\rS\\xb0\\x8f\\xdf\\xce\\xe2\\x95X^\\xa2A\\x95Sq\\xbd\\xda`=^\\xa5\\xddW2\\xb5Cv\\xccN\\xe8\\xb8\\xed_\\\"\\x9b\\xe5\\xfe\\xe1\\x93\\xfd\\xc3Hx̱|\\x18n\\xe4\\xc9\\xc8\\xc7!\\xce\\x15WZ\\xf0G\\x0e\\xb8\\xc0\\xbeݜ\\xf71\\xd4\\xc1y\\\"\\x8c\\xa9\\xdeO/\\xb4>\\xdd\\xd0\\x05\\xd2\\x0f\\xad\\xc7k\\xbf\\x10~\\xfb\\v\\x9c\\xf7\\xeb\\xd2\\\"\\x1b\\xfc٩\\xa9\\xa9\\xf7M\\xb1\\u007f7\\xb1!\\xfe\\x19\\x8e\\x1b\\xf6Aէ\\v\\x0e\\x05pq\\x82\\x1d\\x85\\xb5q\\nS>\\xf8\\xba\\xbf\\x9bb\\xb7\\x89\\xce\\xe0\\xddy\\x1f\\xed\\xe6\\u007f\\xe3\\xaf=F\\xaa\\xf9#\\xf2\\xd9C>\\u007f@>\\xe8v:\\xb1\\xde\\xc5K\\xfc\\xff\\xff\\x95y\\x91\\xbfV'\\xf5\\f\\x8d]\\xe0\\x15\\x8f\\xf6};\\xfcU-|D\\x83\\x85C\\x0e\\x1e^\\xa5A\\xb8\\xf4F?\\xfdV\\xbd'\\xbb\\aG\\xe8g\\nss\\t\\xb6ӊQ\\xa7\\xbeYuCypem\\x85\\x81\\x1b\\x84\\xef\\xf9\\x81b\\x9c\\xb4\\xfb\\xf8\\r\\xf6I\\x83|\\x89Zė\\x15\\xa5\\xdd~\\xdaf\\xe8\\x05\\xfd[\\b\\u007f\\xd8\\xf5c0J\\xbe}\\x87\\xea\\xf2\\xa5\\xd0\\x1c\\v\\xe9\\xf1i~\\n\\xee5\\x92\\xc0o\\xe1\\rq\\x8bl\\xb1\\xc9o\\xc9[$\\x9d\\x14\\tҗ\\xad\\x1dGvX\\xa8\\xc3\\x1b\\xd2\\x1d\\x92\\xc8g\\x04E\\xe9R~FQ\\x84\\f/\\x92B\\x83\\xef\\xc4S\\xa9x\\xe0\\x1b\\xf39\\xb4\\x9b\\xfa\\xc9n\\x05\\xc9!\\x88\\x19&$\\x9a\\xd6\\\"\\x88\\x066\\x11\\x8b\\r&\\xf4\\aS\\xd0SJ([K\\x12\\xa1\\xf5d\\xb2\\xb4 \\x81\\x0e,\\xd7\\xd4R\\xf2]\\xea=:\\xad+zR\\xf7<Et\\xa64!\\xc1\\x1b)\\x8f\\x8f\\nڢ'[)]\\xc4\\xd2А,IvA\\x88cG1M\\\\\\\\Еo\\xc6\\xe4\\xaa)*\\xdbԔ\\xab̩~\\xb0\\xefG\\xa5$\\xb9Sӓ\\xce\\xde9;\\xd2\\xf0$\\xc38d黒\\x85EM\\xd0L\\r\\x9eb\\xe6L\\xb2\\xe4I\\x1c\\x8f\\xc6\\vÿ:\\xafN\\x16teQqS\\xea\\x9c\\x12\\x8a\\xc7̰\\x8c\\xf6\\x83Ri>0Y\\x81\\xa0\\xd0Cl\\xfd&\\xb31R\\xa3\\xe9\\x19ȓ\\xdb]\\xa1\\x84\\xccO\\x18\\xd7\\xce\\xc4\\xceGb\\x19fQ\\xcd\\xc40\\x05\\x9a\\xf1-\\x82a\\x9f\\x98\\xd1H3r<\\xe4\\x13\\xe3\\x83\\xf1lE\\xb3dy\\x99\\x9f\\xa6\\xef\\x19K\\x10LHD\\xf8%\\xb0\\xa6a\\x13eyp\\xa7\\x04W\\x8ci\\x0e\\xba\\x1a\\x96\\x9ez\\x0fȇ\\xf9\\xcf<@\\x1e\\xc6!\\xa4\\xf3\\x10(\\xb8\\x8c5\\x0e\\xd0a\\x85\\xac\\xfa\\xb8\\x14\\x95\\xa4\\x91ks\\x1c\\a\\xf6\\x15\\xcc\\xc7\\xf7]+\\x11\\x06Z\\x92\\x85eL\\xbaG'\\xb7\\x91o\\xaa\\xbe\\xb7\\xcd\\xe500\\xc8\\x02)H\\xa2\\x80\\x868I\\xa2\\a\\xaa\\xf28D\\\\\\x96\\xcb<yA\\xe4\\x01B\\xf2\\xfd\\x9c\\x86\\x05\\t\\x91[4\\xac\\x89<|\\xcb\\xec\\xe7\\u007f\\xa1\\xb1\\xd2\\x05@$\\ny\\xd7n\\xe7\\x98\\x067\\xac\\x0fu\\xf2\\x1b\\xfc\\xcdX\\b4Y;\\xa8HO\\xd7\\x10\\x9b\\x8b\\xd0\\xd9\\xf1<\\x15\\xf0}\\x93\\x84M\\xc3w\\x9f\\f\\x81퀎\\xac\\x87L\\xac\\xf4\\xfc\\xbd\\x05ʱ$hd\\v\\xc3Ꮤ$L&N\\xb1\\\\IT\\xb2\\x9cW\\\\\\\"#\\x18\\x17\\x9b^\\xb9ROЄ\\x03\\\\ŋQwƠf\\xfe\\xb8\\x88\\a0\\x99n\\x83\\x8d\\x0e\\xb4$O\\xe9\\\\\\xa5\\xc2\\xe9S\\xa7\\x04U&s\\xc0*\\x90syjJ\\xaepG\\x90\\x85\\xa1\\xf0g*ǩ\\x96\\xd6\\xfd\\xf4X\\xab5\\x86\\xf6\\xa5XtR\\xaeK\\xb8\\xe3\\xa8\\xf9\\xdcl|x,76\\x1cϊ\\xd1b<;\\xce\\r\\x8f\\xcd>\\x1a\\x9f\\x1d\\x1bˎc(y\\xc4\\x12\\x95y]Ul\\xdd$_n\\x8f\\xb5Re\\x16o\\xf4'\\xedh&\\n\\xf8<ϟ\\xff<:\\x8b\\xbe\\x1a\\x89E&#\\xaf\\x8d\\x9c%\\xeb#0&Է\\x10\\x03w\\x00\\x90'\\tO\\x04\\xd7L\\xea\\xdc\\fW\\xc1?\\x97p\\xb9\\xf5&\\xdc\\acL*W\\xa6\\xc9Bǀ\\x8b\\xc1\\x1d\\x13l\\xc7M\\xf6\\x9f\\xba\\xe9Q\\xa5\\xb5\\x97\\xe5=\\xe6牁;ŦTfc\\x10x\\xb9\\x97%\\xb2Qg\\x9epc\\xa5yE\\xe5\\xa7u\\x83\\x97\\x14\\x01\\xe5yU\\x99/I\\x0e?\\xefD\\xb3\\t\\u0095*\\x1ca\\xdf\\f\\xfd\\x90\\x9aѕ!EϨ\\xbc \\b\\x1c\\xe6\\x15>!I\\xa2E\\xe8:\\xa1\\xe7\\x96(I\\x89\\xa4̩N\\\"\\xae\\xc6\\x13\\x8e\\xa5\\xc4\\x13\\x92\\x80d^\\r]\\xe7U\\x1e\\xf3\\xa2\\xf8x\\xebX+9\\x91\\xaa\\\\\\x16WWd^*s\\xa6|F\\x15`\\xf4_)\\x9b\\\\\\x99H\\xaf+j\\x1c\\x81W:\\x12T\\xf8\\x8e$a\\xb2\\x13\\x00d\\x83\\xfc\\x97\\xbc\\xb8b;\\x89\\x84\\x1a\\xf7\\xc8c\\x12\\xa4y2\\xd2\\xd8SlQ\\xc4\\tK0\\xc9S\\xbd\\xb8\\x9aH8\\xb6\\x12\\xf7\\b\\xb3\\x89x$\\x88\\xdfX&\\xc3/5\\x99bv\\xf1\\x1e>\\xd0\\x00\\\"\\xbb\\xef)U\\x17/\\x92\\xe9\\x90kS\\x1f\\x8d\\xb7\\xa7\\xdcG\\x15\\xe5Q7\\x85\\xb2KK\\xba\\x9eе\\xa5%\\x8d\\xec\\xf4\\x813\\xb4\\x02\\xf9X\\xd3%\\xf7\\x115\\xa5>\\xe2v7\\xbb\\xc7?[\\xa7ۭ\\x10\\xe9\\xef(؍\\xd7\\xd9$\\x00\\v\\xc7#\\xa3\\x9f\\xbc\\xee\\xa2\\xc9\\xfb\\xf6:B\\xc0\\xd7+\\xa7\\x82\\x98\\x9b\\\"\\x19\\ad\\xe2\\xc0\\x92\\xb8\\x84\\xdc\\xf5w\\x9d\\xf1\\x81x\\x88\\x88(5\\x9d9m\\xcb\\xf82\\xaf[\\xae\\nM\\x8c\\xe5p\\xa9w\\x99\\x8b\\xf8E\\xcb\\xe3[\\xb49\\xa7)]\\x86s\\xb1\\xdeU\\xd0\\xe0\\x06\\x98>\\v\\aL\\xbd\\xb2\\xa3v<\\xa9X\\xaaD\\x84\\xaaD\\xf4\\xfb\\xfd\\x8bȦ%\\xc9\\xe3\\xb5\\x1d\\x15\\xdd<\\x10Mt\\x9f\\xeb_\\xf4c>\\xbe\\x8e\\xbe\\x18\\x99\\x05\\u007f<\\x91\\x9a\\x01曭FH\\v\\xe7\\x9bP\\x13^/Q-\\x03\\xbf\\xa3\\x89G+\\x12\\u0383@X\\x8c\\xa3\\xe9\\xbf)GS\\xf3\\x93\\xfdTTv<ZQt]\\xd3\\xf4y\\xbaU&ҩ\\xe8ߔ\\x00\\x06\\xa04\\xd4i\\xe7'\\xeb\\xf3W&\\xdfK\\x88\\x91\\xa4\\xd2\\xcd{u\\x87\\xdcOn$\\xf7\\xc3V\\x99\\x98n\\xd4'\\xf3\\xcf'*\\x95\\x84\\xf1\\x89O\\xf4\\xfcR\\x11\\x93\\xd7\\xd3~\\xdeU\\xdf\\x0e\\xc07\\x18\\xa8\\x94\\x8fsB\\x1a\\x10\\xe4\\xb4E\\xa4\\xa5]\\xc2v\\xe4`l\\xb4Iw\\x90\\xf1\\xf4\\xc7\\xccKb\\xcd5\\xceQ\\x11\\x9c\\b\\xac%:\\xccڥ\\xa3\\xbe\\xb3b\\x9f\\xb7\\x9e\\xa7~\\u007f'\\\"/\\x89\\\\\\xb7\\x1ewe\\x13p\\v\\xff\\xe9\\x03\\xa1j\\xa5x_I\\x18h\\x9b\\xa1\\x93\\x99Z\\x97\\vl\\x1f=_1\\x06\\xcdb\\xeaRȷ\\xc5peZz\\xdfg\\xef\\xeb\\xae1\\x8b\\xc6v\\xba\\xb2\\xae\\xd21\\xf50ݞ\\xf1]\\xa5ڦ\\xba\\xac\\x9a\\x1f\\xd4,\\xe6\\x14ö\\xae\\xb1J\\x8bk\\x85\\xe9\\xe9Bm\\x81j\\x10\\xbb,\\xa9\\xe2\\xe9\\xd0x\\\"#$\\xf0\\xd3a\\xd8-\\x1c郫i$\\x13H~\\xc5\\x04P8\\x18)\\x958S\\x8e0\\x81\\x10\\x02u\\nE\\xe6\\xd3\\xde\\x02\\xb4H\\xe6QJ\\x96\\x8f\\xda<\\xf8\\xa8S\\xf8(!\\x1e\\x8b/q4\\x19\\x04\\xa1\\x90\\x1cN\\x10vQY<\\xa8(\\xba\\xc8c\\x01s|\\tlt\\xd5\\x12ϑ3^\\xd4\\x15\\xe5ࢢ\\xe4&3\\x13\\x1a\\xaf`\\x0ei\\x85\\x93\\xf9|B\\x16\\xa2\\x82\\xa0\\xc4m#\\u007f\\xb2\\xa0!\\x8e~Q\\x9b\\xc8L]!\\xba\\xe2H\\xc2Q\\xb0\\x88\\xf4t[\\x96\\xdb\\x19\\r\\x89Xq\\x12#䂣\\xe4O\\x155\\\"\\xdb\\x02:\\xfeX\\x8aG\\x8d3U\\x03cў\\xae\\xed\\xcb\\xf3(5\\xa6rH\\x94\\x14\\xadx*\\xcf\\xd6i\\x9a\\xf3'B\\xe6F\\x8c\\xfa\\xb0\\xf5\\xd5\\xe1\\xa0\\xf5\\xa1\\xfa`O\\xa4S\\\"P\\x0e\\xc3\\xc4(\\xa0_`\\xdc\\xfd6\\x8e\\xe1\\xc71\\xae\\x92\\xddm\\xcfI1\\xdc\\xfd\\xee\\x19]\\x9f\\x12\\r\\xb1\\xf5\\x98`\\x88S\\xba\\xfe\\xb4\\x00\\xe8\\\\1\\xb8\\x93\\xdc\\x18#w\\xe23\\xcfa\\xfc\\xae3\\xba6%\\x8a\\xadGEqJӟffb\\x88\\xaf\\xa7\\xfc\\x82\\a\\xb4S\\x1c\\x88\\xb0\\x87\\xa8\\x00\\xc2AX\\x14\\x8e\\x8cz\\x14\\xf4\\xf2\\xf9R\\x92\\x85\\xaa\\x8e'?'{\\xce\\xc2\\x13\\x9a\\xee\\xa0[\\x1d]{bm\\xf1\\xd2K\\x17\\xab\\xc5Q7V\\xa5\\x04ژ\\xb7\\x0e\\xf9\\x11\\xf8oxB\\xcff\\xf5'ހ\\x9e\\xbe\\xf4\\xb5\\x97\\xc6G\\x81\\xc3H%&\\x1a\\xa1\\\\PI꽐E\\xf1\\xfc\\xa6db\\x03fa\\xeeĭ\\xdd\\xf6\\xad'l\\xdf2G\\xa8\\x02C\\x94`\\x81:۵7^z\\xe9\\x1b5\\xb7o\\x80톢 \\x196\\xe9\\xa79\\t}ͷ\\xdf@V\\x81\\x04\\x04\\xd9\\xf8\\xa0\\u007f\\xecC\\x93\\xd2Q\\xbc\\x95\\x11H\\x12D\\xe8\\xafp\\x01K\\x0e\\xeabwTt=uoe\\xfc\\xa83\\xa1\\xb7\\x8c\\x04\\xa7s樜\\xb7\\xa1d<\\v\\x05ݏ\\x86l;\\x1f\\xa3\\xdb/\\x8eW\\xf6\\xaa\\x9e+\\x8e\\xbaX\\xe7\\xe3FK\\x9f\\x88\\x1eQ\\xb5\\x91\\xe1\\xbdVA\\x862i\\x04\\x8a>\\xe7\\xf6S\\x1b\\xbf\\xbb\\xef\\x0fI\\xdb \\x12\\xfe\\xa3H\\xa3\\u05f7\\xbd@\\x1b \\xb9^,q\\xc1\\x16\\x9c\\x97ܢ\\xb4y\\v\\xca\\xe3\\xe8P\\xe3P\\xf7/7T\\u007fm\\xbc|\\xb1\\xeaϓoݾi\\xdd\\xfb\\xba\\xc6!\\xf0#/\\r\\xd0>\\x8a\\xa1¼\\x05\\x91C-\\r\\x1b1U\\x18%\\xabRǇU\\xa0\\xb4\\xe7`[\\xed\\x17v\\xe8\\x96\\x16\\xa0\\x03\\x1d\\x10\\xccЁ\\xee\\xa7:\\xa0y\\xe9]\\xa16\\x0e\\xdf\\u007f\\xc6\\\"t\\xbfBzq\\a\\xcd)r\\xc3&9\\x93\\a\\xf0\\x00zT7\\uef48\\xe3Vc\\xd0\\xd8&\\x86~+l\\x82E\\xb6|N&\\u007f\\xdfgF\\xd0\\xf6f\\xbb\\xaa\\x82\\xe9H'\\x9b\\xe0v\\xd4a\\x82'4\\x0e\\x80\\xf5\\x01\\xe9C>\\xb0\\x1eb\\xd9\\xff\\xf3S\\b\\x92\\xcd\\xeb\\xe8}\\x032R\\x9e\\xcc\\u009d}\\x19\\x89\\f\\xfb%D\\xa1o\\xa7!\\xc9e\\xa5l\\x02\\xfe\\x84\\x94E=\\xa7\\xcd\\x16\\x053\\r_\\x02\\xe6j\\t1\\xc9\\xe8\\xb1a\\xec\\x888\\x93\\x11\\x89У\\n\\xc3\\xfe\\x19!\\x8d\\xf2˩z\\xf3\\x19r\\\"Yr\\xf8\\x02=\\xf6E\\xa2%\\xff*a\\xe5%$\\xf6\\xef\\x15\\xa4\\x0fS\\xdd\\xe8\\xaf\\xf7\\xbeػ@\\x8f\\xd9z\\xfey:\\xbed\\xba\\xc6FJ\\x00p0\\xc35[\\x00\\xb5U\\x01z:M\\x88\\\\\\x8b\\xa1\\x10B\\xd8g\\xab\\x1f\\b \\xe1J\\xadP+\\xccb\\x96q\\x12&~0S\\xd07Z\\x18\\x99\\xb8ٚ<\\x91>\\xf2\\x92\\xd9\\xf9\\xb9\\xfdM\\\"\\x98\\x89x\\u007f\\xde\\xe3y\\x89\\xf0\\xd5fl\\x8fN\\x88\\x9b>_\\xac\\xd59nw\\xb1\\xb0\\xe5\\xba\\x11\\xd9\\xc8H\\xc2?\\xd1\\tscg\\xab,\\xf3\\xde5\\xce\\x1bǶ\\xe7\\xdc\\xd7{H\\x90\\x84\\xad\\xf7f\\n\\x92\\xc1۲\\x11\\x8fޝ`\\x90\\x1a\\x89+G\\x8d+^\\xad\\xb7f\\fl\\t\\xc6\\xc7\\a}©\\xfc\\\\\\x8f\\x1ccY9b\\xd8\\xf7ϑ\\x82\\x03\\x8a%I\\x0f\\xc8\\xf0\\x83\\xa0m\\x0f\\xd6\\xc5\\x11\\x96j\\x93\\xc9\\f\\x15?\\x99\\x12\\x10\\a \\xe9\\xf1X\\x16\\xa1\\x8f\\\\\\x02\\xf1\\x14\\xf3\\x8bd\\xb3\\b\\xbe\\x93\\ajK'\\xa6\\xdc-\\xad[\\x05Q\\x11\\x14\\x1e\\xff\\xe2\\xd4=\\xf1J\\xeanQPD\\x85\\xc3\\aSC\\xa7\\xeeY\\xb8\\x06\\xed\\x1b\\u07b2:\\x9d\\xbb\\x1e&\\xdak,\\x8e\\x82\\xb4\\xdf\\xc8Y\\xaf\\x81\\xfd\\xf5\\xb9\\xe9\\xd5\\xecT\\xc2\\xe0\\xd4\\xfd<6ȯ\\x88_-\\xa5\\u0558-\\x1d\\xe5er*\\x8b3\\\\9\\x15\\x1dv\\x02~\\xb9Mq\\xf2\\x13\\x91\\\\d\\x1cr\\x8e\\f \\xe5\\x13.\\x9e:;xM\\\"\\x13\\x81\\xd0CĠV\\xa3L}(\\xe7\\x9a\\x1e\\xf5\\x92 \\xad\\xf2\\x12O\\xfc\\xf8\\t\\xf2\\xf7M\\xd9J-\\xecٷ-\\xbe\\xb88\\\"\\x15\\xe2\\x90\\x1f\\xe1\\r\\xb9v\\x8e\\f\\x9b\\x99\\xf2\\xd6\\xfc\\x9e\\x85\\x94E\\x86\\xd4\\xea\\xe1\\xc6\\x1aD\\xaa\\xaf5N\\x0e\\xa7'\\xd5r\\xc2+\\xabv\\x92\\x8f%\\xf5\\x98\\xf1v\\x83\\xe7\\x8dT\\xb9|\\v\\x8eg\\xacDY\\x9dL\\x0f'ù\\xfc\\xf2\\xe4D\\xf2\\xdd\\u007f\\x898\\xe6\\xe3G\\xb7\\x82\\x882\\x89\\x8b(S7]b\\xda\\xef~\\xc5\\xd6\\xc3#;r[\\xfa\\x9e\\xbf\\x9c \\xce\\xed\\xb9\\xfa\\xf8\\xa9I\\xb4\\xf6\\x86[\\x1b\\xc9\\xc4\\xec\\xac\\xcc\\v[z~\\xbf\\x1f\\x9b.\\xd4/_\\x98\\x1e\\x8a\\x8a\\x91 \\xd7c\\x10\\xf7=\\x16\\xb9\\x14\\xe4\\bwC\\n\\x16\\x1c\\xdf\\xdcn\\xec\\x82\\x12\\x1d3\\xbf\\xe0\\x1e\\xda\\\"5vzs\\xb3\\x14v\\x91\\xba\\xe0\\xc1\\xb2\\xee\\x06)R΅s\\xb5\\x04\\xfe\\x1d\\xf4\\xef\\x8bDT\\x9c0M\\\"\\x89GyY\\a*\\xa2\\x9b\\x9e\\xa09\\xbc\\x86TA\\xe6M^O\\xcf@\\xe9\\xc1u\\xd9S \\xa3\\xcb\\x01J|\\xd8\\xf6|D\\x8aBN-\\xa7)+\\xa6b\\x9b#s*R,I\\x1a\\x02\\xaf1\\xcfϪ\\x12\\xe6\\xc9\\x1dB\\x99k\\x9b\\xb5\\xdbm\\x96\\aPp(\\x94bk\\xf3\\xa6\\x1c\\x91em']\\xfewj\\xb2\\xdc\\x11M\\xf1ÛԳ\\xfb\\x01\\x1c\\xa3^\\xc5\\xcb1\\xdc\\x11Et\\x82U\\x87ى\\xf6Sz\\xe2Qk\\x05\\xe4l\\x869E\\xa3\\x9d\\x803o@\\x9e\\x00O\\x84:\\xc6\\xc3u\\xa4\\xeaK@\\xab\\x8d\\xa3\\x15x\\u07b5\\xf83\\xba\\xde\\xc1\\xb1v\\x9bpi\\xdfS\\xf0\\x93\\xbd\\x1a\\x92\\xda>I\\x88\\xfa>\\xf2\\xc0k\\xf1W\\xc8MP\\xe36\\xd4\\xf6^\\xac<\\x10Ԑ\\x1c\\xac(8\\xb2>\\xff]}\\xc0*\\xbfY\\xb6\\x1e\\xa6Je\\x80\\x94\\xcc\\xcaHjg\\x9f\\x01\\xaf{\\xf4ܺ4=+\\xa4\\xf5\\xb4\\x96+0\\b\\x98\\xe9Ⓝyz\\x1e\\xa0\\xdd\\xe8\\xd7\\x12\\xc9j\\x90?\\xd0\\u007fg|D\\x8fd\\xe9<\\xdeE$\\x9c\\bd\\xa7\\u07b4V\\x17\\x1f\\xc0\\xe1Ew\\xdd\\x1a\\xda@\\xb95\\x94ܘ^h`Ȣ\\b\\xdb\\xfb\\x92#٬\\xb5ۏnL8\\x14\\x1e\\x9e\\xbe;\\xc4\\xd3=\\xcer`\\x1eB>\\xa4rd.r\\xcbEs\\\"\\x85\\xdb\\x13>t\\x01\\xfb\\xd7g\\xcb\\xfe\\x8b\\xee\\\\\\x9b\\xa5R\\x1ah\\xeb\\xc3Ѥl)/\\xce}k\\xb3\\xa4K\\xac\\xf5WP&\\xa1\\xfb}\\x94\\x8a\\xaaQ\\x83\\x1f\\xf0\\xd1\\x020\\xedM\\\\\\xb7\\x86\\x18V\\x8c\\x10\\x9a\\xaf\\x80\\xc4pd\\xd3\\x19\\v\\xaa\\x98fc\\xbd\\xefQ}\\x13\\x1b\\x0ee\\x01cR+\\x98i\\x03\\xb3y\\xaf\\xaee\\xf3\\xf9Rz\\xd9g\\xef\\xddmY\\x8d\\xc8\\xf6Z6K6\\x1a\\xec4\\x96\\xc6\\xe5\\x1blέ\\x9b\\xe5_%\\xb7\\xe4\\xa3\\xe5t\\xc9\\xd7sֶe\\xa9j\\x80\\b)\\xb0\\x87\\xaf\\xb7 C\\xf8#t.\\x06qꀍ\\vQ\\xab{A\\x8f\\xdc\\x02w\\xfdMf:\\x8e\\x97/@t\\x817jιA{\\xc0\\x88Vd\\x10C \\xf2\\xfd\\x95\\x14\\xd3W´`E\\xba\\x00\\xb9M\\x00\\xb1}\\x82\\xb5\\xab\\xf3[{\\u07bf\\x17\\xa0\\x872{28.\\x0fiF5D(f\\xdet\\x02\\x89\\xebi-\\xa7Z\\x12\\xaa҆\\xfd\\xbf\\xef\\xdf\\xf3[\\xbf\\x90\\xe3\\xf4\\xcb/\\x9a\\xe6\\xce\\x01\\x01\\xa1\\x91&~\\x93\\xa9\\xf3ئ47\\xa0\\xb4\\x9d\\x1e\\xed]\\x9fY\\x8b\\xbe\\x8dUJk;\\x01\\xe5\\xfd\\x19\\xa3\\xb9\\x1c\\xc5l\\x8aи\\xedr\\x18\\xefd\\xbe\\x9f\\x18\\x81\\xf4\\x9b۪`\\x0f\\xd8\\xd5\\x19\\xc0a\\xc1 \\xf7\\xffmf9sW&s\\xcd)\\xaa\\x9b;u\\x02@Nf\\u007fk\\xdb6%\\x9aV\\xb6]b\\x8a\\xdc?\\x92\\x92\\xbf͐{\\x96\\xc9MTsGnR\\xba?\\xa8\\xc1M騲\\xed\\x84!\\x86\\xb0\\xcaڤ\\x0ej\\xa4@%\\x95\\x00刼\\xd0\\x17W!.\\x02\\xaa\\xa1\\x1cȡ/X\\xaf\\x95\\xd3E\\xd0\\x15\\xd9\\xed\\xa17\\xbd\\xb8\\x1aJ\\xd4^\\x85З\\\"\\x06\\x91cwF^\\x12\\xb95\\xf2+4r,Nu)\\xe5V\\xb32OFj\\x1c\\x94\\\"\\x90?\\x98\\x9c\\x96!\\x13A\\x82\\x81\\xc5\\x12\\xda\\xd3,C\\xea\\r/A\\x18\\x14\\xc4\\xee\\x00\\x85\\v\\x91uc\\x84\\x17\\x0e\\x8a\\b\\xc7X\\x00\\x8c\\x03\\xc2\\x0e\\x8b\\f\\xc0\\x90t\\x01\\x05\\xb3\\xcer\\x90K\\x9a\\fy\\xa1X&?C\\x1d7jt\\x19\\\"?\\xe3\\xcde\\xb9\\x9f\\xc6LnD\\x8cZ\\x1a\\x97弉%\\xa4#\\xc1T\\x14\\x9d\\xd3P\\xc1Kf\\x91\\xc59\\xaeƙ\\bm;hq\\x00\\xb6\\xa4\\x89\\xf4\\xb2\\x8a\\xc8\\x18}\\xf0\\xc8-HB\\xa6\\xa6\\x1aDVG\\x97l\\x89ڊ#j\\xca\\x10\\x8aJ\\xa6\\xaa\\x92\\x0e\\xd3TA\\x05e\\xa1`\\xc7D=[(W\\xe3W,nAX\\x93\\x90j\\xa0\\xfd\\x87_5\\xb2Ԭ\\xfd\\xb1\\xa9\\xdeqk4\\xae\\xbc\\xf2f\\xb5\\x83\\x16Ǐ\\x1e\\x16\\x14\\x19q\\xb6\\xba\\xff\\x80\\x97C\\xb9\\xf8\\xd1#\\x8a&\\xd8꾃c\\x8b)Õ\\x8b\\xd3K\\x8b<\\xbb\\xa1\\xb5eǬ\\xbc\\x15\\xdd|\\b\\xe3FC&U\\xb4Յ-\\xad\\xe3H\\xe0ԘÉ\\xf7d&U\\xd3R*\\x9e\\xeap\\x88\\x13\\xe5SrL\\xe3\\x15'\\x93\\xb0\\x15\\xb4\\xb8\\xe5Đ\\xa4I\\x96\\x1a\\xbf\\xfe\\xc0!d\\x0f\\x8fS}K\\x97Țm\\\"k\\x0e1\\xdbW\\x96\\x8b\\x814B\\x91O`\\x04Q\\xe8\\xc1D?\\x1a\\x02\\xed\\xaf\\xbd\\xac]\\xad\\xb6_V[:S\\xbeB\\x89q\\xc9$\\x17S//\\x9fy\\x9bkY\\x84\\a\\xc7<ꌵ\\xea\\xa9zklq|\\x17\\xd6\\xd4[oU5\\xbck|\\xf1SA\\x9c\\x03\\xd55\\x0eƄ\\xd3\\xc8\\xd6 6\\xbd\\x1cD\\x18\\x06\\x19\\\"|u\\x807\\a\\xebQ\\xacދ\\xf0<F՚OѭCE\\xbb\\xe5\\xf1\\xc5\\xf1\\xf1\\xc5\\xcf\\xdb\\xf6\\x8am\\xdf\\a\\x87\\xe3?\\x0f\\xc5\\x0f\\xff\\x1fT~\\x1bc\\xe5\\xb9܍\\xf4\\xe6\\xc8z\\x1c\\xd3\\x11?\\x1f\\xd6\\xe0\\xb3\\x01\\xc6\\x14\\xf9)\\xd0\\xc8|\\n\\xeaз\\xb5\\xb9\\xa9\\xc7\\x15\\x03\\x89۳n\\xb5\\xc0#C\\x99\\x9d\\x1f\\v\\x87\\xad\\x8fӓ\\xbf\\xe0u%]0\\x86]E\\xe7\\xad\\a\\x02\\x01\\x8a\\xa3~\\x1d\\x12\\xd5y\\xa5\\xc9;\\xc0\\xf1\\xfafj/\\x9c\\xf7\\xf2\\xe8\\xa7\\xcf.\\x04:\\xaegm\\xc7C\\x9f\\xf5\\x9cC\\xdd\\ajh\\b\\xdd\\xff\\xec\\x1aSk\\xad=k\\x8f\\x8fK5&\\x97\\x05\\xed\\xba)\\x84\\x82\\n?J\\xe6\\x0e[\\xcf-\\x10\\x18\\x82E\\x8f,\\x00\\f\\b\\x9d\\xe1\\x1b\\xb2\\xcb\\xfe5\\x10{\\x18\\x14\\x1f\\x99`\\x14\\x14:\\xf0a\\xf7\\xe3\\xc7\\xe8\\xfaA\\xaf7X\\xb7\\xa0\\xc7\\x14\\x1c5\\xafܦHIY\\x94y\\xc9\\xd4\\x15|\\x95$\\x92\\xff*V\\xb4\\x19\\x89\\x14\\x18(j\\xa5\\x139/\\tx\\xa0\\x8e%\\x1b\\x9a) \\x01q.\\xaf`Y\\x16\\x89<\\x86y\\x8e\\x17\\x04\\x97\\x17\\x05\\xdeR\\xfc\\xce\\u070f\\x95\\xad'\\x948&\\x8b\\x8f\\x88\\x04^\\x17\\xb0B~U\\x91t\\xde\\xe6x,iq;mz9\\x05\\x0f\\xbb\\x8e\\xa5\\xc7l\\xf2+\\t\\x81O\\n\\xa2F\\xbe\\x11\\x93,B\\x9ax\\x9d\\xe7dAe\\xb44\\xe8\\xa3k(&vσ\\xa41O\\xbb\\x00^\\xbb/\\x94\\xb2&\\xc2\\xda\\x12\\x140\\x9cx\\xb0zsM\\x06\\xeaD\\xb1\\x9d\\x12\\xd4$\\x0e\\x866\\xe84B\\xca\\xe2\\xac\\xdb\\xc8\\u007f\\xf0\\x81bh\\xda1r\\x8b\\xdfQ\\x87L\\xb2\\x0e\\x1a\\xbb\\x85\\x84d\\x9b\\x1a\\x96Gx\\x8e4\\x87\\xe3%Q\\xe0,ĩ\\x1c\\x11t9\\x19\\x8c\\xaf\\x92*jڰ\\xae[\\xf2\\xd0\\xfe\\\\R\\x91Ud9\\xd1\\x11[\\xd1\\fBM\\x1d\\xd2s\\\"\\u007f\\xcd0\\x177$\\xc1\\x15\\x84h\\xa0\\xb2\\xf8s\\xd35\\xc8\\x03\\xb8,\\x96x\\xac\\xf0*\\x12d\\xd2\\xfa\\x11\\xc4\\x11\\xa2\\xc1\\x85\\u007f\\x18q\\x9a\\xa2\\b\\xfa\\xc8\\xfe\\xb2\\xa1+d\\x10+\\x8e\\xe2\\xe6\\fE\\x1bQ\\xd3D,6\\xb1\\xc0_'[\\xda̸ċYɔ\\xd2\\xf2@\\xff-\\x00\\xffٳd\\xb7|9\\x8e\\f\\x12\\xb6\\x1a1\\x91ޣ#$\\xe1\\xf7#\\xbbH{֣\\xfd\\xcdXRƤ\\xf4F \\x1b\\x84\\xec+\\xf5V\\xef-\\x90\\xaf\\xb1\\xfe\\xfb\\x91C\\b2'\\xf22!\\x9a|}d\\xe4\\xe4]\\xfc\\x12\\x16]^\\xe6<A\\x95\\xc8\\xe0\\x10%I\\x14\\xb1\\xf2\\xa4\\xa8s\\x82ēn\\xe2\\x05\\x0eI\\x9cHF\\xc1\\x10\\xc7W$\\x18B\\xa4'\\x12<\\xafɆ(YXT\\x82\\xbe#\\xdd\\xc9\\v\\xf21U\\x908\\x85/\\xabw\\x9d\\xb4\\x1c\\xf2\\xcbH\\x98\\xa2\\xa6g\\xf6\\xcb\\xd7\\x0faA'\\x92\\xb9@\\xc4M\\xce\\x10\\x11!\\xbd6'\\xa9<\\xa7\\x8b\\x12\\\"?H~\\r\\xd6m#\\xd4W&\\xf5\\xd3\\xcfGJD~\\x9e\\\"k8h{\\xf7\\x80\\x17s\\xaf\\xff\\x1aE\\xc2\\xc7\\xd4}\\xbbI3\\xa0C\\xa4\\xb4E\\xbdR\\x06\\xf7\\x01=\\x82\\xf3z``\\x89\\xb3\\xdey\\xb8\\xea\\x1a\\xb2l\\xb89Jo\\x1a\\xb5Z\\xed\\x8c\\xffahʝ\\xaa\\fZ:\\xd9o\\xf0\\xcf\\xe0t\\x01\\xbe\\xf3\\xdf\\xe8\\xe5s\\xd5\\xea\\xc2\\xe0ߍLo*W\\xdd\\x12\\xb9\\xb5\\xba\\x01\\xe3\\xa3\\xdco\\x85\\xb0.\\xee=\\x06\\xba+\\x80~\\xaeP\\x1ch\\u007f\\xf8_\\x16\\xd2\\xdev\\xae\\xc4d\\xe0\\xcd<6#\\xa9\\x12\\xc2~\\x9d\\xbcP\\xa4\\xfe\\x8f\\x9a\\x15\\xa0\\x9e\\x16G^me\\xe0\\xd9\\xf1H\\x11|\\f\\x82g\\x97\\xe8<\\x04\\xe3v\\x99\\x9a\\xb4\\xc3g\\xd1M\\xeb\\xb1`!dIq\\x91\\xed>0p6\\xb1i\\xc5\\xecD\\xbe\\x10W\\x94\\r\\xdb\\xee\\xd3\\x03\\xb5\\x1c\\\\c\\x00KqK\\xbf\\x9e\\xa3\\x05\\tS\\x11\\x18\\x865\\xc8]\\x83\\xe7\\xd3B\\xa8\\xb2R\\xaf\\xaeW\\x97\\x8b\\x9cΫz\\xd9Px\\x03qϺ\\xe1S$k\\xa6\\x95\\xec\\u0558,LA\\x85\\xd1X\\x16\\xf3\\xa2\\x93H8\\\"\\x8f\\xb3c\\xe13=\\x11\\xd5q\\xf7\\xfb~\\xc5\\xc9JU\\xf1e\\xcc?B?G_\\x8ch4\\xbf\\xf8N@\\x04\\x89\\x14\\xfc\\x04)\\xa0\\x99\\x9ck1\\xee\\x93!\\xaa\\x901[\\xfe/\\xb4\\a:\\x1f\\xfdM53\\xce\\xc9\\xdcxM\\xd1\\xe8\\x82zá%y\\xe6\\xc8\\u007f\\xa1}썴3\\xae\\xd7\\xe2\\xf9\\x96\\xe7.\\xf2\\xb5\\xfa\\r\\xd0KcQ3?-\\xf7\\x1a)\\t\\xe1&\\x93\\xb3\\xc1&o\\xf6\\xae\\x92\\x84\\x1b\\xd8\\x1a\\x9a\\x95\\x80K\\xeb'ǡ\\xbagi\\xf0\\xe5\\x94|\\x9f\\x1c\\x10\\xb6@\\xf7\\x9ch\\xb1\\xd7u\\x95h\\xda\\xfbd.&8\\xb69$p\\xd8L\\xbdr\\xf0혶)\\nfT\\xc1\\x9c0dڎ\\x10\\xe3\\x82\\xf98be\\x84('\\xef\\xb3\\xd2\\x1c\\xef\\x182'\\x18\\xdd\\xff\\x11zG\\xef\\x162\\x169!d\\xdcp8>m\\x91\\xa7Dֵ!A\\xe6\\xc5lhe\\xa3+\\x0f\\x95g\\xe7AK\\xee1hv\\xa0\\xbeҦC-%I˲\\x89\\xf3y^\\x92\\x85\\u007f\\xcb\\xe7\\xb1)/Ӣ+6\\x1baS\\x84\\b\\xd6DK\\xaeV\\x05E\\xe2\\xf8h\\xb5*[b\\x8d\\x15v\\x9f\\v\\x8f.\\x89\\xda\\x1c\\x11\\x1d[\\x1e\\xe1\\x00\\x17#\\x87\\x00q\\x8e\\\"\\x80\\xb5(\\x1a\\xa3DqĘ\\x12\\xb3I\\x16\\xd0\\x04\\x91\\x17X\\x05qy\\x89\\xf3\\x00T\\xbe\\xc2j_\\x9e\\xe1H\\x97Sa\\x16\\xdaD^\\x13\\a\\xdeR\\xa0\\x04\\xa5 \\xc2sM\\xf4^B\\x8c5\\xdb\\x1c\\x1f6\\x9d\\xee/\\xb3㱬\\xe9\\xa07\\xe5\\x87\\xc6b\\xaf{|?\\x16\\xb9\\xa4\\x17:~\\x8b\\x87\\b\\xbfB$\\xd3y\\x11\\xc5N\\xa3\\x18\\xe7!\\x01\\x8b\\xb4\\xe0o\\nIO\\x8c\\n\\xde͓d!\\x8d/\\xb6Ѳ(\\x1e\\xb0\\xcd\\xec\\x18\\xf9\\xe9g{\\x87H\\x15\\xf1\\xfe\\xc7_\\x17\\x1bK\\xe6\\x9c\\x11.t\\\\\\xbdZR9\\x8f\\x8b!q^\\xe5\\x9e#?x\\x95\\x88\\x05D\\v:\\x85\\x97\\x8db$O\\xde\\xec\\x91\\xe5\\xdb\\xca\\f\\xbc\\xc7\\\\d\\x1ab,zc\\x91\\x197\\xa8~\\x82\\xbeM\\xc8\\xc5A\\x96\\xcbu#\\xd2/\\xe6\\x06\\xeff\\xaf\\xf6\\x1a\\x91\\xe7Sd\\xee\\x88##\\x82\\x8c\\xa4\\x14ϋE\\x8b\\xf0\\x04־\\xc17[\\xe9](\\xf6\\xbf!b\\xb2\\xea\\xfad\\x10)|\\xb2H\\x96H\\xc7\\xe1$\\xa1\\x98\\xe4\\x15$\\xe6\\x04!\\xd7\\xfd\\xf7\\xd0\\xfb\\xfeJP*\\x0e\\xdeM\\xc7\\xc1\\x1fq\\xbfD\\xda\\b\\xe3\\xa0\\x19\\xd9\\x179\\x05\\xbe\\a\\xadл\\x17\\xa1ɀW\\xd0$2!\\xc0\\b\\xceR0r\\xcaT\\xc1h\\xa0P\\xe5ȃY\\xb9\\x8e\\xfcL\\xa3u\\xe4H\\x1a\\xe8\\x9e\\xeb\\xfb\\x03\\x81;Iߚ\\x8a$\\xf1\\xc0\\x1d\\xfa\\x10\\xe2rw>pg\\x0eqC:\\x19\\x17\\x9a\\xa1\\xbe\\xfd\\x9a\\x1d\\xaf\\xda+\\x19Z,sx\\x906}y\\xf041\\xd0wk\\xbd\\xe1\\xe0Ч\\xec\\x87\\a\\xf2'\\xc8\\xcfoٳg\\v\\xf9\\xf5\\x13dlp\\xdc\\xe97m}\\xc5v\\xb2\\xcf\\\\{aj\\x95\\xfd\\xe7A\\xdaL\\xf1\\xa3\\xe9\\xd8`\\x11\\u007f\\x87\\xfdH\\x01\\t\\x13\\x06 \\xdcH\\x80\\x04\\xdd,:\\x00o\\x85lITr\\x9e\\xe6\\xc8W\\xea\\x94/#|\\xd5\\x12G^\\xeb\\x95\\a\\x94q\\xa9\\xd7\\x10i\\\\9p寅\\x16j\\x1eAL\\x81PN\\x1b\\x9e\\xa3F\\x91\\x16\\xe7\\x11g\\x12\\x99S\\xb3Ƞ\\xb8\\xe1\\xf8\\x1bӱ\\xd8tz4\\xa8\\xefhz:\\x16K\\xbf\\xf1\\xf8\\r\\x97\\x87\\x96\\xf2\\xf7rDlm\\xa7K\\x9a3d\\xecP\\b\\x03*c,c\\x8d[\\u05f6m\\x91\\x03\\x10s]\\xbapm\\xb9\\x8b6\\xdbc\\xb4\\xcd\\x1f\\xfe\\x95V\\xb3\\xecs\\xdfMT\\xba`#\\u07bei\\a<\\x1b\\x90BB\\x03\\x81\\x12\\x1a\\n\\xa3\\x84\\a/\\xd0\\x12\\xf4\\xaa\\x8bt\\xc5\\xce\\x1e\\xa5$\\x14r\\x80N\\xb2u\\xf7\\v\\xfe\\xbc/Q,\\xae\\x97\\x92^\\xe9K\\xc8\\x17k\\uee94\\x1b^\\xf0\\xba\\xbd\\vw\\xa0/K\\u007fd\\xd3F\\xafmH͡=@-\\xa5ƅ\\x87\\x80L%\\xee\\xcf_\\xa4\\xf5˃9<\\x94\\x1a\\xb5\\x9e\\xbe\\xfd\\xc2CbC\\xbe\\x91\\xd9M\\xf2\\x8d\\xaco;&=C=\\xa2ɲ0\\x98q\\xe43\\x1b[\\xf5\\x03\\x98\\xb0W\\xc2\\xf4%\\x1c\\xc5\\xccc\\x039G\\xb0\\xa4\\xc8\\xe1\\xea\\xbe\\f&a\\xb3Y\\x91T\\\"\\xa3Q\\xff\\xa9H\\x0e\\xadQ\\x9b=\\xc4H\\xec\\x88\\x1c'\\xf2d\\xa4\\xb5>\\xe2\\xff\\xe2\\xe7\\xf5\\r\\xe8\\xdf/p?\\xf3\\xad\\xeba~\\xaf;b\\xe6\\xf7\\v^^\\xf5\\xf7\\x17ج]\\xfc\\xb2\\x1f\\xeb\\x8eڽ\\xb8\\x10\\xbf\\xcd\\xeb\\xbd\\x00\\xbd\\x178_ߦ\\x17\\xba\\xbfs\\x91J1g\\x83\\x8b]\\x0e5z\\xf3C\\b\\u07bb\\xf8\\x1d\\x81\\x0e\\x96ټ\\x01s\\xb5\\x1d~\\xd3\\x14.\\x88\\xe5\\x01\\tg\\xfej\\xd6\\t\\x95\\xf2z\\x8esT\\x9f\\x86\\xfa\\rkҠ^\\x9b!\\x84\\x9eK\\x97\\xc8ֆ\\x92o|\\xeb=<5&\\xdcsj\\xa1\\xb3@\\x8f\\xf8U\\x1adJ\\xee\\x00\\xf0\\x93r\\n\\xb6,\\x048\\xf2\\xe8+)^ՙS\\xf7\\x90\\x9b\\xd9\\xe1+\\ap\\x8eF\\xc8\\xea\\x1ai\\xc5\\a\\x87\\x94\\xb7γ)TQV\\b2ec\\xbe1\\xe8\\xb0\\xdd$\\x03Ħ\\x9aa\\xc3}\\x92\\xd6\\x15\\xce\\xfe\\x9dԷQ\\xfa\\x04\\xc43\\xe4b\\x99\\xeb\\x9d\\xe4=\\x1f\\xba\\x87\\xd5\\xfa\\xb93\\x80~[K\\x97\\xdc_w\\x8d\\xe0\\x18u\\x1e}\\xe5\\aK\\r\\nN\\x98t~\\x9b;u\\xcf=\\xa7\\x98wTP\\xef<\\xe1\\x0fy\\xd2\\xcb\\xe9H$\\xde\\xf2p\\x90}\\xba\\xd2\\x02\\xe7M\\x8a\\x90R\\x81\\xf8\\xd7=\\xbb\\x8bɱ\\x0f\\x17\\xed\\xc4D\\xbdS78\\xb4jq\\xd6\\xef>\\xf1u{\\xc2\\xce\\xed\\xdb]Dv\\xf1\\xc3\\xe3\\x0e6ȵ\\tQ\\xb2?D\\x8a\\xbf\\xfe\\xc4\\xefZ0s\\x83\\x98\\xe2\\b\\xc5%\\x85l\\xc4\\xfb#'\\xc98\\xbe9r'\\xcd\\x12\\tL\\a5\\x8ay=\\x1cۍe\\xeb\\\"\\xa0\\xa8*\\r_\\x00\\xea\\xe0B\\xc7\\x01r'z\\x9f\\x98\\x9e\\xc0HŶ\\xc9\\xf5\\x8enݤ\\xecCЇ]\\x8a\\xe96\\x11wn\\xf3\\x13\\x98w6\\xdbu?CCՑYM\\x8c.am\\xd3\\x1d\\x19\\xf7\\xab\\xf0[d\\xf0\\x19'?E\\x91\\x146\\xfe\\xa16\\rz\\xf7\\xfb\\xacM1S\\xb7SO\\xe2[H\\u007f\\x9d\\x05\\x8csTtz\\xf1}\\xeb\\x93\\xc1\\xb0P\\xd3p\\xf0\\x98\\xb8\\x11\\x0fc༲>\\xdf\\xcc\\xe0\\xadu\\xaf\\x0e\\xa3\\xb2\\xb4\\xc1x7x\\xce\\xd5X\\xb4\\r\\xf3\\xb7{\\xae\\x1f~Á\\xfb]\\xf7\\x1b\\xb2X\\x16\\xe5u\\x9b\\x95\\xfea\\xbdW^_\\xa39\\xa16\\xbb\\x1f\\xad\\xf8\\x90\\xb7\\xcc`\\xe4\\x83\\xc3\\xf5\\x1d\\xfc\\xa6zw\\xbf\\xa2wtu\\xef\\xe8\\xb1Ѓ\\xab\\v\\v\\xaf\\xd8\\xe4\\xe6\\x00\\x9fc\\xcd\\xcf9\\x95\\x8d\\xb4\\\"{\\\"\\x97\\xc0(\\xdd\\xde\\xcb\\x16\\x1fJ\\\"/6G ^\\xb5\\x19N,\\x0f\\x0e\\xfd\\xdb\\xfbY\\xe8\\xb3h\\x84\\x86]Π\\xb9Ph\\xc6\\fB\\x9f\\x85\\f\\xf2U\\x9aL\\xbe\\xfb\\xf7\\xa3C\\xb7_\\xf9\\xe8\\xcaU\\xe8\\xff\\xa4y\\xe7\\xedl\\x1c\\x12\\xcf\\u007fRvm\\xe9\\xee+a{\\x17B\\xa7\\xc0n\\xe6\\x18\\x19\\xf9n\\xa4\\xf9\\xe9\\xe33A>\\xf9_\\x95\\xd2o&\\x9d\\x96\\xf73\\xd0'g*F/\\x05=Yh\\x1f\\x82\\x8f\\xa9\\x9eQMCyh\\xe3:O\\x91,z\\xfa\\xf8\\x80\\x95\\x99\\xaf0\\x97!`\\xeb\\xa8\\xc9+\\xe6\\xef\\x13\\xad%n@9\\xcfx\\xd6ǋE\\xa7\\x10\\x97xɉ\\xc7\\x1dQ\\x84-9\\x19\\x19\\xd3\\xc2Jzƛ~$a\\x9a\\t\\xd55\\x112x\\xac$\\xc9\\x18\\xd18\\xac\\xa4d\\x99\\x88P\\\\\\xfa\\xf7\\x98\\xd6~P\\x9f\\xd3\\x18\\x90\\xcb\\x12\\xcdƀ\\xd4q\\xb1\\xba\\xa2\\x16\\xdc\\xcd\\x15{\\xb7{\\xac\\xd6\\xff\\x17\\xafsE*W(Fٸ\\xf1\\x02\\xb5\\xdf\\xc9\\xeb(\\x9a\\xd4\\xdd\\xe0>\\xbf\\x1d\\x87\\aD\\x87?\\xbch{>I\\xee\\x8d\\xe5\\xa3\\xc1͑\\x9e\\xce\\xe7?Iۢ4\\xc3\\xde\\xd1\\xc8˂\\xbc\\xb44m(K\\x16\\xdb$\\x82X<\\x04\\\\[.\\x02\\x87U\\x1e|A\\\\\\xaf\\xd1T\\x1b\\x124\\xba/\\x9d\\xf1\\xbeM\\x05\\xfd\\x04;ѓ*\\xef\\xf18\\xaa;\\x19\\x81\\x97\\xed\\x91\\xdf\\xf3f\\xe6\\xa9\\x1a\\xc7\\xd1\\xe4\\xf8\\xa5\\x9e\\xb3J\\xdf\\xd5cŢ\\xea\\xa6mRm\\xe8\\x06\\x01\\xf5{\\xc3V\\xb5\\x8a\\xa6\\x10q\\x9f\\xb2u\\x06\\xc4?Y\\xd3Ѽ\\x98\\xe0\\x94\\x93\\xbags\\x9ck+\\x9chi\\x972\\xcd\\xe8\\rӓ|\\x89+f\\xde\\xd4\\u007f\\xeb\\xb2ițwӗ\\b\\xcb\\x17d\\x9dSc\\xba\\\"o\\x18\\xa7\\x1eD\\xe7]H\\xef\\xe9Q\\xa1\\x13b\\xc8\\xc0\\xe1u\\x13\\xb5\\xe7B\\xeb\\x12 \\xea\\xdd\\u007f\\xc5*\\u0097\\xb4\\xfc\\x17\\x89C\\xc2\\xd2\\xf3\\a\\x9aX\\xd3p\\xf3\\xc0:\\xfd\\xd4td1\\xac\\xdb\\tK\\xbe~߆ToP\\\"\\xf6*\\x02\\x94ѯ\\x8bMZݓ`\\x8b\\xae>\\x14}\\u007f\\xa8\\x84\\xea\\xdb0)$\\x84\\xa4_I\\xbbu\\x89_\\xcffX\\xa7\\x18\\xcd\\xc7\\xd6)\\x15\\xa3\\xf9װ\\xaa\\x1f\\xf8\\x9f\\xd5KmZ\\xe7\\v\\xea\\xa5\\xc8P۬\\x96\\xceE4S\\xbf\\x1fTp\\x83\\xfe/\\x0f\\xb6\\xc9M\\xfb\\x17fm\\xef\\x05oVA\\x9d\\xc9\\x15\\xbaB\\xa6\\x0e禌X\\xe9*\\xfa2\\xbf\\xbei\\xf5\\x1a\\xb2\\\"\\xd1Q\\xa6\\xc8zL\\x1d\\xcaз\\xfe\\xa6P\\xbd\\xc2\\xf8\\rndg\\xe4\\b\\xe8b{\\xd9\\xda\\xe2\\xa5\\x00\\xbc$\\xde\\xe3\\xc0\\a\\x13\\xfc\\xb1\\xa3\\x01\\xc7e\\xea\\xce\\x1c/\\xfa\\xb0\\x13q\\xc0\\xaf\\xa4\\xf2A\\x0e\\xb8`\\b\\xa4\\xa0~\\xb9'y\\u009f\\xf1_\\xa3ۓ>@y\\a\\x82\\xec\\xd62\\xb1N,S\\xeb\\xac\\xd0,B\\xe7\\x00\\x00\\x05\\xa4\\x0e\\xba\\xdc\\xc92\\xf0\\x80\\xe0\\xcc\\xcb\\xf6\\xbd$\\x92\\x90o\\x12\\xe5\\xce!\\xc8w\\x1f\\xab\\xd5j~\\x1e,\\xe0%4\\xd2\\xdfE\\xbf\\xbf!\\xe0\\x86\\x06\\xe8@\\xech\\x1c\\xc0\\x8b\\xa0\\xcaT\\x83\\x1f\\xaf4\\x12^\\xa9I\\x975H\\x88\\xe7\\xfc\\xf0\\xc6Cw\\x88\\xa6x\\xc7;^\\x83͇\\x04Y\\x12\\xf4\\ue915O\\xad\\xa5\\xf2hFR\\xb0\\xa8\\x8aoCk\\x87\\xe6\\x97\\ue5e4\\xfb\\x97\\xe6\\xdfQK$\\u007f\\xb0\\x83\\x03\\xd1\\xf5?\\x94\\xe8\\u06ddj\\xe9\\xa7\\xedO\\x94\\xaa\\x9f\\xe0xY\\xfa\\x0fIW\\xb9\\x05\\x94\\v\\xfa;\\xa8\\x97K\\xd1fZ\\x835\\xeb\\xe9Q^|\\ro)$\\x93\\x85\\xe4\\xff\\xf3\\xa2\\xea\\xf9\\xd2$\\xdc|\\xf0EՖ\\xa3\\xb9(\\x99.5\\xc7r\\xb4\\xc2܇\\xb8\\xbd\\b\\xf3\\xe6\\xa9\\xf8\\xe8T,\\x80㥇W\\x0e\\x17\\xee\\x98\\xd1m$\\xb6\\xd0;\\x1b\\xe9\\x0f\\xac\\\\\\xeb^\\xaek\\x9e\\xa6\\xbdR\\xcb\\xeb\\xa5x\\xfa}pCKD\\xb6>s\\a\\xda\\xd38\\fw\\xc4.\\xd7\\xe0\\x8e\\x1bu}4\\x9ef\\xb1\\x86k\\x1c\\xef\\x8fG\\x8a\\xe8\\xefB\\\"\\x1a\\xca\\x1a\\x97 N\\xa3LX\\xf3\\xbaԳ\\xa8n\\xaa\\x89<\\xb7c\\xe66IQo\\x8b\\xaa\\xe82U\\x91n\\x9bٱW\\x8d\\xfe\\xf1\\xbbn\\xb8\\xe1]7 C\\x14\\xf1\\xfc\\x10\\x99\\xa1C\\xf3X\\x14\\xcb\\nҥ\\x99\\x19IG\\nڮN\\xfc\\x86\\xecض#\\xffƄz\\xa7\\xbdz\\x03|\\xa1)\\x1aH\\x9e\\xc1xF&\\xdf,\\xcd\\x13\\x99#\\x99$\\xc2\\xd3|d\\xd0\\xceK\\x91\\xab\\xd7s\\x14\\x89M\\x98\\x86\\x8fmd\\x0e\\xdcMbx\\x81F\\xd47\\xc6\\xf0\\xf6\\xa6\\x9c\\x14\\xf2\\\\\\x18(\\x8f\\xfbO\\xbb\\xa2L\\x1e\\ra\\xb7\\\\\\xe1\\x1c\\xf5]\\xb8\\xbfw\\x1eX\\xbc\\x01N\\xa8\\x1c\\x958\\x16\\x8f\\x1b}6\\x97;3PPN\\xf5\\xfd\\xa4\\xbeN\\xf3ʎo\\x82g\\xeb\\xe6\\xdd&\\v\\x1c\\xc1\\xeb\\x18fD\\x85\\xc5.K\\xe5\\xe0\\x8c\\x9c\\x8f\\x8c \\xf9\\xa8\\xa6\\x1d%\\x8c\\x9e\\xb8\\x0f\\x18P\\xb2\\ta\\xd5^\\xdd\\xfd*ڦ\\xcbGt\\xfd\\x88\\xfcWa\\x06\\x95\\xc5P\\xb011\\x01\\xbe\\fE\\x1a\\xfe\\x94E8\\xa0I1j\\x88\\xf3\\x13}\\xb4\\xa6{\\xb9\\x15\\xea\\xe8\\xa7\\xd7=\\xfa\\xa7\\x8a\\xae`G\\xa4\\x89\\xd1\\xed\\xdd͘H(\\xe59B(\\xc5Xs7C\\x918\\xfb\\xf2_ł<\\xca2\\xd6.\\xbe,\\x9e\\xcea]ǹt\\xfce\\x8b~\\x18M(\\x8e\\xc3\\x02o\\xb1\\x81\\xec\\x15\\x90\\x9b3\\x04\\x94:\\xa0X`ޏ\\xcd\\x06\\x05\\x8c\\xa3\\xe28\\x04\\xd3\\xe5ҥ\\x85\\xeajO\\x81PJ\\xaf\\x82\\x8e\\xa0\\x17\\x9b\\x98+\\xa5\\xdbՅ\\\\\\x1fn+\\a\\x99^\\xd6\\xc5\\x1b\\x03\\xa6>X\\xcf\\x00'y\\x1fವ\\xc0C;\\xe1\\x95=\\xc2\\x16\\xd6MT!L\\x15\\xc4x7[u\\xc9]\\x1f\\xe2\\x11\\x80\\xa2\\x11a'0\\xf3\\x12zS,\\xdf\\u05cf5\\xc6\\x16\\x84\\x1ag\\xfd\\x00\\xe3(\\x84\\x1c\\xdfDC\\xfa\\xa9@\\x87\\xfaQ\\x8a\\xdbh\\xac\\xf1\\x13\\x10\\x8e\\x8c\\xec^\\xa81\\x1e\\xcff\\xc7o\\xf4#\\x8c\\xaf\\x1f\\x1e\\x9bE\\x88\\xe1\\x16\\x90\\xef\\x12\\xf1\\xb2\\xeb'\\xcb\\xec\\xb0\\x1cr\\xf1ٱ\\xa0\\x8f1\\xfaS2\\x97\\xb2~Nh\\xa02,\\x1e\\x8b\\x1a\\xfa\\x01P\\x035\\xa9\\x80~\\xfcҗ\\xe7E\\xeb\\xa3\\xe2i:^ɸ>-n\\x13\\xd1l\\xf1tb\\xf4\\xeb\\xd7~ \\xff\\xf2K-r~\\x1aF<\\f\\xe6\\xd3\\xe2G-$T\\xb2\\x97V?ym?.\\ah[\\x06lˠ\\x01 \\xb4M\\\\\\xf70wI\\xe8\\xfb->\\xf8\\xe8ʄ0dt\\xbfo=\\xa2j4E\\x82\\xf8\\x88u\\x9aò\\xaa\\xa1\\xdbLs\\xcb\\xca\\x16\\xb3j\\xa2\\xc6\\xc4ʣfR<m=\\\"R\\x05\\x84\\xa6>b\\xa1!Q#k\\xf0.r\\x1d\\xee2iLS@[\\xa3\\x14!\\xa0I3\\xfd\\xfa\\x81q\\xd4Et\\x8e\\xa6@\\xad\\xb0\\xb8\\xb8X\\xc5C\\xd4y\\xaa\\xe7\\x1c\\xd8\\x03\\x03\\xb9\\xe5:E\\xb9JI+\\x85%I\\\"\\xdc%\\xb74ٝ\\xbe}\\x9a<j\\xca\\xfc\\xca\\xedݿ\\xb8Y\\xb39\\x17}\\x97\\xdds\\xdd[&\\x97(\\x04\\xc6ҟ^GN\\xafRȷD\\xf2-\\xf2\\xa5(|\\x89|\\xa7\\x9a%_r9[\\xbbYgw\\xbc\\xe2\\xfe\\xc9%\\x8a\\x80\\xb1\\xd4\\xef7\\xc8oe\\x11.q\\x035\\xa0\\x18\\xb04\\x88\\x8c\\xab\\xf8\\xfb\\x04\\x85\\t\\xac\\x94ʕ0\\xcc\\xfa\\xb0a\\xc8\\x15\\x99\\xcf\\\\_3\\xe4\\x9d\\n\\u007fݵ\\x13\\x99a\\xa3Z\\x9e\\xe8\\x9e3\\xb5>M\\xf8W\\xcdx\\x85\\xa2\\x10\\xa6Yޝ\\xf9mY\\xe3\\x1d^YKk\\xc3\\xd9YMӏ\\x81\\xab\\r]\\xa3ָ\\a\\xd1o\\x92\\xfa\\xccnR\\x1f\\x16\\xf6\\x02\\xcbS\\xa5\\xe7PD#\\xcd1\\xe08C0i\\xa8R;\\x8f\\x8a\\xbc\\\\\\x15d\\xe1\\xc0\\x8d\\xbf.\\t\\xf2NA\\x90\\x84\\xbf~\\xf9\\xc4\\xc4\\xf4Pқ\\xec~Ǵ\\xef\\xb3\\xfau\\xbb\\xf9\\xa4\\x14\\x15b\\x1c7:\\u007f-\\x8e\\ny\\x8e?1\\x97\\xe0\\xf9\\xd9\\xcah\\xe2=\\x98\\xf5\\xd3_\\xa2\\xb7\\xa0U\\x8a\\xb7\\x049\\xdaX\\xcc/[/+\\xc5u\\xe0\\\\4\\xb5\\b\\x05tĥ8\\v?DSǨ\\xf7\\xe4\\xb1c\\xd4+\\xf2\\xd8J\\x80F\\xffpu\\xa16z)+\\xed~\\x95Ŝ\\xfa\\xf7\\xf8\\xdfX\\xa1\\xda\\x02\\x14\\xc1\\xcaBu\\xb4)^ʊ\\x9f\\x82\\x9c\\x8d\\x83\\xbch\\x9a\\xe6\\xe8=Գ\\xf1\\x04\\x016\\x85 \\xb0\\x06t\\xff=\\xa1*P\\x80\\xf7B\\xa2\\x06\\x8b\\x99\\xeb\\xd1\\xce\\x16\\x99\\xd5\\xd3\\xd7M\\x93mk\\xe7'6f\\xe0\\xdeBa:\\xbe\\x86\\xd7\\x15\\x13~\\x16L<\\xbbn\\xcf\\u007f\\x1c\\xea\\xfeU\\xd7\\xfd*\\xec?\\x9e\\xbf}\\xd7\\r\\xfbץ\\xe6\\xfe\\x06\\xd5\\xea?\\xcc\\x0f\\xa8\\xfa\\x15ɗ1\\x83\\xf5\\x18\\xa2\\x9b\\xa77JO\\x12]/\\xc1w#\\xde\\v\\rd(\\x18E\\xb2\\x9a\\xce\\r\\x88Q\\xdf\\xf5\\x9d\\bX$\\xe0\\x1fK\\xae(N\\xed\\xb3\\xedր\\a\\xc9wz.\\x02\\xef\\xa1\\xe7\\x1f\\xa6\\x89\\xc3s\\x03\\xb8\\xad\\xc34\\xde\\f\\xb4\\x0e[\\xfa\\xa8\\xeat\\xc5.\\xb2m\\x0f\\xfe\\xc1\\x13\\xeb\\x8db\\x10\\xc5\\f^8AgW\\xea\\x95\\\"w\\x97F\\x16\\x87\\x85\\xe5\\x05H\\x10O#\\x92\\xd1\\xef&\\xcc\\xee\\x89N\\xe7\\b\\xedէ;?\\xa4\\xfbڻ\\x96w\\xfd\\xc8pn3\\\\\\x88\\xb1\\x82\\x0f\\xb9\\x93\\xdcＳ\\xd3}\\x92\\u009b\\xfcY\\xa7\\xf3\\x9c\\u007f\\x001ʿ\\xa0\\xd8\\x02g!:4\\xd00\\x17!\\x1d%\\rJ\\xa6\\xc1\\xc9e\\x96BJbh,\\xcd,g!\\x10ڳ(\\x06\\xa1p\\xf5\\xb9\\xd6\\x12\\xc7݆U\\xc2P\\x9ac\\x85\\xaa\\xba\\xbb8\\xe1%ţ\\xf7\\xab\\x86k\\x8b\\xd7⤹U2\\xf8\\xa8l\\xb42[ˮ1~\\xf8P܍\\v\\x88\\xe74-\\xd1T\\xf7nG\\xc0\\xde\\vXDNlH\\xc8&3\\v\\xdbߢd͟\\x9aq\\xb9\\\"\\xf0R\\xdaPJ\\x8eX\\xac\\x0f߸\\xbfIV\\x91\\xbc#G=mH\\xac\\xa4\\xd6\\xc9U\\x10\\u05f8e\\xc0\\xafb@J\\x95\\xbc\\xbe]\\x8b\\x19u6\\xaaH\\xcel\\x10P\\xdd\\xe2/h\\xb2\\xf8\\\"\\xd9N\\xbd\\xad\\x0e\\xe5\\x9bhG\\xf6\\xad\\x93N\\xc7~\\x15\\x12Ǐ\\x93M\\xf3C\\xa4lP\\x19\\\"G\\x82\\x1c\\xbd\\xb1H52I\\xf8\\x89\\xf9\\xc8\\x02\\x91\\xb8ۃX&L\\xe1ߨ\\xc7\\xdd(u6\\xa6\\xf9\\r\\xdc%\\x0e\\x18\\x0e\\x11\\xd7+|\\xab\\x88w\\xa0\\\"\\xf6\\xc8\\xc8h\\x91\\r\\x0f9\\xe1\\x9e\\xf4\\x97eB\\xc4j+\\xdfh)\\x96\\xf2\\xfc\\x97L\\xb7\\x85\\x14SF\\xdfң\\xddϩoS\\xbf\\xac\\xdd\\xe4ާv\\x9c\\a>\\xa4=\\xf2)\\xf5\\x06g\\xdf\\x1d\\xeeM\\x01\\x88\\x00y\\t\\xb9\\x1c\\xfa@\\xf7s\\x1c\\x99\\xc0\\xae\\xc1\\xa3]\\xb2\\x8e\\xad\\xd9N\\xe7|\\xe4̙\\xd5Ng\\xf5\\xcc\\xc3\\xf48\\x88\\xef>\\xc7\\xedD\\xbfMV\\xebI\\x189\\x90\\r\\nzx\\x9ao\\xcc\\xd34\\xdf\\t\\x0f\\x92\\x18\\x8a\\xa0ܦ \\x1f\\xe0]\\xc1-ȒU\\x19>\\xf9\\xfd\\x93\\xc3\\x15K\\x92\\xedʎ=\\x99\\tϛ\\xc8\\xec\\xd9Q\\xe9\\xfe\\xdcM\\xa5\\xf2\\xa9}\\xb2\\xbc?YH%QD\\xb6J\\xdbv$/\\xb9$\\xb9c[ɒEk4]YX\\xa8\\xa4G-\\xf1\\xb6a/\\xe9\\u07b6\\x1d\\xe3\\xed\\xb7\\xb9\\xa9\\x04\\x19\\xc3\\xff~\\xfe/\\b\\x8f\\xf8;\\x90\\xaf\\x82j\\xf0%\\x1f\\xd2\\b\\x06-\\xf3\\xa7l27\\x1b\\xeaF\\x89\\xbe]\\x92\\nK\\x19N\\xe4\\x0fd\\x9b\\xc9ܾr\\xdd\\xce\\x18\\xd1r|\\xacr \\x1f\\x9fN\\x1eQl<\\xf2\\x9f\\xfa\\xee舕Y*\\xa4\\xbc\\xaa\\x8b-e~dKjh~x\\v/q\\x89\\x99\\x94\\x95ߞ\\xd6\\x18O\\xd6ì\\xcb\\xd3lQ\\xc0\\x91\\x1d\\x04\\x1d*D@P\\xfa\\x9eE\\xfe\\x98\\\\\\x97ն\\x97\\x81&\\xd0\\xd3K\\x17\\xf2W\\xf6\\xf7\\xe7V(\\xcb\\xf8o\\xbe\\x17\\xdd\\x02\\xb3\\xc7-TG\\x18$\\xe2\\xaf\\xd3\\xf2\\xb7\\xd3\\xed\\xd1Mҿt`\\xb5`(\\xba\\xc6B\\x95J\\xe5\\xe4G\\xceG(@\\\"r\\xe8\\x85z(!\\f\\xfb\\v2\\xf5\\x04<\\xf0\\u05c9T@$\\x01\\xaf\\x91\\x8f\\xf3\\x1bl\\x144Q3\\x84\\rP4\\x17\\xcc\\x14\\xea9\\xb4ֆ\\xca\\x02\\xff\\xb7Pݭ;\\x9e\\xb2gjxB\\x12\\xad\\xb8\\xa3\\xb7\\xdbm\\x14Y\\xa82\\x84\\x85ꂣ\\xa3\\xea\\x9c\\x1b\\x9f\\xdc*\\x8b\\x13ù\\xcc\\xf8\\xa8\\xaa;A\\f\\xff0\\xe9\\xe7\\f\\xc5\\x12\\x807\\f\\xa9\\x00)\\xc8,%O\\xb0\\xbesd\\xbas\\xad\\x19\\xde\\x19!o\\x1e=\\xef\\x1a\\xd6MI>f\\xca\\xf8\\xecY,\\x9b1>y\\x93e\\xb8\\xefީT\\x95\\x9d\\xc9\\x13w$\\xb5z\\xe2zW@1\\xael\\xde\\xf0.+!\\xec\\xd9#$\\xacw\\xdd`\\x96\\xf9\\xf8\\x9b\\xa3\\xd17\\xff\\xca%\\xb6\\xe0\\xdd\\xd0\\xfd\\xb2\\u07bc#9\\x18\\xf7\\x03\\xfa\\x84m\\x14\\xf3v]<w\\x18\\xc6\\\"\\x90A\\xc4\\v \\xdeV\\x82\\xd1A#JX\\xb29;\\x04\\xeaEu\\x19\\xc8\\x0e\\xa3\\xdc>Yc\\xca\\x11\\x94\\xa3\\xe9\\xaa\\u0090_\\xb4\\xe0\\xdb!d\\xdb\\xe7\\x96\\x19\\x00\\xd8\\xf2\\xc5\\xf2\\xa5\\x05\\xbe\\xe8\\xeb3\\x1e\\x85}\\xd0wS\\xbb\\xfcٍ\\x9e\\xe7\\xcf\\xd1u\\xf8\\xa1^\\xccn\\x1f\\xefC\\xa5\\x9aK\\xe6\\x83\\x1a\\xa1*Z\\xa7U\\aR\\x1c\\f\\x17P\\xd7\\xf2\\x0e]\\xfb|\\x0e(\\x04\\xeaA\\xbdO\\xd1\\xc7\\x14\\xe5\\x99\\xc3HI)\\x0fP\\xa9\\xe3ϐ\\x88>\\xfd\\adݣ\\x02\\xd1MԵ`\\x01\\x86\\xce\\x10aS\\x9fA\\xd6\\x11E\\xf97f\\xb0\\xe4\\xd1gP\\xae\\v\\x06\\x8f*\\xc5;\\xee^M\\xfd\\x06~\\xb7\\xdd^\\xf1s9\\xf8\\xb1\\xf07\\x92\\x9e\\xb84\\xf2\\x12\\xc8\\\\Pi1\\x196\\x1b\\xd0\\f\\xa0Td\\xa9 /\\x8b\\xec\\xc5\\x1eU\\x0e@\\x1bC\\x96\\xce\\x16\\xb3ڭ\\xdf׃\\x94\\xba\\x9f\\xc7\\xca\\x1e\\xcd^\\xae\\xce^\\xe7&\\xe4\\x82{\\x1d\\x96\\xa2\\xb7\\xa7=\\xb5\\xa6&\\x87\\xed\\xe1\\xa4ZC\\x8f\\xd3\\xf7\\xb7\\xb5\\\\~5\\xfd\\xdb\\xca\\xdegɵ\\x1c۱\\xdcC\\xeb\\xf6\\xa5\\xee,\\x9d\\xeb\\x0fb\\xf1Z[\\xdb2\\xac&\\x84B9!$\\x90`,sqE\\xf1<%G\\x87O\\x8e\\xfe\\xa3\\x87Q\\x13\\x12\\x19\\xb0O\\x87\\xceu?\\xbe\\x1ax\\x93y\\xf0\\xe3/\\xfdϴ\\xb0T\\xa0\\x01}́5\\x8b\\xb2\\x8d\\xf5MK\\x81\\x91h\\x14\\x19\\xc3\\xfd_h\\xefʐj\\xda\\x14\\xa9\\x8b4\\x05\\xb0\\x18BǶ\\xa9\\x0e\\xad]\\xb4\\xbd9Ő\\xbe\\vc\\x81=\\x86r˝\\xc1\\xf3\\uf246҉DB\\xf9\\x18\\x86@\\xdf5\\x90\\x8f\\x81\\xe6\\x9a\\xcd\\xf2\\xf1\\x18.ͷD\\xa08\\x83\\x89\\x15>CV\\x88)\\xc9nN\\xe6Q\\xf77]\\xe4\\xcc\\xed:x\\xc3@\\xfa\\x84_Yj'\\x12\\xf3\\xd74\\x0f\\x96%ͩ\\x96\\x9f\\x99\\xbaq\\x83\\xdez\\xee\\xc5\\xe9\\xad\\x13\\xc0qgi\\x04\\x16\\xf8\\x9e\\xbd\\x90\\xe2\\xfa\\xa3'\\x8e\\x8aHT\\x84\\xb1\\xfbư\\x86\\xc4\\x17\\xe1Q\\xb9\\xb24%i\\\"\\xe78\\xbc\\xa1NQ\\f\\x9b\\x9f\\x10\\xba\\xf7'\\xe8\\x1b\\f\\xbd\\x14\\x1c\\xe8`me6>\\xb0J\\xc1\\x19X\\xf8\\xa8\\x11\\x9b\\xa2zA\\xe5!\\xb4\\xb1Ie-\\xf4Y\\xab\\x94\\x95dC\\xe6\\x1c\\x15\\xeb\\nW\\x10\\x12\\x192ly;\\xeep\\xa4Tʒ\\xb5}\\xae\\x90+^G\\x98D\\xc5\\x18VQm\\xac0\\x87:K\\xb3\\xd5\\xdd'\\xb7\\x144CR\\xf1[\\x8dh\\xd4x\\xabj\\x18Za\\xcb\\xc9\\xddչ텺\\xac\\xb8m\\x81\\x17M\\x99\\x90\\xf0\\xa2&\\xd7\\xfd\\xd8\\xc5\\xfb\\xd0Wh\\x9c\\xf00ȃ.\\xcd\\a\\xeb\\x11\\xd1\\xde\\x03w>\\x90\\xfbZ\\xe4\\x03\\x11\\x15\\xa4\\xeb\\xdc\\xf5\\xab\\x17\\x11\\xaa\\xefĄ\\xc9\\u007f\\xf3\\xfe\\xca\\xc1\\xf4H\\xbe3a\\xa8\\xd3C\\xe9\\xe2\\xd6\\x1d\\x9c)_\\x9f\\x96\\x85\\xe1>D\\u070f\\x0e.\\xeeD-ޖ\\x16\\xb6\\xf1\\xdeU۵#\\xd7\\bλ\\xae\\xfe\\xb3\\xc9\\xfb\\x0e\\xc8\\n_:}(\\xdb}\\xa4/+\\xfeQ\\xe2\\xa9\\x01\\xfa\\b\\b\\xe3-\\x9a\\x05\\xf8r\\xa6K\\n\\xa9\\x8d@$諏BJ\\xf5z\\xa0P\\x8f\\xd7\\xc9\\xca[o8\\x84J\\xe6\\xc9\\xc7_i\\xd8\\xc2\\x13\\xa7f\\xf2:\\xcd\\xeb\\x10\\x81|\\xf3T\\xa5\\xb4\\xe6+\\x96\\x06N;\\x84H\\x12^o%\\xe7\\x03$\\xb1\\x1dj_\\xe0vvJ'\\x19|/\\x97\\xeb\\xf4\\xbf\\x04\\xbb`\\x8d\\x16\\xe9\\x1a=J\\xad{г-\\x17\\xd8\\xd8r/G;f^\\x95}<\\x99\\xe1\\xa1ngh\\x18\\x1f\\xe4\\x1dmQ\\xa2xgҢLFɗ\\xe8\\\"\\xc3%\\xc7ƒhT7m\\xbb\\xba@\\xaeY\\x8e\\xa4˩>N\\x04<\\x13\\x95\\xc83\\xb3\\xc0\\xf9y\\x03AN\\x00\\x17\\xe9{\\xcd\\xc4A\\v\\x11\\xe7\\t\\xdb\\xfcmǓ\\x9f\\x96=\\xa7:\\xdf\\x16m\\\"\\xaf\\x9c\\x93\\x14[l\\xcf߁\\x9f\\xc2>\\x86\\xcf]\\xfa孧DI\\x90\\xf1S\\xad\\xcb\\xf5\\xbb\\xd0*YC\\xf9\\xf3\\xffI\\x9e\\xf3f\\xfa\\xeeZ\\f\\x81\\xa6\\xd7\\xdb\\xe1\\x11Ԡ\\xbc\\b\\xdd\\xf4q6\\xe0\\xd6@\\x1f\\xec\\x16\\xe3u\\xf4zE7\\x1fb\\xdaQ:\\x98\\xce<d\\xea\\xcaKg5\\x15\\xdf!\\x11\\xb1L\\xba\\x03\\xab\\xda\\xec)\\xa6 ;w\\xeeMj<\\xd7O͑\\x8b\\xab/s\\x957j\\xa0\\x82\\x8ai\\xda\\x1b\\x15w\\x8d\\xaaҺ\\xaf\\xcb\\xd1\\xfe\\xf8\\xcf\\xf3_@_\\xa1؈\\r\\x96?\\x8d\\xa5\\x87\\aQ\\xae\\xe0\\xa3N\\x95\\x03\\xd0=\\u009e7+p1(\\xaa\\x8f\\x80@\\x87\\xae\\xa9$\\x132\\x96\\xf5щ\\x9d6\\x85βwN\\x8c\\xea\\xa4$\\x91\\xac\\f\\x8d\\x8f&\\x93\\xa3\\xe3#\\xa6g\\xbb\\x16\\xc7\\t.=@\\xa2\\x84v\\xe0\\xe2\\xc8\\xcc\\xc4\\xc4\\xfe\\xdaVU\\x96խ\\xb5\\xfd\\x13\\x133#E,h`\\xc7\\xd7J\\x86$\\\"3:\\xea\\xc2\\xderm/\\xa2\\x9c\\xff!\\xe9\\xd3?\\xa3\\xfc\\x02 \\xfb4i\\xbc\\xca\\x11\\xb2&S/\\xb7,\\x8a\\ay\\x14p\\x02b\\x1faa\\xa2\\xe0\\x81\\x10pI\\xa8_\\x13% \\xf0\\xa2\\\"\\x01n\\x16MUO&y\\x01C\\xab\\xb89rE\\xc2=\\x01\\x9f\\xb6\\x12'*M\\x96\\xab\\x85\\xf4\\xc99\\x90o\\xc8(\\xfa\\xfbl\\xab\\x95\\x1d\\xbe|\\xf4\\xdeQ-^-\\xa8\\xbd\\xb3˻\\x1f\\xc4%\\x11\\x04\\xd4I\\x1e\\xc2\\xc7F0Nh\\x8f\\xe6\\xa2\\x0e\\xf97\\xc7v\\x88.\\xc4\\xffB\\xca5N,\\xc9\\t\\x8cGȍ\\x02\\xaf\\xc1oS\\x9dd\\a@7\\xe6\\xd5S\\xa7\\x90\\x10\\x8f\\x06\\xc7j\\xf7\\x87:JD\\x15\\xb5\\xf8H,\\x86t\\xa3\\xa8\\xde_\\x920\\x96\\xba\\x1f\\xa0\\xbb\\xc3t\\x81\\xdeA\\x8a\\x157\\x8e\\xfe{\\xd1\\xd0Q,\\xa6\\x048\\xf3\\f\\xc3\\xe78\\xe0K\\xfa~\\x19\\x142o\\x9e\\b\\xb8\\xf9\\x82I\\xf19\\xd8P\\x04\\x84E\\xea5F\\xa7\\x9d\\x17\\xcb\\nDn\\\\\\x12\\x1bKA\\xc2\\x10\\xeer\\x8c\\xdd\\xc4dv\\xa8\\\"K\\x9c\\x84U\\xdc\\xfd\\xb1(K\\xa2\\x00\\x8d\\x95+C\\xd9Ʉ\\xcbn\\xb0\\x87\\xe3\\\"\\xbb\\x03EE\\bOB\\x12\\xbb\\xfe'\\xbcͫ\\xa3q9;\\x99\\xf1\\x90\\x03\\x81u\\x1c\\x8f\\x05U\\xd49/3\\x99\\x95\\xe3\\xa3j\\xef\\x06ó\\xfc;$A\\x17l\\xe4\\xdf\\x10\\xe0\\xd7 \\x8a\\x05;\\x04\\xda\\xfd\\x88/\\xf7`\\x96'\\xaf\\xec7\\xc2K\\x94\\xe6Xs1\\xcdA\\x0e\\xa9\\xa6\\x9a\\x88\\xa5\\xec]\\x92\\f\\xbc\\xef^͊\\xea\\x0f\\xa0Eٔ-\\xed\\u07bd\\xa2*I{\\xd0\\x034\\xd7\\xef\\xbf\\b\\xf2O\\xb1,\\x14%di\\u007f\\xa7\\xdbH\\x96\\xb1.\\xff\\x9df!\\\\\\x80\\x88\\xbd\\x9f\\xca\\xc2X\\bS\\xb4\\x04>ρ\\u009ct-\\v\\x01\\x06\\xa3\\xc2<\\x85Ρ\\x9bzmnv\\tQ\\xbb\\x03\\xf5}\\xad\\xd0~g\\xf9\\u007f\\x12\\x1e\\xb9H'>%w\\x89\\xa7S\\xe5\\xf1\\xacW\\xc6X̎\\xa3D\\xba*\\xa7=\\xae\\x9c\\xe2\\xa4\\x02\\xba?\\x9d@\\xe3Y\\x11㲗\\x1d/\\xa7\\xc8\\xc2Υʜ\\x97\\x96\\xabh\\xad\\x9c\\xea>\\x90\\x1d\\xa77`\\xacT\\x93Ӟ\\x13MV\\x15\\x8cS\\xe5x\\xba\\xfb4=\\xa4\\xbf7\\x9eE\\xafM\\x97\\xd2\\xf1rJ\\x92\\xc9}Q\\xc7\\xf3e\\x152`Ρ\\x15ҧ\\x8dȁȕT*\\x06\\x10\\x9d\\x9e|\\x92\\xef\\x1d\\xd1\\x01\\xb3\\x83[\\xe2\\x81R\\x8e\\xa0\\x12Γ^\\a\\xf3\\x00\\xde\\xca\\xf9\\x89\\xd4 L7\\x91\\xf7CvI\\xb3\\xb2\\xfcV\\x84>\\x19\\xf5\\x18y8\\x1faT\\u008b\\xea1)\\x9e\\xce9+\\x85-z\\xac\\xfb\\x971\\x14\\x89\\x89Is\\xc5Ln\\xe1\\fI\\x930_0in-t\\f\\xb83ų!\\xb4R2~\\x88\\xf3\\xb1\\xdaP\\xb4ه\\xdakF\\x87j\\xb1<\\xce\\xccY\\xe9\\xa8Z\\xceͥ\\xe6\\xe6\\f\\xc7\\xf9\\b\\xe2xI\\xb0\\xf2\\xa2\\xacc\\xf2\\x03\\x99\\xa8\\xed)\\x82\\xc4s\\x88\\xf2\\xf4\\f_\\rd\\xb3\\xc3\\x1bP\\xad\\xc2 ̽\\xa3\\xb0dV\\x82\\xe3\\x1e\\xf8=K\\x8c\\xe0gh\\x98C\\xe7X\\x9a\\bZ=\\x96\\x88\\x80n\\xcfG|\\a\\xb6\\x88LA\\xf7d\\u007f\\x87\\xdaa\\x98*\\x06CŶ\\x0f\\x04\\xe8T\\xbd{\\xe5jD<\\xdf=\\xff\\x19\\xee\\xcd\\xe8KD\\xaa\\xbe>rO\\xe4\\x81\\xc8{\\t\\xfd#\\xd4\\f\\xfb\\x9a\\v\\n{\\xdcS`@\\xf2E\\xaa\\xc7\\x00\\x1d\\ag\\\"\\x911d\\x12\\x96\\u061d\\x15\\x8a\\xcbZ\\x86@}\\xba\\x81\\xd0Z\\xae\\x19 \\xad\\xfa1\\xa4T/_*\\x83\\xbe\\x86P\\x87,\\x0f\\x90\\x82e\\x11ֆ\\x19\\x1aT\\t\\xd2u\\x99\\x8cn)+x\\t\\xb8\\xf8N]䊢\\xc6Y\\x9czL\\xe2ŝ\\n\\x9e\\x13\\xb0tTE\\x18\\xe9\\u0084\\x84\\xb7\\x93k\\x9a\\xc8紡\\x12\\xfa\\xbe!\\x90\\xa9nr\\x82\\x11\\x1b1\\bK\\xf7s\\x99\\xf7\\x8c\\x918\\x99\\xe6&ǉ\\xa2.\\x0f+j4'J\\xba\\x85e\\xcbq\\xec\\xd7;f\\xdc4x\\xcc\\xdb\\x18w߀\\rU&\\xeb\\n\\xe1\\x00tBs\\xb0\\x88\\xf8!\\x14\\x97\\x10\\xaf$^/aœr\\x1fzUfL@\\x9c\\xcc\\xeb\\xa2\\xc1\\xc1\\xddH\\xf8\\xfbi\\xdb\\x1d\\xdeP\\x9f\\xc1\\xba.`~\\xc2ģ\\xbf>\\xe3\\xe8\\x02?\\x8fE[\\x94\\x05\\xcf\\xc8\\xee\\x86*\\xcaR\\\\\\xc2\\xf3\\xa2\\x18u\\xa6\\xb3\\xba\\x80\\x86&\\xb0\\xa4c\\xc2\\\\\\\"$\\xe6\\x05Ō\\xc7S\\x8d\\xac\\x1eu\\xaf\\x03\\xf0C\\\"\\x99k<\\xe29\\xd2\\x1cQ0ǒM\\x8c\\xe3b\\x9e\\xd3\\xe4\\x89\\xe9\\xe3\\xf2\\x90)H\\x12Y0xDo\\rr\\xd5\\xf9\\xb2֨\\xaf\\xed[\\fi\\x0e\\x06\\xd5\\xc0t&\\\"Ƴ\\x90դ/\\x14\\xe3m\\xa8\\xd2S\\fCrq2\\x9a|M0\\x19Z\\xe9x\\r\\xe7\\xddg\\x8da\\xf9\\x96\\xee\\xbdT\\a\\xfcڣ\\xe5\\xdf\\xfa\\xe0\\xd1+?NO@\\xbf\\xb2L\\xa8\\x88\\xaf\\r&\\f\\a\\xa15\\xf7D\\x13\\xa6\\xfa@\\xa0\\x06\\xee\\x04\\xaa\\xe1>\\x16\\x04\\xd8:/\\x89ܸ\\x89\\xcd\\xd7_B\\x80\\x96\\\\$\\x93)\\xe1\\xbcY*\\xd3p\\xc6\\x1c\\xc6\\x14\\x89\\x80g\\xd4j\\xfa\\xb1\\xb8\\x89m`\\xbb\\xafϵ\\xc2yN9Pl\\x8c$\\xe7\\n\\xc3\\x15\\x9a봔^M\\x97\\xe4\\xd1\\xf9\\x98A\\xe4\\xa9\\x11\\\"\\xba\\x91E\\x16\\x90K\\xba\\xdf\\x150ު\\x93_أ!B\\xdc\\xc5m`*\\xc3|8]9٥\\xc6\\xe5\\xd7\\xe6\\xa7y~:\\x9b\\xa4\\x99P\\xc1\\x88\\xb96?\\x9a1\\x1c\\x8es\\xb4\\xbb\\xe5\\xf1T\\xce\\xf7BaS\\xb5#juQVn\\x16\\xf1IQ\\x16{\\x18\\x1dk\\x14\\xe7v\\x10\\xa3\\x03\\x14\\x1b\\x01\\xd6P?\\xf9\\x1a`\\x10\\xb5\\x00\\xa4㜚Rϱ\\xdd\\xeb%\\xe92^=c\\xb8rN\\xee\\xa8\\xfc_\\xf4\\xaf\\x90ݏ$\\xe9\\x18/\\x88M\\xd7X\\x96\\xe5vS\\x14\\xf8H8\\x97u\\xa5\\x97=\\xfd\\x8aH\\x87J\\xect\\xe1)\\xfa\\xebS\\x83q\\xd84\\v+\\\\\\xa9\\x15q\\x82\\xb0\\x9esb«W\\n\\xb3\\xcc\\xeb\\xbaU$S\\xdaW\\xf9\\x04.\\n\\xa3>c\\xca\\xf9\\xe5=4r\\xea\\x04\\\\\\x8a~+J\\xb6\\xb9\\\\ﰔF\\x15Y\\xae\\xa0\\xee9K~\\xba\\x8chA\\xf9i\\xd9z\\x92r\\xa1\\xafa\\xbc\\xe8\\x1a\\xe5]s\\xf4\\x04\\xb5\\x19#\\v\\xe0 \\xb9\\xf0/6K;\\xad\\x9c\\xb5S\\x91-\\x8a)k\\xc9\\xd7\\xd2\\x1b\\x1f\\f}w\\xe0\\x87\\x06\\xfd\\x95\\xc0\\xef\\x1c\\xb2\\xcd\\xec%}\\xd1\\xc7եv\\xb6V\\xb9\\x87SBexq=\\x97\\xce\\xfc\\x13Z\\xae\\x93\\xf7\\xc1\\xd8yr\\x149\\xbfU\\u05f7RT\\x9d\\xd1Q\\xc0ع,8\\xd0\\xd8\\x05Bb\\x15\\xb2,GRe\\x05\\xffs\\xcc\\xd8nFї\\xba\\x91L\\f\\xad\\xc62\\xed\\xeeʧ\\xb7i\\xda6\\xb8\\x9b~\\x8b\\xfa\\xbd\\xb0\\x03\\x8d]x/\\x19\\xb3\\xe0rA\\x86\\xb5\\x16w,t\\xa6\\xfb$U\\xfau\\xff\\x06E\\xceS\\xbd\\xd4\\xf9\\xf3\\xe7?Gm\\xc2&i\\x1b`\\xd2\\x04\\xa3\\x8b\\x8e\\xb6\\n\\x1btl\\xccy`\\x1f\\xf6\\xd6\\x17\\xe8\\xba\\xfe\\x03Q\\x17\\u007f@v\\x9a\\x169Ow\\xe4d\\xdbo\\xeaC\\xfa\\xfb\\xb7\\x06\\xa7[\\xdf\\x0f\\xa7hR\\xcaH7q\\xdcM\\xb0#\\x94O\\x1a\\x16\\xc9\\xee&qXJ\\x1d\\x14Ń\\xefe\\xc5p\\x95\\x9e\\x0f\\xe0p\\xe5\\xa9G{\\xe0'\\xd6_P7hC\\xc5Pjf\\x9a+\\x96\\xf0\\x0f\\r\\xca\\x1b\\x95z9\\x81bE\\xea\\tA3r\\xc0\\x81\\xae\\xe0*\\x99\\xb4\\xa3\\x14\\x00\\x9fLJP\\x82\\x02\\xef|\\xfc\\xf6\\xd9\\xee\\xaf\\xcaDv\\x93Wh\\xc4\\tS\\xe0\\x84\\x0eW(&>\\x8ee\\x0e\\xdft\\xb8}\\xfb\\U00043b5c\\xdc\\xcb\\xf1\\xd5\\xcf\\x1f;G䌝4[\\xd90\\xa4\\xcf\\xf4GEŏ\\xb0\\xa8\\x87\\xf3߆\\xc0\\x9b\\xa1\\\\lT\\xe2\\\"\\xc5á\\x82\\tw\\xb7 q\\u007f\\xae\\x18\\xdd\\x1f\\x19\\xee>\\xcd\\\"C\\x94\\xe7\\x1fZX\\xe8g\\xd2\\xdcb\\x99sݵ\\x1a\\xfaIB\\xd5&\\x92\\xa3I\\x94#\\vF\\x94\\xe7\\x9fU]cF\\xe7\\xa2\\xfa5\\xb2\\xa5\\xa0d\\xad\\x8f\\xddZ\\xc3ɝ;\\xe4\\xa5\\xd3\\xea\\x84m/y\\xd1d2\\x84\\xc3W\\xa3\\x1c\\\\\\xbf7[\\fY\\xab\\x1cx\\x98\\xccW\\x9a\\x14\\xe2\\x03\\x87\\xb6\\xe8˩\\xe2x\\xb6\\xfbpv\\xbc\\x98\\x1a\\x1eϚ\\x89R\\xda\\xce\\xcfX\\xaaX]\\x90\\xa4t)\\xf1\\xffQ\\xf7\\xe6qr\\x9c\\xf5\\x9dp=u<O\\xdd]\\xdd\\xd5U\\xd5\\xf79}̡\\x99\\x9e\\xe9\\xe9\\xe9\\xd6\\xdd\\x1a\\x1d\\x96%Y\\x1aY\\u0092\\x0f\\xe4\\xf1%\\f\\xbe\\x06\\x1f\\xd8x\\x017\\x971\\x84C\\t\\xc4\\x18\\b0I\\b!/$(\\xc0\\x06H\\bLB\\xc8\\x01Ip6$!\\xc9\\x06\\xb4$,\\xecgIp\\xb2o\\x12\\xb2\\xe0\\xd6>\\xbf\\xe7\\xa9\\xee\\xe9\\x19\\x8d\\xc1d\\xf3\\xfe\\xf1J\\xd3UOU=u?\\xf5<\\xbf\\xf3\\xfb\\xb5s\\x13'\\xe4z:71\\x91K\\xd7e\\xbf\\x9c\\x9bp\\xb3\\xe9\\xcaL1鉝z$ZIg݉\\\\y\\x1d\\x1f\\bӶ\\t\\xb1ɵu\\xcev\\xa6\\a\\x97\\xa6E\\x18\\xb4\\xa8\\xe8\\xbb9Q\\x87\\x85w\\x1cE\\xdf7|\\xef\\xcf\\xf5\\x98*\\xe2\\xbbd7\\xe6\\xcaK,W\\x88\\xd1M\\xb1\\x1a\\xaf\\x89Ut'\\xae}\\x12\\\"\\x13\\xfb\\xff\\x14n\\xa2\\x13\\xceS\\x81\\xbe\\xc1\\xf0\\xa8\\x06ܵ3\\xeb\\xed\\x8bl\\xa2b·b^N\\xcc\\xf2\\x90bFm\\xfbU,I\\x05\\xc9\\xc2O\\xb06\\xf6\\x04\\xb6蒄\\x9fxbd5\\x15+\\xa5\\xe1\\x86\\xfbeK\\xe9\\xd0\\xfe\\xf7\\xc4{ὼ\\xf7\\x04\\xed\\x95;Ty9~|d\\xbdD\\xe5\\xce\\xf5-\\xa1\\x1f\\x88\\xf7KY\\x96\\x8b\\u007f\\x95\\xf0\\x02\\xe16\\xe1\\xa5\\xc2c[p\\x12\\x8e\\x04J\\xf1\\xbc\\x82\\xf5\\xa0\\xa9\\xe0\\xff\\x83m .t\\xea\\xfd.L9)\\x0e\\x1b\\xe93\\xacxA#t\\xd4-N\\x17\\xe9\\x1f+^\\xb1\\xa2\\xb7y\\x17\\xb4F\\x8f\\xc6\\x18\\x13\\x11=f\\xff\\x02\\xe7ӡ]\\xd9;`\\x12\\x87ŗ\\xb2\\xef\\xa0\\x13\\x14\\x8bo;K'\\xc1\\xd9\\xe7X\\xf7\\xf2-\\xf6\\x85\\xf6\\xa6o\\xf1<\\xcf\\bw\\b\\x0f\\b\\xaf\\x16\\xdev\\x05\\xcbZ3h\\x8d\\xdeo\\xfby/y[\\x1cg\\xfd)\\xb6\\x9f\\xf7\\x12<\\xe1J\\xba/@\\\\Ww\\xf8d\\x87Ot\\xf8$\\a\\x9b\\xa0\\x1e\\xbc\\x8fJzy\\xf0p\\x87\\x8f}X\\x18>wx\\xde\\x1c[\\xbd\\u07b9X`iP\\x83'\\x19t6\\x96\\x86[\\xdfXI\\xb3\\xb7^HW\\x96\\n\\x83-\\x99\\x04\\x94\\x12P{X\\x8a\\f\\xb72\\\\\\xc3\\xcb\\xcfR]\\x04xa\\xb0P\\xa7=\\xe5a\\xe6!y\\t\\xd3GHu\\x0f\\xa4Ã\\x1b\\x97\\xdb~\\x01\\x16\\vp\\xc8\\xc1YB&\\xa8\\xf0C\\x1aq/\\xf0Y\\x90h\\xad\\xda\\xf2\\x17\\xda~\\x05\\\"\\x05l\\x91\\xf7\\x0f\\xed\\x05\\x82\\xbd\\x05fu\\x9aFT\\xefXhcn\\xbdY`\\x99\\fT\\xe3Y\\xf0\\xbf\\xac\\x16b\\xc8N\\xbfP>T\\xb5RD*_\\u007f\\x04\\x17\\xe4X\\xecE\\x0f\\x8d\\x8d\\xa5\\x9cB2\\xe7S\\xd1\\xfa\\xf6\\xeb_-\\x12\\xc7p2\\\"\\x8aMY\\x12z\\xbf\\xe9`\\xb1@Nݲ\\xef\\xc4\\x02)\\xc8Y\\xef=O\\xf0\\r\\x92[ȤO\\x1dҧ_[\\x92\\xbeFE\\xf2p'\\x14\\x9d\\xfaҤ\\x11wr\\xc1\\xb6ĜQ.\\xa0\\xb1\\x03Տ{5};\\x96\\x03$+\\xde,B\\x93z\\xdc\\x16%7\\xaa\\x10\\x8dDp\\x9ex\\x19\\xeb\\x13㇋ƾ\\xe5\\xf1\\x8f{9)\\xf9\\xcb|\\x83\\x12Mc\\xf7\\xe9\\xc8T-\\x13L\\xd4O`ň\\xdb\\xf4\\xa4\\x0eݨ\\x8e\\xfa\\v!\\xcaf\\x0fD顸-\\x11\\xaf\\x19g\\b\\x02%0n\\xb4\\x9a\\xad\\xf5\\xc9P\\x80\\x86\\n\\x1e\\xde\\xe4\\x94\\x1b\\x82T\\xf5\\xa8\\xe6\\x147\\xbaѼ\\xab\\x1d\\xba鐖\\xabt3c\\xf0\\xc7\\xc8\\xfb\\xbaN\\xd6}\\a\\xfbVG\\xff\\x90`&\\xe2QK\\xaez\\x954\\x9eھ}J\\x9b+T\\xf5\\xd9<\\xfc\\xb8\\xe75N7T/\\xb1ڷ\\x8fL\\x87vk\\xb8\\x0f\\xf0罁~\\u007f\\x97\\x84o\\x8f\\xf8\\x8cx\\x1cE\\x99\\xe5\\xa7l\\x84\\xaf\\x0eo(\\xcf5\\x82\\n\\x04(\\xb0\\xae\\x19\\xf6\\xc2$\\x8c\\x89\\x1a!O\\xaf\\x0e\\x02\\x8a\\xab\\xeb,\\xa6\\v\\x03ք\\x85\\xf6\\xf0\\xf9\\xf8AH~\\xeb\\x0f\\xb9\\x03k\\xc3\\xcc\\xc8\\xff\\xe0\\x03s\\u007fUԮ5R\\xd5\\xfd\\xfe\\xa2\\xbf\\xff\\xd8~?\\xca\\xc6k\\x8d\\\\t\\xad\\x97R\\x9d\\xeb\\xd4\\x11`@x]\\xf3$j\\xc08\\xa2\\x11\\x85\\xceXX\\xb3\\xac\\xf3h6C\\x0f\\x97\\x15Y\\x81}\\u007fX\\x85\\xc7\\xd8\\v[e1\\x1c\\xff\\x01\\a\\xba\\xc4V\\xc73N)\\x97+\\x95r\\x83l\\xb2e˵\\xf5;]\\xab\\xbb\\xdc\\xed_\\x82\\xc1\\xec\\xc7<\\xf8\\x15\\x15\\x96Xs\\x99\\x87\\x18\\x12U\\xbe\\xa2\\\"-\\xfc\\x98G\\xe2\\xdf\\x0fכ\\xdb\\fg\\xf3\\xe8H\\x9b\\xdb:\\vṛ\\x9e\\u05ec\\r<\\xcc\\xf2\\x86\\x17;'.\\u07b4(\\x1e`ӹP\\xa2\\\\\\xe5\\xaf\\xf5\\x9e\\x06\\xbc\\xd6\\xf7]\\xf3g\\xfc\\v\\xda\\xc5\\xdf\\v\\xbf|ezqqZ1\\x06sNyg\\xb9=x\\xaaOЧ\\xbaF\\xf5鵑\\x0f0\\xd4]B\\x1b\\x95H\\xc77\\xe0\\x02<ʢ\\\\\\a\\xa2T\\xfbJ\\xeab\\xb0\\xe8\\xd0\\x16l#\\xae%S\\x11\\xbf\\x19\\x00\\x80\\xd3`\\xec\\x01S\\rPͶ\\xd9h\\xf6\\xbeX\\xec\\x1d\\xcc1\\xfe\\x04#6^\\x86\\xe9\\x97TM\\\\\\x10m\\x92R\\xa8J\\xbd jjԔ\\xd4C\\xaad~\\x96I\\x9c\\xa6\\t\\xc2_\\xc4R`\\xe1b\\xab\\xe5pT;\\xba\\xf7%\\x16~P\\x00\\xe6cK}\\x0fk\\x8d\\xefQ-\\xc3\\xf3\\f\\x87\\x89\\xb7c\\xf2Į\\t\\x8c\\xb50.\\x04uø\\x88+0\\xeeG\\xc8<\\x86.\\x11\\x16`\\xeb30k\\xc4p<\\x97m\\xbd\\xa0\\xdb\\xcbP\\xdcV9r\\xf7\\x91\\xca\\xc1\\xa9T.fx\\xce\\x1a\\xdb\\xf0\\x14lx\\x8a\\x15w\\xb6\\xf6\\x9d8\\xb1\\xaf\\xb5\\xf3b)\\x97\\xd8\\x1e7\\x8bu'7\\xc4\\xf3\\\\c9\\x8c\\xc0\\xc0$T\\xb6fW⩡\\xeb\\x9ck\\x83\\xb4\\xceQl\\xe5!\\xf3\\xd2\\xda&V\\xa5\\xfe\\xd3\\x1aip\\x86hf(\\x18\\x14\\xff\\xbe\\xff\\xb7\\xc0\\xb3t\\xc3\\x15<J/\\xa3\\xdby\\xc6\\xf4\\xe8^\\xfd?\\xe0\\xbcJ\\xeb\\xba,aX5M\\xb8\\xee\\x01ba0b\\x8fd\\xd1\\\"%Rlm\\xb4c¤\\xca\\xf8\\xe4 Zy\\b|\\xdcD\\x9fx\\xe4\\xf4\\xe9GN?\\xadWuS\\xd7w\\xe9\\xdd\\xf6t\\xff\\xa1\\xac\\xbb\\x94uW\\xdd쒛\\xd5>\\xd9{\\x03q\\xfb\\u007f\\xe3f\\xd74r\\xe94T^4\\xf5\\x05]?\\xa6\\xaf\\x15\\xe8\\xf6\\x86\\x9bͺ\\x8d\\xac;\\x8b\\x96\\v\\x85K\\x89\\xc4D5\\xeb^\\b\\xb9\\xdc\\xcd\\xe15C\\xe4\\xf9A\\xe1\\xa4\\xf0B\\xe1\\xc5\\xc2CT*{\\x8b\\xf0.\\xe1\\x17\\x84_}~\\x96\\u05edm\\xb0\\xcf\\xc5\\a\\x1d\\xfc\\a\\xd5q\\x9f\\xa3\\x0e\\x80\\xb9sf\\x02[\\xaf\\xb3Ϣ˧\\xb6~\\x01P[ͺ\\xb9\\xe9\\xafw\\xe5\\xaa-jmX\\x05t\\f\\xfd\\xef1\\xa30=\\x1d\\xcf\\xe7\\xe5\\xd3\\xc3и?\\xf4\\x15V\\xeb\\xee\\x91\\xe9'\\xaeXs\\xfa\\x8a5\\xfd\\xef\\x8c,\\b\\xa3\\xb8\\xf9q*\\xb9\\xf1x\\x822c\\x19\\xa5=\\xe4\\x1e\\x11\\x94F\\x05\\xf0\\xa482\\xf3N\\x91\\x033WY G\\xf8\\x05\\xd8b\\x00)\\xbcܑʠ\\x99}\\x06\\x04\\xc2\\xc1\\xa8\\x81\\xa3\\xf1%\\x9d\\xe6\\xbec\\xaa\\xa8D\\xb2x;J\\x04YILD\\xe7\\xb0F\\xd5[E\\xc5Q\\x191\\xd0)\\xfa\\xfc\\\"\\tS\\f7\\xe1\\x8d[\\xd0\\xea\\xa3\\x1fy\\xd4m\\xaa\\x92$S\\x8dq\\xfb\\x91\\xeb>!V\\x12Ѥ\\x12AD\\x15eZӔ4\\x91el\\xc4P,\\xe3l\\xb9%\\xc4KX\\xa4\\xf7\\x1a\\x13N\\x00\\x93\\x850r\\xaf\\\\?\\x9e\\x93\\xf8\\xbbfh\\xd4\\\"\\xbbgf[}^pԊ\\xcf\\\"̘\\a\\xa8\\xe63\\xb8\\x82\\x1ah\\xe0\\xf4\\xe2\\xaf\\xdb՜\\x9cVE߮>\\xfa\\x91\\xf3\\f{\\x1a\\\\\\x12\\xdb4\\xe0\\xae\\xfc\\xe1\\x98\\xd4\\xe8\\x06ۧZ\\xe3\\xf4dsW\\xf7\\xceD̾\\xed-h\\xfba\\xb4\\xf8\\xbas\\xc9$}\\x1aA~\\xbc\\xb9x\\x0e\\x88-\\x1c\\x94\\x8a\\xa9\\xb6\\xa1\\x89\\x96\\xa4ӱq\\x00A\\xed\\xf0-\\x9b\\x91\\xa9ߜ\\x0fd=\\x99\\\\\\x98\\x12_zB\\xd7cKsMa\\xc0\\a\\xcd\\xe3ն\\x8aT\\xdb\\xc44\\x92E\\x88\\a\\x93\\xb3\\x10Ñb\\x88^\\xc1\\xc3\\x05G6\\xae\\xebi\\xe0\\xbf;C{\\x82\\xdbh_p\\x1f\\xed\\r^)\\xbcVx#\\xe8i\\xe1XP\\xaeQ\\xa1\\x8c\\x05e\\x96@,\\v\\xc2H\\x876\\x88e\\xa1\\x11\\x95\\x16\\a:\\xd8\\xc2z&\\x04-\\x0e\\xa2\\x1e@4\\vMa~P\\x83E\\xf0\\xf0\\xd2\\xcae6\\xe5+\\xe0G\\xfcu\\xb7o\\x9bVi\\xb2);\\x83\\x8f\\xbeKt\\x9dD\\xd51KA\\x8a/ۊ1\\xb3\\x13i$G[\\xe4\\xce\\x19C\\xb1e_V\\xac15:\\xac%?w\\xa5ߑ#\\xd6d\\xee\\xfaJnҊ\\xdc\\xedᮤ\\x1d\\xc3ެ&\\xedg\\xeb\\xe7X\\xf4\\u008e\\x91\\xadf\\x176\\u007f\\xfd\\xdfy\\xb6++=F\\x8f9\\xebav\\xce\\\\\\x85\\x9e\\xf4\\x18;\\xd9\\x1b\\xd8\\xea\\x87Y\\x84ą\\xf5\\x8d\\x87e\\xd8\\x1a\\xc6\\xc8\\x00'\\x13\\xd8O\\xb7A\\x1f\\xd1\\xdeh\\xec*\\x93֨\\xe5\\xabT\\x05\\xc3\\u242e4\\x80\\xe8u\\xd2*z5\\xf6\\x8d\\xb1\\xaa{\\x94\\xe6\\\\N\\xe6\\x04\\xcc\\xfeš\\xfd\\xebb8\\xa7\\x93C\\xf3ޟp\\x81\\xe4OP6F%\\xa3\\xe5\\x98cg\\xe2\\xc7\\x11A\\x19;P\\xd5\\xc0\\xce\\xd0\\xe2\\xf1x\\xc6\\xfe\\xf6\\xba1liP\\xd0\\ue3fc\\xf3\\xcf@\\x1a\\xf9\\xb3w~\\xd7N\\xe8\\x87>\\xfd\\xe9Cz¶\\xf4\\xa9x\\x06)\\xc8\\xd3\\fC\\xf3h!\\x13\\x9f2Fx\\x96\\xa2\\x8c\\xb9bn\\x83\\x04\\xb0\\x93\\x19\\x886&\\xa9=\\xbd.+\\xadv\\xa96Μ\\x0fk\\xe05`!\\x95\\\\\\x06\\xea~hx1\\u0086s\\xb4\\x9e\\xfb\\x1c\\xa3\\\"\\x05?ۨ\\xd8q\\xc5y\\x0f\\xb3\\xc3\\x1f\\x86\\xd3\\f\\x8bW^\\xc3\\xc6\\xedP\\x14\\x18\\x87\\xf3g\\xc2x\\xf2\\fC\\xbb\\x83\\xfe,`^\\xc0\\xddh\\x80\\xf4;\\b-\\x0e\\xa0/\\xac>\\x170?w\\xf4\\xb2\\xae\\x90Sho\\x84\\xe6\\xffս\\xd7\\xeeT\\xcbΒ\\xf3\\xc9H\\xd4C\\x97\\xbch\\xe4\\xe5\\xaf;w\\xeeu\\xe7.n\\t\\xbe\\xaf9\\x06\\x81բ\\xa4\\x88\\x1bQ\\xf9S\\u038b\\xf6\\x9f\\xdc\\xeeh\\xc6.3\\xfe3_\\x8c\\xd4j\\x917\\x9d\\x83\\x03\\xfd\\xd4\\x16}\\x1b\\xb3ᚎ\\xc6\\u05cb\\x8a,\\x8el\\x116إ\\uf83d\\xcf\\xcbG$\\xd0V\\x19\\xfe{M\\xfa\\u007f\\x94\\x95\\xb7I\\xff\\x97=\\xf6\\xffJ\\x9da\\x83\\xa3j\\x8b\\xf9pR\\xf3\\x9a\\xe11\\u05edF\\x88\\xc1\\x80,\\xb1()\\xce9\\x1d\\x96C\\x85\\xd1\\xe1~\\xab\\xeeȏ\\xbeI\\xfa\\xf7=n\\x05恍\\xb45\\xf4\\x88\\xb6\\xda[^\\xee\\xadr\\x11\\x81\\x97\\xd9\\xea\\x15\\xa6\\xbe\\xad\\x8c\\x84\\xfe\\x8eLW\\x18H\\xc8\\xcaE\\xe6\\xc3\\xfa$\\xb7\\xad\\x8d<\\x9fYa/\\xd8\\xed+\\x1c\\x8d\\x99C\\x10\\xb7\\xd7\\xef9\\x94\\x8b\\xae(7\\xe7d\\xc0\\xf5\\x9f\\x16\\xc1/\\x9cC\\x03}\\x05=+i\\xe7;\\x1f\\xeb\\x9c\\xd7$\\xd5\\xeb&\\n\\t=\\xae\\x0f\\xa7]\\xaf\\xff\\xbf\\x1a\\r\\xd3T\\xa2s|Ʃ\\xf6ނ\\x89\\xa5ݻk\\u05fd\\x9aE\\xb0\\xfb\\xb4\\x93H8\\x8f\\xeb\\xfa\\xaf\\xc0\\xfcWt\\xfdq\\x98?\\xdd+Л\\xf1\\xc6\\xd8t\\xd7 \\xf6|\\x98\\x17<'\\x1c\\b-\\xc1tt\\x9eAA|=\\b\\xbc\\xd5&\\xa5a,8\\xc7\\x19o\\xf3\\xd4d?\\\"\\xd6\\xda\\xc0\\xe8Mj\\x01\\t\\b\\xf0z\\xd7\\xd03\\x96b\\xdezT\\xb3\\xad\\xbbeCU\\xf1\\x81\\x03XU\\r\\xf9nQ4u\\xf5警b\\xdd;\\xa1\\xc4\\xcds%9%\\x97Ιqebfl\\xa6\\x15\\xdf\\xe68\\xdb⭙\\xb1y\\xb1X\\x14\\xff\\x19\\xa5q딞\\x90\\x12/U\\rr\\xfd\\xf5\\xc4P_\\x9a\\xf0\\xf4S-\\x9cFΝV\\x94\\xec\\xba˲\\xee\\xdaE\\xa2֝\\xaf\\xac'չl\\xb3\\x99\\x9dS\\x93usabb\\x81\\xc7\\xf48\\xf4\\xbe\\x1a\\xf4\\xbe^O\\xef\\n\\xa2Hʐ\\xbeI?\\xc8y\\xfaj\\x9a\\x90\\xc4\\xc9Ll\\x90\\x1fN\\xbf\\xe9pN\\xc7:\\x1e\\xca\\xd5b\\x88\\xfcl\\x02)\\x17y\\xe4\\xce7g\\xe7<\\xb7\\xcd}\\x01\\x11\\xee\\\"\\xe2\\xbb\\xc1c\\n\\xe0x\\x1c8\\x04\\xde|k\\x9e\\xcfYdd@\\x9a\\xfe,\\xad-&\\x8a\\x8f\\x9f\\xc4\\xe4\\x9a\\xc7\\xf2\\xf5\\x9d2B3\\xe3\\xda\\xde1\\xe00\\x92\\x90\\xbe\\x83\\xe0\\xf1\\xed\\x93bZ\\x14eQD\\xf1\\tB&\\xe2H\\x15ŜI\\x9f\\\\\\x9e\\xae\\x95\\a+Y\\x8d\\xb4Xi\\xa9\\xa2\\xe1\\x1a\\x98\\xecБ$k\\x8a<\\xb6W\\x1b\\x9fA\\xca\\xce\\xe5\\xc3g\\xe53\\aw\\xbaqE\\xd1\\xf5\\xf1ɛ\\x13\\x12\\x91\\x15IJ\\xa6\\xae\\x9aTT\\xa2T\\xda\\xdb\\x0eh\\xfbb\\xfc0E\\x8dvhZQ\\x14U䡂\\xaa\\xf6/yH\\x1e]\\x0f\\x17\\x13\\xdbGZ\\x15ӊ\\x94\\v\\xbaBTe\\xf2\\xaatB\\x92\\x14\\x99\\x88\\xc9\\xe5\\x89\\xf1h*\\xb5s\\xa3\\x8e\\x98\\x13Vy\\f\\xd5\\x15\\x1ab4N\\xb8\\xfaW\\x94\\x985ӋÃcxo\\xf4\\x19Ά\\x0f}\\x17\\x9a\\x9dg\\xdcR\\xb00-\\xb2\\x04l\\x88\\x05\\xb2\\x11ma>}\\a\\xad\\xf9V\\xad\\xcd\\x18\\xe3鋤o\\x95\\xd4\\xe6K\\x1e\\xa9\\xd1\\xf6\\xe9\\xc5!ÓM@[\\xa3\\xa3+\\x99\\x16\\a\\x11F\\x10\\xa9\\x1a\\x9e\\x12\\xa3_ۨ~\\xee\\xe7j&\\xca>[\\x91T*sk\\xbb\\x8f\\xef\\xd6\\x12\\xa2Do_\\xaa(\\x9e$\\xa9bZvb\\x9an\\xeb\\x8e\\x197E\\v!Y\\x8bIRL\\xa3\\xafѦo\\xd0D\\x10\\xdb\\x05kT$!\\x84\\f\\x91Vshu+M\\xd2\\\"\\x15?=\\xe5\\xd0&\\r\\xb6\\xff\\x89\\x88A\\x95U\\xe4 T\\x10eU\\xf4\\xaa\\xb3\\xb3UO\\x04\\x00u\\xb1@\\x8f\\x1a\\xf3a\\xbf\\x94\\xe6F\\xe5H\\xccʨQ\\xdfL8RY\\xa3'B\\x11\\x89ރl\\x03'\\xee\\x8a,\\xdfǮB\\xa6\\xab\\xa4\\b=\\xb7\\x84HQr\\x12\\xa6\\x1fU3V,B\\xb2V\\nn\\xc0\\x8fq{\\xe3\\xe7\\x18\\aI\\x84\\xe1\\x93\\xee\\x16\\x8eB\\xfc\\x12\\xb0\\xd0T\\xaaDa\\x94\\x14\\x00÷\\x10Pm\\x1e\\xf3\\x8e\\f\\xdcw\\xd0\\r\\x87\\xd8\\xf2{\\x99Q/\\\\ʡf{!\\xf0XD5\\a\\a\\a\\x04\\xa8\\x91%q\\xc2\\xef\\xffk\\x10\\xf4\\xff\\xd5Ҿc\\x17\\xec)\\xdbF1\\xdb\\xf8'\\xdd\\xd7\\xffɰ{X^\\xc2\\xf0\\xbb\\x80\\xe5eLG\\xb2e|\\x11/\\xc9\\x18~\\x17\\xf02-\\xd0\\x1f\\xba\\x9b\\x04\\xb3K\\x84,\\xcd\\xeaQ鄢\\xdc#\\xcb\\xd7~ӈJ\\v\\xa2\\xb8 E\\x8do\\x96\\x1cYA>\\xa2\\xea\\v\\x9d\\x89\\xdb\\xe8LL\\xd1%IF)1\\xea`\\xd1G\\x8a\\x1cŴ\\x862\\x16\\xc5t\\x13[J\\x89\\n\\x1d\\xdb\\xff\\x17}\\x16\\x06}\\x16\\xf7\\n/\\x13^\\xc52_\\bG͡R/\\v3c\\x91\\xd8b\\xab\\xe6\\r-a-\\x1e\\x06\\bajA\\x88\\xd1\\xc0(, \\x12\\x94\\x8d\\xee-\\xb0|B{\\xe36P\\xb0\\x972\\xd7\\\"\\xb3\\x9czm\\x90\\x10x\\xc7@\\xa0\\x91S1\\xbc\\x16\\x0f \\x9c\\x1b\\xa3\\xd5Μ\\xa3\\xe7[\\xaa\\xb1\\x94\\x9dQt\\x1b\\x1bDV\\x89<\\xee@,\\xfe8\\xb24Pe\\x95\\x99쒡v<=9\\xb3ˠ#P\\xb2Z\\xbcf\\x8a\\xd6K\\xe5sI,\\xab;w\\xd2O=\\x99˧T\\tO\\x1d+U\\x93\\xb4cxAZ\\xb5,\\x9c\\xede\\x15\\xdb&i\\xf4\\xaa\\xdc\\x03{kc\\xbbu<\\x11/\\\"['\\x06\\x960\\x95-rZ\\f\\x14\\x8f\\x98\\x96\\xcbh&\\xb0\\xcf\\x16\\xe3\\x13XߗH\\x1e\\xec\\xd1QS\\xd7\\xeb3\\xf5C\\xfeB|\\x8ch\\xd1H3\\x9fkF\\f\\x8d\\xb4ZD3\\\"\\xcd\\\\\\xbe\\x19\\x89jd,\\xbe\\xe0\\x1f\\xa2\\xd5d\\xc0\\xf6\\u007f\\xb0\\x10\\x8fV\\xab\\xa6[*\\xb9f\\xb5\\x1a\\x8do\\x94%\\xa2\\x8cϘ3\\xcf\\r\\x1cD\\xbc\\xddQq\\xa2\\x15\\xfe\\x06\\xe4\\xb9;Ѧ\\x18\\x83&\\xfa\\x17\\x9d\\xbb\\xaf\\xf5\\xff\\xa9\\x98ʗ\\xba\\xcb\\xf4?\\xb0s\\x82e\\x81g\\xe9\\x85\\f\\x9e\\xb7\\xcbF\\x05\\n\\x15C\\xbeA\\x14?\\xbb\\n\\xffx\\x10\\xca\\xf2\\b\\x91\\xa72\\x12\\x93\\x03Y\\x8e\\xbb\\x81uh\\a\\xf0g\\x0fEs:(\\xc05\\xd8\\\")1\\xffL\\x8dvK\\xadQ\\xfc\\xc7\\x16\\xd8\\x12[,#\\xa9\\xecUX\\xf6\\x11GL\\xa3\\x02\\xeaOLL\\x16¨\\xb5na\\xcdrI05.\\x964\\x12\\x8d\\xa3\\xf1\\xa9\\x80\\x00\\x9b2\\xf3\\xd6JcI\\xa0\\x96,t\\xfb\\x97\\x96y\\xb0\\xf8\\xa5T\\xb5\\xe07\\x1e\\x87\\xad\\x8f7\\xfcU\\xd7rq\\xac\\x98\\xf35\\aeK1š\\xca\\\"sK<\\x9e,\\x16,\\xb7\\xd7\\xed.\\x17\\x18\\x03\\xe4ruĖ\\x04X\\x1fYz_s\\xf4\\xbe\\x0e\\v\\xa7\\x84sT\\x8f|P\\xf8X\\x88\\xfb8\\x9a&\\xb5u\\xa9\\xb90`\\xaa\\x19!\\xad\\xf9w\\x17\\x95\\r\\n\\xd0\\xd61\\xde#\\x1a\\x93\\xbf\\xc1&\\xb7p\\x81Y\\x8fzlzi\\xa4\\xfcJ\\xfa\\x85\\xa8j\\xe1\\x81\\xe7=\\x139\\xe6M\\xa7\\xbeƛ\\v\\v\\x00\\xbf\\xb8V\\x0f\\x93_,NE\\xbf\\x06\\xfa\\xb9F.\\\\`\\xa9ᛦ\\x05\\xd7R\\v\\xa69\\xcd>\\x9b\\u007fw\\xe9O/\\x84i\\xe7\\xdd\\xf5\\x06\\xd9\\xed\\xd4\\xf9Z\\xcbeWw\\xd1\\x1dpG\\xf1\\xf7\\x99\\x10\\xf6\\x03\\x92\\x90\\x17mF\\xb9\\x16Y)\\xb2\\x0e\\x85Q\\xf2\\xd1g<Lx\\bݱe\\xa6\\x93\\xd8\\\"/\\x8d\\xa0\\xfb5\\xa5\\x9c\\xcc_r\\x9b\\xe7>\\x8a\\xfb\\xfb\\xefΞ=8\\xa9\\xaa\\x93\\a\\xcfrV\\xe6\\x94\\xdbMP\\x11\\xd3IC\\x86;\\xf3f\\xf5$Տ\\xdaT\\x90,\\xa0n\\x1f\\xda\\xdb\\x1fe\\xf2\\xfb;\\x93-]oMv\\xf6\\xe7w\\xb1L1\\x8e\\xbdy\\xd8\\x1b#\\xaa\\xa4W\\xbd\\xc3|\\x99'\\x91u\\x91\\x12\\xf3\\x8a\\xb1B!\\xd3\\xd0\\a\\xb19\\xd0/|A\\xb0\\x85;\\x85\\xd7\\xd1~\\x81\\xdb(\\xc2\\u061c\\x92\\x1f6\\x12\\xd6\\x13C\\xf6\\xa3\\x1f\\x9a\\x969\\xef\\x84\\x1f\\\"\\xe4\\xb2-ANjr\\x00\\x0e\\x16\\xbc\\xb0\\x93\\xf3\\x12\\x96X?=\\x0f\\t3\\\"\\xed\\xa8\\xa9\\\\ \\xb2\\x10\\x15[\\xa6;*\\x80R\\x9d\\x93\\x16Ћ}I\\xf2\\t\\x81\\xa9\\xa4\\x92kw\\ueb24k\\xae\\x8e\\f\\xa9<cx^NOf\\xc7\\xfd\\xd8\\xd1\\xd6ľ\\xb1\\xa8!#\\xc9p\\x8a\\xb3\\x05\\b:*j\\xb2#k\\x1as\\x0fG-]Oa\\xa5\\xde\\xf1+)E\\x8b\\xceDt*\\xbd\\xc6$%\\xe2U|'\\xef{\\x16\\xdd\\x13\\xbb\\x86lS\\xad\\x10\\xbd\\x96\\x9e\\x87\\x9f\\x91Τ\\xde\\xce\\xf1\\xdb\\xc7\\xe6\\xe9s¤\\x8a%y2\\xa2\\xdd\\x1e\\xa1\\xfd|6_l\\x1d\\xcd7f\\x03\\xac`Q\\x8e{y\\xbb:_EjA\\x8dd\\xea\\x19\\x83\\x90\\xb8\\x1c\\xc1U]\\nƼژ\\x9e|7\\xd6\\xf41ڡ\\x9b\\x1a\\xa1z\\x9d\\x15\\xc1\\xa2\\x19Ue5\\xa2X\\x83\\xe7\\f\\xfe\\xe7_\\x10~Y\\xf8ς0\\x06)yU\\x90\\xb4\\xa6%\\x88\\xf5'\\x90m\\xee\\xf3\\xa7\\t)\\x01CB\\xf9\\x05f\\x0f\\x82\\x80V\\x10\\x8c\\xc1\\x01\\r\\x94\\xd9{\\x00\\x9e\\x18r\\x91\\xda,\\x92{\\x9a\\xe5\\xf9Wàx\\xfa\\x8eh\\x95\\xda4\\x1afj\\xd0\\xee}ȏ\\n\\xba\\x8e\\xc82\\xdb\\xc3\\x13\\x12F\\xa9\\x8a\\x19Vx{\\x8f$\\x86\\x81s\\xc3\\x00\\xba\\x17\\xb9*\\x89\\xb9~\\xde3\\x03G\\xa7¬\\x94)\\xd2/\\x10FĠ\\x9e\\xb4\\x15˱\\x14;Y\\x0f`\\x85[Њ\\x19I\\x92\\xb1\\x171L/\\xef\\xbb1\\t\\xc0\\x98t\\x97\\xaaǪ\\xef\\x02\\x89\\xac\\xe8\\x06N\\xcaTm\\xc6Y\\xceK$\\x98HF\\x93\\xe5\\xcaB\\xc5p\\xd3;ҮAKe\\xbaf\\\"\\xa0z\\xb5j\\xa6\\x1cNz\\x0e\\xa5DL\\x042Y\\xd7Wը\\xfd\\x16\\x16D\\xd7\\xffW6\\xbb\\x93^\\xa3J\\\"\\x9ef\\xc7-\\xc3\\u0081Q\\xeeС4\\xb3\\xad\\xe2\\\"\\xe4V\\xb6e \\xaf\\xb2l\\x04؊D\\x93\\x8a\\xe2E\\x88\\xaa)\\xbaJ\\x80\\xe0DU\\x94\\bIemE\\x8a:\\xb6\\xe5њN\\xc4\\xf4\\x8a\\xf3ђXIB|\\x82\\xebTT\\xb5\\xe2\\xb8PNV\\xc4Rt\\xbe\\xe8Y6\\xf8\\x94`\\x16\\x95\\x14;\\x9b\\\"\\x11EQ%T\\xe3\\xf8/\\x83\\xc0\\xbeQ\\xec\\x06[\\x881\\t}\\x84]\\xa8Z\\xf3\\x82\\x05\\xd2\\\"~\\xdb[hK`\\xa3\\bB\\x16\\x04t\\xf1̾W\\a_\\xbd\\xbe\\xfa@\\xb3\\xfa\\xaeɃ\\xf5\\xe0\\xd5a\\x86ۋ\\xf6\\xbf\\xc8\\xf8\\xe0\\x8b\\xc6\\x1f\\xbf\\xff\\xaaҋ\\xef\\xd7Jh\\xaf\\xda<>53\\xfe\\xa2\\xc1\\x18\\x0f\\x98F\\x9a\\x10g\\x1e\\xab\\\\\\b\\x9a\\xdbR\\xe6!3\\x9511s\\x12\\xc7a\\xef\\xb4\\x17\\xb5\\xc2\\xef=\\x8b\\xc4{T*Y\\xac\\xf4\\x05ES\\ue85a8zځ\\xe8\\xc6e\\xa7\\xa1\\x1d3\\x8cc\\xdaI)\\xaa\\xddN\\xbb\\xe6c\\xd8\\xd4\\xc4\\x19\\xdaO\\xff\\x9b\\x16\\xfb\\a\\x16q\\xba\\xfc\\x0f1-\\xfb\\x80\\xad\\x1d5M\\xaax>\\x10\\xfa8Y|\\xe7\\x00\\xef\\xf8\\x87F\\v\\r\\\"X~\\xd82\\xba\\xc0,K\\xab0]Yﱗ\\xb7,\\xa2\\xd5AU\\xb4\\x1c\\xcf\\xf4/\\xf6`}o\\x88\\xed\\xc3&\\xdd\\xc1D\\xd8\\xf2z+\\x1b\\xf4'\\xdfS\\x9a\\x1b\\xb1R\\x83\\x1f\\xb1\\x8c\\xd6~\\x8cKp\\x06\\xf5\\x9eǽ\\r\\xf1j\\xd0k\\x98\\x8f\\r\\x9c\\xb0aR.\\xa9\\x91\\x10/\\nFn\\x16<\\xc6b\\xe3\\x01\\xd1\\x02\\xa4\\xeb*J3pۛ\\x13\\xe5{]/\\xf5t4\\b\\xa27m+\\xc4c\\xb3\\xb1j=Q\\xdba\\x16=\\xc9:k\\x16C\\xe8\\xda/g\\xf7\\xdd\\xeb\\xce\\x06\\xa5\\xa0\\x1c\\xbf\\xaaxSQ\\x96s\\xd33\\xba\\x94,\\x1a\\x87ui\\x143g\\x1c\\x18B\\x05>T@\\xe8\\xe1 \\xde\\x1b\\x9aV\\xa3\\xb9\\aq\\x1b\\xf90\\x84K\\tǔ\\x990\\x8a\\x9a\\x8b\\x1b\\x03\\x86\\xa3\\x05\\x80(\\x9e\\x9b\\x05\\r\\x16I)w\\xa6\\xfaqYv\\x1cK\\xbb\\xc1y\\b\\x91\\xa4nR\\x15\\x1e(\\xa0У\\xbe\\xe3\\xc8\\xf2ǫ3tp\\xa4\\xcb\\xf65\\x04\\x9bz\\x92\\xa0\\x87\\x1c$\\xd0\\xc1\\xae\\xb6W\\x9fA\\x9e\\xb1L\\x15\\x97\\xdc\\xc9l⢡`\\x922^\\x13\\xa4\\xaea\\x96'\\xebm$X6<4\\xa3\\xef\\xad18*f\\x90\\xba&\\x15\\xbc\\xc6Ha\\x82\\xf5\\x8b\\x89\\xec\\xc9an<\\u05edg\\x85\\xe3\\xc2u\\xcf遍\\x88%\\x06\\x9bߜk\\xb6\\x83\\xb9\\xe6\\x1cc\\x99(\\x03\\xd3b-\\xf4e/P\\x85\\xb9Q\\xe2\\xdd\\xf4\\x0e4KW͗\\xab\\xcf\\xe9\\x94}\\xbb\\x91\\x14\\x11\\x8aA\\xda\\x12\\xf2}\\xd0p\\xe5\\x18Bb\\xd2@\\xf2Ι\\x03\\af<W!\\xb4\\xbb\\xe9tj\\x10\\x94\\x8fq\\xfc\\xa1\\xe7\\xf2\\xd6>\\xe2˲\\x18Mʦ)'\\xa3\\xa2,\\xfb\\xe2\\xfe\\xfd\\xcb\\xfb\\x89\\xa8\\xe0\\xce\\xf1\\x0e\\xb2I\\xff-\\xdco+\\r}\\x1eIa\\fr\\xd5֣\\xc1w\\xa3\\x11\\xf4\\xd2\\xe6\\\\ s\\x16j\\xf0ҷ\\xb9\\x86\\xe5q\\xd0\\\\\\x9e\\x99\\xc1I\\x89\\x81\\xa4\\nƠ=`dd!\\xb1\\x9cl\\x97\\xa5\\x9f\\x83\\xd5\\a\\xfd\\x1b!\\x19\\x12'\\xb7\\x93\\xce\\xe1\\xeb\\x1e}\\xf4#\\x8fN9:\\xe9_~\\xe4tm\\xb1\\xb6\\xeb\\xf4\\x87\\xedX2\\xa6:\\xb4\\x9fW\\x89I\\xd5Q\\x92Q\\x88\\xb6͎\\x99\\xae\\xb9y\\xadB\\x0f\\x92!\\xf48\\xba3E\\x0f\\xf3\\xe8u\\x87;D;\\xbd\\xab\\xb6\\xbfz\\xfa\\x91\\x83J\\\"\\x12Kq\\a\\x93\\xa1\\x10C\\x96dU\\xd1%\\x8b\\xae6\\xe3\\xd6\\xe6\\xd5C<\\x84\\xe1sh\\xf0\\xac\\xc8\\xe7\\xf1$\\x16F\\xe0\\x0e\\x83\\x01\\xdaV\\x0e\\xfd\\xf0\\xbb|\\xe9\\x9e\\xc9\\xfdT\\x04\\xd9\\u007fD\\x87\\x00\\al\\xfe\\xb0[\\xf9\\x99\\xc9\\xfc\\xd8\\tI:1\\x96oA8\\x03\\xe8\\x8f\\xecz\\x19'\\x1e\\xe8v\\x8e\\x90\\x16*`\\xbboېZ\\r\\xfe=\\xb0\\x18R\\x8d\\xae5\\x00e\\bp{\\xa8]Ht\\xc3\\xe0\\x83\\x05E\\xfa/\\xea\\xbe\\xef\\xa5\\n\\xc9i+\\x16͝Y\\x05\\xe8t\\x11\\xabk<\\x15v-\\xe7=@\\xb7m\\x83mo̝\\x1b\\x8f\\xbaɠx\\xd8\\xdfwq\\xf5\\x12\\xa46\\x89\\xb6\\xc3s\\x9c\\xfa\\xcf\\\\|:\\xb5;r\\x86o^\\xc7\\xd6\\x02\\xee\\xe54\\u007f\\x96a8\\xfb:lԀ{3\\x18\\\"\\xc3K6\\xa3\\x92[\\xd7H\\xf2ȥ\\xedH\\xdcI%\\xf7i\\x06\\xfb4=Ͱ\\xa1F\\x96$\\x10\\x13>\\u007f+.8\\xf9\\xd8\\xd9)X8\\xe9\\xea;^ ƌ/lU=\\\\\\xfa\\xa6\\xad7t\\xbb\\xffF/\\x9e\\xf9\\x00+F_\\x82\\xf6\\x1b\\xd6\\xf0\\xbaE\\x96\\xf7\\xbb\\x9d\\x0e\\xe5s\\xa1\\xb9\\x91\\xd37\\x01=gc\\x10\\xa7\\x02|\\x9b\\xcf\\x05܁\\xd0i\\xaa\\xaaON\\xbf\\xe4\\xc9'_2=eJ\\xa2E\\xc43\\xafx\\xc5\\x19\\x91\\xfc<\\x91䶅\\x88,J\\a\\x0e\\x80\\xa0\\x84\\xac\\xb6,\\x91c%ɔJ1\\r\\x1b\\xb2\\xf3\\xe4W\\x9et\\x14\\xcbD\\xaf\\xf8\\x95W\\xa0\\x1f S^8Fk\\x8d\\x8d!\\xac\\x1c[\\x90Md\\x1c\\xc4\\xf8 <c\\x15\\xda\\x00\\xfasz\\xadY\\xa1 Ti\\x8f<EG\\xb19h\\v\\x156\\\"0\\x87\\xe4\\xe0\\xbavr\\xfbq\\x13p'\\xcb\\x01\\xa9\\x01؎D\\x9a$h\\x93f-h\\x97\\xdb\\xcd\\x1az\\xb2e\\xf8\\xde]\\x1dc\\xc2\\xe8\\xdc\\xe5\\xf9Fk\\xe3\\xe2b=^h\\xad\\xb4Z+\\x9d`\\xfaS\\xf1x\\xbd\\x1e\\u007fK0}\\xa1\\x1e_\\xbb\\xde\\x1d;\\x17\\x8b\\x9d\\x1bs\\xaf\\x1f\\x96P\\xb1}\\xf6\\xecYdW;\\xc5\\xe2\\xc5\\xe2ct\\xb6\\xaeS\\xfd\\x01ӑk\\x90\\xed\\xc0.)J\\x1bf\\xbb\\b\\r4\\n@\\x005\\xaaS\\xc1\\xaa*\\x01\\xfc\\xffr\\x14D\\x95\\xa0\\xc6\\x12l\\x18?o\\x99\\xf7\\xb9\\xb4\\xbbay\\x02\\xf4E\\x1c\\x92M\\xb9\\xda#\\xe2\\xfd\\xa4W\\xa5\\xc5\\xff\\xde3\\x97\\xb7\\xe5\\x82ًܲ\\x1fv]Q\\x92jI\\x84Q\\xb2&I\\xe2\\xc6\\xc5\\xef+\\xcad\\xff\\x99o@\\x8a\\xef7\\x903\\xa9(\\x9f=\\xafG\\xfa\\x8f/gk\\x8a\\\\M\\xbc\\x10=\\x1a\\xd1\\xcf;\\xdf\\xce\\xe7E\\xa5.\\x8auE\\x1c\\x96\\x04c\\xa8\\x1f\\x8aTދR\\xd9\\v\\xb8)\\x0f\\xd11\\xf1\\x05\\xc2Y\\xe0\\\"\\xa9ԚmR\\x1b\\xe3\\xf2\\x0f\\x1b1\\xdcv@G\\t%Z\\x8c\\\"\\xec\\rL\\xa6;\\x11\\xe7\\x8c\\xe4C\\xc5\\f\\xb3h\\xb3\\x1b-ϲ[\\x1d=\\x00\\t\\xca\\x11T\\xa3\\x8f\\xa2\\x19\\x10ԍ\\x8d\\x9d\\x8c\\xb9\\xfd\\xf7\\xb1\\x98\\xac\\xbf\\x89\\xb9\\xafpc\\xfd\\xbfA\\xbd\\xfe\\xe7%)\\x9b\\x95LmW\\x16\\x9b&\\xce\\xee2\\xf1\\xe6\\x15\\xe8\\x01\\x1eK\\x17\\x1b\\x9brc\\x8b\\xc5\\\"\\xfd\\xbb6\\xfb\\xc6|\\xfe\\xf7\\ai\\x81h\\xcd\\xea\\xffu\\x9e\\xfe{\\n\\xad\\xf6\\x97\\x91\\xaf(X\\x99\\x9dU\\xb0j\\xcd\\xea\\xfa\\xac\\xb1q\\xf1\\xa3#{=\\x96M\\xe5r\\xf7u\\xe8\\xbf\\x11\\xdb\\x13\\xc7\\x06\\x10@\\xb8\\xf3Fm\\x10#\\xde\\xfb\\xe2\\x16~|V\\xa2\\xfa\\x11 \\x04\\x00k\\x1fz$\\xb7\\x94\\xa2\\xbd\\xcdH\\xb4R\\b\\xa4\\xcb\\xd7\\xd0^(\\xb5\\x94S\\x97W\\x97\\x01\\x9er\\x99j\\xc4\\xebP\\xf6\\xcf\\xf0)W\\xf69^@\\x17\\xfe1]\\xb8\\x1f\\xeah]\\xe1\\x80p\\x18z*0In\\x05\\x813,\\xd5\\u0600\\xd7bJs\\x8bu\\xb6L\\xd6\\xf1\\x98\\u007f«\\xd0\\vV\\x8a\\xad\\xa2\\xf8r\\x15!\\xb5\\xcdN\\xba:2m\\xc3\\xea\\xebۚ\\xf6p\\x1aK䓟$\\x12N?\\xaci\\xed\\xfe\\xda\\xdae\\x014\\xfc\\x19\\xaa\\xa2\\xc8\\xf1\\xd1LK>\\x8d˪\\xae\\xccvcr\\\\\\x9e\\xeb:ؑ\\xaf\\xbbN\\xa6\\xb3\\xee\\x1c]\\x11\\xeb^\\xea\\xd2?\\xde\\u007f}_$\\xe8\\xf5\\xb4Mn\\x03$M\\xd6|F:U\\xe59\\xbaa\\x80\\xeb\\xfb\\v\\xa0\\xe0\\xbe\\xfe<\\xf4\\xa2\\xe7\\xd1\\xd26\\xd3\\f\\f\\xe85\\x8d\\xc04\\xb7mXB/7L\\xa7\\u007f\\xd11\\x8d\\xebYX\\xd1\\xf2V\\x95¥\\xcd8\\xe0\\xd9Q\\x1c\\xf0\\x01VO\\x95\\x9b\\r\\xa0_\\x1dA\\x8a\\xe2Z\\xd1\\xffd\\xce6u\\xa9ө/\\xad\\xac,\\xd5;\\xa7F\\xe1{\\xbeŜj\\xf7t\\x96:+\\xab+\\x9d\\xa5O\\r\\xf0g\\x99\\xeeݥr*\\xe0\\xeeB&\\xbe\\x10FH\\x91\\xf2\\xa6y1Z$,\\xb7\\nB\\x98\\xdb,#\\x95\\x87\\xdc\\x06tp\\xdal\\n\\x1d\\\\0zBU\\xdf\\x17{\\xb3\\xaa\\xbe.v\\xbf\\xaa\\xbe8ڿ\\x84z\\xd1\\xfe\\x8ab֨8zH<\\xa4&\\x8d\\x9a\\xa9\\xa4\\x14s[:\\xbd\\xcdTЍ\\x80z\\n\\xa0\\xa9\\x95t\\x88>\\x04t\\x14\\xdd\\xc1\\x0f-w\\xfb\\xffh\\x91\\x04\\x96\\xd4k\\xbe|\\x9c\\xca6\\tb\\xed5\\x91r䈂̕J\\x9a\\x875\\xa7+\\xcb\\x03\\xb0\\b<\\x94Q\\t\\xd5.\\x1b\\fi\\xe0\\xa6u\\x9d \\xd8Z^\\xc5L\\x04\\x1b\\xba\\xeei_Cp\\bѹ\\x81\\xc5\\x1d\\xf8ޫ$\\b\\xc5\\xd4\\u0600x#`:\\xee\\xea&\\xa1\\xf5\\xa3\\x8b3\\x05\\xa6\\xd0\\x14>/\\x91\\xab\\xae\\xa2\\xedYRo\\xbdU\\xa53r\\xe8\\xd0p\\xe9\\u007fsI\\xf5av\\b\\xd4a\\xba\\xf2\\xb7\\xae\\x10[s\\xd5T\\xc1\\xb5\\xa0\\xb9[n!\\xf5jU\\xca\\xe5$\\xd5V\\xa5\\xc9I6\\v\\x97&&$\\xf5\\xbb \\xbf\\x86\\xc7\\x19\\xc1\\xf2\\xfc=:\\x12\\x96\\xaf\\xc8\\xf2܉\\xdcц\\x1eAn\\x854G\\xd12\\x93\\xdfmiV\\xd2\\xd2\\xc7\\xc7u:\\xd3Z\\xdf\\xed\\xff\\x8f\\a\\xbf=\\xa2Y\\x1e9bi\\xaefu:lv\\xa4\\xffk\\xab\\xab\\xc20\\xfed\\x95~im\\xee\\x8dF`\\x0e[\\xa7\\x8f!þ\\x8e\\xbd\\x83*\\x17#\\xe8\\xaa=\\xd2^\\x8e\\b\\xb1\\x1b\\r\\x83\\xb3\\x87M\\xab,\\aŉ\\x00L\\xfc\\x80\\x9fE_\\xbdF.\\xa6\\xaa\\f\\xfc\\xb5\\xdeq\\x9b\\xcḋ\\xbb\\xb4\\xb9w#\\xecQ^\\xcf\\x1f\\xa8\\xe0W\\xd3\\x11\\xf9\\x8f\\x99\\x19sٵ\\x1c\\xc8\\xeecT?)\\xb7S\\xbf.[\\xb3\\xe5\\xe5\\xee\\xe3\\x90C\\xf1xwi\\xd4Z!2,\\x90\\xdfa\\xdc\\xca\\xed\\x11\\x947..\\x02\\xacW\\x99\\xfe0\\xa2R\\xce\\x16\\xdd5\\x83R\\x04\\xa4Ǖ\\xc6\\xd1V\\xb7u\\xb4Qo4\\x1aut\\\\q\\x9d\\xd1\\x1eډc]\\r\\xd0K\\x02\\x15u{=\\xc8\\u007f\\xeb\\xf5\\xa6\\x83/<\\xfd\\xf4\\x17\\x82\\xfe\\x0f\\\"i\\x1eUʧ\\xe9H\\x81\\xe1\\n\\xf2\\xf7\\xb9\\xc8\\xe4\\xb0]\\x83l1\\xf6\\x18\\xe7\\x17\\xda\\xf3<?\\xd4\\x0f\\xb8g\\x18\\xa8\\x160\\xa9\\x02\\xa1\\x02\\x98\\x1e\\xab\\xb50}4\\a\\x89\\t\\xb4\\xb1\\xa33\\xf9\\x89\\x99\\xe23\\xf5\\xceX\\x16u\\xea\\xe9)+\\x96JU\\xff\\f\\x13\\xb9u:Z\\xa1k\\xdc(\\xd1ŗ\\x9e\\x88ư\\xa8\\x94\\xc7\\xef\\xb9Y\\x9c\\xce\\x17g:\\xf5\\xfc\\xacN\\x15\\xb0z'\\x1dĪ\\xa9h\\x8dj\\f\\xfb\\x941\\al\\x8d\\x84\\x10\\xcb\\\\Z\\x91\\x90%\\xc5\\x0f\\x8d\\x1f\\xba1\\xf4\\xb5p\\x1c\\xc4\\x1c\\xe7\\x1c٘\\xdf6_\\x9d\\xdfpɸ\\xe2\\a\\x98\\xa3\\xf9\\x85.\\xefQ\\xff>\\x82\\xbba\\xb9\\xd2|\\x1fHI\\x99F\\xe2\\xde\\xecX\\xa7ާ\\xf71_A\\x8bӥ\\x05ۉ\\xa5\\xaa\\xa8\\u007fmċh\\xc74KʞR\\xd5SY\\xc9\\xd2Ύ+1e\\xfc,]\\x95\\x8bZ\\x9a]\\xbci13[N\\x8e\\xeb;U\\xd3\\xca\\xd6\\x1e\\xd5g\\xf3\\xd0\\x12\\xaa\\v\\x12\\x92%4\\xbd8\\x96\\xd3ic\\x91}G\\x8d\\xb8\\xc9\\r\\xbb\\x0f\\x8fx\\xbd\\x88\\xe3Vq\\xf1\\xa6\\xe9\\xf2l:\\x18;@զ\\x19A\\xd0\\x01\\xf7\\x97\\xe5\\xb3)\\x82M\\xdbO\\x81\\xcat\\ra\\a\\x95\\xeb\\x8e\\x02\\xaaG;\\xa8A\\xfb\\xc0!\\x8c.\\xa9.4\\x815\\xa9&qk\\xb3Oř\\xc1\\x1d\\xc372#UY\\xdf\\x1b'\\x12\\x88\\xa8\\x98\\xf1D\\xb5A\\xbc&\\xb5&\\xa9\\xddu\\xf7\\xd3T\\xa3\\xc5\\b\\xcb\\xe25\\xfb$Q\\xfaC\\\"\\xdf\\u007fR\\x14ߩh\\xf2\\xee{n\\xa6\\x17|\\xf3+E\\x19\\xa3cΒ(\\x12面\\b~\\xddϋ\\xb2$>\\xf4\\x12\\xaa\\xff>\\x9d\\xbc\\xfd\\xf6\\xdb\\xff\\xc7g}U\\xee\\xd0\\xf5?'\\x89h\\xfa[\\\"\\xf6\\x17eED\\xd7\\xcf\\\"Y\\xbcUҔw}HU?\\x94El\\xbb\\xf4h\\xfam2\\x11\\xc5[E\\x19\\xf5\\xff\\f\\x8bg\\x80\\rz\\xf1\\xeb?#\\xab\\xfe\\x17.^d\\xef\\xfb7i\\xff\\xfb%\\xc6\\xc9X\\x0e\\x91\\xe1\\x06v\\xf4A>&\\b\\vp\\xef\\x8c\\xf6\\xba\\xdaB\\x1f\\x94\\xe5\\xdf\\xfd]Y\\xfe`\\xa1\\xf0\\tY-<\\xa5:Ϩ\\xf2\\xef8\\xeaS\\x05t\\xad\\xa8\\x8b\\x0f?L'w\\xc4\\xe3?%)\\xca\\xefV\\xdd\\x17*\\xba~\\xe9\\x1eE\\x91\\x1e\\xbc\\xa4\\xeb\\xca\\v\\xdd*\\xf7\\xe9\\x15\\xe8wQ@?O\\xdb\\x19˽\\xaf\\x04[H(\\xa1\\x15\\x98\\xf6\\xdd\\x15.s\\x81\\x19?\\xcf8 \\x99\\x06\\x80\\xc3\\x0e\\aM<\\xc9z\\xeeU\\x9e\\x9d5\\xc6\\xfa\\x18\\xb4J;\\xe1\\x1e\\xd5H[\\xd8\\xd0$ذ\\xc2\\xfa\\x8aK\\v\\u007f\\xb5\\xfe\\xa1\\xfe9mD\\xacwY)\\xa4\\xaac\\xd3O\\x1a\\xaa\\x9aVT\\xc5\\xd6lֳ0\\x8c\\xa1\\xcf1\\xb9\\xca\\x11\\xf6\\x03\\xba`\\x1b\\xda:\\xbc`:\\x001\\x95Da\\x9f'\\xff@ \\x9a\\x17^\\xf7\\xe0[`\\xba\\x1f\\x8b\\xf9`\\xf4`3pk~І\\xe0\\xddv\\xccԴ\\x87\\xa2\\x13\\xb1G\\\"_\\xa7'\\xbd\\x11=V(\\x8b\\xd2\\xe1F\\xdfRu\\xfb\\xaa\\x17|\\xe6\\x86m\\xcd]\\xb2\\xbck\\x8f$+\\u007f\\xef\\xe8G\\xb1\\x14\\x91\\xa2j\\xde\\xd62]ǰ%\\xdbp\\x955*\\xe9<d\\x8b\\xe6\\x99ɉ\\xf189\\xb8\\xe8\\xec*\\xcftuՖ\\x9chR\\xcaݼpO\\x92\\xbe\\x86䜬[\\xb7i\\xbaJ2\\xaa\\xae\\x05\\x153\\x89\\u007fŌ\\\"䆱\\xa8\\x9fc\\xf1;\\xd3\\fC\\x8c\\xb1\\xa8B\\x1e\\x19h\\\\\\x01\\xf3\\xbf\\x01\\xd4l\\x8d\\x05\\xe86YT\\x1a\\xbbE\\xfa\\xe0ї\\x9bb\\xfep*\\x87rY\\xaa#^W\\x8fhry.\\x16\\xa8%?\\xe6d\\xa88\\xe5G\\xea{\\xed\\xf1i7{\\b\\xbd\\xb5yuTK\\xe6\\xce\\x16\\xf5q\\xdb7\\xccd9\\xe6\\x97\\xd4 \\x96\\xa4\\xf5d-R\\xbf\\xee\\xc4^;\\xb0\\xb2\\xebq\\xec\\xdc\\x16P\\xa0_`WX\\x12\\x96\\x85\\x15\\xa1'\\\\\\x10\\xde-\\xfc\\xbc\\xf0\\x11\\xfa\\xf4\\x19n\\x12#_k/\\x00\\x8a\\x18\\x87\\x15\\x9d\\xe4\\xe4\\xf4\\xf43\\x94~\\x04\\xa9\\x9c\\xcb\\x0e\\x00\\xb6\\x1dHq\\xf3\\xf3\\x9c\\xe6\\v>cF\\xf1U\\xae1\\xfa\\x1b\\xben\\x0f\\xf8\\xc5~\\xc4\\xf1jTы2t\\xab\\xdaB\\x9b\\x17\\\\\\x88̃«\\xa9\\x8a\\x81D\\xeb\\x16\\x05\\xf02\\\\\\xc9\\xc6(J\\xb0T\\x91\\xa9\\x1e*W$L\\xf2\\u074b!~\\xd4\\xe8\\xe4\\x97\\x15CS5\\xe3\\x14p\\xafO`K\\xfagKD\\x8aB\\x97mz\\f\\xa4\\x93\\tE§X\\x15eL\\xb2\\xf0\\xc4\\xd5[\\x1ccU7u\\x10\\xc7\\xcc8\\x9d\\xf6\\xe2`sz\\x96X\\x96m\\xd3K\\x99\\x9eĲ\\xfc\\x84h\\xe1;\\r\\xe3Nl\\x89j\\xffҺ-\\xb7\\xb7^D\\x19SŪF\\x9a\\xb2\\x8d\\xc7\\x12\\x92B\\xfeܶ-\\x8b.\\xcaxr\\x9a\\xe8?\\x8fm\\xb9I4Zż\\x81(R\\xe2[[\\x1e\\xe4\\x1fD\\xb1\\xffW\\xaa\\xfal\\xcc\\xec\\u007fSUQڌ=;\\xc2o\\xc5\\xe2\\xa0A\\xbe?!\\xdc)\\xbc\\x94\\x8e\\xda \\xd0mHS\\x90X\\b\\xe4\\xc0\\x8c\\xce\\xf3\\x03\\x06V\\x95\\x80[\\xe9\\xaa\\xcc>\\xc771}\\x94\\a\\xc9\\xd3]\\x9a\\xed0\\x9d\\x80\\xe1#\\x0e\\x93\\vH\\xb5\\xd5fb\\x01mҗl\\xfd\\t[\\xef_\\x04U\\xe1\\xf7\\x97שL\\xe0\\xf2Uu*\\x96\\xb4}\\xd10U\\xd5\\x1c\\x96\\x80hmL\\xb1\\x951:w\\x9c\\x97\\x93\\x1e\\xd6\\t\\xea\\xe8v\\xffSp\\f\\xf44-}\\xdbQ\\x19)\\x1eD[2\\xf3w\\xe08\\xa6\\x8bDBW\\x8c\\x14\\x1fQU\\xaf]S\\x94Zۣ\\xa5|*\\x95\\xff\\x04\\xd1q\\x8f\\x8c<\\x1b\\x83\\x8e\\xc1\\xfc\\x1b\\x10 \\x933\\x14i\\xbc\\x80Y\\xbe\\xbcb\\v8\\xbe\\xe0\\xc1\\xb4\\xf9\\x84\\r\\xc5\\xec\\x114\\x19\\xdbg{\\xf0\\xc4\\xc2\\x1dk,\\x02\\x96\\x1fC\\xd9\\x14a\\xdcܴ\\x8c\\x84\\x86\\xca/\\xbf\\xe7\\x98c\\x97\\x85tEU\\v\\f\\xbc\\xd10̴\\x97\\xc6H\\xb2E:,\\xe1X\\xa2\\xe0\\xabV\\x19\\x90\\x01VR\\xd5B4\\xc2\\xf1\\x1e\\xfb\\x17C\\x993l\\f<\\xb0\\xa2 \\xbd\\x9d\\xa9\\xb0g\\xa35s\\xac\\xdbMWZ\\xc7%\\xaaͧ\\xb4X]\\x13%YREYK\\xa7cH\\x85GH\\xb4\\xca^\\xbc\\x12\\x86-\\xaf{ \\x06\\x01\\xccl\\xec\\xfa4}N\\x9f\\xa7c\\b\\xf0W\\xadk\\x89U\\x0e\\xc1P\\xe23\\x18\\xc0\\xa09m\\xa6\\x00\\xf9\\xf5k\\x1f\\x8c\\x93\\xa4\\xa9O\\x1a\\xc68}\\xa3\\xe3\\x861\\xa9\\x9bI\\x12\\xbf\\x9b0\\xcd\\xe6\\xed\\\\\\xbfY\\x13_z\\xb2\\xff\\f\\xed\\xa2c\\x9a\\xd10\\xcdiE\\x996͆\\xa1\\xc5T\\xd5@\\xea\\xd2˾\\xb6\\x81/Dd\\\\\\xd7\\xdc^X\\xe3\\xf6\\xc2PA\\xc5<\\xf2\\x97\\xc5\\xcb\\x13\\xa6\\x92\\xd1ޅ\\xd3\\x1eW|\\xb0\\r\\xde\\xc0\\xcczFv,5\\xeb\\xde0\\xf3\\xba\\x99m)-K\\x9fu\\xff{\\xb32\\xf9\\x87\\xd8|%.\\\\V\\xfa\\x06\\xad\\x06)yfF\\xa3\\xd5R\\xee\\xb6\\x19Zo,k\\x1a\\x86:++\\x97\\xe3\\x95\\xf9\\xd8?\\x10\\xfa}9#yL\\x1c_\\xb6&\\xcc\\b\\xf7\\b\\x8f\\b\\xaf\\xa5\\xbd\\xe9{\\x84\\x0f\\t\\x1f\\x17>+\\xfc\\x81\\xf0\\xe7\\xf4\\xa95瘐\\\\\\x0e\\xe7\\xcc\\xda=2\\x0f<\\xbeP\\f\\xb7\\x17\\xff\\xbdQ\\x18\\xac\\xc3\\x1c\\x89\\n\\x91\\u05cb\\x95\\x12\\x1b\\xeaY\\xd9F\\xeb\\xeb\\x83\\xf5\\xa2\\x8d\\xe6\\xd6\\x17\\xfc-\\x8b\\x1bjӯ\\xb0С?\\x98\\x1f\\xa6\\xbfe@\\x9e\\xe8CIt\\x9eO\\x04\\x87FRq\\xdb\\xc48\\xf1\\xec\\xc7\\xf8\\x1c\\xa9\\xc4\\xc0P\\xb0\\x9f\\xe6+\\xea:\\x9bac?_\\xfe)>\\x9b۴\\x15\\x15\\xd4G跾ŏ~1\\x9b\\x038\\xb8\\xf6`\\xb9<\\xe2ݵ\\xe8r\\xc11pZ\\xd7k\\xb6\\xe1\\fK\\x05B;\\xe7pe\\xe3\\xca\\xed\\xaaI\\xb6\\xd8i\\x8b\\x12\\xad(l\\xe0\\r\\x054\\xa4+\\x19\\x1b\\xa8\\x84\\v>X\\xc2:\\x97\\xf2^4C\\a\\xdd6\\xc9#(\\xf1\\xf0j\\x1e8uѹp\\x1f\\xc9G>ӑ\\xf1uO;\\xddn\\xa1\\xd0\\xed\\x15\\n\\x8eC\\u007f#wY\\xf8\\xdfNI\\xbb\\xeb\\x97t\\xdd2\\xbfX\\xa0U\\xba\\x855V\\xc5)p{\\xc7\\xe7¾/-\\x1c\\x01\\xdf\\\\\\xc0x@ʥڴ؆\\xf8y\\x9e\\xb7\\x0eZQ\\xc0\\x8d\\x8a\\x03\\x93\\x1b\\x18\\x83f\\xb9\\xb1\\x80\\x9b\\xb7\\xc0\\x857\\x80\\x0f\\xa1\\xb7Q\\r\\xf5\\xff\\x93\\xe5\\xf9\\xa4\\x145dY5\\x95\\xa8h\\x90\\xae\\x8c%\\x94Rw\\x14\\t\\x11\\xbf\\x15\\xa6\\x144,ݏ\\xa3\\x19\\xf8\\xac\\xcfh(\\xad\\x14\\xe2\\x89\\xe8LY#71\\x9bc\\xe2M\\xad;\\f\\v\\x89\\xa6\\xf3G\\x98 \\aaU\\xbe5_RE\\x03O\\x0e\\xa0\\x92\\x9eт%\\xba\\u007f\\xea\\x14X<N]\\xa7[\\xb2|W<\\x19\\x9d\\x81\\x14\\xb60\\xfbt\\x1d\\xef\\x97硇`z[\\x99\\xea\\xa8$6\\xc2\\xe5ڄ̺\\xf0\\xbb\\xe2Q\\x13{\\xc4aj\\xf4\\xc1h:\\x02\\xc8-\\x85\\xc1@\\xdc|\\xb4\\xc9\\xe6+KW\\xb7m\\xdd\\xd1\\xedh$^N\\xa9$\\x9f\\xeaq\\x9d{9\\x9e\\x8f\\xded\\xb9\\xfc\\xfd\\xb0\\xaf\\xe2\\xaa \\xb8\\x8a\\xdd\\xc4\\xe2\\xb9\\xf1Y\\x18\\xd7l\\x1cIG\\xa5\\x88\\xb6\\xb4\\xd1N\\x01\\xf1\\xa0G\\x85S\\xf4\\xda=F\\u007f\\x85\\xab3\\xa2\\xd7\\xf0F\\x00\\xed\\x06>]6N3\\xfc\\xcdV\\x1bo\\x90\\xa0<z#\\xfcf\\bg\\f\\x1a\\xdcHWѕ\\xa2\\x91\\xa0:87\\xcb<\\x9eH\\x89\\x9a\\xbahJIQN\\xe5Q\\x94\\xbd\\xa7\\xf9\\xb1\\xec\\xe4\\xea\\xd1\\xd6#\\xb2\\x82\\xe4\\x18\\xc1\\xdaU\\xfc\\x96\\x1e\\xb8\\x06\\x18\\xb3,E3\\xaa\\xe4<\\xdaV\\xfc\\x18\\xdc͓A\\xf7Ūi\\xdeNT\\xd38\\x90\\x1d\\x17%\\xc9r9T\\xc3\\xd8<*\\xb6\\x8eb\\xd95\\xe8\\xc8?\\x046\\x02\\xeca\\xf0\\xfd\\xfc\\x16\\xed?\\xe7\\xe9=\\x02\\xa5\\x1f\\xbb\\xb1Z\\x1b\\\"\\xd6Y_Ge\\x90A\\x1fϧ\\xed\\n\\xf4\\xf0\\xeb\\xe9[\\x85\\xbfF\\x12\\xa2_F\\xfd\\xcew캳\\xf2\\xd3\\x04\\xa2p\\xff\\xc54<\\xc3\\xfc\\xa6a|\\xd3ԩH\\x8c\\x043g\\xde\\xc1\\x85\\xaek~\\v\\x89\\x9f&Z\\xbb\\xfbƇ\\xbbWk\\xe4\\xd3\\\":l\\x98\\t\\xd3\\xf8\\xa2\\xae\\u007f\\x91\\x15\\xbe\\xa1\\xeb7\\xcc\\xc3E?\\xc1\\xe4\\xf7K\\b\\xda\\xcf\\rt\\xa4)\\xaf\\x1biB\\x8b\\xfc\\\\\\b\\xac\\x8f\\xb9\\x84\\xcc`:\\x87\\x1d\\xf4H\\x89\\x9b\\xeaK!\\x93\\x04\\x04\\xf2µ\\xb3x'v@\\xb4r{\\xe9q8\\xe5\\x1ff\\x89\\xa9\\x9dְ\\xa9\\xba$ND\\xd5\\xccVN\\xb8嬖\\x0e&`\\xf3\\x0f\\xa9\\x95\\x99\\xb3y\\xa5\\xa7\\xb9t\\x90\\xa6E\\x13ktkB\\x8dc=a\\x04\\xce47\\x86o\\xbd=\\x95\\b7\\xf3\\xb8\\xaf\\u007f\\xa4/\\xe7\\xa7Q\\x8f\\xbe\\x97\\\"c\\x9f\\x9a\\x1b\\u0a46\\x83~\\x99qN-`*\\xf61\\x84\\xd5@\\x1e\\x96о\\xbf82\\x97O\\xef\\xcd\\xe6\\xf7VSf\\xcdLV\\xbb'nq\\x83\\xfb\\x8f\\x9c8WԴ\\\"L\\xd0\\xecz\\xb1w\\xcf\\xd5g\\x0e\\xe7\\xacN5\\x1a\\xadv\\x9eXZ\\x9e\\xca\\xfc\\xbfTN\\x18\\x1f\\xf9\\xf11\\u007fM|5\\xfd\\x16b\\xc08\\xa6pW[\\xb1\\xc4\\f8m\\bO\\x8d\\xa0\\xa0\\xdd\\x14\\xff\\x93\\\"k\\xee\\xb3k\\xaa#\\xd3\\xd6Z\\xd0Kz\\xfa|\\xb5\\xfb\\x82\\x88\\xaa\\xa9$\\xaa\\x13B\\xe7h-\\x129\\xf6\\xfejw4n\\x0fl\\x10\\xa7\\x00\\x93\\xb8\\xb2\\xd1\\xeb0\\x1cs\\x8b[\\xac\\x1b\\x92\\xefn\\x01\\x9b\\x04\\xf1 \\x95f\\xab,\\x85X\\xc5\\\"\\xed&\\xee\\xec\\f\\xc1\\u007f:\\xfd\\xa7G\\x16\\xeedb[\\xe20\\v4\\x85\\xc9a\\x94\\xa0\\xc2]\\xaf\\xd7\\xeb.\\xa3\\xb5\\xe5O\\x11\\xad\\xbeN\\x89U\\x1f-\\xb3\\xcfs\\xe3\\x8aG\\xba\\xfd\\xde\\xd0_\\xf1o\\xe1\\xfdA\\xdfw|$\\x17\\x92\\x04\\xc3۩\\x8d\\xd8\\x1d1k\\xd1>\\xbfK\\x80\\xc6\\x1d4ޝ\\\"\\xfd\\xde\\xf0\\b\\xfff\\x99JW\\xe22\\x90\\x1a\\x047\\xb530\\x90/\\x1d\\xfd\\xe9.\\xcc/\\x85\\x83\\xabkݝk($W_Y\\xea\\xbc+\\x12\\x8d\\xa3\\x94kmg\\x1d\\x87\\x13I*\\xd7<l\\x9f\\a\\xdfK\\xa1ޙ\\xbb\\x97\\x99 /,\\xb1\\x19G\\xa7\\xadd'r\\xd5iqi\\xe5\\xacJײ\\xbe\\xe2L\\xccޙi\\x8f\\xe0]\\x82-%˼\\x03\\x83\\xc1\\b\\\"Ҩ\\x80\\x02\\b\\xb9\\xady\\x85\\xea#\\xd5\\xd2\\xdb\\xff\\xea\\xedO~\\xe5I\\xb4\\xb4\\xbab\\\\\\xfdի\\x8d\\xfe\\xa7\\xb6\\xbfo\\xfb\\x8e\\x9fA\\xbdk\\xf7ܺ\\xf3ԩ\\x9d\\xb7\\xee\\x89\\xcd\\x14-kb²\\x8a7\\x04Ar\\x90+\\xb1\\xcad:\\x0f\\xf2҇\\x913>\\x18\\xbf\\a\\x913\\x95\\xf0)A4:ӎa\\xe8D!\\x1c\\x13\\xcb\\x1d\\x9bF!;\\x1c\\xd5\\xdd\\xc7\\u0600\\xf6\\xc7fJW\\xad\\xc25\\xf0l\\xf6\\xa3,C\\xfb\\xccY\\xf1\\xc2\\x1e\\xdbT\\xf2$\\xa1(\\xa6)e^\\xe0E\\xf4J\\xc42\\xebzʑ\\x8cZeꪉx\\n-\\xb3\\xd1\\xec\\xdf2\\x11\\xece\\xe9\\xe3\\xe9\\xd1_z\\xfc\\xf8\\x98\\x96\\x8b\\x9c\\xf7E)a\\x9d\\x99\\xb3\\xa6\\xfd3\\x8a\\xa4\\xe7T\\xc9K\\xab\\xb9\\f\\xed\\xfb\\xea\\xad\\xf5\\xb8\\xee\\x1e\\xc3\\x1aN\\x01\\xe3W\\x8c\\a>\\xc3\\xe3b\\xa0\\xb2 \\xb5נ\\xb9F\\x8bA1D-\\xa3\\x1d.=\\xe1\\x12\\xed*\\x85\\\\\\x90\\xdb栥z\\xa7\\u007f\\xa9\\x00(\\x85\\x8b\\xd3\\xfd\\x8b\\xf5\\x0e\\x84.A\\x9aW\\xbc\\xffX\\xa2*+\\xb5,ZI\\xf9\\x9d\\xfae\\x81\\xf6,Ӌ\\x9dz\\xc8\\xf3\\x85~\\x9b\\xe5\\xe0\\x86\\xf6ne\\x80bu%x\\xd5\\x10\\xb2j=&\\x11\\x93!\\xb1\\xdd&\\xfeW\\xf4I,K\\xb6d)\\xbf\\xf1\\x1b\\x8aE\\v2~\\xeb[\\xafX\\xf3\\xf6B\\xf5\\xf4#\\xa7\\xab\\x05,\\x1a\\xea\\xabT]|\\a\\xd3\\x1e\\xb8;E\\xa1*}\\x86\\xeeq\\xc3\\r\\xb4f\\x86\\xaa\\xff\\a\\x0f^\\xb1\\xe6\\xed\\xd1\\x1d%0>\\x97vDSz$\\xa2\\xbfs\\x83\\x06¸\\x83B\\xcc|\\xda9)\\f,?`\\xbe \\xf1T\\x88\\x8c/^\\x03\\xb3\\xdd!\\f~\\u007f;\\xcc\\x06\\xdf\\xe4U\\xe8\\xb7\\x05W\\xb8\\x0f\\xe2i݁\\b\\x95\\xe7\\xdc\\x1e\\xf4!\\x94\\x15>ڕ\\x83\\x91.g\\x9d\\xeap}\\xe0\\x9f\\a\\x1a\\x9c\\x90\\x89r'\\xaa\\x85\\x1cEy\\xb1\\xd9\\xde#\\xcd\\x01\\a^s\\x88\\x05\\x18\\x01\\xe3R8\\xf2\\x84Y\\xee\\x11\\xb1\\\\\\xab\\xd6ޙ\\xa6r\\x99hb\\ac1\\x11\\a3\\bz\\xb3fY\\xb6֘٭\\xb0\\xfe\\xe5\\x88ؾ\\xb6-\\x1eaee\\xf7LC\\xb3-K\\x9bף\\xc7\\x0fꤥY\\xb6\\xa5\\xcd\\xed\\x1e\\xd3E\\x12Ɍe\\\"D\\xd4\\xc7vϱ\\xb5-\\xa2\\x1f<\\x1e\\xd5\\x1fH\\x88\\x18;\\xb2\\n\\xe9\\x1dR:\\x05\\xe6\\x1a\\x04ء\\x8ar\\x9c\\x9eR\\xa1\\xa7>\\\\\\xc78\\xf5˶\\xa6j\\xd6\\xe1[T\\xed8\\xf4 W?\\x9c\\xb3\\xea\\xbbw\\xd7\\xed\\xec\\xc3\\xcc\\xf8r\\\\So9l\\xd1*\\xf6\\t;!kK\\xac\\xf6\\xb1\\xf8<v\\x82H$p\\xf0|\\xfc\\x18ۺ\\xa4\\xc9\\t\\xfb#\\x87\\xb1)*\\ba\\xf9\\xb8\\xa2\\x10\\xb2\\xa0\\xa50f\\x18O\\xfd0\\x97 \\xc3dp\\xb0\\x892o\\x9f[\\x84\\x00l\\xc8a\\xe2\\xc8\\xed{\\b'\\x1fݨ\\xcan\\x9e/l\\xf2K\\xf6P&\\x96\\x8e\\x80B\\x1f\\xf4\\xbf\\xa5\\xea\\x92\\x04\\x10\\xbd\\x92\\x88:\\x88u{W_1\\xfd\\x10Ci\\x0e=\\x94k\\xee\\x8e#\\xe3\\x1fIΦR\\xbe\\xa5j)\\xcb5\\\"\\xa6\\xad~di\\xe5҈\\vf\\xf4\\xef/VVWVV/p\\n\\xf9\\r\\x98\\x1a\\x11\\xaa\\x83>$<\\xba\\x8e\\xa91\\xb8B\\x0eR\\x17\\x01\\xf4\\x14\\xc2\\xe5^\\xf8\\xca\\xe2\\x83\\xf4\\xf4\\r\\xa8A\\xc3\\xf4\\xf4\\r\\xb8A,\\xbeb\\xc0\\xed\\xc3D~\\x9e\\x9c\\x0e|7\\xc2\\x00\\xb4\\xb5Y+{\\xe8;\\x87\\xe7\\xe7\\x0f\\xcf\\x1fg\\xb0,wҁ\\xa1\\x99L\\xef\\x1c;Ief\\x85(\\x18\\xe7I\\f+v\\xc4Ҧ4+b+8F\\xf2\\x18\\xd3-\\x846\\xbdA\\x15;\\x92\\x89\\xbf^\\x8b\\xd9r\\xe7|N\\x8e(\\xbe\\xa6Z\\xfd\\xfb\\x18\\xf4\\xf8\\xf9{\\xc7\\xefZ\\x99\\x87\\x13\\xecb\\xb0-(\\xe6ZMKk\\x9a\\r\\xfc܇\\xbb\\xf2\\x8c\\x96\\xf9\\xf6xF\\xb5\\xd4\\xd7֧ǰ\\x92\\xd0\\xf5\\xa8_\\x0f9\\x81\\xfedy\\x99c\\x90r\\xbf)\\xa6\\xbdg\\\\H\\n\\x05\\xa1\\xce0lI\\x99\\x19k\\xcbm\\x9f\\u007f\\x92MȞX\\xa0*\\x1cd\\x87{\\xa5j8<Ԇ\\xe1Ja\\xa4F\\x93\\x0eJȻ\\xe1\\xdaH\\xb7\\x9e\\xbe\\xe9E\\x8bɅ\\x97\\x1c\\x15\\u007f \\xf6\\x9f\\xb1\\x9d[{K\\x8dx\\x06\\t`\\x1c\\xb3&^\\xda>A;Xg\\xa6xh\\x82\\x94\\x8f\\x95\\xd1'\\x0e\\x8cM-\\xcdy\\u007ft\\xb4%Y\\x96\\xd4z\\x98H_kL\\xec\\x1e_\\xcb\\x1c\\xa0\\xfd\\xf4r\\xefD{\\\"\\x9e\\xf1Sře\\xc7\\t1\\x1f\\x81\\u05ec\\x17\\xb6\\xf3Ad-\\x93O\\xb9\\xf4\\xc6L\\xe5\\xdc\\xd5\\xebo\\x86\\aZ\\xe6\\x92I\\x10\\xc5ik\\x87\\x95V\\v.\\x13S\\xee`\\x81\\xa1(\\x9c\\xf5\\\\\\v\\xf2\\v\\xb4\\xa8\\xb9;\\x9b\\xdd\\x1d\\xf5xN\\xcc3\\xac5V\\xc26\\tc\\xcf_\\x8a:\\xfa\\x00}n\\xfb\\x84\\x1b\\x01۞#KTC^[\\x16\\x87\\xce!\\xb77\\xd0>\\x00`&\\x04G\\x96\\x06f\\xe8=b\\x8e\\x05OQe\\x94\\x84(k\\x83\\x03\\xf0|\\x82\\xda{+\\xdbe\\xbcc\\xb2\\xdc¢\\xae\\x16L\\x99\\x04zDEb\\xdc|+\\xf4\\x1eL\\xc0:n\\xc6Eэ\\x04D6\\v\\x8a*#\\x85\\x9e\\xa5\\x8e\\xb5\\x1d\\xdb\\x1a\\v\\a,2\\x93\\x9f<lK\\xbaZ\\xd2e;\\x03o\\xe1A#\\xbb636\\xb5o\\xaaD\\f\\xdd\\xd7c\\x9a\\x19\\x19\\x11\\x9e\\xe9\\xc7\\x19\\xf8\\xba\\xa2\\xc9\\xc9ZԨ\\xa7\\xa7\\xaf*\\x9cn禱>Y\\xa3\\r*A\\xdfJ55\\xe4\\xf5\\xfc=\\xaae\\xe7\\xc1\\xfa\\x0fVo\\xe2\\xe3u\\x04]\\xaab\\xb7\\xf9\\xd0Ѯ\\x11\\xf4}\\x16zv\\x8d\\x13ɼ\\xcfm\\xb97\\xb8\\xee\\xfb2\\xc7\\xcbǘ)\\xaa\\xff\\x83Gox\\x14=\\xcc\\xca\\xc7\\xca\\xc7i\\x05\\xba\\xbdE+D\\x9ck8!\\xe29ZAX\\xf73\\xf3~`\\x1bȴ\\x83~j\\xd0\\x1b\\xd4@\\x98a\\xd9\\x02\\x98a|\\x00\\xb1\\xc0|\\xbbʩ\\x05\\xfc\\x05h'\\xf4\\xf9\\x96\\xa9$O\\x9f?)\\xaf\\x83n\\xae\\xbb$\\xc9\\x0e4;\\x17\\x02\\xac}\\x86ͨ6\\xab\\xc6̨\\xa2\\x9as&\\xc1Q3\\xa6\\xd2\\x15c\\t\\xba\\x94,\\xbf\\xbfS\\x9fĚ\\x97\\xf3vџ\\x86'\\xeb\\x9dJV\\\\\\x9c.\\xb4\\xecD\\xa58#\\\"T_\\x1eA\\x8c\\x8a\\xc2>QK\\n\\x02Ɋ\\xf1\\x03\\xb0c\\xbdg\\xa9c\\xea\\x1e\\xfd\\xa7Y\\x9dz~N7\\xf4\\xe9\\xc5b&;S\\xd4\\xc8\\x10\\xabm\\x91\\xc5dv\\x84\\x83µ\\xc2\\xcd\\xc2ݛ=\\xab\\x90\\xbc\\n\\x8a=\\xbf\\x13\\xf6\\f\\xaa`\\xf2\\xa0\\xc3\\xe0\\x80%\\x85a\\xbc\\x8b\\xc4\\xe7\\\"\\x1dsP<\\xcf\\x05t.[\\x99)^\\x16\\x8a3\\x95t\\xa7>\\x9bub٩\\xaf+\\xb24yPR\\xb0(\\xb9Yי\\x94N\\xef\\xb0,ETRy\\xbf2\\xf71[\\x1d\\xa3\\rH\\xb6Պd\\xdd\\xf8\\xfc\\x16\\xbe\\xa6Le\\x8b33\\xc5\\xec\\x14\\x1d\\xdeꝺZI#Un!䖓d\\xd2ݱ$\\\"]\\x8c\\xb4r\\xa9\\xe9\\x9c\\xfd\\x9b\\xaa\\xddUE:\\xa1\\xa3Џ*\\x8e\\xb4\\x1b@\\x9d\\xdc\\tܘL\\x13\\x18\\x05]\\xdd\\xf0\\xfe\\x15\\xe0\\x05B\\x83\\xfc\\xb1v\\xb8\\xc4\\xe9\\x00֗\\xd9V\\xfalV\\x19\\x10\\xe7\\xda\\x15o\\xbe\\xff)\\xd1\\x14q\\x89\\xbe\\xf8\\xd2\\aY\\xc9\\xf2\\xad\\xf8\\xa0L\\xd7\\xda\\x1e\\x82\\xf8\\x85\\xcd/\\xfc_0\\xf6\\xe6\\xa2^6\\xeb9M\\x8f\\x95\\xc1\\xbf5\\\\\\x80\\rV\\x12hA\\x04\\xcc\\xc6|\\xb8/\\x8b~\\x85\\xe3T\\x16=(\\xdcF\\xbf\\x89Q\\xa1}\\x0f\\x1a]Z\\xa8nX\\x1a\\xfb!\\xdb\\xda?\\xf4\\t}̔\\xa4.\\xbc9\\xfa\\xa4\\xbb\\xd2=\\x1b\\x96>\\xbea\\t\\xbde\\xc3\\xe2\\xa9\\rK;\\x9f\\xe3ѝ\\xc4\\x16^QE*\\xb9\\xae`\\xe9\\xc7,\\xff\\xd3\\x16\\xcf\\x14\\xe4#\\x1e\\a\\xf5[TS8(,\\t/\\x14^\\\"<\\f2\\xeas~E9\\xa4\\xf8\\x00\\xc2\\xe5ϒ\\xe7\\nOh\\x94fK\\xe0\\xf5\\xa4r\\x01&a\\xb0\\x05V\\xfe=\\xdfW\\u007f\\xf0}\\x8de\\xf8\\xf7\\xe5\\x96\\xfc\\xfe\\xab%\\x82\\xd1N\\xd5\\x10\\x93W\\x11rU\\x92J\\xfbG˲#\\x97\\x8f\\xd2U\\x9aX)d\\xaeNenMǼj*\\xe6\\xa4Ё\\xff\\x88O.\\x9ak\\x898\\x16\\x13\\x95\\xf8\\x86\\xb3\\r/ \\xe5\\x05r*\\xb3\\x943\\x93n&U\\xd53?\\xf8q\\xbeC\\x85\\xc5j\\xbf\\x01}A\\x98\\xa5\\xdf\\xe0m\\xc2+\\x84\\v\\xa1\\x87\\xa36Mj^\\xb1FBK\\x1f4?\\x16\\x84ƞ6#\\x1b\\x06\\xa5>P¤\\x820\\xdd Ω\\xe1!'\\xff\\xc7[\\xaf\\xb4\\x8aW\\xd8H\\xc5WjV\\xda\\xd2$\\x95\\xb6LYV\\xa4\\xfe\\xeaBU\\xb7\\xf2\\xae\\x16Q\\x8d\\xa3HQ%S\\xd2\\x1429!\\xe9\\xa2)GN~\\xa7\\xba\\xdf\\xeb\\u007fVDR\\xa0\\x8b\\x18\\x19\\xbe$\\x8a\\x0e\\xdd+\\x1e\\x97\\x14\\xb9\\xf7c\\xad\\xee\\xff>Z\\x1e\\t>\\xf8\\x9c\\xa5\\xc54[\\xb6\\x14\\xc0\\x9d\\x92\\xa5\\xe3w\\x975\\xe0ĸ\\r\\xd1\\xfaf\\x99J|\\xf4\\x12\\x90\\x1c\\x9d\\x88\\x9c\\x1c+DD,y\\x12\\xfdâ\\x13H\\xb2\\xa8\\xeb\\xa2,\\x05Ώ\\xb1\\xf6\\xefy^)\\x03-c\\x1c\\xa6<\\x1fҢc\\xfa\\xac\\xf0\\x02\\xfa\\x95\\xdcA\\xe5\\xed\\x97s.\\xe1\\xe80~\\v\\xfc\\x83m\\xda\\x0f\\xd8h\\x9a\\x8a֭=\\xc8o\\xb356\\x82\\xb7\\x16\\xae\\xa9\\xd6<?ؼ:\\a\\xa4\\x15,\\xa1\\x99\\xae\\xd8\\x04\\x81:\\xa4 \\x1e\\xa6\\x0f\\x00\\xd17\\x8f;\\x9b\\xdaSm\\xee\\x8e͞ڻ\\xefLs\\xf2Ķ\\n,¼:}z\\x8aΧM\\xfanZŅÃu\\xb3ǧg\\xeb\\xfb\\xea\\xd1B~~l\\xdc\\xff\\xd5\\x11傫'\\xdc\\x1aC\\x15b\\xaa\\x9bX}\\x16W\\x8a\\x9e\\xb6\\xfa\\u007f\\xeb$\\xc6<Փܨ\\x9e<HO}\\x9d\\x93\\xd8\\x13ӈ\\xa6\\xabjt7]~P\\x16\\x8bHt\\xf2\\a\\a+\\x9f\\xf2-#b\\x19\\x9e\\x16u\\xf3\\xb6\\xa3\\xc8J\\x9d\\x9deF\\xb3t\\xdd\\xdaΦ\\xac\\x8ce,\\x8b\\xc2\\x06\\x19\\x06XEw1\\xbeIf\\xb6\\x06\\x9b\\x1f\\x8c\\xd0\\xc3Qf\\x8e\\x937\\xcdqF'\\xd6\\xf1\\x8a\\xe1s\\xaa\\xc5C,\\x00\\xdaI\\x81\\xbb\\x8b\\x19\\x16 \\xaa\\xe2r\\xb6\\x10\\x91\\r\\xf1\\xd8\\\"\\x12\\x13'\\x8b'\\xef/&\\xa8Bz\\xe0\\xa7$ٔ\\x91|\\xe3-\\xa2D4\\x8e\\xcd\\xdd\\x1a\\xb0\\x19\\x15dUUe\\x8d\\xc8*\\xfa\\xf0-7\\xd2Z\\x86,\\xff\\xd4\\x01\\xbaW\\xa2x?=BBD\\x8b\\xc7DCr\\nY\\xa4\\x11\\xa9\\xff>\\x06\\xfd\\xbd\\x1a\\xf2,]Ow\\x95U\\x99hr(\\xa3tY\\x9epK\\xd8Me\\x94\\xeb\\x85\\xf3\\xc0'\\xda\\f\\xbf/whU\\xf2\\x82AZ-D\\xba4\\xaa-/\\\\\\x10\\xc3d\\x87\\x81\\x9f\\xa5\\xddj\\xf2\\x90\\xefuҞ\\xbd\\x88a\\x87y\\xe5\\xcah\\x83\\\\\\xe3>0\\x16\\x1c\\xbaõ\\xbdq\\xe2Z\\xf4\\xbb\\xa5\\xedǢWZ\\x05f\\xb1m\\xd73\\x11\\xec\\xe2\\x1a\\v\\xed\\xb1b\\b\\xa7lO\\xceSQ\\xbf\\xd0\\x05\\x884\\x1eA}\\x11\\xbc\\x17\\b8\\xa0m\\xef\\xe4n\\xcb\\xe9X\\x90]ՙD\\xe8\\x0eVZ]NU\\xddm\\\\\\xa2;P\\xe8\\x87\\fj13\\x17D\\xde\\xf3u\\xcb][oL\\xcf\\f\\xf3\\xd4\\xd6XL\\xe15\\f\\xc1\\x88\\x9b\\x96\\xf72\\x9a\\xbd\\x16\\xa3\\\\\\xa4\\xab\\xdaaL\\x1fX\\x98\\a\\x04\\x1a\\xe0\\x9e\\x1f\\x91N\\xb7\\x00\\x83G\\xf3\\x84\\xc8g\\xe9\\bAP\\xb0\\x93\\xf6\\r\\x8e\\xa8\\x1f\\xa0\\xe5\\xd8+\\xf2\\x933ŜjYV\\xd2\\xc18\\xe5\\x1fp\\x92\\x92\\xd3(\\xceL\\xe6\\xf5j\\n\\x80\\xe25\\f@\\xf1\\xa9ꊉ\\x9f\\xc2\\x1a\\xbe\\x85\\xb6\\xccGt\\rﻏ\\x85\\xfbپ\\xef'\\xbd\\x92\\xef<\\\"\\xce\\x14\\xf3Ӣ\\x13MU\\x87\\xd8\\xf1\\xd5Tt`w\\xbbD\\xdf\\xf5/\\b9ڂ\\x01\\x9bja\\x90lɉ!k\\xd5\\r.\\x9a`\\xc1\\xff\\xa1[7\\xee\\\\ڰ\\x15\\x99\\xa7\\xdez\\x8a\\xbd\\x9c\\xfbN\\x9d\\u007f\\x8a\\x15\\xdes\\xf7\\x99װ\\xc2\\xe2\\xec\\xf6Ӭp\\xf3\\xf1\\\\\\xab0\\xa0\\x8fd\\xf3I\\xf4~|\\xf4\\x8d'Y\\xe7\\xf6\\xc4u\\xaf7\\xac\\xc7\\xef`\\xe5\\xc7\\x1f\\xfc\\x95\\x1b\\xcc\\a\\xafc\\xe575\\x8f\\xcb\\xf8\\x9a\\x0e+\\xbf\\xf1\\xc8\\xfdgp\\xd0\\xc8\\x0e\\xf2\\xdf]\\x8b\\x95\\xde\\\\\\xde\\x1eƚ|\\x8d\\xf9\\xd94\\xa1D\\xe5\\xc7\\xd3B\\x0f<V\\xc5\\xd0ICG\\xa5\\x19\\x11\\x06\\x19\\x1b\\xb1|\\f6Ȱ\\f\\xb8\\x1fcu\\x10B\\x1d3\\u0382\\xad<xt\\xc4\\xf2C\\x17\\xb8Xx\\xf6ҹ\\xc5K\\x8b\\xe7\\xfa\\x17$QN[HEVZ\\x16\\xa5\\xb8\\x82\\xb0\\x9cH\\xd0NM\\xf9\\xc0\\x8f\\xbd\\xe1\\x13DK\\x8c\\a\\xf9q΅\\xb4Ʀ\\\"se\\x11$t\\xbb\\x8b\\xe7\\xceMQuONJRRFD\\x8c\\xa7eY\\xb4,Q\\x96\\xd3\\xf1\\x1fs=}yݠ\\x16\\x17\\xe5\\xd9\\xc2\\xe4\\xcap\\xf4!\\x17W\\xc2X\\x8f\\x11\\xdf\\x05\\xcfG\\xbdj\\x1dsp\\x88\\xe9\\xbe)\\x8cj\\xb3ǹ\\x16&*\\r\\xa5Vf\\x10*\\xd5\\xc2X\\xe7\\xf5\\xfcS\\x16\\x11\\\"2\\xd7%\\x8f8Y\\xdau\\xfa\\xf4\\xaeݓ\\x93\\xbb\\xeb\\ab\\x89\\x14 \\x01煮\\xab,\\xadC\\xd8-\\xaf\\x17\\xd7'\\x17O?rz۶\\x89\\x92\\xb9x\\xd3b\\xa10\\xe44\\x19\\xe8\\xaap\\x17\\xfbX\\x96\\xe8\\x06\\x9b\\x15\\x19\\x81w\\x81\\x1eOd_y\\x98\\x9fL\\a\\xc0\\xf6\\x88\\x12\\xc2M\\xc7\\xe8\\x91\\x11\\xbbZ\\xaf@\\xcfZ\\xa0g\\xfc\\xc9ř\\x02\\xed\\x93\\n\\xcbv\\x8c\\xceb,Ct\\x8dѨ\\x1dfF]\\xe9\\x83\\xf59\\xb8\\xad\\xd9\\xf1\\x0f\\xd2\\x1b\\xea\\xbff\\xa6XO\\xac\\x81\\x1d`-Q/\\x1eW\\x92\\x11(G\\x92ʟ\\xc2\\xdd\\xfc\\xff\\xf4\\xda]~\\xed\\xd2\\xd0'\\x9eg\\xba\\xde\\xe6\\x96\\x03c\\a\\x8b\\xed*\\xf2ئ\\x16)F\\xe79\\xff\\xba\\xa7\\xf0\\xf8\\xffa\\xdc?\\xb7\\x16=\\xcb\\xdcV]_\\xd7\\xd1wt\\xdd/\\xf4{\\x8afb\\xb0\\b\\xf5\\xff\\x94\\x90#*y\\xb5\\xaa&U\\xf5\\xe6q\\x95\\xf4BRMȺ\\xe14%\\xdd.\\xeab*\\x9c\\xb8֛TrTU\\x1fSIJUύ\\xb3 6\\xb8\\xd6˴\\x1f}\\xb50%\\x9c\\ru\\x11\\xd6\\t\\x94\\xab!c\\xaf\\x8dȀ\\xf9\\xaf\\xcdB\\x16\\xc2)\\xd0Ķ7W\\xc6\\xff1u\\xc59\\xac*D\\x99\\x1c\\x1b\\xbf{\\x92\\xfeE\\xc7=\\xa2\\xab\\xb8\\x980Rz\\xf6lV\\xa7\\xd3\\xeb3FZO\\x167T+O\\xfd_\\xd4Jt\\x91\\x86\\x01b\\\\\\xf6S\\xf4\\x9fa\\x89@]\\xaf!9\\xa6\\x89Z\\x80\\x02\\x95OU\\xf7\\xcd\\x1b\\xea\\xf9\\xf2\\xff]5\\x9e?\\xfa,\\x1d\\xa3_\\xcbں/T\\xa8\\xe4\\\"\\f\\xd2<$\\xd0;\\xb8O\\x18\\xb8x\\xdaܚ<p\\x86-0[\\x17\\xf1ʭ*D\\x83\\xb2\\x90mp\\x98\\xff7f\\xc5}}VW,Ê\\x9b\\rU\\x9b\\xde\\xfdд\\xa66L\\x80fP\\xf4l\\xf2\\xed\\xaebӞv5\\x1f\\x8cۊ[\\xb0\\xc7k\\xb7\\xd6\\xc6mT`\\xc6\\xd9\\xfeWkVQW\\x9d\\xae\\x916\\xb67\\x9b\\xdb\\xe9\\xac\\xeb\\xa8zѪ\\x15\\xfe%S\\xd03Q#\\x9f7\\xa2\\x19\\xbd\\x90Q\\xb4l:\\x9d\\xd5Fd\\xca\\xcf\\xd3{\\x98\\xe3H\\xd9nP\\x84\\x97\\xeb\\x0fY\\xaeC\\xe6B\\xfe\\xc1\\xd2\\x06\\xe0\\x0f\\xed\\x17T\\xc0\\x80\\x91\\xac90q\\x17B!\\xf3'\\xef\\xbb,4&\\xcd\\\"b.\\xdcƮT\\x89^\\xa0\\\\<T\\x94\\xe9\\xdcIGw\\xa1^5\\xd5\\x0f\\x93xx>\\x0e\\xfa\\xe8G\\x17\\x96K:\\xbe\\x89\\xc7\\xe9\\x1c\\xed\\xe0\\xc9\\f\\xa8\\x97\\xa6\\xa5i\\x96\\t\\xa5Xї;G\\xbb\\xa9j\\xff\\x02ۃ\\xed\\xcd\\xe29/\\xf7/\\xff\\x9a\\xb8H\\xefA\\x17<\\xa1 \\xbcH\\xb8\\x0f2\\x95 \\x9b\\x81\\xeaԤ*M\\xa3Z\\xc8K\\x11\\x8a\\xc5\\xf4ۨ\\xb6A7\\x84`[\\x9b3\\xe0Q\\x19\\x9a\\xe1\\x89\\xd0\\xe9<k\\xda\\xd3@\\x1b\\x869\\x11*ê\\xf1C\\x806\\x0e\\x87\\xb5\\xc0\\xe4\\xeea\\xc8\\b*$3q\\xadv]M\\x8bg~\\xba2%\\x19\\xa6i\\xe3\\x16\\xfe\\xe3y\\x1c1\\rC\\x9a\\x1a\\x8bݵ\\x10\\x97LَL.ϥ&#qBv/$\\xe3\\xf1\\xe4\\xc2\\x1e\\x8c\\xbd\\xc8djny2b˦\\xe8-$\\xf2\\xfa8-\\x90Cs\\xc5v\\x81P\\x95q\\\\\\xcf\\xff\\t7*.\\xe9N2\\x1aM:z\\xff\\xd3\\xe9\\xa5\\x19I\\xd9?\\x91LN\\xecW\\xa4\\x99\\xa5t\\xec\\xbf\\x17vc\\xa28Z*}\\xf6֔&#\\x1b\\x99\\x85H2\\x19)\\x98\\xb4\\xa8\\xa8\\xa9[ϦSjT!xw\\xc1\\xc6\\xd9\\xf4\\xdeY\\x05\\x93x\\xacy\\xb8\\xd8)\\xc5\\xe8\\xcd+\\x8dn:\\x8b\\xdf6\\xc2\\xf9\\xf6\\t\\x96\\xcb]\\x10\\xe6Y\\xec93\\x02\\x12\\xbc!\\xc6n.\\xc4\\x0ed\\xdd\\x01\\xb0\\x8ar\\xa1z\\x1a\\rX:7\\xac+\\xf1\\x95\\x1f\\xd9q\\xc0\\xd2v\\x8d\\x1f|\\t\\xcb\\x1a\\xa6\\xe7Sm-\\x1am<\\xfaQ\\xcc^=~\\xd3-X\\xd3ɩ\\x97\\xf1E\\xe5\\xd4v\\x00B\\xf9\\x1b\\xe3\\xf6\\xdd\\xe3\\xbb4\\xfb́\\xefAL\\xd0\\xf7\\xa0\\xe7\\xd6c\\xb6\\x84\\x9d9\\xd3\\xfeo\\xf8\\xa3\\x8f\\x12*\\x87\\xde\\xf2\\x13\\n|\\xbdt\\x9c\\xc5/;E{\\v\\xb2\\xe3ZE!r\\x81\\xe8#X\\u007f\\x9a\\x90\\x84,\\x1d/Z\\f\\xa3}\\xdb\\xc3\\\\.\\x8eAQY\\a\\xf1\\xda\\x02\\x9f|\\x80N\\xd1]\\x8fy\\x06֮~7\\x13o\\f\\x02\\x9f ]\\a9\\xfdg\\xe8E~e\\x18\\x18\\xfd\\a\\xb4B#\\x9e\\x19\\xcdF܀S\\xbf\\xe5u\\x81\\xc5\\x1f\\xae\\x8b.?\\xff\\xebB\\\\$\\xb9\\xf4#\\xael\\x88\\xa1\\xb1Օ\\x11\\x86\\xafi2\\xde\\xe0qa\\x1bc\\xfa\\x00\\xce\\x05\\x01юM\\xe1=\\xdbB\\xbb\\xb2\\x87\\xe1簮-t\\xa2Ry\\x890\\x80\\xe5@j\\xd7\\b\\xb0O¯\\xcdј\\xe9\\x06PU\\xd1?\\xa5\\xc6\\x17\\xfa\\x1fP\\u0558^ \\xd8D\\xb7\\x98\\x98h1MM\\xabtZ$\\xc4\\xc8T\\xa6\\xa6O\\xbc\\xd7t<ǎ\\u007f8\\xbf;\\xff\\xa1\\xfc\\xae\\xfc\\x87\\xe9來m\\xd3\\xcd1\\\"\\xedF\\\"F\\xb7o\\u007f\\xb8\\xf8e\\xd9Y0S\\xf8\\xbf\\x90\\x94\\xe1\\xc8Q9\\xd26R\\xc4\\tf;\\x04\\xed\\x91\\xc8\\xee\\xfe\\xaf\\xc7j\\xb1$\\xfd\\xa5c5\\xf7\\xfd\\xaa=miﲝ8Ļ\\b\\x1cC\\xf4\\xb3\\xa1mwb\\x88\\xa4G\\ao\\x0e\\xc6\\b\\x91\\x1e.\\vߞa\\\\5>GЅ\\x86\\x8e&\\xa6KA\\xacv~\\xbba(\\xca\\xec\\xe3jL\\x96\\xe5^S\\xb6\\x14\\xd3l\\xa7O\\xbd.w \\x91?[TKr5렲\\u007f\\xeb4\\xd5`\\xb7\\x9b\\xf4ۗg\\x17e\\xaci:\\\"s\\x8ab\\x18\\x9d\\x82\\xebD\\x9clU.\\xa9ų\\xf9\\xc4\\x01\\xc0\\xcff\\xb6F\\xf8\\xee@\\x029*\\xdc(\\xdcL{\\xb3Ǆ\\x9f\\x10\\xde#|\\x18,^0\\x16\\x8bC\\xf89\\x00/_\\x0f\\xb8\\x19\\r\\x8e\\rȦfM\\xd6\\x11aX\\x8b\\xaa\\x957\\xae\\xa85[\\xe5`#\\x12K3\\xd8x\\bo\\x14T\\xffG\\xc2\\xce\\\\F \\xec@b3J\\xa3\\x98\\xf9\\x02\\xf6% \\x81}\\x0f\\xfflF\\xc5?\\\\\\x17\\x81\\vCy\\xb81\\x14\\x8d߶\\xb6V\\x1f\\xae.\\xac\\xd7\\xfd\\xaazQ\\xa5\\u007f\\x89\\x11\\x96\\xb4\\xf5\\xe2AE\\xb9\\x91\\x18 3ݨ(\\xabfd\\xe4+\\xedF\\xcc\\xec\\xf0\\xe0W\\x8d\\xc0J\\xaf\\x17\\x9f*\\x8c\\xc0Mw\\x87'\\xef1q\\xec\\x91\\xe1\\xcegF\\xb0\\x9fa\\xfc\\xfc4kC\\x1e}c]\\xc09\\t\\x9d\\x9b3h\\xe8,\\x06\\xc8\\xe5\\x10U;4\\x01s\\x14V\\\\&\\x03ʾ\\x91\\x8e\\x95\\xa0u\\x9d7\\xb4\\x1d\\xc3.\\xbf\\xaf\\xdb9#\\u007f\\x9bb)IE\\xb9\\xadh\\x98Υ+\\xd68\\xb7)J\\xd20o\\xcb\\x1b9[_qL\\xa3\\xdf\\x1f\\x94\\x8a\\xb0\\x89V\\xbdmu\\xd32\\xad۽r\\xd5\\x13찦\\xc9\\x0e\\xbb\\x02'B\\xe2\\xa04<e8\\xf6r\\xcc}U0\\x05\\x87\\xf6a\\xd0G\\x94k\\x10\\xf8\\xea\\xe3\\x8aWn7\\x83rK)\\xf1P\\f2\\x94)\\xb6\\xa2\\x1d^w\\xa9\\u05caDlܒ\\xba͔\\x13H\\xeb\\u007f\\xf5U\\xa9o\\xa7^տ\\xa4j(!\\x9b\\xb7\\xa5\\xd0\\xe7\\xe0\\xf9\\xd3і\\xc5\\xfa\\xaf\\x85|6\\xb0..\\x8b\\x82\\x8c\\n=sY5{쟩.\\x9b=n\\xe2Y\\x1dEG\\xe6y\\xe4L\\xddb\\xf1\\x0f \\xf7\\xff,\\xd5^4!C%\\xb9\\xbd\\xc2q\\xc0\\x1f\\xa02Z\\xb9\\xd5,ӛPfX(\\xef\\x1c\\x9em@8\\t\\xa4J\\x0e\\uf271m\\x94\\xb7\\xba\\x8bʈ\\x1eCU\\xc9\\x00z\\xcb\\x1a\\x15KXFes\\x0e\\xfd|6\\xb9\\xfb\\xf6\\u05fd*\\x85\\x8a\\xf4A[b\\x02\\xc1?\\xcf#FЯ\\rn\\xf6\\xefZ\\xb3\\u007f\\xb2\\xf1\\x0eIe\\xfe\\xdc\\xeb\\xce\\x1d\\x98\\xaf\\xe7]1iڒR۫\\xa4\\xfdf5\\x8b\\xce&\\xf3\\xf4\\x96\\x0f\\xeb{\\xcceڅ \\xd7\\xc5F:Ϟ@\\xe1h\\xfb\\xf0\\u0086;\\xcf\\x16\\x97s\\xfb^\\xf8\\xc2}\\xd5{f\\xc6\\xea\\xfe\\x9f\\xc6\\xf6\\xa6\\t\\x999\\xa5\\x14\\xebnm\\x96\\xe7g\\x85\\xf1d͑\\xf88\\x96\\xc8:\\xf2ۊa'D\\xc3\\x1e _w\\xd9\\u007f\\xa6\\xa57\\xd8\\xdf%\\x866\\x80\\x04V\\xea\\x85\\xff\\x06\\xab\\a\\xc8\\x04\\ra\\x84g\\xea\\xb7鸸G88@\\xf3n\\xdb\\x12\\xe4Ք\\ay:aV2\\x03\\x11\\x80x\\xa9\\xf6 fh\\x18=\\x05\\xae\\x15\\xc0l\\xa1\\xbbp\\xa3b9ʓs'\\xa50W7t\\xc0\\x84F\\xb2r\\x13\\xf2\\xe8\\x01^\\xb9\\x1d\\xe6\\xc36\\x17\\xfeшYD\\xfb%PѲ9*\\x93jv\\xc1\\x14\\x15\\xec`S\\x8c\\xc7Y\\x9c\\x90\\\"\\x9a\\x05lɚ,\\xe2\\\\6\\xae\\x8d\\xc7\\xd7V-\\xf7\\xd2\\x1aX\\xf9\\xd6\\\"\\bEh).\\xd7\\v\\xed\\\"\\x95\\xea\\xea\\xf2\\x0fZ^\\xc245\\xe9K\\x9ai&\\xbc\\x96ܗ\\f\\xc73.E#\\xae\\x056E_\\xb3,K\\v\\xf2\\xf4\\xf0\\x98\\x9efa\\x81\\x1e\\x1e\\xd3\\xd3\\xe4\\x03zxK\\xb1d?\\x96\\xed\\u007ft\\xb9\\xe7\\xba=Z\\x1b\\x15\\xa8\\xe2\\u0603\\x92if\\xa6\\x8e\\x1e\\x9d\\xca\\x18V#\\xa2\\x19\\xaa$\\xa9\\x86\\x16i\\x88\\x82DǺ\\xdf\\x14_Ked\\xc0\\n\\xdd7\\xf0\\x9d\\xb0h3\\xb0+\\xce \\x1e\\xe7\\x0ea{,t\\x8a=\\xc5\\xf6\\xa6@4\\xc8\\x1d\\xf1\\xc1'\\x0f0\\xb2\\xe2c\\x12\\xf99U\\xc2Vį\\x99\\xa8\\xbe\\u05c8Ǎ\\xbdud\\xd6\\xfc\\x88\\x85%\\xf5爄s\\x8e_\\xab\\xc4\\xfd380\\xee\\xbf\\xdf\\b\\xf0\\x19?^\\xa9\\xf9N\\xae\\xff\\x1e\\xf7\\xe6\\xb1\\xdf_\\x19\\xbb\\xd9&\\xd2~Y\\x8d\\xe4\\xb1v'\\x9a\\xae\\x1d=J\\xe5\\xc6;5\\x9c\\x8f\\xd0\\xd5\\x12qL\\xac\\x9dO\\x9d\\xa9?\\xa9\\xabr\\xa3!\\xab\\xfa\\x93\\xf53\\xa9\\xf3\\x1a\\x15\\x18\\x84\\xabj\\xdd\\xe9\\xe9n\\r\\xc6p\\xf8vE\\xda\\xffDi\\x0f\\f-\\x95Hl|\\xa4\\xf2\\xa6D\\xbb]\\xa5\\x18\\x14ѥ\\x88+v\\xc4X&\\xd2\\xff\\xae\\x93\\x89J\\x1dэ\\xa0\\xf7\\xf4ߔG\\xdbѪo\\xf7\\xdf\\xe3$m;\\xe9\\xa0;l\\xbf\\xbb&l\\xc4Z\\xb8Mx@\\xf8\\xc9\\r\\xc8s<Eq\\x00\\x88\\xde\\x06\\xfb\\x10\\x8b#\\xc3\\fC=\\x1c\\xfdx\\x1cs\\x88\\x99N\\x176\\x86\\xc1\\x82\\xc0Ī1\\xf48\\x06\\x1d\\xb0\\x13-\\x8c\\r\\xf6\\fa\\\"\\xdd=\\x10(M_\\x05@\\x99\\xf0\\x9d\\xe8\\xee\\xac.m\\xa5!\\xda\\xdd\\xdaC\\xa7\\x90$f%\\xc8\\b\\xf3d\\\"\\xa5E\\xb1N\\xc5zE#\\xbe.\\xeb\\xa2\\\"\\xc1Ѕ\\xf3\\x86F*2\\xa1\\xa2\\xb0\\\"\\xe9\\x12\\x91\\x1d\\x98\\x99\\x9aV\\x90I\\xdc\\xe8\\xffv\\xb8\\x82hRꕭ3IKUb\\x9a\\xe5N\\x9aтiL\\xfa1߉\\xc7\\xe9\\x17\\x1b\\xc2\\xe8\\x9dz\\xc8\\x17eHT\\xa3݉\\x9c\\x12\\x91%b]\\x8d\\xcb$I4\\xd5U\\x1c\\x15\\x9cT\\xb2\\xa1`\\x9d(\\x9a\\x82eM\\xd2aBE\\x01M-\\xca\\xf9\\x9fԱ\\xa4\\xc9\\xf4|DN\\xf6\\xbf u\\xb6)Q\\xbdb\\x90\\x94\\x95J\\xf8v\\xd4\\xd01\\xb7}\\v˴\\xef)0\\v\\xd2\\x15\\xf6\\xbb\\xcdˣI \\xe8\\xd2zyu=\\xed\\xa3\\xb7\\x01\\x04N\\x84\\xfc_\\xe1Rh#\\x14\\x82\\xa1o\\x8ag\\xa7\\xb9\\x9b\\x96\\x97\\xb7<Nc\\xf3\\xe9x\\x99u\\x9b\\x97\\xbf\\u007f\\xf97\\x18\\xa7\\xc6$\\xeb=y\\x03\\x01\\x82u\\xe6\\xa6\\x01\\xadrZd*f\\x9b\\x810\\a{\\x11G\\xb0\\x1e\\xa8\\xd1\\xc0\\x12=\\x83ձc\\xb6b\\x95\\xed\\xb8\\x15Gr\\xa2|\\xd7)\\xa3\\x9c\\xa8\\xda\\t\\x19GJ\\xed\\xb8w̔\\x94\\x19-\\xad\\xf5\\xff\\x96k\\x86\\xef\\xa2\\xe5\\x19E2\\x8fy\\xf1v)\\x82\\xe5\\x84]M\\x96\\x8cSw\\x95\\x132r\\xed\\xb8]\\xb6\\x14\\xfbX\\x85~ښ\\xd6\\xff%\\xae\\xe4\\x01\\x97\\xea\\xd7\\xe9\\xb7\\xf3\\x01!\\xc1\\xa4\\xdf0\\xfef\\x81\\u007f\\xf2$\\xa8\\xb5kT\\xe8E\\u007f5&\\x17\\xbf\\x82#\\xcaW\\x8a\\xf2\\x98T\\xba\\xb5\\x9a]\\xbe\\xd0X.Uo)\\xa1\\x97U^\\\\\\xffkE\\xf9\\xeb\\xfa\\x8b+R\\x99d\\xcet/\\xf4\\xbaw\\xa6I\\x99\\xc9\\x05\\x97/\\u007f\\x86Ź\\xf2\\x1c\\xb0.pF\\x0e\\xac#s\\x03t\\x92A\\f1f\\xe6\\x12\\xc8\\x00\\xf6y\\tWA\\xc5ރ\\x9a\\xf0\\x94@I_hrx;\\xa6\\x83\\x83\\xa2Γh\\xab\\xb5Rm\\xa1Vm\\xedB!\\x92*{\\xba\\xf4 \\x1f`O\\x85g\\xbb\\xd4y\\x19%$\\x95\\xca[\\x06}p\\x9aDH{Ns\\x03Q$\\x8a\\x1f\\fVm\\x9fW\\x9d\\xbf%\\xaa\\xec\\xbb\\xda\\\\\\x9b\\xce5\\xfa<\\rd\\xebZ\\xdcQ\\xe7\\xb7\\x13\\\"\\xb1\\x15\\x01\\x12\\xf8a\\xe1\\xa8ܟ\\U000cbedb\\xc4B\\\"\\x91\\xe2f\\xe0a\\v)Y\\xc5\\xd0w\\xcc)*\\x11\\x89\\x1c7\\x12qbἬ\\xbd\\xd9\\\"\\xb3;\\f\\x03g\\x14d\\x11\\xcf7\\xe3\\xb2\\x14w'\\x9b\\x90\\xa4\\xa1+\\xf9\\xc1J\\x89\\fs\\\\0\\xed\\xafg\\x18ӭ?\\xc84f\\xee\\xacixW\\xa0\\\\{a00p\\x15\\x8b\\f@\\x8e\\xe4\\xc4!\\x1a\\x06\\xea\\x13{Z\\xb3\\x9a\\x8e>\\xed'\\xb23&\\xd2$S\\x96\\\"\\xedҸ\\xeaƾc\\xb9Ne\\xb1\\xf1E]\\xb4\\x1b^%C\\x1ee!\\x89\\x0f\\xc6#u\\xcd\\xeaZ\\x85\\xa4,J\\xa6\\xa2d\\xab\\\"\\xba\\xd6ɹ\\xd6ɽ\\xb7\\xbe`g쨬/dd\\xbf\\x18\\xef\\xb0\\x00C\\x88\\xf7\\xfdA\\x98ǝ\\xa2\\v\\x12.\\xd5$&\\xf6\\x0e&\\xac\\x13.\\x82{\\xf1\\f\\xb2\\xd1\\xe2\\xb4h\\x8a%\\x98L\\x8d\\xd1\\xc9\\x19\\xd9u\\xd0Z\\xc4E\\xef\\xeeOa\\x8c\\xee\\xfe\\bƯ\\xff\\x02Ɵy\\xa5\\xa2\\xa0X$\\x15\\x00>W\\xe8/Z\\xa5ҀA[R\\x9c\\xe1B7\\x84\\x0e\\xf3\\xa2@t\\x12\\xf1ʐ\\xc5\\x18\\x94\\xe9\\xd0\\xee{d\\xbeƽ\\x86\\xae\\x17\\x12P\\xb6\\xe8\\xc8\\xcf\\xe1\\x83\\x17BD\\x0e\\xd4\\xed\\xffc\\xedUG\\\"_^Ρŕ\\xbd\\x1f\\xed-\\xe6V\\xe5\\x0f\\xb8V\\xaf0\\x17\\xddqhGt\\xae\\xf7\\x01\\xb9g\\xb9\\xdf[ꬡ\\xf7\\xbdj\\xe7\\xc1\\xd5\\xde\\xfe\\xdd\\xefJݼ\\xda۽\\xbfk\\xc7\\xd8p\\xdb˖\\xcb\\xd9\\xdeea9f/\\xbb\\xbfܩ//CN\\xd5\\xe5\\u007f\\xa1\\xba\\xfc\\xe7\\xd1\\x17\\xe9u\\xe6\\xae\\xec\\xb7X\\xc4L\\x11Z5\\b)\\v\\x88\\xb9\\x13x\\xc2\\x16\\xba\\xa3\\xaeD\\x0f\\xf7\\xbf\\u0530\\xbb\\x0f\\xdea\\xe5\\xbcha=\\x8d\\xf9\\x1b\\xa5V\\xfc\\xcc\\xd3;\\xeeHww\\xf4\\x92\\xf1\\x8d~`W\\xa8\\x876\\xbbjm\\x18\\xfbǾ!\\xda(ڰn@o5X\\x19pwƈ\\xfbCᡂ\\xdecr\\xac\\x8c\\x91N\\xa2\\xb6(\\xfby^\\xba\\x17\\xd6ɪ<\\xba\\xee\\xfd\\xe0\\xd7p:\\xf5\\xb5z\\x87\\x8a*+`\\x88q\\xd0t\\xd2-\\xcf\\x12\\xc3\\xce\\xfb\\xf9):\\x83%@2\\xe0\\x8b`\\xaa\\x87`\\x9d5\\xcb]\\x85O\\x86\\xdbN/\\xd31\\xf6\\x1f\\xd1[\\xa9\\u0590\\x12J\\fuu\\xbe\\xc6M\\xc9@\\xe1AX?\\xc0\\xed\\xa5\\xfeܠ\\xa3\\xa8\\xd0ny\\x0f\\x17F\\xb0\\x87\\x0eWOJ6\\x9eZ\\x905\\xf2ٓ\\x92\\x84ۯhcI:\\x19\\xdf&\\xb1O\\xb3\\xffm:@-La[:Y]\\x9bJ\\xf4\\xb0$\\x17\\x96;D?\\xd0\\xc3\\x16\\xa0\\xe0X\\xb8g\\x16\\xd8\\xe7\\x1b\\xd7Ig\\xb9 K\\xb8\\x97\\x98\\n\\xe5N>\\xfe\\x9b,7\\x80\\xb3\\xb5\\x0e\\xae\\xcf\\aB\\xdb2\\xf1\\xe7\\xda\\xc3Kl\\xd7x\\xce\\x0f\\xbb,?\\xbc\\xd6\\x01\\x1c0\\x1e \\xfftr\\x13R\\x04\\xcf\\x13\\xa4\\x10\\xe5W\\x9d1g\\x82^r\\xe9p\\x89^\\xf2~\\xa2#2\\x8f#\\xd2D\\xee\\x17ٰ\\xfe\\x91\\xa7\\xee\\xbe\\xfb\\xa9\\xbb?\\xcc,\\x9ckew?\\x16\\xe5\\x89E\\xbaۂ\\xae\\xef\\xa7\\\"\\xa6\\xe3\\xc8\\x16~\\xb9N\\x16'\\xa80\\xb8\\xdf-\\u007f\\x8f\\x8d\\xcc(\\u007f7\\xdbm\\x18\\x8b\\xaf0\\x9c\\x8b׆}\\xf08\\x95\\xfc\\xae[\\xef\\x83\\xe5p\\xee\\xfax#\\a\\x18\\x04\\xd0\\xf8\\x90н\\xc1MN\\x1b\\n\\x190\\xb5nF\\x1a\\xa3\\xd5\\xdf=_\\x05\\x84\\xe7\\x1b\\xd8l\\xaf\\x141\\xdb̸\\xd76#\\xe24N$:\\x89\\x04\\xee\\xf7\\x87\\xa9د0\\xe3&\\x00\\x13\\xebK:\\xc0\\x19'\\xddD\\au\\xabl_\\xf6\\xd7\\xff\\x9e\\x19\\xbb\\x13\\xcc|w\\xc6\\xccO\\xfb\\x92\\xe3H\\xfe/\\x8d\\x0e\\xb3\\x17\\x90\\xed\\x99O\\xe8\\xf6\\x13P\\xe7\\t \\xd8L\\x8b\\x0eǊ\\xfe\\x1c\\xfb.\\x068d\\xbc\\x17\\xe24\\x1c,Â\\x9b\\xae\\x99\\xac\\xdf\\x06\\xe4\\xc6=\\x12/\\xcds\\x81m\\x83v\\x1e\\xafP!W\\xa1\\xb2.\\xfa\\xd7[\\xe8\\u0ea4G\\xb1\\x81\\xa5\\x88rW\\f\\xc5\\xd2T\\r\\x10q\\xecn*\\x94kA\\\"\\xa1\\x8fW\\xf5\\x93\\x9av\\x8bf!K[j\\xe8\\x19}F\\xd7\\x1b'\\xb5\\xfe\\u007f\\xbd\\xfa\\xe0\\xd5h\\xee\\xe0\\xd5\\a\\xdet\\x8b\\xa6\\x9dԫ\\xe3V\\xb1`R\\x81\\xfe\\xee\\x18\\x16\\xa9*\\x91\\xa6\\x87\\xbaK\\x89H\\x8a\\x8a\\xe5\\xa8v\\x92\\x9e\\x05\\xaa5t\\xba{Fo,i\\xe9;\\xaf>x\\xe4\\xfd\\a\\xaf>H\\xef\\xed{\\x97?E\\x95\\xbaߢ\\x1a\\xf6< \\xc3(>\\x17#\\x98t\\xce!\\xaa\\x19\\xdb\\x1d\\xa9\\xc4g\\xe3a\\x18\\xf3\\xc0\\x0e\\v\\xb0\\x19\\xb3thl\\x84$Nӈ\\x99c\\xc3|N\\xba\\x05\\xcdb\\x91l\\u007f\\xe2\\xd6X\\x9eJf\\x0feD\\x16\\xe8 \\xe24\\xa2¹\\\\\\xc0:\\xb3\\xc9\\x02),z\\xf4\\xa370rX\\x99(ʩ\\xed\\x18^ȩ\\x97E\\x14G.\\xb8\\xb7>\\xb1\\x9d\\x88\\xf8\\xc14\\xbb\\xb3\\x94\\x8bғ\\x88\\xee=\\xb4\\xca\\x02\\x13.\\xfe\\xe8\\xa3\\b\\xe62\\x91w\\\\\\xab\\xe8`\\xaa\\xc5/\\x1b\\xe1E\\xb6\\x98\\x14\\x9f܄y\\xdc\\x06\\xec\\xbaf\\xf8C]\\x80/\\xbf,\\xa4\\xaa\\xbdB\\xa3G\\xff\\xa3\\xb5j\\xaa߃\\x95\\xa8\\xdb[]f\\xff\\xf8\\xb8\\xb1~\\xcc\\x04\\x95\\xf3\\xca\\xc2\\x04\\xfd\\x92[\\x82\\xc0\\xe4\\xba`p\\xf46;.\\xf4\\x80Y\\x91\\xe5\\x89\\xf3Ӱ\\xfc\\xf1\\x9aWl\\x01\\x14\\x1dU\\x06\\xab\\xa9\\xb5\\x1e?\\xed\\xa5\\xee*\\a\\xec\\\\e\\x85.\\x12.\\v]\\xba\\x88\\xe85\\xf4\\xfakp!k]X\\xd1\\xedua;+\\x02V^\\xa1\\xeb\\x82\\\\\\xf4oC̱\\x04\\xed\\xbd\\xe7\\xe0]\\x0e\\xfc\\xa3\\xb1\\xb9\\x90q\\xb0\\xca\\xc36\\xe6\\x8b\\v\\xcc/\\xc1\\xa42\\xf0\\x11\\xb5Y\\xb2U\\t\\x9akX\\x87\\xca\\x05\\xa5\\x8d\\x89\\xc7T|C\\xaf`\\x1dอe\\xe2\\x03\\xf3W\\xff_\\xc0Vi\\xd7\\xec\\x03f`\\x1cP\\xacݘ\\xe4n\\xd2R\\xae\\xd6\\x00\\x95\\xf6\\x8fR\\x9e{-B\\xbbm\\xfa\\xe2\\x8e\\xc7E\\xcfC\\x9c\\xac\\xb6\\u007f\\x93F\\xe2\\x19\\x16\\x97\\xc4엶}\\xc0\\b\\xcc\\x03\\xf2\\xa74\\x95\\xee\\xed\\xa6\\xf4\\xffBw\\x98uO\\xd1=\\xe3׳l\\xe3\\xe3\\xf1N,:\\xc0\\x04\\xe4~\\xe01\\xb0\\t\\r\\xf2\\xc5b>\\xc3\\x02\\xadU\\xb8ߋ~{\\xed0Ç*ې%\\n&2\\xdf\\x03E3/\\xe6X^\\x14(\\xa7T\\xf0\\xa9\\xa1\\xdfa\\xb7\\x15\\xb3I\\xaa\\x12\\x8f\\xf6\\x1fѰ\\xe6j\\xbf;}4P\\xee\\xaa[\\x92>\\xfbD2N\\xfa\\xefNɒ(\\x95\\roϵ\\xd9\\x06\\x89Λ\\x9a\\x994w\\xc40)<0\\xe3&\\u008c\\xb1\\xfe\\x1b\\xec8I\\xa9_\\x92\\xdd\\x18V\\xce\\x1f<\\x1a\\xe4[u\\xb3l\\x1f9d\\xc4\\t\\xba%\\x90e\\x91v\\xe4F\\\"_0\\xb3~3\\x85\\x93\\t\\rg5zw\\xdb\\x13Qs0\\xfevٽM\\xd3\\xd1\\xf7\\xf8\\xc8݅\\x99b\\xfc\\xed\\xb8\\x8dj\\xab:Lw\\v\\x19\\x98 4\\x9f\\xb4\\xd7\\x13\\xe2\\x88\\xd4d\\xaf\\xb5ɔ=\\x9e6\\x87ngw\\xfa\\xbe\\xb8=\\x91\\xeb\\x17\\xa0\\x97\\x9b\\\\\\x10UI\\xaf\\xf3\\xbc\\xb7)ˍ\\xa7\\x0e\\xe9\\xf6w\\x92\\x83\\xb4\\xb8\\x1a\\xc6\\xf3\\x89=f̟\\xfcr\\xb2\\b\\xc9s\\xbb#\\xa62\\xbc\\xdb\\x0f\\xd8zn\\xc2fY\\xd2H\\x1f\\xa6\\xc1\\xb9\\x96\\xaf~̎\\x97N\\x0e\\x93\\xe4d\\xb1\\xff\\xfd\\xd7\\xc5t\\xebƋa\\x16ݱ0O\\xfc\\xb5T\\xfeb\\x96\\xbd\\x8a\\x1f\\xe2\\r\\r\\xd2\\x11\\x18\\n\\n\\b\\x9e\\x95V\\xd8\\\"sR\\x90\\x13\\a\\xb4v>O)\\x1f\\x98\\x8c\\xa6\\x91xGV\\x14\\xa7r\\xcf\\xfe\\x80\\xc5NPQA\\x03NZ\\xdd|\\xf6\\v\\xd0z<\\xb7Z\\xca'\\xb4\\xc8\\xcc\\ue097\\xaa2\\u007fx\\xa7\\xde]\\xebN,\\xdc\\x12T\\xb35ft\\xb5\\rC%\\xbaeZ\\xfaÐ\\xef\\xa79A>\\x9a\\x9d\\n\\xaa) {X\\xaew\\x1a\\x8dƼq\\x90\\xcb\\x18\\xfd!\\xf7\\xe9\\x82p&\\x8cE\\x1cp\\x82R\\xe9\\x88\\xf3\\x9f>\\x0f,\\x97A\\x92rm`\\xe1f5\\x03΄H\\xcb\\xcd\\x1fy\\x88!M\\xaa(S=!\\x9a\\xc1\\xdb{[\\x00\\xbc\\x80I\\\\\\x97c1Y\\xa77J\\x15w\\x86\\xa2D\\xe7\\x8d-ꆔ\\xa9\\x92\\xa8\\x10o\\x16(S\\x9f\\xdc\\x00\\xf5\\x125¢\\n>\\xd8r\\x99>\\xee;U\\xf5@G\\x96;\\aԭk\\nC,O\\x91\\xf9\\x83\\x81\\xcdw#Bz\\x84%F1Pt\\xfe\\x11W\\x998\\x1b\\xd0\\xf6\\x1b\\\"&3k7}\\x12 \\xe4\\x8a~\\x9e\\xf9T\\xca%R\\xe3x\\xc9$\\xa8\\xb6ï\\xd8=\\xbd8\\x9f$\\x9el\\xdf\\xe0ؚ\\xab\\x12-\\xeaF\\\"\\xfd\\xb7\\x17\\x1d\\x99\\xc4\\\\\\x99D\\xaat\\x944\\xad#剨\\xabe\\xb1\\x96H\\xe2\\xd4ޤw\\x9f!\\xab\\xbac\\xbckW,\\xf2\\x02\\x11\\xff?\\x8a\\x186\\xf1_ۛ\\xab\\xb9\\xb9\\xf3\\x11\\\\R\\b;\\x80\\xaa\\xbc\\xde,j\\x10j\\x19QlL\\xac@N\\xb6\\xeaQ\\x0f\\xe3\\xd8\\x0e#e\\xa8漧:\\xa7Դnm\\xdb\\x16w\\x92J\\x86\\xf6}\\xba.\\fb\\xbdE:\\xce\\x02\\x16\\xe4\\xed\\xc2\\xdd\\u0083\\xc2c\\xc2\\x1b\\x98\\xdf+\\x82\\xe2~\\x1c|\\xbeL\\xf0\\x032DF\\xd1Um5\\xe8\\xe7,r\\xad\\xb9E\\a\\xdb\\xd0\\xd03\\xeb\\x05\\vC\\xf2\\b\\xa0#m̯\\x9b\\x81@\\x99\\x1d\\vմئ`\\xd6\\xc1\\x9c\\x19\\x1f91\\xf6`\\x15\\xba,*\\xf8\\rH.\\xaaZ\\xb9\\xe2x\\xb7ŬbuJFo\\x90!\\xabO2q\\x06\\x06g\\xc6\\x1bh\\xf9\\x9d\\xa5\\x8eo\\x01\\x83 ]\\xce`K\\xec_b\\xe1\\xab\\xe3W\\xe4\\xcc9\\x90I\\xac\\xcaY\\x0e_PǦ\\xd4F\\x8a,ZNi\\xdb\\xf4ɤ\\xa9z\\xfb\\xeb{\\xa7\\x1c\\xcbl\\xd3V\\\"\\xdb`\\xe7\\xccʊ\\\"jd\\x1a\\xa1 b\\xa6\\x8b ܗRf$@h\\x1a\\xbe\\xeb,XF'\\xd8\\xc1\\xfb\\xdfb\\xb3\\xf6\\xc8\\xf4D\\xa0A%\\xd9\\xc1s\\x1c\\xed\\x80\\\\\\x81\\x17s\\xa3\\xb0\\fY*\\x83\\f\\x9d\\xe7\\x9a+\\xc1\\b\\xbcx\\xd9\\x1f\\xc6\\xe2S\\x15a\\xc4\\\"͌l\\xcdV\\xe8F\\xf1C+\\x1d\\xf2\\x82f\\xcde\\x90\\xa9\\x1c\\xa1\\xf3^\\xa6\\xff\\x9e\\xbbb\\x8aȘ\\xa2\\xf8\\x8a\\xa5T\\xc6'\\x8d\\xc5\\xe9\\xcb\\xc2\\xf4\\xa2\\x93u\\xa9ғ\\x89_(\\x98'\\x94\\xeex\\x85n\\xf4\\x15e,\\xe8\\xf7\\xba\\x8f\\x1e\\xd8\\x01\\x1a\\xd1e\\x96\\xb0v\\x98)\\xc9W\\xfe\\x95\\a{L\\xecp\\x83$\\xe8S~=\\xa7\\xdd\\x18\\xcfPm*\\xfbI\\xd3j\\xba;&\\x06'\\xf5\\v\\xe7\\v\\xe8\\xd4rw\\xb5\\xdf\\xe3\\x99@!v\\a\\xc3^pY\\xfe\\xd4\\x1c\\xbd\\x1d\\x90\\xca\\x19\\x90|\\x99\\xfe\\xe6\\x9b\\x15XGo\\f\\xca\\xe8A\\xd3|\\xb3١?\\x13\\xddi\\x9a\\xfd\\xa7\\xe8\\xbc@\\x97\\xffΤ\\u007f\\x1d\\xb3G\\u007f\\xf4o苆\\xf7P\\x11f\\x01\\xb9\\x9b\\xcaB\\xa3\\x19ǜ\\\"\\xac\\xbd\\xd9ߨx\\xeb\\xfc\\xd9C\\xfc\\xcd\\x15\\xa70S\\xf7\\xa9~\\xbf渲_\\x9f)0\\xe7\\x03\\x02i\\xa4\\xff\\x97jC\\xa5\\u007f\\v\\x0f^{\\xed\\x83ע\\v\\xefuܹө\\xab\\\"\\xa9T\\xe4\\xaa\\xd4\\xe99\\xd7y\\xef\\xba\\x13.\\xc1\\\\oOs\\x95\\x86\\u1cc8\\n\\xfa\\x02\\x95\\x11g\\xe8\\xf5\\xed\\x1b\\xc1\\x97\\a%\\xac\\\\k\\a\\xf4\\x9b\\xf3\\x83\\x1a\\xedp\\xaa\\xed\\x90>a\\x98\\x06\\x80\\t\\xb8v\\x83P~\\x1a\\xdaH\\xfe\\xd90Zz\\xdex(\\xaa\\x1aw\\xedY\\xee\\xf6\\xee\\x8a7\\xa2\\xf3\\x96y-\\x9aH_]!\\x92r\\xc48pT\\xb1D-\\x9ev\\x93n\\xfe\\x1d\\xc4|\\x85۪\\xb8O=\\xc4\\xde弑3Z\\x06ݹ\\x11\\xbf\\xab\\xd7]\\xdes\\x97\\xa1F\\x17\\xa4kwO\\xa6\\xe3\\x9ah\\xcbG\\x0f\\x18G\\x14\\x89\\x8c\\x1dI\\xc7\\f7\\u007fm\\xbe\\xf0\\x9f\\xdcJ\\xcb}\\xd7\\u05f8\\xf1\\x04\\x87}-\\xb4\\xfb\\x81\\x8f}\\xf7z\\x8f;\\a=\\xce\\x168G\\xc0i\\t\\xbaKe\\x011ޮf\\v<\\xbe\\xe2@\\xcd\\xdcƴ\\xc6\\xcfJ\\x98\\xfc\\xddE\\x18@\\xfb\\f\\x04\\xe1\\xe2\\u007f\\x15ES\\x12\\tF\\x97p\\xff\\xb3\\xcbHX\\xee-/\\xdf\\x16\\xa2\\xe8\\xb2\\xc7k\\x99⮛\\\\\\x8b\\xb3:[\\uea5d&6QO\\xec\\xff\\\"\\x17\\xa9Qa\\xa8W\\xae\\xc7&۬\\xfdm\\xf4r\\xb9C/\\x97Ƚ\\\\\\a\\xe6\\x0f\\xbf\\xf6\\xd7_{\\xf3\\xd5\\xdb'\\xd2\\xfa\\x98K\\xbb\\xe0\\x1d7\\x91t&v\\xb43\\x89\\xde\\xd2x\\xf3\\xe4\\xcdox\\xc3\\xcd\\v\\xab\\aZ;\\n\\xfd\\xdfK]_ӌ\\xfd\\x0f\\xa9\\x85z\\xdd\\xed\\x1c\\xe4\\xb6\\xd4\\xcb!\\xd6\\vĹ\\x81\\uf1fdG\\x88\\xc9i\\x80\\t5\\x8c衊7\\xb1\\x15b\\x8b\\x15\\xf6\\xa2!Aϖ\\a\\xb0\\x1c\\xb4\\x9a\\f\\xe8\\x88{\\x14Z\\xf9\\xaf-?a[\\xad\\xf2\\x98\\x86\\xf4\\xb1\\xb6x0#K1\\xa7Pn\\xe6\\xd2T\\x15\\xb5\\xb4Jn\\xda\\xf5\\xab\\x95\\x14`b\\x04\\xe8\\x18\\xab\\x84\\xd0\\xc1\\f\\x95\\x1f+\\xfb\\xeb\\xc3:\\xa6\\xe9G\\x033F\\xabQ\\xfd\\xafP\\x8cG[\\xe5\\x15+f\\x129^,\\x83\\x84\\xe5\\xa1\\xe0\\x88\\xa1\\x8e%j\\x99\\xbc\\xa1\\xebX\\xabdbDOU\\xaa\\x9e\\x1bs\\x8b_\\x1dԈ\\xc4\\x16j3\\x91p\\xbb\\xac\\x18\\x86k\\xb8\\xbcJ\\xd1\\xd7p\\xbc(l䨄\\xf8\\xac\\xe7b\\xd1`\\x1fa\\xf8!6\\xc3\\xf0D\\xee\\xab/\\x97\\x9e\\x93*\\xa3\\xff\\xb4ڡ\\x1fbG\\rg\\u007f\\xff\\\\L\\x18o\\x1d\\xa9\\xa4v\\xfa\\x978\\xef\\x05\\x1a\\xca\\xc1\\t\\x86 $2\\xcf\\xda\\xe0\\xba8\\xbb\\x15*\\xec\\xbb\\xefp\\xbd\\x9c\\xf5\\\"\\xfd'\\\"^$\\xe1h?\\x8b\\xd6\\xf2s;\\xb3\\x89\\xfce\\xc6 \\x87\\x04-\\x127\\xf6\\xdc%\\xacs\\xd5\\xff\\xac\\xa0\\t\\xf4\\xf0,ц\\x1d\\vZX\\xb1\\xb2\\xd0l\\x88\\x02GJGS\\xd7\\xff\\xa7\\xbe\\x80\\x02\\xd5\\\\e9\\xb8hUy\\xf5\\r\\u007fI\\x84\\x01_\\xd4>:~;\\xb4\\xc5\\x1c^G\\xce\\xe1\\x1f\\x10\\x95Ӕ\\xd6\\xe8\\xb3a\\xb2\\xdc\\xf0\\xb9\\xb59\\x11\\xee\\b\\x96\\v\\xa7ĭ,\\xcc\\x05\\x034\\x1d@\\xedB2ڹ\\xf1\\xd1\\xfd\\x86\\\"{\\n!\\xf27\\x15S\\xf9&xZ|:$\\x03\\xb6\\xce\\x00U\\x87\\xe1\\xe9\\x1c\\xd8\\xf0\\x1cߡ\\x10\\xac$\\x14\\xf9\\x8b2\\xfd\\xa3\\x05L\\x94o\\x80\\x102x\\x0e \\xb766Ȭ\\x1c\\xe5\\x93^\\xd1\\x0f\\xbb\\x89\\xa1\\xa8\\xa9\\x8a2\\b\\x9ahy㥆\\x82\\xa3*I\\x12\\x15\\x1cw\\\\}ݽ\\x1b\\xaejԎ\\x12\\xa1#\\xc1\\xf4\\xc0\\x83\\x11\\x063\\xb0\\f6ڋF\\xc4p\\x8d\\b\\xe0\\xed\\xcc#\\x88\\xc1犾\\xcfG\\xae\\xff\\xac(\\x01\\xd5\\x18\\xc5\\xf6\\xb6{\\xdd\\xf4#\\xe7\\xf9\\x88w>M\\xdc{\\xb7\\xb5-\\xfd\\x80\\x8eEwIC\\x98V\\t\\x14Z\\x99m\\xfeW\\xa8L\\xd2\\xe7\\xf9\\x11\\xce?\\x92\\xfe?\\xb5]Yl\\x1b\\xc7\\x19\\xde\\xd9\\xddٝ=\\xb8Kr\\xb9\\\\Z\\a\\x0fQ\\x12uX\\x96D\\x8a\\xa4\\x15[\\n%+v\\x10\\xb9\\x89\\xea\\xc8B\\xec\\xd8\\nm\\xb7\\x8d\\x13\\x1b\\x89r\\u0080ۂm\\x9a^\\t\\xea\\x00u\\x9b\\xabA\\x84\\xa2\\x05Ҡ\\x87z\\xa0H\\x9f\\xac$E\\x92\\xa2H\\xa2\\x87&}h\\xd0\\xea\\xa5@\\x93>\\xc4})\\xfa\\x92M\\xe7\\xd8]R\\x14#\\xc9\\r\\n\\x90\\xb3\\xb3\\a\\x973\\xbb3\\xff\\xfc\\xf3\\xcf\\xff\\u007f\\x1f\\xb9\\xf8\\\"\\xb9X\\x99\\xb3h\\fL\\x9d\\xc3^#O\\xa6.z.\\x9d>\\x99_Z^ʃՇ.\\x97\\t\\xc6y\\xf9\\xb2\\xbf\\x86̞\\xa5FQ\\xf1\\x86)\\xea\\x06\\xd7\\xe3G(R\\x03h\\x13\\xe2\\x18A:\\x00,$\\xbb\\x19\\xdf\\xc0\\xc7zid\\xeb&썽m\\xeer[\\xaf\\\"\\xb7\\xb7%\\xccԗ\\xbf\\xff唙h\\x9b\\xa4\\xfaԷ\\x1aR6\\xa7\\xee\\xa8ᡍ\\x98\\t\\xf0\\xf8\\xb6<\\x96\\xc8OO\\xe7\\x13c\\f\\x1e\\xb6\\x9f\\xa6\\x8e\\a\\x02\\x05\\x88\\xfd\\x0e\\xac\\xe3\\xb6\\\\\\xc1%\\xb6=\\xab\\x0eUv\\bҜ\\x1d#\\xfd|\\x12O\\x1fY\\x14D>0\\xe7\\xf8;X\\xfd\\x16:I\\a\\x00\\xebɱ䟭\\xe1PJӕ\\xf6\\xb0\\x00\\x91\\nS(\\xacb\\x1d\\x06\\xc4\\xda\\xc3v(\\a\\x91,tk\\x91Gn\\xc5\\x17ZFJ3oRb\\xa2y\\x18\\xa1\\xef\\xe23\\x12\\x94\\x80\\xa4\\xcbi\\x84ވu\\x80\\xce\\xd8k\\b\\xa55\\x93\\xb8\\xe8KH\\xcc+\\x82\\xddȁn\\x11$\\xdf\\x1e\\x1a\\xe1P\\xaeC\\x85\\x11\\xef\\xc0\\xe6u\\xbbu\\xb72]\\xec\\xa7։\\xfe\\xe2t\\xb8a\\xe5\\xaeR\\xd9w*~\\x84\\xe1\\xd1\\x1d\\x89\\x9fzv#\\x87\\x13\\xc5P\\xc1\\xe3\\xe6+XW\\x9c\\xe2f\\xb9\\xa3\\x143\\x9c(* \\x88\\x80\\x02\\xe4\\r\\xca\\xe4ű5\\xb7\\xe0C\\\".\\x89OW\\x99\\x92\\xc1y\\x9f\\x12d\\x81\\xab\\xf1\\x94\\x90dPb\\x00\\xbc/*\\xb8q*\\xee\\xb2\\xdaed\\x86\\r\\x15T\\xd5LG\\xa6OTBPw\\xd29IL\\xf8i\\xac\\xc51\\xf7\\x8b\\x9a\\xc5G\\xd6\\\"\\x05K{>ȁ\\x9f@\\xc3\\f\\xcbFF\\xc5w5\\x863F\\x17\\xbe\\xabb\\x18w\\xc1\\x90\\nuQʥ\\x9d\\x84\\x9fZ-\\x8e\\xbd\\xa4Y\\x05|'\\x9e\\xde\\xd3\\xcby\\xeb\\x99W\\xc02n'6A\\xfe\\x01\\xf5\\xb6\\xcd\\x1c\\x1b\\xe8\\xfcC\\xc8ed\\x82n\\xc8,\\xf6.c\\x91\\a\\xf3\\x17\\xe6\\xc1O\\xcf\\x00\\xee\\x8c\\x18\\tG\\x00\\xb3\\x86w D\\x9c\\xe6\\x11r\\u007f\\xf5\\xd6[\\xb2\\xa65\\xc4T\\x10\\x96\\x9c~\\xa2w\\x95\\x89fI\\x14l\\n\\xd4Xؠ\\x81\\xf6D2\\x1e\\xf5\\x97\\x80s\\xb0Y\\u007f\\xf1\\xbc\\xc5\\xfe\\x81\\x1a\\xa5\\x12H\\xbb\\x1c.\\x0f\\xf1_tkdA\\x17w(\\x8et\\xa8\\x0fc\\xa1\\t#\\n\\xd6\\xd1\\x06\\x19\\xb5\\xe2\\xae\\x10\\xd7\\xc6\\x0e\\xf7=b}\\xab\\xd6\\xfb\\x93fGLR^\\xaf-\\x9a\\xdc.\\xdc\\x1a\\v\\xad8\\xd4<\\xef7ono\\x17\\x98\\x03\\x1b\\x99\\v\\xd0Ù|\\tP[\\x1e3-V\\xa9\\x03\\xcb\\x1a\\x8b7Yf\\x18\\x0f\\f\\xda\\x01xfA\\x02\\x15\\xdf\\xd6\\xeb\\xae1g\\xb40uK\\xfb\\x06c\\x90ĉ\\xb7\\x9e\\xc7\\xfc\\xc4Fq\\xff(8\\x01Q!VK\\x1c\\x1a\\xf1 \\xe7\\xb2E\\xea\\xa8\\\\b\\xd87\\f\\u007f]\\x02\\xb3\\xe7z\\xacٻ/\\x1dv2\\x19\\xa7s\\xb4\\xbb3\\x11Kh\\xc5G\\xecN\\xa9tl\\xb6\\xbb/\\xd9a\\xc7x\\xc1!\\b\\xa6\\xaa.\\xfe.\\xd7u\\xa8ҟٓ\\x89e\\a\\xf3C\\xbb\\x8dD\\xaf5\\xdd\\x19\\x89\\x8f\\xdf\\xdc\\xe5胝<\\x96\\xf9\\xf8\\xcaPw9\\xc0\\xc1\\xa56切bZ\\xe28\\x8b\\xf0#\\x12K\\xd1\\x1e>\\x87\\a\\x1b\\xb2\\x9c\\b)\\x97:A4i\\x1dt\\xf9\\xfc\\xf1gNk@\\xd2иx\\xe4\\xd2I\\x13\\xab\\x18\\x85۾>+\\xb8\\x8f\\n\\xbc\\xa4\\x82\\xfb\\xa9\\x92y\\x80\\xa6\\x17=L\\x17厧\\x8f!S\\xe3\\xc3'\\xbf3Ǐ˺t\\x1f\\xb8\\xe9х\\xbb\\x00\\x1e\\x14\\xf8\\xc3T\\xcf|\\x94\\xa6\\x17\\x03\\x9d\\xb3\\xd1O6EVD\\x1d!#0\\x81X&46\\x81\\xb3#~\\x91d\\xf0\\x96\\xcb\\xcd\\xed\\xae\\xcc\\xe6\\x82E\\x1b\\xd4l\\xd0a\\xfd\\xdb\\xea\\xb8AF\\xda8\\x95*\\xe3\\x1a\\x92\\x8f\\xe3\\x91\\xe8/r\\x00\\xcbyA\\x91\\xcd\\xfbMY\\xb1\\xc0\\xad\\xeeϬ\\xb6\\xb6W\\x91\\xcd䑍\\x16!\\xfcq]\\\"\\x11\\xff\\x9eV\\xe5\\xab\\xfb\\xf1^S\\xf9Ҡƺ\\xe7\\xed;)]\\x18̹+\\xb8#\\xbc\\xbcu\\xe9\\xea|l/c\\x9d=M\\xf1}\\x9a\\xa2ם\\x92O>G\\x06x:\\x86\\xe4\\xb6\\xd0)e/\\xa4\\f\\\\_\\x9a\\xedJ\\xb8\\xbfIt͖\\xee(\\xde=\\xab+GՄzT\\xd1_\\xc0Cx\\x98\\x8c\\xe9l\\xd37<=\\\\\\xe3o.%\\xba\\xba\\x12\\xa5\\x9b\\xf9;\\xee\\x9d-ޣD\\x85\\xb4(\\xa6\\x85\\xa8rO\\xf1\\xb9\\x86ka\\xfcd\\x988\\xfc\\x87\\xbd\\xf1\\x9e\\xc5\\xe4\\f\\xe1\\x06K}\\xbe\\xea\\xaev\\r^gv\\xa4\\xee\\n\\xed\\xadQ\\x81\\xf7\\x9e2\\xed\\xaam>\\xce\\x1e\\x8c\\xb9a/m\\x9b\\xe0\\xc4\\x0fL\\x9b>$\\xbc\\xc5\\xfa\\xe9\\x8f\\x1av\\x03\\xdf327\\xf3\\xb5\\x86CMְ\\x8d`\\x9ft\\x16\\xe2E\\x8b\\x11\\xfa\\xd7\\r\\x11O͈C\\x80\\xf9'\\x8c\\xf5\\xef\\x1b &\\xf7#\\x86\\xb6\\xa4\\xe8\\x9ar\\xa8H\\x05\\x86V\\xa2\\xa1\\xb2_\\xa0\\xcba\\xeec\\r;\\x9e\\xb9\\xeb{\\x99|\\xbb\\x1a\\xa1\\x13\\xbb{Kj\\xc4T\\xaaH\\x1e'\\x11\\xb94@\\xf7!\\xba\\x88\\xf6LC\\x9e\\xf5u\\x9f\\xa7Ѣ<K\\xa9\\xcdR\\x11fm\\x82QT\\x90\\x89+0\\xfe\\x82\\xe5\\xfa\\x04\\x12Tk\\xb5U\\uaac7S\\x02Q\\xe7\\x1d&\\xbc\\xb9\\xec`\\x8d\\xb43{\\x13\\x1f\\xe4-\\x9e\\a\\xf3%\\xeey\\xee\\x17\\xdc\\x15\\xeem\\xeeo܇\\xdc\\xc7tf>\\x8c\\a\\xdd[\\x02\\x8f\\xd9\\x06|\\xed-\\xf7\\xeb\\x8eέ#\\xfa\\xb6\\xfd}y\\x9b}y\\x9b\\xf3\\xcd@\\xef\\xd65\\xfe?ܺ\\xfcۖo\\x9b\\xe7U\\xb8\\x1a\\xac\\xb4\\xd6Z\\xe4>\\xe6\\xb6<]ϵJ\\x96[\\x1c\\xab\\xec\\xf0~n\\xab\\x1fo\\x9d\\xd4\\u007f\\xbc\\xbe\\xd3\\x1f\\xadn}\\xba\\xda\\xf2\\xca\\xd6Y\\xb7\\xe1OAm\\xc7\\u007f\\xbb\\xbaݿU[\\xdd\\xc0\\xf3ui\\xd1w\\xbe\\xb6\\xa9\\x87\\x14\\xb2\\xd7\\xd8·\\xa3\\x12\\xb0Z\\xff>\\x9bit\\x00\\xa87\\xab\\xfa\\x1b_\\xdfa\\xbbiJ\\xdc'\\xbc\\xd1)\\xbd\\xe3\\xa7\\xfa\\t|\\xb5\\xe9\\xe6\\xc3.\\x8d\\xbe\\x06O\\xb0q\\x8fa\\xa2\\x13\\x1d\\xc7G\\xfc\\xc2Ӻa\\x86\\xd2M\\xb1Y<ح\\x14`\\xf0<q\\x13\\x94\\x02\\xd3\\u0a49\\xe3\\bh\\xe8b\\xa8g*\\x87t\\xa0g\\a\\xfc\\x03\\x9f\\xddO\\xf7g\\x98>S\\xf1v\\a\\xfan\\x18\\x82\\x8d\\xe7\\x83\\xeb\\x97}E\\x06z6\\xbfW\\xb8(շ\\x0e\\x13\\xbf8\\xea\\x8a\\xe0\\xb9.3\\xd8\\xcc./\\xa6\\x9b\\xaf\\xbf\\xe12\\xf5\\xe4!.&^\\xf1\\x18&\\x00\\x83\\x04\\xe8\\xf5\\x80sM`\\x95\\xbcq\\x89A5\\xcbu\\x87\\aR\\xbf\\x87N\\xd9|\\xc2.Z\\xaaj\\x15\\xed\\x04o\\x9f\\x12\\x8dǵ0!E\\xfb\\x80\\x00s\\x8fȂ\\x89nD&\\x8fnߝL\\xeeN\\x82'\\x91,\\x9e\\x10C\\x88OLJ\\bD\\x80vXB|<g\\xc4z\\x8b==\\xed\\b-y[S\\xfb\\xfb\\x99\\xf8d,\\n-M\\xb3`46\\x19?\\x03\\xaba\\xedۄ\\x86\\ro\\xb4\\xb0\\x81T\\x15\\x19\\x97\\x93\\xe4\\xb6\\v\\x1a|\\f\\\"x\\xab\\f\\xcf)\\b\\x16@\\x95\\xb7L\\xc2Q\\xdc\\xd7\\xc1\\x8fDϳ\\xcc9=Z\\x9f\\xefS\\xbd\\x99\\xcc*\\x19\\x9d\\t\\x9f\\xed⊔\\x98\\x99\\x8e\\xb9\\xf4 \\x9e^\\xd2\\xc8>\\xf0/\\x13$\\x80\\xac\\xc2U\\xf7*T\\xe0Y^\\bK#\\xbc\\xb2\\xdf9\\x9b\\x1fE\\x1a\\x14\\x17\\xa4\\xb0\\xc0\\x9f\\xc5g@x\\x15\\xaa2\\xbe\\xd6\\\\\\x12\\xa1\\x86F\\xf3g\\x9d\\xfd\\n\\xef\\xd9\\xd6Y\\x1f\\x1c\\xde<B\\x821\\xba\\xceGB\\x9e\\xf6\\x80\\x1c\\xa3\\x1b\\xc4{Y/2\\xb0\\xdcȵ\\f攃\\x82 \\xc3Tj\\xca\\xe8\\x85 )\\xaa<\\x98\\xd2_\\xbc\\xa0\\vM$\\xcbo\\x02^\\x15\\x93\\x00\\xf6\\x1aS\\xa9\\x14\\x94\\x05\\xe1\\xa0b\\n\\xfa\\x85\\x17u\\xcf\\xff\\x8d\\xe9!a\\xae\\x83\\xeb\\xe3\\xc6(3\\xc9m\\x84e6@\\xaf\\x8bd\\xa9\\x17{\\xa11:\\a6\\xe4\\x03\\xf6\\x89\\xa6\\xbc\\xdcT\\xb9\\xb8\\xa7\\xd3\\xc3b\\x0e\\xeb76\\va\\xae\\xad\\xe2\\xb1\\xfeF%\\xa9\\xe0\\x0f\\x9e\\xac\\xd2m\\xe3煺\\x8a\\xf0\\x19\\xd6\\x1b\\xb8j-]\\xa1\\xd8(x\\x92\\x04*\\x15|\\x9b;饯\\xd3\\xf4\\xbe\\x86t\\x04_D\\r\\u03808I\\xd0>\\xf2f\\x95\\xfc<\\xed\\xeb\\xfcW(\\xb6\\xb1\\xc5\\xf8\\x0f{\\x9a\\xa5^ّ\\xa1o\\xb2ˁ\\xba\\x1aVlV\\x12\\xb2r\\xae\\x9c\\xb5\\xc1\\\\]P\\xb5\\x1fP@Q\\x12b\\xb8!\\x8a\\x1f\\xfd\\xda\\xcb<\\x80\\x05\\x87?H=<z \\xfdp\\x83t\\x99\\x1b\\xeb\\x18\\xc0\\xd7\\xc0]\\x92\\x00^\\xf72\\xc7v{\\xde\\x15\\xf8\\x8a\\xcbc\\xd5N\\x16\\x13\\xccڏ\\xcd\\x15\\xb1\\xfc>Be\\xb7\\xefY\\xbb\\x0f\\xf8Nő\\xb2\\x0fT\\xbaA\\x82\\x9b\\xc0\\xb7\\xf7;\\x9e+\\xc80\\x812e<\\x1a\\xac\\x8f;r!\\xb7\\xa2!4\\x87g\\x04s\\bi,\\xb6\\x0f\\x97Z\\x9b\\xd8\\xebU\\xcf˥\\x80\\\"\\xef\\xd2\\x05xH\\x14\\xb5]XT\\xee\\xa3\\xec/c\\xe9p5&W!\\xac\\xca1@\\xbd\\x98\\xdd5<\\xb6E\\r\\xf5\\xa0W\\xd9 \\xfbO\\x02\\xfa\\xa2\\x85B\\x9a\\\"\\v\\xfc\\xb2\\xa6}~\\xa4U\\xfd,*}h\\xbc\\xcf \\b\\xc6\\v\\xe7\\xd3\\xd4/\\xbc\\xa9~\\xeb\\xd7R?\\x90\\xf6+\\xe8\\xae\\xd1\\xc1`\\xa4\\xb2\\xe3\\nR\\x19\\xfd\\x91g3\\xf4\\xc7ᣴ\\x96\\x1b8J\\xe4\\xa6\\xfdf\\xebV\\xb1\\xe9|\\xa6e+\\xb8\\x1a\\x8c\\xa6\\x95\\xa0i\\xd6\\xeaJ\\x1a\\xf9\\xae\\xb2\\xddMO\\x04\\xb4\\xf6Ko\\x181\\x1b\\xd8\\x1d\\x9a_\\xf8\\xff\\xa7\\x8e=-[\\xc2N\\xeb\\xe8V?]\\x1dW\\x9b_\\xba\\x1f\\xa3\\xbf\\x0e~\\t^\\xa0\\xed\\xf5\\xa6O\\ue3f0Y\\xb6\\x14\\xb3\\xf56\\x89O\\tl\\\\e\\x18\\xcd\\xe5R\\x99\\xd2\\\\\\xfaӹ\\xcd\\xfd\\x11\\x84\\x03\\xc9@lA|XT\\xf1\\xa3/\\xf5M\\x0e\\xec\\x96B\\xbc\\nC\\xba\\xd2=\\xa8\\xc2L*\\xac\\xeba}S\\x87\\xacl\\xa8\\xa1(\\xa4q~\\t|I\\x1b\\xcdi\\x85I\\x8b\\xb0\\x96\\x9b\\x10\\\"q\\xa27\\x9a:\\xa1\\x93[|B]-gë`\\x8aB~\\xd3\\xfc\\xe4Z\\xeaz\\xae^\\xc9\\x11Vm\\xd0\\u007f-u\\x05\\xcf6\\xbc\\\"Ro\\xb7\\xf6?TV\\n8 \\x18\\xbf\\xcc\\f\\x9e\\x9d\\x9f\\xc0#D\\xbdE:1\\x0f\\xb7\\x80\\xc0b\\xe5l\\x8a\\x88\\x9a\\x95\\xbdm\\xae\\xa5\\xf8a\\xae\\x1bX\\xfe\\xc0M\\v\\x1ed\\x01\\x88\\xbe\\xd2\\xd9t^PT\\x93\\xcfg\\n}\\xc41\\xabo/Iߙa\\xb2H\\xbf\\r\\u007f\\x89,\\x9a\\xe1\\x95\\x10\\xa1\\x16\\xba~\\x8f\\x03\\xfe\\b\\xe1\\x1an\\x1cK\\x10\\x0e\\xc1\\x10,?%\\x86\\xe0*՜\\aR\\x82\\x18\\x8b*Y\\x83\\x17҃o\\x8c\\x181\\xa3J\\x92\\xaf\\xbe\\xcb\\xf3\\xb2\\xa2ww\\xeb\\x8a\\xcc\\xf3\\xefJ\\xaa\\x14z\\xe4\\x86?\\xe0\\x9f\\xaeA\\xb8\\x847C\\x10\\xee}\\nB\\x8ag\\x9bƺA\\x85\\x8bS\\xfb]\\xa3\\xe5\\x97A\\x85\\x17(\\xba\\x97\\xe8Y\\xea|$[p\\x95\\xd8w\\xdde\\x9c^\\x987\\xd4%\\u0558w\\x1f\\xa7\\b\\x12\\xa0J\\x11(@\\x05\\x9f \\x9f\\xfd\\xd1a\\xd3\\x1c\\x8e\\xee\\x9fg\\xf8\\xc2\\xcb\\xf4\\xa2\\x80;\\xa4ƅ(O\\xb6\\xd4\\xc5\\xe0\\x15\\xf2\\fr\\x8c\\x80\\xbb\\x89]{\\x84\\x80BR*\\xe4'\\x05r\\x0e|p\\xe8\\xb5C\\xb9}Q\\xcb\\xec3\\xad\\xe8\\xbe\\xdf\\xca@0Ʀ\\x1f\\xfc\\xe6\\x83\\xd3c\\x06YZ\\x93 \\x8f:3c\\xe5\\xd9\\\\\\xe9sח#\\\"\\x94\\xe0\\x93\\x8e\\xf3\\xbe\\xa1\\xeb\\xc6\\xefE\\x05\\xebRə\\xe2\\xe0`q&\\x89u$Y\\x11yيئj%R!Q\\xf4\\xe2nH\\xb9\\xbeB\\x11^\\xb9\\x1e')\\x142]\\xd4\\x13\\xa0\\x90\\x87t\\x85 \\x8b\\xcbE56\\xb9\\xec\\xe9\\x8fq\\a\\xc0ә\\xa1\\xf1\\xfd\\xbd\\x1f\\xfd5n\\x18\\xd0<~]\\x11\\xc4\\xfb':\\x8d\\x8eX\\xe7h\\xf7`r\\xd7\\xe9RE\\fKB\\xa7uE\\x96\\x9c\\x1eṣ\\x1d\\x99\\x94n\\xdbm\\a\\x17\\\"Bzw\\xb7N\\xfc#;\\x1cg~\\x90\\x9f\\xb22b?H\\xc57\\xf8R(Xss8\\xae\\x1e躑\\x1f\\x14\\xd4\\x16\\xa7+Ӌ++lS\\xadզ\\x17\\x17\\xc1\\x0fW\\xd3x3\\x9d^e\\xb6;\\xf4\\xf1\\x1b\\xe0?\\x1e\\xf7/i\\uf6f8\\u007f\\xf9\\xa6\\xfdw\\x16&&\\x16&\\x98\\x03\\xcb-ԥ\\xfcUjE\\x02}\\x13\\xe4\\xcc\\x01\\x06\\x0f\\xcd3\\xf6_j(\\xf2\\xec\\xc1\\xeb\\x9eͫ\\x8b\\x1b\\xe0\\xae#VB\\xdfr\\x15\\xc8~\\xbaޖ\\rV\\x9e\\xf1Q\\xbf]5G\\x80;\\xc1>x\\x9a\\xae\\u007f\\xd1ɢ\\xbb\\xb2wno\\x9a\\x1a̫Ӌ\\xeeyj\\b[\\xaas5\\xacR\\x8b\\xf9U\\xba\\x06v'\\x15\\n\\x94h\\x93\\x9a\\xd7\\x17\\xa7\\x97\\x97\\xa8\\x01\\xecO\\x81e\\xfd\\x01j\\x89\\xa7\\xcf\\t\\x05\\xed\\xb2\\r\\xcf\\x16\\x86\\xa8\\xd7>\\xe1wXh\\x88\\xc5`1!\\x8d\\xa5\\xef\\xf14eb\\xffg\\x99\\xbc\\xafH\\xc7\\xfdL\\xc1ۦ\\x9b\\x1f;\\x8b\\xe1\\xf8\\xb949?)\\xe5I\\x9e\\xc7c\\x9aK\\x00|\\xcc\\xfbp\\xa2\\xa3\\xf38\\x8d\\xdcK\\x98\\xf0\\b\\x03\\xd4۴\\x1b1[8\\x93zd%\\xdeGl\\xb8z\\xf8<B5\\xbd\\xfd\\x18B\\xc7@_\\r\\xe1\\x1fϼ\\x84\\xd0K\\xe4K{\\xde\\x14Ր\\xff\\v\\x9cKL\\xfa\\x00\\x00x\\x9cc`d``\\xf4:\\xd0l\\x9c\\xe4\\xfd'\\x9e\\xdf\\xe6+\\x037\\x13\\x03\\b\\xdc\\x12=\\xc1\\r\\xa5\\x05\\xff\\xbf\\xf9\\xbf\\x85i*\\xe3Y \\x97\\x83\\x81\\x89\\x01\\xa8\\x03\\x00\\x84?\\r\\xb0\\x00\\x00\\x00x\\x9cc`d``<\\xf0\\xff\\x00\\x03\\x03S\\xc3\\xff7@r*\\x03P\\x04\\x190\\x1f\\x03\\x00\\x91-\\x06Px\\x9c\\x85W\\xcbm\\x1b1\\x10\\x9d\\xdd\\xc0\\xb0/F\\x84\\xf8\\x10\\x01\\xb9l),\\xc5ǔ\\xc1RrN\\x15[BJP\\x03\\x01\\x84 Nl\\xd9\\x123\\xc3\\xf9seD\\xc0`\\x97Kr\\xbe\\xef\\r\\xa9\\x19\\xe4\\xf7\\x1d`\\x86\\xf6:\\x03=\\xfb\\xfbe.\\xf0qZu\\x9cezL\\xe3۹\\xc2\\x1e\\x9f;\\xdcC㻹\\xb4\\xb7>Wd^\\xf7\\xad2O\\xef$\\x95\\xd7$;\\x95\\xc7}.\\xec\\xc3\\xf1\\xa7\\xa9\\xf8\\xfaQl\\xddjvU\\xc7]\\xf7\\x97\\xf7\\x95\\xa4sͶi~Z\\xdb3\\xda\\xf9B\\\"\\xbe^\\x13\\xd6\\xeb:nHF\\xbd\\xa2\\xfb\\xc1\\xf6\\x94vј\\xe7\\xfel/(\\xcd}hMt\\xb0\\xbe\\n\\x1f4\\x16{Z\\x9e\\xb0^\\xb8\\xb7ש\\xc6\\xf9v&\\x89\\xb9\\xb0\\x9c\\x14\\xa9-x~4GQ\\xa6c\\xb4%\\xb5\\x94\\xdax\\x8d\\xdaӵ:\\x84XΡ澟\\xf6\\x16\\xb8%\\x81\\x15>\\x83֮\\xc0\\xbdJ\\u009a\\xe7\\xaa\\xe7\\x89j9Ԍrq\\xe2\\xe7\\x80!\\x97}\\x97\\xc2\\xfa\\x10{\\xfb.2\\xd6z\\xf4\\xb5c\\x9e%\\x1f*\\xb3\\xe7\\xfa\\x8e\\xe3\\xa1:x\\x9e\\x14\\xb7\\xf8\\xdcSl(\\xbb\\xa4\\xaf\\b\\u007f\\xc4g\\xcccS;I4^\\xae\\xc5\\x1dp\\f#\\xeeX\\xdfq\\x88W\\xe3\\\\\\x10\\a\\xa5\\xfb\\xf2`\\\\\\x93\\x9a\\xa3\\xdd\\v\\t\\xe3\\x81\\xdfy,\\xfe\\x03\\xdchmP\\xbe\\\\\\xe5p\\xf5\\xbcu\\xfeW\\xaf\\x81s8\\xe0\\x87\\xb1\\xc9\\x18\\xaf\\xedM\\xd7\\xfcO\\xc4\\xdem\\xc8\\xd3\\x0e\\xf7.\\x89\\xf3>\\xe7\\xdc\\x0fu5\\x8cd\\x0e\\xfbޅ\\xf1:\\a<\\xa45e\\xa3\\xaf)g\\xa7E|\\xd5\\xe7a\\xa8\\xb7\\xce\\x1d\\xe4\\xb9d>D\\xbc\\xc6o\\x81/\\xbd_\\x9a\\xbe\\xd5\\xf7_\\xc9\\x15X\\x1d\\x8b\\x8fQγ\\xe62\\xd8K\\xfd\\xb3\\xfb\\xd5N\\xba\\xcf\\xfa\\xc1\\xeav\\xbb\\x1e\\xfa\\xa6\\xb6j{r\\xde\\xd1\\x19\\xc2u\\xed\\xbd\\xcd\\xfc\\t8\\x95\\xba\\xf4\\xfe?Ȧ&\\xe9\\x1b\\x9fO\\xd37\\xe7\\x80<#\\xbfn=n\\xaa\\x0f\\v꾷X\\xf5]}\\x83\\xdeo6\\xfd=\\xe6X9?Q\\xff.\\xfdl\\xe4|?\\x86\\xfeD\\xf8\\xaa\\xe6\\xc7.\\xf7\\\\\\x8bᤜ\\xb6~\\x02\\xdes\\x8c\\x0f:\\xd6\\xfa\\x1f-\\xee\\x84K\\xe5\\xad}\\x8b\\xfb\\xd4Gա\\xfe(VF\\xff\\x8a\\xaf\\x1d\\xf7:\\xaf\\rC\\x88e\\xb1[\\x83_Ur\\x8e\\xb9p?\\xfb\\x19\\xe5\\xb6x\\xddE\\xf0r\\xe9g\\xa2\\xf7@\\xd6}\\f\\xfa4\\xb7\\v\\xf6\\x91\\xd8\\xe7\\a\\x89\\xdf\\xfd\\x9d\\xfd\\xd8\\xec\\x81\\xe8\\xcbv\\xce\\xedgn^=\\xeb\\xa2\\xcdP\\x03\\xce!\\xc5\\x16\\xe2(!\\xf7\\xc1\\xbfM\\x1c\\x80w\\x905\\xd4\\xce\\xe6\\x9d\\xd7\\x13\\x84X,\\xd7(_\\x89\\x8f\\xf1.\\xc7\\xf6\\rS\\xc7\\xc0\\xe5\\xea5\\x1c\\xef\\\\l'\\xf6n\\xb7\\x95\\xee\\a\\xaaW\\xfd\\x1c\\xc6\\x11\\x8b\\x89\\x9bt\\xbe\\x19\\a\\xdak\\xe4\\xc4F\\x9e\\a\\xbe\\x1c\\x03/\\xa2\\xac\\x90\\xcf\\xef%\\xd7\\xfa\\x9a\\xbe\\u0379\\xae\\xfe\\x11\\xb7t>\\xe4%\\xf7&\\xc3g\\x9bꠋ\\xb0\\x9a\\xee\\vX\\x17ݷ\\xc7\\x1e\\x19\\xf3X\\xf3\\x1e\\xe4ß\\xc0\\x9f7\\xc2>\\xd6\\xeaL\\xbd\\x17\\xe5gİ\\x9d5\\x01c\\xe6g\\xacg\\x8c\\xe1\\xa0~3\\xa6\\x12\\xcfAΛ5\\u007fK5\\xcc\\xd8\\x1a\\xff7x\\xef\\x83\\xf6{õ\\x88!\\xc5\\xdd:\\xf4)\\xd7\\xf7j\\xf1\\xfc\\xc0\\xf7\\xa4C\\xee\\x11\\x01\\xcf~\\xde`\\x9fҚ\\x1f\\xe4~]\\xf0\\xbeP匇->m\\xaf\\xda\\xe8X\\x90\\x9e^ۯX#;\\x87\\xba\\xbf\\xd2\\xefJ\\x97\\x96\\xfaM\\xccS\\t\\x98)C\\xde\\xd4\\xff1O\\xe0\\xbeL\\xc6}\\xfb\\x8f\\xa0\\xbd\\xe2\\x12\\xef\\xf4\\xec\\x83\\xf4S\\xa9o?\\x03\\x95;@\\xf7&\\xe2u\\xfa\\xdfqf\\x1f\\xda_ͩ\\xd4g\\x91\\xf9\\x97po<y\\f\\xc6\\x15\\xb3\\x17\\xef!f#Ɨr\\x910\\xb5\\x84=˘\\xbf\\xf7z\\xee\\xf0\\x9f\\xc3r\\xe3k\\u07b9\\xe7\\xc6\\\\W\\xe6\\xe3,w#\\x80\\u007f\\xa2m\\x86\\xc5\\x00\\x00x\\x9ce\\xd7y\\xb8\\x96\\xe3\\x16\\x06\\xf0\\xf5\\xbe\\x8a\\\"\\xb5\\x9bH\\x83F\\r\\xda\\x1a\\xd4IQIJ\\xf3\\x1c\\xedF\\xbby\\x97&Mv\\xf3\\x96&I\\x1a\\t\\xa1C\\b\\x9dNGQ\\xd4!\\x89B\\x91D!D\\xa58q\\x85\\xd0IW\\xce\\xcfߧ\\xebZ\\xd7\\xf3\\xbdϳֽ\\xee\\xfb^\\xcf\\xfb}\\xbb\\x88\\xff\\xfb\\xd7^\\xac\\x8fHJ\\x89l\\xb15\\\"-\\x11q\\xc1\\xa0\\x88|\\x19\\x11\\xf9\\xe7E\\\\\\xf8W쏸\\xa8\\xb58\\x19Q`LDA\\xf9\\x05OE\\\\\\xbc#\\xe2\\x92Y\\xc2y\\xa1E\\x11\\x976\\x16\\xab\\\"\\n\\xb7\\x88(RE\\xc8\\xc9\\xd0#c[DQ\\xf5E\\xe5\\x16=\\x13Q\\xcc~q8%\\xe4\\x97PWRϒx\\x94<\\x14q\\xd9Tq.\\xe2r\\xb9\\xa5\\n\\byW4\\x14\\xf6J\\xaf\\x8d(\\xd3'\\xa2l!\\x81k9q傈\\xf2\\xf6\\xcao\\x8c\\xa8P]ȯ\\xb0:\\xa2\\xa2\\x9c\\x8a\\xce+\\x91X\\xc9y%\\xf8\\x95\\x8eFTƭ\\xb2\\x1e\\x95\\xf7FT\\xa9#r\\x05\\xfeWU\\x10#\\xc4\\ue22aj\\xab\\xd2]\\xf5pD5\\xe7\\xd5NDT\\xb7_CN\\r\\xbcjx\\xbe\\x9a\\x9e\\xab\\xf1\\xa9ɧ\\x9a\\x9b#2\\xf9\\x97Ig&}\\u05ec\\x89\\xa8\\x85{-\\xfeԦ\\xb16O\\xeadFԵWw\\xbc8\\x1dQ/\\x9f\\xc0\\xa9\\x9e\\xfc\\xfa\\xf8\\xd6\\xe7\\xc9\\xdf\\xe46\\xc0\\xb7\\x81\\xde\\r\\xd4^\\x87_C\\\\\\x1a\\xe2ш\\x86\\x1b\\xac\\x8ds\\x84\\xfc&\\xb84\\xe1WS\\xfao\\xe4ύ|lVV\\xa8\\xbd\\t\\xf6M\\xcb\\\"\\x9a\\x9bAs\\xdcn\\xa6\\xb7E}\\x81wK\\\\n\\xe9.vE\\xb4ү\\x15\\x0e\\xad\\xe5\\xb5ֿ\\r\\xef\\xda\\xc2kKk;>\\xb53\\xef\\xf6\\xea;\\xe8ׁ\\xff\\x1d\\xf5\\xeeDo'\\xbd:\\xe3֙\\xfe\\xce<\\xed·\\xae8t\\xa3\\xbf;\\xed\\xb7v\\x16\\xeanӧ\\a==p\\xeaa\\x16=\\xf4\\xc8\\xd2+\\xcb~\\x96\\xbc,\\x98=\\xf9ғ\\xb6^8\\xf7ʋ\\xe8\\xed\\xb97\\x8f\\xfb\\xd8\\xebKc_\\x98\\xfdܡۛEd\\xbbw\\xd9\\xce\\xfa\\xcb\\xed/w\\x00\\xae\\x03q\\x1e\\xa4\\xf7 \\xf3\\x1f\\x9c%\\xf0\\x19b\\x1d«\\xa1x\\r\\xe5o\\x0e\\xfd9\\xf4\\x0e\\xc3}\\x18\\xdca\\xf4\\fw熫\\x1f\\xce\\xc3;\\xf4\\xbcC\\x9f\\x11\\xeaF\\xc2\\x1e\\xe9\\x1e\\x8d\\xa4m\\x94u\\x94\\x9cѴ\\x8e\\xe1ӝb,\\xfec厣a\\x1c\\x8fǫ\\x9d\\x00k\\x82~\\x13\\xcdv\\xa2\\xf5.{\\xb9f\\x9d\\xeb\\xf3$\\x1eO6\\xc3\\xc9\\xf0\\xa68\\x9f\\xc2өf0\\xcd\\xfe\\xb4\\x95\\x82\\a\\xd3q\\x9a\\x0es\\x06\\xbc<3̣1ϝ\\xbc[\\xaf\\xbb\\xddә\\xf6f\\xaa\\x9d\\t\\xef\\x1e\\x9af\\xe15K\\xee,~\\xcev\\x0fg\\xd33\\xc7;;\\xc7\\xf3\\\\\\xbe\\xce3\\xebyfx/\\xdf\\xe6\\x9b\\xd9|\\xde\\xdf\\xe7~.0\\xd3\\xfb\\xd5.\\xe4\\xc3B\\xbe<\\xc0\\xabE\\xf0\\x17\\xc3Z\\x82\\xc3\\x125K\\xd5.uO\\x96\\xe1\\xb7\\f\\xd6r\\xf5\\xcb\\xdd\\xc5\\a\\xcd\\xf1A\\x1e>\\xe4y\\x05m+`>̃\\x87\\xe9y\\x14\\xdeJ\\x1e=f^\\x8f\\xd1\\xf48.\\x8f\\xc3z\\u008cV\\x89\\xbf\\x9b\\xff\\x93\\xbc}\\x12\\xeeSjV\\xe3\\xfc\\xb4\\x9a\\xa7\\xe1>C\\xcf3\\xb8<+\\u007f\\r_\\x9e3\\xcb\\xe7\\xf1|\\x1e\\xaf\\x17\\xcc\\xfc\\x85\\x15\\x11kqY+\\xe7\\x1f0\\xd6\\xc1^Ǜ\\u007f\\x9a\\xfbz\\x9a\\xd6\\xd3\\xfc\\xa2\\xba\\r\\xce6\\xd8\\xdfhF/\\xa9\\u007f\\x19\\xcfM\\xe6\\xb2I\\xff\\xcd|܌\\xe7+j_\\xa1\\xf9U:\\xb6\\xd8ۂ\\xebV\\xfd\\xb6\\xea\\xb1\\xd5=x\\xcd\\xec_s\\xfe:\\xdd\\xdb`\\xbc\\xc1\\x8b\\xedto7\\x9b7\\xc5\\x0e\\xef\\xed[\\xceަ\\xf5m\\x9e\\xef4ם4\\xec\\xc2\\xe3\\x1d\\xbaޕ\\xff\\x9e\\x9e\\xef\\xe9\\xb5۽\\xd9Ï=\\xf2\\xf7\\x98\\xf1\\xfb\\xfa|@\\xf7\\a0\\xf6\\xe2\\xfb\\xa1\\xbb\\xfc\\xa1\\xb3}\\xe6\\xbaOϏ\\xd4\\u007f\\x04k?\\xec\\xfd\\xe6\\xb1\\xdf\\xde\\xc7\\xf2>\\xf1.\\x1d\\xc0\\xf5\\x80\\xef\\xa1\\x03\\xe6\\u007fP\\xfd\\xa74}\\x06\\xfb3w\\xeas\\xf3\\xfc\\x9cW\\x87\\xf8x\\xc8\\xd9\\x174~\\xa9ח\\xf4|\\x85\\xd7a\\xe7\\x87q\\xfdZ\\xbf\\xafy\\xfc\\x8d\\xbd#z\\x1cq~\\xd4zԻ|\\f\\xefcz\\x1e\\xb3\\xf7\\xad~\\xdf\\xf2\\xe5\\xb8\\xfc\\xe3<?\\x81\\xd3w\\xb8}/\\xf7{\\xcf\\xff\\xf1|R\\xfc\\x80ˏ\\x9eO\\xb9\\xab?\\x99\\xc5\\xcfz\\xfc\\xe2=;\\xed\\xf9W\\xf7\\xee7\\xbe\\xfd\\x86\\xd7\\xef\\xb8\\xfc~0\\xe2\\x8c\\xef\\x83\\xff\\xe2x\\x16\\xef\\xb3\\xe6\\xf4\\x87;q\\x0e\\xb7\\xf3<<\\x0f\\xeb\\xcf\\x13\\x91DC1F\\x9c\\x8c$m\\x1cI\\xbe\\xea\\\"7\\x92\\xfc\\xd6\\xfc\\xab\\\"\\xb90'\\x92\\x8bJ\\x88\\x95\\x91\\x14\\xa8\\\"\\xd6DR\\xb0\\xac8\\x15\\xc9ŋ\\\"\\xb9\\xa4\\x82\\x18!\\x8eFR\\xc8y\\xa1Ab\\xadp~\\xa9\\x9a\\xc2j\\v\\xc3/\\xbc+\\x92\\\"r\\x8b\\x8c\\x17>g\\xc0\\xc8\\xd8\\x18IQ}\\x8a\\xca/\\x86G1\\xfbŭ\\xc5\\x17\\x88Ñ\\x94h/\\x9c\\x95\\x9c*p\\xbdls$\\x97\\xb7\\x16\\xf2J\\xd5\\x11+\\\"\\xb9\\xa2@$\\xa5\\xfd\\x8c\\x96\\x9e'Ԕѫ\\x8c\\xdee\\xad圕[\\x1fɕ\\xa5\\\")\\x0f\\xa3BF$\\x15aWһ\\xd2\\xfeH*gGR\\xa5\\xbe8\\x18\\xc9U\\xfaT\\xdd\\x1aI5yլ\\xd5i\\xaa\\x0e\\xb3F!\\x01\\xb7&\\x8c\\x9a;\\\"ɤ!S\\xffk\\xfa\\b\\xfe\\xd4R\\xef7'\\xa9MK\\x1dk]8\\xd7\\xea]O\\x9eߚ\\xa4>\\r\\xf5\\xe17\\xc8'xs\\x1dN\\xd7\\xc1o\\xc8׆45ҧѹH\\xae\\xdf\\x16\\xc9\\r\\xf2\\x1b\\xd3\\xd4D^S\\x9a\\x9a\\xea\\xdfT\\x8eߙ\\xa4Y3\\x01\\xa79>\\xcdWGrs\\xa60\\x8b\\x16-\\\"i\\x89K\\xcb3\\x91\\xdc\\x02\\xb3\\x15\\xbf[\\xcbm#\\xaf\\r>m\\x9d\\xb5\\x93\\xd7\\x1en\\a^w\\x80\\xd7ќ;\\xeaՉ\\x97\\x9d\\xac\\x9d\\xbbG\\xd2\\x05\\xdf.p\\xbb\\xea\\xdb\\x15\\xffn|\\xe8\\x8es\\xf7e\\x91\\xdc\\xca\\xcf\\xdbp顾\\a߲\\xf0\\xe9\\t\\xbf\\xa7\\xb3^\\xb0z\\xc1\\xe8MG\\xefݑ\\xf4U\\xdb//\\x92\\xdb\\xe5g\\x9be6?\\xfa\\xbb[\\x03ܩ\\x01|\\x1ch\\x1d\\xe4\\x9e\\f\\x823\\xd8\\xf9ད\\f\\xd1k(\\xee9擃C\\xce\\xe9H\\x86\\xf1s\\xb8\\x19\\x0f\\xd7c\\xb8\\xe7;\\xb2\\x04\\xfd#Ԍ\\xd0o\\xa4>\\xa3x0\\x9a\\xd6Ѵ\\x8d1\\x9f1\\xe6r'Mc\\xf1\\x1eK\\xf7X\\xf9\\xe3\\xdc\\xc1\\xf1\\xb3\\\"\\x99`\\x0e\\x13\\xf81\\xd1\\xe7\\xbb\\xf8\\x91\\x8b\\xb7ߊd\\x92\\xbcI\\xea&ß\\x82\\xd7\\x14>N\\xd5{\\x9a\\x19L\\xc3{\\xba;2\\x83\\xa73\\xf0\\xcb3\\xbb<z\\xee\\x861\\x93_3\\xf5\\xbd\\xc7:\\x9b\\u007fs\\xf4\\x9f\\x83\\xeb\\\\\\xfa\\xe6\\xf2x\\x1e}\\xf7\\u009eo>\\xf7\\xc1_\\x00\\xe7~\\xe1w YH\\xef\\x03<Zd]\\x8c\\xebb^-\\xe1\\xfb\\x12\\xfc\\x96\\xda_\\xa6\\xcfr\\xfe.\\xc7\\xefAw\\xfe!~\\xaf\\xa0{\\x05\\xde\\x0f\\xf3\\xe7\\x11\\xbe<\\\"\\xf7Q\\x9c\\xfd\\x06$\\x8f\\xe9\\xff\\xb8\\xf5\\t\\x1c\\x9ep\\xbeʜV\\xe9\\xf9\\xa4w\\xcd\\xf7\\u007f\\xf2\\x14NOѵ\\xbas$O\\xdb{\\x86\\xbega\\xaf\\x81\\xfd\\x9c\\xfb\\xfbܡH\\x9e\\xc7\\xfd\\x05<\\xd6\\xf2i\\xady\\xaf\\xa3y\\x9d\\x9a\\xf5p\\xff\\x85ˋb\\x03\\xad\\x1b\\xdc]\\xdf\\xf7\\xc9K|xY\\xffM\\xf4l\\x82\\xbf\\xd9\\xf3\\xab\\xfcۂ\\xfb\\x16\\x9f\\xb7\\xc2\\xfa\\xb7\\xbc\\xd7p\\xf1\\xfd\\x9e\\xbc\\xeey\\x9b\\xfam0ߠg;\\xff\\xb7;\\u007f\\x93Go\\xca\\xdfa\\x8e;hz\\xcb\\xfc\\xder\\x8f\\u07b6\\xb7\\x93\\x9e\\x9d<ޅ\\xf7.|\\xdf\\xd1\\xe7]\\xbc\\xde5\\x97\\xf7x\\xb7[\\xbf\\xdd\\xf6\\xf7\\xe0\\xfe>\\x9c\\xf7i\\xfd\\x80\\xc7{i\\xd8K\\xff\\x87\\xd6}\\xfc\\xdd\\xe7n~\\xa4n?\\xbc\\x8fݙ\\x8f݉O\\xcc\\xe5\\x138\\a|\\x1f\\x1ct~\\x10Χz\\u007fJ\\xfbg\\xce?\\xc7\\xe1\\x90\\xf7\\xfb\\v\\xfc\\xbf\\xc0\\xf9K\\xd8_\\xf1\\xf6k\\xb3\\xff\\x86gG\\xe4\\x1e\\xf1\\xce\\x1eu\\u007f\\x8f\\xe1\\xfa\\xad^\\xc7i?n\\uf133\\x13\\xd6\\xefܙ\\xefy|\\x92\\x87?\\xe0\\xfb\\xa3\\x9e\\xa7\\xf8\\xf7\\x93\\x9e?\\xbb_?\\xc3\\xfcE\\xaf\\xd3\\xf4\\xfd\\xaa\\xefo\\xe6\\xf0\\xbb\\xef\\x8234\\x9c\\xe5\\xebY{\\u007f\\x98\\xed\\x1f\\xfc;'\\xce\\xd3r\\x9e\\xae?WE\\x9a\\x14\\x8a4\\xdd\\x18\\xe9\\x05\\xdb\\\"\\xcd_G\\xec\\x8a\\xf4\\u0095\\x91\\x16\\x18\\x11i\\xc1֑^\\xbc>\\xd2Bk\\\"\\xbd\\xb4\\x84\\x90_\\xb8s\\xa4E\\xfcW\\xa3ȬH3r\\\"-\\xda=\\xd2b}\\\"-\\x0e\\xa7\\xf8Z\\xff\\x05\\x19\\x14i\\xc9\\f\\x01\\xef\\xb2\\x05\\x91^n\\xaf\\x94\\x9c+\\xaa\\x88͑\\x96Ό\\xb4\\x8cܲeŢH\\xcb9+w2\\xd2+\\xf5,﹂\\x9a\\x8a\\xf9\\x84\\xbaJ\\xf3\\\"\\xad\\\\*ҫ<W\\xad\\x10i5|\\xaa\\x1d\\x8a\\xb4\\xba\\x1eW˭\\t#\\xb3\\x80\\xd8\\x11\\xa9\\xbf\\xdb\\xd3Z\\xcek7\\x13{#\\xad\\xa3_]uu\\x0fFzm\\xc3H\\xebɫ\\x97\\x17i\\xfdl\\xb1\\\"\\xd2\\x06\\xf448\\x15i\\xc3\\x16\\xe2\\\\\\xa4\\x8d\\xe8\\xb9\\xfe\\xaf8\\x13\\xe9\\r\\xf6\\x9b𢩚\\x1b\\xebG\\xda\\f\\xef\\xe6Y\\x91\\u07bc5\\xd2\\x16\\xcb\\\"m\\xa9\\xd7-\\xb0Z\\x8d\\x89\\xb4\\xf5\\xe1H۬\\x8e\\xb4-\\xdcv\\xf8\\xb4\\xe3_\\x87\\xf6\\x91v\\xe4A\\xc7\\xfd\\x91v\\xae.`v\\xc1\\xb7\\xab\\xcf\\xddh\\xef\\xc6G\\u007fg\\xa7\\xb7\\x89\\x1exd\\xd9Ϣ\\xb7\\xa7\\xbc^\\xb8\\xf7ƽ\\x0f̾\\xf8\\xf7\\xa5\\xb5\\x9f\\x9a~\\xbc\\xbe]\\xdfl5\\xd9fҟ\\xe7\\xfd\\xe9\\x1e\\xc0\\xa3\\x81\\xf2\\a\\xf2p\\x10o\\x06\\xe3:\\x04\\xc7!'\\\"\\x1d\\x8ac\\x8e\\xbaa4\\xfa\\x0eL\\x87\\xcb\\x19\\xc1Ǒb\\x94\\x9c\\xd1\\xea\\xc7\\xe0<\\x86\\xae;\\xf9>V\\xdeX\\xd8\\xe3\\xc4x\\x1aƛ\\xc9x\\xfa&\\xe02Q\\x8f\\x89f:\\x917w\\xe1\\x9aˏ\\\\\\xf5\\x93h\\x9c̣\\xc9G#\\x9d\\x92\\x1b\\xe9T\\\\\\xa7\\xe20\\xcd\\xf94z\\xa6ÚA\\xdf\\f\\x9f\\xf3xt\\x0fL\\u007f\\xfb\\xa6\\xb3q\\x9b\\xe3l..s\\xad\\xf3`\\xde\\xeb|\\xbe\\xf9ݧ\\xd7\\x02\\xde/\\x90w?M\\vy\\xfa\\xc0\\xeeH\\x17\\xe1\\xb7\\xc8\\xf3b\\x9a\\x16\\xbb\\xb3Kp_\\xe2y\\xe9\\x8e\\xff\\x01U\\x87\\x80\\xb6x\\x9cc`d``>\\xce\\x18\\xc0\\xa0\\xc0\\x00\\x02L@\\xcc\\b\\x84\\f\\f\\x0e`>\\x03\\x00\\\"T\\x01\\x81\\x00x\\x9c\\xad\\x92\\xcdn\\xd3@\\x14\\x85\\x8f\\xed\\xa4\\x12\\xe9\\xa6?4(\\xa8\\x8bY\\xe5Gj\\xdcԩ\\xa9Ȋ\\xaaRĂ\\rj\\x85\\xd8:\\x89\\xdbX\\x8d3\\x96=M\\xd4\\a@<\\x06\\v\\x96,\\x80g\\xe0\\x01X\\xb0\\xe0!X\\xf2\\x02\\x1c;W\\xb4A\\xb4\\x02)\\xb6\\xe4\\xf9f\\xee\\x9ds\\xee\\x1d\\x0f\\x80]\\xeb\\x15,,\\x9e\\xc7x\\\"l\\xa1\\x867\\xc26\\xca\\xf8 \\xec@\\xe1\\xa7p\\t5\\xeb\\xb9p\\x19u\\xeb\\x93\\xf0\\x1a\\xaavY\\xb8\\x82={&\\xbc\\x8eG\\xf67\\xe1\\rl;\\xdb\\u009b(;]\\xe1-ԜXx\\x879\\x1f\\x85\\xab\\xcc\\xf9Jw\\xab\\xf4\\x80\\xb3â\\x92\\x9c-xx)l\\xd3흰\\x83g\\xf8,\\\\\\x82g=\\x14.\\xe3\\x855\\x10^Þ\\xf5]\\xb8\\x82\\xd7\\xf6\\xae\\xf0:\\\\\\xfb\\xbd\\xf0\\x06\\xea\\xf6\\x0f\\xe1MT\\x9c\\x86\\xf0\\x16<\\xe7\\xa9\\xf0\\x0e\\xea\\xce[\\xe1*s\\xbe\\xe0\\x04\\x1a\\t\\xae\\x91\\\"\\xc2\\x05\\xc60<\\xb5&\\x86hq\\xec36-V\\x8e1G\\x88\\x8c\\xf3\\x98#Ntr\\x9dF\\x17c\\xa3\\x9aÖ\\xea\\xeb\\xa9Q\\xc7\\xf30\\xd31cwmR\\xf0\\vɔ\\x9c\\xcfN\\xb9>\\xa1\\xe9\\x88[n\\t(_\\xf5\\xd30T\\xa7z\\x121t+KV\\xfe_\\xbf͈\\x8b\\x03\\x1e\\xbf\\x8b\\xce=nm\\xdf=\\xf0\\xdcΪ[\\xe8\\xf2\\xed\\xd0\\xfa\\x88\\xbb\\xbd\\xe2t\\xef֟\\xf1\\x9br\\x1e\\x15\\x19\\xbd\\xc2\\xf1\\xa6\\xf4\\x16ź\\x1d\\xf7\\xc8\\xf7Ts\\xc9p\\x16\\xa6Y\\xa4\\xa7=\\xb5\\xe8\\xa0u\\xd3²\\x81\\xff\\xbb\\xf8\\xf6\\x9fŋ\\x94\\x9fWޖ\\xca\\xcfx\\x1f\\xf2\\xaar\\x89\\x01\\x1a\\x94Q\\x94\\xd1\\x1c\\xf3ړ\\xe2\\xe6\\\\Q$\\xa0\\xa8\\xa2\\u05300U\\x8c\\x87EF\\xc0و\\xa3\\xe1znv\\xc9\\x1c\\xc3Np6\\x0e\\xd5<\\x1c42\\x15\\xeb̨D'W\\x93 U\\xd1POU\\x16\\x1a\\x15LG\\xcah=\\xb9\\x8c\\f\\xb3\\xf3Kih\\x95\\xf1@\\xf6\\xf9\\x9eKo\\xc1Rona\\x1f3ݘ$\\xeb\\xed\\uf7f3\\xab`ѕ;\\xd4\\xf1\\xbf\\xfeֿ\\xfd\\xca\\xd5\\xdc\\xc3\\xfb.\\xc9Jk\\xfb\\x05\\xead\\xebe\\x00x\\x9cmZ\\x05\\x98\\xe4\\xc6\\xd1\\xdd\\xee\\xeaᙅ;\\xb3\\x83v8Q\\xe28\\x89\\xc3q\\xd0af\\x8eF\\xea\\x19\\xe9Ftji\\xe7\\xe6\\x82vȱ\\x9d8q\\x98\\x999v\\x98\\x99\\x99\\x99\\x99\\x99\\x93\\xffU\\xb7fw\\xf6\\xf2\\xef\\xf7\\xadTՒZ\\xea\\xee\\xaaW\\xaf\\xaagM\\xaeٿ\\xff~s\\xed\\xf8\\xb5\\xff\\xe7\\x8f>\\x8a\\x83X\\x93B\\n\\x12J\\xb4D[tDW\\xf4D_\\f\\xc4P\\x8cĺ\\xd8\\x10\\x9bbK\\xec\\x13\\xfb\\xc5Q\\xe2hq\\x8c8V\\x1c'\\x8e\\x17'\\x88\\x13\\xc5\\xc5\\xc4\\xc5\\xc5%\\xc4%ťĥ\\xc5I\\xe2dq\\x19qYq9qyq\\x05qEq%qeq\\x15ቫ\\x8a\\xab\\x89S\\xc4\\xd5ũ\\xe2\\x1a\\xe2\\x9a\\xe2Z\\xe24qmq\\x1dq]q=q}q\\x03qCq#q\\xba\\xb8\\xb1\\xb8\\x89\\xb8\\xa9\\xb8\\x99\\xb8\\xb9\\xb8\\x858C\\xdcR\\xdcJ\\xdcZ\\xdcF\\xdcV\\xdcN\\xdc^\\xdcA\\xdcQ\\xdcI\\xdcY\\xdcE\\xdcU\\xdcM\\xdc}m}\\xed\\xb7k#q\\x0fqOq/qoq\\x1fq_q?q\\u007f\\xf1\\x00\\xf1@\\xf1 ዱ\\bD(\\xb4\\x98\\x88\\xa9\\x88D,\\x0e\\x88\\x99HD*2\\x91\\x8bB\\x1c\\x14\\xa50\\xa2\\x12\\xb5\\xd8\\x16sqH,\\xc4a\\xf1`\\xf1\\x10\\xf1P\\xf10\\xf1p\\xf1\\bq\\xa68K<R<J<Z<F<V\\x9c-\\x1e'\\xce\\x11\\xe7\\x8a\\xf3\\xc4\\xe3\\xc5\\x13\\xc4\\xf9\\xe2\\x89\\xe2I\\xe2\\x02\\xf1d\\xf1\\x14\\xf1T\\xf14\\xf1t\\xf1\\f\\xf1L\\xf1,\\xf1l\\xf1\\x1c\\xf1\\\\\\xf1<\\xf1|\\xf1\\x02\\xf1B\\xf1\\\"\\xf1b\\xf1\\x12\\xf1R\\xf12\\xf1r\\xf1\\n\\xf1J\\xf1*\\xf1j\\xf1\\x1a\\xf1Z\\xf1:\\xf1z\\xf1\\x06\\xf1F\\xf1&q\\xa1\\xb8H\\xbcY\\xbcE\\xbcU\\xbcM\\xbc]\\xbcC\\xbcS\\xbcK\\xbc[\\xbcG\\xbcW\\xbcO\\xbc_|@|P|H|X|D|T|L|\\\\|B|R|J|Z|F|V|N|^|a\\xed$\\xf1E\\xf1%\\xf1e\\xf1\\x15\\xf1U\\xf15\\xf1u\\xf1\\r\\xf1M\\xf1-\\xf1m\\xf1\\x1d\\xf1]\\xf1=\\xf1}\\xf1\\x03\\xf1C\\xf1#\\xf1c\\xf1\\x13\\xf1S\\xf13\\xf1s\\xf1\\v\\xf1K\\xf1+\\xf1k\\xf1\\x1b\\xf1[\\xf1;\\xf1{\\xf1\\a\\xf1G\\xf1'\\xf1g\\xf1\\x17\\xf1W\\xf17\\xf1w\\xf1\\x0f\\xf1O\\xf1/\\xf1o\\xf1\\x1f\\xf1_\\xc9f %I%[\\xb2-;\\xb2+{\\xb2/\\ar(Gr]n\\xc8M\\xb9%\\xf7\\xc9\\xfd\\xf2(y\\xb4<F\\x1e+\\x8f\\x93\\xc7\\xcb\\x13\\xe4\\x89\\xf2b\\xf2\\xe2\\xf2\\x12\\xf2\\x92\\xf2R\\xf2\\xd2\\xf2$y\\xb2\\xbc\\x8c\\xbc\\xac\\xbc\\x9c\\xbc\\xbc\\xbc\\x82\\xbc\\xe2\\xda\\xd9\\xf2J\\xf2\\xca\\xf2*ғW\\x95W\\x93\\xa7ȫ\\xcbS\\xe55\\xe45\\xe5\\xb5\\xe4ik箝,\\xaf-\\xaf#\\xaf+\\xaf'\\xaf/o o(o$O\\x977\\x967\\x917\\x957\\x937\\x97\\xb7\\x90g\\xc8[\\xca[\\xc9[\\xcb\\xdb\\xc8\\xdb\\xca\\xdb\\xc9\\xdb\\xcb;\\xc8;\\xca;\\xc9;˻Ȼʻɻ\\xcb{\\xc8{\\xca{\\xc9{\\xcb\\xfb\\xc8\\xfb\\xca\\xfb\\xc9\\xfb\\xcb\\a\\xc8\\a\\xca\\aI_\\x8ee C\\xa9\\xe5DNe$cy@\\xced\\\"S\\x99\\xc9\\\\\\x16\\xf2\\xa0,\\xa5Y;o\\xed\\x1cY\\xc9Zn˹<$\\x17\\xf2\\xb0|\\xb0|\\x88|\\xa8|\\x98|\\xb8|\\x84<S\\x9e\\xb5֕\\x8f\\x94\\x8f\\x92\\x8f\\x96\\x8f\\x91\\x8f\\x95g\\xcb\\xc7\\xc9s\\xe4\\xb9\\xf2<\\xf9x\\xf9\\x04y\\xbe|\\xa2|\\x92\\xbc@>Y>E>U>M>]>C>S>K>[>G>W>O>_\\xbe@\\xbeP\\xbeH\\xbeX\\xbeD\\xbeT\\xbeL\\xbe\\\\\\xbeB\\xbeR\\xbeJ\\xbeZ\\xbeF\\xbeV\\xbeN\\xbe^\\xbeA\\xbeQ\\xbeI^(/\\x92o\\x96o\\x91o\\x95o\\x93o\\x97\\xef\\x90\\xef\\x94\\xef\\x92\\xef\\x96\\xef\\x91\\xef\\x95\\xef\\x93\\xef\\x97\\x1f\\x90\\x1f\\x94\\x1f\\x92\\x1f\\x96\\x1f\\x91\\x1f\\x95\\x1f\\x93\\x1f\\x97\\x9f\\x90\\x9f\\x94\\x9f\\x92\\x9f\\x96\\x9f\\x91\\x9f\\x95\\x9f\\x93\\x9f\\x97_\\x90_\\x94_\\x92_\\x96_\\x91_\\x95_\\x93_\\x97ߐߔߒߖߑߕߓߗ?\\x90?\\x94?\\x92?\\x96?\\x91?\\x95?\\x93?\\x97\\xbf\\x90\\xbf\\x94\\xbf\\x92\\xbf\\x96\\xbf\\x91\\xbf\\x95\\xbf\\x93\\xbf\\x97\\u007f\\x90\\u007f\\x94\\u007f\\x92\\u007f\\x96\\u007f\\x91\\u007f\\x95\\u007f\\x93\\u007f\\x97\\xff\\x90\\xff\\x94\\xff\\x92\\xff\\x96\\xff\\x91\\xff\\xa55\\x12$\\x89HQ\\x8b\\xdaԡ.\\xf5\\xa8O\\x03\\x1a҈\\xd6i\\x836i\\x8b\\xf6\\xd1~:\\x8a\\x8e\\xa6c\\xe8X:\\x8e\\x8e\\xa7\\x13\\xe8D\\xba\\x18]\\x9c.A\\x97\\xa4Kѥ\\xe9$:\\x99.C\\x97\\xa5\\xcb\\xd1\\xe5\\xe9\\ntE\\xba\\x12]\\x99\\xaeB\\x1e]\\x95\\xaeF\\xa7\\xd0\\xd5\\xe9T\\xba\\x06]\\x93\\xaeE\\xa7ѵ\\xe9:t]\\xba\\x1e]\\x9fn@7\\xa4\\x1b\\xd1\\xe9tc\\xba\\tݔnF7_{\\x1b݂Π[ҭ\\xe8\\xd6t\\x1b\\xba-ݎnOwX\\xbb\\x80\\xeeHw\\xa2;\\xd3]\\xe8\\xaet7\\xba;݃\\xeeI\\xf7\\xa2{\\xd3}\\xe8\\xbet?\\xba?=\\x80\\x1eH\\x0f\\\"\\x9f\\xc6\\x14PH\\x9a&4\\xa5\\x88b:@3J(\\xa5\\x8cr*\\xe8 \\x95d\\xa8\\xa2\\x9a\\xb6iN\\x87hA\\x87\\xe9\\xc1\\xf4\\x10z(=\\x8c\\x1eN\\x8f\\xa03\\xe9,z$=\\x8a\\x1eM\\x8f\\xa1\\xc7\\xd2\\xd9\\xf48:\\x87Υ\\xf3\\xe8\\xf1\\xf4\\x04:\\x9f\\x9eHO\\xa2\\v\\xe8\\xc9\\xf4\\x14z*=\\x8d\\x9eNϠgҳ\\xe8\\xd9\\xf4\\x1cz.=\\x8f\\x9eO/\\xa0\\x17ҋ\\xe8\\xc5\\xf4\\x12z)\\xbd\\x8c^N\\xaf\\xa0Wҫ\\xe8\\xd5\\xf4\\x1az-\\xbd\\x8e^Oo\\xa07қ\\xe8B\\xba\\x88\\xdeLo\\xa1\\xb7\\xd2\\xdb\\xe8\\xed\\xf4\\x0ez'\\xbd\\x8b\\xdeM\\xef\\xa1\\xf7\\xd2\\xfb\\xe8\\xfd\\xf4\\x01\\xfa }\\x88>L\\x1f\\xa1\\x8f\\xd2\\xc7\\xe8\\xe3\\xf4\\t\\xfa$}\\x8a>M\\x9f\\xa1\\xcf\\xd2\\xe7\\xe8\\xf3\\xf4\\x05\\xfa\\\"}\\x89\\xbeL_\\xa1\\xaf\\xd2\\xd7\\xe8\\xeb\\xf4\\r\\xfa&}\\x8b\\xbeMߡ\\xef\\xd2\\xf7\\xe8\\xfb\\xf4\\x03\\xfa!\\xfd\\x88~L?\\xa1\\x9f\\xd2\\xcf\\xe8\\xe7\\xf4\\v\\xfa%\\xfd\\x8a~M\\xbf\\xa1\\xdf\\xd2\\xef\\xe8\\xf7\\xf4\\a\\xfa#\\xfd\\x89\\xfeL\\u007f\\xa1\\xbf\\xd2\\xdf\\xe8\\xef\\xf4\\x0f\\xfa'\\xfd\\x8b\\xfeM\\xff\\xa1\\xff\\xaa5%\\x94T\\xa4\\x94j\\xa9\\xb6ꨮꩾ\\x1a\\xa8\\xa1\\x1a\\xa9u\\xb5\\xa16Ֆڧ\\xf6\\xab\\xa3\\xd4\\xd1\\xea\\x18u\\xac:N\\x1d\\xafNP'\\xaa\\x8b\\xa9\\x8b\\xabK\\xa8K\\xaaK\\xa9K\\xab\\x93\\xd4\\xc9\\xea2\\xea\\xb2\\xear\\xea\\xf2\\xea\\n\\xea\\x8a\\xeaJ\\xea\\xca\\xea*\\xcaSWUWS\\xa7\\xa8\\xab\\xabS\\xd55\\xd45յ\\xd4i\\xea\\xda\\xea:\\xea\\xba\\xeaz\\xea\\xfa\\xea\\x06\\xea\\x86\\xeaF\\xeatu\\xe3\\xb5o\\xab\\x9b\\xa8\\x9b\\xaa\\x9b\\xad\\xedS7W\\xb7Pg\\xa8[\\xaa[\\xa9[\\xab۪ۨ۩۫;\\xa8;\\xaa;\\xa9;\\xab\\xbb\\xa8\\xbb\\xaa\\xbb\\xa9\\xbb\\xab{\\xa8{\\xaa{\\xa9{\\xab\\xfb\\xa8\\xfb\\xaa\\xfb\\xa9\\xfb\\xab\\a\\xa8\\a\\xaa\\a)_\\x8dU\\xa0B\\xa5\\xd5DMU\\xa4bu@\\xcdT\\xa2R\\x95\\xa9\\\\\\x15\\xea\\xa0*\\x95Q\\x95\\xaaն\\x9a\\xabCj\\xa1\\x0e\\xab\\a\\xab\\x87\\xa8\\x87\\xaa\\x87\\xa9\\x87\\xabG\\xa83\\xd5Y\\xea\\x91\\xeaQ\\xea\\xd1\\xea1\\xea\\xb1\\xeal\\xf58u\\x8e:W\\x9d\\xa7\\x1e\\xaf\\x9e\\xa0\\xceWOTOR\\x17\\xa8'\\xab\\xa7\\xa8\\xa7\\xaa\\xa7\\xa9\\xa7\\xabg\\xa8g\\xaag\\xa9g\\xab\\xe7\\xa8\\xe7\\xaa\\xe7\\xa9\\xe7\\xab\\x17\\xa8\\x17\\xaa\\x17\\xa9\\x17\\xab\\x97\\xa8\\x97\\xaa\\x97\\xa9\\x97\\xabW\\xa8W\\xaaW\\xa9W\\xabרתש\\u05eb7\\xa87\\xaa7\\xa9\\v\\xd5E\\xea\\xcd\\xea-ꭣi\\xe2\\x1b\\xe3\\xa5~Y\\xc5Y\\xdcJk\\x13\\am\\xa3\\xfd2\\x88Z\\x11N\\x952\\x95_\\xaa\\xda\\xe8RM\\xe2$\\xedV\\x91\\x97\\xf8\\xe5T\\xcb*\\xea\\xb0\\x1c\\x9b\\xaa\\x15D:\\x98\\xb5\\xaa8\\xd5f\\xe0\\x9e\\xf5\\x8a\\xa46\\xc3FN\\xe3\\xac6\\xbd\\\"\\x9f\\xeb\\xd2\\xcb'\\x93\\xb6\\x89\\xa7\\x99\\x9fP\\x90cv\\xf2T\\xb7\\x82$\\x0ff\\xaa\\xcc\\xfd\\xb0\\x1b\\xe6\\xf3,\\x81Њ\\xb3q~H\\x95:̕YdA\\x97\\xdf\\xe3\\xf9I\\xa5콓ğ\\xf6\\xf1ya\\x11\\xe5\\x996\\xfd\\xed<\\xa9S͝\\x0f\\x1a\\x91;\\xea5r]\\xb4\\x0f\\x96A\\x1e\\xea\\xceطg\\xaa\\xfc\\xa9¿Q\\xe3<\\x9fu\\xf9\\x80\\t\\x98\\xb5\\x8a2Ϊv৺\\xf4\\xd5$\\xcf*\\\\O\\xc2v\\\\\\xf9I\\x1c\\f*}\\xa8\\xf2\\\"\\x1dO\\xa3\\xaao\\xe5y\\x1cVQ\\x1fצ\\x99\\x97\\xe8I5tb\\xa0\\xb3J\\x97\\x03\\xa7\\x94|\\xfb\\xc8\\xc9\\ajSœ\\x85\\xe2\\xb1t\\xf2\\xba\\nqc;\\xce\\xf8\\xd4ڎC\\x9d\\xb7\\xe2ԟ\\xea~\\xea\\x17\\xbc 3]\\xb6\\xfd\\x90\\x1fRX\\x9bJ\\xe90\\xaeF\\xa6҅7\\xf6\\x83\\xd9\\xdc/\\xc3\\xd1\\xc4Ǭ,\\xb5\\xeeRPE\\xe2/Z\\x85\\x8fE\\xc3\\xea\\xe5Eg\\x92\\x97\\xdc>\\xb4\\xb7/\\x15\\xdbS\\xa3\\xb4\\xf4\\x01\\x1dTC\\xac\\xe3v\\x99\\xbb\\xc1\\x8c\\x96\\x8a\\x1d\\xc1\\x80\\xd7\\xd3\\v\\xe22H\\xf4Ю\\xe7R\\xb1\\xab\\xbeT\\xac!4\\xca\\xc6\\xc1Zc\\xbc\\xe8\\xc1\\xe9\\x838\\x9b\\xe4\\x8d\\xdc\\x0f\\xcaܘȏKCc?\\xeb\\xfbe\\x99\\xcf\\xedk\\aN\\xb4/\\xed:\\xb9.\\x9a뼦-<U\\xea\\xb6>T\\xf8Y\\xd8\\r\\xf2\\xb4(\\xb51\\xfb\\xf4\\xa1 \\xf1S\\u007f\\xe5uj\\x1aO`-ڟ\\xc0nKMz\\xa1{\\xf8\\xf7\\f\\xec=:j\\xf5\\xfe\\xaa\\x8c\\xfdl\\x9a\\xe8\\x16\\xa6-\\xc3\\x18\\xfcDg\\xa1_\\xb2\\xb5\\xb5K\\xbc%O;xOʋ\\x85\\xe5\\xc9t\\xd5_NM]\\xecL\\x19\\u007f[\\xa7\\xd4\\xd5\\\\k,R\\x94\\x17E\\x9cM\\xbd\\x00\\x0eԞ\\xc0\\x86`\\x0f\\xee\\xe4\\xe5\\x85\\xcez\\x01\\x06\\xc1\\vW\\x0e\\x9d\\xb1yx\\xb2\\xcci\\xa6\\x17\\n^a\\xba\\xcd\\xfbL\\x8f\\x9dϋ\\xfcdҫ\\xa2:\\x1dWX\\xe16\\xee,\\xa2E\\xbb.\\xac\\xa3$:ͳ\\x96\\xf5\\x83\\xa1=z\\xe6`\\xcdSTg\\xec*\\x83\\xa0d\\xbb\\xe1/\\t\\xa94\\x86\\xa2\\x10\\x86R'I\\x94\\x97\\xd9 \\xd0p\\xfbI\\x1c\\xf8\\x95ތ0T\\xaf\\xc8ain\\xf67V\\x1a\\xacA\\xac\\xe8u\\xb1z\\x95Ǿ\\xe5\\x96\\xc8ͽ\\xbd\\u007fߞ\\x16\\xd7垦\\xba\\xd8\\xfb\\x90]\\xdei\\x92\\x8fu{^\\xea\\f\\x00T\\xf9ffڀ\\x1d\\xf8So\\\\\\xc6z\\x12\\xf8F;k0\\xbc>-\\xc6%\\x03\\x87\\xcaf\\x8c\\\"u\\xd8\\x022\\x98\\x19\\x05u\\x85\\x89,\\x16\\xbd\\xc2/4:\\x8f\\ve\\xfcm\\xddvS\\xa30\\xf1\\xa6c\\x11\\xa5N\\xdc9O\\xe0Ye<\\xd3UT\\xe6\\xf54\\xea\\xd5p\\xcb\\x12\\xfdj|\\xc4\\x18\\xb6\\x81\\x95\\x8f\\x83VU\\xd6\\xc1\\xac\\x8f\\t\\xd7\\vo\\x1c'I\\x1fӪ\\xdd\\x04t\\x9d\\bcu\\x825f'ڱÆ\\x00F\\x99Q&/\\xab\\x1e\\x1f\\x9c\\xcdX\\xa9.\\xba:\\xdb\\xd6\\t\\x8cC\\xe1\\xcdyk\\x8a\\xafM\\x18}\\xaa\\x8e\\x89+\\rD\\xe8b\\xf9K\\x9d$>\\x1c\\x1b\\xae\\xdbK\\xb8S,\\xe4\\xb8\\xc3s\\xe0\\xa5\\xe1\\x00\\xadU\\x94\\x1b\\x8c[wM\\x1dW<Wj\\x8cG\\xda\\x01\\x80Q\\xeb..\\x16\\x8ce=?Ń~\\x16\\xe8v\\xaa\\xc3Y\\\\\\r&\\xdc\\x19z9\\xa0\\x01yZ\\x97ݨ\\xb1\\\"\\xe7\\xf7N\\u07b2^\\x82\\xaf\\xae\\xc7;K\\xbc\\xda\\xd2,\\xf1j\\x13/\\xf1\\xaa\\xce#\\xee\\xbb\\x16\\xe7\\xecVl\\x9c\\xdd\\xca\\xec\\xec\\xcd\\x13\\x98\\x9cP\\x9b\\x19\\x00\\xac\\x9d\\xf8\\x05\\x9f\\xecR\\xc0\\vs̽\\xee\\x1f\\xac\\xf3\\xaa\\xe9ǉn\\x9e1\\xc6,\\x03t:\\xabj\\x99\\x14\\xf7\\xb6&\\xb0\\x98\\x8cR\\x1du\\xa6p\\xb8\\x02\\x91\\x06\\xbe6\\xce\\xe1\\x14\\xeb\\x1cK<\\v\\\\\\x1a\\xae\\xd2\\xc54\\x00\\xdf\\xfcDq\\xa0蕺H\\x16\\xb0\\xb4d\\x1d\\xce\\xe4\\xe0\\xc2Z\\x9f\\x02\\x80\\x15\\x03\\xbe\\xc5\\x1b\\x03#\\x82\\x88\\xdd\\rV\\xa8\\x18\\xe4\\x06+\\xe8205,\\xd0\\x04e\\\\`\\xd5뱓\\xda\\xf0y\\xacڰ\\xa8\\x0f\\x1f\\xc6X\\x8bX\\a\\x80\\xfd\\x98;e\\x17\\xde\\xdc\\x15\\x1d^u\\x97\\xa0\\xb4\\xc5X\\xe6!\\xf8\\x00]\\xea\\xd8D\\x18g\\t/\\xd7\\xd5\\xfe%\\x10\\xadx\\xe0QG\\xb4\\xd9\\xf9\\xd9:\\xa2\\xb1.\\x8e|\\x94g\\xbe\\xcdc\\xca˾\\x03\\x11v5\\v\\x1a\\x06\\bڇEŅ\\x89\\x8d\\x17\\xed\\x8a\\xdb}`ˮ\\xcd\\xf8\\x8b\\xbd\\xb1\\xc2]h\\u0083S\\xfa\\xc0\\xc1e\\xbb\\xc5\\xf4Fa\\xac\\x85\\x85\\x9b-\\xe7;\\xae\\xd1~\\xd3ƞ\\x96\\xbaطG\\xb7\\x83\\xeb\\xe9\\xba\\xcc=\\xe6\\x17\\xfd\\\"\\x87#Yq\\x10\\xe6p\\x9b\\xd25\\x97X\\x0em\\xc5\\xee\\x82?\\xc0\\xb5\\xb1mڶy\\xeeژ\\xeb\\xe8.\\x1fx\\xec\\x1b\\xd6I\\xfd\\xa4\\x88|\\xfb%\\xa3\\x15\\xbd.6\\x9d\\x96\\xe2\\x85Χ\\xd7W\\x1b\\xe0\\x02V\\xcd\\xc0D\\xca8p#\\xd9\\xd3R\\x17\\x0e\\xdc\\r\\xa4A#\\xd95\\x98\\xc0\\xef\\x11\\xc8\\xf8@\\xa6\\xceT\\x9a\\xe7Y\\x87\\x19U\\xbc\\xadi\\\\O\\xf7N\\x11\\xafx?̫e\\x88\\x9dGZ'\\x01\\xc7X`\\x05B\\f\\x0fkd\\n?\\xc0P\\xa3\\xba\\xaa\\x10\\xa1\\x97\\x98\\xb3\\\\\\x92:C\\xcf%\\x00g\\xb1>-\\xfd\\xb0n\\xe2)\\xc0\\ah1\\xad\\xc1Mh\\xe2\\x1f\\x82%\\xc4I\\b\\x03\\x04\\xef\\x83@\\x85\\x0fw\\xa8\\xc7\\xe0q8\\x18\\x04\\xc1`\\x81\\xf7\\x13>\\x0e\\x1c\\xebP\\xac\\xaa\\x12\\xd8\\x13\\xfap^ؼ\\x9b\\xd3\\\"\\x9c\\xf4\\xac0\\xcf˰o%\\xf8\\x8cN6\\xdcUf\\x8a6\\xb4\\xb8K\\x96\\x15\\r\\xddb\\xb8ѻv\\xbf\\x0e\\xe3܉\\x96>\\xb9.\\xad\\xdf&\\xf1\\x84M\\\"\\x9b\\x0e\\x1b\\xa3\\xce\\xf2*\\x88\\x066\\x1cx6\\xcew\\\"\\xe0~^.:L#qc\\xcf$裄U\\xf7\\x9c9b\\xdd7w$o\\x199\\xf2tܞ\\xd4\\x15\\x90\\x99\\xaaj\\xd1\\x1f\\xc7Y\\x1e\\x00K\\x11\\x84\\x80\\x94\\xd3^\\xa6\\xe7ƾD\\xcd\\x11W\\x11\\n\\x12\\xbe\\x8a\\xf7\\xf4\\x19\\x88\\x9d3#\\x8a\\xe08`2\\x12\\xc2\\xcbq3\\xbe\\x8b\\xe3踬M4\\x1a\\xc7e\\x15\\x85\\xecA\\xfe\\fD\\xc92\\x05\\xbc\\xdaoH\\x03\\xb0\\xa2i\\xe4\\xe8ԯ\\xf2)\\xa3%\\x00\\xbe\\xb7\\x14\\xb3\\xce8vK0\\xae\\xe1FIntȋȋ\\x89\\x81\\x0e\\x80\\x1a3\\x9dX{\\xe8\\x05\\xb6K`\\xfcF\\xe0\\u07b3\\xe4Y\\xcaDq1\\xb0\\xa1\\xc5hp\\x88\\nQ\\x0fð\\xfd\\\"\\xd2`I+L\\xba\\x9e\\xf7l\\x920\\xd6>(\\xac\\x86\\xab\\xc3Z\\x11[a\\xd8A].\\x06\\x18if\\xa6\\x9ac\\xe9Ɗ\\xcc3:\\xb4\\xb77\\x81a\\xc0O5r\\xdf]\\xe0\\x16\\u05cc\\xb7\\xe53=Z\\x91\\xbd\\xed=Z\\xd4\\xcet\\r\\xdc\\xee\\xbb\\xde\\x13\\x10B\\xa40%L\\xb9g\\a\\xc0\\xe3\\xeb[ɒU\\x1a\\xeb\\x90\\xd7 \\xce\\xda\\x00乿\\x18\\x8e\\xfd\\n\\x8f/\\xbc\\t \\ue625\\x02&\\x00\\xa4\\xe0e\\x87jv\\xeea2\\xb6\\xb1T\\x9a\\xab\\xa3\\xa5\\xaeӢZ\\x8c\\xe0\\xf8F;n\\x84P\\x1a{\\x98\\n8\\xfc0\\x1f3\\xc9\\xf6\\xa6 \\x18\\xc5z\\xa3ԙU1\\xa3q0[\\xb0\\x95\\xdat(\\xd3\\xe8\\xd2Fh\\xcf0\\xf4oDy]\\xbaL\\x8d\\x19a\\xb5\\xbe\\xab\\xf3\\xf7\\x8cvU\\xcc@oG\\xebY\\x92\\xc6\\x01\\xa2\\xef\\xe8\\x1a[\\xa6\\xe3q&\\x88\\r>\\xca\\f\\xac\\x96ć\\x11\\n\\xddM\\xa6\\xc0\\xfd\\xc3]z\\x87yu\\x8a\\x06t\\xc8j{\\xb4C\\x90y^\\xd7w4\\x8b\\xf4\\xbb\\xaa\\x9d\\xea]\\xd5B\\u007f\\x17\\xc9\\x0e\\xd2\\x198\\x1d\\xa78\\x88\\xd3=>\\xb3!\\x1a\\x824hh\\xaf5\\x0f\\x9b\\xbe,S\\a\\xceb\\x96\\x11e\\x87\\\\\\x8f\\xfd\\xe9Ɗb\\x10\\x05;\\x11<\\v\\x89\\xddf\\x83d~\\xe2\\xf9A\\x00{h\\x8d\\xe1-\\xe1\\x96E\\f\\x0f\\xac\\xc2Fa\\xf8CC\\x99]\\xa2\\xd8A(\\a\\xa9\\xd3'b\\xea\\x00\\x0e\\xe8\\xc1\\xa6\\xb7\\x9a\\xbd\\xc63\\vH\\xa99ٷ\\xa0\\xed\\xbb0\\xe1-qѳ\\x13\\x85\\\\\\x84\\x03\\xb3\\n\\x91u\\x8c\\xf6\\\\\\xef'\\xf0\\xab\\xed\\xd8\\xe0\\x95vQ\\x00,0\\xe9\\x1d\\xfc\\xe5\\xa4`\\xe8\\x87!\\xe72\\x1e\\xa7\\xa3;\\n\\xf3v\\xe7\\x86n\\xf8\\xdd8\\xc4Xé\\xeeġ\\xbd\\xb8Y\\x81\\x04\\xa4H\\xa3\\x99\\xbf\\xb1\\x01\\x9f\\xb0ڰ\\u05c8\\xf7\\xdcˆ\\xb3\\u007f\\xb5\\xa1\\xb9kk\\xb5\\xcd\\x1at\\x1b\\xb3\\fD\\x06mF\\xce_\\xe4!\\x88e\\xb51\\xc7|bL)\\x10>\\x8d\\x0f\\xeb\\x1d=ά\\xbe\\xde\\xe8\\x18\\x04`C\\xf7,\\xa3\\x01v\\x17=\\x93\\xe5sp.\\f\\x1f>\\x9b\\x998a\\x8b˳n\\xa3\\x99.\\x13`6\\x81\\x9e\\xc5I\\xcb=\\xb8\\x04`\\x9b\\xd8\\x10\\xe6>\\xa0|h\\xa7\\x17I47\\x0f\\xac\\x12g\\xf6^\\xae\\x19\\xb0@\\xe8\\xb5mC\\x87a\\xae\\x11\\xe0E\\xb6Ug\\x1d\\xa6\\x1e\\x90\\xf7\\xc3Ѧ\\r\\xe61\\xc63\\xee\\x1d\\xd9fy\\xd4\\x11m\\x8eG\\x1dш8\\xef\\x92Ro7=\\xe9q\\xe6aY\\xe6p\\xb7ыV\\x95\\xed\\xa3w\\xbbX\\xe1_\\xff\\xdb\\xca\\x1fr\\xcc\\xff\\xb4\\xdaO\\xd9\\xff?\\xcd\\xf6c\\xb0~\\xe0\\xb1\\x1c&,\\x81;noK\\xc3\\x1a\\xd8\\xd5\\x10za\\x93S\\xab\\xec\\xb3i\\x94\\xb7\\xac\\xc3\\xd8(\\xe8\\x9a\\\\\\xbei\\xe7p\\xaa\\xd3\\xf5D\\xc3v\\xed}\\xb6\\x0f\\xa7օ\\x1d\\xb6\\xe5\\x8cl\\xd3뻥\\f\\xbe\\xb0\\xbe\\xc2k\\xa1\\xf6\\x1d\\x91wWvr*\\xbb\\xa0\\xabܷ\\x00Y\\x82cV-K\\xc6\\xfb\\bL:\\xb1\\xdf\\xd1w\\xf9\\x80}\\x1e\\x99q\\xd4ج\\xbd\\x123)\\xb6\\xf6`\\x9d\\x87?\\xb1\\xb1H\\x1b\\x10\\x87\\xcbʁ\\xbd{\\xb9pI5b\\x8e\\x02\\xe8M<>l8T\\xd9ч\\xe3|\\x9e8\\xb4I\\x12\\xaez\\x193\\xb4G|8#ѠQx\\xc5\\xfbN\\x9eY\\x0e\\xe2\\xc4̖\\x8e\\x9c\\x02Ҕ5\\xb7\\x1f\\xac\\xb5Κ\\xe6\\x92\\xebQ!( Ӆ\\xd1$\\xcfw_ޛ\\xe6\\xc9\\xc4J\\x83\\x88)\\xff\\xc2+\\x90\\x8c\\xf6\\x0e\\xd6q\\x88\\x04\\x1f\\xe4\\xa6YQƀ\\xa1\\x9d\\x19\\x0f\\x1e\\x95\\xc5f\\x03\\xe8\\x96 \\xdb\\xd9\\xe9\\b\\xff\\xba\\x9c\\xc6\\xdat\\xc7v\\xd8qH\\xe3\\xfcP\\v\\xff\\xdal\\xed\\xa4\\xd9\\x1erC\\x00\\x1d\\xb2к\\xe4\\xec\\xb605\\\"\\xebƎI;H_\\xdf\\xd5\\x19+{a\\xecO3L\\xb0\\xa10\\xf3[̼\\x17#{\\xf4\\xe0\\xf3\\xe0\\t\\xa1\\xe3qMߛ\\xab\\x8a5\\x1d\\xe47\\\\\\xe8\\x8b\\xc3\\xe12[\\xb5\\x04|G1\\x8b\\x14\\xdckЀ\\x9f]2\\x0e\\x9af\\xd9I\\xbb\\xe0\\xd1U\\xad\\x02\\x96d\\xf6\\xf3\\x12/\\xa1\\x1e\\xcb¤\\xf7\\xd8\\xff\\xa7\\xcd\\x1aA\\x01|\\xd2a\\x8d\\xab#\\xe6>6\\xaap\\xc1\\xaccҜW\\xb1c\\x16L(u\\xc7Y\\x9d\\x19\\xac\\xe0\\xa4ڎ\\xfd\\xa4\\xc5\\aӛc\\x11\\\"f\\x00\\xed\\xb9\\xad\\x15\\xb6\\x0ey\\xa5\\xbf\\xe8bv\\x1d\\xcc/\\x83\\x1c\\xa8\\xba\\x19-\\x15G\\f\\x83\\xbcF&\\x19\\xe6\\x99_i\\x15\\xe6\\xdbڅ\\xe1(\\xb7t{ߪ\\xe2Y\\u07b5\\xb9\\xa7\\xa96a\\xcb\\x06\\x17\\x1b\\xe2A\\rt£\\x18\\x15~\\t\\xef\\x00\\xbeb\\xb8\\x87\\x86\\x85\\xce\\v\\xa6\\xc9\\x00\\x8dE\\xbf\\x88\\xa7S\\xb8\\x9d\\x9f\\xcd\\xdae<\\x1e\\xe7Y\\vt\\xa4\\xd2]\\xa3uȖ\\xael\\x82dsho\\xce\\xf9m\\x05\\n1\\xb2e\\x10\\x8fိ\\xdbii\\xbe\\xcd\\xe4\\xd2\\x12q7\\x9c>\\x1eО%\\\"\\xebK'tW\\x1a\\x95\\xe9[\\xe6ו\\xe3f֜\\x1a\\x91\\x01\\xc49n\\x90O\\x1d\\x89\\xe3*\\xd6\\xd0J\\x13X(\\x0f\\xd2*M\\x9e\\xa2\\xddM\\xfc\\x9c\\xeb²\\x11'\\\"|\\x1f\\xf0\\x1b*k\\xb1\\xc35;pq\\xb4П6B\\xec:2\\xfc\\xde}{(\\x98\\x05\\xe0\\xfd{\\x9b\\\\\\xc1a\\x9cX\\xda\\xd9\\xe3\\xb8m\\x97xc̵l\\x8e\\x92^Ł\\xb3\\x05=O\\x99\\xb5'3\\xeb*\\xfbvE\\xf8(ֆ\\xcb\\x15Q\\xcd5\\xf7\\x00\\x94\\xcbXt\\xf2A\\x0f\\xc3\\xd8\\x04\\\\j\\x98\\xb7\\xf8\\x90)\\x98\\xb8\\xee\\xf1\\xc1\\x9b\\x80\\x9d4\\x12\\xd8^\\xd7J\\x80L'\\x98\\xf8P\\xdf\\n6\\xfc\\xbb\\xb6j\\x9e#\\x11\\xceK\\x87\\u007fa\\xcf\\xca\\xfc\\xb5m\\r\\xdcHLg\\x02\\x0e\\x1fq\\x95\\xbf̧ݩ\\x0f\\x88\\xaaӢc\\x97O\\x9b\\xe1\\x14\\x19\\x88#\\x14~\\xb6oU\\xf1\\xec\\xe3}\\xd8Z\\x1c\\xe4\\x05\\x17\\xeaf\\xf1<\\x06 \\x96a\\x8f\\x99\\xb8\\xbdicGr\\xb7\\xb7S\\x9d\\\"\\xf7:jo<pK\\xb2\\xb1\\x12\\n\\xe6\\xfe\\xb6\\xde\\u007f\\x84n\\xe3\\x83k\\xb3&\\xb3\\xb1\\\"[\\b\\x01\\x1e\\xb8\\xb7t\\x80\\x05\\x1a\\xc4\\x1c\\xe7\\x92=\\xb8ϵ@x\\x1b(\\xc1\\x06\\xbc\\xdd\\x12pƫ\\xd2O9k\\xd5\\xc0\\x04\\x98? \\xa1U\\x02\\xea\\xcau{\\x84%\\xa4\\xc8\\xf2t\\xb8\\xe9\\xd4(/\\xe3\\xc39:I\\x9a\\xeb\\xdb\\\\Ce\\xe41\\x88@\\x80&\\x80\\x8b\\x9e\\x87%\\xf3O\\xa4Z9\\x12\\x01\\xdeU0-3\\x030\\x0f\\x1a0a\\x97k9fd\\x8f\\xb6\\xd8\\xcci\\x95\\x9frv\\x953˙\\xe8\\xa4S\\xa1G8m\\xbb\\x82\\xe5\\x96Ug\\x0e\\xb3\\xc1\\xd3\\xed\\xb9\\x039\\x04mpiΉ\\x91Ŵ\\xfc\\n\\xd3\\xd7\\xf2\\xb9\\x9e\\xdf\\xe3\\xad\\x00\\x9b\\xeb\\x0f\\xc7\\xfap̣\\xa8\\x91\\x0f!}E\\xd6n\\xd3\\xcc\\x0erC\\x1b\\x1eAe3\\x1f\\xe1\\xab)θ\\x1c\\xac\\x1b\\xc0\\x91*\\x90\\xe1\\xf5 \\asB\\xb4\\x00v\\xb8J\\\">_\\x0f\\xdc\\tk\\x02\\xa8\\xe0\\x15\\xb4\\xcc!\\x8c\\xa7\\x16\\xa2m(Ƥ\\x16Q+\\x8c\\x0f\\x1f^l\\x86\\xa5?\\xa9l9ܕvTX\\xd6\\xe9\\x88\\x0f\\xc8f4@\\xca\\xcf\\x06\\x8d\\xf5Y@o\\xd2\\xf8\\fQ?h\\xb4%\\x1f\\x194\\xb5\\x02\\xe6\\x04\\x83\\xa68\\xc0\\xb2\\x8b*q\\xb6\\x9d\\xc3\\xd6\\xf7\\xaf*\\x9e\\xab\\xfel\\xb9\\xca\\xc2\\n\\xf6\\xaf\\xdb\\x16\\xbb\\x17U\\x01\\xf5]o\\x8e\\xe4p\\xf5'\\xe1j\\x02\\b\\x0e\\xee\\xc6%\\xe0~i\\xd7\\x11\\x970y\\x13d>\\x91\\x0e\\xfb\\xb6\\xach\\xbdhk\\xcf>\\x9a\\xe5\\x1b\\xb6\\x94\\xed\\xf9\\x13N\\x17\\xd6\\x1b\\xc5%\\x0f\\xa6ߨ&\\xf6;\\xd3\\x12$5\\xd0\\n\\xe7\\xac\\xcb\\ak\\xc4V@Z\\x9dn\\xecH\\x9e\\x99c\\x92\\x06V\\xb7\\xe8o\\x9c\\x8c\\xb8\\x8f\\x0f\\xdbZ\\x91\\x19TJ\\xbcĶT;\\xa2mu\\xcfT0\\x84Z\\xef[\\x91\\x9bG7W\\x9b\\x18\\xf1ݗ\\xb0\\xc4_R\\xac\\xd8\\xff\\xc8\\xeaK\\xf3_\\xdfݎ\\xe3\\x01ز\\x8a\\xd1\\xd5 \\x02F&\\xae\\xbc܉\\xe0\\x99U=nᬓ\\xd6\\x01\\xce.\\xd5\\fyh\\x8f\\x0fn\\xb4Vⷹ!\\xb6\\x12\\xbf\\x9eF}{\\xb47\\f\\x9d\\xe8>\\xb6i\\xe7ۇI=\\x9dr\\\"\\xc6u\\x8c\\xdd\\x1d\\xb4p\\x97\\x81Z\\xb2\\xd0vd\\xb4\\x05\\xb6\\xe0'\\xbdT\\xa3S\\x00\\xfal\\x93\\xa5\\x12\\x86\\xc2V\\xaa\\x17`F\\x00\\x95\\x9a#3\\x92\\xf9\\x92\\xf7`\\n\\xe41H>]\\xa1\\x86\\xefDf϶\\xcc\\xc6\\xd7\\xe3|b\\x82\\xb8\\xb0\\xb0\\x99E\\x16\\x8f\\x87M\\xc2a\\x11bd\\xebM\\x9c\\x16\\xc4\\xdb~\\xb2\\xe1\\xb4P\\x03\\x94\\xd8\\ue1ab6\\xd91`\\xd8A\\xb9\\xe8\\xf2\\x99\\x97kД\\xea\\xbcm?\\xeb\\xed\\xd8j\\x13\\x90\\xc7\\x16-r\\xaem\\u0085tB\\xf0\\xf8\\x8e\\x81\\x05\\x83\\r\\xf6LQ\\xda\\x1a\\x12Ì\\x9f\\x16\\xa3\\x9d\\x9d$W\\xd8j\\xf6\\a\\x96\\x83\\ue69a\\xed۠k\\x9b^q,\\xeb\\x98y\\fvR\\x8e\\xec\\x99g\\x06\\x19U\\xd2\\xe7\\xbd\\xc8e!+.\\xb9\\x94\\x02\\x96\\x8a\\x90\\xdelO\\xf0W\\x05\\xd1h\\x1b\\xe0\\x8a\\x00\\xe38\\xe9\\xbacB\\x1eg\\x19\\xe8g}\\x97\\x18X\\u007f\\xf7c\\x0e\\xea\\x1a\\x1e\\x95!|\\xf8E\\xe1\\x18\\x99\\xf2\\xab<e\\xc8\\xd2\\x03\\x1bZ\\x01\\x8e\\xa1\\r\\xa6X\\x83N\\xe06\\xe8x\\x87\\xc5k\\xaa/\\\\\\xcc\\xc2\\xe4\\xb9r9\\x97{C\\xbdɕ\\xb2\\xa9M\\xdf+[\\xccDX\\x04ҳd\\x86\\x80\\xa59\\x86\\x94,\\xa6y6p;\\f\\xb6x\\bya\\x99E^\\x17\\xae(o\\xf7T:9\\x16\\x14\\xf3\\xa90\\v\\x05Rb\\x10!3\\xb4\\xb3\\x9aO<\\xae7\\xb6\\x80eUԷG\\x8b\\t# \\x9a\\x8d\\x93)\\xefc\\x815\\xf9\\x93I\\x1cx\\xd6\\x1bFK֔\\x01\\x02ˆC\\x15\\xc8Z\\xeaB\\x02\\x80`\\x93Qk\\x1c\\x03\\x8aG\\x00jL\\x17\\x87\\xcf8\\xd5*\\xe0\\xe2\\xec.\\x85dh\\xdbX\\xee\\x166z\\xcbn\\xae\\x0eC\\f\\x1d\\xc0\\x12\\xf9\\xb3\\xd2߷\\xa7\\xd2\\xe0\\xf1\\xee\\xf5\\xb0ُ\\xb4Di\\xb99\\xc9\\x15\\x9dѤ\\xce2\\x9b\\xdaqg\\x9di^\\xd4\\b\\x90 \\x96\\xa9\\xf1[c?\\xf2cu\\x00dl\\xfd\\x00x\\ag\\x93\\xf3\\x88\\xa9vk\\xe6\\xfbc\\xbf=c\\xe6\\xe9s\\xb98dO륈!\\u07b8Nf\\x1d|a^\\xfaQ;\\xcda\\x13Z\\xe6\\xe9:\\xefc\\xf9\\x13\\x9fw_c\\x93\\xb6l}i\\x13\\xde\\xc1Lf\\u0095a\\xa6\\xe1\\x98m\\x84\\x1d>x\\x91b\\x93\\x1e\\xf1\\xc1\\x12`渭\\x83\\xf8\\xb8l\\xd4\\xfcР\\x99\\x8fF[\\xeeش\\f\\x82\\x99\\xd9X\\xee\\x13\\xc0Z\\xd9r\\xb6\\xec\\xd21}\\x0e\\xd8\\x01\\xd9\\u0557\\x8b\\x19\\xfa`\\xb1=\\xb3\\xc8\\xfci\\x0e\\x18\\x84\\x81\\xe3\\xc3\\xfb8Ʊ7ł\\xb6\\xb7c̭\\xbf\\xfc\\xa9Aʄ\\x19\\x9f\\xe4-`ޣ\\x86\\rz\\x16\\n\\x1d'\\fa\\xb8\\xfd\\x00N\\xc8&\\x95\\x85\\x84\\xcfj\\xd9\\xc2|\\xdfe\\xd6\\\\\\xd7\\xef9\\xd1ԙ\\xa3kᩧt\\x9cp\\x1a\\x85\\xf9\\xb4\\rc\\x85\\x99\\xaesд\\xb5B\\x1b{;a\\x8d\\xc0\\x94g\\xae\\xa8\\x1e\\x98mD*\\x90N8\\b\\x18^k\\x8a\\xa4\\xa9jc\\xddR\\xde\\xd0\\xf3\\xb3z\\x16c\\x18\\x91\\xcf?\\\\\\xe0r_;\\x8a\\x99L\\xb48\\xd9Ɂ\\xc9%\\xd2b\\x9b\\xb8`\\x02\\xb8l҉\\xca\\xc5v\\x16\\xfb\\x8aͷkw3\\xe0y\\xa3L\\x83J\\x963t\\xc2Ο\\xb3\\xebuJ\\x98\\f\\xf3\\x12\\x00\\x19\\x96`\\xd3R\\x1dϚ!\\xbb\\xafi#y\\v\\xd9\\xca\\xe1B\\xc8\\xcam\\x19\\xb2c\\xa3{^:N\\x0f\\x8a\\x0e\\\\\\v\\x87ۥ\\xcd\\xeb,5V\\x9c\\xb0\\x0f,V\\xb84m\\xbd\\x99.8\\x95\\xcd\\xcewg\\x8f\\x87\\x9c5\\xb3\\xc9\\xe2\\xfef6m݊\\x13!\\u007f{\\xb1\\xbe3\\xc3\\xf6\\x96n\\b\\n\\n\\xb4\\xa8\\xbav\\x03\\xb06~\\x9bS9|\\x10\\xef\\xd7\\xd9\\xd4\\x10\\xb0փ\\xb3{\\xcc\\xd0\\xc0\\x10}\\xfeMʼ_\\xea\\x02\\x14\\x89K\\x80\\ndn\\xbaY\\xe9\\x14OX\\\\\\xf68\\xd8m\\xac6$\\xf9\\xbc\\xbb\\xcd{\\x93\\v\\xed\\xb7\\xe6\\f\\x06j\\xec\\x8f\\x17#>\\xd8\\x14\\f\\xf4\\x13V\\x12\\xe7\\x91\\xcfK\\xa2\\xc6I>\\xdd\\xfd\\x05B\\bs\\xdfQ\\xe6Z\\xcf`EYhQ]\\xb7\\xf9\\xe9\\xbc\\xc2u\\x83Х\\xa7\\\\\\xa8,\\xf7\\xef\\x965vJL\\\\N(\\xf8\\xe2h)x\\xbc\\x89\\xd8\\xd5̷\\xb0\\x98-\\xfe\\xa1\\x04\\b\\xbe\\x85c\\x90@\\x8c\\xbe\\xf9Q\\x10<\\xdb\\xcc\\xf4\\xa2!2\\xbc\\xb5V\\xe8\\xbe\\r\\xfa\\xbc\\xf5`\\xf6\\uf2bb$x\\x8a\\xc0\\xe2\\x97C\\x1b\\xbc\\xbd1\\x97\\xe7\\xb3Ad\\xf3\\xff\\xb1\\xe6\\x84Ӛ\\x19/H؉\\x838@^Њ\\xd1\\u007f\\xdeNcXR\\xd6Ikxv^\\xf5\\x90\\xd6\\xc5\\xd6{G;RSݳ\\xf48\\xed\\x19L&BW\\xa5\\xd7w$N\\x97\\xa2\\x8eq\\xa5\\x81\\xae\\x89S+t\\xcc̯\\xacq\\xcebΆ\\xdd\\xc9\\x03\\x1a\\x85\\xfcS\\xa7\\x84C\\x13\\x99\\x14X\\x9e\\xe5skx6ه\\x92\\xfaY\\x97ψ\\xa8s\\x80;\\\\\\xad\\xed,\\x98C^b\\x14,8\\xed\\xda\\rY\\xfe)\\x02(w\\x9e\\r\\xad\\xc37\\xb5\\x88\\xc1\\x98C\\x16b%\\xfc\\xb8\\xcd3k\\u0604A\\x0f\\x83\\xe5\\x1dK\\xe8ީ^\\x04e\\x8d\\xe8Kz:\\xedE\\xbcK\\x0f\\xe2]\\xba\\xbc?\\x8d\\xc30Ἇ\\xa9(\\xdc\\x19\\xa9#\\\\\\xb9\\x8d\\xb9\\x02<\\xf4\\x18)\\x02\\xce\\x1e֛@\\xd6t\\xd8*`_%\\x12\\x1f\\xdef\\xe2\\x89\\x1d\\x14\\xa0\\xe4\\xbe\\xfb\\xa6\\x91+\\xb06%ڭ=\\x9a-\\x89\\xb8\\xf4\\xb9Ɗ\\rl\\xe6\\xd5\\xfc\\xb2dlq\\xa3?\\xc6\\fZƎ\\x81:1\\xe3\\x1f\\xa14\\xb2\\xa9\\x16\\to\\x17f-䅙\\xe9\\xeddy\\x9b\\xab\\xbfRY\\x16\\xfb\\xaa\\xdcm\\xe1\\x8dJx\\xe56'\\xb5\\x88]\\xd5\\xfe#\\xf6]\\x1dn\\xaf\\xee\\xbdr\\xcbQG\\xee\\xbf\\xdald\\xef\\x1e,7\\x1d\\xfd?\\xfb\\xb0\\xb6\\b|\\xc4^\\xac\\xab'\\x17\\xbc[g3\\xa2\\x9e\\xcd\\\"8\\x8eY\\xe8\\f\\xd8F\\x16\\x1b\\xbb\\xa2\\xe5\\x19-\\xbb\\xe53\\x04\\xb5\\xc0\\xe01\\x92l\\x910C\\xf1\\xc1\\xda\\x18\\xe7`3\\xe5\\xff\\x01v+Q\\x97\\x00\\x00\\x00\"\nvar _Assets8391991a0f9445efcc483e87a0508f7472f04dab = \"{\\\"name\\\":\\\"\\\",\\\"short_name\\\":\\\"\\\",\\\"icons\\\":[{\\\"src\\\":\\\"/android-chrome-192x192.png\\\",\\\"sizes\\\":\\\"192x192\\\",\\\"type\\\":\\\"image/png\\\"},{\\\"src\\\":\\\"/android-chrome-512x512.png\\\",\\\"sizes\\\":\\\"512x512\\\",\\\"type\\\":\\\"image/png\\\"}],\\\"theme_color\\\":\\\"#ffffff\\\",\\\"background_color\\\":\\\"#ffffff\\\",\\\"display\\\":\\\"standalone\\\"}\"\nvar _Assets78386ead3fb287ea2e07758fc3d0fe2187e0d0ad = \"{{template \\\"header\\\" \\\"Email Address Confirmed\\\"}}\\n<div class=\\\"aligner\\\">\\n    <div class=\\\"aligner-item\\\">\\n        <i class=\\\"fas fa-grin-stars icon-big\\\"></i>\\n    </div>\\n    <div class=\\\"aligner-item\\\">\\n        <p>You have been correctly authenticated. You may now close this window!</p>\\n    </div>\\n</div>\\n{{template \\\"footer\\\"}}\\n\"\nvar _Assets0d77b2008fc5e76d7d489317fc8f0df507d753c5 = \"\\x00\\x00\\x01\\x00\\x03\\x00\\x10\\x10\\x00\\x00\\x01\\x00 \\x00h\\x04\\x00\\x006\\x00\\x00\\x00  \\x00\\x00\\x01\\x00 \\x00(\\x11\\x00\\x00\\x9e\\x04\\x00\\x0000\\x00\\x00\\x01\\x00 \\x00h&\\x00\\x00\\xc6\\x15\\x00\\x00(\\x00\\x00\\x00\\x10\\x00\\x00\\x00 \\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xca\\xff'.\\xc8\\xfe\\xb5.\\xc8\\xfe\\xb5\\x00\\xca\\xff'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x0f\\x1b\\xbd\\xeb\\x8dy\\xbf\\xfe\\xf9ж\\xff\\xffж\\xff\\xffy\\xbf\\xfe\\xf9\\x17\\xca\\xfe\\x8d\\x00\\xcc\\xff\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\x02\\x05\\xcd\\xfffl\\x94\\xb3\\xe9\\xe6KK\\xff\\xe8v\\x97\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xff÷\\xff\\xff]\\xc2\\xfe\\xe9\\x05\\xcd\\xfff\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xca\\xff?\\x1b\\xa1\\xfeϭ\\xba\\xff\\xffͮ\\xff\\xff\\x84i\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԶ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xff[\\xc3\\xff\\xff\\xac\\xba\\xff\\xffB\\xc6\\xfe\\xcf\\x00\\xce\\xff?\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x8b\\xfa\\xedS3\\xf4\\xffׯ\\xf4\\xffΨ\\xf4\\xff</\\xff\\xff\\x82q\\xff\\xff˷\\xff\\xffʶ\\xfe\\xffԵ\\xfe\\xffն\\xff\\xff\\f\\xcc\\xff\\xffN\\xc4\\xff\\xffҶ\\xff\\xffR\\xc4\\xfe\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00t\\x8f\\xa9\\xed\\xff5)\\xff\\xff5)\\xff\\xf2<3\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x85}\\x8e\\xffֲ\\xf9\\xff\\x8bo\\xff\\xff\\x04\\xc4\\xff\\xff\\x00\\xce\\xff\\xffN\\xc4\\xff\\xff`\\xc1\\xfe\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00b\\xc2\\xfe\\xed\\xecl\\x85\\xff\\xff5)\\xff\\xf2<3\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x85}\\x8e\\xff\\xff5)\\xff\\x8dm\\xf9\\xff@(\\xff\\xff\\x06\\xc2\\xfc\\xff\\x02\\xcc\\xfc\\xff\\x02\\xcc\\xfc\\xff\\n\\xcb\\xfd\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00b\\xc2\\xfe\\xedյ\\xfe\\xff\\xecl\\x85\\xff\\xf2<3\\xff\\x00\\xcd\\xff\\xff#u\\xfc\\xff\\xff5)\\xff\\xff5)\\xffֲ\\xf9\\xffն\\xff\\xff\\xfc<5\\xff\\xff5)\\xff\\xff5)\\xffs\\x8c\\xa6\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00b\\xc2\\xfe\\xedն\\xff\\xffյ\\xfe\\xff\\xdfs\\x8f\\xff!u\\xff\\xffA'\\xfc\\xff\\xff5)\\xff\\xff5)\\xffֲ\\xf9\\xffն\\xff\\xff\\xfc<5\\xff\\xff5)\\xff\\xedg}\\xffb\\xc0\\xfc\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00b\\xc2\\xfe\\xedն\\xff\\xffԵ\\xff\\xff\\x85j\\xfe\\xff?'\\xff\\xffA'\\xfc\\xff\\xff5)\\xff\\xff5)\\xff\\xa21\\x94\\xffB*\\xff\\xff\\xf345\\xff\\xedg}\\xffյ\\xfd\\xffb\\xc1\\xfe\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00b\\xc2\\xfe\\xedԵ\\xff\\xff\\x85j\\xff\\xff?'\\xff\\xff?'\\xff\\xffA'\\xfc\\xff\\xff5)\\xff\\xff5)\\xff\\xfe5)\\xff\\x9e.\\x94\\xff\\xe2f\\x8a\\xffյ\\xfd\\xffն\\xff\\xffb\\xc1\\xfe\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00R\\xc4\\xfe\\xedԵ\\xff\\xffˬ\\xff\\xff˭\\xff\\xffY\\xb9\\xff\\xff\\x06\\xc3\\xfe\\xff\\u05ee\\xf2\\xff\\u05ee\\xf2\\xffM*\\xf2\\xff\\x84_\\xf2\\xffԵ\\xfe\\xffն\\xff\\xffԶ\\xff\\xffR\\xc4\\xfe\\xee\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xca\\xff?A\\xc5\\xfeϭ\\xb9\\xff\\xffԵ\\xff\\xffӶ\\xff\\xffX\\xc3\\xff\\xffն\\xff\\xffն\\xff\\xff}b\\xff\\xffԵ\\xff\\xffն\\xff\\xff\\xad\\xba\\xff\\xffA\\xc5\\xfe\\xcf\\x00\\xca\\xff?\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\x02\\x05\\xca\\xfff^\\xc2\\xfe\\xe9\\xd9q\\x8b\\xff\\xfa@<\\xff\\xfb@<\\xff\\xe9s\\x90\\xffԵ\\xfe\\xff÷\\xff\\xff^\\xc2\\xfe\\xe9\\x05\\xca\\xfff\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x0f\\x17\\xc8\\xfb\\x8d\\x90x\\x88\\xf9\\xe8i\\x80\\xffе\\xfd\\xffx\\xbf\\xfe\\xf9\\x17\\xca\\xfe\\x8d\\x00\\xcc\\xff\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd0\\xff&.\\xc7\\xfe\\xb4.\\xc7\\xfe\\xb4\\x00\\xca\\xff'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00 \\x00\\x00\\x00@\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xca\\xff'\\x00\\xcd\\xfe\\xb5\\x00\\xcd\\xfe\\xb5\\x00\\xca\\xff'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x0f\\x00\\xcc\\xff\\x8e\\x0e\\xcc\\xfe\\xf9x\\xbf\\xff\\xffx\\xbf\\xff\\xff\\x0e\\xcc\\xfe\\xf9\\x00\\xcc\\xff\\x8e\\x00\\xbf\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\x02\\x00\\xcd\\xfff\\x02\\xcd\\xfe\\xe9W\\xc3\\xff\\xffķ\\xff\\xffն\\xff\\xffն\\xff\\xffķ\\xff\\xffW\\xc3\\xff\\xff\\x02\\xcd\\xfe\\xe9\\x00\\xcd\\xfff\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff?\\x00\\xcd\\xfe\\xcf?\\xac\\xd2\\xff\\xaf\\xb8\\xfd\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xaf\\xba\\xff\\xff6\\xc7\\xff\\xff\\x00\\xcd\\xfe\\xcf\\x00\\xce\\xff?\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcf\\xff \\x00\\xcf\\xff\\xaa!\\xb9\\xe2\\xfe\\xadel\\xff\\xfe5)\\xff\\xeedx\\xffմ\\xfd\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff\\x90\\xbd\\xff\\xff\\x1c\\xca\\xfe\\xfe\\x00\\xcd\\xfe\\xab\\x00\\xcf\\xff \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd0\\xfe\\v\\x00\\xcc\\xfe\\x84\\n\\xcc\\xfd\\xf6~\\x92\\xb2\\xff\\xeeMS\\xff\\xf7JM\\xff\\xf7JM\\xff\\xf7JM\\xff\\xe7y\\x9c\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff˶\\xff\\xffp\\xc0\\xff\\xff\\n\\xcc\\xfe\\xf6\\x00\\xcc\\xfe\\x84\\x00\\xd0\\xfe\\v\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x01\\x00\\xcd\\xfe\\\\\\x01\\xcd\\xfe\\xe4N\\xc4\\xff\\xff\\xbf\\xb8\\xff\\xffն\\xff\\xffŧ\\xff\\xff\\x80d\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffQ\\xc4\\xff\\xffͶ\\xff\\xff\\xbf\\xb8\\xff\\xffO\\xc4\\xff\\xff\\x01\\xcd\\xfe\\xe4\\x00\\xcd\\xfe\\\\\\x00\\x00\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcb\\xff6\\x00\\xcd\\xfe\\xc7\\r\\xa8\\xff\\xffKb\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffŧ\\xff\\xff?'\\xff\\xff\\u007fd\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԶ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xff\\x1a\\xcb\\xff\\xff7\\xc7\\xff\\xffͶ\\xff\\xffն\\xff\\xff\\xa8\\xba\\xff\\xff/\\xc8\\xff\\xff\\x00\\xcd\\xfe\\xc7\\x00\\xcf\\xff6\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfe\\xdc$j\\xff\\xff>'\\xff\\xffX?\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffŧ\\xff\\xff?'\\xff\\xff?'\\xff\\xff\\x80d\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԶ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xff\\x1a\\xcb\\xff\\xff\\x00\\xce\\xff\\xff7\\xc7\\xff\\xffͶ\\xff\\xffն\\xff\\xffԶ\\xff\\xff}\\xbf\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfe\\xdcF=\\xed\\xffQ(\\xeb\\xffh>\\xea\\xff٩\\xe9\\xff٩\\xe9\\xff٩\\xe9\\xffȝ\\xeb\\xff:7\\xff\\xff:7\\xff\\xff:7\\xff\\xff{t\\xff\\xff\\xc1\\xb8\\xff\\xff\\xc1\\xb8\\xff\\xff\\xc1\\xb8\\xff\\xff\\xc1\\xb7\\xfe\\xffԵ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\x19\\xca\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff7\\xc7\\xff\\xff̶\\xff\\xffն\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfe\\xdc\\xdeHD\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xe5D>\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x8cy\\x89\\xffׯ\\xf4\\xffն\\xff\\xffն\\xff\\xff\\x8dq\\xff\\xff\\b\\xba\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff7\\xc7\\xff\\xffͶ\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfe\\xdc\\xd2j}\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xe5D>\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x8cy\\x89\\xff\\xff5)\\xffׯ\\xf4\\xffն\\xff\\xff\\x8cq\\xff\\xff?'\\xff\\xff\\b\\xba\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff7\\xc7\\xff\\xff\\xb1\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb7\\xfd\\xff\\xeedw\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xe5D>\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x8cy\\x89\\xff\\xff5)\\xff\\xff5)\\xffׯ\\xf4\\xff\\x8cp\\xff\\xff?'\\xff\\xff?'\\xff\\xff\\b\\xba\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff&\\xc9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffմ\\xfc\\xff\\xeedx\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xe5D>\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x8by\\x8a\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\x92m\\xf4\\xffB*\\xff\\xffB*\\xff\\xffB*\\xff\\xff\\r\\xb7\\xfb\\xff\\x05\\xca\\xfa\\xff\\x05\\xca\\xfa\\xff\\x05\\xca\\xfa\\xff\\x05\\xca\\xfa\\xff\\x05\\xca\\xfa\\xff\\x04\\xcb\\xfb\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffմ\\xfc\\xff\\xeedx\\xff\\xff5)\\xff\\xff5)\\xff\\xe5D>\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xff\\xff'r\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffׯ\\xf4\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xfaDB\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xdeHD\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffմ\\xfc\\xff\\xeedw\\xff\\xff5)\\xff\\xe5D>\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xff\\xff#q\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffׯ\\xf4\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xfaDB\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5cp\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffմ\\xfd\\xff\\xeedx\\xff\\xe5D>\\xff\\x00\\xcd\\xff\\xff#q\\xff\\xff?'\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffׯ\\xf4\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xfaDB\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf1[i\\xff\\xba\\xb5\\xf9\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffմ\\xfc\\xff\\xd5s\\x8d\\xff\\\"r\\xff\\xff?'\\xff\\xff?'\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffׯ\\xf4\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xfaDB\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf1[i\\xffղ\\xf9\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff\\x82g\\xfe\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xa55\\x95\\xffF.\\xff\\xffF.\\xff\\xffF.\\xff\\xff\\xe94B\\xff\\xff5)\\xff\\xff5)\\xff\\xf1[i\\xffղ\\xf9\\xffն\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff\\x82g\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\x9e.\\x95\\xff?'\\xff\\xff?'\\xff\\xff\\xe83C\\xff\\xff5)\\xff\\xf1[i\\xffղ\\xf9\\xffն\\xff\\xffն\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff\\x82g\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xfe5)\\xff\\x9e.\\x95\\xff?'\\xff\\xff\\xe83C\\xff\\xf1[i\\xffղ\\xf9\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffԵ\\xff\\xff\\x82g\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffC'\\xfa\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\x9e.\\x96\\xff\\xdaZ\\x83\\xffղ\\xf9\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfeܹ\\xb9\\xff\\xffն\\xff\\xffӴ\\xff\\xff¤\\xff\\xffä\\xff\\xffä\\xff\\xff¤\\xff\\xffK\\xb1\\xff\\xff\\b\\xb9\\xff\\xff\\b\\xb9\\xff\\xff\\r\\xb8\\xfe\\xff٦\\xe5\\xff٦\\xe5\\xff٦\\xe5\\xff٦\\xe5\\xff[.\\xe6\\xffU)\\xe6\\xffU)\\xe6\\xff\\x82S\\xe6\\xffӲ\\xfc\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xb9\\xb9\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfe\\xdc}\\xbf\\xff\\xffԶ\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffж\\xff\\xffC\\xc5\\xff\\xff\\x00\\xce\\xff\\xff\\x06\\xcd\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffF-\\xff\\xff?'\\xff\\xffkQ\\xff\\xffѲ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff}\\xbf\\xff\\xff\\x00\\xcd\\xfe\\xdd\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff5\\x00\\xce\\xfe\\xc6.\\xc8\\xff\\xff\\xa7\\xba\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffж\\xff\\xffC\\xc5\\xff\\xff\\x06\\xcd\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffF-\\xff\\xffkQ\\xff\\xffѲ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xa7\\xba\\xff\\xff.\\xc8\\xff\\xff\\x00\\xce\\xfe\\xc6\\x00\\xcb\\xff6\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x01\\x00\\xcc\\xff[\\x01\\xcd\\xfe\\xe3N\\xc4\\xff\\xff\\xbf\\xb8\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffж\\xff\\xffI\\xc4\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffsX\\xff\\xffѲ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xbf\\xb8\\xff\\xffN\\xc4\\xff\\xff\\x01\\xcd\\xfe\\xe3\\x00\\xcf\\xff[\\x00\\x00\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd0\\xfe\\v\\x00\\xcc\\xfe\\x83\\n\\xcc\\xfe\\xf6o\\xc1\\xff\\xffε\\xfe\\xff\\xebm\\x88\\xff\\xf7LP\\xff\\xf7LP\\xff\\xf3LP\\xff\\xf7LP\\xff\\xf7LP\\xff\\xf7LP\\xff\\xe9s\\x90\\xffҳ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffo\\xc0\\xff\\xff\\n\\xcc\\xfe\\xf6\\x00\\xcc\\xfe\\x83\\x00\\xd0\\xfe\\v\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xc7\\xff \\x00\\xcd\\xff\\xaa\\x1b\\xca\\xfe\\xfe\\x91\\xb8\\xf6\\xff\\xf3V`\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf1[i\\xffղ\\xf9\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff\\x90\\xbd\\xff\\xff\\x1b\\xca\\xfe\\xfe\\x00\\xcd\\xff\\xaa\\x00\\xc7\\xff \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcd\\xff>\\x00\\xcd\\xfe\\xcf7\\xc2\\xf7\\xff\\xcc[a\\xff\\xff5)\\xff\\xff5)\\xff\\xf1[i\\xffղ\\xf9\\xffն\\xff\\xffն\\xff\\xff\\xae\\xba\\xff\\xff6\\xc7\\xff\\xff\\x00\\xcd\\xfe\\xcf\\x00\\xcd\\xff>\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\x02\\x00\\xcf\\xffe\\x03\\xcb\\xfb\\xe9h\\x8e\\xa6\\xff\\xdeev\\xffղ\\xf9\\xffն\\xff\\xffķ\\xff\\xffV\\xc3\\xff\\xff\\x02\\xcd\\xfe\\xe9\\x00\\xcd\\xfff\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x0f\\x00\\xcf\\xfe\\x8c\\r\\xcb\\xfe\\xf9w\\xc0\\xff\\xffx\\xbf\\xff\\xff\\r\\xcc\\xfe\\xf9\\x00\\xce\\xfe\\x8d\\x00\\xcc\\xff\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd0\\xff&\\x00\\xcd\\xfe\\xb4\\x00\\xcd\\xfe\\xb4\\x00\\xd0\\xff&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x000\\x00\\x00\\x00`\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x05\\x00\\xcd\\xff4\\x00\\xcc\\xff\\xad\\x00\\xcd\\xfe\\xb5\\x00\\xcd\\xff4\\x00\\xb6\\xff\\a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcd\\xff)\\x00\\xcd\\xfe\\x86\\x00\\xcd\\xfe\\xe1$\\xc8\\xfe\\xfe'\\xc8\\xfe\\xfe\\x00\\xcd\\xfe\\xe1\\x00\\xce\\xfe\\x8a\\x00\\xd0\\xff,\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd4\\xff\\x06\\x00\\xcd\\xfev\\x00\\xce\\xfe\\xe1\\x06\\xcd\\xfe\\xfce\\xc1\\xff\\xff\\xbd\\xb8\\xff\\xff\\xc0\\xb8\\xff\\xfff\\xc1\\xff\\xff\\t\\xcd\\xfe\\xfc\\x00\\xce\\xfe\\xe5\\x00\\xcb\\xfew\\x00\\xcc\\xff\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xc4\\xfe\\r\\x00\\xce\\xff?\\x00\\xce\\xff\\xc2\\v\\xcc\\xfe\\xfe6\\xc7\\xff\\xff\\xa5\\xba\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xa9\\xb9\\xff\\xff9\\xc6\\xff\\xff\\v\\xcc\\xfe\\xfe\\x00\\xcd\\xfe\\xc7\\x00\\xcc\\xffB\\x00\\xc4\\xfe\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff7\\x00\\xcd\\xff\\x9c\\x00\\xcd\\xff\\xf00\\xc8\\xff\\xff\\x84\\xbe\\xff\\xffɶ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff̶\\xff\\xff\\x84\\xbe\\xff\\xff4\\xc7\\xff\\xff\\x00\\xcd\\xfe\\xf3\\x00\\xcd\\xff\\x9c\\x00\\xcc\\xff<\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd2\\xfe\\x17\\x00\\xcb\\xfe\\x96\\x00\\xce\\xfe\\xec\\x19\\xbd\\xe8\\xfd\\x93\\x83\\x9b\\xffǳ\\xf8\\xffӶ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffӶ\\xff\\xffǷ\\xff\\xff\\x86\\xbd\\xff\\xff\\x15\\xca\\xff\\xfd\\x00\\xce\\xfe\\xed\\x00\\xce\\xfe\\x9e\\x00\\xc9\\xff\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd4\\xfe\\x12\\x00\\xce\\xffO\\x00\\xcd\\xfd\\xd8\\x13\\xc1\\xee\\xfeR\\x9b\\xb8\\xff\\xdaJG\\xff\\xfe5)\\xff\\xf2Yf\\xffت\\xec\\xffյ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff\\xb6\\xb9\\xff\\xffK\\xc5\\xff\\xff\\x11\\xcb\\xfe\\xfe\\x00\\xcd\\xfe\\xd8\\x00\\xcd\\xfeW\\x00\\xcc\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x05\\x00\\xcd\\xffM\\x00\\xcd\\xfe\\xae\\x05\\xca\\xf9\\xf9P\\x9d\\xbb\\xff\\xb0cj\\xff\\xfa7,\\xff\\xff5)\\xff\\xff5)\\xff\\xfe7,\\xff\\xeedx\\xffت\\xeb\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffѶ\\xff\\xff\\x97\\xbc\\xff\\xffB\\xc6\\xff\\xff\\x06\\xcc\\xff\\xfa\\x00\\xcd\\xfe\\xb3\\x00\\xd0\\xffM\\x00\\xda\\xff\\a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcf\\xff \\x00\\xcd\\xfe\\xae\\x00\\xcd\\xfe\\xf2\\x1d\\xc7\\xfa\\xfe\\xa4\\x87\\xa7\\xff\\xe5ar\\xff\\xecVh\\xff\\xf1Yh\\xff\\xf1Zh\\xff\\xf1Zh\\xff\\xf1Zh\\xff\\xf1\\\\k\\xff\\xe5\\u007f\\xa5\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff̶\\xff\\xffʷ\\xff\\xff\\x97\\xbc\\xff\\xff\\x1f\\xc8\\xfe\\xfe\\x00\\xcd\\xfe\\xf2\\x00\\xce\\xff\\xb2\\x00\\xcc\\xff#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcb\\xfe\\x19\\x00\\xce\\xffs\\x00\\xce\\xfe\\xec\\x16\\xcb\\xff\\xffb\\xc1\\xff\\xffǷ\\xff\\xffն\\xff\\xffն\\xff\\xff\\xbb\\x9d\\xff\\xffw\\\\\\xff\\xffˬ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffO\\xc4\\xff\\xff\\xb2\\xb9\\xff\\xffӶ\\xff\\xff˶\\xff\\xffb\\xc1\\xff\\xff\\x18\\xca\\xff\\xff\\x00\\xce\\xff\\xf1\\x00\\xce\\xffs\\x00\\xc8\\xfe\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xc6\\xfe\\x12\\x00\\xcb\\xfe_\\x00\\xce\\xfe\\xbe\\x04\\xc0\\xff\\xfa-\\xa2\\xff\\xff\\xa1\\xbb\\xff\\xffѶ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xbb\\x9d\\xff\\xffB*\\xff\\xff\\x80d\\xff\\xffˬ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xff.\\xc8\\xff\\xff7\\xc7\\xff\\xff\\xb3\\xb9\\xff\\xffն\\xff\\xffҶ\\xff\\xff\\xa4\\xba\\xff\\xffU\\xc3\\xff\\xff\\x10\\xcc\\xff\\xfa\\x00\\xcd\\xfe\\xc3\\x00\\xcc\\xffd\\x00\\xc6\\xfe\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xc9\\xff0\\x00\\xce\\xff\\xc2\\x00\\xce\\xfe\\xf6\\f\\xab\\xff\\xff0L\\xff\\xfffS\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xbb\\x9d\\xff\\xff?'\\xff\\xffB*\\xff\\xffv\\\\\\xff\\xffӴ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԶ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xff-\\xc8\\xff\\xff\\x01\\xcd\\xff\\xff!\\xc9\\xff\\xff\\xbc\\xb8\\xff\\xffն\\xff\\xffն\\xff\\xff϶\\xff\\xff\\xa5\\xbb\\xff\\xff1\\xc7\\xff\\xff\\x00\\xce\\xfe\\xf7\\x00\\xcd\\xfe\\xc3\\x00\\xcc\\xff8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2\\x05\\xbd\\xff\\xff\\\"o\\xff\\xff=(\\xff\\xff?'\\xff\\xffhN\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xbb\\x9d\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffw\\\\\\xff\\xffˬ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԶ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff-\\xc8\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff!\\xc9\\xff\\xff\\xb3\\xb9\\xff\\xffӶ\\xff\\xffն\\xff\\xffն\\xff\\xffҶ\\xff\\xff~\\xbe\\xff\\xff\\x14\\xcb\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2\\x16\\x90\\xff\\xff;/\\xff\\xff?'\\xff\\xff?'\\xff\\xffhN\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xbb\\x9d\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffB*\\xff\\xff\\x80d\\xff\\xffˬ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff-\\xc8\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x01\\xcd\\xff\\xff7\\xc7\\xff\\xff\\xb2\\xb9\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffͶ\\xff\\xffN\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2#\\x90\\xf1\\xffZ1\\xdd\\xff_)\\xdc\\xff_)\\xdc\\xff\\x82J\\xdb\\xffܟ\\xd9\\xffܟ\\xd9\\xffܟ\\xd9\\xffܟ\\xd9\\xffܟ\\xd9\\xff\\xbf\\x8f\\xdf\\xff6C\\xff\\xff6C\\xff\\xff6C\\xff\\xff6C\\xff\\xff9F\\xff\\xffnx\\xff\\xff\\xb2\\xb9\\xff\\xff\\xb2\\xb9\\xff\\xff\\xb2\\xb9\\xff\\xff\\xb2\\xb9\\xff\\xff\\xb2\\xb9\\xff\\xff\\xb3\\xb7\\xfd\\xffԳ\\xfc\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff+\\xc6\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x01\\xcd\\xff\\xff\\\"\\xc9\\xff\\xff\\xbb\\xb8\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2_\\x94\\xaf\\xff\\xf2<3\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x0e\\xc4\\xf2\\xff\\x90w\\x85\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffί\\xff\\xff\\x8er\\xff\\xff\\x0e\\xab\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\\"\\xc9\\xff\\xff\\xb2\\xb9\\xff\\xffӶ\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2]\\x98\\xb4\\xff\\xf2=5\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\n\\xc7\\xf6\\xff\\x8cy\\x89\\xff\\xf5:1\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffб\\xff\\xff\\x8dq\\xff\\xffF.\\xff\\xff\\x0e\\xab\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x01\\xcd\\xff\\xff7\\xc7\\xff\\xff\\xb3\\xb9\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2Q\\xbd\\xf2\\xff\\xe5br\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x93u\\x84\\xff\\xf88.\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xff\\x8dr\\xff\\xffD+\\xff\\xff?'\\xff\\xff\\x0e\\xab\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x01\\xcd\\xff\\xff!\\xc9\\xff\\xff\\xb5\\xb9\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xff˳\\xf9\\xff\\xef`r\\xff\\xfd8.\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x0e\\xc4\\xf2\\xff\\x91v\\x85\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffί\\xff\\xff\\x8dq\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff\\x0e\\xab\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x1b\\xca\\xff\\xff3\\xc7\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xff\\u05ed\\xf1\\xff\\xeedw\\xff\\xfd8.\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\n\\xc7\\xf6\\xff\\x8cy\\x89\\xff\\xf5:1\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffԦ\\xec\\xff\\x8dq\\xff\\xffF.\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff\\x0e\\xab\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xff\\xff\\x01\\xcd\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffյ\\xfe\\xff\\u05ed\\xf0\\xff\\xefas\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xfe\\xff\\x91v\\x85\\xff\\xf88.\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\x97k\\xec\\xffI1\\xff\\xffD,\\xff\\xffD,\\xff\\xffD,\\xff\\xffD,\\xff\\xff\\x16\\xa7\\xf8\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc7\\xf7\\xff\\b\\xc8\\xf7\\xff\\x03\\xcb\\xfb\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffղ\\xf9\\xff\\xefas\\xff\\xfd8.\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xff\\xff\\x03\\xc4\\xff\\xff+o\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xf6OT\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf69/\\xff_\\x94\\xaf\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\u05ed\\xf0\\xff\\xeedw\\xff\\xfd8.\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x02\\xc7\\xff\\xff#r\\xff\\xffC.\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xf6OT\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf6:0\\xff^\\x96\\xb1\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffյ\\xfe\\xff\\u05ed\\xf1\\xff\\xefar\\xff\\xff5)\\xff\\xff5)\\xff\\xd5NK\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xcd\\xff\\xff%l\\xff\\xff=+\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xf6OT\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xeeQV\\xffR\\xb9\\xec\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffղ\\xf9\\xff\\xefas\\xff\\xfd8.\\xff\\xd5NK\\xff\\x00\\xcd\\xff\\xff\\x03\\xc4\\xff\\xff$n\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xf6OT\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xfe6,\\xff\\xf4S[\\xffЭ\\xf0\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\u05ed\\xf1\\xff\\xeedw\\xff\\xd4QQ\\xff\\x02\\xc7\\xff\\xff#r\\xff\\xff<-\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xf6OT\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xfe6+\\xff\\xf1[i\\xff٥\\xe3\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffյ\\xfe\\xff\\u05ed\\xf0\\xff\\xc6y\\x96\\xff$m\\xff\\xff=+\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xffت\\xec\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xf6OT\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf4PW\\xffب\\xe8\\xffյ\\xfe\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff̭\\xff\\xff\\u007fd\\xfe\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xaf9\\x8f\\xffT3\\xf5\\xffK2\\xff\\xffK2\\xff\\xffK2\\xff\\xffK2\\xff\\xff\\xd94U\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xfe6,\\xff\\xf3S]\\xff\\u05ec\\xef\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffΰ\\xff\\xff\\x82g\\xff\\xffD,\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf84/\\xff\\x9e.\\x96\\xffG'\\xf4\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff\\xd62V\\xff\\xff5)\\xff\\xff5)\\xff\\xfe6+\\xff\\xf1[i\\xff٥\\xe3\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff~c\\xff\\xffB*\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf84/\\xff\\xa3/\\x90\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff\\xd62V\\xff\\xff5)\\xff\\xff5)\\xff\\xf5PW\\xffب\\xe9\\xffյ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff̭\\xff\\xff\\u007fd\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xfe5)\\xff\\xa3/\\x90\\xffG'\\xf4\\xff?'\\xff\\xff\\xd62V\\xff\\xfe6,\\xff\\xf4S\\\\\\xff\\u05ec\\xf0\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffΰ\\xff\\xff\\x82g\\xff\\xffD,\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf84/\\xff\\x9e.\\x96\\xffG'\\xf5\\xff\\xd63X\\xff\\xf1[i\\xff٥\\xe3\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xff~c\\xff\\xffB*\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xff?'\\xff\\xffE'\\xf7\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf84/\\xff\\xa3/\\x90\\xff\\xcdN\\x85\\xffب\\xe8\\xffյ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2O\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffϰ\\xff\\xff\\xb7\\x99\\xff\\xff\\xb7\\x99\\xff\\xff\\xb7\\x99\\xff\\xff\\xb7\\x99\\xff\\xff\\xb7\\x99\\xff\\xff\\xb5\\x99\\xff\\xffH\\xa5\\xff\\xff\\x10\\xac\\xff\\xff\\r\\xac\\xff\\xff\\r\\xac\\xff\\xff\\r\\xac\\xff\\xff\\x16\\xab\\xfd\\xffܜ\\xd5\\xffܜ\\xd5\\xffܜ\\xd5\\xffܜ\\xd5\\xffܜ\\xd5\\xffܜ\\xd5\\xffm3\\xd6\\xffc*\\xd7\\xffc*\\xd7\\xffc*\\xd7\\xffe,\\xd7\\xff\\x88L\\xd7\\xffЬ\\xf8\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffζ\\xff\\xffO\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2N\\xc5\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xc1\\xb7\\xff\\xffC\\xc5\\xff\\xff\\x03\\xcd\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\t\\xcc\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffK2\\xff\\xff?'\\xff\\xff?'\\xff\\xff@(\\xff\\xffkQ\\xff\\xff\\xc1\\xa3\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffͶ\\xff\\xffN\\xc5\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xff\\xc2\\x0f\\xcc\\xff\\xffp\\xc0\\xff\\xffѶ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff\\xc1\\xb7\\xff\\xff:\\xc6\\xff\\xff\\x00\\xce\\xff\\xff\\x00\\xce\\xff\\xff\\t\\xcc\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffK2\\xff\\xff?'\\xff\\xff?'\\xff\\xff^E\\xff\\xffŧ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffҶ\\xff\\xffw\\xbf\\xff\\xff\\x0f\\xcc\\xff\\xff\\x00\\xcd\\xff\\xc8\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xca\\xff,\\x00\\xcd\\xff\\xb6\\x00\\xcd\\xfe\\xf2'\\xc9\\xff\\xff\\x9a\\xbc\\xff\\xffʷ\\xff\\xffն\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffɶ\\xff\\xff:\\xc6\\xff\\xff\\x03\\xcd\\xff\\xff\\t\\xcc\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffK2\\xff\\xffA(\\xff\\xffbI\\xff\\xffʬ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff̶\\xff\\xff\\x9a\\xbc\\xff\\xff-\\xc8\\xff\\xff\\x00\\xcd\\xfe\\xf3\\x00\\xcd\\xff\\xb6\\x00\\xcd\\xff3\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd2\\xff\\x11\\x00\\xce\\xff^\\x00\\xcd\\xfe\\xbe\\x0f\\xcc\\xff\\xfaP\\xc4\\xff\\xff\\xa1\\xbb\\xff\\xffѶ\\xff\\xffն\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff\\xc1\\xb7\\xff\\xffC\\xc5\\xff\\xff\\r\\xcb\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffL3\\xff\\xffkQ\\xff\\xff\\xc1\\xa3\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffѶ\\xff\\xff\\xa4\\xba\\xff\\xffT\\xc3\\xff\\xff\\x0f\\xcc\\xff\\xfa\\x00\\xce\\xff\\xc2\\x00\\xce\\xffc\\x00\\xd2\\xff\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd2\\xff\\x11\\x00\\xcd\\xfeh\\x00\\xcd\\xfe\\xea\\x0f\\xcc\\xff\\xffZ\\xc3\\xff\\xffŷ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff\\xc0\\xb7\\xff\\xffD\\xc4\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffkQ\\xff\\xffŦ\\xff\\xffԵ\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffɶ\\xff\\xffZ\\xc3\\xff\\xff\\x11\\xcb\\xff\\xff\\x00\\xce\\xff\\xf0\\x00\\xcd\\xfeh\\x00\\xd6\\xfe\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xca\\xfe\\x1d\\x00\\xcd\\xff\\xa1\\x00\\xce\\xfe\\xeb\\x1a\\xca\\xff\\xfd\\x89\\xbd\\xff\\xffŷ\\xff\\xffԴ\\xfc\\xff\\xe8v\\x96\\xff\\xf1\\\\k\\xff\\xf2[i\\xff\\xf2[i\\xff\\xf2[i\\xff\\xe8[i\\xff\\xf2[i\\xff\\xf2[i\\xff\\xf2[i\\xff\\xf2[i\\xff\\xf1\\\\l\\xff\\xe7z\\x9d\\xffͮ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xffŷ\\xff\\xff\\x8d\\xbd\\xff\\xff\\x1d\\xc9\\xfe\\xfe\\x00\\xce\\xfe\\xeb\\x00\\xcd\\xfe\\xa6\\x00\\xcd\\xfe\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcc\\xff\\x05\\x00\\xcd\\xffM\\x00\\xcd\\xfe\\xae\\x04\\xcc\\xfe\\xf9B\\xc6\\xff\\xff\\x92\\xbd\\xff\\xff֤\\xe2\\xff\\xf3V`\\xff\\xfe6*\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xfe6+\\xff\\xf1[i\\xff٥\\xe3\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffѶ\\xff\\xff\\x96\\xbc\\xff\\xffB\\xc6\\xff\\xff\\x06\\xcc\\xfe\\xf9\\x00\\xce\\xff\\xb2\\x00\\xcd\\xffM\\x00\\xda\\xff\\a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xbf\\xff\\f\\x00\\xcc\\xffB\\x00\\xcc\\xfe\\xd4\\n\\xcc\\xfe\\xfe:\\xc6\\xfe\\xff\\xb8\\xa8\\xe2\\xff\\xf5OU\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xff5)\\xff\\xf5PV\\xffب\\xe9\\xffյ\\xfe\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffԶ\\xff\\xff\\xb3\\xb9\\xff\\xff@\\xc6\\xff\\xff\\v\\xcc\\xfe\\xfe\\x00\\xcd\\xfe\\xd4\\x00\\xce\\xffJ\\x00\\xc4\\xfe\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xce\\xfe\\x15\\x00\\xcd\\xfe\\x8a\\x00\\xcd\\xfe\\xe3\\x13\\xcb\\xfe\\xfcz\\xb3\\xe9\\xff\\xdeRU\\xff\\xfc6+\\xff\\xff5)\\xff\\xff5)\\xff\\xfe6,\\xff\\xf4S[\\xff\\u05ec\\xf0\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xffӶ\\xff\\xff\\xc0\\xb8\\xff\\xff|\\xbf\\xff\\xff\\x13\\xcb\\xfe\\xfc\\x00\\xce\\xfe\\xe5\\x00\\xce\\xff\\x92\\x00\\xce\\xfe\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xcf\\xff6\\x00\\xcd\\xfe\\x9b\\x00\\xcd\\xfe\\xef4\\xb8\\xe3\\xff\\x9doz\\xff\\xf0=4\\xff\\xfe6+\\xff\\xf1[i\\xff٥\\xe3\\xffն\\xff\\xffն\\xff\\xffն\\xff\\xff̶\\xff\\xff\\x84\\xbe\\xff\\xff3\\xc7\\xff\\xff\\x00\\xcd\\xfe\\xf3\\x00\\xcd\\xfe\\x9b\\x00\\xcb\\xff;\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xdf\\xff\\b\\x00\\xcc\\xff2\\x00\\xcd\\xfd\\xbd\\t\\xc7\\xf6\\xfe4\\xad\\xd1\\xff\\xb9o\\u007f\\xff٨\\xe8\\xffյ\\xfe\\xffն\\xff\\xffն\\xff\\xff\\xa4\\xba\\xff\\xff-\\xc8\\xff\\xff\\a\\xcc\\xfe\\xfe\\x00\\xce\\xfe\\xc1\\x00\\xcd\\xff4\\x00\\xdf\\xff\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd4\\xff\\x06\\x00\\xcd\\xffm\\x00\\xcd\\xfe\\xd7\\x05\\xcd\\xfe\\xfb]\\xc2\\xff\\xff\\xb4\\xb9\\xff\\xff\\xb7\\xb8\\xff\\xff^\\xc2\\xff\\xff\\b\\xcd\\xfe\\xfb\\x00\\xcd\\xfe\\xda\\x00\\xcd\\xffm\\x00\\xc6\\xfe\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xd2\\xff(\\x00\\xcd\\xfe\\x85\\x00\\xce\\xff\\xe0#\\xc8\\xfe\\xfe&\\xc8\\xfe\\xfe\\x00\\xce\\xff\\xe0\\x00\\xcd\\xfe\\x8a\\x00\\xca\\xff,\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\x03\\x00\\xcc\\xff(\\x00\\xcd\\xfe\\xa5\\x00\\xcc\\xff\\xad\\x00\\xcc\\xff(\\x00\\xbf\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\nvar _Assetsd02de8458478b9207bcc182c71f64095eebd83f2 = \"\\x89PNG\\r\\n\\x1a\\n\\x00\\x00\\x00\\rIHDR\\x00\\x00\\x00\\xb4\\x00\\x00\\x00\\xb4\\b\\x06\\x00\\x00\\x00=\\xcd\\x062\\x00\\x00\\x1f\\x04IDATx\\x9c\\xed\\x9dytUս\\xc7\\u007fa\\x16\\x87\\xd6\\xf2\\x04\\x15Q\\xb4*\\x860\\xc3E\\xe6\\x04\\x01\\x15q|\\xd5\\xda\\xd6>\\xeb\\xf0lk\\x9fU[\\x87\\xb6j-R-3\\\"\\x88\\x88L\\x82 \\x0e\\xa0L\\xb9\\x99\\x80$\\x90\\x84\\xe4\\xde{\\xf6M\\x80kU\\xaa\\x12\\xb0\\xab\\xf5i\\xab>[\\x81\\f\\xf7\\xf3\\xfe8\\xf7\\x82\\x81$\\xe7\\xdc\\xe4\\x9c{N\\x92\\xf3]뻖kI\\x92}\\xf7\\xf9\\xe4\\x97\\xdf\\xfe\\xed\\xdf\\xdeGē\\xadB\\x93T4Y\\x83\\x92\\xf5\\x84\\xa4\\xbf\\xd3\\xe3\\xf1\\xe4\\xa9I\\\" \\xbd\\xd0d>J*Q\\x12\\x8d\\xf9cB\\xb2\\x982\\xb9\\xd0\\xe9\\xf1y\\xf2dZ\\x94˕(\\xf9\\x18%4\\xe0\\xbf\\x13\\x96\\x1b\\x9c\\x1e\\xa7'O\\x8d\\n%\\x93\\xd1\\xe4\\xedF@>љ(\\xb9\\xde\\xe9q{\\xf2TG\\x94H\\xcf\\x18\\xc8_\\xc5R\\v\\xb3@GQ\\xf2/\\x94d\\x13\\x96\\xdeN\\u007f\\x0eOm\\\\\\xec\\x95^h\\xf2+\\x83\\xf4¬\\xff\\x86&\\x8fz\\xf9\\xb5'GD@~\\x8c&!\\x94\\xd46\\n\\xaa\\x96\\x02%\\xa3\\xa1d\\xbc\\xfe\\xdf\\xc6`\\x87)\\x97\\xbb\\x9c\\xfe|\\x9eڀȗ\\x0eh\\x92\\x8a\\x12\\xbf!\\x98Z{\\bv\\x83\\xfc'\\xc1_\\x01\\xfe=\\xb0\\xfdO\\x10\\xfc\\x0f\\xfd\\xff\\x19}}X\\xf2\\xd1d\\x00!\\xe9\\xe8\\xf4\\xe7\\xf6\\xd4\\nE\\xb9\\\\\\x8a\\x92\\x17Q\\xf2\\x89!\\x8c\\xc13\\xa0𗐽\\x1d\\xfc\\x91\\xba\\xce.\\x80\\x82_\\xeb`\\x1bG\\xebO\\xd1d\\x05\\x15\\xd2\\xcf\\xe9\\xcf\\xef\\xa9\\x15\\x89\\xb0܃\\x92j\\xe3\\xa8,zj\\xe1\\xdf{2\\xc8'y/\\x14_\\xad\\u007f\\x8d\\xf1\\xf7\\xadA\\x93\\a\\x9d\\x9e\\aO-X\\x94\\xc8)\\x84\\xe5F\\x94\\xe4\\x19\\x03\\xd7\\x11v\\x0f\\x83\\xeds\\xc0\\x1f6\\x01s\\xdc\\xe5\\xb0}\\x01\\x94\\\\\\x0eZ'3\\x11\\xbb\\x90\\xb0\\xdcBH\\xba:=?\\x9eZ\\x90\\xd0\\xe4b4ɋ\\x95\\xe1\\x1a\\x85\\xac6\\xd4\\tvL\\x87\\xac\\xdd\\t\\x80|\\x82\\xb3J\\xf5_\\x86P\\x173P\\xff\\v%\\x85\\x94K\\x9a\\xd3\\xf3\\xe4\\xc9\\xe5\\\",\\xbd\\xd1\\xe4q\\x94\\xfc\\xdb\\b\\xacO\\v\\xba\\xf3ʜ\\xffa\\xc8\\xe8\\xaf\\xd8>\\xb7\\x92\\x9a\\xadM\\x84\\xf9Ĉ\\xbd\\xf3\\x0es\\xf9\\xb5&\\x87\\t\\xcbT\\xc2\\xd2\\x1b$\\xc5\\xe9\\xb9\\xf3\\xe4\\\"\\x11\\x92\\xae\\x84\\xe4\\xb7h\\xf2.Jj\\x1a\\x03\\xe9HYg6,\\xbc\\x83\\x9b\\xbf\\x17\\xa4\\xff\\x88\\xa3\\xa4\\xfa`LF\\x159\\xb3+-\\x00:\\xa2WDr\\xd7C\\xd1-\\xa0u6\\xaa\\x84\\xd4\\xc6\\xc6\\xfc$\\xf9r\\x9a\\xd3\\xf3\\xe8\\xc9a\\x81\\xb4\\xa7T.AI\\xb9QD\\xac\\t\\xb5\\xe3\\x1f\\x85\\xdd\\xf8\\xf9]\\x9bI\\xf5Q\\x8f\\xa3\\x94>\\xff!\\xb5\\x99V@\\x1ds\\xdeR\\b~\\a\\xb4vf\\xca|\\xef\\x12\\x92\\xfe\\xe4K\\a\\xa7\\xe7Փ\\x03B\\x93\\xa1(y!\\x96\\x936\\nˡ\\x9c\\xde\\xcc~|\\x06\\xbe\\xb1\\x9f7\\x00\\xb3\\xee\\xb1\\xe3\\xabȝcU\\xa4\\x8e;\\x04\\x05\\x8fB\\xe0\\x023\\xf9\\xf5\\xbf\\t\\xcbR\\x94\\x8ctz~=%I\\xec\\x97\\xceh2;\\x96'7\\xdawQ\\x15\\xe8Ț\\xb9\\xf72d\\xccW\\xf4\\xf5\\xd56\\ns<J\\x0f\\x1aYK\\xd1s\\x1fY\\f\\xf5^\\xc8\\n\\xea\\xf9\\xb5q5$\\x8a&_\\xa3\\xc9\\\">\\x92.NϷ'\\x9bD\\x99tC\\x93[QRa\\x04r4ԅȆ\\xab\\xb9\\xfdG\\x05& >\\xd9\\x03GԒ5렵\\xe9Gܹk\\xa1x\\x02\\x84\\xba\\x9aY8\\xfe\\x99r\\xf91J\\xcerz\\xfe=Y(\\x94\\x8cD\\xc964\\xf9\\xda\\x10\\x82\\xc0\\xf9\\xec\\u007f\\xedyn\\xb8\\xee\\xd3&\\xc1\\x1c\\x8f\\xd4c3\\xaa\\b\\xbd\\xf0\\xa1\\xf5@\\xfb#\\xe0\\x0f\\xc2\\xf6\\xe7\\xa0\\xecBs\\xd5\\x10%\\x85\\x84d\\xbc\\xd3\\xcf\\xc1S3\\x85\\x92\\v\\xd0d\\xa1QDF\\x13\\b\\x9eE\\xb4\\xf0g\\x1cZ\\xbb\\x87\\x1b\\xa6\\x1cn\\x06\\xccǝ拲}^%Ֆ\\x94\\xf4\\xeas\\x05\\x14\\xfe\\x1c\\x82=\\xcc\\xec8FQ\\xb2\\x94\\xa0\\\\\\x84xe\\xbe\\x16%J\\xa5\\aJ\\xa6\\x11\\x96w\\ra\\x0eu\\x86]?$\\x9a\\xbb\\x01\\xf5\\xe2\\a\\\\3\\xf9\\x88%0\\xc7=*\\xbd\\x9a\\xec\\xd9\\am\\x02:\\x02\\xfe}\\x90\\xb3\\x11v\\xfe\\xc4L\\x1a\\x12E\\x93\\x0fP2\\x1d%\\xe7:\\xfd\\x9c<\\x19\\x887\\xa4\\x13\\x9a\\x8cEɇ\\xc6\\u007f\\x8a\\xdbC٥\\x90\\xb3\\x81hf\\x84O\\xdfx\\x97\\xc9W[\\x13\\x99Ot__\\x94\\xddV\\x97\\xf4\\xeas\\xceF(\\xed\\vZ\\a3e\\xbeChr\\x15\\x11\\xe9\\xe4\\xf4s\\xf3T\\x8fP2\\x11%\\x1b\\f#\\xb2\\x12(M\\x83\\x1dOCV\\x90hf\\x04\\xf5⇶\\xc1\\x1c\\xf7\\xc8q\\xd5dͲ3Rǭ\\xc1\\xf6\\x99P:\\xd0L\\x99/\\x8a\\x92\\xcd(\\x99\\xec\\xf4\\xf3\\xf3\\x14\\x13{\\xa5\\aaY\\x89&_\\x18\\xe7\\xca\\xed\\xa1\\xf0\\x17\\x90\\xb5K\\xffS\\xed\\x8fph\\xed{\\x96\\xa7\\x19\\r-\\x14}\\xa3k(Z`uI\\xaf>\\uf0ec\\x12(\\xf8\\x95\\xd92ߗ(y\\x8dR9\\xcf\\xe9\\xe7\\xd9fED\\xceF\\xc9\\xed(\\xd9o\\x18\\x89B\\xa7B\\xf1d\\xc8\\xd9p\\xec\\xa1G3#\\xec\\u007fy\\xbfe\\v\\xc0Dҏ\\xdc9V\\xf5~\\x98p\\xceF(\\xbe\\x16B\\xa7\\x9b\\x89\\xd8\\a\\xd0\\xe4\\x1eʥ\\xa7\\xd3ϷM\\x89\\x90܈\\x92\\x80\\xa9\\xf4b\\xf7`\\xc8[\\x05~U\\xe7A\\xef[\\xf6\\x17n\\xb86\\xb90\\xc7=:\\xbd\\x9a\\x82g\\x0f$\\ah\\u007f\\x04\\xfca\\xc8[\\x03\\xbb\\x87\\x9bKC¢(\\x97[\\x9d~έZ \\xedP2\\x10%\\x1b\\x8d\\x17|\\xed \\xd0\\x13\\xf2\\u007fˉ\\xfd\\xc9\\xd1\\xcc\\b\\a\\u05fcǤ+\\x93\\x91f4\\x1e\\xa9\\xf3\\xe6TR\\xbd%YPG\\xc0_\\x01\\xf9\\u007f\\x80\\xc0\\xf9掁)\\xc9F\\x93\\xa1 \\xed\\x9c~\\xfe\\xadJ\\xe8\\xf5\\xe4yh\\xc7n!j$\\xbd\\xe8\\x02;\\xef\\x81\\x1c\\xffI\\x0f4\\x9a\\xa9G\\xe6)\\x93\\x9d\\x89\\xcc'ڞ\\xde\\x0f\\x13\\xce\\xce\\xd1\\xd7\\x12\\xc6i\\x88~\\xdbSX\\x9eG\\x93\\x8b\\x9d\\xe6\\xa0U\\x88r\\xb9\\t%\\x9f\\x1aGe\\x81\\xddC \\xab\\xa8\\xc1\\a\\xf9\\xaf\\xb7\\xdf\\xe1\\xbak\\xdc\\x01s\\xdciã\\x84^\\xf8 \\xf9P\\xfb#\\xfa\\xc2q\\xf7\\bs\\xc7\\xc0\\x94\\xfc\\x13Mns\\x9a\\x87\\x16)\\x90vhr\\x13J\\xb2\\x8dAn\\x0f\\xbb}\\xb1\\xe3O\\xa1z\\x1f\\\\43Bx\\xc9\\a\\\\}\\x95\\xb3iFC\\x1e6\\xba\\x06\\xff\\xccd\\x94\\xf4\\xea\\xb3ҷ\\xd1w\\x8f4\\x9b\\x86\\xe4\\xa3\\xc9\\xf7yC\\xda;\\xcdI\\x8b\\x10\\xbb\\xa57\\x9a\\xec@o\\xeb4^\\xf4\\xed\\xf8#d\\x955\\xfa\\xd0\\xfe\\xb2j\\xbfka\\xd6\\x1de\\xe8\\xe8\\x1a\\xe7\\\"\\xb5?\\x02Y\\x01\\xd81\\vB\\x1dͤ!\\xffF\\x93R\\xca\\xe4R\\xa7yq\\xa5\\x10I\\xa1TΣ\\\\\\xeeC\\xc9\\xdf\\r!\\x0e~\\v\\x8an\\x80\\xac\\xc2F\\x1fR43\\xc2G\\xab\\xdf\\xe7\\xc6k\\xbfv\\x01\\xb4&ҏX\\xefG\\xd2Jz\\xf5\\x82\\xbd\\v\\x8a\\xbe\\a\\xc13\\x8d\\xa3\\xb5&\\x9f\\xa2\\xe4ׄ\\xe4|\\xef\\x18XL\\x88\\xa4\\xa0\\xe4\\xe7\\xe8m\\x9d\\x06\\xb7\\x10\\xb5\\x83\\xe2I\\x90\\xb7\\x96\\x13\\xcbp\\xf5\\xf9\\xcb\\r\\xef\\xb0\\xf0\\xe1Ox\\xe0\\xf6/\\xac\\xf7\\x1d\\x1f\\xdb\\xf2}\\xa7\\xfd\\xe23>Y\\xbd\\xc79\\xa0\\xfd\\x11\\xf0\\x97C\\xeekP<\\xc5\\xdci\\x19%\\xfb\\xd0\\xe4\\xc16\\r5\\x11\\xe9\\x84&\\x03PRd*O\\x0e\\x9e\\xa5o隹\\xf3\\\"s\\xdfq[\\xfe\\xb0\\xf7B\\xee:(\\xba\\xd6>\\xa0\\x1e\\x98\\r3\\xd7\\xc1V3\\xf7{\\xd8\\xe9}z~\\x1d\\xecn\\xae?D\\x13\\x85\\x92am\\xae?\\x04%\\x03\\t\\xcb\\n\\x94|f\\x9c^t\\x87\\x82\\x87 k\\xa7\\xb9\\x87`+\\xcc\\x11\\xc8]\\xa3\\xd7q\\x8b'\\xd9\\a\\xd2\\xfd\\xb3a\\xc8\\x14\\x98\\xb1\\xd6a\\xa0c\\xce*\\x81\\x82\\xdf\\xe8\\xb5}sՐ5\\x84\\xc5\\xe74gI\\x11!\\xf95\\x9a\\xfc\\x9f\\xe1\\x82O\\x13(\\xbaZ_\\xac\\x98\\xba\\x89\\xe8\\x04\\xa0m\\x81y3\\x04\\xce\\xd2\\xc7f7\\xd0}ҡ\\xdfDX\\xb0\\xd1y\\xa0\\xfd\\x11\\xfd\\x19d\\x05\\xa0\\xe8F3\\x97NFQ\\xf2\\x15\\x9a<\\xee4o\\xb6\\x88\\x88\\x9cFXn1\\x97^t\\x86\\x92\\x11\\xb0m\\x11\\xf8\\x13\\xc8%\\xed\\x8e\\xccy+\\xf4\\xcb\\x17\\xe3\\xe3L\\x06\\xd0}\\xd2!m\\x02<\\xbd\\n2\\x9dN?\\xe2\\xde\\x03\\xdb^\\xd2oT5w1N\\x00Mn\\xa3T\\xcep\\x9aCK\\x84\\xbe]]\\x80\\x89\\xcb[\\bt\\x83\\xed\\xf3\\f\\xcbp\\x8d\\x02m\\xc7C\\xcc\\u0382\\xc09u7 \\x92\\x05t\\x9ft\\x184\\x19\\x9e]\\xef\\x02\\x98\\xbfᬀ~\\x8dY\\xe0,3P\\u007f\\x8d\\x92\\x124\\x19\\xe14\\x8fM\\x12\\\")\\xb1봞AI\\x95aj\\x11\\xec\\x0e;\\xef\\x04\\u007fy\\xd3&\\xd7\\xce\\x05`\\xde+\\xfam\\xa2'\\x8e;\\x99@\\xc7=\\xf3U\\xd8\\xe2t\\x05\\xa4\\x1e\\x17\\xfe\\x1c\\x02g\\x9b\\xd9q\\xacF\\xc9\\x1c4\\xb9\\x98\\xa9-\\xa4?\\x84R9\\x03M\\x1eAI\\x04\\xc32\\\\'\\xbd\\x9e\\x9c\\xfb*\\t\\xa5\\x17I\\x819\\x02y\\xab\\xa1\\xec\\xa2\\xfa\\xc7\\xee\\x04о\\xeb\\xe1O\\xaf8\\x0f\\xf0I\\xde\\x03\\xb9\\xafî\\x9bͤ!Q\\x94D\\b\\xcbc\\x84\\xe5\\xdbN\\xf3ڠȗ\\x0e(\\x19\\x88&\\u007f6Γc\\xddpy/\\x13o\\xb4o2ȶ\\xc0\\xbc\\x0fr6A蔆?\\x83\\x13@\\xc7=\\xefM\\xfb~\\x89\\x9b\\xebܵP\\xd6\\xcb\\xec6\\xfa\\x87\\x94\\xc9H\\xd7\\xdd\\xf6DXF\\xa1d9J\\x8e\\x1a\\xe7\\xc9\\x17\\xc6\\xda:\\xb5\\xe6M\\\\澦\\xff2\\x189/V\\x9ak\\xecs8\\t\\xf4\\xe0\\xc90}\\x8d\\xf3\\xf06\\xe8\\n\\xc8\\xff=\\x94]b\\x06\\xea*\\x94\\xac&(\\x19Ns,\\x14\\xc9\\xe9(Y\\x1cK\\xfa\\r\\xcap\\x9d`\\xe7]\\xfa\\r@\\xcd\\x05\\xd1\\xce4#\\xe7m}k\\xdd(\\x1ft\\x12\\xe8x\\xf5c\\xee\\x1b.\\x80\\xb7!\\xef\\x03\\u007f(֦j\\\"\\r\\xd1\\xef\\x0fYMH\\xbe\\x95|\\x90#\\xf2\\x9d\\xd8e\\xe0\\xfb\\x8cA\\xee\\x02%c\\xf4\\xdd5+&\\xc9\\xce4#o\\xb5\\xd9WE8\\x0ft\\x9ftH\\x9b\\b\\xb3ܰ\\xa3h\\xe0\\xdc7\\xa1$\\xc3\\xdcmOJ\\xdeG\\x93[\\t\\xc9\\u007f$\\a\\xe6\\xa0LD\\x93BS\\xe9E\\xe9e\\xb1zr\\xd0:\\xe8l\\x8b̛\\xf5\\v\\x11\\xcd\\xf5\\x06\\xbb\\x03\\xe8>\\xe90\\xec:\\x98\\xfb\\xa6\\xf3\\xd0\\x1aZ\\xc1\\xb6%\\xfa\\x89{\\xa3\\xb9\\r\\xcbQ\\x94\\x14\\x13\\x92)\\xf6\\x03\\xad\\xe4\\x8b\\xc6#\\xb2@\\xf0\\x1c\\xfdı\\x89\\x06\\\"Ӷ\\xb57c\\xad~\\x90\\xd6\\f\\xc8n\\x03:\\xee\\xe9k\\xdcY\\xd2;\\xc9\\x15\\xfaK\\x93\\x02\\xe7\\x19\\a\\x0fM\\xbev\\x16\\xe8\\xd0)z=9'\\xd3z\\x90m\\xdb\\xce^\\xa7On\\\"0\\xbb\\x11\\xe8!S`\\xbaKz?\\xcc8;\\v\\n\\u007f\\x06\\xc1\\xd3\\\\\\nt٥\\x90\\xb3Ն\\x0foc5#;[_\\x00&\\n\\xb3\\x1b\\x81\\xee\\x93\\x0e\\x97e\\xc0b;\\x9e\\x81\\x8d\\xce\\xc9\\xd2o{r\\x15\\xd0%\\x19\\xe0\\x0fX\\xffam\\xdd4Yi\\xee\\xf6Ζ\\x04t\\x9ft\\x18r\\r<\\xb3\\xdayP\\x13\\xb2\\xa6\\xf7^\\xbb\\x06\\xe8\\xe2\\xeb\\xb1<\\x8a\\xdaZ\\x9a\\xdb\\x1a{\\xd5C\\x13av3\\xd0}\\xd2a\\xc0\\x95\\xfa\\xe6\\x8b㠚\\xf5>\\xd8u[+\\x05:3b\\xe3\\xa6ɾXo\\xc6w\\x9a\\x0erK\\x00:\\xee\\x19k\\xdd_\\xd2k\\xfd@\\xdb\\x19\\x997B\\xd9w\\x9b\\x17\\x99[\\x12о\\xeba\\x9e˺\\xf4\\xda\\f\\xd0\\xf1\\xc8l\\xe7\\xb1)s\\xfd\\xbb\\xad\\a\\xe8\\xb8g\\xba=R\\xb76\\xa0m/ͽjܛњ\\x81v\\xd3q\\xae6\\x05\\xb4\\x1d\\x93\\x95\\x9div˵\\xf5\\x02\\x1d\\xf7\\xc2M.\\x80\\xb7\\xb5\\x03\\xbdu\\xaf~\\xc2y\\xdaJ\\xeb\\xfd\\xc7E0o\\x18<w\\xb6\\xe5\\xfe\\xdfy?`\\xf3\\xf4C\\xb6x돶\\x90\\xd9\\u007f\\x9a\\xe5\\xce\\xf3\\xcd\\xe0㹅\\xf6\\xbfI\\xa0M\\x03\\x9d\\xb9\\x0ff\\xbd\\xa6\\x1f3\\xba,\\xc3\\x06\\xa7\\xdb\\xe2\\x92\\x01\\x8f\\x90\\xe6\\x8b\\xda\\xe4Z\\xfa\\xf9j,\\xf7\\xb2\\xa1\\xabxv\\xf4fJ\\x9f\\xb7\\xeb\\xed\\\\\\x1e\\xd0ǡ\\xfe\\xc32\\x1dj;\\xfe\\xd4\\xda\\xe0\\x92\\xfe\\x0f;~ӒY\\x0f\\xf6\\x1d\\xe1\\xc5!\\xab\\xa9\\xed\\x93\\xc1Ӄ\\xde&\\xd5\\r74\\xb5j\\xa0\\xfd\\x11=\\xf5\\x98\\xb7\\x1e\\x06_\\xe38\\xac\\xad\\r\\xe8\\xc5CV\\xf3\\xf5eW\\x11=\\x064\\x8cɨ\\\"wv\\xa5\\v`n\\xad@\\xc7\\xfd\\xf4*\\xe8\\u007f\\xa5\\xe3\\xc0\\xb6\\x06\\xa0\\xfb\\r\\xaba\\xe9З\\x8f\\x8d\\xf9\\x9b@\\xa7\\xfa\\xf4K\\xd7\\xcb\\x16%\\xe1\\xed\\\\m\\x1a\\xe8-{\\xf4\\xf4\\xc3呺%\\x00\\xbdx\\xc8j\\x8e\\xf6\\x99\\xd8 Щ>\\xfd\\xd2\\xf5<'.]o3@\\xfb#zN=\\xe7u\\x18t\\xb5\\xe3\\xe0\\xb6T\\xa0\\x97\\x0f[EM\\x9f+ꌹ>\\xa0S}Q\\x06\\x8f\\xac\\xa58)o\\xe7j\\xab@\\xfb#zN=m%\\f\\xbc\\xcaqx[\\x12Ѓ\\x87\\x1d\\xe6\\x85\\xc1\\xab\\xeb\\x1ds\\xfd@\\xeb\\x1e8\\xa2\\x96\\xecY\\a\\x1dJ?\\xda\\x02\\xd0\\xfe\\x88\\x9e~\\xccZ\\xa7\\x9frv\\x01\\xc4-\\x01\\xe8\\xa5\\xc3V\\xf1\\xaf\\xcb\\ua7efƀN\\xf5E\\x19;\\xbe\\x8a\\xd0b'Jzm\\x05h\\u007fDO?\\xa6\\xad\\x80\\x01\\xee\\x8a\\xd4n\\x03z\\x90\\xef(K\\x86\\xaejt̍\\x03\\xad;mx\\x94\\x1d\\xf3*\\xa9NjI\\xaf-\\x01\\xed\\x8f\\xe8\\xe9ǟ^qU\\x9d\\xda]@GY4X/\\xcd5\\x17\\xe8T\\x9f\\xfe\\x1eŜ\\xa4\\x96\\xf4\\xda\\x1a\\xd0q\\xcfZ皅\\xa2;\\x80\\x8e\\xd2\\xcfW\\xcdҡ/\\x1351f\\xb3@\\xa7\\xfa\\xf4\\x92^\\xe9\\xf3\\xc9*\\xe9\\xb5U\\xa0\\xe3\\x91\\xda\\x05%=7\\x00\\xdd\\xcfW͊!K\\xeb\\x94\\xe6\\xac\\x02:\\xd5\\a#\\xc7U\\x93=;\\x19o\\xe7j\\xab@\\xfb#\\xc7Kz\\x0eW?\\x9c\\a:\\xcaҡ/\\x9b\\x86\\xb9)@\\xa7\\xfa\\xa2\\xf8\\xc6\\xd4P\\xb2\\xf0#\\x0fh\\xdb#\\xf5\\x13/\\xc2@\\xe7\\xd2\\x0f'\\x81\\x1e\\xe4;¢\\xc1\\xabM\\xa5\\x19\\xcd\\x03\\xfax\\xfa\\x917\\xc7\\xceޏ\\xb6\\x0et\\x1c\\xea\\x85\\x1b\\x1dK?\\x9c\\x04zɐU\\x86\\v@+\\x81N\\xf5\\xc1\\xe8\\x8cj\\n\\xe7\\x1f\\xf0\\x80\\xb6\\xdd3\\xd68R\\xfdp\\x02\\xe8\\xc1\\xc3\\x0e\\xd7\\xe9\\xcdH&\\xd0\\xc7\\\"\\xf5\\xdcJ\\xaa\\xb7x@\\xdb\\xe7-{`\\xea\\xf2\\xa4o\\xbe8\\x01\\xf4\\v\\x83\\x1b\\xde4I\\x06Щ>\\xbd\\xf7#\\xd7\\xf2\\xde\\x0f\\x0f\\xe8\\x93=k]R\\x17\\x8a\\xc9\\x06z\\xf9\\xb0\\xa6Gf+\\x81N\\xf5\\xe9\\x9b/\\xdab+_\\xe3\\xec\\x01}\\xb2\\xb7\\xee\\xd5[O\\x93T\\xa7N\\x16\\xd0\\xfd\\x86հx\\xc8ɍFN\\x02\\x9d\\xea\\x83acj\\xf0ϲ\\xaa\\xa4\\xe7\\x01]\\xbf3\\xf7\\xc1\\xfc\\rI\\x81:Y@'Z\\x9aK\\x16Щ\\xbe(CG\\xd7\\x10\\xb2$R{@7\\x1e\\xa9\\xff\\xb0L\\xbf\\x0e\\xab\\x05\\x03=\\xd8w\\x84\\xc5CVY:fk\\x81>\\x9e~4\\xff8\\x97\\a\\xb41Գ\\xd6\\xe9\\xf7Q\\xb4H\\xa0\\xa3\\xbc\\xd8\\xc4\\xd2\\\\\\xb2\\x81N\\xf5\\xe9ǹ\\xb6ϫ\\xf4\\x80\\xb6\\xd3\\xd1\\xcc\\b\\x9fO]A\\xcd\\xc0\\x8c\\x16\\a\\xf4\\x937\\xef'z\\xdf\\f\\xb0ص\\xf7\\xcddڵʶ_\\xc2\\xfcy\\a\\x9a\\x18\\xa9=\\xa0\\ra\\xf6\\xcf<\\xc8S\\xf7\\xbf\\xcd\\xe1\\xf9\\x17\\xc1\\xd0\\xd1-\\n\\xe8\\x85\\x0f}b˼\\xd4n\\x8d\\xf0Խ\\xff\\xb0mܣӫɛ۔H\\xed\\x01ݨw̫d\\xc0\\x88Z~q\\xf7\\x16\\x0e\\xef\\xee\\n˺à1\\x1e\\xd06\\x03\\xad\\x1f\\xe7j\\xcaB\\xd1\\x03\\xbaAo\\x9b[I\\xfa\\x15U\\xa4\\xfaЁ.=\\x05B\\x02s{Z\\n\\xb5\\at\\xc3\\x1e8\\xa2\\x16\\xff\\xccD\\x8esy@\\x9f\\xe4hf\\x04\\xff\\xac\\x83\\xf8\\xc6\\xd4\\x1c\\x9b\\xd8c@+\\x81P\\n\\xbc|\\x16\\f\\xb1\\x06j\\x0f\\xe8\\xc6#\\xf5\\x88\\xb1\\xd5\\xec^h\\xf68\\x97\\a\\xf4I0\\xe7ͭd\\xdc\\xf8\\xaa:\\x13[\\ah}\\x82`\\xd1\\xd90\\xa4\\xf99\\xb5\\a\\xb4\\xb1\\xd3|Q\\xb6ϭ\\xa4ʰ\\xf7\\xc3\\x03\\xba\\x8e\\xb7\\xcc8t,\\xcdh\\x14h%\\x10L\\x81\\x17z4\\x1bj\\x0fhs\\x1e7\\xbe\\xca\\xc4q.\\x0f\\xe8c\\xde>\\xaf\\x92!\\xa3j\\xeb\\x9d\\xccz\\x81\\x8e{\\xc1\\xb9\\xcdʩ=\\xa0ͻ\\xaf/J\\xf1\\x82\\x8f\\x1aɩ=\\xa0\\x89fF(\\x98_\\xc9\\x15\\x13\\x8e68\\x91\\x8d\\x02\\x1dL\\xd1ӏ&\\x96\\xf4<\\xa0\\x13\\xf3\\x88q\\xd5\\xe46x\\x9c\\xab\\x8d\\x03\\x1d͌\\xb0y\\xfa!\\x06\\x8c\\xa8?2\\x9b\\x02:\\x9eS\\xaf=\\x13\\x06'\\x0e\\xb5\\at\\xa2\\x8e2hd-E\\xcf}\\xe4\\x01}\\\"\\xcc\\xf9\\xcf\\x1e`L\\xc6\\xc99s\\xc2@ǫ\\x1f\\xb3\\u0383\\x81\\x89\\xa5\\x1f\\x1e\\xd0M\\U000e0475\\xec8\\xa9\\xf7\\xa3\\x8d\\x02\\x1d͌\\x903\\xbb\\x92Q\\xe9զ&\\xcf\\x14\\xd0\\xf1\\xf4ci\\xf7\\x84\\x16\\x8a\\x1e\\xd0M\\x8f\\xd4\\xe3\\xc6WQT\\xe7.\\xbd6\\bt<2\\x9b\\x859!\\xa0\\xe3\\xe9\\xc7s瘆\\xda\\x03\\xbay\\xee닒;'~CS\\x1b\\x03:\\x9a\\x19a\\xd3\\xf4C\\xa6Ҍ&\\x03]\\xa7\\xa4g\\x9c~x@7ߣҫcW\\xf9\\xb61\\xa0\\v\\xe6W\\x1a.\\x00-\\x01:\\xee\\x97z\\x18\\xe6\\xd4\\x1e\\xd0\\xd68\\xcd\\x17\\xa5b\\xc9_\\xda\\x0e\\xd0\\xdb\\xe75^\\x9a\\xb3\\x05\\xe8P\\n<۳\\xd1\\xf4\\xc3\\x03\\xda:\\x8fJ\\xafb\\xf7\\ua7f6n\\xa0\\xa3\\x99\\xfa\\x0e`C\\x9b&\\xb6\\x02\\xadDohZ\\xda\\x1d\\x06\\x8d\\xf5\\x80\\xb6\\xddQV\\xcf\\xfee\\xeb\\x05:ޛQ\\xdfvvҀ\\x8e\\xe7\\xd4\\vΩwG\\xd1\\x03\\xda\\x03ڴ\\xfd3\\x0f\\x9e\\xd4h\\xe4\\b\\xd0q\\xa8\\x97u?iG\\xd1\\x03\\xda\\x03ڔ\\xb7ͭ\\xac\\xd3\\x02\\xea8\\xd0q?wn\\x9d\\x85\\xa2\\a\\xb4\\a\\xb4a\\x9a\\xb1}^%㚙f\\xd8\\x06t0E\\x87z\\xe8\\x18\\x0fh\\x0fhc\\x983g\\x1a\\xf7f8\\nt\\xdck\\xbf\\x03\\x83\\xc7x@{@7\\f\\xf36\\v\\x16\\x80I\\x03:\\x98\\x02s{R2\\xfc!\\x0fh\\x0f\\xe8\\x93a\\xf6\\xcf<hYΜ\\x14\\xa0\\x95@(\\x85\\xf7\\x97\\x8fd\\xf8\\xd8/\\xed\\x01\\xfa'\\xfb\\xe0\\x96\\a,w\\xf4\\x96\\ax\\xe7\\xc9;\\xc8Y\\xf6\\x9f\\xae\\xf3\\x81\\xec\\xef\\xb6|\\xa0\\v\\xe7\\x1f`L\\x86\\xf9\\xde\\f\\xd7\\x00\\xad\\x84\\xdaP\\no/\\xbc\\x8b\\x11\\xe9\\xd6G\\xbc\\x85\\x0f}\\x02O,\\xb1\\xfe\\xcd_\\x97\\xa5Ì\\xf3l\\x99\\x0f[\\xdcR\\x80\\x8efFx뙏\\x19kAi\\xce)\\xa0QBM\\xb0\\x03%\\xaf\\\\Ũ\\x8cϬ\\azs\\x05<\\xb6\\xd8\\x03\\xda\\xed@\\xc7s\\xe6\\xe6\\xec\\x00\\xba\\x05踳\\x96\\xfc\\x88\\xa1c\\xbe\\xb2\\x16\\xe8\\xf8\\x9c=\\xb5\\x02R\\x9b\\u007f\\xf3\\xa8\\a\\xb4M@\\x17<{\\x80\\x8c&\\xf6f\\xb8\\x15\\xe8\\xea`G6>\\u007f\\x17#-\\x8a\\xd4u\\x80\\u07ba\\x17\\x1e{\\x01\\xfaZ\\x00\\xb5\\a\\xb4u@G3#\\xe4\\xceiZלہF\\tQ-\\x85]\\xab\\xa6p\\xf9\\xb8ϭ\\x05:\\x0e\\xf5S+=\\xa0\\xdd\\x02t43B\\xd6,k\\xb6\\xb3\\xdd\\n4J\\xa8\\t\\xb5g\\xeb\\xe2\\xffjv\\xf5\\xa3\\xc1\\xb2\\xddc\\x8b\\x9b\\xf7\\xe6/\\x0fhk\\x80Κ}\\x90\\x91\\xe3\\xec\\xabf\\xb8\\x05h\\x94\\xbeP\\xcc_y\\x13#\\x9bQ\\xfdh\\x10\\xe8Maxr\\xa9\\a\\xb4S@G3\\xf5\\xd2\\\\\\\"ǦZ:\\xd0(=\\xfdؼ\\xe8'\\fkb\\xa46\\xdcXyr)\\xf4o\\u0085\\xeen\\x05:p\\x1e\\x94\\xa6\\xba\\x1b\\xe8\\xf8U\\x03\\xc9N3\\xdc\\x004JO?\\xb2_\\xba\\x95\\x11\\xe9\\x89\\xe7Ԇ@o\\xae\\x80߽\\xd0:\\x80.\\xbb\\x10r_s\\xf7\\x89\\x95x\\xce<t\\x94=;\\x80-\\x01\\xe8\\xb8\\vVܘ\\xf0B\\xd1\\xd4\\xd6w\\xe6>}\\xa1\\x98H\\xf5\\xc3m@\\aΆ\\x9c\\xb7q\\xf5\\x99\\xc28\\xccv\\xf4f\\xb4D\\xa0kB\\xed\\xc9y\\xe9\\xfb\\x8c\\xca0\\x9fS\\x9b\\xee\\xe5غW_(\\xf6\\x9b\\xd4\\xf2\\x80\\x0e\\xf4\\x86\\xbcU1n\\\\\\nt<\\xcdp:2\\xbb\\th\\x94\\x9eS\\xef|\\xf9:\\x86\\x8f\\xfd\\xc2Z\\xa0\\xe3\\xe9\\xc7\\xd4e-\\v\\xe8@o\\xc8\\xd9\\xfc\\x8d\\xbf\\xea.\\x05\\xbap\\xfe\\x01Gsf\\xb7\\x02\\x8d\\xd2#\\xf5\\x9b\\xf3\\xefe\\xf88c\\xa8\\x13\\xee\\xb6\\xcbܧGj\\xa3\\xde\\x0f7\\x00\\x1d8\\xfb\\x1b\\x919\\xe2N\\xa0\\xa3Eד\\x95\\xc0\\x8dFm\\x11h\\x94P\\x13lO\\xe8\\xb5\\f\\xc3ޏ&\\xb5\\x8fn\\xae\\xd0\\x1b\\x9a\\xdc\\ftم\\xc7s\\xe6:\\xe3w\\x19л_\\xf9\\x01#\\xd3\\xdd\\x13\\x99\\xdd\\nt\\xdcyKofD\\xfa?\\xad\\x05:\\xee?,o\\xf8\\x1d\\x8dN\\x02\\x1d\\xe8\\x05\\xb9\\xaf70n\\x97\\x01\\xfd\\xf6\\xa2\\xff\\\"\\u0557\\xbc-\\xed\\x96\\x0etM\\xb0\\x03\\x9b\\x9eo\\xb8\\xf5\\xb4Y@o*o\\xb8\\xa4\\xe7\\x14\\xd0\\xc1\\xb3!ou=\\x91\\xd9\\x03\\xbaU\\x00\\x1dw\\xc1\\x8a\\x1b\\xf1ճ\\xf9bɉ\\x95\\xa7W\\xbb\\x03\\xe8\\xc09\\xb14\\xa3\\xb1\\xf1z@\\xb7\\n\\xa0kC\\xed\\xc8Z\\xf2Ó\\xeaԖ\\x1d\\xc1zl1\\xa4Mt\\x0e\\xe8\\xb2\\xf3\\r\\\"\\xb3\\at\\xab\\x02Z\\x87:\\x85ҵWq\\xf97\\xaa\\x1f\\x96\\x01\\xbde\\x8f\\xfe\\xdes'\\x80\\x0e\\xf4\\x84\\xec\\\\\\x130{@\\xb7*\\xa0u\\xa8\\xdb\\xf1ւ\\xff>vH\\xc0\\xf2C\\xb2\\xf1\\xe3\\\\\\xc9\\x02:\\xd8\\x1d\\xb6-3\\t\\xb3\\at\\xab\\x03:\\x0eu\\xfeʛ\\x18\\x9d\\xf1\\xa9\\xf5@o\\xae\\x80'^L\\x0e\\xd0e\\x17Ū\\x19\\x89\\x9c1u\\x19Л\\x17\\xdd\\xc6 \\xdf\\x11\\x06\\xf9\\x8e&쁾*\\x06\\x8c\\xa8\\xb5\\xc5\\xf7\\xff\\xf7\\x16\\x0e\\x17\\x9d\\x06e\\xed\\xadw\\xb0\\x03h\\x9d-\\xf7\\xf6e?b\\xd5\\x13\\x89\\xbeZ\\xd8$4S\\x97\\xc3܋\\xec\\x839\\xd0\\x13r\\xd77mln\\x02\\xfa\\xaf\\v\\x06\\x92;`*\\xb9\\xfd\\x9fJ\\xd8\\xd9\\x13_\\\"s\\xc6![\\x1c|b=5w\\x0e\\x83;\\xfa[\\xeb\\x9f\\x0e\\x83\\xf5O\\xc2\\xf6\\x05\\x96\\xbb&w\\x11\\x9f\\xbdY\\xa6\\xef\\xfeY\\r\\xf5\\x96=\\x90\\xf7\\x9f6\\xc1\\xdc\\v\\xf2^I02\\xbb\\x14h\\xe6w\\x87>\\xe3\\x9a\\xd6t>\\xe5\\xa76D\\xa3\\x98g\\xbdZw\\x95o\\x85\\xfbNЫ\\a[\\xf7\\xda3\\xe6\\xcc}umu\\x94\\xae\\x0f\\x9c\\xe6:\\xd8\\x03r66\\x11f\\x0fh\\xe7\\x80N\\x9b\\b\\x0f\\xce\\xd5sR\\xbb@\\xfe\\xe6C\\xb6\\x1cj\\x1b\\x80\\x0e\\x9e\\x03y+\\x9a\\x01\\xb3\\a\\xb43@\\xf7\\x9b\\xa8\\xe7\\xa0I\\x81\\xd9.\\xa8-\\x06:\\xd0\\vr\\xb2\\x9b\\t\\xb3\\at\\xf2\\x81N\\x9b\\x00\\xbfyޞ4\\xc3\\x10X+\\xa1\\xb6\\x10\\xe8@\\xafئ\\x89\\x8d\\xbfh\\x1e\\xd06\\x00\\xddo\\xa2\\xde\\x1b\\xb1\\xa9\\xdc\\x01\\x98O\\xf8w͆\\xda\\\"\\xa0\\x03\\xe7C\\xee:\\xac\\xbb\\xe4\\xde\\x03:9@\\xa7M\\x80\\x87\\xe6\\xdb3\\xb6\\xa6\\x00\\xdal\\xa8-\\x00:pn#]s\\xad\\x05\\xe8%ݠ\\u007fb\\xaf\\x16v=\\xd0\\xfd'\\xc1o\\x179\\x1b\\x99\\x1b\\xfa\\xba&C\\xddL\\xa0\\x03\\x17@\\xdeJ\\xac\\u007f㙂\\xe2\\xeb\\\\\\x04t0\\x05^=\\x03F\\x0fo\\x1d@\\xa7M\\x84i+\\xed/\\xcd5\\xe7k\\x9b\\xf4\\xf5\\xcd\\x00:\\xd0\\v\\xb2\\xcc\\xf6f$\\xe0\\xecm\\xb0{8h\\x1d\\\\\\x04t\\xdcE\\xed\\xe1\\xd1\\xde0\\xea\\xf2\\x96\\vt\\xda\\x04\\xb8\\u007f\\xb6\\xcd\\xd5\\f\\vr\\xe1&A\\xddD\\xa0\\x83\\xdd o\\xb9\\xb5%\\xc4\\xec\\xedP\\xf00\\x04\\xcfh\\xf8\\xe7:\\x0e\\xb4\\x12\\xfd\\xfd~\\x9b\\xbb\\xc2}\\x17CZ\\xfd\\xef\\xf8s-\\xd0\\xfd'\\xe9=\\x0fv\\xa6\\x19\\x99V\\u007f?\\vz&\\f\\x17\\x80\\x1b,\\xf8%\\x8c{\\x0f\\xe4?\\x01e\\x97\\x82\\x96\\xd2\\xf8\\xcfN\\x12\\xd0ףDC\\x93\\x1a\\xc3\\xc9x\\xfdt\\xb8~`\\xe3`\\xbb\\x05贉z\\xcelu\\x9aQ'*[\\xfc\\xe7:a\\xa8\\x13\\x04:p\\xbe\\x85\\v\\xc0r\\xc8[\\v\\xbb\\a\\x9b\\xf9\\xd95(\\xa9\\xa0\\\\\\xbeo;\\xd0\\\"\\\"\\xec\\x95\\x1e(\\xb9\\x1b%\\xef\\xa3$\\xda\\xe8\\xe0\\x8a\\xdb\\xc3³`\\xd2P\\xf7\\x02\\xddo\\xa2\\xbe\\x9d\\xed\\xea4\\xc3\\n\\xa8\\x13\\x00\\xfa\\x18\\xcc\\x16\\x8c;g#\\x14]\\x0f\\xa1\\xd3\\xcd\\xfc\\xec\\x8f\\b\\xc9/PrnR`\\xae\\x03\\xf6.9\\x13%o\\x98\\x9a\\xa0\\xdd\\xed\\xe07\\x17\\xb8\\x0f\\xe8\\xbeW\\xc0\\xef\\x16\\xd97\\x06+\\xd3\\fS\\xbf8\\x16\\x00\\x1d\\xec\\x16K3,\\x18W\\xc1#\\x10\\xeaj\\xf6\\xafB&e\\xd2-\\xe9 \\x9f\\x04vP&\\xa1d=J\\xaa\\r\\a\\xbd\\xe1T\\xb8\\xa7\\xcf\\xf14\\xc4I\\xa0\\xfbM\\x82_\\xcfk\\x199\\xb3\\xe9\\x9fg\\xb0\\xebh\\x04t\\xa0\\x97\\xbe\\x00lVd\\xde\\x03;fBi?c\\x88\\xf5\\xd4u\\x13a\\xb9\\xc6i\\x8e눐t%,\\x19(\\xd9o\\xf8!\\xcaR`\\xfd\\xa9p\\xcd`\\xe7\\x80N\\x8bu\\xcdm\\xd9\\xe3\\x10\\\\6B\\x9d\\xe8\\xe9\\xeac0_\\xa0\\x97\\xe6\\x9a3\\xee\\xdc7t\\x90\\xb5Nf`>\\x88\\x92Ʉ\\xa4\\xab\\xd3\\xfc6(ʤ\\x1bay\\x1aM>@I\\xada\\x1a\\xb2\\xd2\\x17;\\x15lCͷ!\\xa0\\xd3&\\xc0#\\xcf\\xc1f\\x17m\\x9a$e\\f\\x8d\\x00\\x1d8\\xb7\\x19\\x9b&{\\xf5\\xab\\xbdv\\xfe\\xc4Lz\\x11Eɇh2\\x8bb\\xe9\\xee4\\xaf\\xa6\\x04\\x92\\x82&\\x03\\xd0d\\x91a5D\\x8b\\xfd\\x99+\\xb8\\x1f\\xfc\\x16\\x03V\\x1f\\xd0\\xfd&\\xc1\\xe3-\\xa44\\xd7\\xecq\\x9c\\bg\\x03@7w\\x01X\\xf00\\x94\\xf5֟e\\xe30נd9\\x9a\\f\\xe0\\ri\\xef4\\xa7M\\x12\\x9a\\x8c@I\\x18%G\\r\\xff\\x04\\x05z\\xc0\\xb6%\\xe0\\xd7\\xec\\x01\\xba\\xef\\x15\\xf0г6w\\xcd9\\x1c\\x9d\\xeb\\x1dS#@\\az\\xc5\\x1a\\x8d\\x12\\xfd\\xfe\\n\\xb6\\xad\\xd0#\\xbb\\xf1b\\xef(J\\\"\\x84d\\xbc\\xd3<Z\\\"\\xf6ș(\\xb9\\x1bM\\x94\\xe1\\x87\\x0f\\x9d\\x02\\xc5\\x13bM\\xe3\\xcd\\x04\\xef\\x9b@\\xf7\\x9b\\x04\\x0f?\\a\\x1b\\xc3I\\x00\\xc7->1R\\x9f\\x00\\xf4\\xb1\\x16\\xd0DƾW\\xff\\x9a\\xe2+\\xcdU/²\\x17%\\xf7\\xba\\xa2za\\x87P2\\xcd0\\xb7V\\xa2\\xef\\\"\\x15\\xddd\\r\\xd0i\\x13\\xf4\\xcb\\xc1\\xed\\x02\\xc7\\ri\\x86\\xa9_\\xb8o\\x00\\x1d<'֜\\x9f\\xe0\\xf7\\xda\\xf5C\\xd0ڙ\\x89\\xcaQ\\xc22\\xdbiޒ\\\"4\\x19\\x81&\\x1b0\\xdaFW\\xa2\\xbf\\u007f#\\xffI\\xc8*i\\x1aЃ\\xae\\x86_͵>gv\\xaa\\x92\\xd1ܱ\\xee\\xba-v\\xd7\\xdc\\n\\xf3c\\xcf\\n\\xc0\\x8e?\\xeay\\xb21\\xc8_\\xa2d3J\\xd2\\x11Iq\\x9a\\xb5\\xa4)V\\xe6\\x1bm*\\r\\xd1:铹m\\x01\\t\\xfdy\\x9c\\xf7\\xa6~\\x19xk*\\xcd5k\\xbc{!\\xff\\xb7\\t\\x1chݧ\\xafi\\xca.2W\\x86S\\xf2\\x0e\\xe52\\x9e\\x1c9\\xd5i\\xbe\\x1c\\x13oH{4y\\x14%\\u007f!\\xdcx*\\x12\\xd5ڳ\\xff\\xad[x\\xe6\\x81\\xdd\\xdc\\xf3\\x83\\u007fr\\xc7-_5\\xea;\\xbf\\xf7%w\\xdc\\xfc\\u007f\\x86\\xff.Q?p\\xfb\\x17\\xbc\\xb7b\\xbf\\xbbӌ\\x86\\x00\\xf5\\xef5\\x01s\\x85^\\x86\\xdbus\\xfdm\\x9d'\\xfb#B\\xf2\\xfb\\x16[\\xb9\\xb0Z )\\x84\\xe5\\x12\\x94<\\x81&\\x9f\\x19M\\xe0';\\xcef\\xf5\\xec\\xfb\\xb8|\\\\\\xd3\\xdf\\x05\\xd8T\\x8f\\x1cWM挃D[\\x1c\\xcc&\\x9dU\\xaaד\\x83=̀\\xfcO\\x94<EH.c\\xaa\\xb4s\\x9a#W*\\x06v9J\\xaa0j|R\\xc2/\\xefYπ\\x11G\\x92\\x00s\\x94\\xfe\\x97GY\\xf3\\xe4_[)\\xcc\\xe5\\xb0m1\\x84:\\x1b/\\xf6\\xf4g\\xf3\\x1e\\x15\\xd2\\xcfi^Z\\x84@:\\xa0\\xe4v²\\xcb\\b\\xe8\\xaa@Gv\\xac\\x9c\\xc2\\xcf\\xee\\xdc\\xca\\xc0\\x91\\x87m\\x03zLF\\x15\\x1b\\x9f9\\xd4\\na\\x0eö\\xa5z\\xa9T\\xebh\\xa6\\fW\\x8a\\x92\\xbb\\tIG\\xa79iq\\\"_\\xba\\xa0\\xc9\\x1dh\\xf2\\xb9\\xd1D\\x1f-\\xebĎ\\x95S\\x18f\\xf2MS\\x89z\\xeb\\x8cCԶ:\\x98\\x03P2\\x11B\\xa6\\xfa.\\xbeDɽ\\x94\\xc8)Ns\\xd1\\xe2E\\x99\\\\JXV\\xa0\\xc9ߌҐ\\xaf\\x8aOg\\xce\\xe33\\x18\\u007f\\xe5AKҌQ\\xe9\\xd5l\\xfa\\xd3!\\x17\\xc0g\\xa1\\xb3w@\\xc1\\xa3\\x10\\xfc\\xb6\\x99\\xf4\\xe2\\x13\\x94\\xac\\xa5\\\\Ҝ\\xe6\\xa0U\\x89|\\xe9@\\xb9\\x8c!,9\\xc6iH\\a\\xde\\xdbҏ\\xc7\\x1fXF\\xff\\x11G\\x9b\\f\\xf4\\xb015\\xbc1\\xed\\xe3V\\x94fT\\xc0\\x8e\\x19P\\x96j\\xb6zQHHƃtp\\xfa\\xf9\\xb7j\\xa1\\xc9mh\\xf2\\xaeQ\\xb4\\x8ejBњ\\x89\\\\\\u007fCE\\xc2`\\x0f\\x1fS\\xc3[O\\xb7\\x16\\x98+ g\\x13\\x94\\xa4\\x9b\\x818\\x8a\\xde\\x02|\\xb7\\xd3ϹM\\t%\\x17\\xa0Ƀ(\\xa94zH_\\xec:\\x93מ\\xfd)\\x93\\xa7\\xfc\\xd9\\\\i.\\xbd\\x9a\\xad\\xad\\xa54\\x97\\xe3\\u05f7\\xab\\x83g\\x9a\\x81\\xf9\\xafh\\xf2(!\\xf9\\xae\\xd3Ϸ͊\\x12\\xe9IX\\xdeF\\xc9a\\xa3\\x88]\\x1d\\xec\\xc0\\xf4\\xdf\\xcee\\xc8\\xe8\\xafH\\xf5E녹\\xff嵬\\x9b\\xda\\xd2Ks\\xfb\\xc0\\xaf\\xe9-\\x03\\x9a\\xa92\\xdc\\x114\\xc9A\\xc9\\x05N?OO1\\xa1\\xc9U(\\xd9h&\\r)_?\\x9cG\\xfegu\\f\\xec\\xe30gL\\xa8bˌ\\x96^\\x9a\\xd3`\\xfb\\x1c(5u\\xba:JX2\\xd1\\xe4:\\xa7\\x9f\\x9f\\xa7zDDN#,7\\xa0\\xe4\\x90\\xd1\\xc3<\\\\z\\n\\x81\\xd7\\xc61\\xe5\\xbaȱȼe\\xc6!j\\xb6:\\rd3\\x9c\\x93\\t%# \\xd4\\xc5L\\x19\\xeeo(\\xf9\\x01\\xa5r\\x86\\xd3\\xcf͓\\x81(\\x97\\x9eh\\xb2\\x10M*\\x8d\\\"\\xf6\\xbfKNe\\xf1\\x1f\\x1fc\\xdd\\xd3\\xc5-72\\xe7dC\\xe1}\\x10<\\xcdLz\\xf11\\x9a\\xbc\\xe8\\xa5\\x17-P\\x94K\\x1aaYi&\\r\\x89\\x06z\\xe9G\\x89\\xfc\\xcay@M\\xbbB\\xbf& \\xd0\\xdb\\xcc\\xf1\\xa7(J֡d \\xb4\\xa1\\xb6\\xce\\xd6(\\x94L@I\\x19f\\x8e\\x81\\x95]\\x1c;\\x06\\x16r\\x01\\xb0\\rY\\xe9W\\r\\x94^f&O\\xaeB\\x89FH\\xa68\\xfd\\x1c<Y(\\xf6J\\x0f4\\xf9\\x99\\x99\\xfa5\\xa1S\\xa1\\xe8Z\\x1b\\xeeA\\xb6\\xc0\\xb9\\xeb\\xf5\\x93<fn!\\xd2\\xe4\\x034\\xb9\\x0f'n!\\xf2\\x94\\x1c\\x11\\x92\\xae\\x84d\\x99\\x89Ȧ7\\xeb\\xec\\xbc\\xcby\\x88\\xe3.\\xbc\\x0f4\\x13\\v>ݯ\\x92/\\xa79=ߞ\\x92$4\\x19\\x8b&k\\xd0\\xe4\\xb0q\\x1a\\xd2\\x1b\\xf2\\u007f\\x0f\\xfe\\xa03\\xe9ŎiPv\\x89\\x19\\x88\\x8f\\xa0\\xc9\\xebhr\\x85\\xd3\\xf3\\xeb\\xc9\\x01\\x91/](\\x93a(y\\xc78Zw\\xd0\\xef\\xaf\\xc8[\\x9e<\\x98\\xf3^\\x89\\xddw\\xd1\\xd1xѧ\\xc9\\a\\x94\\xcb\\x18\\xaf\\x1bΓP*g\\x10\\x92\\xe9(9\\x80щt\\xad3\\xec\\xbc\\rr\\xb6\\x80߆\\xb3\\x8a\\xfe=z=y\\xe7\\x9d\\xfa\\x95\\x0eF\\x95\\v\\xbd49\\x87\\x90|\\xcb\\xe9y\\xf4\\xe4\\\"\\x81\\xa4\\xa0\\xa4/\\x9a\\xcc$,G\\f\\xa2!\\x04\\u0381\\xc2{\\xb0\\xb6̷Gϓ\\x03=͔\\xe1\\xaa\\xd0\\xe4Y\\x94\\xf4\\x05\\xef\\xf8\\x93\\xa7F\\x14\\xab_\\x97\\xa1L\\xe4סSa\\xfbB\\x9aW\\xe6\\xd3`ۋ\\x8d\\xbf\\x9e\\xe1\\x9by\\xb2\\x92r4\\x19\\xea\\xf4<yjA\\\"\\\"\\xa7\\xa1\\xe4v\\x94\\x14\\x19\\xe7ם\\xa1d\\x1cl{\\x81\\xc4\\xee竀mˠ\\xf8\\n3\\xe9\\x05(\\t\\xa0\\xe4no\\xbb\\xdaS\\x93E\\x89\\x9c\\x82&\\x8f\\x18\\xe7\\xd61\\xb0\\x8b\\xae3\\x0f\\xf4\\xae\\x9b\\xf5\\xbe\\vs\\xbb|O\\x12\\x92\\xaem\\xea\\xf2\\x16O\\xf6\\tM\\x06\\xa0o\\x1d\\xff\\xc30\\x92\\x06\\xbaA\\xfe\\xef k\\xe7\\xc9\\x10g\\x15\\xebm\\x9d\\x81s\\xccD\\xe4\\xcfQ\\xb2\\x01%Ü\\xfe\\xfc\\x9eZ\\xa1ȗ.\\x94\\xcbp\\x94\\x14\\x18\\xa7!\\x1d\\xa1\\xec|\\xfd&{\\xff\\x1e\\xf0\\xef\\x85\\xed\\xf3\\x8f\\x97\\xe1\\f\\xbf^J\\t\\xcbh>\\x92.N\\u007fnOm@(\\xb9\\x17%\\u007f6NER\\xa0x\\\"\\x14M1~\\x8d\\x99\\xee\\xf7\\t˃N\\u007f>OmP\\x84\\xe5\\x124\\x99\\x8a~2\\xda\\f\\xac\\x8d\\xf9S4y\\x06MR\\xbdn8O\\x8e\\x8a\\x90\\x9c\\x8f&\\x85\\xe8\\xdd|\\x86\\xb7=\\x9d\\xb0\\xd8;\\x8a\\x92\\x00\\x9a\\\\\\xec\\xf4\\xe7\\xf0䩎\\xd0\\xe4V\\x94\\xe4%\\x00t\\x01\\x9a\\xfc\\xd8\\xe9q{\\xf2Ԡ\\xd8/\\x9d\\xd1\\xe4\\xfb(\\xf9{\\xa3酒\\xdb\\xc9\\xf7\\x16|\\x9eZ\\x88\\xa8\\x90\\vQ\\xb2\\x1au춧(J\\xfe\\x97\\xb0\\xbcN\\xb9\\\\\\xea\\xf4\\xf8<yJX )\\x04e8ay\\v%\\x99\\x84e\\x94\\xb7\\xe0\\xb3W\\xff\\x0fe\\x94v,'\\x16\\xaf\\x19\\x00\\x00\\x00\\x00IEND\\xaeB`\\x82\"\nvar _Assets64f30b43055dd09ec44f8eadb40269023d03229e = \"<?xml version=\\\"1.0\\\" standalone=\\\"no\\\"?>\\n<!--\\nFont Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com\\nLicense - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\\n-->\\n<!DOCTYPE svg PUBLIC \\\"-//W3C//DTD SVG 1.1//EN\\\" \\\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\\\" >\\n<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" version=\\\"1.1\\\">\\n<metadata>\\nCreated by FontForge 20190801 at Tue Dec 10 16:09:21 2019\\n By Robert Madole\\nCopyright (c) Font Awesome\\n</metadata>\\n<defs>\\n<font id=\\\"FontAwesome5Free-Regular\\\" horiz-adv-x=\\\"512\\\" >\\n  <font-face \\n    font-family=\\\"Font Awesome 5 Free Regular\\\"\\n    font-weight=\\\"400\\\"\\n    font-stretch=\\\"normal\\\"\\n    units-per-em=\\\"512\\\"\\n    panose-1=\\\"2 0 5 3 0 0 0 0 0 0\\\"\\n    ascent=\\\"448\\\"\\n    descent=\\\"-64\\\"\\n    bbox=\\\"-0.0663408 -64.0662 640.01 448.1\\\"\\n    underline-thickness=\\\"25\\\"\\n    underline-position=\\\"-50\\\"\\n    unicode-range=\\\"U+0020-F5C8\\\"\\n  />\\n    <missing-glyph />\\n    <glyph glyph-name=\\\"heart\\\" unicode=\\\"&#xf004;\\\" \\nd=\\\"M458.4 383.7c75.2998 -63.4004 64.0996 -166.601 10.5996 -221.3l-175.4 -178.7c-10 -10.2002 -23.2998 -15.7998 -37.5996 -15.7998c-14.2002 0 -27.5996 5.69922 -37.5996 15.8994l-175.4 178.7c-53.5996 54.7002 -64.5996 157.9 10.5996 221.2\\nc57.8008 48.7002 147.101 41.2998 202.4 -15c55.2998 56.2998 144.6 63.5996 202.4 15zM434.8 196.2c36.2002 36.8994 43.7998 107.7 -7.2998 150.8c-38.7002 32.5996 -98.7002 27.9004 -136.5 -10.5996l-35 -35.7002l-35 35.7002\\nc-37.5996 38.2998 -97.5996 43.1992 -136.5 10.5c-51.2002 -43.1006 -43.7998 -113.5 -7.2998 -150.7l175.399 -178.7c2.40039 -2.40039 4.40039 -2.40039 6.80078 0z\\\" />\\n    <glyph glyph-name=\\\"star\\\" unicode=\\\"&#xf005;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528.1 276.5c26.2002 -3.7998 36.7002 -36.0996 17.7002 -54.5996l-105.7 -103l25 -145.5c4.5 -26.3008 -23.1992 -45.9004 -46.3994 -33.7002l-130.7 68.7002l-130.7 -68.7002c-23.2002 -12.2998 -50.8994 7.39941 -46.3994 33.7002l25 145.5l-105.7 103\\nc-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2998l65.2998 132.4c11.7998 23.8994 45.7002 23.5996 57.4004 0l65.2998 -132.4zM388.6 135.7l100.601 98l-139 20.2002l-62.2002 126l-62.2002 -126l-139 -20.2002l100.601 -98l-23.7002 -138.4l124.3 65.2998\\nl124.3 -65.2998z\\\" />\\n    <glyph glyph-name=\\\"user\\\" unicode=\\\"&#xf007;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M313.6 144c74.2002 0 134.4 -60.2002 134.4 -134.4v-25.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v25.5996c0 74.2002 60.2002 134.4 134.4 134.4c28.7998 0 42.5 -16 89.5996 -16s60.9004 16 89.5996 16zM400 -16v25.5996\\nc0 47.6006 -38.7998 86.4004 -86.4004 86.4004c-14.6992 0 -37.8994 -16 -89.5996 -16c-51.2998 0 -75 16 -89.5996 16c-47.6006 0 -86.4004 -38.7998 -86.4004 -86.4004v-25.5996h352zM224 160c-79.5 0 -144 64.5 -144 144s64.5 144 144 144s144 -64.5 144 -144\\ns-64.5 -144 -144 -144zM224 400c-52.9004 0 -96 -43.0996 -96 -96s43.0996 -96 96 -96s96 43.0996 96 96s-43.0996 96 -96 96z\\\" />\\n    <glyph glyph-name=\\\"clock\\\" unicode=\\\"&#xf017;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM317.8 96.4004l-84.8994 61.6992\\nc-3.10059 2.30078 -4.90039 5.90039 -4.90039 9.7002v164.2c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12v-141.7l66.7998 -48.5996c5.40039 -3.90039 6.5 -11.4004 2.60059 -16.7998l-18.8008 -25.9004c-3.89941 -5.2998 -11.3994 -6.5 -16.7998 -2.59961z\\n\\\" />\\n    <glyph glyph-name=\\\"list-alt\\\" unicode=\\\"&#xf022;\\\" \\nd=\\\"M464 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h416zM458 16c3.31152 0 6 2.68848 6 6v340c0 3.31152 -2.68848 6 -6 6h-404c-3.31152 0 -6 -2.68848 -6 -6v-340\\nc0 -3.31152 2.68848 -6 6 -6h404zM416 108v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM416 204v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12\\nv24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM416 300v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM164 288c0 -19.8818 -16.1182 -36 -36 -36\\ns-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36zM164 192c0 -19.8818 -16.1182 -36 -36 -36s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36zM164 96c0 -19.8818 -16.1182 -36 -36 -36s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36z\\\" />\\n    <glyph glyph-name=\\\"flag\\\" unicode=\\\"&#xf024;\\\" \\nd=\\\"M336.174 368c35.4668 0 73.0195 12.6914 108.922 28.1797c31.6406 13.6514 66.9043 -9.65723 66.9043 -44.1162v-239.919c0 -16.1953 -8.1543 -31.3057 -21.7129 -40.1631c-26.5762 -17.3643 -70.0693 -39.9814 -128.548 -39.9814c-68.6084 0 -112.781 32 -161.913 32\\nc-56.5674 0 -89.957 -11.2803 -127.826 -28.5566v-83.4434c0 -8.83691 -7.16309 -16 -16 -16h-16c-8.83691 0 -16 7.16309 -16 16v406.438c-14.3428 8.2998 -24 23.7979 -24 41.5615c0 27.5693 23.2422 49.71 51.2012 47.8965\\nc22.9658 -1.49023 41.8662 -19.4717 44.4805 -42.3379c0.177734 -1.52441 0.321289 -4.00781 0.321289 -5.54199c0 -4.30176 -1.10352 -11.1035 -2.46289 -15.1846c22.418 8.68555 49.4199 15.168 80.7207 15.168c68.6084 0 112.781 -32 161.913 -32zM464 112v240\\nc-31.5059 -14.6338 -84.5547 -32 -127.826 -32c-59.9111 0 -101.968 32 -161.913 32c-41.4365 0 -80.4766 -16.5879 -102.261 -32v-232c31.4473 14.5967 84.4648 24 127.826 24c59.9111 0 101.968 -32 161.913 -32c41.4365 0 80.4775 16.5879 102.261 32z\\\" />\\n    <glyph glyph-name=\\\"bookmark\\\" unicode=\\\"&#xf02e;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 448c26.5098 0 48 -21.4902 48 -48v-464l-192 112l-192 -112v464c0 26.5098 21.4902 48 48 48h288zM336 19.5703v374.434c0 3.31348 -2.68555 5.99609 -6 5.99609h-276c-3.31152 0 -6 -2.68848 -6 -6v-374.43l144 84z\\\" />\\n    <glyph glyph-name=\\\"image\\\" unicode=\\\"&#xf03e;\\\" \\nd=\\\"M464 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416zM458 48c3.31152 0 6 2.68848 6 6v276c0 3.31152 -2.68848 6 -6 6h-404c-3.31152 0 -6 -2.68848 -6 -6v-276\\nc0 -3.31152 2.68848 -6 6 -6h404zM128 296c22.0908 0 40 -17.9092 40 -40s-17.9092 -40 -40 -40s-40 17.9092 -40 40s17.9092 40 40 40zM96 96v48l39.5137 39.5146c4.6875 4.68652 12.2852 4.68652 16.9717 0l39.5146 -39.5146l119.514 119.515\\nc4.6875 4.68652 12.2852 4.68652 16.9717 0l87.5146 -87.5146v-80h-320z\\\" />\\n    <glyph glyph-name=\\\"edit\\\" unicode=\\\"&#xf044;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M402.3 103.1l32 32c5 5 13.7002 1.5 13.7002 -5.69922v-145.4c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h273.5c7.09961 0 10.7002 -8.59961 5.7002 -13.7002l-32 -32c-1.5 -1.5 -3.5 -2.2998 -5.7002 -2.2998h-241.5v-352h352\\nv113.5c0 2.09961 0.799805 4.09961 2.2998 5.59961zM558.9 304.9l-262.601 -262.601l-90.3994 -10c-26.2002 -2.89941 -48.5 19.2002 -45.6006 45.6006l10 90.3994l262.601 262.601c22.8994 22.8994 59.8994 22.8994 82.6992 0l43.2002 -43.2002\\nc22.9004 -22.9004 22.9004 -60 0.100586 -82.7998zM460.1 274l-58.0996 58.0996l-185.8 -185.899l-7.2998 -65.2998l65.2998 7.2998zM524.9 353.7l-43.2002 43.2002c-4.10059 4.09961 -10.7998 4.09961 -14.7998 0l-30.9004 -30.9004l58.0996 -58.0996l30.9004 30.8994\\nc4 4.2002 4 10.7998 -0.0996094 14.9004z\\\" />\\n    <glyph glyph-name=\\\"times-circle\\\" unicode=\\\"&#xf057;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM357.8 254.2l-62.2002 -62.2002l62.2002 -62.2002\\nc4.7002 -4.7002 4.7002 -12.2998 0 -17l-22.5996 -22.5996c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-62.2002 62.2002l-62.2002 -62.2002c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-22.5996 22.5996c-4.7002 4.7002 -4.7002 12.2998 0 17l62.2002 62.2002l-62.2002 62.2002\\nc-4.7002 4.7002 -4.7002 12.2998 0 17l22.5996 22.5996c4.7002 4.7002 12.2998 4.7002 17 0l62.2002 -62.2002l62.2002 62.2002c4.7002 4.7002 12.2998 4.7002 17 0l22.5996 -22.5996c4.7002 -4.7002 4.7002 -12.2998 0 -17z\\\" />\\n    <glyph glyph-name=\\\"check-circle\\\" unicode=\\\"&#xf058;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 392c-110.549 0 -200 -89.4678 -200 -200c0 -110.549 89.4678 -200 200 -200c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200z\\nM396.204 261.733c4.66699 -4.70508 4.63672 -12.3037 -0.0673828 -16.9717l-172.589 -171.204c-4.70508 -4.66797 -12.3027 -4.63672 -16.9697 0.0683594l-90.7812 91.5156c-4.66797 4.70605 -4.63672 12.3047 0.0683594 16.9717l22.7188 22.5361\\nc4.70508 4.66699 12.3027 4.63574 16.9697 -0.0693359l59.792 -60.2773l141.353 140.216c4.70508 4.66797 12.3027 4.6377 16.9697 -0.0673828z\\\" />\\n    <glyph glyph-name=\\\"question-circle\\\" unicode=\\\"&#xf059;\\\" \\nd=\\\"M256 440c136.957 0 248 -111.083 248 -248c0 -136.997 -111.043 -248 -248 -248s-248 111.003 -248 248c0 136.917 111.043 248 248 248zM256 -8c110.569 0 200 89.4697 200 200c0 110.529 -89.5088 200 -200 200c-110.528 0 -200 -89.5049 -200 -200\\nc0 -110.569 89.4678 -200 200 -200zM363.244 247.2c0 -67.0518 -72.4209 -68.084 -72.4209 -92.8633v-6.33691c0 -6.62695 -5.37305 -12 -12 -12h-45.6475c-6.62695 0 -12 5.37305 -12 12v8.65918c0 35.7451 27.1006 50.0342 47.5791 61.5156\\nc17.5615 9.84473 28.3242 16.541 28.3242 29.5791c0 17.2461 -21.999 28.6934 -39.7842 28.6934c-23.1885 0 -33.8936 -10.9775 -48.9424 -29.9697c-4.05664 -5.11914 -11.46 -6.07031 -16.666 -2.12402l-27.8232 21.0986\\nc-5.10742 3.87207 -6.25098 11.0654 -2.64453 16.3633c23.627 34.6934 53.7217 54.1846 100.575 54.1846c49.0713 0 101.45 -38.3037 101.45 -88.7998zM298 80c0 -23.1592 -18.8408 -42 -42 -42s-42 18.8408 -42 42s18.8408 42 42 42s42 -18.8408 42 -42z\\\" />\\n    <glyph glyph-name=\\\"eye\\\" unicode=\\\"&#xf06e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 304c0.0927734 0 0.244141 0.000976562 0.336914 0.000976562c61.6641 0 111.71 -50.0469 111.71 -111.711c0 -61.6631 -50.0459 -111.71 -111.71 -111.71s-111.71 50.0469 -111.71 111.71c0 8.71289 1.95898 22.5781 4.37305 30.9502\\nc6.93066 -3.94141 19.0273 -7.18457 27 -7.24023c30.9121 0 56 25.0879 56 56c-0.0556641 7.97266 -3.29883 20.0693 -7.24023 27c8.42383 2.62207 22.4189 4.8623 31.2402 5zM572.52 206.6c1.9209 -3.79883 3.47949 -10.3379 3.47949 -14.5947\\ns-1.55859 -10.7959 -3.47949 -14.5947c-54.1992 -105.771 -161.59 -177.41 -284.52 -177.41s-230.29 71.5898 -284.52 177.4c-1.9209 3.79883 -3.47949 10.3379 -3.47949 14.5947s1.55859 10.7959 3.47949 14.5947c54.1992 105.771 161.59 177.41 284.52 177.41\\ns230.29 -71.5898 284.52 -177.4zM288 48c98.6602 0 189.1 55 237.93 144c-48.8398 89 -139.27 144 -237.93 144s-189.09 -55 -237.93 -144c48.8398 -89 139.279 -144 237.93 -144z\\\" />\\n    <glyph glyph-name=\\\"eye-slash\\\" unicode=\\\"&#xf070;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M634 -23c3.31738 -2.65137 6.00977 -8.25098 6.00977 -12.498c0 -3.10449 -1.57715 -7.58984 -3.51953 -10.0117l-10 -12.4902c-2.65234 -3.31152 -8.24707 -6 -12.4902 -6c-3.09961 0 -7.58008 1.57227 -10 3.50977l-598 467.49\\nc-3.31738 2.65137 -6.00977 8.25098 -6.00977 12.498c0 3.10449 1.57715 7.58984 3.51953 10.0117l10 12.4902c2.65234 3.31152 8.24707 6 12.4902 6c3.09961 0 7.58008 -1.57227 10 -3.50977zM296.79 301.53c6.33496 1.35059 16.7324 2.45801 23.21 2.46973\\nc60.4805 0 109.36 -47.9102 111.58 -107.85zM343.21 82.46c-6.33496 -1.34375 -16.7334 -2.44629 -23.21 -2.45996c-60.4697 0 -109.35 47.9102 -111.58 107.84zM320 336c-19.8799 0 -39.2803 -2.7998 -58.2197 -7.09961l-46.4102 36.29\\nc32.9199 11.8096 67.9297 18.8096 104.63 18.8096c122.93 0 230.29 -71.5898 284.57 -177.4c1.91992 -3.79883 3.47949 -10.3379 3.47949 -14.5947s-1.55957 -10.7959 -3.47949 -14.5947c-11.7197 -22.7598 -35.4189 -56.4092 -52.9004 -75.1104l-37.7402 29.5\\nc14.333 15.0156 34.0449 41.9854 44 60.2002c-48.8398 89 -139.279 144 -237.93 144zM320 48c19.8896 0 39.2803 2.7998 58.2197 7.08984l46.4102 -36.2803c-32.9199 -11.7598 -67.9297 -18.8096 -104.63 -18.8096c-122.92 0 -230.28 71.5898 -284.51 177.4\\nc-1.9209 3.79883 -3.47949 10.3379 -3.47949 14.5947s1.55859 10.7959 3.47949 14.5947c11.7168 22.7568 35.4111 56.4014 52.8896 75.1006l37.7402 -29.5c-14.3467 -15.0107 -34.0811 -41.9756 -44.0498 -60.1904c48.8496 -89 139.279 -144 237.93 -144z\\\" />\\n    <glyph glyph-name=\\\"calendar-alt\\\" unicode=\\\"&#xf073;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M148 160h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM256 172c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40\\nc6.59961 0 12 -5.40039 12 -12v-40zM352 172c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM256 76c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40\\nc0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM160 76c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM352 76c0 -6.59961 -5.40039 -12 -12 -12h-40\\nc-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40\\nc6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"comment\\\" unicode=\\\"&#xf075;\\\" \\nd=\\\"M256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-32.7998 0 -64 5.2002 -92.9004 14.2998c-29.0996 -20.5996 -77.5996 -46.2998 -139.1 -46.2998c-9.59961 0 -18.2998 5.7002 -22.0996 14.5c-3.80078 8.7998 -2 19 4.59961 26\\nc0.5 0.400391 31.5 33.7998 46.4004 73.2002c-33 35.0996 -52.9004 78.7002 -52.9004 126.3c0 114.9 114.6 208 256 208zM256 48c114.7 0 208 71.7998 208 160s-93.2998 160 -208 160s-208 -71.7998 -208 -160c0 -42.2002 21.7002 -74.0996 39.7998 -93.4004\\nl20.6006 -21.7998l-10.6006 -28.0996c-5.5 -14.5 -12.5996 -28.1006 -19.8994 -40.2002c23.5996 7.59961 43.1992 18.9004 57.5 29l19.5 13.7998l22.6992 -7.2002c25.3008 -8 51.7002 -12.0996 78.4004 -12.0996z\\\" />\\n    <glyph glyph-name=\\\"folder\\\" unicode=\\\"&#xf07b;\\\" \\nd=\\\"M464 320c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h146.74c8.49023 0 16.6299 -3.37012 22.6299 -9.37012l54.6299 -54.6299h192zM464 48v224h-198.62\\nc-8.49023 0 -16.6299 3.37012 -22.6299 9.37012l-54.6299 54.6299h-140.12v-288h416z\\\" />\\n    <glyph glyph-name=\\\"folder-open\\\" unicode=\\\"&#xf07c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M527.9 224c37.6992 0 60.6992 -41.5 40.6992 -73.4004l-79.8994 -128c-8.7998 -14.0996 -24.2002 -22.5996 -40.7002 -22.5996h-400c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h160l64 -64h160c26.5 0 48 -21.5 48 -48v-48h47.9004zM48 330v-233.4l62.9004 104.2\\nc8.69922 14.4004 24.2998 23.2002 41.0996 23.2002h280v42c0 3.2998 -2.7002 6 -6 6h-173.9l-64 64h-134.1c-3.2998 0 -6 -2.7002 -6 -6zM448 48l80 128h-378.8l-77.2002 -128h376z\\\" />\\n    <glyph glyph-name=\\\"chart-bar\\\" unicode=\\\"&#xf080;\\\" \\nd=\\\"M396.8 96c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v230.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-230.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM204.8 96\\nc-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v198.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-198.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM300.8 96\\nc-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v134.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-134.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM496 48c8.83984 0 16 -7.16016 16 -16v-16\\nc0 -8.83984 -7.16016 -16 -16 -16h-464c-17.6699 0 -32 14.3301 -32 32v336c0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-320h448zM108.8 96c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v70.4004c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004\\nc6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-70.4004c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004z\\\" />\\n    <glyph glyph-name=\\\"comments\\\" unicode=\\\"&#xf086;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M532 61.7998c15.2998 -30.7002 37.4004 -54.5 37.7998 -54.7998c6.2998 -6.7002 8 -16.5 4.40039 -25c-3.7002 -8.5 -12 -14 -21.2002 -14c-53.5996 0 -96.7002 20.2998 -125.2 38.7998c-19 -4.39941 -39 -6.7998 -59.7998 -6.7998\\nc-86.2002 0 -159.9 40.4004 -191.3 97.7998c-9.7002 1.2002 -19.2002 2.7998 -28.4004 4.90039c-28.5 -18.6006 -71.7002 -38.7998 -125.2 -38.7998c-9.19922 0 -17.5996 5.5 -21.1992 14c-3.7002 8.5 -1.90039 18.2998 4.39941 25\\nc0.400391 0.399414 22.4004 24.1992 37.7002 54.8994c-27.5 27.2002 -44 61.2002 -44 98.2002c0 88.4004 93.0996 160 208 160c86.2998 0 160.3 -40.5 191.8 -98.0996c99.7002 -11.8008 176.2 -77.9004 176.2 -157.9c0 -37.0996 -16.5 -71.0996 -44 -98.2002zM139.2 154.1\\nl19.7998 -4.5c16 -3.69922 32.5 -5.59961 49 -5.59961c86.7002 0 160 51.2998 160 112s-73.2998 112 -160 112s-160 -51.2998 -160 -112c0 -28.7002 16.2002 -50.5996 29.7002 -64l24.7998 -24.5l-15.5 -31.0996c-2.59961 -5.10059 -5.2998 -10.1006 -8 -14.8008\\nc14.5996 5.10059 29 12.3008 43.0996 21.4004zM498.3 96c13.5 13.4004 29.7002 35.2998 29.7002 64c0 49.2002 -48.2998 91.5 -112.7 106c0.299805 -3.2998 0.700195 -6.59961 0.700195 -10c0 -80.9004 -78 -147.5 -179.3 -158.3\\nc29.0996 -29.6006 77.2998 -49.7002 131.3 -49.7002c16.5 0 33 1.90039 49 5.59961l19.9004 4.60059l17.0996 -11.1006c14.0996 -9.09961 28.5 -16.2998 43.0996 -21.3994c-2.69922 4.7002 -5.39941 9.7002 -8 14.7998l-15.5 31.0996z\\\" />\\n    <glyph glyph-name=\\\"star-half\\\" unicode=\\\"&#xf089;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 62.7002v-54.2998l-130.7 -68.6006c-23.3994 -12.2998 -50.8994 7.60059 -46.3994 33.7002l25 145.5l-105.7 103c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2002l65.2998 132.4c5.90039 11.8994 17.2998 17.7998 28.7002 17.7998v-68.0996l-62.2002 -126\\nl-139 -20.2002l100.601 -98l-23.7002 -138.4z\\\" />\\n    <glyph glyph-name=\\\"lemon\\\" unicode=\\\"&#xf094;\\\" \\nd=\\\"M484.112 420.111c28.1221 -28.123 35.9434 -68.0039 19.0215 -97.0547c-23.0576 -39.584 50.1436 -163.384 -82.3311 -295.86c-132.301 -132.298 -256.435 -59.3594 -295.857 -82.3291c-29.0459 -16.917 -68.9219 -9.11426 -97.0576 19.0205\\nc-28.1221 28.1221 -35.9434 68.0029 -19.0215 97.0547c23.0566 39.5859 -50.1436 163.386 82.3301 295.86c132.308 132.309 256.407 59.3496 295.862 82.332c29.0498 16.9219 68.9307 9.09863 97.0537 -19.0234zM461.707 347.217\\nc13.5166 23.2031 -27.7578 63.7314 -50.4883 50.4912c-66.6025 -38.7939 -165.646 45.5898 -286.081 -74.8457c-120.444 -120.445 -36.0449 -219.472 -74.8447 -286.08c-13.542 -23.2471 27.8145 -63.6953 50.4932 -50.4883\\nc66.6006 38.7949 165.636 -45.5996 286.076 74.8428c120.444 120.445 36.0449 219.472 74.8447 286.08zM291.846 338.481c1.37012 -10.96 -6.40332 -20.957 -17.3643 -22.3271c-54.8467 -6.85547 -135.779 -87.7871 -142.636 -142.636\\nc-1.37305 -10.9883 -11.3984 -18.7334 -22.3262 -17.3643c-10.9609 1.37012 -18.7344 11.3652 -17.3643 22.3262c9.16211 73.2852 104.167 168.215 177.364 177.364c10.9531 1.36816 20.9561 -6.40234 22.3262 -17.3633z\\\" />\\n    <glyph glyph-name=\\\"credit-card\\\" unicode=\\\"&#xf09d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M527.9 416c26.5996 0 48.0996 -21.5 48.0996 -48v-352c0 -26.5 -21.5 -48 -48.0996 -48h-479.801c-26.5996 0 -48.0996 21.5 -48.0996 48v352c0 26.5 21.5 48 48.0996 48h479.801zM54.0996 368c-3.2998 0 -6 -2.7002 -6 -6v-42h479.801v42c0 3.2998 -2.7002 6 -6 6\\nh-467.801zM521.9 16c3.2998 0 6 2.7002 6 6v170h-479.801v-170c0 -3.2998 2.7002 -6 6 -6h467.801zM192 116v-40c0 -6.59961 -5.40039 -12 -12 -12h-72c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h72c6.59961 0 12 -5.40039 12 -12zM384 116v-40\\nc0 -6.59961 -5.40039 -12 -12 -12h-136c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h136c6.59961 0 12 -5.40039 12 -12z\\\" />\\n    <glyph glyph-name=\\\"hdd\\\" unicode=\\\"&#xf0a0;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M567.403 212.358c5.59668 -8.04688 8.59668 -17.6113 8.59668 -27.4121v-136.946c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v136.946c0 8.30957 3.85156 20.5898 8.59668 27.4121l105.08 151.053\\nc7.90625 11.3652 25.5596 20.5889 39.4033 20.5889h0.000976562h269.838h0.000976562c13.8438 0 31.4971 -9.22363 39.4033 -20.5889zM153.081 336l-77.9131 -112h425.664l-77.9131 112h-269.838zM528 48v128h-480v-128h480zM496 112c0 -17.6729 -14.3271 -32 -32 -32\\ns-32 14.3271 -32 32s14.3271 32 32 32s32 -14.3271 32 -32zM400 112c0 -17.6729 -14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32s32 -14.3271 32 -32z\\\" />\\n    <glyph glyph-name=\\\"hand-point-right\\\" unicode=\\\"&#xf0a4;\\\" \\nd=\\\"M428.8 310.4c45.0996 0 83.2002 -38.1016 83.2002 -83.2002c0 -45.6162 -37.7646 -83.2002 -83.2002 -83.2002h-35.6475c-1.41602 -6.36719 -4.96875 -16.252 -7.92969 -22.0645c2.50586 -22.0059 -3.50293 -44.9775 -15.9844 -62.791\\nc-1.14062 -52.4863 -37.3984 -91.1445 -99.9404 -91.1445h-21.2988c-60.0635 0 -98.5117 40 -127.2 40h-2.67871c-5.74707 -4.95215 -13.5361 -8 -22.1201 -8h-64c-17.6729 0 -32 12.8936 -32 28.7998v230.4c0 15.9062 14.3271 28.7998 32 28.7998h64.001\\nc8.58398 0 16.373 -3.04785 22.1201 -8h2.67871c6.96387 0 14.8623 6.19336 30.1816 23.6689l0.128906 0.148438l0.130859 0.145508c8.85645 9.93652 18.1162 20.8398 25.8506 33.2529c18.7051 30.2471 30.3936 78.7842 75.707 78.7842c56.9277 0 92 -35.2861 92 -83.2002\\nv-0.0839844c0 -6.21777 -0.974609 -16.2148 -2.17578 -22.3154h86.1768zM428.8 192c18.9756 0 35.2002 16.2246 35.2002 35.2002c0 18.7002 -16.7754 35.2002 -35.2002 35.2002h-158.399c0 17.3242 26.3994 35.1992 26.3994 70.3994c0 26.4004 -20.625 35.2002 -44 35.2002\\nc-8.79395 0 -20.4443 -32.7119 -34.9258 -56.0996c-9.07422 -14.5752 -19.5244 -27.2256 -30.7988 -39.875c-16.1094 -18.374 -33.8359 -36.6328 -59.0752 -39.5967v-176.753c42.79 -3.7627 74.5088 -39.6758 120 -39.6758h21.2988\\nc40.5244 0 57.124 22.1973 50.6006 61.3252c14.6113 8.00098 24.1514 33.9785 12.9248 53.625c19.3652 18.2246 17.7871 46.3809 4.9502 61.0498h91.0254zM88 64c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24z\\\" />\\n    <glyph glyph-name=\\\"hand-point-left\\\" unicode=\\\"&#xf0a5;\\\" \\nd=\\\"M0 227.2c0 45.0986 38.1006 83.2002 83.2002 83.2002h86.1758c-1.3623 6.91016 -2.17578 14.374 -2.17578 22.3994c0 47.9141 35.0723 83.2002 92 83.2002c45.3135 0 57.002 -48.5371 75.7061 -78.7852c7.73438 -12.4121 16.9951 -23.3154 25.8506 -33.2529\\nl0.130859 -0.145508l0.128906 -0.148438c15.3213 -17.4746 23.2197 -23.668 30.1836 -23.668h2.67871c5.74707 4.95215 13.5361 8 22.1201 8h64c17.6729 0 32 -12.8936 32 -28.7998v-230.4c0 -15.9062 -14.3271 -28.7998 -32 -28.7998h-64\\nc-8.58398 0 -16.373 3.04785 -22.1201 8h-2.67871c-28.6885 0 -67.1367 -40 -127.2 -40h-21.2988c-62.542 0 -98.8008 38.6582 -99.9404 91.1445c-12.4814 17.8135 -18.4922 40.7852 -15.9844 62.791c-2.96094 5.8125 -6.51367 15.6973 -7.92969 22.0645h-35.6465\\nc-45.4355 0 -83.2002 37.584 -83.2002 83.2002zM48 227.2c0 -18.9756 16.2246 -35.2002 35.2002 -35.2002h91.0244c-12.8369 -14.6689 -14.415 -42.8252 4.9502 -61.0498c-11.2256 -19.6465 -1.68652 -45.624 12.9248 -53.625\\nc-6.52246 -39.1279 10.0771 -61.3252 50.6016 -61.3252h21.2988c45.4912 0 77.21 35.9131 120 39.6768v176.752c-25.2393 2.96289 -42.9658 21.2227 -59.0752 39.5967c-11.2744 12.6494 -21.7246 25.2998 -30.7988 39.875\\nc-14.4814 23.3877 -26.1318 56.0996 -34.9258 56.0996c-23.375 0 -44 -8.7998 -44 -35.2002c0 -35.2002 26.3994 -53.0752 26.3994 -70.3994h-158.399c-18.4248 0 -35.2002 -16.5 -35.2002 -35.2002zM448 88c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24\\ns24 10.7451 24 24s-10.7451 24 -24 24z\\\" />\\n    <glyph glyph-name=\\\"hand-point-up\\\" unicode=\\\"&#xf0a6;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M105.6 364.8c0 45.0996 38.1016 83.2002 83.2002 83.2002c45.6162 0 83.2002 -37.7646 83.2002 -83.2002v-35.6465c6.36719 -1.41602 16.252 -4.96875 22.0645 -7.92969c22.0059 2.50684 44.9775 -3.50293 62.791 -15.9844\\nc52.4863 -1.14062 91.1445 -37.3984 91.1445 -99.9404v-21.2988c0 -60.0635 -40 -98.5117 -40 -127.2v-2.67871c4.95215 -5.74707 8 -13.5361 8 -22.1201v-64c0 -17.6729 -12.8936 -32 -28.7998 -32h-230.4c-15.9062 0 -28.7998 14.3271 -28.7998 32v64\\nc0 8.58398 3.04785 16.373 8 22.1201v2.67871c0 6.96387 -6.19336 14.8623 -23.6689 30.1816l-0.148438 0.128906l-0.145508 0.130859c-9.93652 8.85645 -20.8398 18.1162 -33.2529 25.8506c-30.2471 18.7051 -78.7842 30.3936 -78.7842 75.707\\nc0 56.9277 35.2861 92 83.2002 92h0.0839844c6.21777 0 16.2148 -0.974609 22.3154 -2.17578v86.1768zM224 364.8c0 18.9756 -16.2246 35.2002 -35.2002 35.2002c-18.7002 0 -35.2002 -16.7754 -35.2002 -35.2002v-158.399c-17.3242 0 -35.1992 26.3994 -70.3994 26.3994\\nc-26.4004 0 -35.2002 -20.625 -35.2002 -44c0 -8.79395 32.7119 -20.4443 56.0996 -34.9258c14.5752 -9.07422 27.2256 -19.5244 39.875 -30.7988c18.374 -16.1094 36.6328 -33.8359 39.5967 -59.0752h176.753c3.7627 42.79 39.6758 74.5088 39.6758 120v21.2988\\nc0 40.5244 -22.1973 57.124 -61.3252 50.6006c-8.00098 14.6113 -33.9785 24.1514 -53.625 12.9248c-18.2246 19.3652 -46.3809 17.7871 -61.0498 4.9502v91.0254zM352 24c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24z\\\" />\\n    <glyph glyph-name=\\\"hand-point-down\\\" unicode=\\\"&#xf0a7;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M188.8 -64c-45.0986 0 -83.2002 38.1006 -83.2002 83.2002v86.1758c-6.91016 -1.3623 -14.374 -2.17578 -22.3994 -2.17578c-47.9141 0 -83.2002 35.0723 -83.2002 92c0 45.3135 48.5371 57.002 78.7852 75.707c12.4121 7.73438 23.3154 16.9951 33.2529 25.8506\\nl0.145508 0.130859l0.148438 0.128906c17.4746 15.3213 23.668 23.2197 23.668 30.1836v2.67871c-4.95215 5.74707 -8 13.5361 -8 22.1201v64c0 17.6729 12.8936 32 28.7998 32h230.4c15.9062 0 28.7998 -14.3271 28.7998 -32v-64.001\\nc0 -8.58398 -3.04785 -16.373 -8 -22.1201v-2.67871c0 -28.6885 40 -67.1367 40 -127.2v-21.2988c0 -62.542 -38.6582 -98.8008 -91.1445 -99.9404c-17.8135 -12.4814 -40.7852 -18.4922 -62.791 -15.9844c-5.8125 -2.96094 -15.6973 -6.51367 -22.0645 -7.92969v-35.6465\\nc0 -45.4355 -37.584 -83.2002 -83.2002 -83.2002zM188.8 -16c18.9756 0 35.2002 16.2246 35.2002 35.2002v91.0244c14.6689 -12.8369 42.8252 -14.415 61.0498 4.9502c19.6465 -11.2256 45.624 -1.68652 53.625 12.9248c39.1279 -6.52246 61.3252 10.0771 61.3252 50.6016\\nv21.2988c0 45.4912 -35.9131 77.21 -39.6768 120h-176.752c-2.96289 -25.2393 -21.2227 -42.9658 -39.5967 -59.0752c-12.6494 -11.2744 -25.2998 -21.7246 -39.875 -30.7988c-23.3877 -14.4814 -56.0996 -26.1318 -56.0996 -34.9258c0 -23.375 8.7998 -44 35.2002 -44\\nc35.2002 0 53.0752 26.3994 70.3994 26.3994v-158.399c0 -18.4248 16.5 -35.2002 35.2002 -35.2002zM328 384c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24z\\\" />\\n    <glyph glyph-name=\\\"copy\\\" unicode=\\\"&#xf0c5;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M433.941 382.059c7.75977 -7.75977 14.0586 -22.9658 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-80v-48c0 -26.5098 -21.4902 -48 -48 -48h-224c-26.5098 0 -48 21.4902 -48 48v320c0 26.5098 21.4902 48 48 48h80v48c0 26.5098 21.4902 48 48 48\\nh172.118c10.9746 0 26.1807 -6.29883 33.9404 -14.0586zM266 -16c3.31152 0 6 2.68848 6 6v42h-96c-26.5098 0 -48 21.4902 -48 48v224h-74c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h212zM394 80c3.31152 0 6 2.68848 6 6v202h-88\\nc-13.2549 0 -24 10.7451 -24 24v88h-106c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h212zM400 336v9.63184v0.000976562c0 1.37207 -0.787109 3.27246 -1.75684 4.24219l-48.3682 48.3682c-1.12598 1.125 -2.65234 1.75684 -4.24316 1.75684h-9.63184\\nv-64h64z\\\" />\\n    <glyph glyph-name=\\\"save\\\" unicode=\\\"&#xf0c7;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M433.941 318.059c7.75977 -7.75977 14.0586 -22.9658 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h268.118c10.9746 0 26.1807 -6.29883 33.9404 -14.0586zM272 368h-128v-80h128v80\\nzM394 16c3.31152 0 6 2.68848 6 6v259.632v0.000976562c0 1.37207 -0.787109 3.27246 -1.75684 4.24219l-78.2432 78.2432v-100.118c0 -13.2549 -10.7451 -24 -24 -24h-176c-13.2549 0 -24 10.7451 -24 24v104h-42c-3.31152 0 -6 -2.68848 -6 -6v-340\\nc0 -3.31152 2.68848 -6 6 -6h340zM224 216c48.5234 0 88 -39.4766 88 -88s-39.4766 -88 -88 -88s-88 39.4766 -88 88s39.4766 88 88 88zM224 88c22.0557 0 40 17.9443 40 40s-17.9443 40 -40 40s-40 -17.9443 -40 -40s17.9443 -40 40 -40z\\\" />\\n    <glyph glyph-name=\\\"square\\\" unicode=\\\"&#xf0c8;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM394 16c3.2998 0 6 2.7002 6 6v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340z\\\" />\\n    <glyph glyph-name=\\\"envelope\\\" unicode=\\\"&#xf0e0;\\\" \\nd=\\\"M464 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416zM464 336h-416v-40.8047c22.4248 -18.2627 58.1797 -46.6602 134.587 -106.49\\nc16.834 -13.2422 50.2051 -45.0762 73.4131 -44.7012c23.2119 -0.371094 56.5723 31.4541 73.4131 44.7012c76.4189 59.8389 112.165 88.2305 134.587 106.49v40.8047zM48 48h416v185.601c-22.915 -18.252 -55.4189 -43.8691 -104.947 -82.6523\\nc-22.5439 -17.748 -60.3359 -55.1787 -103.053 -54.9473c-42.9277 -0.231445 -81.2051 37.75 -103.062 54.9551c-49.5293 38.7842 -82.0244 64.3945 -104.938 82.6455v-185.602z\\\" />\\n    <glyph glyph-name=\\\"lightbulb\\\" unicode=\\\"&#xf0eb;\\\" horiz-adv-x=\\\"352\\\" \\nd=\\\"M176 368c8.83984 0 16 -7.16016 16 -16s-7.16016 -16 -16 -16c-35.2803 0 -64 -28.7002 -64 -64c0 -8.83984 -7.16016 -16 -16 -16s-16 7.16016 -16 16c0 52.9404 43.0596 96 96 96zM96.0596 -11.1699l-0.0400391 43.1797h159.961l-0.0507812 -43.1797\\nc-0.00976562 -3.13965 -0.939453 -6.21973 -2.67969 -8.83984l-24.5098 -36.8398c-2.95996 -4.45996 -7.95996 -7.14062 -13.3203 -7.14062h-78.8496c-5.35059 0 -10.3506 2.68066 -13.3203 7.14062l-24.5098 36.8398c-1.75 2.62012 -2.68066 5.68945 -2.68066 8.83984z\\nM176 448c97.2002 0 176 -78.7998 176 -176c0 -44.3701 -16.4502 -84.8496 -43.5498 -115.79c-16.6406 -18.9795 -42.7402 -58.79 -52.4199 -92.1602v-0.0498047h-48v0.0996094c0.00390625 4.04199 0.999023 10.4482 2.21973 14.3008\\nc5.67969 17.9893 22.9902 64.8496 62.0996 109.46c20.4102 23.29 31.6504 53.1699 31.6504 84.1396c0 70.5801 -57.4199 128 -128 128c-68.2803 0 -128.15 -54.3604 -127.95 -128c0.0898438 -30.9902 11.0703 -60.71 31.6104 -84.1396\\nc39.3496 -44.9004 56.5801 -91.8604 62.1699 -109.67c1.42969 -4.56055 2.13965 -9.30078 2.15039 -14.0703v-0.120117h-48v0.0595703c-9.68066 33.3604 -35.7803 73.1709 -52.4209 92.1602c-27.1094 30.9307 -43.5596 71.4102 -43.5596 115.78\\nc0 93.0303 73.7197 176 176 176z\\\" />\\n    <glyph glyph-name=\\\"bell\\\" unicode=\\\"&#xf0f3;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M439.39 85.71c6 -6.44043 8.66016 -14.1602 8.61035 -21.71c-0.0996094 -16.4004 -12.9805 -32 -32.0996 -32h-383.801c-19.1191 0 -31.9893 15.5996 -32.0996 32c-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c19.3193 20.7598 55.4697 51.9902 55.4697 154.29\\nc0 77.7002 54.4795 139.9 127.939 155.16v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398c73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -102.3 36.1504 -133.53 55.4697 -154.29zM67.5303 80h312.939\\nc-21.2197 27.96 -44.4199 74.3203 -44.5293 159.42c0 0.200195 0.0595703 0.379883 0.0595703 0.580078c0 61.8604 -50.1396 112 -112 112s-112 -50.1396 -112 -112c0 -0.200195 0.0595703 -0.379883 0.0595703 -0.580078\\nc-0.109375 -85.0898 -23.3096 -131.45 -44.5293 -159.42zM224 -64c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z\\\" />\\n    <glyph glyph-name=\\\"hospital\\\" unicode=\\\"&#xf0f8;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M128 204v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12zM268 192c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40\\nc0 -6.62695 -5.37305 -12 -12 -12h-40zM192 108c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM268 96c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40\\nc6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40zM448 -28v-36h-448v36c0 6.62695 5.37305 12 12 12h19.5v378.965c0 11.6172 10.7451 21.0352 24 21.0352h88.5v40c0 13.2549 10.7451 24 24 24h112c13.2549 0 24 -10.7451 24 -24v-40h88.5\\nc13.2549 0 24 -9.41797 24 -21.0352v-378.965h19.5c6.62695 0 12 -5.37305 12 -12zM79.5 -15h112.5v67c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-67h112.5v351h-64.5v-24c0 -13.2549 -10.7451 -24 -24 -24h-112c-13.2549 0 -24 10.7451 -24 24v24\\nh-64.5v-351zM266 384h-26v26c0 3.31152 -2.68848 6 -6 6h-20c-3.31152 0 -6 -2.68848 -6 -6v-26h-26c-3.31152 0 -6 -2.68848 -6 -6v-20c0 -3.31152 2.68848 -6 6 -6h26v-26c0 -3.31152 2.68848 -6 6 -6h20c3.31152 0 6 2.68848 6 6v26h26c3.31152 0 6 2.68848 6 6v20\\nc0 3.31152 -2.68848 6 -6 6z\\\" />\\n    <glyph glyph-name=\\\"plus-square\\\" unicode=\\\"&#xf0fe;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M352 208v-32c0 -6.59961 -5.40039 -12 -12 -12h-88v-88c0 -6.59961 -5.40039 -12 -12 -12h-32c-6.59961 0 -12 5.40039 -12 12v88h-88c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h88v88c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12\\nv-88h88c6.59961 0 12 -5.40039 12 -12zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340\\nc0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"circle\\\" unicode=\\\"&#xf111;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200z\\\" />\\n    <glyph glyph-name=\\\"smile\\\" unicode=\\\"&#xf118;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM332 135.4c8.5 10.1992 23.7002 11.5 33.7998 3.09961c10.2002 -8.5 11.6006 -23.5996 3.10059 -33.7998\\nc-30 -36 -74.1006 -56.6006 -120.9 -56.6006s-90.9004 20.6006 -120.9 56.6006c-8.39941 10.2002 -7.09961 25.2998 3.10059 33.7998c10.0996 8.40039 25.2998 7.09961 33.7998 -3.09961c20.7998 -25.1006 51.5 -39.4004 84 -39.4004s63.2002 14.4004 84 39.4004z\\\" />\\n    <glyph glyph-name=\\\"frown\\\" unicode=\\\"&#xf119;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM248 144c40.2002 0 78 -17.7002 103.8 -48.5996c8.40039 -10.2002 7.10059 -25.3008 -3.09961 -33.8008\\nc-10.7002 -8.7998 -25.7002 -6.59961 -33.7998 3.10059c-16.6006 20 -41 31.3994 -66.9004 31.3994s-50.2998 -11.5 -66.9004 -31.3994c-8.5 -10.2002 -23.5996 -11.5 -33.7998 -3.10059c-10.2002 8.5 -11.5996 23.6006 -3.09961 33.8008\\nc25.7998 30.8994 63.5996 48.5996 103.8 48.5996z\\\" />\\n    <glyph glyph-name=\\\"meh\\\" unicode=\\\"&#xf11a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM336 128c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-176c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h176z\\n\\\" />\\n    <glyph glyph-name=\\\"keyboard\\\" unicode=\\\"&#xf11c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h480zM536 48v288c0 4.41113 -3.58887 8 -8 8h-480c-4.41113 0 -8 -3.58887 -8 -8v-288c0 -4.41113 3.58887 -8 8 -8\\nh480c4.41113 0 8 3.58887 8 8zM170 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM266 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28\\nc0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM362 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM458 178c0 -6.62695 -5.37305 -12 -12 -12h-28\\nc-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM122 96c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM506 96\\nc0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM122 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28\\nc6.62695 0 12 -5.37305 12 -12v-28zM218 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM314 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28\\nc0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM410 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM506 260c0 -6.62695 -5.37305 -12 -12 -12h-28\\nc-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM408 102c0 -6.62695 -5.37305 -12 -12 -12h-216c-6.62695 0 -12 5.37305 -12 12v16c0 6.62695 5.37305 12 12 12h216c6.62695 0 12 -5.37305 12 -12v-16z\\\" />\\n    <glyph glyph-name=\\\"calendar\\\" unicode=\\\"&#xf133;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12\\nv-52h48zM394 -16c3.2998 0 6 2.7002 6 6v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340z\\\" />\\n    <glyph glyph-name=\\\"play-circle\\\" unicode=\\\"&#xf144;\\\" \\nd=\\\"M371.7 210c16.3994 -9.2002 16.3994 -32.9004 0 -42l-176 -101c-15.9004 -8.7998 -35.7002 2.59961 -35.7002 21v208c0 18.5 19.9004 29.7998 35.7002 21zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192\\nc0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200z\\\" />\\n    <glyph glyph-name=\\\"minus-square\\\" unicode=\\\"&#xf146;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M108 164c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h232c6.59961 0 12 -5.40039 12 -12v-32c0 -6.59961 -5.40039 -12 -12 -12h-232zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352\\nc26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"check-square\\\" unicode=\\\"&#xf14a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352zM400 16v352h-352v-352h352zM364.136 257.724l-172.589 -171.204\\nc-4.70508 -4.66699 -12.3027 -4.63672 -16.9697 0.0683594l-90.7812 91.5156c-4.66699 4.70508 -4.63672 12.3037 0.0693359 16.9717l22.7188 22.5361c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0693359l59.792 -60.2773l141.353 140.217\\nc4.70508 4.66699 12.3027 4.63672 16.9697 -0.0683594l22.5361 -22.7178c4.66699 -4.70605 4.63672 -12.3047 -0.0683594 -16.9717z\\\" />\\n    <glyph glyph-name=\\\"share-square\\\" unicode=\\\"&#xf14d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M561.938 289.94c18.75 -18.7402 18.75 -49.1406 0 -67.8809l-143.998 -144c-29.9727 -29.9727 -81.9404 -9.05273 -81.9404 33.9404v53.7998c-101.266 -7.83691 -99.625 -31.6406 -84.1104 -78.7598c14.2285 -43.0889 -33.4736 -79.248 -71.0195 -55.7402\\nc-51.6924 32.3057 -84.8701 83.0635 -84.8701 144.76c0 39.3408 12.2197 72.7402 36.3301 99.3008c19.8398 21.8398 47.7402 38.4697 82.9102 49.4199c36.7295 11.4395 78.3096 16.1094 120.76 17.9893v57.1982c0 42.9355 51.9258 63.9541 81.9404 33.9404zM384 112l144 144\\nl-144 144v-104.09c-110.86 -0.90332 -240 -10.5166 -240 -119.851c0 -52.1396 32.79 -85.6094 62.3096 -104.06c-39.8174 120.65 48.999 141.918 177.69 143.84v-103.84zM408.74 27.5068c6.14844 1.75684 15.5449 5.92383 20.9736 9.30273\\nc7.97656 4.95215 18.2861 -0.825195 18.2861 -10.2139v-42.5957c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h132c6.62695 0 12 -5.37305 12 -12v-4.48633c0 -4.91699 -2.9873 -9.36914 -7.56934 -11.1514\\nc-13.7021 -5.33105 -26.3955 -11.5371 -38.0498 -18.585c-1.59668 -0.974609 -4.41016 -1.77051 -6.28027 -1.77734h-86.1006c-3.31152 0 -6 -2.68848 -6 -6v-340c0 -3.31152 2.68848 -6 6 -6h340c3.31152 0 6 2.68848 6 6v25.9658c0 5.37012 3.5791 10.0596 8.74023 11.541\\nz\\\" />\\n    <glyph glyph-name=\\\"compass\\\" unicode=\\\"&#xf14e;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M347.94 318.14c16.6592 7.61035 33.8096 -9.54004 26.1992 -26.1992l-65.9697 -144.341c-2.73047 -5.97363 -9.7959 -13.0391 -15.7695 -15.7695l-144.341 -65.9697c-16.6592 -7.61035 -33.8096 9.5498 -26.1992 26.1992l65.9697 144.341\\nc2.73047 5.97363 9.7959 13.0391 15.7695 15.7695zM270.58 169.42c12.4697 12.4697 12.4697 32.6904 0 45.1602s-32.6904 12.4697 -45.1602 0s-12.4697 -32.6904 0 -45.1602s32.6904 -12.4697 45.1602 0zM248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248\\ns-248 111.03 -248 248s111.03 248 248 248zM248 -8c110.28 0 200 89.7197 200 200s-89.7197 200 -200 200s-200 -89.7197 -200 -200s89.7197 -200 200 -200z\\\" />\\n    <glyph glyph-name=\\\"caret-square-down\\\" unicode=\\\"&#xf150;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M125.1 240h197.801c10.6992 0 16.0996 -13 8.5 -20.5l-98.9004 -98.2998c-4.7002 -4.7002 -12.2002 -4.7002 -16.9004 0l-98.8994 98.2998c-7.7002 7.5 -2.2998 20.5 8.39941 20.5zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352\\nc0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"caret-square-up\\\" unicode=\\\"&#xf151;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M322.9 144h-197.801c-10.6992 0 -16.0996 13 -8.5 20.5l98.9004 98.2998c4.7002 4.7002 12.2002 4.7002 16.9004 0l98.8994 -98.2998c7.7002 -7.5 2.2998 -20.5 -8.39941 -20.5zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352\\nc0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"caret-square-right\\\" unicode=\\\"&#xf152;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M176 93.0996v197.801c0 10.6992 13 16.0996 20.5 8.5l98.2998 -98.9004c4.7002 -4.7002 4.7002 -12.2002 0 -16.9004l-98.2998 -98.8994c-7.5 -7.7002 -20.5 -2.2998 -20.5 8.39941zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352\\nc0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"file\\\" unicode=\\\"&#xf15b;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288\\nh-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416z\\\" />\\n    <glyph glyph-name=\\\"file-alt\\\" unicode=\\\"&#xf15c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M288 200v-28c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v28c0 6.59961 5.40039 12 12 12h168c6.59961 0 12 -5.40039 12 -12zM276 128c6.59961 0 12 -5.40039 12 -12v-28c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12\\nv28c0 6.59961 5.40039 12 12 12h168zM384 316.1v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996l83.9004 -83.9004c9 -8.90039 14.0996 -21.2002 14.0996 -33.9004z\\nM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416h288z\\\" />\\n    <glyph glyph-name=\\\"thumbs-up\\\" unicode=\\\"&#xf164;\\\" \\nd=\\\"M466.27 161.31c4.6748 -22.6465 0.864258 -44.5371 -8.98926 -62.9893c2.95898 -23.8682 -4.02148 -48.5654 -17.3398 -66.9902c-0.954102 -55.9072 -35.8232 -95.3301 -112.94 -95.3301c-7 0 -15 0.00976562 -22.2197 0.00976562\\nc-102.742 0 -133.293 38.9395 -177.803 39.9404c-3.56934 -13.7764 -16.085 -23.9502 -30.9775 -23.9502h-64c-17.6729 0 -32 14.3271 -32 32v240c0 17.6729 14.3271 32 32 32h98.7598c19.1455 16.9531 46.0137 60.6533 68.7598 83.4004\\nc13.667 13.667 10.1533 108.6 71.7607 108.6c57.5801 0 95.2695 -31.9355 95.2695 -104.73c0 -18.4092 -3.92969 -33.7295 -8.84961 -46.5391h36.4795c48.6025 0 85.8203 -41.5654 85.8203 -85.5801c0 -19.1504 -4.95996 -34.9902 -13.7305 -49.8408zM404.52 107.48\\nc21.5811 20.3838 18.6992 51.0645 5.21094 65.6191c9.44922 0 22.3594 18.9102 22.2695 37.8105c-0.0898438 18.9102 -16.71 37.8203 -37.8203 37.8203h-103.989c0 37.8193 28.3594 55.3691 28.3594 94.5391c0 23.75 0 56.7305 -47.2695 56.7305\\nc-18.9102 -18.9102 -9.45996 -66.1797 -37.8203 -94.54c-26.5596 -26.5703 -66.1797 -97.46 -94.54 -97.46h-10.9199v-186.17c53.6113 0 100.001 -37.8203 171.64 -37.8203h37.8203c35.5117 0 60.8203 17.1201 53.1201 65.9004\\nc15.2002 8.16016 26.5 36.4395 13.9395 57.5703zM88 16c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24z\\\" />\\n    <glyph glyph-name=\\\"thumbs-down\\\" unicode=\\\"&#xf165;\\\" \\nd=\\\"M466.27 222.69c8.77051 -14.8506 13.7305 -30.6904 13.7305 -49.8408c0 -44.0146 -37.2178 -85.5801 -85.8203 -85.5801h-36.4795c4.91992 -12.8096 8.84961 -28.1299 8.84961 -46.5391c0 -72.7949 -37.6895 -104.73 -95.2695 -104.73\\nc-61.6074 0 -58.0938 94.9326 -71.7607 108.6c-22.7461 22.7471 -49.6133 66.4473 -68.7598 83.4004h-7.05176c-5.5332 -9.56152 -15.8662 -16 -27.708 -16h-64c-17.6729 0 -32 14.3271 -32 32v240c0 17.6729 14.3271 32 32 32h64c8.11328 0 15.5146 -3.02539 21.1553 -8\\nh10.8447c40.9971 0 73.1953 39.9902 176.78 39.9902c7.21973 0 15.2197 0.00976562 22.2197 0.00976562c77.1172 0 111.986 -39.4229 112.94 -95.3301c13.3184 -18.4248 20.2979 -43.1221 17.3398 -66.9902c9.85352 -18.4521 13.6641 -40.3428 8.98926 -62.9893zM64 152\\nc13.2549 0 24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24zM394.18 135.27c21.1104 0 37.7305 18.9102 37.8203 37.8203c0.0898438 18.9004 -12.8203 37.8105 -22.2695 37.8105c13.4883 14.5547 16.3701 45.2354 -5.21094 65.6191\\nc12.5605 21.1309 1.26074 49.4102 -13.9395 57.5703c7.7002 48.7803 -17.6084 65.9004 -53.1201 65.9004h-37.8203c-71.6387 0 -118.028 -37.8203 -171.64 -37.8203v-186.17h10.9199c28.3604 0 67.9805 -70.8896 94.54 -97.46\\nc28.3604 -28.3604 18.9102 -75.6299 37.8203 -94.54c47.2695 0 47.2695 32.9805 47.2695 56.7305c0 39.1699 -28.3594 56.7197 -28.3594 94.5391h103.989z\\\" />\\n    <glyph glyph-name=\\\"sun\\\" unicode=\\\"&#xf185;\\\" \\nd=\\\"M494.2 226.1c11.2002 -7.59961 17.7998 -20.0996 17.8994 -33.6992c0 -13.4004 -6.69922 -26 -17.7998 -33.5l-59.7998 -40.5l13.7002 -71c2.5 -13.2002 -1.60059 -26.8008 -11.1006 -36.3008s-22.8994 -13.7998 -36.2998 -11.0996l-70.8994 13.7002l-40.4004 -59.9004\\nc-7.5 -11.0996 -20.0996 -17.7998 -33.5 -17.7998s-26 6.7002 -33.5 17.9004l-40.4004 59.8994l-70.7998 -13.7002c-13.3994 -2.59961 -26.7998 1.60059 -36.2998 11.1006s-13.7002 23.0996 -11.0996 36.2998l13.6992 71l-59.7998 40.5\\nc-11.0996 7.5 -17.7998 20 -17.7998 33.5s6.59961 26 17.7998 33.5996l59.7998 40.5l-13.6992 71c-2.60059 13.2002 1.59961 26.7002 11.0996 36.3008c9.5 9.59961 23 13.6992 36.2998 11.1992l70.7998 -13.6992l40.4004 59.8994c15.0996 22.2998 51.9004 22.2998 67 0\\nl40.4004 -59.8994l70.8994 13.6992c13 2.60059 26.6006 -1.59961 36.2002 -11.0996c9.5 -9.59961 13.7002 -23.2002 11.0996 -36.4004l-13.6992 -71zM381.3 140.5l76.7998 52.0996l-76.7998 52l17.6006 91.1006l-91 -17.6006l-51.9004 76.9004l-51.7998 -76.7998\\nl-91 17.5996l17.5996 -91.2002l-76.7998 -52l76.7998 -52l-17.5996 -91.1992l90.8994 17.5996l51.9004 -77l51.9004 76.9004l91 -17.6006zM256 296c57.2998 0 104 -46.7002 104 -104s-46.7002 -104 -104 -104s-104 46.7002 -104 104s46.7002 104 104 104zM256 136\\nc30.9004 0 56 25.0996 56 56s-25.0996 56 -56 56s-56 -25.0996 -56 -56s25.0996 -56 56 -56z\\\" />\\n    <glyph glyph-name=\\\"moon\\\" unicode=\\\"&#xf186;\\\" \\nd=\\\"M279.135 -64c-141.424 0 -256 114.64 -256 256c0 141.425 114.641 256 256 256c13.0068 -0.00195312 33.9443 -1.91797 46.7354 -4.27734c44.0205 -8.13086 53.7666 -66.8691 15.0215 -88.9189c-41.374 -23.5439 -67.4336 -67.4121 -67.4336 -115.836\\nc0 -83.5234 75.9238 -146.475 158.272 -130.792c43.6904 8.32129 74.5186 -42.5693 46.248 -77.4004c-47.8613 -58.9717 -120.088 -94.7754 -198.844 -94.7754zM279.135 400c-114.875 0 -208 -93.125 -208 -208s93.125 -208 208 -208\\nc65.2314 0 123.439 30.0361 161.575 77.0244c-111.611 -21.2568 -215.252 64.0957 -215.252 177.943c0 67.5127 36.9326 126.392 91.6934 157.555c-12.3271 2.27637 -25.0312 3.47754 -38.0166 3.47754z\\\" />\\n    <glyph glyph-name=\\\"caret-square-left\\\" unicode=\\\"&#xf191;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M272 290.9v-197.801c0 -10.6992 -13 -16.0996 -20.5 -8.5l-98.2998 98.9004c-4.7002 4.7002 -4.7002 12.2002 0 16.9004l98.2998 98.8994c7.5 7.7002 20.5 2.2998 20.5 -8.39941zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352\\nc0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"dot-circle\\\" unicode=\\\"&#xf192;\\\" \\nd=\\\"M256 392c-110.549 0 -200 -89.4678 -200 -200c0 -110.549 89.4678 -200 200 -200c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200zM256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248z\\nM256 272c44.1826 0 80 -35.8174 80 -80s-35.8174 -80 -80 -80s-80 35.8174 -80 80s35.8174 80 80 80z\\\" />\\n    <glyph glyph-name=\\\"building\\\" unicode=\\\"&#xf1ad;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M128 300v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12zM268 288c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40\\nc0 -6.59961 -5.40039 -12 -12 -12h-40zM140 192c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM268 192c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40\\nc6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM192 108c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM268 96c-6.59961 0 -12 5.40039 -12 12v40\\nc0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM448 -28v-36h-448v36c0 6.59961 5.40039 12 12 12h19.5v440c0 13.2998 10.7002 24 24 24h337c13.2998 0 24 -10.7002 24 -24v-440h19.5\\nc6.59961 0 12 -5.40039 12 -12zM79.5 -15h112.5v67c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-67h112.5v414l-288.5 1z\\\" />\\n    <glyph glyph-name=\\\"file-pdf\\\" unicode=\\\"&#xf1c1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288\\nh-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM298.2 127.7c10.5 -10.5 8 -38.7002 -17.5 -38.7002c-14.7998 0 -36.9004 6.7998 -55.7998 17c-21.6006 -3.59961 -46 -12.7002 -68.4004 -20.0996c-50.0996 -86.4004 -79.4004 -47 -76.0996 -31.2002\\nc4 20 31 35.8994 51 46.2002c10.5 18.3994 25.3994 50.5 35.3994 74.3994c-7.39941 28.6006 -11.3994 51 -7 67.1006c4.7998 17.6992 38.4004 20.2998 42.6006 -5.90039c4.69922 -15.4004 -1.5 -39.9004 -5.40039 -56c8.09961 -21.2998 19.5996 -35.7998 36.7998 -46.2998\\nc17.4004 2.2002 52.2002 5.5 64.4004 -6.5zM100.1 49.9004c0 -0.700195 11.4004 4.69922 30.4004 35c-5.90039 -5.5 -25.2998 -21.3008 -30.4004 -35zM181.7 240.5c-2.5 0 -2.60059 -26.9004 1.7998 -40.7998c4.90039 8.7002 5.59961 40.7998 -1.7998 40.7998zM157.3 103.9\\nc15.9004 6.09961 34 14.8994 54.7998 19.1992c-11.1992 8.30078 -21.7998 20.4004 -30.0996 35.5c-6.7002 -17.6992 -15 -37.7998 -24.7002 -54.6992zM288.9 108.9c3.59961 2.39941 -2.2002 10.3994 -37.3008 7.7998c32.3008 -13.7998 37.3008 -7.7998 37.3008 -7.7998z\\\" />\\n    <glyph glyph-name=\\\"file-word\\\" unicode=\\\"&#xf1c2;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288\\nh-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM268.1 192v0.200195h15.8008c7.7998 0 13.5 -7.2998 11.5996 -14.9004c-4.2998 -17 -13.7002 -54.0996 -34.5 -136c-1.2998 -5.39941 -6.09961 -9.09961 -11.5996 -9.09961h-24.7002\\nc-5.5 0 -10.2998 3.7998 -11.6006 9.09961c-5.2998 20.9004 -17.7998 71 -17.8994 71.4004l-2.90039 17.2998c-0.5 -5.2998 -1.5 -11.0996 -3 -17.2998l-17.8994 -71.4004c-1.30078 -5.39941 -6.10059 -9.09961 -11.6006 -9.09961h-25.2002\\nc-5.59961 0 -10.3994 3.7002 -11.6992 9.09961c-6.5 26.5 -25.2002 103.4 -33.2002 136c-1.7998 7.5 3.89941 14.7998 11.7002 14.7998h16.7998c5.7998 0 10.7002 -4.09961 11.7998 -9.69922c5 -25.7002 18.4004 -93.8008 19.0996 -99\\nc0.300781 -1.7002 0.400391 -3.10059 0.5 -4.2002c0.800781 7.5 0.400391 4.7002 24.8008 103.7c1.39941 5.2998 6.19922 9.09961 11.6992 9.09961h13.3008c5.59961 0 10.3994 -3.7998 11.6992 -9.2002c23.9004 -99.7002 22.8008 -94.3994 23.6006 -99.5\\nc0.299805 -1.7002 0.5 -3.09961 0.700195 -4.2998c0.599609 8.09961 0.399414 5.7998 21 103.5c1.09961 5.5 6 9.5 11.6992 9.5z\\\" />\\n    <glyph glyph-name=\\\"file-excel\\\" unicode=\\\"&#xf1c3;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288\\nh-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM260 224c9.2002 0 15 -10 10.2998 -18c-16 -27.5 -45.5996 -76.9004 -46.2998 -78l46.4004 -78c4.59961 -8 -1.10059 -18 -10.4004 -18h-28.7998c-4.40039 0 -8.5 2.40039 -10.6006 6.2998\\nc-22.6992 41.7998 -13.6992 27.5 -28.5996 57.7002c-5.59961 -12.7002 -6.90039 -17.7002 -28.5996 -57.7002c-2.10059 -3.89941 -6.10059 -6.2998 -10.5 -6.2998h-28.9004c-9.2998 0 -15.0996 10 -10.4004 18l46.3008 78l-46.3008 78c-4.59961 8 1.10059 18 10.4004 18\\nh28.9004c4.39941 0 8.5 -2.40039 10.5996 -6.2998c21.7002 -40.4004 14.7002 -28.6006 28.5996 -57.7002c6.40039 15.2998 10.6006 24.5996 28.6006 57.7002c2.09961 3.89941 6.09961 6.2998 10.5 6.2998h28.7998z\\\" />\\n    <glyph glyph-name=\\\"file-powerpoint\\\" unicode=\\\"&#xf1c4;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288\\nh-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM120 44v168c0 6.59961 5.40039 12 12 12h69.2002c36.7002 0 62.7998 -27 62.7998 -66.2998c0 -74.2998 -68.7002 -66.5 -95.5 -66.5v-47.2002c0 -6.59961 -5.40039 -12 -12 -12h-24.5c-6.59961 0 -12 5.40039 -12 12z\\nM168.5 131.4h23c7.90039 0 13.9004 2.39941 18.0996 7.19922c8.5 9.80078 8.40039 28.5 0.100586 37.8008c-4.10059 4.59961 -9.90039 7 -17.4004 7h-23.8994v-52h0.0996094z\\\" />\\n    <glyph glyph-name=\\\"file-image\\\" unicode=\\\"&#xf1c5;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288\\nh-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM80 32v64l39.5 39.5c4.7002 4.7002 12.2998 4.7002 17 0l39.5 -39.5l87.5 87.5c4.7002 4.7002 12.2998 4.7002 17 0l23.5 -23.5v-128h-224zM128 272c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48\\ns21.5 48 48 48z\\\" />\\n    <glyph glyph-name=\\\"file-archive\\\" unicode=\\\"&#xf1c6;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M128.3 288h32v-32h-32v32zM192.3 384v-32h-32v32h32zM128.3 352h32v-32h-32v32zM192.3 320v-32h-32v32h32zM369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1\\nc12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-48.2998v-16h-32v16h-79.7002v-416h288zM194.2 182.3l17.2998 -87.7002c6.40039 -32.3994 -18.4004 -62.5996 -51.5 -62.5996\\nc-33.2002 0 -58 30.4004 -51.4004 62.9004l19.7002 97.0996v32h32v-32h22.1006c5.7998 0 10.6992 -4.09961 11.7998 -9.7002zM160.3 57.9004c17.9004 0 32.4004 12.0996 32.4004 27c0 14.8994 -14.5 27 -32.4004 27c-17.8994 0 -32.3994 -12.1006 -32.3994 -27\\nc0 -14.9004 14.5 -27 32.3994 -27zM192.3 256v-32h-32v32h32z\\\" />\\n    <glyph glyph-name=\\\"file-audio\\\" unicode=\\\"&#xf1c7;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.941 350.059c7.75977 -7.75977 14.0586 -22.9658 14.0586 -33.9404v-332.118c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h204.118c10.9746 0 26.1807 -6.29883 33.9404 -14.0586zM332.118 320\\nl-76.1182 76.1182v-76.1182h76.1182zM48 -16h288v288h-104c-13.2549 0 -24 10.7451 -24 24v104h-160v-416zM192 60.0244c0 -10.6914 -12.9258 -16.0459 -20.4854 -8.48535l-35.5146 35.9746h-28c-6.62695 0 -12 5.37305 -12 12v56c0 6.62695 5.37305 12 12 12h28\\nl35.5146 36.9473c7.56055 7.56055 20.4854 2.20605 20.4854 -8.48535v-135.951zM233.201 107.154c9.05078 9.29688 9.05957 24.1328 0.000976562 33.4385c-22.1494 22.752 12.2344 56.2461 34.3945 33.4814c27.1982 -27.9404 27.2119 -72.4443 0.000976562 -100.401\\nc-21.793 -22.3857 -56.9463 10.3154 -34.3965 33.4814z\\\" />\\n    <glyph glyph-name=\\\"file-video\\\" unicode=\\\"&#xf1c8;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M369.941 350.059c7.75977 -7.75977 14.0586 -22.9658 14.0586 -33.9404v-332.118c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h204.118c10.9746 0 26.1807 -6.29883 33.9404 -14.0586zM332.118 320\\nl-76.1182 76.1182v-76.1182h76.1182zM48 -16h288v288h-104c-13.2549 0 -24 10.7451 -24 24v104h-160v-416zM276.687 195.303c10.0049 10.0049 27.3135 2.99707 27.3135 -11.3135v-111.976c0 -14.2939 -17.2959 -21.332 -27.3135 -11.3135l-52.6865 52.6738v-37.374\\nc0 -11.0459 -8.9541 -20 -20 -20h-104c-11.0459 0 -20 8.9541 -20 20v104c0 11.0459 8.9541 20 20 20h104c11.0459 0 20 -8.9541 20 -20v-37.374z\\\" />\\n    <glyph glyph-name=\\\"file-code\\\" unicode=\\\"&#xf1c9;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M149.9 98.9004c3.5 -3.30078 3.69922 -8.90039 0.399414 -12.4004l-17.3994 -18.5996c-1.60059 -1.80078 -4 -2.80078 -6.40039 -2.80078c-2.2002 0 -4.40039 0.900391 -6 2.40039l-57.7002 54.0996c-3.7002 3.40039 -3.7002 9.30078 0 12.8008l57.7002 54.0996\\nc3.40039 3.2998 9 3.2002 12.4004 -0.400391l17.3994 -18.5996l0.200195 -0.200195c3.2002 -3.59961 2.7998 -9.2002 -0.799805 -12.3994l-32.7998 -28.9004l32.7998 -28.9004zM369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288\\nc-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416h288zM209.6 234l24.4004 -7\\nc4.7002 -1.2998 7.40039 -6.2002 6 -10.9004l-54.7002 -188.199c-1.2998 -4.60059 -6.2002 -7.40039 -10.8994 -6l-24.4004 7.09961c-4.7002 1.2998 -7.40039 6.2002 -6 10.9004l54.7002 188.1c1.39941 4.7002 6.2002 7.40039 10.8994 6zM234.1 157.1\\nc-3.5 3.30078 -3.69922 8.90039 -0.399414 12.4004l17.3994 18.5996c3.30078 3.60059 8.90039 3.7002 12.4004 0.400391l57.7002 -54.0996c3.7002 -3.40039 3.7002 -9.30078 0 -12.8008l-57.7002 -54.0996c-3.5 -3.2998 -9.09961 -3.09961 -12.4004 0.400391\\nl-17.3994 18.5996l-0.200195 0.200195c-3.2002 3.59961 -2.7998 9.2002 0.799805 12.3994l32.7998 28.9004l-32.7998 28.9004z\\\" />\\n    <glyph glyph-name=\\\"life-ring\\\" unicode=\\\"&#xf1cd;\\\" \\nd=\\\"M256 -56c-136.967 0 -248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248s-111.033 -248 -248 -248zM152.602 20.7197c63.2178 -38.3184 143.579 -38.3184 206.797 0l-53.4111 53.4111c-31.8467 -13.5215 -68.168 -13.5059 -99.9746 0zM336 192\\nc0 44.1123 -35.8877 80 -80 80s-80 -35.8877 -80 -80s35.8877 -80 80 -80s80 35.8877 80 80zM427.28 88.6016c38.3184 63.2178 38.3184 143.579 0 206.797l-53.4111 -53.4111c13.5215 -31.8467 13.5049 -68.168 0 -99.9746zM359.397 363.28\\nc-63.2168 38.3184 -143.578 38.3184 -206.796 0l53.4111 -53.4111c31.8457 13.5215 68.167 13.5049 99.9736 0zM84.7197 295.398c-38.3184 -63.2178 -38.3184 -143.579 0 -206.797l53.4111 53.4111c-13.5215 31.8467 -13.5059 68.168 0 99.9746z\\\" />\\n    <glyph glyph-name=\\\"paper-plane\\\" unicode=\\\"&#xf1d8;\\\" \\nd=\\\"M440 441.5c34.5996 19.9004 77.5996 -8.7998 71.5 -48.9004l-59.4004 -387.199c-2.2998 -14.5 -11.0996 -27.3008 -23.8994 -34.5c-7.2998 -4.10059 -15.4004 -6.2002 -23.6006 -6.2002c-6.19922 0 -12.3994 1.2002 -18.2998 3.59961l-111.899 46.2002l-43.8008 -59.0996\\nc-27.3994 -36.9004 -86.5996 -17.8008 -86.5996 28.5996v84.4004l-114.3 47.2998c-36.7998 15.0996 -40.1006 66 -5.7002 85.8994zM192 -16l36.5996 49.5l-36.5996 15.0996v-64.5996zM404.6 12.7002l59.4004 387.3l-416 -240l107.8 -44.5996l211.5 184.3\\nc14.2002 12.2998 34.4004 -5.7002 23.7002 -21.2002l-140.2 -202.3z\\\" />\\n    <glyph glyph-name=\\\"futbol\\\" unicode=\\\"&#xf1e3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M483.8 268.6c42.2998 -130.199 -29 -270.1 -159.2 -312.399c-25.5 -8.2998 -51.2998 -12.2002 -76.6992 -12.2002c-104.5 0 -201.7 66.5996 -235.7 171.4c-42.2998 130.199 29 270.1 159.2 312.399c25.5 8.2998 51.2998 12.2002 76.6992 12.2002\\nc104.5 0 201.7 -66.5996 235.7 -171.4zM409.3 74.9004c6.10059 8.39941 12.1006 16.8994 16.7998 26.1992c14.3008 28.1006 21.5 58.5 21.7002 89.2002l-38.8994 36.4004l-71.1006 -22.1006l-24.3994 -75.1992l43.6992 -60.9004zM409.3 310.3\\nc-24.5 33.4004 -58.7002 58.4004 -97.8994 71.4004l-47.4004 -26.2002v-73.7998l64.2002 -46.5l70.7002 22zM184.9 381.6c-39.9004 -13.2998 -73.5 -38.5 -97.8008 -71.8994l10.1006 -52.5l70.5996 -22l64.2002 46.5v73.7998zM139 68.5l43.5 61.7002l-24.2998 74.2998\\nl-71.1006 22.2002l-39 -36.4004c0.5 -55.7002 23.4004 -95.2002 37.8008 -115.3zM187.2 1.5c64.0996 -20.4004 115.5 -1.7998 121.7 0l22.3994 48.0996l-44.2998 61.7002h-78.5996l-43.6006 -61.7002z\\\" />\\n    <glyph glyph-name=\\\"newspaper\\\" unicode=\\\"&#xf1ea;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M552 384c13.2549 0 24 -10.7451 24 -24v-336c0 -13.2549 -10.7451 -24 -24 -24h-496c-30.9277 0 -56 25.0723 -56 56v272c0 13.2549 10.7451 24 24 24h42.752c6.60547 18.623 24.3896 32 45.248 32h440zM48 56c0 -4.41113 3.58887 -8 8 -8s8 3.58887 8 8v248h-16v-248z\\nM528 48v288h-416v-280c0 -2.7168 -0.204102 -5.38574 -0.578125 -8h416.578zM172 168c-6.62695 0 -12 5.37305 -12 12v96c0 6.62695 5.37305 12 12 12h136c6.62695 0 12 -5.37305 12 -12v-96c0 -6.62695 -5.37305 -12 -12 -12h-136zM200 248v-40h80v40h-80zM160 108v24\\nc0 6.62695 5.37305 12 12 12h136c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-136c-6.62695 0 -12 5.37305 -12 12zM352 108v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-104\\nc-6.62695 0 -12 5.37305 -12 12zM352 252v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-104c-6.62695 0 -12 5.37305 -12 12zM352 180v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24\\nc0 -6.62695 -5.37305 -12 -12 -12h-104c-6.62695 0 -12 5.37305 -12 12z\\\" />\\n    <glyph glyph-name=\\\"bell-slash\\\" unicode=\\\"&#xf1f6;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.99 -23.0195c6.91016 -5.52051 8.01953 -15.5908 2.5 -22.4902l-10 -12.4902c-5.53027 -6.88965 -15.5898 -8.00977 -22.4902 -2.49023l-598 467.51c-6.90039 5.52051 -8.01953 15.5908 -2.49023 22.4902l10 12.4902\\nc5.52051 6.90039 15.5898 8.00977 22.4902 2.49023zM163.53 80h182.84l61.3994 -48h-279.659c-19.1201 0 -31.9902 15.5996 -32.1006 32c-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c18.3701 19.7402 51.5703 49.6904 54.8398 140.42l45.4697 -35.5498\\nc-6.91992 -54.7803 -24.6895 -88.5498 -41.3994 -110.58zM320 352c-23.3496 0 -45 -7.17969 -62.9404 -19.4004l-38.1699 29.8408c19.6807 15.7793 43.1104 27.3096 69.1299 32.7197v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398\\nc73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -41.3604 6.03027 -70.7197 14.3398 -92.8496l-59.5293 46.54c-1.63086 13.96 -2.77051 28.8896 -2.79004 45.7295c0 0.200195 0.0595703 0.379883 0.0595703 0.580078c0 61.8604 -50.1396 112 -112 112zM320 -64\\nc-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z\\\" />\\n    <glyph glyph-name=\\\"copyright\\\" unicode=\\\"&#xf1f9;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 -8c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200c-110.549 0 -200 -89.4688 -200 -200c0 -110.549 89.4678 -200 200 -200z\\nM363.351 93.0645c-9.61328 -9.71289 -45.5293 -41.3965 -104.064 -41.3965c-82.4297 0 -140.484 61.4248 -140.484 141.567c0 79.1514 60.2754 139.4 139.763 139.4c55.5303 0 88.7373 -26.6201 97.5928 -34.7783c2.13379 -1.96289 3.86523 -5.9082 3.86523 -8.80762\\nc0 -1.95508 -0.864258 -4.87402 -1.92969 -6.51465l-18.1543 -28.1133c-3.8418 -5.9502 -11.9668 -7.28223 -17.499 -2.9209c-8.5957 6.77637 -31.8145 22.5381 -61.708 22.5381c-48.3037 0 -77.916 -35.3301 -77.916 -80.082c0 -41.5889 26.8877 -83.6924 78.2764 -83.6924\\nc32.6572 0 56.8428 19.0391 65.7266 27.2256c5.26953 4.85645 13.5957 4.03906 17.8193 -1.73828l19.8652 -27.1699c1.28613 -1.74512 2.33008 -4.91992 2.33008 -7.08789c0 -2.72363 -1.56055 -6.5 -3.48242 -8.42969z\\\" />\\n    <glyph glyph-name=\\\"closed-captioning\\\" unicode=\\\"&#xf20a;\\\" \\nd=\\\"M464 384c26.5 0 48 -21.5 48 -48v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h416zM458 48c3.2998 0 6 2.7002 6 6v276c0 3.2998 -2.7002 6 -6 6h-404c-3.2998 0 -6 -2.7002 -6 -6v-276c0 -3.2998 2.7002 -6 6 -6h404z\\nM246.9 133.7c1.69922 -2.40039 1.5 -5.60059 -0.5 -7.7002c-53.6006 -56.7998 -172.801 -32.0996 -172.801 67.9004c0 97.2998 121.7 119.5 172.5 70.0996c2.10059 -2 2.5 -3.2002 1 -5.7002l-17.5 -30.5c-1.89941 -3.09961 -6.19922 -4 -9.09961 -1.7002\\nc-40.7998 32 -94.5996 14.9004 -94.5996 -31.1992c0 -48 51 -70.5 92.1992 -32.6006c2.80078 2.5 7.10059 2.10059 9.2002 -0.899414zM437.3 133.7c1.7002 -2.40039 1.5 -5.60059 -0.5 -7.7002c-53.5996 -56.9004 -172.8 -32.0996 -172.8 67.9004\\nc0 97.2998 121.7 119.5 172.5 70.0996c2.09961 -2 2.5 -3.2002 1 -5.7002l-17.5 -30.5c-1.90039 -3.09961 -6.2002 -4 -9.09961 -1.7002c-40.8008 32 -94.6006 14.9004 -94.6006 -31.1992c0 -48 51 -70.5 92.2002 -32.6006c2.7998 2.5 7.09961 2.10059 9.2002 -0.899414z\\n\\\" />\\n    <glyph glyph-name=\\\"object-group\\\" unicode=\\\"&#xf247;\\\" \\nd=\\\"M500 320h-12v-256h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-320v-12c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v256h-12\\nc-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-12h320v12c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12zM448 384v-32h32v32h-32zM32 384v-32h32v32h-32zM64 0v32\\nh-32v-32h32zM480 0v32h-32v-32h32zM440 64v256h-12c-6.62695 0 -12 5.37305 -12 12v12h-320v-12c0 -6.62695 -5.37305 -12 -12 -12h-12v-256h12c6.62695 0 12 -5.37305 12 -12v-12h320v12c0 6.62695 5.37305 12 12 12h12zM404 256c6.62695 0 12 -5.37207 12 -12v-168\\nc0 -6.62793 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37207 -12 12v52h-84c-6.62695 0 -12 5.37207 -12 12v168c0 6.62793 5.37305 12 12 12h200c6.62695 0 12 -5.37207 12 -12v-52h84zM136 280v-112h144v112h-144zM376 104v112h-56v-76\\nc0 -6.62793 -5.37305 -12 -12 -12h-76v-24h144z\\\" />\\n    <glyph glyph-name=\\\"object-ungroup\\\" unicode=\\\"&#xf248;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M564 224h-12v-160h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-224v-12c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v24h-88v-12\\nc0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v160h-12c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-12h224v12c0 6.62695 5.37305 12 12 12h72\\nc6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-12v-24h88v12c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12zM352 384v-32h32v32h-32zM352 128v-32h32v32h-32zM64 96v32h-32v-32h32zM64 352v32\\nh-32v-32h32zM96 136h224v12c0 6.62695 5.37305 12 12 12h12v160h-12c-6.62695 0 -12 5.37305 -12 12v12h-224v-12c0 -6.62695 -5.37305 -12 -12 -12h-12v-160h12c6.62695 0 12 -5.37305 12 -12v-12zM224 0v32h-32v-32h32zM504 64v160h-12c-6.62695 0 -12 5.37305 -12 12v12\\nh-88v-88h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-88v-24h12c6.62695 0 12 -5.37305 12 -12v-12h224v12c0 6.62695 5.37305 12 12 12h12zM544 0v32h-32v-32h32zM544 256v32h-32v-32h32z\\\" />\\n    <glyph glyph-name=\\\"sticky-note\\\" unicode=\\\"&#xf249;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 99.8936c0 -10.9746 -6.29883 -26.1797 -14.0586 -33.9404l-83.8828 -83.8818c-7.75977 -7.76074 -22.9658 -14.0596 -33.9404 -14.0596h-268.118c-26.5098 0 -48 21.4902 -48 48v351.988c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48v-268.106z\\nM320 19.8936l76.1182 76.1182h-76.1182v-76.1182zM400 368h-352v-351.988h224v104c0 13.2549 10.7451 24 24 24h104v223.988z\\\" />\\n    <glyph glyph-name=\\\"clone\\\" unicode=\\\"&#xf24d;\\\" \\nd=\\\"M464 448c26.5098 0 48 -21.4902 48 -48v-320c0 -26.5098 -21.4902 -48 -48 -48h-48v-48c0 -26.5098 -21.4902 -48 -48 -48h-320c-26.5098 0 -48 21.4902 -48 48v320c0 26.5098 21.4902 48 48 48h48v48c0 26.5098 21.4902 48 48 48h320zM362 -16c3.31152 0 6 2.68848 6 6\\nv42h-224c-26.5098 0 -48 21.4902 -48 48v224h-42c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h308zM458 80c3.31152 0 6 2.68848 6 6v308c0 3.31152 -2.68848 6 -6 6h-308c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h308z\\\" />\\n    <glyph glyph-name=\\\"hourglass\\\" unicode=\\\"&#xf254;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M368 400c0 -80.0996 -31.8984 -165.619 -97.1797 -208c64.9912 -42.1934 97.1797 -127.436 97.1797 -208h4c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-360c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h4\\nc0 80.0996 31.8994 165.619 97.1797 208c-64.9912 42.1934 -97.1797 127.436 -97.1797 208h-4c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h360c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-4zM64 400\\nc0 -101.621 57.3066 -184 128 -184s128 82.3799 128 184h-256zM320 -16c0 101.62 -57.3076 184 -128 184s-128 -82.3799 -128 -184h256z\\\" />\\n    <glyph glyph-name=\\\"hand-rock\\\" unicode=\\\"&#xf255;\\\" \\nd=\\\"M408.864 368.948c48.8213 20.751 103.136 -15.0723 103.136 -67.9111v-114.443c0 -15.3955 -3.08887 -30.3906 -9.18262 -44.5674l-42.835 -99.6562c-4.99707 -11.625 -3.98242 -18.8574 -3.98242 -42.3701c0 -17.6729 -14.3271 -32 -32 -32h-252\\nc-17.6729 0 -32 14.3271 -32 32c0 27.3301 1.1416 29.2012 -3.11035 32.9033l-97.71 85.0811c-24.8994 21.6797 -39.1797 52.8926 -39.1797 85.6338v56.9531c0 47.4277 44.8457 82.0215 91.0459 71.1807c1.96094 55.751 63.5107 87.8262 110.671 60.8057\\nc29.1895 31.0713 78.8604 31.4473 108.334 -0.0214844c32.7051 18.6846 76.4121 10.3096 98.8135 -23.5879zM464 186.594v114.445c0 34.29 -52 33.8232 -52 0.676758c0 -8.83594 -7.16309 -16 -16 -16h-7c-8.83691 0 -16 7.16406 -16 16v26.751\\nc0 34.457 -52 33.707 -52 0.676758v-27.4287c0 -8.83594 -7.16309 -16 -16 -16h-7c-8.83691 0 -16 7.16406 -16 16v40.4658c0 34.3525 -52 33.8115 -52 0.677734v-41.1436c0 -8.83594 -7.16406 -16 -16 -16h-7c-8.83594 0 -16 7.16406 -16 16v26.751\\nc0 34.4023 -52 33.7744 -52 0.676758v-116.571c0 -8.83203 -7.16797 -16 -16 -16c-3.30664 0 -8.01367 1.7627 -10.5068 3.93359l-7 6.09473c-3.03223 2.64062 -5.49316 8.04688 -5.49316 12.0674v0v41.2275c0 34.2148 -52 33.8857 -52 0.677734v-56.9531\\nc0 -18.8555 8.27441 -36.874 22.7002 -49.4365l97.71 -85.0801c12.4502 -10.8398 19.5898 -26.4463 19.5898 -42.8164v-10.2861h220v7.07617c0 13.21 2.65332 26.0791 7.88281 38.25l42.835 99.6553c2.91602 6.75391 5.28223 18.207 5.28223 25.5635v0.0488281z\\\" />\\n    <glyph glyph-name=\\\"hand-paper\\\" unicode=\\\"&#xf256;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M372.57 335.359c39.9062 5.63281 75.4297 -25.7393 75.4297 -66.3594v-131.564c-0.00195312 -12.7666 -2.33008 -33.2246 -5.19531 -45.666l-30.1836 -130.958c-3.34668 -14.5234 -16.2783 -24.8125 -31.1816 -24.8125h-222.897\\nc-9.10352 0 -20.7793 6.01758 -26.0615 13.4316l-119.97 168.415c-21.2441 29.8203 -14.8047 71.3574 14.5498 93.1533c18.7754 13.9395 42.1309 16.2979 62.083 8.87109v126.13c0 44.0547 41.125 75.5439 82.4053 64.9834c23.8926 48.1963 92.3535 50.2471 117.982 0.74707\\nc42.5186 11.1445 83.0391 -21.9346 83.0391 -65.5469v-10.8242zM399.997 137.437l-0.00195312 131.563c0 24.9492 -36.5703 25.5508 -36.5703 -0.691406v-76.3086c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v154.184\\nc0 25.501 -36.5703 26.3633 -36.5703 0.691406v-154.875c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v188.309c0 25.501 -36.5703 26.3545 -36.5703 0.691406v-189c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16\\nv153.309c0 25.501 -36.5713 26.3359 -36.5713 0.691406v-206.494c0 -15.5703 -20.0352 -21.9092 -29.0303 -9.2832l-27.1279 38.0791c-14.3711 20.1709 -43.833 -2.33496 -29.3945 -22.6045l115.196 -161.697h201.92l27.3252 118.551\\nc2.63086 11.417 3.96484 23.1553 3.96484 34.8857z\\\" />\\n    <glyph glyph-name=\\\"hand-scissors\\\" unicode=\\\"&#xf257;\\\" \\nd=\\\"M256 -32c-44.9561 0 -77.3428 43.2627 -64.0244 85.8535c-21.6484 13.71 -34.0156 38.7617 -30.3408 65.0068h-87.6348c-40.8037 0 -74 32.8105 -74 73.1406c0 40.3291 33.1963 73.1396 74 73.1396l94 -9.14062l-78.8496 18.6787\\nc-38.3076 14.7422 -57.04 57.4707 -41.9424 95.1123c15.0303 37.4736 57.7549 55.7803 95.6416 41.2012l144.929 -55.7568c24.9551 30.5566 57.8086 43.9932 92.2178 24.7324l97.999 -54.8525c20.9746 -11.7393 34.0049 -33.8457 34.0049 -57.6904v-205.702\\nc0 -30.7422 -21.4404 -57.5576 -51.7979 -64.5537l-118.999 -27.4268c-4.97168 -1.14648 -10.0889 -1.72949 -15.2031 -1.72949zM256 16.0127l70 -0.000976562c1.23633 0 3.21777 0.225586 4.42285 0.501953l119.001 27.4277\\nc8.58203 1.97754 14.5762 9.29102 14.5762 17.7812v205.701c0 6.4873 -3.62109 12.542 -9.44922 15.8047l-98 54.8545c-8.13965 4.55566 -18.668 2.61914 -24.4873 -4.50781l-21.7646 -26.6475c-2.65039 -3.24512 -8.20215 -5.87891 -12.3926 -5.87891\\nc-1.64062 0 -4.21484 0.477539 -5.74609 1.06738l-166.549 64.0908c-32.6543 12.5664 -50.7744 -34.5771 -19.2227 -46.7168l155.357 -59.7852c5.66016 -2.17773 10.2539 -8.86816 10.2539 -14.9326v0v-11.6328c0 -8.83691 -7.16309 -16 -16 -16h-182\\nc-34.375 0 -34.4297 -50.2803 0 -50.2803h182c8.83691 0 16 -7.16309 16 -16v-6.85645c0 -8.83691 -7.16309 -16 -16 -16h-28c-25.1221 0 -25.1592 -36.5674 0 -36.5674h28c8.83691 0 16 -7.16211 16 -16v-6.85547c0 -8.83691 -7.16309 -16 -16 -16\\nc-25.1201 0 -25.1602 -36.5674 0 -36.5674z\\\" />\\n    <glyph glyph-name=\\\"hand-lizard\\\" unicode=\\\"&#xf258;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M556.686 157.458c12.6357 -19.4863 19.3145 -42.0615 19.3145 -65.2871v-124.171h-224v71.582l-99.751 38.7871c-2.7832 1.08203 -5.70996 1.63086 -8.69727 1.63086h-131.552c-30.8789 0 -56 25.1211 -56 56c0 48.5234 39.4766 88 88 88h113.709l18.333 48h-196.042\\nc-44.1123 0 -80 35.8877 -80 80v8c0 30.8779 25.1211 56 56 56h293.917c24.5 0 47.084 -12.2725 60.4111 -32.8291zM528 16v76.1709v0.0478516c0 11.7461 -5.19141 29.2734 -11.5879 39.124l-146.358 225.715c-4.44336 6.85254 -11.9707 10.9424 -20.1367 10.9424h-293.917\\nc-4.41113 0 -8 -3.58887 -8 -8v-8c0 -17.6445 14.3555 -32 32 -32h213.471c25.2021 0 42.626 -25.293 33.6299 -48.8457l-24.5518 -64.2812c-7.05371 -18.4658 -25.0732 -30.873 -44.8398 -30.873h-113.709c-22.0557 0 -40 -17.9443 -40 -40c0 -4.41113 3.58887 -8 8 -8\\nh131.552h0.0517578c7.44141 0 19.1074 -2.19238 26.041 -4.89355l99.752 -38.7881c18.5898 -7.22852 30.6035 -24.7881 30.6035 -44.7363v-23.582h128z\\\" />\\n    <glyph glyph-name=\\\"hand-spock\\\" unicode=\\\"&#xf259;\\\" \\nd=\\\"M501.03 331.824c6.05762 -9.77832 10.9746 -27.0498 10.9746 -38.5518c0 -4.80664 -0.915039 -12.499 -2.04297 -17.1709l-57.623 -241.963c-12.748 -54.1729 -68.2627 -98.1387 -123.915 -98.1387h-0.345703h-107.455h-0.224609\\nc-33.8135 0 -81.2148 18.834 -105.807 42.041l-91.3652 85.9766c-12.8213 12.0469 -23.2266 36.1016 -23.2266 53.6943c0 16.1299 8.97266 38.7529 20.0273 50.499c5.31836 5.66406 29.875 29.3926 68.1152 21.8477l-24.3594 82.1973\\nc-1.68164 5.66406 -3.0459 15.0576 -3.0459 20.9668c0 37.5938 30.417 70.502 67.8955 73.4551c-0.204102 2.03125 -0.369141 5.33691 -0.369141 7.37891c0 31.627 24.8594 63.6895 55.4902 71.5684c43.248 10.9785 80.5645 -17.7012 89.6602 -53.0723l13.6836 -53.207\\nl4.64648 22.6602c6.76074 32.417 39.123 58.8115 72.2373 58.916c8.73438 0 56.625 -3.26953 70.7383 -54.0801c15.0664 0.710938 46.9199 -3.50977 66.3105 -35.0176zM463.271 287.219c7.86914 32.9844 -42.1211 45.2695 -50.0859 11.9219l-24.8008 -104.146\\nc-4.38867 -18.4141 -31.7783 -11.8926 -28.0557 6.2168l28.5479 139.166c7.39844 36.0703 -43.3076 45.0703 -50.1182 11.9629l-31.791 -154.971c-3.54883 -17.3086 -28.2832 -18.0469 -32.7109 -0.804688l-47.3262 184.035\\nc-8.43359 32.8105 -58.3691 20.2676 -49.8652 -12.8359l42.4414 -165.039c4.81641 -18.7207 -23.3711 -26.9121 -28.9648 -8.00781l-31.3438 105.779c-9.6875 32.6465 -59.1191 18.2578 -49.3867 -14.625l36.0137 -121.539\\nc5.61816 -18.9521 10.1777 -50.377 10.1777 -70.1436v-0.00878906c0 -6.54297 -8.05664 -10.9355 -13.4824 -5.82617l-51.123 48.1074c-24.7852 23.4082 -60.0527 -14.1875 -35.2793 -37.4902l91.3691 -85.9805c16.9629 -16.0068 49.6592 -28.998 72.9824 -28.998h0.154297\\nh107.455h0.216797c34.7402 0 69.3936 27.4443 77.3525 61.2598z\\\" />\\n    <glyph glyph-name=\\\"hand-pointer\\\" unicode=\\\"&#xf25a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M358.182 268.639c43.1934 16.6348 89.8184 -15.7949 89.8184 -62.6387v-84c-0.000976562 -4.25 -0.775391 -11.0615 -1.72754 -15.2041l-27.4297 -118.999c-6.98242 -30.2969 -33.7549 -51.7969 -64.5566 -51.7969h-178.286c-21.2588 0 -41.3682 10.4102 -53.791 27.8457\\nl-109.699 154.001c-21.2432 29.8193 -14.8047 71.3574 14.5498 93.1523c18.8115 13.9658 42.1748 16.2822 62.083 8.87207v161.129c0 36.9443 29.7363 67 66.2861 67s66.2861 -30.0557 66.2861 -67v-73.6338c20.4131 2.85742 41.4678 -3.94238 56.5947 -19.6289\\nc27.1934 12.8467 60.3799 5.66992 79.8721 -19.0986zM80.9854 168.303c-14.4004 20.2119 -43.8008 -2.38281 -29.3945 -22.6055l109.712 -154c3.43457 -4.81934 8.92871 -7.69727 14.6973 -7.69727h178.285c8.49219 0 15.8037 5.99414 17.7822 14.5762l27.4297 119.001\\nc0.333008 1.44629 0.501953 2.93457 0.501953 4.42285v84c0 25.1602 -36.5713 25.1211 -36.5713 0c0 -8.83594 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16406 -16 16v21c0 25.1602 -36.5713 25.1201 -36.5713 0v-21c0 -8.83594 -7.16309 -16 -16 -16h-6.85938\\nc-8.83691 0 -16 7.16406 -16 16v35c0 25.1602 -36.5703 25.1201 -36.5703 0v-35c0 -8.83594 -7.16309 -16 -16 -16h-6.85742c-8.83691 0 -16 7.16406 -16 16v175c0 25.1602 -36.5713 25.1201 -36.5713 0v-241.493c0 -15.5703 -20.0352 -21.9092 -29.0303 -9.2832z\\nM176.143 48v96c0 8.83691 6.26855 16 14 16h6c7.73242 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26758 -16 -14 -16h-6c-7.73242 0 -14 7.16309 -14 16zM251.571 48v96c0 8.83691 6.26758 16 14 16h6c7.73145 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26855 -16 -14 -16h-6\\nc-7.73242 0 -14 7.16309 -14 16zM327 48v96c0 8.83691 6.26758 16 14 16h6c7.73242 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26758 -16 -14 -16h-6c-7.73242 0 -14 7.16309 -14 16z\\\" />\\n    <glyph glyph-name=\\\"hand-peace\\\" unicode=\\\"&#xf25b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M362.146 256.024c42.5908 13.3184 85.8535 -19.0684 85.8535 -64.0244l-0.0117188 -70.001c-0.000976562 -4.25 -0.775391 -11.0615 -1.72949 -15.2031l-27.4268 -118.999c-6.99707 -30.3564 -33.8105 -51.7969 -64.5547 -51.7969h-205.702\\nc-23.8447 0 -45.9502 13.0303 -57.6904 34.0059l-54.8525 97.999c-19.2607 34.4092 -5.82422 67.2617 24.7324 92.2178l-55.7568 144.928c-14.5791 37.8867 3.72754 80.6113 41.2012 95.6416c37.6406 15.0977 80.3691 -3.63477 95.1123 -41.9424l18.6787 -78.8496\\nl-9.14062 94c0 40.8037 32.8096 74 73.1396 74s73.1406 -33.1963 73.1406 -74v-87.6348c26.2451 3.6748 51.2959 -8.69238 65.0068 -30.3408zM399.987 122l-0.000976562 70c0 25.1602 -36.5674 25.1201 -36.5674 0c0 -8.83691 -7.16309 -16 -16 -16h-6.85547\\nc-8.83789 0 -16 7.16309 -16 16v28c0 25.1592 -36.5674 25.1221 -36.5674 0v-28c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v182c0 34.4297 -50.2803 34.375 -50.2803 0v-182c0 -8.83691 -7.16309 -16 -16 -16h-11.6328v0\\nc-6.06445 0 -12.7549 4.59375 -14.9326 10.2539l-59.7842 155.357c-12.1396 31.5518 -59.2842 13.4326 -46.7168 -19.2227l64.0898 -166.549c0.589844 -1.53125 1.06738 -4.10547 1.06738 -5.74609c0 -4.19043 -2.63379 -9.74219 -5.87891 -12.3926l-26.6475 -21.7646\\nc-7.12695 -5.81934 -9.06445 -16.3467 -4.50781 -24.4873l54.8535 -98c3.26367 -5.82812 9.31934 -9.44922 15.8057 -9.44922h205.701c8.49121 0 15.8037 5.99414 17.7812 14.5762l27.4277 119.001c0.333008 1.44629 0.501953 2.93457 0.501953 4.42285z\\\" />\\n    <glyph glyph-name=\\\"registered\\\" unicode=\\\"&#xf25d;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 -8c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200c-110.549 0 -200 -89.4688 -200 -200c0 -110.549 89.4678 -200 200 -200z\\nM366.442 73.791c4.40332 -7.99219 -1.37012 -17.791 -10.5107 -17.791h-42.8096h-0.0126953c-3.97559 0 -8.71582 2.84961 -10.5801 6.36035l-47.5156 89.3027h-31.958v-83.6631c0 -6.61719 -5.38281 -12 -12 -12h-38.5674c-6.61719 0 -12 5.38281 -12 12v248.304\\nc0 6.61719 5.38281 12 12 12h78.667c71.251 0 101.498 -32.749 101.498 -85.252c0 -31.6123 -15.2148 -59.2969 -39.4824 -73.1758c3.02148 -4.61719 0.225586 0.199219 53.2715 -96.085zM256.933 208.094c20.9131 0 32.4307 11.5186 32.4316 32.4316\\nc0 19.5752 -6.5127 31.709 -38.9297 31.709h-27.377v-64.1406h33.875z\\\" />\\n    <glyph glyph-name=\\\"calendar-plus\\\" unicode=\\\"&#xf271;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M336 156v-24c0 -6.59961 -5.40039 -12 -12 -12h-76v-76c0 -6.59961 -5.40039 -12 -12 -12h-24c-6.59961 0 -12 5.40039 -12 12v76h-76c-6.59961 0 -12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12h76v76c0 6.59961 5.40039 12 12 12h24c6.59961 0 12 -5.40039 12 -12\\nv-76h76c6.59961 0 12 -5.40039 12 -12zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40\\nc6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"calendar-minus\\\" unicode=\\\"&#xf272;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M124 120c-6.59961 0 -12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12h200c6.59961 0 12 -5.40039 12 -12v-24c0 -6.59961 -5.40039 -12 -12 -12h-200zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52\\nc0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"calendar-times\\\" unicode=\\\"&#xf273;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M311.7 73.2998l-17 -17c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-53.7002 53.7998l-53.7002 -53.6992c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-17 17c-4.7002 4.69922 -4.7002 12.2998 0 17l53.7002 53.6992l-53.7002 53.7002c-4.7002 4.7002 -4.7002 12.2998 0 17\\nl17 17c4.7002 4.7002 12.2998 4.7002 17 0l53.7002 -53.7002l53.7002 53.7002c4.7002 4.7002 12.2998 4.7002 17 0l17 -17c4.7002 -4.7002 4.7002 -12.2998 0 -17l-53.7998 -53.7998l53.6992 -53.7002c4.80078 -4.7002 4.80078 -12.2998 0.100586 -17zM448 336v-352\\nc0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10\\nv298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"calendar-check\\\" unicode=\\\"&#xf274;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 384c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h48v52c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-52h128v52c0 6.62695 5.37305 12 12 12h40\\nc6.62695 0 12 -5.37305 12 -12v-52h48zM394 -16c3.31152 0 6 2.68848 6 6v298h-352v-298c0 -3.31152 2.68848 -6 6 -6h340zM341.151 184.65l-142.31 -141.169c-4.70508 -4.66699 -12.3027 -4.6377 -16.9707 0.0673828l-75.0908 75.6992\\nc-4.66699 4.70508 -4.6377 12.3027 0.0673828 16.9707l22.7197 22.5361c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0693359l44.1035 -44.4609l111.072 110.182c4.70508 4.66699 12.3027 4.63672 16.9707 -0.0683594l22.5361 -22.7178\\nc4.66699 -4.70508 4.63672 -12.3027 -0.0683594 -16.9697z\\\" />\\n    <glyph glyph-name=\\\"map\\\" unicode=\\\"&#xf279;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M560.02 416c8.4502 0 15.9805 -6.83008 15.9805 -16.0195v-346.32c0 -11.9609 -9.01367 -25.2705 -20.1201 -29.71l-151.83 -52.8105c-5.32617 -1.7334 -14.1953 -3.13965 -19.7969 -3.13965c-5.7373 0 -14.8105 1.47363 -20.2529 3.29004l-172 60.71l-170.05 -62.8398\\nc-1.99023 -0.790039 -4 -1.16016 -5.95996 -1.16016c-8.45996 0 -15.9902 6.83008 -15.9902 16.0195v346.32c0.00292969 11.959 9.0166 25.2686 20.1201 29.71l151.83 52.8105c6.43945 2.08984 13.1201 3.13965 19.8096 3.13965\\nc5.73242 -0.00195312 14.8008 -1.47168 20.2402 -3.28027l172 -60.7197h0.00976562l170.05 62.8398c1.98047 0.790039 4 1.16016 5.95996 1.16016zM224 357.58v-285.97l128 -45.1904v285.97zM48 29.9502l127.36 47.0801l0.639648 0.229492v286.2l-128 -44.5303v-288.979z\\nM528 65.0801v288.97l-127.36 -47.0693l-0.639648 -0.240234v-286.19z\\\" />\\n    <glyph glyph-name=\\\"comment-alt\\\" unicode=\\\"&#xf27a;\\\" \\nd=\\\"M448 448c35.2998 0 64 -28.7002 64 -64v-288c0 -35.2998 -28.7002 -64 -64 -64h-144l-124.9 -93.5996c-2.19922 -1.7002 -4.69922 -2.40039 -7.09961 -2.40039c-6.2002 0 -12 4.90039 -12 12v84h-96c-35.2998 0 -64 28.7002 -64 64v288c0 35.2998 28.7002 64 64 64h384z\\nM464 96v288c0 8.7998 -7.2002 16 -16 16h-384c-8.7998 0 -16 -7.2002 -16 -16v-288c0 -8.7998 7.2002 -16 16 -16h144v-60l67.2002 50.4004l12.7998 9.59961h160c8.7998 0 16 7.2002 16 16z\\\" />\\n    <glyph glyph-name=\\\"pause-circle\\\" unicode=\\\"&#xf28b;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM352 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-48\\nc-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h48c8.7998 0 16 -7.2002 16 -16zM240 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-48c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h48c8.7998 0 16 -7.2002 16 -16z\\\" />\\n    <glyph glyph-name=\\\"stop-circle\\\" unicode=\\\"&#xf28d;\\\" \\nd=\\\"M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200zM352 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-160\\nc-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h160c8.7998 0 16 -7.2002 16 -16z\\\" />\\n    <glyph glyph-name=\\\"handshake\\\" unicode=\\\"&#xf2b5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M519.2 320.1h120.8v-255.699h-64c-17.5 0 -31.7998 14.1992 -31.9004 31.6992h-57.8994c-1.7998 -8.19922 -5.2998 -16.0996 -10.9004 -23l-26.2002 -32.2998c-15.7998 -19.3994 -41.8994 -25.5 -64 -16.7998c-13.5 -16.5996 -30.5996 -24 -48.7998 -24\\nc-15.0996 0 -28.5996 5.09961 -41.0996 15.9004c-31.7998 -21.9004 -74.7002 -21.3008 -105.601 3.7998l-84.5996 76.3994h-9.09961c-0.100586 -17.5 -14.3008 -31.6992 -31.9004 -31.6992h-64v255.699h118l47.5996 47.6006c10.5 10.3994 24.8008 16.2998 39.6006 16.2998\\nh226.8v0c12.7812 0 30.5225 -7.30273 39.5996 -16.2998zM48 96.4004c8.7998 0 16 7.09961 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16zM438 103.3c2.7002 3.40039 2.2002 8.5 -1.2002 11.2998l-108.2 87.8008l-8.19922 -7.5\\nc-40.3008 -36.8008 -86.7002 -11.8008 -101.5 4.39941c-26.7002 29 -25 74.4004 4.39941 101.3l38.7002 35.5h-56.7002c-2 -0.799805 -3.7002 -1.5 -5.7002 -2.2998l-61.6992 -61.5996h-41.9004v-128.101h27.7002l97.2998 -88\\nc16.0996 -13.0996 41.4004 -10.5 55.2998 6.60059l15.6006 19.2002l36.7998 -31.5c3 -2.40039 12 -4.90039 18 2.39941l30 36.5l23.8994 -19.3994c3.5 -2.80078 8.5 -2.2002 11.3008 1.19922zM544 144.1v128h-44.7002l-61.7002 61.6006\\nc-1.39941 1.5 -3.39941 2.2998 -5.5 2.2998l-83.6992 -0.200195c-10 0 -19.6006 -3.7002 -27 -10.5l-65.6006 -60.0996c-9.7002 -8.7998 -10.5 -24 -1.2002 -33.9004c8.90039 -9.39941 25.1006 -8.7002 34.6006 0l55.2002 50.6006c6.5 5.89941 16.5996 5.5 22.5996 -1\\nl10.9004 -11.7002c6 -6.5 5.5 -16.6006 -1 -22.6006l-12.5 -11.3994l102.699 -83.4004c2.80078 -2.2998 5.40039 -4.89941 7.7002 -7.7002h69.2002zM592 96.4004c8.7998 0 16 7.09961 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16z\\n\\\" />\\n    <glyph glyph-name=\\\"envelope-open\\\" unicode=\\\"&#xf2b6;\\\" \\nd=\\\"M494.586 283.484c9.6123 -7.94824 17.4141 -24.5205 17.4141 -36.9932v-262.491c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v262.515c0 12.5166 7.84668 29.1279 17.5146 37.0771c4.08008 3.35449 110.688 89.0996 135.15 108.549\\nc22.6992 18.1426 60.1299 55.8594 103.335 55.8594c43.4365 0 81.2314 -38.1914 103.335 -55.8594c23.5283 -18.707 130.554 -104.773 135.251 -108.656zM464 -10v253.632v0.00488281c0 1.5791 -0.996094 3.66602 -2.22363 4.6582\\nc-15.8633 12.8232 -108.793 87.5752 -132.366 106.316c-17.5527 14.0195 -49.7168 45.3887 -73.4102 45.3887c-23.6016 0 -55.2451 -30.8799 -73.4102 -45.3887c-23.5713 -18.7393 -116.494 -93.4795 -132.364 -106.293\\nc-1.40918 -1.13965 -2.22559 -2.85254 -2.22559 -4.66504v-253.653c0 -3.31152 2.68848 -6 6 -6h404c3.31152 0 6 2.68848 6 6zM432.009 177.704c4.24902 -5.15918 3.46484 -12.7949 -1.74512 -16.9814c-28.9746 -23.2822 -59.2734 -47.5967 -70.9287 -56.8623\\nc-22.6992 -18.1436 -60.1299 -55.8604 -103.335 -55.8604c-43.4521 0 -81.2871 38.2373 -103.335 55.8604c-11.2793 8.9668 -41.7441 33.4131 -70.9268 56.8643c-5.20996 4.1875 -5.99316 11.8223 -1.74512 16.9814l15.2578 18.5283\\nc4.17773 5.07227 11.6572 5.84277 16.7793 1.72559c28.6182 -23.001 58.5654 -47.0352 70.5596 -56.5713c17.5527 -14.0195 49.7168 -45.3887 73.4102 -45.3887c23.6016 0 55.2461 30.8799 73.4102 45.3887c11.9941 9.53516 41.9434 33.5703 70.5625 56.5684\\nc5.12207 4.11621 12.6016 3.3457 16.7783 -1.72656z\\\" />\\n    <glyph glyph-name=\\\"address-book\\\" unicode=\\\"&#xf2b9;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 288h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48\\nh320c26.5 0 48 -21.5 48 -48v-48h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM368 -16v416h-320v-416h320zM208 192c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM118.4 64\\nc-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002c0 -10.6006 -10 -19.2002 -22.4004 -19.2002\\nh-179.199z\\\" />\\n    <glyph glyph-name=\\\"address-card\\\" unicode=\\\"&#xf2bb;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM528 16v352h-480v-352h480zM208 192c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64z\\nM118.4 64c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002\\nc0 -10.6006 -10 -19.2002 -22.4004 -19.2002h-179.199zM360 128c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 192c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112\\nc4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 256c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112z\\\" />\\n    <glyph glyph-name=\\\"user-circle\\\" unicode=\\\"&#xf2bd;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 344c53 0 96 -43 96 -96s-43 -96 -96 -96s-96 43 -96 96s43 96 96 96zM248 200c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8\\nc49.7002 0 95.0996 18.2998 130.1 48.4004c-14.8994 23 -40.3994 38.5 -69.5996 39.5c-20.7998 -6.5 -40.5996 -9.60059 -60.5 -9.60059s-39.7002 3.2002 -60.5 9.60059c-29.2002 -0.900391 -54.7002 -16.5 -69.5996 -39.5c35 -30.1006 80.3994 -48.4004 130.1 -48.4004z\\nM410.7 76.0996c23.3994 32.7002 37.2998 72.7002 37.2998 115.9c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -43.2002 13.9004 -83.2002 37.2998 -115.9c24.5 31.4004 62.2002 51.9004 105.101 51.9004c10.1992 0 26.0996 -9.59961 57.5996 -9.59961\\nc31.5996 0 47.4004 9.59961 57.5996 9.59961c43 0 80.7002 -20.5 105.101 -51.9004z\\\" />\\n    <glyph glyph-name=\\\"id-badge\\\" unicode=\\\"&#xf2c1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h288zM336 -16v416h-288v-416h288zM144 336c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16h96c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16\\nh-96zM192 160c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM102.4 32c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8\\nc26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002c0 -10.6006 -10 -19.2002 -22.4004 -19.2002h-179.199z\\\" />\\n    <glyph glyph-name=\\\"id-card\\\" unicode=\\\"&#xf2c2;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM528 16v288h-480v-288h32.7998c-1 4.5 -0.799805 -3.59961 -0.799805 22.4004c0 31.7998 30.0996 57.5996 67.2002 57.5996\\nc11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996c0 -26 0.0996094 -17.9004 -0.799805 -22.4004h224.8zM360 96c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16\\nc0 -4.40039 -3.59961 -8 -8 -8h-112zM360 160c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 224c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112\\nc4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM192 128c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64z\\\" />\\n    <glyph glyph-name=\\\"window-maximize\\\" unicode=\\\"&#xf2d0;\\\" \\nd=\\\"M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM464 22v234h-416v-234c0 -3.2998 2.7002 -6 6 -6h404c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"window-minimize\\\" unicode=\\\"&#xf2d1;\\\" \\nd=\\\"M480 -32h-448c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32h448c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32z\\\" />\\n    <glyph glyph-name=\\\"window-restore\\\" unicode=\\\"&#xf2d2;\\\" \\nd=\\\"M464 448c26.5 0 48 -21.5 48 -48v-320c0 -26.5 -21.5 -48 -48 -48h-48v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v320c0 26.5 21.5 48 48 48h48v48c0 26.5 21.5 48 48 48h320zM368 -16v208h-320v-208h320zM464 80v320h-320v-48h224\\nc26.5 0 48 -21.5 48 -48v-224h48z\\\" />\\n    <glyph glyph-name=\\\"snowflake\\\" unicode=\\\"&#xf2dc;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M440.1 92.7998c7.60059 -4.39941 10.1006 -14.2002 5.5 -21.7002l-7.89941 -13.8994c-4.40039 -7.7002 -14 -10.2998 -21.5 -5.90039l-39.2002 23l9.09961 -34.7002c2.30078 -8.5 -2.69922 -17.2998 -11.0996 -19.5996l-15.2002 -4.09961\\nc-8.39941 -2.30078 -17.0996 2.7998 -19.2998 11.2998l-21.2998 81l-71.9004 42.2002v-84.5l58.2998 -59.3008c6.10059 -6.19922 6.10059 -16.3994 0 -22.5996l-11.0996 -11.2998c-6.09961 -6.2002 -16.0996 -6.2002 -22.2002 0l-24.8994 25.3994v-46.0996\\nc0 -8.7998 -7 -16 -15.7002 -16h-15.7002c-8.7002 0 -15.7002 7.2002 -15.7002 16v45.9004l-24.8994 -25.4004c-6.10059 -6.2002 -16.1006 -6.2002 -22.2002 0l-11.1006 11.2998c-6.09961 6.2002 -6.09961 16.4004 0 22.6006l58.3008 59.2998v84.5l-71.9004 -42.2002\\nl-21.2998 -81c-2.2998 -8.5 -10.9004 -13.5996 -19.2998 -11.2998l-15.2002 4.09961c-8.40039 2.2998 -13.2998 11.1006 -11.1006 19.6006l9.10059 34.6992l-39.2002 -23c-7.5 -4.39941 -17.2002 -1.7998 -21.5 5.90039l-7.90039 13.9004\\nc-4.2998 7.69922 -1.69922 17.5 5.80078 21.8994l39.1992 23l-34.0996 9.2998c-8.40039 2.30078 -13.2998 11.1006 -11.0996 19.6006l4.09961 15.5c2.2998 8.5 10.9004 13.5996 19.2998 11.2998l79.7002 -21.7002l71.9004 42.2002l-71.9004 42.2002l-79.7002 -21.7002\\nc-8.39941 -2.2998 -17.0996 2.7998 -19.2998 11.2998l-4.09961 15.5c-2.30078 8.5 2.69922 17.2998 11.0996 19.6006l34.0996 9.09961l-39.1992 23c-7.60059 4.5 -10.1006 14.2002 -5.80078 21.9004l7.90039 13.8994c4.40039 7.7002 14 10.2998 21.5 5.90039l39.2002 -23\\nl-9.10059 34.7002c-2.2998 8.5 2.7002 17.2998 11.1006 19.5996l15.2002 4.09961c8.39941 2.30078 17.0996 -2.7998 19.2998 -11.2998l21.2998 -81l71.9004 -42.2002v84.5l-58.3008 59.3008c-6.09961 6.19922 -6.09961 16.3994 0 22.5996l11.5 11.2998\\nc6.10059 6.2002 16.1006 6.2002 22.2002 0l24.9004 -25.3994v46.0996c0 8.7998 7 16 15.7002 16h15.6992c8.7002 0 15.7002 -7.2002 15.7002 -16v-45.9004l24.9004 25.4004c6.09961 6.2002 16.0996 6.2002 22.2002 0l11.0996 -11.2998\\nc6.09961 -6.2002 6.09961 -16.4004 0 -22.6006l-58.2998 -59.2998v-84.5l71.8994 42.2002l21.3008 81c2.2998 8.5 10.8994 13.5996 19.2998 11.2998l15.2002 -4.09961c8.39941 -2.2998 13.2998 -11.1006 11.0996 -19.6006l-9.09961 -34.6992l39.1992 23\\nc7.5 4.39941 17.2002 1.7998 21.5 -5.90039l7.90039 -13.9004c4.2998 -7.69922 1.7002 -17.5 -5.7998 -21.8994l-39.2002 -23l34.0996 -9.2998c8.40039 -2.30078 13.3008 -11.1006 11.1006 -19.6006l-4.10059 -15.5c-2.2998 -8.5 -10.8994 -13.5996 -19.2998 -11.2998\\nl-79.7002 21.7002l-71.8994 -42.2002l71.7998 -42.2002l79.7002 21.7002c8.39941 2.2998 17.0996 -2.7998 19.2998 -11.2998l4.09961 -15.5c2.30078 -8.5 -2.69922 -17.2998 -11.0996 -19.6006l-34.0996 -9.2998z\\\" />\\n    <glyph glyph-name=\\\"trash-alt\\\" unicode=\\\"&#xf2ed;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M268 32c-6.62402 0 -12 5.37598 -12 12v216c0 6.62402 5.37598 12 12 12h24c6.62402 0 12 -5.37598 12 -12v-216c0 -6.62402 -5.37598 -12 -12 -12h-24zM432 368c8.83203 0 16 -7.16797 16 -16v-16c0 -8.83203 -7.16797 -16 -16 -16h-16v-336\\nc0 -26.4961 -21.5039 -48 -48 -48h-288c-26.4961 0 -48 21.5039 -48 48v336h-16c-8.83203 0 -16 7.16797 -16 16v16c0 8.83203 7.16797 16 16 16h82.4102l34.0195 56.7002c7.71875 12.8613 26.1572 23.2998 41.1572 23.2998h0.00292969h100.82h0.0224609\\nc15 0 33.4385 -10.4385 41.1572 -23.2998l34 -56.7002h82.4102zM171.84 397.09l-17.4502 -29.0898h139.221l-17.46 29.0898c-0.96582 1.60645 -3.26953 2.91016 -5.14355 2.91016h-0.00683594h-94h-0.0166016c-1.87402 0 -4.17871 -1.30371 -5.14355 -2.91016zM368 -16v336\\nh-288v-336h288zM156 32c-6.62402 0 -12 5.37598 -12 12v216c0 6.62402 5.37598 12 12 12h24c6.62402 0 12 -5.37598 12 -12v-216c0 -6.62402 -5.37598 -12 -12 -12h-24z\\\" />\\n    <glyph glyph-name=\\\"images\\\" unicode=\\\"&#xf302;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M480 32v-16c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256c0 26.5098 21.4902 48 48 48h16v-48h-10c-3.31152 0 -6 -2.68848 -6 -6v-244c0 -3.31152 2.68848 -6 6 -6h372c3.31152 0 6 2.68848 6 6v10h48zM522 368h-372\\nc-3.31152 0 -6 -2.68848 -6 -6v-244c0 -3.31152 2.68848 -6 6 -6h372c3.31152 0 6 2.68848 6 6v244c0 3.31152 -2.68848 6 -6 6zM528 416c26.5098 0 48 -21.4902 48 -48v-256c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256\\nc0 26.5098 21.4902 48 48 48h384zM264 304c0 -22.0908 -17.9092 -40 -40 -40s-40 17.9092 -40 40s17.9092 40 40 40s40 -17.9092 40 -40zM192 208l39.5146 39.5146c4.68652 4.68652 12.2842 4.68652 16.9717 0l39.5137 -39.5146l103.515 103.515\\nc4.68652 4.68652 12.2842 4.68652 16.9717 0l71.5137 -71.5146v-80h-288v48z\\\" />\\n    <glyph glyph-name=\\\"clipboard\\\" unicode=\\\"&#xf328;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h80c0 35.2998 28.7002 64 64 64s64 -28.7002 64 -64h80zM192 408c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24\\ns-10.7002 24 -24 24zM336 -10v340c0 3.2998 -2.7002 6 -6 6h-42v-36c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v36h-42c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h276c3.2998 0 6 2.7002 6 6z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-down\\\" unicode=\\\"&#xf358;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM224 308c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-116\\nh67c10.7002 0 16.0996 -12.9004 8.5 -20.5l-99 -99c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-99 99c-7.5 7.59961 -2.2002 20.5 8.5 20.5h67v116z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-left\\\" unicode=\\\"&#xf359;\\\" \\nd=\\\"M8 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM456 192c0 110.5 -89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200s200 89.5 200 200zM384 212v-40c0 -6.59961 -5.40039 -12 -12 -12h-116v-67\\nc0 -10.7002 -12.9004 -16 -20.5 -8.5l-99 99c-4.7002 4.7002 -4.7002 12.2998 0 17l99 99c7.59961 7.59961 20.5 2.2002 20.5 -8.5v-67h116c6.59961 0 12 -5.40039 12 -12z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-right\\\" unicode=\\\"&#xf35a;\\\" \\nd=\\\"M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200zM128 172v40c0 6.59961 5.40039 12 12 12h116v67\\nc0 10.7002 12.9004 16 20.5 8.5l99 -99c4.7002 -4.7002 4.7002 -12.2998 0 -17l-99 -99c-7.59961 -7.59961 -20.5 -2.2002 -20.5 8.5v67h-116c-6.59961 0 -12 5.40039 -12 12z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-up\\\" unicode=\\\"&#xf35b;\\\" \\nd=\\\"M256 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM256 392c-110.5 0 -200 -89.5 -200 -200s89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200zM276 64h-40c-6.59961 0 -12 5.40039 -12 12v116h-67\\nc-10.7002 0 -16 12.9004 -8.5 20.5l99 99c4.7002 4.7002 12.2998 4.7002 17 0l99 -99c7.59961 -7.59961 2.2002 -20.5 -8.5 -20.5h-67v-116c0 -6.59961 -5.40039 -12 -12 -12z\\\" />\\n    <glyph glyph-name=\\\"gem\\\" unicode=\\\"&#xf3a5;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M464 448c4.09961 0 7.7998 -2 10.0996 -5.40039l99.9004 -147.199c2.90039 -4.40039 2.59961 -10.1006 -0.700195 -14.2002l-276 -340.8c-4.7998 -5.90039 -13.7998 -5.90039 -18.5996 0l-276 340.8c-3.2998 4 -3.60059 9.7998 -0.700195 14.2002l100 147.199\\nc2.2002 3.40039 6 5.40039 10 5.40039h352zM444.7 400h-56.7998l51.6992 -96h68.4004zM242.6 400l-51.5996 -96h194l-51.7002 96h-90.7002zM131.3 400l-63.2998 -96h68.4004l51.6992 96h-56.7998zM88.2998 256l119.7 -160l-68.2998 160h-51.4004zM191.2 256l96.7998 -243.3\\nl96.7998 243.3h-193.6zM368 96l119.6 160h-51.3994z\\\" />\\n    <glyph glyph-name=\\\"money-bill-alt\\\" unicode=\\\"&#xf3d1;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M320 304c53.0195 0 96 -50.1396 96 -112c0 -61.8701 -43 -112 -96 -112c-53.0195 0 -96 50.1504 -96 112c0 61.8604 42.9805 112 96 112zM360 136v16c0 4.41992 -3.58008 8 -8 8h-16v88c0 4.41992 -3.58008 8 -8 8h-13.5801h-0.000976562\\nc-4.01074 0 -9.97266 -1.80566 -13.3086 -4.03027l-15.3301 -10.2197c-1.96777 -1.30957 -3.56445 -4.29004 -3.56445 -6.65332c0 -1.33691 0.601562 -3.32422 1.34375 -4.43652l8.88086 -13.3105c1.30859 -1.9668 4.29004 -3.56445 6.65332 -3.56445\\nc1.33691 0 3.32422 0.602539 4.43652 1.34473l0.469727 0.310547v-55.4404h-16c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h64c4.41992 0 8 3.58008 8 8zM608 384c17.6699 0 32 -14.3301 32 -32v-320c0 -17.6699 -14.3301 -32 -32 -32h-576\\nc-17.6699 0 -32 14.3301 -32 32v320c0 17.6699 14.3301 32 32 32h576zM592 112v160c-35.3496 0 -64 28.6504 -64 64h-416c0 -35.3496 -28.6504 -64 -64 -64v-160c35.3496 0 64 -28.6504 64 -64h416c0 35.3496 28.6504 64 64 64z\\\" />\\n    <glyph glyph-name=\\\"window-close\\\" unicode=\\\"&#xf410;\\\" \\nd=\\\"M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM464 22v340c0 3.2998 -2.7002 6 -6 6h-404c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h404c3.2998 0 6 2.7002 6 6z\\nM356.5 253.4l-61.4004 -61.4004l61.4004 -61.4004c4.59961 -4.59961 4.59961 -12.0996 0 -16.7998l-22.2998 -22.2998c-4.60059 -4.59961 -12.1006 -4.59961 -16.7998 0l-61.4004 61.4004l-61.4004 -61.4004c-4.59961 -4.59961 -12.0996 -4.59961 -16.7998 0\\nl-22.2998 22.2998c-4.59961 4.60059 -4.59961 12.1006 0 16.7998l61.4004 61.4004l-61.4004 61.4004c-4.59961 4.59961 -4.59961 12.0996 0 16.7998l22.2998 22.2998c4.60059 4.59961 12.1006 4.59961 16.7998 0l61.4004 -61.4004l61.4004 61.4004\\nc4.59961 4.59961 12.0996 4.59961 16.7998 0l22.2998 -22.2998c4.7002 -4.60059 4.7002 -12.1006 0 -16.7998z\\\" />\\n    <glyph glyph-name=\\\"comment-dots\\\" unicode=\\\"&#xf4ad;\\\" \\nd=\\\"M144 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM256 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM368 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32\\ns-32 14.2998 -32 32s14.2998 32 32 32zM256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-32.7998 0 -64 5.2002 -92.9004 14.2998c-29.0996 -20.5996 -77.5996 -46.2998 -139.1 -46.2998c-9.59961 0 -18.2998 5.7002 -22.0996 14.5\\nc-3.80078 8.7998 -2 19 4.59961 26c0.5 0.400391 31.5 33.7998 46.4004 73.2002c-33 35.0996 -52.9004 78.7002 -52.9004 126.3c0 114.9 114.6 208 256 208zM256 48c114.7 0 208 71.7998 208 160s-93.2998 160 -208 160s-208 -71.7998 -208 -160\\nc0 -42.2002 21.7002 -74.0996 39.7998 -93.4004l20.6006 -21.7998l-10.6006 -28.0996c-5.5 -14.5 -12.5996 -28.1006 -19.8994 -40.2002c23.5996 7.59961 43.1992 18.9004 57.5 29l19.5 13.7998l22.6992 -7.2002c25.3008 -8 51.7002 -12.0996 78.4004 -12.0996z\\\" />\\n    <glyph glyph-name=\\\"smile-wink\\\" unicode=\\\"&#xf4da;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM365.8 138.4c10.2002 -8.5 11.6006 -23.6006 3.10059 -33.8008\\nc-30 -36 -74.1006 -56.5996 -120.9 -56.5996s-90.9004 20.5996 -120.9 56.5996c-8.39941 10.2002 -7.09961 25.3008 3.10059 33.8008c10.0996 8.39941 25.2998 7.09961 33.7998 -3.10059c20.7998 -25.0996 51.5 -39.3994 84 -39.3994s63.2002 14.3994 84 39.3994\\nc8.5 10.2002 23.5996 11.6006 33.7998 3.10059zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 268c25.7002 0 55.9004 -16.9004 59.7002 -42.0996c1.7998 -11.1006 -11.2998 -18.2002 -19.7998 -10.8008l-9.5 8.5\\nc-14.8008 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-8.30078 -7.39941 -21.5 -0.399414 -19.8008 10.8008c4 25.1992 34.2002 42.0996 59.9004 42.0996z\\\" />\\n    <glyph glyph-name=\\\"angry\\\" unicode=\\\"&#xf556;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM248 136c33.5996 0 65.2002 -14.7998 86.7998 -40.5996\\nc8.40039 -10.2002 7.10059 -25.3008 -3.09961 -33.8008c-10.6006 -8.89941 -25.7002 -6.69922 -33.7998 3c-24.8008 29.7002 -75 29.7002 -99.8008 0c-8.5 -10.1992 -23.5996 -11.5 -33.7998 -3s-11.5996 23.6006 -3.09961 33.8008\\nc21.5996 25.7998 53.2002 40.5996 86.7998 40.5996zM200 208c0 -17.7002 -14.2998 -32.0996 -32 -32.0996s-32 14.2998 -32 32c0 6.19922 2.2002 11.6992 5.2998 16.5996l-28.2002 8.5c-12.6992 3.7998 -19.8994 17.2002 -16.0996 29.9004\\nc3.7998 12.6992 17.0996 20 29.9004 16.0996l80 -24c12.6992 -3.7998 19.8994 -17.2002 16.0996 -29.9004c-3.09961 -10.3994 -12.7002 -17.0996 -23 -17.0996zM399 262.9c3.7998 -12.7002 -3.40039 -26.1006 -16.0996 -29.8008l-28.2002 -8.5\\nc3.09961 -4.89941 5.2998 -10.3994 5.2998 -16.5996c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32c-10.2998 0 -19.9004 6.7002 -23 17.0996c-3.7998 12.7002 3.40039 26.1006 16.0996 29.9004l80 24c12.8008 3.7998 26.1006 -3.40039 29.9004 -16.0996z\\\" />\\n    <glyph glyph-name=\\\"dizzy\\\" unicode=\\\"&#xf567;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM214.2 209.9\\nc-7.90039 -7.90039 -20.5 -7.90039 -28.4004 -0.200195l-17.7998 17.7998l-17.7998 -17.7998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0c-7.80078 7.7998 -7.80078 20.5 0 28.2998l17.8994 17.9004l-17.8994 17.8994c-7.80078 7.7998 -7.80078 20.5 0 28.2998\\nc7.7998 7.80078 20.5 7.80078 28.2998 0l17.7998 -17.7998l17.9004 17.9004c7.7998 7.7998 20.5 7.7998 28.2998 0s7.7998 -20.5 0 -28.2998l-17.9004 -17.9004l17.9004 -17.7998c7.7998 -7.7998 7.7998 -20.5 0 -28.2998zM374.2 302.1\\nc7.7002 -7.7998 7.7002 -20.3994 0 -28.1992l-17.9004 -17.9004l17.7998 -18c7.80078 -7.7998 7.80078 -20.5 0 -28.2998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0l-17.7998 17.7998l-17.7998 -17.7998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0\\nc-7.80078 7.7998 -7.80078 20.5 0 28.2998l17.8994 17.9004l-17.8994 17.8994c-7.80078 7.7998 -7.80078 20.5 0 28.2998c7.7998 7.80078 20.5 7.80078 28.2998 0l17.7998 -17.7998l17.9004 17.7998c7.7998 7.80078 20.5 7.80078 28.2998 0zM248 176\\nc35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64s-64 28.7002 -64 64s28.7002 64 64 64z\\\" />\\n    <glyph glyph-name=\\\"flushed\\\" unicode=\\\"&#xf579;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM344 304c44.2002 0 80 -35.7998 80 -80s-35.7998 -80 -80 -80\\ns-80 35.7998 -80 80s35.7998 80 80 80zM344 176c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM344 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM232 224c0 -44.2002 -35.7998 -80 -80 -80\\ns-80 35.7998 -80 80s35.7998 80 80 80s80 -35.7998 80 -80zM152 176c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM152 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM312 104\\nc13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-128c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h128z\\\" />\\n    <glyph glyph-name=\\\"frown-open\\\" unicode=\\\"&#xf57a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM200 240c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32\\ns14.2998 32 32 32s32 -14.2998 32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM248 160c35.5996 0 88.7998 -21.2998 95.7998 -61.2002c2 -11.7998 -9.09961 -21.5996 -20.5 -18.0996\\nc-31.2002 9.59961 -59.3994 15.2998 -75.2998 15.2998s-44.0996 -5.7002 -75.2998 -15.2998c-11.5 -3.40039 -22.5 6.2998 -20.5 18.0996c7 39.9004 60.2002 61.2002 95.7998 61.2002z\\\" />\\n    <glyph glyph-name=\\\"grimace\\\" unicode=\\\"&#xf57f;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM344 192c26.5 0 48 -21.5 48 -48v-32c0 -26.5 -21.5 -48 -48 -48h-192c-26.5 0 -48 21.5 -48 48v32c0 26.5 21.5 48 48 48\\nh192zM176 96v24h-40v-8c0 -8.7998 7.2002 -16 16 -16h24zM176 136v24h-24c-8.7998 0 -16 -7.2002 -16 -16v-8h40zM240 96v24h-48v-24h48zM240 136v24h-48v-24h48zM304 96v24h-48v-24h48zM304 136v24h-48v-24h48zM360 112v8h-40v-24h24c8.7998 0 16 7.2002 16 16zM360 136v8\\nc0 8.7998 -7.2002 16 -16 16h-24v-24h40z\\\" />\\n    <glyph glyph-name=\\\"grin\\\" unicode=\\\"&#xf580;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008\\nc-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 9.90039 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z\\\" />\\n    <glyph glyph-name=\\\"grin-alt\\\" unicode=\\\"&#xf581;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M200.3 200c-7.5 -11.4004 -24.5996 -12 -32.7002 0c-12.3994 18.7002 -15.1992 37.2998 -15.6992 56c0.599609 18.7002 3.2998 37.2998 15.6992 56c7.60059 11.4004 24.7002 12 32.7002 0c12.4004 -18.7002 15.2002 -37.2998 15.7002 -56\\nc-0.599609 -18.7002 -3.2998 -37.2998 -15.7002 -56zM328.3 200c-7.5 -11.4004 -24.5996 -12 -32.7002 0c-12.3994 18.7002 -15.1992 37.2998 -15.6992 56c0.599609 18.7002 3.2998 37.2998 15.6992 56c7.60059 11.4004 24.7002 12 32.7002 0\\nc12.4004 -18.7002 15.2002 -37.2998 15.7002 -56c-0.599609 -18.7002 -3.2998 -37.2998 -15.7002 -56zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200\\ns-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006\\ns79.7002 4.7998 105.6 13.1006z\\\" />\\n    <glyph glyph-name=\\\"grin-beam\\\" unicode=\\\"&#xf582;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008\\nc-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM117.7 216.3c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998\\nc3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996\\nl-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002zM277.7 216.3c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998\\nc-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002z\\\" />\\n    <glyph glyph-name=\\\"grin-beam-sweat\\\" unicode=\\\"&#xf583;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M440 288c-29.5 0 -53.2998 26.2998 -53.2998 58.7002c0 25 31.7002 75.5 46.2002 97.2998c3.5 5.2998 10.5996 5.2998 14.1992 0c14.5 -21.7998 46.2002 -72.2998 46.2002 -97.2998c0 -32.4004 -23.7998 -58.7002 -53.2998 -58.7002zM248 48\\nc-51.9004 0 -115.3 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-8 -47.0996 -71.3994 -80 -123.3 -80zM378.3 216.3\\nc-3.09961 -0.899414 -7.2002 0.100586 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998\\nc3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998zM483.6 269.2c8 -24.2998 12.4004 -50.2002 12.4004 -77.2002c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248\\nc45.7002 0 88.4004 -12.5996 125.2 -34.2002c-10.9004 -21.5996 -15.5 -36.2002 -17.2002 -45.7002c-31.2002 20.1006 -68.2002 31.9004 -108 31.9004c-110.3 0 -200 -89.7002 -200 -200s89.7002 -200 200 -200s200 89.7002 200 200\\nc0 22.5 -3.90039 44.0996 -10.7998 64.2998c0.399414 0 21.7998 -2.7998 46.3994 12.9004zM168 258.6c-12.2998 0 -23.7998 -7.7998 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998\\nc3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996z\\\" />\\n    <glyph glyph-name=\\\"grin-hearts\\\" unicode=\\\"&#xf584;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM200.8 192.3\\nl-70.2002 18.1006c-20.3994 5.2998 -31.8994 27 -24.1992 47.1992c6.69922 17.7002 26.6992 26.7002 44.8994 22l7.10059 -1.89941l2 7.09961c5.09961 18.1006 22.8994 30.9004 41.5 27.9004c21.3994 -3.40039 34.3994 -24.2002 28.7998 -44.5l-19.4004 -69.9004\\nc-1.2998 -4.5 -6 -7.2002 -10.5 -6zM389.6 257.6c7.7002 -20.1992 -3.7998 -41.7998 -24.1992 -47.0996l-70.2002 -18.2002c-4.60059 -1.2002 -9.2998 1.5 -10.5 6l-19.4004 69.9004c-5.59961 20.2998 7.40039 41.0996 28.7998 44.5c18.7002 3 36.5 -9.7998 41.5 -27.9004\\nl2 -7.09961l7.10059 1.89941c18.2002 4.7002 38.2002 -4.39941 44.8994 -22zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200\\ns89.7002 -200 200 -200z\\\" />\\n    <glyph glyph-name=\\\"grin-squint\\\" unicode=\\\"&#xf585;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008\\nc-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 9.90039 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM118.9 184.2c-3.80078 4.39941 -3.90039 11 -0.100586 15.5l33.6006 40.2998\\nl-33.6006 40.2998c-3.7002 4.5 -3.7002 11 0.100586 15.5c3.89941 4.40039 10.1992 5.5 15.2998 2.5l80 -48c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998s-2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7002 -1.7002 -15.2998 2.5zM361.8 181.7\\nl-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5.10059 2.90039 11.5 1.90039 15.2998 -2.5c3.80078 -4.5 3.90039 -11 0.100586 -15.5l-33.6006 -40.2998l33.6006 -40.2998c3.7002 -4.5 3.7002 -11 -0.100586 -15.5\\nc-3.59961 -4.2002 -9.89941 -5.7002 -15.2998 -2.5z\\\" />\\n    <glyph glyph-name=\\\"grin-squint-tears\\\" unicode=\\\"&#xf586;\\\" \\nd=\\\"M117.1 63.9004c6.30078 0.899414 11.7002 -4.5 10.9004 -10.9004c-3.7002 -25.7998 -13.7002 -84 -30.5996 -100.9c-22 -21.8994 -57.9004 -21.5 -80.3008 0.900391c-22.3994 22.4004 -22.7998 58.4004 -0.899414 80.2998\\nc16.8994 16.9004 75.0996 26.9004 100.899 30.6006zM75.9004 105.6c-19.6006 -3.89941 -35.1006 -8.09961 -47.3008 -12.1992c-39.2998 90.5996 -22.0996 199.899 52 274c48.5 48.3994 111.9 72.5996 175.4 72.5996c38.9004 0 77.7998 -9.2002 113.2 -27.4004\\nc-4 -12.1992 -8.2002 -28 -12 -48.2998c-30.4004 17.9004 -65 27.7002 -101.2 27.7002c-53.4004 0 -103.6 -20.7998 -141.4 -58.5996c-61.5996 -61.5 -74.2998 -153.4 -38.6992 -227.801zM428.2 293.2c20.2998 3.89941 36.2002 8 48.5 12\\nc47.8994 -93.2002 32.8994 -210.5 -45.2002 -288.601c-48.5 -48.3994 -111.9 -72.5996 -175.4 -72.5996c-33.6992 0 -67.2998 7 -98.6992 20.5996c4.19922 12.2002 8.2998 27.7002 12.1992 47.2002c26.6006 -12.7998 55.9004 -19.7998 86.4004 -19.7998\\nc53.4004 0 103.6 20.7998 141.4 58.5996c65.6992 65.7002 75.7998 166 30.7998 242.601zM394.9 320.1c-6.30078 -0.899414 -11.7002 4.5 -10.9004 10.9004c3.7002 25.7998 13.7002 84 30.5996 100.9c22 21.8994 57.9004 21.5 80.3008 -0.900391\\nc22.3994 -22.4004 22.7998 -58.4004 0.899414 -80.2998c-16.8994 -16.9004 -75.0996 -26.9004 -100.899 -30.6006zM207.9 211.8c3 -3 4.19922 -7.2998 3.19922 -11.5l-22.5996 -90.5c-1.40039 -5.39941 -6.2002 -9.09961 -11.7002 -9.09961h-0.899414\\nc-5.80078 0.5 -10.5 5.09961 -11 10.8994l-4.80078 52.3008l-52.2998 4.7998c-5.7998 0.5 -10.3994 5.2002 -10.8994 11c-0.400391 5.89941 3.39941 11.2002 9.09961 12.5996l90.5 22.7002c4.2002 1 8.40039 -0.200195 11.4004 -3.2002zM247.6 236.9\\nc-0.0996094 0 -6.39941 -1.80078 -11.3994 3.19922c-3 3 -4.2002 7.30078 -3.2002 11.4004l22.5996 90.5c1.40039 5.7002 7 9.2002 12.6006 9.09961c5.7998 -0.5 10.5 -5.09961 11 -10.8994l4.7998 -52.2998l52.2998 -4.80078c5.7998 -0.5 10.4004 -5.19922 10.9004 -11\\nc0.399414 -5.89941 -3.40039 -11.1992 -9.10059 -12.5996zM299.6 148.4c29.1006 29.0996 53 59.5996 65.3008 83.7998c4.89941 9.2998 17.5996 9.89941 23.3994 1.7002c27.7002 -38.9004 6.10059 -106.9 -30.5996 -143.7s-104.8 -58.2998 -143.7 -30.6006\\nc-8.2998 5.90039 -7.5 18.6006 1.7002 23.4004c24.2002 12.5 54.7998 36.2998 83.8994 65.4004z\\\" />\\n    <glyph glyph-name=\\\"grin-stars\\\" unicode=\\\"&#xf587;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008\\nc-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM125.7 200.9l6.09961 34.8994l-25.3994 24.6006\\nc-4.60059 4.59961 -1.90039 12.2998 4.2998 13.1992l34.8994 5l15.5 31.6006c2.90039 5.7998 11 5.7998 13.9004 0l15.5 -31.6006l34.9004 -5c6.19922 -1 8.7998 -8.69922 4.2998 -13.1992l-25.4004 -24.6006l6 -34.8994c1 -6.2002 -5.39941 -11 -11 -7.90039\\nl-31.2998 16.2998l-31.2998 -16.2998c-5.60059 -3.09961 -12 1.7002 -11 7.90039zM385.4 273.6c6.19922 -1 8.89941 -8.59961 4.39941 -13.1992l-25.3994 -24.6006l6 -34.8994c1 -6.2002 -5.40039 -11 -11 -7.90039l-31.3008 16.2998l-31.2998 -16.2998\\nc-5.59961 -3.09961 -12 1.7002 -11 7.90039l6 34.8994l-25.3994 24.6006c-4.60059 4.59961 -1.90039 12.2998 4.2998 13.1992l34.8994 5l15.5 31.6006c2.90039 5.7998 11 5.7998 13.9004 0l15.5 -31.6006z\\\" />\\n    <glyph glyph-name=\\\"grin-tears\\\" unicode=\\\"&#xf588;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M117.1 191.9c6.30078 0.899414 11.7002 -4.5 10.9004 -10.9004c-3.7002 -25.7998 -13.7002 -84 -30.5996 -100.9c-22 -21.8994 -57.9004 -21.5 -80.3008 0.900391c-22.3994 22.4004 -22.7998 58.4004 -0.899414 80.2998c16.8994 16.9004 75.0996 26.9004 100.899 30.6006\\nzM623.8 161.3c21.9004 -21.8994 21.5 -57.8994 -0.799805 -80.2002c-22.4004 -22.3994 -58.4004 -22.7998 -80.2998 -0.899414c-16.9004 16.8994 -26.9004 75.0996 -30.6006 100.899c-0.899414 6.30078 4.5 11.7002 10.8008 10.8008\\nc25.7998 -3.7002 84 -13.7002 100.899 -30.6006zM497.2 99.5996c12.3994 -37.2998 25.0996 -43.7998 28.2998 -46.5c-44.5996 -65.7998 -120 -109.1 -205.5 -109.1s-160.9 43.2998 -205.5 109.1c3.09961 2.60059 15.7998 9.10059 28.2998 46.5\\nc33.4004 -63.8994 100.3 -107.6 177.2 -107.6s143.8 43.7002 177.2 107.6zM122.7 223.5c-2.40039 0.299805 -5 2.5 -49.5 -6.90039c12.3994 125.4 118.1 223.4 246.8 223.4s234.4 -98 246.8 -223.5c-44.2998 9.40039 -47.3994 7.2002 -49.5 7\\nc-15.2002 95.2998 -97.7998 168.5 -197.3 168.5s-182.1 -73.2002 -197.3 -168.5zM320 48c-51.9004 0 -115.3 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996\\nc10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-8 -47.0996 -71.3994 -80 -123.3 -80zM450.3 216.3c-3.09961 -0.899414 -7.2002 0.100586 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17\\nc-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998zM240 258.6\\nc-12.2998 0 -23.7998 -7.7998 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004\\nc0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996z\\\" />\\n    <glyph glyph-name=\\\"grin-tongue\\\" unicode=\\\"&#xf589;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0\\nl-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200\\ns-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996\\ns79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998zM168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32\\ns14.2998 32 32 32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"grin-tongue-squint\\\" unicode=\\\"&#xf58a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0\\nl-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200\\ns-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996\\ns79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998zM377.1 295.8c3.80078 -4.39941 3.90039 -11 0.100586 -15.5l-33.6006 -40.2998\\nl33.6006 -40.2998c3.7002 -4.5 3.7002 -11 -0.100586 -15.5c-3.59961 -4.2002 -9.89941 -5.7002 -15.2998 -2.5l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5 3 11.5 1.90039 15.2998 -2.5zM214.2 250.3\\nc3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998s-2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7002 -1.7002 -15.2998 2.5c-3.80078 4.5 -3.90039 11 -0.100586 15.5l33.6006 40.2998l-33.6006 40.2998c-3.7002 4.5 -3.7002 11 0.100586 15.5\\nc3.89941 4.5 10.2998 5.5 15.2998 2.5z\\\" />\\n    <glyph glyph-name=\\\"grin-tongue-wink\\\" unicode=\\\"&#xf58b;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M152 268c25.7002 0 55.9004 -16.9004 59.7998 -42.0996c0.799805 -5 -1.7002 -10 -6.09961 -12.4004c-5.7002 -3.09961 -11.2002 -0.599609 -13.7002 1.59961l-9.5 8.5c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5\\nc-3.7998 -3.39941 -9.2998 -4 -13.7002 -1.59961c-4.39941 2.40039 -6.89941 7.40039 -6.09961 12.4004c3.89941 25.1992 34.0996 42.0996 59.7998 42.0996zM328 320c44.2002 0 80 -35.7998 80 -80s-35.7998 -80 -80 -80s-80 35.7998 -80 80s35.7998 80 80 80zM328 192\\nc26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM328 264c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248z\\nM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998\\nc0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3\\nc-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998\\nc-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-wink\\\" unicode=\\\"&#xf58c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M328 268c25.6904 0 55.8799 -16.9199 59.8701 -42.1201c1.72949 -11.0898 -11.3506 -18.2695 -19.8301 -10.8398l-9.5498 8.47949c-14.8105 13.1904 -46.1602 13.1904 -60.9707 0l-9.5498 -8.47949c-8.33008 -7.40039 -21.5801 -0.379883 -19.8301 10.8398\\nc3.98047 25.2002 34.1699 42.1201 59.8604 42.1201zM168 208c-17.6699 0 -32 14.3301 -32 32s14.3301 32 32 32s32 -14.3301 32 -32s-14.3301 -32 -32 -32zM353.55 143.36c10.04 3.13965 19.3906 -5.4502 17.71 -15.3408\\nc-7.92969 -47.1494 -71.3193 -80.0195 -123.26 -80.0195s-115.33 32.8701 -123.26 80.0195c-1.69043 9.9707 7.76953 18.4707 17.71 15.3408c25.9297 -8.31055 64.3994 -13.0605 105.55 -13.0605s79.6201 4.75977 105.55 13.0605zM248 440c136.97 0 248 -111.03 248 -248\\ns-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 -8c110.28 0 200 89.7197 200 200s-89.7197 200 -200 200s-200 -89.7197 -200 -200s89.7197 -200 200 -200z\\\" />\\n    <glyph glyph-name=\\\"kiss\\\" unicode=\\\"&#xf596;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM304 140c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5\\nc-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002\\nc12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM248 440c137 0 248 -111 248 -248\\ns-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z\\n\\\" />\\n    <glyph glyph-name=\\\"kiss-beam\\\" unicode=\\\"&#xf597;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M168 296c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.299805 -3.7998 -2 -7.19922 -5.59961 -8.2998c-3.10059 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996c-12.3008 0 -23.8008 -7.89941 -31.5 -21.5996l-9.5 -17\\nc-1.80078 -3.2002 -5.80078 -4.7002 -9.30078 -3.7002c-3.59961 1.10059 -5.89941 4.60059 -5.59961 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8\\nc110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM304 140c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5\\nc-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002\\nc12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM328 296\\nc23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.299805 -3.7998 -2 -7.19922 -5.59961 -8.2998c-3.10059 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996c-12.3008 0 -23.8008 -7.89941 -31.5 -21.5996l-9.5 -17\\nc-1.80078 -3.2002 -5.80078 -4.7002 -9.30078 -3.7002c-3.59961 1.10059 -5.89941 4.60059 -5.59961 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004z\\\" />\\n    <glyph glyph-name=\\\"kiss-wink-heart\\\" unicode=\\\"&#xf598;\\\" horiz-adv-x=\\\"504\\\" \\nd=\\\"M304 139.5c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002\\nc12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002\\nc0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM374.5 223c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-2.5 -2.2998 -7.90039 -4.7002 -13.7002 -1.59961c-4.39941 2.39941 -6.89941 7.39941 -6.09961 12.3994\\nc3.89941 25.2002 34.2002 42.1006 59.7998 42.1006s55.7998 -16.9004 59.7998 -42.1006c0.799805 -5 -1.7002 -10 -6.09961 -12.3994c-4.40039 -2.40039 -9.90039 -1.7002 -13.7002 1.59961zM136 239.5c0 17.7002 14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32\\ns-32 14.2998 -32 32zM501.1 45.5c9.2002 -23.9004 -4.39941 -49.4004 -28.5 -55.7002l-83 -21.5c-5.39941 -1.39941 -10.8994 1.7998 -12.3994 7.10059l-22.9004 82.5996c-6.59961 24 8.7998 48.5996 34 52.5996c22 3.5 43.1006 -11.5996 49 -33l2.2998 -8.39941\\nl8.40039 2.2002c21.5996 5.59961 45.0996 -5.10059 53.0996 -25.9004zM334 11.7002c17.7002 -64 10.9004 -39.5 13.4004 -46.7998c-30.5 -13.4004 -64 -20.9004 -99.4004 -20.9004c-137 0 -248 111 -248 248s111 248 248 248s248 -111 247.9 -248\\nc0 -31.7998 -6.2002 -62.0996 -17.1006 -90c-6 1.5 -12.2002 2.7998 -18.5996 2.90039c-5.60059 9.69922 -13.6006 17.5 -22.6006 23.8994c6.7002 19.9004 10.4004 41.1006 10.4004 63.2002c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200\\nc30.7998 0 59.9004 7.2002 86 19.7002z\\\" />\\n    <glyph glyph-name=\\\"laugh\\\" unicode=\\\"&#xf599;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996\\nc-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 224c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM168 224\\nc-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z\\\" />\\n    <glyph glyph-name=\\\"laugh-beam\\\" unicode=\\\"&#xf59a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996\\nc-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 296c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.700195 -8.5 -10.7998 -11.8994 -14.8994 -4.5\\nl-9.5 17c-7.7002 13.7002 -19.2002 21.6006 -31.5 21.6006c-12.3008 0 -23.8008 -7.90039 -31.5 -21.6006l-9.5 -17c-4.10059 -7.39941 -15.6006 -4.09961 -14.9004 4.5c3.2998 42.1006 32.2002 71.4004 56 71.4004zM127 220.1c-4.2002 -7.39941 -15.7002 -4 -15.0996 4.5\\nc3.2998 42.1006 32.1992 71.4004 56 71.4004c23.7998 0 52.6992 -29.2998 56 -71.4004c0.699219 -8.5 -10.8008 -11.8994 -14.9004 -4.5l-9.5 17c-7.7002 13.7002 -19.2002 21.6006 -31.5 21.6006s-23.7998 -7.90039 -31.5 -21.6006zM362.4 160c8.19922 0 14.5 -7 13.5 -15\\nc-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z\\\" />\\n    <glyph glyph-name=\\\"laugh-squint\\\" unicode=\\\"&#xf59b;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996\\nc-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM343.6 252l33.6006 -40.2998c8.59961 -10.4004 -3.90039 -24.7998 -15.4004 -18l-80 48\\nc-7.7998 4.7002 -7.7998 15.8994 0 20.5996l80 48c11.6006 6.7998 24 -7.7002 15.4004 -18zM134.2 193.7c-11.6006 -6.7998 -24.1006 7.59961 -15.4004 18l33.6006 40.2998l-33.6006 40.2998c-8.59961 10.2998 3.7998 24.9004 15.4004 18l80 -48\\nc7.7998 -4.7002 7.7998 -15.8994 0 -20.5996zM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z\\\" />\\n    <glyph glyph-name=\\\"laugh-wink\\\" unicode=\\\"&#xf59c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996\\nc-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 284c25.7002 0 55.9004 -16.9004 59.7002 -42.0996c1.7998 -11.1006 -11.2998 -18.2002 -19.7998 -10.8008\\nl-9.5 8.5c-14.8008 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-8.30078 -7.39941 -21.5 -0.399414 -19.8008 10.8008c4 25.1992 34.2002 42.0996 59.9004 42.0996zM168 224c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z\\nM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z\\\" />\\n    <glyph glyph-name=\\\"meh-blank\\\" unicode=\\\"&#xf5a4;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32\\ns-32 14.2998 -32 32s14.2998 32 32 32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"meh-rolling-eyes\\\" unicode=\\\"&#xf5a5;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM336 296c39.7998 0 72 -32.2002 72 -72s-32.2002 -72 -72 -72\\ns-72 32.2002 -72 72s32.2002 72 72 72zM336 184c22.0996 0 40 17.9004 40 40c0 13.5996 -7.2998 25.0996 -17.7002 32.2998c1 -2.59961 1.7002 -5.39941 1.7002 -8.2998c0 -13.2998 -10.7002 -24 -24 -24s-24 10.7002 -24 24c0 3 0.700195 5.7002 1.7002 8.2998\\nc-10.4004 -7.2002 -17.7002 -18.7002 -17.7002 -32.2998c0 -22.0996 17.9004 -40 40 -40zM232 224c0 -39.7998 -32.2002 -72 -72 -72s-72 32.2002 -72 72s32.2002 72 72 72s72 -32.2002 72 -72zM120 224c0 -22.0996 17.9004 -40 40 -40s40 17.9004 40 40\\nc0 13.5996 -7.2998 25.0996 -17.7002 32.2998c1 -2.59961 1.7002 -5.39941 1.7002 -8.2998c0 -13.2998 -10.7002 -24 -24 -24s-24 10.7002 -24 24c0 3 0.700195 5.7002 1.7002 8.2998c-10.4004 -7.2002 -17.7002 -18.7002 -17.7002 -32.2998zM312 96\\nc13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-128c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h128z\\\" />\\n    <glyph glyph-name=\\\"sad-cry\\\" unicode=\\\"&#xf5b3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM392 53.5996c34.5996 35.9004 56 84.7002 56 138.4c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -53.7002 21.4004 -102.4 56 -138.4v114.4\\nc0 13.2002 10.7998 24 24 24s24 -10.7998 24 -24v-151.4c28.5 -15.5996 61.2002 -24.5996 96 -24.5996s67.5 9 96 24.5996v151.4c0 13.2002 10.7998 24 24 24s24 -10.7998 24 -24v-114.4zM205.8 213.5c-5.7998 -3.2002 -11.2002 -0.700195 -13.7002 1.59961l-9.5 8.5\\nc-14.7998 13.2002 -46.1992 13.2002 -61 0l-9.5 -8.5c-3.7998 -3.39941 -9.2998 -4 -13.6992 -1.59961c-4.40039 2.40039 -6.90039 7.40039 -6.10059 12.4004c3.90039 25.1992 34.2002 42.0996 59.7998 42.0996c25.6006 0 55.8008 -16.9004 59.8008 -42.0996\\nc0.799805 -5 -1.7002 -10 -6.10059 -12.4004zM344 268c25.7002 0 55.9004 -16.9004 59.7998 -42.0996c0.799805 -5 -1.7002 -10 -6.09961 -12.4004c-5.7002 -3.09961 -11.2002 -0.599609 -13.7002 1.59961l-9.5 8.5c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5\\nc-3.7998 -3.39941 -9.2002 -4 -13.7002 -1.59961c-4.39941 2.40039 -6.89941 7.40039 -6.09961 12.4004c3.89941 25.1992 34.0996 42.0996 59.7998 42.0996zM248 176c30.9004 0 56 -28.7002 56 -64s-25.0996 -64 -56 -64s-56 28.7002 -56 64s25.0996 64 56 64z\\\" />\\n    <glyph glyph-name=\\\"sad-tear\\\" unicode=\\\"&#xf5b4;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM256 144c38.0996 0 74 -16.7998 98.5 -46.0996\\nc8.5 -10.2002 7.09961 -25.3008 -3.09961 -33.8008c-10.6006 -8.7998 -25.7002 -6.69922 -33.8008 3.10059c-15.2998 18.2998 -37.7998 28.7998 -61.5996 28.7998c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM162.4 173.2c2.7998 3.7002 8.39941 3.7002 11.1992 0c11.4004 -15.2998 36.4004 -50.6006 36.4004 -68.1006\\nc0 -22.6992 -18.7998 -41.0996 -42 -41.0996s-42 18.4004 -42 41.0996c0 17.5 25 52.8008 36.4004 68.1006z\\\" />\\n    <glyph glyph-name=\\\"smile-beam\\\" unicode=\\\"&#xf5b8;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM332 135.4c8.5 10.1992 23.5996 11.5 33.7998 3.09961\\nc10.2002 -8.5 11.6006 -23.5996 3.10059 -33.7998c-30 -36 -74.1006 -56.6006 -120.9 -56.6006s-90.9004 20.6006 -120.9 56.6006c-8.39941 10.2002 -7.09961 25.2998 3.10059 33.7998c10.2002 8.40039 25.2998 7.09961 33.7998 -3.09961\\nc20.7998 -25.1006 51.5 -39.4004 84 -39.4004s63.2002 14.4004 84 39.4004zM136.5 237l-9.5 -17c-1.90039 -3.2002 -5.90039 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004\\nc0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996zM328 296c23.7998 0 52.7002 -29.2998 56 -71.4004\\nc0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002\\nc-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004z\\\" />\\n    <glyph glyph-name=\\\"surprise\\\" unicode=\\\"&#xf5c2;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM248 168c35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64\\ns-64 28.7002 -64 64s28.7002 64 64 64zM200 240c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"tired\\\" unicode=\\\"&#xf5c8;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM377.1 295.8c3.80078 -4.39941 3.90039 -11 0.100586 -15.5\\nl-33.6006 -40.2998l33.6006 -40.2998c3.7998 -4.5 3.7002 -11 -0.100586 -15.5c-3.5 -4.10059 -9.89941 -5.7002 -15.2998 -2.5l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5 2.90039 11.5 1.90039 15.2998 -2.5z\\nM220 240c0 -4.2002 -2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7998 -1.60059 -15.2998 2.5c-3.80078 4.5 -3.90039 11 -0.100586 15.5l33.6006 40.2998l-33.6006 40.2998c-3.7998 4.5 -3.7002 11 0.100586 15.5\\nc3.7998 4.40039 10.2998 5.5 15.2998 2.5l80 -48c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998zM248 176c45.4004 0 100.9 -38.2998 107.8 -93.2998c1.5 -11.9004 -7 -21.6006 -15.5 -17.9004c-22.7002 9.7002 -56.2998 15.2002 -92.2998 15.2002\\ns-69.5996 -5.5 -92.2998 -15.2002c-8.60059 -3.7002 -17 6.10059 -15.5 17.9004c6.89941 55 62.3994 93.2998 107.8 93.2998z\\\" />\\n  </font>\\n</defs></svg>\\n\"\nvar _Assetsc8e5f53dbe9ae4243f36350d1e222609f6af178b = \"\\x12\\xf6\\x02\\x00\\xf4\\xf4\\x02\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x84\\x03\\x00\\x00\\x00\\x00LP\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xfcKb3\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00\\x00\\n\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00\\x00L\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00\\x002\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\r\\x00\\x80\\x00\\x03\\x00PFFTM\\x8d\\x96\\xb6\\x16\\x00\\x02\\xf4\\xd8\\x00\\x00\\x00\\x1cGDEF\\x00*\\x03\\xcd\\x00\\x02\\xf4\\xb8\\x00\\x00\\x00\\x1eOS/2C\\x82V\\xa0\\x00\\x00\\x01X\\x00\\x00\\x00`cmap\\x19M%\\xeb\\x00\\x00\\x10\\xd4\\x00\\x00\\f\\xaegasp\\xff\\xff\\x00\\x03\\x00\\x02\\xf4\\xb0\\x00\\x00\\x00\\bglyfk\\x89U\\xec\\x00\\x00,\\xa4\\x00\\x02\\x93\\xc4head\\x17\\x15\\x91\\x1e\\x00\\x00\\x00\\xdc\\x00\\x00\\x006hhea\\x04C\\x06\\a\\x00\\x00\\x01\\x14\\x00\\x00\\x00$hmtxo\\xcd\\x02\\xe8\\x00\\x00\\x01\\xb8\\x00\\x00\\x0f\\x1aloca\\x04xڴ\\x00\\x00\\x1d\\x84\\x00\\x00\\x0f maxp\\x04)\\x01S\\x00\\x00\\x018\\x00\\x00\\x00 name\\x1d\\xac'$\\x00\\x02\\xc0h\\x00\\x00\\x05+post7\\f\\x86\\x8f\\x00\\x02Ŕ\\x00\\x00/\\x19\\x00\\x01\\x00\\x00\\x01J\\xc0\\x833bK\\xfc_\\x0f<\\xf5\\x00\\v\\x02\\x00\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\\xff\\xec\\xff\\xb4\\x02\\x95\\x01\\xcd\\x00\\x00\\x00\\b\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xc0\\xff\\xc0\\x00\\x00\\x02\\x80\\xff\\xec\\x00\\x00\\x02\\x95\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\xc6\\x00\\x01\\x00\\x00\\x03\\xc7\\x01P\\x00 \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x01\\xf9\\x03\\x84\\x00\\x05\\x00\\x00\\x01L\\x01f\\x00\\x00\\x00G\\x01L\\x01f\\x00\\x00\\x00\\xf5\\x00\\x19\\x00\\x84\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00PfEd\\x00\\x80\\xf0\\x00\\xf9A\\x01\\xc0\\xff\\xc0\\x00.\\x01\\xcc\\x00T\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01:\\x01\\xa5\\x00\\x00\\x00 \\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xaa\\x00\\x00\\x02\\x00\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfe\\x02@\\x00\\x0f\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01`\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x80\\x00\\x18\\x02\\x00\\x00\\x10\\x02@\\x00\\x00\\x02\\x00\\x00\\b\\x02@\\xff\\xfc\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x12\\x01@\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x01`\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00@\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00@\\x01\\xc0\\xff\\xf8\\x01@\\x00\\x1b\\x01@\\x00\\x1b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x05\\x01\\xc0\\x00\\x05\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x13\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02@\\xff\\xfe\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\xff\\xf9\\x02@\\xff\\xff\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x05\\x01\\xc0\\x00\\x05\\x02\\x80\\x00\\x03\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfb\\x02@\\xff\\xff\\x02@\\x00\\x0f\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x00\\xff\\xfd\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\xff\\xf5\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01@\\x00\\a\\x01@\\x00\\a\\x00\\xc0\\x00\\x17\\x00\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\r\\x01@\\x00\\r\\x01@\\x00\\r\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\xff\\xff\\x01\\xc0\\x00\\x00\\x01`\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x18\\x01\\xc0\\x00\\x18\\x01@\\x00\\x00\\x01@\\x00\\x00\\x01\\x00\\x00\\x18\\x01\\x00\\x00\\x18\\x01@\\x00\\x00\\x01@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfb\\x02@\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x18\\x00\\xc0\\x00\\x00\\x00\\xc0\\x00\\x10\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01`\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x01\\xc0\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02@\\xff\\xff\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\b\\x00\\xc0\\x00\\x18\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01@\\x00\\x00\\x01@\\x00\\x00\\x01 \\xff\\xfd\\x01@\\x00\\x00\\x01\\x80\\x00\\x13\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x00\\xff\\xfe\\x02\\x00\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x05\\x00\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x1b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x10\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\x80\\xff\\xfc\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\a\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x10\\x01\\xc0\\x00 \\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02 \\xff\\xfd\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01 \\x00\\x00\\x01\\x80\\x00\\x00\\x01 \\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xe0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01 \\x00\\x00\\x01\\xe0\\x00\\x00\\x01 \\x00\\x00\\x01 \\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01@\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfe\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfd\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01 \\x00\\x00\\x02\\x00\\xff\\xfa\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\xff\\xfd\\x02\\x00\\x00\\b\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\xff\\xf5\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfb\\x02\\x00\\xff\\xfc\\x01\\xc0\\x00\\x00\\x02@\\xff\\xf9\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfb\\x02\\x00\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x10\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\a\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xff\\x01\\x00\\x00\\r\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x00\\x00\\r\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\r\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01@\\xff\\xfe\\x01@\\xff\\xfe\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01`\\x00\\x00\\x01@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x10\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfa\\x01\\xc0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\xff\\xfd\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xe0\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x00\\xff\\xff\\x02\\x80\\xff\\xfa\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfe\\x02@\\xff\\xfe\\x01\\xc0\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01 \\xff\\xfc\\x02\\x80\\xff\\xfa\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\xff\\xfe\\x01\\xc0\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xf8\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02h\\xff\\xf5\\x02\\x80\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xff\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\xff\\xfc\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xff\\x02@\\xff\\xff\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\xff\\xfb\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf8\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02 \\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf8\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xfe\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xff\\x01\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xf5\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x18\\xff\\xfc\\x01\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x01\\xf0\\x00\\x00\\x01\\xc0\\xff\\xf6\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfc\\x01 \\xff\\xfc\\x01\\x80\\xff\\xfd\\x01\\xc0\\xff\\xfd\\x01\\xc0\\xff\\xed\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xe0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xe0\\xff\\xff\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfe\\x02@\\x00\\x10\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\xff\\xf4\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfb\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xd0\\xff\\xfb\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfd\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xe0\\xff\\xff\\x01\\xc0\\x00\\x00\\x02@\\x00 \\x02\\x80\\xff\\xfd\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x02@\\xff\\xfa\\x01\\x80\\x00\\x00\\x02\\x80\\xff\\xf2\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x00\\x00\\x00\\x01\\xa0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\xff\\xff\\x02\\x80\\xff\\xfa\\x02@\\xff\\xfa\\x02@\\xff\\xff\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02@\\x00\\x00\\x02\\x80\\xff\\xfb\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\xff\\xfe\\x02\\x00\\x00\\x00\\x02@\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfe\\x02\\x00\\xff\\xfe\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\xff\\xff\\x02\\x80\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfe\\x02\\x00\\xff\\xff\\x01\\xf0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00 \\x02\\x00\\xff\\xfc\\x02\\x00\\xff\\xff\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfd\\x02@\\x00\\x00\\x01\\xc0\\xff\\xf7\\x02\\x00\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x80\\x00 \\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xf9\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\xc0\\xff\\xfa\\x02\\x00\\xff\\xff\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00 \\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xc0\\x00 \\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xff\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02\\x00\\xff\\xfe\\x02\\x00\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x01\\xc0\\xff\\xfe\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\x00\\x00\\x02\\x80\\xff\\xfc\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x1c\\x00\\x01\\x00\\x00\\x00\\x00\\n\\xa4\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x1c\\x00\\x04\\n\\x88\\x00\\x00\\x02\\x9e\\x02\\x00\\x00\\b\\x00\\x9e\\xf0\\x02\\xf0\\x05\\xf0\\x0e\\xf0\\x13\\xf0\\x15\\xf0\\x19\\xf0\\x1c\\xf0\\x1e\\xf0>\\xf0D\\xf0N\\xf0[\\xf0^\\xf0n\\xf0|\\xf0\\x80\\xf0\\x86\\xf0\\x89\\xf0\\x8d\\xf0\\x91\\xf0\\x95\\xf0\\x98\\xf0\\x9e\\xf0\\xa1\\xf0\\xae\\xf0\\xb2\\xf0\\xce\\xf0\\xd1\\xf0\\xde\\xf0\\xe0\\xf0\\xe3\\xf0\\xeb\\xf0\\xf4\\xf0\\xfe\\xf1\\v\\xf1\\x0e\\xf1\\x11\\xf1\\x1c\\xf1\\x1e\\xf1\\\"\\xf1.\\xf11\\xf15\\xf1:\\xf1>\\xf1D\\xf1F\\xf1K\\xf1N\\xf1Y\\xf1^\\xf1e\\xf1\\x83\\xf1\\x88\\xf1\\x93\\xf1\\x95\\xf1\\x97\\xf1\\x99\\xf1\\x9d\\xf1\\xae\\xf1\\xb0\\xf1\\xb3\\xf1\\xbb\\xf1\\xc9\\xf1\\xce\\xf1\\xd8\\xf1\\xda\\xf1\\xde\\xf1\\xe6\\xf1\\xec\\xf1\\xf6\\xf1\\xfe\\xf2\\x01\\xf2\\a\\xf2\\v\\xf2\\x18\\xf2\\x1e\\xf2-\\xf26\\xf29\\xf2I\\xf2N\\xf2]\\xf2l\\xf2w\\xf2z\\xf2\\x8b\\xf2\\x8d\\xf2\\x92\\xf2\\x95\\xf2\\x9a\\xf2\\x9e\\xf2\\xa4\\xf2\\xa8\\xf2\\xb6\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc2\\xf2\\xce\\xf2\\xd2\\xf2\\xdc\\xf2\\xe5\\xf2\\xe7\\xf2\\xea\\xf2\\xed\\xf2\\xf2\\xf2\\xf6\\xf2\\xf9\\xf2\\xfe\\xf3\\x05\\xf3\\f\\xf3\\x1e\\xf3(\\xf38\\xf3[\\xf3]\\xf3`\\xf3b\\xf3\\x82\\xf3\\xa5\\xf3\\xbf\\xf3\\xc1\\xf3\\xc5\\xf3\\xc9\\xf3\\xcd\\xf3\\xd1\\xf3\\xdd\\xf3\\xe0\\xf3\\xe5\\xf3\\xed\\xf3\\xfa\\xf3\\xfd\\xf3\\xff\\xf4\\x06\\xf4\\x10\\xf4\\\"\\xf4$\\xf44\\xf46\\xf4:\\xf4<\\xf4?\\xf4A\\xf4C\\xf4E\\xf4G\\xf4K\\xf4N\\xf4P\\xf4S\\xf4X\\xf4]\\xf4_\\xf4b\\xf4f\\xf4m\\xf4r\\xf4t\\xf4y\\xf4\\u007f\\xf4\\x82\\xf4\\x87\\xf4\\x8b\\xf4\\x8e\\xf4\\x94\\xf4\\x97\\xf4\\x9e\\xf4\\xad\\xf4\\xb3\\xf4\\xba\\xf4\\xbe\\xf4\\xc0\\xf4\\xc2\\xf4\\xc4\\xf4\\xce\\xf4\\xd3\\xf4\\xdb\\xf4\\xdf\\xf4\\xe3\\xf5\\t\\xf5\\x91\\xf5\\x9d\\xf5\\xa2\\xf5\\xa7\\xf5\\xb1\\xf5\\xb4\\xf5\\xb8\\xf5\\xbd\\xf5\\xc5\\xf5\\xcb\\xf5\\xce\\xf5\\xd2\\xf5\\xd7\\xf5\\xda\\xf5\\xdc\\xf5\\xdf\\xf5\\xe1\\xf5\\xe4\\xf5\\xe7\\xf5\\xeb\\xf5\\xee\\xf5\\xfd\\xf6\\x10\\xf6\\x13\\xf6\\x19\\xf6\\x1f\\xf6!\\xf60\\xf67\\xf6<\\xf6A\\xf6D\\xf6G\\xf6J\\xf6O\\xf6Q\\xf6U\\xf6X\\xf6^\\xf6b\\xf6f\\xf6k\\xf6m\\xf6o\\xf6t\\xf6v\\xf6y\\xf6|\\xf6\\u007f\\xf6\\x84\\xf6\\x89\\xf6\\x96\\xf6\\x9b\\xf6\\xa1\\xf6\\xa7\\xf6\\xa9\\xf6\\xad\\xf6\\xb7\\xf6\\xbb\\xf6\\xbe\\xf6\\xc0\\xf6\\xc4\\xf6\\xcf\\xf6\\xd1\\xf6\\xd3\\xf6\\xd5\\xf6\\xd7\\xf6\\xd9\\xf6\\xde\\xf6\\xe3\\xf6\\xe6\\xf6\\xe8\\xf6\\xed\\xf6\\xf2\\xf6\\xfa\\xf6\\xfc\\xf7\\x00\\xf7\\f\\xf7\\x0e\\xf7\\x15\\xf7\\x17\\xf7\\x1e\\xf7\\\"\\xf7)\\xf7/\\xf7=\\xf7@\\xf7C\\xf7G\\xf7M\\xf7S\\xf7V\\xf7[\\xf7_\\xf7i\\xf7k\\xf7s\\xf7}\\xf7\\x81\\xf7\\x84\\xf7\\x88\\xf7\\x8c\\xf7\\x94\\xf7\\x96\\xf7\\x9c\\xf7\\xa0\\xf7\\xa2\\xf7\\xa6\\xf7\\xab\\xf7\\xae\\xf7\\xb6\\xf7\\xba\\xf7\\xbd\\xf7\\xc0\\xf7\\xc2\\xf7\\xc5\\xf7\\xca\\xf7\\xce\\xf7\\xd0\\xf7\\xd2\\xf7\\xda\\xf7\\xe6\\xf7\\xec\\xf7\\xef\\xf7\\xf2\\xf7\\xf5\\xf7\\xf7\\xf7\\xfb\\xf8\\a\\xf8\\x10\\xf8\\x12\\xf8\\x16\\xf8\\x18\\xf8*\\xf8/\\xf8>\\xf8J\\xf8L\\xf8P\\xf8S\\xf8c\\xf8m\\xf8y\\xf8}\\xf8\\x82\\xf8\\x87\\xf8\\x91\\xf8\\x97\\xf8\\xc1\\xf8\\xcc\\xf8\\xd9\\xf8\\xff\\xf9A\\xff\\xff\\x00\\x00\\xf0\\x00\\xf0\\x04\\xf0\\a\\xf0\\x10\\xf0\\x15\\xf0\\x17\\xf0\\x1c\\xf0\\x1e\\xf0!\\xf0A\\xf0H\\xf0P\\xf0^\\xf0`\\xf0p\\xf0\\x80\\xf0\\x83\\xf0\\x89\\xf0\\x8d\\xf0\\x91\\xf0\\x93\\xf0\\x98\\xf0\\x9c\\xf0\\xa0\\xf0\\xa3\\xf0\\xb0\\xf0\\xc0\\xf0\\xd0\\xf0\\xd6\\xf0\\xe0\\xf0\\xe2\\xf0\\xe7\\xf0\\xf0\\xf0\\xf8\\xf1\\x00\\xf1\\r\\xf1\\x10\\xf1\\x18\\xf1\\x1e\\xf1 \\xf1$\\xf10\\xf13\\xf17\\xf1=\\xf1@\\xf1F\\xf1J\\xf1M\\xf1P\\xf1[\\xf1`\\xf1\\x82\\xf1\\x85\\xf1\\x91\\xf1\\x95\\xf1\\x97\\xf1\\x99\\xf1\\x9c\\xf1\\xab\\xf1\\xb0\\xf1\\xb2\\xf1\\xb8\\xf1\\xc0\\xf1\\xcd\\xf1\\xd8\\xf1\\xda\\xf1\\xdc\\xf1\\xe0\\xf1\\xea\\xf1\\xf6\\xf1\\xf8\\xf2\\x00\\xf2\\x04\\xf2\\n\\xf2\\x17\\xf2\\x1a\\xf2!\\xf23\\xf28\\xf2@\\xf2M\\xf2Q\\xf2l\\xf2q\\xf2y\\xf2\\x8b\\xf2\\x8d\\xf2\\x90\\xf2\\x95\\xf2\\x9a\\xf2\\x9d\\xf2\\xa0\\xf2\\xa7\\xf2\\xb5\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc1\\xf2\\xc7\\xf2\\xd0\\xf2\\xdb\\xf2\\xe5\\xf2\\xe7\\xf2\\xea\\xf2\\xed\\xf2\\xf1\\xf2\\xf5\\xf2\\xf9\\xf2\\xfe\\xf3\\x02\\xf3\\t\\xf3\\x1e\\xf3(\\xf37\\xf3X\\xf3]\\xf3`\\xf3b\\xf3\\x81\\xf3\\xa5\\xf3\\xbe\\xf3\\xc1\\xf3\\xc5\\xf3\\xc9\\xf3\\xcd\\xf3\\xd1\\xf3\\xdd\\xf3\\xe0\\xf3\\xe5\\xf3\\xed\\xf3\\xfa\\xf3\\xfd\\xf3\\xff\\xf4\\x06\\xf4\\x10\\xf4\\\"\\xf4$\\xf43\\xf46\\xf49\\xf4<\\xf4?\\xf4A\\xf4C\\xf4E\\xf4G\\xf4K\\xf4N\\xf4P\\xf4S\\xf4X\\xf4\\\\\\xf4_\\xf4a\\xf4f\\xf4h\\xf4p\\xf4t\\xf4w\\xf4}\\xf4\\x81\\xf4\\x84\\xf4\\x8b\\xf4\\x8d\\xf4\\x90\\xf4\\x96\\xf4\\x9e\\xf4\\xad\\xf4\\xb3\\xf4\\xb8\\xf4\\xbd\\xf4\\xc0\\xf4\\xc2\\xf4\\xc4\\xf4\\xcd\\xf4\\xd3\\xf4\\xd6\\xf4\\xde\\xf4\\xe2\\xf4\\xfa\\xf5\\x15\\xf5\\x93\\xf5\\x9f\\xf5\\xa4\\xf5\\xaa\\xf5\\xb3\\xf5\\xb6\\xf5\\xba\\xf5\\xbf\\xf5\\xc7\\xf5\\xcd\\xf5\\xd0\\xf5\\xd7\\xf5\\xda\\xf5\\xdc\\xf5\\xde\\xf5\\xe1\\xf5\\xe4\\xf5\\xe7\\xf5\\xeb\\xf5\\xee\\xf5\\xfc\\xf6\\x10\\xf6\\x13\\xf6\\x19\\xf6\\x1f\\xf6!\\xf6.\\xf67\\xf6;\\xf6A\\xf6D\\xf6G\\xf6J\\xf6O\\xf6Q\\xf6S\\xf6X\\xf6]\\xf6b\\xf6d\\xf6i\\xf6m\\xf6o\\xf6t\\xf6v\\xf6x\\xf6{\\xf6\\u007f\\xf6\\x81\\xf6\\x87\\xf6\\x96\\xf6\\x98\\xf6\\xa0\\xf6\\xa7\\xf6\\xa9\\xf6\\xad\\xf6\\xb6\\xf6\\xbb\\xf6\\xbe\\xf6\\xc0\\xf6\\xc3\\xf6\\xcf\\xf6\\xd1\\xf6\\xd3\\xf6\\xd5\\xf6\\xd7\\xf6\\xd9\\xf6\\xdd\\xf6\\xe2\\xf6\\xe6\\xf6\\xe8\\xf6\\xec\\xf6\\xf0\\xf6\\xfa\\xf6\\xfc\\xf6\\xff\\xf7\\v\\xf7\\x0e\\xf7\\x14\\xf7\\x17\\xf7\\x1e\\xf7\\\"\\xf7(\\xf7.\\xf7;\\xf7@\\xf7C\\xf7G\\xf7M\\xf7S\\xf7V\\xf7Z\\xf7^\\xf7i\\xf7k\\xf7r\\xf7|\\xf7\\x80\\xf7\\x83\\xf7\\x86\\xf7\\x8c\\xf7\\x93\\xf7\\x96\\xf7\\x9c\\xf7\\x9f\\xf7\\xa2\\xf7\\xa4\\xf7\\xa9\\xf7\\xad\\xf7\\xb5\\xf7\\xb9\\xf7\\xbd\\xf7\\xbf\\xf7\\xc2\\xf7\\xc4\\xf7\\xc9\\xf7\\xcc\\xf7\\xd0\\xf7\\xd2\\xf7\\xd7\\xf7\\xe4\\xf7\\xec\\xf7\\xef\\xf7\\xf2\\xf7\\xf5\\xf7\\xf7\\xf7\\xfb\\xf8\\x05\\xf8\\x0f\\xf8\\x12\\xf8\\x15\\xf8\\x18\\xf8)\\xf8/\\xf8>\\xf8J\\xf8L\\xf8P\\xf8S\\xf8c\\xf8m\\xf8y\\xf8{\\xf8\\x81\\xf8\\x84\\xf8\\x91\\xf8\\x97\\xf8\\xc0\\xf8\\xcc\\xf8\\xd9\\xf8\\xff\\xf9A\\xff\\xff\\x10\\x03\\x10\\x02\\x10\\x01\\x10\\x00\\x0f\\xff\\x0f\\xfe\\x0f\\xfc\\x0f\\xfb\\x0f\\xf9\\x0f\\xf7\\x0f\\xf4\\x0f\\xf3\\x0f\\xf1\\x0f\\xf0\\x0f\\xef\\x0f\\xec\\x0f\\xea\\x0f\\xe8\\x0f\\xe5\\x0f\\xe2\\x0f\\xe1\\x0f\\xdf\\x0f\\xdc\\x0f\\xdb\\x0f\\xda\\x0f\\xd9\\x0f\\xcc\\x0f\\xcb\\x0f\\xc7\\x0f\\xc6\\x0f\\xc5\\x0f\\xc2\\x0f\\xbe\\x0f\\xbb\\x0f\\xba\\x0f\\xb9\\x0f\\xb8\\x0f\\xb2\\x0f\\xb1\\x0f\\xb0\\x0f\\xaf\\x0f\\xae\\x0f\\xad\\x0f\\xac\\x0f\\xaa\\x0f\\xa9\\x0f\\xa8\\x0f\\xa5\\x0f\\xa4\\x0f\\xa3\\x0f\\xa2\\x0f\\xa1\\x0f\\x85\\x0f\\x84\\x0f|\\x0f{\\x0fz\\x0fy\\x0fw\\x0fj\\x0fi\\x0fh\\x0fd\\x0f`\\x0f]\\x0fT\\x0fS\\x0fR\\x0fQ\\x0fN\\x0fE\\x0fD\\x0fC\\x0fA\\x0f?\\x0f4\\x0f3\\x0f1\\x0f,\\x0f+\\x0f%\\x0f\\\"\\x0f \\x0f\\x12\\x0f\\x0e\\x0f\\r\\x0e\\xfd\\x0e\\xfc\\x0e\\xfa\\x0e\\xf8\\x0e\\xf4\\x0e\\xf2\\x0e\\xf1\\x0e\\xef\\x0e\\xe3\\x0e\\xe1\\x0e\\xe0\\x0e\\xdf\\x0e\\xdc\\x0e\\xd8\\x0e\\xd7\\x0e\\xcf\\x0e\\xc7\\x0e\\xc6\\x0e\\xc4\\x0e\\xc2\\x0e\\xbf\\x0e\\xbd\\x0e\\xbb\\x0e\\xb7\\x0e\\xb4\\x0e\\xb1\\x0e\\xa0\\x0e\\x97\\x0e\\x89\\x0ej\\x0ei\\x0eg\\x0ef\\x0eH\\x0e&\\x0e\\x0e\\x0e\\r\\x0e\\n\\x0e\\a\\x0e\\x04\\x0e\\x01\\r\\xf6\\r\\xf4\\r\\xf0\\r\\xe9\\r\\xdd\\r\\xdb\\r\\xda\\r\\xd4\\r\\xcb\\r\\xba\\r\\xb9\\r\\xab\\r\\xaa\\r\\xa8\\r\\xa7\\r\\xa5\\r\\xa4\\r\\xa3\\r\\xa2\\r\\xa1\\r\\x9e\\r\\x9c\\r\\x9b\\r\\x99\\r\\x95\\r\\x92\\r\\x91\\r\\x90\\r\\x8d\\r\\x8c\\r\\x8a\\r\\x89\\r\\x87\\r\\x84\\r\\x83\\r\\x82\\r\\u007f\\r~\\r}\\r|\\rv\\rh\\rc\\r_\\r]\\r\\\\\\r[\\rZ\\rR\\rN\\rL\\rJ\\rH\\r2\\r'\\r&\\r%\\r$\\r\\\"\\r!\\r \\r\\x1f\\r\\x1e\\r\\x1d\\r\\x1c\\r\\x1b\\r\\x17\\r\\x15\\r\\x14\\r\\x13\\r\\x12\\r\\x10\\r\\x0e\\r\\v\\r\\t\\f\\xfc\\f\\xea\\f\\xe8\\f\\xe3\\f\\xde\\f\\xdd\\f\\xd1\\f\\xcb\\f\\xc8\\f\\xc4\\f\\xc2\\f\\xc0\\f\\xbe\\f\\xba\\f\\xb9\\f\\xb8\\f\\xb6\\f\\xb2\\f\\xaf\\f\\xae\\f\\xac\\f\\xab\\f\\xaa\\f\\xa6\\f\\xa5\\f\\xa4\\f\\xa3\\f\\xa1\\f\\xa0\\f\\x9e\\f\\x92\\f\\x91\\f\\x8d\\f\\x88\\f\\x87\\f\\x84\\f|\\fy\\fw\\fv\\ft\\fj\\fi\\fh\\fg\\ff\\fe\\fb\\f_\\f]\\f\\\\\\fY\\fW\\fP\\fO\\fM\\fC\\fB\\f=\\f<\\f6\\f3\\f.\\f*\\f\\x1f\\f\\x1d\\f\\x1b\\f\\x18\\f\\x13\\f\\x0e\\f\\f\\f\\t\\f\\a\\v\\xfe\\v\\xfd\\v\\xf7\\v\\xef\\v\\xed\\v\\xec\\v\\xeb\\v\\xe8\\v\\xe2\\v\\xe1\\v\\xdc\\v\\xda\\v\\xd9\\v\\xd8\\v\\xd6\\v\\xd5\\v\\xcf\\v\\xcd\\v\\xcb\\v\\xca\\v\\xc9\\v\\xc8\\v\\xc5\\v\\xc4\\v\\xc3\\v\\xc2\\v\\xbe\\v\\xb5\\v\\xb0\\v\\xae\\v\\xac\\v\\xaa\\v\\xa9\\v\\xa6\\v\\x9d\\v\\x96\\v\\x95\\v\\x93\\v\\x92\\v\\x82\\v~\\vp\\ve\\vd\\va\\v_\\vP\\vG\\v<\\v;\\v8\\v7\\v.\\v)\\v\\x01\\n\\xf7\\n\\xeb\\n\\xc6\\n\\x85\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x02\\n\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\xc5\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00L\\x00\\x00\\x00\\xb0\\x00\\x00\\x01\\x18\\x00\\x00\\x01`\\x00\\x00\\x01\\xbc\\x00\\x00\\x02\\x14\\x00\\x00\\x03d\\x00\\x00\\x04\\x10\\x00\\x00\\x05\\x88\\x00\\x00\\x06\\x88\\x00\\x00\\x06\\xd4\\x00\\x00\\aH\\x00\\x00\\a\\xec\\x00\\x00\\bp\\x00\\x00\\t\\x18\\x00\\x00\\t\\xf0\\x00\\x00\\n\\xc4\\x00\\x00\\v\\x84\\x00\\x00\\v\\xd4\\x00\\x00\\f\\x90\\x00\\x00\\r<\\x00\\x00\\r\\xa0\\x00\\x00\\x0eD\\x00\\x00\\x0f$\\x00\\x00\\x0f\\xf0\\x00\\x00\\x10L\\x00\\x00\\x10\\xc0\\x00\\x00\\x11H\\x00\\x00\\x11\\x84\\x00\\x00\\x11\\xf8\\x00\\x00\\x12\\xf0\\x00\\x00\\x13p\\x00\\x00\\x14<\\x00\\x00\\x14\\x90\\x00\\x00\\x15\\x14\\x00\\x00\\x15\\xb0\\x00\\x00\\x15\\xdc\\x00\\x00\\x16|\\x00\\x00\\x16\\xfc\\x00\\x00\\x17\\x84\\x00\\x00\\x18\\b\\x00\\x00\\x18p\\x00\\x00\\x198\\x00\\x00\\x19\\xfc\\x00\\x00\\x1a\\xac\\x00\\x00\\x1b\\\\\\x00\\x00\\x1c\\f\\x00\\x00\\x1c\\xbc\\x00\\x00\\x1d\\xbc\\x00\\x00\\x1e\\x8c\\x00\\x00\\x1f\\\\\\x00\\x00\\x1f\\xb4\\x00\\x00 (\\x00\\x00 p\\x00\\x00 \\xa4\\x00\\x00!\\f\\x00\\x00!\\xbc\\x00\\x00\\\"\\x00\\x00\\x00\\\"\\\\\\x00\\x00\\\"\\xb0\\x00\\x00\\\"\\xe4\\x00\\x00#D\\x00\\x00#|\\x00\\x00#\\xd0\\x00\\x00$0\\x00\\x00$x\\x00\\x00$\\xd4\\x00\\x00% \\x00\\x00%l\\x00\\x00%\\xcc\\x00\\x00&\\f\\x00\\x00&\\x88\\x00\\x00&\\xe0\\x00\\x00'x\\x00\\x00'\\xe8\\x00\\x00(\\xcc\\x00\\x00) \\x00\\x00)\\x84\\x00\\x00)\\xe8\\x00\\x00*H\\x00\\x00*\\xac\\x00\\x00+\\x10\\x00\\x00+\\xb8\\x00\\x00,`\\x00\\x00,\\xc0\\x00\\x00,\\xf8\\x00\\x00-\\xa8\\x00\\x00.\\b\\x00\\x00.\\xc4\\x00\\x00/<\\x00\\x00/\\xa0\\x00\\x000,\\x00\\x001\\b\\x00\\x001t\\x00\\x001\\xf4\\x00\\x003\\x04\\x00\\x003\\xb0\\x00\\x003\\xf8\\x00\\x004\\xa4\\x00\\x004\\xf0\\x00\\x005<\\x00\\x006\\x00\\x00\\x006\\x88\\x00\\x006\\xc4\\x00\\x0070\\x00\\x008\\f\\x00\\x008\\xe0\\x00\\x009\\\\\\x00\\x00;\\xe0\\x00\\x00<h\\x00\\x00<\\xa4\\x00\\x00= \\x00\\x00=\\xdc\\x00\\x00>\\x8c\\x00\\x00?8\\x00\\x00?\\x90\\x00\\x00@\\x1c\\x00\\x00@\\x88\\x00\\x00A\\x04\\x00\\x00A\\x94\\x00\\x00B$\\x00\\x00B\\xb8\\x00\\x00C|\\x00\\x00D4\\x00\\x00D\\xe8\\x00\\x00E\\xa0\\x00\\x00FT\\x00\\x00F\\xc8\\x00\\x00G<\\x00\\x00G\\xb0\\x00\\x00H$\\x00\\x00H\\xf0\\x00\\x00Ip\\x00\\x00J\\x8c\\x00\\x00J\\xcc\\x00\\x00KD\\x00\\x00K\\xec\\x00\\x00L\\xb8\\x00\\x00M\\xa4\\x00\\x00M\\xfc\\x00\\x00Nh\\x00\\x00O\\x10\\x00\\x00O\\x90\\x00\\x00P0\\x00\\x00P\\xac\\x00\\x00P\\xe4\\x00\\x00Ql\\x00\\x00R8\\x00\\x00S\\xc0\\x00\\x00T\\xa8\\x00\\x00UP\\x00\\x00U\\xb8\\x00\\x00VT\\x00\\x00W\\x00\\x00\\x00W\\x88\\x00\\x00W\\xbc\\x00\\x00W\\xf0\\x00\\x00X$\\x00\\x00XT\\x00\\x00X\\xa8\\x00\\x00X\\xfc\\x00\\x00Y,\\x00\\x00Y\\\\\\x00\\x00Z\\x04\\x00\\x00Z\\x80\\x00\\x00[,\\x00\\x00[\\x84\\x00\\x00\\\\\\\\\\x00\\x00] \\x00\\x00]\\xc0\\x00\\x00^L\\x00\\x00_@\\x00\\x00`\\x18\\x00\\x00`\\x84\\x00\\x00a\\x04\\x00\\x00a\\x80\\x00\\x00b\\x8c\\x00\\x00cp\\x00\\x00d8\\x00\\x00d\\xb4\\x00\\x00eX\\x00\\x00e\\xe4\\x00\\x00fX\\x00\\x00f\\xe0\\x00\\x00gl\\x00\\x00g\\xf8\\x00\\x00h|\\x00\\x00h\\xc8\\x00\\x00i\\x10\\x00\\x00i\\\\\\x00\\x00i\\xa4\\x00\\x00j\\x14\\x00\\x00j\\x8c\\x00\\x00j\\xdc\\x00\\x00k,\\x00\\x00k\\xc0\\x00\\x00lX\\x00\\x00m\\x04\\x00\\x00m(\\x00\\x00m\\xac\\x00\\x00n(\\x00\\x00n\\x8c\\x00\\x00o0\\x00\\x00p\\xb0\\x00\\x00q\\xb0\\x00\\x00r$\\x00\\x00r\\xc0\\x00\\x00sT\\x00\\x00s\\x94\\x00\\x00t,\\x00\\x00u\\x14\\x00\\x00u\\xe0\\x00\\x00vt\\x00\\x00v\\xe0\\x00\\x00w,\\x00\\x00x\\b\\x00\\x00x\\xe0\\x00\\x00y<\\x00\\x00z\\f\\x00\\x00z\\xac\\x00\\x00{t\\x00\\x00{\\xec\\x00\\x00|\\xa0\\x00\\x00}<\\x00\\x00}\\x9c\\x00\\x00}\\xfc\\x00\\x00~\\\\\\x00\\x00~\\xc0\\x00\\x00\\u007f\\x94\\x00\\x00\\x80\\x1c\\x00\\x00\\x80\\x84\\x00\\x00\\x80\\xd4\\x00\\x00\\x81$\\x00\\x00\\x81\\xd0\\x00\\x00\\x82\\x1c\\x00\\x00\\x82t\\x00\\x00\\x82\\xe0\\x00\\x00\\x83l\\x00\\x00\\x84(\\x00\\x00\\x84\\x94\\x00\\x00\\x84\\xf0\\x00\\x00\\x85H\\x00\\x00\\x85\\xa4\\x00\\x00\\x86d\\x00\\x00\\x86\\xf0\\x00\\x00\\x87\\xa8\\x00\\x00\\x884\\x00\\x00\\x88\\xcc\\x00\\x00\\x89L\\x00\\x00\\x8ah\\x00\\x00\\x8a\\xbc\\x00\\x00\\x8b`\\x00\\x00\\x8cD\\x00\\x00\\x8d(\\x00\\x00\\x8e\\x10\\x00\\x00\\x8e\\xf8\\x00\\x00\\x8f\\xe4\\x00\\x00\\x90\\xd0\\x00\\x00\\x91\\x94\\x00\\x00\\x92\\\\\\x00\\x00\\x92\\xcc\\x00\\x00\\x934\\x00\\x00\\x93\\xe8\\x00\\x00\\x94<\\x00\\x00\\x94\\xa8\\x00\\x00\\x95h\\x00\\x00\\x95\\xc4\\x00\\x00\\x96\\x00\\x00\\x00\\x96\\xc8\\x00\\x00\\x97h\\x00\\x00\\x98\\b\\x00\\x00\\x98\\xbc\\x00\\x00\\x99T\\x00\\x00\\x99\\xec\\x00\\x00\\x9b\\x10\\x00\\x00\\x9c0\\x00\\x00\\x9d \\x00\\x00\\x9d\\x9c\\x00\\x00\\x9ed\\x00\\x00\\x9e\\xcc\\x00\\x00\\x9f\\x80\\x00\\x00\\xa0\\x80\\x00\\x00\\xa1\\x88\\x00\\x00\\xa2X\\x00\\x00\\xa2\\xe8\\x00\\x00\\xa3T\\x00\\x00\\xa4H\\x00\\x00\\xa5\\x10\\x00\\x00\\xa5\\xc4\\x00\\x00\\xa6l\\x00\\x00\\xa6\\xf8\\x00\\x00\\xa7\\xcc\\x00\\x00\\xa8\\xa0\\x00\\x00\\xa98\\x00\\x00\\xaaD\\x00\\x00\\xaa\\xd0\\x00\\x00\\xab@\\x00\\x00\\xab\\x98\\x00\\x00\\xac<\\x00\\x00\\xac\\xf8\\x00\\x00\\xadX\\x00\\x00\\xaed\\x00\\x00\\xae\\xd4\\x00\\x00\\xafp\\x00\\x00\\xb0`\\x00\\x00\\xb0\\xf0\\x00\\x00\\xb2\\xa0\\x00\\x00\\xb3X\\x00\\x00\\xb3\\xd4\\x00\\x00\\xb4\\xb0\\x00\\x00\\xb5D\\x00\\x00\\xb6h\\x00\\x00\\xb7\\x14\\x00\\x00\\xb7\\x80\\x00\\x00\\xb8$\\x00\\x00\\xb8\\xec\\x00\\x00\\xb9d\\x00\\x00\\xb9\\xe4\\x00\\x00\\xba\\xc8\\x00\\x00\\xbb$\\x00\\x00\\xbb\\x9c\\x00\\x00\\xbc8\\x00\\x00\\xbc\\x98\\x00\\x00\\xbc\\xdc\\x00\\x00\\xbe\\x04\\x00\\x00\\xbe\\xe4\\x00\\x00\\xbf\\xa8\\x00\\x00\\xc0D\\x00\\x00\\xc14\\x00\\x00\\xc2\\x00\\x00\\x00\\xc2\\xc0\\x00\\x00\\xc3\\xc0\\x00\\x00\\xc4\\xf4\\x00\\x00Ũ\\x00\\x00\\xc60\\x00\\x00Ƥ\\x00\\x00\\xc7\\f\\x00\\x00\\xc7\\xc4\\x00\\x00\\xc8`\\x00\\x00\\xc9T\\x00\\x00\\xca4\\x00\\x00\\xcb\\x14\\x00\\x00\\xcb\\xec\\x00\\x00̌\\x00\\x00\\xcd \\x00\\x00ͨ\\x00\\x00\\xcd\\xfc\\x00\\x00\\xce8\\x00\\x00\\xcfH\\x00\\x00\\xcf\\xf4\\x00\\x00Р\\x00\\x00\\xd1\\x18\\x00\\x00Ѩ\\x00\\x00\\xd2t\\x00\\x00\\xd2\\xe4\\x00\\x00\\xd3T\\x00\\x00\\xd3\\xc4\\x00\\x00\\xd40\\x00\\x00Ԕ\\x00\\x00\\xd4\\xe4\\x00\\x00ՠ\\x00\\x00\\xd6P\\x00\\x00\\xd7$\\x00\\x00\\xd7x\\x00\\x00\\xd7\\xe0\\x00\\x00\\xd8\\xf4\\x00\\x00ـ\\x00\\x00\\xda \\x00\\x00ڬ\\x00\\x00\\xdb(\\x00\\x00\\xdb\\xd0\\x00\\x00\\xdcl\\x00\\x00\\xdc\\xf4\\x00\\x00\\xddd\\x00\\x00\\xde8\\x00\\x00\\xde\\xdc\\x00\\x00\\xdf`\\x00\\x00\\xe0(\\x00\\x00\\xe0\\xa4\\x00\\x00\\xe1\\x18\\x00\\x00\\xe1\\xcc\\x00\\x00\\xe2`\\x00\\x00\\xe30\\x00\\x00\\xe3\\xdc\\x00\\x00\\xe40\\x00\\x00\\xe4\\x90\\x00\\x00\\xe54\\x00\\x00\\xe5\\x94\\x00\\x00\\xe5\\xdc\\x00\\x00\\xe6P\\x00\\x00\\xe6\\x9c\\x00\\x00\\xe7\\x18\\x00\\x00\\xe7\\xf8\\x00\\x00\\xe8\\xc4\\x00\\x00\\xe9T\\x00\\x00\\xea0\\x00\\x00\\xea\\xf8\\x00\\x00\\xeb\\xc4\\x00\\x00\\xec\\xc4\\x00\\x00\\xed\\xe0\\x00\\x00\\xee\\xf8\\x00\\x00\\xf0\\x84\\x00\\x00\\xf1p\\x00\\x00\\xf2\\xa4\\x00\\x00\\xf3|\\x00\\x00\\xf4\\x84\\x00\\x00\\xf5L\\x00\\x00\\xf6\\x00\\x00\\x00\\xf6\\xd0\\x00\\x00\\xf78\\x00\\x00\\xf7\\xd8\\x00\\x00\\xf8\\xb8\\x00\\x00\\xf9l\\x00\\x00\\xfa \\x00\\x00\\xfa\\xd4\\x00\\x00\\xfb\\x88\\x00\\x00\\xfc(\\x00\\x00\\xfe\\f\\x00\\x00\\xfe\\xe0\\x00\\x00\\xff\\xe8\\x00\\x01\\x008\\x00\\x01\\x00p\\x00\\x01\\x00\\xec\\x00\\x01\\x02<\\x00\\x01\\x04(\\x00\\x01\\x04x\\x00\\x01\\x05(\\x00\\x01\\x05\\xa0\\x00\\x01\\x06h\\x00\\x01\\a\\x14\\x00\\x01\\a\\x9c\\x00\\x01\\b$\\x00\\x01\\b\\xa8\\x00\\x01\\t\\x1c\\x00\\x01\\t\\xf0\\x00\\x01\\n\\x90\\x00\\x01\\v \\x00\\x01\\vl\\x00\\x01\\v\\xe4\\x00\\x01\\f$\\x00\\x01\\fd\\x00\\x01\\f\\xac\\x00\\x01\\f\\xf0\\x00\\x01\\r\\x9c\\x00\\x01\\x0e\\x14\\x00\\x01\\x0ep\\x00\\x01\\x0e\\xc8\\x00\\x01\\x0f \\x00\\x01\\x0ft\\x00\\x01\\x0f\\xc8\\x00\\x01\\x10\\x1c\\x00\\x01\\x10\\xb4\\x00\\x01\\x11(\\x00\\x01\\x11\\xac\\x00\\x01\\x128\\x00\\x01\\x12\\xc8\\x00\\x01\\x138\\x00\\x01\\x13\\x8c\\x00\\x01\\x13\\xe0\\x00\\x01\\x14L\\x00\\x01\\x14\\xac\\x00\\x01\\x15|\\x00\\x01\\x15\\xe8\\x00\\x01\\x16\\xb8\\x00\\x01\\x17H\\x00\\x01\\x17\\xc8\\x00\\x01\\x180\\x00\\x01\\x18\\x98\\x00\\x01\\x19\\b\\x00\\x01\\x1a\\x00\\x00\\x01\\x1a\\x88\\x00\\x01\\x1a\\xe0\\x00\\x01\\x1bp\\x00\\x01\\x1b\\xf0\\x00\\x01\\x1cp\\x00\\x01\\x1d\\b\\x00\\x01\\x1d\\xb0\\x00\\x01\\x1e\\x18\\x00\\x01\\x1f|\\x00\\x01 \\x10\\x00\\x01!\\x8c\\x00\\x01\\\"\\x1c\\x00\\x01\\\"\\xd4\\x00\\x01#`\\x00\\x01$4\\x00\\x01$\\xd8\\x00\\x01%\\xac\\x00\\x01&\\xbc\\x00\\x01'|\\x00\\x01'\\xbc\\x00\\x01(l\\x00\\x01(\\x88\\x00\\x01)\\f\\x00\\x01)\\xe0\\x00\\x01+\\x18\\x00\\x01+\\xc4\\x00\\x01, \\x00\\x01,\\xc8\\x00\\x01-\\\\\\x00\\x01-\\xa0\\x00\\x01.4\\x00\\x01.\\xc4\\x00\\x01/\\xb4\\x00\\x010\\xc4\\x00\\x011\\xac\\x00\\x012p\\x00\\x013 \\x00\\x013\\xb0\\x00\\x014L\\x00\\x014\\xd8\\x00\\x016\\x04\\x00\\x016d\\x00\\x017\\b\\x00\\x017\\xbc\\x00\\x018h\\x00\\x018\\xe8\\x00\\x019l\\x00\\x019\\xfc\\x00\\x01:\\xc0\\x00\\x01;\\xb0\\x00\\x01<\\x98\\x00\\x01=d\\x00\\x01>\\x00\\x00\\x01>\\x88\\x00\\x01>\\xe8\\x00\\x01?\\x90\\x00\\x01@@\\x00\\x01@\\xd8\\x00\\x01B\\f\\x00\\x01B\\xa4\\x00\\x01C,\\x00\\x01C\\xa8\\x00\\x01DD\\x00\\x01E\\\\\\x00\\x01E\\xf8\\x00\\x01Fh\\x00\\x01G\\x14\\x00\\x01H@\\x00\\x01I\\f\\x00\\x01I\\xc4\\x00\\x01J\\\\\\x00\\x01K\\xa8\\x00\\x01L\\x98\\x00\\x01M(\\x00\\x01M\\xe8\\x00\\x01N<\\x00\\x01N\\xb0\\x00\\x01OH\\x00\\x01O\\xb0\\x00\\x01PT\\x00\\x01Q \\x00\\x01Q\\xa4\\x00\\x01R\\x00\\x00\\x01Rp\\x00\\x01S|\\x00\\x01T\\x04\\x00\\x01T\\x94\\x00\\x01U\\xf0\\x00\\x01V\\x88\\x00\\x01W(\\x00\\x01W\\xd4\\x00\\x01X\\x90\\x00\\x01Y\\f\\x00\\x01Y\\x94\\x00\\x01Z<\\x00\\x01Z\\xb0\\x00\\x01[l\\x00\\x01[\\xcc\\x00\\x01]p\\x00\\x01^\\x80\\x00\\x01_\\x88\\x00\\x01`8\\x00\\x01`\\xac\\x00\\x01a\\xec\\x00\\x01bx\\x00\\x01b\\xe0\\x00\\x01cx\\x00\\x01d$\\x00\\x01d\\xd4\\x00\\x01e8\\x00\\x01e\\xd0\\x00\\x01f|\\x00\\x01gh\\x00\\x01h\\x10\\x00\\x01h\\xa4\\x00\\x01h\\xf4\\x00\\x01i\\xb4\\x00\\x01j0\\x00\\x01j\\x94\\x00\\x01j\\xf4\\x00\\x01kX\\x00\\x01k\\xd8\\x00\\x01l8\\x00\\x01l\\xb0\\x00\\x01mp\\x00\\x01n,\\x00\\x01o@\\x00\\x01o\\x98\\x00\\x01p\\x18\\x00\\x01p\\xc8\\x00\\x01qH\\x00\\x01r\\x04\\x00\\x01r\\\\\\x00\\x01r\\xd8\\x00\\x01s\\x9c\\x00\\x01t\\x84\\x00\\x01uL\\x00\\x01u\\xc4\\x00\\x01v\\x84\\x00\\x01w\\xa8\\x00\\x01x<\\x00\\x01x\\xe0\\x00\\x01y\\\\\\x00\\x01y\\xc8\\x00\\x01zX\\x00\\x01{$\\x00\\x01{\\xf8\\x00\\x01|\\xb4\\x00\\x01}d\\x00\\x01}\\xec\\x00\\x01~`\\x00\\x01\\u007f\\x14\\x00\\x01\\u007fh\\x00\\x01\\x80\\b\\x00\\x01\\x80\\xac\\x00\\x01\\x81\\x84\\x00\\x01\\x82 \\x00\\x01\\x82\\x98\\x00\\x01\\x83 \\x00\\x01\\x85T\\x00\\x01\\x86\\x18\\x00\\x01\\x86\\x94\\x00\\x01\\x87x\\x00\\x01\\x87\\xe8\\x00\\x01\\x88\\xd4\\x00\\x01\\x89\\\\\\x00\\x01\\x8aD\\x00\\x01\\x8b\\xc8\\x00\\x01\\x8c`\\x00\\x01\\x8d`\\x00\\x01\\x8e\\x10\\x00\\x01\\x8e|\\x00\\x01\\x8f\\x80\\x00\\x01\\x90|\\x00\\x01\\x91\\x04\\x00\\x01\\x91\\x88\\x00\\x01\\x92\\x00\\x00\\x01\\x92\\xc4\\x00\\x01\\x93\\x80\\x00\\x01\\x94\\b\\x00\\x01\\x95\\f\\x00\\x01\\x95\\xe0\\x00\\x01\\x96\\xb8\\x00\\x01\\x97\\x90\\x00\\x01\\x988\\x00\\x01\\x98\\xa8\\x00\\x01\\x99\\xa4\\x00\\x01\\x9a0\\x00\\x01\\x9a\\xc4\\x00\\x01\\x9bX\\x00\\x01\\x9c0\\x00\\x01\\x9dT\\x00\\x01\\x9e0\\x00\\x01\\x9f\\x18\\x00\\x01\\x9f\\xa4\\x00\\x01\\xa0(\\x00\\x01\\xa0\\xc8\\x00\\x01\\xa2t\\x00\\x01\\xa2\\xe8\\x00\\x01\\xa3x\\x00\\x01\\xa3\\xf8\\x00\\x01\\xa4P\\x00\\x01\\xa5t\\x00\\x01\\xa6\\xb4\\x00\\x01\\xa7\\xe0\\x00\\x01\\xa8\\xb8\\x00\\x01\\xa94\\x00\\x01\\xa9\\xdc\\x00\\x01\\xaa\\x94\\x00\\x01\\xab\\x88\\x00\\x01\\xacL\\x00\\x01\\xac\\xf0\\x00\\x01\\xae\\x14\\x00\\x01\\xae\\xf8\\x00\\x01\\xb00\\x00\\x01\\xb1\\f\\x00\\x01\\xb2\\f\\x00\\x01\\xb3 \\x00\\x01\\xb3\\xbc\\x00\\x01\\xb4\\xb0\\x00\\x01\\xb5\\xac\\x00\\x01\\xb6X\\x00\\x01\\xb7\\x10\\x00\\x01\\xb7x\\x00\\x01\\xb8\\xac\\x00\\x01\\xba$\\x00\\x01\\xbb\\b\\x00\\x01\\xbb\\xac\\x00\\x01\\xbc\\x88\\x00\\x01\\xbd\\xb0\\x00\\x01\\xbe(\\x00\\x01\\xbe\\xe4\\x00\\x01\\xbf\\x88\\x00\\x01\\xc0 \\x00\\x01\\xc0\\xf8\\x00\\x01\\xc1\\x90\\x00\\x01\\xc2<\\x00\\x01°\\x00\\x01\\xc3\\\\\\x00\\x01ì\\x00\\x01\\xc4@\\x00\\x01\\xc4\\xc4\\x00\\x01\\xc5H\\x00\\x01\\xc5\\xcc\\x00\\x01Ƭ\\x00\\x01\\xc7\\x18\\x00\\x01ǘ\\x00\\x01\\xc8P\\x00\\x01\\xc8\\xe0\\x00\\x01\\xc9x\\x00\\x01\\xca\\x14\\x00\\x01\\xca\\xec\\x00\\x01\\xcb|\\x00\\x01\\xcc$\\x00\\x01\\xcc\\xe0\\x00\\x01͔\\x00\\x01\\xce\\\\\\x00\\x01\\xce\\xe8\\x00\\x01\\xcf`\\x00\\x01\\xd0L\\x00\\x01\\xd0\\xc8\\x00\\x01\\xd1L\\x00\\x01\\xd2\\x04\\x00\\x01\\xd2l\\x00\\x01\\xd3\\x14\\x00\\x01\\xd4\\x18\\x00\\x01\\xd5,\\x00\\x01՜\\x00\\x01\\xd6D\\x00\\x01\\xd6\\xec\\x00\\x01\\u05cc\\x00\\x01\\xd8l\\x00\\x01\\xd8\\xe0\\x00\\x01\\xd9H\\x00\\x01\\xd9\\xf0\\x00\\x01ڜ\\x00\\x01\\xdb\\xcc\\x00\\x01ܠ\\x00\\x01\\xdd(\\x00\\x01\\xdd\\xf8\\x00\\x01\\xde\\xe8\\x00\\x01ߤ\\x00\\x01\\xe1\\x84\\x00\\x01\\xe24\\x00\\x01\\xe3H\\x00\\x01\\xe3\\xc0\\x00\\x01\\xe4\\xd0\\x00\\x01\\xe5\\xac\\x00\\x01\\xe6L\\x00\\x01\\xe7\\b\\x00\\x01\\xe7\\xc0\\x00\\x01\\xe8H\\x00\\x01\\xe8\\xc0\\x00\\x01\\xe9h\\x00\\x01\\xea\\xb8\\x00\\x01\\xec0\\x00\\x01\\xed|\\x00\\x01\\xeeD\\x00\\x01\\xf0\\xbc\\x00\\x01\\xf1\\x8c\\x00\\x01\\xf2d\\x00\\x01\\xf2\\xe8\\x00\\x01\\xf3\\x9c\\x00\\x01\\xf4P\\x00\\x01\\xf5\\xf0\\x00\\x01\\xf6\\xdc\\x00\\x01\\xf7\\xfc\\x00\\x01\\xf8`\\x00\\x01\\xfa\\x10\\x00\\x01\\xfa\\xf0\\x00\\x01\\xfbT\\x00\\x01\\xfb\\xe4\\x00\\x01\\xfc\\xe4\\x00\\x01\\xfe\\x04\\x00\\x01\\xfe\\xc8\\x00\\x01\\xff\\xa0\\x00\\x02\\x01\\f\\x00\\x02\\x02\\xb4\\x00\\x02\\x03\\xc0\\x00\\x02\\x050\\x00\\x02\\x05\\xc8\\x00\\x02\\x06\\x9c\\x00\\x02\\bl\\x00\\x02\\tH\\x00\\x02\\n\\xb0\\x00\\x02\\f\\xa8\\x00\\x02\\r\\x14\\x00\\x02\\r\\xa0\\x00\\x02\\x0eP\\x00\\x02\\x0f\\x00\\x00\\x02\\x0f\\x84\\x00\\x02\\x10h\\x00\\x02\\x11T\\x00\\x02\\x12\\\\\\x00\\x02\\x13\\f\\x00\\x02\\x13\\xac\\x00\\x02\\x14d\\x00\\x02\\x15\\x10\\x00\\x02\\x15\\xc0\\x00\\x02\\x16\\x8c\\x00\\x02\\x17\\xac\\x00\\x02\\x18T\\x00\\x02\\x19$\\x00\\x02\\x19\\xb8\\x00\\x02\\x1a,\\x00\\x02\\x1b\\f\\x00\\x02\\x1c\\x1c\\x00\\x02\\x1c\\x90\\x00\\x02\\x1dT\\x00\\x02\\x1d\\xec\\x00\\x02\\x1e\\x9c\\x00\\x02\\x1f\\x90\\x00\\x02 \\x8c\\x00\\x02!\\x04\\x00\\x02!\\xac\\x00\\x02\\\"\\x88\\x00\\x02#\\x18\\x00\\x02%\\x04\\x00\\x02& \\x00\\x02'H\\x00\\x02'\\xdc\\x00\\x02(d\\x00\\x02*\\x90\\x00\\x02+\\x1c\\x00\\x02,\\b\\x00\\x02,\\xc4\\x00\\x02-\\xa8\\x00\\x02.H\\x00\\x02/@\\x00\\x02/\\xd0\\x00\\x020$\\x00\\x021\\x04\\x00\\x021\\xd8\\x00\\x0228\\x00\\x023\\b\\x00\\x023\\x80\\x00\\x024`\\x00\\x024\\x98\\x00\\x026\\x14\\x00\\x026\\xf0\\x00\\x028D\\x00\\x028\\xfc\\x00\\x029\\x84\\x00\\x02:\\x84\\x00\\x02:\\xf8\\x00\\x02;\\xf0\\x00\\x02=0\\x00\\x02>\\b\\x00\\x02?4\\x00\\x02@\\xb8\\x00\\x02BX\\x00\\x02C\\xbc\\x00\\x02D\\x94\\x00\\x02E\\xa8\\x00\\x02F\\x80\\x00\\x02Gp\\x00\\x02H\\xe0\\x00\\x02I\\xa4\\x00\\x02J`\\x00\\x02K\\x1c\\x00\\x02K\\xc8\\x00\\x02ML\\x00\\x02N\\x10\\x00\\x02N\\xd4\\x00\\x02P(\\x00\\x02P\\xf8\\x00\\x02Q\\x90\\x00\\x02R(\\x00\\x02S\\f\\x00\\x02S\\xa0\\x00\\x02UP\\x00\\x02VP\\x00\\x02W\\x14\\x00\\x02X(\\x00\\x02X\\xac\\x00\\x02Y\\xf8\\x00\\x02Z\\xd0\\x00\\x02[$\\x00\\x02\\\\\\xa4\\x00\\x02]\\x04\\x00\\x02]d\\x00\\x02^\\f\\x00\\x02^h\\x00\\x02_\\xa8\\x00\\x02`P\\x00\\x02`\\xb0\\x00\\x02a\\\\\\x00\\x02a\\xc4\\x00\\x02b\\x88\\x00\\x02c$\\x00\\x02c\\xec\\x00\\x02d\\xdc\\x00\\x02e\\xb8\\x00\\x02f\\x94\\x00\\x02f\\xe8\\x00\\x02g\\x80\\x00\\x02hh\\x00\\x02iD\\x00\\x02j0\\x00\\x02j\\xec\\x00\\x02l \\x00\\x02m \\x00\\x02n\\x94\\x00\\x02o\\xc4\\x00\\x02p\\x1c\\x00\\x02p\\xbc\\x00\\x02q\\x8c\\x00\\x02rD\\x00\\x02r\\xb0\\x00\\x02s\\xb0\\x00\\x02tL\\x00\\x02t\\x9c\\x00\\x02t\\xe0\\x00\\x02u\\xa4\\x00\\x02v$\\x00\\x02v\\xc0\\x00\\x02v\\xf0\\x00\\x02w\\xac\\x00\\x02xX\\x00\\x02x\\xc4\\x00\\x02y\\xd4\\x00\\x02z4\\x00\\x02z\\xe4\\x00\\x02{x\\x00\\x02|\\f\\x00\\x02|\\xb8\\x00\\x02}X\\x00\\x02}\\xf8\\x00\\x02~\\xb0\\x00\\x02\\u007f(\\x00\\x02\\u007f\\xf8\\x00\\x02\\x80`\\x00\\x02\\x83\\x9c\\x00\\x02\\x84\\xf0\\x00\\x02\\x85\\x80\\x00\\x02\\x86\\xb0\\x00\\x02\\x87 \\x00\\x02\\x87\\xb0\\x00\\x02\\x88\\xac\\x00\\x02\\x89`\\x00\\x02\\x8a@\\x00\\x02\\x8b$\\x00\\x02\\x8c\\b\\x00\\x02\\x8c\\xf0\\x00\\x02\\x8d\\xdc\\x00\\x02\\x8e\\xc8\\x00\\x02\\x8f\\xcc\\x00\\x02\\x90D\\x00\\x02\\x90\\xdc\\x00\\x02\\x91h\\x00\\x02\\x91\\xb4\\x00\\x02\\x92\\x1c\\x00\\x02\\x92\\xdc\\x00\\x02\\x93\\xc4\\x00\\x01\\xff\\xfa\\xff\\xc0\\x02\\x06\\x01\\xc0\\x00\\x17\\x00\\x00\\x01\\a\\x1532\\x16\\x15\\x14+\\x01\\\"546;\\x015'&63!2\\x16\\x01\\xf6\\xd68\\x11\\x17\\b\\xf0\\b\\x17\\x118\\xd6\\x10\\x11\\x17\\x01\\xbc\\x17\\x11\\x01\\x86\\xd6\\xc0\\x17\\x11\\b\\b\\x11\\x17\\xc0\\xd6\\x10**\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00 \\x00\\x00\\x01632\\x1e\\x01\\x15\\x11\\x14\\x06\\\"&4632\\x175\\x05\\x15\\x14\\x06\\\"&4632\\x17\\x11467\\x01\\xd6\\x05\\x05\\t\\x0e\\t8P88(\\x10\\x10\\xff\\x008P88(\\x10\\x10\\r\\t\\x01\\xbe\\x02\\t\\x0e\\t\\xfe\\xa0\\x1b%%6%\\x04\\xb9K\\xea\\x1b%%6%\\x04\\x01\\x05\\n\\x12\\x03\\x00\\x02\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x19\\x00!\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x17&264&\\\"\\x06\\x14\\x01\\xf9\\a\\a\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\a\\xfajKKjK\\x05\\a\\x14\\a\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\a\\aKjKKj\\x00\\x00\\x01\\xff\\xfd\\xff\\xe0\\x02\\x03\\x01\\xa4\\x00\\x12\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x06\\\"/\\x01&676\\x16\\x1f\\x017>\\x01\\x01\\xce/\\x06+\\xc1\\n\\x1a\\n\\xc1+\\x06/)k&\\x14\\x14&k\\x01\\x81(|+\\xc8\\n\\n\\xc8+|(#\\t'\\x14\\x14'\\t\\x00\\x01\\x00\\x0f\\xff\\xba\\x021\\x01\\xc1\\x00\\x18\\x00\\x00\\x0162\\x1f\\x02\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06&?\\x01'&6?\\x01\\x01\\x03\\t(\\tA\\x92\\x14\\f\\x0ej\\x19\\x03 \\x11\\x83\\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92\\x01\\xae\\x12\\x12\\x84\\x16\\x02&\\x0eg\\x92\\x13\\x17\\tDD\\n\\x18\\x13\\x92g\\x0e&\\x02\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x1b\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x01\\x15jKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xc0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00/\\x00;\\x00G\\x00S\\x00_\\x00k\\x00w\\x00\\x83\\x00\\x8f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x0154+\\x01\\\"\\x1d\\x01!54+\\x01\\\"\\x1d\\x01#\\\"&5\\x1146;\\x01\\x15\\x14;\\x012=\\x01!\\x15\\x14;\\x012=\\x01\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\f(\\f\\xfe\\xc0\\f(\\f\\b\\n\\x0e\\x0e\\n\\b\\f(\\f\\x01@\\f(\\f\\xfe\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x10\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\fp\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x80\\x0e\\n\\xfe\\xb0\\n\\x0e\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\x0e\\n\\x01P\\n\\x0e\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\xfe\\xcc(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\xc4`\\f\\f`\\f\\xb4`\\f\\f`\\f\\x8c(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x0346;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x05\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01(\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0eF\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\x18\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x01(\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\x01\\xa0\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\xfe\\xf8\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\x18\\x0e\\n\\xa0\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00 \\x000\\x00B\\x00R\\x00b\\x00r\\x00\\x82\\x00\\x92\\x00\\x00\\x13\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x17\\x14\\x0e\\x01+\\x01\\\"&=\\x0146;\\x012\\x16\\x15746;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5#\\x14\\x0e\\x02+\\x01\\\"&=\\x0146;\\x012\\x16\\x15\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a46;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5%\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#%46;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x95\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\xb6\\a\\v\\x06f\\n\\x0e\\x0e\\nf\\n\\x0e \\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e \\x04\\a\\b\\x05f\\n\\x0e\\x0e\\nf\\n\\x0e\\xce\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\n\\x18\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x01\\x83\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\n\\xfe\\xcd\\x0e\\nf\\n\\x0e\\x0e\\nf\\n\\x0e\\x01\\x88P\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\xfa\\a\\v\\x06\\x0e\\nP\\n\\x0e\\x0e\\n\\xa0\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x05\\t\\x06\\x04\\x0e\\nP\\n\\x0e\\x0e\\n\\x88\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\xb8\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x88\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\xa0\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0eh\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x007\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\a46;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x13\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x01463!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x17\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x95\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e\\x95\\x0e\\ne\\n\\x0e\\x0e\\ne\\n\\x0e}\\n\\x0e\\x0e\\ne\\n\\x0e\\x0e\\n\\xb5\\n\\x0e\\x0e\\n\\x01\\x1b\\n\\x0e\\x0e\\n\\xfe\\xcd\\x0e\\n\\x01\\x1b\\n\\x0e\\x0e\\n\\xfe\\xe5\\n\\x0e\\x18\\n\\x0e\\x0e\\n\\x01\\x1b\\n\\x0e\\x0e\\n\\xe8P\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\xaa\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x01\\xa8\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\xfe@\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\x01\\xa8\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\xb8\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\x02\\x00\\x01\\u007f\\x00\\x14\\x00\\x007'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\a\\x01\\x06\\\"\\xae\\xa7\\a\\a%\\a\\x15\\bp\\xf0\\b\\x15\\a%\\a\\a\\xfe\\xd9\\a\\x16\\t\\xa6\\a\\x16\\a$\\b\\bp\\xf0\\b\\b$\\a\\x16\\a\\xfe\\xda\\b\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x0f\\x01a\\x01q\\x00#\\x00\\x007\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\a\\xf3d\\t\\t\\x16\\n\\x1a\\tdd\\t\\x1a\\n\\x16\\t\\tdd\\t\\t\\x16\\n\\x1a\\tdd\\t\\x1a\\n\\x16\\t\\t\\xc0d\\t\\x1a\\n\\x16\\t\\tdd\\t\\t\\x16\\n\\x1a\\tdd\\t\\x1a\\n\\x16\\t\\tdd\\t\\t\\x16\\n\\x1a\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x1b\\x005\\x00=\\x00\\x00\\x01\\x15\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x13\\a\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x1f\\x01\\x16\\x14&4&\\\"\\x06\\x14\\x162\\x010\\f8\\f \\f8\\f\\f8\\f \\f8\\f\\xc9\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\ad\\a\\xa8PpPPp\\x01\\x00 \\f8\\f\\f8\\f \\f8\\f\\f8\\xfe\\xd7\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\ad\\a\\x14\\xcepPPpP\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\v\\x00%\\x00-\\x00\\x00\\x01\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x13\\a\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x1f\\x01\\x16\\x14&4&\\\"\\x06\\x14\\x162\\x010\\f\\xa8\\f\\f\\xa8\\f\\xc9\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\ad\\a\\xa8PpPPp\\x01\\x00 \\f\\f \\f\\xfe\\xd7\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\ad\\a\\x14\\xcepPPpP\\x00\\x02\\x00\\a\\xff\\xc7\\x01\\xf8\\x01\\xc0\\x00)\\x009\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x06#\\\".\\x0154>\\x0176\\x16\\x1f\\x01\\x16\\x06\\a\\x0e\\x03\\x15\\x14\\x1632654&'.\\x01?\\x01>\\x01\\a\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x15\\x01\\x9008\\x91gCrC\\x1a. \\t\\x15\\x05\\x10\\x04\\x04\\a\\x10\\x19\\x11\\nbFEc$ \\a\\x04\\x04\\x10\\x05\\x15_\\x0e\\n \\n\\x0e\\x0e\\n \\n\\x0e\\x01\\x8a\\\"k=g\\x91BrD)L>\\x17\\x06\\x05\\t\\x1c\\b\\x12\\x05\\f\\x1d\\\"'\\x15EcbG'G\\x18\\x05\\x12\\b\\x1c\\t\\x05\\xd8\\n\\x0e\\x0e\\n\\xf0\\n\\x0e\\x0e\\n\\x00\\x00\\x05\\x00\\x18\\xff\\xc0\\x02h\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463%2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x1146372\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x1146372\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\xd8\\a\\t\\t\\a0\\a\\t\\t\\aP\\a\\t\\t\\a0\\a\\t\\t\\a\\x010\\a\\t\\t\\a0\\a\\t\\t\\a\\xb0\\a\\t\\t\\a0\\a\\t\\t\\a\\xb0\\a\\t\\t\\a0\\a\\t\\t\\a\\xa0\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t`\\t\\a`\\a\\t\\t\\a`\\a\\t\\xc0\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01 \\a\\t`\\t\\a\\xfe\\x80\\a\\t\\t\\a\\x01\\x80\\a\\t`\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\x00\\x00\\x00\\x02\\x00\\x10\\xff\\xc1\\x01\\xf0\\x01\\xbf\\x00<\\x00D\\x00\\x00%\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\a\\x06'&=\\x01&'\\a\\x06'&'&?\\x01&47'&7676\\x1f\\x01675476\\x17\\x16\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\a\\x06264&\\\"\\x06\\x14\\x01\\xe7\\t\\x03\\x11&\\x06\\b+\\x1b\\\"\\t76\\n\\\"\\x1b*\\t\\x06&\\x11\\x03\\t*\\x03\\x03*\\t\\x03\\x11&\\x06\\t*\\x1b\\\"\\t77\\t\\\"\\x1b*\\t\\x06&\\x11\\x03\\t*\\x06\\x06\\xdeB//B/\\x84\\x04\\n5)\\a\\x04\\x19\\x17\\f1\\n\\x02\\f\\f\\x02\\n1\\f\\x17\\x19\\x04\\a)5\\t\\x05\\x19\\x11$\\x11\\x19\\x04\\n5)\\a\\x05\\x18\\x17\\f1\\n\\x02\\f\\f\\x02\\n1\\f\\x17\\x19\\x04\\a)5\\n\\x04\\x19##-/B//B\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02A\\x01\\xa0\\x00\\x1e\\x00D\\x00\\x00\\x0162\\x1f\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x014.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01%\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"/\\x01&\\\"\\x0f\\x01\\x06#\\\"/\\x01&54?\\x0162\\x1f\\x01546;\\x012\\x16\\x1d\\x01\\x01\\x18\\x04\\b\\x04\\xb8\\t\\ap\\a\\t\\x04\\b\\x04@\\a\\t\\t\\ap\\a\\t\\x01\\xdc\\x04\\x03\\x19\\x04\\x05\\x05\\x03\\xeb\\x04\\b\\x04\\xeb\\x03\\x04\\x06\\x04\\x19\\x03\\x04\\xfd\\x0e\\\"\\rZ\\a\\x058\\x05\\a\\x01,\\x02\\x02\\x98\\xa4\\a\\t\\n\\x06`\\x04\\b\\x04\\t\\a`\\x06\\n\\t\\a\\xa41\\x04\\x06\\x04\\x03\\x1f\\x05\\x03\\xc2\\x02\\x02\\xc2\\x03\\x05\\x1f\\x03\\x04\\x06\\x04\\xd0\\v\\vJI\\x05\\a\\a\\x05\\x8b\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x16?\\x016/\\x0154+\\x01\\\"\\x1d\\x01\\x14\\x17\\x99Α\\x91Α\\x011\\n\\a\\x1c\\a\\t@\\f0\\f\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xcd\\a\\t'\\n\\a.\\x8a\\f\\f\\xa8\\x06\\x04\\x00\\x00\\x00\\x03\\xff\\xfb\\x00\\x00\\x02E\\x01\\x80\\x00\\\"\\x000\\x00B\\x00\\x00%\\x16\\x06+\\x01'4&+\\x01\\\"\\x0e\\x01\\x15\\a#\\\"&7\\x136;\\x01\\a\\x14\\x16;\\x01265'32\\x17\\x0f\\x01\\x06\\x16;\\x0126/\\x01&+\\x01\\\"\\x172>\\x015'4&+\\x01\\\"\\x06\\x15\\a\\x14\\x1e\\x013\\x02=\\a\\x12\\x11\\xc4\\v\\t\\aD\\x04\\a\\x05\\v\\xc4\\x11\\x12\\a\\x8c\\b\\x13b\\x03\\x05\\x03\\x1e\\x03\\x05\\x03b\\x13\\b\\xad\\x04\\x01\\a\\x06(\\x06\\a\\x01\\x04\\x01\\a(\\a7\\x04\\b\\x04\\x06\\t\\x06.\\x06\\t\\x06\\x04\\b\\x04-\\x10\\x1db\\x06\\b\\x04\\x06\\x04b\\x1d\\x10\\x01@\\x13\\x17\\x04\\x05\\x05\\x04\\x17\\x134,\\x05\\b\\b\\x05,\\a\\xb0\\x05\\b\\x050\\x06\\b\\b\\x060\\x05\\b\\x05\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x00+\\x003\\x00;\\x00\\x00\\x1332\\x16\\x1d\\x0132\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01546\\x01\\x15\\x14\\x06#!\\\"&=\\x0146;\\x01\\x17\\x162?\\x0132\\x16\\x064&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\xd8P\\n\\x0eX\\r\\n\\t\\x98\\x06\\x10\\x06\\x98\\t\\n\\rX\\x0e\\x012\\x0e\\n\\xfe0\\n\\x0e\\x0e\\n\\x931\\x0f*\\x0f1\\x93\\n\\x0e|\\f\\x10\\f\\f\\x10L\\f\\x10\\f\\f\\x10\\x01\\xc0\\x0e\\n\\xa8\\x19\\t\\x98\\x06\\x06\\x98\\t\\x19\\xa8\\n\\x0e\\xfe\\x88p\\n\\x0e\\x0e\\np\\n\\x0e1\\x0f\\x0f1\\x0ej\\x10\\f\\f\\x10\\f\\f\\x10\\f\\f\\x10\\f\\x00\\x02\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x16\\x00\\x1e\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014?\\x01>\\x023!2\\x16\\x17\\x05\\a3\\x17373'\\x028\\b\\x1c\\x14\\xfe \\x14\\x1c\\bj\\x04\\r\\x10\\a\\x01\\f\\v\\x17\\x06\\xfe\\xd4U{ p {U\\xcc\\f\\x0f\\x81\\x14\\x1c\\x1c\\x14\\x81\\x0f\\f\\x9f\\x05\\n\\x06\\r\\b+\\x80@@\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\a\\xff\\xc8\\x02\\x01\\x01\\xc0\\x00<\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146303\\x17.\\x01#\\\"\\x06\\x14\\x163267632\\x1f\\x01\\x16\\x15\\x14\\a\\x0e\\x03#\\\".\\x0154632\\x1e\\x01\\x17'41463\\x01\\xf4\\x05\\a\\a\\x05\\xc8\\x05\\a\\a\\x05\\x01e\\x16U'IggI\\x1cD\\x14\\x04\\x04\\x05\\x04\\\"\\x03\\x04\\x0e)-.\\x14CsB\\x92f\\x1fIA\\x14\\x04\\a\\x05\\x01\\xc0\\a\\x05\\xc8\\x05\\a\\a\\x05/\\x05\\a\\x05 .g\\x92g\\x1a\\x12\\x03\\x04\\\"\\x03\\x05\\x06\\x03\\r\\x18\\x11\\nBrDf\\x92\\x17)\\x17R\\x01\\x05\\a\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00*\\x00T\\x00\\x00\\x014146;\\x012\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x17.\\x01#\\\"\\x06\\a\\x06+\\x01\\\"&545>\\x0132\\x1e\\x01\\x17\\x032676;\\x012\\x16\\x15\\x14\\a\\x0e\\x01#\\\"&'\\x17\\x141\\x14\\x06+\\x01\\\"=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#'\\x1e\\x01\\x01\\xb9\\a\\x05/\\f\\a\\x05\\xc8\\x05\\a\\a\\x05f\\x16U':d\\r\\x02\\n1\\x05\\a\\x11\\x89Z\\x1fIA\\x14\\xbd9d\\x0e\\x02\\n1\\x05\\a\\x01\\x10\\x89Z0n\\x1f\\x04\\a\\x05/\\f\\a\\x05\\xc8\\x05\\a\\a\\x05f\\x15V\\x01\\xb3\\x01\\x05\\a\\f\\xc8\\x05\\a\\a\\x05/\\x05\\a\\x05 .O8\\t\\a\\x05\\x01\\x01Ws\\x17)\\x17\\xfe\\xafO8\\t\\a\\x05\\x01\\x01Ws3$R\\x01\\x05\\a\\f\\xc8\\x05\\a\\a\\x05/\\x05\\a\\x05 .\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x003\\x00?\\x00K\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x00\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1554+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1554+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xd0\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\xfe\\xad\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\x17\\\"\\x17\\xf8\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01h\\x17\\\"\\x17\\x17\\\"I\\x17\\\"\\x17\\x17\\\"I\\x17\\\"\\x17\\x17\\\"\\x9f \\f\\f \\fT \\f\\f \\fT \\f\\f \\f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01#54&\\\"\\x06\\x1d\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x18Y~YP*<*\\xe0\\x1c\\x14\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x14\\x1cH?YY?HH\\x1e**\\x1eH\\x00\\x00\\x01\\x00\\b\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00'\\x00\\x00\\x01276\\x16\\x1d\\x01\\x14\\a\\x06#\\\"&#\\\"\\a\\x15\\x14\\x06+\\x01\\\"&5\\x11&546\\x17\\x1e\\x01\\x17\\x14\\x15\\x14\\a62\\x16\\x01^0E\\x0f\\x1e\\x0e;?$h\\x1a>4\\x0e\\n\\x10\\n\\x0e\\x18\\\"\\x18\\x16\\x1f\\x01\\x04!Gh\\x01] \\a\\x12\\x12\\xf3\\x11\\t)#\\x17^\\n\\x0e\\x0e\\n\\x01\\x82\\x11\\x1d\\x18!\\x01\\x01\\x1e\\x15\\x02\\x02\\n\\n\\f#\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x001\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x0e\\x01+\\x01\\\"&=\\x0146;\\x012\\x1754&\\\"\\x06\\x1d\\x016;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&/\\x01.\\x01=\\x014\\x96Ԗ\\n\\b\\x0e\\x02A-\\x18\\n\\x0e\\x0e\\n\\x18/!q\\x9eq!/\\x18\\n\\x0e\\x0e\\n\\x18-A\\x02\\x0e\\b\\n\\x01\\xa0\\x96j0\\b\\x11\\x04\\a-?\\x0e\\n\\xb0\\n\\x0e\\\"\\x02OqqO\\x02\\\"\\x0e\\n\\xb0\\n\\x0e?-\\a\\x04\\x11\\b0j\\x00\\x00\\x01\\x00\\x00\\xff\\xfc\\x01\\x00\\x01\\x84\\x00\\x11\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\x01y\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e\\x00\\x02\\x00\\x00\\xff\\xfa\\x01\\x81\\x01\\x84\\x00\\x11\\x00#\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01\\x17\\x1e\\x01\\x14\\x06\\a\\x06.\\x016764'.\\x01>\\x01\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\xd4\\x15\\x19\\x19\\x15\\b\\x14\\t\\x05\\t\\x15\\x15\\t\\x05\\t\\x14\\x01x\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e\\x13\\f)0)\\f\\x05\\x06\\x11\\x13\\x05\\f.\\f\\x05\\x13\\x11\\x06\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xce\\x02@\\x01\\xb2\\x00\\x11\\x00'\\x00>\\x00P\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01%\\x1e\\x01\\x14\\x06\\a\\x06.\\x0167>\\x0254&'.\\x01>\\x01\\x16\\x14\\x06\\a\\x06&'&67>\\x024.\\x01'.\\x01>\\x01\\x17\\x16\\a\\x1e\\x01\\x14\\x06\\a\\x06.\\x016764'.\\x01>\\x01\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\x01B<DD<\\b\\x14\\v\\x04\\t!/\\x1a91\\t\\x04\\v\\x14(-)\\t\\x13\\x05\\x05\\x04\\t\\x13\\x1d\\x0f\\x0f\\x1d\\x13\\t\\x04\\n\\x14\\b)a\\x15\\x19\\x19\\x15\\b\\x14\\t\\x05\\t\\x15\\x15\\t\\x05\\t\\x14\\x01y\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e\\x8c'~\\x8e~'\\x06\\x05\\x10\\x14\\x05\\x16=J';h!\\x05\\x14\\x10\\x05\\xc2`S\\x19\\x06\\x05\\b\\t\\x13\\x06\\f$,.,$\\f\\x06\\x13\\x11\\x05\\x06\\x196\\f)0)\\f\\x05\\x06\\x11\\x13\\x05\\f.\\f\\x05\\x13\\x11\\x06\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00#\\x00'\\x00+\\x00\\x00=\\x013\\x15'\\x153573\\x15#75#\\x15\\x0153\\x15'\\x1535%3\\x15#5#\\x15#53\\x153\\x153\\x15#'3\\x15#\\xc0\\x80@\\x80\\xc0\\xc0\\x80@\\xfe\\xc0\\xc0\\x80@\\x01  ` @`@  @  \\xe0\\xc0\\xc0\\x80@@@\\xc0@@@\\xfe\\xc0\\xc0\\xc0\\x80@@@\\x80 `\\xc0 \\x80   \\x00\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00\\x001\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x113\\x11\\x12\\t\\t\\x12\\t$\\t\\x1b\\x12\\x1b\\t\\t\\t\\t\\t\\x1a\\x12\\x1b\\x12\\x12\\x12\\x12\\x12\\t\\x12\\x1b\\x1b\\t\\t\\t\\x12\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x01\\x80\\xfe\\x80\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x11\\x00\\x19\\x00\\x00=\\x0146;\\x012\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&6\\\"\\x06\\x14\\x16264\\x1c\\x14\\xcc\\x14\\x0e\\xd4\\x0e\\x0e\\xcc\\x0e(\\x0e\\xd4\\x0e\\x84(\\x1c\\x1c(\\x1c\\xc4\\xcc\\x14\\x1c\\x0e\\xd4\\x0e(\\x0e\\xcc\\x0e\\x0e\\xd4\\x0e\\xd0\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\x11\\x00\\x19\\x00)\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x0146;\\x012\\x17\\x06264&\\\"\\x06\\x14\\x05\\a\\x06\\\"'764/\\x0132\\x1f\\x01\\x16\\x14\\x01\\xf2\\x0e\\x0e\\xcc\\x0e(\\x0e\\xd4\\x0e\\x1c\\x14\\xcc\\x14\\x0e\\xc2(\\x1c\\x1c(\\x1c\\x022\\xcc\\x0e(\\x0e\\xae\\x1a\\x1a\\xc51\\x14\\x0e\\xd4\\x0e\\xde\\x0e(\\x0e\\xcc\\x0e\\x0e\\xd4\\x0e\\x14\\xcc\\x14\\x1c\\x0e\\x92\\x1c(\\x1c\\x1c(\\xa2\\xcc\\x0e\\x0e\\xae\\x1bJ\\x1b\\xc4\\x0e\\xd4\\x0e(\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00#\\x00/\\x008\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x05\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x13&7!\\\"\\x06\\x14\\x163\\x01\\xc0\\t\\x03\\x03\\t\\x0e\\n\\xfe\\xb8(88(\\x01H\\n\\x0e\\xfe\\xc0\\x06\\xd4\\x06\\x06\\xd4\\x06\\x06\\xd4\\x06\\x06\\xd4\\x06\\xfd\\x03\\x03\\xfe\\xe3\\r\\x13\\x13\\rX\\f\\a\\v4\\v\\b\\v\\x10\\n\\x0e8(\\x01@(8\\x0e\\nn\\x14\\x06\\x06\\x14\\x06F\\x14\\x06\\x06\\x14\\x06\\xff\\x00  \\x13\\x1a\\x13\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\n\\x00\\x00\\x15\\x11463!2\\x16\\x15\\x11'\\x1c\\x14\\x01 \\x14\\x1c\\xc0@\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe0p\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00'\\x000\\x008\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01#\\\"&=\\x014635463!2\\x1f\\x01\\x16\\x15\\x035!\\x15%5#\\\"&=\\x01#\\x15\\x04264&\\\"\\x06\\x14\\x01\\xc0\\x1b%\\t\\a0\\x13\\r\\xfe\\xc0\\r\\x130\\a\\t%\\x1b\\x13\\r\\x01\\x13\\r\\t.\\t@\\xff\\x00\\x01\\x000\\a\\t\\xc0\\x01&\\x14\\x0e\\x0e\\x14\\x0e\\x01\\x00%\\x1bp\\a\\t`\\r\\x13\\x13\\r`\\t\\ap\\x1b%\\xa0\\r\\x13\\t.\\t\\r\\xfe\\x8d``\\xe0`\\t\\a0\\xa0H\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1a\\x00\\\"\\x00*\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x017>\\x02;\\x012\\x16\\x1f\\x0132\\x16\\x064&\\\"\\x06\\x14\\x1626\\x14\\x06\\\"&462\\x02\\x00\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14X\\f\\x04\\r\\x12\\n~\\x0f\\x18\\x06\\fX\\x14\\x1c\\x88FdFFd&4H44H\\x010\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c!\\t\\x0e\\b\\x11\\x0e!\\x1c\\xd6dFFdF\\x9cH44H4\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00-\\x000\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01'#\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x13>\\x01;\\x012\\x16\\x17\\x13'3'\\x01\\xb0\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x14\\x18\\x98\\x18\\x14\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x17\\x83\\x03\\x12\\t0\\t\\x12\\x03\\x83\\xe8^/ \\t\\a \\a\\t\\t\\a \\a\\t@@\\t\\a \\a\\t\\t\\a \\a\\t\\x01j\\t\\r\\r\\t\\xfe\\x96\\x90\\x81\\x00\\x03\\x00\\x12\\xff\\xe0\\x01\\x84\\x01\\xa0\\x00\\x1d\\x00%\\x00-\\x00\\x00%\\x1e\\x01\\a\\x0e\\x01+\\x01\\\"&=\\x0146;\\x01\\x11#\\\"&=\\x0146;\\x012\\x16\\a\\x06'\\x153264&#\\x11264&+\\x01\\x15\\x01M\\x1b\\x1c\\x04\\x05R6\\xd1\\a\\t\\t\\a  \\a\\t\\t\\a\\xc79L\\x06\\x03\\xd3W\\x14\\x1c\\x1c\\x14\\x18  \\x18W\\xd2\\x15?$4F\\t\\a0\\a\\t\\x01 \\t\\a0\\a\\tT9$a`\\x1c(\\x1c\\xfe\\xe0!.!p\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x00#\\x00\\x00\\x01\\x15\\x14\\x06+\\x01\\x0332\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x13#\\\"&=\\x0146;\\x012\\x16\\x01@\\t\\a?P/\\a\\t\\t\\a\\xc0\\a\\t\\t\\a?P/\\a\\t\\t\\a\\xc0\\a\\t\\x01\\x90 \\a\\t\\xfe\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02C\\x01\\xa0\\x00-\\x00I\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\x1132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x11#\\x15\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x015#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x15\\x010\\a\\t\\t\\a \\a\\t8(\\a\\t\\t\\a\\xa0\\a\\t\\t\\a(8\\t\\a \\a\\t\\t\\a\\x02 \\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v00\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\x01\\xa0\\t\\a`\\a\\t\\t\\a \\xfe\\xd0\\t\\a \\a\\t\\t\\a \\a\\t\\x010 \\a\\t\\t\\a`\\a\\t\\xfe\\xb0\\x14\\aP\\x05\\x05P\\a\\x14\\xe0\\x14\\aP\\x05\\x05P\\a\\x14\\xe0\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xdd\\x01\\xc0\\x01\\xa0\\x00-\\x00I\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\x15\\x14\\x06+\\x01\\\"&=\\x01463\\x01\\x17\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x013546\\x01\\xb0\\a\\t\\t\\a \\a\\tx\\x18\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x18x\\t\\a \\a\\t\\t\\a\\x01[P\\x05\\x05P\\a\\x14\\xe0\\x14\\aP\\x05\\x05P\\a\\x14\\xe0\\x14\\x01\\xa0\\t\\aP\\a\\t\\t\\a\\x10p\\t\\a \\a\\t\\t\\a \\a\\tp\\x10\\a\\t\\t\\aP\\a\\t\\xfe\\xfbP\\x04\\x0e\\x04P\\b\\b\\v00\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v00\\v\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x007\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\r\\x05\\b\\b\\x05\\x01\\x06\\x05\\b\\b\\x05\\xfe\\xfa\\x05\\b\\b\\x05\\x01\\x06\\x05\\b\\b\\x05\\x9d\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a`\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x01\\x00\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b@\\t\\a \\a\\t\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x11#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06\\x01\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\\\\\x05\\a\\a\\x05\\xe8\\x05\\a\\a\\x05\\xe8\\x05\\a\\a\\x05\\xe8\\x05\\a\\a\\x01 \\t\\a \\a\\t\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\a\\x05(\\x05\\a\\a\\x05(\\x05\\a\\xff\\x00\\a\\x05(\\x05\\a\\a\\x05(\\x05\\a\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x007\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x10\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa3\\x05\\b\\b\\x05\\xfe\\xfa\\x05\\b\\b\\x05\\x01\\x06\\x05\\b\\b\\x05\\xfe\\xfa\\x05\\b\\b\\x05\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\xff\\x00\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a \\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x06\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\x90\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463P\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\aP\\t\\a@\\a\\t\\t\\a@\\a\\t\\x01@\\t\\a@\\a\\t\\t\\a@\\a\\t\\xa0\\t\\a@\\a\\t\\t\\a@\\a\\t\\xb0\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\v\\x00\\x1b\\x00+\\x00;\\x00K\\x00\\x007'&4?\\x016\\x16\\x1d\\x01\\x14\\x06\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463e`\\x05\\x05`\\a\\x14\\x14\\x01D\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa3\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe3\\a\\t\\t\\a\\xfe`\\a\\t\\t\\aU`\\x04\\x0e\\x04`\\b\\b\\v\\xc0\\v\\b-\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\v\\x00\\x1b\\x00+\\x00;\\x00K\\x00\\x007\\x06&=\\x0146\\x1f\\x01\\x16\\x14\\a\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1b\\a\\x14\\x14\\a`\\x05\\x05\\x015\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa3\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe3\\a\\t\\t\\a\\xfe`\\a\\t\\t\\aU\\b\\b\\v\\xc0\\v\\b\\b`\\x04\\x0e\\x04\\x95\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x19\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x056\\x16\\x15\\x11\\x14\\x06/\\x015\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01\\xde\\x10\\\"#\\x0fn\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c&\\v\\x11\\x14\\xff\\x00\\x14\\x11\\vK\\x9e\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x17\\x00\\\"\\x00\\x00)\\x01\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x00\\\"\\x06\\x14\\x16264\\a!5'&\\x0f\\x01'&\\x0f\\x01\\x01\\xd0\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\xfe\\xa3.!!.!h\\x01\\x80X\\b\\b\\x888\\b\\bH\\x1c\\x14\\x01 \\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x01H!.!!.\\xe7pX\\b\\b\\x888\\b\\bH\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x01\\x80\\x01\\xc0\\x00\\x17\\x00\\x00\\x17.\\x065462\\x16\\x15\\x14\\x0e\\x05\\a\\x06\\\"\\xac\\x18=\\x1a\\\"\\v\\r\\x03p\\xa0p\\x03\\r\\v\\\"\\x1a=\\x18\\a\\x1a6#X$5\\x16\\\"\\x19\\x11PppP\\x11\\x19\\\"\\x165$X#\\n\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x006462\\x16\\x14\\x06\\\"7264&#\\b\\x91Α\\x91\\xcegLllLYΑ\\x91Α@l\\x98l\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc1\\x00\\x11\\x00!\\x00\\x00\\x13\\x1e\\x03\\x15\\x14\\x06\\\"&54>\\x02762\\x03264&#\\\"&54&\\\"\\x06\\x15\\x14\\x16\\xcd\\x106,!g\\x92g!-5\\x10\\a-\\x17\\a\\t\\t\\a!/\\t\\x0e\\tB\\x01\\xaa4_6I&JhhJ&H8^4\\x16\\xfe@\\t\\x0e\\t/!\\a\\t\\t\\a.B\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\f\\x00\\x1a\\x007\\x00\\x00\\x01\\x17\\x16\\x0f\\x02\\x06.\\x01?\\x0267\\x16\\x14\\x0f\\x01\\x06/\\x01&?\\x0162\\x17\\x034?\\x016\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x0f\\x01\\x06+\\x01\\x11!\\x01\\x93Z\\a\\a\\xdb\\\\\\x06\\v\\x06\\x01\\n\\xdb\\a\\xa9\\v\\v$\\a\\aZ\\a\\a$\\v \\f\\x84\\x04(\\x05\\x0f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x1e\\b\\x06\\x06(\\x03\\x05\\xe6\\x01@\\x01mZ\\a\\a\\xdb\\n\\x01\\x06\\v\\x06\\\\\\xdb\\a\\x10\\f \\f#\\a\\aZ\\a\\a#\\f\\f\\xfe\\xb2\\x05\\x03(\\x06\\x06\\b\\x9e\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x0f\\x05(\\x04\\xfe\\xc0\\x00\\x00\\x00\\x00\\x01\\x00@\\xff\\xda\\x01\\x80\\x01\\xa6\\x00\\x15\\x00\\x00\\x17\\x114;\\x012\\x1d\\x0176\\x16\\x15\\x11\\x14\\x06/\\x01\\x15\\x14+\\x01\\\"@\\f0\\f\\xc4\\x0f%%\\x0f\\xc4\\f0\\f\\x14\\x01\\xa8\\f\\f\\xb0\\xb5\\r\\x12\\x14\\xfe\\x80\\x14\\x12\\r\\xb4\\xaf\\f\\x00\\x00\\x01\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\x1f\\x00\\x005\\x114;\\x012\\x1d\\x0176\\x16\\x1d\\x0176\\x16\\x15\\x11\\x14\\x06/\\x01\\x15\\x14\\x06/\\x01\\x15\\x14+\\x01\\\"\\f(\\f\\xac\\x0f%\\xac\\x0f%%\\x0f\\xac%\\x0f\\xac\\f(\\f\\f\\x01h\\f\\f\\x98\\x9d\\r\\x12\\x14\\x84\\x9d\\r\\x12\\x14\\xfe\\xc0\\x14\\x12\\r\\x9c\\x83\\x14\\x12\\r\\x9c\\x97\\f\\x00\\x02\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\v\\x00\\x17\\x00\\x007&4?\\x016\\x16\\x15\\x11\\x14\\x06'7&4?\\x016\\x16\\x15\\x11\\x14\\x06'\\f\\f\\f\\xc0\\x0f%%\\x0f@\\f\\f\\xc0\\x0f%%\\x0f\\xa7\\n\\x1e\\n\\xa0\\r\\x12\\x14\\xfe\\xc0\\x14\\x12\\r\\xa0\\n\\x1e\\n\\xa0\\r\\x12\\x14\\xfe\\xc0\\x14\\x12\\r\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xb8\\x01\\xc1\\x01\\xc8\\x00\\v\\x00\\x00%\\x16\\x14\\a\\x05\\x06&5\\x1146\\x17\\x01\\xa8\\x18\\x18\\xfe\\xa0\\x1713\\x15\\xe9\\x0e6\\x0e\\xd0\\x0e\\x1b\\x1c\\x01\\xa0\\x1e\\x19\\x0e\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe1\\x01\\xc0\\x01\\xa1\\x00\\x0f\\x00\\x1f\\x00\\x00\\x17#\\\"&5\\x1146;\\x012\\x16\\x15\\x11\\x14\\x06%\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15\\x90`\\x14\\x1c\\x1c\\x14`\\x14\\x1c\\x1c\\x01\\x1c\\x1c\\x14`\\x14\\x1c\\x1c\\x14`\\x14\\x1c\\x1f\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x00\\x02\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\v\\x00\\x17\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06&5\\x1146\\x17\\a\\x16\\x14\\x0f\\x01\\x06&5\\x1146\\x17\\x01\\xf4\\f\\f\\xc0\\x0f%%\\x0f@\\f\\f\\xc0\\x0f%%\\x0f\\xd9\\n\\x1e\\n\\xa0\\r\\x12\\x14\\x01@\\x14\\x12\\r\\xa0\\n\\x1e\\n\\xa0\\r\\x12\\x14\\x01@\\x14\\x12\\r\\x00\\x00\\x01\\x00\\x00\\xff\\xfa\\x02\\x00\\x01\\x86\\x00\\x1f\\x00\\x00\\x01\\x11\\x14+\\x01\\\"=\\x01\\a\\x06&=\\x01\\a\\x06&5\\x1146\\x1f\\x01546\\x1f\\x0154;\\x012\\x02\\x00\\f(\\f\\xac\\x0f%\\xac\\x0f%%\\x0f\\xac%\\x0f\\xac\\f(\\f\\x01t\\xfe\\x98\\f\\f\\x98\\x9d\\r\\x12\\x14\\x84\\x9d\\r\\x12\\x14\\x01@\\x14\\x12\\r\\x9c\\x83\\x14\\x12\\r\\x9c\\x97\\f\\x00\\x00\\x01\\x00@\\xff\\xda\\x01\\x80\\x01\\xa6\\x00\\x15\\x00\\x00\\x01\\x11\\x14+\\x01\\\"=\\x01\\a\\x06&5\\x1146\\x1f\\x0154;\\x012\\x01\\x80\\f0\\f\\xc4\\x0f%%\\x0f\\xc4\\f0\\f\\x01\\x94\\xfeX\\f\\f\\xb0\\xb5\\r\\x12\\x14\\x01\\x80\\x14\\x12\\r\\xb4\\xaf\\f\\x00\\x00\\x00\\x00\\x02\\xff\\xf7\\xff\\xe0\\x01\\xc9\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00\\x00%\\x15\\x14\\x06#!\\\"&=\\x01463!2\\x16%\\\"&?\\x0162\\x1f\\x01\\x16\\x06#\\x01\\xc0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfep\\x1f\\x19\\x15\\xb0\\x0e*\\x0e\\xb0\\x15\\x19\\x1f@@\\r\\x13\\x13\\r@\\r\\x13\\x1339\\x17\\xc0\\x10\\x10\\xc0\\x179\\x00\\x00\\x00\\x01\\x00\\x1b\\xff\\xe5\\x01%\\x01\\x9b\\x00\\x14\\x00\\x00?\\x0162\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06\\x0f\\x01\\x06\\\"/\\x01&4#\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\xd1\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\x00\\x00\\x00\\x01\\x00\\x1b\\xff\\xe5\\x01%\\x01\\x9b\\x00\\x14\\x00\\x00%\\a\\x06\\\"/\\x01.\\x01?\\x01'&6?\\x0162\\x1f\\x01\\x16\\x14\\x01\\x1d\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\xaf\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00#\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x99Α\\x91Α\\x01\\x88\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\x01\\xb8\\x91Α\\x91\\u03838\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x13\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17!2=\\x014#!\\\"\\x1d\\x01\\x14\\x99Α\\x91Αt\\x01\\b\\f\\f\\xfe\\xf8\\f\\x01\\xb8\\x91Α\\x91Ώ\\f8\\f\\f8\\f\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00#\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016\\x99Α\\x91Α\\x01rBB\\b\\b(\\b\\tAA\\t\\b(\\b\\bBB\\b\\b(\\b\\tAA\\t\\b(\\b\\x01\\xb8\\x91Α\\x91ΨAA\\t\\b(\\b\\bBB\\b\\b(\\b\\tAA\\t\\b(\\b\\bBB\\b\\b(\\b\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00\\x00\\x00\\x14\\x06\\\"&462\\x0376/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x16\\x01\\xf8\\x91Α\\x91΄\\xb8\\f\\f\\x16\\f\\v\\x96F\\v\\f\\x16\\f\\fh\\v\\x01'Α\\x91Α\\xfe\\x85\\xb8\\v\\v\\x17\\v\\v\\x96F\\v\\v\\x17\\v\\vh\\f\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00+\\x003\\x00\\x00\\x00\\x14\\x06\\\"&462\\a\\\"\\a\\x06\\x1f\\x01\\x167>\\x0232\\x16\\x15\\x14\\x06\\a\\x0e\\x02\\x1d\\x01\\x14;\\x012=\\x014>\\x0254&\\x06\\\"\\x06\\x14\\x16264\\x01\\xf8\\x91Α\\x91\\xce`J+\\x06\\t#\\t\\a\\v\\r\\x14\\r\\x11\\x1d\\x0f\\x11\\x12\\x11\\x14\\f8\\f\\x1a\\x1f\\x1aH &\\x1b\\x1b&\\x1b\\x01'Α\\x91ΑR@\\t\\a\\x1a\\a\\t\\r\\r\\n\\x13\\x0e\\v\\r\\n\\n\\f\\x1e\\x13\\x04\\f\\f\\x01\\t\\x12\\x10&\\x1a*<\\xf8\\x1b&\\x1b\\x1b&\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\x14\\x16264\\x1754+\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x012\\x99Α\\x91Α\\x01\\t\\\"\\x19\\x19\\\"\\x19\\x0e\\f\\f\\f@\\f\\f\\f\\f\\f\\fX\\f\\x01\\xb8\\x91Α\\x91\\xce#\\x19\\\"\\x19\\x19\\\"\\xe5\\x18\\fd\\f\\f\\x18\\f@\\f\\x18\\f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00(\\x00P\\x00X\\x00\\x00%2\\x1d\\x01\\x14+\\x01\\x0e\\x02\\a\\x15\\x14+\\x01\\\"=\\x01.\\x01'#\\\"=\\x014;\\x01>\\x01754;\\x012\\x1d\\x01\\x1e\\x01\\x17\\a>\\x017#\\\"=\\x014;\\x01.\\x01'\\x15\\x14+\\x01\\\"=\\x01\\x0e\\x01\\a32\\x1d\\x01\\x14+\\x01\\x1e\\x01\\x1754;\\x012\\x154\\x14\\x06\\\"&462\\x01\\xf4\\f\\f\\x1e\\a3N.\\f(\\fFe\\v\\x1e\\f\\f\\x1e\\veF\\f(\\fFe\\v\\xb6,?\\n)\\f\\f)\\n?,\\f(\\f,?\\n)\\f\\f)\\n?,\\f(\\f\\x13\\x1a\\x13\\x13\\x1a\\xe0\\f(\\f.N3\\a\\x1e\\f\\f\\x1e\\veF\\f(\\fFe\\v\\x1e\\f\\f\\x1e\\veF\\xb5\\n?,\\f(\\f,?\\n)\\f\\f)\\n?,\\f(\\f,?\\n)\\f\\fy\\x1a\\x13\\x13\\x1a\\x13\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x13\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04.\\x01\\a\\x016\\x04\\x1e\\x017\\x01\\x06\\x99Α\\x91Α\\x01\\xaa`\\x884\\x01\\x01&\\xfe\\x91`\\x884\\xfe\\xff&\\x01\\xb8\\x91Α\\x91\\xce\\x15`\\v&\\xfe\\xff4\\x1c`\\v&\\x01\\x014\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xe5\\x01\\xc0\\x01\\x9b\\x00\\x1d\\x00\\x00%\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01\\x16\\x06\\x0f\\x01!2\\x16\\x1d\\x01\\x14\\x06#!\\x17\\x1e\\x01\\x01\\x02\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x17\\a\\x01\\ax\\x01\\x1f\\n\\x0e\\x0e\\n\\xfe\\xe1x\\a\\x01\\x03\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe5\\x01\\xc1\\x01\\x9b\\x00\\x1d\\x00\\x00\\x13762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&6?\\x01!\\\"&=\\x01463!'.\\x01\\xbe\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x17\\a\\x01\\ax\\xfe\\xe1\\n\\x0e\\x0e\\n\\x01\\x1fx\\a\\x01\\x01}\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\x00\\x00\\x00\\x00\\x01\\x00\\x05\\xff\\xe0\\x01\\xbb\\x01\\xa1\\x00\\x1d\\x00\\x007'&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&/\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\a\\x0e\\x01#\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\x9e\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x16\\b\\x01\\ax\\xfe\\xe1\\n\\x0e\\x0e\\n\\x01\\x1fx\\a\\x01\\x00\\x01\\x00\\x05\\xff\\xdf\\x01\\xbb\\x01\\xa0\\x00\\x1d\\x00\\x00%\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x016\\x16\\x1f\\x01\\x1146;\\x012\\x16\\x15\\x117>\\x01\\x01\\x9d\\x16\\a\\a\\xc2\\a\\x14\\a\\xc2\\a\\a\\x16\\a\\x14\\as\\x0e\\n \\n\\x0es\\a\\x14\\xe2\\x17\\a\\x14\\a\\xc2\\a\\a\\xc2\\a\\x14\\a\\x17\\a\\x01\\ax\\x01\\x1f\\n\\x0e\\x0e\\n\\xfe\\xe1x\\a\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xdc\\x02\\x01\\x01\\xa5\\x00\\x1e\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01\\x0e\\x03\\x14\\x17\\x16\\x06'.\\x0154>\\x037546\\x17\\x01\\xf8\\b\\b\\xb0\\f\\x1c1D2\\x17\\r\\x04\\x15\\v#0\\x1e2LP4\\x1c\\f\\x01\\x02\\a\\x16\\a\\x98\\n\\r\\x0fX\\x01\\v\\x19*@+\\f\\x0e\\b\\x19U,,B)\\x19\\t\\x01P\\x0f\\r\\n\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00!\\x002\\x00C\\x00\\x00\\x11546;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"%4;\\x012\\x16\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\\"5\\x172\\x1d\\x01\\x14\\x06+\\x01\\\"=\\x014;\\x01543\\a\\x14+\\x01\\\"&=\\x014;\\x012\\x1d\\x0132\\x15\\x0e\\n|\\f\\fT\\f(\\f\\x01 \\f|\\n\\x0e\\f(\\fT\\f\\x94\\f\\x0e\\n|\\f\\fT\\f\\xec\\f|\\n\\x0e\\f(\\fT\\f\\x01\\f|\\n\\x0e\\f(\\fT\\f\\x94\\f\\x0e\\n|\\f\\fT\\f\\xec\\f|\\n\\x0e\\f(\\fT\\f\\x94\\f\\x0e\\n|\\f\\fT\\f\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x10\\x00!\\x002\\x00C\\x00\\x00\\x01#\\\"&=\\x014;\\x012\\x1d\\x0132\\x1d\\x01\\x14%\\x14\\x06+\\x01\\\"=\\x014;\\x0154;\\x012\\x15\\x11\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x012\\x16\\x15\\x17\\x14+\\x01\\\"=\\x0146;\\x012\\x1d\\x01\\x14+\\x01\\x01\\xb4|\\n\\x0e\\f(\\fT\\f\\xfe\\xe0\\x0e\\n|\\f\\fT\\f(\\f\\f(\\fT\\f\\f|\\n\\x0e\\xc0\\f(\\f\\x0e\\n|\\f\\fT\\x01\\x00\\x0e\\n|\\f\\fT\\f(\\f\\x18\\n\\x0e\\f(\\fT\\f\\f\\xfeX\\f\\fT\\f(\\f\\x0e\\n|\\f\\f|\\n\\x0e\\f(\\f\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00#\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x01\\xa0\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\x90\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\xf0\\x13\\r \\r\\x13\\x90\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\x90\\r\\x13\\x13\\r\\x90\\x00\\x01\\x00\\x00\\x00\\x90\\x01\\xc0\\x00\\xf0\\x00\\x0f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\xf0\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\x00\\x00\\x00\\x00\\x01\\x00\\x13\\xff\\xc0\\x01\\xed\\x01\\xc0\\x006\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\x17\\x16\\x06+\\x01\\\"&?\\x01\\a\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x1f\\x01'&>\\x01;\\x012\\x16\\x0f\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xde\\t\\x05\\x05\\x13\\x05\\x14\\b\\x8b\\x03\\x01\\x0e\\v&\\v\\x0e\\x01\\x03\\x8b\\b\\x14\\x05\\x13\\x05\\x05\\t\\x8e\\x8e\\t\\x05\\x05\\x13\\x05\\x14\\b\\x8b\\x03\\x01\\a\\v\\a&\\v\\x0e\\x01\\x03\\x8b\\b\\x14\\x05\\x13\\x05\\x05\\t\\x8er\\x05\\x13\\t\\\"\\t\\x05\\x06T\\xa2\\v\\x0e\\x0e\\v\\xa2T\\x06\\x05\\t\\\"\\t\\x13\\x05NN\\x05\\x13\\t\\\"\\t\\x05\\x06T\\xa2\\a\\v\\a\\x0e\\v\\xa2T\\x06\\x05\\t\\\"\\t\\x13\\x05N\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00\\x00\\x00\\x14\\x06\\\"&462\\x02\\\"\\x06\\x14\\x16264'\\x17\\x14;\\x012574&+\\x01\\\"\\x06\\x01\\xf8\\x91Α\\x91\\xceT&\\x1b\\x1b&\\x1bZ\\b\\f0\\f\\b\\a\\x05@\\x05\\a\\x01'Α\\x91Α\\xfe\\xd6\\x1b&\\x1b\\x1b&\\xc0\\x88\\v\\v\\x88\\x06\\a\\a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x06\\x00\\r\\x00.\\x009\\x00C\\x00\\x00353\\x15#\\\"&\\x0553\\x15\\x14\\x06#\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01&54632\\x16\\x17>\\x0132\\x16\\x15\\x14\\a!3.\\x01#\\\"\\x0e\\x01\\x15\\x14\\x163264&#\\\"\\x0e\\x01\\a \\xc0\\xa0\\r\\x13\\x01\\x00\\xc0\\x13\\r \\r\\x13\\t\\a\\xfe \\a\\t\\x13\\r,\\n4$\\x1e.\\x1b\\x1b.\\x1e$4\\n\\xfe\\xe4V#!\\x12\\v\\x12\\v\\x17\\xdf\\x11\\x17\\x17\\x11\\f\\x11 \\x19\\x80\\xa0\\x13\\x13\\xa0\\x80\\r\\x13\\x01@\\x13\\rP\\a\\t\\t\\aP\\r\\x13\\x13\\x15$4 $$ 4$\\x14\\x145\\x1b\\v\\x12\\v\\x11\\x17\\x17\\\"\\x17\\a$%\\x00\\x01\\xff\\xfd\\xff\\xbd\\x02@\\x01\\xc1\\x00'\\x00\\x00\\x01\\x16\\x15\\x14\\x06\\a\\x06&'\\x06\\a\\x0e\\x01.\\x017>\\x043264&#\\\"\\a&546;\\x0126762\\x02\\\"\\x1e\\x97u8[\\x1b5\\x13\\x05\\x19\\x18\\v\\x05\\t @Q}G\\a\\t\\t\\a\\xa9u\\x02pPP/O\\x18\\x05\\x13\\x01\\xb6BN\\x83\\xb9\\t\\x06.%,.\\f\\v\\n\\x19\\f\\x15/>0\\\"\\t\\x0e\\tT\\x0e\\x06Pp/)\\b\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc4\\x00!\\x00\\x00\\x13\\x14\\x1e\\x03\\x15\\x14\\x06\\\"&5476\\x16\\x1d\\x01\\x14\\x1632654.\\x04676\\x16\\xd8#11#q\\x9eq7\\v\\x1e%\\x1a\\x1b&\\x13\\x1a\\x1d\\x13\\x06\\x15\\x1a\\n\\\"\\x01\\xa8\\x1c2,2M/OqqON9\\f\\f\\x11U\\x1b&%\\x1b\\x11 \\x1a\\x1c\\\"*=%\\x0f\\n\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x11\\x00\\x1b\\x00-\\x00\\x00%\\x16\\x14\\a\\x0e\\x01#\\\".\\x01'&47>\\x012\\x16\\a2654&\\\"\\x06\\x14\\x1672\\x16\\x14\\x06\\\"&547\\x1632654'6\\x02=\\x03\\x03*\\x98[<oV\\x1c\\x03\\x03*\\x98\\xb6\\x98\\xf3<TTxTT<(88O9\\x04\\f\\x10\\x14\\x1c\\t\\f\\xcf\\a\\x10\\aPa-O5\\a\\x10\\aPaa\\xefT<<TTxT\\xf08O99'\\r\\f\\t\\x1c\\x14\\x10\\f\\x04\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x81\\x01\\xc1\\x00\\x11\\x003\\x00J\\x00\\x00%27\\x17\\x06#\\\"&'&4767\\x17\\x1e\\x02\\x05\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'\\x01&54?\\x01632\\x1f\\x01>\\x0232\\x16\\x17\\x16\\x14\\a\\x0e\\x01\\a'654&#\\\"\\x06\\a\\x17654'632\\x16\\x150\\x15\\x14\\a\\x01@\\r\\r4)%[\\x98*\\x03\\x03\\x0e\\x17i\\x03'@\\x01_\\x06\\x03\\x14\\x05\\b\\x05\\x04\\xfd\\xb3\\x06\\x03\\x14\\x05\\b\\x05\\x04\\x80\\x1257\\x15[\\x98*\\x03\\x03\\r0\\x15I\\x0eT<\\x156\\x10I\\x02\\t\\r\\r'8\\x050\\x03)\\naP\\a\\x10\\a\\x1a\\x1dQ%=#:\\x05\\b\\x05\\x05\\x19\\x06\\x03\\x01\\xc7\\x05\\b\\x05\\x05\\x19\\x06\\x03c\\v\\x11\\naP\\a\\x10\\a\\x18<\\x129\\x1d\\x1f<T\\x13\\x0e9\\x05\\x05\\x10\\f\\x048'\\x01\\x0f\\x0f\\x00\\x00\\x00\\x00\\x03\\xff\\xf8\\xff\\xc0\\x02H\\x01\\xc1\\x00\\v\\x00\\x13\\x00!\\x00\\x00%\\x16\\x06#!\\\"&7\\x1362\\x17\\x02\\\"\\x06\\x14\\x16264'\\x17\\x14;\\x012574&+\\x01\\\"\\x06\\x02:\\r\\x1b\\x1c\\xfe \\x1c\\x1b\\r\\xf0\\x0e8\\x0e\\x17&\\x1b\\x1b&\\x1bZ\\b\\f0\\f\\b\\a\\x05@\\x05\\a\\b\\x1800\\x18\\x01\\xa0\\x18\\x18\\xfe\\xb6\\x1b&\\x1b\\x1b&\\xc0\\x88\\v\\v\\x88\\x06\\a\\a\\x00\\x00\\x01\\xff\\xfe\\xff\\xc0\\x02@\\x01\\xc0\\x00*\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\a\\x06+\\x01\\\"&?\\x01#\\a\\x06+\\x01\\\"&?\\x01'&6;\\x012\\x1f\\x013'&>\\x02;\\x012\\x1f\\x01\\x01\\xe0\\x1eBB\\x1eri\\x05\\tB\\b\\t\\x021g+\\x05\\b(\\b\\t\\x01  \\x01\\t\\b(\\b\\x05+g1\\x01\\x01\\x05\\x06\\x04B\\t\\x05i\\x01\\x00'2'\\xb8\\b\\r\\a\\xac:\\x06\\f\\bll\\b\\f\\x06:\\xac\\x03\\b\\x06\\x03\\b\\xb8\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x15\\x00!\\x00-\\x009\\x00E\\x00Q\\x00o\\x00\\x00\\x15\\x11!\\x11\\x14\\x06#!\\\"&%\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"'\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"'\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x012\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01@\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01P\\x14\\x1c\\xfe@\\x1c\\x140\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x01\\x10\\xfe\\xf0\\x14\\x1c\\x1c\\xd8(\\f\\f(\\f\\x8c(\\f\\f(\\ft(\\f\\f(\\f\\x8c(\\f\\f(\\ft(\\f\\f(\\f\\x8c(\\f\\f(\\f\\x01@\\x1c\\x1400\\x14\\x1c0\\a\\t\\t\\a00\\a\\t\\t\\a0\\x00\\x03\\x00\\x00\\xff\\xdb\\x02\\x01\\x01\\xa5\\x00\\x13\\x00\\x1f\\x00;\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\\"/\\x017\\x173546\\x17%\\\"=\\x014;\\x012\\x1f\\x01\\a'!#\\a\\x06+\\x01\\\"=\\x014;\\x0176;\\x01546\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&5\\x01\\xf9\\a\\aP\\v\\x1e;\\x05\\x04F55 \\x1e\\v\\xfec\\f\\fo\\x05\\x04F55\\x01  \\xdc\\x04\\x05o\\f\\fT\\xdc\\x04\\x05;\\x1e\\vP\\a\\aP\\v\\x1eY\\a\\x14\\aP\\v\\f\\x10(\\x04K:9(\\x10\\f\\vg\\f8\\f\\x04K:9\\xec\\x04\\f8\\f\\xec\\x04(\\x10\\f\\vP\\a\\x14\\aP\\v\\f\\x10\\x00\\x00\\x00\\x01\\xff\\xfe\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&'&>\\x027&54\\x96Ԗ\\x96j83AL\\x02\\x04\\x01\\x02\\a\\x11\\x1c\\x069\\x01\\xa0z\\xacz\\x133\\x03\\x02\\x05\\a\\x151\\x169JV\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xd3\\x02\\x00\\x01\\xac\\x00\\x10\\x00\\x1f\\x00?\\x00\\x00\\x13#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0e\\x01%\\x14\\x06+\\x01\\\"=\\x0146;\\x012\\x16\\x15\\a32\\x16\\x15\\x06\\x17\\x14\\x0e\\x01\\\".\\x0154546;\\x012\\x16\\x1d\\x01\\x14\\x1626=\\x0146\\xa4\\x98\\x05\\a\\x15\\x0fh\\x0f\\x15\\x03\\x06\\x01Y\\a\\x05\\x98\\f\\x15\\x0fh\\x0f\\x15\\xa4\\x98\\x05\\a\\x01\\x01Nt{tO\\a\\x05\\x98\\x05\\a2<2\\a\\x01,\\a\\x05P\\x0f\\x15\\x15\\x0fP\\x03\\x06\\x03\\f\\x05\\a\\fP\\x0f\\x15\\x15\\x0f|\\a\\x05,\\tHt;;tG\\x051\\x05\\a\\a\\x054-44-4\\x05\\a\\x00\\x00\\x01\\x00\\x05\\x00;\\x01\\xbb\\x01E\\x00\\x14\\x00\\x00\\x13\\x17\\x16\\x14\\x0f\\x01\\x0e\\x01/\\x01\\a\\x06&/\\x01&4?\\x0162\\xf1\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\x01=\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\x00\\x00\\x01\\x00\\x05\\x00;\\x01\\xbb\\x01E\\x00\\x14\\x00\\x007'&4?\\x01>\\x01\\x1f\\x0176\\x16\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\xcf\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14C\\xc2\\a\\x14\\a\\x16\\a\\x01\\a\\x9b\\x9b\\a\\x01\\a\\x16\\a\\x14\\a\\xc2\\b\\x00\\x00\\x00\\x02\\x00\\x03\\xff\\xfc\\x02}\\x01\\x84\\x00!\\x00C\\x00\\x00%\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x015#\\\"/\\x01&6;\\x012\\x16\\x1d\\x01762\\x1f\\x01\\x16\\x14\\x05\\x17\\x16\\x06+\\x01\\\"&=\\x01\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\x1532\\x02ve\\a\\x14\\ae\\a\\a\\v\\a\\x15\\a(\\xbc\\t\\b\\x10\\v\\f\\x10\\xf4\\n\\x0e(\\a\\x15\\a\\v\\a\\xfe\\xf0\\x10\\v\\f\\x10\\xf4\\n\\x0e(\\a\\x15\\a\\v\\a\\ae\\a\\x14\\ae\\a\\a\\v\\a\\x15\\a(\\xbc\\thd\\a\\ad\\a\\x14\\a\\v\\a\\a+\\xb6\\a\\x10\\v\\x1e\\x0e\\n\\xde+\\a\\a\\v\\a\\x14\\x16\\x10\\v\\x1e\\x0e\\n\\xde+\\a\\a\\v\\a\\x14\\ad\\a\\ad\\a\\x14\\a\\v\\a\\a+\\xb6\\x00\\x01\\x00\\x00\\xff\\xc0\\x02B\\x01\\xc0\\x00.\\x00\\x00%\\x06#!\\x17!2\\x16\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547\\x03#\\\"&=\\x0146;\\x012\\x16\\x1f\\x01!2\\x16\\a\\x02\\x10\\x04\\x13\\xfe\\xdb\\x06\\x01\\r\\v\\x0e\\x02\\x06 !.!\\x11\\xd2\\x11!.!\\x1cFF\\n\\x0e\\x0e\\ng\\b\\r\\x02\\t\\x01\\x89\\f\\x0e\\x03\\x93\\x13 \\x12\\v\\x19\\x0f#\\x17!!\\x17\\x18\\x10\\x10\\x18\\x17!!\\x17 \\x11\\x01W\\x0e\\n\\x10\\n\\x0e\\v\\b-\\x12\\v\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x11\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x01\\x17\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xa0@\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c@\\x00\\x02\\x00\\x00\\x00\\x00\\x02D\\x01\\x80\\x00\\x0f\\x00 \\x00\\x00%\\a\\x0e\\x01#!\\\"&?\\x01>\\x013!2\\x16%\\\"\\x0e\\x01\\x0f\\x01\\x1146;\\x01\\x1732\\x16\\x1d\\x01\\x02=I\\a!\\x0f\\xfep\\x0e\\x0e\\aI\\a!\\x0f\\x01\\x90\\x0e\\x0e\\xfeT\\x11 \\x19\\tE\\x1c\\x14\\xa0@\\xa0\\x14\\x1c\\x9c|\\r\\x13\\x18\\f|\\r\\x13\\x188\\f\\x15\\x0fv\\x01\\x16\\x14\\x1c@\\x1c\\x140\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00T\\x00\\x00%\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x15\\x11\\x01M\\x05\\b\\b\\x05&\\x05\\b\\b\\x05:\\x05\\b\\b\\x05&\\x05\\b\\b\\x05\\xfe\\xba\\x05\\b\\b\\x05&\\x05\\b\\b\\x05:\\x05\\b\\b\\x05&\\x05\\b\\b\\x05\\xdd\\a\\t\\t\\a\\xfe0\\r\\x13\\t\\a \\a\\t\\x80\\b\\x05\\x86\\x05\\b\\b\\x05\\x86\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05F\\x05\\b\\b\\x05F\\x05\\b\\b\\x05\\xc6\\x05\\b\\b\\x05\\xc6\\x05\\b@\\t\\a \\a\\t\\x13\\r\\x01P\\a\\t\\t\\a\\xfe\\xd0\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1c\\x00-\\x005\\x00=\\x00M\\x00\\x00\\x13!2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146\\x17\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x014#\\x052=\\x014&+\\x01\\\"\\x0f\\x01#\\\"\\x1d\\x01\\x143\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x16265463264&#\\\"\\x06\\x15\\x140\\x01\\xa0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\a\\t\\x06t\\x06\\x06\\x01@\\x06\\t\\a\\xfd\\x03\\x02\\x1e\\x8a\\x06\\x06\\xa8dFFdFTH44H4!\\x0e\\t\\x13\\r\\a\\t\\t\\a\\x1a&\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c \\t\\a\\n\\x06\\x06\\x14\\x06`\\x06J\\a\\t\\x03-\\x06$\\x06\\xfe\\xf8FdFFd\\x8a4H44H4\\t\\a\\r\\x13\\t\\x0e\\t&\\x1a\\a\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\\"\\x00*\\x00\\x00\\x01\\x14\\x06#\\\"'\\a\\x06+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x014?\\x01&54>\\x0132\\x16\\x06\\x14\\x16264&\\\"\\x02\\x00gI\\x11\\x10\\x18\\a\\v%\\x0e\\n(\\x0e\\np\\n\\x0e\\a\\xa2\\t/Q0Ig\\xb0\\x1c(\\x1c\\x1c(\\x01\\x10Ig\\x03\\x1b\\b(\\n\\x0e(\\n\\x0e\\x0e\\nN\\n\\a\\xa2\\x1b\\x1c0Q/g\\x05(\\x1c\\x1c(\\x1c\\x00\\x00\\x00\\x06\\xff\\xfa\\xff\\xbe\\x02\\x82\\x01\\xc3\\x00;\\x00C\\x00\\x85\\x00\\x91\\x00\\xcd\\x00\\xd5\\x00\\x00\\x01\\a\\x06'&'&?\\x01&'#\\\"'&76;\\x0167'&7676\\x1f\\x016\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x1732\\x17\\x16\\a\\x06+\\x01\\x06\\a\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06'\\x16>\\x01'&\\x0e\\x01\\a\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\x06\\a\\x06'.\\x01=\\x01&'\\a\\x06'&'&?\\x01&7'&7676\\x1f\\x016754676\\x172\\x1e\\x02\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\a>\\x01.\\x01\\x06\\a\\x0e\\x01\\x1e\\x016\\x05\\a\\x06'&'&?\\x01&'#\\\"'&76;\\x0167'&7676\\x1f\\x016\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x1732\\x17\\x16\\a\\x06+\\x01\\x06\\a\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06'\\x16>\\x01'&\\x0e\\x01\\x02\\x00\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x10\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x1a\\x12&\\t\\r\\x12&\\tg\\\"\\x11\\a\\t!\\r\\x11\\x1e\\x18\\x1e\\f\\b&&\\t\\v\\x1f\\x18\\x1d\\x11\\r \\n\\a\\x11!\\x06\\x06!\\x12\\b\\n \\f\\x12\\x1d\\x19\\x1e\\v\\t&&\\x04\\a\\x06\\x03\\x1e\\x18\\x1e\\x11\\r \\n\\a\\x11\\\"\\x06{\\x11\\x04\\x16#0\\x16\\x11\\x04\\x16#0\\x01\\t\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x10\\b\\x05\\n\\x12\\x0e\\b\\x05\\b\\n\\x06\\x10\\v\\x01\\x04\\x04\\x01\\v\\x10\\x06\\n\\b\\x05\\b\\x0e\\x12\\n\\x05\\b\\x10\\x1a\\x12&\\t\\r\\x12&\\t\\x01\\x01\\x0e\\t\\x03\\a\\f\\a\\t\\x0e\\f\\x0f\\v\\x12\\x13\\n\\x0f\\f\\x0f\\t\\x06\\f\\a\\x04\\t\\x0f\\x03\\x03\\x0f\\t\\x04\\x06\\r\\x06\\t\\x0f\\f\\x0f\\n\\x13\\x12\\v\\x0f\\f\\x0e\\n\\x06\\f\\a\\x03\\t\\x0e\\x03>\\x0e\\f#\\x14\\x0e\\f#\\xae\\x11\\n\\x13\\x1a(\\x0f\\n\\x11\\x15\\v\\\"\\b\\x0e\\x01\\a\\a\\x01\\x0e\\b\\\"\\v\\x15\\x11\\n\\x0f'\\x1b\\x13\\n\\x11 \\x1f\\x11\\n\\x13\\x1b'\\x0f\\n\\x10\\x15\\n\\\"\\t\\r\\x01\\a\\a\\x05\\x06\\b\\x04\\\"\\v\\x14\\x10\\v\\x10&\\x1c\\x13\\n\\x11\\x1f5\\x160#\\x16\\x05\\x11\\x160#\\x16\\x05\\xa6\\x0e\\t\\x03\\a\\f\\a\\t\\x0e\\f\\x0f\\v\\x12\\x13\\n\\x0f\\r\\x0e\\t\\a\\f\\x06\\x04\\t\\x0f\\x03\\x03\\x0f\\t\\x04\\x06\\f\\a\\t\\x0e\\r\\x0f\\n\\x13\\x12\\v\\x0f\\f\\x0e\\t\\a\\f\\a\\x03\\t\\x0e\\x03>\\x0e\\f#\\x14\\x0e\\f#\\x00\\x00\\x02\\xff\\xfe\\xff\\xe0\\x02B\\x01\\xa0\\x00\\x13\\x00+\\x00\\x00\\x00\\x14\\x06#\\\"'\\x06#\\\"&'&767&5462\\x13\\x16\\x17\\x16\\x06#\\\"'\\x06#\\\"&'\\x1632654'\\x1e\\x01\\x15\\x14\\x01\\xa0zV<3+.\\x02\\x04\\x01\\x02\\x03\\x15\\x0f&z\\xac\\xf4\\x0f\\x15\\x03\\x04\\x05.+3<@h\\x18\\x12\\x0ec\\x8d\\x019H\\x01B\\x84^\\x19\\x19\\x03\\x02\\x05\\x04\\x14\\\")3B^\\xfe\\x84\\\"\\x14\\x04\\n\\x19\\x196,\\x02qO\\v\\t\\x12Q13\\x00\\x00\\x00\\x00\\x01\\x00\\x0f\\xff\\xba\\x01 \\x01\\xc0\\x00\\r\\x00\\x00\\x01\\x11\\a\\x06&?\\x01'&6?\\x026\\x01 \\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92A\\t\\x01\\xc0\\xfeHD\\t\\x17\\x14\\x91g\\x0e&\\x03\\x15\\x84\\x12\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x01\\x81\\x01\\xc0\\x00,\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06+\\x01\\x15\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01#\\\"&546?\\x01#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x01*\\x19&\\x17\\x0e\\n\\x88\\x01\\x18\\x02\\n\\x02\\x18\\x01\\x88\\n\\x0e0&\\f*\\n\\x0e\\x0e\\n\\x01\\x10\\n\\x0e\\x0e\\n*\\xea\\f -\\x19\\n\\x0eh\\x02\\x020\\x04\\x040\\x02\\x02h\\x0e\\n$<\\x12v\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x001\\x009\\x00A\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\a\\x06\\a\\x06\\a\\x1532\\x16\\x1d\\x01\\x14#!\\\"=\\x0146;\\x015.\\x02'&'&=\\x0146;\\x015463!2\\x16\\x1d\\x01\\x05\\x16\\x17&'#\\x15\\x14%5#\\x06\\a676\\x02(\\n\\x0e>0>\\x1f%0\\x1b%\\f\\xfe\\xd8\\f%\\x1b0\\x04\\x0e$\\x0e>0>\\x0e\\nh\\x0e\\n\\x01\\x10\\n\\x0e\\xfe\\xa3\\x13\\x17\\v\\x02@\\x01\\xc0@\\x02\\v\\x17\\x13#\\x01\\x80\\x0e\\n88-\\\"\\a4\\x16H\\x1e\\x1a\\f\\f\\f\\f\\x1a\\x1eH\\x02\\n&\\x18\\a\\\"-88\\n\\x0e(\\n\\x0e\\x0e\\n(\\x81\\r\\b)-\\x10\\x17\\x17\\x10-)\\b\\r\\x1a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x00/\\x007\\x00?\\x00\\x00%#\\\"&=\\x01#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x15\\x14\\x067\\x15\\x14\\x06#!\\\"&=\\x0146;\\x01\\x15\\x14\\x16;\\x0126=\\x0132\\x16\\x064&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x162\\x01(P\\n\\x0eX\\r\\n\\t\\x98\\x06\\x10\\x06\\x98\\t\\n\\rX\\x0e\\xce\\x0e\\n\\xfe0\\n\\x0e\\x0e\\n\\x88!\\x17P\\x17!\\x88\\n\\x0e|\\f\\x10\\f\\f\\x10L\\f\\x10\\f\\f\\x10@\\x0e\\n\\xa8\\x19\\t\\x98\\x06\\x06\\x98\\t\\x19\\xa8\\n\\x0e\\bp\\n\\x0e\\x0e\\np\\n\\x0e\\b\\x17!!\\x17\\b\\x0ej\\x10\\f\\f\\x10\\f\\f\\x10\\f\\f\\x10\\f\\x00\\x02\\xff\\xfc\\xff\\xbc\\x02\\x04\\x01\\xc4\\x00#\\x007\\x00\\x00\\x00\\x1e\\x01\\a\\x0e\\x01\\x16\\x0e\\x06&\\x06\\a\\x06.\\x027>\\x01&>\\x06\\x16676\\a>\\x01.\\x01\\a\\x0e\\x01\\a\\x14\\x1e\\x02\\x172327>\\x01\\x01\\xd8\\\"\\t\\t\\b\\x02\\a\\x02\\n'BF:;-+\\r\\x0f+\\\"\\t\\t\\b\\x02\\a\\x02\\n'BF:;-+\\r\\x0f\\xb9\\x06\\a\\x03\\v\\a4j\\x0e\\x01\\x03\\x05\\x03\\x02\\x02\\f\\x04\\n^\\x01\\xba\\\"+\\x0f\\r+-;:FB'\\n\\x02\\a\\x02\\b\\t\\t\\\"+\\x0f\\r+-;:FB'\\n\\x02\\a\\x02\\b\\tc\\x02\\v\\r\\a\\x01\\x0ej4\\x03\\a\\x05\\x04\\x01\\f,^\\x00\\x00\\x00\\x01\\xff\\xfc\\xff\\xc0\\x02\\x00\\x01\\xc4\\x00\\x17\\x00\\x00\\x01\\x16\\x15\\x14\\x00#\\\"/\\x01&?\\x016\\x1f\\x01>\\x017'&?\\x016\\x17\\x01\\xed\\x13\\xfe\\xf0\\xc0\\x13\\x04\\x18\\x05\\x13p\\x10\\f1;[\\x1b<\\x0e\\a0\\b\\x13\\x01\\xa7\\x04\\x13\\xc0\\xfe\\xf0\\x13h\\x13\\b0\\a\\x0e<\\x1b\\\\:2\\v\\x11p\\x12\\x05\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00.\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132654/\\x01\\\"#\\\"\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\x06\\a'&#\\\"\\x0f\\x01\\x06\\x15\\x14\\x15\\x17\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14.x\\xaa\\fA\\x01\\x02\\n\\x04\\x1e\\x01\\x06%#K\\x1f\\x05\\a\\x03\\x03F\\t\\x0f\\x03\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\xaax\\f\\x03\\x0f\\tF\\x03\\x03\\a\\x05\\x1fK#%\\x06\\x01\\x1e\\x04\\n\\x02\\x01A\\f\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x00&\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x06\\x1d\\x01\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x18Y}Z\\x0e\\n \\n\\x0e+\\x1e\\x1d*\\xc0\\x1c\\x14\\xa0\\x14\\x1c\\x1c\\x14\\xa0\\x14\\x1cf@ZY?\\x10\\n\\x0e\\x0e\\n\\x10\\x1e*+\\x1eg\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\x15\\x00!\\x00+\\x00\\x00=\\x01!\\x15\\x14\\x06#!\\\"&7\\x15\\x14;\\x012=\\x014+\\x01\\\"\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x01\\x15!5463!2\\x16\\x02@\\x1c\\x14\\xfe \\x14\\x1c\\xc0\\f\\x88\\f\\f\\x88\\f\\x80\\fH\\f\\fH\\f\\x02\\x00\\xfd\\xc0\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x10\\xb0\\xb0\\x14\\x1c\\x1cX(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x1000\\x14\\x1c\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xdf\\x01\\xc1\\x01\\xa1\\x00\\a\\x00\\x1b\\x001\\x00\\x006\\x14\\x06\\\"&462\\x17\\x14\\x06+\\x01\\\"&5.\\x01'\\\"&=\\x01463\\x1e\\x01\\x17\\x14\\x06+\\x01\\\"&5.\\x01'\\\"&=\\x01463\\x1e\\x03\\x80%5&&5\\xd5\\t\\a0\\a\\t\\x06wT\\x06\\t\\n\\at\\xa4\\x97\\t\\a0\\a\\t\\x06ː\\x06\\t\\n\\aV\\x9dsF;5&&5%o\\a\\n\\t\\x06Tw\\x06\\t\\a0\\a\\t\\a\\xa4t\\a\\n\\t\\x06\\x90\\xcb\\x06\\t\\a0\\a\\t\\x03Gr\\x9d\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x1e\\x00&\\x00.\\x00\\x00%\\x15\\x14\\x06#!\\\"&=\\x01463!2\\x16'!\\\"\\a7>\\x023!2\\x16\\x1f\\x01&\\x06\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x02@\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c0\\xfe \\x10\\x0fa\\x04\\r\\x10\\a\\x01\\f\\v\\x17\\x06a\\x0f3\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x90`\\x14\\x1c\\x1c\\x14`\\x14\\x1c\\x1c<\\x06\\x91\\x05\\n\\x06\\r\\b\\x91\\x06`\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00,\\x004\\x00\\x00$\\x14\\a\\x15\\x14\\x06#\\\"/\\x01&+\\x01\\x06\\x15\\x14\\x17\\x16\\x06+\\x01\\\"'&547#\\\"&=\\x0146;\\x012?\\x01632\\x16\\x1d\\x01\\a\\x11\\a\\x06#\\x152\\x17\\x02@ \\x10\\x10\\v\\tUBU\\x1c\\x04\\x1a\\v\\x12\\x13K\\x14\\b\\x19\\x02\\\"\\x1b%%\\x1b\\xc0UBU\\t\\v\\x10\\x10@!TkkT\\xf5J\\x12\\x99\\n\\x16\\aD5\\x10\\x10+\\\"\\x10#\\x115:\\x10\\x10%\\x1b`\\x1b%5D\\a\\x16\\n\\x99\\xc4\\x01\\x1a\\x1aC`C\\x00\\x00\\x01\\xff\\xfd\\xff\\xbd\\x02\\x03\\x01\\xc3\\x00;\\x00\\x00%\\x17\\x16\\x06\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x0e\\x01/\\x01\\a\\x06&/\\x01\\a\\x06&?\\x01'.\\x01?\\x01'&6?\\x01'&6\\x1f\\x017>\\x01\\x1f\\x0176\\x16\\x1f\\x0176\\x16\\x0f\\x01\\x17\\x1e\\x01\\a\\x01\\xcb.\\n\\b\\r?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1c\\t--\\t\\x1c\\x03\\x10>\\x0e\\x14\\x04\\x12?\\r\\b\\n..\\n\\b\\r?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1c\\t--\\n\\x1b\\x03\\x10>\\x0e\\x14\\x04\\x12?\\r\\b\\n\\xc0-\\n\\x1b\\x03\\x10>\\x0e\\x14\\x04\\x12?\\x0e\\a\\n..\\n\\a\\x0e?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1b\\n--\\n\\x1b\\x03\\x10>\\x0e\\x14\\x04\\x12?\\x0e\\a\\n//\\n\\b\\r?\\x12\\x04\\x14\\x0e>\\x10\\x03\\x1b\\n\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x81\\x00'\\x007\\x00?\\x00\\x00%\\x14\\x06+\\x01\\x16\\x06\\a\\x16\\x06\\a\\x16\\x0e\\x01#*\\x01#\\\"&'.\\x01=\\x0147>\\x017632\\x16\\a\\x06\\a32\\x16\\x05\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x064&\\\"\\x06\\x14\\x162\\x02\\x00\\x1b\\x12d\\r\\x01\\x12\\n\\f\\x0e\\x04\\x10#\\x1a\\x01\\x0e\\x01#G\\x12\\b\\f\\x1c\\x1fE\\b\\f\\x1c\\x1a\\x1c\\n\\x05\\t\\x95\\x12\\x1b\\xfe`\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x1c\\f\\x10\\f\\f\\x10\\xf8\\x11\\x1a\\r+\\x0f\\x12%\\b\\x18 \\x0f$\\x03\\x01\\r\\t\\xac\\x1f\\r\\r-\\x13\\x1d+\\x18\\f\\r\\x1a\\x12\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\xba\\x10\\f\\f\\x10\\f\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x81\\x00&\\x006\\x00>\\x00\\x00\\x133&'&632\\x17\\x1e\\x01\\x17\\x16\\x1d\\x01\\x14\\x06\\a\\x0e\\x01#*\\x01#\\\"&7.\\x017.\\x017#\\\"&546\\x0532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x16264&\\\"\\x06\\x14-\\x95\\t\\x05\\n\\x1c\\x1a\\x1c\\f\\bE\\x1f\\x1c\\f\\b\\x12G#\\x01\\x0e\\x01('\\x06\\x0e\\f\\n\\x12\\x01\\rd\\x12\\x1b\\x1b\\x01\\x9d0\\n\\x0e\\x0e\\n0\\n\\x0e\\x0e\\x1a\\x10\\f\\f\\x10\\f\\x01$\\r\\f\\x18+\\x1d\\x13-\\r\\r\\x1f\\xac\\t\\r\\x01\\x03$$#\\b%\\x12\\x0f+\\r\\x1a\\x11\\x12\\x1a\\x14\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\xd4\\f\\x10\\f\\f\\x10\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00'\\x007\\x00?\\x00\\x00\\x132\\x16\\x1d\\x016\\x16\\x176\\x16\\x176\\x16\\x15\\x1c\\x01\\x15\\x14\\x06\\a\\x14\\x0e\\x01+\\x01\\\"'.\\x01'&546\\x17\\x16\\x17546\\x1332\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x16\\\"\\x06\\x14\\x16264\\x88\\x11\\x1a\\r+\\x0f\\x12%\\b#$$\\x03\\a\\n\\x06\\xac\\x1f\\r\\r-\\x13\\x1d+\\x18\\f\\r\\x1a\\x12\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\x0e\\xba\\x10\\f\\f\\x10\\f\\x01\\xc0\\x1b\\x12d\\r\\x01\\x12\\n\\f\\x0e\\x06'(\\x01\\x0e\\x01#G\\x12\\x05\\n\\x05\\x1c\\x1fE\\b\\f\\x1c\\x1a\\x1c\\n\\x05\\t\\x95\\x12\\x1b\\xfe`\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x1c\\f\\x10\\f\\f\\x10\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00&\\x006\\x00>\\x00\\x00\\x175\\x06\\a\\x06&547>\\x0176;\\x012\\x16\\x17\\x1e\\x01\\x15\\x1c\\x01\\x15\\x14\\x06'\\x0e\\x01'\\x0e\\x01'\\x15\\x14\\x06#\\\"&\\x13546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&64&\\\"\\x06\\x14\\x162\\\\\\r\\f\\x18+\\x1d\\x13-\\r\\r\\x1f\\xac\\t\\r\\x01\\x03$$#\\b%\\x12\\x0f+\\r\\x1a\\x11\\x12\\x1a\\x14\\x0e\\n\\xc0\\n\\x0e\\x0e\\n\\xc0\\n\\x0e\\xd4\\f\\x10\\f\\f\\x10\\x13\\x95\\t\\x05\\n\\x1c\\x1a\\x1c\\f\\bE\\x1f\\x1c\\f\\b\\x12G#\\x01\\x0e\\x01('\\x06\\x0e\\f\\n\\x12\\x01\\rd\\x12\\x1b\\x1b\\x01\\x9d0\\n\\x0e\\x0e\\n0\\n\\x0e\\x0e\\x1a\\x10\\f\\f\\x10\\f\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x00\\x04\\\"&462\\x16\\x14\\a'326=\\x014&+\\x01764/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162?\\x0164\\x01gΑ\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a8\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&47\\x17#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\a\\x06\\x14\\x1f\\x01\\x162?\\x0164/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x99Α\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a\\x01\\xb8\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x006462\\x16\\x14\\x06\\\"'7\\x15\\x14\\x16;\\x0126=\\x01\\x17\\x162?\\x0164/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162\\b\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15YΑ\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00\\x00\\x00\\x14\\x06\\\"&462\\x17\\a54&+\\x01\\\"\\x06\\x1d\\x01'&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162?\\x0164/\\x01&\\\"\\x01\\xf8\\x91Α\\x91\\xce\\x01H\\x0e\\n\\x10\\n\\x0eH\\a\\x15\\a\\v\\a\\a\\x85\\a\\x14\\a\\x85\\a\\a\\v\\a\\x15\\x01'Α\\x91Α\\xdbL\\xb7\\n\\x0e\\x0e\\n\\xb7L\\a\\a\\v\\a\\x14\\a\\x84\\a\\a\\x84\\a\\x14\\a\\v\\a\\x00\\t\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x05\\x00\\r\\x00\\x13\\x00\\x19\\x00\\\"\\x00+\\x001\\x007\\x00=\\x00\\x00\\x01#>\\x012\\x16\\x06473\\x16\\x14\\a#%#&'\\x1e\\x01%\\x06\\a#>\\x01\\x05\\x16\\x15\\x14\\a#64'\\a\\x14\\x17#&473\\x06\\x173\\x0e\\x01\\\"&\\x17673\\x0e\\x01%3\\x16\\x17.\\x01\\x01P\\xb0\\v0:0\\xad\\x03\\xba\\x03\\x03\\xba\\x01Bl\\x0f#5S\\xfe\\xea$\\x0el\\x16S\\x01k\\t\\tr\\x03\\x03\\xfd\\x03r\\t\\tr\\x03(\\xb0\\v0:0\\x94$\\x0el\\x16S\\xfe\\x9fl\\x0f#5S\\x01 DTT\\xc4@  @ \\xa0\\\\2\\x10K[2\\\\3K\\x9e    !>!@\\x1e\\\"!>!!\\u007fDTTJ2\\\\3K~\\\\2\\x10K\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x05\\x01\\xc5\\x00\\x1c\\x00$\\x00\\x00\\x01\\x16\\x06\\a\\x0e\\x01'\\a\\x06\\\"&4?\\x01&67>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x1f\\x0176\\x16\\x00264&\\\"\\x06\\x14\\x01\\xfc\\t\\x14\\x1b\\x1eP&\\xd5\\x135%\\x13\\xd5\\r\\x12\\x1d\\x1bJ$\\a\\x03\\x05J\\vDK\\x05\\r\\xfe<\\x14\\x0e\\x0e\\x14\\x0e\\x01S$I\\x1c\\x1d\\x12\\r\\xd5\\x13%5\\x13\\xd6%Q\\x1d\\x1b\\x14\\t\\x02\\r\\x05KD\\vJ\\x05\\x03\\xfe\\x8e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\xa1\\x00\\x15\\x00+\\x003\\x00C\\x00S\\x00c\\x00\\x00\\x13\\x17\\x16\\x14\\x0f\\x02\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x02\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x062\\x16\\x14\\x06\\\"&4%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x8c\\x11\\x03\\x03I\\x0f\\x04\\n\\x04/\\x04\\x04\\x0f\\x04\\n\\x03\\x17@\\x03\\n\\x04\\x11\\x03\\x04H\\x0f\\x04\\n\\x04/\\x04\\x04\\x0f\\x04\\n\\x03\\x17@\\x03\\n\\\\(\\x1c\\x1c(\\x1d\\x01\\xe1\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\x01\\x9c\\x10\\x04\\t\\x04H\\x10\\x03\\x030\\x03\\n\\x04\\x0f\\x04\\x04\\x16?\\x04\\xa3\\x11\\x03\\n\\x04H\\x0f\\x04\\x04/\\x04\\t\\x04\\x10\\x03\\x03\\x16?\\x04\\xb1\\x1c(\\x1c\\x1c(\\f\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x01\\xff\\xfb\\xff\\xbc\\x02\\x05\\x01\\xc0\\x00\\x10\\x00\\x00\\x012\\x16\\x0f\\x01\\x11\\x14\\x06/\\x01&=\\x01'&63\\x01\\xe8\\x10\\f\\v\\xb9\\x1a\\fP\\n\\xb9\\v\\f\\x10\\x01\\xc0\\x1e\\v\\xb9\\xfe\\xfa\\x0f\\r\\b8\\b\\fι\\v\\x1e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x13\\x00'\\x00+\\x00\\x00%53\\x15\\x14\\x06#!\\\"&=\\x013\\x15\\x14\\x16;\\x012672\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x01#5#\\x15\\x01@\\xc0\\x1d\\x13\\xfe`\\x13\\x1d\\xc0\\t\\a`\\a\\t\\x90\\x13\\x1d\\xfe\\x00\\x1d\\x13P\\x1d\\x13\\xa0\\x13\\x1d@\\x80p0\\x90\\x13\\x1d\\x1d\\x13\\x900\\a\\t\\t\\xd7\\x1d\\x13PP\\x13\\x1d0\\x13\\x1d\\x1d\\x130  \\x00\\x00\\x01\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00;\\x00\\x00%\\a\\x06\\\"/\\x01&6;\\x015#\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x0135#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x153546\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\x1532\\x16\\x01`O\\a\\x14\\aO\\v\\f\\x103e\\x1d\\fO\\a\\aO\\f\\x1de3\\x10\\r\\fO\\a\\x14\\aO\\v\\f\\x103e\\x1d\\fO\\a\\aO\\f\\x1de3\\x10\\r\\x16O\\a\\aO\\f\\x1de3\\x10\\f\\vO\\a\\x14\\aO\\f\\r\\x103e\\x1d\\fO\\a\\aO\\f\\x1de3\\x10\\f\\vO\\a\\x14\\aO\\f\\r\\x103e\\x1d\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x1e\\x00&\\x00:\\x00H\\x00\\x006\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01.\\x02'63*\\x01&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627'\\x0e\\x01\\a#\\\"&=\\x0146;\\x012z4&&4&\\x01\\x9a4&&4& \\x1a&\\x13\\rB\\x03\\x14 \\x14\\x13\\x1a\\x92\\\\BB\\\\B#0C\\x1c\\x14\\xfe\\xe0\\x14\\x1cC0\\t!F!\\xd7\\x1e(\\x05B\\r\\x13&\\x1a@\\x1a\\xe0&4&&4&&4&&4F&\\x1a \\r\\x13\\x17*!\\v\\x13B\\\\BB\\\\bC0\\x1d\\x14\\x1c\\x1c\\x14\\x1d0C\\x10\\x10\\r\\x10:#\\x13\\r \\x1a&\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00%\\x00K\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06\\\"&4?\\x016\\x16\\x17\\x16\\x17\\x16\\x0f\\x01\\x0e\\x01\\x17\\x162?\\x0164'&'&5&?\\x016\\x166\\x16\\x14\\x0f\\x01\\x06&'&'&?\\x01>\\x01'&\\\"\\x0f\\x01\\x06\\x14\\x17\\x16\\x17\\x16\\x15\\x16\\x0f\\x01\\x06&'&4?\\x016\\x01G,,D,~Y,&\\a\\x13\\x01\\x01\\t\\x03\\a\\r\\x15\\x01\\x15\\x15<\\x15C\\x15\\x15\\x05\\x05\\a\\x01\\f\\x16\\t\\x16jY,&\\a\\x13\\x01\\x01\\t\\x03\\a\\r\\x15\\x01\\x15\\x15<\\x15C\\x15\\x15\\x05\\x05\\a\\x01\\f\\x16\\t\\x16\\n,,D,\\x01\\a-~,D,Y~,&\\a\\b\\n\\x1b\\x1a\\t\\a\\x0e\\x15;\\x15\\x16\\x15C\\x15<\\x15\\x05\\x04\\x04\\b\\x12\\f\\x15\\n\\x10\\xb0Y~,&\\a\\b\\n\\x1b\\x1a\\t\\a\\x0e\\x15;\\x15\\x16\\x15C\\x15<\\x15\\x05\\x04\\x04\\b\\x12\\f\\x15\\n\\x10\\t-~,D,\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1c\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467454632\\x16\\x17632\\x16\\x15\\x14\\x02\\x1a\\x1d.\\x1bK5\\xfe\\x90<T6*^B,J\\x15\\x18\\x1d(8\\xdd\\x05$6\\x1e5KT</J\\x0f\\x05\\x03B^,$\\x108(\\x12\\x00\\x00\\x00\\x02\\xff\\xf4\\xff\\xc0\\x01\\xcc\\x01\\xc0\\x00\\x1b\\x00%\\x00\\x00%\\x16\\x06#!\\\"&?\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\a3'&=\\x01#\\x15\\x14\\a\\x01\\xb5\\x16(*\\xfe\\xce*(\\x16u\\b\\n\\x0e\\x0e\\n\\xd0\\n\\x0e\\x0e\\n\\b\\xb6\\xac0\\x06@\\x06,#II#\\xbd\\x97\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0e\\x97iN\\b\\n\\xa0\\xa0\\n\\b\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc5\\x01\\xa0\\x00'\\x00/\\x007\\x00\\x00%\\x17\\x16\\a\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x17762\\x17\\x16\\a\\x04264&\\\"\\x06\\x14\\x12264&\\\"\\x06\\x14\\x01\\x16\\xa6\\t\\t\\x18F\\x18t\\x19\\a8P88(\\a\\x06!!\\x06\\a(88P8\\a\\x19t\\x18F\\x18\\t\\t\\xfe\\x97\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xc0\\xa6\\t\\b\\x19\\x19s\\x19\\x11\\x12(88P8\\x01!!\\x018P88(\\x12\\x11\\x19s\\x19\\x19\\b\\tF\\x13\\x1a\\x13\\x13\\x1a\\xfe\\xed\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x11\\x00#\\x00,\\x00\\x00!\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x11\\x14\\x163\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x17\\x16\\x1d\\x01#532\\x17\\x01@\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\nH!\\x17\\xa8\\x0e\\nh\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\n\\xa8y\\a`\\x06\\n\\a(\\n\\x0e\\x0e\\n\\x01p\\n\\x0e\\xfe\\xd8\\x17!\\x01X\\n\\x0e\\xfe\\xf8\\n\\x0e\\x0e\\n\\x01p\\n\\x0eI\\a\\n\\x06`\\a\\x00\\x01\\xff\\xff\\xff\\xbf\\x01\\xc1\\x01\\xc1\\x002\\x00\\x00\\x17&6?\\x0162\\x17\\x16\\x14\\x0f\\x01\\x06&'&6?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\x17\\x16?\\x0164'&\\\"\\x0f\\x01\\x06\\x14\\x162?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\\"++\\x01,\\xd1\\\"^!!!\\xb7\\x16@\\x16\\x15\\x01\\x16\\x8f\\f\\v\\x17\\v\\v\\x90\\t\\t\\b\\a\\xb7\\x0f\\x0f\\x0e(\\x0f\\xd2\\x1a3H\\x19\\xac\\f\\v\\x17\\v\\v\\xac-~\\x12-\\u007f-\\xd7\\\"\\\"\\\"_!\\xbb\\x17\\x01\\x17\\x16?\\x16\\x93\\v\\v\\x16\\f\\v\\x93\\t\\t\\b\\b\\xba\\x10*\\x0f\\x0f\\x0f\\xd6\\x1bK5\\x1a\\xb0\\f\\f\\x16\\v\\f\\xb0-\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x19\\x00(\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x17\\x02264&\\\"\\x06\\x14\\x134/\\x01&+\\x01\\\"\\x1d\\x01\\x14;\\x0125\\x01\\xb2\\x0e\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\f\\x14\\x0e\\x996%%6%\\xa0\\x04\\x03\\x04\\x04\\xe5\\f\\f\\xe8\\f\\x01>\\x0e\\x14\\xfe\\xf4\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x0e\\xfe\\x8e%6%%6\\x01\\f\\x04\\x04\\x03\\x04\\fh\\f\\f\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x00\\x03\\x00\\x00\\xff\\xfc\\x01\\xc0\\x01\\x84\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x13\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x05\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x05\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x10\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\x01<\\t\\a(\\a\\t\\t\\a(\\a\\t\\xa0\\t\\a(\\a\\t\\t\\a(\\a\\t\\xa0\\t\\a(\\a\\t\\t\\a(\\a\\t\\x00\\x00\\x06\\x00\\x00\\xff\\xf0\\x02\\x00\\x01\\x90\\x00\\a\\x00\\x0f\\x00\\x17\\x00'\\x007\\x00G\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x01\\xf0\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01\\x90\\x1c(\\x1c\\x1c(\\x84\\x1c(\\x1c\\x1c(\\x84\\x1c(\\x1c\\x1c(\\f\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x06\\xff\\xfc\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00*\\x00:\\x00J\\x00Z\\x00t\\x00\\x98\\x00\\x007\\x1e\\x01\\x15\\x14\\x06#\\\"'&?\\x016\\x17\\x163254+\\x01\\\"/\\x01&?\\x0167#\\\"=\\x014;\\x012\\x1d\\x010\\x15\\x14\\a%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463'\\\"=\\x014;\\x015#\\\"54?\\x016;\\x012\\x1d\\x0132\\x1d\\x01\\x14#\\a\\\"=\\x014>\\x0254#\\\"\\a\\x06/\\x01&7632\\x1e\\x01\\x15\\x14\\x0e\\x03\\a32\\x1d\\x01\\x14#>\\x0e\\x0e\\x18\\x18\\x15\\x10\\t\\x06\\x06\\x05\\v\\a\\b\\x0e\\x10\\x04\\b\\x05\\x01\\x03\\x06\\x06\\x05\\x06\\x17\\b\\b9\\v\\x05\\x01\\xa1\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01@\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\xa0\\b\\b\\x10\\b\\b\\x01\\b\\x02\\x05\\x18\\b\\x10\\b\\bD\\f\\x10\\x13\\x10\\t\\x06\\x04\\t\\a\\b\\n\\a\\x0e\\x1a\\v\\x13\\x0f\\n\\r\\x0e\\v\\x01'\\b\\b/\\x04\\x13\\f\\x12\\x1a\\t\\a\\t\\n\\t\\x06\\x03\\b\\t\\b\\x02\\a\\b\\a\\x06\\x06\\b\\x10\\b\\v\\x04\\x01\\a\\x06\\x9d\\t\\a \\a\\t\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\xfe\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xe0\\b\\x10\\b@\\b\\x02\\x02\\x10\\x04\\bX\\b\\x10\\b\\xa0\\v\\x04\\x11\\x19\\f\\f\\x04\\b\\x04\\b\\x06\\a\\a\\b\\x13\\a\\x13\\x0e\\n\\x11\\v\\t\\x06\\x03\\b\\x10\\b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x001\\x00T\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01&'&54>\\x01;\\x012\\x16\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'.\\x01+\\x01\\\"\\x06\\x15\\x14\\x16\\x1f\\x023\\x16\\x17\\x16\\x15\\x14\\x06+\\x01\\\".\\x01/\\x01&54?\\x01632\\x17\\x1e\\x03;\\x012654&\\x01\\xf0\\a\\t\\t\\a\\xfe \\a\\t\\t\\af\\x13\\x02\\x01!9\\\"D C\\x0f\\x01\\x01\\t+\\x03\\x04\\n\\x04\\x06\\x1a\\rB\\x12\\x1a\\x12\\rW\\x16^\\x04\\x01\\x01H4D\\x15.%\\n\\x01\\x01\\t+\\x03\\x04\\n\\x04\\x03\\n\\f\\r\\aB\\x12\\x1a\\f\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\x1b\\x1d\\x06\\x06\\\"9!)\\x1e\\x01\\x03\\x04\\n\\x04\\x16\\x01\\b\\f\\x10\\x1a\\x12\\r\\x18\\x04\\x1b`\\f\\f\\x06\\x063I\\x13!\\x13\\x01\\x03\\x04\\n\\x04\\x16\\x01\\b\\x06\\n\\b\\x04\\x1a\\x12\\t\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00/\\x00?\\x00\\x00\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x1626=\\x01#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06\\\"&=\\x01\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463 \\a\\t\\t\\a\\x90\\a\\t\\t\\a /B/ \\a\\t\\t\\a\\x90\\a\\t\\t\\a ^\\x84^\\x01p\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\xa0!//!\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\xa0B^^B\\xa0\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\x1575#\\x15\\x055#\\x1575#\\x15\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xb0\\xa0\\xa0\\xa0\\x01\\x80\\xa0\\xa0\\xa0\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80``\\xa0``\\xa0``\\xa0``\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00'\\x00+\\x00\\x00\\x13/\\x01?\\x01\\x1f\\x01\\x0f\\x01/\\x01?\\x01\\x1f\\x01\\a\\x05\\x1f\\x01\\x0f\\x01/\\x01?\\x01\\x16\\x14\\a\\x01\\x06\\\"/\\x01&47\\x0162\\x17\\a7'\\a\\xe0\\x10  \\x10\\x10  \\xa0\\x1b55\\x1b\\x1b55\\x01E\\x1b55\\x1b\\x1b55b\\t\\t\\xfe\\x94\\t\\x1a\\nU\\t\\t\\x01l\\t\\x1a\\n;W3V\\x01` \\x10\\x10  \\x10\\x10`5\\x1b\\x1b55\\x1b\\x1b\\xb55\\x1b\\x1b55\\x1b\\x1b\\xf7\\n\\x1a\\t\\xfe\\x94\\t\\tU\\n\\x1a\\t\\x01l\\t\\t\\xc2V3W\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00'\\x00/\\x007\\x00<\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1f\\x01\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x1475'#\\x15\\x02p\\a\\t\\t\\a08P8\\x808P8\\x10\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c,\\x14\\x0ed\\x0e\\xfe,(\\x1c\\x1c(\\x1c\\x01\\\\(\\x1c\\x1c(\\x1c\\x80d,`\\t\\a \\a\\t(88((88(\\x1c\\x14\\x01@\\x14\\x1c\\x1c\\x140\\x0ed\\x0e\\x14lp\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\xb4\\fdp\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x0f\\x00\\x14\\x00\\x19\\x00!\\x00&\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1334&#5265#\\x16264&\\\"\\x06\\x14\\x055\\\"\\x06\\x1575#\\x14\\x16\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x10@%\\x1b\\x1b%@\\xefB//B/\\x01`\\x1b%@@%\\x01\\x80\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\xfe\\xb0\\x1b%\\xa0%\\x1b\\xf08P88Ph@%\\x1b\\xe0@\\x1b%\\x00\\x00\\x01\\x00\\a\\x00W\\x019\\x01\\x00\\x00\\v\\x00\\x00\\x13!2\\x16\\x0f\\x01\\x06\\\"/\\x01&6\\x1f\\x01\\x02\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n\\x01\\x00\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19\\x00\\x00\\x00\\x00\\x01\\x00\\a\\x00`\\x019\\x01\\t\\x00\\v\\x00\\x00%!\\\"&?\\x0162\\x1f\\x01\\x16\\x06\\x01!\\xfe\\xfe\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n`\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19\\x00\\x00\\x00\\x00\\x01\\x00\\x17\\x00'\\x00\\xc0\\x01Y\\x00\\v\\x00\\x00\\x13\\x11\\x14\\x06/\\x01&4?\\x016\\x16\\xc0\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19\\x01A\\xfe\\xfe\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00'\\x00\\xa9\\x01Y\\x00\\v\\x00\\x005\\x1146\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&\\x19\\t\\x81\\x06\\x06\\x81\\t\\x19?\\x01\\x02\\r\\n\\t\\x81\\x06\\x10\\x06\\x81\\t\\n\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13\\x11#\\x11!\\x11#\\x11\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xb0\\xa0\\x01\\x80\\xa0\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\x01\\x00\\xff\\x00\\x01\\x00\\xff\\x00\\x00\\x00\\x02\\x00\\r\\xff\\xf8\\x013\\x01\\x88\\x00\\v\\x00\\x17\\x00\\x00732\\x16\\x0f\\x01\\x06\\\"/\\x01&6%\\x16\\x06+\\x01\\\"&?\\x0162\\x17)\\xee\\x10\\f\\vw\\a\\x14\\aw\\v\\f\\x01\\x0f\\v\\f\\x10\\xee\\x10\\f\\vw\\a\\x14\\a\\xa0\\x1e\\vw\\a\\aw\\v\\x1ei\\v\\x1e\\x1e\\vw\\a\\a\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xf8\\x013\\x00\\xa0\\x00\\v\\x00\\x00732\\x16\\x0f\\x01\\x06\\\"/\\x01&6)\\xee\\x10\\f\\vw\\a\\x14\\aw\\v\\f\\xa0\\x1e\\vw\\a\\aw\\v\\x1e\\x00\\x00\\x01\\x00\\r\\x00\\xe0\\x014\\x01\\x88\\x00\\v\\x00\\x00%#\\\"&?\\x0162\\x1f\\x01\\x16\\x06\\x01\\x17\\xee\\x10\\f\\vw\\a\\x14\\aw\\v\\f\\xe0\\x1e\\vw\\a\\aw\\v\\x1e\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x1f\\x00:\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146\\x17\\x16\\x17\\x1e\\x0432>\\x0476\\a\\\".\\x02#&'&=\\x01463!2\\x16\\x1d\\x01\\x14\\a\\x06\\a\\\"\\x0e\\x02\\x01\\xf6\\x03\\a\\x1c\\x14\\xfe`\\x14\\x1c\\a\\x03!y\\x02\\x17\\x0e\\x16\\x15\\n\\t\\x12\\x10\\x12\\f\\x10\\x03v\\xd2\\b\\x17\\x0e\\x1b\\x01z4\\t\\x1c\\x14\\x01\\xa0\\x14\\x1c\\t1}\\x01\\x1b\\x0e\\x17\\x01\\x01\\x03\\x04\\x04\\xcc\\x14\\x1c\\x1c\\x14\\xcc\\x04\\x03\\x02\\x19X\\x02\\x12\\t\\r\\x06\\x05\\a\\f\\t\\f\\x03Ue\\v\\t\\x15Y(\\a\\f\\x13\\x14\\x1c\\x1c\\x14\\x13\\f\\a&[\\x15\\t\\v\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc8\\x01\\xf9\\x01\\xc0\\x00+\\x00\\x007#\\\"&=\\x014;\\x012\\x1d\\x01>\\x013\\x1e\\x01\\x0e\\x01#\\\"'&?\\x016\\x17\\x163264&#\\\"\\x06\\a32\\x16\\x1d\\x01\\x14\\x06\\xd4\\xc8\\x05\\a\\f0\\f#a6g\\x90\\x01\\x91g_G\\n\\t\\\"\\b\\t2BIggI+J\\x19b\\x05\\a\\a\\xe0\\a\\x05\\xc8\\f\\fN'+\\x01\\x91͑@\\t\\t\\\"\\b\\b,g\\x92g'!\\a\\x050\\x05\\a\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc1\\x007\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'\\a\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x017'\\a\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17762\\x17\\x01\\xf9\\a\\a|\\b\\x13\\a\\x17\\a\\a\\x06(Q\\x06\\t\\ts\\t\\x1b\\t.\\t\\ts\\t\\x1b\\t\\x06Q(\\x05\\a\\x14\\a\\x17\\a\\a}\\a\\x14\\a\\x16\\a\\a\\x05q\\x05\\a\\x14\\a\\xf9\\a\\x14\\a}\\a\\a\\x17\\a\\x14\\a\\x05(Q\\x06\\t\\x1b\\ts\\t\\t.\\t\\x1b\\ts\\t\\t\\x06Q(\\x06\\a\\a\\x17\\a\\x13\\b|\\a\\a\\x17\\a\\x14\\a\\x05q\\x05\\a\\a\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x01D\\x01\\xc0\\x00\\x19\\x00\\x00\\x012\\x16\\a\\x03\\x06#\\\"&?\\x01#\\\".\\x01?\\x01>\\x02;\\x012\\x16\\x0f\\x01\\x01(\\x0e\\x0e\\a\\xb0\\a\\x0e\\f\\x0e\\x03.w\\a\\f\\x06\\x01 \\x01\\a\\n\\x06\\x90\\f\\x0e\\x03*\\x01 \\x18\\f\\xfe\\xd0\\f\\x12\\f\\xc2\\b\\f\\a\\xf0\\x06\\n\\x05\\x13\\v\\x82\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x005\\x00E\\x00U\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014637\\x15#546;\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01#5#\\x15#5\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x80\\r\\x13\\x13\\r`\\r\\x13\\x13\\rH0\\x17\\x0f\\xca(\\r\\x13\\x13\\r\\x80\\r\\x13\\x13\\r(\\xca\\x0f\\x170\\xc00H\\r\\x13\\x13\\r`\\r\\x13\\x13\\r\\x01P\\r\\x13\\x13\\r`\\r\\x13\\x13\\r`\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13P0:\\x0f\\x17@\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13@\\x17\\x0f:000P\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x02B\\x01\\xc0\\x00-\\x00C\\x00\\x00%\\x16\\x06'.\\x01\\x06\\a\\x06\\\"'0.\\a#\\\"\\x06\\a\\x06\\\"'.\\x01\\x06\\a\\x06&7>\\x0175462\\x16\\x1d\\x01\\x1e\\x01\\x05632\\x17\\x15\\x14\\x06#\\\"&'&>\\x01\\x16\\x17\\x163265\\x02@\\x01\\f\\b\\x1a57\\x19\\x04\\f\\x03\\x04\\x04\\b\\b\\v\\x0e\\x0f\\x12\\t\\x1f(\\x14\\x03\\f\\x04\\x1974\\x1b\\b\\f\\x01\\x15\\x8f\\\\\\x13\\x1a\\x13\\\\\\x8f\\xfe\\xd5\\x0f\\x11\\x10\\x10/!\\x19*\\b\\x05\\f\\x19\\x17\\x05\\x04\\v\\a\\t\\xa7\\b\\n\\a\\x1c\\r#+\\a\\a\\a\\b\\f\\v\\f\\n\\b\\x05'\\\"\\a\\a+$\\x0e\\x1c\\a\\n\\bcz\\n\\x12\\r\\x13\\x13\\r\\x12\\nzx\\x0e\\x0e\\x82!/\\x1d\\x18\\r\\x18\\t\\f\\f\\v\\t\\a\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00/\\x008\\x00\\x00\\x13\\x15#\\\"&5\\x1146;\\x0162\\x1732\\x16\\x1d\\x01#\\\"\\x066\\\"\\x06\\x14\\x16264\\x173\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x01\\x15\\x14\\x167\\x15#532\\x1f\\x01\\x16\\x80h\\n\\x0e\\x0e\\nQ\\x12J\\x12Q\\n\\x0e\\x88\\x17!*\\x14\\x0e\\x0e\\x14\\x0e\\xa0h\\x0e\\n\\xf0\\n\\x0e\\x0e\\n\\x88\\x0er`\\x06\\n\\aB\\a\\x01\\b\\xe8\\x0e\\n\\x01P\\n\\x0e  \\x0e\\nH!y\\x0e\\x14\\x0e\\x0e\\x14\\xea\\xc8\\n\\x0e\\x0e\\n\\x010\\n\\x0eh\\n\\x0e&\\x06`\\aB\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x01`\\x01\\xc1\\x00\\r\\x00 \\x000\\x00\\x00\\x1753\\x15\\x14\\x0f\\x01\\x06+\\x01\\\"/\\x01&\\x034632\\x16\\x15\\x14\\a\\x06\\a0\\x15#41&'&7264&#\\\"\\x06\\x15\\x14\\x1626546`\\xa0\\x05\\x11\\n\\x11>\\x11\\t\\x12\\x05`dKJg,%\\x0f\\xa0\\x0f%,\\xb0\\a\\t\\t\\a.B\\t\\x0e\\t/\\x06&&\\n\\b\\x1a\\x0e\\x0e\\x1a\\b\\x01 GigIB2+0\\x01\\x010+2\\x92\\t\\x0e\\tB.\\a\\t\\t\\a!/\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x0f\\x00U\\x00\\x00$\\\"&462\\x16\\x14\\x06462\\x16\\x14\\x06\\\"7\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x15\\x0e\\x01\\x15\\x14\\x162654&'5\\x16\\x17\\x1627267\\x15\\x0e\\x01\\x1d\\x01\\x14\\x1f\\x01\\x16?\\x016/\\x01546\\x16\\x1d\\x01\\a\\x06\\x1f\\x01\\x16?\\x016=\\x014&'\\x01\\x15jKKjK\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\xca6J\\x1a\\x13\\xfe\\x9a\\x13\\x1a@0\\x11\\x17!.!\\x16\\x12\\f\\v\\x1c:\\x1d\\x01\\x04\\x01\\x1c$\\x0e\\x1f\\b\\x01\\x04\\x01\\b\\x1300\\x13\\b\\x01\\x04\\x01\\b \\r$\\x1c\\xc0KjKKj\\xfd\\x14\\x0e\\x0e\\x14\\x0e\\x9f\\x02N5-\\x13\\x1a\\x1a\\x13-1K\\bQ\\x05\\x1d\\x13\\x17!!\\x17\\x13\\x1d\\x05R\\x02\\x03\\n\\n\\x01\\x01.\\x05,\\x1d,\\x0e\\x02\\x04\\x01\\a\\x10\\b\\x02\\x03\\x1b \\x19\\x19\\x1e\\x1c\\x04\\x02\\b\\x10\\a\\x01\\a\\x02\\r*\\x1d,\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc2\\x00B\\x00J\\x00\\x00\\x012\\x1e\\x01\\x15\\x14\\a\\x15\\x14\\x06#\\\"&'.\\x01=\\x0146?\\x016\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x15\\x14\\x16326=\\x01'.\\x01?\\x01>\\x02\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x1e\\x02326=\\x01&7>\\x01\\x16264&\\\"\\x06\\x14\\x01\\xbf\\x12\\x1e\\x11 gIGg\\x027I\\v\\b?\\n\\x10\\x02\\x03\\x02\\v\\t\\x1f9('8\\x1f\\n\\v\\x02\\x04\\x01\\b\\f\\a?\\b\\vI7\\x02\\x1e3\\x1d.B!\\x01\\x01$\\x14\\x0e\\t\\t\\x0e\\t\\x01P\\x11\\x1d\\x12%\\x12qEc_D\\vY9\\x9b\\t\\r\\x02\\f\\x02\\v\\t\\x10\\n\\x10\\x02\\x06{(8:'z\\x06\\x02\\x10\\n\\x10\\x06\\n\\x04\\x01\\r\\x02\\r\\t\\x9b9X\\f\\x1b.\\x1a=+q\\x12&\\x1a%P\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\t\\x00\\r\\x00\\x17\\x00!\\x00\\x00\\x17\\x1146;\\x012\\x16\\x15\\x11\\x03\\x1535\\x17\\x11\\x14\\x06+\\x01\\x1132\\x16\\x01#\\\"&5\\x1146;\\x01\\x80\\x1c\\x14\\xa0\\x14\\x1c\\xc0\\x80\\xc0\\x1c\\x1400\\x14\\x1c\\xfe`0\\x14\\x1c\\x1c\\x140 \\x01\\x90\\x14\\x1c\\x1c\\x14\\xfep\\x01\\x80  P\\xff\\x00\\x14\\x1c\\x01`\\x1c\\xfe\\xbc\\x1c\\x14\\x01\\x00\\x14\\x1c\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x01\\xc1\\x01\\xc0\\x00\\x05\\x00+\\x00\\x00\\x16\\\"&53\\x147\\x16\\x15\\x14\\x06#!\\\".\\x0154767>\\x0254675462\\x16\\x1d\\x01\\x1e\\x02\\x15\\x14\\x1e\\x01\\x17\\x16\\xfa4&\\x80\\x97\\t\\x12\\x0e\\xfe\\x80\\t\\x0f\\b\\t\\x01\\x02\\x0f\\x11\\x14H8\\x13\\x1a\\x13%:!\\x14\\x11\\x0f\\x02@%\\x1b\\x1bq\\n\\f\\r\\x13\\t\\x0f\\b\\f\\n\\x01\\x03\\x0f\\x18C,:V\\v\\x15\\r\\x13\\x13\\r\\x15\\a,B&,C\\x18\\x0f\\x03\\x00\\x00\\x03\\xff\\xf9\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x11\\x00\\x19\\x00'\\x00\\x007\\\"&=\\x01463!2\\x16\\x14\\x06+\\x01\\x14\\x06#\\x13#\\x153264&\\x13!\\\"'&763!2\\a\\x06\\a\\x06\\xc0(8\\x0e\\n\\x01\\x885KK5 8(\\x80  \\x1a&&\\x16\\xfe\\x00!\\f\\t\\r\\x02\\x03\\x02H\\x0f\\x04\\x05\\x1a\\b@8(\\xe8\\n\\x0eKjK(8\\x01 \\x80&4&\\xfe\\x80 \\x18\\a\\x01\\x17\\x1d\\t\\x03\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00'\\x003\\x00;\\x00G\\x00S\\x00o\\x00\\x00\\x05\\x15!54;\\x01\\x1146;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x15\\x1132\\x03#\\\"\\x1d\\x01\\x14;\\x012=\\x014\\a32=\\x014+\\x01\\\"\\x1d\\x01\\x14\\x17#\\\"\\x1d\\x013547#\\\"\\x1d\\x01\\x14;\\x012=\\x014\\a4+\\x01\\\"\\x1d\\x01\\x14;\\x0125'3\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14\\x01\\xc0\\xfe@\\f\\x14\\x0e\\nX\\x0e\\np\\n\\x0eX\\n\\x0e\\x14\\f\\x8c(\\f\\f(\\f\\xb4(\\f\\f(\\ft(\\f@4(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\n\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06,\\x14\\x14\\f\\x01h\\n\\x0eH\\n\\x0e\\x0e\\nH\\x0e\\n\\xfe\\x98\\x01 \\f(\\f\\f(\\f@\\f(\\f\\f(\\f\\x80\\fTT\\f`\\f(\\f\\f(\\f\\f\\f\\f(\\f\\f\\xf4\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00'\\x00/\\x00K\\x00S\\x00X\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1f\\x01\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x16264&\\\"\\x06\\x1475'#\\x15\\x02p\\a\\t\\t\\a08P8\\x808P8\\x10\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c,\\x14\\x0ed\\x0e\\xfe,(\\x1c\\x1c(\\x1c\\xc0\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x9c(\\x1c\\x1c(\\x1c\\x80d,`\\t\\a \\a\\t(88((88(\\x1c\\x14\\x01@\\x14\\x1c\\x1c\\x140\\x0ed\\x0e\\x14lp\\x1c(\\x1c\\x1c(\\xdc0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xf0\\x1c(\\x1c\\x1c(\\xb4\\fdp\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\r\\x00\\x11\\x00\\x1b\\x00%\\x00I\\x00\\x00\\x17\\x113546;\\x012\\x16\\x1d\\x013\\x11\\x03\\x1535\\x17\\x11\\x14\\x06+\\x01\\x1132\\x16\\x01#\\\"&5\\x1146;\\x01\\x054&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x013265` \\x1c\\x14\\xa0\\x14\\x1c \\xe0\\x80\\xc0\\x1c\\x14\\x10\\x10\\x14\\x1c\\xfe@\\x10\\x14\\x1c\\x1c\\x14\\x10\\x01 \\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t \\x01`0\\x14\\x1c\\x1c\\x140\\xfe\\xa0\\x01\\x80  P\\xff\\x00\\x14\\x1c\\x01`\\x1c\\xfe\\xbc\\x1c\\x14\\x01\\x00\\x14\\x1c\\x90\\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00/\\x00\\x00%\\x16\\x14\\x0f\\x02#\\a32\\x14+\\x01535#\\a#'53535'575#5#573\\x1735#532\\x14+\\x01\\x173\\x17\\x02 ``\\x800\\x18u(\\x15\\x15s\\x100C\\\"\\v\\b0@@0\\b\\v\\\"C0\\x10s\\x15\\x15(u\\x180\\xe0\\x15\\x16\\x15\\x10\\x10\\x94\\f\\f\\xa4P\\vE\\x10\\x03\\b*\\b\\x03\\x10E\\vP\\xa4\\f\\f\\x94\\x10\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x19\\x00\\\"\\x00.\\x00:\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x15\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x1d\\x01\\x1754&+\\x01\\x1576\\x0626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x0626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x01p!/\\x1a\\x15Q\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\n\\x01\\x10\\n\\x0e@\\t\\a07\\t\\xb7\\x0e\\t\\t\\x0e\\tW\\x0e\\t\\t\\x0e\\t\\x01`/!\\x81\\x18'\\n$*\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n(с\\a\\t\\xb8\\x19\\x04E\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x003\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a#\\\"\\x06\\x1d\\x01#54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x013\\x15\\x14\\x16;\\x0126=\\x014&\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cp \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1cD\\t\\aPP\\a\\t\\t\\a\\xe0\\a\\t\\t\\aPP\\a\\t\\t\\a\\xe0\\a\\t\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01@\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfc8\\f\\\\\\f\\f\\\\\\f8\\f\\\\\\f\\f\\\\\\x00\\x02\\x00\\x18\\x00\\x1f\\x01\\xa9\\x01a\\x00\\x15\\x00*\\x00\\x00?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x1e\\x01\\x06\\x0f\\x01\\x06\\\"/\\x01&4\\a&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x16\\x14\\x0f\\x01\\x06\\\"'\\xe0\\x88\\a\\x14\\a\\x16\\a\\a``\\x05\\x03\\x03\\x05\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\aш\\a\\a\\x17\\a\\x14\\a``\\x05\\f\\r\\x04\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x00\\x02\\x00\\x18\\x00\\x1f\\x01\\xa8\\x01a\\x00\\x14\\x00+\\x00\\x007\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01\\x16\\x147\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'&4?\\x01>\\x012\\x16\\x17\\xe0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\x04\\t\\t\\t\\x03\\xaf\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\x03\\x04\\x04\\x03\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xf8\\x01A\\x01\\x88\\x00\\x14\\x00+\\x00\\x007\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x06\\\"/\\x01&4?\\x0162'62\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x0e\\x01\\\"&/\\x01&47\\xb1\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\x04\\t\\t\\t\\x03\\x17\\a\\a\\xc0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\x04\\x03\\x03\\x04\\x16\\a\\x14\\a\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xf8\\x01A\\x01\\x88\\x00\\x14\\x00)\\x00\\x007'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\x17\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\a\\x8f\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x1b\\a\\x14\\a\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\xc0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xb9\\a\\a\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x00\\x01\\x00\\x18\\x00\\x1f\\x00\\xe9\\x01a\\x00\\x15\\x00\\x00?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x1e\\x01\\x06\\x0f\\x01\\x06\\\"/\\x01&4 \\x88\\a\\x14\\a\\x16\\a\\a``\\x05\\x03\\x03\\x05\\x16\\a\\x14\\a\\x88\\aш\\a\\a\\x17\\a\\x14\\a``\\x05\\f\\r\\x04\\x17\\a\\a\\x88\\a\\x14\\x00\\x01\\x00\\x18\\x00\\x1f\\x00\\xe8\\x01a\\x00\\x14\\x00\\x007\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01\\x16\\x14\\xe0\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\xaf\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x00\\x01\\xff\\xff\\x00X\\x01A\\x01(\\x00\\x14\\x00\\x00\\x13\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\a\\x06\\\"/\\x01&4?\\x0162\\xb1\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14\\x01 \\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00X\\x01@\\x01(\\x00\\x14\\x00\\x007'&4?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\x8f\\x88\\a\\a\\x17\\a\\x14\\a``\\a\\x14\\a\\x17\\a\\a\\x88\\a\\x14`\\x88\\a\\x14\\a\\x16\\a\\a``\\a\\a\\x16\\a\\x14\\a\\x88\\a\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x1f\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x1732\\x16\\x14\\x06#!\\\"&46;\\x017#\\\"&5\\x11463\\x01\\x11!\\x11\\x02\\x10\\x14\\x1c\\x1c\\x14\\xc0\\x10H\\n\\x0e\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\nH\\x10\\xc0\\x14\\x1c\\x1c\\x14\\x01\\xd0\\xfe@\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c0\\x0e\\x14\\x0e\\x0e\\x14\\x0e0\\x1c\\x14\\x01@\\x14\\x1c\\xfe\\xa0\\x01 \\xfe\\xe0\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x17\\x00!\\x00%\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x14\\x16;\\x01267\\x13\\x11!\\x11463!2\\x16\\x03\\x11!\\x11\\x02p\\a\\t&\\x1a\\xfe\\x00\\x1a&\\t\\a\\xef\\x14\\r=\\x0e\\x12\\x01\\xc2\\xfe\\x00\\x1c\\x14\\x01\\xa0\\x14\\x1c@\\xfe\\x80 \\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\v\\x15\\x11\\x0f\\x01p\\xfe\\xb0\\x01P\\x14\\x1c\\x1c\\xfe\\xdc\\x01\\x00\\xff\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xa3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x01\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14c\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1c\\x009\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x1d\\x01#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x1d\\x01\\x01\\xd0\\x14\\x1c\\x1c\\x14\\x80\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&\\xd0\\x14\\x1c\\x1c\\x14\\x80\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&\\xc0\\x1c\\x14\\x80\\x14\\x1c\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x1c\\x14\\x80\\x14\\x1c\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1c\\x009\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x0126=\\x01#\\\"&=\\x01463#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x0126=\\x01#\\\"&=\\x01463\\x01\\xd0\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&P\\x14\\x1c\\x1c\\x14\\xa0\\x14\\x1c^B\\b\\n\\x0e\\x0e\\n\\b\\x1a&P\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x1c\\x14\\x80\\x14\\x1c\\x1c\\x14\\xf0B^\\x0e\\n0\\n\\x0e&\\x1a@\\x1c\\x14\\x80\\x14\\x1c\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00\\x00\\x00\\x14\\x06\\\"&462\\x022\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4 \\x14\\x06\\\"&462\\x162\\x16\\x14\\x06\\\"&4$2\\x16\\x14\\x06\\\"&4\\x002\\x16\\x14\\x06\\\"&4\\x010\\x1c(\\x1c\\x1c(((\\x1c\\x1c(\\x1c\\xec(\\x1c\\x1c(\\x1c\\xfe\\xc0\\x1c(\\x1c\\x1c(\\x15(\\x1c\\x1c(\\x1c\\x01B(\\x1c\\x1c(\\x1c\\xfe\\xf6(\\x1c\\x1c(\\x1c\\x01\\xa4(\\x1c\\x1c(\\x1c\\xfe`\\x1c(\\x1c\\x1c(\\xec\\x1c(\\x1c\\x1c((\\x1c\\x1c(\\x1c\\x93\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x01B\\x1c(\\x1c\\x1c(\\x00\\x01\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x99Α\\x91Α\\x01\\xb8\\x91Α\\x91\\xce\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00)\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x1764.\\x01\\x06\\a\\x06\\\"'.\\x01\\x0e\\x01\\x14\\x17\\x162\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xa3\\x04\\x06\\t\\n\\x04#n#\\x04\\n\\t\\x06\\x04-\\x8c\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x97\\x04\\v\\a\\x05\\x02\\x05**\\x05\\x02\\x05\\a\\v\\x046\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x17\\x16>\\x01'&\\\"\\a\\x06\\x1e\\x01762\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x8a\\a\\x12\\x05\\x05-\\x8c-\\x06\\a\\x11\\a#n\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xc7\\b\\x04\\x10\\b66\\a\\x11\\x03\\a*\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16\\\"\\x06\\x14\\x16264\\x1724+\\x01\\\"\\x1436264&\\\"\\x06\\x14\\x91Α\\x91Α\\xb5\\x1a\\x13\\x13\\x1a\\x13\\x90\\x10\\x10\\xc0\\x10\\x10\\xa3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\xad  \\x80\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x04\\xff\\xff\\x00 \\x02\\x81\\x01`\\x00\\x11\\x00-\\x005\\x00=\\x00\\x00\\x012\\x16\\x14\\x06#\\\"&'#\\x0e\\x01#\\\"&463\\x1754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\xe0B^^B\\x1cC\\x13\\\\\\x13C\\x1cB^^BX\\f4\\f\\x18\\f4\\f\\f4\\f\\x18\\f4\\f\\xc7\\\"\\x17\\x17\\\"\\x17W\\\"\\x17\\x17\\\"\\x17\\x01`^\\x84^\\x1c\\x14\\x14\\x1c^\\x84^\\xac\\x18\\f4\\f\\f4\\f\\x18\\f4\\f\\f4@\\x17\\\"\\x17\\x17\\\"I\\x17\\\"\\x17\\x17\\\"\\x00\\r\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00K\\x00W\\x00c\\x00o\\x00{\\x00\\x87\\x00\\x93\\x00\\x9f\\x00\\x00)\\x01\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012%54+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02\\x10\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x1c\\xfe\\\\\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f\\x01 \\f\\xe8\\f\\f\\xe8\\f`\\f(\\f\\f(\\f\\x1c\\x14\\x01 \\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x01\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\fT(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\fT(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x00\\x04\\x00\\b\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\a\\x00.\\x004\\x00X\\x00\\x00\\x13\\x1e\\x01\\x17\\x15.\\x01'76\\x16\\x1d\\x01\\x14\\a\\x06#\\\"&#\\\"\\a\\x15\\x14\\x06+\\x01\\\"&5\\x11&546\\x17\\x1e\\x02\\x17\\x16\\a62\\x1632\\a5\\x06\\a\\x156%5\\x06\\a\\x15\\x06'5&'\\x15&\\a5\\x06\\a\\x1567\\x156\\x17\\x15\\x16\\x175\\x167\\x15675\\x06\\a56\\xf3\\t2\\x0f\\t2\\x0f\\xdf\\x10\\x1e\\x0e;?$i\\x19>4\\x0e\\n\\x10\\n\\x0e\\x18\\\"\\x18\\x0e\\x18\\x0f\\x01\\x01\\x05!Gh\\x1a0\\xe4\\\"(#\\x01M'##&\\f>&#\\x137.\\x1c(!\\v?&#%% *\\x1b\\x01\\x02\\x02\\x11\\x03D\\x02\\x11\\x03\\xbf\\a\\x12\\x12\\xf3\\x11\\t)\\\"\\x16^\\n\\x0e\\x0e\\n\\x01\\x82\\x11\\x1d\\x18!\\x01\\x01\\x0e\\x17\\x0e\\r\\v\\f#\\xe3H\\x03\\x0fF\\r\\x8aG\\x11\\x06H\\x06\\tD\\x02\\x14D\\v\\x05G\\x01\\x15F\\x11\\x04F\\x03\\aD\\x02\\x14D\\v\\x05H\\x04\\x18F\\x14\\x06G\\x04\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02\\x80\\x01\\x9b\\x00\\x14\\x00$\\x00\\x00%\\a\\x06\\\"/\\x01&4?\\x01'&4?\\x0162\\x1f\\x01\\x16\\x14\\x05\\x14\\x06#!\\\"&=\\x01463!2\\x16\\x15\\x01\\x02\\xc2\\a\\x14\\a\\x17\\a\\a\\x9a\\x9a\\a\\a\\x17\\a\\x14\\a\\xc2\\a\\x01w\\x0e\\n\\xfe\\xd0\\n\\x0e\\x0e\\n\\x010\\n\\x0e\\xaf\\xc2\\a\\a\\x16\\a\\x14\\a\\x9b\\x9b\\a\\x14\\a\\x16\\a\\a\\xc2\\a\\x14\\xbe\\n\\x0e\\x0e\\n \\n\\x0e\\x0e\\n\\x00\\x00\\x03\\xff\\xfa\\xff\\xbd\\x02\\x86\\x01\\xc3\\x00\\v\\x00\\x1b\\x00+\\x00\\x00\\x05'&7\\x136\\x1f\\x01\\x16\\a\\x03\\x06'\\x06/\\x01&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x17\\x16\\a\\x05\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x01\\x16\\a\\x01\\x17=\\f\\x04\\x88\\x03\\f=\\f\\x04\\x88\\x04}\\b\\t\\x90\\n\\n\\x90\\t\\b+\\t\\t[[\\t\\t\\x01\\x1c\\t\\b+\\t\\t[[\\t\\t+\\b\\t\\x90\\n\\n@\\x12\\x03\\f\\x01\\xd6\\f\\x03\\x12\\x03\\f\\xfe*\\ft\\t\\b\\x87\\t\\t\\x87\\b\\t.\\t\\bPP\\b\\t/\\b\\t.\\t\\bPP\\b\\t.\\t\\b\\x87\\t\\t\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xdc\\x02@\\x01\\xa5\\x00\\x1a\\x000\\x00\\x00\\x1376\\x16\\x1d\\x01\\x1e\\x03\\x15\\x14\\x06\\a\\x06&76&'\\x15\\x14\\x06/\\x01&4\\a&4?\\x016\\x16\\x1d\\x01\\a\\x0e\\x01\\x151\\x14\\x16\\x1f\\x01\\x15\\x14\\x06'\\x88\\xb0\\f\\x1c3N>!0#\\v\\x15\\x04\\x1c9T\\x1c\\f\\xb0\\bx\\b\\b\\xb0\\f\\x1cm\\b\\v\\v\\bm\\x1c\\f\\x01\\x02\\x98\\n\\r\\x0fS\\x04\\x15)F/,U\\x19\\b\\x0e\\fZR\\nT\\x0f\\r\\n\\x98\\a\\x16\\x1d\\a\\x16\\a\\x98\\n\\r\\x0f\\x10^\\a\\x18\\v\\v\\x18\\a^\\x10\\x0f\\r\\n\\x00\\x00\\x00\\x01\\xff\\xfb\\xff\\xbd\\x02\\t\\x01\\xc9\\x00\\x0f\\x00\\x00\\x016\\x16\\a\\x03\\x0e\\x01.\\x01=\\x01#\\\"&67\\x01\\xbd\\x1c/\\f\\xbf\\b \\x1e\\x17\\xb0\\x19\\x1b\\n\\x17\\x01\\xbc\\f/\\x1c\\xfe`\\x11\\x0e\\x06\\x1a\\x12\\xb0%-\\v\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\a\\x01\\xc7\\x007\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x11\\a3\\x15#\\\"&5\\x11#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x15\\x117#5376\\x1f\\x01\\x16\\x0f\\x01\\x15\\x01\\xe8\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e\\x93s\\xe8\\n\\x0e(\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e\\x93s\\xd3;\\v\\f\\x16\\f\\f;`\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\n\\x01\\x1b\\x93`\\x0e\\n\\x01\\b\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\n\\xfe\\xe5\\x93`;\\f\\f\\x16\\f\\v;\\xf3\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x006\\x00>\\x00F\\x00N\\x00\\x00\\x01\\x14\\x06\\a\\x06\\a\\x0e\\x02\\a\\x06\\a\\x06\\a\\x1e\\x01\\x15\\x14\\x06\\\"&54>\\x0175.\\x015462\\x16\\x15\\x14\\x06\\a\\x1567>\\x02767.\\x025462\\x16$\\\"\\x06\\x14\\x16264\\x02264&\\\"\\x06\\x14\\x12\\\"\\x06\\x14\\x16264\\x01\\x80\\x1e\\x18\\x01\\x15\\r- \\x1c2\\x10\\n\\x05\\x17\\x1c/B/\\x0e\\x1a\\x10\\x19\\x1f/B/\\x1f\\x19\\x189\\x18\\x18\\x1e\\a\\v\\x01\\x11\\x1a\\x0f/B/\\xfe\\xd7\\x0e\\t\\t\\x0e\\t\\x17\\x0e\\t\\t\\x0e\\t\\xf7\\x0e\\t\\t\\x0e\\t\\x010\\x1a*\\b*\\x1a\\x10\\x13\\x06\\x02\\x05\\b\\x05\\b\\t)\\x19!//!\\x12\\x1f\\x16\\x05\\xc8\\a*\\x1b!//!\\x1b*\\a\\x90\\v\\x06\\x02\\x03\\v\\t\\r\\x18\\x05\\x16 \\x12!///\\t\\x0e\\t\\t\\x0e\\xfe\\x89\\t\\x0e\\t\\t\\x0e\\x017\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00\\x17\\x00/\\x00?\\x00\\x00%\\x16\\x0f\\x01\\x06\\\"&4?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\x14\\x162?\\x016\\x17/\\x01&?\\x0162\\x16\\x14\\x0f\\x01\\x06/\\x01&?\\x0164&\\\"\\x0f\\x01\\x06\\x13\\x06\\\"'\\x01&4?\\x0162\\x17\\x01\\x16\\x14\\a\\x010\\t\\t-,~Y,-\\t\\b(\\b\\b-\\x15*<\\x15-\\b\\b\\x10(\\t\\t-,~Y,-\\t\\b(\\b\\b-\\x15*<\\x15-\\b\\xe2\\a\\x14\\a\\xfeG\\a\\a\\x17\\a\\x14\\a\\x01\\xb9\\a\\a*\\b\\t-,Y~,-\\t\\t(\\b\\b-\\x15<*\\x15-\\b\\b\\xdc(\\b\\t-,Y~,-\\t\\t(\\b\\b-\\x15<*\\x15-\\b\\xfe\\xa1\\a\\a\\x01\\xb9\\a\\x14\\a\\x17\\a\\a\\xfeG\\a\\x14\\a\\x00\\x02\\x00\\x18\\xff\\xc0\\x01z\\x01\\xc0\\x00)\\x001\\x00\\x00\\x132\\x16\\x15\\x14\\x0e\\x03\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014>\\x027>\\x0154&#\\\"\\x0e\\x01\\a\\x0e\\x01/\\x01.\\x0176\\x122\\x16\\x14\\x06\\\"&4\\xcaBn\\x1a%%\\x1a\\x0e\\nH\\n\\x0e\\r\\x1f\\x13\\x13\\x1b\\x16,\\x19\\x13\\x1d\\x14\\x0f\\x06\\x13\\b+\\b\\x03\\x06?F:((:(\\x01\\xc0Z@ 1\\x1b\\x14\\x15\\v\\x06\\n\\x0e\\x0e\\n\\n\\x16\\\"\\x1b\\f\\v\\x0f\\x15\\x0f\\x16\\x1c\\r\\x13\\x11\\b\\x03\\x06!\\x06\\x13\\b[\\xfe\\x8b)9))9\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x00\\xc0\\x01\\xc0\\x00\\x1e\\x00&\\x00\\x00735#\\\"&=\\x0146;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x122\\x16\\x14\\x06\\\"&4\\x14\\x14\\x14\\b\\f\\f\\bp\\b\\f\\x14\\b\\f\\f\\b\\x98\\b\\f\\f6<**<*\\x18\\x90\\f\\b0\\b\\f\\f\\b\\xd4\\f\\b0\\b\\f\\f\\b0\\b\\f\\x01\\xa8*<**<\\x00\\x00\\x02\\x00\\x10\\xff\\xc0\\x00\\xb0\\x01\\xc0\\x00\\a\\x00\\x17\\x00\\x006\\x14\\x06\\\"&462\\x0346;\\x012\\x16\\x15\\x03\\x14\\x06+\\x01\\\"&5\\xb0/B//Bh\\x0e\\n^\\n\\x0e\\x0e\\x0e\\nB\\n\\x0e1B//B/\\x01G\\n\\x0f\\x0f\\n\\xfe\\xf0\\n\\r\\r\\n\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\xc0\\x00\\x1f\\x00S\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01'2\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"/\\x01\\a\\x06+\\x01\\\"&=\\x0146;\\x017'#\\\"&=\\x0146;\\x012\\x1f\\x01763\\x01\\xf0\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x90\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\bC\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\b\\x01 \\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a\\x04\\x03 \\t\\t\\a\\x90`\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\x80\\x00\\x1f\\x00S\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01\\x032\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"/\\x01\\a\\x06+\\x01\\\"&=\\x0146;\\x017'#\\\"&=\\x0146;\\x012\\x1f\\x01763\\x01\\xf0\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x90\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\bC\\a\\t\\t\\a!NN!\\a\\t\\t\\aC\\b\\x05PP\\x05\\b\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a\\x04\\x03 \\t\\t\\a\\x90\\x01\\x80\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\t\\a0\\a\\tpp\\t\\a0\\a\\t\\ass\\a\\x00\\x02\\xff\\xff\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00\\x15\\x00\\x1a\\x00\\x00%\\a32\\x1d\\x01\\x14#!\\\"/\\x01&47\\x0162\\x1f\\x01\\x16\\x14%\\a\\x1737\\x01\\xf2\\x8e\\x90\\f\\f\\xfe\\x9c\\x14\\x0e`\\x0e\\x0e\\x01\\x00\\x0e(\\x0e\\xa0\\x0e\\xfe\\xc3|PrD\\xae\\x8e\\f(\\f\\x0e`\\x0e(\\x0e\\x01\\x00\\x0e\\x0e\\xa0\\x0e(1}PC\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x02@\\x01\\xc0\\x00K\\x00\\x00%2\\x1e\\x01\\x15\\x14\\x06#\\\"&#\\\"\\x0e\\x01\\x16\\x1f\\x01\\\"\\x0e\\x02.\\x0254654&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x01\\x15\\x14\\x0e\\x01&/\\x01\\x110\\x17\\x1654&54632\\x16\\x15\\x14\\x06\\x15\\x14\\x1e\\x01>\\x02?\\x010\\a\\x06326\\x02\\a\\x12\\x1b\\f\\x1d\\x1a\\x141\\x11\\x11\\x12\\x01\\x04\\x03\\x03\\n! $\\x1f\\x19\\x0e$#\\x1b\\x11\\x1d\\x11\\x14\\x14%54\\x13\\x12@p '\\x1c\\x1a#$\\x15#**\\\"\\v\\v\\x11\\x13)\\t2\\x9f\\x13\\x1d\\x11\\x1b#$\\x19##\\r\\f\\x04\\x03\\x04\\x02\\x06\\x10\\r\\x110\\x15\\x19\\x1d\\f\\x1a\\x12\\x12\\x1f\\x17\\t\\x14\\x14\\x01\\x04\\x04\\x04\\x01M\\n\\v2\\t2\\x17\\x1a\\x1e\\x1d\\x1a\\x140\\x12\\x11\\x12\\x03\\x04\\f\\v\\x04\\x04Ek\\x1f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc0\\x00\\v\\x00<\\x00\\x006\\\"&=\\x01462\\x16\\x1d\\x01\\x1472\\x16\\x1d\\x01\\x14\\x06\\a\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16\\x17\\x166=\\x01463\\xd8P88P8@\\a\\tWA8\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW\\t\\a\\x10\\a\\tB19T\\t\\a`8(\\xa0(88(\\xa0(h\\t\\a0Bc\\t\\\"\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD(\\a\\t\\t\\a*3N\\x04\\x06M80\\a\\t\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00%\\x00F\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x0154632\\x1e\\x01\\x1d\\x01\\x14\\a\\x176=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x01\\x17\\x1e\\x02\\x17\\x167\\x17\\x06\\a\\x15\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\xb38(\\x1a,\\x1a\\x05\\x1a\\v\\t\\a\\x10\\a\\t\\x14L\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW4\\x06\\x1f/\\x1b\\a\\x0e2\\x12\\x10\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\t\\x8a-(8\\x1a,\\x1a\\xa0\\x0e\\x10\\x14\\x18\\x1a0\\a\\t\\t\\a0*&\\x80\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD\\a)\\x1a,\\x1d\\x02\\x01\\x01'\\x06\\x02\\\"\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\r\\x00+\\x00\\x00\\x13!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114%\\x14#!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x15\\f\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01\\xc0\\f\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\x01\\x00\\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f,\\f\\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x008\\x00@\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x06/\\x01&5#\\x15\\x1e\\x03\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014675*\\x02\\x0e\\x05\\a\\x0e\\x01.\\x01767&632\\x16\\a347\\x06264&\\\"\\x06\\x14\\x01\\xb2\\x06\\b\\b\\x06\\xa8\\n(\\x0f\\x1b\\x13\\v\\x0e\\n\\x90\\n\\x0e)\\x1f\\x04\\x1e\\x06\\x18\\x06\\x12\\a\\r\\t\\x05\\x03\\x13\\x12\\b\\x04\\x1e<\\v!\\x1e\\x1c\\\"\\b:\\n\\x81\\x0e\\t\\t\\x0e\\t\\x01\\xa6\\x01\\b\\x05t\\x05\\b\\x01\\x1c\\x02\\x10\\x1b\\x04\\x12\\x18\\x1f\\x10\\xf8\\n\\x0e\\x0e\\n\\xf7!5\\b\\x1b\\x02\\x03\\x06\\n\\r\\x13\\f\\t\\b\\a\\x13\\tL\\x0f\\x1b1-\\x1b\\x10\\x02\\x12\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00,\\x004\\x00\\x00\\x01\\x16\\x15\\x14\\x06\\a\\x15\\x14\\x06\\x0f\\x01\\x06#\\\"&=\\x01\\a\\x06&/\\x01&6?\\x01#\\\".\\x0154?\\x01>\\x02;\\x01>\\x0132\\x17\\x16\\x06264&\\\"\\x06\\x14\\x01\\xf9\\aD<\\x10\\vb\\x05\\x06\\n\\x0e\\x16\\v\\x1a\\t3\\t\\x01\\b\\x17h\\a\\v\\x06\\x031\\x04\\x0e\\x11\\bh'dH3 \\n\\x88\\\"\\x17\\x17\\\"\\x17\\x01\\xad!2Hd'h\\r\\x19\\x051\\x03\\x0e\\nh\\x17\\t\\x01\\b3\\n\\x1b\\t\\x16\\x06\\v\\a\\x06\\x05c\\a\\f\\a=C\\a\\x02\\x9f\\x17\\\"\\x17\\x17\\\"\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x00\\x04\\\"&462\\x16\\x14%\\x17\\x162?\\x0164/\\x01764/\\x01&\\\"\\x0f\\x01\\x06\\x14\\x01gΑ\\x91Α\\xfe\\x96\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a8\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05'&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\a\\x06\\x14\\x1f\\x01\\x162?\\x0164\\x99Α\\x91Α\\x01j\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a\\x01\\xb8\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x006462\\x16\\x14\\x06\\\"\\x13\\a\\x06\\x14\\x1f\\x01\\x162?\\x01\\x17\\x162?\\x0164/\\x01&\\\"\\b\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14YΑ\\x91Α\\x01j\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1c\\x00\\x00\\x00\\x14\\x06\\\"&462\\x03764/\\x01&\\\"\\x0f\\x01'&\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x162\\x01\\xf8\\x91Α\\x91\\xceV\\x87\\b\\b\\x10\\b\\x13\\aff\\a\\x14\\a\\x10\\b\\b\\x87\\a\\x14\\x01'Α\\x91Α\\xfe\\x96\\x88\\a\\x14\\a\\x10\\b\\bee\\b\\b\\x10\\b\\x13\\a\\x88\\a\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x02B\\x01\\xc1\\x00B\\x00J\\x00\\x007\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x1e\\x01\\x175#\\\"=\\x014;\\x015.\\x01546\\x17\\x1e\\x01\\x15\\x14\\x06\\a\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15>\\x017#\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x0e\\x01\\\"&'\\x00\\\"\\x06\\x14\\x16264\\r\\b\\x06\\x05D\\b\\bD\\x05\\x06\\b#\\x0eR04\\f\\f4\\x1c$9((7$\\x1c4\\x05\\a\\a\\x0540R\\x0e#\\b\\x06\\x05D\\b\\bD\\x05\\x06\\b \\x10\\x8e\\xaa\\x8e\\x10\\x01\\x00\\x1a\\x13\\x13\\x1a\\x13`\\x0f\\x05D\\b\\bD\\x05\\x0f'1\\x06\\xbe\\f(\\f\\x05\\n2\\x1f(9\\x01\\x018'\\x1f2\\n\\x05\\a\\x05(\\x05\\a\\xbe\\x061'\\x0f\\x05D\\b\\bD\\x05\\x0fIWWI\\x01 \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x00&\\x002\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x06\\x1d\\x01\\x1754&\\\"\\x06\\x1d\\x01\\x14\\x1626\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x18Y}Z\\x0e\\n \\n\\x0e+\\x1e\\x1d*p\\x17\\\"\\x17\\x17\\\"\\x17\\xc0\\x1c\\x14\\xa0\\x14\\x1c\\x1c\\x14\\xa0\\x14\\x1cf@ZY?\\x10\\n\\x0e\\x0e\\n\\x10\\x1e*+\\x1eg\\x980\\x11\\x17\\x17\\x110\\x11\\x17\\x17\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x91Α\\x91Α\\xac\\x98ll\\x98l\\x83jKKjKf4&&4&\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xe1l\\x98ll\\x98\\xccKjKKju&4&&4\\x00\\x00\\x00\\x03\\x00\\b\\x00x\\x01\\xf8\\x01\\b\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00$\\x14\\x06\\\"&46:\\x02\\x16\\x14\\x06\\\"&4$2\\x16\\x14\\x06\\\"&4\\x01H*<**<t<**<*\\xfe\\xca<**<*\\xde<**<**<**<**<**<\\x00\\x00\\x00\\x03\\x00\\x18\\xff\\xc8\\x00\\xa8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&<\\x0262\\x16\\x14\\x06\\\"\\x02462\\x16\\x14\\x06\\\"B<**<**<**<**<**<\\x01\\b*<**<t<**<*\\xfe\\xca<**<*\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00)\\x00;\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x17265.\\x01'\\\"\\x06\\x1d\\x01\\x143\\x1e\\x01\\x17\\x14;\\x01265.\\x01'\\\"\\x06\\x1d\\x01\\x143\\x1e\\x01\\x17\\x143\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14,(\\x1c\\x1c(\\x1c\\xce\\x04\\a\\x05uS\\x05\\a\\v<U\\x04\\v\\x8a\\x04\\a\\x05\\xb1~\\x05\\a\\vf\\x92\\x04\\v\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x80\\x1c(\\x1c\\x1c(\\x1c\\a\\x05Su\\x05\\a\\x04#\\v\\x04U<\\v\\a\\x05}\\xb2\\x05\\a\\x04#\\v\\x04\\x92f\\v\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x15\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05>\\x014&/\\x01&\\x06\\x1d\\x01\\x14\\x167\\x99Α\\x91Α\\x01l\\x06\\x06\\x06\\x06\\xb0\\f\\x18\\x18\\f\\x01\\xb8\\x91Α\\x91\\xce\\u007f\\x03\\f\\f\\f\\x03k\\a\\x0e\\x0e\\xd0\\x0e\\x0e\\a\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13!2=\\x014#!\\\"\\x1d\\x01\\x14\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14,\\x01\\b\\f\\f\\xfe\\xf8\\f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xf8\\f8\\f\\f8\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x16\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xe1\\xb8\\f\\f\\x16\\f\\v\\x96F\\v\\f\\x16\\f\\fh\\v \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1cb\\xb8\\v\\f\\x16\\f\\f\\x96F\\f\\f\\x16\\f\\vh\\v\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1c\\x00*\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x03\\x0f\\x01\\x14\\x1e\\x013?\\x016/\\x01&7'&\\\"\\x0f\\x01\\x06\\x1f\\x01\\x16?\\x0164\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xb6\\x88\\x06\\x03\\a\\x039\\x88\\x04\\x047\\x05g\\x1e\\a\\x14\\a\\x17\\x04\\x047\\x05\\x04\\x17\\a \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01.\\x889\\x03\\a\\x03\\x06\\x88\\x04\\x048\\x04\\t\\x1e\\a\\a\\x17\\x04\\x057\\x04\\x04\\x17\\a\\x14\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc5\\x00\\x1e\\x00@\\x00\\x00\\x01\\a\\x06&=\\x01\\\"\\x0e\\x02\\x14\\x17\\x16\\x06'.\\x0154>\\x033546\\x1f\\x01\\x16\\x14\\a46\\x17\\x163276\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\a\\x06\\a\\x06+\\x01\\x11!\\x028\\x90\\v\\x1d-?0\\x15\\f\\x04\\x14\\t\\x1f+\\x1c-FJ/\\x1d\\v\\x90\\b\\xc0\\b\\x06\\x05\\x05\\f\\f\\x06\\n\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14y\\t\\x05\\b\\x1e\\x15\\x04\\x053\\x01@\\x01\\x0f\\x88\\v\\f\\x10H\\n\\x17';(\\f\\r\\a\\x18O)*>&\\x16\\tH\\x10\\f\\v\\x88\\a\\x14\\xd1\\x05\\b\\x01\\x01\\x04\\x02\\a\\x06Y\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x12\\x05\\x0f\\x16\\x04\\xfe\\xc0\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1e\\x00\\x00>\\x012\\x16\\x14\\x06\\\"&\\x022\\x16\\x14\\x06\\\"&4\\x056.\\x01\\x0f\\x01\\x06\\x0f\\x01\\x06\\x16?\\x0167\\xd8\\x13\\x1a\\x13\\x13\\x1a\\x13GΑ\\x91Α\\x01v\\x04\\a\\x0e\\t\\x90\\v\\x05B\\x06\\x14\\f\\x90\\v\\x05\\xcd\\x13\\x13\\x1a\\x13\\x13\\x01\\x05\\x91Α\\x91\\xce\\x03\\b\\x10\\x05\\x03B\\x05\\v\\x90\\f\\x14\\x06B\\x05\\v\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05\\x17\\x16?\\x016&+\\x01\\\"\\x06\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x9c|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x005\\x11463!2\\x16\\x15\\x11\\x14\\x06#!\\\"&%'&\\x0f\\x01\\x06\\x16;\\x0126\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01d|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x10\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x13!2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146\\x1376/\\x01&\\x06\\x1d\\x01\\x14\\x160\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\x9c|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01B\\x01\\xa0\\x00E\\x00\\x00%\\x17\\x16\\a\\x06#\\\"&'#\\\"&=\\x014;\\x01&7#\\\"&=\\x014;\\x01>\\x0132\\x17\\x1e\\x02\\x0f\\x01\\x06'&#\\\"\\x06\\a32\\x16\\x0f\\x01\\x06+\\x01\\x06\\x1732\\x16\\x0f\\x01\\x06+\\x01\\x1e\\x033276\\x017\\t\\x02\\v\\x1e\\x1fMp\\x13\\x1e\\x05\\a\\f\\x15\\x01\\x02\\x16\\x05\\a\\f!\\x16oH\\x19\\x1b\\x04\\x05\\x02\\x01\\f\\x03\\v\\x15\\x11(>\\x10\\x8a\\x06\\a\\x01\\x06\\x02\\n\\x93\\x02\\x02\\x86\\x06\\a\\x01\\x06\\x02\\nr\\b\\x18\\x1f&\\x15\\x16\\x17\\f\\\",\\v\\x03\\bVF\\a\\x05\\x1c\\f\\x14\\x16\\a\\x05\\x1e\\f@P\\x05\\x01\\x04\\a\\x03,\\v\\x02\\x04(#\\t\\x06\\x1d\\n\\x13\\x17\\t\\x06\\x1c\\t\\x13 \\x16\\r\\x06\\x02\\x00\\x01\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x006\\x00\\x00%2\\x1d\\x01\\x14#!\\\"=\\x014;\\x015#\\\"=\\x014;\\x0154632\\x17\\x16\\x0f\\x01\\x06'&#\\\"\\x0e\\x04\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x1535463\\x014\\f\\f\\xfe\\xd8\\f\\f$\\x1c\\f\\f\\x1cO=7/\\t\\a\\x1d\\a\\t\\x1e\\x1b\\t\\x11\\x0e\\v\\a\\x04T\\f\\fT{\\a\\x05`\\fh\\f\\f(\\f\\x80\\f(\\fB7G#\\a\\n$\\b\\x06\\x13\\x04\\b\\n\\r\\x0e\\b@\\f(\\f\\u007f3\\x05\\a\\x00\\x00\\x00\\x01\\xff\\xfc\\xff\\xc0\\x01*\\x01\\xc0\\x00A\\x00\\x007\\x1e\\x01\\a\\x0e\\x01\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"'.\\x01?\\x016\\x17\\x16;\\x012654/\\x01.\\x01'&6;\\x01546;\\x012\\x16\\x1d\\x012\\x17\\x1e\\x01\\x0f\\x01\\x06'&+\\x01\\\"\\x06\\x15\\x14\\x16\\x17\\xd1,-\\x10\\f:$\\t\\a \\a\\t0&\\x06\\x02\\x06\\\"\\n\\n\\x0f\\x13B\\r\\x11\\x15g\\\".\\x04\\x04A1\\x02\\t\\a \\a\\t0&\\x06\\x02\\x06\\\"\\n\\n\\x0f\\x13B\\r\\x11\\f\\t\\xd7\\rT-!'\\x010\\a\\t\\t\\a0\\x1e\\x05\\x0e\\x05\\\"\\t\\a\\n\\x11\\r\\x16\\x06\\x1e\\n4\\\"1G0\\a\\t\\t\\a0\\x1e\\x05\\x0e\\x05\\\"\\t\\a\\n\\x11\\r\\t\\x10\\x03\\x00\\x01\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x004\\x00\\x00\\x01#\\x16\\x1732\\x1d\\x01\\x14+\\x01\\x0e\\x01\\a\\x17\\x16\\x06+\\x01\\\"/\\x01&=\\x0146;\\x01267#\\\"=\\x014;\\x01&+\\x01\\\"&=\\x0143!2\\x1d\\x01\\x14\\x014I\\t\\x05;\\f\\f5\\x05L9\\x97\\x06\\x06\\bS\\x05\\x03\\xa5\\x04\\a\\x05T\\x1f'\\x05\\x9f\\f\\f\\x92\\x14)U\\x05\\a\\f\\x01(\\f\\x01`\\x0f\\x11\\f(\\f8F\\x02\\x8b\\x06\\x0f\\x03\\x99\\x03\\x055\\x05\\a \\x1b\\f(\\f\\x1b\\a\\x05-\\f\\f(\\f\\x00\\x01\\x00\\x13\\xff\\xe0\\x01n\\x01\\xa0\\x00:\\x00\\x00\\x012\\x16\\x0f\\x0132\\x1d\\x01\\x14+\\x01\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015'#\\\"=\\x014;\\x01'&6;\\x012\\x1f\\x0236?\\x0163\\x01_\\a\\a\\x03P:\\f\\fX\\x14l\\f\\fl\\f8\\fl\\f\\fl\\x14X\\f\\f:P\\x03\\a\\aA\\b\\x037\\x1b\\x02\\f\\x0f7\\x03\\b\\x01\\xa0\\f\\x06\\x96\\f \\f%\\x1b\\f \\f\\\\\\f\\f\\\\\\f \\f\\x1b%\\f \\f\\x96\\x06\\f\\aqH%#q\\a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00)\\x002\\x00\\x007#\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06+\\x01\\\"=\\x01#\\\"=\\x014;\\x015#\\\"=\\x0146;\\x0154;\\x012\\x16\\x14\\x06'\\x1532654&#\\xef\\\\\\xa1\\f\\f\\xa1\\a\\x05;\\f4\\f\\f44\\f\\a\\x054\\f\\xa3@QQ\\x9cM$((#\\x80 \\f(\\f4\\x05\\a\\f4\\f(\\f \\f-\\x05\\a\\xcf\\fO\\x80Qۖ)#\\\"(\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00E\\x00N\\x00R\\x00Z\\x00d\\x00h\\x00\\x00\\x01#\\a32\\x1d\\x01\\x14+\\x01\\a\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"/\\x01#\\\"=\\x014;\\x01'#\\\"=\\x014;\\x01'&6;\\x012\\x1f\\x01376;\\x012\\x1f\\x01376;\\x012\\x16\\x0f\\x0132\\x1d\\x01\\x14\\x057#\\x1f\\x0132>\\x01?\\x01#\\x17;\\x01'&'#\\x06\\a\\x177#\\x17\\x1e\\x02136?\\x01#\\x17\\x024?\\aF\\f\\fU*\\x02\\n9\\t\\x02+7*\\x02\\n9\\t\\x02)T\\f\\fF\\b>\\f\\f0\\x12\\x01\\a\\x06*\\n\\x02\\x11m\\x14\\x02\\t,\\n\\x02\\x14n\\x0e\\x02\\n.\\x06\\a\\x01\\x130\\f\\xfex\\f&\\v\\x06\\x01\\x01\\x01\\x03\\x1e\\bQ\\x06\\x82\\x1a\\x02\\x03\\x02\\f\\x02\\x03\\x81\\f'\\f\\x03\\x03\\x01\\x01\\x02\\x1e\\aQ\\a\\x01\\x00 \\f(\\f\\xb7\\t\\t\\xb7\\xb7\\t\\t\\xb7\\f(\\f \\f(\\fQ\\x05\\t\\tVV\\t\\tVV\\t\\t\\x05Q\\f(\\f\\x9666/\\f\\x18\\x81  \\t\\v\\f\\f\\v\\u007f66\\v\\x18\\f\\x16\\x8f  \\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x1a\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x17\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0ez\\x06\\x80\\ab\\a\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00)\\x005\\x00>\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x01254+\\x01\\\"\\x1d\\x01\\x14;\\x01257\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8@\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f\\f\\xa8\\f`\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\x8c\\b\\f\\f\\b\\fL\\b\\f\\f\\b\\fT\\f\\f\\b\\f\\fz\\x06\\x80\\ab\\a\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11%2\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01#\\\"&=\\x014637\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\xb0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01 \\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x9f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10`\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0@\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\tU\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x00\\x13\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\x052\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01#\\\"&=\\x014637\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\x10\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x9f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10\\x01 \\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x80\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\tU\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00%\\x005\\x00E\\x00U\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463'2\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x010\\a\\t\\t\\a@\\a\\t\\t\\a@\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x010\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x01\\x00\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a \\t\\a \\a\\t\\t\\a \\a\\t@\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00%\\x005\\x00E\\x00U\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x03\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x010\\a\\t\\t\\a@\\a\\t\\t\\a\\xe0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01p\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x01\\x00\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a \\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x00\\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x04\\xff\\xfd\\xff\\xde\\x01\\xb1\\x01\\xa0\\x00\\x1f\\x005\\x00=\\x00S\\x00\\x00\\x01\\\"&54?\\x016;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015\\x176\\x16\\x1d\\x01\\x14\\x0e\\x01\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14\\a2\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11\\x010\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\n(>\\x13%\\x1e\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05  \\x10\\f\\f\\x10\\f\\x9c\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\t\\a\\x04\\x03 \\t\\t\\ap\\t\\a \\a\\t\\t\\a \\a\\t@\\xa3\\v1'\\v#2\\\"\\r\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\b\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0\\x00\\x04\\xff\\xfd\\xff\\xde\\x01\\xb1\\x01\\xa0\\x00\\x15\\x00\\x1d\\x00=\\x00S\\x00\\x00%6\\x16\\x1d\\x01\\x14\\x0e\\x01\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14'\\\"&54?\\x016;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015'\\x17\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\\"&?\\x0162\\x01J(>\\x13%\\x1e\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05!\\x1f\\x10\\f\\f\\x10\\f\\x1c\\a\\t\\x02\\x10\\x04\\n0\\a\\t\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\xd5P\\b\\b\\v0\\t\\a \\a\\t0\\v\\b\\bP\\x04\\x0e\\xbd\\v1'\\v#2\\\"\\r\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\xf8\\t\\a\\x04\\x03 \\t\\t\\ap\\t\\a \\a\\t\\t\\a \\a\\t@;`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x14\\a`\\x05\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00D\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x16264&\\\"\\x06\\x14\\x01\\x14\\x06\\a32\\x16\\x15\\x14\\a#\\x16\\x06\\a\\x16\\x06\\a\\x16\\a\\x0e\\x02+\\x01\\\"'&#\\\"&=\\x0147>\\x01767632\\x1e\\x02h\\n\\x0e\\x0e\\nP\\n\\x0e\\x0e\\n\\x1e\\x14\\x0e\\x0e\\x14\\x0e\\x01X \\x01e\\x19#\\x13\\x01\\b\\x04\\r\\x06\\n\\f\\x06\\f\\n*!\\x1d\\x030H#\\x11\\x05\\a\\x04\\x145\\x10\\x0e\\v\\x0e\\x14\\v\\x15\\x19\\x0f\\xe0\\x0e\\n\\xf0\\n\\x0e\\x0e\\n\\xf0\\n\\x0e\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\x01y\\x19?\\a#\\x17\\x1e\\x13\\x11.\\x11\\x14)\\x0e\\x1a\\x12\\x0e\\x0e\\x02 \\x10\\a\\x05\\xd6\\x05\\x03\\x15M\\x0f\\x0f,:\\x05\\x0f$\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00F\\x00\\x00\\x1146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&56\\x14\\x16264&\\\"\\x01\\\"'&'.\\x02'&=\\x01463276;\\x012\\x1e\\x02\\x17\\x16\\a\\x1e\\x01\\a\\x1e\\x01\\a3\\x16\\x15\\x14\\x06+\\x01\\x1e\\x01\\x15\\x14\\x0e\\x02\\x0e\\nP\\n\\x0e\\x0e\\nP\\n\\x0e(\\x0e\\x14\\x0e\\x0e\\x14\\x01\\x02\\x14\\x0e\\v\\x0e\\x0e\\x1c\\x1f\\x10\\x04\\a\\x05\\x11#H0\\x03\\x15\\x19$\\x18\\b\\f\\x06\\f\\n\\x06\\r\\x04\\b\\x01\\x13#\\x19e\\x01 \\x0f\\x19\\x15\\x01\\x88\\n\\x0e\\x0e\\n\\xf0\\n\\x0e\\x0e\\n2\\x14\\x0e\\x0e\\x14\\x0e\\xfe\\xe8:,\\x0f\\r(+\\x11\\x03\\x05\\xd6\\x05\\a\\x10 \\x01\\x05\\r\\v\\x12\\x1a\\x0e)\\x14\\x11.\\x11\\x13\\x1e\\x17#\\a?\\x19\\x19$\\x0f\\x05\\x00\\x00\\x02\\x00\\x05\\xff\\xc0\\x00\\xfb\\x01\\xc0\\x00\\a\\x00$\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x13\\x16\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&?\\x01>\\x01;\\x01\\x16732\\x16\\x17e6%%6%\\xb7\\x03\\x0e\\f8\\x0e\\n \\n\\x0e8\\f\\x0e\\x030\\x02\\r\\b\\v%%\\v\\b\\r\\x02\\x01\\xc0%6%%6\\xfe\\xc3\\f\\x12h\\n\\x0e\\x0e\\nh\\x12\\f\\xc0\\a\\v\\x11\\x11\\v\\a\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x00\\xc0\\x01\\xc0\\x00\\a\\x00$\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01\\x167E6%%6%p\\x14\\x1c\\x0e\\n\\x10\\x0e\\n@\\n\\x0e\\x10\\n\\x0e\\x1c\\x14\\v%%\\x01\\xc0%6%%6k\\x1c\\x14\\x88\\n\\x0e\\x88\\n\\x0e\\x0e\\n\\x88\\x0e\\n\\x88\\x14\\x1c\\x11\\x11\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00\\a\\x00/\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x16\\x14\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x01\\x0664&\\\"\\x06\\x14\\x16\\xd8P88P8\\x01V\\n\\n^!\\x03\\x0f\\nd0\\x04\\x16\\x05/d\\n\\x10\\x04!^\\n\\n^!\\x04\\x0f\\vd/\\x05\\x16\\x05/d\\n\\x10\\x04!cKKjKK\\x01 8P88P\\x18\\x05\\x16\\x05/d\\n\\x10\\x04!^\\n\\n^!\\x04\\x0f\\vd/\\x05\\x16\\x05/d\\n\\x10\\x04!^\\n\\n^!\\x04\\x10\\nd\\xbfKjKKjK\\x00\\x00\\x00\\x00\\x01\\x00\\x1b\\xff\\xc0\\x01\\xe8\\x01\\xc0\\x00\\x18\\x00\\x00\\x05\\\".\\x0154632\\x17\\x1e\\x01\\a\\x0e\\x01\\x15\\x14\\x1676\\x16\\a\\x0e\\x02\\x01\\x1bEvE\\x96j\\x18\\x17\\b\\x03\\a/7\\x92]\\b\\b\\x05\\x18>J@EuFj\\x96\\x04\\x02\\x10\\x05\\x1a^6^y\\x12\\x02\\x0f\\x06\\x1e*\\x17\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\t\\x00\\x15\\x00%\\x00\\x003\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14;\\x012=\\x014+\\x01\\\"%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463 \\x01\\xc0\\x13\\r\\xfe\\x80\\r\\x13\\xa0\\fh\\f\\fh\\f\\x01 \\r\\x13\\t\\a\\xfe \\a\\t\\x13\\r\\x01 \\xfe\\xe0\\r\\x13\\x13\\xe1\\b\\f\\f\\b\\f\\xc0\\x13\\r0\\a\\t\\t\\a0\\r\\x13\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc0\\x00?\\x00E\\x00\\x00%\\x14\\x06+\\x01\\x15\\x14\\a\\x17\\x16\\x14\\x06\\\"/\\x01\\x06#54+\\x01\\\"\\x1d\\x01\\\"'\\a\\x06\\\"&4?\\x01&=\\x01#\\\"&546;\\x015'&462\\x1f\\x013762\\x16\\x14\\x0f\\x01\\x1532\\x16\\x002\\x16\\x15#4\\x02\\x00\\x14\\r7\\x0e=\\t\\x13\\x1a\\n6(3\\f\\x18\\f3(6\\n\\x1a\\x13\\t=\\x0e7\\r\\x14\\x13\\r8/\\t\\x13\\x1a\\n6\\xe66\\n\\x1a\\x13\\t/8\\r\\x13\\xfe\\xd3\\\\B\\xe0\\x9f\\r\\x12\\x10 \\x1d<\\n\\x1a\\x13\\t7 \\xf4\\f\\f\\xf4 7\\t\\x13\\x1a\\n<\\x1d \\x10\\x12\\r\\x0e\\x13;.\\n\\x1a\\x13\\t77\\t\\x13\\x1a\\n.;\\x13\\x01\\x13B..\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x05!\\\"&5\\x11463!2\\x16\\x15\\x11\\x14\\x06\\x03\\a\\x06\\x1f\\x01\\x166=\\x014&\\x01\\x90\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xa0|\\b\\b|\\x05\\x0f\\x0f \\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01d|\\b\\b|\\x05\\x06\\b\\xf6\\b\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x044&\\\"\\x06\\x14\\x162\\x99Α\\x91Α\\x01H/B//B\\x01\\xb8\\x91Α\\x91ΈB//B/\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x02\\x01\\xc1\\x00-\\x00C\\x00\\x00%\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01#\\\"&'&54>\\x01\\x17\\x1e\\x01\\x17\\x14\\x0e\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1732\\x16\\x1f\\x0176\\x16'\\x17\\x0e\\x01#\\\"&5467\\x16\\x17\\x0e\\x01\\x15\\x14\\x163267\\x01\\xf0\\x0e\\x03\\x04\\x06A\\f\\x1a\\x06>\\x8c\\f\\x12\\x02 \\x12\\x1f\\x12\\x19#\\x01\\x0e\\x19\\x10\\x05\\x82\\a\\t\\t\\ay\\x05\\x84\\b\\x11\\x049%\\x06\\f\\xb6\\x1a\\x15W5Ig=2\\x04\\x05\\x19\\x1fB.*?\\x06>\\x1c\\x06\\r\\x03!\\x06\\t\\f\\x86\\x10\\v\\xe1\\x04\\x12\\x1e\\x11\\x01\\x01$\\x19\\x10\\x1d\\x12\\x02!\\t\\a \\a\\t \\v\\a{\\x13\\x02\\x04\\x1c7/:gI7Y\\x13\\x1b'\\x0f3\\x1f.B7)\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\x81\\x01\\xa0\\x00:\\x00\\x00%2\\x16\\x15\\x0e\\x01+\\x01\\\"=\\x01\\a\\x06&=\\x014?\\x015\\a\\x06&=\\x014?\\x0154;\\x012\\x1d\\x0176\\x16\\x1d\\x01\\x14\\x0f\\x01\\x1576\\x16\\x1d\\x01\\x14\\x0f\\x01\\x15265463\\x01t\\x05\\a\\x04{eP\\f1\\x06\\t\\t71\\x06\\t\\t7\\f8\\f\\x81\\x06\\t\\t\\x87\\x81\\x06\\t\\t\\x87Fb\\a\\x05\\xc0\\a\\x05dp\\f\\xc1\\v\\x01\\a\\x06)\\n\\x02\\f\\x1e\\v\\x01\\a\\x06)\\n\\x02\\fE\\f\\f3\\x1d\\x01\\a\\x06)\\n\\x02\\x1e\\x1e\\x1d\\x01\\a\\x06)\\n\\x02\\x1e\\x9fMH\\x04\\a\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x003\\x00<\\x00\\x00%\\x16\\x14\\a\\x06#!\\x06\\a3\\x0e\\x04#5#\\x15\\\"&=\\x01\\\"=\\x01435\\\"=\\x01435463\\x15352\\x1e\\x03\\x17#\\x16\\x17!2\\a26&#\\\"\\x1d\\x01\\x14\\x02Q//4E\\xfe\\xe2\\a\\t\\xce(B+*7\\\"\\x10\\x14\\x1c    \\x1c\\x14\\x10\\\"7*+B(\\xce\\t\\a\\x01\\x1eE5\\x0f\\f\\f\\x0f\\b\\xf0\\x164\\x16\\x18\\n\\x06\\b#$#\\x16\\x80\\x80%\\x1b@\\x18(\\x18\\x10\\x18(\\x18@\\x1b%\\x80\\x80\\x16#$#\\b\\x06\\np((\\b@\\b\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00%\\x00=\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x172\\x1e\\x022>\\x0236754&#!\\\"\\x06\\x1d\\x01\\x16\\x05\\x06\\a\\x0e\\x04\\\".\\x03'&'\\x15\\x14\\x163!265\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x82\\x01\\x11\\b\\x0f\\n\\x0f\\b\\x11\\x01J(\\x0e\\n\\xfe\\xf0\\n\\x0e(\\x01\\x18\\x16I\\x01\\x10\\t\\x10\\x0f\\x10\\x0f\\x10\\b\\x11\\x01I\\x16\\x0e\\n\\x01\\x10\\n\\x0e\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xe6\\x0e\\x05\\a\\a\\x05\\x0e5 \\x19\\n\\x0e\\x0e\\n\\x19 \\t\\x115\\x01\\f\\x06\\t\\x04\\x04\\t\\x06\\f\\x015\\x11\\x8e\\n\\x0e\\x0e\\n\\x00\\x00\\x00\\x00\\x03\\x00\\x10\\xff\\xe0\\x01\\xf0\\x01\\xa0\\x00\\x17\\x00%\\x009\\x00\\x00\\x01\\x15\\x14+\\x01\\x15\\x14#!\\\"=\\x01#\\\"=\\x014?\\x0162\\x1f\\x01\\x16\\x032\\x16\\x1d\\x01\\x14#!\\\"=\\x0146373\\x15353\\x15353\\x1532\\x1d\\x01!54;\\x01\\x01\\xf0\\b\\x18\\f\\xfex\\f\\x18\\b\\x05\\xe8\\x01\\x04\\x01\\xe8\\x05\\x18\\n\\x0e\\b\\xfe0\\b\\x0e\\n8@@@@@$\\f\\xfe`\\f$\\x01@\\x10\\b\\f\\f\\f\\f\\b\\x10\\x05\\x02X\\x01\\x01X\\x02\\xfe\\xcb\\x0e\\n\\x10\\b\\b\\x10\\n\\x0e\\xf0\\xc0\\xc0\\xc0\\xc0\\xc0\\f\\x14\\x14\\f\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x81\\x01\\x84\\x00#\\x00.\\x00\\x00\\x01\\x16\\x14\\a\\x05\\x06/\\x01\\x06\\a\\x16\\x15\\x14\\a\\x17\\x16\\x06+\\x01\\\"&?\\x01&54767'&47%6\\x1f\\x017\\x17\\x14\\x06\\\"&57\\x17\\x16\\x02n\\x12\\x12\\xfe\\xe9\\x17\\x17\\xc4\\x13\\x02\\x10\\x0e\\x1a\\x01\\t\\b8\\b\\t\\x01\\x1a\\x0e\\x10\\x01\\x110\\x12\\x12\\x01\\x17\\x17\\x17\\n\\x91\\x0ep\\xa0p\\x0e\\x91!\\x01'\\x06\\\"\\x06U\\b\\b<\\x0e\\x17\\n\\x11\\x10\\ns\\a\\f\\f\\as\\n\\x10\\x12\\t\\x1a\\x15\\x0f\\x06\\\"\\x06U\\b\\b\\xf7,q\\x1b%%\\x1bq,\\n\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\x05\\x00\\x0f\\x00D\\x00N\\x00e\\x00\\x007\\x17#?\\x01\\x16%2\\x16\\x15\\x11\\x14\\x06#!\\x11\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x06\\a&'&\\x0f\\x02\\x06\\x17\\x16\\x17\\x06\\a\\x06\\x1f\\x01\\x16767\\x16\\x17\\x16?\\x016'&'6732%463!\\x11!\\\"&57\\x06\\x1e\\x01;\\x012?\\x013\\x17\\x16;\\x0126/\\x01&+\\x01\\\"\\a\\x98\\v&\\v\\b\\x05\\x01\\xd3\\n\\x0e\\x0e\\n\\xfe\\xe8\\x01\\x00\\f@\\f\\x10\\f@\\f\\fr\\t\\x15\\t\\b\\a\\t\\a\\a\\v\\a\\n\\v\\f\\x0e\\n\\x06\\b\\x06\\v\\x12\\x11\\x10\\x14\\n\\x06\\b\\x06\\n\\r\\r \\v\\v\\f\\xfd\\xb0\\x0e\\n\\x01\\x18\\xfe\\xe8\\n\\x0e;\\x01\\x02\\x06\\x04\\x17\\t\\x03\\t<\\t\\x03\\t\\x17\\x06\\a\\x029\\x03\\t \\t\\x03\\xd4&&!\\x15\\x80\\x0e\\n\\xfe\\xf0\\n\\x0e\\x01@x\\x10\\f\\x10\\f\\f\\x10\\f\\x10\\f\\x15\\x16\\n\\v\\t\\x06\\x04\\x04\\a\\n\\r\\r\\t\\t\\x06\\n\\x0e\\v\\a\\v\\x0e\\r\\f\\a\\v\\x0e\\n\\x06\\b\\n##l\\n\\x0e\\xfe\\xc0\\x0e\\n8\\x04\\a\\x05\\t\\x1f\\x1f\\t\\n\\x06\\xa9\\b\\b\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x00%\\x005\\x00E\\x00U\\x00^\\x00n\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01\\x16\\x15\\x0354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x01#\\\"&=\\x01#\\x15'2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\x01\\xe0\\r\\x13\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\xf3\\r\\t.\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t0\\a\\t\\xa0\\x80\\r\\x13\\x13\\r \\r\\x13\\x13\\r\\x01 \\x13\\r\\xfe\\xe0\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\t.\\t\\r\\xfe\\x9d \\a\\t\\t\\a \\a\\t\\t\\x87 \\a\\t\\t\\a \\a\\t\\ty \\a\\t\\t\\a \\a\\t\\t\\x87 \\a\\t\\t\\a \\a\\t\\tw@\\t\\a0\\x80@\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00)\\x005\\x00=\\x00I\\x00U\\x00a\\x00\\x00\\x052\\x1d\\x01!54;\\x01\\x11463!2\\x16\\x15\\x11\\x01\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x172=\\x014+\\x01\\\"\\x1d\\x01\\x143\\x1754+\\x01\\\"\\x1d\\x01754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\xb4\\f\\xfe@\\f\\x14\\x0e\\n\\x01P\\n\\x0e\\xfe\\xe0\\f(\\f\\f(\\f\\f(\\f\\f(\\f4\\f\\f(\\f\\ft\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f \\f\\x14\\x14\\f\\x01\\xc8\\n\\x0e\\x0e\\n\\xfe8\\x01\\x94(\\f\\f(\\fl(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\xa0T\\f\\fT\\xac(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\a\\x00)\\x00\\x00\\x12462\\x16\\x14\\x06\\\"6\\x16\\x14\\x0f\\x01\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&5\\x11'&462\\x1f\\x01376x*<**<\\xcb\\x13\\t_\\x13\\r\\x10\\r\\x13\\x10\\x13\\r\\x10\\r\\x13_\\t\\x13\\x1a\\nVfV\\n\\x01Z<**<*P\\x13\\x1a\\n^\\xfe\\xf5\\r\\x13\\x13\\rpp\\r\\x13\\x13\\r\\x01\\v^\\n\\x1a\\x13\\tWW\\t\\x00\\x00\\x00\\x05\\xff\\xfb\\xff\\xe0\\x02\\x05\\x01\\xa5\\x00\\x12\\x00\\x1d\\x00(\\x003\\x00?\\x00\\x0062\\x1e\\x01\\x15\\x14\\x06#\\\"&#\\\"\\x06#\\\"&546&\\x16\\x06\\a\\x06.\\x01'&>\\x01\\x16\\x06.\\x01676\\x1e\\x01\\x17\\x16\\x17\\x1e\\x01\\x0e\\x01.\\x017>\\x02\\a.\\x01>\\x01\\x1e\\x01\\a\\x0e\\x03\\xdaL\\\\>&\\\"\\x19L\\x13\\x12M\\x19\\\"&>\\x19\\x10\\x14\\x16\\x0e\\x1e\\x17\\x05\\b\\x14,\\x9e/-\\x12\\x14\\x18\\x0f\\x1f\\x19\\x06\\t\\xee\\x16\\x14\\x10*,\\x14\\b\\x05\\x17\\x1e\\x8e\\x18\\x14\\x12-/\\x14\\t\\x04\\x11\\x15\\x18\\xe0C_&\\x1a\\x1e\\x19\\x19\\x1e\\x1a&_j4-\\x05\\x03\\v\\x19\\x11\\x1a-\\n\\x1d\\f&A7\\x06\\x04\\x0f \\x15!\\x1f\\x05-4\\x1d\\n-\\x1a\\x11\\x19\\v!\\x067A&\\f7!\\x10\\x1b\\x11\\a\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00\\x13\\x00\\x19\\x00\\x1d\\x00\\x00\\x136\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01&=\\x0146?\\x01\\a\\x15\\x1775\\x0375\\a\\xef\\x11\\x11\\xd0\\x0e\\x11\\x1b\\xd0\\x15\\x16\\xd0\\x1a\\x11\\x0e\\xe1\\xc0\\xc0\\xc0\\xa0\\xa0\\xa0\\x01\\xba\\x06\\x06N\\x06\\x18\\x0f\\xe1\\x1e\\rh\\v\\vh\\r\\x1e\\xe1\\x0f\\x18\\x06\\x10H\\x02NN\\x02\\xfe\\xe4P\\x86B\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xdb\\x02\\x00\\x01\\xa3\\x00\\x1d\\x00!\\x00'\\x00+\\x00/\\x003\\x007\\x00\\x00%\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&=\\x014?\\x0154?\\x016\\x1f\\x01\\x16\\x1d\\x01\\a5\\a\\x15'\\x15\\x1775'\\x035\\a\\x157'\\a\\x17\\x055\\a\\x157'\\a\\x17\\x01\\xe9\\x17\\x14d\\x10\\x10hh\\x10\\x10d\\x14\\x17a\\x17d\\r\\rd\\x17\\\"Uwfff\\x12UUfff\\x01VUUfff\\xc6\\t\\x19n\\x16\\n2\\b\\b44\\b\\b2\\n\\x16n\\x19\\t$l\\x19\\t&\\x05\\x05&\\t\\x19l\\x01I$E\\x8f\\x01))\\x01&\\xfe\\xb7K'O\\x9b''*FK'O\\x9b''*\\x00\\x00\\x03\\xff\\xfc\\xff\\xbd\\x02\\x00\\x01\\xc1\\x00\\x1c\\x008\\x00U\\x00\\x007\\x16\\x06/\\x01\\a\\x06\\x16;\\x012\\x1d\\x01\\x14+\\x01\\\".\\x01?\\x01'&6?\\x016\\x16\\x177&\\\"\\x0f\\x01\\x06/\\x01&?\\x0162\\x1f\\x0176\\x16\\x0f\\x01\\x0e\\x01/\\x01.\\x01?\\x01\\x17\\x16\\x14\\x0e\\x01+\\x01\\x15\\x14\\x06/\\x01&?\\x016\\x16\\x1d\\x01326/\\x01&?\\x016\\x17\\xb9\\x02\\x12\\t(3\\n\\x12\\x134\\f\\f4$6\\t\\x123)\\t\\x03\\vn\\x06\\f\\x01|\\t$\\t\\x12\\x06\\v\\\"\\n\\a\\x12\\x1cj\\x1c*(\\t\\x12\\x03\\x19\\x02\\v\\x06n\\v\\x03\\t(\\xad\\x0f\\x18-\\x1b`\\x14\\aP\\f\\fP\\a\\x14`\\x13\\x12\\n\\x1b\\a\\n\\\"\\n\\a\\xba\\n\\r\\x06\\x19Q\\x10!\\f(\\f0A\\\"Q\\x1a\\x05\\x15\\x03\\x19\\x02\\a\\aI\\x0f\\x0f\\x1d\\n\\x06\\x16\\x06\\n\\x1d--B\\x19\\x06\\r\\nn\\a\\a\\x02\\x19\\x03\\x15\\x05\\x1a\\x9c\\x175+\\x1c0\\v\\b\\bP\\v\\vP\\b\\b\\v0!\\x10,\\n\\a\\x15\\x06\\n\\x00\\x04\\xff\\xfe\\x00\\x00\\x02\\x02\\x01\\x80\\x007\\x00A\\x00P\\x00a\\x00\\x00\\x012\\x16\\x0f\\x01\\x06+\\x01\\x16\\x1d\\x01\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&=\\x0147#\\\"/\\x01&6;\\x017>\\x03;\\x012\\x16\\x1f\\x01%\\a!'.\\x01+\\x01\\\"\\x06\\a:\\x02>\\x0354&\\\"\\x06\\x14\\x16!264&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x03:\\x01\\x01\\xf4\\x06\\a\\x01\\x06\\x03\\t\\x14\\x16\\x10\\x13\\r \\r\\x13\\xff\\x00\\x13\\r \\r\\x13\\x10\\x16\\x14\\t\\x03\\x06\\x01\\a\\x06<\\x11\\x06\\x15\\x1b \\x11\\x80\\\"9\\f\\x11\\xfe\\xdc\\x14\\x01\\x00\\x14\\x05\\x19\\x0e\\x80\\x0e\\x199\\x02\\r\\x06\\v\\x06\\a\\x03\\\"\\x1c\\x12\\x12\\x01N\\x0e\\x12\\x12\\x0e\\t\\x17\\x10\\x03\\a\\x06\\v\\x06\\r\\x01\\x10\\t\\x06\\x18\\t\\x13\\x1d0\\x18\\x126\\r\\x13\\x13\\r  \\r\\x13\\x13\\r6\\x12\\x180\\x1d\\x13\\t\\x18\\x06\\t*\\x0f\\x1b\\x12\\n& *\\x1222\\r\\x11\\x11\\xaf\\x01\\x02\\x03\\x06\\x04\\x0f!\\x12\\x1c\\x12\\x12\\x1c\\x12\\x10\\x17\\t\\x04\\x06\\x03\\x02\\x01\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x001\\x009\\x00B\\x00J\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&=\\x0146?\\x01>\\x01;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x17\\x04264&\\\"\\x06\\x147!'.\\x01+\\x01\\\"\\a\\x04264&\\\"\\x06\\x14\\x01\\xce\\x16\\x1c \\x13\\r \\r\\x13\\xff\\x00\\x13\\r \\r\\x13 \\x1c\\x16\\x16\\a+\\x1b\\v\\x13\\r\\x80\\r\\x13\\v\\x1b+\\a\\xfe\\x9b\\x1a\\x13\\x13\\x1a\\x135\\x01\\x16\\x11\\x01\\n\\x04\\xd6\\f\\x03\\x01\\r\\x1a\\x13\\x13\\x1a\\x13\\xce\\x04#\\x170$\\x13)\\r\\x13\\x13\\r  \\r\\x13\\x13\\r)\\x12%0\\x17#\\x04U\\x1b\\\" \\r\\x13\\x13\\r \\\"\\x1b\\xc3\\x13\\x1a\\x13\\x13\\x1a]C\\x05\\b\\x0e\\xb2\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x01\\xff\\xfb\\xff\\xbf\\x01\\x85\\x01\\xc1\\x00/\\x00\\x00%\\x16\\x06+\\x01\\x15\\x17\\x16\\x06+\\x01\\\"&?\\x015#\\\"&?\\x01#\\\"&?\\x01#\\\"'&?\\x01>\\x012\\x16\\x1f\\x01\\x16\\a\\x06+\\x01\\x17\\x16\\x06+\\x01\\x01z\\n\\f\\x0f\\x89\\x1e\\x04\\t\\t`\\t\\t\\x04\\x1e\\x89\\x0f\\f\\nP\\x1f\\x0f\\f\\tO\\x1d\\x0f\\x06\\x06\\nn\\x03\\x06\\x06\\x06\\x03n\\n\\x06\\x06\\x0f\\x1dO\\t\\f\\x0f\\x1fF\\v\\x1b\\x181\\b\\x0f\\x0f\\b1\\x18\\x1b\\vZ\\x1a\\v[\\x0e\\r\\vu\\x03\\x02\\x02\\x03u\\v\\r\\x0e[\\v\\x1a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x19\\x00#\\x00\\x00\\x01\\x15\\x14\\x06#\\\".\\x01=\\x014632\\x1e\\x01\\x1d\\x01\\x14\\x06\\\"&=\\x01\\x16 \\x17\\x15\\x14\\x06\\\"&=\\x01\\x16 \\x01\\xc0\\x83]=g<\\x83]=g<\\x83\\xba\\x83G\\x012G\\x83\\xba\\x83G\\x012\\x01w.\\x1e+\\x14!\\x14.\\x1e+\\x14!{g\\x1e++\\x1eg1og\\x1e++\\x1eg1\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x06\\x00\\f\\x00\\x14\\x00&\\x00B\\x00K\\x00O\\x00\\x007.\\x01432\\x14\\a\\x16\\x17\\x06\\a6\\a67\\x0e\\x04\\x133\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\x17&'6'.\\x01\\x06\\a\\x06\\x17\\x06\\a\\x0e\\x01\\x17\\x1632767\\x16326'&7\\x16\\x1d\\x01#532\\x17\\x13\\x06'6\\xb6\\x02\\x02\\x02\\x06\\x06\\x0e\\x15\\f3\\rO\\x04\\x1f\\x06\\f\\b\\x06\\x03\\xa2\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0e\\x02\\x1d\\x0e\\f\\x05\\x03\\x15\\x16\\x02\\x06\\x0e\\x17\\x12\\x1d&\\f\\b\\x0e\\x19$>\\x11$\\x1c\\x14\\n\\n\\x10O\\a\\x80\\x06\\n\\a\\x18\\x06%+\\xc0\\a\\x17\\x11(6\\x1a\\x0f\\x02\\x14\\x18V\\v\\x1d\\n\\x0f\\t\\x05\\x01\\x01\\f\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\xac\\x12$/\\x11\\x0e\\v\\b\\n\\x1676 \\x0e&\\x10\\n>\\x14\\x03\\x13\\\"\\t\\x0f\\xdb\\a\\n\\x06\\x80\\a\\xfe\\x9f\\a\\x10\\x01\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00<\\x00E\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x13\\\"\\a\\x06\\x15&'&+\\x01\\\"\\a\\x06\\a&'&+\\x01\\\"\\x06\\x1f\\x01\\x16;\\x0127673\\x16\\x17\\x16;\\x012?\\x016.\\x01#7\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc89\\n\\x01\\x16\\x02\\x1c\\x02\\t\\x1d\\n\\x02\\x1c\\x02\\x01\\x13\\x02\\n\\x19\\x06\\a\\x02%\\x02\\n%\\t\\x03\\x18\\x01\\x01\\x04\\x15\\x03\\t&\\n\\x02&\\x01\\x03\\x06\\x04O\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xff\\x00\\ne\\x1c\\x0fs\\t\\ts\\b\\x1b_\\n\\t\\x06\\xa8\\t\\tc\\f\\x17X\\t\\t\\xa8\\x04\\a\\x04\\x86\\x06\\x80\\ab\\a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x004\\x00=\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x176&+\\x01\\\"\\x0f\\x014'&+\\x01\\\"\\x06\\x1f\\x01\\a\\x06\\x16;\\x012767\\x16\\x17\\x16;\\x0126/\\x017\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8<\\x04\\a\\a#\\a\\x03%%\\x03\\a#\\a\\a\\x04<<\\x04\\a\\a#\\a\\x03\\\"\\x03\\x11\\x13\\x04\\a#\\a\\a\\x04<\\xa0\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xf2\\x06\\f\\x06E\\x01D\\x06\\r\\x06]^\\x06\\f\\x06=\\b!$\\x06\\f\\x06^\\xd6\\x06\\x80\\ab\\a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\a\\x00\\x10\\x00\\\"\\x00=\\x00\\x0072\\x16\\x14\\x06+\\x0157\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x134&+\\x01\\\"\\x0e\\x02\\x1d\\x01\\x14\\x16;\\x0126=\\x01:\\x02>\\x04\\xc2\\r\\x0e\\x0f\\r\\x1b\\xd3\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc85(!Q\\x02\\x05\\x03\\x02\\a\\x05\\x1f\\x05\\a\\x01\\x14\\f\\x17\\x10\\x13\\f\\b\\xb1\\x11\\x1b\\x11=\\xa6\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xd3!,\\x02\\x03\\x05\\x02\\xc8\\x05\\a\\a\\x059\\x02\\x06\\v\\x11\\x19\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x00\\\"\\x00-\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\a3\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\x06\\\"\\x06\\x14\\x16264\\x175'&\\x0f\\x01'&\\x0f\\x01\\x15\\x01\\x80\\x80\\x06\\n\\ab\\a\\x88\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0ej'\\x1c\\x1c'\\x1d\\xa0(\\b\\tg(\\b\\b(\\x01F\\x06\\x80\\ab\\a0\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\x10\\x1c(\\x1c\\x1c(\\xd4p(\\b\\bh(\\b\\b(0\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x14\\x00*\\x00.\\x00O\\x00\\x00\\x01\\x16\\x1d\\x01#532\\x17\\x022\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15353\\a\\x1535\\x0226/\\x01&+\\x01535#535#535#\\x15#\\x153\\x15#\\x153\\x15#\\x15\\a\\x06\\x01y\\a\\x80\\x06\\n\\a\\x9f\\x11\\x0f\\t\\x13\\x1b\\x13\\tw\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nh @\\x80 \\x192\\x1f\\x04\\x12\\x02\\n\\x16           \\x13\\x05\\x01W\\a\\n\\x06\\x80\\a\\xfe\\xb7\\a\\r\\a\\v\\x10\\x10\\v\\a\\r\\xcf\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e     \\xfe\\x80&\\x19W\\n            a\\x18\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00!\\x00/\\x00=\\x00F\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x0354&\\x0f\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x17\\x1667\\x06\\x1e\\x01764'&\\x0e\\x01\\x17\\x16\\x147&\\x0e\\x01\\x17\\x16\\x14\\a\\x06\\x1e\\x017647\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8@\\x0f\\x05$\\x1c\\f\\f\\x1c$\\x05\\x0f!\\n\\t\\x18\\f\\x14\\x14\\v\\x1a\\a\\t\\aO\\n\\x1b\\x06\\t\\x1b\\x1b\\v\\n\\x18\\v)@\\x80\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfel\\x88\\b\\x06\\x06$\\f8\\f$\\x06\\x068\\v\\x1a\\x06\\t\\x15;\\x14\\v\\b\\x18\\f\\a\\x13n\\n\\b\\x18\\f\\x1cN\\x1c\\v\\x1a\\x05\\t*u\\x9f\\x06\\x80\\ab\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x004\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x134&\\x0f\\x0154&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x01\\x17\\x1665\\x01\\x80\\x80\\x06\\n\\ab\\a\\xa0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8`\\x1e\\v7\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e7\\v\\x1e\\x01F\\x06\\x80\\ab\\a\\x18\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xe8\\x10\\f\\v7&\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\n&7\\v\\f\\x10\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x003\\x00G\\x00`\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\a3\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\a7654/\\x017654/\\x01&#\\\"\\x0f\\x01\\x06\\x14\\x1f\\x01\\x1632\\x17032?\\x01454/\\x010#\\\"\\x0f\\x01\\x14\\x15\\x14\\x17764/\\x01&#\\\"\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x1f\\x01\\x16327\\x01\\x80\\x80\\x06\\n\\ab\\a\\x88\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0es\\x14\\x01\\x02((\\x02\\x01\\x14\\x01\\x03\\x02\\x01A\\x02\\x02A\\x01\\x02\\x035\\x01\\x04\\x01>\\x04\\x1c\\x01\\x04\\x01>\\x04\\xbc\\x02\\x02A\\x01\\x02\\x03\\x01\\x14\\x01\\x02((\\x02\\x01\\x14\\x01\\x03\\x02\\x01\\x01F\\x06\\x80\\ab\\a0\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\xf1\\x15\\x02\\x02\\x03\\x01$$\\x01\\x03\\x02\\x02\\x15\\x01\\x01=\\x02\\x04\\x02=\\x011\\x04\\xd3\\x01\\x01\\x04\\x01\\b\\x04\\xd3\\x01\\x01\\x04\\x01g\\x02\\x04\\x02=\\x01\\x01\\x15\\x02\\x02\\x03\\x01$$\\x01\\x03\\x02\\x02\\x15\\x01\\x01\\x00\\x06\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\r\\x00\\x15\\x00\\x1b\\x00!\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%&'\\a\\x16\\x17\\x06264&\\\"\\x06\\x14'\\x06\\a\\x1767\\a\\x16\\x177&'\\x1767'\\x06\\a\\x99Α\\x91Α\\x01\\xa6\\x14\\x1a?\\x1c\\x11\\x96P88P8 \\x1a\\x14@\\x11\\x1cm\\x14\\x1a?\\x1c\\x11\\xee\\x1a\\x14@\\x11\\x1c\\x01\\xb8\\x91Α\\x91\\xce\\x19\\x1a\\x14@\\x11\\x1c\\xa18P88P\\xd6\\x14\\x1a?\\x1c\\x11\\xee\\x1a\\x14@\\x11\\x1cm\\x14\\x1a?\\x1c\\x11\\x00\\x00\\x00\\x01\\x00\\a\\xff\\xc7\\x01\\xf8\\x01\\xb4\\x00#\\x00\\x00\\x0146\\x17\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"&'4676\\x16\\x1d\\x01\\x14\\a\\x0e\\x01\\x15\\x14\\x162654&'&5\\x01 \\x12\\fQiBrCg\\x91\\x01iQ\\v\\x13\\x12:Ll\\x98lL:\\x12\\x01\\x99\\f\\x0e\\x03\\x15\\x85VCrC\\x90gV\\x86\\x15\\x03\\x0e\\f\\x11\\x12\\x05\\x10b?LllL?b\\x10\\x05\\x12\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xbb\\x02\\x03\\x01\\xc5\\x00\\x16\\x00\\x00\\x016\\x16\\a\\x03\\x0e\\x01/\\x01\\a\\x06&=\\x01\\x136&\\a\\x05'.\\x017\\x01\\xdc\\r\\x19\\x02H\\x02\\x15\\n}@\\n \\xf1\\x03\\b\\x04\\xfe\\xe1j\\x0e\\x02\\r\\x01\\xbd\\a\\x11\\x0f\\xfeP\\v\\f\\x054M\\r\\v\\x11Q\\x01%\\x05\\a\\x03\\xfd,\\x06\\x1e\\a\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc7\\x01\\xf9\\x01\\xb8\\x00%\\x007\\x00\\x00\\x00\\x14\\x06#\\\"'.\\x01?\\x01>\\x01\\x17\\x163264&#\\\"\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x01632\\x03\\x0e\\x01/\\x01546;\\x012\\x16\\x1d\\x01\\x17\\x1e\\x01\\a\\x01\\xf8\\x91gXD\\b\\x01\\b\\v\\x06\\x13\\a2@LllLI53\\a\\b\\v\\x91\\a\\t\\x14\\a2Hcg$\\x06\\x14\\bA\\x0e\\n\\x10\\n\\x0e)\\b\\x02\\x06\\x01'͒7\\a\\x15\\b\\v\\x06\\x01\\x05(l\\x98l23\\a\\x14\\t\\a\\x91\\v\\b\\a2E\\xfe\\xba\\b\\x03\\x063\\x88\\n\\x0e\\x0e\\nh \\x06\\x14\\b\\x00\\x01\\x00\\x10\\xff\\xe0\\x01\\xf0\\x01\\xa0\\x00K\\x00\\x00\\x01\\x1132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x11#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1535#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01\\xc0 \\a\\t\\t\\a\\xa0\\a\\t\\t\\a \\xc0 \\a\\t\\t\\a\\xa0\\a\\t\\t\\a  \\a\\t\\t\\a\\xa0\\a\\t\\t\\a \\xc0 \\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\x01`\\xfe\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x01\\x00 \\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00!\\x00\\x00\\x01\\x15\\x14\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\\"&46;\\x012\\x16\\x01\\xc0\\t\\a0\\t\\a \\a\\t \\t\\a \\a\\t B^^B\\xf0\\a\\t\\x01\\x90 \\a\\t\\xfe\\x90\\a\\t\\t\\a\\x01p\\xfe\\x90\\a\\t\\t\\ap^\\x84^\\t\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00#\\x00G\\x00k\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\\"&=\\x01463!546;\\x012\\x16\\x1d\\x0172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x01\\xf0\\a\\t\\t\\a\\xfe\\xb0\\t\\a \\a\\tP\\a\\t\\t\\aP\\t\\a \\a\\t\\x01P\\a\\t\\t\\aP\\t\\a \\a\\t\\xfe\\xb0\\a\\t\\t\\a\\x01P\\t\\a \\a\\tP\\a\\t\\t\\a\\xd0\\t\\a \\a\\t\\xd0\\a\\t\\t\\a\\xd0\\t\\a \\a\\t@\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\t\\a \\a\\t\\x10\\a\\t\\t\\a\\x10\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00%\\x00\\x00%2\\x16\\x14\\x06\\\"&547'\\x06#\\\"&4632\\x177&5462\\x16\\x14\\x06#\\\"'\\a\\x16\\x14\\a\\x176\\x01`(88P8\\x02f\\x1a\\\"(88(\\\"\\x1af\\x028P88(\\\"\\x1af\\x02\\x02f\\x1a\\x808P88(\\v\\n@\\x158P8\\x15@\\n\\v(88P8\\x15@\\n\\x16\\n@\\x15\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x005\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a\\\"\\a'64'7\\x163264&\\\"\\x06\\x15\\x14\\x17\\a&#\\\"\\x06\\x14\\x16327\\x17\\x06\\x15\\x14\\x16264&\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x90\\x16\\x10D\\x02\\x02D\\x10\\x16\\x17!!.!\\x02D\\x10\\x16\\x17!!\\x17\\x16\\x10D\\x02!.!!\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xec\\x0f)\\a\\x0e\\a)\\x0f!.!!\\x17\\a\\a)\\x0f!.!\\x0f)\\a\\a\\x17!!.!\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00O\\x00\\x00\\x01\\a\\x17\\x16\\x14\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&4632\\x17762\\x1f\\x01?\\x012\\x14+\\x01\\\"43&2\\x1d\\x01\\x14\\\"=\\x01\\x17\\x06&?\\x016\\x16\\x0f\\x01'&6\\x1f\\x01\\x16\\x06\\x1f\\x01\\x16\\x06/\\x01&6\\x05463264&#\\\"\\x06\\x15\\x14\\x1626\\x01\\xb84\\x1b\\a\\a\\x11\\x12z\\xaczzV-)\\x11\\a\\x14\\a\\x1a4M\\f\\f\\x18\\f\\f0\\x18\\x18.\\b\\x12\\t\\x11\\b\\x11\\bU\\x11\\b\\x11\\b\\x11\\t\\x11;\\x11\\b\\x11\\b\\x11\\t\\x11\\xfe\\x9f&\\x1a\\a\\t\\t\\a(8\\t\\x0e\\t\\x01h4\\x1b\\a\\x14\\a\\x11)-Vzz\\xacz\\x12\\x11\\a\\a\\x1b4\\f\\x18\\x18<\\f\\x18\\f\\f\\x18+\\t\\x12\\b\\x11\\t\\x12\\b\\x11\\x11\\b\\x12\\t\\x11\\b\\x12\\x19\\x11\\t\\x11\\t\\x11\\b\\x12\\xc0\\x1a&\\t\\x0e\\t8(\\a\\t\\t\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00%\\x00*\\x00\\x00\\x00\\x14\\x06\\\"&462\\x17\\a'7\\x17&'\\x17\\a'7\\x06\\a7\\x17\\a'\\x14\\x177\\x1f\\x01\\a\\x167'?\\x01\\x176\\a'7\\x17\\a\\x01\\xf8\\x91Α\\x91\\xcea\\x1a?\\x11\\\"'>\\x0eKK\\x0e>'#\\x10?\\x1a&\\bU%\\x1e>>\\x1e%U\\b&\\xf8\\x1eNN\\x1e\\x01'Α\\x91Α\\xf8\\x16:T\\x036\\x13\\x1f**\\x1f\\x136\\x03T:\\x16B4\\\"\\vM\\x12\\x14\\x14\\x12M\\v\\\"4\\x04\\\\88\\\\\\x00\\r\\x00\\x00\\xff\\xc0\\x02\\x05\\x01\\xcd\\x00!\\x00-\\x009\\x00E\\x00Q\\x00]\\x00i\\x00u\\x00\\x81\\x00\\x8d\\x00\\x99\\x00\\xa5\\x00\\xb1\\x00\\x00\\x13>\\x01\\x16\\x17\\x16\\x0f\\x01\\x06#\\\"/\\x01&5417&\\a\\x170\\x15\\x14\\x0f\\x01\\x06#\\\"/\\x01&54\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05D\\xb7\\xb7D\\n\\b+\\x05\\v\\x03\\x03W\\v\\x06``\\x06\\vW\\x03\\x03\\v\\x05+\\x03`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xfe\\xb0\\f(\\f\\f(\\f\\x01 \\f\\xe8\\f\\f\\xe8\\f`\\f(\\f\\f(\\f\\x01XD11D\\n\\rE\\b\\x01#\\x04\\r\\x01<##<\\x01\\r\\x04#\\x01\\bE\\x05\\x05\\b\\xc7\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x88\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x88\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\t\\x00\\x1e\\x003\\x00=\\x00A\\x00\\x00\\x01\\x15#546;\\x012\\x16\\x0546;\\x01\\x15#\\x15\\x14\\x06+\\x01\\\"&=\\x01>\\x04%\\x1e\\x03\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x01#532\\x1e\\x01%2\\x16\\x1d\\x01#5463\\x1353\\x15\\x01\\xa0`\\t\\a@\\a\\t\\xfe\\xa0\\x13\\r` \\x13\\r`\\r\\x13\\x01\\r\\x12\\x12\\r\\x01\\x81\\x01\\x13\\x17\\x14\\x01\\x13\\r`\\r\\x13 `\\t\\x0e\\t\\xfe\\xf0\\a\\t`\\t\\ap@\\x01\\x9000\\a\\t\\tw\\r\\x13\\xa0\\xa0\\r\\x13\\x13\\r,$;)%-\\x1a\\x1f9)G,,\\r\\x13\\x13\\r\\xa0\\xa0\\t\\x0ew\\t\\a00\\a\\t\\xff\\x00\\xa0\\xa0\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\a\\x00#\\x00+\\x00\\x00\\x01\\x15#5462\\x16\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06\\a\\x15#5.\\x01=\\x01#\\\"&=\\x014637\\x15#5462\\x16\\x01@@\\x13\\x1a\\x130\\a\\t\\t\\a\\x10K5@5K\\x10\\a\\t\\t\\ap@\\x13\\x1a\\x13\\x01\\xa0``\\r\\x13\\x13\\x8d\\t\\a \\a\\t 6\\\\\\vcc\\v\\\\6 \\t\\a \\a\\t\\x80``\\r\\x13\\x13\\x00\\x00\\a\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x14\\x00\\x1a\\x00&\\x002\\x00>\\x00J\\x00V\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x015463\\x022=\\x01#\\x1572=\\x014+\\x01\\\"\\x1d\\x01\\x143!2=\\x014+\\x01\\\"\\x1d\\x01\\x143'2=\\x014+\\x01\\\"\\x1d\\x01\\x143!2=\\x014+\\x01\\\"\\x1d\\x01\\x14372=\\x014#!\\\"\\x1d\\x01\\x143\\x02(\\n\\x0e\\x1c\\x14\\xfe(\\x17!\\x0e\\n(\\x0e\\n(\\x10\\x10\\xf4\\f\\f\\x98\\f\\f\\x01h\\f\\f\\x98\\f\\f8\\f\\f\\x98\\f\\f\\x01h\\f\\f\\x98\\f\\f\\x98\\f\\f\\xfe\\x98\\f\\f\\x01\\x80\\x0e\\n\\xfe\\xc8\\x14\\x1c!\\x17\\x01\\x10\\n\\x0e\\b\\n\\x0e\\xfe\\xb0\\b\\xf8\\xf8\\b\\f\\b\\f\\f\\b\\f\\f\\b\\f\\f\\b\\f`\\f\\b\\f\\f\\b\\f\\f\\b\\f\\f\\b\\f`\\f(\\f\\f(\\f\\x00\\x00\\x03\\xff\\xff\\xff\\xe0\\x02\\x81\\x01\\xaf\\x00\\x12\\x00\\x1a\\x00,\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06'& \\a\\x06/\\x01&47>\\x01\\x16\\x022\\x16\\x14\\x06\\\"&4%\\x16\\x14\\x0f\\x01\\x06'&\\\"\\a\\x06/\\x01&4762\\x02{\\x05\\x05\\\"\\v\\vn\\xfe\\xd6n\\v\\v\\\"\\x05\\x05W\\xe4\\xe4\\xff6%%6%\\x01\\v\\x05\\x05\\\"\\v\\v?\\xa8?\\v\\v\\\"\\x05\\x05W\\xe8\\x01%\\x04\\x0e\\x05\\\"\\v\\vdd\\v\\v\\\"\\x05\\x0e\\x04Q99\\xfe\\xea%6%%6y\\x05\\x0e\\x05\\\"\\n\\n66\\n\\n\\\"\\x05\\x0e\\x05L\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1154&#!\\\"\\x06\\x1d\\x01\\x14\\x163!26\\x01\\x90\\x13\\x1d\\x1d\\x13\\xfe\\xa0\\x13\\x1d\\x1d\\x13P\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05\\xfe\\xda\\x05\\b\\b\\x05\\x01&\\x05\\b\\x01\\xc0\\x1d\\x13\\xfe`\\x13\\x1d\\x1d\\x13\\x01\\xa0\\x13\\x1d\\xfeM&\\x05\\b\\b\\x05&\\x05\\b\\b\\x85&\\x05\\b\\b\\x05&\\x05\\b\\b{&\\x05\\b\\b\\x05&\\x05\\b\\b\\x85&\\x05\\b\\b\\x05&\\x05\\b\\b{\\xa6\\x05\\b\\b\\x05\\xa6\\x05\\b\\b\\x01\\x05f\\x05\\b\\b\\x05f\\x05\\b\\b\\x00\\x00\\x03\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00#\\x00/\\x007\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01675462\\x16\\x1d\\x01\\x1e\\x01\\x15\\x14\\x1e\\x01\\x17\\x16\\x17\\x16\\x15\\x14\\x061%\\x17#\\\".\\x01547>\\x02\\x17\\\"&53\\x14\\x0e\\x01\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\x91%=\\x13\\x1a\\x138H\\x14\\x11\\x0f\\x02\\x01\\t\\x01\\xfe~\\xd5\\xf2\\t\\x0f\\b\\t\\x0e\\f\\x16\\xa7\\x1a&\\x80\\x11\\x1e\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\tp1\\r\\x15\\r\\x13\\x13\\r\\x15\\vV:,C\\x18\\x0f\\x03\\x01\\n\\f\\x01\\x03\\x88\\xa4\\t\\x0f\\b\\f\\n\\x0f\\x0e2\\xe5%\\x1b\\x11\\x1e\\x11\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00!\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x01\\x01\\x03!\\x03\\x0e\\x01+\\x01\\\"&\\x01\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\xfe\\xfd\\x15\\x01\\x80\\x15\\x01\\x1c\\x13\\xf6\\x13\\x1c\\x01\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\xfeM\\x01S\\xfe\\xad\\x13\\x1a\\x1a\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x008\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05654/\\x01.\\x01\\a\\x0e\\x04#\\\"&54632\\x17\\x166?\\x01654'.\\x06#\\\"\\x06\\x15\\x14\\x1e\\x0132>\\x01\\x99Α\\x91Α\\x01m\\x03\\x02\\x19\\x03\\f\\x03\\x01\\x05\\r\\x0e\\x16\\v#'(\\\"$\\x1a\\x04\\v\\x03\\x16\\x02\\x03\\x01\\x03\\v\\v\\x12\\x14\\x1a\\r>R$C) 8\\x11\\x01\\xb8\\x91Α\\x91\\xce\\xca\\x04\\x04\\x04\\x03\\\"\\x04\\x01\\x04\\x01\\x05\\t\\b\\x060 !+\\x18\\x04\\x02\\x04#\\x03\\x03\\x05\\x04\\x01\\x03\\b\\a\\t\\x06\\x04R=)B&\\x18\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00:\\x00F\\x00\\x00\\x012\\x16\\x15\\x14\\x06#\\\".\\x02'\\x0e\\x01#\\\"&54632\\x176;\\x012\\x16\\x0f\\x01\\x06\\x16\\x17>\\x0154&#\\\"\\x06\\x14\\x163276\\x16\\x1f\\x01\\x16\\x06\\a\\x06#\\\"&46\\x132654&#\\\"\\x06\\x15\\x14\\x16\\x01\\x00j\\x8eJL\\x0f\\x10\\x17\\x0e\\x03\\r*\\x14,4Q9*\\x12\\x01\\f-\\f\\x0e\\x02\\x18\\x03\\x05\\f\\x1a jNLllL6-\\b\\x12\\x06\\n\\a\\x04\\t=Jg\\x91\\x91Q\\x15%\\x12\\x11\\x17$\\x14\\x01\\xb8|d?T\\x01\\x06\\x0f\\f\\x11\\x1691BV\\x16\\f\\x11\\fy\\r\\x10\\x01\\x032\\x1fJVl\\x98l\\x1d\\x05\\x03\\a\\f\\t\\x15\\x06(\\x91Α\\xfe\\xd0)\\x1f\\x13\\x16) \\x13\\x15\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00\\v\\x00#\\x00\\x00?\\x01\\x17\\a\\x06+\\x01\\a'754\\x00\\x16\\x14\\x0f\\x01\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01763~\\x80~\\x13\\x1b-8  \\x01\\xa88\\x1cM\\r\\a\\a)\\a\\x14\\a\\xa2\\a\\a)\\a\\x14\\a\\rM\\x1cs~\\x80~\\x13  8-\\x1b\\x01`8P\\x1cM\\r\\a\\x14\\a)\\a\\a\\xa2\\a\\x14\\a)\\a\\a\\rM\\x1c\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x13\\x00,\\x00\\x007\\x170\\x16\\x15\\x14\\x06#\\\"&5\\x1e\\x043276\\x012\\x16\\x15\\x14\\a\\x0e\\x01#\\\"/\\x01&54>\\a76\\xa7X\\x01F:@@\\x02\\f\\r\\x0e\\v\\x03\\v\\x04\\x1a\\x01j\\x16 \\x0eUP.\\n\\f@\\t\\x01\\b\\b\\x14\\x14'%?\\x1e\\x12\\x8bJ\\a\\x028@XC\\x02\\t\\t\\t\\x06\\nD\\x01:\\x1c\\x16\\x13\\x1b\\x9fa\\x035\\x13\\x14\\t\\x0e\\x10\\f\\x17\\x12#\\x1f8\\x1b\\x10\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00#\\x004\\x00?\\x00J\\x00U\\x00\\x00%\\\"&\\\"\\x06\\\"&#\\\"\\x06#\\\"&\\\"\\x06#546;\\x0153\\x15353\\x15353\\x1532\\x16\\x1d\\x01!5262\\x16262\\x162632\\x163\\x01\\\"&54652\\x16\\x14\\x063\\\"&54652\\x16\\x14\\x063\\\"&54652\\x16\\x14\\x06\\x01\\xc0\\f'/'\\x18'\\x18\\x17(\\v\\r'/'\\f\\x1c\\x14\\x10@@@@@\\x10\\x14\\x1c\\xfe@\\x18'\\x18'/'\\x18'/'\\r\\v'\\x18\\xfe\\xa0\\r\\x13 \\n\\x16\\x12r\\r\\x13 \\n\\x16\\x12r\\r\\x13 \\n\\x16\\x12@      P\\x14\\x1c\\x90\\x90\\x90\\x90\\x90\\x90\\x1c\\x14\\xd0`      \\x01@\\x13\\r\\x0e\\x1c\\x16%&\\x15\\x13\\r\\x0e\\x1c\\x16%&\\x15\\x13\\r\\x0e\\x1c\\x16%&\\x15\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00\\x00%2\\x1d\\x01\\x14#!\\\"5\\x114;\\x012\\x15\\x11%6\\x16\\x1f\\x01!57>\\x01\\x1f\\x01\\x01\\xf4\\f\\f\\xfe\\x18\\f\\f(\\f\\x015\\x04\\v\\x02Z\\xfe\\x80W\\x03\\r\\x04U@\\f(\\f\\f\\x01h\\f\\f\\xfe\\xcc\\xe0\\x04\\x03\\x05\\xbch\\x91\\x05\\x01\\x05r\\x00\\x00\\x00\\x00\\x03\\xff\\xfc\\xff\\xbe\\x02!\\x01\\xc1\\x00\\b\\x00\\x13\\x00#\\x00\\x00%2\\x16\\a\\x06\\a\\x06/\\x017\\x14\\x06+\\x015463\\x1e\\x01\\x05\\x17\\x16\\x06\\a\\x06\\a\\x06&'&676\\x16\\x15\\x02\\x10\\a\\n\\x01\\f=\\v\\v\\x9f\\xde\\t\\a\\xe0\\n\\aY\\x80\\xfe\\xe6\\x9c\\x05\\x01\\x06<K`\\x90\\x03\\x03wZ\\a\\v\\xa0\\v\\aS:\\n\\v\\x9eA\\a\\n\\xe0\\a\\t\\x06\\x80\\x9a\\x9c\\x05\\x0f\\x04+\\x01\\x01\\x89`\\\\\\x8d\\f\\x01\\t\\b\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x14\\x002\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x15\\x11\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06/\\x01&?\\x0162\\x1f\\x017'&63\\x01\\xf0\\a\\t\\t\\a\\xfe0\\r\\x13\\t\\a \\a\\t\\x01\\x90\\a\\t\\x1e\\v `\\n\\x1a\\nI.\\v\\f\\x16\\f\\fD\\n\\x1a\\nII \\v\\f\\x10@\\t\\a \\a\\t\\x13\\r\\x01P\\a\\t\\t\\a\\xfe\\xd0\\x01 \\t\\av\\x10\\f\\v `\\t\\tJ.\\f\\f\\x16\\f\\vE\\t\\tJJ \\v\\x1e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\v\\x00\\x13\\x00\\x1d\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\\"&463\\x06\\x14\\x16264&\\\"\\x13264&+\\x01\\x16\\x14\\a\\x01\\x80PppP\\xc0PppP\\x80KjKKj\\xf55KK5111\\x01\\x80p\\xa0pp\\xa0p\\x8bjKKjK\\xff\\x00KjK7\\x927\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\v\\x00\\x13\\x00\\x00\\x012\\x16\\x14\\x06+\\x01\\\"&463\\x12264&\\\"\\x06\\x14\\x01\\x80PppP\\xc0PppP\\x8bjKKjK\\x01\\x80p\\xa0pp\\xa0p\\xfe\\xc0KjKKj\\x00\\x05\\xff\\xff\\xff\\xff\\x02\\x81\\x01\\x80\\x008\\x00<\\x00K\\x00Q\\x00g\\x00\\x00\\x012\\x16\\a\\x0e\\x01'.\\x01547'\\a\\x06+\\x01\\x0e\\x01#\\\"&54632\\x177#\\\"&54>\\x01;\\x012\\x16\\x1d\\x013'#\\\"&=\\x0146;\\x012\\x1f\\x016\\x05\\a3&\\a267#\\\"&?\\x01&#\\\"\\x06\\x14\\x16?\\x01#\\a\\x16\\x1f\\x01\\x16654&#\\\"\\a\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01\\x06\\x17\\x1e\\x01\\x02\\x015K\\x01\\x01K54K)\\x0fV\\a\\r4\\vE,5KL4\\x17\\x14\\x1e1\\n\\x0e\\a\\v\\aW\\a\\tr\\x0f3\\a\\t\\t\\a@\\r\\aN\\x16\\xfe\\xd3\\x18+\\x04J\\x18(\\tQ\\x0e\\x0e\\b-\\b\\t!//\\xc4J\\x80\\x18$\\x06\\xfd\\\"2/!\\n\\n-\\x03\\x03\\x06\\r\\x06\\r\\x03-\\x14\\x01\\x01,\\x01\\x00M55J\\x01\\x01K48&\\x18\\x8b\\v*6K64K\\b0\\x0e\\n\\x06\\v\\a\\t\\a\\x10\\x18\\t\\a\\x10\\a\\t\\v}\\bJ&\\x16v\\x1a\\x16\\x19\\fI\\x02/B/`x( 0`\\x020\\\"!/\\x02H\\x06\\r\\x03\\t\\x03\\x03\\x06G\\x18\\x1f\\x1f,\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x004\\x00<\\x00L\\x00T\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x00264&\\\"\\x06\\x147!26=\\x014&#!\\\"\\x06\\x1d\\x01\\x14\\x16\\x04264&\\\"\\x06\\x14\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\x0e\\f\\x06\\x13\\r \\r\\x13\\xc0\\x13\\r \\r\\x13\\r\\x13\\b\\n\\x0e\\x0e\\n\\b\\x82\\xbc\\x82\\xfe\\x83\\x1a\\x13\\x13\\x1a\\x130\\x01\\x00\\r\\x13\\x13\\r\\xff\\x00\\r\\x13\\x13\\x01\\x10\\x1a\\x13\\x13\\x1a\\x13\\x01@\\x0e\\nP\\n\\x0e\\xa6\\v\\x0f \\r\\x13\\x13\\r  \\r\\x13\\x13\\r \\x13\\r\\xa0\\x0e\\nP\\n\\x0e0\\\"..\\\"0\\xfe\\xf0\\x13\\x1a\\x13\\x13\\x1a]\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13p\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00'\\x00?\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\x06&546\\x17\\x16?\\x016'.\\x01\\x06\\x15\\x14\\x16676/\\x01&\\x17\\x06&546\\x17\\x16?\\x016'.\\x01\\x06\\x15\\x14\\x16676/\\x01&\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xaa\\x1f=@\\x1e\\x06\\x04\\x11\\x02\\x03\\x19RA?S\\x1a\\x04\\x03\\x14\\x04\\xb9\\x1e>@\\x1f\\x05\\x04\\x12\\x01\\x03\\x19RA@R\\x1b\\x03\\x03\\x13\\x04\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xe0\\x1b\\x17%\\\"\\x15\\x18\\x04\\x06\\x1e\\x03\\x03\\x19\\x034./6\\x05\\x1c\\x04\\x04\\x1b\\x06\\x05\\x1b\\x17%\\\"\\x15\\x18\\x04\\x06\\x1e\\x03\\x03\\x19\\x034./6\\x05\\x1c\\x04\\x04\\x1b\\x06\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x1c\\x009\\x00\\x00\\x134&+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x132\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x013265\\x11463\\xf8!\\x17p\\t\\a0\\a\\t\\x0e\\n\\xa88P\\t\\a0\\a\\t\\xb8\\a\\tP8\\xa8\\n\\x0e\\t\\a0\\a\\tp\\x17!\\t\\a\\x01\\x18\\x17!\\xfe\\xa0\\a\\t\\t\\a\\x01\\x98\\n\\x0eP8\\xa8\\a\\t\\t\\a\\x010\\t\\a\\xfe\\xd88P\\x0e\\n\\x01\\x18\\a\\t\\t\\a\\xe0!\\x17\\x01(\\a\\t\\x00\\x00\\x02\\x00\\x00\\xff\\xbe\\x02B\\x01\\xc0\\x003\\x00W\\x00\\x00%!\\x17!2\\x16\\x0f\\x01\\x16\\x15\\x14\\x06#\\\"&'&7#\\x16\\x15\\x14\\x06'.\\x01'4>\\x017\\x03#\\\"&=\\x0146;\\x012\\x1e\\x01\\x1f\\x01!2\\x16\\x0f\\x01\\x06'#54&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326=\\x014&\\x01\\xf9\\xfe\\xdb\\x06\\x01\\r\\v\\x0e\\x02\\x06 !\\x18\\x16 \\x01\\x01\\x12\\xd2\\x11#\\x18\\x15\\x1f\\x01\\x06\\r\\tFF\\n\\x0e\\x0e\\ng\\x05\\n\\a\\x01\\t\\x01\\x89\\f\\x0e\\x03/\\x04t0\\t\\a\\x10\\a\\t0\\a\\t\\t\\a0\\t\\a\\x10\\a\\t0\\a\\t\\t\\x80 \\x12\\v\\x19\\x0f#\\x17! \\x16\\x19\\x11\\x10\\x18\\x18!\\x01\\x01\\x1f\\x15\\v\\x14\\x0f\\x06\\x01W\\x0e\\n\\x10\\n\\x0e\\x05\\t\\x05-\\x12\\v\\xd0\\x13\\x98(\\a\\t\\t\\a(\\t\\a\\x10\\a\\t(\\a\\t\\t\\a(\\t\\a\\x10\\a\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xbe\\x02B\\x01\\xc0\\x003\\x00F\\x00\\x00%!\\x17!2\\x16\\x0f\\x01\\x16\\x15\\x14\\x06#\\\"&'&7#\\x16\\x15\\x14\\x06'.\\x01'4>\\x017\\x03#\\\"&=\\x0146;\\x012\\x1e\\x01\\x1f\\x01!2\\x16\\x0f\\x01\\x06'#54+\\x01\\\"\\x1d\\x01#\\\"\\x06\\x1f\\x01\\x16?\\x016&\\x01\\xf9\\xfe\\xdb\\x06\\x01\\r\\v\\x0e\\x02\\x06 !\\x18\\x16 \\x01\\x01\\x12\\xd2\\x11#\\x18\\x15\\x1f\\x01\\x06\\r\\tFF\\n\\x0e\\x0e\\ng\\x05\\n\\a\\x01\\t\\x01\\x89\\f\\x0e\\x03/\\x04y+\\f\\x18\\f+\\b\\x06\\x05D\\b\\bD\\x05\\x06\\x80 \\x12\\v\\x19\\x0f#\\x17! \\x16\\x19\\x11\\x10\\x18\\x18!\\x01\\x01\\x1f\\x15\\v\\x14\\x0f\\x06\\x01W\\x0e\\n\\x10\\n\\x0e\\x05\\t\\x05-\\x12\\v\\xd0\\x13\\x80<\\f\\f<\\x0f\\x05D\\b\\bD\\x05\\x0f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00<\\x00D\\x00\\x00%\\x1e\\x0132\\x16\\x1d\\x01\\x14\\x06#\\\"'\\x0e\\x01+\\x01\\\".\\x01'\\x06#\\\"&=\\x01463267'&6?\\x01546;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x17\\x1e\\x01\\a%\\x15762\\x1f\\x015\\x01\\xf1\\x0e=,\\n\\x0e\\x0e\\nX7\\v0\\x1e\\x80\\x14#\\x1b\\a7X\\n\\x0e\\x0e\\n,>\\rF\\f\\b\\x11*\\x13\\r@\\x0e\\n\\x90\\n\\x0e@\\r\\x13*\\x11\\b\\f\\xfe\\x89v\\x05\\n\\x05vK\\\")\\x0e\\n\\x10\\n\\x0e;\\x1a!\\x0f\\x1b\\x11;\\x0e\\n\\x10\\n\\x0e)\\\"F\\r#\\x05\\x0e\\x8c\\r\\x13(\\n\\x0e\\x0e\\n(\\x13\\r\\x8c\\x0e\\x05#\\r\\xafX&\\x02\\x02&X\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc2\\x002\\x006\\x00:\\x00V\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467'&6;\\x01&5&54767>\\x01\\x1f\\x01\\x16?\\x016\\x16\\x17\\x16\\x17\\x16\\x15\\x14\\a\\x14\\a32\\x16\\x0f\\x017/\\x01\\x177\\x0f\\x017475\\x06#\\\"'\\x1503\\x16\\x15\\x16\\x17\\x1e\\x0126762\\x17\\x1e\\x01676\\x01\\x80\\x1d#\\x1a\\x13\\xfe\\x9a\\x13\\x1a%\\x1e\\x19\\x04\\n\\b:\\x12@F\\x0e\\x1b\\a\\x16\\n\\x1c\\x0e\\x0e\\x1c\\n\\x16\\a\\x1b\\x0eF@\\x12;\\b\\n\\x03\\xe8 \\x182\\x8a*2\\x18J\\x06,42.\\x01\\x05\\t\\b\\x04\\x0e\\x14\\x14\\x06\\x02\\x0e\\x02\\a\\x1d\\x16\\x06\\b\\x8c\\x12=#-\\x13\\x1a\\x1a\\x13-$>\\x12<\\b\\x0e\\x1f!\\r\\x13\\x14\\r1\\\"\\t\\x05\\x05\\x0e\\a\\a\\x0e\\x05\\x05\\t\\\"1\\r\\x14\\x13\\r!\\x1f\\x0e\\b\\xeax( \\xc0\\xc0 (\\xb2\\x03\\x03\\v\\x06\\x06\\v\\x03\\x03\\x19\\b\\x03\\x06\\x11\\x11\\x06\\x06\\x15\\x0f\\x05\\x06\\a\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xff\\x02\\x81\\x01\\x80\\x00H\\x00W\\x00m\\x00\\x00\\x012\\x16\\x15\\x16\\x06'\\\"&547'\\x0e\\x02\\x17\\x16\\x06+\\x01\\x0e\\x01#\\\"&7>\\x0176\\x177&+\\x01\\\"&546;\\x012\\x173'#\\\"&=\\x0146;\\x012\\x1f\\x0176;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x176\\x05267#\\\"&?\\x01&#\\\"\\x06\\x14\\x16%6&#\\\"\\a\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01\\x06\\x15\\x14\\x167>\\x01\\x02\\x014K\\x01L64K-\\r\\x13\\x1a\\f\\x01\\x01\\x0f\\nT\\vE,6K\\x01\\x01H2\\x16\\x13\\f\\x10 8\\n\\x0e\\x0e\\n8E\\x1f\\x9a\\x14B\\a\\t\\t\\aP\\x0e\\a\\x16&\\a\\v-\\n\\x0e\\x0e\\nR \\x15\\xfe\\x95\\x18(\\tQ\\x0e\\x0e\\a)\\x05\\a!//\\x01\\xf1\\x020\\\"\\b\\b1\\x03\\x03\\x06\\r\\x06\\r\\x032\\x162\\\"\\x1f+\\x01\\x00K46L\\x01K4;'\\x15\\x0f)-\\x18\\n\\x0f*6M63H\\x02\\x01\\x06\\x14\\x19\\x0e\\n\\n\\x0e( \\t\\a\\x10\\a\\t\\f&*\\b\\x0e\\n \\n\\x0e7\\a\\xd0\\x1b\\x15\\x18\\fK\\x01/B/L\\\"2\\x02Q\\x05\\r\\x04\\b\\x03\\x03\\x06R\\x17 \\\"0\\x02\\x02+\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1c\\x00$\\x00@\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x16\\x17\\x15\\x0e\\x02\\x15\\x14\\x162654&'56&\\\"&462\\x16\\x14\\a\\\"&=\\x0146;\\x01\\x162732\\x16\\x1d\\x01\\x14\\x06#\\x15\\x14\\x06+\\x01\\\"&5\\x01pAO\\x96ԖOA\\b\\b!3\\x1cz\\xacz=3\\bM6%%6%\\x80\\r\\x13\\x1c\\x14\\f\\x11&\\x11\\f\\x14\\x1c\\x13\\r\\x13\\r@\\r\\x13v\\f.\\x1c(88(\\x1c.\\f\\t\\x04\\x17\\x05\\x0f\\x13\\v\\x17!!\\x17\\x10\\x1b\\a\\x17\\x04\\xd3%6%%6\\xe5\\x13\\r`\\x14\\x1c\\b\\b\\x1c\\x14`\\r\\x13`\\r\\x13\\x13\\r\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xe0\\x02\\x02\\x01\\xa1\\x00\\r\\x00)\\x00\\x00%\\x173\\a\\x06\\\"/\\x0137\\x17\\x1627\\x13\\x1e\\x01\\a#'&\\\"\\x0f\\x01'&\\\"\\x0f\\x01#&6?\\x0162\\x1f\\x01762\\x17\\x01@\\x16m\\xb6\\x06\\x0f\\x05\\xb6^\\x1e9\\x04\\x14\\x04\\xcc$\\x04!w\\x1c\\x04\\x14\\x041:\\x05\\x15\\x04$f!\\x04$\\x03&n'\\x1c\\x1c'n&\\xcc,\\xba\\x06\\x06\\xbaH\\u007f\\t\\t\\x01\\r%i(7\\t\\tb\\x82\\t\\nV(i%\\x02((\\x1c\\x1d''\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01 \\x01\\xa0\\x00!\\x00)\\x00\\x00\\x01\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x015462\\x16\\x06\\x14\\x16264&\\\"\\x01 ?1$\\f\\f$\\f(\\f$\\f\\f$1?TxT\\xe0/B//B\\x01\\x103N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3<TT\\x1bB//B/\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x80\\x01\\x80\\x00\\x18\\x00 \\x00\\x00\\x012\\x1d\\x01\\x14\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'&63\\x02264&\\\"\\x06\\x14\\x01t\\f\\x0f\\x05\\x11Q\\x16TxTT<*#P\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\x80\\fO\\b\\x06\\x05\\x11P#*<TTxT\\x16Q\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01 \\x01\\xc0\\x00;\\x00C\\x00\\x00%\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x01547&'&'&6;\\x012\\x17\\x16\\x17\\x1627676;\\x012\\x16\\a\\x06\\a\\x06\\a\\x16\\x06\\x14\\x16264&\\\"\\x01 ?1$\\f\\f$\\f(\\f$\\f\\f$1?3\\x04\\x03&\\x05\\x01\\a\\x06(\\n\\x02\\x04\\x11\\x17F\\x17\\x11\\x04\\x02\\n(\\x06\\a\\x01\\x05&\\x04\\x033\\xe0/B//B\\xf03N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3C+\\x03\\x03 /\\x05\\b\\n\\x13\\x0f\\x14\\x14\\x0f\\x13\\n\\b\\x05/ \\x04\\x02+\\\"B//B/\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x001\\x009\\x00\\x00\\x012\\x1d\\x01\\x14\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x0154632\\x177'&63\\x02264&\\\"\\x06\\x14\\x01t\\f\\x0f\\x05\\x11Q\\x16?1$\\f\\f$\\f(\\f$\\f\\f$1?T<*#P\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\xc0\\fO\\b\\x06\\x05\\x11P#*3N\\v\\x1c\\f(\\f\\x1c\\f\\f\\x1c\\f(\\f\\x1c\\vN3<T\\x16Q\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xe0\\x01\\xc0\\x00P\\x00X\\x00\\x00\\x012\\x1d\\x01\\x14\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x02547'\\a\\x06/\\x01&?\\x01'\\a\\x06&=\\x014;\\x012\\x16\\x0f\\x01\\x1776\\x1f\\x01\\x16\\x0f\\x01\\x1762\\x177'&63\\x02264&\\\"\\x06\\x14\\x01\\xd4\\f\\x0f\\x05\\x11Q\\x16?1$\\f\\f$\\f(\\f$\\f\\f$ 3\\x1d\\x16\\x10\\x14\\t\\b\\x1c\\t\\t\\x13\\x13\\x11\\x05\\x0f\\fO\\b\\x06\\x06\\x11\\x14\\x13\\t\\b\\x1d\\b\\b\\x14\\x10#T#P\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\xc0\\fO\\b\\x06\\x05\\x11P#*3N\\v\\x1c\\f(\\f\\x1c\\f\\f\\x1c\\f(\\f\\x1c\\a(;\\\"*#\\x10\\x14\\b\\b\\x1d\\b\\t\\x13\\x13\\x11\\x05\\x06\\bO\\f\\x0f\\x05\\x11\\x13\\x14\\b\\b\\x1d\\b\\t\\x14\\x10\\x16\\x16Q\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00!\\x00)\\x00W\\x00\\x00\\x01\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x015462\\x16\\x06\\x14\\x16264&\\\"\\x05\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015&'67\\x163264&#\\\"\\a&'632\\x16\\x15\\x14\\x06\\x01 ?1$\\f\\f$\\f(\\f$\\f\\f$1?TxT\\xe0/B//B\\x01!$\\f\\f$\\f(\\f$\\f\\f$\\x1f\\x1a\\x15\\v\\x17\\\"!//!\\\"\\x17\\v\\x15'2<T?\\x01\\x103N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3<TT\\x1bB//B/\\xdc4\\f(\\f$\\f\\f$\\f(\\f4\\a\\x14\\x1a\\x1f\\x18/B/\\x18 \\x19\\x1fT<3N\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00!\\x00N\\x00\\x00\\x012\\x1d\\x01\\x14\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'&63\\x02264&\\\"\\x06\\x14%2\\x16\\x1d\\x01\\x14\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06#\\\".\\x01'67\\x14\\x15\\x14\\x162654.\\x01#0\\\"167\\x16\\x177'&63\\x01T\\f\\a\\n\\x03\\x111\\x16TxTT<*#0\\x11\\x05\\x06\\b\\x96B//B/\\x01\\xb4\\x05\\a\\a\\n\\x03\\x111\\x16T<%?'\\x04!\\x1e/B/\\x15%\\x16\\x03\\x0f\\x03!\\x1d0\\x11\\x05\\x06\\b\\x01\\xc0\\fO\\x05\\a\\x03\\x110#*<TTxT\\x161\\x11\\x05\\x0f\\xfe\\xe0/B//BQ\\a\\x05O\\x05\\a\\x03\\x110#*<T\\\";$\\x03\\x0f\\x01\\x02!//!\\x16%\\x15\\x1e!\\x03\\x121\\x11\\x05\\x0f\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00&\\x00H\\x00P\\x00\\x00\\x012\\x1d\\x01\\x14\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x06#\\\"'67\\x163264&#\\\"\\a&'632\\x177'&63\\x042\\x16\\x15\\x14\\x06\\a\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x015.\\x0154\\x16264&\\\"\\x06\\x14\\x024\\f\\a\\n\\x03\\x111\\x16T<2'\\x15\\v\\x17\\\"!//!\\\"\\x17\\v\\x15'2*#0\\x11\\x05\\x06\\b\\xfeoxT?1$\\f\\f$\\f(\\f$\\f\\f$1?oB//B/\\x01\\xc0\\fO\\x05\\a\\x03\\x110#*<T\\x1f\\x19 \\x18/B/\\x18\\x1f\\x1a\\x1f\\x161\\x11\\x05\\x0f@T<3N\\v4\\f(\\f$\\f\\f$\\f(\\f4\\vN3<\\x8c/B//B\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x81\\x01\\x80\\x00+\\x003\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x16\\x15\\x14\\x06\\\"&54>\\x0132\\x177'&?\\x016\\x1f\\x017'&63\\x02264&\\\"\\x06\\x14\\x01t\\x05\\a\\x0f\\x05\\x11\\x12\\x0e\\t\\t\\x1c\\t\\b\\x0e\\x12\\x16TxT'B'*#\\x12\\x0f\\b\\b\\x1d\\b\\t\\x0e\\x11\\x11\\x05\\x06\\b\\xb6B//B/\\x01\\x80\\a\\x05O\\b\\x06\\x06\\x11\\x12\\x0e\\t\\b\\x1c\\t\\t\\x0e\\x12#*<TT<'B'\\x16\\x12\\x0e\\b\\t\\x1c\\t\\t\\x0e\\x12\\x11\\x05\\x0f\\xfe\\xc0/B//B\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01!\\x01\\xc4\\x00,\\x004\\x00\\x007\\x16\\x14\\x06\\\"&47675#\\\"&=\\x0146;\\x015#\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x16\\x0664&\\\"\\x06\\x14\\x16\\xf6*TxT*\\x1e(\\x14\\x05\\a\\a\\x05\\x14\\x18\\b\\x06\\x068\\b\\b8\\x06\\x06\\b\\x18\\x14\\x05\\a\\a\\x05\\x14('//B//\\xd6*xTTx*\\x1d\\t\\x1a\\a\\x05(\\x05\\a\\x18\\x0f\\x068\\b\\b8\\x06\\x0e\\x19\\a\\x05(\\x05\\a\\x1a\\t\\xd3/B//B/\\x00\\x00\\x02\\x00\\x00\\x000\\x01\\xe5\\x01P\\x00(\\x000\\x00\\x00%\\x16\\x0f\\x01\\x06&=\\x01#\\x15\\x14+\\x01\\\"=\\x01#\\x06\\a\\x06\\\"&462\\x17\\x16\\x17354;\\x012\\x1d\\x013546\\x17\\x0664&\\\"\\x06\\x14\\x16\\x01\\xdc\\t\\t8\\x05\\x0f\\x18\\f(\\f\\x1c\\t\\x1d*xTTx*\\x1d\\t\\x1c\\f(\\f\\x18\\x0f\\x05\\xf3//B//\\xc8\\b\\b8\\x06\\x06\\b\\x18\\x14\\f\\f\\x14(\\x1e*TxT*\\x1e(\\x14\\f\\f\\x14\\x18\\b\\x06\\x06\\x90/B//B/\\x00\\x02\\x00\\x00\\xff\\xe0\\x01 \\x01\\xa0\\x00\\x11\\x00\\x19\\x00\\x00\\x01\\x14\\x06\\a\\x15\\x14+\\x01\\\"=\\x01.\\x015462\\x16\\x06264&\\\"\\x06\\x14\\x01 ?1\\f(\\f1?TxT\\xb1B//B/\\x01\\x103N\\v\\x98\\f\\f\\x98\\vN3<TT\\x8c/B//B\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x000\\x01 \\x01P\\x00\\a\\x00\\x0f\\x00\\x00\\x12\\\"\\x06\\x14\\x16264&2\\x16\\x14\\x06\\\"&4\\xb1B//B/\\x8cxTTxT\\x01\\x10/B//BoTxTTx\\x00\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00/\\x007\\x00?\\x00O\\x00W\\x00_\\x00\\x00\\x01!\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x17!\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x17!\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x01\\xe0\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x133\\x14\\x0e\\x0e\\x14\\x0eN\\x14\\x0e\\x0e\\x14\\x0eX\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x133\\x14\\x0e\\x0e\\x14\\x0eN\\x14\\x0e\\x0e\\x14\\x0eX\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x133\\x14\\x0e\\x0e\\x14\\x0eN\\x14\\x0e\\x0e\\x14\\x0e\\x01 \\x13\\r@\\r\\x13\\x13\\r@\\r\\x13X\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\xea\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13X\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\xea\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13X\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00#\\x00+\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x04\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x02p\\a\\t\\t\\a@\\t\\a \\a\\t@\\a\\t\\t\\a@\\t\\a \\a\\t\\xfe\\xe5jKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xf0\\t\\a \\a\\t@\\a\\t\\t\\a@\\t\\a \\a\\t@\\a\\t\\t\\a@0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x87\\x01\\xc0\\x00\\x1b\\x00#\\x007\\x00\\x00%\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\a\\x04\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x02N-\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f\\xfe\\x9ajKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xd0.\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v>KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\a\\x00+\\x00\\x006\\\"&462\\x16\\x14%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x0135463\\xd1B//B/\\x01\\x10.B\\t\\a \\a\\t\\xfe\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\xe0\\t\\a\\xc0/B//BQB.\\xc0\\a\\t\\t\\a00\\a\\t\\t\\a\\x01`\\a\\t\\t\\aА\\a\\t\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00'\\x00/\\x00\\x00\\x01\\x11\\x14\\x06#\\x17\\x16\\x06#!\\\"&?\\x01\\\"&5\\x1146;\\x012\\x16\\a54&#!\\\"\\x06\\x1d\\x01\\x14\\x163!26\\x06\\\"\\x06\\x14\\x16264\\x01\\xc0N4?\\x04\\x03\\x06\\xfe\\xd0\\x06\\x03\\x04?4NO1\\xc02N0\\x0e\\n\\xfe\\xd0\\n\\x0e\\x0e\\n\\x010\\n\\x0e\\x99.!!.!\\x01`\\xff\\x00'92\\x03\\v\\v\\x0329'\\x01\\x00'99\\xafp\\n\\x0e\\x0e\\np\\n\\x0e\\x0e6!.!!.\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00'\\x007\\x00?\\x00G\\x00\\x00\\x01\\x11\\x14\\x06#\\x17\\x16\\x06#!\\\"&?\\x01\\\"&5\\x1146;\\x012\\x16\\a54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x06\\\"\\x06\\x14\\x16264$\\\"\\x06\\x14\\x16264\\x01\\xc0N4?\\x04\\x03\\x06\\xfe\\xd0\\x06\\x03\\x04?4NO1\\xc02N\\xf8\\x0e\\nh\\n\\x0e\\x0e\\nh\\n\\x0e\\xc8\\x0e\\nh\\n\\x0e\\x0e\\nh\\n\\x0e\\x1c(\\x1c\\x1c(\\x1c\\xfe\\xe4(\\x1c\\x1c(\\x1c\\x01`\\xff\\x00'92\\x03\\v\\v\\x0329'\\x01\\x00'99\\xafp\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e.\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x05\\x15!5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01\\xd0\\xfe`\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x05\\x15!5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01p\\xfe\\xc0\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x05\\x15#5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01\\x10\\xe0\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00%\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x17\\x15#5\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\xb0\\x80\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x80\\x80\\x00\\x02\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\a\\x00!\\x00\\x00\\x01!\\x15!535#72\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&=\\x01463\\x02 \\xfe \\x01\\xe0  \\x10\\x14\\x1c\\b\\n\\x0e\\x0e\\n\\b\\x1c\\x14\\xfe\\x00\\x14\\x1c\\x1c\\x14\\x01 \\xc0@@\\x80\\x1c\\x14\\x10\\x0e\\n\\x90\\n\\x0e\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbe\\x01D\\x01\\xc4\\x00\\x15\\x00\\x00%#\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x01\\a\\x06&5\\x1146\\x17\\x01\\x16\\x06\\x01.j8\\x03\\x06\\a1\\a\\r\\x035W\\b\\x16\\x17\\a\\x01\\x1d\\b\\tw\\x88\\a\\x0e\\x03\\x16\\x02\\x05\\a\\x81Y\\t\\n\\f\\x01\\xae\\f\\t\\b\\xfe\\xdb\\b\\x17\\x00\\x01\\x00\\x00\\xff\\xbf\\x01\\x00\\x01\\xc1\\x00H\\x00\\x00\\x01\\x14\\x06#\\\"\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x1472\\x16\\x1d\\x01\\x14\\x06#\\\".\\x01'\\x0e\\x02#\\\"&=\\x014632=\\x01#\\\"=\\x014;\\x0154\\a\\\".\\x01=\\x014>\\x0232\\x1e\\x01\\x17>\\x0232\\x16\\x15\\x01\\x00\\a\\x05T$\\f\\f$T\\x05\\a\\a\\x05\\x17\\x1e-\\x12\\x12.\\x1e\\x16\\x05\\a\\a\\x05T$\\f\\f$T\\x03\\x06\\x03\\x02\\x03\\x04\\x03\\x17\\x1e-\\x12\\x12.\\x1e\\x16\\x05\\a\\x01\\x8c\\x05\\a0p\\f(\\fp1\\x01\\a\\x05(\\x05\\a\\x03\\x12\\x11\\x12\\x12\\x02\\a\\x05(\\x05\\a0p\\f(\\fp1\\x01\\x03\\x06\\x03(\\x02\\x05\\x03\\x02\\x03\\x12\\x11\\x12\\x12\\x02\\a\\x05\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00,\\x008\\x00G\\x00\\x00\\x01\\x1132\\x1d\\x01\\x14+\\x01\\\"=\\x01!\\x15\\x14+\\x01\\\"=\\x014;\\x01\\x11#\\\"=\\x014;\\x012\\x1d\\x01!54;\\x012\\x1d\\x01\\x14+\\x01\\x05\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x0554+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14;\\x012\\x01\\xe0\\x14\\f\\f(\\f\\xfe\\x80\\f(\\f\\f\\x14\\x14\\f\\f(\\f\\x01\\x80\\f(\\f\\f\\x14\\xfe\\x80\\f\\xa8\\f\\f\\xa8\\f\\x01@\\fT\\x0e\\nH\\f\\xa8\\f\\x01@\\xfe\\xe0\\f(\\f\\f\\x14\\x14\\f\\f(\\f\\x01@\\f(\\f\\f\\x14\\x14\\f\\f(\\f\\xb4\\f\\f\\x88\\f\\f\\xe8\\x88\\fH\\n\\x0e4\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00+\\x00]\\x00\\x007\\x15\\x14+\\x01\\\"=\\x014;\\x015#\\\"=\\x014;\\x012\\x1d\\x01!54;\\x012\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x017\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01!\\x15\\x14+\\x01\\\"=\\x014;\\x0153\\x15\\x14\\x16;\\x0126=\\x014&+\\x015354;\\x012\\x1d\\x01\\x14+\\x01@\\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06\\x01 \\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06\\xc0\\x1a\\x06\\x064\\x06\\xfe\\xe0\\x064\\x06\\x06\\x1a\\x88\\x0e\\n@\\n\\x0e\\x0e\\n\\bh\\x064\\x06\\x06\\x1a\\x80\\x1a\\x06\\x064\\x06\\xc0\\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06\\xc0\\x064\\x06\\x06\\x1a@\\xa0\\x064\\x06\\x06\\x1a\\x1a\\x06\\x064\\x06H\\b\\n\\x0e\\x0e\\n@\\n\\x0eH\\x1a\\x06\\x064\\x06\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x1a\\x00\\x00%\\\"\\x06\\x1d\\x01!\\\"&5\\x11463!2\\x16\\x15\\x11\\x0f\\x01\\x06+\\x0153\\x15\\x14\\x018\\n\\x0e\\xfe\\xf8\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\ab\\a\\n\\x06\\x80\\x80\\x0e\\n\\x88\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n\\xfe\\xf87b\\a\\x80\\x06\\n\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00!\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x113\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xd0\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x140/\\x01\\xc0\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe`0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xd0!/\\x00\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x15\\x00\\x18\\x004\\x007\\x00c\\x00\\x00%\\x14\\x06\\\"&5054676762\\x17\\x16\\x17\\x1e\\x01\\x15\\x14'\\a3\\x05\\x14\\x0e\\x01#\\\"&505467>\\x04762\\x17\\x16\\x17\\x1e\\x01\\x15\\x14'3'\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x11&'#\\\"&=\\x0146;\\x0162\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\x06\\a\\x11\\x01\\x00KjK\\n\\x1e\\x1a\\x13\\r<\\r\\x14\\x1a\\x1d\\n\\x80H\\x90\\x01\\xb8\\\";#5K\\n\\x1e\\x05\\x05\\v\\b\\v\\x05\\r<\\r\\x14\\x1a\\x1d\\nȐH\\x10\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0&\\b\\x82\\a\\t\\t\\a\\x90\\x19N\\x19\\x90\\a\\t\\t\\a\\x82\\b&p!//!\\x01\\b\\x17<4&\\x1a\\x1a(59\\x16\\t\\x01\\xa0\\x90\\x10\\x16%\\x15/!\\x01\\b\\x17<\\n\\n\\x15\\x10\\x16\\v\\x1a\\x1a(59\\x16\\t\\x01\\x10\\x90\\xfe\\xf0\\t\\a \\a\\t\\t\\a \\a\\t\\x01'\\x10)\\t\\a \\a\\t  \\t\\a \\a\\t)\\x10\\xfe\\xd9\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x000\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463\\x014&\\\"\\x06\\x15\\x01h\\n\\x0e\\x0e\\nD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01\\x10=V=\\x01\\xc0\\x0e\\n\\x10\\n\\x0eCk\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\xfe@;UU;\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x000\\x006\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463\\x01.\\x01\\\"\\x06\\a\\x1365#\\x14\\x17\\x01h\\n\\x0e\\x0e\\nD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01\\x05\\r2<2\\r\\xba\\v\\xd0\\v\\x01\\xc0\\x0e\\n\\x10\\n\\x0eCk\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\xfe\\x80$,,$\\x01\\x00\\x1e\\\"\\\"\\x1e\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x000\\x00\\x00\\x01\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x0e\\x01265#\\x14\\x01hD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01P\\n\\x0e\\x0e\\xddV=\\xd0\\x01\\x80Ck\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0e\\x90U;;\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00*\\x00\\x00\\x01\\x14\\x06\\a\\x1e\\x01\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463467.\\x025\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x01hD55D\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nD5#7\\x1f\\n\\x0e\\x0e\\n\\x01P\\n\\x0e\\x0e\\x01\\x80Ck\\x12\\x12kC\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0eCk\\x12\\f8O-\\x0e\\n\\x10\\n\\x0e\\x0e\\n\\x10\\n\\x0e\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xdf\\x02\\x00\\x01\\xa1\\x00?\\x00\\x00\\x012\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x06\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x014/\\x01&=\\x014632\\x16\\x1d\\x01\\x1754632\\x16\\x1d\\x01354632\\x16\\x1d\\x01354632\\x16\\x1d\\x01346\\x01\\xd1\\r\\x15\\r\\b0\\b\\x06\\v\\a\\xf0\\n\\x0e\\x10p \\x1d\\x14\\x13\\x1c\\b\\x1d\\x14\\x13\\x1c\\b\\x1d\\x14\\x13\\x1c\\b\\x1d\\x14\\x13\\x1c\\b\\x1d\\x01p\\x0e\\x16\\r\\x85\\x14\\x12t\\x12\\x13\\x03\\a\\v\\x06\\x0e\\n\\a\\x15\\x0ed\\x1d+B\\x14\\x1c\\x1d\\x140\\a\\x88\\x14\\x1c\\x1d\\x14\\x1f0\\x14\\x1c\\x1d\\x14/ \\x14\\x1c\\x1d\\x14\\x1f\\x14\\x1c\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x008\\x00\\x00\\x012\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"&/\\x01&>\\x01\\x16\\x1f\\x0154>\\x0132\\x16\\x1d\\x01354>\\x0132\\x1e\\x02\\x1d\\x01354632\\x16\\x1d\\x013546\\x01\\x99\\n\\x13\\n\\x05\\x1b\\x03\\x1b\\x10\\xc6\\n\\x17\\x06}\\n\\x05\\x1b!\\t \\n\\x13\\n\\x11\\x18\\b\\n\\x13\\n\\b\\x10\\v\\x06\\b\\x17\\x10\\x11\\x18\\b\\x18\\x01@\\v\\x12\\v\\x96\\x17\\x15q\\x10\\x15\\f\\b\\xac\\x0e!\\x13\\x05\\r,\\xec\\v\\x12\\v\\x18\\x11\\xaf\\xd8\\v\\x12\\v\\x06\\v\\x10\\bױ\\x10\\x18\\x18\\x11\\xb0W\\x11\\x18\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa4\\x00.\\x00\\x00\\x164635#\\\"&46;\\x015#\\\"&46;\\x015'.\\x027>\\x01\\x1f\\x017>\\x01\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06+\\x01\\\"\\xd8\\x17\\x11 \\x11\\x17\\x17\\x11 \\xd0\\x14\\x1c\\x1c\\x14в\\f\\x10\\x03\\x04\\b$\\x13\\xbe\\x19\\t\\x1d\\rp\\b\\f\\x11\\x0e\\x88\\x04\\x05P\\x11\\t\\\"\\x17\\b\\x17\\\"\\x17\\b\\x1c(\\x1c\\x0eE\\x05\\x14\\x19\\r\\x12\\x10\\aK\\x1f\\f\\x05\\a@\\x05\\x14\\n\\xf0\\x0e\\x16\\x03 \\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00&\\x00\\x00\\x0554/\\x01&+\\x01\\\"&=\\x0146;\\x0126?\\x016&+\\x01\\\"&=\\x01463!2\\x16\\x17\\x13\\x16\\x1d\\x01\\x01\\x80\\vp\\f\\x0e\\x93\\n\\x0e%\\x1b|\\b\\x12\\x03\\x16\\x03\\n\\n\\xe6\\x17!\\x0e\\n\\x01N\\n\\x18\\x06\\xa3\\x0f =\\x0e\\aG\\a\\x0e\\n\\b\\x1b%\\f\\b3\\t\\x10!\\x17\\x10\\n\\x0e\\r\\t\\xfe\\xfd\\x17\\x1ct\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00K\\x00\\x00\\x01\\x03\\x0e\\x01+\\x01\\\"&/\\x01&54632\\x1f\\x014/\\x01&54632\\x16\\x1f\\x01\\x1632545'&54632\\x1e\\x01\\x1f\\x01\\x1632?\\x01>\\x0232\\x17\\x1e\\x01\\x0f\\x01\\x141\\x1432?\\x01>\\x0132\\x16\\x15\\x14\\x01\\xffD\\b<\\\"\\u007f\\x167\\x10l\\r\\x17\\x11\\x10\\v=\\f*\\x02\\x17\\x11\\f\\x17\\x03&\\x01\\x06\\t3\\x01\\x17\\x11\\b\\x11\\f\\x028\\x02\\b\\b\\x02&\\x02\\v\\x11\\t\\x06\\x06\\x0f\\x0f\\x03\\\"\\a\\x06\\x02\\x1d\\x03\\x17\\r\\x11\\x17\\x01/\\xfe\\xe1!/\\x16\\x0ff\\f\\x11\\x11\\x17\\v9)(\\x90\\x05\\x06\\x11\\x17\\x11\\f}\\x06\\b\\x01\\x01\\xc4\\x05\\x05\\x11\\x17\\b\\x0e\\b\\xda\\b\\b\\xb8\\t\\x0e\\t\\x02\\x05\\x1b\\x10\\xa5\\x01\\b\\x06{\\r\\x12\\x17\\x11\\x05\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00-\\x001\\x005\\x009\\x00\\x00%\\x15\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&>\\x01\\x16\\x1f\\x01\\x11462\\x16\\x1d\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x013462\\x16\\x05#\\x1537#\\x1537#\\x153\\x01\\xc0\\x01 \\x03\\x16\\x0e\\xd0\\x14\\f\\x80\\n\\x05\\x1b!\\t \\x17\\\"\\x17\\b\\x17\\\"\\x17\\b\\x17\\\"\\x17\\b\\x17\\\"\\x17\\xff\\x00\\b\\bX\\b\\bX\\b\\b\\xd0`\\x05\\x04\\x88\\x0e\\x11\\x10\\xb0\\x0e!\\x13\\x05\\r,\\x01\\x14\\x11\\x17\\x17\\x11\\xc8(\\x11\\x17\\x17\\x11(\\x18\\x11\\x17\\x17\\x11\\x18\\x11\\x17\\x17a`````\\x00\\x00\\x01\\xff\\xfc\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00-\\x00\\x00$2\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\".\\x01/\\x01&6?\\x01'&>\\x01\\x16\\x1f\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x0134\\x01\\x87\\\"\\x17\\x01 \\x03\\x16\\x0e\\xf0\\x06\\x0e\\f\\x03@\\a\\x05\\f\\x1fK\\a\\x10%$\\bE\\x0e\\x1c(\\x1c\\b\\x17\\\"\\x17\\b\\xe8\\x17\\x11P\\x05\\x04\\x88\\x0e\\x11\\x05\\n\\x05p\\r\\x1d\\t\\x19\\xbe\\x13$\\x0f\\x10\\x12\\xb2\\xd0\\x14\\x1c\\x1c\\x14\\xd0 \\x11\\x17\\x17\\x11 \\x11\\x00\\x02\\x00\\x00\\x00 \\x02\\x81\\x01`\\x00\\x19\\x00G\\x00\\x00\\x012\\x1e\\x01\\a\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0143\\x01\\x16+\\x01\\\"/\\x015#\\x06\\x0f\\x01\\x06+\\x01\\\"/\\x02#\\x16\\x0f\\x01\\x06+\\x01\\\"&7\\x136;\\x012\\x1f\\x0236?\\x016;\\x012\\x17\\x01\\x05\\x03\\x05\\x04\\x01\\a\\x05U\\a\\x056\\x05\\aU\\x05\\a\\f\\x02t\\x01\\r6\\v\\x01\\t\\x01\\v\\a\\x1e\\x03\\t2\\t\\x02\\x1f\\x12\\x01\\x02\\x02\\t\\x01\\v6\\x06\\a\\x01\\x18\\x01\\vA\\t\\x03+\\x10\\x01\\t\\b+\\x03\\tA\\v\\x01\\x01`\\x03\\x06\\x03+\\x05\\a\\xf1\\x05\\a\\a\\x05\\xf1\\a\\x05+\\f\\xfe\\xcd\\r\\v\\x856\\\"\\x14U\\a\\aU6\\x1e\\x18\\x85\\v\\b\\x05\\x01(\\v\\b\\u007f5 \\x15\\u007f\\b\\v\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00*\\x00\\x00%\\x14+\\x01532\\x166\\x14\\x06\\\"&462\\x13&'654+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x013\\x17\\x16;\\x0126\\x01\\x1d\\x1c\\x1e\\x17\\x15\\x0eۑΑ\\x91\\xce\\x04+\\x01&jG\\t\\x0f\\x0f\\t\\x17\\n\\x0e\\x1a,\\a\\x0e\\x18\\x0e\\x0e\\xf1\\x1d8\\f'Α\\x91Α\\xfe\\xa0O\\x02\\x182Y\\x0e\\n\\xe8\\n\\x0e\\x0e\\nHS\\r\\x18\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00#\\x00'\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&5\\x11463\\x01\\x11!\\x11\\x02P\\x14\\x1c\\x1c\\x14\\xf0\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0\\xf0\\x14\\x1c\\x1c\\x14\\x02\\x10\\xfe\\x00\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c \\t\\a \\a\\t\\t\\a \\a\\t \\x1c\\x14\\x01@\\x14\\x1c\\xfe\\xa0\\x01 \\xfe\\xe0\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x00G\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x054+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x01325\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01H\\f<\\f(\\f<\\f\\f<\\f(\\f<\\f\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f\\x8c\\f<\\f\\f<\\f(\\f<\\f\\f<\\f\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x007\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x052=\\x014+\\x01\\\"\\x1d\\x01\\x143\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01<\\f\\f\\xb8\\f\\f\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f\\xc0\\f(\\f\\f(\\f\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x00G\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x0576/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016'\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01\\r0\\t\\t\\x1c\\b\\t00\\t\\b\\x1c\\t\\t00\\t\\t\\x1c\\b\\t00\\t\\b\\x1c\\t\\t\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f\\xa00\\t\\b\\x1c\\t\\t00\\t\\t\\x1c\\b\\t00\\t\\b\\x1c\\t\\t00\\t\\t\\x1c\\b\\t\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1d\\x00+\\x00;\\x00\\x00\\x01!\\\"=\\x0146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x05!2\\x15\\x11\\x14\\x06#!\\\"&5\\x114\\x05'&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x16?\\x016\\x01\\xb4\\xfeX\\f\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c\\xfeL\\x01\\xa8\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01Y\\x1c\\b\\tj.\\b\\t\\x1c\\t\\tR\\t\\b\\x8f\\t\\x01 \\f$\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\x14$\\f \\f\\xfe\\xfc\\x14\\x1c\\x1c\\x14\\x01\\x04\\f`\\x1c\\t\\bj/\\b\\b\\x1c\\t\\bT\\b\\b\\x8e\\t\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x19\\x00\\x00\\x016\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x1d\\x0176\\x16\\x1d\\x01\\x01\\xdb\\f\\x19\\x0e\\n\\xfe0\\n\\x0e\\x0e\\np\\n\\x0e\\x8b\\f\\x19\\x01\\x1c\\b\\x0e\\x0e\\xfe\\xf0\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n\\xc4X\\b\\x0e\\x0eD\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01 \\x01\\xc0\\x00\\t\\x00\\x11\\x00\\x1d\\x00\\x007\\x1627\\x15\\a\\x06\\\"/\\x01\\x022\\x16\\x14\\x06\\\"&4724#\\\"\\x06\\x15\\x142546p\\x11\\x1e\\x11\\x16\\x04\\f\\x04\\x16\\x1cxTTxT\\x90\\f\\f&6\\x18(\\x83\\x03\\x03\\x9d!\\x05\\x05!\\x01\\xdaTxTTx\\b\\x186&\\f\\f\\x1c(\\x00\\x00\\x00\\x00\\x03\\xff\\xf9\\xff\\xc0\\x02\\a\\x01\\xc0\\x00\\x1a\\x00$\\x009\\x00\\x00\\x01\\x16\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x0132\\x17\\x0353\\x15\\x14\\x06+\\x01\\\"&\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"/\\x01&?\\x016;\\x0153\\x15\\x01\\xfb\\f\\f+\\t\\x0e\\xfe\\u007f\\n\\x0e\\x0e\\n\\xa8\\t\\a \\a\\t\\x99\\x0e\\t\\xf0@\\t\\a \\a\\t\\xe8\\n\\x0e\\x0e\\n\\xfe\\u007f\\x0e\\t+\\f\\f+\\t\\x0e\\x99@\\x01k\\v\\v,\\t\\x0e\\nP\\n\\x0e\\x10\\a\\t\\t\\a\\x10\\t\\xfe9pp\\a\\t\\t\\x01\\x17\\x0e\\nP\\n\\x0e\\t,\\v\\v,\\t  \\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xde\\x02@\\x01\\xa1\\x00\\n\\x00\\x0e\\x00\\x1a\\x00\\x00\\x114>\\x01?\\x01\\x11\\a\\x06&57\\x11\\x17\\x11\\x136\\x1e\\x01\\x15\\x11\\x14\\x0e\\x01\\x0f\\x01\\x11\\x05\\n\\x05\\x8c\\x8a\\b\\x0e\\xc0\\xc0\\xaa\\x06\\t\\a\\x05\\n\\x05\\x8c\\x01J\\x06\\f\\n\\x028\\xfe\\x80?\\x03\\n\\b0\\x01\\x80@\\xfe\\x80\\x01\\xbf\\x02\\x03\\b\\x06\\xfe\\xa6\\x06\\f\\n\\x028\\x01\\x80\\x00\\x01\\x00\\x00\\xff\\xbd\\x02\\x00\\x01\\xc0\\x00\\x15\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\a\\x06&=\\x01#\\\"&5\\x11463\\x01\\xc0\\x1a&&\\x1a\\x90}\\x06\\r`\\x1a&&\\x1a\\x01\\xc0&\\x1a\\xfe\\xe0\\x1a&^\\x04\\a\\aT&\\x1a\\x01 \\x1a&\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x99Α\\x91Α\\xe8\\t\\a0\\a\\t\\t\\a0\\a\\tp\\t\\a0\\a\\t\\t\\a0\\a\\t\\x01\\xb8\\x91Α\\x91η\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0554&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x99Α\\x91Α\\x01X\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\x01\\xb8\\x91Α\\x91η\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x11\\x00\\x19\\x00!\\x00)\\x00\\x00\\x013\\x11\\x14\\x06#!\\\"&5\\x1135462\\x16\\x15#\\x15354&\\\"\\x06\\x16264&\\\"\\x06\\x14\\x06264&\\\"\\x06\\x14\\x01``/!\\xfe\\xe0!/`KjK\\xc0\\x80&4&\\x96\\x14\\x0e\\x0e\\x14\\x0e\\xb2\\x14\\x0e\\x0e\\x14\\x0e\\x01 \\xfe\\xf0!//!\\x01\\x10 5KK5  \\x1a&&\\x92\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa2\\x00*\\x006\\x00B\\x00N\\x00\\x00%\\x15\\x14\\x06+\\x01\\a\\x0e\\x02#!\\\"&/\\x01#\\\"&=\\x0146;\\x017>\\x01\\x1e\\x01\\x0f\\x013'&>\\x01\\x16\\x1f\\x0132\\x16\\x0554&\\\"\\x06\\x1d\\x01\\x14\\x1626754&\\\"\\x06\\x1d\\x01\\x14\\x1626'54&\\\"\\x06\\x1d\\x01\\x14\\x1626\\x02@\\x0e\\n\\b\\x1a\\x02\\r\\x15\\f\\xfe\\x94\\x12\\x1b\\x03\\x1a\\b\\n\\x0e\\x0e\\nCk\\b\\x1a\\x16\\x04\\bP\\xecP\\b\\x04\\x16\\x1a\\bkC\\n\\x0e\\xfe\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\x0ep\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\xe0\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\xe8\\x10\\n\\x0e\\xb7\\v\\x13\\v\\x17\\x12\\xb7\\x0e\\n\\x10\\n\\x0e\\x93\\v\\x04\\x10\\x1a\\vmm\\v\\x1a\\x10\\x04\\v\\x93\\x0e\\xbap\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\np\\n\\x0e\\x0e\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x01\\xc1\\x01\\xa0\\x00C\\x00G\\x00\\x00\\x01\\x06+\\x01\\a32\\x16\\x0f\\x01\\x06+\\x01\\a\\x06+\\x01\\\"&?\\x01#\\a\\x06+\\x01\\\"&?\\x01#\\\"&?\\x016;\\x017#\\\"&?\\x016;\\x0176;\\x012\\x16\\x0f\\x01376;\\x012\\x16\\x0f\\x0132\\x16\\x0f\\x017#\\a\\x01\\xb9\\x02\\nO\\x17K\\x05\\b\\x01\\b\\x01\\nP\\x0f\\x02\\n(\\x06\\a\\x01\\x0eb\\x10\\x01\\n)\\x06\\a\\x01\\x0fK\\x06\\a\\x01\\a\\x02\\nO\\x17K\\x05\\b\\x01\\b\\x01\\nP\\x0f\\x02\\n(\\x06\\a\\x01\\x0eb\\x10\\x01\\n)\\x06\\a\\x01\\x0fK\\x06\\a\\x01\\xba\\x17c\\x17\\x01\\n\\n\\x80\\t\\x05(\\nV\\n\\t\\x05RV\\n\\t\\x05R\\t\\x05(\\n\\x80\\t\\x05(\\nV\\n\\t\\x05RV\\n\\t\\x05R\\t\\x05\\xb2\\x80\\x80\\x00\\x00\\x05\\xff\\xfc\\xff\\xc0\\x01\\xc4\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00-\\x00\\x006\\\"&462\\x16\\x14&\\\"\\x06\\x14\\x16264\\x162\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x1332\\x16\\a\\x01\\x06+\\x01\\\"&7\\x016\\x9e\\\\BB\\\\B\\\\(\\x1c\\x1c(\\x1c\\x82\\\\BB\\\\B\\\\(\\x1c\\x1c(\\x1ch \\x0e\\x0e\\b\\xfe\\x91\\a\\f\\\"\\x0e\\x0e\\t\\x01p\\a\\xe0B\\\\BB\\\\^\\x1c(\\x1c\\x1c(\\xc4B\\\\BB\\\\^\\x1c(\\x1c\\x1c(\\x01\\xa4\\x1a\\f\\xfe0\\n\\x1a\\f\\x01\\xd0\\n\\x00\\x05\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00G\\x00\\x00\\x00\\\"\\x06\\x14\\x16264$2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&46\\\"\\x06\\x14\\x16264\\x17>\\x01.\\x01\\a\\x06\\\"'&\\x0e\\x01\\x16\\x17\\x16\\x17\\x14\\x0e\\x01\\a\\x06\\x1e\\x0167673\\x16\\x17\\x1e\\x01>\\x01'.\\x0256\\x01V\\xaczz\\xacz\\xfe\\xc9Α\\x91Α\\xa8\\xa0pp\\xa0p\\xcf\\x1e\\x15\\x15\\x1e\\x15R\\x06\\a\\x03\\v\\aHLH\\a\\v\\x03\\a\\x065\\x1d\\t\\x06\\n\\x02\\x06\\x0e\\r\\x03\\x12\\x04\\n\\x04\\x12\\x03\\r\\x0e\\x06\\x02\\n\\x06\\t\\x1d\\x01\\x90z\\xaczz\\xac\\xa2\\x91Α\\x91\\xceYp\\xa0pp\\xa0D\\x15\\x1e\\x15\\x15\\x1eM\\x01\\f\\r\\a\\x02\\x11\\x11\\x02\\a\\r\\v\\x02\\f\\x04/A\\x13\\x18\\a\\x0e\\x05\\x06\\x06.!!.\\x06\\x06\\x05\\x0e\\a\\x18\\x13A/\\x04\\x00\\x04\\x00\\x00\\xff\\xbd\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x13\\x00\\x1b\\x00B\\x00\\x00\\x05\\x06#\\\"/\\x0167\\x17\\x16\\x15\\x14'\\x17\\x16\\x0e\\x01&/\\x01\\x12\\\"&462\\x16\\x14\\x17\\x16\\x06\\a\\x06&/\\x01&#\\\"\\x15\\x14\\x1f\\x01\\x15\\a\\x0e\\x01.\\x01?\\x015\\a\\x15\\x14\\x06#\\\"&=\\x0176;\\x012\\x17\\x01|\\x02\\x02\\x05\\x02}\\b\\x05~\\x01\\xf1?\\x05\\v\\x18\\x19\\x05$\\x04$\\x1a\\x1a$\\x1ao\\x06\\x02\\b\\a\\x14\\af\\x01\\x02\\x04\\x01\\x1fB\\x04\\x18\\x19\\f\\x056\\x10\\x0e\\n\\n\\x0e=\\a\\f \\f\\a?\\x01\\x04\\xce\\x03\\a\\xd0\\x02\\x02\\x05Ú\\f\\x19\\n\\v\\fX\\x01<\\x1a$\\x1a\\x1a$\\xc3\\b\\x14\\x06\\x06\\x02\\b\\x81\\x02\\x04\\x02\\x01'l\\xb5\\f\\f\\t\\x18\\r\\x95\\x8c\\x14P\\n\\x0e\\x0e\\v_O\\t\\t\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x06\\x00\\x0e\\x00\\x1e\\x007\\x00G\\x00\\x007\\x17#767\\x1672\\x16\\x15\\x14+\\x0157\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x05'&+\\x01\\\"\\x0f\\x01\\x06\\x1e\\x02;\\x012?\\x013\\x17\\x16;\\x012>\\x0174.\\x01+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\xa3\\t\\x1a\\t\\x02\\x02\\x02\\xa8\\x16\\x19/\\x0e\\xc5\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe\\xf59\\x02\\t$\\b\\x039\\x01\\x01\\x03\\x05\\x03\\x1d\\t\\x03\\b4\\b\\x03\\t\\x1d\\x04\\x06\\x03\\xb7\\x18-\\x1e9\\x05\\a\\a\\x059.5\\xd1\\x1e\\x1e\\x06\\n\\n\\x1a\\x19\\x181b_\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\x1c\\xf4\\xa8\\b\\b\\xa8\\x03\\x06\\x04\\x03\\t\\x1e\\x1e\\t\\x05\\aT\\x1e+\\x17\\a\\x05\\xa8\\x05\\a4\\x00\\x04\\xff\\xf4\\xff\\xc0\\x01\\x81\\x01\\xc6\\x00!\\x003\\x00C\\x00S\\x00\\x00\\x17.\\x01676\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"#'\\x06\\x177232\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"\\x13\\x16\\x14\\a\\x0e\\x01/\\x01&764'&?\\x016\\x167\\x16\\x14\\a\\x06/\\x01&764'&?\\x016\\a\\x16\\x14\\a\\x06/\\x01&764'&?\\x016a@-.?\\n\\f@\\b\\x01 \\x04\\f\\x01\\x018  8\\x01\\x01\\f\\x04 \\x01\\b@\\x05\\x05\\a\\x91\\t\\t\\x03\\v\\x05\\x06\\x06\\x04\\x04\\x04\\x04\\x06\\x06\\x05\\v_--\\b\\n\\x05\\t\\b%%\\b\\t\\x05\\n&\\x1b\\x1b\\b\\n\\x06\\b\\a\\x14\\x14\\a\\b\\x06\\n;@\\xab\\xab@\\n\\b(\\x05\\n\\x03\\x03Q\\v\\x06ZZ\\x06\\vQ\\x03\\x03\\n\\x05(\\x03\\x01\\xa1\\x10\\\"\\x10\\x05\\x01\\x04\\x06\\x06\\b\\a\\x10\\a\\b\\x06\\x06\\x04\\x01V6\\x8c6\\n\\t\\x06\\b\\b-t-\\b\\b\\x06\\t7#X#\\n\\t\\x06\\a\\b\\x1aB\\x1a\\b\\a\\x06\\t\\x00\\x00\\f\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00G\\x00O\\x00W\\x00_\\x00\\x006\\x14\\x06\\\"&462\\x062\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x042\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x122\\x16\\x14\\x06\\\"&4\\x80%6%%6(\\x1a\\x13\\x13\\x1a\\x13\\x056%%6%\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x056%%6%\\x01\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x056%%6%\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xdb6%%6%\\xc0\\x13\\x1a\\x13\\x13\\x1a\\x01s%6%%6\\x9b\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x01s%6%%6\\x9b\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x01s%6%%6\\x9b\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x01S\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x13\\x008\\x00@\\x00H\\x00`\\x00d\\x00\\x007\\x14\\x06\\\"&5462\\x16\\x15\\x14\\x06\\\"&54&\\\"\\x06&2\\x16\\x15\\x14\\x0e\\x03\\x15\\x14\\x06#\\\"&4632654>\\x0254&\\\"\\x06\\x15\\x14\\x06\\\"&54\\x162\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4%\\x14\\x06\\\"&54=\\x01.\\x01'.\\x017>\\x03\\x17\\x1e\\x01\\x17\\x14\\x05\\a'7\\xd8\\x10\\x18\\x10/B/\\x10\\x18\\x10\\x0e\\x14\\x0e1\\x92g\\x0f\\x15\\x15\\x0f?-\\f\\x10\\x10\\f\\x16\\x1e\\x17\\x1b\\x16FdF\\x10\\x18\\x10S\\x1a\\x13\\x13\\x1a\\x13m\\x1a\\x13\\x13\\x1a\\x13\\x02\\x00\\x10\\x18\\x10\\x01Q@\\v\\n\\x03\\x02\\b\\t\\f\\x05Qf\\x01\\xfe\\x99\\\"P\\\"\\xbc\\f\\x10\\x10\\f!//!\\f\\x10\\x10\\f\\n\\x0e\\x0e\\xa6gI\\x1b+\\x1a\\x14\\x13\\t-?\\x10\\x18\\x10\\x1e\\x16\\x19%\\x13&\\x192FF2\\f\\x10\\x10\\fI\\x85\\x13\\x1a\\x13\\x13\\x1am\\x13\\x1a\\x13\\x13\\x1a\\xcf\\f\\x10\\x10\\f\\x02\\x01\\x01Do\\x16\\x04\\x15\\v\\x05\\t\\x04\\x01\\x02\\x1b\\x8cV\\x03\\xb5\\\"P\\\"\\x00\\x00\\x00\\x04\\xff\\xfa\\xff\\xc6\\x02\\x86\\x01\\xba\\x002\\x00A\\x00t\\x00\\x82\\x00\\x00\\x01&\\a2\\x17\\x16\\x06#2\\x16\\a\\x0e\\x01#'\\a\\x06&/\\x01&?\\x02676\\x1e\\x01\\x06\\a\\x06\\a676\\x16\\x17\\x16\\x0e\\x01\\a\\x06\\a6\\x17\\x1e\\x01\\a\\x0e\\x01\\a&#\\\"\\x06\\x15\\x14\\x1e\\x0132763&%\\x16\\x0f\\x02\\x06\\a\\x06.\\x016767\\x06\\a\\x06&'&>\\x01767\\x06'.\\x017>\\x01\\x17\\x167\\\"'&63\\\"&7>\\x013\\x1776\\x16\\x17\\a\\\"\\a\\x06#\\x16\\x17\\x1632654&\\x01# !=\\x18\\a\\x10\\x0e\\x0e\\x10\\a\\v+\\x1a^C\\a\\x0e\\x03,\\b\\x0f:)\\nF\\b\\x16\\x0e\\x02\\b\\x14\\r\\\"(\\v\\x12\\x01\\x01\\x05\\f\\a\\x17\\x15-+\\n\\a\\x05\\x05\\x15%\\n\\x16\\x0f\\x14\\n\\x10\\t\\x16\\n\\a\\x11\\x11\\x01p\\b\\x0f:)\\nF\\b\\x16\\x0e\\x02\\b\\x14\\r\\\"(\\t\\x14\\x01\\x01\\x05\\f\\a\\x17\\x15-+\\n\\a\\x05\\x05\\x15\\t !=\\x18\\a\\x10\\x0e\\x0e\\x10\\a\\v+\\x1c\\\\C\\a\\x0e\\x03\\xb9\\x16\\n\\a\\x11\\x11\\a\\n\\x16\\x0f\\x14\\x15\\x01\\x03\\x10\\f3\\r\\x19\\x19\\r\\x17\\x1c\\t!\\x04\\x05\\x06Y\\x0f\\t!JZ9\\a\\x02\\x11\\x16\\a\\x11\\x13\\x17\\x05\\x02\\x0e\\v\\a\\r\\t\\x01\\x02\\r\\n\\x15\\x05\\x15\\n\\n\\aA\\x15\\x15\\x0f\\n\\x11\\b\\x14\\x0f\\x014\\x10\\b!JZ9\\a\\x02\\x11\\x16\\a\\x11\\x13\\x17\\x05\\x02\\r\\f\\a\\r\\t\\x01\\x02\\r\\n\\x15\\x05\\x15\\n\\n\\a\\x05\\x10\\f3\\r\\x19\\x19\\r\\x17\\x1c\\t!\\x04\\x05\\x06G\\x14\\x0f\\x01\\x0f\\x14\\x15\\x0f\\x0f\\x14\\x00\\x00\\x00\\x00\\x04\\xff\\xfb\\xff\\xc0\\x02\\x05\\x01\\xc5\\x00\\x13\\x008\\x00D\\x00Q\\x00\\x007\\x14\\x06\\\"&5462\\x16\\x15\\x14\\x06\\\"&54&\\\"\\x06&2\\x16\\x15\\x14\\x0e\\x03\\x15\\x14\\x06#\\\"&4632654>\\x0254&\\\"\\x06\\x15\\x14\\x06\\\"&54%\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x17\\x01\\x17\\x16\\x0f\\x01\\x06\\\"/\\x01&?\\x016\\xd8\\x10\\x18\\x10/B/\\x10\\x18\\x10\\x0e\\x14\\x0e1\\x92g\\x0f\\x15\\x15\\x0f?-\\f\\x10\\x10\\f\\x16\\x1e\\x17\\x1b\\x16FdF\\x10\\x18\\x10\\x01\\xbc\\t\\tW\\b\\t\\x1c\\b\\bW\\t\\b\\xfe\\xc9\\x1c\\t\\t\\x94\\x04\\n\\x03\\x1c\\t\\t\\x94\\b\\xbc\\f\\x10\\x10\\f!//!\\f\\x10\\x10\\f\\n\\x0e\\x0e\\xa6gI\\x1b+\\x1a\\x14\\x13\\t-?\\x10\\x18\\x10\\x1e\\x16\\x19%\\x13&\\x192FF2\\f\\x10\\x10\\fI\\x9b\\b\\tW\\b\\b\\x1c\\t\\bW\\t\\t\\xfe\\xc9\\x1c\\t\\b\\x94\\x04\\x04\\x1c\\b\\t\\x94\\t\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x01\\xc0\\x01\\xc2\\x002\\x00?\\x00k\\x00\\x00\\x1746;\\x015#\\\"&546;\\x015#\\\"&546;\\x015#\\\"&746;\\x01'.\\x01>\\x01\\x1f\\x01\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06+\\x01\\\"&7'&676\\x16\\x1f\\x01\\x06\\x16\\x1f\\x017\\x141\\x14\\x0f\\x0154/\\x01&\\a'&676\\x16\\x1f\\x017'&676\\x16\\x1f\\x017'&676\\x16\\x1f\\x01'&>\\x01\\x16\\x15[\\x11\\r>~\\f\\x11\\x11\\v\\u007f\\x9a\\f\\x11\\x11\\f\\x9a}\\f\\x12\\x01\\x10\\f\\xa9\\x1f\\n\\x04\\x0e\\x18\\t|\\x0e\\x0f\\fP\\x10\\x10k\\f\\x10I%\\a\\x03\\t\\t\\x18\\b\\r\\r\\x02\\x0e\\v\\xf7\\r=\\x12{\\x15\\x154\\a\\x03\\t\\n\\x17\\aN\\x04^\\b\\x03\\n\\t\\x17\\a_\\x05M\\b\\x03\\n\\t\\x17\\bg\\x01\\x01\\x11\\x17\\x12$\\f\\x11\\x06\\x11\\f\\f\\x10\\x06\\x11\\f\\v\\x11\\x06\\x11\\f\\v\\x11\\x16\\a\\x18\\x13\\x03\\x06Z\\n\\x12\\x8d\\f\\x13\\x02\\x13\\x04\\x10\\xee.\\n\\x17\\a\\b\\x03\\n\\x11\\v#\\n\\b\\x02\\x01\\x11\\n0\\x11\\x16\\fZ\\x0f\\x0eC\\t\\x18\\b\\a\\x03\\nc\\x03y\\n\\x18\\a\\a\\x03\\tz\\x04b\\n\\x18\\a\\a\\x03\\t\\x85&\\f\\x11\\x01\\x10\\f\\x00\\x00\\x00\\x02\\xff\\xf8\\xff\\xbe\\x02@\\x01\\xc2\\x00-\\x00E\\x00\\x00%\\x16\\x14\\a\\x06\\a\\x17\\x16\\x06\\x0f\\x01\\x06&'\\x03\\x06\\a\\x13\\x06#\\\"/\\x02\\x06\\a\\x17&'&767'&6?\\x016\\x16\\x1f\\x01632\\x16\\a654&#\\\"\\a\\x176\\x17\\\"\\x06\\x15\\x14\\x1e\\x013265\\x16\\x06\\a\\x029\\a\\a1W+\\x05\\x03\\b\\r\\b\\x14\\x06\\xfc\\x14\\x12\\xbe\\x12\\x11\\x16\\x16)w\\x10\\r}q<\\x0f\\x0f1W+\\x05\\x03\\b\\r\\b\\x14\\x065(*Y\\x95\\x88\\\"P8\\x1a\\x18\\x13*&\\x12\\x19\\v\\x14\\f\\x12\\x19\\x0e\\x05\\x12\\xd8\\v\\x1a\\vT+:\\b\\x14\\x05\\n\\x05\\x03\\b\\x01e\\t\\r\\xfe\\xf1\\x02\\x03:\\xab\\x11\\x13\\xb2(f\\x18\\x18T+:\\b\\x14\\x05\\n\\x05\\x03\\bH\\nW\\xbb'38P\\t\\x1c\\r\\x14\\x19\\x12\\f\\x13\\f\\x19\\x12\\x1a=\\x19\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xfd\\x02\\x80\\x01\\x80\\x00\\x19\\x00 \\x00(\\x00/\\x007\\x00W\\x00\\x00\\x012\\x1f\\x01\\x15&/\\x0176'&\\\"\\x0f\\x01\\x15\\x06&'&475763\\x173\\x11#\\\"&5:\\x0164&\\\"\\x06\\x14\\x05\\x113\\x15\\x14\\x06#&\\\"\\x06\\x14\\x16264\\x05\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x0e\\x01/\\x01\\x0e\\x01/\\x01#576;\\x01\\a\\x0e\\x01\\x17\\x1e\\x01?\\x01\\x01\\xb3\\r\\t7\\x04\\x04\\x92\\x1a\\f\\n\\x05\\r\\x05P\\r\\\"\\n\\n\\rb\\t\\r\\xc3`@\\r\\x13)\\x0e\\t\\t\\x0e\\t\\xfd\\xc0`\\x13\\r\\t\\x0e\\t\\t\\x0e\\t\\x01\\xa4\\n\\x03\\t\\t\\b\\x1b\\n\\x05 \\t\\x1f\\f\\x12\\x115\\x14[\\x127\\t\\rTR\\x16\\x02\\x14\\x14;\\x17\\x1e\\x01\\x80\\t7\\xc2\\x05\\x03v\\x18\\v\\f\\x05\\x04I\\x01\\n\\x02\\v\\f!\\v\\x01Z\\b@\\xff\\x00\\x13\\r\\t\\x0e\\t\\t\\x0e)\\x01\\x00\\xe0\\r\\x13@\\t\\x0e\\t\\t\\x0e\\n\\b\\x1a\\v\\f\\n\\x03\\t\\x04&\\f\\x04\\n\\x10\\x15\\x06\\x11R\\xe07\\tK\\x14<\\x16\\x15\\x03\\x14\\x1b\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x1a\\x00F\\x00\\x00\\x05\\x14\\x06#!\\\"&5\\x1147670>\\x0232\\x1e\\x021\\x16\\x17\\x16\\x15\\a&\\a\\x06\\a0\\x0e\\x02#\\\".\\x03'&'&\\x0f\\x01\\x06\\x15\\x14\\x17\\x16\\x17\\x1e\\x042>\\x03767654'\\x02\\x00\\x1c\\x14\\xfe`\\x14\\x1c\\x12)|\\x1c\\x0e\\x17\\b\\b\\x17\\x0e\\x1c|)\\x12B\\x04\\a#G\\x1c\\x0e\\x17\\b\\a\\x10\\x11\\r\\x12\\x02G#\\a\\x04\\t\\x02\\x03$F\\x02\\x16\\x0e\\x17\\x15\\x14\\x15\\x17\\x0e\\x16\\x02F$\\x03\\x02\\x10\\x14\\x1c\\x1c\\x14\\x01\\a\\x18\\x0e Z\\x15\\t\\v\\v\\t\\x15Z \\x0e\\x18B\\x06\\x04\\x1b3\\x15\\t\\v\\x06\\v\\t\\x0e\\x013\\x1b\\x04\\x06\\x0e\\x02\\x02\\x04\\x03\\x1a2\\x02\\x11\\n\\r\\x06\\x06\\r\\n\\x11\\x022\\x1a\\x03\\x04\\x02\\x02\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00'\\x00/\\x00D\\x00\\x00\\x01#\\x1532\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1d\\x01\\x14&\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x0e\\x01\\x1d\\x01\\x14\\x16;\\x0126\\x01\\xb4\\x14\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c\\x14\\f\\xd64&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x12\\x1f\\x12\\r\\t\\xb4\\t\\r\\x01 @\\f(\\f@\\f(\\f0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f &4&&4\\xc7\\x13\\x18\\\"\\b\\b\\x0f\\x1b\\x10\\x13\\b\\v\\v\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00+\\x007\\x00C\\x00O\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x9a4&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x1c'\\r\\t\\xb4\\t\\r\\xe0\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c`&4&&4\\xc7\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\v=\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\x14\\x16264\\x0227.\\x01#\\\"\\a\\x06\\\"'&#\\\"\\x06\\a\\x91Α\\x91Α\\x01\\x1cH44H4\\xb1\\xb29\\x0e4 \\x03\\x04\\x15(\\x15\\x04\\x03 4\\x0e\\x01\\xb8\\x91Α\\x91\\xce14H44H\\xfe\\xdcD\\x1b!\\x01\\a\\a\\x01!\\x1b\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1b\\x00#\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\\"\\x06\\x14\\x16;\\x01264&#\\x06\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14`\\a\\t\\t\\a`\\a\\t\\t\\a\\x164&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x1c'\\r\\t\\xb4\\t\\r\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c \\t\\x0e\\t\\t\\x0e\\t\\x80&4&&4\\xc7\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\v\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\x13\\x00\\x1f\\x00+\\x007\\x00?\\x00R\\x00\\x00\\x012\\x16\\x1d\\x01!5463\\x03\\x11!\\x11\\x14\\x06#!\\\"&%\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"&\\\"\\x06\\x14\\x16264\\a\\x06\\x16;\\x0126'.\\x01+\\x01\\x06\\\"'#\\\"\\x0e\\x01\\x02\\x10\\x14\\x1c\\xfd\\xc0\\x1c\\x140\\x02@\\x1c\\x14\\xfe \\x14\\x1c\\x01`\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\x964&&4&\\xad\\x02\\n\\b\\xba\\b\\n\\x02\\x06\\\"\\x15\\b\\x13*\\x13\\b\\x0e\\x19\\x12\\x01\\xa0\\x1c\\x14\\x10\\x10\\x14\\x1c\\xfep\\x010\\xfe\\xd0\\x14\\x1c\\x1c\\xfc\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\x80&4&&4\\xa6\\a\\r\\f\\b\\x13\\x19\\b\\b\\v\\x14\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x12\\x003\\x00C\\x00\\x00\\x13\\x15\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x032654.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x0137\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x16\\xe0 K5\\x015J 8P8`!/\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15A%6% \\x13\\x1a\\x13 \\x01`\\xcb%05KL50$\\xcb(88\\xfeh/!\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16P\\x1b%%\\x1b%\\x12\\xe9\\r\\x13\\x13\\r\\xe9\\x12\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x0f\\x00\\\"\\x00C\\x00\\x007\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x167\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6% \\x13\\x1a\\x13   K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/@\\x1b%%\\x1b%\\x12\\xa9\\r\\x13\\x13\\r\\xa9\\x120%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x0f\\x00\\\"\\x00C\\x00\\x007\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x167\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6% \\x13\\x1a\\x13   K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/@\\x1b%%\\x1b%\\x12i\\r\\x13\\x13\\ri\\x120%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\x0f\\x00\\\"\\x00C\\x00\\x007\\x14\\x06\\\"&5475462\\x16\\x1d\\x01\\x167\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6% \\x13\\x1a\\x13   K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/@\\x1b%%\\x1b%\\x12)\\r\\x13\\x13\\r)\\x120%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00\\a\\x00\\x1a\\x00;\\x00\\x006\\x14\\x06\\\"&4627\\x16\\x15\\x14\\x06#0#\\\"&5475462\\x16\\x15\\x034.\\x06'54&\\\"\\x06\\x1d\\x01\\x0e\\a\\x15\\x14\\x1e\\x01;\\x0126\\xc0%6%%6E K5\\x015J 8P8\\x10\\x02\\x02\\x06\\x03\\a\\x03\\b\\x01\\x1c(\\x1c\\x01\\b\\x03\\a\\x03\\x06\\x02\\x02\\x15%\\x15\\x01!/[6%%6%\\x15%05KL50$\\xcb(88(\\xfe\\xe0\\x06\\f\\t\\v\\x06\\t\\x04\\t\\x01\\xdd\\x14\\x1c\\x1c\\x14\\xdd\\x01\\n\\x03\\t\\x06\\v\\t\\v\\a\\x15%\\x16/\\x00\\x10\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00G\\x00O\\x00W\\x00_\\x00g\\x00o\\x00w\\x00\\xab\\x00\\x00$2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x16\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14&2\\x16\\x14\\x06\\\"&46\\\"&462\\x16\\x14\\x06462\\x16\\x14\\x06\\\"&2\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&4\\x062\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&47\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01.\\x01547'&#\\\"#\\x0e\\x01\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x114632\\x16\\x1f\\x01632\\x1e\\x01\\x17762\\x17\\x01)\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t\\x97\\x0e\\t\\t\\x0e\\t@\\t\\x0e\\t\\t\\x0e \\x0e\\t\\t\\x0e\\ti\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t\\x17\\x0e\\t\\t\\x0e\\t7\\x0e\\t\\t\\x0e\\t\\x17\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t&\\x04\\x04\\xaa\\x04\\x0e\\x04\\f\\x04\\x04\\x06\\r\\x13\\x0e\\n\\x11\\x18\\x04\\x04\\x16\\x1d\\t\\a \\a\\tI2\\x152\\x0f\\n\\x1a\\x1b\\f\\x1e\\x1b\\t\\x06\\x04\\x0e\\x04\\x80\\t\\x0e\\t\\t\\x0ei\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e \\x0e\\t\\t\\x0e\\t@\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0eI\\t\\x0e\\t\\t\\x0e\\xe3\\x04\\x0e\\x04\\xaa\\x04\\x04\\f\\x04\\x0e\\x04\\x06\\r.\\x13\\x1b\\x1a\\n\\x11\\x03$\\x17\\xfe\\xce\\a\\t\\t\\a\\x01/4M\\x15\\x0f\\n\\x0e\\t\\x0e\\t\\x06\\x04\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x1b\\x00M\\x00\\x0075!\\x15\\x14\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x01%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0154632\\x16\\x1f\\x016\\x1762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&47&7'&\\\"\\x06\\x1d\\x01 \\x01\\xc0\\x13\\r\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\r\\x13\\x01\\xd0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x10)\\x1c\\f\\x1d\\b\\x13-#\\x05\\r\\x05\\v\\x05\\x05i\\x05\\r\\x05\\v\\x05\\x05\\x1c\\x14\\x14\\x06\\x12\\f@00\\x12)\\f)\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a)\\f)\\x92\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xbb\\x1c)\\f\\b\\x14\\x14\\x1c\\x05\\x05\\v\\x05\\r\\x05i\\x05\\x05\\v\\x05\\r\\x05#,\\x14\\x06\\f\\t\\xbb\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00+\\x00Q\\x00Y\\x00\\x00\\x05\\x06\\\"'.\\x01542\\x15\\x14\\x06'\\x16\\a\\x06\\a\\x06'&546\\x17\\x1e\\x01\\x17\\x16\\a\\x06'&'&7654&\\a\\x0e\\x01\\a\\x06\\x122\\x16\\x15\\x14\\x06\\a\\x06&767>\\x0154.\\x03#\\\"\\x06\\x15\\x14\\x16\\x17\\x16\\x15\\x16\\x17\\x16\\x06'.\\x0154\\x162\\x16\\x14\\x06\\\"&4\\x01\\v\\x06J\\x06\\a\\x0e\\x80\\x0eu\\x05\\x06\\x0e\\a\\x04\\x05.W=9R\\x01\\x020\\x05\\x04\\a\\x0e\\x06\\x05\\x1d;)%5\\x02\\x02\\x05\\xba\\x83F8\\x03\\x06\\x01\\x04\\x01%,\\x12!+6\\x1cIg*$\\x03\\x01\\x04\\x01\\x06\\x039E\\xc56%%6%)\\x17\\x17\\x19U\\x17,,\\x17U\\xaf\\x05\\x04\\n\\x0f\\b\\x06+>=U\\x02\\x02Q9A,\\x06\\b\\x0f\\n\\x04\\x05\\x1d()9\\x02\\x025%+\\x01\\x03\\x83]Bl\\x1b\\x02\\x04\\x04\\x1b\\x14\\x18N.\\x1d5, \\x12gH-N\\x18\\x02\\x03\\x13\\x19\\x04\\x04\\x02\\x1blB]\\x1d%6%%6\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0554#!\\\"\\x1d\\x01\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x90\\f\\xfe\\x98\\f\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xa0T\\f\\fT\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x00`\\x00\\x0f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14`\\x1c\\x14 \\x14\\x1c\\x1c\\x14 \\x14\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x11\\x00!\\x00)\\x00\\x00\\x01\\x11\\x14\\x06+\\x0154&+\\x015463!2\\x16\\a\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a4+\\x01\\\"\\x1d\\x013\\x02\\x00\\x1c\\x140/!\\xd0\\x1c\\x14\\x01 \\x14\\x1c\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1cD\\f\\xe4\\f\\xfc\\x01\\x90\\xfe\\xe0\\x14\\x1c\\xd0!/0\\x14\\x1c\\x1c\\x94\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\x1c0\\f\\f4\\x00\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\u007f\\x00\\x8f\\x00\\x00\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x17\\x15\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01532\\x1d\\x0132%3\\x15#\\\"=\\x01#\\\"=\\x014;\\x015473\\x15#\\\"=\\x01#\\\"=\\x014;\\x015473\\x15#\\\"=\\x01#\\\"=\\x014;\\x015473\\x15#\\\"=\\x01#\\\"=\\x014;\\x0154\\x01\\xa0\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c`\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\xfe\\x1e**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x06**\\x06\\x12\\x06\\x06\\x12\\x01\\x90\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1cN\\f\\x06\\x06\\x060\\x06\\x06f\\f\\x06\\x06\\x060\\x06\\x06f\\f\\x06\\x06\\x060\\x06\\x06f\\f\\x06\\x06\\x060\\x06\\x06\\f0\\x06\\x06\\x06\\f\\x06\\x06\\x06`0\\x06\\x06\\x06\\f\\x06\\x06\\x06`0\\x06\\x06\\x06\\f\\x06\\x06\\x06`0\\x06\\x06\\x06\\f\\x06\\x06\\x06\\x00\\x00\\x00\\x00\\x01\\xff\\xfa\\xff\\xc0\\x01\\xc6\\x01\\xc0\\x00\\xa7\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x06/\\x01\\x17\\x16\\x06\\x0f\\x01\\x06&/\\x02\\x15\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a\\x06\\\"/\\x01&4?\\x015\\x0f\\x01\\x0e\\x01/\\x01.\\x01?\\x01\\a\\x06/\\x01&?\\x01'.\\x01?\\x01>\\x01\\x1f\\x017'\\a\\x06&/\\x01&6?\\x01'&?\\x016\\x1f\\x01'&>\\x01?\\x016\\x1e\\x01\\x1f\\x025'&4?\\x016\\x1f\\x01546;\\x012\\x16\\x1d\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x15?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x1776\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xb8\\x06\\x03\\x03\\x10\\a\\x0e!\\x06\\x02\\x06\\x06\\x0f\\x06\\f\\x01\\x13?5\\x05\\x05\\v\\x05\\r\\x04\\x14\\n\\x06 \\a\\t\\x14\\x05\\r\\x04\\f\\x05\\x056?\\x13\\x02\\v\\x06\\x0f\\x06\\x06\\x01\\a!\\x0e\\a\\x10\\b\\x0e\\\"\\x1a\\a\\x06\\x02\\x04\\x01\\v\\aF@@F\\a\\v\\x01\\x04\\x02\\x06\\a\\x1a\\\"\\x0e\\b\\x10\\a\\x0e!\\x06\\x02\\x03\\x05\\x04\\x0f\\x04\\b\\x06\\x01\\x13?6\\x04\\x04\\f\\v\\v\\x14\\t\\a \\a\\t\\x14\\x04\\x0e\\x04\\f\\x04\\x046?\\x13\\x01\\f\\x06\\x0f\\x06\\x06\\x02\\x06!\\x0e\\a\\x10\\a\\r\\\"\\x1a\\a\\x06\\x02\\x04\\x01\\v\\aF@@F\\a\\v\\x01\\x04\\x02\\x06\\a\\x1ag\\x03\\r\\x05\\x1b\\r\\a\\x14\\x1a\\x06\\v\\x02\\x04\\x02\\a\\x06G$N5\\x05\\r\\x05\\v\\x05\\x05\\x13(\\a\\t\\t\\a(\\x13\\x05\\x05\\v\\x05\\r\\x046N$G\\x06\\a\\x02\\x04\\x01\\f\\x06\\x1a\\x14\\a\\r\\x1b\\r\\b\\x13\\a\\x02\\v\\x06\\x0f\\x06\\a\\x02\\x13%%\\x13\\x02\\a\\x06\\x0f\\x06\\v\\x02\\a\\x13\\b\\r\\x1b\\r\\a\\x14\\x1a\\x04\\b\\x06\\x01\\x04\\x01\\x02\\x06\\x04G$N5\\x05\\r\\x05\\v\\f\\f\\x13(\\a\\t\\t\\a(\\x13\\x05\\x05\\v\\x05\\r\\x055N$G\\x06\\a\\x02\\x04\\x02\\v\\x06\\x1a\\x14\\a\\r\\x1b\\r\\b\\x13\\a\\x02\\v\\x06\\x0f\\x06\\a\\x02\\x13%%\\x13\\x02\\a\\x06\\x0f\\x06\\v\\x02\\a\\x00\\x01\\xff\\xff\\xff\\xbf\\x02\\t\\x01\\xc9\\x00\\x14\\x00\\x00\\x01\\x16\\x06\\a\\x0e\\x01'\\a\\x06\\\"/\\x01&4?\\x01&67>\\x01\\x01\\xe0(\\x140$X%\\xc0\\b\\x17\\t3\\b\\t\\xd7\\x15\\r$1\\x89\\x01\\xa0*\\x891$\\r\\x15\\xd7\\t\\b3\\t\\x17\\b\\xc0%X$0\\x14\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xa0\\x01\\xc1\\x00*\\x00<\\x00\\x00\\x13\\x16\\x15\\x14\\x06\\a\\x17\\x16\\x06+\\x01\\\"&?\\x01.\\x0254762\\x17\\x15\\x1627>\\x02562\\x17\\x16\\x17\\x1627562\\x13.\\x01>\\x0232\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&7\\xd0\\x10% \\r\\x01\\x0f\\n@\\n\\x0f\\x01\\r\\x15\\x1f\\x11\\x10\\x02,\\x02\\x01\\x0e\\x01\\x01\\x04\\x03\\x02,\\x02\\x01\\a\\x01\\x0e\\x01\\x02,y,\\\"\\x13*9\\x19\\n\\x0e\\x0e\\n8\\v\\x0e\\x01\\x01\\xb1_\\\"&7\\f\\xee\\n\\x0f\\x0f\\n\\xee\\b\\x1d*\\x1a\\\"_\\x0f\\x10\\x8e\\x02\\x02\\vG;\\x01\\x10\\x10\\b\\x86\\x02\\x02\\x8e\\x10\\xfe\\xd3#VLB&\\x0e\\n\\xfe0\\n\\x0e\\x10\\n\\x00\\x01\\x00\\b\\xff\\xc8\\x01\\xf9\\x01\\xb9\\x00&\\x00\\x00\\x012\\x1e\\x01\\x15\\x14\\x06#\\\"'&?\\x016\\x17\\x1632676&\\a\\x06\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x016\\x01\\x00CrC\\x91g_G\\n\\t(\\b\\b0?Fa\\x01\\x01eEB0*\\v\\f\\x10\\x86\\n\\x0e\\x1e\\v$G\\x01\\xb8BsCg\\x91@\\b\\t(\\b\\a*bEGc\\x01\\x01,*\\v\\x1e\\x0e\\n\\x86\\x10\\f\\v$E\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x15\\x00!\\x00-\\x00E\\x00\\x00\\x17\\x11!\\x11\\x14\\x06#!\\\"&\\x01\\x15\\x14\\x1626=\\x014&\\\"\\x06\\a\\x15\\x14\\x1626=\\x014&\\\"\\x06\\a\\x15\\x14\\x1626=\\x014&\\\"\\x06%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x01 \\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x01\\x10\\t\\x0e\\t\\t\\x0e\\t`\\t\\x0e\\t\\t\\x0e\\t`\\t\\x0e\\t\\t\\x0e\\t\\x01@\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\x10\\x01P\\xfe\\xb0\\x14\\x1c\\x1c\\x01\\x14\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\xa9\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\x1c\\x00:\\x00\\x00\\x01&#\\\"\\x06\\a\\x06+\\x01\\\"&7>\\x0132\\x1776\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&7\\x0532\\x16\\x0f\\x01\\x1632>\\x0176;\\x012\\x16\\a\\x0e\\x01#\\\"'\\a\\x06&=\\x0146\\x01s1B:[\\x0e\\x02\\n9\\x06\\a\\x01\\x11\\x89ZcH$\\v\\x1e\\x0e\\n\\x86\\x10\\f\\v\\xfe׆\\x10\\f\\v*1B&D0\\t\\x02\\n9\\x06\\a\\x01\\x11\\x89ZcH$\\v\\x1e\\x0e\\x01;-G8\\t\\t\\x05WsE$\\v\\f\\x10\\x86\\n\\x0e\\x1e\\vy\\x1e\\v*-!9%\\t\\t\\x05WsE$\\v\\f\\x10\\x86\\n\\x0e\\x00\\x00\\x02\\x00\\x10\\xff\\xc0\\x01\\xb6\\x01\\xc0\\x00\\\"\\x000\\x00\\x00%\\x14\\x06\\\"&54675#\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x16\\x1776\\x1f\\x01\\x16\\x0f\\x02\\x16\\a54&+\\x01\\\"\\x06\\x1d\\x01\\x14;\\x012\\x01\\xb0z\\xaczeK\\x1c\\f\\fx\\f\\f\\x1c8,\\x1b\\t\\b\\x1c\\t\\t\\x1d\\x01\\\"\\xb0\\a\\x05(\\x05\\a\\f(\\f\\x90VzzVMu\\f\\\"\\f(\\f\\f(\\f\\\"\\t$\\x1b\\t\\t\\x1c\\b\\t\\x1d\\x013b\\x98\\x04\\b\\b\\x04\\x98\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xfc\\x01\\xf8\\x01\\x84\\x00\\x15\\x001\\x00\\x00%\\a\\x06&=\\x01#\\\"&=\\x0146;\\x01546\\x1f\\x01\\x16\\x14\\x05\\x14+\\x01\\\"&=\\x0146;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x012\\x15\\x01\\xf1\\xa8\\v\\x1e\\x88\\n\\x0e\\x0e\\n\\x88\\x1e\\v\\xa8\\a\\xfe\\xc8\\fT(88(T\\f\\fT\\r\\x13\\x13\\rT\\f\\xaf\\xa8\\v\\f\\x10`\\x0e\\n`\\n\\x0e`\\x10\\f\\v\\xa8\\a\\x14\\xaa\\f8(\\xc0(8\\f(\\f\\x13\\r\\xc0\\r\\x13\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf4\\x02\\x00\\x01\\x80\\x00\\x1b\\x001\\x00\\x00!#\\\"=\\x014;\\x0126=\\x014&+\\x01\\\"=\\x014;\\x012\\x16\\x1d\\x01\\x14\\x06'\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\\"&=\\x0146;\\x01546\\x17\\x01\\xa0T\\f\\fT\\r\\x13\\x13\\rT\\f\\fT(88W\\a\\a\\xa8\\v\\x1e\\x88\\n\\x0e\\x0e\\n\\x88\\x1e\\v\\f(\\f\\x13\\r\\xc0\\r\\x13\\f(\\f8(\\xc0(8\\xc9\\a\\x14\\a\\xa8\\v\\f\\x10`\\x0e\\n`\\n\\x0e`\\x10\\f\\v\\x00\\x00\\x01\\x00\\a\\xff\\xc8\\x01\\xf8\\x01\\xb9\\x00$\\x00\\x00\\x012\\x1776\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&?\\x01&'&\\x06\\x17\\x1e\\x013276\\x1f\\x01\\x16\\a\\x06#\\\"&46\\x01\\x00dG$\\v\\x1e\\x0e\\n\\x86\\x10\\f\\v*0BEe\\x01\\x01aF?0\\b\\b(\\t\\nG_g\\x91\\x92\\x01\\xb8E$\\v\\f\\x10\\x86\\n\\x0e\\x1e\\v*,\\x01\\x01cGEb*\\a\\b(\\t\\b@\\x91Α\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x000\\x008\\x00D\\x00L\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467&546;\\x01&546;\\x012654'632\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\a32\\x16\\x15\\x14$\\\"\\x06\\x14\\x16264\\x176&+\\x01\\\"\\x06\\x17\\x1e\\x0126&264&\\\"\\x06\\x14\\x01\\xc3\\x1a#*\\x1e\\xfe\\x90\\x1e*#\\x1a\\x1d*\\x1e\\x0e\\x16&\\x1a\\x10!/\\x0f\\t\\x06(8\\x06\\x06\\x1a&\\x16\\x0e\\x1e*\\xfe\\xed\\x1a\\x13\\x13\\x1a\\x13\\x80\\x01\\x05\\x04\\xb0\\x04\\x05\\x01\\b<8<%\\x1a\\x13\\x13\\x1a\\x13O\\x04(\\x1b\\x1e**\\x1e\\x1b(\\x04\\x16#\\x1e*\\x13\\x1d\\x1a&/!\\x19\\x15\\x028(\\x0f\\x11&\\x1a\\x1d\\x13*\\x1e#[\\x13\\x1a\\x13\\x13\\x1ax\\x04\\a\\a\\x04\\x15  `\\x13\\x1a\\x13\\x13\\x1a\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x11\\x00!\\x00)\\x004\\x00\\x00%\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x163%\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x044&\\\"\\x06\\x14\\x162\\a\\x15!5'&\\x0f\\x01'&\\a\\x01\\xe0\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x10/!\\x01\\xb0\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x01\\x80\\x14\\x1c\\xfe\\xc0\\x1c(\\x1c\\x1c(D\\x01`X\\b\\b\\x88(\\b\\b \\x10\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c\\xd0!/P\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c\\x1c\\x14D(\\x1c\\x1c(\\x1c`0pX\\b\\b\\x88(\\b\\b\\x00\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc0\\x00\\r\\x00\\x19\\x00!\\x00(\\x00\\x00\\x01\\a\\x06/\\x01&?\\x0162\\x1f\\x01\\x16\\x14'6\\x1f\\x01\\x16\\a\\x01\\a\\x06&?\\x016\\x16?\\x016&\\x0f\\x025#\\a\\x1775\\x01\\xf2.\\t\\bo\\t\\t.\\x0e(\\x0e<\\x0e\\xe4\\t\\bo\\t\\t\\xfe\\xfaz\\f\\x12\\x02\\x16\\\\\\x14\\n\\x9a\\n\\x14\\n\\x9a$$\\f @\\x012.\\t\\to\\b\\t.\\x0e\\x0e<\\x0e(\\x1c\\t\\to\\b\\t\\xfe\\xfa\\x16\\x02\\x12\\fz \\x14\\n\\x9a\\n\\x14\\n\\x9ah0@ \\f$\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc0\\x00\\a\\x00\\x11\\x00\\x00\\x01\\x17\\x01\\a\\x06&?\\x01\\x01\\x16\\x14\\x0f\\x01'762\\x17\\x01#\\x80\\xfe\\xear\\f\\x10\\x01\\r\\x01\\xe5\\x0e\\x0e9\\x809\\x0e(\\x0e\\x01c\\x80\\xfe\\xea\\r\\x01\\x10\\fr\\x01)\\x0e(\\x0e9\\x809\\x0e\\x0e\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc1\\x00\\t\\x00!\\x00\\x00\\x01\\x16\\x14\\x0f\\x01'762\\x17\\a\\x1f\\x01\\a\\x0e\\x01\\a\\x06&7>\\x01?\\x01'\\a\\x06/\\x01&?\\x0162\\x01\\xf2\\x0e\\x0e9\\x809\\x0e(\\x0e\\xbbUS\\xc5\\\"r/\\f\\x10\\x01\\x057\\\"\\x98\\x17f\\v\\f\\x16\\f\\fw\\v!\\x01v\\x0e(\\x0e9\\x809\\x0e\\x0e(TS\\xc5\\\"7\\x05\\x01\\x10\\f/r\\\"\\x98\\x16f\\v\\v\\x17\\v\\fv\\f\\x00\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xdf\\x00\\xf3\\x01\\xa0\\x00\\x13\\x00\\x00732\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x114;\\x012\\x15\\xa8.\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\f8\\ff\\x1e\\vV\\a\\aV\\v\\x1e\\x01.\\f\\f\\x00\\x01\\xff\\xff\\x00M\\x01\\xc0\\x013\\x00\\x13\\x00\\x007\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x01!2\\x1d\\x01\\x14#\\x86\\x1e\\vV\\a\\aV\\v\\x1e\\x01.\\f\\f\\x98.\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\f8\\f\\x00\\x01\\x00\\x00\\x00M\\x01\\xc1\\x013\\x00\\x14\\x00\\x00%546\\x1f\\x01\\x1e\\x01\\x06\\x0f\\x01\\x06&=\\x01!\\\"=\\x0143\\x01:\\x1e\\vV\\x05\\x03\\x03\\x05V\\v\\x1e\\xfe\\xd2\\f\\f\\xe8.\\x10\\f\\vV\\x05\\f\\f\\x05V\\v\\f\\x10.\\f8\\f\\x00\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xe0\\x00\\xf3\\x01\\xa1\\x00\\x13\\x00\\x00\\x13#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14+\\x01\\\"5X.\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\f8\\f\\x01\\x1a\\x1e\\vV\\a\\aV\\v\\x1e\\xfe\\xd2\\f\\f\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00;\\x00\\x00%\\x15\\x14\\x06+\\x01\\\"&?\\x01'\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x017'\\a\\x06&=\\x0146;\\x012\\x16\\x0f\\x01\\x177'&6;\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x1776\\x16\\x01\\xc0\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x10p\\n\\x0e\\x1e\\v$kk$\\v\\x1e\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x10p\\n\\x0e\\x1e\\v$kk$\\v\\x1ehp\\n\\x0e\\x1e\\v$kk$\\v\\x1e\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x10p\\n\\x0e\\x1e\\v$kk$\\v\\x1e\\x0e\\np\\x10\\f\\v$kk$\\v\\f\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00)\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x1532\\x16&\\\"\\x06\\x14\\x16264\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&P\\x14\\x1c\\xb6\\x14\\x0e\\x0e\\x14\\x0eH\\x06\\xb4\\x06\\x06\\xb4\\x06\\x01P\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x1c4\\x0e\\x14\\x0e\\x0e\\x14d\\x14\\x06\\x06\\x14\\x06\\x00\\x00\\x01\\xff\\xff\\x00M\\x02\\x01\\x013\\x00\\x1b\\x00\\x00\\x0146\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01#\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x013\\x01z\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x01\\x16\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10..\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.\\x00\\x00\\x00\\x00\\x01\\x00\\r\\xff\\xbf\\x00\\xf3\\x01\\xc1\\x00\\x1b\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x015#\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x15\\xd6\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10..\\x10\\f\\vV\\a\\x14\\aV\\v\\f\\x10.F\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x1e\\vV\\a\\aV\\v\\x1e\\xf4\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x00\\x00\\x14\\x06\\\"&462\\a\\x15#\\\"\\x06\\x1f\\x01\\x16?\\x016&+\\x0154+\\x01\\\"\\x01\\xf8\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\f\\x01'Α\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f\\x00\\x00\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x00\\x04\\\"&462\\x16\\x14'#54&\\x0f\\x01\\x06\\x1f\\x01\\x166=\\x0132=\\x014\\x01gΑ\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f8\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\f\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x173\\x15\\x14\\x16?\\x016/\\x01&\\x06\\x1d\\x01#\\\"\\x1d\\x01\\x14\\x99Α\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f\\x01\\xb8\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\f\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x1a\\x00\\x006462\\x16\\x14\\x06\\\"75326/\\x01&\\x0f\\x01\\x06\\x16;\\x01\\x15\\x14;\\x012\\b\\x91Α\\x91ΓG\\b\\x06\\x06s\\b\\bs\\x06\\x06\\bG\\f@\\fYΑ\\x91Α\\x84t\\x0f\\x05s\\b\\bs\\x05\\x0ft\\f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1e\\x004\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11!5463\\x132\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06\\\"/\\x01&4?\\x01'&63\\x01\\xb0\\a\\t\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xa0\\a\\t\\t\\a\\x90\\x01@\\t\\aX\\n\\x0e\\x1e\\v$\\xf3\\a\\x14\\a\\x17\\a\\a\\xf4$\\v\\f\\x10\\x80\\t\\a\\x80\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\t\\a \\a\\t\\xfe\\xc0p\\a\\t\\x01@\\x0e\\n\\x80\\x10\\f\\v$\\xf4\\a\\a\\x17\\a\\x14\\a\\xf3$\\v\\x1e\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00#\\x00\\x00\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\a#\\\"\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x166=\\x014&\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1cXp\\x10\\f\\v \\xc3\\t\\t\\x1f\\b\\t\\xc3 \\v\\x1e\\x0e\\x01p\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c$\\x1e\\v \\xc3\\t\\b\\x1f\\t\\t\\xc3 \\v\\f\\x10p\\n\\x0e\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xf3\\x02\\x00\\x01\\x8d\\x00\\x15\\x00+\\x00\\x00\\x115463!546\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01!\\\"&\\x052\\x16\\x1d\\x01\\x14\\x06#!\\x15\\x14\\x06/\\x01&4?\\x016\\x16\\x1d\\x01\\x0e\\n\\x01h\\x1e\\vP\\a\\aP\\v\\x1e\\xfe\\x98\\n\\x0e\\x01\\xe8\\n\\x0e\\x0e\\n\\xfe\\x98\\x1e\\vP\\a\\aP\\v\\x1e\\x01\\x18\\x10\\n\\x0e0\\x10\\f\\vP\\a\\x14\\aP\\v\\f\\x100\\x0e\\x8e\\x0e\\n\\x10\\n\\x0e0\\x10\\f\\vP\\a\\x14\\aP\\v\\f\\x100\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1c\\x001\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467454632\\x16\\x17632\\x16\\x15\\x14\\a6&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1f\\x01\\x167\\x02\\x1a\\x1d.\\x1bK5\\xfe\\x90<T6*^B,J\\x15\\x18\\x1d(8\\x8b\\a\\b\\vA\\t\\a0\\a\\tA\\v\\b\\aj\\v\\v\\xdd\\x05$6\\x1e5KT</J\\x0f\\x05\\x03B^,$\\x108(\\x12i\\a\\x14p\\a\\t\\t\\ap\\x14\\aj\\v\\v\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1c\\x001\\x00\\x00%\\x1e\\x02\\x15\\x14\\x06#!\\\"&5467454632\\x16\\x17632\\x16\\x15\\x14\\a26/\\x01&\\x0f\\x01\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01\\x02\\x1a\\x1d.\\x1bK5\\xfe\\x90<T6*^B,J\\x15\\x18\\x1d(8\\x97\\v\\b\\aj\\v\\vj\\a\\b\\vA\\t\\a0\\a\\t\\xdd\\x05$6\\x1e5KT</J\\x0f\\x05\\x03B^,$\\x108(\\x12N\\x14\\aj\\v\\vj\\a\\x14p\\a\\t\\t\\ap\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x11\\x00\\x17\\x00\\x1d\\x00\\x00\\x01\\x17#'#\\x17!7#3\\a#\\x153\\x17\\x16\\x06'\\x03!\\x03\\x06\\\"'?\\x013\\a\\x06&\\x01\\xe6ZeE0E\\xfe\\xeaE\\x80PEee{\\x01\\x05\\x01G\\x01\\x18\\x89\\x01\\x04\\x01C{e\\xdb\\x01\\x05\\x01\\xc0\\xa0\\xa0\\xa0\\xa0\\xa0 \\xfc\\x02\\x03\\x02\\x00\\xff\\xfe\\xc2\\x02\\x02B\\xfc\\xff\\x02\\x03\\x00\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xbf\\x01E\\x01\\xc0\\x00\\x19\\x00\\x00%\\a\\x06\\\"/\\x01&6;\\x01\\x11#\\\"/\\x01&6;\\x012\\x16\\x15\\x1132\\x16\\x01:h\\b\\x14\\bh\\n\\f\\x10@T\\x05\\x038\\x06\\x06\\b\\xc4\\n\\x0e@\\x10\\f8p\\b\\bp\\v\\x1d\\x01\\x10\\x048\\x05\\x0f\\x0e\\n\\xfe\\xb8\\x1d\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xc0\\x01E\\x01\\xc1\\x00\\x19\\x00\\x00\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&?\\x016;\\x01\\x11#\\\"&?\\x0162\\x17\\x01:\\n\\f\\x10@\\x0e\\n\\xc4\\b\\x06\\x068\\x03\\x05T@\\x10\\f\\nh\\b\\x14\\b\\x01H\\v\\x1d\\xfe\\xb8\\n\\x0e\\x0f\\x058\\x04\\x01\\x10\\x1d\\vp\\b\\b\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc1\\x00&\\x00\\x00\\x002\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x06\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0154\\x01i}Z\\x0e\\n \\n\\x0e+\\x1e\\x1d*0\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xe0\\x01\\xc0Y?P\\n\\x0e\\x0e\\nP\\x1e*+\\x1eG\\x1c\\x14\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x14\\x1cF@\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xbf\\x01\\x80\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00\\x00\\x17.\\x065462\\x16\\x15\\x14\\x0e\\x05\\a\\x06\\\"&264&\\\"\\x06\\x14\\xac\\x18=\\x1a\\\"\\v\\r\\x03p\\xa0p\\x03\\r\\v\\\"\\x1a=\\x18\\a\\x1a\\x14B//B/6#X$5\\x16\\\"\\x19\\x11PppP\\x11\\x19\\\"\\x165$X#\\n\\xf0/B//B\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc0\\x000\\x00R\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06\\a\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16\\x17\\x166=\\x01463\\x06\\\"&=\\x01462\\x16\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x14\\x01P\\a\\tWA8\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW\\t\\a\\x10\\a\\tB19T\\t\\ahP88P8U\\v\\vUU\\v\\vUU\\v\\vU\\x01\\x00\\t\\a0Bc\\t\\\"\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD(\\a\\t\\t\\a*3N\\x04\\x06M80\\a\\t\\xa08(\\xa0(88(\\b\\x10\\b \\b\\x10\\b \\b\\x10\\b(\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\x12264&\\\"\\x06\\x147\\x114+\\x01\\\"\\x15\\x11\\x14;\\x012\\x01\\x10\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14c\\x1a\\x13\\x13\\x1a\\x13\\x90\\f\\xc8\\f\\f\\xc8\\f\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1aY\\x018\\f\\f\\xfe\\xc8\\f\\x00\\x00\\a\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x1d\\x00-\\x002\\x007\\x00?\\x00D\\x00I\\x00\\x00%2\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x015\\x06#\\\"/\\x01&54?\\x016;\\x012\\x1d\\x01%2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1334&#5265#\\x12264&\\\"\\x06\\x14\\x055\\\"\\x06\\x1575#\\x14\\x16\\x01`\\b\\b@\\b\\b\\x10\\x02\\x03\\x04\\x03\\b\\x02\\x04\\x0f\\x06\\a\\x0e\\b\\x01\\x10\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x10@%\\x1b\\x1b%@\\xe8P88P8\\x01p\\x1b%@@%\\xa0\\b\\x10\\b\\b\\x10\\b7\\x01\\x03\\x0e\\x02\\x02\\x04\\x03\\n\\x04\\bX\\xe0\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\xfe\\xb0\\x1b%\\xa0%\\x1b\\xff\\x00B\\\\BB\\\\b@%\\x1b\\xe0@\\x1b%\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\r\\x00(\\x00\\x00%67\\x17\\x06#\\\"/\\x01&?\\x016\\x17\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x17\\x0167'&?\\x016\\x1f\\x01\\x16\\x15\\x14\\a\\x01\\f\\x0f\\x13Py\\x95\\x13\\x04\\x18\\x05\\x13p\\x10\\f\\x01\\x9f\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\r\\x01a\\x1d\\x11<\\x0e\\a0\\b\\x13h\\x13eC\\a\\v>W\\x13h\\x13\\b0\\a\\x0e\\x89\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\t\\xfe\\xee$%2\\v\\x11p\\x12\\x05\\x18\\x04\\x13\\xa0\\x80\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\\"\\x06\\x14\\x16264\\x1754&+\\x01\\x06\\\"'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xaa4&&4&0'\\x1c\\x05\\x13*\\x13\\x05\\x1c'\\r\\t\\xb4\\t\\r\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x80&4&&4\\xc7\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\v\\x00\\x00\\x01\\xff\\xff\\xff\\xdc\\x02\\x00\\x01\\xa5\\x00 \\x00\\x00\\x1376\\x16\\x1d\\x01\\x1e\\x04\\x15\\x14\\x06\\a\\x06&7>\\x01.\\x04'\\x15\\x14\\x06/\\x01&4\\b\\xb0\\f\\x1c4PL2\\x1e0#\\v\\x15\\x04\\t\\x06\\a\\x15\\x1e.6\\\"\\x1c\\f\\xb0\\b\\x01\\x02\\x98\\n\\r\\x0fP\\x01\\t\\x19)B,,U\\x19\\b\\x0e\\f\\x1f2&\\x1d\\x13\\r\\x05\\x01X\\x0f\\r\\n\\x98\\a\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x10\\xff\\xbc\\x01\\xf0\\x01\\xc0\\x00\\x1a\\x00\\x1f\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x0e\\x03\\a\\x06'.\\x0354>\\x03?\\x0162\\x17\\x03>\\x017'\\x01\\xd2\\x0e\\x10\\x1e.=9\\x1c\\x12\\x12*M@'\\x03\\x05\\a\\t\\x06\\xc0\\b\\x14\\b\\x12Kc\\x02\\xb0\\x01l\\x05\\x18\\x0f?sSC)\\v\\b\\b\\x11C_\\x82G\\x06\\v\\n\\b\\a\\x02P\\x04\\x04\\xfeF%\\xa2lJ\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x147\\x114#!\\\"\\x15\\x11\\x143!2\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xa3\\x1a\\x13\\x13\\x1a\\x13\\xd0\\f\\xfe\\xb8\\f\\f\\x01H\\f\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe \\x13\\x1a\\x13\\x13\\x1aY\\x018\\f\\f\\xfe\\xc8\\f\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\r\\x00\\x1e\\x00&\\x00.\\x00B\\x00L\\x00T\\x00\\x00\\x122\\x16\\x15\\x14\\a\\x06#!\\\"'&54%\\\"\\x0e\\x01\\x15\\x14\\x1632?\\x014761.\\x01\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x14%6.\\x02'&\\x06\\x0f\\x01\\x0e\\x01\\x15\\x14\\x173654'7\\x163264&#\\\"\\a\\x16264&\\\"\\x06\\x14\\xa9\\xee\\xa9'\\t\\x12\\xfeD\\x12\\t'\\x01 \\t\\x0e\\t\\x13\\r\\t\\t\\t\\x02\\x01\\x03\\x10\\xd8\\x1a\\x13\\x13\\x1a\\x13C\\x1a\\x13\\x13\\x1a\\x13\\x01\\x17\\x01\\x01\\x04\\a\\x04\\n\\x12\\x03=\\x19#\\tn\\t\\x17L\\n\\x11\\r\\x13\\x13\\r\\x05\\x06.\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0\\xa9wNC\\x0f\\x0fCNwi\\t\\x0e\\t\\r\\x13\\x06\\x1c\\x01\\x03\\x02\\v\\r\\xfe\\xe0\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a5\\x05\\n\\b\\x06\\x02\\x03\\t\\t\\xb8\\x02%\\x19\\x11\\x0f\\x0f\\x11\\x1d\\x13\\u007f\\x0f\\x13\\x1a\\x13\\x02\\xde\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x03\\x00\\x1f\\x00/\\x00\\x00\\x13!\\x15!$\\x14\\x163\\x15\\x14\\x06#!\\\"&=\\x01264&#5463!2\\x16\\x1d\\x01\\\"'4&#!\\\"\\x06\\x1d\\x01\\x14\\x163!265\\x80\\x01@\\xfe\\xc0\\x01\\x90\\x1c\\x14\\x1c\\x14\\xfe \\x14\\x1c\\x14\\x1c\\x1c\\x14\\x1c\\x14\\x01\\xe0\\x14\\x1c\\x14L\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\x01P\\n\\x0e\\x01 \\xc0t(\\x1c`\\x14\\x1c\\x1c\\x14`\\x1c(\\x1c`\\x14\\x1c\\x1c\\x14`8\\n\\x0e\\x0e\\n\\xd0\\n\\x0e\\x0e\\n\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x1b\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x01<xTTxT\\x105K\\x1c\\x14\\xfe`\\x14\\x1cK57#L#\\xa0TxTTxtK5\\x10\\x14\\x1c\\x1c\\x14\\x105K\\x10\\x10\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00+\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01LCC\\t\\t(\\t\\tBB\\t\\t(\\t\\tCC\\t\\t(\\t\\tBB\\t\\t(\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xdeBB\\t\\t(\\t\\tCC\\t\\t(\\t\\tBB\\t\\t(\\t\\tCC\\t\\t(\\t\\x00\\x02\\xff\\xf9\\xff\\xd9\\x01\\xc7\\x01\\xa7\\x00\\x13\\x00'\\x00\\x00?\\x01'&6;\\x012\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06/\\x01&\\x01\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x0176\\x1f\\x01\\x16\\x05c!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1fc\\f\\v\\x19\\f\\x01\\xc2c!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1fc\\f\\v\\x19\\f\\x15c\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v!c\\f\\f\\x19\\v\\x01bc\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v!c\\f\\f\\x19\\v\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x13\\x00(\\x00\\x007\\a\\x17\\x16\\x06+\\x01\\\"&=\\x0146\\x1f\\x0176\\x1f\\x01\\x16?\\x01'&6;\\x012\\x1e\\x01\\x1d\\x01\\x14\\x06/\\x01\\a\\x06/\\x01&\\xd5]!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1f]\\v\\v\\x1a\\v\\v]!\\v\\f\\x10p\\a\\v\\x06\\x1e\\v\\x1f]\\v\\v\\x1a\\v\\x85]\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v!]\\v\\v\\x1a\\vk]\\x1f\\v\\x1e\\x06\\v\\ap\\x10\\f\\v!]\\v\\v\\x1a\\v\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00 \\x00&\\x00,\\x00\\x00%\\x16\\x17\\x06#\\\"'67'\\x06\\a&47\\x16\\x177&'62\\x17\\x06\\a\\x1767\\x16\\x14\\a&'%6'\\a\\x16\\a7\\x06\\x177&7\\x01p\\x13!HddH \\x14\\x1d\\x11\\x1c66\\x1c\\x10\\x1d\\x13 H\\xc8H \\x13\\x1d\\x10\\x1c67\\x1b\\x11\\xfe\\xff\\x19\\x19\\x1f\\x16\\x15\\xf6\\x19\\x19\\x1e\\x15\\x16T'\\x1fFF\\x1f'\\x0e!\\x1cD\\xaeD\\x1b!\\x0f&\\x1eFF\\x1f&\\x0e!\\x1bD\\xaeD\\x1b\\\"\\x12MM\\nCC\\x90MM\\nBD\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x04\\x00\\n\\x00\\x0f\\x00\\x15\\x00\\x1b\\x00 \\x00&\\x00+\\x00\\x00\\x13\\x06\\a'6\\x17'67\\x16\\x17\\x05\\x17\\x06\\a6\\x05'7\\x16\\x17\\x06\\a\\x17\\x06\\a&'%'67\\x06%\\x17\\a&'6\\x1767\\x17\\x06\\xd4\\x02*N5i.9\\x01S?\\xfe\\xa2N7M\\n\\x01<.\\x9e4\\x04b\\x96.8\\x02S?\\x01^N7M\\n\\xfe\\xc4.\\x9e4\\x04b\\xba\\x02*N5\\x01\\xb6M7N,\\xca.Fb\\x044\\\"N*\\x02E\\x97.\\x9e?S\\x02,.Fb\\x044\\\"N*\\x02E\\x97.\\x9e?S\\x01\\xebM7N,\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x146\\x14\\x16264&\\\"\\x16264&\\\"\\x06\\x14\\x91Α\\x91Αk\\x1a\\x13\\x13\\x1a\\x13`\\x13\\x1a\\x13\\x13\\x1a\\x10\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce'\\x13\\x1a\\x13\\x13\\x1aZ\\x1a\\x13\\x13\\x1a\\x13\\xb0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00;\\x00S\\x00s\\x00{\\x00\\x93\\x00\\x007'&546;\\x015#\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x1532\\x16\\x15\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x17#65#\\\"&=\\x01463\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01546;\\x012\\x16\\x1d\\x017'&=\\x014;\\x012\\x1d\\x01354;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x14\\x0f\\x01\\x17#7\\x15354&\\\"\\x06\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014?\\x01546;\\x012\\x16\\x1d\\x01J\\\"\\x01\\t\\a9\\x18\\b\\b\\x18\\b\\x10\\b\\x18\\b\\b\\x189\\a\\t\\x01\\\"\\n\\a\\t\\t\\a\\x10\\x10\\x80\\x10\\x10\\a\\t\\t\\a\\xb7\\t\\t\\a\\xe0\\a\\t\\t\\x17\\t\\a\\xa0\\a\\tt\\x19\\v\\x06\\x1a\\x06\\x19\\x066\\x06\\x19\\x06\\x1a\\x06\\v\\x19\\x03~/ \\t\\x0e\\tw\\t\\t\\a\\xc0\\a\\t\\t\\x17\\t\\a\\x80\\a\\t\\xf0Z\\x03\\x03\\a\\t \\b\\x10\\b\\x18\\b\\b\\x18\\b\\x10\\b \\t\\a\\x03\\x03Z\\t\\a\\x10\\a\\tA??A\\t\\a\\x10\\a\\t\\xfc\\x04\\n\\x16\\a\\t\\t\\a\\x16\\n\\x04\\f\\x10\\a\\t\\t\\a\\x10\\x92\\x15\\n\\x0e;\\x06\\x06\\x1a\\x1a\\x06\\x06\\x1a\\x1a\\x06\\x06;\\x0e\\n\\x15RP  \\a\\t\\t\\xa3\\x04\\n\\x16\\a\\t\\t\\a\\x16\\n\\x04\\f\\x10\\a\\t\\t\\a\\x10\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00#\\x003\\x00\\x007467.\\x01546;\\x012\\x16\\x15\\x14\\x06\\a\\x16\\x17\\a\\x06\\x14\\x1f\\x01\\x162?\\x01\\x16\\x15\\x14\\a\\x15#5&\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\bG*\\v\\x0e\\x13\\r@\\r\\x13\\x0e\\v&!l\\x02\\x02\\f\\x02\\a\\x02d\\x1b8\\xc08\\x01(\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\xa05\\x8a\\\"\\x03\\x11\\v\\r\\x13\\x13\\r\\v\\x11\\x03\\x1f=l\\x02\\a\\x02\\f\\x02\\x02e<+C\\x11,,\\x11]\\t\\a \\a\\t\\t\\a \\a\\t\\x00 \\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00#\\x00'\\x00+\\x00/\\x003\\x007\\x00;\\x00?\\x00C\\x00G\\x00K\\x00O\\x00S\\x00W\\x00[\\x00_\\x00c\\x00g\\x00k\\x00o\\x00s\\x00w\\x00{\\x00\\u007f\\x00\\x00\\x01\\x15#5\\a3\\x15#7\\x15#5\\x133\\x15#'3\\x15#\\x01\\x15#53\\x15#5\\x01\\x15#5\\x05#535#53\\x0353\\x15\\x13#53\\x0153\\x15#53\\x15353\\x15%3\\x15#\\x01#53\\a53\\x15\\a3\\x15#753\\x15'53\\x15\\a3\\x15#%3\\x15#\\x13#53\\x1353\\x15'#5373\\x15#\\a3\\x15#'\\x15#5\\x0553\\x15%\\x15#5\\x173\\x15#\\x01\\x00@\\xc0@@\\x80@\\x80@@\\xc0@@\\x01\\x80@\\xc0@\\xfe\\xc0@\\x01\\xc0@@@@\\x80@@@@\\xfe\\x80@\\xc0@\\xc0@\\xfe\\xc0@@\\x01@@@@@\\x80@@\\x80@@@@@@\\xff\\x00@@\\x80@@\\xc0@\\xc0@@\\x80@@\\x80@@@@\\x01\\x00@\\xfe\\xc0@@@@\\x01\\xc0@@@@\\x80@@\\xff\\x00@\\x80@\\x01\\x00@@@@\\xff\\x00@@\\xc0@@@\\xff\\x00@@\\x01@@\\xfe\\x80@@@@@@\\xc0@\\x01\\x00@\\xc0@@\\x80@\\x80@@\\x80@@\\xc0@@@\\x01@@\\xfe\\xc0@@\\xc0@@@\\xc0@\\xc0@@@@@\\x80@@\\xc0@\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0f\\x006\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x1e\\x01\\x15\\x14\\x0f\\x01!'&546;\\x015#\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x01\\x90\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01p\\t\\x0e\\t\\x01J\\xfe\\xd6J\\x01\\x13\\r\\xa0(\\b\\b(\\b0\\b(\\b\\b(\\t\\a \\a\\t\\t\\a \\a\\t\\x01 \\t\\x0e\\t\\x05\\x05\\xd6\\xd6\\x05\\x05\\r\\x130\\b0\\b(\\b\\b(\\b0\\b0\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xa0\\x00'\\x00/\\x00?\\x00\\x007.\\x01=\\x014?\\x01'&54;\\x012\\x16\\x1d\\x01!54>\\x01?\\x01>\\x01=\\x01\\a\\x06\\x0f\\x01\\x06\\x0f\\x01\\x06#\\\"'4\\\"\\x06\\x14\\x16264\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x13\\b\\v\\a\\t\\x0e\\x02\\f\\x94Oq\\xfe\\xc0\\f\\x14\\f9\\v\\x10\\x16\\n\\x03\\t\\x04\\x0f\\f\\x06\\x06\\a\\x06\\x10\\f\\f\\x10\\f\\x01(\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\xb0\\x03\\x11\\t\\x89\\n\\a\\t\\x1c\\x04\\x04\\fpP\\xc0\\x0f\\r\\x1d\\x17\\x06\\x1d\\x05\\x19\\r2\\v\\x05\\v\\x1e\\x0f\\x06\\x05\\x02\\x02\\xa3\\f\\x10\\f\\f\\x10\\xfe\\xcc\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xa0\\x00#\\x003\\x00\\x007.\\x015462\\x16\\x15\\x14\\x06\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x17#6=\\x01#\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463i\\x16\\x1b=V=\\x1b\\x16\\x19\\a\\t\\t\\a\\x10\\x18\\xb0\\x18\\x10\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\a\\xe0\\x0e/\\x1b+==+\\x1b/\\x0e\\t\\a \\a\\t\\x05P++P\\x05\\t\\a \\a\\t\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x17\\x00I\\x00\\x00\\x00\\\"&462\\x16\\x14\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\x16\\x15\\x14\\x0f\\x01!'&54?\\x016\\x17\\x1e\\x01323>\\x01546;\\x012\\x17\\x1e\\x012676;\\x012\\x16\\x15\\x14\\x16\\x17\\x1632676\\x17\\x01\\x17.!!.!x\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01\\xa9\\a\\x02f\\xfe\\xd0f\\x02\\a\\x1d\\f\\n\\x06\\x16\\n\\x02\\x01\\x13\\x1a\\b\\x05'\\v\\x02\\x03\\x1c \\x1c\\x03\\x02\\v'\\x05\\b\\x16\\x11\\x04\\x05\\n\\x16\\x06\\n\\f\\x01P!.!!.\\xfe\\x8f\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\b\\x05\\b\\x04\\x04\\xd3\\xd3\\x04\\x03\\t\\x05\\x10\\b\\r\\b\\v\\x01\\x1e\\x14\\x05\\b\\n\\x10\\x16\\x16\\x10\\n\\b\\x05\\x12\\x1d\\x03\\x01\\v\\b\\r\\b\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xa0\\x00#\\x00+\\x00;\\x00\\x00\\x012\\x16\\x1d\\x01\\a\\x14\\x17!65'546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x0135463\\x0354&\\\"\\x06\\x1d\\x01\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01p\\a\\t@\\r\\xfe\\xe6\\r@\\t\\a8\\a\\t0\\t\\aP\\a\\t0\\t\\aX\\x13\\x1a\\x13\\xd0\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01\\xa0\\t\\a\\xb0 VJJV \\xb0\\a\\t\\t\\a00\\a\\t\\t\\a00\\a\\t\\xfe\\xe0@\\r\\x13\\x13\\r@\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x17\\x00/\\x00S\\x00\\x00\\x132\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\\"=\\x014;\\x015463\\x052\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x01'2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x0135463h\\n\\x0e\\x0e\\n0\\n\\x0e\\x18\\b\\b\\x18\\x0e\\n\\x02@\\b\\b\\x18\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x98\\n\\x0e\\x0e\\n0\\n\\x0e\\x80\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x80\\x0e\\n\\x01`\\x0e\\n\\xfe\\xf0\\n\\x0e\\x0e\\nh\\b0\\bh\\n\\x0e\\x80\\b0\\bh\\n\\x0e\\x0e\\n\\x01\\x10\\n\\x0e\\x0e\\nh\\xc0\\x0e\\n\\xfep\\n\\x0e\\x0e\\n\\xa8\\xa8\\n\\x0e\\x0e\\n\\x01\\x90\\n\\x0e\\x0e\\n\\xa8\\xa8\\n\\x0e\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x06\\x00\\r\\x00\\x15\\x00Q\\x00\\x00\\x01\\x16\\x17'\\x16\\x17\\x16\\x01&'\\x17&'&'>\\x017\\x17\\x0e\\x01\\a\\x13\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x0176/\\x01&\\x01\\xe2\\r\\x01\\x9d63\\x1e\\xfe4\\r\\x01\\x9d63\\x1e\\x12\\x11\\x98g\\xd8\\x11\\x98gf\\x1d\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x17\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x16\\x1d\\x05\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x05\\x1d\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x17\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x16\\x1d\\x05\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x01\\x8445\\x9d\\x01\\x0e\\b\\xfe[45\\x9d\\x01\\x0e\\b\\xc6o\\x91\\x0f\\xd9o\\x91\\x0f\\x01T\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x17\\x1d\\x05\\x05\\v\\x06\\x06\\x1c\\x17\\x1d\\x05\\x05\\f\\x05\\x06\\x1c\\x1d\\x05\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x05\\x1d\\x16\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x17\\x1d\\x05\\x05\\f\\x05\\x06\\x1c\\x1d\\x05\\x06\\v\\x06\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xa0\\x01\\xc0\\x00\\x15\\x00#\\x00-\\x008\\x00B\\x00\\x0073\\x14\\x06+\\x01\\\"\\x06\\x1d\\x01\\x14+\\x01\\\"=\\x014&+\\x01\\\"&%\\x14\\x0e\\x02\\a#.\\x015462\\x16\\a2654'\\x16\\x06'\\x16\\x174'\\x16\\x0e\\x01'\\x1632674'\\x16\\x06'\\x16326`\\xe0\\x13\\r\\x10\\r\\x13\\f(\\f\\x13\\r\\x10\\r\\x13\\x01@\\x0e\\x1a$\\x16\\xdc-5z\\xacz\\xb4\\x0e\\x13\\x16\\a\\x1d\\x14\\bH\\x16\\x05\\v\\x17\\r\\b\\x17\\x0e\\x13@\\x16\\a\\x1d\\x14\\b\\x17\\x0e\\x13 \\r\\x13\\x13\\r\\x14\\f\\f\\x14\\r\\x13\\x13\\xdd\\x1b5,&\\x0e\\x1c]7Vzz\\x82\\x13\\x0e\\x17\\b\\x14\\x1d\\a\\x16/\\x17\\b\\r\\x17\\n\\x04\\x16\\x14M\\x17\\b\\x14\\x1d\\a\\x16\\x14\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\a\\x00\\x12\\x00\\x00<\\x0162\\x16\\x14\\x06\\\"'\\x1e\\x0167\\x15\\x14\\x06\\\"&5\\x96Ԗ\\x96Ԗ7\\xc9\\xc97\\x96Ԗ\\xf8P88P8\\x0e(\\x1e\\x1e(n(88(\\x00\\x03\\x00\\x00\\xff\\xbd\\x02\\x87\\x01\\xc7\\x00\\x17\\x00#\\x005\\x00\\x00%\\x17\\x14\\x0e\\x03\\a\\x0e\\x01/\\x016?\\x016&\\x0f\\x0167>\\x013\\x052\\x16\\x14\\x06\\\"&54>\\x02\\x13\\x16\\x0f\\x01\\x17\\x16\\x06\\x0f\\x01'7>\\x01\\x1f\\x0176\\x17\\x01\\x00W\\x03\\r\\x0f\\x1d\\x10\\x1b\\x8565\\x04\\a_\\x03\\x06\\x04<\\x19\\x1d\\x1bQ\\x1c\\x01\\t\\\"..C.\\f\\x16\\x1d\\x9e\\n\\f\\xe8\\\"\\x03\\x04\\x06;V\\x19\\x03\\f\\x04\\\"\\xe8\\r\\n\\xe7m\\x04\\x0f($*\\r\\x15\\x11\\x02\\x02\\x17 p\\x04\\a\\x01\\x16J\\x17\\x16\\x14\\x88/B//!\\x11\\x1d\\x16\\f\\x01A\\r\\n\\xb1+\\x05\\f\\x01\\fm7\\x05\\x01\\x04+\\xb2\\t\\f\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00\\x00\\x05!\\x11!\\x02\\x00\\xfe\\x00\\x02\\x00@\\x02\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\t\\x01\\xc0\\x00\\n\\x00\\x1f\\x00'\\x00\\x00%&\\x06\\a'762\\x17\\x1e\\x01\\a\\x06\\x15\\x14\\x17&/\\x01\\a\\x06\\\"/\\x01&4?\\x01'.\\x017\\x042\\x16\\x14\\x06\\\"&4\\x01\\xf00q\\\"\\xd48?\\xb2?/\\x18\\xf2\\x06\\v)\\x1d$Y\\x06\\x11\\x065\\x06\\ag#\\x1d\\t\\x15\\x01>P88P8\\x98 \\x14/\\xd48??/\\x81\\x89\\x16\\x12\\x1d\\x1a\\x05\\x1c$g\\a\\x065\\x06\\x11\\x06Y#\\x1dQ\\\"\\xa48P88P\\x00\\x00\\x06\\xff\\xfd\\xff\\xc7\\x01\\xf8\\x01\\xbd\\x00\\n\\x00\\x12\\x00\\x1c\\x00(\\x002\\x00@\\x00\\x007\\x0e\\x01\\a.\\x01'>\\x017\\x16'\\x0e\\x01\\a&67\\x16\\x17&'.\\x01'6\\x17\\x1e\\x01\\a\\x16\\x1767\\x06\\a\\x06&'>\\x01\\a\\x167\\x0e\\x01#\\\"&'6\\x13\\x1e\\x02\\x15\\x1c\\x01\\x15\\x06#0#6&\\xe7-V\\x0f\\x0f!\\t\\x11`D\\x15$>_\\x19\\x0fGE#\\xd270\\x017%0344\\x84LS)(\\f\\x1eF\\x92>\\x0e/Ov\\x8b\\x1d]&\\x1dK\\x19\\n\\xca0K*,-\\x01\\x06'\\xcd\\x1dp4\\x0f/\\x13Gr 2O\\x1ec?Q\\x90&\\x1f\\xcd\\x06\\x1b6\\x82'\\x0e\\x062\\x8bU(\\x01\\x01\\n1)\\x15\\x1a+\\x12*WR\\x14\\x19\\\"\\x15\\x0f/\\x01\\x8e\\x11D_5\\x01\\x04\\x01\\x0eE\\x83\\x00\\x00\\x00\\x00\\b\\xff\\xfd\\xff\\xbf\\x01\\xc0\\x01\\xc0\\x00:\\x00B\\x00J\\x00R\\x00Z\\x00b\\x00j\\x00r\\x00\\x00\\x002\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&>\\x01\\x16\\x1f\\x015462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x01\\x14;\\x012=\\x014\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x93\\x1a\\x13\\x05\\x1b\\x03\\x1b\\x10\\xc6\\x18\\x0f}\\n\\x05\\x1b!\\t\\x18\\x13\\x1a\\x13\\b\\x10\\b\\x13\\x1a\\x13\\b\\x10\\b\\x13\\x1a\\x13\\b\\x10\\b\\xd7\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t\\x01P\\x13\\r\\xb0\\x16\\x14q\\x10\\x15\\x14\\xac\\x0e!\\x13\\x05\\r!\\xf1\\r\\x13\\x13\\r\\x98\\b\\b\\xb8\\r\\x13\\x13\\r\\xb8\\b\\b\\x98\\r\\x13\\x13\\r\\x98\\b\\bH\\r\\xfe\\xe3\\t\\x0e\\t\\t\\x0eW\\t\\x0e\\t\\t\\x0e\\x89\\t\\x0e\\t\\t\\x0eW\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0eI\\t\\x0e\\t\\t\\x0ew\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\t\\x00\\x13\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00\\x00\\x1146;\\x01\\x11#\\\"&5\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11\\x01\\x11!\\x11&\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264&\\x1a``\\x1a&\\x02@\\x1a&&\\x1a`\\xfe\\xe0\\x01\\x00F\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0en\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x01 \\x1a&\\xfe\\xc0&\\x1a\\x01\\x00&\\x1a\\xc0\\x1a&\\x01@\\xfe\\xc0\\x01@\\xfe\\xc0\\xe8\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14n\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x12\\x00\\x1c\\x00\\x00\\x010\\x17#532\\x1e\\x01\\x17'\\x15#617>\\x013\\a!\\x15\\x14\\x06#!\\\"&5\\x01\\xfe\\x01\\xef\\x8d\\v\\x12\\x0e\\x03\\xdb\\xef\\x013\\x05\\x19\\x10c\\x02\\x00\\x1c\\x14\\xfe`\\x14\\x1c\\x01\\a\\a\\xc0\\b\\x0f\\n!\\xc0\\a\\x98\\x0f\\x12\\xe0\\xf0\\x14\\x1c\\x1c\\x14\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x14\\x00)\\x00>\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x157\\x175%\\\"&=\\x0146;\\x01\\x157\\x17532\\x16\\x1d\\x01\\x14\\x06#\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x157\\x175\\x020\\a\\t\\t\\a\\xe0\\a\\t\\t\\aP  \\xfe\\xd0\\a\\t\\t\\aP  P\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xe0\\a\\t\\t\\aP  \\xa0\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t`\\x15\\x15`@\\t\\a\\xc0\\a\\t`\\x15\\x15`\\t\\a\\xc0\\a\\t@\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t`\\x15\\x15`\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xa0\\x00\\x19\\x00\\x1d\\x009\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x01'\\x1535\\x1754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14P\\x1c\\x14\\xa0\\x14\\x1c\\xc0\\x80 \\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01@\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c0\\x14\\x1c\\x1c\\x140   \\xf80\\b8\\b\\b8\\b0\\b8\\b\\b8\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\n\\x00\\x13\\x00\\x00\\x13\\x1e\\x01\\x15\\x14\\x06\\\"&546\\x122654'\\x06\\x15\\x14\\xc0Ukk\\xaakj,T6``\\x01\\xc0M\\xa5:^vv^:\\xa5\\xfe\\x8d5*8ii8*\\x00\\x03\\x00\\x00\\xff\\xe0\\x02G\\x01\\xa0\\x00\\x1d\\x00%\\x00/\\x00\\x00%\\x16\\x06\\a\\x06#\\\"/\\x01&'\\x15\\x14\\x06\\\"&=\\x014632\\x16\\x1767632\\x17\\x0554&\\\"\\x06\\x1d\\x01\\x057'&#\\\"\\a\\x0e\\x01\\x17\\x02+\\x1b\\x10'\\x1d$<\\\"\\x83\\a\\x06B\\\\BB.-@\\x02\\r\\x1d\\x1d$<\\\"\\xfe\\xf8\\x1c(\\x1c\\x01#RA\\x0f\\x1b\\x10\\f\\x12\\a\\f\\x94']\\x1b\\x151\\xbb\\n\\x0f\\x95.BB.\\xe0.B>,!\\x14\\x151\\x8fp\\x14\\x1c\\x1c\\x14p-:]\\x16\\t\\f)\\x11\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00-\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15&\\\"\\x06\\x14\\x16264\\x176/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\x167\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&6\\x14\\x0e\\x0e\\x14\\x0ea\\t\\t\\x1c\\b\\tj.\\b\\t\\x1c\\t\\tR\\t\\b\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x18\\x0e\\x14\\x0e\\x0e\\x14\\xda\\t\\b\\x1d\\b\\bj/\\b\\b\\x1c\\t\\bT\\b\\b\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x00%\\x00-\\x005\\x00A\\x00M\\x00Y\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x146\\\"\\x06\\x14\\x16264\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&\\xaa\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x82\\x14\\x0e\\x0e\\x14\\x0eh\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\b\\x90\\b\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\xfe\\x98\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14R\\x0e\\x14\\x0e\\x0e\\x14\\xb2\\x0e\\x14\\x0e\\x0e\\x14\\xfe\\x9e\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x003\\x00;\\x00C\\x00K\\x00[\\x00\\x00$\\\"&462\\x16\\x14&\\\"&462\\x16\\x14\\x05'&6767\\x1665632\\x17\\x06\\x1667\\x16\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01'&'\\x15#5\\x06\\a\\x06&$\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"&462\\x16\\x14\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xf7\\x0e\\t\\t\\x0e\\t\\x9cH44H4\\xfe\\xa4\\x12\\a\\x05\\f\\v\\x12\\x187VJ<E\\x05 /\\x0e\\x1c\\x17\\r\\x04\\a\\x12\\a\\x1a\\n27\\xe081\\n\\x1a\\x017\\x14\\x0e\\x0e\\x14\\x0en\\x14\\x0e\\x0e\\x14\\x0e\\xb1\\x0e\\t\\t\\x0e\\t\\x01\\xf0\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\xc0\\t\\x0e\\t\\t\\x0eG4H44H\\xf0\\x1b\\t\\x1c\\b\\x06\\n\\x14\\x19\\x1f \\x16\\x19#\\x03\\x16\\r\\x0e\\b\\x1c\\t\\x1b\\v\\x05\\x06\\x1e\\x13[[\\x13\\x1e\\x06\\x05\\x1f\\x0e\\x14\\x0e\\x0e\\x14n\\x0e\\x14\\x0e\\x0e\\x14\\x06\\t\\x0e\\t\\t\\x0e\\xc9\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xbf\\x01\\xc1\\x01\\xc1\\x00<\\x00A\\x00G\\x00M\\x00\\x00\\x15>\\x037.\\x03'&6;\\x012\\x17\\x16\\x17!676;\\x012\\x16\\a\\x0e\\x04\\a\\x06\\a3&'67\\x1e\\x02\\x17\\x16\\x06+\\x01\\\"'&'!\\x06\\a\\x06+\\x01\\\"&\\x1367#\\x167!\\x16\\x1736\\x03!&'#\\x06\\x03\\x0e B--B \\x0e\\x03\\x01\\n\\a \\x0e\\x02\\x02\\x02\\x018\\x02\\x02\\x02\\x0e \\a\\n\\x01\\x02\\n\\x1e*M1,\\\"\\u007f\\r\\x04 \\x1b*9\\x11\\x03\\x01\\n\\a \\x0f\\x01\\x01\\x03\\xfe\\xc8\\x02\\x02\\x02\\x0e \\a\\n\\xe1$\\x1c\\x80\\x1c\\xa7\\xfe\\xfa\\t\\f\\xdc\\f\\xfd\\x01\\x05\\b\\r\\xdb\\f.\\x15/DI\\x1d\\x1dID/\\x15\\a\\v\\x0e\\b\\n\\n\\b\\x0e\\v\\a\\x12(?9@\\x19\\x16\\x1d\\f\\x02\\x11\\x13$Z8\\x1a\\a\\v\\x0e\\x06\\f\\t\\t\\x0e\\v\\x01\\x19\\x14\\x18\\x18h\\x10\\x10\\x10\\xfe\\xd0\\x10\\x10\\x10\\x00\\x00\\x03\\x00\\x00\\xff\\xb9\\x02B\\x01\\xc0\\x00\\x15\\x005\\x00=\\x00\\x00%'&>\\x01?\\x01\\x177'76\\x1e\\x02\\x1f\\x01\\x16\\x06\\x0f\\x01&\\x17\\x16\\x06\\x0f\\x01\\x0e\\x01'.\\x01'&7\\x03#\\\"&=\\x0146;\\x012\\x17\\x13\\x16\\x1776\\x16\\x17\\x04264&\\\"\\x06\\x14\\x01&5\\x01\\x01\\x06\\x04>!=!=\\x03\\x06\\x06\\x04\\x01<\\x02\\x06\\x06\\xa1\\x17\\xfe\\x02\\x06\\x06\\xd5\\x01D-\\x1d+\\x05\\b,\\\\Y\\a\\t\\t\\ap\\x17\\ad-\\x1c\\xd6\\x06\\f\\x02\\xfe\\xb7(\\x1c\\x1c(\\x1c\\xaa\\xa0\\x04\\b\\a\\x01\\x14c\\x14c\\x15\\x01\\x01\\x02\\x05\\x03\\xb5\\a\\f\\x025\\x11)\\a\\v\\x03G,8\\b\\x05,\\x1e7#\\x01\\x15\\t\\a \\a\\t\\x16\\xfe\\xd6\\x01$G\\x02\\x06\\x06\\xa8\\x1c(\\x1c\\x1c(\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x14\\x00B\\x00\\x007\\\"&5\\x1146;\\x01\\x157\\x17532\\x16\\x15\\x11\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547#\\\"&5\\x11#\\\"&=\\x0146;\\x012\\x16\\x15\\x11\\xd0\\a\\t\\t\\a\\x9000\\x90\\a\\t\\t\\a \\a\\t\\t\\aS\\x03\\x1c(\\x1c\\x03\\xc6\\x03\\x1c(\\x1c\\x03S\\a\\t0\\a\\t\\t\\a`\\a\\t\\x80\\t\\a\\x01\\x00\\a\\t\\x80  \\x80\\t\\a\\xff\\x00\\a\\t@\\t\\a \\a\\t\\t\\a\\x14\\x1c\\x1c\\x14\\b\\b\\t\\a\\x14\\x1c\\x1c\\x14\\b\\b\\t\\a\\x01p\\t\\a \\a\\t\\t\\a\\xfe\\x90\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x006\\x00\\x00\\x01\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x134+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x01325\\x01y\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8@\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01W\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xd8\\b8\\b\\b8\\b0\\b8\\b\\b8\\b\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00/\\x008\\x00\\x00\\x01\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&=\\x013\\x17\\x162?\\x01\\x173264&+\\x01'&\\\"\\x0f\\x01'&+\\x01\\\"=\\x014;\\x01546;\\x01\\x17\\x16\\x1d\\x01#532\\x17\\x01 \\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0eF#\\x02\\n\\x029\\x16Z\\a\\t\\t\\aF#\\x02\\n\\x029\\x14\\x02\\x05\\x8d\\b\\b8\\x0e\\nș\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\xa8F\\x04\\x04r,\\t\\x0e\\tF\\x04\\x04r(\\x04\\b\\x10\\b\\xe8\\n\\x0ei\\a\\n\\x06\\x80\\a\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\t\\x00\\r\\x00)\\x003\\x00\\x00\\x1146;\\x01\\x11#\\\"&5\\x17\\x11!\\x11%\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"%2\\x16\\x15\\x11\\x14\\x06+\\x01\\x11\\x1c\\x1400\\x14\\x1c\\x80\\x01@\\xff\\x00\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01P\\x14\\x1c\\x1c\\x140\\x01p\\x14\\x1c\\xfe@\\x1c\\x140\\x01\\xc0\\xfe@\\xf80\\b8\\b\\b8\\b0\\b8\\b\\b8\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x01\\xc0\\x00\\b\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x19\\x00%\\x001\\x00=\\x00I\\x00e\\x00q\\x00}\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x01\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02 \\r\\x13\\t\\a\\xfd\\xe0\\a\\t\\x13\\r\\x80\\x13\\r\\xc0\\r\\x13\\xff\\x00\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x10\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x90\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01`\\x13\\r\\xfe\\x90\\a\\t\\t\\a\\x01p\\r\\x13@\\r\\x13\\x13\\r@\\xfe\\xac(\\f\\f(\\f\\x8c(\\f\\f(\\ft(\\f\\f(\\f\\x8c(\\f\\f(\\f\\xb6\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\xfe\\xdc(\\f\\f(\\f\\x8c(\\f\\f(\\f\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00#\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0554+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x013\\x15\\x14;\\x012\\x96Ԗ\\x96Ԗ\\x01p\\b0\\b`\\b0\\b\\b0\\b`\\b0\\b\\x01\\xc0\\x96Ԗ\\x96\\xd4\\xe2\\xf0\\b\\bXX\\b\\b\\xf0\\b\\bXX\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x13\\x00\\x1b\\x00.\\x008\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1535\\x06\\\"\\x06\\x14\\x16264\\x1726'.\\x01+\\x01\\x06\\\"'#\\\"\\x0e\\x01\\a\\x06\\x163\\x13\\x15#546;\\x012\\x16\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x90\\xc0F4&&4&\\x1d\\b\\n\\x02\\x06\\\"\\x15\\b\\x13*\\x13\\b\\x0e\\x19\\x12\\x04\\x02\\n\\b\\x9d\\x80\\x13\\r@\\r\\x13\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c``\\xa0&4&&4\\xba\\r\\a\\x13\\x19\\b\\b\\v\\x14\\r\\a\\r\\x01\\xa0``\\r\\x13\\x13\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x009\\x00E\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15&\\\"\\x06\\x14\\x16264\\x1354+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&6\\x14\\x0e\\x0e\\x14\\x0eH\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\b\\xb0\\b\\b\\xb0\\b\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x18\\x0e\\x14\\x0e\\x0e\\x14\\xfe\\xde0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xc8\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x14\\x008\\x00<\\x00@\\x00\\x007\\\"&=\\x0146;\\x01\\x157\\x17532\\x16\\x1d\\x01\\x14\\x06#\\x17#\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x055#\\x15!5#\\x15\\x90\\a\\t\\t\\ap@@p\\a\\t\\t\\a\\x8000\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a00\\a\\t\\t\\a\\x02`\\a\\t\\t\\xfe\\xa9\\xa0\\x01\\x80\\xa0\\xc0\\t\\a\\xe0\\a\\t\\x80  \\x80\\t\\a\\xe0\\a\\t\\x80@\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a \\a\\t\\t\\a \\a\\t@@@@@\\x00\\x00\\x04\\x00\\x00\\xff\\xdc\\x02D\\x01\\xa0\\x00\\v\\x00\\x13\\x00\\x1d\\x00'\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x014\\x1754&\\\"\\x06\\x1d\\x017\\x17\\x16\\a\\x06.\\x027>\\x01\\x1e\\x01\\a\\x06/\\x01&76B\\\\BB\\\\B\\xa0\\x1c(\\x1c\\xec\\xd2\\a\\a/vT\\b\\\"\\x06\\xc3S\\t#\\x05\\a\\xd3\\x06\\a/\\x01\\xa0B.\\xe0.BB.\\xe0.\\x9ep\\x14\\x1c\\x1c\\x14p\\x1e\\xd3\\a\\x05#\\tSv/\\a7Tv/\\a\\a\\xd2\\a\\x06\\\"\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00!\\x001\\x00\\x00\\x135!\\x11\\x14\\x06#!\\\"&=\\x0132=\\x014+\\x01532=\\x014+\\x01532=\\x014#72\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463 \\x01@\\x13\\r\\xff\\x00\\r\\x13x\\b\\bxx\\b\\bxx\\b\\b\\xd0\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\x01\\x00@\\xfe\\xa0\\r\\x13\\x13\\r@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\xc0\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x19\\x005\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x13\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x01h\\n\\x0e\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\b\\x01@\\x13\\r\\xff\\x00\\r\\x13@\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01\\xc0\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\xfe \\x01`\\xfe\\xa0\\r\\x13\\x13\\xc50\\b8\\b\\b8\\b0\\b8\\b\\b8\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc1\\x00#\\x00?\\x00G\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x0135463'\\\"=\\x014;\\x012\\x1f\\x01762\\x1f\\x0132\\x16\\x14\\x06+\\x01'\\a\\x06\\\"/\\x01\\x02\\\"&462\\x16\\x14\\x02\\x10.B\\t\\a \\a\\t\\xfe\\x00\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a\\x88\\b\\b\\x8d\\x05\\x02\\x142\\x04\\x14\\x04\\x1cf\\a\\t\\t\\az\\x162\\x04\\x14\\x04\\x1cL4&&4&\\xe0B.\\xa0\\a\\t\\t\\a00\\a\\t\\t\\a\\x01`\\a\\t\\t\\a\\xf0\\x90\\a\\t\\x80\\b\\x10\\b\\x04(c\\t\\t7\\t\\x0e\\t,c\\t\\t7\\xff\\x00&4&&4\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00I\\x00Q\\x00Y\\x00^\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&=\\x0132=\\x014+\\x01\\\"=\\x014;\\x012=\\x014+\\x01\\\"=\\x014;\\x012=\\x014#!\\\"=\\x014;\\x015463!2\\x16\\x1d\\x0132\\x1f\\x01\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x1475'#\\x15\\x02p\\a\\t\\t\\a08P8\\x808P8\\x98\\b\\b\\xd0\\b\\b\\xf0\\b\\b\\xd0\\b\\b\\xf0\\b\\b\\xfe\\xf0\\b\\b8\\x1c\\x14\\x01\\x00\\x14\\x1c,\\x14\\x0ed\\x0e\\xfe,(\\x1c\\x1c(\\x1c\\x01\\\\(\\x1c\\x1c(\\x1c\\x80d,`\\t\\a \\a\\t(88((88(\\x80\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b0\\x14\\x1c\\x1c\\x140\\x0ed\\x0e\\x14lp\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\xb4\\fdp\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\v\\x00#\\x003\\x007\\x00N\\x00Z\\x00\\x00%2\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\x03\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014&'&=\\x014;\\x012\\x1d\\x01\\x14\\x032\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x055#\\x15\\x01\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014'&=\\x014;\\x012\\x1d\\x01\\x14\\x172\\x1d\\x01\\x14+\\x01\\\"=\\x0143\\x02x\\b\\b0\\b\\b\\x1f).\\b0\\b$\\x1f\\x1d\\b0\\bp\\a\\t\\t\\a\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x01`\\xb0\\x01\\b\\x1a\\x1e\\b0\\b$<\\b0\\bX\\b\\b0\\b\\b`\\b\\x90\\b\\b\\x90\\b\\x01\\t\\x1bW1\\x1e\\b\\b\\x1e&B\\x14\\x13%>\\b\\b>\\v\\xfe\\xf1\\t\\a\\x80\\a\\t\\x1c\\x14@\\x14\\x1cp@@\\x01B\\x129!\\x1e\\b\\b\\x1e,\\x19*AB\\b\\b>,\\xee\\b\\x90\\b\\b\\x90\\b\\x00\\x02\\xff\\xfc\\xff\\xbc\\x02\\x04\\x01\\xc4\\x00\\x1f\\x00>\\x00\\x00\\x137\\x17\\a\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x01\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016'7\\x16\\x0f\\x01\\x06/\\x01\\a\\x17\\x16\\x0f\\x01\\x06/\\x03&?\\x016\\x1f\\x027'&?\\x016\\x17\\xca@\\x88\\xb6\\x1b&@B\\x06\\x05\\f\\x05\\x05C\\a\\x04\\x1b\\x1a8\\x05\\x06\\v\\x06\\x067-8\\x05\\x06\\v\\x06\\x06\\xfd\\x05\\x05\\f\\x05\\x06\\x1c-I\\x06\\x06\\\"\\x06\\x05\\x11\\x88\\x11\\x06\\x06\\\"\\x06\\x05\\x119-\\x1c\\x06\\x06\\v\\x06\\x05\\x01\\x11A\\x88\\xb5\\x1c\\x05\\aC\\x05\\x05\\f\\x05\\x06B@&\\x1b\\x1b8\\x06\\x06\\v\\x06\\x067.8\\x06\\x06\\v\\x06\\x05\\x95\\x05\\x06\\v\\x06\\x06\\x1c-J\\x05\\x06\\\"\\x06\\x06\\x11\\x88\\x11\\x06\\x05\\\"\\x06\\x06\\x118-\\x1c\\x06\\x05\\f\\x05\\x05\\x00\\x00\\x04\\xff\\xff\\xff\\xc0\\x02\\x84\\x01\\xc4\\x00\\v\\x00\\x1a\\x00$\\x00.\\x00\\x00\\x122\\x16\\x17\\x16\\x06#!\\\"&56\\x052\\x16\\x15\\x0e\\x01#\\\".\\x02'463\\x00\\x1e\\x01\\a\\x06/\\x01&76\\a\\x17\\x16\\a\\x06.\\x0276dx[\\t\\x01\\x06\\x03\\xfe\\xd0\\x03\\x05\\t\\x01/\\x03\\x05\\t[<\\x1e7*\\x1c\\x05\\x05\\x03\\x02\\x1fT\\t#\\x05\\a\\xd3\\a\\a/F\\xd3\\a\\a/vT\\t#\\x05\\x01\\x00M:\\x03\\x06\\x06\\x03:c\\x06\\x03:M\\x15$1\\x1d\\x03\\x06\\x01kTv/\\a\\a\\xd3\\a\\x05#F\\xd3\\a\\x05#\\tTv/\\a\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x02\\x01\\x01\\xc3\\x00(\\x00\\x00\\x01\\x16\\x14\\x0f\\x01#\\a\\x06\\\"&4?\\x0157\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017>\\x01\\x01\\xdd#\\x1c\\xfedY\\a\\x14\\x0e\\aY-2\\x06\\x06\\v\\x06\\x062-2\\x06\\x06\\v\\x06\\x062-2\\x06\\x05\\f\\x05\\x053.\\x1bM\\x01\\xac!R\\x1c\\xfdY\\a\\x0e\\x14\\aYe.3\\x05\\x05\\f\\x05\\x062.3\\x05\\x05\\f\\x05\\x062.3\\x05\\x05\\f\\x05\\x062.\\x1c\\x06\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xcf\\x01\\xe4\\x01\\xb4\\x00\\x15\\x00\\x19\\x00\\x00\\x01\\x16\\x0f\\x01\\x06/\\x01\\a\\x06#\\\"'&6?\\x01'&?\\x016\\x1f\\x017'\\a\\x01\\xde\\x05\\x05\\\"\\x06\\x06\\v\\xf6\\x1e+/\\x1f\\x1b\\x06\\x1e\\xf2\\v\\x05\\x05\\\"\\x06\\x06\\bFO\\x94\\x01\\x06\\x06\\x05\\\"\\x06\\x06\\v\\xf6\\x1e$ R\\x1e\\xf1\\v\\x06\\x06\\\"\\x05\\x05\\xeeEO\\x94\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x13\\x00\\x17\\x00'\\x00;\\x00?\\x00\\x00\\x13\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06\\\"&=\\x013\\x1535\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06\\\"&=\\x013\\x1535H\\b\\b\\xd0\\b\\b\\x18/B/0@\\x01\\xa0\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x01X\\b\\b\\xd0\\b\\b\\x18/B/0@\\x01\\x80\\b0\\b\\b0\\b\\xf0!//!\\xf0``\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x80\\b0\\b\\b0\\b\\xf0!//!\\xf0``\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00A\\x00\\x00%2\\x1d\\x01\\x14#!\\\"=\\x0143\\x052\\x1d\\x01\\x14#!\\\"=\\x0143%2\\x1d\\x01\\x14#!\\\"5743%\\x16\\x15\\x11\\x14+\\x01\\\"=\\x014&#!\\\"\\x06\\x1d\\x01\\x14+\\x01\\\"5\\x1147%62\\x17\\x01\\xf8\\b\\b\\xfe\\x90\\b\\b\\x01p\\b\\b\\xfe\\x90\\b\\b\\x01p\\b\\b\\xfe\\x90\\b\\x01\\b\\x01\\xd9\\x1e\\bP\\b\\x13\\x0e\\xfe\\x82\\x0e\\x13\\bP\\b\\x1e\\x01\\x10\\b\\x14\\b`\\b0\\b\\b0\\b`\\b0\\b\\b0\\b\\xc0\\b0\\b\\b0\\b\\x8b\\f \\xfe\\xa9\\b\\b\\xf8\\r\\x13\\x13\\r\\xf8\\b\\b\\x01W \\fq\\x04\\x04\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00!\\x002\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x06\\x15\\x14\\x162654'\\x02\\\"&462\\x16\\x14'\\\"\\x06\\x15\\x14\\x162654'76.\\x01\\x06\\a\\x01\\xc0\\x1a&&\\x1a\\xfe\\x80\\x1a&&\\x1a\\x1a\\x1aq\\x9eq\\x1ad\\x84^^\\x84^\\xa0\\x11\\x17\\x17\\\"\\x17\\v\\\"\\x02\\x05\\f\\f\\x03\\x01\\x80&\\x1a\\xfe\\xc0\\x1a&&\\x1a\\x01@\\x1a&-3OqqO3-\\xff\\x00^\\x84^^\\x84:\\x18\\x10\\x11\\x17\\x17\\x11\\x0f\\fO\\x06\\f\\x05\\x05\\x06\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1f\\x003\\x00}\\x00\\x0062\\x16\\x14\\x06\\\"&4\\x16\\\"&462\\x16\\x14\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x11!\\x11'54+\\x01532=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x06\\x14\\x1626=\\x013\\x15\\x14\\x16264&+\\x01532=\\x014+\\x01532\\xe9\\x0e\\t\\t\\x0e\\t\\xb7\\x0e\\t\\t\\x0e\\t\\xd0\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x02`\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a0\\x02\\x00`\\b\\x88h\\b\\bh\\b\\x10\\bh\\b\\bh\\x88\\b\\b\\x88h\\b\\bh@\\x14\\x1c\\x1c(\\x1c@\\x1c(\\x1c\\x1c\\x14@h\\b\\bh\\x88\\b@\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e\\x01\\x97\\t\\a \\a\\t\\t\\a \\a\\t\\xfe@\\t\\a \\a\\t\\t\\a \\a\\t\\x01`\\xfe\\xa0\\xc8\\x10\\b \\b\\x10\\b\\x18\\b\\b\\x18\\b\\x10\\b \\b\\x10\\b \\b\\x10\\b \\x1c(\\x1c\\x1c\\x14\\x10\\x10\\x14\\x1c\\x1c(\\x1c \\b\\x10\\b \\x00\\x00\\x03\\xff\\xfe\\xff\\xde\\x02\\x82\\x01\\xa2\\x00\\x17\\x00\\\"\\x00-\\x00\\x00%2?\\x01\\x15\\x14\\x06\\x0f\\x01\\x06/\\x01.\\x01=\\x01\\x17\\x1632?\\x01\\x17\\x167\\x16\\x06\\x0f\\x01\\x06/\\x0176\\x17!6\\x1f\\x01\\a\\x06/\\x01.\\x017\\x01\\xaa\\a\\x06\\x89\\x0e\\n\\xd9\\x0f\\x10\\xd8\\n\\x0e\\x89\\x06\\a\\x1c\\x0e@@\\x0e\\xf0\\x04\\x06\\b\\xc6\\f\\x06\\\\\\xfa\\f\\x05\\xfd\\xea\\x05\\f\\xfa\\\\\\x06\\f\\xc6\\b\\x06\\x04\\xc0\\x02'\\xb2\\v\\x11\\x036\\x04\\x046\\x03\\x11\\v\\xb2'\\x02\\x17kk\\x17p\\a\\x0e\\x028\\x04\\v\\x98 \\x01\\n\\n\\x01 \\x98\\v\\x048\\x02\\x0e\\a\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x00\\x1c\\x00$\\x00,\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&'&>\\x027&54\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x96Ԗ\\x96j83AL\\x02\\x04\\x01\\x02\\a\\x11\\x1c\\x069s\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0z\\xacz\\x133\\x03\\x02\\x05\\a\\x151\\x169JVv\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x0f\\x00$\\x00\\x00747\\x05\\x06#\\\"'\\x06#\\\"&767&\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01632\\x16\\x15\\x14\\a@\\t\\x01E&(83AL\\x05\\x04\\x03,\\v9\\x02:\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\riI`j\\x969\\xd0\\x1a\\x1c\\xfc\\n\\x133\\n\\x044+9\\x90\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\tR5zVH:\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x11\\x009\\x00\\x0074&+\\x01463!2\\x16\\x15#\\\"\\x06\\x1d\\x01!%2\\x16\\x15\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&546;\\x012\\x16\\x1d\\x01!5463\\xa0&\\x1a 8(\\x01@(8 \\x1a&\\xfe\\xc0\\x01\\xa0\\x1a& \\t\\a@\\a\\t\\xfe\\x80\\t\\a@\\a\\t &\\x1a \\r\\x13\\x01\\x80\\x13\\r\\xe0\\x1a&(88(&\\x1a@`&\\x1a$\\x13y\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\ay\\x13$\\x1a&\\x13\\r``\\r\\x13\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00F\\x00h\\x00\\x00$\\\"&462\\x16\\x14'\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"&\\x0f\\x01\\x06\\x14\\x17\\x16\\x17\\x15\\x14\\x16;\\x0126=\\x01>\\x0154&/\\x01&546;\\x012\\x16?\\x016&'&'54&+\\x01\\\"\\x0e\\x01\\x15\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x16\\x17#\\\"\\x1d\\x01\\x143!2=\\x014+\\x0167\\x01V\\xaczz\\xacz\\xe6\\x19\\\"\\x18\\x13?\\f\\n\\a&\\n\\x10\\x06\\x10\\x04\\x05\\x13\\x18\\t\\a\\v\\a\\n\\x19\\\"\\x18\\x14>\\f\\n\\x06'\\n\\x10\\x06\\x10\\x04\\x01\\x04\\x13\\x18\\n\\x06\\f\\x04\\b\\x04\\xf6\\r\\x13\\x13\\r\\xfe@\\r\\x13\\x13\\r \\x1e+?\\n\\n\\x01l\\n\\n@,\\x1e z\\xaczz\\xac\\xc5\\x01$\\x1a\\x15!\\x06\\x13\\x03\\x0e\\b\\n\\n\\x06\\x10\\x04\\n\\x03\\x0e\\x01\\x11\\a\\n\\n\\a\\x10\\x01$\\x1a\\x15!\\x06\\x13\\x03\\x0e\\b\\n\\n\\x06\\x10\\x04\\n\\x03\\x0e\\x01\\x11\\a\\n\\x04\\b\\x05\\xfe\\xf1\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13'\\x19\\b\\x10\\b\\b\\x10\\b\\x19'\\x00\\x03\\xff\\xfe\\xff\\xbf\\x02\\x00\\x01\\xc3\\x00\\t\\x00)\\x001\\x00\\x00\\x01&'676\\x16\\x17\\x16\\x1773\\a\\x15\\x14\\x06+\\x01\\a\\x06#&'&6?\\x01&'&54762\\x17\\x1e\\x01\\x17546\\x16264&\\\"\\x06\\x14\\x01 N5\\x11 \\a\\x13\\x02\\n,pp ^BMA\\n\\fk.\\x05\\x06\\b\\x90\\x16\\x11U\\x1a\\x04\\x15\\x04\\x1e}N/\\x1a\\x0e\\t\\t\\x0e\\t\\x01\\x19\\x10;1%\\b\\x06\\nE8K@\\xa0B^8\\b\\x04H\\a\\x10\\x02$\\x10\\x11Qh=7\\t\\nEX\\x05<!/`\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02A\\x00\\x80\\x00%\\x00\\x00%\\x16\\x06\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x16\\a\\x0e\\x01+\\x01\\\"\\x06\\x14\\x16;\\x012?\\x0162\\x025\\f\\x01\\f\\x97\\x12\\x16\\xfe\\x9b\\a\\t\\t\\a7/ *\\xa0\\x0f\\x13\\x02\\x02\\x14\\fN\\a\\t\\t\\av\\x17\\x11]\\t\\x18x\\n\\x1e\\ty\\x0e\\t\\a`\\a\\t&\\x1a\\x17\\x0e\\f\\x0f\\t\\x0e\\t\\x0eJ\\b\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc3\\x00\\x12\\x008\\x00\\x00%'&676\\x16\\x1f\\x017>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x06\\\"\\x05\\x16\\x06\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x16\\a\\x0e\\x01+\\x01\\\"\\x06\\x14\\x16;\\x012?\\x0162\\x01\\x13m\\x17\\x03\\x1a\\x17=\\x15\\v\\v\\x16<\\x17\\x1b\\x03\\x18m\\x06\\x0e\\x01\\x1c\\f\\x01\\f\\x97\\x12\\x16\\xfe\\x9b\\a\\t\\t\\a7/ *\\xa0\\x0f\\x13\\x02\\x02\\x14\\fN\\a\\t\\t\\av\\x17\\x11]\\t\\x18\\xc6r\\x18H\\x16\\x14\\x05\\x16\\f\\f\\x16\\x05\\x14\\x16H\\x18r\\x06H\\n\\x1e\\ty\\x0e\\t\\a`\\a\\t&\\x1a\\x17\\x0e\\f\\x0f\\t\\x0e\\t\\x0eJ\\b\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00E\\x00o\\x00\\x00\\x01.\\x01'&67546;\\x012\\x16\\x1d\\x01\\x16\\x17\\x16\\x15\\x14\\a\\x14\\x0f\\x01\\x06'&+\\x01\\\"\\x15\\x14\\x1f\\x01\\x1e\\x02\\x17\\x16\\x06\\a\\x15\\x14\\x0e\\x01+\\x01\\\"&=\\x01&'&5474?\\x016\\x17\\x16;\\x01254'\\x17\\x16\\x15\\x14\\x0f\\x01\\x06#!\\\"&=\\x0146;\\x017>\\x01;\\x012\\x16\\x15\\x14\\x15\\x0e\\x01+\\x01\\\"\\x06\\x14\\x16;\\x012?\\x0162\\x01\\x0f\\x12\\x1a\\x03\\x03 \\x19\\n\\a\\x12\\a\\n\\x13\\x10\\x05\\x02\\x02\\x13\\x06\\t\\x05\\x06$\\t\\a6\\f\\x14\\r\\x02\\x03 \\x19\\x05\\b\\x04\\x12\\a\\n\\x13\\x10\\x05\\x02\\x02\\x13\\x06\\t\\x05\\x06$\\t\\a\\xf0\\v\\f\\x97\\x12\\x16\\xfe\\x9b\\a\\t\\t\\a7/\\r,\\x11\\xa0\\r\\x13\\x02\\x14\\fN\\a\\t\\t\\av\\x17\\x11]\\t\\x18\\x010\\x05\\x19\\x11\\x18%\\x02\\x12\\a\\t\\t\\a\\x12\\x02\\t\\x04\\x06\\x03\\x03\\x01\\x02\\x11\\x06\\x04\\x02\\b\\a\\x01\\x0f\\x03\\x0e\\x13\\v\\x18%\\x02\\x12\\x04\\b\\x04\\t\\a\\x12\\x02\\t\\x04\\x06\\x03\\x03\\x01\\x02\\x11\\x06\\x04\\x02\\b\\a\\x01\\xa9\\n\\x0e\\x0f\\ny\\x0e\\t\\a`\\a\\t&\\v\\x0f\\x13\\r\\x03\\x02\\f\\x0f\\t\\x0e\\t\\x0eJ\\b\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\x80\\x00\\\"\\x00E\\x00\\x007\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"'&/\\x01&=\\x01462\\x16\\x1d\\x01\\x17\\x162?\\x016/\\x01&>\\x01\\x16$2\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06\\a\\x06+\\x01\\\"&=\\x014?\\x01>\\x01\\x1e\\x01\\x0f\\x01\\x06\\x1f\\x01\\x162?\\x0154\\xcd9\\x1a\\t\\a\\x84\\f\\x03\\x03\\ai\\n\\x13\\x1a\\x13Z\\x04\\x0e\\x05\\r\\n\\b&\\b\\x03\\x16\\x1a\\x01\\x8e\\x1a\\x13\\ni\\a\\x03\\x03\\f\\x84\\a\\t\\x1a9\\b\\x1a\\x16\\x03\\b&\\b\\n\\r\\x05\\x0e\\x04Z\\xdaM\\\"+p\\a\\t\\f\\f\\t\\x87\\r\\x11\\xda\\r\\x13\\x13\\r\\x94l\\x06\\x05\\r\\t\\v3\\v\\x1a\\x10\\x04\\x9c\\x13\\r\\xda\\x11\\r\\x87\\t\\f\\f\\t\\ap+\\\"M\\n\\x04\\x10\\x1a\\v3\\v\\t\\r\\x05\\x06l\\x94\\r\\x00\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xbd\\x02\\x83\\x01\\xc3\\x00%\\x00@\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\x14\\x06+\\x01\\a\\x06&/\\x01&6?\\x0154?\\x01\\x15\\x14\\x1626=\\x01%\\x16\\x06\\x0f\\x0154&+\\x01\\x15\\x14\\x06\\\"&=\\x014?\\x016;\\x0176\\x16\\x17\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\x13\\r\\x10&\\x1a\\x89g\\v\\x1a\\aP\\x06\\a\\vP\\x1fA*<*\\x01,\\x06\\a\\vP!\\x17\\xb8\\x17\\\"\\x17\\x0f!\\x10\\x12gg\\v\\x1a\\a\\x01\\x00\\x0e\\n0\\n\\x0e@\\r\\x13\\x1a&<\\x06\\a\\v\\x8b\\v\\x1a\\x06.0$\\x13'z\\x1e**\\x1e8%\\v\\x1a\\x06.\\x1c\\x17!X\\x11\\x17\\x17\\x11~\\x12\\t\\x15\\n<\\x06\\a\\v\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x02\\x01\\x01\\xc0\\x005\\x00\\x00\\x01\\x16\\x06+\\x01\\a\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x0147'#\\\"&7>\\x027\\x06\\x15#\\x176;\\x015#462\\x16\\x15#\\x1532\\x177#4'\\x1e\\x01\\x02\\x00\\x01\\n\\a\\t\\x89\\x02\\t\\x0e\\t\\x80\\r\\x13\\x02\\x89\\t\\a\\n\\x01\\x04.C)>\\x1ct\\a\\x010pQ^Qp0\\x01\\at\\x1c>?X\\x01\\x11\\a\\n\\x98\\x06\\x02\\x80\\t\\x0e\\t\\x13\\r\\x80\\x02\\x06\\x98\\n\\a$A,\\x0eDl\\x82\\x02\\x80RnnR\\x80\\x02\\x82lD\\x15T\\x00\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xbd\\x02\\x83\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1a\\x00e\\x00n\\x00\\x00\\x12\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14\\x13\\x16\\x06\\a\\x06#\\\"/\\x01?\\x02\\x16\\x0f\\x02\\x0e\\x02#\\\"#.\\x01?\\x016?\\x01'\\a\\x06\\x0f\\x01\\x06\\a#&/\\x01&/\\x01\\a\\x17\\x16\\x1f\\x01\\x16\\x06\\a\\\"#\\\"&/\\x02&?\\x01676\\x17\\x16\\x1f\\x02546;\\x012\\x16\\x1d\\x01?\\x01676\\x17\\x16\\x17\\x05\\x1f\\x01\\a\\x0e\\x01.\\x017\\x94(\\x1c\\x1c(\\x1c\\x01d(\\x1c\\x1c(\\x1cN\\x05\\v\\f\\x06\\x06\\x16\\b\\x1b\\x02)\\n\\a\\x16C\\n\\x01\\t\\x0e\\b\\x01\\x03\\r\\x10\\x01\\n\\x03\\r+\\x11\\a\\x06\\x133\\x06\\v\\xa0\\v\\x063\\x12\\a\\a\\x11+\\r\\x03\\n\\x01\\x10\\r\\x03\\x01\\f\\x12\\x02\\nC\\x16\\a\\x13\\a\\x1e\\x1d\\x1b$\\r\\v\\x10\\t\\a\\xa0\\a\\t\\x10\\v\\r#\\x1b\\x1e\\x1e\\a\\xfd\\xe5)\\x02\\x1b\\x05\\x18\\x19\\v\\x05\\x01`\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\xfep\\f\\x19\\x05\\x02\\x14E\\x13.d \\x19L]\\b\\r\\a\\x02\\x14\\x0e\\\\\\x14\\x0f1G\\x15\\x13\\r!\\x04\\x01\\x01\\x04!\\r\\x13\\x15G1\\x0f\\x14\\\\\\x0e\\x14\\x02\\x10\\f]L\\x19 P \\r\\f\\x0f\\x15'\\\"\\n`\\a\\t\\t\\a`\\n\\\"'\\x15\\x0f\\f\\r \\xb4.\\x13E\\f\\v\\n\\x19\\f\\x00\\x00\\x00\\x03\\xff\\xfd\\xff\\xc0\\x02@\\x01\\xc0\\x00C\\x00K\\x00Z\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x025#\\\"&7>\\x0232\\x1d\\x01\\x14+\\x01\\\"\\x0e\\x01\\a\\x06\\x16;\\x01>\\x01;\\x012\\x176;\\x01\\a\\x16\\x17\\x06264&\\\"\\x06\\x14'\\\"\\a4&5462\\x16\\x15\\x141&#\\x020\\a\\t\\t\\a1\\r\\x12\\t\\a@\\a\\t\\x80\\t\\a@\\a\\t\\x13\\x1d\\x10(\\x19\\\"\\x03\\x02\\x11\\x19\\x0e\\x06\\x06\\x01\\x06\\n\\a\\x02\\x02\\x0f\\v+\\vX:\\x80\\a\\x10\\x1d, \\x13\\x18\\ri\\x0e\\t\\t\\x0e\\t\\xa0\\x17\\x18\\x018P8\\v\\x05\\xe0\\t\\a\\x80\\a\\t\\x12\\rQ\\a\\t\\t\\a00\\a\\t\\t\\aQ\\x0e'0\\x1a&\\x19\\x0e\\x17\\f\\x06\\x14\\x06\\x05\\t\\x05\\f\\x117I\\x02\\\"L\\x16\\x1e@\\t\\x0e\\t\\t\\x0e\\xb7\\x06\\x01\\x04\\x01(88(\\x01\\x01\\x00\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xb8\\x01\\xc2\\x01\\xc1\\x00\\b\\x00)\\x00\\x00?\\x01\\x17\\a\\x06/\\x01.\\x01%\\x16\\x06\\x0f\\x01\\x06'\\x03.\\x014>\\x01?\\x016762\\x17\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01'67&\\\"\\a\\x06uO[\\x0e\\x12D\\t\\x03\\x01\\xbb\\a\\x02\\tE\\x12\\r\\xf9\\r\\f\\a\\x05\\x02,\\x06\\n\\\"k\\x1f\\n\\x06,\\x11\\a\\x15\\\"O4\\x04!Z!\\x04\\x82Xf\\x10\\f\\x1c\\x06\\x16\\b\\b\\x16\\x06\\x1c\\f\\x10\\x01\\x13\\x0f#\\x1b\\x1b\\t\\x03I\\f\\x06\\x16\\x16\\x06\\fI\\x1c@\\x17&W;\\x06\\x12\\x12\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00&\\x00.\\x00;\\x00C\\x00\\x00%2\\x16\\x14\\x06#!673264&+\\x01\\\"&46;\\x01&5462\\x16\\x15\\x14\\x06\\x0f\\x01#\\\"\\x06\\x14\\x163\\x12\\\"\\x06\\x14\\x16264\\x042\\x16\\x15\\x14\\x06\\x0f\\x01.\\x0254\\x16264&\\\"\\x06\\x14\\x01\\xa0(88(\\xfe\\xea\\x1b\\x15\\xe6\\r\\x13\\x13\\r`(88(--8P80\\x18\\x18`\\r\\x13\\x13\\rm\\x1a\\x13\\x13\\x1a\\x13\\xfexP80\\x18\\x18\\v 5S\\x1a\\x13\\x13\\x1a\\x13\\x808P8!\\x1f\\x13\\x1a\\x138P8@ (88(\\x18P\\x1c\\x1c\\x13\\x1a\\x13\\x01\\x00\\x13\\x1a\\x13\\x13\\x1a\\xad8(\\x18P\\x1c\\x1c\\f&V\\x18(H\\x13\\x1a\\x13\\x13\\x1a\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1a\\x00\\x00\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01\\\"&5%3\\x14\\x06\\a&'>\\x03@]\\x83\\t\\a \\a\\t]\\x83\\x01\\xc0@tU\\x10+\\x0f)2;\\x01`\\x83]\\x90\\a\\t\\t\\a\\x90\\x83]@V\\x80\\t=/\\x1a*\\x1e\\x11\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00'\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x135!\\x15\\x01\\xf0\\a\\t\\t\\a\\xfe\\x90\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t \\x01@\\x01\\x80\\t\\a \\a\\t\\xfe\\x90\\a\\t\\t\\a\\x01p\\t\\a \\a\\t0\\a\\t\\t\\a0\\xfe\\xc0\\xe0\\xe0\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00/\\x00\\x00<\\x0162\\x16\\x14\\x06\\\"\\x124&\\\"\\x06\\x14\\x1627\\x17\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\a&\\x0e\\x01\\x17\\x16276&\\a\\x06\\\"\\x91Α\\x91\\xce7\\x13\\x1a\\x13\\x13\\x1a\\xb1\\n\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\xbd\\a\\x12\\x05\\x05-\\x8c-\\n\\x19\\n#nYΑ\\x91Α\\x01\\x1b\\x1a\\x13\\x13\\x1a\\x13\\x10\\t\\x06\\b\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\to\\b\\x04\\x10\\b66\\f\\x14\\f*\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x19\\x00!\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&462\\x16\\x15\\x14\\a&264&\\\"\\x06\\x14\\xc64&&4&\\x01\\xd0\\a\\t\\t\\a\\xfep]\\x83\\x83\\xba\\x83C\\xc5P88P8\\x01\\x00&4&&4\\xba\\t\\a \\a\\t\\x83\\xba\\x83\\x83]^B@8P88P\\x00\\x03\\xff\\xfe\\xff\\xbe\\x02\\x80\\x01\\xc0\\x00\\x16\\x00)\\x001\\x00\\x007'&>\\x01?\\x01\\x177'72\\x1e\\x02\\x1f\\x01\\x16\\x06\\x0f\\x01\\x06&\\x01!\\x11\\x14\\x06#\\\"&'\\x05\\x06/\\x01&7%\\x1146\\x12264&\\\"\\x06\\x1421\\x02\\x03\\x06\\x04M\\x19>\\x19M\\x03\\a\\x05\\x04\\x012\\x01\\x06\\a\\xd8\\a\\v\\x01L\\x01\\x00B.-A\\x02\\xfew\\b\\x02\\r\\x02\\b\\x01Z\\x13\\x89(\\x1c\\x1c(\\x1cH\\xba\\x04\\b\\x06\\x02\\x14\\\\\\x10]\\x15\\x01\\x03\\x05\\x03\\xb9\\a\\v\\x02:\\x02\\a\\x01~\\xfep.B?-l\\x02\\b.\\b\\x02^\\x01D\\r\\x13\\xfe@\\x1c(\\x1c\\x1c(\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00)\\x001\\x009\\x00?\\x00G\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06#\\\"'\\x06#\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x17\\x04264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14%\\x153'&#\\x06264&\\\"\\x06\\x14\\x02m\\x13\\t\\a\\x12\\x02/B/\\x02\\xa4\\x02/!(\\x18\\x18(!/\\x13\\r\\x01\\xa0\\r\\x13&\\x1a\\x13\\xfe\\x10\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x010\\\\+\\x05\\x06\\x03\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x13\\x1aV\\a\\t\\b\\b!//!\\b\\b\\b\\b!/  /!\\x01P\\r\\x13\\x13\\r`\\x13\\xfd\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xcd0+\\x05\\xe0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x1e\\x00&\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x06/\\x01\\x01'&?\\x016\\x1f\\x0132\\x16\\x1d\\x01\\x17576\\x16\\x15\\x11\\x14\\x06\\a%5\\x01\\x06#!\\\"&\\x02z\\x05\\x02\\x04\\x14\\n\\r\\xb2\\xfe\\x8b%\\f\\t\\x14\\n\\rN\\xf4\\x14\\x1c n\\x10\\\"\\x11\\f\\xfd\\xdd\\x01n\\r\\x11\\xfe\\xe0\\x14\\x1c\\n\\x04\\r\\x05\\x1a\\f\\t\\x8a\\x01!\\x1c\\n\\r\\x19\\f\\t=\\x1c\\x14\\xb2\\x18\\x89K\\v\\x11\\x14\\xff\\x00\\r\\x12\\x01\\x10\\xf5\\xfe\\xe5\\n\\x1c\\x00\\x00\\x00\\x00\\x01\\xff\\xfb\\xff\\xc0\\x01%\\x01\\xc0\\x00\\x1e\\x00\\x00\\x172\\x16\\x15\\x14+\\x01\\\"546;\\x015.\\x01?\\x014>\\x01;\\x012\\x16\\x15\\x17\\x16\\x06\\a\\x15\\xd8\\x11\\x17\\b\\xd0\\b\\x17\\x11(4@\\x05\\x10\\x04\\a\\x04\\xe0\\x06\\t\\x10\\x05@4\\x10\\x17\\x11\\b\\b\\x11\\x17u\\fW7\\xb2\\x05\\x06\\x04\\b\\a\\xb27W\\fu\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x17\\x00!\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01>\\x0132\\x16\\x15\\x14\\x0e\\x01\\x0f\\x013\\x17!\\\"&=\\x0146\\x02z\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\r\\x87\\fM2<T\\x13!\\x16\\xc00\\xf8\\xfe\\x82\\x14\\x1cO\\n\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\ti/=T<\\x1b0&\\f3\\xc0\\x1c\\x14\\n7O\\x00\\x06\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1e\\x00.\\x006\\x00R\\x00Z\\x00b\\x00\\x007\\\"&=\\x0146;\\x01>\\x0132\\x1e\\x02\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01\\x0e\\x01\\\"&'7\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x17/\\x01?\\x01\\x1f\\x01\\a\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"&=\\x01467\\x162\\x062\\x16\\x14\\x06\\\"&4&2\\x16\\x1d\\x01#54@\\a\\t\\t\\a\\x0e\\x12P0\\x18.%\\x1e\\t\\x0e\\a\\t\\t\\a\\x0e\\x12P`P\\x12\\x1a8(0(8\\x1c\\x14\\x90\\x14\\x1cH\\f$$\\f\\f$$\\x8c3E\\x1c\\x14P\\x13\\r\\x80\\r\\x13P\\x14\\x1cE30p\\x0f\\x0e\\t\\t\\x0e\\tW\\x0e\\t \\xe0\\t\\a`\\a\\t+5\\x0e\\x19$\\x15\\t\\a`\\a\\t+55+X\\x18(88(\\x18\\x11\\x17\\x17Y$\\f\\f$$\\f\\f\\x95\\x06L3\\n\\x14\\x1c@\\r\\x13\\x13\\r@\\x1c\\x14\\n3L\\x06\\x1f`\\t\\x0e\\t\\t\\x0e\\t\\t\\a00\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x85\\x01\\xc0\\x00\\a\\x00\\x1b\\x00+\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627%\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x1f\\x0176\\x17\\x01\\x15jKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x01T\\b\\t\\x8d\\b\\tQ\\t\\t\\x1c\\b\\t-i\\t\\b\\xc0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x80\\b\\b\\x8d\\b\\tR\\b\\t\\x1b\\t\\t-h\\b\\t\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x17\\x00+\\x003\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x1754+\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\x14\\x16\\x17!\\\"&=\\x0146;\\x01\\x162732\\x17\\x06&\\\"&462\\x16\\x14\\x01\\xb4xTTxT\\xd0\\n&\\n\\f\\n\\n<\\n\\xf0(#\\xfe\\xa5\\x14\\x1cO7\\x11#L#\\x11\\v\\r\\x12+jKKjK\\xe0TxTTxB\\f\\n6\\n\\nL\\n\\x10,L\\x18\\x1c\\x14*7O\\x10\\x10\\x02&HKjKKj\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00;\\x00C\\x00K\\x00v\\x00\\x00%\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\a\\x06'&=\\x01&'\\a\\x06'&'&?\\x01&7'&7676\\x1f\\x01675476\\x17\\x16\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x06264&\\\"\\x06\\x14&\\\"&462\\x16\\x14\\x13\\x15\\x14\\x17\\x06#!\\\"&=\\x0146;\\x01\\x162732\\x163\\x14\\x06\\x15\\x06\\x16\\x1f\\x01\\x06\\x17\\a\\x0e\\x01\\x17\\x16\\x17\\x1632?\\x01\\x16\\x02b\\x1a\\x05\\x01\\n\\x18\\x04\\x05\\x19\\x11\\x14\\x06!!\\x06\\x14\\x11\\x1a\\x05\\x04\\x17\\n\\x02\\x06\\x19\\x04\\x04\\x19\\x05\\x01\\n\\x17\\x04\\x05\\x1a\\x11\\x14\\x06!!\\x06\\x14\\x11\\x19\\x05\\x04\\x18\\n\\x01\\x05\\x1a\\x04\\x8a(\\x1c\\x1c(\\x1c\\xabjKKjKI\\x02\\f\\x0f\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x11\\x02\\b\\x01\\x03\\x04\\n\\f\\b\\x01\\x01\\b\\f\\n\\x04\\f\\x1c\\f\\x11\\n\\t\\b\\x05K\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x15\\x15\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x150\\x1c(\\x1c\\x1c(tKjKKj\\xfe\\xd3\\n\\x05\\a\\b\\x1c\\x14*7O\\x10\\x10\\x01\\x01\\x06\\x02\\r\\x1a\\a\\x04\\x04\\x04\\x05\\a\\x19\\r'\\x1f\\f\\x05\\x04\\x03\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x1c\\x00$\\x00/\\x00\\x00$\\\"&462\\x16\\x14\\a2\\x17\\x0f\\x03\\x06\\x17!\\\"&=\\x0146;\\x01\\x1627\\x177\\x17\\x0f\\x01\\x06&7%\\x16\\x14\\x0f\\x01'?\\x0162\\x17\\x01\\x15jKKjK&;)N\\b\\x01\\a\\x01\\x04\\xfe\\xed\\x14\\x1cO7\\x11#L#>\\x8aG\\x89=\\b\\v\\x01\\x01\\x19\\a\\a*H\\x05%\\a\\x14\\a\\xc0KjKKjk.M\\b\\v=\\n\\v\\x1c\\x14*7O\\x10\\x10\\x91\\x89G\\x8a\\a\\x01\\v\\b\\xe1\\a\\x14\\a*H\\x04&\\a\\a\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\a\\x00\\x1b\\x00#\\x007\\x00\\x006\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627$\\\"&462\\x16\\x14\\a2\\x16\\x15\\x14\\x06+\\x0146=\\x014'6;\\x01\\x1627\\xee\\\\BB\\\\B#0C\\x1c\\x14\\xfe\\xe0\\x14\\x1cC0\\t!F!\\x01\\x04P88P80.B\\x1c\\x14\\xb1\\x01(\\x1b\\x1d\\x04\\x17*\\x17\\xc0B\\\\BB\\\\bC0\\x1d\\x14\\x1c\\x1c\\x14\\x1d0C\\x10\\x10 8P88PXB.\\x14\\x1c\\x01\\x04\\x01'9+\\x0f\\b\\b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc3\\x00\\x10\\x00:\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x17\\x03&4?\\x016\\x1f\\x01\\x16\\x14\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&547'\\x15\\x16\\x15\\x14\\a\\x17\\x16\\x0e\\x01+\\x01\\\"&?\\x01&5475\\x01?6K\\x1c\\x14\\xfe\\xa0\\x14\\x1cK6_\\xd2\\x0e\\x0e\\xbe\\x14\\x14\\xbe\\x0e\\x0e`\\x0eKjK\\x0eB\\f\\v\\x0f\\x01\\x01\\x04\\x03*\\x04\\x05\\x02\\x0f\\v\\f\\u007f\\x02M6\\n\\x14\\x1c\\x1c\\x14\\n6M\\x02_\\x01P\\x03\\x1a\\x03.\\x04\\x04.\\x04\\x19\\x03\\x17\\x1c\\x1d5KK5\\x1d\\x1c\\x105\\a\\r\\f\\b>\\x04\\x06\\x04\\t\\x05>\\b\\f\\r\\a;\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x1b\\x003\\x00;\\x00C\\x00\\x00$\\\"&462\\x16\\x14\\a\\x15\\x14\\x17!\\\"&=\\x0146;\\x01\\x162730\\x17\\x06%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01\\x06264&\\\"\\x06\\x14754&\\\"\\x06\\x1d\\x01\\x01\\x15jKKjK \\t\\xfe\\xe7\\x14\\x1cO7\\x11#L#\\x11\\x0e\\b\\x01 \\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r /B/]\\x1a\\x13\\x13\\x1a\\x13@\\x13\\x1a\\x13\\xc0KjKKj\\x8b\\xa0\\x11\\x0f\\x1c\\x14*7O\\x10\\x10\\x02\\x0e\\x10\\x13\\r\\xa0\\r\\x13\\x13\\r\\xa0\\r\\x13P!//!P\\x90\\x13\\x1a\\x13\\x13\\x1a}P\\r\\x13\\x13\\rP\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00+\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x06\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x1627\\x02p\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\x9bjKKjK&7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\xf0\\t\\a \\a\\t\\t\\a \\a\\t0KjKKjkO7*\\x14\\x1c\\x1c\\x14*7O\\x10\\x10\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x10\\x00%\\x00-\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x17'47&52\\x17>\\x0332\\x16\\x14\\x06#\\\"&'\\x067\\\"\\x06\\x1534&#\\x01E4G\\x1c\\x14\\xfe\\xa0\\x14\\x1cG4e\\xc0++1\\x1d\\a\\x18\\x1d#\\x135KK5,C\\f\\x1cg\\r\\x13\\xa0\\x13\\r\\x9f\\x05L4*\\x14\\x1c\\x1c\\x14*4L\\x05f\\xc73\\x1d\\x1d3(\\x10\\x1b\\x12\\vKjK5)\\x1e`\\x13\\r\\r\\x13\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbd\\x02\\x80\\x01\\xc0\\x00\\x12\\x00\\x17\\x00\\x1f\\x007\\x00\\x00%\\x16\\x15\\x14\\x0e\\x03\\a\\x06'.\\x0154?\\x016\\x17\\a>\\x017'&\\\"&462\\x16\\x14\\a\\x14\\x16\\x17\\x06#!\\\"&=\\x0146;\\x01\\x162732\\x1630\\x06\\x02n\\x12\\x12\\x1c$\\\"\\x11\\v\\v5P\\x12s\\v\\v\\v!;\\x04`\\xdbjKKjK 7,\\t\\n\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x11\\x01\\x05\\x01\\x01\\xb1\\a\\x12$@/&\\x16\\a\\x04\\x04\\x15sN\\x12\\a-\\x04\\x04\\xec\\x0fN:&\\x11KjKKjsDm#\\x04\\x1c\\x14*7O\\x10\\x10\\x01\\x06\\x00\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x81\\x01\\xc7\\x00\\x17\\x00!\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x01>\\x0232\\x16\\x15\\x14\\x06\\a\\x054>\\x017\\x05!\\\"&5\\x02z\\x05\\x02\\x04\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\r\\x93\\x03#8!5K0&\\xfe\\xf6\\x1d3\\x1f\\x01\\x1f\\xfe\\xa2\\x14\\x1c\\n\\x04\\r\\x05\\x1a\\f\\n\\x01\\xc6\\n\\r\\x19\\f\\tr 6\\x1fK5)B\\r\\xae 9%\\x06\\xde\\x1c\\x14\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00+\\x00@\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x0146;\\x012\\x17\\a2>\\x014.\\x01#\\\"\\x06\\x14\\x16'\\\".\\x0154632\\x1e\\x01\\x15\\x14\\x06\\x17\\x14\\x1f\\x01\\x06#!\\\"&=\\x0146;\\x01\\x162732\\x17\\x02w\\t\\n\\\\\\t\\x1b\\t[\\x12\\x12\\x0eO\\x1b\\x12\\\\\\x06\\v\\a\\a\\v\\x06\\n\\x0e\\x0e\\xd6#;\\\"K5#;\\\"KK\\x1c:\\x0f\\x17\\xfe\\xa0\\x14\\x1cO7\\x11#L#\\x11\\x11\\x15S\\t\\x1b\\t]\\t\\t[\\x12\\x1bO\\r\\x13\\x13E\\a\\v\\r\\v\\x06\\x0e\\x14\\x0eX\\\";#5K\\\";#5Ko(\\x1c:\\x13\\x1c\\x14*7O\\x10\\x10\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x1d\\x00\\x00$\\\"&462\\x16\\x14\\a\\x1e\\x01\\x1d\\x01\\x14\\x06#!\\\"&=\\x01467\\x177'3\\a\\x17\\x01\\x15jKKjK 5K\\x1c\\x14\\xfe\\xa0\\x14\\x1cK50  `  \\xc0KjKKjl\\x02N5*\\x14\\x1c\\x1c\\x14*5N\\x02\\xbf\\x8888\\x88\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x82\\x01\\xa0\\x00;\\x00C\\x00K\\x00b\\x00\\x85\\x00\\x93\\x00\\x00%\\x17\\x16\\a\\x06\\a\\x06/\\x01\\x06\\a\\x15\\x14\\a\\x06'&=\\x01&'\\a\\x06'&'&?\\x01&7'&7676\\x1f\\x01675476\\x17\\x16\\x1d\\x01\\x16\\x1776\\x17\\x16\\x17\\x16\\x0f\\x01\\x16\\x06264&\\\"\\x06\\x14$\\\"&462\\x16\\x14\\x17\\\"&5462\\x16\\x15\\x14\\a\\\"\\x06\\a'&#\\\"\\a\\x06\\a\\\"\\a\\x17\\x15\\x14\\x17#\\\"&=\\x0146;\\x01\\x1632363\\x16\\x1f\\x01\\x06\\x170#\\x06\\x17\\x16\\x17\\x163273'\\x0e\\x01\\a#\\\"&=\\x0146;\\x012\\x02b\\x1a\\x05\\x01\\n\\x18\\x04\\x05\\x19\\x11\\x14\\x06!!\\x06\\x14\\x11\\x1a\\x05\\x04\\x17\\n\\x02\\x06\\x19\\x04\\x04\\x19\\x05\\x01\\n\\x17\\x04\\x05\\x1a\\x11\\x14\\x06!!\\x06\\x14\\x11\\x19\\x05\\x04\\x18\\n\\x01\\x05\\x1a\\x04\\x8a(\\x1c\\x1c(\\x1c\\xfe\\xba4&&4&\\xa0.BA]B\\v\\x01\\x01\\x01\\b\\t\\n\\x11\\f\\x17\\r\\x01\\x02f\\x06\\xff\\x14\\x1cD/\\t!#\\x02\\x05\\x02\\x01\\x04\\x06\\b\\x01\\x01\\x01#\\n\\f\\x1c\\f\\x11\\v\\x10\\x01\\xf6\\x1e(\\x05B\\r\\x13&\\x1a@\\x1ak\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x15\\x15\\x0f\\x03\\x06 \\x19\\x04\\x02\\x0f\\x0e\\a\\x1e\\x06\\x01\\a\\a\\x01\\x06\\x1e\\a\\x0e\\x0f\\x02\\x04\\x19 \\x06\\x03\\x0f\\x150\\x1c(\\x1c\\x1c(t&4&&4FB..BB.\\x19\\x17\\x01\\x01\\x05\\x05\\f\\x19\\\"\\x01\\xc2\\n\\n\\n\\x1c\\x14\\x1d0C\\x10\\x01\\x05\\x04\\x04\\x04\\x04\\x12 '\\x1f\\f\\t\\xac\\x10:#\\x13\\r \\x1a&\\x00\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x80\\x01\\xc2\\x00*\\x00B\\x00E\\x00[\\x00^\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x11&'\\a\\x06&/\\x01&6?\\x01&54632\\x1776\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x06\\a\\x11%\\x14\\x0e\\x01#\\\"&505467>\\x03762\\x17\\x16\\x17\\x16'3'\\x05\\x16\\x17\\x1e\\x01\\x15\\x141\\x14\\x06\\\"&5054676762\\a3'\\x02\\x10\\a\\t\\t\\a\\xe0\\a\\t\\a\\x06\\x8e\\x06\\f\\x02\\n\\x03\\x06\\a\\x80\\x01/!.\\x17v\\x06\\f\\x02\\n\\x03\\x06\\a\\x84\\v \\x01 \\\";#5K\\n\\x1e\\x06\\a\\r\\f\\a\\r<\\rS\\x01\\x01ȐH\\xfe\\xab\\x14\\x1a\\x1d\\nKjK\\n\\x1e\\x1a\\x13\\r<f\\x90H\\t\\a \\a\\t\\t\\a\\x01W\\x03\\x040\\x02\\x06\\x06\\x1f\\x06\\f\\x02+\\b\\x02!/('\\x02\\x06\\x06\\x1e\\a\\v\\x03,!\\x0e\\xfeِ\\x16%\\x15/!\\x01\\b\\x17<\\f\\x0e\\x19\\x19\\x0e\\x1a\\x1a\\xa6\\a\\x03\\n\\x90j(59\\x16\\t\\x01!//!\\x01\\b\\x17<4&\\x1a\\xc0\\x90\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x81\\x01\\xc2\\x00+\\x00>\\x00A\\x00W\\x00Z\\x00\\x00\\x1746;\\x01\\x11&/\\x01.\\x01?\\x01>\\x01\\x1f\\x01632\\x16\\x15\\x14\\a\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x02/\\x01\\x06\\a\\x11\\x14\\x06+\\x01\\\"&5'054676762\\x17\\x16\\x17\\x16\\x15\\x14\\x06\\\"&73'\\x01054676762\\x17\\x16\\x17\\x1e\\x01\\x15\\x141\\x14\\x06\\\"&73'`\\t\\a\\xb0 \\v\\x84\\a\\x06\\x03\\n\\x02\\f\\x06v\\x17.!/\\x01\\x80\\a\\x06\\x03\\n\\x01\\a\\b\\x04\\x8e\\x06\\a\\t\\a\\xe0\\a\\t`\\n\\x1c\\x1b\\x14\\r<\\rS\\x01\\x01KjK8\\x90H\\x01\\x00\\n\\x1d\\x1a\\x14\\r<\\r\\x13\\x1a\\x1e\\nKjK8\\x90H\\x10\\a\\t\\x01'\\x0e!,\\x03\\v\\a\\x1e\\x06\\x06\\x02'(/!\\x02\\b+\\x02\\f\\x06\\x1f\\x04\\x05\\x02\\x010\\x04\\x03\\xfe\\xa9\\a\\t\\t\\a\\xc0\\x01\\t\\x1596(\\x1a\\x1a\\xa7\\a\\x02\\x06!//1\\x90\\xfe\\xe0\\x01\\t\\x1695(\\x1a\\x1a&4<\\x17\\b\\x01!//1\\x90\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00\\x17\\x00;\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x16264&\\\"\\x06\\x14\\x13\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a!'#\\\"&=\\x01463!\\a\\x053'#\\x01\\xa0\\x1b%\\x13\\r\\xfe\\xc0\\r\\x13%\\x1bs\\x1a\\x13\\x13\\x1a\\x13H\\b\\b\\x9e\\x12\\x8c\\b\\b\\x84\\x12r\\b\\bi\\x11\\xff\\x00\\tg\\x14\\x1c\\x1c\\x14\\x01\\xd0\\x11\\xfeQQ\\vF@%\\x1b \\r\\x13\\x13\\r \\x1b%`\\x13\\x1a\\x13\\x13\\x1a\\x01\\x8d\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@`\\x1c\\x14\\xa0\\x14\\x1c@\\x80\\x80\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xdd\\x02@\\x01\\xa1\\x00\\x11\\x00\\\"\\x00\\x00\\x016\\x16\\x15\\x11\\x14\\x06#\\x06\\a\\x06.\\x015\\x11476\\a\\x16\\x15\\x11\\x14\\x06'&'\\\"&5\\x1146\\x17\\x16\\x02\\x1e\\x0e\\x14\\x11\\r\\x8cO\\x05\\v\\a\\aM{\\a\\x0f\\bO\\x8c\\r\\x11\\x14\\x0e\\x9a\\x01\\xa0\\x01\\x12\\x0e\\xfe\\xae\\f\\x12\\b'\\x03\\x02\\t\\x05\\x01l\\t\\x04//\\x04\\t\\xfe\\x94\\b\\t\\x04'\\b\\x12\\f\\x01R\\x0e\\x12\\x01\\t\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xbe\\x02\\x80\\x01\\xc0\\x00\\x11\\x00$\\x009\\x00K\\x00i\\x00l\\x00\\x00\\x13\\\"'&476;\\x012\\x16\\a\\x06\\x14\\x17\\x16\\x06#'\\x0e\\x01\\x16\\x17\\x16\\x06+\\x01\\\"'&476;\\x012\\x16%\\x16\\x14\\a\\x06+\\x01\\\".\\x017>\\x01&'&>\\x01;\\x012\\a2\\x17\\x16\\x14\\a\\x06+\\x01\\\"&764'&63\\a\\x13\\x16\\x06\\x0f\\x01\\x06&/\\x01#\\a\\x0e\\x01/\\x01.\\x017\\x13&54>\\x012\\x1e\\x01\\x15\\x14\\a3'\\x97\\f\\x03\\b\\b\\x03\\f\\\"\\b\\t\\x02\\b\\b\\x02\\t\\b_\\f\\x0f\\x04\\x17\\x04\\t\\t#\\n\\x04\\x1b\\x1a\\x04\\v#\\t\\t\\x02\\b\\x1a\\x1a\\x04\\v#\\x06\\t\\x01\\x02\\x16\\x05\\x0f\\f\\x03\\x02\\t\\x06#\\vy\\f\\x03\\b\\b\\x03\\f\\\"\\b\\t\\x02\\b\\b\\x02\\t\\bR\\x82\\x03\\x05\\x06\\x1e\\x06\\f\\x031\\x961\\x03\\f\\x06\\x1e\\x06\\x05\\x03\\x82\\v\\x11\\x1e\\\"\\x1e\\x11p`0\\x01\\x00\\v\\x1a6\\x1a\\v\\r\\b\\x15,\\x15\\b\\r\\xa9\\x164]+\\b\\x0f\\t9|9\\t\\x0f\\x069|9\\t\\a\\v\\x06)[6\\x17\\x05\\v\\a@\\v\\x1a6\\x1a\\v\\r\\b\\x15,\\x15\\b\\rd\\xfe\\xc6\\x06\\f\\x02\\r\\x02\\x05\\x06vv\\x06\\x05\\x02\\r\\x02\\f\\x06\\x01:\\x10\\x14\\x11\\x1e\\x11\\x11\\x1e\\x11\\x14\\xact\\x00\\x02\\x00\\x00\\xff\\xbd\\x02\\x87\\x01\\xc7\\x00\\x17\\x00)\\x00\\x00%\\x17\\x14\\x0e\\x03\\a\\x0e\\x01/\\x016?\\x016&\\x0f\\x0167>\\x013%\\x16\\x0f\\x01\\x17\\x16\\x06\\x0f\\x01'7>\\x01\\x1f\\x0176\\x17\\x01\\x00W\\x03\\r\\x0f\\x1d\\x10\\x1b\\x8565\\x04\\a_\\x03\\x06\\x04<\\x19\\x1d\\x1bQ\\x1c\\x01\\x98\\t\\f\\xe8\\\"\\x03\\x04\\x06;V\\x19\\x03\\f\\x04\\\"\\xe8\\r\\n\\xe7m\\x04\\x0e)$*\\r\\x15\\x11\\x02\\x02\\x17 p\\x04\\b\\x02\\x16J\\x17\\x16\\x14\\xb9\\r\\t\\xb2+\\x05\\f\\x01\\fm6\\x06\\x02\\x05+\\xb2\\t\\f\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\r\\x00!\\x00\\x00\\x13\\x11#\\x11463!2\\x16\\x15\\x11#\\x11\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463!53\\x15`@\\x17\\x11\\x01\\xf0\\x11\\x17@P\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x01\\x10\\xc0\\x01\\x80\\xfe\\xa0\\x01x\\x11\\x17\\x17\\x11\\xfe\\x88\\x01`\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t@@\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x13\\x00\\x1b\\x004\\x00\\x0072\\x16\\x15\\x14\\x06+\\x01\\\"&54632\\x17\\x16276&\\\"&462\\x16\\x14\\x012\\x16\\x15\\x11\\x14\\x06+\\x01&'353\\x153\\x11!\\x15&#5463\\xd0/A\\x1c\\x14\\xe0\\x14\\x1cA/\\x04\\x03\\x15(\\x15\\x03\\x04P88P8\\x01P\\x14\\x1c\\x1c\\x14\\xf5\\t\\x1eL\\x80@\\xfe\\xa0\\x1f!\\x1c\\x14`B/\\x13\\x1c\\x1c\\x13/B\\x01\\a\\a\\x01 8P88P\\x01\\b\\x1d\\x15\\xfe\\xc4\\x15\\x1d&\\x1a@@\\x01 2\\x12.\\x15\\x1d\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00-\\x007\\x00@\\x00\\x00%\\x16\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54?\\x015#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x0546?\\x01\\x15#\\\"&5%\\x16\\x1d\\x01\\x14\\x06+\\x015\\x01\\xd0\\x10`%6%`\\x10p0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\xfe\\xa0\\v\\bmp\\a\\t\\x02m\\x13\\t\\ap\\xc9\\t\\x12\\xee`\\x1b%%\\x1b`\\xee\\x12\\tD3\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t3\\xd9\\t\\x11\\x03/\\xc0\\t\\a\\x81\\b\\x15d\\a\\t\\xc0\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x11\\x00\\x1f\\x00(\\x000\\x008\\x00\\x005\\x16 7\\x15\\x14\\x06\\\"&5\\x00\\\"&462\\x16\\x14\\x05\\x1e\\x0132>\\x017\\x15\\x14\\x06\\\"&5%567\\x15\\x14\\x0e\\x02$2\\x16\\x14\\x06\\\"&4\\x05&'67\\x15\\x14\\x06=\\x01\\x06=q\\x9eq\\x01\\x8f\\x9eqq\\x9eq\\xfe\\x00\\x1eh:&H>\\x14q\\x9eq\\x01\\xa0?!\\x0e\\x19#\\xfe\\xba\\xa0pp\\xa0p\\x01\\x9b\\f0n37++++\\x1a&&\\x1a\\x01@&4&&4\\xd2\\x19\\x1b\\v\\x18\\x114\\x1a&&\\x1a)?\\v\\x18+\\t\\x10\\x0f\\v\\x93/B//B\\t\\\"\\x17\\x05%+\\x12\\x1e\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x174635\\\"\\x06\\x15\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x91Α\\x91ΑX^BOq\\x98P88P8S\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xcegB^ qO`8P88PH\\x13\\x1a\\x13\\x13\\x1a\\x00\\x02\\x00\\x00\\xff\\xbc\\x02\\x80\\x01\\xc0\\x00)\\x001\\x00\\x00\\x012\\x16\\x15\\a\\x15\\x14\\x06\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\\"#\\\"+\\x01\\x17\\x16\\x0f\\x01\\x06/\\x01#\\a\\x06&547\\x0154632\\x17\\x06264&\\\"\\x06\\x14\\x02 (8`M=)\\x04\\v\\x16\\f\\x04,\\x01\\x02\\x02\\x01'&\\x04\\v\\x16\\f\\x04,ay\\x0f\\x1d\\f\\x01t/!'\\x19J\\x14\\x0e\\x0e\\x14\\x0e\\x01\\xa0%\\x1b\\x10PAe\\x12p\\v\\x04\\b\\x04\\vxh\\v\\x04\\b\\x04\\vx=\\a\\x11\\x11\\x0f\\t\\x01%\\x15!/ H\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00;\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x002\\x16\\x14\\x06#\\\"'\\a!'\\x06#\\\"&462\\x16\\x15\\x14\\a\\x17\\x166?\\x01&5462\\x16\\x15\\x14\\a\\x17\\x1e\\x01?\\x01&54\\x02\\x10\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01\\xcc(\\x1c\\x1c\\x14\\x03\\x05H\\xfe\\x80H\\x05\\x03\\x14\\x1c\\x1c(\\x1c\\x04H\\v\\x1b\\x06R\\x12\\x1c(\\x1c\\x12R\\x06\\x1a\\fH\\x04\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\x1c(\\x1c\\x01\\xc1\\xc1\\x01\\x1c(\\x1c\\x1c\\x14\\n\\n+\\a\\a\\v\\x8f\\x0f\\x16\\x14\\x1c\\x1c\\x14\\x16\\x0f\\x8f\\v\\a\\a+\\n\\n\\x14\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x10\\x00\\x18\\x00(\\x000\\x008\\x00@\\x00H\\x00P\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x017>\\x01'\\x06264&\\\"\\x06\\x14'\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x17\\x06264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x02P\\x14\\x1c\\x1c\\x14\\xe0\\x14\\x1c\\x88\\x12\\t\\n\\x03\\x14\\x0e\\x0e\\x14\\x0e\\x16\\x0e\\x0e\\xaf\\x0f(\\x0f\\xaf\\x0e\\x0e\\xaf\\x0f(\\x0f\\xad\\x14\\x0e\\x0e\\x14\\x0e\\x8e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x8e\\x14\\x0e\\x0e\\x14\\x0e\\x01\\x00\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14.\\x89\\x121\\x16\\xb8\\x0e\\x14\\x0e\\x0e\\x14\\xad\\x0f(\\x0f\\xaf\\x0e\\x0e\\xaf\\x0f(\\x0f\\xaf\\x0e\\x0e\\xea\\x0e\\x14\\x0e\\x0e\\x14\\x8e\\x0e\\x14\\x0e\\x0e\\x14r\\x0e\\x14\\x0e\\x0e\\x14r\\x0e\\x14\\x0e\\x0e\\x14\\x8e\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x06\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xfe\\xa0\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xfe\\xa0\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\xd3\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xff\\x00\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xfe\\xa0\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1a\\xd3\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xa0\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b\\xfe\\xc0\\x1b%%\\x1b3\\x1a\\x13\\x13\\x1a\\x13\\xd3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0%\\x1b\\xfe\\xc0\\x1b%%\\x1b\\x01@\\x1b%\\xa0\\x13\\x1a\\x13\\x13\\x1a\\xd3\\x13\\x1a\\x13\\x13\\x1a\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x0062\\x16\\x14\\x06\\\"&46\\\"&462\\x16\\x14\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\xc56%%6%[6%%6%\\x80\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r`%6%%6\\xe5%6%%6U\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x19\\x00!\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x11463!2\\x16\\x15\\x11&264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\ap\\x1c\\x14\\x01 \\x14\\x1cm\\x1a\\x13\\x13\\x1a\\x13\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x8d\\x15\\x1e\\x1e\\x15\\xfes\\xa0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc3\\x00\\x10\\x00\\\"\\x00*\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11#532\\x16\\x15\\x11\\x036\\x16\\x15\\x11!\\\"&=\\x0146;\\x01\\x11467\\x16264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\x90`p\\x14\\x1c\\xe8\\x0f\\x19\\xfe\\xb0\\a\\t\\t\\aP\\x0e\\n\\x86\\x14\\x0e\\x0e\\x14\\x0e\\t\\a \\a\\t\\x01\\x80@\\x1d\\x14\\xfe\\xb1\\x01\\xbf\\x04\\x14\\x10\\xfe!\\t\\a \\a\\t\\x01m\\v\\x12\\x03\\xed\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x000\\x01\\xc0\\x01P\\x00\\x0f\\x00\\x1f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x90\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\xc0\\x13\\r \\r\\x13\\x13\\r \\r\\x13\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x05\\x01\\xc7\\x00\\\"\\x00\\x00\\x01\\x1e\\x01\\x0f\\x013\\x06\\x0f\\x013\\x0e\\x02&'\\a\\x06\\\"&47\\x016&\\x0f\\x01&67>\\x017>\\x01\\x16\\x01\\xd3'\\n!\\x83b\\b'\\x93b\\x1bGE:\\x16B\\a\\x14\\x0e\\a\\x01\\x04\\v\\x17\\v\\xb3\\x06\\x1d)\\a!.,_Q\\x01\\x93'g9,\\b'1\\x1a\\x1f\\b\\x04\\x06B\\a\\x0e\\x14\\a\\x01\\x03\\f\\x16\\v\\xb25t*\\x06\\\"-,!\\x13\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02@\\x01\\xa0\\x009\\x00A\\x00\\x00\\x01\\x16\\x17\\x16\\x15\\x14\\x06\\x0f\\x01\\x1732\\x16\\x15\\x14\\x06+\\x01'6.\\x01'&\\\"\\x0f\\x01\\x06\\x16?\\x016\\x17\\x1e\\x01\\x0f\\x0132\\x16\\x15\\x14\\x06#!\\\"&54>\\x037>\\x012\\x16\\x06264&\\\"\\x06\\x14\\x01\\xbf:)\\x1e\\x11\\r\\x9ab6\\r\\x13\\t\\aZw\\x02\\x11\\x11\\t\\x1bF\\x1c#\\f\\x13\\r #& \\x14\\x13#O\\r\\x13\\t\\a\\xfe\\xd0\\x1a&\\x1c5HX0\\x06,:,S\\x14\\x0e\\x0e\\x14\\x0e\\x01_\\x14\\x16\\x10#\\x0e\\x1e\\aVi\\x13\\r\\a\\t~\\x18,\\x13\\x06\\x15\\x15\\x1a\\n\\x19\\t\\x19\\x1a\\x0f\\x0eB\\x1b0\\x13\\r\\a\\t%\\x1a1]L<%\\x04\\x1d%%C\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00@\\x00D\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\x16\\x1d\\x01\\x14\\x06'.\\x01=\\x014&+\\x01\\x15!\\x1146;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x1626=\\x01.\\x01=\\x01'&4?\\x0162\\x17\\a5#\\x15\\x01P\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01\\xdd\\x13/!\\x1b%\\x17\\x11\\b\\xfe\\xe0&\\x1a\\xa0\\x1a&\\b$4\\x0e\\x14\\x0e\\x14\\x1c&\\x04\\x04\\f\\x04\\x0e\\x04\\x9c\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x01U\\x13\\x1b\\xdf +\\x03\\x03,\\x1d\\x1c\\x11\\x17p\\x01`\\x1a&&\\x1a\\xc04$ \\n\\x0e\\x0e\\n\\xa1\\x03\\x1f\\x15>&\\x04\\x0e\\x04\\f\\x04\\x04\\xa6\\x80\\x80\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa8\\x00C\\x00P\\x00]\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&/\\x01#\\a\\x0e\\x01+\\x01\\\"&=\\x014?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01&\\a\\x06\\x0f\\x01632\\x173632\\x17'&'&\\x0f\\x01\\x06&/\\x01&6?\\x016\\x16\\x17\\x017&#\\\"\\a\\x15\\x14\\x16;\\x0126%5&#\\\"\\a\\x17\\x1e\\x01;\\x0126\\x02>\\x02C0%.B\\x03\\x03$\\x03\\x03B.%0C\\x02-\\nC$\\x10\\x06\\x06\\x02\\x05\\x02\\f\\x06\\x0e\\x12\\x0f\\x10\\x04'));7J7;))'\\x04\\x10\\x0f\\x12\\x0e\\x06\\f\\x02\\x05\\x02\\x06\\x06\\x10$C\\n\\xfe\\xba\\x04##%$\\x1e\\x15%\\x14\\x1e\\x016$%##\\x04\\x01\\x1e\\x14%\\x15\\x1e\\xa8\\b\\bF/C=,'',=C/F\\b\\b\\xb5&%\\r\\x05\\x02\\f\\x06\\x0f\\x06\\x06\\x02\\x04\\x06\\a\\t\\x11\\x9a\\f\\x1a\\x1a\\f\\x9a\\x11\\t\\a\\x06\\x04\\x02\\x06\\x06\\x0f\\x06\\f\\x02\\x05\\r%&\\xfe\\xf1)\\r\\r%\\x15\\x1d\\x1b\\x17%\\r\\r)\\x13\\x1b\\x1d\\x00\\x00\\x00\\x00\\x01\\xff\\xfd\\xff\\xfd\\x01\\x81\\x01\\x83\\x00\\x17\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06\\a\\x05\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x17\\x01n\\x12\\v\\a\\xfe\\xcd\\f\\x19\\x05\\x0e\\x06\\t\\f\\xdb\\xda\\r\\t\\x06\\x0e\\x05\\x19\\f\\xee\\b\\x15\\\"\\t\\x11\\x03\\x8f\\x06\\t\\f\\x1d\\f\\x19\\x06ff\\x05\\x19\\f\\x1d\\r\\t\\x06\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xd0\\x01\\xc0\\x01\\xb3\\x00\\x18\\x00(\\x00\\x00\\x13.\\x03?\\x01>\\x01\\x17\\x05\\x16\\x1d\\x01\\x14\\a\\x05\\x06&/\\x01&6?\\x01\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\a\\n\\x05\\x01\\x02\\f\\x05\\x1b\\r\\x01.\\x17\\x17\\xfe\\xd3\\x0e\\x1b\\x05\\f\\x05\\r\\r\\xb0\\xc1\\n\\x0e\\x0e\\n\\xfep\\n\\x0e\\x0e\\n\\x01T\\x03\\b\\v\\r\\x06\\x1e\\f\\f\\x05x\\a\\x17\\x10\\x17\\ax\\x05\\f\\f\\x1e\\r\\x18\\x04D\\xe0\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x81\\x01\\xc0\\x00&\\x00,\\x00>\\x00\\x00%\\\"/\\x03&6;\\x012\\x1f\\x0135#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x152\\x16\\x15\\x14\\x06#'\\x153.\\x02\\x13\\x16\\x14\\a\\x06#!\\\"&=\\x01463!26\\x17\\x010\\x10\\nV\\xa0 \\x01\\t\\b(\\b\\x05+а\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a\\xb0]\\x83\\x13\\r\\xa0}\\a#4\\xbc\\x05\\x06!#\\xfe\\xba\\a\\t\\t\\a\\x01F\\r\\x17\\v@\\rs@l\\b\\f\\x06:@\\t\\a \\a\\t\\t\\a \\a\\t@\\x83]\\r\\x13\\xbc|\\x1f4#\\xfe\\xff\\x05\\x0e\\x04\\x1e\\t\\a \\a\\t\\x16\\v\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\x11\\x00\\x1c\\x00)\\x00\\x00\\x012\\x16\\x14\\x06#\\\"'\\x06#\\\"&4632\\x176\\a27&#\\\"\\x0e\\x01\\x15\\x14\\x16!2>\\x0354&#\\\"\\a\\x16\\x01\\xd7FccFQFFQFccFQFF\\xdd////\\x14!\\x14+\\x01L\\f\\x16\\x12\\x0e\\a+\\x1e///\\x01`^\\x84^OO^\\x84^OO\\xe0@@\\x11\\x1e\\x11\\x1a&\\x06\\f\\x10\\x14\\n\\x1a&@@\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xe0\\x02@\\x01\\xae\\x004\\x00@\\x00D\\x00\\x00%\\x15\\x14\\a\\\"#\\\"/\\x01\\x06#\\\"\\a\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01\\x06#\\\"'\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x0154>\\x0376\\x17\\x16;\\x012\\x16\\x06264&#\\\"\\x0e\\x02\\x15\\x14\\x175\\x06\\a\\x02@\\f\\x02\\x02\\n\\x04J\\f\\fLL\\x11\\x17\\t\\a\\x10\\a\\t\\x0e\\x02\\x18\\x18\\t\\a\\x10\\a\\t,4\\x1c$0\\x1a\\tTFCP\\n.Ew\\x14\\x0e\\x0e\\n\\x05\\t\\x06\\x04h\\x11\\x17\\xe6\\xf6\\f\\x04\\b\\x89\\x011\\v\\t;\\a\\t\\t\\a1\\x01\\x066\\a\\t\\t\\aJ\\x19Y4)D&\\x1c\\n\\x02\\x130.=K\\x0e\\x14\\x0e\\x04\\x06\\t\\x05\\n\\xa7c\\x11\\t\\x00\\x01\\x00\\x00\\xff\\xfd\\x01\\x83\\x01\\x83\\x00\\x17\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x0e\\x01'%&=\\x01467%6\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01m\\r\\t\\x06\\x0e\\x05\\x19\\f\\xfe\\xcd\\x12\\v\\a\\x013\\f\\x19\\x05\\x0e\\x06\\t\\f\\xdbZ\\x05\\x19\\f\\x1d\\r\\t\\x06\\x8f\\b\\x15\\\"\\t\\x11\\x03\\x8f\\x06\\t\\f\\x1d\\f\\x19\\x06f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xd0\\x01\\xc0\\x01\\xb3\\x00\\x16\\x00&\\x00\\x007&=\\x0147%6\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01'\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\x17\\x17\\x01.\\r\\x1b\\x05\\f\\x05\\r\\r\\xb0\\xb0\\r\\r\\x05\\f\\x05\\x1b\\x0eD\\n\\x0e\\x0e\\n\\xfep\\n\\x0e\\x0e\\n\\xea\\a\\x17\\x10\\x17\\ax\\x05\\f\\f\\x1e\\f\\x18\\x05DD\\x04\\x18\\r\\x1e\\f\\f\\x05B\\x0e\\n0\\n\\x0e\\x0e\\n0\\n\\x0e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x18\\x00\\x1c\\x00 \\x00$\\x00H\\x00\\x00\\x01\\x0e\\x03\\x15\\x14\\x16\\x17\\x15!5>\\x014&'5463!2\\x16\\x15\\x055#\\x1535#\\x1535#\\x15\\x055!\\x15#54&\\\"\\x06\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54&\\\"\\x06\\x1d\\x01\\x02\\x80\\a\\f\\b\\x05\\x12\\x0e\\xfd\\x80\\x0e\\x12\\x12\\x0e\\x13\\r\\x02@\\r\\x13\\xfe`@\\xc0@\\xc0@\\xfe`\\x02\\x80@\\t\\x0e\\t\\x80\\t\\x0e\\t\\x80\\t\\x0e\\t\\x80\\t\\x0e\\t\\x01=\\x02\\t\\f\\x0e\\b\\x0f\\x19\\x05cc\\x05\\x19\\x1e\\x19\\x05#\\r\\x13\\x13\\r\\xa0\\x80\\x80\\x80\\x80\\x80\\x80\\xc0``\\x1b\\x06\\n\\n\\x06\\x1b\\x1b\\x06\\n\\n\\x06\\x1b\\x1b\\x06\\n\\n\\x06\\x1b\\x1b\\x06\\n\\n\\x06\\x1b\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x005\\x00U\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x015462\\x16\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\x173\\x14\\a\\x176=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015.\\x01=\\x01\\x17\\x1e\\x01\\x17\\x167\\x17\\x06\\a\\x15\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\xb38P8U\\v\\vUU\\v\\vUU),\\x05\\x1a\\v\\t\\a\\x10\\a\\t\\x14L\\a\\t\\t\\a\\xa0\\a\\t\\t\\a8AW4\\n<)\\a\\x0e2\\x10\\x12\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\t\\x8a-(88(\\b\\x10\\b \\b\\x10\\b  \\x0e\\x10\\x14\\x18\\x1a0\\a\\t\\t\\a0*&\\x80\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\\"\\tiD\\a)(9\\x04\\x01\\x01'\\x06\\x02\\\"\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x81\\x01\\xa1\\x00\\x1e\\x00&\\x00,\\x004\\x00:\\x00@\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x0e\\x01#\\\"'&#\\\"\\x06#\\\"'&5\\x114632\\x17\\x1632632\\x05\\x152>\\x027&\\x03\\x16\\x17.\\x01#6264&\\\"\\x06\\x14\\x055\\x0e\\x01\\a\\x1675&'\\x1e\\x01\\x02m\\x13\\t\\x0f\\b\\x05\\x06+1>\\xf6>?5\\x13\\x13\\r\\x05\\x06+1>\\xf6>?\\xfd\\xf8\\v\\x16\\x10\\f\\x02$\\x1b\\x1e\\\"\\x01%\\x1a\\xefB//B/\\x01`\\x14\\x1e\\x04\\x1f\\x17\\x1a\\x1e\\x01 \\x01\\x8a\\b\\x16\\xfe\\xc3\\t\\x0f\\b\\x02\\r>\\x16\\b\\x16\\x01=\\x0e\\x12\\x02\\r>d=\\b\\x0e\\x13\\v\\x02\\xfe\\xea\\v\\x03\\x1a$\\x118P88PT:\\x03\\x1b\\x13\\x03\\xe61\\n\\x03\\x18#\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x81\\x01\\xa1\\x00\\x1e\\x00&\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x0e\\x01#\\\"'&#\\\"\\x06#\\\"'&5\\x114632\\x17\\x1632632\\x00264&\\\"\\x06\\x14\\x02m\\x13\\t\\x0f\\b\\x05\\x06+1>\\xf6>?5\\x13\\x13\\r\\x05\\x06+1>\\xf6>?\\xfe\\xe7B//B/\\x01\\x8a\\b\\x16\\xfe\\xc3\\t\\x0f\\b\\x02\\r>\\x16\\b\\x16\\x01=\\x0e\\x12\\x02\\r>\\xfe\\xc08P88P\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\t\\x00\\x19\\x00%\\x001\\x00=\\x00G\\x00\\x001\\x11!\\x11\\x14\\x06#!\\\"&%\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"%\\x15\\x143!2=\\x014#!\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x012\\x16\\x1d\\x01!5463\\x02\\x80\\x13\\r\\xfd\\xc0\\r\\x13\\x01\\xc0\\t\\a`\\a\\t\\t\\a`\\a\\t\\bp\\b\\bp\\b\\xfe\\x80\\b\\x010\\b\\b\\xfe\\xd0\\b\\b\\xb0\\b\\b\\xb0\\b\\x020\\a\\t\\xfd\\x80\\t\\a\\x01@\\xfe\\xc0\\r\\x13\\x13\\xdd \\a\\t\\t\\a \\a\\t\\t\\u007f\\x10\\b\\b\\x10\\bX\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x01@\\t\\a00\\a\\t\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x0f\\x00K\\x00W\\x00c\\x00o\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x132>\\x0254&/\\x01&546;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x15\\x14;\\x0125754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014#!\\\"\\x1d\\x01\\x143!2\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x90\\t\\x10\\v\\a\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\xf0\\bp\\b\\bp\\b\\xa0\\bP\\b\\bP\\b\\b\\xfe\\xf0\\b\\b\\x01\\x10\\b\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13\\xfe\\xd8\\b\\f\\x10\\t\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x10\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b \\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x00\\x01\\x00\\x00\\xff\\xb9\\x01\\xc6\\x01\\xc7\\x003\\x00\\x00%#\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x06/\\x01&?\\x01#\\\"&=\\x0146;\\x017#\\\"&=\\x01463!76\\x1f\\x01\\x16\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06\\x01\\xa0bK\\xad\\r\\x13\\x13\\r\\xf7S\\t\\r\\x19\\r\\n37\\r\\x13\\x13\\r\\x82K\\xcd\\r\\x13\\x13\\r\\x01\\x17R\\n\\r\\x19\\r\\n4\\x18\\r\\x13\\x13\\xf0`\\x13\\r \\r\\x13j\\f\\t\\x14\\t\\rC\\x13\\r \\r\\x13`\\x13\\r \\r\\x13j\\f\\t\\x14\\t\\rC\\x13\\r \\r\\x13\\x00\\x00\\x00\\x00\\x05\\xff\\xf7\\xff\\xba\\x02\\x00\\x01\\xcb\\x00\\x15\\x00\\x1d\\x00%\\x00-\\x005\\x00\\x00\\x136\\x1e\\x01\\x15\\x14\\x06+\\x01\\\"\\x06\\x17\\x16\\x06\\a\\x06.\\x027>\\x01\\x02264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\xccP\\x8fU&\\x1bP&(\\x11\\x0f\\x1a\\x1f/hP)\\r\\x0fn/\\x1a\\x13\\x13\\x1a\\x133\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xbb\\x10=\\u007fN\\x1b&@\\\"\\x1c;\\x05\\a*P}CJm\\xfe\\xd4\\x13\\x1a\\x13\\x13\\x1am\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1aS\\x13\\x1a\\x13\\x13\\x1a\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\\"\\x00*\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x13264&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x0172\\x16\\x14\\x06+\\x015\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\xc0(88(`\\a\\t\\t\\a \\a\\t0\\r\\x13\\x13\\r0\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xe08P8\\t\\a\\xe0\\a\\t\\t\\a0\\x80\\x13\\x1a\\x13@\\x00\\x03\\xff\\xff\\x00\\x00\\x01\\x80\\x01\\x81\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x12\\x06\\\"&462\\x1e\\x02\\x14\\x06\\\"&467\\x16\\x14\\a\\x01\\x06\\\"/\\x01&47\\x0162\\x17\\x80%6%%6%\\xdb%%6%%F\\n\\n\\xfe\\xee\\n\\x1a\\n\\x16\\n\\n\\x01\\x12\\n\\x1a\\n\\x01%%%6%%\\xdb%6%%6%\\xd5\\n\\x1a\\n\\xfe\\xee\\n\\n\\x16\\n\\x1a\\n\\x01\\x12\\n\\n\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00$\\x004\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x03\\x153\\x15#\\x15\\x17\\\"\\a'#\\\"&=\\x0146;\\x012\\x16%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x01\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\x13\\r@\\xe0\\xe0@$\\x13I`\\r\\x13\\x13\\r\\x80\\r\\x13\\x01\\xa0\\r\\x13\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\x01  @0p \\x80\\x13\\r\\x80\\r\\x13\\x13\\x13\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\x00\\x04\\x00\\x00\\xff\\xbd\\x01\\x80\\x01\\xc3\\x00%\\x001\\x00=\\x00I\\x00\\x00\\x016\\x16\\x15\\x11\\x14\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"/\\x01\\a\\x06&5\\x1146\\x1f\\x01762\\x1f\\x01762\\x1f\\x01\\x1154+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x01f\\b\\x12\\x12\\b&6\\x05\\n\\x0566\\x05\\n\\x056&\\b\\x12\\x12\\b&6\\x05\\n\\x0566\\x05\\n\\x056\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\x01\\xbd\\x06\\t\\n\\xfe \\n\\t\\x06--\\x03\\x03--\\x03\\x03--\\x06\\t\\n\\x01\\xe0\\n\\t\\x06--\\x03\\x03--\\x03\\x03-\\xfe\\xc8\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00!\\x00+\\x00/\\x003\\x00=\\x00A\\x00K\\x00\\x0073\\x15#\\\"&=\\x0146%\\x11\\x14\\x06#!\\\"&5\\x1146;\\x015462\\x16\\x1d\\x0132\\x16\\x054&\\\"\\x06\\x14\\x16326\\a#\\x1537#\\x15374&\\\"\\x06\\x14\\x16326\\a#\\x1537\\x15\\x14\\x06+\\x01532\\x16   \\r\\x13\\x13\\x02\\r&\\x1a\\xfe\\xc0\\x1a&/!p\\x13\\x1a\\x13p!/\\xfe\\xe8\\x17\\\"\\x17\\x17\\x11\\x11\\x17\\b@@`@@h\\x17\\\"\\x17\\x17\\x11\\x11\\x17\\b@@\\xc0\\x13\\r  \\r\\x13\\xe0\\xc0\\x13\\r\\x80\\r\\x130\\xfe\\xf0\\x1a&&\\x1a\\x01\\x10!/@\\r\\x13\\x13\\r@/q\\x11\\x17\\x17\\\"\\x17\\x17o   \\xa0\\x11\\x17\\x17\\\"\\x17\\x17o \\xa0\\x80\\r\\x13\\xc0\\x13\\x00\\x00\\x01\\xff\\xfd\\xff\\xcd\\x02\\x83\\x01\\xb3\\x007\\x00\\x00\\x01\\x16\\x06\\a\\x01\\x06&/\\x01&6?\\x01\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x017\\x17\\x16?\\x016/\\x0176\\x16\\x17\\x02|\\x06\\a\\v\\xfe\\x0f\\v\\x1a\\x06P\\x06\\x06\\fE<\\x04\\a\\r\\a\\x04<8\\x1c\\x04\\x06\\x0e\\a\\x04\\x1c7<\\x04\\a\\x0e\\a\\x04<7\\x1c\\x04\\a\\x0e\\a\\x04\\x1c7<\\x04\\a\\r\\a\\x04;E\\v\\x1a\\x06\\x01\\x19\\v\\x1a\\x06\\xfe\\xe6\\x06\\x06\\f\\x87\\v\\x19\\a'e\\a\\x04\\b\\x04\\x06f\\x1f/\\a\\x04\\b\\x04\\x060\\x1ff\\x06\\x03\\b\\x04\\af\\x1f/\\a\\x04\\b\\x04\\x060\\x1ff\\x06\\x03\\b\\x04\\af'\\x06\\x06\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00G\\x00\\x007\\x15\\a&5\\x1146;\\x012\\x16\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x143\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"'73\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x01\\xa0\\x9e\\x02\\x13\\r`\\r\\x138\\b\\b88\\b\\b88\\b\\b\\x01x\\r\\x13\\x13\\r\\xfe@\\x02\\x06\\x9f)\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\xa0)\\x9f\\x06\\x02\\x01\\xc0\\r\\x13\\x13\\r \\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\x13\\r`\\r\\x13\\x02\\x9e8\\b\\b88\\b\\b88\\b\\b8\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00@\\x02@\\x01@\\x007\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x013\\x15\\x14;\\x012=\\x01\\x02 \\r\\x13\\x13\\r\\xfe\\x00\\r\\x13\\x13\\r0\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\x01@\\x13\\r\\xc0\\r\\x13\\x13\\r\\xc0\\r\\x13X\\b\\bXX\\b\\bXX\\b\\bXX\\b\\bXX\\b\\bX\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x00\\x01\\xc0\\x00/\\x00\\x0073\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14;\\x01\\x15#\\\"\\x1d\\x01\\x14\\xa8X\\x13\\r\\xc0\\r\\x13\\x13\\r\\xc0\\r\\x13X\\b\\bXX\\b\\bXX\\b\\bXX\\b @\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x13\\r@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x19\\x00/\\x007\\x00A\\x00\\x00546;\\x01\\x11#\\\"&5\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x017\\x16\\x15\\x11#54&+\\x01\\\"\\x06\\x1d\\x01#\\x114?\\x0162\\x17\\x06264&\\\"\\x06\\x14%2\\x16\\x15\\x11\\x14\\x06+\\x01\\x11\\x13\\r@P\\a\\t\\x01h\\b\\b0\\b\\b\\x10\\b\\xa2\\x0e\\x80\\t\\a`\\a\\t\\x80\\x0e\\xa0\\b\\x14\\b3B//B/\\x01p\\r\\x13\\t\\aP\\xe0\\r\\x13\\xfe\\xc0\\t\\a\\x01@\\b\\x10\\b\\b@\\b\\b(@\\n\\x11\\xfe\\x8b\\x90\\a\\t\\t\\a\\x90\\x01u\\x11\\nk\\x05\\x05\\xfb/B//B\\x11\\x13\\r\\xfe\\xf0\\a\\t\\x01@\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x17\\x00\\x00\\x01\\x17\\a#\\a.\\x01'75\\a62\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&47\\x01\\xc0@`>S\\a\\x10\\vS\\xc0\\x16>+\\x16u\\v\\x1e\\v5\\v\\v\\x01\\xc0@\\x80S\\v\\x10\\aS>\\xb7\\x16+>\\x16u\\v\\v5\\v\\x1e\\v\\x00\\x04\\x00\\x00\\xff\\xbd\\x02\\x80\\x01\\xc3\\x00\\a\\x00\\x0f\\x00!\\x004\\x00\\x00\\x13\\\"&46;\\x01\\x15\\x0246;\\x01\\x15#\\\"%2\\x16\\x15\\x14\\x06\\a\\x06'&/\\x0152>\\x0176\\x13\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"'.\\x02#57676\\xc0\\x1b%%\\x1b \\xe0%\\x1b  \\x1b\\x01,IfHM-4#-:\\x1c+\\x0f\\x130\\xd2MH2N/80\\x13\\x0f+\\x1c:-#3\\x01 %6%\\x80\\xfe\\xe56%\\x80\\xc02.&B\\x11\\n\\x04\\x02\\r\\x10\\x80\\v\\t\\f \\x01\\x19\\x11B&\\x1f,\\x15 \\f\\t\\v\\x80\\x10\\r\\x02\\x04\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00*\\x002\\x00:\\x00\\x00\\x122\\x16\\x15\\x14\\x0e\\x01\\a\\x06\\x1f\\x01\\x16\\x0e\\x02+\\x0154+\\x01\\\"\\x1d\\x01#54+\\x01\\\"\\x1d\\x01#\\\"&?\\x016'.\\x0154\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x96Ԗ\\x17*\\x1d\\x11\\x03\\t\\x01\\x02\\x04\\a\\x03N\\b\\x10\\b@\\b\\x10\\bN\\a\\t\\x01\\t\\x03\\x11,2\\x864&&4&\\xe64&&4&\\x01\\xc0\\x83]\\\"A6\\x15\\v\\x13B\\x03\\a\\x05\\x038\\b\\b88\\b\\b8\\v\\aB\\x13\\v Z4]\\xbd&4&&4&&4&&4\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x11\\x00\\x19\\x00\\x1d\\x00/\\x00J\\x00\\x007546;\\x01\\x17#\\\"&\\x122\\x16\\x14\\x06\\\"&4\\x0127\\x01\\x06\\x15\\x14\\x167\\x1735\\x17654&#\\\"\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01'2\\x16\\x17\\x14\\x0e\\x02+\\x01\\\"'.\\x01#\\\".\\x01'46;\\x012\\x17\\x1e\\x01`\\t\\a\\x16`v\\a\\t6Ԗ\\x96Ԗ\\x01\\x00=2\\xfe\\xf5$q| 3\\x1c$qO=2|\\x83\\a\\t\\t\\a#,\\x18#\\x04\\x01\\x02\\x03\\x02\\x10\\a\\x01\\x02\\x12\\v\\x10\\x1c\\x11\\x03\\x05\\x03\\x11\\x06\\x01\\x02\\x12\\x90@\\a\\t`\\t\\x017\\x96Ԗ\\x96\\xd4\\xfe\\xd6$\\x01\\v2=Oq\\xc0  o2=Oq$|\\t\\a@\\a\\t\\xc0\\x1f\\x18\\x01\\x04\\x02\\x02\\x06\\v\\x0f\\x0e\\x19\\x10\\x03\\x06\\x06\\v\\x0f\\x00\\x02\\xff\\xf4\\xff\\xc0\\x02t\\x01\\xc0\\x00\\x1a\\x003\\x00\\x00\\x01\\x16\\x06\\a\\x06#\\\"'\\x06\\\"'\\x06\\\"'\\x06#\\\"'.\\x01?\\x0163!2\\x17\\x032767\\x15\\x14\\x06#!\\\".\\x01=\\x01\\x16\\x17\\x16327\\x15!5\\x16\\x02Z\\x1a&/\\a\\a,\\x1d\\x1eX\\x1e\\x1eX\\x1e\\x1d-\\x06\\a/&\\x1aA\\t\\x12\\x01\\x94\\x12\\t\\a\\t\\t\\a\\t\\x13\\r\\xfe@\\t\\x0e\\t\\t\\a\\t\\t\\r\\x11\\x01\\x80\\x10\\x01I(Z\\x06\\x01!!!!!!\\x01\\x06Z(h\\x0f\\x0f\\xfe\\xef\\x01\\x01\\x03\\xc5\\r\\x13\\t\\x0e\\t\\xc5\\x03\\x01\\x01\\x04dd\\x04\\x00\\x03\\xff\\xfa\\xff\\xc0\\x02\\x86\\x01\\xc0\\x00\\r\\x00\\x1b\\x00%\\x00\\x00%53\\x11\\x14\\x06#!\\\"&5\\x113\\x15%\\x16\\x06#!\\\"&?\\x0163!2\\x17\\x03\\x113\\x11\\x14\\x06+\\x01\\\"&\\x01@@\\x13\\r\\xff\\x00\\r\\x13@\\x01\\xfb\\n\\x12\\x13\\xfd\\xc0\\x13\\x12\\vU\\t\\x11\\x01\\x96\\x11\\t%@\\t\\a \\a\\t@\\xa0\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\xa0\\xf2\\x10\\\"\\\"\\x10\\x80\\x0e\\x0e\\xfe\\x1e\\x01\\x10\\xfe\\xf0\\a\\t\\t\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x13\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x10\\a\\t\\t\\a\\x01\\xa0\\a\\t\\t\\a@\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01`\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\x01@\\t\\a@\\a\\t\\t\\a@\\a\\tP\\t\\a@\\a\\t\\t\\a@\\a\\t\\xb0\\t\\a@\\a\\t\\t\\a@\\a\\t\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x03\\x00\\a\\x00\\v\\x00\\x13\\x00\\xb0\\x00\\xb4\\x00\\x007\\x17\\a'7\\a'7\\a7\\x17\\a\\x022\\x16\\x14\\x06\\\"&4\\x0564/\\x0176/\\x01&\\x0f\\x01'7\\x17\\x16?\\x016/\\x0176/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\a'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x017\\x17\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x017\\x17\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x0176/\\x01&\\x0f\\x01'7\\x17\\x167'7\\x17\\a\\xbc---\\x9e-------jԖ\\x96Ԗ\\x01\\xbb\\x02\\x02\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\x98---\\xed---D---\\xb5---\\x01q\\x96Ԗ\\x96Ԓ\\x03\\x06\\x03\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x06\\v\\x06\\x06\\x1c\\x1c\\x06\\x06\\v\\x06\\x06\\x1c-\\\"\\x11\\x06\\x06\\v\\x06\\x05\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11!-\\x1c\\x06\\x05\\f\\x05\\x05\\x1d\\x1d\\x05\\x05\\f\\x05\\x06\\x1c.\\\"\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x06\\x06\\v\\x06\\x06\\x11\\x11\\x05\\x06\\v\\x06\\x06\\x11\\\"-\\x1c\\x06\\x063---\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00+\\x00/\\x00M\\x00\\x00%\\x16\\x1d\\x01#54&+\\x01\\\"\\x06\\x1d\\x01#54&+\\x01\\\"\\x06\\x1d\\x01#54?\\x016;\\x01546;\\x012\\x16\\x1d\\x0132\\x17'5#\\x15\\x1753\\x15\\x14\\x06#!\\\"&=\\x013\\x15\\x14\\x16;\\x0126=\\x013\\x15\\x14\\x16;\\x0126\\x01\\xf7\\t\\x80\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x80\\t.\\t\\r3\\x1c\\x14\\xa0\\x14\\x1c3\\r\\t\\x89\\x80\\xc0\\x80\\x13\\r\\xfe@\\r\\x13\\x80\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\xe9\\t\\rS\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10S\\r\\t.\\tP\\x14\\x1c\\x1c\\x14P\\t\\t@@\\xd0\\x10`\\r\\x13\\x13\\r`\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\x00\\x01\\xff\\xfe\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00%\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01&\\x06\\x1d\\x01\\x14\\x06#!\\\"&=\\x014&\\x0f\\x01\\x06&/\\x01&6?\\x01\\x1e\\x01267\\x02w\\x06\\x04\\x039\\x03\\r\\x059\\b\\x0f\\x13\\r\\xff\\x00\\r\\x13\\x0f\\b9\\x06\\f\\x039\\x03\\x04\\x06\\xc3\\x0f?L?\\x0f\\x01`\\x03\\r\\x06r\\x06\\x05\\x03\\x1c\\x04\\t\\t\\xfe\\r\\x13\\x13\\r\\xfe\\t\\t\\x04\\x1c\\x03\\x05\\x06r\\x06\\r\\x03`\\x15\\x1a\\x1a\\x15\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbd\\x01C\\x01\\xc0\\x00\\a\\x00:\\x00I\\x00\\x00\\x12\\\"&462\\x16\\x14\\x17\\x1e\\x01\\x0e\\x01/\\x01&/\\x01\\a\\x17\\x16\\x1f\\x01\\x16\\x0e\\x01&/\\x01&/\\x01&?\\x01\\a\\x06\\x0f\\x01\\x0e\\x01.\\x01?\\x0167>\\x0632\\x16\\x1f\\x01\\a7\\x16\\x17\\a\\x06\\x0f\\x01\\x06\\\"&4?\\x016\\xe4(\\x1c\\x1c(\\x1c.\\f\\t\\f\\x19\\f\\x17\\x17\\t\\x05\\x11-\\v\\x04\\x16\\x03\\r\\x1a\\x17\\x03\\x12\\x04\\v<\\x17\\b\\x0f\\x1a\\f\\x05\\a\\x06\\x18\\x18\\b\\x06\\x06\\x10\\\"\\x04\\x15\\a\\x11\\t\\x0e\\x0e\\a#8\\f\\t\\xcd\\x14\\b(\\x0e\\x05\\t;\\n\\x1a\\x13\\t2\\n\\x01`\\x1c(\\x1c\\x1c(\\xb1\\x06\\x19\\x18\\b\\x06\\v\\f\\x19\\x11E2\\v\\x10Y\\r\\x17\\x06\\r\\rJ\\x0f\\fB\\x19\\\"<\\v\\x04\\v\\x0e\\v\\t\\f\\x19\\f\\x0e \\x0e\\x01\\t\\x03\\x06\\x02\\x03\\x01*\\\"\\x1d\\x994\\n,\\\"\\f\\t<\\t\\x13\\x1a\\n2\\t\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x1c\\x00$\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x14\\x06#!\\\"\\x06\\x14\\x163\\x04264&\\\"\\x06\\x14\\x01\\xcd\\x15\\x1e\\x1e\\x15\\xfes\\x1b%%\\x1b\\x01p\\x14\\x1c\\t\\a\\xfe\\x80\\a\\t\\t\\a\\x01C\\x1a\\x13\\x13\\x1a\\x13\\x01@\\x1c\\x14\\xff\\x00\\x14\\x1c%\\x1b\\x01@\\x1b%\\x1c\\x14\\a\\t\\t\\x0e\\t\\xd0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00$\\x006\\x00O\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\x162654':\\x0112764.\\x01/\\x01&\\x06\\a\\x06\\x1e\\x02\\x1f\\x01\\x06\\x17\\x16>\\x01'&\\\"\\a\\x0e\\x01\\x1e\\x0367627>\\x01'.\\x02\\x0f\\x01\\x0e\\x01\\x17\\x16323\\x06\\x15\\x14\\x162654'\\x91Α\\x91Α\\x88\\x13\\x1a\\x13\\x02\\x01\\x01\\f\\x03\\x01\\x03\\x05\\x03P\\a\\v\\x02\\x01\\x01\\x02\\x05\\x04\\x1e\\n\\xa8\\x06\\x12\\x06\\x06\\x1fb \\x02\\x02\\x02\\x04\\x06\\a\\a\\x03\\x15Fb\\x06\\x06\\x02\\x01\\x06\\b\\x04P\\a\\x06\\x02\\x03\\f\\x01\\x01\\x02\\x13\\x1a\\x13\\n\\x01\\xb8\\x91Α\\x91\\xceW\\r\\x13\\x13\\r\\x02\\x06\\v\\x04\\x06\\x05\\x04\\x01\\x18\\x02\\x06\\x06\\x04\\x06\\x05\\x04\\x01\\n\\t\\xa8\\b\\x04\\x10\\b&&\\x03\\b\\x06\\x06\\x03\\x01\\x03\\x04\\x19\\xa2\\x02\\v\\a\\x04\\x06\\x01\\x01\\x18\\x02\\v\\a\\v\\x05\\x03\\r\\x13\\x13\\r\\x0e\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\\"\\x002\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x024&\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x01\\x11!\\x11\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x020\\a\\t\\t\\a\\xa0\\a\\t8P8\\t\\a\\xa0\\a\\t\\t\\a\\x10\\x02\\x00\\x10\\a\\t\\t\\a\\xfd\\xe0\\a\\t\\t\\a\\t\\a \\a\\t\\t\\a\\x10\\xa0(88(\\xb0\\a\\t\\t\\a \\a\\t\\x01`\\xfe\\xa0\\x01\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\t\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x04\\x00\\t\\x00\\x11\\x00\\x16\\x00\\x1b\\x00#\\x00:\\x00B\\x00J\\x00\\x00%\\x06\\a6?\\x01#&'\\x16'\\x1e\\x02\\x17#>\\x01\\a\\x06\\a#6\\x17&'3\\x167\\x0e\\x01\\a.\\x02'\\x17\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x06\\\"\\x06\\x14\\x16264\\x135!\\\"\\x06\\x14\\x163\\x01>\\b-\\f\\x02''\\x02\\f-V\\x04\\n\\b\\x01.\\x01\\x0f\\\"\\f\\x02'\\b--\\b'\\x02L\\x01\\x0f\\a\\x04\\n\\b\\x01\\xf7\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xabjKKjK \\xfe\\xe0\\r\\x13\\x12\\x0e\\xf01\\x15\\x1d) )\\x1d\\x15\\x1e\\x05\\x12#\\x15\\x1e*\\x02\\x1d)1\\x97\\x151))\\x1e*\\a\\x05\\x12#\\x15\\x96\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a&KjKKj\\xfe\\xcb@\\x12\\x1c\\x12\\x00\\x00\\x04\\xff\\xfd\\xff\\xbe\\x01\\x83\\x01\\xc5\\x00\\x14\\x00,\\x00x\\x00\\x83\\x00\\x007\\x16327\\a\\x0e\\x01/\\x01\\a\\\"&?\\x01\\x16\\x17\\x16\\x17\\x16\\x17\\x05\\x16\\x06#'\\a\\x06&/\\x01\\x1632767672>\\x01367\\a\\x0e\\x01'&\\\"\\a\\x06&'.\\a'&'.\\x01'&764'&7>\\x0176767676\\x17\\x16276\\x17\\x1e\\x01\\x17\\x16\\x17\\x1e\\x03\\x17\\x16\\a\\x06\\x14\\x17\\x16\\a\\x0e\\x01\\a\\x06\\a\\x0e\\x06&\\x14\\x162654.\\x01#\\\"a\\x16\\x1e\\x12\\x114\\x03\\x11\\x06%4\\t\\n\\x03.\\f\\r\\x03\\x06\\t\\x04\\x01!\\x03\\n\\t4%\\x06\\x11\\x034\\x11\\x12\\x1e\\x16\\x01\\x02\\x04\\t\\x02\\x02\\x03\\x02\\r\\fJ\\n\\x1c\\f\\t\\x18\\t\\f\\x1c\\n\\x03\\x04\\x04\\x04\\x02\\a\\x03\\t\\x03\\x16\\x06\\x06\\x05\\x0f\\x11\\x06\\x06\\x06\\x06\\x11\\x0f\\x05\\x06\\x06\\x16\\x19\\b\\x02\\n\\x11\\x16\\x15\\n\\x15\\x16\\x11\\x0f\\t\\x15\\x16\\x06\\x04\\x01\\b\\x03\\n\\x11\\x06\\x06\\x06\\x06\\x11\\x0f\\x05\\x06\\x06\\x16\\x03\\n\\x03\\a\\x03\\x05\\x05\\xa87N7\\x19+\\x1a'U\\x15\\n\\x80\\b\\x03\\x06&\\x02\\x0e\\bp\\n\\x04\\x01\\x01\\x02\\x05Y\\b\\x0e\\x02&\\x06\\x03\\b\\x80\\n\\x15\\x01\\x02\\x05\\x02\\x01\\x01\\x04\\n\\x03\\n\\x03\\a\\x06\\x06\\a\\x03\\n\\x03\\x04\\x03\\x03\\x01\\x02\\x01\\x02\\x01\\x06\\x17\\x15\\t\\x10\\x11\\x16\\x16\\n\\x15\\x17\\x11\\x0f\\t\\x16\\x16\\a\\x06\\b\\x01\\v\\x11\\x06\\x06\\x06\\x06\\x11\\x10\\x05\\x05\\a\\x16\\x0f\\x04\\x0e\\x03\\n\\x11\\x17\\x15\\n\\x16\\x16\\x11\\x10\\t\\x15\\x17\\x06\\x01\\x02\\x01\\x03\\x01\\x04\\x05\\xc9P88(\\x1a,\\x1a\\x00\\x00\\x00\\x02\\xff\\xff\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x11\\x00-\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"/\\x01&4?\\x0163\\x05'76/\\x01&\\x0f\\x01'&\\x0f\\x01\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016\\x02@\\x1b%%\\x1b\\xfe\\x8d\\x1a\\x13\\x97\\t\\t\\x97\\x13\\x1a\\x01\\x1e>>\\f\\f\\x16\\f\\v>>\\v\\f\\x16\\f\\f>>\\f\\f\\x16\\f\\v>>\\v\\f\\x16\\f\\x01\\x80%\\x1b\\xff\\x00\\x1b%\\x13\\x96\\n\\x1a\\n\\x96\\x13\\xfe>>\\v\\f\\x16\\f\\f>>\\f\\f\\x16\\f\\v>>\\v\\f\\x16\\f\\f>>\\f\\f\\x16\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x0f\\x00'\\x007\\x00M\\x00]\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a\\x15\\x14\\x17\\x06\\a#>\\x017#\\x0e\\x03#\\\"&4632\\x16\\x1f\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x14\\x06#\\\"&'#\\x1e\\x01\\x17#&'6=\\x013>\\x01\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x01p\\r\\x13\\x13\\r`\\r\\x13\\x13\\r@\\x066\\x112\\v9*P\\x03\\f\\x0f\\x13\\n\\x1b%%\\x1b\\x14 \\a%\\r\\x13\\x13\\r`\\r\\x13\\x13\\r\\x02\\x00\\x1b%%\\x1b\\x14 \\aP*9\\v2\\x116\\x06U\\a \\x14\\r\\x13\\x13\\r`\\r\\x13\\x13\\r\\x01\\xa0\\x13\\r`\\r\\x13\\x13\\r`\\r\\x138H\\x0e\\f'?0O\\x19\\t\\x0f\\n\\x06%6%\\x16\\x12\\xe8\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x01\\x10%6%\\x16\\x12\\x19O0?'\\f\\x0eH\\x12\\x16\\xfe\\xf0\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc7\\x01\\xc1\\x001\\x00;\\x00\\x00\\x05#\\\"'&54675#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x16\\x177'&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06/\\x01\\a\\x16\\x15\\x14\\a\\x06'\\x06\\a!&/\\x015#\\x15\\x01.\\xdc&\\x12\\x1a4,\\x10\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\x10\\x15\\x12'\\t\\f\\f\\v\\v\\f4\\f\\f\\v\\v\\f\\t+\\x1b\\x1a\\x12\\xdc%\\x13\\x01\\x00\\x13%\\x18`@!,34Y\\x19\\x9a\\t\\a \\x06\\n\\t\\a \\x06\\n\\x9a\\f\\x11'\\t\\f\\v\\v\\f\\f4\\f\\v\\v\\f\\f\\t+.53,!\\xfd\\x16''\\x16\\r\\xb6\\xb6\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\t\\x00\\x1b\\x00#\\x00\\x00\\x012\\x16\\x1d\\x01!5463\\x035!\\x15\\x14\\x06+\\x01\\x15\\x14\\x06\\\"&=\\x01#\\\"&\\x16\\\"\\x06\\x14\\x16264\\x01`\\r\\x13\\xfe\\x80\\x13\\r \\x01\\x80%\\x1b@%6%@\\x1b%\\xca\\x14\\x0e\\x0e\\x14\\x0e\\x01\\xc0\\x13\\r\\xe0\\xe0\\r\\x13\\xfe\\xc0  \\x1b%@\\x1b%%\\x1b@%M\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x004\\x00@\\x00H\\x00R\\x00\\\\\\x00d\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x015462\\x16\\x1d\\x01%\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x02264&\\\"\\x06\\x1475#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0226=\\x014&+\\x01\\x12264&\\\"\\x06\\x14\\x01\\xe8\\n\\x0e\\x0e\\n\\b\\x0e\\f\\x06\\x13\\r \\r\\x13\\xc0\\x13\\r \\r\\x13\\r\\x13\\b\\n\\x0e\\x0e\\n\\b\\x82\\xbc\\x82\\xfe\\xc0\\b\\xb0\\b\\b\\xb0\\b=\\x1a\\x13\\x13\\x1a\\x13\\xa0p\\r\\x13\\x13\\r\\x90p\\r\\x13\\x13\\rps\\x1a\\x13\\x13\\x1a\\x13\\x01@\\x0e\\nP\\n\\x0e\\xa6\\v\\x0f \\r\\x13\\x13\\r  \\r\\x13\\x13\\r \\x13\\r\\xa0\\x0e\\nP\\n\\x0e0\\\"..\\\"08\\x10\\b\\b\\x10\\b\\xfe\\xb0\\x13\\x1a\\x13\\x13\\x1a]\\xa0\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13\\xfe\\xf0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\xff\\xc0\\x02\\x02\\x01\\xc0\\x00[\\x00\\x00%\\x16\\x14\\a\\x06#\\\"#\\x16\\x17\\x16\\a\\x06#\\\"'&'\\x15\\x14+\\x01\\\"=\\x01\\x06\\a\\x06#\\\"'&767\\\"#\\\"'&4767.\\x02'454632\\x17\\x1e\\x02\\x170454>\\x01762\\x17\\x1e\\x04\\x15\\x14\\x15>\\x027632\\x17\\x16\\a\\x0e\\x02\\a\\x16\\x01\\xf7\\t\\t<I\\t\\t\\f\\x05\\x03\\a\\x04\\a\\x02\\x03%(\\b\\x10\\b(%\\x03\\x02\\a\\x04\\a\\x03\\x05\\f\\t\\tI<\\t\\t ,\\x1c+\\v\\x03\\t\\a\\x02\\x01\\v\\\"S!!\\x16\\b\\x04\\x12\\x04\\x04\\t\\x15\\x10\\r!S\\\"\\v\\x01\\x02\\a\\x04\\a\\x02\\x03\\v+\\x1c-X\\x05\\x13\\x05\\x1f\\x16\\x11\\t\\a\\x05\\x01\\f\\x1b@\\b\\b@\\x1c\\v\\x01\\x05\\a\\t\\x11\\x16\\x1f\\x05\\x13\\x05\\x11\\t!V#\\v\\x02\\x02\\x06\\n\\x01\\x02\\n)\\x1a\\x03\\x015p(\\r\\a\\a\\x05\\x10.0F!\\x03\\x01\\x1a)\\n\\x02\\x01\\x05\\x06\\t\\v#V!\\t\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc1\\x00\\x14\\x00'\\x00\\x00\\x01\\x16\\x14\\a\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x17\\x05'&?\\x0162\\x1f\\x01762\\x1f\\x01\\x16\\x0f\\x01\\x06\\\"\\x01\\xf9\\a\\a\\xfe\\xd8\\a\\x14\\a\\xa8\\a\\a(\\a\\x14\\ao\\xf0\\x06\\x14\\a\\xfe\\xe4p\\f\\f-\\x05\\r\\x057\\x98\\x04\\r\\x05-\\f\\f\\xd0\\x04\\x0e\\x01\\x11\\a\\x14\\a\\xfe\\xd8\\a\\a\\xa8\\a\\x14\\a(\\a\\ap\\xf0\\a\\a\\x92p\\f\\v-\\x05\\x057\\x97\\x05\\x05-\\v\\f\\xd0\\x05\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x17\\x00-\\x00\\x00\\x052\\x16\\x15\\x14+\\x01\\\"546;\\x015'&63!2\\x16\\x0f\\x01\\x15\\x132\\x16\\x14\\x06#\\\"'7\\x163264&#\\\"\\x06\\a#>\\x01\\x01(\\x11\\x17\\b\\xf0\\b\\x17\\x118\\xa9\\v\\f\\x11\\x01n\\x11\\f\\v\\xa9\\xc0<TT<(#$\\x13\\x14(88(\\x1a,\\r4\\x0fJ\\x10\\x17\\x11\\b\\b\\x11\\x17}\\xa9\\f\\x1e\\x1e\\f\\xa9}\\x01\\xd0TxT\\x15$\\t8P8\\x1a\\x16+5\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x19\\x00)\\x00\\x00\\x01\\x1e\\x01\\x15!4675#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01 Rn\\xfe@nR\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\xd0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01=\\v~TT~\\v\\x13\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xfe\\xf0\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x04\\xff\\xff\\xff\\xba\\x02\\x06\\x01\\xc6\\x00%\\x00-\\x005\\x00=\\x00\\x00%\\x16\\x0f\\x01\\x0e\\x02\\x0f\\x01\\x06/\\x01.\\x01/\\x01.\\x01/\\x01&54?\\x01>\\x01?\\x016\\x1f\\x01\\x16\\x1f\\x01\\x1e\\x01\\x17\\x04264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\xfe\\a\\x13$\\x05\\x13\\x17\\nE'*M\\x11+\\f7\\r\\x16\\x02\\f\\x02\\x0e$\\b!\\x10E'*M*\\x1e7\\r\\x16\\x02\\xfe\\xb1\\x1a\\x13\\x13\\x1a\\x133\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xc1*'E\\n\\x17\\x13\\x05$\\x13\\a\\f\\x03\\x15\\r7\\f+\\x12L\\n\\v\\x1f\\x1dE\\x0f\\\"\\b$\\x13\\a\\f\\x06\\x1f7\\f+\\x12\\xbd\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x93\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xba\\x02\\x05\\x01\\xc5\\x00#\\x00+\\x003\\x00;\\x00\\x00%\\x16\\x0f\\x01\\x0e\\x02\\x0f\\x01\\x06/\\x01.\\x01/\\x01.\\x01/\\x01&54?\\x01>\\x01?\\x016\\x17\\x1e\\x013\\x14\\x16\\x04264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01\\xff\\x06\\x13#\\x06\\x13\\x17\\nE'*M\\x11+\\f7\\r\\x16\\x02\\f\\x02\\x0e$\\b!\\x10E&*\\x01J5J\\xfe\\xd9\\x1a\\x13\\x13\\x1a\\x133\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xc0*&E\\n\\x17\\x13\\x05$\\x13\\a\\f\\x03\\x15\\r7\\f+\\x12L\\n\\v\\x1f\\x1dE\\x0f\\\"\\b$\\x13\\a4J5Jq\\x13\\x1a\\x13\\x13\\x1a\\x8d\\x13\\x1a\\x13\\x13\\x1a\\x93\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x18\\x001\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x11#532\\x16\\x15\\x11\\x01\\x113\\x15#\\\"&5\\x11#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x01\\xe8\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e\\xa0\\xe0\\r\\x13\\xfe\\xe0\\xa0\\xe0\\r\\x13(\\n\\x0e\\x0e\\n(\\x0e\\n0\\n\\x0e`\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\n\\x01H`\\x13\\r\\xff\\x00\\x01H\\xfe\\xb8`\\x13\\r\\x01\\x00\\x0e\\n0\\n\\x0e(\\n\\x0e\\x0e\\x00\\x00\\b\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00K\\x00[\\x00g\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x17\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x17\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x17\\x14;\\x012=\\x014+\\x01\\\"\\x15754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x01\\x10\\b\\xe0\\b\\b\\xe0\\b\\xe8\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b(\\t\\a\\xd0\\a\\t\\t\\a\\xd0\\a\\t\\x01\\x10\\b\\xe0\\b\\b\\xe0\\b\\x01`\\x13\\r\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\r\\x13\\xff\\x00\\b\\b\\b\\b\\bH\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b\\x10\\b\\b00\\a\\t\\t\\a0\\a\\t\\ty\\b\\b\\b\\b\\b\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00!\\x00)\\x00A\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x1f\\x01\\x16>\\x01/\\x017>\\x01.\\x01\\x06\\x0f\\x01'&\\x0e\\x01\\x1f\\x01\\a\\x06\\x1e\\x017\\x16264&\\\"\\x06\\x147'76.\\x01\\x0f\\x01'&\\x0e\\x01\\x1f\\x01\\a\\x06\\x1e\\x01?\\x01\\x17\\x16>\\x01\\x91Α\\x91Α\\x98\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\x05\\x01\\x06\\b\\n\\x04\\x1d\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\a\\x05\\x10\\bc4&&4&\\xd3\\x1c\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\a\\x05\\x10\\b\\x1d\\x1d\\a\\x11\\x05\\x01\\xb8\\x91Α\\x91\\xce>\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\x04\\n\\b\\x06\\x01\\x05\\x1c\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\a\\x11\\x04\\x06\\xad&4&&4\\x9d\\x1d\\x1d\\a\\x11\\x05\\a\\x1c\\x1c\\a\\x06\\x0f\\b\\x1d\\x1d\\a\\x11\\x04\\x06\\x1c\\x1c\\a\\x06\\x0f\\x00\\x00\\x03\\x00\\x00\\xff\\xbe\\x02\\x00\\x01\\xc0\\x00\\b\\x00@\\x00H\\x00\\x00%\\x17\\a\\x0e\\x01/\\x0267\\x0e\\x02#\\\"'\\x0f\\x01\\x06\\\".\\x015'7&'&6?\\x016\\x17\\x16\\x177&5462\\x16\\x15\\x14\\a\\x17\\x06\\a'0\\\"0\\\"1\\a\\x1632676\\x1f\\x01\\x1e\\x01&\\\"\\x06\\x14\\x16264\\x01\\xc97\\a\\x01\\x0e\\a67,R\\x1bL\\\\142G6\\x03\\b\\x06\\x05\\aG!\\x17\\x03\\x03\\x06\\x1c\\f\\t\\x0e\\x14D\\f8P8\\f4#03\\x02\\x02C#\\\"9d\\x1f\\b\\r\\x1c\\x06\\x04\\xea\\x1a\\x13\\x13\\x1a\\x13h`:\\b\\b\\x03\\x17_\\x11~)= \\x13{\\x17\\x01\\x04\\x06\\x04:|\\x1c\\\"\\x06\\r\\x03\\x10\\b\\r\\x15\\x12v\\x16\\x18(88(\\x18\\x16Y$\\rXt\\f7/\\r\\a\\x0f\\x04\\r\\xb4\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x003\\x00N\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\a54&\\\"\\x06\\x1d\\x01\\x06\\a54&\\\"\\x06\\x1d\\x01&'54&\\\"\\x06\\x1d\\x01&=\\x014>\\x0332\\x177632\\x1f\\x01\\x16\\x15\\x14\\x0f\\x012654.\\x01'\\a\\x06#\\\"/\\x01&54?\\x01&#\\\"\\x06\\x15\\x14\\x1e\\x01\\x01\\xafQH\\x0e\\x14\\x0e4<\\x0e\\x14\\x0e<4\\x0e\\x14\\x0eH0>R-\\x1397n\\x04\\x05\\t\\x04\\t\\x03\\a\\xf9Vz\\x15'\\x1av\\x05\\x04\\t\\x05\\t\\x02\\aI\\x1a\\x18Vz8_\\x01F\\x1d9\\xa0. f\\n\\x0e\\x0e\\nw\\x0f\\x02h\\n\\x0e\\x0e\\nh\\x02\\x0fw\\n\\x0e\\x0e\\nf .\\xa0\\x1e-\\x16\\r\\x02\\nG\\x03\\a\\r\\x04\\x05\\t\\x05\\xc5%\\x1b\\n\\x14\\x10\\x06M\\x03\\b\\r\\x04\\x05\\b\\x05/\\x02&\\x1a\\x12\\x1d\\x11\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\v\\x00\\x16\\x00 \\x00*\\x006\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x014\\x176/\\x01\\x0e\\x01\\x15\\x14\\x16\\x176\\x1627.\\x01#\\\"\\x0e\\x01\\a75&\\\"\\a\\x15\\x14\\x1626\\x17>\\x0254&'\\a\\x06\\x17\\x16\\xa9\\uea69\\xee\\xa9\\xcd\\b\\x0f\\x1a8DF;\\x15<<\\x1f\\x06\\\"\\x15\\x0e\\x19\\x12\\x04} @ &4&/&:!D8\\x1a\\x0f\\b\\x06\\x01\\xa0K5\\xc05KK5\\xc05S\\x1d\\x1b,\\n&\\x16\\x17&\\n\\x10\\x19\\x03\\x14\\x19\\f\\x14\\r\\x8d\\r\\x03\\x03\\r\\x1a&&m\\a\\x15\\x1c\\x0f\\x16&\\n,\\x1b\\x1d\\x19\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00!\\x00\\x00\\x01\\x06\\x0f\\x013\\x06\\x0f\\x013\\x06\\a\\x0e\\x01#\\a\\x06\\\"&47\\x016&\\x0f\\x0167>\\x06\\x02\\x00\\t-jQ\\x0e\\x10\\x93e:K\\x1f? 9\\a\\x14\\x0e\\a\\x01\\x04\\v\\x17\\v\\xb3\\x02\\x04\\x052D[OV,\\x01\\xc0}n5\\x19\\x1611\\b\\x03\\x049\\a\\x0e\\x14\\a\\x01\\x03\\f\\x16\\v\\xb3.\\\"3W8.\\x18\\x12\\x05\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x1d\\x00)\\x00T\\x00]\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x13\\\"'.\\x01\\a'&\\\"\\x0f\\x01\\x06+\\x01\\\"\\x06\\x14\\x16;\\x0126?\\x01\\x17\\x16\\x17212?\\x0162\\x17\\x16;\\x01264&#\\x13\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\bP\\b\\bP\\b\\bP\\b\\bP\\b\\xc1\\a\\x03\\t+\\x0e\\x0e\\x06\\\"\\x06\\x12\\x03\\b\\f\\a\\t\\t\\a\\f\\x0e\\x17\\x04\\v\\x11\\x03\\v\\x01\\n\\x04\\b\\x03\\x0e\\x03\\f\\x1b/\\a\\t\\t\\aI\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0eH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\xff\\x00\\x06\\x12\\t\\f)\\x11\\x116\\b\\t\\x0e\\t\\x10\\x0e\\x1f2\\n\\x01\\t\\x0f\\x06\\x06\\x18\\t\\x0e\\t\\x01\\x17\\a\\n\\x06\\x80\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00'\\x000\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x136&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1f\\x01\\x1627\\x13\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8L\\b\\b\\vA\\t\\a \\a\\tA\\v\\b\\b`\\x05\\x0e\\x05\\xad\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xa5\\a\\x14P\\a\\t\\t\\aP\\x14\\a`\\x05\\x05\\x01R\\a\\n\\x06\\x80\\a\\x00\\x03\\x00\\x00\\xff\\xc0\\x02G\\x01\\xc0\\x00\\b\\x00\\x17\\x003\\x00\\x00\\x01\\x15#532\\x1f\\x01\\x16\\x17\\x16\\x0f\\x01\\x06&=\\x01#53546\\x17\\x05\\x14\\x16;\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16;\\x01\\x15#\\\"\\x06\\x15\\x01\\x80\\x80\\x06\\n\\ab\\a\\xbb\\f\\f`\\a\\x14@@\\x14\\a\\xfe\\xe5\\t\\a\\xb0\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0e\\n\\x88\\xb0\\a\\t\\x01F\\x06\\x80\\ab\\a\\xc4\\f\\f`\\b\\b\\vA@A\\v\\b\\b|\\a\\t\\x88\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e\\x80\\t\\a\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x12\\x003\\x00\\x0073\\x15#\\\"&=\\x0146%\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&=\\x013\\x15\\x14\\x16?\\x016/\\x01&\\x06\\x1d\\x01#\\x1146;\\x01\\x10pp\\a\\t\\t\\x01\\xf0\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x80\\x14\\a`\\f\\f`\\a\\x14\\x80\\x0e\\nȠ@\\t\\a \\a\\t\\xb7\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x88A\\v\\b\\b`\\f\\f`\\b\\b\\vA\\x01\\b\\n\\x0e\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x03\\x00\\f\\x00\\x1e\\x00*\\x006\\x00B\\x00R\\x00\\x00%\\x15#5%\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x01254&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01265\\x01 \\xc0\\x01\\x19\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\bP\\b\\bP\\b\\bP\\b\\bP\\b\\x01\\x00\\bP\\b\\bP\\b\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\xc0@@\\x97\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0eH\\x10\\b\\b\\x10\\bH\\x10\\b\\b\\x10\\b\\xfe\\xc8\\x10\\b\\b\\x10\\b\\xd0\\a\\t\\t\\a`\\a\\t\\t\\a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\b\\x00\\x1a\\x00&\\x002\\x00m\\x00\\x00\\x01\\x16\\x1d\\x01#532\\x17\\a\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\a\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x15\\x13>\\x0154.\\x01/\\x01&546;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x15\\x14;\\x0125\\x01y\\a\\x80\\x06\\n\\a7\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\nȠ\\bP\\b\\bP\\b\\bP\\b\\bP\\b\\x90\\x12\\x19\\b\\x0f\\t-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x01W\\a\\n\\x06\\x80\\a\\x81\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0eH\\x10\\b\\b\\x10\\bX\\b\\b\\x10\\b\\b\\xfe\\xe8\\x01\\x1a\\x12\\n\\x12\\r\\x03\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x18\\b\\b\\x18\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x18\\b\\b\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00;\\x00C\\x00L\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x13&\\x0f\\x01'654&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x013\\x17\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x0176/\\x01#532\\x16\\x14\\x067\\x15#532\\x1f\\x01\\x16\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8E\\f\\v\\x1e!!%\\x1bP\\a\\t\\t\\a\\x10\\a\\t\\x13;\\x1e\\v\\v\\v\\f\\v\\x1e\\x1e\\v\\f\\v\\v\\v\\x1e\\x1e\\v\\v\\x8000\\a\\t\\tɀ\\x06\\n\\ab\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xc5\\v\\v\\x1e!\\x12&\\x1b%\\t\\a\\xa0\\a\\t\\t\\a0;\\x1e\\f\\v\\v\\f\\f\\x1e\\x1e\\f\\f\\v\\v\\f\\x1e\\x1e\\v\\v7 \\t\\x0e\\t\\x96\\x06\\x80\\ab\\a\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x007\\x00@\\x00E\\x00O\\x00\\x007\\x1e\\x01;\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15\\x14\\x16;\\x01\\x15\\a\\x15&'.\\x01\\a'&\\\"\\x0f\\x01\\x06+\\x01\\\"\\x06\\x14\\x16;\\x0126?\\x01\\x17\\x1e\\x01?\\x0162\\x13\\x15#532\\x1f\\x01\\x16\\a7\\x17\\a#%\\x16\\x14\\x0f\\x01'762\\x17\\xda\\x06\\x14\\f\\x80\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8\\x0e\\n\\x88\\x80\\x06\\x03\\t+\\x0e\\x0e\\x06\\\"\\x06\\x12\\x03\\b\\f\\a\\t\\t\\a\\f\\x0e\\x17\\x04\\v\\x11\\x03\\x16\\x04\\b\\x03\\x0e\\xa9\\x80\\x06\\n\\ab\\a`\\xa3D\\xa2E\\x01\\x19\\a\\a\\x1cD\\x1c\\a\\x15\\b\\x18\\v\\r(\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\x88\\n\\x0e/\\u007fR\\x01\\x05\\x12\\t\\f)\\x11\\x116\\b\\t\\x0e\\t\\x10\\x0e\\x1f2\\n\\x02\\n\\x0f\\x06\\x01(\\x06\\x80\\ab\\a\\xeb\\xa2D\\xa3\\xf9\\b\\x15\\a\\x1cD\\x1c\\a\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00'\\x000\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1326/\\x01&\\\"\\x0f\\x01\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x017\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8A\\v\\b\\b`\\x05\\x0e\\x05`\\b\\b\\vA\\t\\a \\a\\t\\x99\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xa0\\x14\\a`\\x05\\x05`\\a\\x14P\\a\\t\\t\\aP\\xf7\\a\\n\\x06\\x80\\a\\x00\\x02\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc7\\x00\\x17\\x00&\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'&?\\x016\\x1f\\x01762\\x17\\x137'\\a\\x17\\x16\\x14\\x06\\\"/\\x01\\x0f\\x01\\x06\\a\\x01\\xf7\\t\\t\\xde\\x1cP\\x1cu\\x1c\\x1c_V\\f\\f\\x16\\f\\vVR\\t\\x1b\\t[1\\xa3;;\\t\\x12\\x1b\\t;Q\\x0e\\x05\\x02\\xe7\\t\\x1b\\t\\xde\\x1c\\x1cu\\x1cP\\x1c_V\\v\\f\\x16\\f\\fVR\\t\\t\\xfe\\xe90\\xa3;;\\t\\x1b\\x12\\t;R\\r\\x05\\a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc7\\x00\\n\\x00\\\"\\x001\\x00\\x00%\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x01'&?\\x016\\x1f\\x01762\\x17\\x137'\\a\\x17\\x16\\x14\\x06\\\"/\\x01\\x0f\\x01\\x06\\a\\x02\\x00@%6% \\x10\\a\\t\\t\\xde\\x1cP\\x1cu\\x1c\\x1c_V\\f\\f\\x16\\f\\vVR\\t\\x1b\\t[1\\xa3;;\\t\\x12\\x1b\\t;Q\\x0e\\x05\\x02\\x80]#\\x1b%%\\x1b\\x10@\\x18\\u007f\\t\\x1b\\t\\xde\\x1c\\x1cu\\x1cP\\x1c_V\\v\\f\\x16\\f\\fVR\\t\\t\\xfe\\xe90\\xa3;;\\t\\x1b\\x12\\t;R\\r\\x05\\a\\x00\\x00\\x06\\xff\\xfe\\xff\\xc0\\x02\\x01\\x01\\xc2\\x00\\r\\x00-\\x00A\\x00\\\\\\x00n\\x00\\x91\\x00\\x0062\\x16\\x15\\x16\\a\\x06#\\\"&76'47\\x1e\\x01\\x15\\x16\\a\\x0e\\x02'.\\x0176'4&'\\\"\\x06\\x15\\x16\\a\\x0e\\x01.\\x0176'&6&\\x1e\\x01\\a\\x06\\x17\\x16\\a\\x14\\x0e\\x01'.\\x0176'&767\\x1e\\x01\\x17\\x14\\x15\\x14\\a\\x0e\\x01'.\\x0176'.\\x01'\\\"\\a\\x06.\\x01676\\x05\\x16\\x15\\x14\\x06#\\\"&54'&676\\x1e\\x02'\\x16\\x0e\\x01&'.\\x04#&\\a\\x06\\x17\\x15\\x14\\x0e\\x01#0#\\\"&=\\x01&76\\x172\\x1e\\x02\\xf6\\x14\\x0e\\x02\\x1f\\x05\\x12\\x0f\\v\\x02\\x1e\\x02\\x17+>\\x01\\f\\x01\\x04\\x0e\\t\\t\\f\\x02\\v\\x01\\\"\\x17\\x19\\x1e\\x01\\x0f\\x02\\x11\\x13\\v\\x02\\x0e\\x01\\x01;I\\x0f\\x02\\x06\\x1d\\x01\\x01\\v\\x05\\x0e\\t\\t\\f\\x02\\n\\x01\\x01(\\x06\\x89Lm\\x01\\x06\\x01\\x0e\\v\\n\\r\\x02\\x06\\x01\\x01Q9\\x12\\x10\\t\\x11\\x05\\v\\t\\x18\\x01\\x12\\x06\\x0e\\n\\n\\x0e\\x05\\x02\\v\\n\\x04\\n\\a\\x06'\\x06\\x04\\x10\\x14\\x05\\f\\x1e\\\"&(\\x15X<9\\x01\\a\\v\\x06\\x01\\n\\r\\x01GKl\\x1f>60\\xca\\x0e\\nrn\\x12\\x15\\tik\\n`\\x01<*MK\\x04\\t\\b\\x01\\x02\\x10\\nGH\\x17 \\x01 \\x15ML\\t\\v\\x04\\x10\\nFI)<\\x1a\\r\\x13\\b#.><\\x03\\t\\b\\x01\\x02\\x10\\n79?1\\b:\\x01kJ\\a\\a55\\b\\x0e\\x01\\x01\\x10\\n897O\\x01\\x04\\x02\\n\\x14\\x11\\x02\\x05z\\x1c,\\n\\x0e\\x0f\\t'\\x17\\n\\x11\\x02\\x01\\x02\\x05\\bV\\b\\x14\\v\\x03\\t\\x11\\x1c\\x16\\x10\\t\\x01<9R\\x18\\x06\\v\\x06\\x0f\\n\\x15fHJ\\x01\\x10\\x1d*\\x00\\x00\\x00\\x02\\xff\\xfe\\x00 \\x02@\\x01`\\x00\\x18\\x00$\\x00\\x00\\x012\\x1e\\x02\\x14\\x0e\\x02#\\\"&'\\a\\x06&?\\x01'&6\\x1f\\x01>\\x01\\x16264&#\\\"\\x0e\\x02\\x15\\x14\\x01G0a@((@a0>p&X\\t\\x14\\x02\\x19\\x19\\x02\\x14\\nW&p\\x8c\\x13\\x0f\\x0f\\t\\x05\\t\\a\\x03\\x01`)73\\x1a37)<*B\\a\\v\\nnn\\n\\v\\aB*<\\xb8\\x0e\\x14\\x0e\\x04\\x06\\t\\x05\\n\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00\\x00$2\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x16\\x14\\x16264&\\\"\\x1724+\\x01\\\"\\x1436264&\\\"\\x06\\x14\\x01N\\x14\\x0e\\x0e\\x14\\x0e\\xb2\\x14\\x0e\\x0e\\x14\\x0e\\x11Α\\x91ΑP*<**<\\xbe\\x10\\x10\\x80\\x10\\x10\\x82<**<*\\xf8\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14ΑΑ\\x91\\xce)<**<*\\xf8  h*<**<\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16\\x14\\x16264&\\\"\\x17\\x166'.\\x01#\\\"\\x0e\\x01\\a\\x06\\x167626264&\\\"\\x06\\x14\\x91Α\\x91Α\\x88\\x13\\x1a\\x13\\x13\\x1a\\xa8\\t\\r\\x01\\x05=\\x1e\\x13(\\\"\\x03\\x01\\r\\t14)\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce*\\x1a\\x13\\x13\\x1a\\x13\\xd7\\x03\\f\\t\\x1b\\\"\\r\\x1d\\x13\\t\\f\\x03\\x0f\\x88\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x02\\xff\\xfa\\xff\\xc0\\x02\\x06\\x01\\xc0\\x00\\x17\\x00\\x1b\\x00\\x00\\x01\\a\\x1532\\x16\\x15\\x14+\\x01\\\"546;\\x015'&63!2\\x16\\a!\\x17!\\x01\\xf6\\xd68\\x11\\x17\\b\\xf0\\b\\x17\\x118\\xd6\\x10\\x11\\x17\\x01\\xbc\\x17\\x11J\\xfe\\x880\\x01\\x18\\x01\\x86\\xd6\\xc0\\x17\\x11\\b\\b\\x11\\x17\\xc0\\xd6\\x10**\\x060\\x00\\x00\\x02\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00j\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0546;\\x01.\\x01'\\x15\\x14\\x06+\\x01\\\"\\x0f\\x01\\x06\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16;\\x012\\x1f\\x01\\x16;\\x012\\x16\\x15\\x14\\x0f\\x01\\x06/\\x01&+\\x01\\\"\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16;\\x012\\x16\\x1d\\x01\\x14\\x17\\x1632?\\x01676?\\x016?\\x016=\\x014&+\\x01\\\"/\\x01&6?\\x01632\\x1f\\x01\\x1632?\\x0165\\x91Α\\x91Α\\x01\\x98\\t\\a\\x12\\x0eY;\\t\\x06\\x19\\b\\x05\\b\\x03\\x06\\x0e\\f\\t\\aZ\\x06\\x05\\x06\\x05\\x06\\n\\a\\t\\v/\\x06\\x06\\x0e\\f\\r\\x01\\x12\\x0f\\x1b\\x16 \\x17\\x19\\a\\t\\b\\b\\x11\\x0f\\b\\r\\v\\x0e\\x04\\x01\\x04\\x01\\x02\\x13\\x03\\t\\a\\b\\b\\x05\\r\\x04\\x05\\a\\x03\\x02\\x03\\x04\\x04\\x13\\x03\\x05\\x04\\x03\\x0f\\t\\x01\\xb8\\x91Α\\x91\\xceG\\a\\t:R\\t\\x15\\a\\t\\a\\f\\x05\\x01\\x04\\x03\\f\\x04\\a\\t\\x05\\x06\\x05\\t\\x06\\f\\x03\\x10\\x02\\x03\\a\\x06\\v\\x15\\x10\\x1b\\x0e\\x17 \\t\\a\\x1d\\x13\\x11\\x0f\\f\\x14\\x10\\r\\x04\\x05\\x16\\x04\\x03\\x19\\x04\\x05\\v\\a\\t\\a\\x14\\x06\\x0f\\x02\\x01\\x01\\x03\\f\\x03\\x02\\b\\x04\\n\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00_\\x00n\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05654/\\x01&+\\x01.\\x01#\\\"/\\x01&54?\\x01632\\x1f\\x01\\x16;\\x0126/\\x01&54?\\x016;\\x012?\\x016/\\x01&?\\x026/\\x01\\x06\\a\\x15\\x14\\x06/\\x01\\x06\\a\\x16\\x17\\x16\\x1f\\x01\\x16\\x17\\x16\\x17\\x16\\x1d\\x01\\x14\\x17\\x1e\\x01\\a\\x152?\\x01676767\\x17654'\\a\\x06\\x0f\\x01\\x06\\x14\\x1f\\x01\\x16\\x91Α\\x91Α\\x01J\\x0e\\t\\x0e\\t\\rC\\x04\\x16\\x06\\x10\\x0e\\v\\a\\b\\x1f\\x03\\x02\\x06\\x05\\t\\x02\\x03\\x06\\x05\\x04\\x02\\x0f\\x01\\x02\\n\\x02\\x04\\t\\x03\\x02\\b\\x06\\x06\\x04\\x06\\x06\\n\\x05\\v\\v\\x1d\\f\\f\\x0f\\b\\x18G \\x19\\t\\b\\n\\x01\\x0f\\x11\\x12\\x1f\\x10\\t\\v\\r\\x01\\x15\\x16\\x11\\x01\\x04\\x01\\x05\\x03_\\x1d\\x02\\x15\\r\\x06\\x04\\x13\\x04\\x04\\x12\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xd5\\x0e\\x13\\r\\t\\x0e\\t\\x02\\x1e\\a\\x06\\x03\\a\\t\\x03\\n\\x01\\x04\\b\\x02\\b\\x04\\x1f\\x01\\x02\\x04\\x02\\n\\x02\\x02\\b\\x06\\x06\\x04\\x06\\x06\\n\\x05\\v\\v\\x1d\\x01\\x02\\v\\t\\t\\x04\\f\\x1fG&\\r\\f\\t\\x01\\r\\t\\t\\x11\\t\\x13 \\r\\t\\v\\x1f\\n\\x1b\\x05/\\x02\\x0e\\a\\x04\\x03d\\b\\x0f\\v/*\\x06\\x03\\x05\\x1e\\x06\\x0e\\x06\\x1b\\b\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x008\\x00m\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17762\\x17\\x16;\\x012=\\x014/\\x01&4?\\x01&#\\\"\\x06\\x15\\x14\\x1732?\\x016\\x16\\x1f\\x01\\x16;\\x0126=\\x014/\\x01&?\\x01632\\x1754/\\x01&=\\x014+\\x01\\\"\\x0f\\x01\\x06+\\x01\\\"/\\x01&+\\x01\\\"\\x0f\\x01\\x06\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16;\\x01237632\\x1f\\x01\\x16;\\x012?\\x016\\x91Α\\x91Α\\xed\\x11\\x01\\x06\\x01\\x02\\x05\\x03\\b\\t\\v\\x04\\x033\\x1f\\x1fSu\\x03>\\a\\x05\\x13\\x03\\b\\x02\\x17\\x04\\n\\x06\\a\\t\\x05\\x05\\x06\\x06\\x05\\x05\\a\\t\\xb0\\x05\\f\\x02\\x04\\x06\\x03\\x01\\x04\\x01\\x03\\x04\\x02\\x01\\x06\\x02\\x05\\f\\x03\\x02\\x18\\x02\\x03'\\x06\\x03\\f\\x04\\a\\n\\x02\\x02\\x16\\x03\\x03\\v\\b\\r\\x05\\x06\\x0f\\a\\x05\\t\\x05\\x01\\xb8\\x91Α\\x91\\xce_\\x1d\\x02\\x03\\x04\\bN\\n\\x04\\x06\\x02\\t\\x03&\\nuS\\x0f\\x11\\x05\\x13\\x03\\x01\\x04-\\t\\t\\a\\t\\a\\x05\\x05\\x06\\x06\\x05\\x05f\\x18\\a\\x04\\f\\x03\\x03\\r\\x04\\x03\\x0e\\x03\\x02\\r\\x05\\x01\\x11\\x02\\x01\\x10\\x02\\x06\\n\\x03\\x02\\f\\x05\\x06\\x01\\b\\r\\x05\\x05\\t\\x05\\x00\\x00\\x00\\x00\\r\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x15\\x00\\x1d\\x00!\\x00%\\x00)\\x00-\\x001\\x005\\x00=\\x00D\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x175#\\x15\\x14\\x16375#\\\"\\x06\\x1d\\x016\\x14\\x16264&\\\"\\x175#\\x1575#\\x15\\x175#\\x1575#\\x15\\x175#\\x1575#\\x156264&\\\"\\x06\\x14\\x175#\\x15326=\\x014&+\\x01\\x15\\x91Α\\x91Α\\x90(\\x13\\r\\b\\b\\r\\x13 \\x13\\x1a\\x13\\x13\\x1a5000p000p000\\x1b\\x1a\\x13\\x13\\x1a\\x13`(\\b\\r\\x13\\x13\\r\\b\\x01\\xb8\\x91Α\\x91\\xce\\xf7(\\b\\r\\x138(\\x13\\r\\b\\x95\\x1a\\x13\\x13\\x1a\\x13\\xe0((8((8((8((8((8((h\\x13\\x1a\\x13\\x13\\x1a\\x93\\b(\\x13%\\b\\r\\x13(\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00&\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x142676&\\a\\x06\\\"'&\\x0e\\x01\\x17\\x16\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13`Y\\a\\x01\\r\\t/\\x98/\\x06\\n\\x06\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xed6'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x15\\x00#\\x002\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4%\\x06\\a\\x16\\x17\\x162767&'&\\\"\\a\\x06\\a\\x16\\x17\\x162767&'&\\\"\\x122676&\\a\\x06\\\"'&\\x0e\\x01\\x17\\x16\\x91Α\\x91Α\\x018\\x0f\\x01\\x01\\x0f\\x06\\x15\\x05\\x0f\\x01\\x01\\x0f\\x06\\x15\\xa5\\x0f\\x01\\x01\\x0f\\x06\\x15\\x05\\x0f\\x01\\x01\\x0f\\x06\\x15+`Y\\a\\x01\\r\\t/\\x98/\\x06\\n\\x06\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce\\x10\\x16!\\\"\\x15\\t\\t\\x16!\\\"\\x15\\t\\t\\x16!\\\"\\x15\\t\\t\\x16!\\\"\\x15\\t\\xfe\\xd06'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x17\\x00+\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'&'\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'.\\x04\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x91Α\\x91Α\\x01[&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\xd6\\x13#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\x19`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce\\x01)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a\\xfe\\xe86'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf8\\x01\\xc1\\x00\\v\\x00\\x1d\\x00-\\x00A\\x00P\\x00\\x00\\x00\\\"&54762\\x17\\x16\\x15\\x14\\a27\\x16\\x15\\x14\\x06\\\"&4632\\x17\\x06\\x15\\x14\\x16&\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'&'\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'.\\x04\\x122676&\\a\\x06\\\"'&\\x0e\\x01\\x17\\x16\\x01\\xdc(\\x1c*\\x02\\b\\x02*0\\t\\v\\x14\\x91Α\\x91gJ>\\b/L&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\xd6\\x13#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\x19`Y\\a\\x01\\r\\t/\\x98/\\x06\\n\\x06\\x01\\a\\x01@\\x1c\\x13\\x177\\x03\\x037\\x17\\x13<\\x0303g\\x91\\x91Α)\\x12\\x0e!.\\b)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\f\\x16\\x12\\f\\a\\xfe\\xe86'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00'\\x00:\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x06\\x16\\x1f\\x01\\x16?\\x016&'&\\x06\\x0f\\x01'&\\x06\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16%>\\x01'.\\x02\\x0f\\x01'.\\x01\\a\\x0e\\x01\\x1f\\x01\\x167\\x91Α\\x91ΑZ\\x05\\x0e\\x10F\\b\\x02\\x14\\x04\\x11\\x10\\x0e\\x18\\x04\\x02\\a\\x0e\\x1ai`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01\\x0e\\x10\\x0e\\x05\\x04\\x0e\\x12\\t\\a\\x02\\x04\\x18\\x0e\\x10\\x11\\x04\\x14\\x02\\b\\x01\\xb8\\x91Α\\x91\\xce\\x1f\\x0f\\x1c\\x04\\x12\\x02\\bF\\x0f\\x1b\\x02\\x03\\x11\\r\\b\\x02\\x04\\r\\xfe\\xfb6'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x93\\x04\\x1c\\x0f\\t\\f\\x03\\x02\\x02\\b\\r\\x11\\x02\\x03\\x1b\\x0fF\\b\\x02\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x16\\x00#\\x001\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x14\\x1f\\x01\\x166/\\x01764.\\x01\\x0f\\x01\\x17\\a\\x06\\x16?\\x0164/\\x01&\\x06\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x91Α\\x91Α\\x01\\x1a\\x06\\x06P\\b\\x0e\\a!!\\x03\\x06\\b\\x04\\xf3!!\\a\\x0e\\bP\\x06\\x06P\\b\\x0eX`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01\\xb8\\x91Α\\x91\\xce-\\x03\\x0e\\x030\\x05\\x0f\\b((\\x04\\t\\x06\\x02\\x03\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\xfe\\xf06'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x00\\x06\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00\\v\\x00\\x17\\x00/\\x00<\\x00J\\x00Z\\x00\\x00\\x01\\\"&76762\\x16\\x14\\a\\x06\\x012\\x16\\a\\x06\\a\\x06\\\"&476\\x0167\\x16\\x0e\\x02'676&\\a\\x06\\a&>\\x02\\x17\\x06\\a\\x06\\x16'\\a\\x06\\x16?\\x016&/\\x02.\\x01\\a\\x1e\\x01?\\x016.\\x01\\x0f\\x01\\x06\\x16\\x1f\\x02>\\x01'&\\x06\\a\\x0e\\x01\\a\\x0e\\x01\\x17\\x1626\\x01\\x9a\\x05\\x06\\x01\\v\\x10\\x0e*\\x1d\\x0e\\x11\\xfe\\x85\\x05\\x06\\x01\\v\\x10\\x0e)\\x1e\\x0e\\x11\\x01\\u007f!\\x18)\\x14y\\xa8G\\a\\x05\\x02\\x19\\x17!\\x18)\\x14y\\xa8G\\a\\x05\\x02\\x19\\x87\\x17\\x01\\t\\aZ\\n\\x02\\n4\\x05\\x01\\x14]\\x01\\x14\\x02\\x17\\x01\\x04\\a\\x05Z\\n\\x02\\n4\\xdc\\\"\\x19\\x17\\x05\\x12\\x04\\x17k,\\b\\x02\\b\\x15<@\\x01P\\x05\\x05H\\x10\\x0e\\x1e)\\x0e\\x11\\xfe\\xd6\\x05\\x05H\\x10\\x0e\\x1e)\\x0e\\x11\\x01\\n\\x05\\aG\\xa8y\\x14)\\x19 \\x11\\x1f\\x02\\x05\\aG\\xa8y\\x14)\\x19 \\x11\\x1f([\\x06\\n\\x02\\x17\\x02\\x14\\x01\\x054\\n\\x02\\xf0\\n\\x02\\nZ\\x05\\a\\x04\\x01\\x17\\x02\\x14\\x01\\x05`\\\"a$\\a\\x01\\b,k\\x17\\x04\\x12\\x05\\x0f\\x1c\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00 \\x00.\\x00G\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x0176&/\\x02&\\\"\\x0f\\x01\\x122676&\\a\\x06\\\"'&\\x06\\x17\\x16%6&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x01\\x91Α\\x91Α_\\x05\\x03\\x03\\x1a\\x06\\x01\\a\\x05\\x1f\\x1f\\x04\\b\\x01\\x06\\x1a\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0fF`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\x01'\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0f#\\x05\\x03\\x03\\x1a\\x06\\x01\\a\\x05\\x1f\\x1f\\x05\\a\\x01\\x06\\x01\\xb8\\x91Α\\x91\\xce\\x10\\x01\\t\\x03\\x19#\\x04\\x06\\x02\\x11\\x11\\x02\\x06\\x04#\\x19\\x03\\t\\x01\\x05 \\x04\\x04 \\xfe\\xf46'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\xc4\\x03\\t\\x01\\x05 \\x04\\x04 \\x05\\x01\\t\\x03\\x19#\\x04\\x06\\x02\\x11\\x11\\x02\\x06\\x04#\\x00\\x06\\xff\\xff\\xff\\xc8\\x02\\x81\\x01\\xb8\\x00\\v\\x00\\x17\\x006\\x00F\\x00V\\x00d\\x00\\x0072\\x16\\a\\x06\\a\\x06\\\"&476\\x05\\x16\\x14\\x06\\\"'&'&6\\x17\\x16\\a\\x16\\x17\\x1e\\x011\\x0e\\x01\\\"&'?\\x01676&\\a\\x06\\a>\\x0132\\x1e\\x01\\x17&'&\\x06&\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'.\\x01\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x01\\x166'&\\x062676&\\a\\x06\\\"'&\\x06\\x17\\x16f\\x05\\x06\\x01\\v\\x10\\x0e)\\x1e\\x0e\\x11\\x02S\\x0e\\x1e)\\x0e\\x11\\n\\x01\\x06\\x05Hr\\f\\x18\\x01\\x02 s\\x88s \\x01\\x02\\x18\\f\\x02\\x19\\x17\\v\\r\\n\\x8d_?lE\\x06\\r\\v\\x14\\x1cK&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\xc3&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\x16`Y\\a\\x01\\r\\t/\\x98/\\t\\r\\x01\\a\\xc0\\x05\\x05H\\x10\\x0e\\x1e)\\x0e\\x11\\x11\\x0e)\\x1e\\x0e\\x11G\\x05\\x06\\x01\\v\\x03R\\x18\\x01\\x029DD9\\x01\\x02\\x18R\\x11\\x1f\\x02\\x02\\x02]\\u007f:e=\\x02\\x02\\x02\\x1cb)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x04\\a\\x1e\\xef6'\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t'\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbf\\x01\\xf0\\x01\\xb8\\x00\\x1d\\x00%\\x00-\\x00K\\x00\\x00\\x122\\x16\\x15\\x14\\x06\\a6=\\x01676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x17\\x15\\x14\\x17.\\x0154\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\a:\\x01\\x1e\\x02\\x17\\x15\\x14\\x06#\\\".\\x02=\\x01636\\x16\\x1f\\x01\\x162?\\x01>\\x02\\x91ΑYH\\t*\\x06\\x01\\r\\t/\\x98/\\t\\r\\x01\\x06*\\tHY\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x03\\x01\\x01\\x02\\x04\\a\\x04&\\x1b\\r\\x17\\x11\\n\\x12\\x01\\v\\x15\\x03\\x01\\x02\\x0e\\x02\\x01\\x02\\v\\x0f\\x01\\xb8\\x91gO~\\x1b\\x14\\x14.\\x1b$\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t$\\x1b.\\x14\\x14\\x1b~OgW\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x9a\\x02\\x01\\x04\\x02@\\x1b%\\v\\x11\\x18\\r?\\t\\x05\\v\\v\\b\\a\\a\\b\\a\\v\\x02\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xbf\\x01\\xf0\\x01\\xb8\\x00\\x1d\\x00;\\x00H\\x00U\\x00\\x00%:\\x01\\x1e\\x02\\x17\\x15\\x14\\x06#\\\".\\x02=\\x01636\\x16\\x1f\\x01\\x162?\\x01>\\x02\\x022\\x16\\x15\\x14\\x06\\a6=\\x01676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x17\\x15\\x14\\x17.\\x0154\\x1764/\\x01&\\x06\\x1f\\x01\\a\\x06\\x16?\\x01'76&\\x0f\\x01\\x06\\x14\\x1f\\x01\\x166\\x01%\\x01\\x01\\x02\\x04\\a\\x04&\\x1b\\r\\x17\\x11\\n\\x12\\x01\\v\\x15\\x03\\x01\\x02\\x0e\\x02\\x01\\x02\\v\\x0f\\x8dΑYH\\t*\\x06\\x01\\r\\t/\\x98/\\t\\r\\x01\\x06*\\tHY\\xd6\\x06\\x06P\\b\\x0e\\a!!\\a\\x0e\\b\\xf3!!\\a\\r\\tP\\x06\\x06P\\b\\x0eI\\x02\\x01\\x04\\x02@\\x1b%\\v\\x11\\x18\\r?\\t\\x05\\v\\v\\b\\a\\a\\b\\a\\v\\x02\\x01l\\x91gO~\\x1b\\x14\\x14.\\x1b$\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t$\\x1b.\\x14\\x14\\x1b~OgA\\x03\\x0e\\x030\\x05\\x0f\\b((\\b\\x0f\\x05\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\x00\\x00\\x05\\x00\\x00\\xff\\xbf\\x01\\xf0\\x01\\xb8\\x00\\a\\x00%\\x008\\x00@\\x00^\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4&2\\x16\\x15\\x14\\x06\\a6=\\x01676&\\a\\x06\\\"'&\\x06\\x17\\x16\\x17\\x15\\x14\\x17.\\x0154\\x17\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x17\\x16264&\\\"\\x06\\x14\\x17:\\x01\\x1e\\x02\\x17\\x15\\x14\\x06#\\\".\\x02=\\x01636\\x16\\x1f\\x01\\x162?\\x01>\\x02\\x01N\\x14\\x0e\\x0e\\x14\\x0e\\xafΑYH\\t*\\x06\\x01\\r\\t/\\x98/\\t\\r\\x01\\x06*\\tHY\\xc0\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\x884&&4&\\r\\x01\\x01\\x02\\x04\\a\\x04&\\x1b\\r\\x17\\x11\\n\\x12\\x01\\v\\x15\\x03\\x01\\x02\\x0e\\x02\\x01\\x02\\v\\x0f\\x01\\b\\x0e\\x14\\x0e\\x0e\\x14\\xbe\\x91gO~\\x1b\\x14\\x14.\\x1b$\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t$\\x1b.\\x14\\x14\\x1b~OgP\\x06\\b\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\t0&4&&4\\x8d\\x02\\x01\\x04\\x02@\\x1b%\\v\\x11\\x18\\r?\\t\\x05\\v\\v\\b\\a\\a\\b\\a\\v\\x02\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x001\\x00\\x00<\\x0162\\x16\\x14\\x06\\\"\\x124&\\\"\\x06\\x14\\x1627\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x17\\a&\\x06\\x17\\x1e\\x012676.\\x01\\a\\x06\\\"\\x91Α\\x91\\xce7\\x13\\x1a\\x13\\x13\\x1a\\xbb\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\xe9\\t\\r\\x01\\aY`Y\\a\\x01\\x06\\n\\x06/\\x98YΑ\\x91Α\\x01\\x1b\\x1a\\x13\\x13\\x1a\\x13\\a\\x06\\t\\b\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\ta\\x03\\f\\t'66'\\x06\\n\\x04\\x02\\x0f\\x00\\x00\\x06\\x00\\x00\\x00 \\x01\\xc0\\x01`\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463`\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xff\\x00\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xe0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xc0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x01@\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00\\x00\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463`\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\x01\\x00\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x13\\r\\x01\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x01@\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\xa0\\x13\\r@\\r\\x13\\x13\\r@\\r\\x13\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x11\\x00\\\"\\x00@\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\".\\x01=\\x014>\\x01;\\x012\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x01463\\x022\\x16\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x014&#\\\"\\x0e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x016\\xa0\\r\\x13\\x13\\r\\x10\\x11\\x1e\\x11\\x11\\x1e\\x11\\xe0\\x1b%\\x11\\x1e\\x11\\x10\\r\\x13\\x13\\r\\xc9Ҕ\\x03\\t\\a\\x10\\a\\tzV8`8\\t\\a\\x10\\a\\t\\x03\\xa0\\x13\\r\\x80\\r\\x13\\x11\\x1e\\x11@\\x11\\x1e\\x11&\\x1a@\\x11\\x1e\\x11\\x13\\r\\x80\\r\\x13\\x01\\x00\\x97ip\\a\\t\\t\\apVz8`8p\\a\\t\\t\\api\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00F\\x00\\x007\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x17#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06\\x022\\x16\\x17\\x15\\x14\\x06+\\x01\\\"&46;\\x012\\x16\\x153265454&\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x016\\xc0\\x13\\r\\x10\\x1b%%\\x1b\\x10\\r\\x13\\xb0\\x10\\r\\x13\\x13\\r\\x10\\x1b%%\\xf4Ҕ\\x035%\\xb6\\x14\\x1c\\x1c\\x14 \\x14\\x1cf\\x11\\x19z\\xacz\\t\\a\\x10\\a\\t\\x03\\xf0p\\r\\x13%\\x1b0\\x1b%\\x13\\x9d\\x13\\rp\\r\\x13%\\x1b0\\x1b%\\x01`\\x97i\\xa6%5\\x1c(\\x1c\\x1c\\x14\\x19\\x11\\xa4\\x02VzzV\\x10\\a\\t\\t\\a\\x10i\\x00\\x03\\x00\\x00\\xff\\xc0\\x02!\\x01\\xc1\\x00\\x03\\x00\\x11\\x00\\x1b\\x00\\x00\\x157\\x17\\a\\x137\\x17\\a\\x06/\\x01\\a'7'&54%\\x1e\\x01\\x0f\\x01'76\\x16\\x17DC#\\x19)\\xad#\\x10\\x16+3`3\\r\\x02\\x01\\xa0\\x0f\\x02\\x0f\\xaa\\xa9\\xc7\\x10+\\x10 FC#\\x01\\x10#\\xad*\\x11\\a\\r3`3+\\x05\\x06\\x10\\xac\\x10+\\x10ǩ\\xaa\\x0f\\x02\\x0f\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x13\\x00'\\x00;\\x00G\\x00S\\x00_\\x00k\\x00s\\x00\\x00\\x01&'&'&6;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"'&'&'&6;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x012\\x1f\\x01\\a54+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x00\\\"&462\\x16\\x14\\x01\\x9e\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0e\\x02\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0en\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0e\\x02\\x05\\x1b+\\a\\x01\\n\\a\\x10\\x0e\\xac\\r\\x13%\\x1b\\xfe\\x80\\x1b%%\\x1b+\\x15\\x11o\\x80\\b\\x10\\b\\b\\x10\\b`\\b\\x10\\b\\b\\x10\\b`\\b\\x10\\b\\b\\x10\\b`\\b\\x10\\b\\b\\x10\\b\\xfe\\xbb6%%6%\\x01\\x0e(\\x16$>\\a\\v\\x0e(\\x16$>\\a\\v\\x0e(\\x16$>\\a\\v\\x0e(\\x16$>\\a\\v@\\x13\\r\\xa0\\x1b%%\\x1b\\xe0\\x1b%\\rS\\xb8p\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\x01@%6%%6\\x00\\b\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00-\\x00=\\x00M\\x00]\\x00m\\x00s\\x00\\x83\\x00\\x93\\x00\\x00\\x01#\\x1132\\x16\\x1d\\x01\\x14\\x06+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"&=\\x0146;\\x01\\x11#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x05\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06'\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1726=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x163\\x1734&\\\"\\x06%54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x020\\x10\\x10\\a\\t\\t\\a\\xf0\\t\\a \\a\\t\\xf0\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x02 \\a\\t\\t\\xfe\\xc9\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b3\\x05\\b\\b\\x05&\\x05\\b\\b\\x053\\xc08P8\\x01\\x00\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x01\\x80\\xfe\\x80\\t\\a \\a\\tP\\a\\t\\t\\aP\\t\\a \\a\\t\\x01\\x80\\t\\a \\a\\t\\t\\a \\a\\t-&\\x05\\b\\b\\x05&\\x05\\b\\be&\\x05\\b\\b\\x05&\\x05\\b\\b[&\\x05\\b\\b\\x05&\\x05\\b\\b\\x98\\b\\x05&\\x05\\b\\b\\x05&\\x05\\b\\x80(88e&\\x05\\b\\b\\x05&\\x05\\b\\be&\\x05\\b\\b\\x05&\\x05\\b\\b\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x16\\x00\\x1e\\x007\\x00D\\x00Q\\x00\\x00\\x01&=\\x014;\\x012\\x1d\\x01\\x14\\x17\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014\\x056\\x1f\\x01#\\\"'6\\x01\\x1e\\x01\\x1d\\x01\\x14+\\x01\\\"=\\x014.\\x01'&=\\x014;\\x012\\x1d\\x01\\x14\\x032\\x1e\\x01\\x1f\\x01#\\\".\\x01/\\x012!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&/\\x01\\x01\\xbc<\\b0\\b(\\x1a\\x1e\\b0\\b\\xfe\\xe3$\\x18qY\\x97\\x80Z\\x01\\xcf).\\b0\\b\\x10\\x1e\\x15\\x1d\\b0\\b\\xb7\\b\\x13\\x10\\x06vY\\b\\x13\\x10\\x06u\\x01\\x01V\\n\\x0e\\x0e\\n\\x11\\r\\x1c\\bv\\x01\\v*AB\\b\\b>,\\x1c\\x129!\\x1e\\b\\b\\x1e,\\x99\\x06\\x1b\\x84P8\\x01!\\x1bW1\\x1e\\b\\b\\x1e\\x19/'\\r\\x13%>\\b\\b>\\v\\xfe\\xf1\\x06\\n\\x06\\x8a\\x06\\n\\x06\\x8a\\x0e\\np\\n\\x0e\\r\\t\\x8a\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00-\\x005\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x174'654.\\x01'&\\x06\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x14\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x167>\\x02264&\\\"\\x06\\x14\\x91Α\\x91Α\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xa8##\\x11\\\"\\x15\\x06\\x03\\x06\\x11\\x15\\x15\\x11\\x05\\x05\\x11\\x15\\x15\\x11\\x06\\x03\\x06\\x1f)\\v\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xceW\\x13\\x1a\\x13\\x13\\x1a\\xaf\\x16\\x0e\\x0e\\x16\\n\\x13\\x0e\\x01\\x01\\r\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\x0e\\x01\\x02\\x1b\\xab\\x13\\x1a\\x13\\x13\\x1a\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x17\\x005\\x00G\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x1665.\\x01\\\"\\x06\\a\\x14\\x16?\\x0162\\x1f\\x014'654.\\x01'&\\x06\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x14\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x167>\\x017\\x1665.\\x02#\\\"\\x06\\a\\x14\\x16?\\x0162\\x17\\x91Α\\x91Α\\xd1\\x03\\f\\x02#&#\\x02\\f\\x03\\t\\r&\\rh##\\x11\\\"\\x15\\x06\\x03\\x06\\x11\\x15\\x15\\x11\\x05\\x05\\x11\\x15\\x15\\x11\\x06\\x03\\x06\\x1f)A\\x03\\f\\x01\\x12\\x19\\f\\x13#\\x02\\f\\x03\\t\\r&\\r\\x01\\xb8\\x91Α\\x91\\xceK\\x06\\x04\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\xb9\\x16\\x0e\\x0e\\x16\\n\\x13\\x0e\\x01\\x01\\r\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\x0e\\x01\\x02\\x1b\\xb7\\x06\\x04\\a\\x14!\\x12)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xfc\\x01\\xb8\\x00\\x12\\x00&\\x00.\\x00M\\x00a\\x00\\x00%\\x16\\x06\\x0f\\x01\\x06/\\x01&>\\x0176\\x16\\x1f\\x0176\\x16\\a\\x16\\x15\\x06#\\\"&462\\x16\\x15\\x14\\a&#.\\x01\\a\\x06&264&\\\"\\x06\\x14\\x174'654.\\x02'&\\x06\\x1f\\x01\\x16\\x14\\x0f\\x01\\x0e\\x01\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x167>\\x01?\\x0162\\x1f\\x01\\x166'.\\x03#\\\"\\x0e\\x01\\a\\x06\\x16\\x01\\xf5\\a\\x11\\x12S\\n\\x03\\x17\\x03\\a\\x12\\f\\x11\\x1c\\x04\\x03\\b\\x10\\x1f\\xab\\x17/4g\\x91\\x91Α\\x11\\v\\b\\x15T\\x17\\x11\\xa0\\x1a\\x13\\x13\\x1a\\x13\\x98##\\n\\x13\\x1b\\x10\\x06\\x04\\a\\x11\\x15\\x15\\x11\\x04\\x01\\x05\\x11\\x15\\x15\\x11\\x06\\x03\\x06\\x1f)\\x10\\n\\v'\\v\\t\\a\\x0e\\x01\\x01\\f\\x11\\x14\\n\\r\\x1a\\x13\\x02\\x01\\x0f.\\x12!\\x05\\x16\\x02\\tS\\f\\x17\\x10\\x02\\x02\\x13\\x10\\t\\x02\\x05\\x0f\\vT\\x01\\x15\\x91Α\\x91g.,\\x03%\\x02#\\x1c\\u007f\\x13\\x1a\\x13\\x13\\x1a\\xaf\\x16\\x0e\\x0e\\x16\\b\\x0e\\r\\b\\x01\\x01\\r\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\x0e\\x01\\x02\\x1b\\xc2\\t\\t\\t\\t\\x06\\b\\t\\t\\x10\\v\\x06\\n\\x14\\f\\t\\b\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x172676&#!\\\"\\x06\\x17\\x1e\\x013\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x1387Q\\a\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x01\\xb8\\x91Α\\x91\\xce\\a\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xfdH6\\a\\v\\v\\a6H\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00.\\x00<\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x01#\\\"\\x0e\\x01\\a\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x04#\\\"\\x0e\\x01\\x056&#!\\\"\\x06\\x17\\x1e\\x01;\\x0126\\x91Α\\x91Α\\x01\\x10\\x01\\r\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02#\\x13\\f\\x18\\x12\\xa2\\x01\\r\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\a\\f\\x18\\x12\\x01\\x1d\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x107Q\\x01\\xb8\\x91Α\\x91\\xce6\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e)\\x12!\\x14\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a\\x12!w\\a\\v\\v\\a6HH\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x16\\x00#\\x001\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x14\\x1f\\x01\\x166/\\x01764.\\x01\\x0f\\x01\\x17\\a\\x06\\x16?\\x0164/\\x01&\\x06\\x056&#!\\\"\\x06\\x17\\x1e\\x01;\\x0126\\x91Α\\x91Α\\x01\\x1a\\x06\\x06P\\b\\x0e\\a!!\\x03\\x06\\b\\x04\\xf3!!\\a\\x0e\\bP\\x06\\x06P\\b\\x0e\\x01\\x1f\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x107Q\\x01\\xb8\\x91Α\\x91\\xce\\x11\\x03\\x0e\\x030\\x05\\x0f\\b((\\x04\\t\\x06\\x02\\x03\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\xae\\a\\v\\v\\a6HH\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00!\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x02#\\\"\\x06&\\\"\\x06\\x14\\x16264\\x176&#!\\\"\\x06\\x17\\x1e\\x01;\\x0126\\x91Α\\x91Α\\x01\\f\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x0f\\x01\\x02\\x13\\x1a\\r\\x14%Z\\x1a\\x13\\x13\\x1a\\x13\\xc7\\x01\\n\\a\\xfe\\xf2\\a\\n\\x01\\aQ7\\x107Q\\x01\\xb8\\x91Α\\x91\\xce5\\b\\t\\x06\\t\\t\\t\\t\\x06\\t\\b\\f\\x14\\n\\x18\\x1c\\x13\\x1a\\x13\\x13\\x1a\\u007f\\a\\v\\v\\a6HH\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x13\\x00A\\x00L\\x00P\\x00\\x007\\\"&=\\x0146;\\x01\\x15%\\x14\\x06+\\x01532\\x16\\x15\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547#\\\"&5\\x11#\\\"&=\\x0146;\\x012\\x16\\x15\\x11\\x01\\x15#\\x1146;\\x012\\x16\\x15\\a5#\\x15\\xe0\\r\\x13\\x13\\r \\x01@\\x13\\r  \\r\\x130\\a\\t\\t\\aS\\x03\\x1c(\\x1c\\x03\\xc6\\x03\\x1c(\\x1c\\x03S\\a\\t0\\a\\t\\t\\a`\\a\\t\\x01`\\xc0\\x1c\\x14`\\x14\\x1c0`\\x80\\x13\\r\\xa0\\r\\x13\\xe0 \\r\\x13\\xe0\\x13\\r\\xff\\x00\\t\\a \\a\\t\\b\\b\\x14\\x1c\\x1c\\x14\\b\\b\\b\\b\\x14\\x1c\\x1c\\x14\\b\\b\\t\\a\\x01p\\t\\a \\a\\t\\t\\a\\xfe\\x90\\x01 \\xe0\\x01\\x10\\x14\\x1c\\x1c\\x14000\\x00\\x04\\x00\\x00\\xff\\xbf\\x02@\\x01\\xc0\\x00\\v\\x00\\x19\\x00#\\x00/\\x00\\x00\\x122\\x16\\x15\\x14\\a\\x06\\\"'&54\\a7\\x16\\x17\\x15\\a\\x06.\\x02=\\x0146\\x162767\\x15'5\\x16\\x17%6\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01\\x0f\\x01\\x11\\xechJr\\x05\\x0e\\x05r\\x8ew\\a\\x0e\\x8a\\x04\\b\\x06\\x04\\f\\xfe,\\x0f!\\x1a\\xc0\\x1a!\\x01/\\x06\\t\\a\\x05\\n\\x05\\x8c\\x01\\xc0J4>\\x86\\x06\\x06\\x86>4\\x8e0\\x16\\x19\\xe9?\\x02\\x02\\x04\\a\\x04\\xfa\\t\\x12\\x8d\\x11(%\\xf6@\\xb6%(\\xb6\\x02\\x03\\b\\x06\\xfa\\x06\\f\\n\\x028\\x01 \\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xbf\\x02@\\x01\\xc0\\x00\\v\\x00\\x13\\x00!\\x00+\\x007\\x00\\x00\\x122\\x16\\x15\\x14\\a\\x06\\\"'&54\\x16264&\\\"\\x06\\x14\\a7\\x16\\x17\\x15\\a\\x06.\\x02=\\x0146\\x162767\\x15'5\\x16\\x17%6\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01\\x0f\\x01\\x11\\xechJr\\x05\\x0e\\x05rm\\\"\\x19\\x19\\\"\\x19\\xe2w\\a\\x0e\\x8a\\x04\\b\\x06\\x04\\f\\xfe,\\x0f!\\x1a\\xc0\\x1a!\\x01/\\x06\\t\\a\\x05\\n\\x05\\x8c\\x01\\xc0J4>\\x86\\x06\\x06\\x86>4^\\x19\\\"\\x19\\x19\\\"I0\\x16\\x19\\xe9?\\x02\\x02\\x04\\a\\x04\\xfa\\t\\x12\\x8d\\x11(%\\xf6@\\xb6%(\\xb6\\x02\\x03\\b\\x06\\xfa\\x06\\f\\n\\x028\\x01 \\x00\\x00\\x02\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc1\\x00\\v\\x00 \\x00\\x00?\\x01\\x17\\a\\x0e\\x01\\a\\x06&7>\\x01\\x00\\x16\\x14\\x0f\\x01'7'\\a\\x06/\\x01&?\\x0162\\x1f\\x0176^K\\x80K\\\"r/\\f\\x10\\x01\\x057\\x01\\x8f5\\x1b\\xa5\\x80b\\x13W\\f\\v\\x17\\v\\vi\\v!\\f%\\x15\\x1b\\x9eK\\x80K\\\"7\\x05\\x01\\x10\\f/r\\x01D5K\\x1b\\xa5\\x80b\\x14W\\v\\v\\x17\\v\\vh\\f\\f$\\x15\\x1b\\x00\\x00\\x04\\xff\\xfd\\xff\\xc0\\x02\\x03\\x01\\xc0\\x00\\t\\x00\\x13\\x00\\x1b\\x004\\x00\\x00\\x13\\x06\\a'&6;\\x012\\x17%2\\x16\\x0f\\x01&'763\\x062\\x16\\x14\\x06\\\"&4\\x056&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x01\\xe0?/o\\x06\\t\\no\\x12\\n\\x01U\\n\\t\\x06o/?E\\n\\x12ʒgg\\x92g\\x01\\r\\x05\\x05\\a4\\x18\\x03\\x0e\\x03\\x184\\a\\x05\\x05&\\t\\x01\\f\\x06//\\x06\\f\\x01\\t\\x01=\\n+\\x9f\\b\\x11\\x10\\x10\\x11\\b\\x9f+\\ns\\x10\\xa0g\\x92gg\\x926\\x05\\r\\x01\\b/\\a\\a/\\b\\x01\\r\\x05%4\\a\\t\\x03\\x19\\x19\\x03\\t\\a4\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x91Α\\x91Α\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xceW\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x19\\x00!\\x003\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\x162654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x1724+\\x01\\\"\\x14362654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x15\\x14\\x91Α\\x91ΑX&4&\\\"\\x02\\x13\\x1a\\x13\\x02\\\"\\xe0\\x10\\x10\\x80\\x10\\x10\\x864&\\\"\\x02\\x13\\x1a\\x13\\x02\\\"\\x01\\xb8\\x91Α\\x91\\xceG\\x1a&&\\x1a&\\x12\\x06\\x02\\r\\x13\\x13\\r\\x02\\x06\\x12\\xd6  p&\\x1a&\\x12\\x06\\x02\\r\\x13\\x13\\r\\x02\\x06\\x12&\\x1a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc7\\x00\\x0f\\x00\\x1a\\x00*\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\x13!\\x136?\\x016\\x1f\\x01\\x16\\a54&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01p\\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a\\x01\\x11\\x1f\\xff\\x00\\x1f\\x01\\bM\\v\\vM\\b0\\b\\x05F\\x05\\b\\b\\x05F\\x05\\b\\t\\a \\a\\t\\t\\a \\a\\t\\x01[\\xfe\\xc5\\x01;\\f\\bL\\f\\fL\\b\\xda&\\x05\\b\\b\\x05&\\x05\\b\\b\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x03\\x01\\xc0\\x00\\t\\x00+\\x00\\x00\\x01\\a#7632\\x17\\x1e\\x01\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\a\\x16\\x17\\x16\\x06+\\x01\\\"&767.\\x015#\\\"&=\\x01463\\x01\\xf6d\\x97\\xcc\\t\\f\\t\\a\\x11\\x05\\x12\\a\\t\\t\\a\\x10C6\\x14\\x05\\x01\\n\\a\\xe0\\a\\n\\x01\\x05\\x146C\\x10\\a\\t\\t\\a\\x01\\x83c\\x99\\a\\x04\\b$\\x90\\t\\a \\a\\t<a\\x15\\x1b \\a\\f\\f\\a \\x1b\\x15a<\\t\\a \\a\\t\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x000\\x00\\x00\\x01\\x14\\x06#!\\\"&=\\x01463!2\\x16\\x15\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\x152\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463546;\\x01265\\x01\\xa0\\x13\\r\\xfe\\xa0\\r\\x13\\x13\\r\\x01`\\r\\x13 \\x1b%8(\\xa0\\r\\x13\\x13\\r@\\r\\x13\\x13\\r%\\x1b\\xa0\\r\\x13\\x01@\\r\\x13\\x13\\r`\\r\\x13\\x13\\r %\\x1b@(8 \\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13 \\x1b%\\x13\\r\\x00\\t\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x04\\x00\\t\\x00\\x10\\x00\\x18\\x00\\x1d\\x00-\\x009\\x00A\\x00F\\x00\\x00\\x1367\\x06\\x0f\\x013\\x16\\x17&\\x17.\\x01'3\\x0e\\x01'>\\x017\\x1e\\x02\\x1f\\x01673\\x06\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01264&+\\x01\\\"\\x06\\x14\\x1636264&\\\"\\x06\\x147\\x16\\x17#&\\x82\\b-\\f\\x02''\\x02\\f-V\\a\\x0f\\x01.\\x01\\x0f\\x1e\\x01\\x0f\\a\\x04\\n\\b\\x01\\x12\\f\\x02'\\bj\\r\\x13\\x13\\r\\xfe\\xa0\\x1b%%\\x1b\\x01\\x10\\a\\t\\t\\a\\xe0\\a\\t\\t\\a;jKKjK\\xa9-\\b'\\x02\\x01\\x101\\x15\\x1d) )\\x1d\\x15\\x1e\\a*\\x1e\\x1e*h\\x1e*\\a\\x05\\x12#\\x15f\\x1d)1\\x01\\x01\\x13\\r\\xfe@\\r\\x13%\\x1b\\x01\\x80\\x1b%\\xfe`\\t\\x0e\\t\\t\\x0e\\t`KjKKj\\x8b\\x151)\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\a\\x01\\xcc\\x00\\x17\\x00\\x1e\\x00\\x00?\\x01\\x17\\a\\x06\\x0f\\x01'7\\x163264&\\\"\\x06\\x15\\x14\\x17\\a'76\\x016\\x1e\\x01\\x0f\\x01'OTc!\\x05\\x0f\\xb1\\x05]\\x06\\x02\\r\\x13\\x13\\x1a\\x13\\x02]\\x05;\\x05\\x011#]\\x16$\\xc7b\\xa5!cT\\x0f\\x05;\\x05]\\x02\\x13\\x1a\\x13\\x13\\r\\x02\\x06]\\x05\\xb1\\x0f\\x01\\x04'\\x1eT(\\xb7b\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00\\x1c\\x00&\\x00\\x00\\x137\\x17\\a\\x0e\\x01\\a\\x05'7\\x163264&\\\"\\x06\\x15\\x14\\x17\\a'\\x13>\\x04%\\x16\\x14\\x0f\\x01'762\\x17\\x89\\x97\\x80+\\x04\\x18\\r\\xfe\\xe8\\x0f\\x96\\n\\v\\x14\\x1c\\x1c(\\x1c\\x05\\x96\\x0f]\\x02\\a\\b\\n\\v\\x01o\\x0e\\x0e9\\x809\\x0e(\\x0e\\x015+\\x80\\x97\\x0e\\x19\\x05]\\x0f\\x96\\x05\\x1c(\\x1c\\x1c\\x14\\v\\n\\x96\\x0f\\x01\\x18\\x05\\v\\t\\t\\x06B\\x0e(\\x0e9\\x809\\x0e\\x0e\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x02\\x01\\x01\\xc1\\x00\\x12\\x00\\x1c\\x00$\\x006\\x00\\x007'&4?\\x0162\\x1f\\x01\\a\\x06\\x1f\\x01\\x162?\\x01\\x1f\\x01\\a'762\\x1f\\x01\\x16\\x14'\\x17\\x01\\a\\x06&?\\x01%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x017\\x17\\a\\x06\\x1f\\x01\\x16?\\x01md\\t\\tZ\\t\\x1b\\t\\\">\\x06\\x06\\v\\x02\\a\\x02>,\\xfe.q.\\x0e(\\x0e-\\x0e\\xc4q\\xfe\\xd7k\\v\\x10\\x02\\x13\\x01\\xe4\\t\\tZ\\t\\x1b\\td\\x87,>\\x06\\x06\\v\\x06\\x05>\\xccd\\t\\x1b\\tZ\\t\\t\\\">\\x05\\x06\\v\\x02\\x02>,\\x12.q.\\x0e\\x0e-\\x0e(\\x1eq\\xfe\\xd7\\x13\\x02\\x10\\vk\\f\\t\\x1b\\tZ\\t\\te\\x86,>\\x05\\x06\\v\\x06\\x06>\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc2\\x00\\x0f\\x00.\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637&=\\x0146\\x1f\\x01\\x16\\x1f\\x02'46\\x1f\\x01\\x16\\x1f\\x02\\x16\\x17\\x16\\x06\\a\\x06'%&'\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x1d\\r\\r\\b'\\b\\x03\\x1cf0\\r\\bA\\t\\x03db+\\x1c\\x1d\\r(&+\\xfe\\xe0\\x0e\\v\\t\\a \\a\\t\\t\\a \\a\\t\\xf2\\v\\re\\t\\t\\x02\\v\\x02\\bC\\x1c\\xa4\\b\\v\\x03\\x11\\x03\\t\\xc0\\x1b\\v\\x1d\\x1e1\\v\\v\\fN\\x04\\n\\x00\\x00\\x00\\x02\\xff\\xfe\\xff\\xc0\\x02\\x89\\x01\\xa1\\x00\\x0f\\x001\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637'&6?\\x0162\\x1f\\x017'&6?\\x01632\\x1f\\x0176\\x17\\x1e\\x01\\a\\x06\\a\\x05\\x06+\\x01\\\"\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\aAM\\x05\\x03\\b(\\x04\\b\\x04Hh\\x9d\\x06\\x04\\bA\\x04\\x04\\x06\\x04\\xdbc++.\\x18\\x19\\x17,\\xfe\\xdd\\x0e\\x10\\x82\\x0f\\t\\a \\a\\t\\t\\a \\a\\tkS\\x06\\x12\\x04\\x14\\x02\\x02$4b\\a\\x12\\x04!\\x02\\x03R2\\x16\\x03\\x031'$\\x16\\x94\\a\\x00\\x00\\x02\\x00\\x00\\xff\\xd9\\x01\\x87\\x01\\xa0\\x00*\\x002\\x00\\x00%\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'#\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15\\x14\\x06\\a\\x1776\\x1f\\x01\\x16\\a%\\x153264&#\\x01-N\\f\\f\\x16\\f\\vNN\\v\\f\\x16\\f\\fN\\x80\\x13\\t\\a \\a\\t\\t\\a\\x90(80$TN\\v\\f\\x16\\f\\f\\xfe\\xc5`\\r\\x13\\x13\\r`N\\v\\f\\x16\\f\\fNN\\f\\f\\x16\\f\\vN\\x80P\\a\\t\\t\\a\\x01\\x00\\a\\t8($6\\x05TN\\f\\f\\x16\\f\\v\\xb2@\\x13\\x1a\\x13\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x1b\\x00.\\x006\\x00J\\x00\\x00\\x122\\x16\\x15\\x14\\x06\\a54&\\\"\\x06\\x1d\\x01\\x06\\\"'54&\\\"\\x06\\x1d\\x01.\\x0154\\x1f\\x01\\x166'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x16264&\\\"\\x06\\x1476'.\\x03#\\\"\\x06\\a\\x06\\x16?\\x0162\\x1f\\x01\\x16\\x91ΑA7\\t\\x0e\\t.d.\\t\\x0e\\t7A\\xb6\\n\\x06\\x0f\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&9(\\x1c\\x1c(\\x1c\\xc6\\a\\x01\\x01\\f\\x11\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x01\\xb8\\x91gBq!\\xb4\\a\\t\\t\\a\\xc5\\x13\\x13\\xc5\\a\\t\\t\\a\\xb4!qBgG\\t\\x06\\b\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\xc9&4&&4\\x90\\x03\\t\\t\\x10\\v\\x06\\x18\\x12\\t\\b\\x06\\t\\t\\t\\t\\x06\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1b\\x00#\\x00.\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x04\\\"\\x06\\x14\\x16264\\x062654'&\\\"\\a\\x06\\x15\\x146264&\\\"\\x06\\x14\\x17\\x16>\\x01'&#\\\"\\x1432\\x91Α\\x91Α\\x01U\\x1a\\x13\\x13\\x1a\\x13\\xe4(\\x1c*\\x02\\b\\x02*3\\x1a\\x13\\x13\\x1a\\x13\\xca\\x06\\x13\\x05\\x05-F\\x10\\x107\\x01\\xb8\\x91Α\\x91\\xce\\x17\\x13\\x1a\\x13\\x13\\x1a\\xdd\\x1c\\x13\\x177\\x03\\x037\\x17\\x13\\x94\\x13\\x1a\\x13\\x13\\x1a\\xad\\b\\x04\\x10\\b6 \\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1d\\x00!\\x00)\\x00-\\x005\\x009\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x17\\x0535#\\x12264&\\\"\\x06\\x1475#\\x15\\x16264&\\\"\\x06\\x14'3'#\\x02u\\v\\x13\\r 8P8\\x808P8 \\r\\x13\\x13\\r\\x01\\xaa\\x16\\x0e\\xfeR``L(\\x1c\\x1c(\\x1c\\xd0`\\xec(\\x1c\\x1c(\\x1c0\\x92PB\\xed\\r\\x11o\\r\\x13(88((88(\\x13\\r\\x01 \\r\\x13\\x11\\x8f`\\xfe\\xb0\\x1c(\\x1c\\x1c(\\xd4``\\xf0\\x1c(\\x1c\\x1c(\\xd4`\\x00\\x00\\x01\\xff\\xf9\\x00\\x00\\x02\\x80\\x01\\x83\\x00=\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x0e\\x01#\\x0e\\x03\\a\\x06#\\\"'&7\\x06\\a\\x06#\\\"&?\\x016&\\x0f\\x01\\x06&/\\x01&?\\x016\\x1e\\x02\\x0f\\x01>\\x0176\\x1e\\x01\\x14\\a\\x06\\x1e\\x01327>\\x02\\x02o\\a\\n\\x04\\a\\x04\\x0e)\\\"(\\nC#+\\x17\\x19\\x05M\\x86\\n\\r\\x13\\x10\\x05b\\a\\x19\\x0e:\\x06\\r\\x03\\x12\\b\\r7\\x1c:&\\x13\\r*KJ\\x15\\x13\\x15\\x04\\x01\\x03\\x02\\v\\v\\x166\\nE=\\x01\\x00\\t\\a \\x04\\a\\x05\\x01\\x11\\x14\\x18\\x04\\x1e\\x19\\x1c8=\\x87\\t\\x1e\\x0e\\xf6\\x0e\\x15\\b'\\x04\\x03\\x06\\x1b\\r\\t%\\x11\\x05#3\\x1dhG6\\x01\\x01\\x13!\\x11\\b\\x12\\x17\\v\\x18\\x05'\\x1a\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1b\\x00'\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x06\\x16?\\x0162\\x1f\\x01\\x166'.\\x04#\\\"\\x06\\x176&\\a\\x06\\\"'&\\x06\\x17\\x1627\\x166'.\\x02#\\\"\\x06\\a\\x14\\x16?\\x0162\\x17\\x91Α\\x91Αp\\x01\\r\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\xf9\\n\\x19\\n#n#\\n\\x19\\n-\\x8c3\\x03\\r\\x01\\x01\\x12\\x19\\f\\x13#\\x02\\f\\x03\\t\\r&\\r\\x01\\xb8\\x91Α\\x91\\xceF\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a)\\x99\\f\\x14\\f**\\f\\x14\\f6\\xac\\x05\\x03\\a\\x14!\\x12)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\x14\\x00(\\x00,\\x000\\x004\\x008\\x00<\\x00@\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014>\\x01;\\x0153\\x15\\x13\\x12\\x15\\x14\\x0e\\x01#!\\\"&54\\x13>\\x023!2\\x16\\x05\\a3'\\x037#\\a?\\x01#\\a\\x173'#7\\x173'\\x033'#\\x01\\xb0\\a\\t\\t\\a\\xe0\\a\\t\\x04\\b\\x040\\x80\\xc97\\t\\x0f\\t\\xfd\\xc2\\x0e\\x137\\x01\\t\\x0e\\b\\x01\\xd2\\f\\x12\\xfe\\xbd\\n\\x8c\\n\\xc3\\vj\\x13\\x82\\n`\\x11\\x88\\xac\\v\\x96\\xb8\\ng\\x11Fr\\x13j\\t\\a \\x06\\n\\t\\a \\x04\\a\\x05  \\x01\\xa5\\xfe\\xbd\\x02\\t\\x0e\\t\\x13\\r\\x03\\x01B\\b\\f\\a\\x0f1``\\xff\\x00pp\\xa0``\\xa0p\\x90``\\xff\\x00p\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xe0\\x02A\\x01\\xa4\\x00\\x1e\\x00,\\x00\\x00\\x012\\x15\\x14\\x0e\\x02\\a\\x06\\\"'.\\x035432\\x1e\\x02\\x17\\x16\\x1767>\\x03\\x05&'&'676\\x17\\x16\\x17\\x06\\a\\x06\\x028\\b\\x06\\x0f'\\x1dS\\xe8S\\x1d'\\x0f\\x06\\b\\x10'?D\\x1c+\\x17\\x17+\\x1cD?'\\xfe\\xf8\\x13\\x1a\\x1a!\\x1aF\\b\\bG\\x19\\\"\\x1a\\x19\\x01\\x00\\b\\x0f%;?\\x19QQ\\x19?;%\\x0f\\b\\x05\\x0f$\\x1b'88'\\x1b$\\x0f\\x05o\\x1d\\x17\\x19\\x13o=\\a\\a=o\\x13\\x1a\\x16\\x00\\x01\\xff\\xf4\\xff\\xd7\\x02\\x03\\x01\\xa7\\x00\\\"\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x06\\x0f\\x01\\x0e\\x01/\\x01&\\x0f\\x01\\x06&?\\x016/\\x01&6\\x1f\\x01\\x16?\\x016\\x16\\x1f\\x01\\x16\\x17\\x01\\xd8%\\x06\\\">\\x1c\\x02\\x05\\x03H\\x1e6\\x19 F&3\\x10\\x1c\\r\\x12&\\x15)'H!\\x15.\\x19L\\t\\x10\\a\\x1f\\xfc\\fC\\x12\\x1f\\x0f\\x1c>\\\"\\x1a\\x17(\\x13\\a\\x0f\\t4\\x1f9\\x1a\\x184\\x1d9\\x03\\x06\\x02\\x16/\\x1a\\x0f!=\\x1b\\v\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\t\\x00\\x11\\x00!\\x00)\\x001\\x009\\x00A\\x00I\\x00Q\\x00\\x00\\x13\\x15#546;\\x012\\x1e\\x012\\x16\\x14\\x06\\\"&4\\a2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x12264&\\\"\\x06\\x14\\x00\\\"&462\\x16\\x14\\x062\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\xe0\\x80\\x13\\r@\\r\\x13\\xf3\\x1a\\x13\\x13\\x1a\\x13\\xe0(8\\x13\\r\\xff\\x00\\r\\x138(\\x1fB//B/\\x01\\x9d\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13M\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x01\\xa0``\\r\\x13\\x13m\\x13\\x1a\\x13\\x13\\x1a\\r8(\\xe0\\r\\x13\\x13\\r\\xe0(8\\xff\\x00/B//B\\x01\\x11\\x13\\x1a\\x13\\x13\\x1a3\\x13\\x1a\\x13\\x13\\x1as\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xad\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc7\\x00\\x03\\x00*\\x00\\x00\\x175!\\x15\\x032\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0126=\\x014'&546\\x17\\x1e\\x01\\x17\\x16\\a\\x06\\x1d\\x01\\x14\\x163 \\x01\\xc0@(8\\x13\\r\\xfe@\\r\\x138(C\\f\\x11\\x17\\tD-\\x1d+\\x06\\x05\\x0f\\x15\\x11\\f@@@\\x01\\x008( \\r\\x13\\x13\\r (8\\x11\\f\\x01(2\\x13\\x15,:\\b\\x05+\\x1d \\x1c*$\\n\\f\\x11\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x02\\x1d\\x01\\xc0\\x00\\x1c\\x00'\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06#\\\"/\\x01\\a\\x06#\\\"&?\\x01'&6?\\x0262\\x1f\\x027/\\x03\\x11\\x1f\\x01/\\x01\\x01\\xfd\\x13\\r\\x0fj\\x19\\x03\\x14\\x0e\\b\\a\\x83\\x83\\a\\b\\x0e\\x14\\x03\\x19j\\x0f\\r\\x13\\x93A\\t(\\tA\\x19Rr\\x19\\v3\\x16f\\x13\\x04\\x01\\x14\\x02&\\x0eg\\x92\\x0f\\x16\\x04DD\\x04\\x16\\x0f\\x92g\\x0e&\\x03\\x15\\x84\\x12\\x12\\x84\\x91Q\\x10\\x04\\x17g\\xfe\\xc3\\f6r\\x19\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00#\\x00/\\x00;\\x00I\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x01463\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\x15#546;\\x012\\x16\\x1d\\x01#5\\x01P\\x14\\x1c\\x1c\\x14\\x10\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x14\\x1c\\x1c\\x14\\x01\\x10\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\b\\xf0\\b\\xb00\\x1c\\x14`\\x14\\x1c0\\x01 \\x1c\\x14\\xe0\\x14\\x1c\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\x1c\\x14\\xe0\\x14\\x1c\\xd8\\x10\\b\\b\\x10\\bh\\x10\\b\\b\\x10\\b\\xf0PP\\x14\\x1c\\x1c\\x14PP\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16\\x14\\x16264&\\\"\\x16264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x91Α\\x91Α\\x88\\x13\\x1a\\x13\\x13\\x1aC4&&4&\\x83\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce*\\x1a\\x13\\x13\\x1a\\x13\\xf0&4&&4\\x8a\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\n\\x00\\x17\\x00%\\x00-\\x001\\x005\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x117362\\x1f\\x012\\x16\\x1d\\x01\\x14\\x06#!>\\x01?\\x01\\x03\\x11\\x14\\x06\\\"&5\\x1146;\\x012\\x16\\x02264&\\\"\\x06\\x1475#\\x1575#\\x15\\x01\\xb3\\t\\t\\xd3K\\x01\\t\\x1a\\t\\x88\\r\\x13\\x13\\r\\xfe\\xd4\\x01\\x05\\x01\\xba\\xb58P8\\x13\\r\\x80\\r\\x13j\\x14\\x0e\\x0e\\x14\\x0e8@@@\\x01\\x18\\t\\x1b\\t\\xd3\\x01\\x0fL\\t\\t\\xf3\\x13\\r\\x80\\r\\x13\\x01\\x03\\x01\\xbb\\x01 \\xfe\\x80(88(\\x01\\x80\\r\\x13\\x13\\xfe[\\x0e\\x14\\x0e\\x0e\\x14\\xaa@@\\x80@@\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01h\\x00\\x1f\\x00T\\x00\\\\\\x00\\x007&'76?\\x016\\x1f\\x01\\x1e\\x01\\x0e\\x01/\\x01&\\x0f\\x01\\x17\\x06\\a\\x06\\\"'&+\\x01\\\"\\a\\x06\\\"\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"'\\x06\\\"'\\x06\\\"'\\x06+\\x01\\\"&=\\x0146;\\x01276;\\x012\\x17\\x16276;\\x012\\x17\\x16276;\\x012\\x17\\x163$\\\"&462\\x16\\x14\\xbe\\a\\tD\\v\\x10P(1d\\x13\\x16\\b\\\"\\x13d\\a\\x06\\x12q\\x1b\\x17\\n0\\n\\x19\\x1d\\x10\\x1d\\x19\\n0\\x01\\xa8\\a\\t\\t\\a\\x10:&&t&&t&&:\\x10\\a\\t\\t\\a\\x10%\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13%\\xfe1B//B/\\x89\\a\\x05b\\x10\\v9\\x1d\\n\\x16\\x04\\\"&\\x16\\x04\\x16\\x01\\x04\\rP\\x02\\x15\\t\\t\\x17\\x17\\t \\t\\a \\a\\t      \\t\\a \\a\\t\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12`/B//B\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x004\\x00j\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"'\\x06\\\"'\\x06\\\"'\\x06+\\x01\\\"&=\\x0146;\\x01276;\\x012\\x17\\x16276;\\x012\\x17\\x16276;\\x012\\x17\\x163%\\\"'&'5462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\\"\\x06\\x1d\\x0135462\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\\"\\x06\\x1d\\x01\\x06\\a\\x06#5#\\x02p\\a\\t\\t\\a\\x10:&&t&&t&&:\\x10\\a\\t\\t\\a\\x10%\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13J\\x13\\x0f\\x11\\x10\\x11\\x0f\\x13%\\xfe\\x80\\x18\\n\\x0e\\x108P8\\t\\a \\a\\t\\x13\\x1a\\x13\\xc08P8\\t\\a \\a\\t\\x13\\x1a\\x13\\x10\\x0e\\n\\x18\\xc0 \\t\\a \\a\\t      \\t\\a \\a\\t\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12\\x12\\x0e\\x0e\\x12 \\t\\r\\x06\\xe4(88(\\x10\\a\\t\\t\\a\\x10\\r\\x13\\x13\\r``(88(\\x10\\a\\t\\t\\a\\x10\\r\\x13\\x13\\r\\xe5\\x05\\r\\t`\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00\\x18\\x00 \\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x1f\\x016762\\x17\\x1e\\x03\\x15\\x14\\a%47\\x05\\x06#\\\"&\\x02z\\f\\t\\x14\\n\\f\\xfd\\xb3\\f\\t\\x14\\n\\f\\xbb(\\x13\\a-\\x06\\x106,!\\x01\\xfe\\xa1\\x13\\x01\\x112BIg\\n\\n\\r\\x19\\f\\t\\x01\\xc7\\n\\r\\x19\\f\\t\\x91>@\\x16\\x164_6I&\\x06\\v\\x11(&\\xd3-h\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x16\\x00#\\x002\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05\\x06\\x14\\x1f\\x01\\x166/\\x01764.\\x01\\x0f\\x01\\x17\\a\\x06\\x16?\\x0164/\\x01&\\x06\\x16\\\"\\x06\\a\\x06\\x1e\\x01762\\x17\\x166'&\\x91Α\\x91Α\\x01\\x1a\\x06\\x06P\\b\\x0e\\a!!\\x03\\x06\\b\\x04\\xf3!!\\a\\x0e\\bP\\x06\\x06P\\b\\x0e\\xb1RM\\x05\\x01\\x05\\t\\x04)\\x82)\\a\\v\\x01\\x05\\x01\\xb8\\x91Α\\x91\\xce-\\x03\\x0e\\x030\\x05\\x0f\\b((\\x04\\t\\x06\\x02\\x03\\x12((\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\x80>-\\x06\\v\\x05\\x02\\x11\\x11\\x03\\r\\n-\\x00\\x00\\x00\\x01\\xff\\xf5\\xff\\xc0\\x01\\xcb\\x01\\xc9\\x003\\x00\\x00\\x01\\x16\\a\\x06\\a\\x06\\x0f\\x01\\x0e\\x01#\\\".\\x01/\\x01.\\x01\\\"\\x06\\x0f\\x01\\x0e\\x01\\\"&/\\x01&'&'&7>\\x0176\\x1f\\x01\\x16676/\\x01676\\x17\\x1e\\x01\\x01\\xbc\\x0f%\\x1e\\x06\\b\\r\\b\\x02\\x11\\n\\a\\f\\t\\x02\\\"\\x04\\x16\\x1c\\x16\\x04\\\"\\x03\\x10\\x15\\x11\\x02\\b\\r\\b\\x06\\x1e%\\x0f\\b2\\\" #d\\x06\\r\\x03\\t\\r\\x1d\\n\\x010)\\\"2\\x01`>1(CS9\\\"\\v\\r\\x06\\n\\a\\x8b\\r\\x12\\x12\\r\\x8b\\n\\r\\r\\v\\\"9SC(2=\\\"3\\b\\t\\x13@\\x04\\x03\\x05\\x0e\\b\\x13\\x04\\x01#\\v\\b3\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x82\\x01\\xc4\\x00\\t\\x00\\x12\\x00\\x1d\\x001\\x00\\x00\\x13.\\x017>\\x01\\x17\\x0e\\x01\\a\\x17>\\x0132\\x17\\x1e\\x01\\a7\\x1e\\x01\\a\\x14\\x06/\\x016'&\\x132\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x017\\x17\\as\\a\\x05\\x05-\\x84G'I\\x1b\\x1f!`+\\r\\n.\\x18\\x1b#:?\\x02\\x0e\\bf\\x1b\\b\\x04\\x1d\\a\\t\\t\\a\\xfd\\xe0\\a\\t\\t\\a\\xedI<A\\x017\\x03\\x10\\x068;\\x03\\x17Z=\\vL_\\x04\\x11\\x92[\\xd4,\\x82H\\b\\t\\x03%]J\\x1e\\xfe\\x96\\t\\a \\a\\t\\t\\a \\a\\t\\xc8\\x16\\xb2\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00/\\x003\\x007\\x00;\\x00?\\x00W\\x00\\x00\\x01\\x14\\x06#\\x152\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5#\\x14\\x06+\\x01\\\"&=\\x014635\\\"&=\\x0146;\\x012\\x16\\x15346;\\x012\\x16\\x15\\a\\x1535!\\x1535\\x115#\\x15!5#\\x15=\\x01#\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x0135463\\x02\\x00\\x13\\r\\r\\x13\\x13\\r`\\r\\x13\\xc0\\x13\\r`\\r\\x13\\x13\\r\\r\\x13\\x13\\r`\\r\\x13\\xc0\\x13\\r`\\r\\x13` \\xfe\\x80  \\x01\\x80  \\r\\x13\\xc0\\x13\\r  \\r\\x13\\xc0\\x13\\r\\x01@\\r\\x13\\xc0\\x13\\r`\\r\\x13\\x13\\r\\r\\x13\\x13\\r`\\r\\x13\\xc0\\x13\\r`\\r\\x13\\x13\\r\\r\\x13\\x13\\r     \\xfe\\x80    `\\xc0\\x13\\r  \\r\\x13\\xc0\\x13\\r  \\r\\x13\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x02\\x05\\x01\\xc0\\x00\\x1c\\x00$\\x00\\x00%\\x16\\x06#!\\\"&7\\x13>\\x01;\\x01&54632\\x1e\\x01\\x15\\x14\\a32\\x1e\\x01\\x17&264&\\\"\\x06\\x14\\x01\\xfe\\a\\x1d\\x18\\xfe`\\x18\\x1d\\aI\\x03\\x11\\v<\\x068(\\x1a,\\x1a\\x06<\\b\\f\\t\\x02\\xc2\\x1a\\x13\\x13\\x1a\\x13\\x02\\x19))\\x19\\x01$\\f\\x0e\\x10\\x10(8\\x1a,\\x1a\\x0f\\x11\\x06\\f\\b\\x1a\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xc0\\x01%\\x01\\xc0\\x00\\x1e\\x00\\\"\\x00\\x00\\x172\\x16\\x15\\x14+\\x01\\\"546;\\x015.\\x01?\\x014>\\x01;\\x012\\x16\\x15\\x17\\x16\\x06\\a\\x15\\x03\\a3'\\xd8\\x11\\x17\\b\\xd0\\b\\x17\\x11(4@\\x05\\x10\\x04\\a\\x04\\xe0\\x06\\t\\x10\\x05@4r\\a\\xb2\\a\\x10\\x17\\x11\\b\\b\\x11\\x17u\\fW7\\xb2\\x05\\x06\\x04\\b\\a\\xb27W\\fu\\x01\\xa0PP\\x00\\x03\\xff\\xfc\\xff\\xc0\\x01\\x84\\x01\\xc0\\x00/\\x007\\x00;\\x00\\x00%\\x16\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&?\\x01#\\\"&?\\x01&5462\\x16\\x15\\x14\\a\\x17\\x16\\x06+\\x01&\\\"\\x06\\x14\\x16264\\x13#\\x153\\x01{\\t\\f\\x0e\\x8ap\\a\\t\\t\\a\\xfe\\xe0\\a\\t\\t\\ap\\x8a\\x0e\\f\\t^1\\v\\n\\ar\\x06\\x1c(\\x1c\\x06r\\a\\n\\v1V\\x0e\\t\\t\\x0e\\t`\\xe0\\xe0\\u007f\\n\\x15 \\t\\a`\\a\\t\\t\\a`\\a\\t \\x15\\na\\x13\\t~\\v\\v\\x14\\x1c\\x1c\\x14\\v\\v~\\t\\x13\\xc0\\t\\x0e\\t\\t\\x0e\\xfey \\x00\\x00\\x00\\x02\\xff\\xfc\\xff\\xbf\\x01\\xc4\\x01\\xc0\\x00\\\"\\x005\\x00\\x00\\x01\\x16\\x17\\x16\\x17\\x16\\a\\x06\\a\\x06#\\\"'&\\\"\\a\\x06#\\\"'&'&767676\\x17\\x16\\x17676'\\x06\\a\\x06#'&7676763\\x1f\\x01\\x14\\a\\x06\\x01_'\\x19\\x16\\b\\a\\b\\f$+A\\x10\\x13\\r \\r\\x13\\x10A+$\\f\\b\\a\\b\\x16\\x19'\\x18*$\\x19\\x19$*\\x1f\\x0e\\x17\\x10\\x13\\x0f\\x02\\x02\\x04\\x13\\x0e\\x17\\x10\\x13\\x0f\\x01\\x05\\x06\\x01?\\a#\\x1f/++G0:\\n\\b\\b\\n:0G++/\\x1f#\\a\\x04\\v\\n\\x0e\\x0e\\n\\v%\\r\\x06\\x05\\x01\\x0e\\x12$\\x13\\r\\x06\\x05\\x01\\x0f\\x13\\x10\\x17\\x00\\t\\xff\\xec\\xff\\xc0\\x01\\xd4\\x01\\xc0\\x00\\n\\x00#\\x00+\\x006\\x00=\\x00D\\x00L\\x00T\\x00_\\x00\\x0072\\x1e\\x01\\x15\\x14\\x06\\\"&467\\x16\\a\\x16\\a\\x06'\\x06\\\"'\\x06\\\".\\x01'&7&76\\x1762\\x176\\x01\\x167&'&'\\x06767\\\"&#\\\"\\a\\x06\\x17>\\x01\\\"\\a\\x16\\x1767\\x0227&'\\x06\\a6264&\\\"\\x06\\x14\\x176'\\x06\\a\\x06\\a\\x16'6'&#\\\"\\x06#\\x16\\x17\\x16\\xe0\\t\\x0e\\t\\x13\\x1a\\x13\\x13\\xe3\\x1e77\\x1e\\x1dW$|$\\v\\x15(\\\"\\n\\x1e77\\x1e\\x1dW$|$W\\xfe\\xa6\\a%\\x05\\x02\\v\\v\\x16,\\x03\\x04\\x01\\x04\\x01\\x1f\\a\\a\\x16\\v\\x97 \\x12\\x11\\x11\\x11\\x112 \\x12\\x11\\x11\\x11\\x11\\x01B//B/\\xf1\\a\\x16\\v\\v\\x02\\x05%\\b\\x16\\a\\a\\x1f\\x01\\x04\\x01\\x04\\x03\\v\\xe0\\t\\x0e\\t\\r\\x13\\x13\\x1a\\x13`5KK54\\nVV\\x01\\x04\\x15\\x125KK54\\nVV\\n\\xfe\\xec\\f\\x01\\x16\\x12\\t\\n#\\x96\\x14\\x14\\x01\\f\\r#\\n\\x86%\\x06\\a\\a\\x06\\xfe\\xa5%\\x06\\a\\a\\x06K/B//B?\\r#\\n\\t\\x13\\x15\\x01\\x9c#\\r\\f\\x01\\x14\\x14\\t\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00 \\x02\\x80\\x01`\\x00O\\x00\\x00%\\x06\\x14\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06#\\\"&'4.\\x04#!\\\"\\x0e\\x06\\a\\x0e\\x01#\\\"&=\\x0146764'.\\x01=\\x014632\\x1e\\x01\\x17\\x14\\x1e\\x043!2>\\x055>\\x0132\\x16\\x1d\\x01\\x14\\x06\\x02W\\a\\a\\x13\\x16,\\x1e\\x18'\\b\\x06\\x02\\x06\\a\\n\\a\\xfe\\xee\\x05\\b\\x06\\x05\\x04\\x04\\x01\\x04\\x01\\b'\\x18\\x1e,\\x16\\x13\\a\\a\\x13\\x16,\\x1e\\x10\\x1d\\x15\\x05\\x06\\x02\\x06\\a\\n\\a\\x01\\x12\\x05\\t\\a\\x05\\x05\\x01\\x06\\b'\\x18\\x1e,\\x16\\xcb\\x03\\x10\\x03\\n$\\x15\\b\\x1e,\\x1c\\x17\\x01\\x11\\x05\\r\\x04\\x05\\x02\\x03\\a\\x04\\n\\x05\\f\\x02\\x17\\x1c,\\x1e\\b\\x15$\\n\\x03\\x10\\x03\\n$\\x15\\b\\x1e,\\r\\x17\\x0f\\x01\\x11\\x05\\r\\x04\\x05\\x02\\x06\\x04\\f\\x04\\x10\\x01\\x17\\x1c,\\x1e\\b\\x15$\\x00\\x00\\x03\\x00\\x00\\xff\\xbe\\x02\\x01\\x01\\xc0\\x00\\a\\x00\\x18\\x00+\\x00\\x00\\x00\\x14\\x06\\\"&462\\a\\x16\\x1d\\x01\\x14\\x06'&'.\\x01=\\x0146\\x17\\x16%2\\x1e\\x01\\x1d\\x01\\x14\\x06\\a\\x06\\a\\x06.\\x01=\\x01476\\x01`8P88P>\\x06\\r\\aF|\\v\\x0f\\x12\\f\\x88\\x01<\\b\\x0e\\b\\x0f\\v|E\\x05\\n\\x06\\x06D\\x01\\x88P88P8\\xf1\\x04\\b\\xf6\\a\\b\\x04#\\x06\\x01\\x0f\\v\\xdf\\f\\x10\\x01\\b\\b\\a\\f\\b\\xdf\\v\\x0f\\x01\\a\\\"\\x03\\x02\\b\\x04\\xf6\\b\\x04)\\x00\\x02\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00%\\x00K\\x00\\x00\\x132\\x16\\x15\\x11\\x14\\x06#\\\"&'\\x06#\\\"&547.\\x01547&5467&5463021>\\x01\\x01\\x14\\x06\\a\\x16\\x15\\x14\\x06#\\\"'\\x0e\\x01#\\\"&5\\x114632\\x16\\x170212\\x16\\x15\\x14\\a\\x1e\\x01\\x15\\x14\\a\\x16\\xd0\\x1a&*\\x1e\\x17&\\a\\a\\x05\\x1e*\\x01\\x16\\x1b(\\b\\x1b\\x17\\x02&\\x1a\\x02\\x06\\\"\\x01\\x86\\x1b\\x16\\x01*\\x1e\\x05\\a\\a&\\x17\\x1e*&\\x1a\\x16\\\"\\x06\\x02\\x1a&\\x02\\x17\\x1b\\b(\\x01\\xc0&\\x1a\\xfe\\x88\\x1e*\\x1b\\x16\\x01*\\x1e\\a\\a\\t(\\x19.\\x17\\x11\\x12\\x19(\\t\\a\\a\\x1a&\\x15\\x1b\\xfe\\xd0\\x19(\\t\\a\\a\\x1e*\\x01\\x16\\x1b*\\x1e\\x01x\\x1b%\\x1b\\x15&\\x1a\\x06\\b\\t(\\x19\\x12\\x11\\x17\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x01\\xe0\\x01\\x80\\x00+\\x005\\x00H\\x00Y\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01&=\\x0146?\\x02>\\x03;\\x012\\x16\\x1f\\x01%\\a!'.\\x01+\\x01\\\"\\x06\\a:\\x02>\\x0354&#\\\"\\x0e\\x02\\x15\\x14\\x16!264&#\\\"\\x0e\\x01\\x15\\x14\\x1e\\x03:\\x01\\x01\\xb7\\x12\\x17\\x10\\x13\\r \\r\\x13\\xff\\x00\\x13\\r \\r\\x13\\x10\\x17\\x12\\f\\x14\\x06\\x15\\x1b \\x11\\x80\\\"9\\f\\x14\\xfe\\xd9\\x14\\x01\\x00\\x14\\x05\\x19\\x0e\\x80\\x0e\\x199\\x02\\r\\x06\\v\\x06\\a\\x03\\\"\\x0e\\a\\f\\b\\x05\\x12\\x01N\\x0e\\x12\\x12\\x0e\\t\\x17\\x10\\x03\\a\\x06\\v\\x06\\r\\xec\\a!\\x140\\x18\\x126\\r\\x13\\x13\\r  \\r\\x13\\x13\\r6\\x12\\x180\\x14!\\a\\x1c2\\x0f\\x1b\\x12\\n& 2\\x1a22\\r\\x11\\x11\\xaf\\x01\\x02\\x03\\x06\\x04\\x0f!\\x05\\b\\f\\a\\x0e\\x12\\x12\\x1c\\x12\\x10\\x17\\t\\x04\\x06\\x03\\x02\\x01\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00#\\x00/\\x00K\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012%54+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x01\\xe0\\r\\x13\\x13\\r\\xfe@\\r\\x13\\x13\\r \\t\\a`\\a\\t\\x80\\t\\a`\\a\\t\\xff\\x00\\bp\\b\\bp\\b\\x01\\x00\\b(\\b\\x10\\b(\\b\\b(\\b\\x10\\b(\\b\\x01@\\x13\\r\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\r\\x130\\a\\t\\t\\a00\\a\\t\\t\\a0\\x88\\x10\\b\\b\\x10\\b\\b\\x10\\b(\\b\\b(\\b\\x10\\b(\\b\\b(\\x00\\x05\\xff\\xfe\\xff\\xbb\\x02\\x84\\x01\\xc2\\x00*\\x00f\\x00z\\x00\\x88\\x00\\x9a\\x00\\x007\\a\\x06\\x17\\a\\x06&?\\x016/\\x01.\\x01?\\x016/\\x01&6\\x1f\\x01\\x16?\\x01>\\x01\\x1f\\x01\\x16?\\x016\\x16\\x0f\\x01\\x06\\x0f\\x02\\x0e\\x01\\x05\\a\\x06\\a\\x06\\x0f\\x01\\x06\\a\\x06/\\x01.\\x01?\\x01'\\a\\x0e\\x01/\\x01&'&?\\x01&'&?\\x01676?\\x02676767676\\x1f\\x01\\x16\\x17\\x16\\x17\\x16\\x1f\\x02\\x16\\x17\\x16%&\\x0e\\x02\\a\\x06\\x1e\\x01\\x17\\x1e\\x03>\\x0276&\\x05'&'&/\\x01&#\\\"\\x06\\x0f\\x01\\x17\\x16&\\x06\\a\\x16\\x06\\x1e\\x04\\x17\\x16>\\x0276\\x8f\\f\\x05\\x02#\\x05\\v\\x02\\x0f\\x02\\nN\\x06\\x03\\x05A\\t\\a2\\x04\\a\\x06M\\n\\x01\\a\\x01\\f\\x04+\\x06\\a=\\x05\\v\\x02\\v\\x05\\x03 \\v\\x18%\\x01\\xe8\\r\\x04\\r\\x04\\x05\\x0e\\x02\\x04\\r\\x14\\x1f\\r\\r\\x03\\t\\xf8\\b\\x03\\x17\\r\\x1f\\x15\\x02\\x01\\x01\\x0e\\x02\\x02\\x05\\x05\\f\\b\\x1d\\t\\n\\x12 \\x05\\x06\\f\\x0f\\a\\b\\x0f\\x11\\x11\\x10{\\x11\\x0e\\x15\\x0e\\r\\x03\\a\\x03\\x10\\a\\a\\xfe}\\a\\r\\n\\b\\x02\\x02\\x04\\f\\t\\x02\\f\\a\\n\\a\\a\\x05\\x01\\x03\\x18\\x01\\x15\\x06\\x01\\x03\\t\\x16{\\x06\\a\\t\\x17\\x06 \\xacl\\x1c)\\x04\\x01\\x02\\b\\x03\\f\\x05\\r\\x02\\a\\r\\n\\b\\x01\\x04\\xe3.\\x10\\x13\\x1d\\x04\\a\\x06M\\n\\x01\\a\\x01\\f\\x04+\\x06\\a=\\x05\\v\\x02\\x0f\\x02\\nN\\x06\\x03\\x05A\\t\\a2\\x04\\a\\x068\\a\\x03+\\x0e\\a$\\x9d/\\x11\\f\\x04\\x034\\a\\x05\\x10\\x05\\b\\x04\\x17\\r\\x1eC\\x1f\\r\\r\\x03\\b\\x06\\x15\\x06\\a4\\x05\\x05\\x12\\x11.\\x1e\\f\\x04\\x01\\x18+\\a\\x06\\f\\a\\x04\\x03\\x05\\x01\\x01\\x05!\\x04\\t\\x0e\\x15\\x15\\x1a5\\x1e\\f\\x12\\x13d\\x02\\x02\\x06\\n\\a\\t\\x10\\v\\x03\\x01\\x03\\x02\\x02\\x01\\x01\\x05\\x04\\x0e)\\x196\\a\\a\\x15\\x05!\\x02\\v\\b+.O\\b\\x18\\x0e\\x04\\x06\\x06\\x03\\x04\\x01\\x03\\x01\\x02\\x02\\x06\\n\\a\\x0e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00$\\x00,\\x000\\x004\\x00<\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x14\\x06\\\"&5#\\x14\\x06\\\"&5#\\\"&=\\x0146?\\x01>\\x01;\\x012\\x16\\x1f\\x01\\x04264&\\\"\\x06\\x1475#\\a;\\x01'#\\x12264&\\\"\\x06\\x14\\x02 (8\\t\\a08P8\\x808P80\\a\\t\\x1b\\x150\\a!\\x13\\xd6\\r\\x1d\\bm\\xfe|(\\x1c\\x1c(\\x1cxM&\\xa3\\xa6MY\\xb4(\\x1c\\x1c(\\x1c\\x01\\x008(P\\a\\t(88((88(\\t\\ap\\x16\\\"\\x06z\\x12\\x16\\x0e\\n\\x88\\xf0\\x1c(\\x1c\\x1c(\\xd4```\\xfe\\xb0\\x1c(\\x1c\\x1c(\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x0f\\x00Q\\x00h\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x0132\\x16\\x1d\\x01\\x14\\x06\\a\\x15\\x14\\x06'.\\x01=\\x014&+\\x01\\x15!\\x1146;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x14\\x167>\\x01=\\x01.\\x01=\\x0146;\\x015462\\x16\\x1d\\x0135462\\x16\\x15\\x056&+\\x0176&+\\x01\\\"\\x0f\\x01\\x06\\x16;\\x01\\a\\x06\\x16327\\x01P\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x02\\x10\\x10\\a\\t\\x1f\\x192\\\"\\x1d'\\x17\\x11\\b\\xfe\\xe0%\\x1b\\xa0\\x1b%\\b$4\\x14\\r\\n\\r\\x19\\x1f\\t\\a\\x10\\t\\x0e\\t \\t\\x0e\\t\\xfe\\xe4\\x04\\a\\a:\\f\\x01\\a\\x06D\\v\\x01\\x10\\x01\\b\\x05;\\x17\\x01\\a\\x06\\a\\x03\\t\\a \\a\\t\\t\\a \\a\\t\\x01@\\t\\a \\x1a*\\bx!.\\x03\\x03.\\x1e\\x19\\x11\\x17p\\x01`\\x1b%%\\x1b\\xc04$\\x1c\\r\\x11\\x02\\x02\\x11\\vv\\b*\\x1a \\a\\t0\\a\\t\\t\\a00\\a\\t\\t\\a`\\x05\\v3\\x05\\b\\tk\\x05\\aS\\x05\\b\\x05\\x00\\x02\\x00\\x00\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00'\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x016/\\x01&\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x013\\x15\\x14\\x167\\x01\\xf7\\t\\t\\xe0\\n\\x1a\\n\\xe0\\t\\t\\xe0\\n\\x1a\\n{\\x06\\x06U\\x03\\np\\r\\x13\\b \\b`\\n\\x03\\xd7\\n\\x1a\\n\\xe0\\t\\t\\xe0\\n\\x1a\\n\\xe0\\t\\t\\xed\\x06\\x06N\\x03\\x04\\x056\\x13\\rP\\b\\b@6\\x05\\x04\\x03\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00'\\x008\\x00@\\x00H\\x00P\\x00X\\x00`\\x00\\x00%2\\x16\\x14\\x06#\\\"'#\\x06#\\\"&5475&54632\\x173632\\x16\\x14\\x06#0#\\a\\x16\\x14\\a\\x172\\x05\\x16\\x173'\\\"1\\\"&46;\\x017#\\x06\\a\\x16\\x14\\x16264&\\\"64&\\\"\\x06\\x14\\x162$\\\"\\x06\\x14\\x16264\\x02\\x14\\x16264&\\\"\\x04264&\\\"\\x06\\x14\\x01\\x80\\x1b%%\\x1b%\\x12\\xd2\\x12%\\x1b%  %\\x1b%\\x12\\xd2\\x12%\\x1b%%\\x1b\\x01'\\b\\b'\\x01\\xfe\\xe0\\x0f\\b\\xd0&\\x01\\x1b%%\\x1b\\x01&\\xd0\\b\\x0f\\xb0\\t\\x0e\\t\\t\\x0ew\\t\\x0e\\t\\t\\x0e\\xfe\\xc0\\x0e\\t\\t\\x0e\\t \\t\\x0e\\t\\t\\x0e\\x01@\\x0e\\t\\t\\x0e\\t`%6%  %\\x1b%\\x12\\xd2\\x12%\\x1b%  %6%A\\x0f \\x0fA\\t\\b\\x0f@%6%@\\x0f\\bb\\x0e\\t\\t\\x0e\\t\\x89\\x0e\\t\\t\\x0e\\t \\t\\x0e\\t\\t\\x0e\\xfe\\xc0\\x0e\\t\\t\\x0e\\t \\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x007\\x00A\\x00E\\x00\\x00%'&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x17\\x16\\x0f\\x01\\x067&?\\x01'&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06'\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x14\\x16;\\x01267\\x13\\x11!\\x11463!2\\x16\\x03\\x11!\\x11\\x00\\xff:\\f\\f:\\v\\f\\v\\v\\v$$\\v\\v\\v\\fU\\v\\v$$\\v\\v\\v\\f\\v:\\f\\f:\\v\\f\\x01\\x06\\a\\t&\\x1a\\xfe\\x00\\x1a&\\t\\a\\xef\\x14\\r=\\x0e\\x12\\x01\\xc2\\xfe\\x00\\x1c\\x14\\x01\\xa0\\x14\\x1c@\\xfe\\x80\\xba;\\v\\v;\\v\\v\\f\\v\\v$$\\v\\v\\f\\v\\x17\\v\\v$$\\v\\v\\f\\v\\v;\\v\\v;\\v\\v\\x9a\\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\v\\x15\\x11\\x0f\\x01p\\xfe\\xb0\\x01P\\x14\\x1c\\x1c\\xfe\\xdc\\x01\\x00\\xff\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xbd\\x02\\x01\\x01\\xc1\\x00\\x0e\\x00\\x1f\\x000\\x00\\x00\\x13&4?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06'%\\x16\\x14\\x0f\\x01\\x06/\\x01&4?\\x01\\x17\\x162?\\x01\\x17\\x16\\x14\\x0f\\x01\\x06/\\x01&4?\\x01\\x17\\x162?\\x01\\f\\f\\f\\xe9\\x05\\f\\x05\\xe9\\f\\f\\xe9\\v\\v\\x00\\xff\\f\\f\\xe9\\v\\v\\xe9\\f\\f;\\xa1\\f\\x18\\f\\xa2:\\f\\f\\xe9\\v\\v\\xe9\\f\\f:\\xa2\\f\\x18\\f\\xa2\\x01,\\x06\\x1c\\x06j\\x02\\x02j\\x06\\x1c\\x06j\\x05\\x05\\x12\\x06\\x1d\\x05j\\x05\\x05j\\x05\\x1d\\x06\\x1aI\\x05\\x05I\\x9a\\x06\\x1c\\x06j\\x05\\x05j\\x06\\x1c\\x06\\x1aI\\x05\\x05I\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00!\\x00;\\x00G\\x00\\x007\\\"&=\\x01463546;\\x012\\x16\\x1d\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\x052\\x16\\x15\\x14\\x06#!\\\"&5463!264&#52\\x16\\x15\\x14\\a%\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\xa0\\r\\x13\\x13\\r\\t\\a@\\a\\t\\r\\x13\\x13\\r\\f\\t\\a(\\a\\t\\x01$\\x14\\x1c\\t\\a\\xfe \\a\\t\\x1c\\x14\\x01\\x105KK5Oq1\\xfe\\x99\\b\\b\\xd0\\b\\b\\x80\\x13\\r\\xe0\\r\\x13\\x10\\a\\t\\t\\a\\x10\\x13\\r\\xe0\\r\\x13\\x10\\a\\t\\t\\a\\x10\\x80\\x1c\\x14\\a\\t\\t\\a\\x14\\x1cKjK@qOI7 \\b\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01`\\x002\\x006\\x00A\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06#!\\\"&=\\x01'.\\x01=\\x014>\\x0132\\x1f\\x0135#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x1f\\x01\\x055'\\x15\\x0546?\\x01\\x16\\x15\\x14\\x06\\\"&\\x02v\\x04\\x06\\x02\\xd5\\t\\r\\xfe\\xed\\r\\x13F\\v\\x0f\\t\\x0e\\t\\x03\\x03\\x8a88\\a\\t\\t\\a\\xa0\\a\\t\\t\\a89\\x0f\\x0e2\\xfe\\xc00\\x01\\xf5\\x16\\n\\v+\\x19$\\x19\\x01 \\x01\\x05\\x04\\x12\\x03\\x03\\xd6\\n\\x13\\r/\\f\\x02\\x12\\f_\\b\\x0f\\t\\x01\\x190\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t0\\a\\x19A?\\b>]\\n+\\x10\\x10>\\x17\\x12\\x19\\x19\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x000\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467&546;\\x01&546;\\x012654'632\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\x01\\xc3\\x1a#*\\x1e\\xfe\\x90\\x1e*#\\x1a\\x1d*\\x1e\\x0e\\x16%\\x1b\\x10!/\\x0f\\n\\x05(8\\x06\\x06\\x1b%\\x16\\x0e\\x1e*O\\x04(\\x1b\\x1e**\\x1e\\x1b(\\x04\\x16#\\x1e*\\x13\\x1d\\x1b%/!\\x19\\x15\\x028(\\x0f\\x11%\\x1b\\x1d\\x13*\\x1e#\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x06\\x01\\xc1\\x00\\a\\x00\\x17\\x00'\\x00\\x0062\\x16\\x14\\x06\\\"&4%\\x16\\x06+\\x01\\\".\\x02?\\x01>\\x012\\x16\\x17\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463KjKKjK\\x01\\xfb\\v\\x16\\x15\\xd6\\n\\x12\\b\\x02\\x06k\\x04\\x13\\x12\\x13\\x04P\\r\\x13\\x13\\r\\xa0\\r\\x13\\x13\\r\\xc0KjKKj\\x82\\x12%\\n\\x10\\x14\\t\\xb7\\a\\v\\v\\a\\xfe\\xf2\\x13\\r\\xa0\\r\\x13\\x13\\r\\xa0\\r\\x13\\x00\\x01\\xff\\xfe\\xff\\xc0\\x01\\xe2\\x01\\xc0\\x007\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x1f\\x01546;\\x012\\x1e\\x02\\x1d\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xd8\\x06\\x03\\x03 \\x03\\r\\x06\\x88\\t\\a@\\a\\t\\x88\\x06\\r\\x03 \\x03\\x03\\x06\\x88\\x88\\x06\\x03\\x03 \\x03\\r\\x06\\x88\\t\\a@\\x03\\x06\\x04\\x03\\x88\\x06\\r\\x03 \\x03\\x03\\x06\\x88r\\x04\\r\\x058\\x05\\x04\\x03O\\x9d\\a\\t\\t\\a\\x9dO\\x03\\x04\\x058\\x05\\r\\x04NN\\x04\\r\\x058\\x05\\x04\\x03O\\x9d\\a\\t\\x03\\x04\\x06\\x03\\x9dO\\x03\\x04\\x058\\x05\\r\\x04N\\x00\\t\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1d\\x00+\\x009\\x00G\\x00U\\x00c\\x00q\\x00\\u007f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x02 (88(\\xfe@(88(@\\t\\a@\\a\\t\\x1c(\\x1c\\x1c(\\x1c\\t\\a@\\a\\t\\x90\\t\\aP\\a\\t!.!!.!\\t\\aP\\a\\t\\x90\\t\\aP\\a\\t!.!!.!\\t\\aP\\a\\t\\x80\\t\\a@\\a\\t\\x1c(\\x1c\\x1c(\\x1c\\t\\a@\\a\\t\\x01\\xc08(\\xfe\\xc0(88(\\x01@(8\\xfe\\x90@\\a\\t\\t\\a@\\x14\\x1c\\x1c\\x94@\\x14\\x1c\\x1c\\x14@\\a\\t\\tq8\\a\\t\\t\\a8\\x17!!\\x8fX\\x17!!\\x17X\\a\\t\\tq8\\a\\t\\t\\a8\\x17!!\\x8fX\\x17!!\\x17X\\a\\t\\ty@\\a\\t\\t\\a@\\x14\\x1c\\x1c\\x94@\\x14\\x1c\\x1c\\x14@\\a\\t\\t\\x00\\x00\\x00\\x00\\n\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1d\\x00+\\x009\\x00G\\x00W\\x00e\\x00s\\x00\\x81\\x00\\x8f\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x152\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x1626\\x02 (8%\\x1b\\xfe\\x00\\x1b%8(@\\x1c(\\x1c\\t\\a@\\a\\t\\x90!.!\\t\\aP\\a\\t\\x90!.!\\t\\aP\\a\\t\\x80\\x1c(\\x1c\\t\\a@\\a\\t\\x1b%8(\\xfe@(8%\\x1b`\\t\\a@\\a\\t\\x1c(\\x1c\\x90\\t\\aP\\a\\t!.!\\x90\\t\\aP\\a\\t!.!\\x80\\t\\a@\\a\\t\\x1c(\\x1c\\x01\\xc08(@\\x1b%%\\x1b@(8\\xb0 \\x14\\x1c\\x1c\\x14 \\a\\t\\t\\a8\\x17!!\\x178\\a\\t\\t\\a8\\x17!!\\x178\\a\\t\\t\\a \\x14\\x1c\\x1c\\x14 \\a\\t\\t\\x89%\\x1b (88( \\x1b%P \\a\\t\\t\\a \\x14\\x1c\\x1c\\x1c\\x18\\a\\t\\t\\a\\x18\\x17!!\\x17\\x18\\a\\t\\t\\a\\x18\\x17!!\\x0f \\a\\t\\t\\a \\x14\\x1c\\x1c\\x00\\x00\\x00\\x00\\a\\xff\\xfd\\xff\\xbb\\x02\\x82\\x01\\xc0\\x00\\x06\\x00(\\x006\\x00H\\x00T\\x00\\\\\\x00j\\x00\\x007\\a\\x06\\a&>\\x01\\a\\x1e\\x01\\x17\\x16\\x17\\x06#\\\".\\x01/\\x01&67632\\x17\\x16\\x17\\x06\\a\\x06\\a*\\x01#\\\"\\a0\\x14\\x15\\x17\\x16\\x0e\\x01\\a\\x06&'&5\\x1667\\x16%\\x1e\\x02\\x0f\\x01\\x0e\\x02.\\x02?\\x01>\\x0176\\a\\x06\\x156\\x16\\x17676.\\x01\\x06\\x1e\\x0167\\x06&'\\x067676.\\x01'&\\x06\\a\\x06\\x176\\x16\\xcf\\b \\x12\\x01\\x0e\\x1b]\\x04F&\\r\\x1a\\a\\x03#YJ\\x06 \\x04\\x12\\x12gu$$\\x1a\\x10 \\x19\\x1e\\x16\\x01\\x03\\x01dY\\x81\\x02\\a\\x10\\v\\x10\\x1c\\x02\\x01\\x12,\\r\\x03\\x01\\x9f\\f\\x10\\x06\\x02 \\aSaAO6\\a \\x04\\x1d\\x15\\x9b\\x88\\x01\\x12,\\r\\x03\\x01\\x03\\x13 \\x1c\\x1bSF\\n.\\x83\\\"\\x03\\xde\\x03\\x01\\x02\\a\\x10\\v\\x10\\x1c\\x02\\x01\\x01\\x11,\\xcb+\\v\\x14\\x10\\x1e\\x17-\\x182\\v# \\x01$D&\\xb3\\x15'\\n9\\x06\\x04\\x17\\x01\\x04\\x05\\x151\\x01\\x01+\\n\\x14\\x0e\\x02\\x03\\x13\\x11\\x05\\a\\t\\a\\x0f\\x06\\x1f\\a\\x15\\x1c\\r\\xb4)H!\\vA`)\\xb3\\x15\\x1e\\x03\\x19\\xad\\x05\\a\\t\\a\\x0f\\x06\\x05\\x11\\x1b\\x06\\x13\\xd0\\x0f,'\\x1c\\x17*(O\\x06\\x05\\v\\x14\\x0e\\x01\\x03\\x13\\x10\\x05\\a\\t\\b\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00.\\x006\\x00>\\x00F\\x00\\x00\\x01\\x14\\x0e\\x03\\a\\x153\\x14\\x0e\\x01\\a\\x0e\\x01\\\"&'.\\x01535.\\x01535.\\x0153546;\\x012\\x16\\x1d\\x013\\x14\\x0e\\x01\\a\\x15\\x06264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x01\\x80\\x06\\f\\x0f\\x14\\v@\\x11\\x1f\\x13\\tF\\\\F\\t\\x1e%@\\x1c$@\\x1c$@\\x13\\r\\xc0\\r\\x13@\\x10\\x1d\\x13\\x94(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x01\\x00\\f\\x18\\x14\\x11\\r\\x04&\\x15%\\x1b\\x06,99,\\t2 &\\n1\\x1f&\\n1\\x1f \\r\\x13\\x13\\r \\x14%\\x1b\\x06&\\xe0\\x1c(\\x1c\\x1c(d\\x1c(\\x1c\\x1c(d\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x001\\x005\\x00\\x87\\x00\\x8f\\x00\\xe0\\x00\\xe8\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01.\\x02#\\\"\\x06\\a#.\\x01\\\"\\x06\\a#\\\"&=\\x0146;\\x01546;\\x01546;\\x012\\x16\\x1f\\x0132\\x16\\x1d\\x01%3'#\\x012\\x1e\\x02\\x1d\\x01\\x14\\x06+\\x01\\x06\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01&'\\a\\x06/\\x01&?\\x01&'#\\\"&=\\x0146;\\x0167'&?\\x016\\x1f\\x0167546;\\x012\\x16\\x1d\\x01\\x16\\x1776\\x1f\\x01\\x16\\x0f\\x01\\x16\\x17\\x06264&\\\"\\x06\\x14'2\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\x06\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01&'\\a\\x06/\\x01&?\\x01&'#\\\"&=\\x0146;\\x0167'&?\\x016\\x1f\\x0167546;\\x012\\x16\\x1d\\x01\\x16\\x1776\\x1f\\x01\\x16\\x0f\\x01\\x16\\x17\\x06264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\x11\\x0e'0\\x1a&C\\x16B\\x16CLC\\x16\\x11\\a\\t\\t\\a\\x10\\t\\a\\xb0\\x13\\rq\\r\\x1d\\bSJ\\r\\x13\\xfe\\xc0\\x843Q\\x010\\x03\\x06\\x04\\x03\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\u007f(\\x1c\\x1c(\\x1c\\xa0\\a\\t\\x04\\b\\x04\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\u007f(\\x1c\\x1c(\\x1c\\xe0\\t\\a \\a\\t\\x14\\x1c\\x10\\\"\\x1e\\x1e\\\"\\\"\\x1e\\t\\a \\a\\tP\\a\\t`\\r\\x13\\x0e\\nh\\x13\\r@`@\\xfe\\xe0\\x03\\x04\\x06\\x03 \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\vP\\x1c(\\x1c\\x1c(4\\t\\a \\x04\\b\\x04\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x04\\x05\\x04\\v\\v\\x17\\v\\v\\x04\\n\\v\\t\\a \\a\\t\\v\\n\\x04\\v\\v\\x17\\v\\v\\x04\\x05\\x04\\x05\\a\\t\\t\\a\\x05\\x03\\x06\\x04\\v\\v\\x17\\v\\v\\x04\\n\\vP\\x1c(\\x1c\\x1c(\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x007\\x00;\\x00C\\x00K\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x16\\x15\\x14\\x06\\\"&547#\\x16\\x15\\x14\\x06\\\"&547#\\\"&=\\x0146;\\x01546;\\x01546;\\x012\\x16\\x1f\\x0132\\x16\\x1d\\x01%\\x153'\\x02264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a2\\x02B\\\\B\\x02D\\x02B\\\\B\\x022\\a\\t\\t\\a\\x10\\x13\\r\\xa0\\x13\\rq\\r\\x1d\\bm0\\r\\x13\\xfe\\xc0\\x9eM\\xd5(\\x1c\\x1c(\\x1c\\x01<(\\x1c\\x1c(\\x1c\\xa0\\t\\a \\a\\t\\v\\x05.BB.\\x05\\v\\v\\x05.BB.\\x05\\v\\t\\a \\a\\t@\\r\\x13\\x80\\r\\x13\\x0e\\n\\x88\\x13\\r@\\xc0``\\xfe\\xc0\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x02\\x00\\n\\x00\\x1a\\x003\\x00K\\x00\\x00?\\x01\\x1762\\x16\\x14\\x06\\\"&472\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1326/\\x01.\\x01+\\x01\\\"\\x0e\\x01\\x0f\\x01\\x06\\x16;\\x012?\\x013\\x17\\x163754&+\\x01\\\"\\x06\\x1d\\x01&#\\\"\\x06\\x14\\x16327\\x16;\\x0126\\x9e\\x12\\x12\\x94\\x14\\x0e\\x0e\\x14\\x0e\\x88\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xcb\\b\\t\\x026\\x02\\x0e\\a\\x1a\\x05\\t\\a\\x026\\x02\\t\\b\\x11\\f\\x03\\bF\\b\\x03\\f\\xbe\\t\\a\\x10\\a\\t\\f\\f\\x1e**\\x1e\\x0f\\r\\x05\\a\\x10\\a\\t\\xb055\\x10\\x0e\\x14\\x0e\\x0e\\x14\\xce\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xe0\\r\\b\\x9b\\a\\t\\x04\\b\\x04\\x9b\\b\\r\\v\\x15\\x15\\v\\x10\\xa0\\a\\t\\t\\a$\\x04*<*\\x06\\x06\\t\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01@\\x01\\xc0\\x00#\\x00/\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01&5462\\x16\\x15\\x14\\a&\\\"\\x06\\x15\\x14\\x16\\x17>\\x0254\\x01(\\n\\x0e\\x0e\\n`\\x0e\\n \\n\\x0e`\\n\\x0e\\x0e\\n-%JlJ%E,\\x1a\\x1e\\x12\\v\\x15\\x10\\xc0\\x0e\\n \\n\\x0e\\x98\\n\\x0e\\x0e\\n\\x98\\x0e\\n \\n\\x0e;5AOOA5;\\xb0\\\"\\x1e\\x189\\x14\\f!(\\x10\\x1e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x00:\\x00B\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x05\\x15\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326=\\x014&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x135!\\\"\\x06\\x14\\x163\\x01\\xc0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xfe\\xd0\\t\\a0\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\a \\a\\t0\\a\\t\\xed\\xfe\\xe3\\r\\x13\\x12\\x0eZ\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1av \\a\\tp\\a\\t\\t\\ap\\t\\a \\a\\t0\\a\\t\\t\\a0\\t\\xfe\\xc9@\\x12\\x1c\\x12\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x17\\x00/\\x003\\x00B\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x1754+\\x0154+\\x01\\\"\\x1d\\x01\\x14;\\x012'\\\"\\a!546;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01&'5#\\x15\\x17\\x06\\x15\\x14\\x17!\\\"&=\\x013\\x15\\x14\\x163\\x01\\xb4xTTxT\\xd0\\n&\\n\\f\\n\\n<\\n@7.\\xfeu\\x1d\\x13P\\x1d\\x13\\xa0\\x13\\x1dP\\x13\\x1d\\t\\xb7\\x80\\x87\\a\\x13\\xfe\\xdd\\x13\\x1d\\xc0\\t\\a\\xe0TxTTxB\\f\\n6\\n\\nL\\n\\xc0 P\\x13\\x1d0\\x13\\x1d\\x1d\\x130\\x1d\\x131\\x01`  \\xe0\\x18\\x18*&\\x1d\\x13\\x900\\a\\t\\x00\\x00\\x00\\x00\\f\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00-\\x009\\x00E\\x00Q\\x00]\\x00i\\x00u\\x00\\x81\\x00\\x8d\\x00\\x99\\x00\\xa5\\x00\\xb1\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x1354+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x02h\\n\\x0e\\x13\\r\\xfd\\xc0\\r\\x13\\x0e\\n(\\t\\a\\x10\\a\\t@\\t\\a\\x10\\a\\t@\\x0e\\n\\x90\\n\\x0e\\xfe\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x80\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\xa0\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\x01\\x00\\x0e\\n\\xfe\\xf8\\r\\x13\\x13\\r\\x01h\\n\\x0eP\\a\\t\\t\\aPP\\a\\t\\t\\aPH\\n\\x0e\\x0e\\n\\xa8\\xd4(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\xb4(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\fT(\\f\\f(\\fl(\\f\\f(\\fl(\\f\\f(\\f\\xfe\\xec(\\f\\f(\\fl(\\f\\f(\\f\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x00T\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"547>\\x027&54\\x05>\\x01'.\\x01/\\x01&54;\\x022\\x17\\x16?\\x016&'&'54&+\\x01\\\"\\x06\\x1d\\x01\\x0e\\x02\\x17\\x1e\\x01\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"'&\\x0f\\x01\\x06\\x16\\x17\\x16\\x17\\x15\\x14\\x16;\\x01265\\x96Ԗ\\x96j83AL\\b\\x02\\x05\\x0f\\x1d\\x069\\x01\\x18\\x17\\x1d\\x03\\x02\\x18\\x112\\x06\\t \\x01\\x05\\x05\\b\\x06\\x11\\x04\\x01\\x04\\x0e\\x12\\t\\a\\x10\\a\\t\\x0f\\x18\\f\\x02\\x02\\x18\\x112\\x06\\t \\x06\\x05\\b\\x06\\x11\\x04\\x01\\x04\\x0e\\x12\\t\\a\\x10\\a\\t\\x01\\xa0z\\xacz\\x133\\b\\x03\\x03\\x04\\x132\\x169JV\\xb4\\x02%\\x18\\x11\\x19\\x05\\x0f\\x01\\a\\b\\x02\\x04\\x06\\x11\\x04\\f\\x03\\t\\x02\\x12\\a\\t\\t\\a\\x12\\x01\\x12\\x1c\\x10\\x11\\x19\\x05\\x0f\\x01\\a\\b\\x02\\x04\\x06\\x11\\x04\\f\\x03\\t\\x02\\x12\\a\\t\\t\\a\\x00\\x03\\x00\\x00\\xff\\xe0\\x02B\\x01\\xa0\\x00\\x12\\x00O\\x00g\\x00\\x00\\x00\\x14\\x06#\\\"'\\x06#\\\"54767&5462\\x03\\x14;\\x012=\\x01>\\x0154.\\x02/\\x01&54>\\x01;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\x0e\\x01\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x06+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x05\\x16\\x17\\x16\\x06#\\\"'\\x06#\\\"&'\\x1632654'\\x1e\\x01\\x15\\x14\\x01\\xa0zV<3+.\\b\\x02\\x16\\x0e&z\\xacf\\b\\x10\\b\\x12\\x19\\x05\\b\\f\\a-\\t\\x03\\x06\\x03\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\x01Z\\x0e\\x16\\x03\\x04\\x05.+3<@h\\x18\\x12\\x0ec\\x8d\\x019H\\x01B\\x84^\\x19\\x19\\b\\x03\\x03\\x17\\x1f)3B^\\xff\\x00\\b\\b\\x10\\x01\\x1a\\x12\\b\\x0e\\v\\t\\x02\\r\\x03\\n\\x03\\x06\\x04\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x10\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x8c\\x1f\\x17\\x04\\n\\x19\\x196,\\x02qO\\n\\n\\x12P23\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00#\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x01546;\\x012\\x16\\x1d\\x01\\x01`\\r\\x13\\x13\\r`\\x13\\r@\\r\\x13`\\r\\x13\\x13\\r`\\x13\\r@\\r\\x13\\x01@\\x13\\r@\\r\\x13\\xe0\\r\\x13\\x13\\r\\xe0\\x13\\r@\\r\\x13`\\r\\x13\\x13\\r`\\x00\\x00\\x00\\x00\\n\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00W\\x00]\\x00c\\x00i\\x00o\\x00u\\x00}\\x00\\x83\\x00\\x89\\x00\\x8f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#'\\x06\\a\\x17\\x1e\\x01\\x0f\\x01\\x06\\\"/\\x01\\x06\\a\\x17\\x14\\x06+\\x01\\\"&57&'\\a\\x06\\\"/\\x01&4?\\x01&'\\a\\\"&=\\x01463\\x1767'&4?\\x0162\\x1f\\x0167'46;\\x012\\x16\\x15\\a\\x16\\x17762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x16\\x17'\\a\\x16\\x177&'\\x06\\a\\x1767#\\x06\\a\\x1767\\a\\x16\\x177&'\\x177&'\\a\\x166264&\\\"\\x06\\x14\\x1767'\\x06\\a367'\\x06\\a?\\x01&'\\a\\x16\\x01\\xef\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x01\\x05\\x16\\x04\\x0e\\x05\\v/;\\x01\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\x11\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x04\\x16\\x04\\x0e\\x05\\v/;\\x01\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\xc4\\x04\\x0f\\r+\\x1eY%\\x1e+\\r\\x0fl\\x15\\x06@\\x03\\tL\\x06\\x151\\t\\x03C\\x04\\x0f\\r+\\x1e2\\x1a\\x13\\x13\\x1a\\x13:%\\x1e+\\r\\x0fl\\x15\\x06@\\x03\\t\\f@\\x06\\x151\\t\\xdf\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\x11\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x04\\x16\\x04\\x0e\\x05\\v/;\\x01\\t\\a\\x1e\\a\\t\\x01;/\\v\\x05\\x0e\\x04\\x16\\x04\\x05\\r$\\b\\x11\\a\\n\\n\\a\\x11\\b$\\r\\x05\\x04\\x16\\x04\\x0e\\x05\\v/;\\u007f@\\x03\\t1\\x15\\x06\\x06\\x151\\t\\x03\\x1e%\\x04\\x0f\\rL%\\x1e+\\r\\x0f\\x87@\\x03\\t1\\x15w\\x13\\x1a\\x13\\x13\\x1a\\x90\\x06\\x151\\t\\x03\\x1e%\\x04\\x0f\\rH\\x04%\\x1e+\\r\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc1\\x00\\x0f\\x00\\x1f\\x00-\\x00T\\x00\\x007\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&\\x162?\\x01\\x15\\x14\\x06#!\\\"&=\\x01\\x17%\\x16\\x1d\\x01\\a5!\\x15'54767546;\\x01>\\x0532\\x1e\\x04\\x1732\\x16\\x1d\\x01\\x16\\xb0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xb0\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\tF4\\x15\\xd1\\x1c\\x14\\xfe`\\x14\\x1c\\xd1\\x01\\x1d\\x12`\\xfe\\xc0`\\x12\\x10\\x0e\\x1c\\x14N\\x01\\a\\x01\\x1c\\x0e\\x17\\b\\b\\x17\\x0e\\x1c\\x01\\a\\x01N\\x14\\x1c\\x0e\\xe8\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\tP\\x10\\a\\t\\t\\a\\x10\\a\\t\\tr\\x0f\\x97\\xd5\\x14\\x1c\\x1c\\x14\\u0557\\xef\\x0e\\x18\\nF\\xb9\\xb9F\\n\\x18\\x0e\\r\\n,\\x14\\x1c\\x01\\x05\\x01\\x15\\t\\v\\v\\t\\x15\\x01\\x05\\x01\\x1c\\x14,\\v\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x11\\x00!\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1f\\x0154&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xa0@`\\t\\a\\xc0\\a\\t\\t\\a\\xc0\\a\\t\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c@\\xa8\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x11\\x005\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x01\\x1f\\x0154&+\\x0154&+\\x01\\\"\\x06\\x1d\\x01#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\xa0@`\\t\\aH\\t\\a\\x10\\a\\tH\\a\\t\\t\\aH\\t\\a\\x10\\a\\tH\\a\\t\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c@\\xa8\\x10\\a\\tH\\a\\t\\t\\aH\\t\\a\\x10\\a\\tH\\a\\t\\t\\aH\\t\\x00\\x00\\x03\\xff\\xfa\\xff\\xbc\\x02\\x80\\x01\\xc0\\x00\\x14\\x00\\x1c\\x00Z\\x00\\x00\\x01\\x0e\\x01\\x15\\x14\\x17\\x0e\\x01/\\x01&=\\x01'&63!2\\x16\\a\\x062\\x16\\x14\\x06\\\"&4\\x17>\\x0154&/\\x01&546;\\x012\\x17\\x16?\\x016'&'54+\\x01\\\"\\x1d\\x01\\\"\\x0e\\x02\\x15\\x14\\x16\\x1f\\x01\\x16\\x15\\x14\\x0e\\x02+\\x01\\\"'&\\x0f\\x01\\x06\\x17\\x16\\x17\\x15\\x14;\\x0125\\x01\\xb1?R;\\b#\\x10P\\x10\\xb7\\x0f\\x11\\x15\\x01\\xe0\\x15\\x11\\x0fy\\x84^^\\x84^\\xb0\\x12\\x19\\x12\\x0e-\\t\\a\\x05\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\t\\x10\\v\\a\\x12\\x0e-\\t\\x02\\x03\\x05\\x02\\x1c\\a\\x06\\x06\\x04\\f\\a\\b\\x0e\\x11\\b\\x10\\b\\x01\\x1a\\x10gCQ9\\x10\\t\\v<\\f\\x14\\x9c\\xca\\x0f''\\x0f\\x8a^\\x84^^\\x84\\x92\\x01\\x1a\\x12\\x0f\\x18\\x05\\r\\x03\\n\\x05\\b\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x10\\b\\f\\x10\\t\\x0f\\x18\\x05\\r\\x03\\n\\x02\\x05\\x04\\x02\\x04\\x03\\x04\\v\\a\\x05\\v\\x01\\x10\\b\\b\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00e\\x00o\\x00y\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x015#5#5#\\x153\\x153\\x15#54&+\\x01\\\"\\x06\\x1d\\x01#53535#\\x15#\\x15#\\x15#\\\"&=\\x0146;\\x01546;\\x01546;\\x015462\\x16\\x1d\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x0135462\\x16\\x1d\\x0132\\x16\\x1d\\x0132\\x16\\x1d\\x01'\\x15354&+\\x01\\\"\\x06\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x01\\xf0\\a\\t\\t\\aP     P\\t\\a@\\a\\tP     P\\a\\t\\t\\a\\x10\\t\\a\\x10\\t\\a\\x10\\t\\x0e\\t@\\t\\x0e\\t@\\t\\x0e\\t@\\t\\x0e\\t\\x10\\a\\t\\x10\\a\\t\\xf80\\t\\a\\x10\\a\\t8\\t\\a \\a\\t`\\t\\a\\x80\\a\\t\\xa0\\x80``\\x80\\xa0P\\a\\t\\t\\aP\\xa0\\x80``\\x80\\xa0\\t\\a\\x80\\a\\tp\\a\\tP\\a\\tp\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\ap\\t\\aP\\t\\ap\\xb000\\a\\t\\t\\xb7@\\a\\t\\t\\a@\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x001\\x00?\\x00G\\x00\\x00%\\x16\\x15\\x14\\x0f\\x01\\x06\\\"/\\x01&5476;\\x015462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x01\\x14;\\x012=\\x01462\\x16\\x1d\\x0132\\x0426?\\x01.\\x02\\\"\\x06\\x0f\\x01\\x1e\\x0162\\x16\\x14\\x06\\\"&4\\x01\\xfd\\x03\\tf8\\xb28f\\t\\x03\\b\\x15@\\x18 \\x18\\n\\x14\\n\\x18 \\x18\\n\\x14\\n\\x18 \\x18@\\x15\\xfe\\xf300\\f\\f\\x05\\x11200\\f\\f\\x05\\x11=\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x06\\a\\r\\tn<<n\\t\\r\\a\\x06\\x13\\xd0\\x10\\x18\\x18\\x10\\x86\\n\\n\\xae\\x10\\x18\\x18\\x10\\xae\\n\\n\\x86\\x10\\x18\\x18\\x10Ѐ \\x10\\x10\\a\\x15$ \\x10\\x10\\a\\x15<\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\xff\\xfd\\xff\\xc0\\x02\\x03\\x01\\xc0\\x002\\x00D\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\x17\\x14\\x06#\\\"/\\x01\\a\\x06#\\\"&57\\a\\\"#\\\"&?\\x01'&6?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x02'7'7\\a'\\a'\\x17\\a\\x17\\a7\\a7\\x17'\\x01\\xf0\\r\\x05\\fbK\\t\\x0e\\rl\\x04\\v\\b\\b\\x06DD\\x06\\b\\b\\v\\x04l\\x02\\x02\\f\\n\\bKb\\f\\x05\\rn*\\x05\\x14\\f^\\\"\\x04\\x1a\\x04\\\"^\\f\\x14\\x05*/$/5\\x14-\\x10\\x10-\\x145/$4\\x02!!\\x02\\xf5\\x01\\x1b\\x065S\\n\\x18\\x03\\x18q\\b\\v\\aYY\\a\\v\\bq\\x18\\x15\\nS5\\x06\\x1b\\x01\\x10h\\r\\x11\\a<k\\r\\rk<\\a\\x11\\rh}(\\x19\\b2\\x1d33\\x1d2\\b\\x19(\\f6**6\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\xff\\xc0\\x020\\x01\\xc0\\x00\\x85\\x00\\x00%\\x0e\\x01#\\\"#.\\x01'3'&'45473'>\\x017632\\x17\\x16\\x15\\x14\\a\\x06\\x15\\x14\\x17\\x16\\x15\\x14\\a\\x06\\x15\\x14\\x16\\x177\\a\\x06#\\\"'&54?\\x01'&4?\\x01'&5432\\x1f\\x01\\x134312\\x15\\x137632\\x16\\x15\\x14\\x0f\\x01\\x17\\x16\\x14\\x0f\\x01\\x17\\x16\\x15\\x14\\a\\x06#\\\"/\\x01\\x17>\\x017654.\\x01'&547654'&547632\\x17\\x1e\\x01\\x17\\a3\\x161\\x14\\x0f\\x01\\x02\\x18!\\x86Q\\x06\\aM\\u007f\\x1f(;\\x04\\x01\\x01/)\\t?$\\x04\\x05\\b\\x05\\x03\\x01\\n:\\a\\x06)9+\\x02\\x1b\\x02\\x02\\x04\\x02\\x02\\x01\\x14*\\a\\a*\\x14\\x01\\b\\x02\\x02\\x1e\\f\\b\\b\\v\\x1f\\x02\\x02\\x04\\x04\\x01\\x14*\\a\\a*\\x14\\x01\\x02\\x02\\x04\\x02\\x02\\x1b\\x02%5\\b\\x02\\v\\x13\\v\\x06\\a:\\n\\x01\\x03\\x04\\t\\x05\\x04$?\\t)/\\x01\\x05;`HX\\x04WE;\\x13\\x14\\x05\\x05\\n\\n)+_\\x18\\x03\\a\\x04\\x05\\x03\\x03\\x19\\x1aG+\\x05\\b\\a\\x05%7-D\\tA\\x12\\x01\\x02\\x02\\x04\\x02\\x02!\\t\\x01\\x0e\\x01\\t!\\x02\\x02\\b\\x01\\x15\\x01 \\b\\b\\xfe\\xe0\\x15\\x01\\x04\\x04\\x02\\x02!\\t\\x01\\x0e\\x01\\t!\\x02\\x02\\x04\\x02\\x02\\x01\\x12A\\a5%\\f\\r\\x0f# \\n\\x05\\a\\b\\x05+G\\x1b\\x18\\x03\\x03\\x05\\x04\\a\\x02\\x19`*)\\x11\\x1a\\x1a;\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x00\\x1e\\x00\\xa0\\x00\\x00%\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x11\\x14\\a!\\\"\\x06\\x14\\x163!\\x030\\x14\\x15\\x17\\x16\\x15\\x14#\\\"/\\x01\\x1e\\x01267\\a\\x06#1\\\"'&54?\\x01<\\x0114'\\a\\x06#\\\"54?\\x01.\\x02'\\x16\\x15\\x14\\x06\\a\\x16\\x15\\x14\\x0e\\x01\\a'\\x17\\x16312545'764/\\x017454#\\\"#\\a'4\\\"\\x15\\a'\\\"#\\\"\\x15\\x14\\x1f\\x01\\a\\x06\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x1632?\\x01\\a.\\x02547.\\x01547\\x0e\\x01\\a\\x17\\x16\\x15\\x14#\\\"/\\x01\\x06\\x01\\xb6\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1aC\\xfe\\xe3\\r\\x13\\x12\\x0e\\x01\\x1d\\xfd%\\x03\\b\\x03\\x02\\x18\\t=N=\\t\\x18\\x02\\x03\\x04\\x02\\x02\\x03%\\x05\\x15\\x03\\x03\\b\\x02\\x1b\\x04\\x10\\x12\\t\\n\\x0e\\n\\x10\\f\\x14\\f\\x02\\r\\x01\\x01\\x04\\t\\x12\\x03\\x03\\x12\\t\\x04\\x01\\x01\\x0e\\x05\\b\\x05\\f\\x01\\x01\\x04\\x01\\b\\x12\\x03\\x03\\x12\\b\\x01\\x03\\x01\\x01\\x01\\v\\x02\\f\\x14\\f\\x10\\n\\x0e\\n\\r\\x1b\\a\\x1b\\x02\\b\\x03\\x03\\x15\\x05F\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a\\xfe\\xb4\\x0f\\v\\x12\\x1c\\x12\\x01\\x10\\x01\\x01 \\x02\\x04\\b\\x02\\x15&11&\\x15\\x02\\x03\\x02\\x03\\x04\\x02 \\x01\\x01\\x0e\\x12\\x16\\x02\\b\\x03\\x03\\x1a\\t\\x13\\x11\\x04\\x0f\\x12\\r\\x1c\\b\\x11\\x16\\f\\x18\\x10\\x03#\\t\\x01\\x04\\x01\\x01\\x0f\\x03\\x01\\x06\\x01\\x04\\x0e\\x01\\x01\\x04\\np\\x04\\x04o\\t\\x04\\x01\\x01\\x0e\\x04\\x01\\x06\\x01\\x03\\x0f\\x01\\x01\\x01\\x03\\x01\\a!\\x03\\x10\\x18\\f\\x16\\x11\\b\\x1c\\r\\x12\\x0f\\a\\x1d\\r\\x1a\\x03\\x03\\b\\x02\\x16\\x12\\x00\\x00\\x06\\x00\\x00\\xff\\xbf\\x02A\\x01\\xc0\\x00\\x0f\\x00 \\x00.\\x00=\\x00K\\x00Y\\x00\\x00\\x01\\x16\\x1d\\x01%&\\a\\x05546?\\x0162\\x17\\a6\\x17\\x05\\x15\\x14\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01=\\x01\\x1754&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16?\\x016754&\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1e\\x01376\\x17\\x15\\x14\\x1f\\x01\\x166=\\x014/\\x01&\\x06'\\x15\\x14\\x1f\\x01\\x166=\\x014/\\x01&\\x06\\x02*\\x16\\xfe\\xf7\\x17\\x17\\xfe\\xf7\\r\\t\\xec\\x0e \\x0e,\\x0e\\x0e\\x01\\x12\\x0e\\v\\xf2\\n\\x16\\n\\xf2\\v\\x0e\\x80\\x06\\x04P\\x06\\x06\\x04P\\x06\\x90\\x06\\x04`\\x06\\x03\\x05\\x02`\\x06\\xb0\\x06P\\x04\\x06\\x06P\\x04\\x06\\x90\\x06`\\x04\\x06\\x06`\\x04\\x06\\x01l\\a\\x171P\\a\\aP1\\n\\x11\\x03O\\x05\\x05m\\x04\\x04R\\xe5\\v\\x11\\x036\\x02\\x026\\x03\\x11\\v\\xe5\\\"\\x10\\x04\\x05\\x01\\x16\\x01\\x06\\x11\\x04\\x05\\x01\\x16\\x02-\\x11\\x04\\x05\\x02\\x1a\\x01\\x06\\x11\\x03\\x04\\x01\\x1a\\x02\\x11\\x10\\x06\\x02\\x16\\x01\\x05\\x04\\x11\\x06\\x01\\x16\\x01\\x05$\\x11\\x06\\x02\\x1a\\x01\\x05\\x04\\x11\\x06\\x01\\x1a\\x02\\x05\\x00\\x03\\xff\\xf3\\xff\\xbf\\x02\\v\\x01\\xc0\\x00n\\x00v\\x00~\\x00\\x00\\x01\\x1e\\x01\\a\\x06\\x0f\\x01\\x06/\\x01\\a\\x17612\\x16\\x15\\x14\\x0e\\x01#\\\".\\x025'\\x15\\x16\\x15\\x14\\x06\\\"&5475\\a\\x0e\\x01#\\\"&4630\\x177'\\a\\x06/\\x01&'&676\\x17\\x16\\a\\x06\\x15\\x14\\x16\\x1f\\x015'&?\\x01.\\x015467'&?\\x01\\x17\\x16\\x0f\\x01\\x1e\\x01\\x15\\x14\\x06\\a\\x17\\x16\\x0f\\x01\\x157>\\x0154'&5476\\a4'\\a\\x06\\x1f\\x016'\\x14\\x1776/\\x01\\x06\\x01\\xa082\\x10\\n\\x1f5\\b\\vP\\x1d/\\x05\\n\\x0e\\x06\\v\\a\\x04\\b\\a\\x04)\\x10\\x13\\x1a\\x13\\x10)\\x01\\r\\t\\n\\x0e\\x0e\\n\\x05/\\x1dP\\v\\b8\\x15\\n\\x19/<\\v\\t\\t\\a\\x19&!M,\\a\\x04\\b\\x1a\\x1f\\x1e\\x19\\x06\\x04\\b;;\\a\\x04\\x05\\x19\\x1e\\x1f\\x1a\\b\\x03\\x06,L\\\"&\\x19\\x03\\x04\\tU\\x1b\\b\\r\\r\\x06\\x1d\\x80\\x1d\\x05\\x0e\\x0e\\a\\x1b\\x01~\\x1es?'$=\\n\\x06*\\x14!\\x01\\x0e\\n\\a\\v\\x06\\x03\\x06\\a\\x05\\x1c\\x1e\\t\\x12\\r\\x13\\x13\\r\\x12\\t\\x1e\\x1c\\t\\f\\x0e\\x14\\x0e\\x01!\\x14*\\x06\\nA\\x18\\x19E\\x80 \\a\\t\\n\\n(/(F\\x166\\x14$\\a\\t\\x11\\x0f3\\x1f\\x1e3\\x0f\\v\\t\\a55\\a\\t\\v\\x0f3\\x1e\\x1f3\\x0f\\x11\\t\\a$\\x146\\x16F(/(\\x04\\x05\\x06\\x05\\tt \\x14\\x11&&\\f\\x13\\\"\\\"\\x13\\f&&\\x11\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x11\\x00'\\x007\\x00\\x00\\x01\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014?\\x0162\\x17\\a3\\x15353\\x15353\\x1532\\x16\\x1d\\x01!546;\\x01\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xf6\\n\\t\\a\\xfe \\a\\t\\n\\xeb\\x05\\f\\x05\\xcb@`@`@\\x10\\a\\t\\xfe@\\t\\a\\x10\\x01\\xb0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01d\\x04\\v%\\a\\t\\t\\a%\\v\\x04Z\\x02\\x02\\xbe\\xa0\\xa0\\xa0\\xa0\\xa0\\t\\a00\\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x05\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x0f\\x00'\\x009\\x00=\\x00L\\x00\\x00:\\x01767\\x15\\x14\\x06#!\\\"&=\\x01\\x16\\x1772\\x16\\x1d\\x01\\x0e\\x02\\a\\\"\\x06#\\\".\\x01'.\\x02'5463%2\\x16\\x1d\\x01\\x14\\x06+\\x015.\\x01+\\x015463\\x055#\\x15%\\x15#5463!2\\x16\\x1d\\x01#\\\"\\x06\\x8b*+ @\\x13\\r\\xff\\x00\\r\\x13@ \\xc0\\r\\x13\\a\\x17,)\\x02\\\"\\t\\a\\x11\\x14\\x01),\\x17\\a\\x13\\r\\x02\\x00\\r\\x13\\x13\\r\\xc0\\x03$\\x19`\\x13\\r\\x01 @\\xfe\\xe0`\\x13\\r\\x01@\\r\\x13\\xe0\\x1a& \\x160\\x86\\r\\x13\\x13\\r\\x860\\x16\\xa0\\x13\\r\\x13\\x06\\x12!\\x1e\\x16\\t\\x10\\x01\\x1d\\\"\\x12\\x05\\x10\\r\\x13`\\x13\\r\\xc0\\r\\x13\\x86\\x19! \\r\\x13\\x80@@` \\xc0\\r\\x13\\x13\\r`&\\x00\\f\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x13\\x00\\x1d\\x00'\\x002\\x00=\\x00H\\x00S\\x00^\\x00i\\x00t\\x00\\xb2\\x00\\x00\\x132\\x16\\x1d\\x01#546;\\x012\\x16\\x1d\\x01#546;\\x012\\x16\\x1d\\x01#546;\\x012\\x16\\x1d\\x01#54636\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x06\\\"&546?\\x01\\x16\\x15\\x14\\x05546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16;\\x01546;\\x012\\x16\\x1d\\x01326\\x90\\a\\t@\\t\\a\\x80\\a\\t@\\t\\a\\xe0\\a\\t@\\t\\a\\x80\\a\\t@\\t\\a}\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b s\\x1a\\x13\\x10\\b\\b \\x02\\x00\\t\\a \\a\\t8(\\xc0\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0\\xc0(8\\t\\a \\a\\t\\x13\\r\\xc0\\t\\a \\a\\t\\xc0\\r\\x13\\x01@\\t\\a\\x90\\x90\\a\\t\\t\\a\\x90\\x90\\a\\t\\t\\a\\x90\\x90\\a\\t\\t\\a\\x90\\x90\\a\\t \\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\r\\x13\\x13\\r\\b \\f\\f.\\x12\\rӐ\\a\\t\\t\\a\\x90(8@\\t\\a \\a\\t\\t\\a \\a\\t@8(\\x90\\a\\t\\t\\a\\x90\\r\\x13\\xb0\\a\\t\\t\\a\\xb0\\x13\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\t\\x00\\x18\\x00C\\x00P\\x00\\x00\\x15\\x113\\x11\\x14\\x06+\\x01\\\"&%!&5476?\\x01\\x17\\x16\\x17\\x16\\x15\\x14\\x152\\x16\\x1d\\x01\\x14\\x06+\\x0154&\\\"\\x06\\x1d\\x01#54&/\\x01\\x0e\\x02\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#\\\"&=\\x01463\\x03\\x1e\\x04\\x1d\\x01#5467\\x80\\x13\\r@\\r\\x13\\x02C\\xfe\\x9a\\x1dXE+\\b\\b+EX\\r\\x13\\x13\\r \\x13\\x1a\\x13@\\x18\\f\\f\\x05\\x10\\x1b@\\x13\\x1a\\x13 \\r\\x13\\x13\\r\\x80\\x03\\b\\x16\\x11\\x0e\\x80 \\x10 \\x01@\\xfe\\xc0\\r\\x13\\x13\\xcd\\x1c\\x1fC8+5\\n\\n5+8C\\x1f<\\x13\\r\\x80\\r\\x13@\\r\\x13\\x13\\r@H\\x15$\\a\\b\\x03\\n&\\x15H@\\r\\x13\\x13\\r@\\x13\\r\\x80\\r\\x13\\x01@\\x01\\x05\\x12\\x15!\\x12  \\x1c0\\n\\x00\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02\\x00\\x01\\xc5\\x00\\x0e\\x00h\\x00\\x84\\x00\\x00\\x01'&4?\\x016\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\\"\\x162\\x16\\x1d\\x01\\x14\\x06#\\\".\\x025'546\\x17\\x16326=\\x014&\\\"\\x0f\\x01\\x06+\\x01\\x16\\x15\\x14\\x06#\\\".\\x02546\\x17\\x16\\x17\\x1e\\x033264&+\\x01&/\\x01&6;\\x01264&#\\\"\\a\\x06/\\x01&476\\x17\\x1e\\x02\\x17\\x16\\a32?\\x026\\x16\\x1d\\x01\\x14\\x0e\\x04#\\\".\\x05'&6\\x17\\x1e\\x036\\x01i\\x16\\x03\\x03\\x16\\a\\a\\x16\\x03\\x03\\x16\\x03\\b\\aR;;%\\x1b'\\x13\\n\\x01\\v\\x03#/\\v\\x15\\x15\\x1e\\n\\x19\\x1d)\\x16\\x12K5*A$\\x11\\v\\x04\\x01\\x03\\v\\x10!1 \\x1a&&\\x1a!\\t\\x04\\x10\\x04\\t\\t \\x14\\x1c\\x1c\\x14\\x11\\r\\n\\n\\x1a\\x06\\x05(8\\x16%\\x1a\\x05\\t\\x11/\\x0f\\n\\x18q\\b\\x12\\x03\\x05\\x0f\\x15%\\x16\\x10\\x1f\\x16\\x15\\r\\v\\x04\\x01\\x06\\x13\\v\\x04\\x0e&'5\\x01\\x83\\x16\\x03\\b\\x03\\x16\\a\\a\\x16\\x03\\b\\x03\\x16\\x03\\x80;)d$4\\r\\x13\\x13\\x06\\a&\\x06\\x03\\x04+\\x0f\\td\\x0f\\x15\\n\\x19\\x1d\\x1f!5K\\x1f01\\x17\\x06\\x05\\x06\\x02\\x04\\x14\\x15\\x1f\\x0e&4&\\x01\\b \\b\\x0f\\x1c(\\x1c\\v\\a\\a\\x14\\x04\\x0f\\x06&\\n\\x03\\x17$\\x15'$\\n\\x19\\x9a\\x06\\t\\n$\\x03\\x06\\a\\f\\t\\a\\b\\f\\x10\\r\\x0f\\x06\\x02\\f\\x11\\b\\x04\\b\\x0f\\x05\\r\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00\\xa5\\x00\\xad\\x00\\xb5\\x00\\x00$\\x1e\\x01\\x0e\\x01&\\a\\x06#\\\".\\x03'&'\\x06\\a\\x1e\\x0132\\x16\\x14\\x06#\\\".\\x02'\\x06\\\"'\\x0e\\x03#\\\"&463267&'\\x06\\a\\x0e\\x02\\a\\x06#\\\"'&\\x06&'&4>\\x017>\\x01\\x1e\\x02\\x17\\x166767&'\\x06#\\\".\\x01'&#\\\"&4632\\x1e\\x01\\x17\\x1632>\\x017'.\\x015462\\x16\\x15\\x14\\a\\x1762\\x177&5462\\x16\\x15\\x14\\x06\\x0f\\x01\\x1e\\x02327>\\x0232\\x16\\x14\\x06#\\\"\\a\\x0e\\x02#\\\"'\\x06\\a\\x16\\x17\\x1e\\x017>\\x03\\x02\\\"\\x06\\x14\\x16264$\\\"\\x06\\x14\\x16264\\x02g\\x13\\b\\a\\x12\\x13\\x16\\x1f\\x15\\f\\x17\\x10\\n\\x05\\x03\\x03\\x03\\x1c!\\t \\x13\\n\\x0e\\x0e\\n\\x17(\\x19\\x0e\\x05\\r\\x10\\r\\x05\\x0e\\x19(\\x17\\n\\x0e\\x0e\\n\\x13 \\t!\\x1c\\x03\\x03\\x04\\x06\\x15\\x0f\\v\\f\\x15\\x1f\\x16\\x13\\x12\\x03\\x02\\x04\\a\\x04\\n\\x13\\x0e\\x11\\b\\b\\x16\\x13\\x06\\b\\n\\x04\\x02\\x13\\x17\\x10\\x1a\\f\\b\\x0e\\b\\n\\x0e\\x0e\\n\\x10\\x1a\\f\\b\\x0e\\b\\a\\x17*\\x19\\x11\\x19#%6%\\v\\x13\\x1b:\\x1b\\x13\\v%6%#\\x19\\x11\\x19*\\x17\\a\\b\\x0e\\b\\f\\x1a\\x10\\n\\x0e\\x0e\\n\\b\\x0e\\b\\f\\x1a\\x10\\x18\\x12\\x02\\x04\\n\\b\\x06\\x13\\x16\\b\\b\\x11\\x0e\\x8d\\x0e\\t\\t\\x0e\\t\\xfe\\xf7\\x0e\\t\\t\\x0e\\th\\a\\x12\\x13\\b\\a\\x0f\\x15\\t\\x0e\\x14\\r\\v\\r\\x06\\x17\\v#8\\x0e\\x14\\x0e\\x1c-%\\x13\\x01\\x01\\x13%-\\x1c\\x0e\\x14\\x0e8#\\v\\x17\\x06\\r\\x0f\\x11\\x19\\x05\\x05\\x15\\x0f\\a\\b\\t\\x05\\n\\b\\a\\x01\\x04\\x01\\x03\\b\\x05\\x05\\x0f\\a\\x1a\\x1d\\x0e\\x05\\x03\\x11\\x10\\x0e\\r\\x15\\x0e\\x14\\x0e\\x10\\x0f\\f\\x15!4\\x11\\\"\\x02%\\x19\\x1b%%\\x1b\\x13\\x10%\\b\\b%\\x10\\x13\\x1b%%\\x1b\\x19%\\x02\\\"\\x114!\\x15\\r\\x0e\\x10\\x0e\\x14\\x0e\\x15\\r\\x0e\\x10\\x11\\x03\\x05\\x0e\\x1d\\x1a\\a\\x0f\\x05\\x05\\b\\x03\\x01'\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x12\\x00\\x16\\x00\\x1e\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x054&'\\x15\\x176\\a5\\a\\x167\\x1567\\x03\\x0e\\x02\\x15\\x14\\x177\\x91Α\\x91Α\\x01\\xb0WA\\x81\\x17\\xd8Y&s3&\\x99+E(\\x17\\x81\\x01\\xb8\\x91Α\\x91\\xcegCg\\v\\xa6g)\\x86rG\\\"ir\\t\\\"\\x01?\\b3N,/)g\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc7\\x00\\t\\x00\\x14\\x00/\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x015\\x054>\\x01?\\x01\\x15#\\\"&5%\\x16\\x1d\\x01#54&\\\"\\x06\\x1d\\x01#54?\\x0154?\\x016\\x1f\\x01\\x16\\x1d\\x01\\x02m\\b\\v\\t\\ap\\xfe\\x00\\x05\\t\\x05mp\\a\\t\\x01\\xd0\\x10`%6%`\\x100\\tL\\v\\vL\\tQ\\x03\\x11\\td\\a\\t\\xc0L\\x06\\f\\t\\x02/\\xc0\\t\\a\\xf9\\t\\x12\\xee`\\x1b%%\\x1b`\\xee\\x12\\t\\x1ds\\x0e\\tK\\f\\fK\\t\\x0es\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x1354&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14p\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xb0\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00\\x00%\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x05326=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x17326=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x17326=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xb0\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xe0\\a\\t\\t\\a\\xe0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\x10\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14p\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x82\\x01\\xc0\\x00\\a\\x00(\\x00\\x00\\x00\\\"&462\\x16\\x14\\a'\\a\\x17\\x16\\x06+\\x01\\\"&46;\\x01'.\\x01?\\x01676\\x1f\\x0176\\x1e\\x01\\x06\\x0f\\x01\\x06&\\x01\\x1b6%%6%_\\x18#n\\x13\\x15\\x1a\\xd0\\x11\\x17\\x17\\x11\\\\- \\x14\\x121\\x12&(\\x18':\\f!\\x15\\x03\\rX\\f!\\x01@%6%%6\\xcf\\x1dAn\\x131\\x17\\\"\\x17#\\x14G!\\\\!\\x04\\x04\\x1e./\\n\\x03\\x19!\\vH\\n\\x03\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc2\\x00)\\x00R\\x00\\x00\\x002\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06#\\\"&=\\x0146?\\x0154?\\x0103>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1626=\\x014\\x05\\x16\\x1d\\x01\\x14\\x06#\\\"/\\x01.\\x01=\\x01462\\x16\\x1d\\x01\\x14\\x1626=\\x014/\\x01&676\\x16\\x1721\\x17\\x16\\x1d\\x01\\x01\\x03\\x1a\\x13/&\\xb3\\x04\\x04\\x10\\x10\\r\\tZ\\x10u\\x01\\a\\x19\\n\\f\\x06\\aM\\x0e\\t\\x0e\\t\\x01z\\x16\\x10\\x10\\x04\\x04\\xb3&/\\x13\\x1a\\x13\\t\\x0e\\t\\x0eM\\a\\x06\\f\\n\\x19\\a\\x01u\\x10\\x01\\x00\\x13\\r\\x80'?\\n/\\x01\\x15\\v`\\n\\x11\\x03\\x1eQ\\x1d\\x18\\xb0\\v\\x05\\x06\\a\\x1a\\v\\x82\\x17\\x1aM\\a\\t\\t\\aP\\r\\x8f\\a\\x17`\\v\\x15\\x01/\\n?'\\x80\\r\\x13\\x13\\rP\\a\\t\\t\\aM\\x1a\\x17\\x82\\v\\x1a\\x06\\a\\x06\\n\\xb0\\x18\\x1dQ\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x001\\x00N\\x00V\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x063237\\x17232/\\x0176&#/\\x01&\\\"'\\\"\\x06\\x14\\x16327654#0\\\"#\\\"&463:\\x011\\x16324#&\\x135!\\\"\\x06\\x14\\x163\\x01\\xc0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\x93\\v\\x19\\x02\\x01\\x01\\x12\\x04\\x01\\x04\\x01\\x01\\x16\\x16\\x01\\x01\\x04\\x01\\x04\\x12\\x01\\x01\\x02\\x19\\v\\x01\\x04;/DD/\\x15\\x13\\x05\\a\\x03\\x01'88'\\x01\\x03\\x01\\x02\\x06\\x06\\x14u\\xfe\\xe3\\r\\x13\\x12\\x0eZ\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1ax\\x16\\x04\\x04\\x02\\x11\\x19\\x04\\f\\f\\x04\\x19\\x11\\x02\\x04\\x04\\x16\\x02CC`C\\a\\x02\\x05\\x068N8\\x01\\x0e\\a\\xfe\\x8d@\\x12\\x1c\\x12\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x19\\x00$\\x00_\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x17\\x042654.\\x01#\\\"\\x06\\x147\\x1e\\x01\\x15\\x14\\x06\\a\\x15\\x14+\\x01\\\"=\\x01&'&?\\x016\\x17\\x16;\\x012654/\\x01.\\x0154>\\x01354;\\x012\\x1d\\x01\\x16\\x17\\x16\\x0f\\x01\\x06'&+\\x01\\\"\\x06\\x15\\x14\\x17\\x01\\xf9\\a\\a\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\a\\xfe\\xffxT'B'<T\\xab\\x0e\\x12\\x19\\x12\\b\\x10\\b\\x11\\x0e\\b\\a\\f\\x04\\x06\\x06\\a\\x1c\\x05\\a\\t-\\x0e\\x12\\f\\x13\\f\\b\\x10\\b\\x11\\x0e\\b\\a\\f\\x04\\x06\\x06\\a\\x1c\\x05\\a\\t\\x05\\a\\x14\\a\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\a\\tT<'C&TxE\\x05\\x18\\x0f\\x12\\x1a\\x01\\x10\\b\\b\\x10\\x01\\v\\x05\\a\\v\\x04\\x03\\x04\\b\\x05\\n\\x03\\r\\x05\\x18\\x0f\\f\\x14\\r\\x10\\b\\b\\x10\\x01\\v\\x05\\a\\v\\x04\\x03\\x04\\b\\x05\\n\\x03\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00\\x19\\x00$\\x000\\x00;\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01\\x06#\\\"&462\\x16\\x15\\x14\\a32\\x17\\x042654.\\x01#\\\"\\x06\\x1462\\x16\\x15\\x14\\a\\x06\\\"'&54\\x17264&\\\"\\x06\\x15\\x14\\x1e\\x01\\x01\\xf9\\a\\a\\x1c\\a\\x14\\ad\\a8HVzz\\xacz,\\x10\\n\\a\\xfe\\xffxT'B'<Tq>+C\\x03\\b\\x03CJ\\n\\x0e\\x0e\\x14\\x0e\\x06\\f\\x05\\a\\x14\\a\\x1c\\a\\ad\\a\\n\\x10,z\\xaczzVH8\\a\\tT<'C&Tx\\x9c+\\x1f$O\\x03\\x03O$\\x1f5\\x0e\\x14\\x0e\\x0e\\n\\a\\v\\x06\\x00\\x00\\x00\\x00\\x04\\xff\\xfa\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x10\\x00\\x1b\\x00%\\x005\\x00\\x007\\x0e\\x01\\x17\\a\\x06#\\\"&'&6?\\x0153\\x155\\x15#546;\\x012\\x17\\x0672\\x16\\x1d\\x01#5463\\x0353\\x15\\x14\\x06\\x0f\\x01\\x06#\\\"&'&67\\xd7(\\x16\\x16\\x15\\x1a \\x19.\\r\\x12\\x11\\x1eW\\xa0\\xa0\\x13\\r\\x80\\x02\\x06\\b\\xc0\\r\\x13\\xc0\\x13\\r \\xc0\\x1e\\x15s\\x1a \\x19-\\r\\x12\\x11\\x1e\\x89\\x1e^)\\x11\\x13\\x19\\x17!H\\x16A\\xb0\\xa0\\xe0  \\r\\x13\\x02\\x0e\\x10\\x13\\r  \\r\\x13\\xfe\\xf0\\xb0\\xd0\\x1a=\\x0fW\\x13\\x19\\x17!H\\x16\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02G\\x01\\xc0\\x00\\x1b\\x00;\\x00\\x00%\\x16\\x0f\\x01\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1772\\x16\\x1d\\x01\\x14\\x06+\\x01\\x03\\x0e\\x01#\\\"/\\x01#\\\"&=\\x0146;\\x012\\x1f\\x01\\x13>\\x013\\x02;\\f\\f..\\f\\f\\x16\\f\\v..\\v\\f\\x16\\f\\f..\\f\\f\\x16\\f\\v..\\v\\f\\x03\\n\\x0e\\x0e\\n\\xc3b\\x06 \\x10\\x1f\\x12X,\\n\\x0e\\x0e\\nQ\\x13\\n:U\\x02\\x12\\v\\xc5\\f\\v..\\v\\f\\x16\\f\\f..\\f\\f\\x16\\f\\v..\\v\\f\\x16\\f\\f..\\f\\f\\xe5\\x0e\\n0\\n\\x0e\\xfe\\x89\\x15\\x14\\x1c\\xa4\\x0e\\n0\\n\\x0e\\x11j\\x01C\\v\\r\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x02\\x01\\xc0\\x00\\x1c\\x009\\x00\\x00\\x052\\x16\\x15\\x14\\a\\x06#\\\"&4632\\x17\\x16\\a\\x06#0&#\\\"\\x06\\x14\\x163267\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06#\\\"/\\x01\\a\\x06#\\\"&?\\x01'&6?\\x0262\\x1f\\x01\\x01T\\a\\t\\v+.j\\x96\\x96j.,\\f\\x03\\x02\\r\\a\\x02W||W\\x02\\a\\xa3\\a\\x03\\x047\\r\\x01\\a\\x04\\x02\\x03DD\\x03\\x02\\x04\\a\\x01\\r7\\x04\\x03\\aL\\\"\\x03\\f\\x03\\\"\\x12\\t\\x06\\v\\x04\\x10\\x96Ԗ\\x10\\x05\\r\\f\\x01|\\xae|\\x01\\xfc\\x01\\f\\x046L\\x04\\a\\x01$$\\x01\\x06\\x05L6\\x04\\f\\x01\\vE\\x06\\x06E\\x00\\x00\\x00\\x00\\b\\xff\\xfa\\xff\\xc0\\x01\\xd6\\x01\\xc0\\x00\\x1d\\x00 \\x00&\\x00)\\x00,\\x00/\\x002\\x005\\x00\\x00%\\x17\\x16\\x06+\\x01\\a\\x06\\\"/\\x01#\\\"&?\\x01'&6;\\x01762\\x1f\\x0132\\x16\\x0f\\x01#\\x17\\a'#\\a\\x173\\x03\\a3\\a\\x177\\a3'\\x177#73'\\x01\\x965\\v\\x16\\x15k8\\v*\\v8k\\x15\\x16\\v55\\v\\x16\\x15k8\\v*\\v8k\\x15\\x16\\vB(\\x14 5p55p8\\x17.\\xb8\\x14\\x14((\\x14\\x8d\\x17.\\x90(\\x14\\xc0Y\\x13$^\\x12\\x12^$\\x13YY\\x13$^\\x12\\x12^$\\x13\\x01!7XXX\\x01\\x0e&8!!\\xb0!\\u007f&8!\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc9\\x00\\t\\x00\\x13\\x00'\\x00E\\x00\\x00762\\x1f\\x01\\x11#547!\\x16\\x1d\\x01#\\x11762\\x17'\\x17\\x16\\x15\\x11#54&\\a\\x0e\\x01\\x1d\\x01#\\x114?\\x016\\x17'76&+\\x01'&\\\"\\x0f\\x01#\\\"\\x06\\x1f\\x01\\a\\x06\\x16;\\x01\\x17\\x162?\\x01326F\\x04\\f\\x04&\\x80\\a\\x02r\\a\\x80&\\x04\\f\\x04\\xe6\\x80\\f`-\\x1e\\x17\\x1e`\\f\\x80\\x14H\\x13\\x13\\x02\\x03\\x03'\\x19\\x01\\x06\\x01\\x19'\\x03\\x03\\x02\\x13\\x13\\x02\\x03\\x03'\\x19\\x01\\x06\\x01\\x19'\\x03\\x03\\xfb\\x05\\x05+\\xfe\\xf0\\xe2\\n\\b\\b\\n\\xe2\\x01\\x10+\\x05\\x05\\xbef\\n\\x0f\\xfe\\x86`\\x1d'\\x05\\x04&\\x18]\\x01z\\x0f\\nf\\x10\\xe8\\x1f\\x1f\\x02\\x05(\\x02\\x02(\\x05\\x02\\x1f\\x1f\\x02\\x05(\\x02\\x02(\\x05\\x00\\v\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x02\\x00\\x05\\x00\\x11\\x00\\x14\\x00\\x17\\x00\\x1b\\x00F\\x00R\\x00U\\x00X\\x00^\\x00\\x00%'37\\a'$2\\x16\\x15\\x11\\x14\\x06\\\"&5\\x114\\x137\\x1737\\x17\\x05\\x11!\\x11\\x01\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\x15\\x14\\x16;\\x01\\x17\\x1632?\\x01327654/\\x017654&+\\x01'&#1\\\"\\x0f\\x01#\\\"$2\\x16\\x15\\x11\\x14\\x06\\\"&5\\x114\\a\\x17#\\x0f\\x01'\\x17'73\\x17\\a\\x01@\\x12$Q\\x12\\x13\\xfe\\x9e(\\x1c\\x1c(\\x1c\\xdd\\x12\\x13|\\x13\\x12\\xfe\\xdd\\x01\\x80\\xfe\\xc3\\x03\\x03\\x1d\\x1d\\x03\\f\\t<\\x1d\\x06\\f\\f\\x06\\x1d<\\f\\x06\\x03\\x03\\x1d\\x1d\\x03\\f\\t<\\x1d\\x06\\f\\f\\x06\\x1d<\\f\\x01s(\\x1c\\x1c(\\x1c\\xe0\\x12$,\\x13\\x12B!!B!!R\\x1d\\x89\\x1f\\x1f\\xc8\\x13\\r\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\xfe\\xdb\\x1f\\x1f\\x1f\\x1f\\x98\\x01\\xa0\\xfe`\\x01\\x16\\x05\\x05\\x06\\x0511\\x05\\x06\\b\\r1\\n\\n1\\v\\x05\\x05\\x06\\x0511\\x05\\x06\\b\\r1\\n\\n1\\xaf\\x13\\r\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\u007f\\x1d\\x1a\\x1e\\x1eo8888\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x007\\x00;\\x00?\\x00\\x00\\x01267\\x15\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x0146;\\x015#\\\"&=\\x01\\x1e\\x013\\a\\x1535\\x175#\\x15\\x01x\\x1eP\\x1a\\x13\\r 0\\a\\t\\t\\a0\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t0\\a\\t\\t\\a0 \\r\\x13\\x1aP\\x1e\\b`\\xa0`\\x01\\xa0\\x13\\r`\\r\\x13@\\t\\a \\a\\t\\xf0\\a\\t\\t\\a\\xf0\\xf0\\a\\t\\t\\a\\xf0\\t\\a \\a\\t@\\x13\\r`\\r\\x13`@@@@@\\x00\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x82\\x01\\xc0\\x00@\\x00D\\x00H\\x00\\x00%\\x16\\a\\x06\\x0f\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01'&'&?\\x015'&4?\\x015'&6?\\x01\\x17\\x1e\\x01\\x0f\\x01\\x15\\x17\\x16\\x14\\x0f\\x01\\x15%\\x1535\\x05!5!\\x02y\\b\\x01\\x01\\b7\\t\\a \\a\\t\\xa0\\t\\a \\a\\t\\xa0\\t\\a \\a\\t7\\b\\x01\\x01\\bY7\\t\\tw\\x1b\\x06\\x03\\a\\xb7\\xb7\\a\\x03\\x06\\x1bw\\t\\t7\\xfe\\xc0\\xc0\\xff\\x00\\x01@\\xfe\\xc0/\\x05\\n\\b\\x04\\x140\\a\\t\\t\\a00\\a\\t\\t\\a00\\a\\t\\t\\a0\\x14\\x04\\b\\n\\x051@\\x12\\x04\\x14\\x042@\\x10\\x06\\x10\\x04VV\\x04\\x10\\x06\\x10@2\\x04\\x14\\x04\\x12@\\xe0@@\\xe0@\\x00\\x00\\x02\\x00\\x00\\xff\\xfb\\x02\\a\\x01\\x85\\x00\\x11\\x00-\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01#\\\"&=\\x0146;\\x01\\x05\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\a\\xd7\\v\\x1e\\x1e\\vYf\\n\\x0e\\x0e\\nf\\x01P-\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f\\x01y\\v\\f\\x10\\xfe\\xb0\\x10\\f\\vY\\x0e\\n\\x90\\n\\x0e`.\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v..\\v\\v\\x17\\f\\f--\\f\\f\\x17\\v\\v\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x00%\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14&264&#\\\"\\x06\\x14\\x163\\\"&462\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xeb\\x1a\\x13\\x13\\x1a\\x13\\bP88(PppP(8S\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xe7\\x13\\x1a\\x13\\x13\\x1am8P8p\\xa0p8P\\xb8\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x04\\xff\\xff\\xff\\xc0\\x02@\\x01\\xc2\\x00\\x1b\\x004\\x00D\\x00L\\x00\\x00\\x01\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a#\\\"\\x1d\\x01\\x14;\\x01\\a!\\x11!\\a\\x01\\x16\\x0f\\x01\\x06&'.\\x017>\\x01\\x1f\\x01\\x16\\x0f\\x01\\x06/\\x01\\x06\\x1776\\x17\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x16264&\\\"\\x06\\x14\\x01\\x88\\b\\b\\x9e\\x12\\x8c\\b\\b\\x84\\x12r\\b\\bi\\x11\\xfe\\xe0\\x01\\x80\\x11\\xfep\\x05\\f'\\n\\x19\\aF\\x02F\\b\\x19\\v'\\f\\x05\\x1a\\x05\\f-\\x1b\\x1b-\\f\\x05\\x01[\\x1b%\\x13\\r\\xfe\\xa0\\r\\x13%\\x1b\\x83\\x1a\\x13\\x13\\x1a\\x13\\x01\\x80\\b\\x10\\b@\\b\\x10\\b@\\b\\x10\\b@\\x01`@\\xfe\\xf1\\r\\a\\x18\\x06\\x03\\bM\\xcfN\\t\\x05\\a\\x18\\a\\r?\\f\\x01\\x05JJ\\x05\\x01\\fp%\\x1b \\r\\x13\\x13\\r \\x1b%`\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x1e\\x000\\x00L\\x00T\\x00\\\\\\x00\\x00\\x00\\\"&462\\x16\\x14\\x17\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x06\\\"\\x06\\x15\\x14\\x17\\x15\\x14\\x16;\\x0126=\\x01654\\a\\x06\\x1f\\x01\\a\\x06\\x1f\\x01\\x16?\\x01\\x17\\x16?\\x016/\\x0176/\\x01&\\x0f\\x01'&\\a\\x175!\\\"\\x06\\x14\\x163\\x12\\\"&462\\x16\\x14\\x01\\x17\\x0e\\t\\t\\x0e\\t\\xa0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xafB/ \\t\\a@\\a\\t \\xc3\\x03\\aGG\\a\\x03\\x06\\x03\\bbb\\b\\x03\\x06\\x03\\aFF\\a\\x03\\x06\\x03\\bbb\\b\\x03\\xfa\\xfe\\xe3\\r\\x13\\x12\\x0ew\\x0e\\t\\t\\x0e\\t\\x018\\t\\x0e\\t\\t\\x0e\\xe7\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a\\x1e&\\x1a \\x13\\r\\a\\t\\t\\a\\r\\x13 \\x1a\\x81\\b\\x03\\x1e\\x1e\\x03\\b\\x0e\\b\\x03++\\x03\\b\\x0e\\b\\x03\\x1e\\x1e\\x03\\b\\x0e\\b\\x03**\\x03\\b\\xef@\\x12\\x1c\\x12\\x018\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc7\\x00 \\x00#\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x13'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x13%\\a3\\x02p\\a\\t\\t\\a\\xfd\\xa0\\a\\t\\t\\a\\x19\\xef5\\t\\r\\x19\\r\\n))\\n\\r\\x19\\r\\t5\\xef\\xfe\\xe9t\\xe8\\t\\a \\a\\t\\t\\a \\a\\t\\x01JJ\\r\\t\\x13\\t\\r88\\r\\t\\x13\\t\\rJ\\xfe\\xb6\\xa0\\xa0\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xa0\\x00-\\x007\\x00?\\x00G\\x00\\x00\\x01\\x1e\\x03327\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&5\\x114&\\\"&4632\\x16\\x1d\\x01>\\x03?\\x01\\x15\\x14\\x06\\\"&=\\x01\\x17\\x06264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x01#\\x04\\x17!*\\x17\\x0f\\x11\\t\\a \\a\\t\\x80 \\r\\x13\\t\\a\\xb0\\x1a&\\x13\\x1a\\x13\\x13\\r(8\\x1333\\x1c\\xab@8P8@\\x0f\\x0e\\t\\t\\x0e\\tY\\x0e\\t\\t\\x0e\\t\\x01\\x00\\x16&\\x1b\\x0f\\x04\\xce\\a\\t\\t\\a\\x90`\\x13\\r\\x10\\a\\t&\\x1a\\x01\\x00\\r\\x13\\x13\\x1a\\x138(V\\x1d'\\x0e\\x04`@\\x86(88(\\x86@P\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\x00\\x02\\xff\\xfc\\xff\\xc0\\x01\\xc4\\x01\\xc0\\x00\\x17\\x007\\x00\\x00\\x13\\x15#546;\\x012\\x16\\x1d\\x01#54'\\x15#5#\\x15#5\\x06\\x01\\x16\\x06#\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01\\\"&?\\x0163!2\\x17p0K5@5K0(000(\\x01N\\x05\\x13\\x10\\t\\a \\a\\t\\xff\\x00\\t\\a \\a\\t\\x10\\x14\\x06\\n\\b\\x17\\x01j\\x17\\b\\x01@\\x80\\x805KK5\\x80\\x80.\\x17\\xc5\\xd0\\xd0\\xc5\\x17\\xfe\\xfc\\x0f\\x1bp\\a\\t\\t\\app\\a\\t\\t\\ap\\x1b\\x0f \\x16\\x16\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02B\\x01\\xc0\\x00\\x1c\\x00<\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06+\\x01\\\"&54674&54632\\x16\\x17632\\x16\\x15\\x1476\\x16\\a\\x06\\a&'654&#\\\"\\a&'&54632\\x17\\x1e\\x01\\a\\x0e\\x01\\x15\\x14\\x16\\x01W\\x1f*/!\\xf0(8$\\x1d\\x018(\\x1b,\\r\\x12\\x1a\\x1a&\\xd5\\x06\\a\\x045T\\x11%\\x018(\\x13\\x11\\a\\n\\x02qO\\x11\\x12\\x06\\x02\\x05#)m_\\x02.\\x1f!/8(\\x1f1\\n\\x01\\x04\\x01(8\\x1b\\x17\\x12&\\x1a\\x11'\\x01\\v\\x05A\\x05$\\x10\\x06\\x05(8\\a\\a\\a\\r\\fPp\\x03\\x01\\r\\x03\\x14F)F[\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x80\\x01\\xc0\\x00\\x1e\\x00D\\x00Q\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&54674&454632\\x16\\x17632\\x16\\x15\\x14\\x06%\\x16\\x17\\x06\\x0f\\x01\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x01\\x06\\a&'&\\\"\\x06\\x1474632\\x16\\x17\\x06\\a\\x06\\a.\\x01\\x02?\\x1d$8(\\xfe\\xf0(84%\\x01B.\\\"6\\x0e\\x10\\x12\\x1a&\\x01\\xfeR\\x0f\\x15\\x0f\\tL\\t\\r\\x03\\x1dS\\b\\bS\\x1d\\x03\\r\\tX)\\x05\\x12\\x05)X\\t\\r\\x03\\x1e\\x11\\r\\t\\x0e!\\\\B\\x1c1#\\x19)\\n;\\b\\f\\r\\x1d'z\\n1\\x1f(88(&6\\x03\\x01\\x04\\x03\\x01.B$\\x1e\\n&\\x1a\\x01\\x04\\x16\\x10\\b\\x0f\\x13\\x19\\x03\\r\\tX)\\x05\\x12\\x05)X\\t\\r\\x03\\x1dS\\b\\bS\\x1d\\x03\\r\\tY\\x02\\x06\\x14\\r!B\\\\.#1\\x1b\\x17$D\\x04\\b\\x05/\\x00\\x00\\n\\xff\\xfe\\xff\\xbe\\x01\\xe2\\x01\\xc0\\x00\\x05\\x00\\x0e\\x00\\x17\\x00 \\x00'\\x000\\x00:\\x00E\\x00K\\x00O\\x00\\x007\\x17'\\\"&?\\x01\\x06&=\\x0146\\x1f\\x01\\a&63\\x17\\x15\\x14\\x06'\\x03'&4?\\x016\\x16\\a\\x17#762\\x1f\\x0176\\x16\\x1d\\x01\\x14\\x06/\\x03&>\\x01\\x1f\\x01\\x16\\x14\\a\\x032\\x16\\x0f\\x01\\x06\\\".\\x01=\\x017\\x17\\x16\\x06#\\a'3\\a'kl\\xd0\\x04\\x04\\x02\\x06\\x01\\x06\\x04\\x02MA\\x03\\x02\\x03\\xcc\\a\\x04rQ\\x02\\x02\\x97\\x05\\t\\x04=m_\\x05\\x12\\x05_}\\x02\\x04\\x06\\x01L\\x10P\\x02\\x02\\a\\x03\\x97\\x02\\x02\\x02\\x03\\x02\\x03\\xc3\\x02\\x04\\x03\\x02uj\\x02\\x04\\x04\\xd0\\x19ddd\\xe9\\xbe\\x16\\b\\x048\\x03\\x02\\x03\\xa2\\x03\\x02\\x01.\\xe7\\x02\\x06\\x16B\\x04\\x05\\x02\\x01Y1\\x01\\x04\\x02b\\x03\\t\\x05\\x99\\xa8\\b\\b\\xa8\\x1d\\x01\\x02\\x03\\xa2\\x03\\x02\\x03z\\x1b\\x8f\\x04\\a\\x02\\x02b\\x02\\x04\\x01\\xfe\\xd5\\x06\\x02W\\x01\\x02\\x04\\x02Bߜ\\x04\\b\\x16Ű\\xb0\\x00\\x03\\x00\\x00\\xff\\xbd\\x01\\xc0\\x01\\xcb\\x00\\v\\x00\\x17\\x00#\\x00\\x00\\x01\\x16\\x14\\x0f\\x01'&4?\\x016\\x1f\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06&=\\x01'46\\x1f\\x01\\x15\\x14\\x06/\\x01&5\\x01\\xa6\\x04\\x04\\xc6\\xc6\\x04\\x04\\xa6  \\xb4\\x04\\b \\x98\\b\\x10\\xf0\\b\\x04\\xc4\\x10\\b\\x98 \\x01R\\x02\\n\\x02ww\\x02\\n\\x02e\\x14\\x14\\x92\\x03\\x05\\x05\\xc6&\\x13]\\x05\\n\\n\\xe0m\\x05\\x05\\x03t\\xe0\\n\\n\\x05]\\x13&\\x00\\x00\\x00\\x00\\x03\\x00 \\xff\\xc0\\x02 \\x01\\xa3\\x00\\x1e\\x004\\x00<\\x00\\x00%\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01.\\x015462\\x16\\x14\\x163%\\x15\\x14\\x06+\\x01\\x15'546\\x1f\\x0132\\x1e\\x01\\x1f\\x0132\\x16\\x064&\\\"\\x06\\x14\\x162\\x01*\\x96\\t\\a@\\a\\t\\xa0\\t\\a@\\a\\t\\x1c$\\x13\\x1a\\x13\\x13\\r\\x01\\xa0&\\x1a \\x80\\x14\\a\\x1c5\\x06\\v\\t\\x03\\a@\\a\\tp\\t\\x0e\\t\\t\\x0e\\xe06\\xda\\a\\t\\t\\app\\a\\t\\t\\a\\xd6\\n1\\x1f\\r\\x13\\x13\\x1a\\x13p \\x1a&$.\\x96\\v\\b\\b\\x1b\\x05\\b\\x05\\x0e\\t\\x0e\\x0e\\t\\t\\x0e\\t\\x00\\x03\\xff\\xfc\\xff\\xbf\\x02\\x82\\x01\\xc0\\x00\\x10\\x00C\\x00I\\x00\\x007\\x06&?\\x01>\\x01\\x1f\\x01\\x15\\x14\\x17#\\\"&?\\x01\\x05\\x1e\\x01\\a\\x0e\\x01#!\\\"&547>\\x027.\\x01=\\x01'&4?\\x01'&6;\\x012\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01#\\x15\\x14\\x16\\x177\\x06\\x16\\x17\\x167\\x12\\f\\t\\tu\\x11*\\x12x\\x0f\\xdf\\v\\b\\b[\\x01\\u007f #\\x02\\x03H0\\xfe\\r\\b\\n\\x0eGU\\xbcZ-3<\\x04\\x04<>\\x03\\x04\\x05\\xed\\x10\\nK\\x06\\x03\\x0f\\x03\\x11\\b\\x1f\\x0e\\t\\x1c@\\x10\\v\\x0e\\x03\\x0e\\v\\x13\\x05\\xc0\\x01\\x16\\au\\x0e\\x02\\fW+*)\\x14\\aEB\\x10<#/@\\n\\b\\x0e\\x03\\x10\\x11\\x19\\x03\\x1e_6m\\x19\\x02\\n\\x02\\x192\\x04\\n\\rc\\t\\n\\b\\a\\x1c\\b\\n\\t\\x17%\\f\\x19\\x06\\xae\\f\\x11\\x01\\x01\\x13\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xbf\\x02\\x03\\x01\\xc0\\x00.\\x00\\x00\\x01\\x16\\a&\\x06\\a\\x0e\\x01\\x17\\x06#\\\"+\\x01\\a\\x06\\x17\\x16\\x15\\x14\\x06\\\"'&7\\x06'&54>\\x0132\\x17\\x16?\\x01547>\\x0232\\x16\\x01\\xcf3\\x02\\x1fH\\x1a\\x1e\\x01\\x1e\\x1d\\x1f\\x01\\x01V(\\x0f\\t\\x04#2\\x12\\x17\\b\\\"\\x16\\x12\\x10\\x1c\\x10\\f\\v\\x16\\x0f(?\\x0e).\\x13\\x1dF\\x01\\x8e3I\\x11\\t\\x19\\x1eX!\\n)\\x0e\\x16\\v\\f\\x19#\\x12\\x16\\\"\\b\\x17\\x12\\x19\\x10\\x1c\\x10\\x04\\t\\x0f(VO?\\x0e\\x17\\r\\x1d\\x00\\x00\\x00\\x00\\f\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x10\\x00 \\x000\\x00@\\x00P\\x00`\\x00p\\x00\\x80\\x00\\x90\\x00\\x9a\\x00\\xa3\\x00\\xac\\x00\\x007\\x16\\a\\x06\\a\\x06+\\x01\\\".\\x01767>\\x01\\x17%\\x1e\\x01\\x0f\\x01\\x06+\\x01\\\"/\\x01&6762\\x032\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x13\\x16\\a\\x06\\a\\x06/\\x01.\\x017676\\x16\\x1f\\x01\\\"'&'&?\\x016\\x16\\x17\\x16\\x17\\x16\\x06#'\\x16\\x06\\x0f\\x01\\x06'&'&?\\x01>\\x01\\x17\\x16\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463'62\\x17\\x11\\x14+\\x01\\\"5'67\\x11\\x14+\\x01\\\"5\\x13\\x16\\x17\\x15\\x14+\\x01\\\"5\\x81\\v\\x05\\x05\\x01\\x02\\ra\\x05\\a\\x05\\x01\\x03\\x13\\x03\\x0e\\x06\\x01\\x11\\a\\x06\\x03%\\x04\\v*\\v\\x04%\\x03\\x06\\a\\x1f@\\xb0\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a\\xad\\x05\\v\\t\\b\\t\\vS\\x06\\x03\\x05\\x1e*\\x06\\r\\x03\\xf5\\r\\x02\\x01\\x05\\x05\\vS\\x06\\x0e\\x03\\x13\\x03\\x01\\n\\a*\\x05\\x03\\x06S\\v\\t\\b\\t\\v\\x05$\\x03\\r\\x06*I\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a\\xa0\\n\\f\\n\\b\\x10\\b@\\f\\x14\\b\\x10\\b\\x80\\x14\\f\\b\\x10\\b\\xfd\\a\\r\\r\\x0e\\x0e\\x05\\a\\x05.+\\x06\\x04\\x04\\x88\\x02\\r\\x06h\\v\\vh\\x06\\r\\x02\\b\\xfe\\xe0\\t\\a@\\a\\t\\t\\a@\\a\\t\\x80\\t\\a@\\a\\t\\t\\a@\\a\\t\\x01\\x1c\\f\\b\\x06\\b\\t\\a3\\x04\\x0e\\x06$\\x18\\x03\\x05\\a\\xd6\\x0e\\x0e\\r\\r\\a3\\x04\\x04\\x06+.\\a\\n\\xa3\\x06\\x0e\\x043\\a\\t\\b\\x06\\b\\fZ\\a\\x05\\x03\\x18\\xe7\\t\\a@\\a\\t\\t\\a@\\a\\t\\x80\\t\\a@\\a\\t\\t\\a@\\a\\t\\xee\\x02\\x02\\xfe\\xda\\b\\b\\xfd\\x12\\f\\xfe\\xe5\\b\\b\\x01\\x1b\\f\\x12\\xfd\\b\\b\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00-\\x00O\\x00h\\x00q\\x00\\x00\\x13\\x14\\x16;\\x01\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01\\x0354+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x012=\\x014+\\x01\\\"&=\\x0146;\\x012\\x172654/\\x01&54;\\x012=\\x014+\\x01\\\"\\x06\\x15\\x14\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"\\x1d\\x01\\x14374+\\x01\\\"\\x1d\\x01\\x14\\x17\\x16276=\\x014+\\x01\\\"\\x1d\\x01\\x14\\a&57\\x16\\x1d\\x01#532\\x17\\xe0\\x0e\\n\\x88\\x0e\\n\\xfe\\xb0\\n\\x0e\\x0e\\n\\xc8`\\b\\b\\x14\\x1c\\x1c\\x14\\b\\b\\b\\b\\a\\t\\t\\a\\b\\b,\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\f\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b`\\b\\x10\\b$\\x05\\x0e\\x05$\\b\\x10\\b\\x10\\x10y\\a\\x80\\x06\\n\\a\\x018\\n\\x0e\\xfe\\xb8\\n\\x0e\\x0e\\n\\x01\\xd0\\n\\x0e\\xfe\\xe8\\x10\\b\\x1c\\x14 \\x14\\x1c\\b\\x10\\b\\t\\a \\a\\t`\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\b\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\bx\\b\\b\\x157'\\x05\\x05'7\\x15\\b\\b\\x15\\x1f\\x1a\\x1a\\x1f\\xb4\\a\\n\\x06\\x80\\a\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00D\\x00P\\x00`\\x00p\\x00\\x00\\x01#\\\"\\a546;\\x012\\x16\\x15\\x17\\x15\\x14\\x06\\x0f\\x01\\x15!5'&=\\x01\\x16;\\x0127\\x16;\\x0127\\x16\\x17\\x06\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\x1632?\\x01>\\x0272=\\x014+\\x01\\\"&546;\\x012\\x16'&+\\x01546;\\x012\\x16\\x15\\x05\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01\\x000\\b\\b\\t\\a \\a\\t\\x80\\x10\\f$\\xff\\x00\\x1b%\\b\\b \\x12\\x0e\\x0e\\x12 \\v\\v\\f\\x1b\\x15\\x1b\\x06\\x01\\x03\\x0e\\x02\\x02\\x04\\x03\\x06\\x12\\x18 \\x16\\b\\r#\\x14\\x1c\\t\\ap\\x1a& \\x11\\x0f \\t\\a \\a\\t\\xfe\\xb0\\a\\t\\t\\a \\a\\t\\t\\a@\\a\\t\\t\\a \\a\\t\\t\\a\\x01 \\x03\\x93\\a\\t\\t\\a\\xf0X\\x11'\\f$@@\\x1b%5N\\x03\\f\\f\\x06\\x1a\\t\\x12(\\t\\x02\\x03\\x04\\x03\\b\\x02\\x04\\t\\x1b\\x1b\\x12\\x01\\b\\x10\\b\\x1c\\x14\\a\\t%?\\x06p\\a\\t\\t\\a\\xb0\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\x00\\x03\\x00\\x00\\xff\\xb9\\x01\\x80\\x01\\xc3\\x00\\x1e\\x00&\\x00.\\x00\\x00\\x136\\x16\\x15\\x11\\x14\\x06/\\x01&\\x0f\\x01\\x06/\\x01&\\\"\\x0f\\x01\\x06/\\x01&\\x0f\\x01\\x06&5\\x1146\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\xbaRt\\x14\\a\\x19\\f\\n+\\v\\v)\\x05\\x0e\\x05)\\v\\v+\\n\\f\\x19\\a\\x14l\\a\\x1a\\x13\\x13\\x1a\\x13\\x93\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x02qQ\\xfe\\xf0\\v\\b\\b\\x12\\t\\v0\\f\\f.\\x05\\x05.\\f\\f0\\v\\t\\x12\\b\\b\\v\\x01\\bPv\\xde\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02G\\x01\\xc0\\x00\\x1b\\x00'\\x00\\x00%\\x16\\x0f\\x01\\x06/\\x01&?\\x01'\\x06/\\x01&=\\x01'62\\x1f\\x01\\x16\\a\\x1776\\x17\\x05\\x17\\x16\\x17\\a\\x06\\\"&47%\\x16\\x02;\\f\\fZ\\v\\f\\x16\\f\\f\\v\\x1d$\\x1a1\\x13Z/\\x84/-\\x1a\\t\\x1d\\v\\v\\f\\xfe\\xf81\\x04\\a\\xee\\x124%\\x14\\x00\\xff\\x05\\xfe\\v\\fZ\\v\\v\\x17\\v\\v\\f\\x1c\\t\\x1a1\\x13\\x1a\\x13-//-\\x1a$\\x1d\\f\\v\\v\\b1\\x04\\x05\\xff\\x14%4\\x12\\xee\\a\\x00\\x00\\x00\\x10\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x00m\\x00x\\x00\\x83\\x00\\x90\\x00\\x9b\\x00\\xa8\\x00\\xb3\\x00\\xbe\\x00\\xc9\\x00\\xd6\\x00\\x00\\x1332\\x1d\\x01#54#32\\x1d\\x01#54;\\x012\\x1d\\x01#54;\\x012\\x1d\\x01#54\\x17\\x15#54;\\x012!32\\x1d\\x01#54!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x16;\\x01546;\\x012\\x16\\x1d\\x01326=\\x014636\\\"&546?\\x01\\x16\\x15\\x14\\x04\\\"&546?\\x01\\x16\\x15\\x14%\\\".\\x01546?\\x01\\x16\\x15\\x14\\x0e\\x01\\\"&546?\\x01\\x16\\x15\\x14\\x17\\\"&546?\\x01\\x16\\x15\\x14\\x0e\\x012\\\"&546?\\x01\\x16\\x15\\x14\\x16\\\"&546?\\x01\\x16\\x15\\x14\\x16\\\"&546?\\x01\\x16\\x15\\x14\\x17\\\"&546?\\x01\\x16\\x15\\x14\\x0e\\x01\\xe8\\x10\\b 8\\x10\\b \\xe8\\x10\\b H\\x10\\b ` \\b\\x10\\b\\xfeH\\x10\\b \\x02\\x10\\a\\t8(\\xc0\\xb0\\a\\t\\t\\a\\xfe`\\a\\t\\t\\a\\xb0\\xc0(8\\t\\a \\a\\t\\x13\\r\\xc0\\t\\a \\a\\t\\xc0\\r\\x13\\t\\a\\x1a\\x14\\x0e\\f\\x06\\x06\\x18\\xfd\\xb2\\x14\\x0e\\f\\x06\\x06\\x18\\x01\\b\\a\\v\\x06\\f\\x06\\x06\\x18\\x0e\\xd0\\x14\\x0e\\f\\x06\\x06\\x18(\\n\\x0e\\f\\x06\\x06\\x18\\x06\\vC\\x14\\x0e\\f\\x06\\x06\\x18\\x92\\x14\\x0e\\f\\x06\\x06\\x182\\x14\\x0e\\f\\x06\\x06\\x18(\\n\\x0e\\f\\x06\\x06\\x18\\x06\\v\\x01 \\bxx\\b\\bxx\\b\\bxx\\b\\bxx\\b\\bxx\\b\\bxx\\b\\t\\ap(8@\\t\\a \\a\\t\\t\\a \\a\\t@8(p\\a\\t\\t\\ap\\r\\x13\\xc0\\a\\t\\t\\a\\xc0\\x13\\rp\\a\\t \\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v \\a\\f\\b\\x06\\x1b\\n\\n'\\x0e\\v\\x100\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\b\\f\\a\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\v\\x10\\x10\\v\\x06\\x1b\\n\\n'\\x0e\\b\\f\\a\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00$\\x00,\\x00\\x00!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\x17#7>\\x01?\\x01\\a\\x06\\x15\\x14\\x1f\\x01#?\\x01/\\x01\\x0f\\x017\\a\\x1f\\x01?\\x01/\\x01\\x01\\xf0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\xb0\\x10\\x90o\\a\\x1f\\x0f\\xbc8\\x04\\x06V\\xd0\\x10@@  @\\x80  \\x10\\x10  \\x10\\t\\a \\a\\t\\t\\a \\a\\t@ \\xfa\\x10\\\"\\tk\\xa9\\n\\n\\r\\f\\xca   @@ \\xc0\\x10\\x10  \\x10\\x10 \\x00\\x00\\x04\\xff\\xff\\xff\\xbf\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x1b\\x00J\\x00R\\x00\\x00\\x177\\x17\\a\\x0e\\x01#\\\"'.\\x027\\x0e\\x01/\\x01.\\x02?\\x01>\\x01\\x17\\x1e\\x01\\a\\x172\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&=\\x01#\\\"/\\x01\\a\\x061\\x17\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x01'&54?\\x01>\\x0132\\x1f\\x0135463&\\\"&462\\x16\\x14Q#4\\x19\\x03\\x11\\v\\x04\\x04\\b\\f\\x05\\x11\\x02\\v\\a@\\x04\\x06\\x03\\x01\\x1a\\b:!\\a\\a\\x02\\xe7\\a\\t\\t\\a\\x10\\a\\t0\\r\\n\\x16\\x14\\x01/\\x13\\x13\\x1a\\x13W\\t\\x01\\x1b\\x05 \\x14\\x18\\x11/#\\t\\a\\\\(\\x1c\\x1c(\\x1c\\x18\\x8a5e\\v\\r\\x01\\x02\\f\\x10\\xcd\\x06\\a\\x01\\x10\\x01\\x06\\b\\x04b\\x1f\\\"\\b\\x02\\v\\x06+\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\xf0\\t\\x17P\\x01/\\x13\\x1aS\\r\\x13\\x13\\rSV\\n\\r\\x04\\x04k\\x14\\x19\\x11/\\x10\\a\\t@\\x1c(\\x1c\\x1c(\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00>\\x00F\\x00\\x00\\x012\\x1e\\x01\\x1d\\x01\\x14\\x06#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01\\x06\\\"'\\x15\\x14\\x06+\\x01\\\"&=\\x014632\\x17546;\\x012\\x16\\x1d\\x01632\\x1e\\x01\\x17>\\x02\\x06264&\\\"\\x06\\x14\\x02E\\x11\\x1b\\x0f\\x13\\r\\t\\a \\a\\t\\x80\\t\\a@\\a\\t3z3\\t\\a@\\a\\tpPI7\\x0e\\n\\x10\\n\\x0e\\x11\\x0f\\x14#\\x1a\\b\\a\\x1f\\x1a\\x80\\x0e\\t\\t\\x0e\\t\\x01`\\x14\\x1f\\x11\\\\\\r\\x13 \\a\\t\\t\\a \\xb0\\a\\t\\t\\aG\\x17\\x17G\\a\\t\\t\\a\\xf0B^)1\\n\\x0e\\x0e\\n\\x0e\\x06\\x0f\\x1b\\x11\\x03\\x0f\\tP\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00K\\x00S\\x00\\x00\\x01\\x15\\x14\\x0e\\x01\\x0f\\x01\\x06&/\\x02\\x150\\x15\\x14\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01'\\a\\x17\\x16\\x06+\\x01\\\"/\\x01&54?\\x01&5457\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x156;\\x0146;\\x012\\x16\\a\\x06\\a\\x16\\x17\\x16\\x06264&\\\"\\x06\\x14\\x02@\\x05\\n\\x05!\\v\\x18\\x05\\x13\\x10 \\t\\a@\\a\\t\\x86\\x18\\x1a\\x02\\t\\bB\\f\\x03\\x19\\x02\\x04\\x1a\\x1f\\x01\\x11\\t\\a\\x10\\a\\t4$\\x1d+\\xa0K5x\\x04\\x05\\x01\\x04\\x12\\a\\x06\\tG\\x0e\\t\\t\\x0e\\t\\x01sM\\x06\\f\\n\\x02\\r\\x05\\t\\v&\\af\\x01-!\\xb2\\a\\t\\t\\a\\x96\\x17@i\\b\\f\\fd\\a\\b\\f\\vD\\x1d)\\x02\\x03\\x03\\r\\x138\\a\\t\\t\\a8$4\\x01!5K\\x06\\x04\\x13\\v\\b\\a\\t \\t\\x0e\\t\\t\\x0e\\x00\\x00\\x00\\x02\\xff\\xf9\\xff\\xc0\\x02G\\x01\\xc1\\x00\\x17\\x004\\x00\\x00\\x01\\x17\\x1e\\x013\\x15\\x14\\x06+\\x01'7'\\x17\\a\\x17#\\\"&=\\x01265%\\x16\\x0f\\x01\\x06/\\x01&\\x0f\\x01\\x06/\\x01&7%62\\x1f\\x01546;\\x012\\x16\\x1d\\x01\\x01 \\xdb\\x01\\x03\\x01\\t\\a\\xb0(h\\x94<h%\\x95\\a\\t\\x01\\x04\\x01\\xf6\\f\\v\\x15\\v\\f\\xe5\\v\\v\\xe5\\f\\n\\x16\\v\\f\\x01\\x00\\f\\x1e\\fe\\t\\a@\\a\\t\\x01M\\xc1\\x01\\x02\\xb9\\a\\t7@\\x89w@I\\t\\a\\xb9\\x02\\x01H\\v\\f\\x18\\f\\v\\xca\\n\\n\\xca\\v\\f\\x18\\f\\v\\xe2\\n\\nZ4\\a\\t\\t\\a\\x88\\x00\\x01\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00Z\\x00\\x00%#\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x06\\x15\\x14\\x16;\\x012?\\x016\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x06+\\x01\\\".\\x01'&7#\\\"&=\\x0146;\\x017#\\\"&=\\x0146;\\x017654&+\\x01\\\"\\x0f\\x01\\x06&/\\x01&6?\\x016;\\x012\\x16\\x17\\x16\\a32\\x16\\x1d\\x01\\x14\\x06\\x01pd\\\"\\x86\\a\\t\\t\\a\\xcc\\x1d\\a\\f\\tT\\t\\x06\\f\\b\\x13\\a\\x14\\a\\x02\\b\\f\\x1d%O\\x13#\\x1d\\t\\x1b\\x17*\\a\\t\\t\\ad\\\"\\x86\\a\\t\\t\\a\\xcc\\x1d\\a\\f\\tT\\t\\x06\\f\\b\\x13\\a\\x14\\a\\x02\\b\\f\\x1d%O\\x1c2\\x0e\\x1b\\x17*\\a\\t\\t\\xd0 \\t\\a \\a\\t\\x1b\\a\\t\\t\\f\\x06\\t\\a\\x02\\b\\x18\\b\\x14\\x06\\n\\x18\\v\\x17\\x10.0\\t\\a \\a\\t \\t\\a \\a\\t\\x1b\\a\\t\\t\\f\\x06\\t\\a\\x02\\b\\x18\\b\\x14\\x06\\n\\x18\\x1a\\x18.0\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x03\\xff\\xf1\\x00\\x00\\x02\\x95\\x01\\x80\\x00\\x17\\x00!\\x00+\\x00\\x00\\x012\\x17\\x16\\a\\x06\\a\\x06#\\\"/\\x01&\\\"\\x0f\\x01\\x06#\\\"&7676\\x06276'&\\\"\\a\\x06\\x17\\x04276'&\\\"\\a\\x06\\x17\\x01A\\xd7J2\\x1f\\x1b?\\x1d\\x1f?&\\x1a\\f'\\f\\x19&@Oa\\x13\\x17rJO^!\\t\\t!^!\\t\\t\\x011^!\\t\\t!^!\\t\\t\\x01\\x80mIWH\\x1e\\r8&\\x11\\x11&8\\x88P`,\\x1c\\xf4)\\v\\v))\\v\\v))\\v\\v))\\v\\v\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x02\\x81\\x01\\xc0\\x00\\x12\\x00\\x17\\x00\\x00\\x05\\x16\\x15\\x14\\a\\x06#!\\\"&'&547\\x0162\\x17\\x0f\\x01\\x1773\\x02{\\x05\\x04\\t\\x13\\xfd\\xc0\\b\\x10\\x04\\x04\\x05\\x01 \\n\\\"\\n\\x1bf&@U\\x0f\\b\\t\\b\\a\\x11\\n\\a\\a\\b\\t\\b\\x01\\xc0\\x0f\\x0fL\\x9f&@\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00K\\x00O\\x00S\\x00W\\x00\\x00%\\x14\\x06+\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015!\\x1532\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&=\\x01463!5#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15!2\\x16\\x15%35#\\x035#\\x15!5#\\x15\\x02\\x80\\t\\ah8\\r\\x13\\x13\\r\\xa0\\r\\x13\\x13\\r8\\xfe\\xd08\\r\\x13\\x13\\r\\xa0\\r\\x13\\x13\\r8h\\a\\t\\t\\a\\x01\\x18H\\r\\x13\\x13\\r\\xc0\\r\\x13\\x13\\rH\\x01\\x18\\a\\t\\xfe\\x80\\x80\\x80@`\\x01\\xc0`\\xb8\\a\\t(\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13((\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13(\\t\\a\\x10\\a\\t(\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13(\\t\\ax@\\xfe\\x80@@@@\\x00\\x00\\x00\\x03\\xff\\xf9\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00>\\x00F\\x00N\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x1732\\x16\\x1d\\x01\\x14\\x06+\\x01'\\a32\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x14\\x16;\\x012\\x16\\x14\\x06+\\x01\\\"&'&76=\\x0146;\\x0176;\\x022\\x1f\\x01\\x06\\\"\\x06\\x14\\x16264\\x17267#\\a\\x177\\x02`\\r\\x138(\\x17\\\\7\\x1c\\r\\x13\\t\\aPK\\x95@\\r\\x13\\t\\a\\xe0\\a\\t\\t\\ap\\r\\x13\\x13\\rl\\x1e0\\x05\\a\\x1e(pP8\\x99\\x0f\\x11\\x14\\x01\\x1a\\x13\\r9\\x0e\\t\\t\\x0e\\t\\x10\\x0f\\x19\\x05Mw\\x0ef\\x01\\xa0\\x13\\r (82n\\x13\\r\\x10\\a\\t\\x90P\\x13\\r\\x10\\a\\t\\t\\x0e\\t\\x13\\x1a\\x13%\\x1d*\\x1e&.\\x02PpX\\b\\x13\\r\\x10\\t\\x0e\\t\\t\\x0eW\\x12\\x0e;\\x1c7\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\v\\x00\\x17\\x00\\x1d\\x00\\x00\\x122\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x014$\\\"\\x06\\x15\\x14\\x1762\\x17654\\x05\\x1627&\\\"\\x93ړ\\x96Ԗ\\x01P\\xa0p\\vI\\xd8I\\v\\xfe\\xb89\\x9e9:\\x9c\\x01\\x80R>b;SS;b>\\x12/!\\r\\r**\\r\\r!Z\\x17\\x17\\x19\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xa0\\x01\\xc0\\x00\\a\\x00\\x15\\x00B\\x00\\x00\\x00\\\"&462\\x16\\x14\\a\\x16\\x1f\\x01\\a\\x06+\\x01\\\"&46;\\x01%2\\x16\\x14\\x06+\\x01\\\"/\\x01\\a\\x17\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x01'.\\x01?\\x01'&\\x0f\\x01\\x06.\\x016?\\x016\\x1f\\x01\\x16\\x1f\\x01\\x01$(\\x1c\\x1c(\\x1c\\xce\\f\\x1a\\n\\b\\r M\\r\\x13\\x13\\rC\\x01\\x1d\\r\\x13\\x13\\r6\\x1e\\r\\x14 >\\x0e\\f\\x05\\x1f\\a\\x18\\x05\\x05\\f\\f\\x03\\x1cU\\x15\\x0f\\n%\\x0f\\r\\f(\\n\\x1a\\x10\\x03\\v'%,G*\\x14\\x1a\\x01`\\x1c(\\x1c\\x1c(\\xf9\\x1c\\x0f\\x06\\x15\\x1d\\x13\\x1a\\x13\\x80\\x13\\x1a\\x13\\x1b)N$\\t\\x1e\\x0ff\\x16\\x02\\x03\\x18\\rW2\\r.\\x16W\\x05\\x03\\n\\x1e\\b\\x03\\x15\\x1b\\b\\x1e\\x1c\\v\\x15\\v(5\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00\\x122\\x16\\x1d\\x01#\\\"&=\\x014\\x01\\x14\\x06\\a\\x06&5\\x114'!2\\x16\\x15\\x11!\\x17!2\\x16\\x15\\x14\\x06#!265\\x1c(\\x1cP\\a\\t\\x01\\x00\\x1e\\x17\\x1e-\\x10\\x01P(8\\xfe\\xe0 \\x01P\\a\\tB.\\xfe\\xb0(8\\x01\\xc0\\x1c\\x14P\\t\\a@\\x14\\xfe\\u007f\\x18&\\x04\\x05'\\x1d\\x01p\\x1a\\x168(\\xff\\x00 \\t\\a.B8(\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x01\\xc2\\x01\\xc0\\x00#\\x007\\x00?\\x00G\\x00\\x00\\x05\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x06&/\\x01&6?\\x01'.\\x01?\\x01>\\x01\\x1f\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01'.\\x015462\\x16\\x15\\x14\\x06\\a\\x17\\x16\\x06+\\x01\\\"&76\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x01\\xb7\\x06\\x04\\x03\\x0e\\x03\\r\\x05\\xbb\\xbb\\x05\\r\\x03\\x0e\\x03\\x04\\x06\\x8e\\x8e\\x06\\x04\\x03\\x0e\\x03\\r\\x05\\xbb\\xbb\\x05\\r\\x03\\x0e\\x03\\x04\\x06\\x8e\\x93 &TxT& \\x06\\x02\\v\\b~\\b\\n\\x02\\x94\\x1a\\x13\\x13\\x1a\\x13\\x83\\x1a\\x13\\x13\\x1a\\x13\\x05\\x03\\r\\x06\\x1c\\x06\\x04\\x03ZZ\\x03\\x04\\x06\\x1c\\x06\\r\\x03EE\\x03\\r\\x06\\x1c\\x06\\x04\\x03ZZ\\x03\\x04\\x06\\x1c\\x06\\r\\x03E\\x93\\x11:\\\"5KK5\\\":\\x11\\x1a\\n\\x0f\\x0f\\n\\x97\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x01\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00\\v\\x00\\x00\\x05\\x01&?\\x016\\x17\\x01\\x16\\x0f\\x01\\x06\\x02S\\xfd\\xb3\\f\\t\\x14\\n\\f\\x02M\\f\\t\\x14\\n=\\x01\\xc7\\n\\r\\x19\\f\\t\\xfe9\\n\\r\\x19\\f\\x00\\x00\\x03\\xff\\xf9\\xff\\xc0\\x02G\\x01\\xc2\\x00\\x13\\x00o\\x00\\x84\\x00\\x00\\x13'&54?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x17\\x06\\x0f\\x01#\\x05\\x16\\x0f\\x01\\x06/\\x01#\\x17\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01'\\x16\\x15\\x14\\x06\\\"&547\\a\\x15\\x14\\x06+\\x01\\\"&=\\x014?\\x01#\\a\\x06/\\x01&?\\x016;\\x01'&/\\x01&?\\x016\\x1f\\x0237>\\x032\\x1e\\x02\\x1f\\x013?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06\\x0f\\x0132\\x17/\\x01&6?\\x016\\x1e\\x01\\x1f\\x01\\x16\\x15\\x14\\x0f\\x02#'&'\\x97\\x1b\\x03\\x01\\x1a\\x02\\f\\x06\\x10\\x06\\x06\\x02\\x18\\x14\\x02\\x01\\x05\\x05\\x01\\x8c\\t\\r\\r\\x0e\\t0/=\\x05\\t\\a\\x10\\a\\tJ\\x027R7\\x02J\\t\\a\\x10\\a\\t\\x05=/0\\t\\x0e\\r\\r\\t4\\n\\x11NE\\n\\a5\\t\\r\\x0e\\r\\t2=$\\n\\x02\\a\\x0f\\x1c$\\x1c\\x0f\\a\\x02\\n$=2\\t\\r\\x0e\\r\\t5\\a\\nEN\\x11\\ns\\x18\\x02\\x06\\x06\\x10\\x04\\b\\x06\\x02\\x1a\\x01\\x03\\x1b\\x1a\\x05\\x05\\x01\\x02\\x01\\x196\\a\\a\\x05\\x05N\\x06\\x06\\x02\\x05\\x02\\f\\x06H(\\x06\\x06\\x1a\\xad\\x0e\\t\\b\\t\\rHa\\b\\tN\\a\\t\\t\\aIw\\x1e\\r(==(\\x0e\\x1dwI\\a\\t\\t\\aN\\t\\baH\\r\\t\\b\\t\\x0eO\\x0e\\x18\\x04\\tP\\x0e\\t\\b\\t\\rL\\x144\\x06\\x10\\x17\\x0f\\x0f\\x17\\x10\\x064\\x14L\\r\\t\\b\\t\\x0eP\\t\\x04\\x18\\x0e\\xacH\\x06\\f\\x02\\x05\\x01\\x01\\x06\\x04N\\x05\\x05\\a\\a6\\t\\x1a\\x06\\x06\\x00\\x00\\x00\\a\\xff\\xfe\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x1c\\x00$\\x00,\\x004\\x00<\\x00D\\x00L\\x00\\x00\\x13!\\x0e\\x02\\x1d\\x01\\x14\\x0e\\x01\\a\\x06#!\\\"&7>\\a=\\x0146\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x80\\x01\\x1c\\x12\\x1b\\x0f\\b\\b\\t\\a\\x17\\xfe\\xe7\\b\\n\\x03\\x03\\t\\x04\\x06\\x03\\x03\\x02\\x018\\x01\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t\\xa8P88P8S\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\x13:J)\\xac\\x191\\x1a\\x1a\\x16\\r\\b\\t\\x1a\\r\\x13\\v\\x0f\\f\\x0e\\b\\xacPp\\xe0\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\xd7p\\xa0pp\\xa0\\x90%6%%6\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00m\\x00u\\x00z\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x132\\x16\\x1d\\x01\\x14\\x0f\\x01&#\\\"\\a#\\x15\\x14\\x06+\\x01\\x06\\a\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01\\x06\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01&'\\a\\x06\\\"/\\x01&4?\\x01&'#\\\"&=\\x0146;\\x0167'&4?\\x016\\x17546;\\x012\\x1e\\x01\\x1f\\x01354762\\x1f\\x01\\x16\\a\\x06\\x1d\\x01\\x00264&\\\"\\x06\\x1473'#\\x15\\x01\\xecH44H4N\\x14\\x0e\\x0e\\x14\\x0eh\\r\\x13\\t3\\x19\\x1b;$Q\\r\\t\\a\\x05\\a\\x05\\x06\\x06\\x1f\\a\\x12\\x06\\x05\\x0e\\x0f\\r\\t,\\t\\r\\x0f\\x0e\\x05\\x06\\x12\\a\\x1f\\x06\\x06\\x05\\a\\x05\\a\\t\\r\\r\\t\\a\\x05\\a\\x05\\x06\\x06\\x1f\\x0e\\x0f\\x1c\\x14\\x85\\t\\x12\\x0e\\x048f\\x1e\\x04\\x0f\\x05\\x16\\t\\b\\r\\xfeoB//B/fn)kp4H44H<\\x0e\\x14\\x0e\\x0e\\x14\\x01\\x12\\x13\\r3\\r\\t3\\f0\\x06\\t\\r\\x0f\\x0e\\x05\\x06\\x12\\a\\x1f\\x06\\x06\\x05\\a\\x05\\a\\t\\r\\r\\t\\a\\x05\\a\\x05\\x06\\x06\\x1f\\a\\x12\\x06\\x05\\x0e\\x0f\\r\\t,\\t\\r\\x0f\\x0e\\x05\\x06\\x12\\a\\x1f\\r\\f\\x93\\x14\\x1c\\b\\r\\b\\x83(.$\\x06\\x05\\x18\\n\\n\\x11\\x16(\\xff\\x00/B//B\\xd1``\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x06\\x00\\n\\x00\\x14\\x00\\x19\\x00 \\x00(\\x00<\\x00\\x00\\x01\\a#>\\x0132\\x17#7\\x16\\x06\\\"&5473\\x16\\x15\\x14\\x0567\\x17#'547\\x15\\\"&%2\\x16\\x14\\x06+\\x01'72\\x16\\x1d\\x01\\x14\\x06+\\x01654&+\\x01'3\\x1627\\x01\\x15ZR\\x0f@(\\x1b\\\\gB\\x196jK\\x02\\xfc\\x02\\xfe\\xf0\\x0e\\x10b\\x80P0\\x14\\x1c\\x01\\x00\\x14\\x1c\\x1c\\x14\\r*q7O\\x1c\\x14P\\x10/!F*\\a#L#\\x01\\xb4D$,P2\\x15\\xcdK5\\x03\\r\\r\\x035w\\a\\x03\\xde0*=)\\xc0\\x1cD\\x1c(\\x1c`\\x80O7*\\x14\\x1c\\x16\\x1a!/`\\x10\\x10\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\x1c\\x00$\\x00,\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\\".\\x01/\\x01&\\\"\\x0f\\x01\\x0e\\x01+\\x01\\\"&5\\x11463\\x16264&\\\"\\x06\\x14\\x04264&\\\"\\x06\\x14\\x02`\\r\\x13\\x13\\r\\xa0\\r\\x17\\x11\\x06\\x1b\\r:\\r\\x1b\\b \\x13\\xa0\\r\\x13\\x13\\re6%%6%\\x01e6%%6%\\x01\\x80\\x13\\r\\xfe\\xc0\\r\\x13\\t\\x11\\f=\\x1d\\x1d=\\x11\\x15\\x13\\r\\x01@\\r\\x13\\xf0%6%%6%%6%%6\\x00\\x00\\x03\\x00\\x00\\xff\\xd9\\x02\\n\\x01\\xa4\\x00 \\x00A\\x00[\\x00\\x0072\\x16\\x17\\x16\\x06#\\\"&'&6;\\x012\\x17\\x1632>\\x01'.\\x01+\\x01\\\"&=\\x014635\\\"&=\\x01463!2676&#\\\"\\a\\x06+\\x01\\\".\\x017>\\x02\\x1e\\x01\\x17\\x16\\x06#\\x172\\x16\\a\\x0e\\x01\\a\\x06&'&6;\\x012\\x17\\x163264&+\\x01&'\\x9d%9\\x04\\x06:+#5\\x06\\x02\\n\\b \\f\\x04\\a\\x17\\n\\x0f\\b\\x01\\x02\\x14\\f\\x8e\\a\\t\\t\\a\\a\\t\\t\\a\\x01N\\f\\x14\\x02\\x02\\x13\\x0f\\x17\\a\\x04\\f \\x05\\b\\x04\\x01\\x05!26(\\x06\\t:-06D\\r\\a/\\x1f+H\\x0e\\x03\\n\\b\\\"\\n\\x04\\x0e\\x1c\\x14\\x1c\\x1c\\x14t\\v\\x1d\\xc0/$,A,\\\"\\a\\v\\n\\x16\\n\\x12\\t\\f\\x0f\\t\\a \\a\\t \\t\\a \\a\\t\\x0f\\f\\x0e\\x17\\x16\\n\\x05\\t\\x04\\x19'\\x11\\v(\\x1b.G T7\\x1e.\\x06\\n+'\\b\\r\\b\\x18\\x1c(\\x1c&\\x1a\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\a\\x01\\xc7\\x00\\x1b\\x00\\x1f\\x00\\x00\\x01\\x16\\x0f\\x01\\x06'\\a\\x16\\x06\\x0f\\x01\\x06\\\"/\\x01&4?\\x01>\\x01\\x177&?\\x016\\x17\\x017'\\a\\x01\\xfb\\f\\f\\x16\\f\\vM\\x10\\x0f\\x1c\\x9e\\x135\\x13Z\\x13\\x13\\x9e\\x1cN#L\\v\\v\\x17\\v\\v\\xfe\\xfczZz\\x01w\\v\\v\\x17\\v\\vL#N\\x1c\\x9e\\x13\\x13Z\\x135\\x13\\x9e\\x1c\\x0f\\x10M\\v\\f\\x16\\f\\f\\xfe^zZz\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00-\\x00W\\x00\\x0062\\x16\\x14\\x06\\\"&4$2\\x16\\x14\\x06\\\"&4'\\x16\\x14\\a\\x16\\a\\x06#\\\"'\\x06\\\"'\\x06#\\\"'&7&47&6\\x1762\\x176\\x166\\x14\\x06+\\x01&'&#&\\\"\\a\\\"\\a\\x06\\a#\\\"&5467&54632\\x16\\x17632\\x16\\x15\\x14\\a:\\x0112\\x1c(\\x1c\\x1c(\\x1c\\x01\\xbc(\\x1c\\x1c(\\x1cG\\x17\\x17\\b\\x12\\f\\x11\\x05\\b\\f2\\f\\a\\x06\\x11\\f\\x12\\b\\x17\\x17\\b$\\x18\\f2\\f\\x19#\\x9f8(+\\x06\\t\\x15\\x1e\\x15<\\x15\\x1e\\x15\\t\\x06+(8%\\x1d\\x02B. 5\\x0e\\x18%!/\\x02\\x01\\x01(`\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x1c\\x1c(\\x11\\f2\\f\\x19\\x11\\r\\x03\\x17\\x17\\x03\\r\\x12\\x18\\f2\\f\\x19#\\b\\x17\\x17\\b$\\x9bP8\\f\\n\\x15\\x15\\x15\\x15\\t\\r8(\\x1f2\\n\\v\\n.B!\\x1c\\x1d/!\\t\\a\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02B\\x01\\xc0\\x00\\x19\\x008\\x00E\\x00R\\x00_\\x00l\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467<\\x0114632\\x17632\\x16\\x176\\x16\\a\\x06#\\\"&\\\"'.\\x02'&'>\\x0132\\x17\\x1e\\x01\\a\\x0e\\x01\\x15\\x14\\x1e\\x02\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\x01^\\x1d%/!\\xff\\x00!/%\\x1b8(1\\x1d\\x10\\x12\\x1d,\\xdf\\x05\\x04\\x03+E\\x03\\x05\\x06\\x02\\x03\\x13\\x1d\\x13\\x10+\\x03T:\\r\\r\\x05\\x02\\x05\\x1a\\x1f\\x16%2\\xb2\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r\\xde\\x05,\\x1d!//!\\x1d,\\x05\\x01\\x01(8(\\b%\\x1b\\x01\\b\\x045\\x01\\x01\\x13#\\x19\\a+\\x13:P\\x02\\x01\\n\\x02\\x0f5\\x1e\\x1a.\\x1e\\x0e\\xbd\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1d\\x00+\\x00;\\x00J\\x00\\x00\\x012\\x16\\x14\\x06#!\\\"&5467&54632\\x16\\x17632\\x16\\x15\\x14\\a:\\x01\\x0562\\x17\\x1e\\x01\\x15\\x14\\x06\\\"&546762\\x17\\x1e\\x01\\x15\\x14\\x0e\\x01#\\\"&546762\\x17\\x1e\\x01\\x15\\x14\\x06\\\"&54>\\x01\\x01\\xa0(88(\\xfe\\xc0(8%\\x1d\\x02B. 5\\x0e\\x18%!/\\x02\\x01\\x01\\xfe\\xb8\\x02\\f\\x02\\x06\\\"\\x1c(\\x1c\\\"\\xa6\\x02\\f\\x02\\x06\\\"\\r\\x16\\r\\x14\\x1c\\\"\\xa6\\x02\\f\\x02\\x06\\\"\\x1c(\\x1c\\x0e\\x15\\x01@8P88(\\x1f2\\n\\v\\n.B!\\x1c\\x1d/!\\t\\a\\xf6\\x06\\x06\\x152\\x11\\x15\\x1d\\x1d\\x15\\x103\\x15\\x06\\x06\\x152\\x11\\x0e\\x17\\r\\x1d\\x15\\x103\\x15\\x06\\x06\\x152\\x11\\x15\\x1d\\x1d\\x15\\r\\x19 \\x00\\x00\\x00\\x00\\x06\\xff\\xfe\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\r\\x00\\x1b\\x00)\\x007\\x00E\\x00c\\x00\\x006\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x01>\\x01\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x016&\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x016$\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x016&\\x1e\\x01\\x0f\\x01\\x06#\\\"'.\\x01?\\x01672\\x16\\x14\\x06#!\\\"&5467&54632\\x16\\x17632\\x16\\x15\\x14\\a:\\x01\\xb2\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03m\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03\\xb3\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03\\x01\\x8d\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03S\\f\\x03\\x03@\\x05\\t\\x04\\x04\\x06\\x03\\x03@\\x03;(88(\\xfe\\xc0(8%\\x1d\\x02B. 5\\x0e\\x18%!/\\x02\\x01\\x01Q\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\x03\\x06\\r\\x06p\\b\\x02\\x03\\r\\x06p\\x06\\xf28P88(\\x1f2\\n\\v\\n.B!\\x1c\\x1d/!\\t\\a\\x00\\x00\\a\\xff\\xff\\xff\\xc0\\x02@\\x01\\xc1\\x00\\x1a\\x00E\\x00P\\x00]\\x00j\\x00w\\x00\\x84\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467<\\x0114632\\x17632\\x1e\\x01\\x05\\x16\\x17\\x06\\x15\\x14\\x161\\a\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x010\\\"1\\\"\\a&\\x06\\a\\x06\\x147\\x06\\a&54632\\x17\\x06\\x05\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\a\\x16\\x0f\\x01\\x06#\\\"'&?\\x01>\\x01\\x01\\xfe\\x1d%/!\\xff\\x00!/$\\x1c8(1\\x1d\\x10\\x12\\x13\\\"\\x16\\xfe\\x81\\x03\\a\\x06\\x01;\\b\\v\\x02\\x19G\\a\\aG\\x19\\x02\\v\\bK#\\x04\\x10\\x04#K\\b\\v\\x02\\t\\x02% \\x1cI\\x1a\\x1cb\\x1b\\x12\\x15&\\x1a\\x12\\x10\\x1a\\x01D\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r[\\x0e\\b$\\x05\\t\\x04\\x04\\x0e\\b%\\x03\\r\\xde\\x05,\\x1d!//!\\x1d,\\x05\\x01\\x01(8(\\b\\x11\\x1e5\\x02\\x06\\x12\\x12\\x02\\x05\\x14\\x02\\v\\bK#\\x04\\x10\\x04#K\\b\\v\\x02\\x19G\\a\\aG\\x19\\x02\\v\\b\\x1a\\x15\\x17\\x04\\x1a\\x1cP\\x1e\\f\\x19\\x13\\x1c\\x1a&\\n\\x1c\\xfc\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x03\\b\\x0e@\\b\\x02\\b\\x0e@\\x06\\x03\\x00\\x05\\xff\\xfa\\xff\\xc0\\x02\\x87\\x01\\xc5\\x001\\x00J\\x00c\\x00|\\x00\\x90\\x00\\x00%\\x16\\x0f\\x01\\x06'.\\a'\\x15!'\\a\\x06+\\x01\\\"/\\x01&?\\x0167&'.\\x0176\\x1f\\x0176\\x16\\x17\\x16\\x06\\a\\x1732\\x16\\x17\\x056&#/\\x01&\\\"\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x14\\x16?\\x01\\x17\\x1665'76&#/\\x01&\\\"\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x14\\x16?\\x01\\x17\\x1665'76&#/\\x01&\\\"\\x0f\\x02\\\"\\x06\\x1f\\x01\\a\\x14\\x16?\\x01\\x17\\x1665'\\x055!\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&\\x02}\\t\\r\\x1b\\r\\t\\x03\\b\\x04\\x06\\x03\\x04\\x04\\x05\\x03\\xfe\\xa06&\\n\\r\\x1f\\x13\\t\\x0f\\b\\vK\\x01\\x05\\b\\x03\\f\\x03\\t\\x05\\a+*\\x03\\n\\x02\\f\\x04\\x0fQ\\xec&C\\x15\\xfe\\xbe\\x02\\x01\\x03\\x17\\n\\x02\\x06\\x01\\v\\x16\\x03\\x02\\x02\\x10\\x04\\x05\\x03\\x14\\x14\\x03\\x05\\x04\\x80\\x02\\x01\\x03\\x17\\n\\x02\\x06\\x01\\v\\x16\\x03\\x02\\x02\\x10\\x04\\x05\\x03\\x14\\x14\\x03\\x05\\x04\\x80\\x02\\x01\\x03\\x17\\n\\x02\\x06\\x01\\v\\x16\\x03\\x02\\x02\\x10\\x04\\x05\\x03\\x14\\x14\\x03\\x05\\x04\\xfe\\xc8\\x01`\\t\\a@\\a\\t\\xa0\\t\\a@\\a\\t\\xbf\\r\\t\\x12\\t\\x0e\\x04\\r\\x05\\t\\x03\\x06\\x03\\x04\\x03Nl#\\t\\x12\\x1c\\x12\\x10c\\x01\\x04\\x05\\x03\\f#\\r\\t\\a+*\\x03\\x01\\x04\\x11*\\x0fQ$ \\x0f\\x02\\x06\\x03\\x15\\x03\\x03\\x15\\x03\\x06\\x02\\x10\\x17\\x03\\x04\\x02\\n\\n\\x02\\x04\\x03\\x17\\x10\\x02\\x06\\x03\\x15\\x03\\x03\\x15\\x03\\x06\\x02\\x10\\x17\\x03\\x04\\x02\\n\\n\\x02\\x04\\x03\\x17\\x10\\x02\\x06\\x03\\x15\\x03\\x03\\x15\\x03\\x06\\x02\\x10\\x17\\x03\\x04\\x02\\n\\n\\x02\\x04\\x03\\x17퐐\\a\\t\\t\\aPP\\a\\t\\t\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc5\\x00\\r\\x00\\x1f\\x001\\x00U\\x00]\\x00e\\x00m\\x00y\\x00\\x00\\x122\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x114\\x01\\x16327\\x15\\x14\\a\\x0e\\x01.\\x01\\x06\\a5>\\x01\\x167\\x16327\\x15\\x0e\\x01&'.\\x01\\x06\\a5>\\x01\\x167&'\\x15\\x16\\x17\\x16327\\x15\\x0e\\x01&'.\\x01\\x06\\a5>\\x01\\x1e\\x02676\\x16\\x1d\\x01\\x0e\\x02.\\x01\\x06264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x147264&\\\"\\x06\\x15\\x14\\x1e\\x02\\x13\\x1a\\x13\\t\\a \\a\\t\\x01,>&3=\\x121S?AW3+O-%>&3=+O-%&.T,+O-.\\f\\t\\x05\\a5!6H+O-%&.T,1N.1(A(\\x11 \\x1f4$)\\x16\\xb1\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\tI\\x0e\\t\\t\\x0e\\t\\x10\\a\\t\\t\\x0e\\t\\x03\\x04\\x06\\x01\\xc0\\x13\\r\\xfe0\\a\\t\\t\\a\\x01\\xd0\\r\\xfe\\xe3\\x10\\x18$\\x15\\b\\x15\\x03\\x13\\x11\\n\\x19E\\x13\\t\\aV\\x10\\x18>\\x12\\t\\a\\t\\n\\b\\b\\x11=\\x13\\t\\at\\x04\\x02!\\x01\\x02\\x10\\x1fE\\x12\\t\\a\\t\\n\\b\\b\\x11\\x98\\x16\\r\\v\\x0f\\r\\v\\x15\\t\\x11\\x13\\x1f\\x0e\\x10\\x05\\x04\\x05(\\t\\x0e\\t\\t\\x0e/\\t\\r\\n\\n\\r9\\t\\r\\n\\n\\r/\\t\\r\\n\\n\\x06\\x04\\x06\\x04\\x02\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00)\\x001\\x00<\\x00I\\x00\\x00\\x01\\x06\\a\\x16\\x17\\x16\\x15\\x14\\a\\x06\\a\\x0e\\x01\\x15\\x0e\\x01#\\\"&546726767632\\x17\\x16\\x1767632\\x16\\x15\\x14\\x024&\\\"\\x06\\x14\\x162'\\x14\\x0e\\x01#\\\"&462\\x1e\\x01\\x14\\x0e\\x01\\\".\\x0154632\\x16\\x01\\xff\\x1d \\x0f\\x04\\v\\x02LB\\x01\\x02\\x18Q!Qr!\\x18\\x01\\x02\\x01D\\x92\\x03\\x04\\f\\x04\\x01\\x04[a\\x02\\x03\\a\\t\\xc0KjKKj5\\t\\x0e\\t\\r\\x13\\x13\\x1a\\x13 \\x04\\b\\b\\b\\x04\\t\\a\\x04\\b\\x01\\xaba[\\x04\\x01\\x04\\v\\x04\\x04\\x92D\\x01\\x02\\x01\\x18!rQ!Q\\x18\\x02\\x01BL\\x02\\v\\x03\\x10 \\x1d\\x01\\t\\a\\x03\\xfe\\x9ejKKjK\\xa0\\t\\x0e\\t\\x13\\x1a\\x13\\x13Y\\b\\b\\x04\\x04\\b\\x04\\a\\t\\x04\\x00\\x06\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\t\\x005\\x00=\\x00R\\x00Y\\x00f\\x00\\x00\\x1753\\x15\\x14\\x06+\\x01\\\"&\\x132\\x16\\x14\\x06+\\x01\\\"/\\x01\\x15\\x17\\x16\\x1d\\x01\\x14\\x06#\\\".\\x01=\\x01'0&5\\x15\\x14\\x06#\\\".\\x01=\\x0246;\\x012\\x1f\\x01&\\\"&462\\x16\\x14753\\x11\\x14\\x06\\\"&5\\x14\\x06#\\\"&'\\x06#\\\"&?\\x01'46;\\x01\\x15#%2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11\\xc0@\\t\\a \\a\\t \\r\\x13\\x13\\r:\\x13\\x0e\\x15)\\a\\x13\\r\\t\\x0f\\b\\x1e\\x02\\x13\\r\\t\\x0e\\t&\\x1a\\x13\\x1a\\x13-Y(\\x1c\\x1c(\\x1c\\xb0\\xc0\\x13\\x1a\\x13\\x13\\r\\r\\x12\\x01\\x06\\x1a\\x0e\\x15\\x04\\x1f\\x80\\x13\\r @\\x01`\\r\\x13\\t\\a \\a\\t0\\xb0\\xb0\\a\\t\\t\\x01\\x17\\x13\\x1a\\x13\\x0e\\x15Q=\\r\\x108\\r\\x13\\t\\x0e\\t8+\\x01\\x01e\\r\\x13\\t\\x0e\\t\\xa0`\\x1a&\\x13-`\\x1c(\\x1c\\x1c(D \\xfe`\\r\\x13\\x13\\r\\r\\x13\\x12\\f\\x1e\\x17\\x0f\\x9b\\xdf\\r\\x13\\xc0\\xc0\\x13\\r\\xfe0\\a\\t\\t\\a\\x01\\xf0\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x17\\x00M\\x00\\x00%2\\x16\\x0f\\x01\\x06#\\\"&?\\x01#\\\".\\x01576;\\x012\\x16\\x0f\\x017\\x1e\\x01\\x15\\x14\\x06+\\x0176'&+\\x0176&+\\x01\\\"\\x06\\x0f\\x01\\x15#\\\"&5467&546;\\x012654'632\\x16\\x15\\x14\\a32\\x16\\x15\\x14\\x014\\a\\a\\x04X\\x03\\a\\x06\\a\\x01\\x17;\\x04\\x05\\x03\\x10\\x02\\nD\\x06\\a\\x01\\x12|\\x1f+/!\\x1e\\b\\r\\r\\r\\x19\\x10\\x06\\x06\\x1a\\x16D\\x10\\x19\\x03\\x100!/+\\x1f\\n&\\x1a\\x10!/\\x0f\\t\\x06(8\\x06\\x06\\x1a&p\\f\\x06\\x98\\x06\\t\\x06a\\x04\\x06\\x04x\\n\\t\\x06Ao\\x02.\\x1f!/\\x0e\\x16\\x16\\x16\\x19\\x15\\\"\\x16\\x10x\\x02/!\\x1f.\\x02\\x10\\x11\\x1a&/!\\x19\\x15\\x028(\\x0f\\x11&\\x1a\\x11\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa5\\x00\\x1e\\x00<\\x00Z\\x00\\x00\\x016\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&'&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x176\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&'&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x176\\x1e\\x01\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\\"\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146\\x01\\fS\\x8eS\\t\\a \\a\\toSf\\x98\\t\\a \\a\\t\\x9blW\\x82\\t\\a \\a\\tB19T\\t\\a \\a\\t_N\\x1e5 \\t\\a \\a\\t\\x13\\x1a\\x13\\t\\a \\a\\t+\\x01\\x9f\\x06K\\x89Q\\x90\\a\\t\\t\\a\\x88V\\x85\\v\\r\\x86e\\x90\\a\\t\\t\\a\\x86t\\xaeZ\\ftV\\x90\\a\\t\\t\\a\\x8a3N\\x04\\x06M8\\x90\\a\\t\\t\\a\\x89JrW\\x06\\x170\\x1d\\x90\\a\\t\\t\\a\\x90\\r\\x13\\x13\\r\\x90\\a\\t\\t\\a\\x8c#9\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xde\\x02\\x80\\x01\\xa0\\x00\\t\\x00\\\"\\x00;\\x00T\\x00\\x80\\x00\\x00\\x01\\x15!546;\\x012\\x16\\x056&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x0176&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x0176&/\\x02&\\\"\\x0f\\x02\\x0e\\x01\\x1f\\x01\\a\\x06\\x16?\\x01\\x17\\x166/\\x01\\x172\\x16\\x1d\\x01\\x14\\x0e\\x01'.\\x01=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x1626=\\x01463\\x02 \\xfd\\xe0^B\\xe0B^\\xfe\\x90\\x03\\x02\\x04\\x1b\\r\\x01\\b\\x01\\r\\x1b\\x04\\x02\\x03\\x14\\x05\\x01\\x06\\x04\\x18\\x18\\x04\\x06\\x01\\x05\\xa4\\x03\\x02\\x04\\x1b\\r\\x01\\b\\x01\\r\\x1b\\x04\\x02\\x03\\x14\\x05\\x01\\x06\\x04\\x18\\x18\\x04\\x06\\x01\\x05\\xa4\\x03\\x02\\x04\\x1b\\r\\x01\\b\\x01\\r\\x1b\\x04\\x02\\x03\\x14\\x05\\x01\\x06\\x04\\x18\\x18\\x04\\x06\\x01\\x05\\xb4\\a\\t\\x18)\\x17\\x1f) \\t\\a`\\a\\t\\xc0\\t\\a`\\a\\t\\x02 \\t\\x0e\\t\\t\\a\\x01\\x00@@B^^,\\x02\\a\\x01\\x04\\x19\\x03\\x03\\x19\\x04\\x01\\a\\x02\\x14\\x1b\\x04\\x04\\x02\\r\\r\\x02\\x04\\x04\\x1b\\x14\\x02\\a\\x01\\x04\\x19\\x03\\x03\\x19\\x04\\x01\\a\\x02\\x14\\x1b\\x04\\x04\\x02\\r\\r\\x02\\x04\\x04\\x1b\\x14\\x02\\a\\x01\\x04\\x19\\x03\\x03\\x19\\x04\\x01\\a\\x02\\x14\\x1b\\x04\\x04\\x02\\r\\r\\x02\\x04\\x04\\x1b\\x82\\t\\a@\\x17'\\x14\\x02\\x041 +p\\a\\t\\t\\aPP\\a\\t\\t\\a\\xb0p\\a\\t\\t\\a@\\a\\t\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00/\\x00G\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463'\\\"&4632\\x17632\\x16\\x17632\\x16\\x14\\x06+\\x01\\x06\\\"'\\x02p\\a\\t\\t\\a\\xfd\\xe0\\a\\t\\t\\a@\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x02 \\a\\t\\t\\a\\xfe\\xb0\\a\\t\\t\\aP<TT<=++=(D\\x12\\x18\\x1a.BB.<%^%P\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t`\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xb0TxT--*\\\"\\fB\\\\B  \\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00A\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\a\\x15\\x16\\x15\\x14\\x06\\\"&5475462\\x16\\x022654'54&\\\"\\x06\\x1d\\x01\\x06\\x15\\x147\\x1e\\x01\\x15\\x14\\x06\\\"&54675462\\x16\\x15\\x01xP88P8S\\x1a\\x13\\x13\\x1a\\x13\\x80 TxT B\\\\B\\x91B/ \\x1c(\\x1c `\\x0e\\x12\\x1c(\\x1c\\x12\\x0e\\t\\x0e\\t\\x01\\xc08P88PH\\x13\\x1a\\x13\\x13\\x1a\\x03\\xa6(2<TT<1)\\xa6.BB\\xfe\\x82/!(\\x18\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x18(!N\\x05\\x19\\x0f\\x14\\x1c\\x1c\\x14\\x0f\\x19\\x05\\xd3\\a\\t\\t\\a\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00A\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\a\\x15\\x16\\x15\\x14\\x06\\\"&5475462\\x16\\x022654'54&\\\"\\x06\\x1d\\x01\\x06\\x15\\x147\\x1e\\x01\\x15\\x14\\x06\\\"&54675462\\x16\\x15\\x01xP88P8S\\x1a\\x13\\x13\\x1a\\x13\\x80 TxT B\\\\B\\x91B/ \\x1c(\\x1c `\\x0e\\x12\\x1c(\\x1c\\x12\\x0e\\t\\x0e\\t\\x01\\xc08P88PH\\x13\\x1a\\x13\\x13\\x1a\\x03\\xa6(2<TT<1)\\xa6.BB\\xfe\\x82/!(\\x18\\xc0\\x14\\x1c\\x1c\\x14\\xc0\\x18(!N\\x05\\x19\\x0f\\x14\\x1c\\x1c\\x14\\x0f\\x19\\x05\\x13\\a\\t\\t\\a\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00\\x1f\\x00+\\x00;\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x15#\\\"\\x1d\\x01\\x143!2=\\x014+\\x015\\a!\\x114>\\x023!2\\x16\\x15\\x05\\x06\\x1f\\x01\\x16?\\x016/\\x01&\\x0f\\x01'&\\a\\x02`\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r@\\x16\\n\\n\\x01\\xec\\n\\n\\x16 \\xfe\\x80\\x05\\t\\f\\x06\\x01@\\r\\x13\\xfe\\xd3\\a\\aJ\\b\\a\\x81\\b\\b\\x19\\b\\b_)\\b\\a\\x80\\x13\\r`\\r\\x13\\x13\\r`\\r\\x13@\\b\\x10\\b\\b\\x10\\b@@\\x01@\\x06\\f\\t\\x05\\x13\\r\\x8a\\b\\aK\\b\\b\\u007f\\b\\a\\x1a\\b\\b^)\\b\\b\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xff\\x02@\\x01\\x81\\x00,\\x00X\\x00\\x84\\x00\\x00%\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01#&'\\x06\\\"'\\x06\\\"'\\x0e\\x01\\a\\\"&=\\x0146767>\\x01\\x17\\x1e\\x017>\\x01\\x17\\x1e\\x01762\\x17\\x167\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01#&'\\x06\\\"'\\x06\\\"'\\x06\\a\\\"&=\\x0146767>\\x01\\x17\\x1e\\x017>\\x01\\x17\\x1e\\x01762\\x17\\x167\\x1e\\x01\\x1d\\x01\\x14\\x0e\\x01#&'\\x06\\\"'\\x06\\\"'\\x06\\a\\\"&=\\x0146767>\\x01\\x17\\x1e\\x017>\\x01\\x17\\x1e\\x01762\\x17\\x16\\x022\\x06\\b\\x05\\a\\x05+$)l+)l+\\x11)\\x15\\a\\n\\b\\x06!\\x18\\v\\x1a\\n\\x1dX\\x1d\\n\\x1a\\n\\x1dY\\x1c\\v\\x1b\\n\\x19!\\x06\\b\\x05\\a\\x05+$)l+)l+#,\\a\\n\\b\\x06!\\x18\\v\\x1a\\n\\x1dX\\x1d\\n\\x1a\\n\\x1dY\\x1c\\v\\x1b\\n\\x19!\\x06\\b\\x05\\a\\x05+$)l+)l+#,\\a\\n\\b\\x06!\\x18\\v\\x1a\\n\\x1dX\\x1d\\n\\x1a\\n\\x1dY\\x1c\\v\\x1b\\n\\x18@\\x01\\t\\x06 \\x04\\b\\x04\\x04\\x16\\x1a\\x1a\\x1a\\x1a\\v\\r\\x02\\t\\a \\x06\\t\\x01\\x04\\x12\\t\\x02\\t\\x17\\x01\\x17\\b\\x02\\t\\x17\\x01\\x17\\b\\b\\x13\\x8c\\x01\\t\\x06 \\x04\\b\\x04\\x04\\x16\\x1a\\x1a\\x1a\\x1a\\x16\\x04\\t\\a \\x06\\t\\x01\\x04\\x12\\t\\x02\\t\\x17\\x01\\x17\\b\\x02\\t\\x17\\x01\\x17\\b\\b\\x13\\x8c\\x01\\t\\x06 \\x04\\b\\x04\\x04\\x16\\x1a\\x1a\\x1a\\x1a\\x16\\x04\\t\\a \\x06\\t\\x01\\x04\\x12\\t\\x02\\t\\x17\\x01\\x17\\b\\x02\\t\\x17\\x01\\x17\\b\\b\\x13\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xc0\\x01\\x83\\x01\\xc0\\x00\\a\\x00\\x16\\x00%\\x00=\\x00\\x00\\x12\\\"&462\\x16\\x14\\x03\\x17\\x16\\x06\\a\\x06#\\\"/\\x01&4?\\x01\\x177\\x17\\x16\\x14\\x0f\\x01\\x06#\\\"'.\\x01?\\x01'6\\x16\\x06\\x0f\\x01\\x06\\a\\x15#5&/\\x01.\\x01>\\x01\\x1f\\x01\\x162?\\x016\\xe1B//B/\\x85\\x1d\\n\\x05\\r\\v\\r\\x14\\f0\\b\\t.=u.\\t\\b0\\f\\x14\\r\\v\\r\\x05\\n\\x1d\\x19\\x93\\x13\\x05\\x0e)\\x17\\x1f\\xa0\\x1f\\x17)\\x0e\\x05\\x13 \\x0e)'b')\\x0e\\x01 /B//B\\xfe\\xd8'\\r!\\n\\b\\x10@\\v\\x1b\\v9339\\v\\x1b\\v@\\x10\\b\\n!\\r' \\xf6\\x1c \\n\\x1c\\x11\\v\\x1f\\x1f\\v\\x11\\x1c\\n \\x1c\\x05\\t\\x1d\\x1b\\x1b\\x1d\\t\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc3\\x00\\a\\x002\\x00:\\x00B\\x00\\x00\\x13\\x17!4676\\x16\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\a\\x1e\\x01\\x15\\x14\\x06\\\"&547\\x06\\\"'\\x16\\x15\\x14\\x06\\\"&54>\\x017&5!5463\\x00264&\\\"\\x06\\x14 4&\\\"\\x06\\x14\\x162\\x91o\\xff\\x000+\\f!\\x01h\\a\\t\\t\\a0<\\x1a\\\"/B/\\x04!F!\\x04/B/\\x10\\x1b\\x11<\\x01\\x80&\\x1a\\xfe\\x83\\x1a\\x13\\x13\\x1a\\x13\\x01`\\x13\\x1a\\x13\\x13\\x1a\\x01\\xaf\\xaf6`\\\"\\n\\x06\\\\\\t\\a \\a\\t@K8\\x06+\\x1c!//!\\f\\r\\t\\t\\r\\f!//!\\x12!\\x16\\x048K@\\x1a&\\xfe\\x90\\x13\\x1a\\x13\\x13\\x1a\\x1a\\x13\\x13\\x1a\\x13\\x00\\x00\\x00\\x00\\x05\\xff\\xfe\\xff\\xb6\\x02B\\x01\\xc3\\x00\\n\\x00\\x15\\x00 \\x00g\\x00o\\x00\\x00\\x01\\\"\\a&'62\\x17\\x06\\a&\\x03.\\x01'632\\x17\\x16\\x17\\x06767632\\x17\\x0e\\x01\\a&7\\x16\\x17\\x16\\x06'&'&\\x0e\\x01\\x16\\x17\\x16\\x17\\x16\\x14\\a\\x06'&'\\x06\\a\\x06'&4767>\\x01.\\x01\\a\\x06\\a\\x06&76767&5476\\x16\\a\\x06\\x15\\x14\\x1632>\\x0154'&6\\x17\\x16\\x15\\x14\\a\\x16\\x06264&\\\"\\x06\\x14\\x01 \\x19\\x1c\\x14\\t'V'\\t\\x14\\x1c\\x95%,\\x03\\v\\f\\f\\x0e\\x065\\x06\\xce4\\x06\\x0f\\f\\v\\v\\x03,$\\x12k6\\x14\\x03\\f\\x04\\x0e\\x0f+`2\\x1a+\\x0f\\x14\\a\\a=6\\x19\\x14\\x14\\x196>\\x06\\x06\\x15\\x0f+\\x1a2`+\\x0f\\x0e\\x04\\f\\x02\\x156\\x18\\x1f\\n)\\x04\\f\\x02\\aF2!7 \\a\\x02\\f\\x04)\\n\\x1f\\xd1(\\x1c\\x1c(\\x1c\\x01P\\n\\x10\\x19\\x11\\x11\\x19\\x10\\n\\xfe\\xb9\\x1bP/\\x03\\x05C*\\x19\\x19*C\\x05\\x03/P\\x1b\\x12\\xe6 =\\x06\\a\\x05\\x10\\t\\x1a\\x1bXb\\x1a\\t\\x04\\x01\\x0e\\x01\\f \\x0f\\x19\\x19\\x0f \\f\\x01\\x0e\\x01\\x05\\b\\x1abX\\x1b\\x1a\\b\\x11\\x05\\a\\x06= \\x0e\\x06\\x1d\\x1b?1\\x05\\x06\\a\\x14\\x123H!8\\\"\\x12\\x14\\a\\x06\\x050@\\x1b\\x1d\\x06\\x8f\\x1c(\\x1c\\x1c(\\x00\\x00\\x03\\x00\\x00\\xff\\xb4\\x02\\x01\\x01\\xc0\\x00 \\x004\\x00I\\x00\\x007\\x1e\\x01\\a\\x0e\\x01\\a\\x06&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x162654.\\x01'&=\\x01467\\x1e\\x01\\x17\\x14\\x06+\\x01\\\"&5.\\x01'.\\x01=\\x0146\\x17\\x1e\\x01\\x17\\x14\\x06+\\x01\\\"&5.\\x01'\\\".\\x01=\\x0146\\xac:D\\r\\t<)Ej\\x0e\\n0\\n\\x0e\\x1c(\\x1c\\b\\x0e\\t\\x11\\x110z\\xaf\\x06\\t\\a \\a\\t\\x06\\x8aa\\x06\\t\\n\\aSv\\x06\\t\\a \\a\\t\\x05S9\\x04\\a\\x04\\n\\xdd\\vd=)<\\t\\x0eWD\\xf8\\n\\x0e\\x0e\\n\\xf8\\x14\\x1c\\x1c\\x14\\n\\x12\\x0e\\x03\\x06\\x102\\f\\x0e\\xe1\\x06\\xafz\\a\\n\\t\\x06a\\x8b\\x05\\x01\\t\\x06 \\a\\t`\\x06vS\\a\\n\\b\\a:R\\x05\\x05\\a\\x04 \\a\\n\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x19\\x007\\x00\\x00\\x15\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06%2\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c@\\t\\a`\\a\\t\\t\\a`\\a\\t\\x01P\\x14\\x1c\\xfe@\\x1c\\x140\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x01\\x10\\xfe\\xf0\\x14\\x1c\\x1c\\xd4`\\a\\t\\t\\a`\\a\\t\\t\\xc9\\x1c\\x1400\\x14\\x1c0\\a\\t\\t\\a00\\a\\t\\t\\a0\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x19\\x007\\x00\\x00\\x15\\x11!\\x11\\x14\\x06#!\\\"&7\\x15\\x14\\x163!26=\\x014&#!\\\"\\x06%2\\x16\\x1d\\x01!546;\\x01546;\\x012\\x16\\x1d\\x013546;\\x012\\x16\\x1d\\x01\\x01\\xc0\\x1c\\x14\\xfe\\xa0\\x14\\x1c@\\t\\a\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t\\x01P\\x14\\x1c\\xfe@\\x1c\\x140\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\x10\\x01\\x10\\xfe\\xf0\\x14\\x1c\\x1c\\xd4@\\a\\t\\t\\a@\\a\\t\\t\\xc9\\x1c\\x1400\\x14\\x1c0\\a\\t\\t\\a00\\a\\t\\t\\a0\\x00\\a\\xff\\xfd\\xff\\xc0\\x02\\f\\x01\\xc0\\x00\\\"\\x00)\\x00-\\x001\\x005\\x00;\\x00C\\x00\\x00\\x01\\x16\\x06\\a\\x05\\x06#\\\"/\\x01&67%>\\x01'&#\\\"\\x0f\\x01\\x06#\\\"/\\x01&6?\\x01632\\x16\\a67'\\x06\\a\\x17\\x037'\\a?\\x01'\\a?\\x01'\\a7\\x16\\x177&'\\x1767'\\x14\\a\\x06\\a\\x01\\xf2\\x1a)6\\xfe\\xa4\\b\\b\\x12\\n \\a\\x06\\f\\x01a\\f\\x06\\a\\t\\x12\\t\\b\\x1b\\b\\t\\x12\\t!\\a\\a\\v\\x1c%,.O\\x9d\\f\\x10\\x15\\x10\\x0e\\x14\\xab\\x1f=\\x1f\\xa8\\x1f<\\x1f\\xab\\x1f<\\x1fQ\\x0e\\t-\\n\\f$\\a\\x03=\\x01\\x02\\x06\\x01d9w!\\xcf\\x04\\x106\\f\\x1a\\x06\\xd2\\a\\x1a\\v\\x10\\x04\\x11\\x04\\x0f7\\v\\x1a\\a\\x10\\x1718\\a\\x01>\\x03\\a=\\xfe\\xba\\x12'\\x12\\x19\\x12'\\x12\\x1b\\x12'\\x13\\x9f\\b\\x0e.\\r\\t\\x99\\x0e\\x10\\x14\\a\\a\\b\\t\\x00\\x00\\x00\\x02\\xff\\xfd\\xff\\xbe\\x02\\x00\\x01\\xc0\\x00\\x1d\\x00*\\x00\\x00\\x01\\x1e\\x01\\a\\x06\\x0f\\x01'&\\a\\x06\\x14\\x1f\\x01\\a\\x06&'&7\\x13\\x17\\x16276/\\x01>\\x0176\\x16\\x17\\x0e\\x01/\\x01&67\\x1e\\x01\\x01*.\\\"\\x17\\x12'f9\\v\\v\\x05\\x051\\x86\\b\\x12\\x04\\x04\\x04\\x803\\x04\\r\\x05\\f\\f7\\x1bS\\x84\\x1eD\\x18\\x1fX!\\b\\\"\\x04&\\x1d\\x10\\x01#\\x16b.&\\x1329\\f\\f\\x04\\x0e\\x041B\\x04\\x06\\t\\t\\n\\x01\\a2\\x05\\x05\\v\\v8 \\x13\\x10\\x0f\\x10\\x1d&\\x04\\\"\\b!X\\x1f\\x18D\\x00\\x00\\x00\\n\\xff\\xff\\xff\\xc0\\x02\\x01\\x01\\xc0\\x00+\\x00;\\x00K\\x00[\\x00_\\x00o\\x00\\u007f\\x00\\x8b\\x00\\x9b\\x00\\xab\\x00\\x00%\\x16\\x1d\\x01\\x14\\x0e\\x02#!\\\"&=\\x014?\\x01>\\x01;\\x015#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\x1532\\x16\\x17\\a\\x15\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\a\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&#'#\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126=\\x014&'35#\\x1726=\\x014&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x163\\x17\\x14\\x16;\\x0126=\\x014&+\\x01\\\"\\x06\\x15\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x01\\xff\\x01\\x05\\t\\f\\x06\\xfe@\\r\\x13\\x01\\x1b\\x01\\x12\\fU`\\a\\t\\t\\a\\x01\\x00\\a\\t\\t\\a`\\xf5\\f\\x11\\x02\\xcc\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t \\a\\t\\t\\a\\x10\\a\\t\\t\\a0\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\x8f\\xc0\\xc0(\\a\\t\\t\\a\\x10\\a\\t\\t\\a \\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\xd8\\b\\xb0\\b\\b\\xb0\\b\\x18\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t0\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\tE\\x05\\x05[\\a\\v\\t\\x05\\x13\\r[\\x05\\x05\\xa0\\f\\x0f@\\t\\a`\\a\\t\\t\\a`\\a\\t@\\x0f\\f\\x1d\\x10\\a\\t\\t\\a\\x10\\a\\t\\tG\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\tP\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\x98 \\xe8\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t@\\a\\t\\t\\a\\x10\\a\\t\\t\\a\\x80\\x10\\b\\b\\x10\\bx\\x10\\a\\t\\t\\a\\x10\\a\\t\\tW\\x10\\a\\t\\t\\a\\x10\\a\\t\\t\\x00\\x00\\x04\\x00\\x00\\xff\\xb9\\x02\\x00\\x01\\xc0\\x00\\x15\\x00+\\x00@\\x00V\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06/\\x01\\a\\x06\\\"/\\x01&4?\\x01'&637\\\"&=\\x0146\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x16\\x06#\\a\\x17\\x16\\x14\\x0f\\x01\\x06/\\x01\\a\\x06&=\\x0146;\\x012\\x16\\a\\x016\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&?\\x01'&4?\\x0162\\x1f\\x01\\xc8\\n\\x0e\\x1e\\v\\x1fc\\x05\\r\\x05\\x19\\x05\\x05c!\\v\\f\\x10\\xe0\\n\\x0e\\x1e\\v\\x1fc\\x05\\r\\x05\\x19\\x05\\x05c!\\v\\f\\x10\\x10c\\x05\\x05\\x19\\v\\fc\\x1f\\v\\x1e\\x0e\\np\\x10\\f\\v\\xfe\\xfe\\v\\x1e\\x0e\\np\\x10\\f\\v!c\\x05\\x05\\x19\\x05\\r\\x05c\\xa0\\x0e\\np\\x10\\f\\v!c\\x05\\x05\\x19\\x05\\r\\x05c\\x1f\\v\\x1e@\\x0e\\np\\x10\\f\\v!c\\x05\\x05\\x19\\x05\\r\\x05c\\x1f\\v\\x1e\\x88c\\x05\\r\\x05\\x19\\f\\fc!\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x01\\x02\\v\\f\\x10p\\n\\x0e\\x1e\\v\\x1fc\\x05\\r\\x05\\x19\\x05\\x05c\\x00\\x00\\x00\\x05\\xff\\xfe\\xff\\xe0\\x02B\\x01\\xa0\\x00\\b\\x00\\f\\x00\\x10\\x00\\x19\\x00C\\x00\\x00\\x01#'32\\x1f\\x01\\x16\\x06%\\x15#73\\x17#5\\x05\\\"&?\\x016;\\x01\\a\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\a\\x15\\x14\\x06+\\x01\\\"&=\\x01!\\x15\\x14\\x06+\\x01\\\"&=\\x01'#\\\"&=\\x0146;\\x01'!\\a\\x020a\\x1ac\\f\\x04\\x18\\x01\\t\\xfe\\xd8~\\x1a\\xe8\\x1a~\\xfe\\xe0\\b\\t\\x01\\x18\\x04\\fc\\x1a\\x01\\xbf\\a\\t\\t\\a\\x1c\\x14\\t\\a \\a\\t\\xfe\\xc0\\t\\a \\a\\t\\x14\\x1c\\a\\t\\t\\a\\x14\\x04\\x02\\x00\\x04\\x01 \\x80\\f`\\b\\f\\x80\\x80\\x80\\x80\\x80\\x80\\f\\b`\\f\\x80@\\t\\a \\a\\t\\xa0\\x10\\a\\t\\t\\a\\x10\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t  \\x00\\x00\\x00\\x00\\a\\xff\\xfe\\xff\\xe0\\x02\\x80\\x01\\xa1\\x00\\x05\\x00\\t\\x00\\x1c\\x00%\\x00?\\x00N\\x00^\\x00\\x00\\x01\\x06\\a#53#\\x15#7\\x05/\\x0132\\x1f\\x012\\x0610'&/\\x01\\a\\x06\\a&\\x05\\\"&?\\x016;\\x01\\a\\x17\\x06\\x15\\x14\\x17#\\x15\\x14\\x06+\\x01\\\"&=\\x01'#\\\"&=\\x0146;\\x01'%\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x16\\x176\\x17>\\x01'&'\\a&'\\x0e\\x01\\x15\\x14\\x1632\\x01\\xa3\\x1d\\x19=d\\x84~\\x1a\\x01!\\f\\fc\\r\\x02\\x18\\x01\\x01\\x01\\x01\\x01\\x15\\x15\\a\\v\\x17\\xfe'\\b\\t\\x01\\x18\\x04\\fc\\x1a\\xe451\\xd1\\t\\a \\a\\t\\x14\\x1c\\a\\t\\t\\a\\x14\\x04\\x02\\a%4^\\x84^D4(\\x1f\\x13\\x02\\x19\\f\\x0e\\x03\\x05'?\\x05\\x1b\\x163&\\x1d\\x01X\\x19\\x1f\\x80\\x80\\x80H\\n>\\f`\\x02\\x01\\x01\\x01\\x13\\x13\\x06\\v\\x1b\\x1f\\f\\b`\\f\\x80 K7H6\\x10\\a\\t\\t\\a\\x10\\xa0\\t\\a \\a\\t \\x1d!`\\x1eA]]A&m/$(\\x16\\xd3\\x12?\\x1b\\a\\a/S\\x05!(\\x13'1\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x003\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06+\\x015#\\x15#5#\\x15#5#\\x15#5#\\x15#\\\"&=\\x0146;\\x01546;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x1d\\x01\\x01\\xf0\\a\\t\\t\\aP @ @ @ P\\a\\t\\t\\a0\\t\\a0\\t\\a\\xe0\\a\\t0\\a\\t\\x01\\x00\\t\\a\\xe0\\a\\t\\x80\\x80\\x80\\x80\\x80\\x80\\x80\\x80\\t\\a\\xe0\\a\\t0\\a\\t0\\a\\t\\t\\a0\\t\\a0\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc2\\x007\\x00>\\x00E\\x00e\\x00o\\x00y\\x00\\x007\\x0e\\x03\\x1d\\x01\\x14\\x17#\\\"&5\\x1146;\\x01'&?\\x016\\x1f\\x01'&6?\\x016\\x16\\x1f\\x017>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x0176\\x16\\x1f\\x01\\x16\\x06\\x0f\\x0132\\x17\\x06\\x0353\\x15#\\\"&\\x1753\\x15\\x14\\x06#\\x112\\x16\\x1d\\x01#5+\\x03\\x15#546;\\x01&54632\\x17632\\x16\\x15\\x14\\a#3&#\\\"\\x06\\x15\\x14\\x17\\x167654&#\\\"\\a36\\xf1\\v\\x12\\r\\a\\t\\xa9\\r\\x13\\x13\\r\\x1d\\x1e\\r\\t\\t\\t\\x0e \\f\\x02\\x05\\x06\\x10\\x06\\f\\x02\\x14\\x14\\x02\\f\\x06\\x10\\x06\\x05\\x02\\f \\x06\\r\\x04\\t\\x04\\x02\\x06\\x1e\\x1d\\x14\\t)\\x14\\xc0\\xa0\\r\\x13\\xe0\\xc0\\x13\\r\\r\\x13\\xc0\\x0f\\x01\\x01\\x0f\\xc0\\x13\\r\\x14\\x04( 7!!7 (\\x04\\xfc5\\x15\\x18\\f\\f\\t\\x03\\xcb\\t\\f\\f\\x18\\x155\\x04\\xfe\\x03\\v\\x10\\x15\\v\\xe0\\x11\\x0f\\x13\\r\\x01`\\r\\x13\\x16\\t\\r\\r\\r\\t\\x17\\x1f\\x06\\f\\x02\\x06\\x02\\x05\\x0666\\x06\\x05\\x02\\x06\\x02\\f\\x06\\x1f\\x17\\x04\\x02\\x06\\r\\x05\\r\\x04\\x16\\x12\\x1d\\xfe\\xaf`\\x80\\x13\\x13\\x80`\\r\\x13\\x01 \\x13\\r`\\x80\\x80`\\r\\x13\\f\\f\\x1c,KK,\\x1c\\v\\r0\\x0f\\t\\v\\b\\x03\\x03\\b\\v\\t\\x0f0\\x02\\x00\\x03\\xff\\xfd\\xff\\xbd\\x02\\x83\\x01\\xc3\\x009\\x00=\\x00A\\x00\\x00%\\x16\\x0f\\x01\\x06'&6?\\x01'\\x06#\\\"&/\\x01\\a\\x0e\\x01#\\\"'\\a\\x17\\x1e\\x01\\a\\x06/\\x01&7>\\x01\\x1f\\x017.\\x01?\\x01>\\x01\\x1f\\x0176\\x16\\x1f\\x01\\x16\\x06\\a\\x1776\\x16\\x017'\\a\\x177'\\a\\x02\\u007f\\x03\\a\\xa2\\b\\x03\\x06\\r\\x0f\\x16'\\f\\x01(?\\v\\x14\\x14\\v?(\\x01\\f'\\x16\\x0f\\r\\x06\\x03\\b\\xa2\\a\\x03\\x06\\x1e\\x10\\x16'%\\x14\\x16W\\x06\\x17\\vrr\\v\\x17\\x06W\\x16\\x14%'\\x16\\x10\\x1e\\xfe\\x9b\\x13_$\\xc8p$_\\x0e\\a\\x03C\\x04\\b\\x0f\\x1f\\x06\\th\\x01.'KK'.\\x01h\\t\\x06\\x1f\\x0f\\a\\x03C\\x03\\a\\x10\\f\\x06\\tf\\x1aW(\\x96\\n\\b\\x0400\\x04\\b\\n\\x96(W\\x1af\\t\\x06\\f\\x01\\x00G'@..@'\\x00\\x00\\x02\\xff\\xfe\\xff\\xe0\\x02\\x02\\x01\\xa0\\x00\\x11\\x00\\x15\\x00\\x00\\x012\\x16\\a\\x03\\x0e\\x02#!\\\".\\x01'\\x03&63\\x05!\\x17!\\x01\\xe0\\x0f\\x13\\x028\\x02\\x12\\x1c\\x0f\\xfe\\xef\\x10\\x1c\\x11\\x038\\x02\\x13\\x0f\\x01\\x9b\\xfe\\x8a\\x1f\\x019\\x01\\xa0\\x16\\x0e\\xfe\\x9b\\x10\\x19\\x0e\\x0e\\x19\\x10\\x01e\\x0e\\x16@\\xc0\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00c\\x00s\\x00\\x91\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x054&#\\\"+\\x01\\a\\x06\\x1d\\x01\\x14;\\x012=\\x01732\\x16\\x14\\x0f\\x01\\x06\\x0f\\x01\\x06\\x15\\x14\\x0f\\x01\\x06\\x1d\\x01\\x14\\x16;\\x012?\\x016;\\x012\\x14;\\x012=\\x014?\\x016=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x0f\\x01\\x06\\x14\\x16;\\x012\\x1f\\x01\\x16\\x1d\\x01\\a\\x06\\x1f\\x01\\x16;\\x016$\\x14\\x16;\\x012?\\x016=\\x014&\\\"\\x0f\\x01\\x13>\\x017#\\\"/\\x01&+\\x01'&+\\x01\\\"\\x0f\\x01\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16;\\x012\\x16\\x15\\x91Α\\x91Α\\x01\\xc0uS\\x01\\x03\\x02\\x1d\\x03\\b\\x10\\b\\x10\\x15\\x04\\a\\x03\\x1b\\x02\\x02(\\x06\\a\\x14\\x05\\t\\a\\x16\\n\\x04\\n\\x02\\x05\\x03\\b\\b\\x10\\b\\x06\\x1f\\v\\t\\a%\\x04\\a\\a\\x04 \\x05\\x03\\n\\x03\\a\\x04\\x10\\x05\\x03\\n\\x03\\f\\t\\t \\x04\\a\\x14\\v\\xfe\\xc2\\a\\x04\\x10\\x05\\x03\\n\\x03\\a\\t\\x03\\x1a}5W\\x19\\r\\b\\x05\\x12\\t\\r\\x13+\\f\\x11 \\f\\v+\\x16\\x12\\x16\\x10\\x14\\x14\\a\\t\\x01\\xb8\\x91Α\\x91\\xcegSu\\x16\\x02\\x04\\x14\\b\\b\\b\\x10\\a\\t\\x04\\x1a\\x02\\x01\\r\\x02\\x06\\n\\b\\x14\\x04\\a\\x19\\a\\t\\b\\x13\\x05\\x10\\b\\x02\\x06\\x01\\v\\x04\\v\\x05\\x06\\n\\a\\x05\\t\\x05\\x06\\x04\\t\\x03\\n\\x06\\x04\\t\\x03\\x05\\t\\f\\t\\b!\\x04\\x1f\\x91\\n\\x06\\x03\\t\\x04\\x04\\x10\\x05\\a\\x04\\x19\\xfe\\xc5\\x038-\\x05\\x11\\n%\\v\\a\\x1a\\r\\x1a\\x18\\x16\\x0e\\x11\\v\\n\\x06\\x00\\x00\\x00\\x02\\x00\\x00\\x00`\\x02\\x00\\x01 \\x00\\x0f\\x00\\x1f\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xf0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\xa0\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x02\\x00 \\xff\\xc0\\x00\\xe0\\x01\\xc0\\x00\\x0f\\x00\\x1f\\x00\\x00\\x17\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15\\x13\\x14\\x06+\\x01\\\"&5\\x1146;\\x012\\x16\\x15`\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t0\\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\t\\a\\x00\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xbb\\x02\\x00\\x01\\xc1\\x00+\\x003\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06\\x0f\\x02\\x16\\x17\\x16\\a\\x06\\a\\x0e\\x01\\a\\x06\\a\\x06.\\x02767>\\x017676\\x17\\x16\\x17?\\x016?\\x0162\\x17\\x00264&\\\"\\x06\\x14\\x01\\xf7\\t\\t/\\x06\\b$L\\x0e\\x05\\r#\\x0e\\x14\\r\\x14\\x01\\x04\\x18#kS\\v#\\x18&\\x0e\\x18\\x04\\x06\\x0f\\\"7\\x14\\x15L\\f\\x03\\x05/\\t\\x1b\\t\\xfe\\xe3(\\x1c\\x1c(\\x1c\\x01\\x99\\t\\x1b\\t/\\x05\\x03\\fL\\x15\\x147\\\"\\x0f\\x06\\x04\\x18\\x0e&\\x19\\\"\\vSk#\\x18\\x04\\x01\\x13\\x0e\\x14\\x0e#\\r\\x05\\x0eL%\\a\\x06/\\t\\t\\xfe\\xa9\\x1c(\\x1c\\x1c(\\x00\\x01\\xff\\xfe\\xff\\xdf\\x02\\x02\\x01\\xa4\\x00\\x18\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x06\\\"/\\x01&6?\\x01>\\x01\\x1f\\x01\\a\\x17'7'6\\x16\\x17\\x01\\xda$\\x04!\\xd4\\x06\\x0f\\x05\\xd4!\\x04$\\x03\\\"b&\\x1d`\\x900`\\\"&a\\\"\\x01v%i(\\xdb\\x05\\x05\\xdb(i%\\x03#\\a\\x1cW@\\x90\\x80@h\\x1b\\a#\\x00\\x00\\x00\\x05\\xff\\xff\\xff\\xbc\\x01\\xc2\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00@\\x00j\\x00\\x00\\x12\\\"&462\\x16\\x142462\\x16\\x14\\x06\\\"&\\\"&462\\x16\\x14\\a\\x06\\x17\\x16\\x06\\a\\x06\\a\\x0e\\x01\\x17\\x16\\x17\\x16\\x06\\a\\x06\\a\\x06&54'&>\\x01367>\\x01'&'&63676\\x16\\x172\\x16\\a\\x06\\x15\\x14\\x06'&'.\\x017676&'\\\"'6'&5<\\x01546\\x17\\x16\\x17\\x1e\\x01\\a\\x06\\a\\x06\\x16\\x17\\x16\\xa4(\\x1c\\x1c(\\x1c@\\x1c(\\x1c\\x1c(((\\x1c\\x1c(\\x1c@\\x01\\x18\\x03\\b\\a\\x17\\x16\\v\\f\\x03\\x05\\t\\x03\\a\\a72\\t\\x13\\x17\\x02\\x02\\a\\x05\\x16\\x17\\v\\f\\x03\\x05\\t\\x03\\a\\a94\\b\\x10\\xe3\\a\\b\\x04\\x16\\x13\\t27\\a\\b\\x04\\t\\x05\\x03\\f\\v\\x01\\x0e\\n\\t\\x14\\x10\\b49\\a\\a\\x03\\t\\x05\\x03\\f\\v\\x17\\x01\\x00\\x1c(\\x1c\\x1c((\\x1c\\x1c(\\x1c`\\x1c(\\x1c\\x1c(\\xa7=3\\a\\r\\x01\\x02\\a\\x03\\x14\\f\\x17\\x15\\x06\\r\\x01\\x05\\x1d\\x05\\v\\n:2\\x05\\b\\a\\x02\\a\\x04\\x14\\v\\x18\\x14\\a\\r\\x06\\x1f\\x04\\t\\x8c\\r\\a1:\\v\\v\\x06\\x1c\\x05\\x01\\r\\a\\x15\\x16\\f\\x14\\x04\\x03\\x14\\x13+3\\x01\\x03\\x01\\t\\n\\x05\\x1f\\x05\\x01\\r\\a\\x15\\x16\\f\\x14\\x03\\a\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x06\\x01\\xc3\\x00/\\x007\\x00\\x00%\\x16\\x0f\\x01\\x06+\\x01\\\"/\\x01\\x06#\\\"&'.\\x01\\x0f\\x01\\x06\\x17\\x1e\\x01\\x17\\x15\\x17\\x16\\x06+\\x01\\\"&=\\x014>\\x02?\\x016\\x17\\x16\\a\\x1e\\x02\\x17\\x06264&\\\"\\x06\\x14\\x01\\xfe\\a\\x0e.\\t\\r3\\x10\\n.\\x16\\x18\\x1d/\\f\\x01\\t\\x03\\f\\x04\\x03\\x0f7\\\")\\b\\x13\\x12\\xec\\r\\x13\\x10%B0\\xca\\n\\x02\\x0e0\\x15%\\x1c\\az\\x14\\x0e\\x0e\\x14\\x0et\\x14\\x0f(\\t\\r@\\r \\x19\\x04\\x02\\x03\\f\\x05\\x05\\x1d&\\x02\\x01R\\x10\\x1e\\x13\\rQ?bU;\\x12K\\x04\\n6\\x1c\\x04\\x16!\\x148\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x01\\xff\\xfc\\xff\\xbf\\x02\\x03\\x01\\xc0\\x00\\x1a\\x00\\x00\\x01\\x03\\x06\\\"'\\x03\\a\\x06\\\"/\\x01\\a\\x06\\\"/\\x01\\a\\x06\\\"'\\x03&63!2\\x16\\x01\\xffW\\x01\\x0e\\x01B.\\x02\\f\\x02\\\".\\x02\\f\\x02,$\\x02\\f\\x02W\\x04\\x13\\x10\\x01\\xc0\\x0f\\x13\\x01\\x9a\\xfe,\\x06\\x06\\x01l\\xac\\x06\\x06\\x85\\xc5\\x06\\x06\\xbc}\\x05\\x05\\x01\\x12\\x0f\\x1a\\x17\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x06\\x00\\v\\x00\\x0f\\x00\\x14\\x00\\x1d\\x00'\\x000\\x008\\x00\\x00\\x01\\x15!>\\x0132\\a\\x15#47%\\x16\\x17#\\x1753\\x16\\x15\\a4'3\\x15\\x14\\x06+\\x01\\x13\\x15#.\\x01\\\"\\x06\\a#5\\x0353\\x06\\x1d\\x01#\\\"&62\\x16\\x1d\\x01#54\\x01@\\xfe\\xf1'~J\\x0f\\xcf`\\x1e\\x01Bp?\\xaf\\x80B\\x1e\\xa0\\x04\\xa4\\x13\\r\\x80 2\\x11:F:\\x112\\x80\\xa4\\x04\\x80\\r\\x13\\xf8P8\\xc0\\x01\\x9e~;E\\xa0\\x80C=\\x99\\x1a_\\xa0\\x80=C@\\x0e\\x12`\\r\\x13\\x01 \\x80\\x1d##\\x1d\\x80\\xff\\x00`\\x12\\x0e`\\x13\\xad8(``(\\x00\\x00\\x02\\xff\\xf6\\xff\\xc0\\x01\\xc3\\x01\\xca\\x00\\x0f\\x00\\x1e\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463$\\x1e\\x01\\x0f\\x01!'&>\\x01\\x16\\x1f\\x0176\\x01p\\a\\t\\t\\a\\xfe\\xc0\\a\\t\\t\\a\\x01e(\\x05\\x11H\\xfe\\xcb0\\x0e@te\\r\\x1e\\x15\\x11 \\t\\a@\\a\\t\\t\\a@\\a\\t\\xe2\\\"5\\x14W\\xd0:e\\x1b@:\\x80\\x19\\x14\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x13\\x00(\\x00:\\x00B\\x00\\x00\\x13&'&'&6;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"7&'&'4>\\x01;\\x012\\x17\\x16\\x17\\x16\\x17\\x16\\x06+\\x01\\\"\\x172\\x16\\x14\\x06+\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x05264&+\\x01\\x15\\u007f\\x04\\x12#\\x06\\x01\\n\\a\\x11\\x0e\\x02\\x04\\x16\\x1f\\x06\\x01\\n\\a\\x11\\x0en\\x04\\x12#\\x06\\x04\\b\\x04\\x11\\x0e\\x02\\x04\\x16\\x1f\\x06\\x01\\n\\a\\x11\\x0e\\x9f.BB.\\x108(\\xc0(8\\x13\\r\\x01p\\x14\\x1c\\x1c\\x14\\x10\\x01.\\x19\\x13#1\\a\\v\\x0e\\x1f\\x16\\x1f,\\a\\v\\x0e\\x19\\x13#1\\x05\\b\\x05\\x0e\\x1f\\x16\\x1f,\\a\\v B\\\\B(88(\\xc0\\r\\x13\\xa0\\x1c(\\x1c`\\x00\\x00\\x00\\x00\\x04\\xff\\xff\\xff\\xc8\\x01\\xf1\\x01\\x8e\\x00\\f\\x00\\x1a\\x00\\\"\\x00/\\x00\\x00%4'7>\\x01\\x17\\x1e\\x01\\x17\\x14\\x06#\\a\\x17\\x16\\x06\\a\\x06\\\"'.\\x01?\\x01\\x162&\\\"&462\\x16\\x14%\\\"&5>\\x0176\\x16\\x1f\\x01\\x06\\x15\\x01H&Q\\x03\\x0e\\x06,6\\x04\\t\\a\\xbeQ\\x03\\x03\\x067|7\\x06\\x03\\x03Q\\x14-\\x03(\\x1c\\x1c(\\x1c\\xfe\\xe8\\a\\t\\x046,\\x06\\x0e\\x03Q&\\xc0,\\x18\\x80\\x06\\x03\\x04 `8\\a\\nD\\x80\\x06\\r\\x03\\x1e\\x1e\\x03\\r\\x06\\x80\\f \\x1c(\\x1c\\x1c(\\x14\\n\\a8` \\x04\\x03\\x06\\x80\\x18,\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\f\\x00\\x1a\\x00&\\x00.\\x006\\x00>\\x00\\x00%4'7>\\x01\\x17\\x16\\x17\\x16\\x0e\\x01#\\a\\x1627\\x17\\x16\\x06\\a\\x06\\\"'.\\x017'\\\"&7676\\x16\\x1f\\x01\\x06\\x15\\x16\\\"&462\\x16\\x14\\x02\\\"\\x06\\x14\\x16264\\x06\\\"&462\\x16\\x14\\x018\\x1e*\\x03\\x0f\\x064\\a\\x01\\x05\\a\\x05\\xb1\\x10$\\x10*\\x03\\x03\\x06\\\"H\\\"\\x06\\x03\\x03C\\a\\n\\x01\\a4\\x06\\x0f\\x03*\\x1e\\xa7Α\\x91Α\\xac\\x98ll\\x98l\\xab\\x1a\\x13\\x13\\x1a\\x13\\xc0#\\x13C\\x06\\x02\\x04*B\\x05\\a\\x056\\n\\nC\\x06\\r\\x04\\x10\\x10\\x04\\r\\x06y\\n\\aB*\\x04\\x02\\x06C\\x13#\\xf8\\x91Α\\x91\\xce\\x01\\x1fl\\x98ll\\x98l\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x05\\x00 \\xff\\xc0\\x02\\x83\\x01\\xc0\\x00\\a\\x00\\x0f\\x00)\\x009\\x00V\\x00\\x00\\x12\\\"&462\\x16\\x14\\x04\\\"&462\\x16\\x14\\x13\\x16\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&?\\x0167\\x1627\\x16\\x17%2\\x16\\x15\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\a\\x1e\\x02\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"&=\\x01467\\x162\\x9a4&&4&\\x01Z4&&4&?\\x03\\x0f\\f7\\x0e\\n0\\n\\x0e7\\f\\x0f\\x02.\\x06\\x18\\x188\\x18\\x18\\x06\\xfe\\xfe\\a\\t\\t\\a \\a\\t\\t\\a|\\f\\x14\\f\\x0e\\n\\b\\x0e\\nP\\n\\x0e\\b\\n\\x0e\\x19\\x13\\x188\\x01@&4&&4&&4&&4\\xfe\\xf8\\f\\x12h\\n\\x0e\\x0e\\nh\\x12\\f\\xb9\\x16\\x03\\x10\\x10\\x03\\x16\\xa9\\t\\a\\xfe \\a\\t\\t\\a\\x01\\xe0\\a\\t\\x90\\x01\\x0e\\x15\\f\\x88\\n\\x0e\\x88\\n\\x0e\\x0e\\n\\x88\\x0e\\n\\x88\\x13\\x1b\\x02\\x10\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00@\\x00D\\x00H\\x00\\x00%\\a\\x06\\\"/\\x01\\a\\x16\\x15\\x14\\x0e\\x01\\a\\x0e\\x01/\\x01\\a\\x16\\x15\\x14\\x06\\\"&4632\\x177'&67>\\x0332\\x177'&4?\\x016;\\x012\\x1f\\x01762\\x1f\\x01\\x16\\x14\\x0f\\x01\\x17\\x16\\x14%7'\\a\\x05'\\a\\x17\\x01\\xf7a\\t\\x1b\\tP\\n\\x11\\x06\\v\\x06\\x03\\x0f\\x05k\\x12\\x01\\x12\\x1b\\x13\\x13\\r\\x02\\x06\\x12l\\x05\\x02\\x06\\t\\x17\\x18\\x18\\n)&\\nQ\\t\\ta\\t\\r\\x01\\r\\tP0\\n\\x1c\\n/\\n\\n0Q\\t\\xfe\\xdcIEI\\x012EID\\x8aa\\t\\tQ\\n&)\\r! \\f\\x06\\x02\\x05l\\x12\\x06\\x02\\r\\x13\\x13\\x1b\\x12\\x01\\x12k\\x05\\x0f\\x03\\x05\\b\\x06\\x04\\x11\\tQ\\t\\x1b\\ta\\t\\tQ0\\n\\n/\\n\\x1c\\n0P\\t\\x1bhIEJ\\x9fEIE\\x00\\x03\\xff\\xf8\\xff\\xb8\\x02\\x01\\x01\\xc1\\x00\\x19\\x004\\x00O\\x00\\x00\\x05\\x16\\x06\\a\\x06.\\x027>\\x01\\x1f\\x017&5462\\x16\\x14\\x06#\\\"'\\a%\\x141\\x14\\x0e\\x01+\\x01\\\"&5.\\x01'.\\x01=\\x014>\\x02321\\x1e\\x01\\a0\\x15\\x14\\x0e\\x02+\\x01\\\".\\x015.\\x01'\\\"&=\\x0146321\\x1e\\x01\\x011\\x06\\x02\\a9\\x88b\\x12\\x1f\\x04\\x10\\x05u\\x1c\\x02\\x13\\x1a\\x13\\x13\\r\\x02\\x06\\x1b\\x01C\\x04\\b\\x04 \\x06\\n\\x06\\x8aa\\x06\\t\\x03\\x04\\x06\\x03\\x01z\\xafZ\\x03\\x04\\x06\\x03 \\x04\\a\\x05\\x05S9\\x06\\t\\t\\a\\x01Sv\\x0f\\x05\\x10\\x04 \\x13b\\x889\\a\\x02\\x06t\\x1b\\x06\\x02\\r\\x13\\x13\\x1a\\x13\\x01\\x1b+\\x01\\x04\\b\\x04\\t\\x06a\\x8b\\x05\\x01\\t\\x06 \\x03\\x06\\x04\\x03\\x06\\xafz\\x01\\x03\\x06\\x04\\x03\\x04\\a\\x04:R\\x05\\n\\x06 \\a\\t\\x06v\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\r\\x00\\x11\\x00\\x15\\x00\\x19\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x117\\x175#\\x1535#\\x1535#\\x15\\x01@\\x1a&&\\x1a\\xff\\x00\\x1a&\\x80 0\\x800\\x800\\x01\\xc0&\\x1a\\xfe\\x80\\x1a&&\\x1a\\x01@\\x80\\xa0``````\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\r\\x00\\x11\\x00\\x18\\x00\\x1f\\x00#\\x00*\\x00.\\x005\\x00\\x00\\x1146;\\x01\\x17\\x11\\x14\\x06#!\\\"&575#\\x15354&+\\x01\\x1d\\x02326=\\x01#\\x1535#\\x15\\x14\\x16;\\x015'\\x15!5%\\x1535#\\\"\\x06&\\x1a\\xc0\\x80&\\x1a\\xff\\x00\\x1a&\\xe0@\\xa0\\x13\\r  \\r\\x13\\xa0@\\xa0\\x13\\r @\\x01\\x00\\xff\\x00@ \\r\\x13\\x01\\x80\\x1a&\\x80\\xfe\\xc0\\x1a&&\\x1a\\xc0@@ \\r\\x13@\\x80@\\x13\\r @@ \\r\\x13@`@@@ @\\x13\\x00\\x00\\x05\\xff\\xf9\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\a\\x00\\x18\\x00(\\x002\\x00O\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x122\\x16\\x15\\x14\\x06+\\x01\\\"&46;\\x01264!6\\x17\\x16\\x14\\a\\x06\\\"/\\x01&6\\x1f\\x01\\x1627\\x16\\x1f\\x01\\a\\x06\\\"&4?\\x01\\\"&46;\\x012\\x16\\x0f\\x01\\\"\\x061\\x17\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x01'&6?\\x01\\x01|(\\x1c\\x1c(\\x1c)\\x0e\\t\\x1c\\x14`\\a\\t\\t\\a`\\a\\t\\xfe\\xf6\\v\\v\\x05\\x05\\x0e'\\x0eD\\f\\x17\\vD\\x05\\r=\\x06\\a\\x1e\\\\\\t\\x1a\\x13\\t0\\r\\x13\\x13\\r\\xcd\\x1a\\x15\\x13R\\x01\\x01=\\x0e\\x13\\x1a\\x13N\\x14\\x02\\x15\\x15\\x01\\xc0\\x1c(\\x1c\\x1c(\\xfe\\\\\\t\\a\\x14\\x1c\\t\\x0e\\t\\t\\x0e\\f\\f\\x04\\x0e\\x04\\x0e\\x0eD\\v\\x17\\fD\\x04\\xb8\\t\\b\\x1e\\\\\\t\\x13\\x1a\\n\\xd2\\x13\\x1a\\x131\\x13S\\x01=\\x0e\\x14Y\\r\\x13\\x13\\rSN\\x148\\x12\\x11\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\a\\x00$\\x00C\\x00\\x00\\x00\\\"&462\\x16\\x14\\x12\\x16\\x14\\a\\x06#\\\"'%.\\x01>\\x01\\x1f\\x017'&7\\x1f\\x01\\x1e\\x01\\x0f\\x01\\x17\\x1676\\x01'&76\\x1f\\x017\\x16\\x15\\x1776\\x16\\x1f\\x02\\x1e\\x01\\x0e\\x01/\\x01&/\\x01\\a/\\x01\\x06'\\x01\\xc4(\\x1c\\x1c(\\x1c\\x12\\x0e\\a\\x1a%\\x14\\x11\\xfex\\t\\x06\\t\\x13\\t\\xc6.K\\x17\\x05k(\\r\\x03\\n1\\x88\\x19\\x14\\a\\xfe\\x9a\\x1a\\x04\\x03\\x02\\x03#\\v\\x15>R\\x1d0\\a\\x114\\f\\t\\f\\x19\\f:\\x12\\x06\\a s/\\x13\\x18\\x01`\\x1c(\\x1c\\x1c(\\xfe\\x87\\x0e\\x14\\a\\x1a\\b\\xcb\\x04\\x13\\x12\\x06\\x05fEK\\x17\\x1f5(\\f#\\x0eJF\\v\\x14\\a\\x01a\\x17\\x04\\x04\\x02\\x01\\x06\\x15\\v\\x18\\x1f \\f\\x1d\\x163\\x1a\\x06\\x19\\x18\\t\\x06\\x1d\\t\\x13\\x13\\r9\\x18\\x11\\f\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\a\\x00.\\x00B\\x00N\\x00\\x00\\x00\\\"&462\\x16\\x14\\x122\\x16\\x15\\x14\\x06#!\\\"&46;\\x01\\x130&5&6?\\x016\\x1f\\x01\\x16\\x1f\\x0132\\x16\\x15\\x14\\x0f\\x013264\\a7'.\\x01?\\x01'&\\x0f\\x01\\x06\\a\\x0337\\x16\\x1f\\x01\\a37#\\\"/\\x01\\a\\x17\\x1e\\x01\\x0f\\x01\\x01d(\\x1c\\x1c(\\x1c\\x9e\\x14\\x0e*\\x1e\\xfe \\n\\x0e\\x0e\\n+6\\x02\\b\\x03\\n(%,G*\\x14\\x1a,\\r\\x13\\x14\\x1aF\\n\\x0e\\xec\\x19U\\x15\\x0f\\n%\\x0f\\r\\f'\\x06\\x064\\x18>\\f\\x12\\x16+\\xcf\\x19!\\x1e\\r\\x14 =\\x0f\\f\\x05\\x18\\x01`\\x1c(\\x1c\\x1c(\\xfe\\xa4\\x0e\\n\\x1e*\\x0e\\x14\\x0e\\x01\\x0f\\x01\\x01\\n\\x1b\\b\\x1e\\x1c\\v\\x15\\v(5\\x13\\r\\x16\\b\\xb2\\x0e\\x14\\\"Q2\\r.\\x16W\\x05\\x03\\n\\x1e\\x04\\x02\\xfe\\xfb\\x84\\x12\\n\\r[\\xb0\\x1b)N$\\t\\x1e\\x0fL\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x83\\x01\\xa0\\x00\\x19\\x00C\\x00\\x00%\\x16\\a\\x0e\\x01#!\\\"&=\\x01463!2654/\\x01&?\\x016\\x17%5\\\"&46;\\x012\\x1e\\x03\\x17\\x1e\\x02;\\x0126=\\x0132\\x16\\x14\\x06#\\x15\\x14\\x06#\\x15#5#\\x15#5.\\x01\\x02e\\x1d\\x02\\x02,\\x1e\\xfd\\xfc\\a\\t\\t\\a\\x02\\a\\v\\x0e\\t\\n\\f\\n\\n\\n\\f\\xfd\\xc5\\r\\x13\\x13\\r\\x15\\x13&\\\"\\x1f\\x18\\t\\x0f/= \\x15\\x1a&`\\r\\x13\\x13\\r8(@\\xc0@*6a\\x17&\\x1d'\\t\\a\\x10\\a\\t\\x0e\\v\\v\\b\\a\\n\\r\\f\\r\\nw\\x80\\x13\\x1a\\x13\\t\\x10\\x17\\x1f\\x11\\x1d,\\x17&\\x1a@\\x13\\x1a\\x13`(80004\\vE\\x00\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x006\\x00W\\x00y\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&'&>\\x027&54\\x172654/\\x01&54;\\x012=\\x014+\\x01\\\"\\x06\\x15\\x14\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"\\x1d\\x01\\x143754&+\\x01\\\"\\x0f\\x01'&+\\x01\\\"\\x06\\x1d\\x01\\x14;\\x012=\\x01\\x17\\x162?\\x01\\x15\\x14;\\x01232654/\\x01&54;\\x012=\\x014+\\x01\\\"\\x06\\x15\\x14\\x1f\\x01\\x16\\x15\\x14+\\x01\\\"\\x1d\\x01\\x143\\x96Ԗ\\x96j83AL\\x02\\x04\\x01\\x02\\a\\x11\\x1c\\x069\\x80\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\f\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\xcc\\t\\a\\x10\\n\\x04\\x12\\x12\\x04\\n\\x10\\a\\t\\b\\x10\\b\\x19\\x02\\n\\x02\\x19\\b\\x10\\b0\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\f\\x12\\x19\\x0e\\x16\\x02\\v\\f\\b\\b\\x01\\xa0z\\xacz\\x133\\x03\\x02\\x05\\a\\x151\\x169JV\\x96\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\b\\x17\\x10\\x11\\v\\x13\\x01\\x02\\a\\b\\x10\\b\\bh\\a\\t\\t##\\t\\t\\ah\\b\\bD8\\x04\\x048D\\b\\x17\\x10\\x10\\f\\x13\\x01\\x02\\a\\b\\x10\\b\\x17\\x10\\x11\\v\\x13\\x01\\x02\\a\\b\\x10\\b\\x00\\x00\\x00\\x00\\x03\\xff\\xfe\\xff\\xc0\\x02\\x02\\x01\\xc3\\x00\\a\\x00E\\x00Q\\x00\\x00\\x00\\\"&462\\x16\\x14\\a'\\a\\x17\\x16\\x0f\\x01\\x06\\a\\x17\\x1676\\x1e\\x01\\x06\\a\\x06#\\\"'%&'&>\\x01\\x16\\x17\\x16\\x1f\\x01&'&6?\\x0154?\\x01'&/\\x01&>\\x01\\x16\\x1f\\x02\\x16\\x1f\\x01\\x1e\\x01\\a\\x06#\\\"\\a'\\x15\\x14\\x06\\x0f\\x01\\x06\\a\\x17&7\\x01\\xc4(\\x1c\\x1c(\\x1c\\x13TB4\\x19\\a\\x15\\x04\\x0eZ\\x10\\x0e\\t\\x13\\b\\a\\t\\x11\\x13\\x0f\\x0f\\xfe\\x93!\\x10\\x04\\a\\x12\\x13\\x04\\a\\x0f&\\x06\\x02\\x05\\f\\rJ#*\\x11\\x13\\t\\x1d\\x06\\t\\x18\\x19\\x06\\x1a?\\x19\\x15o\\v\\x04\\b\\n\\x10\\v\\x99<\\x12\\x0fU\\x02\\x06\\xaa\\x05\\x02\\x01`\\x1c(\\x1c\\x1c(\\xb6?\\x1e'\\x13\\x1ef\\x0f\\x06\\\"\\x05\\a\\x04\\a\\x12\\x13\\x04\\b\\x05\\x85\\f!\\t\\x12\\t\\a\\t\\x0f\\x05\\x0e\\x06\\a\\r\\x17\\x04\\x195(\\x11\\x15\\x06\\x06\\x12:\\v\\x1a\\v\\b\\f4\\x15\\b\\x10S\\b\\x1b\\n\\r--\\x14\\x10\\x19\\x05\\x1c\\x01\\x01=\\n\\n\\x00\\x00\\x00\\a\\xff\\xff\\xff\\xc0\\x02\\x02\\x01\\xc1\\x00T\\x00\\\\\\x00d\\x00l\\x00t\\x00\\u007f\\x00\\x87\\x00\\x00\\x01\\x16\\x06\\x0f\\x01\\x14\\x16\\x14\\x15\\x14\\a\\x16\\x17\\x16\\x06\\a\\x06+\\x01\\\"'.\\x01547&507'.\\x02?\\x01>\\x01\\x1f\\x0154>\\x02;\\x012\\x16\\x1d\\x01\\x141\\x15\\x1767&5462\\x16\\x15\\x14\\a\\x16\\x17704=\\x0146;\\x012\\x16\\x1d\\x0176\\x16\\x17$264&\\\"\\x06\\x14\\x12264&\\\"\\x06\\x146264&\\\"\\x06\\x146264&\\\"\\x06\\x147654&\\\"\\x06\\x15\\x14\\x16\\x176264&\\\"\\x06\\x14\\x01\\xff\\x02\\x05\\x06\\x87\\x01\\x04!\\b\\t#%\\x10\\x15c\\x12\\r!&,\\x04\\x01\\x87\\x04\\x05\\x01\\x01\\x06\\x03\\f\\x06\\x1c\\x03\\x04\\x06\\x03\\x10\\a\\t8\\t\\r\\x168P8\\x16\\r\\t8\\t\\a\\x10\\a\\t\\x1c\\x06\\r\\x02\\xfe\\xe0\\x0e\\t\\t\\x0e\\t)\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\t\\x0e\\t\\x10\\x10\\t\\x0e\\t\\b\\x04\\x1d\\x0e\\t\\t\\x0e\\t\\x01(\\x06\\f\\x037\\x01\\x05\\x04\\x02\\r\\x10\\\"-.Q\\x19\\f\\b\\x15C(?,\\x10\\r\\f7\\x02\\a\\b\\x04\\x0e\\x06\\x05\\x02\\f\\x1d\\x04\\x05\\x05\\x02\\t\\a.\\x01\\x01\\x17\\x0f\\f\\x1b!(88(\\\"\\x1a\\f\\x0f\\x17\\x01\\x01.\\a\\t\\t\\a\\x1d\\f\\x02\\x05\\x06*\\t\\x0e\\t\\t\\x0e\\xfe\\xe7\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0e7\\t\\x0e\\t\\t\\x0eO\\x17\\t\\a\\t\\t\\a\\x04\\x10\\x062\\t\\x0e\\t\\t\\x0e\\x00\\a\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00[\\x00`\\x00l\\x00\\x0062\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x05\\x17\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&=\\x01#\\x16\\x15\\x14\\x06#!\\\"&54>\\x017546;\\x01546;\\x012\\x1f\\x01\\x16\\x1d\\x01354?\\x0162\\x1f\\x01\\x16\\x14\\x0f\\x01\\x06\\x1d\\x01\\x14\\x01\\x15\\x173'\\x13264&#!\\\"\\x06\\x14\\x163n\\x14\\x0e\\x0e\\x14\\x0e^\\x14\\x0e\\x0e\\x14\\x0e^\\x14\\x0e\\x0e\\x14\\x0e^\\x14\\x0e\\x0e\\x14\\x0e\\x01\\a$\\x05\\x05\\x16\\x05\\r\\x05%)+\\vB.\\xff\\x00.B\\x10\\x1d\\x13\\x1c\\x14\\x10\\x1c\\x14\\x90 \\fO\\x05@)%\\x05\\r\\x05\\x16\\x05\\x05$\\x17\\xfe\\x80@zD:\\x14\\x1c\\x1c\\x14\\xff\\x00\\x14\\x1c\\x1c\\x14H\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x0e\\x14#%\\x05\\r\\x05\\x16\\x05\\x05$*:\\x13\\x17\\x19.BB.\\x16(\\x1e\\t[\\x14\\x1cp\\x14\\x1c\\x1d\\xb7\\f\\r3\\x13:*$\\x05\\x05\\x16\\x05\\r\\x05%\\x16 f \\x01S`@\\xa0\\xfe\\x80\\x1c(\\x1c\\x1c(\\x1c\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\x80\\x01\\xa0\\x00\\x13\\x00\\x1f\\x00\\x00\\x012\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x0143%2\\x1d\\x01\\x14#!\\\"=\\x0143\\x01t\\f\\f\\x8c\\f8\\f\\x8c\\f\\f\\x01h\\f\\f\\xfe\\x98\\f\\f\\x01 \\f8\\f\\xe4\\f\\f\\xe4\\f8\\f\\x80\\f8\\f\\f8\\f\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00%\\x001\\x009\\x00\\x00\\x01#\\x15\\x16\\x15\\x14\\x06\\a\\x17\\x16\\x06+\\x01\\\"&?\\x01.\\x015475#\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06\\x05\\x15\\x14;\\x012=\\x014+\\x01\\\"\\x16264&\\\"\\x06\\x14\\x01p\\x10 /(\\x16\\x04\\x13\\x10\\xc0\\x10\\x13\\x04\\x16(/ \\x10\\a\\t\\t\\a\\x01`\\a\\t\\t\\xfe\\xd9\\b0\\b\\b0\\b6tRRtR\\x01\\x90\\x9d\\x10\\x132T\\x1aG\\x0f\\x1a\\x1a\\x0fG\\x1aT2\\x13\\x10\\x9d\\t\\a\\x10\\a\\t\\t\\a\\x10\\a\\t\\x18\\x10\\b\\b\\x10\\b\\xd0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x04\\xff\\xff\\xff\\xbf\\x02\\x05\\x01\\xc5\\x00\\x15\\x00/\\x009\\x00A\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01.\\x017'#'7\\x17\\x15\\x176\\x16\\x17'\\\"\\a'&7>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x1f\\x0176\\x16\\x17\\x16\\x06\\a\\x06\\a'&\\a\\x06\\x17\\a\\x06\\\"&4?\\x01\\x06264&\\\"\\x06\\x14\\x01\\xf5\\v\\v5\\n\\x1f\\vu\\x11\\b\\vk>`@\\x80k\\x140\\x114\\r\\fR\\x01*\\x1bI%\\a\\x03\\x05J\\vDK\\x05\\r\\x02\\t\\x14\\x1b\\x13\\x19\\x13\\x1f\\x94\\a\\f|\\x135%\\x13\\x98u\\x14\\x0e\\x0e\\x14\\x0e4\\v\\x1e\\v5\\v\\vu\\x110\\x14k\\x80@`>k\\v\\b\\x116\\x03R=+\\x1b\\x14\\t\\x02\\x0e\\x04KD\\vJ\\x05\\x03\\a$J\\x1b\\x12\\v\\x13\\x1fR\\x1f {\\x13%5\\x13\\x99\\xde\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x06\\xff\\xfe\\xff\\xc0\\x02\\x02\\x01\\xc0\\x00\\a\\x00)\\x00-\\x001\\x005\\x00=\\x00\\x00\\x00\\\"&462\\x16\\x142\\x16\\x06\\x0f\\x01\\x1532\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x015\\a\\\"#\\\"'&67%6\\x015#\\x15%\\x1535+\\x01\\x153\\x02\\\"&462\\x16\\x14\\x01-\\x1a\\x13\\x13\\x1a\\x13\\xbe\\x03\\x06\\a\\xe4\\xb0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\xb0\\xdc\\x02\\x02\\f\\x03\\x02\\a\\x06\\x01\\xe0\\x06\\xfe\\xbe`\\x01\\x00`\\x80``c\\x1a\\x13\\x13\\x1a\\x13\\x01\\x80\\x13\\x1a\\x13\\x13\\x1a\\r\\f\\x02<\\\\\\x13\\r\\xe0\\r\\x13\\x13\\r\\xe0\\r\\x13S;\\f\\x06\\f\\x01\\x80\\x02\\xfe\\xa7``````\\x01 \\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x0e\\x00\\x1f\\x00\\x00\\x01\\x1e\\x01\\x15\\x14\\x06\\\"&5467\\x16\\x176\\x13>\\x01'&'\\a&'\\x0e\\x02\\x15\\x14\\x1632\\x01D4H\\x83\\xba\\x83_I9*\\x1b\\n$\\x13\\x15\\x06\\x06:\\\\\\a\\x1b\\x1c\\x12K8+\\x01\\x8d0\\x8c+_\\x87\\x87_6\\xa0D5: \\xfe\\xc7\\x1aY'\\t\\vCu\\b ((\\x138E\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xc0\\x02A\\x01\\xc0\\x00,\\x00X\\x00\\x007\\x0e\\x03\\a\\x06\\a'&67670767>\\x06767632\\x1f\\x01\\x06\\a\\x0e\\x05\\a\\x0e\\x02%\\x16\\x06\\a\\x06\\a\\\"\\a\\x06\\a\\x0e\\x04\\a\\x06\\a\\x06#\\\"/\\x0167>\\x047>\\x027>\\x05767\\xdb\\r\\x16\\x18\\x0e\\r5#$\\t\\x01\\n$7\\x02E\\x1c\\x04\\x03\\x12\\x10 #3\\x1e\\x1b\\x0e\\b\\n\\r\\t%\\x1e.\\x13\\x16&%\\x1a\\n\\a\\a\\b\\x17\\x01L\\t\\x01\\n$7\\x01\\x01E\\x1c\\x06\\a %C(\\x1b\\x0e\\b\\n\\r\\t%\\x1e.\\f\\f\\x16\\x11\\x17\\f\\x12\\x1a\\n\\a\\x06\\t\\x17 !\\x14\\x115#p\\r\\x12\\f\\a\\x04\\x14!#\\n\\x1b\\b\\x1e\\x15\\x01\\x17J\\v\\b$\\x18'\\x1c\\x1f\\v\\n\\n\\x06\\t%\\x1c\\x12\\a\\n\\x1a%&\\x15\\x13\\x12\\x13!\\xd8\\n\\x1b\\b\\x1e\\x15\\x01\\x17J\\x0f\\x126'/\\x0f\\n\\n\\x06\\t%\\x1c\\x12\\x04\\x05\\v\\v\\x13\\v\\x13&\\x15\\x13\\x12\\x13!!\\x16\\t\\x06\\x14!\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x16\\x002\\x00:\\x00\\x00%\\x14\\a\\x06\\x14\\x17\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x15\\x05\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x135!\\\"\\x06\\x14\\x163\\x01\\xc0\\n\\x02\\x02\\n\\x0f\\v\\xfe\\xba)77)\\x01F\\x1a\\xfe\\xd0\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\xed\\xfe\\xe3\\r\\x13\\x12\\x0eZ\\x0f\\x05\\t4\\f\\n\\t\\x10\\f\\x0e7)\\x01@)7\\x1a\\x8e0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xfe\\xe0@\\x12\\x1c\\x12\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02@\\x01\\xc0\\x00\\x18\\x00\\x00\\x012\\x1e\\x02\\x15\\x14\\x06#\\x11\\x14\\x06#!\\\"&5\\x11\\\".\\x02546\\x01 AoH(#\\x1d\\x15\\x0f\\xfe\\x88\\x0f\\x15\\x0f\\x18\\x10\\t\\xa1\\x01\\xc0\\x1f2;\\x1d\\x18\\x1f\\xff\\x00\\r\\x13\\x13\\r\\x01\\x00\\t\\x0f\\x14\\v>k\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00\\t\\x00\\x12\\x00\\x005!\\x15\\x14\\x06#!\\\"&5\\x01\\x1e\\x01\\x15!%630\\x02\\x00\\x13\\r\\xfe@\\r\\x13\\x01,Y{\\xfe\\x00\\x01\\x17\\b\\f\\xa0\\xa0\\r\\x13\\x13\\r\\x01\\xa0\\x05\\x81Z\\xd9\\a\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x02A\\x01\\xc1\\x00\\x10\\x00,\\x00H\\x00\\x00\\x01\\x17\\x1e\\x013\\x15\\x14\\x06#!\\\"&=\\x01265\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x01327\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"/\\x01&\\\"\\x0f\\x01\\x06#\\\"/\\x01&547%62\\x17\\x01 \\xdb\\x01\\x03\\x01\\t\\a\\xfe`\\a\\t\\x01\\x04\\x01;\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\xbb\\x05\\x04\\x15\\x05\\a\\a\\x04\\xe5\\x05\\f\\x05\\xe5\\x04\\a\\a\\x04\\x16\\x04\\x05\\x01\\x00\\f\\x1e\\f\\x01M\\xc1\\x01\\x02\\xb9\\a\\t\\t\\a\\xb9\\x02\\x01D0\\b8\\b\\b8\\b0\\b8\\b\\b8\\x94\\x05\\a\\x06\\x05\\x18\\x05\\x04\\xca\\x04\\x04\\xca\\x04\\x05\\x18\\x05\\x06\\a\\x05\\xe2\\n\\n\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x14\\x000\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"547>\\x027&54\\x0554+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132\\x96Ԗ\\x96j83AL\\b\\x02\\x04\\x11\\x1c\\x069\\x01`\\b8\\b0\\b8\\b\\b8\\b0\\b8\\b\\x01\\xa0z\\xacz\\x133\\b\\x03\\x03\\x03\\x151\\x16:IVn0\\b8\\b\\b8\\b0\\b8\\b\\b8\\x00\\x00\\x03\\xff\\xff\\xff\\xbf\\x02\\x00\\x01\\xc0\\x00\\x0f\\x00%\\x00.\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x017\\x17\\a\\x06\\x0f\\x02\\x06\\\"/\\x01&4?\\x026?\\x01\\x17\\a\\x177'\\a\\x06\\x0f\\x0176\\x01\\xfb\\x05\\x05\\x16\\x05\\r\\x05\\xb5\\x05\\x05\\x17\\x04\\x0e\\x04\\x027-n\\x13\\x1bxf\\x05\\r\\x05\\x16\\x05\\x05f\\x1b\\a\\x13n-7\\r\\nD\\n\\x06\\x02\\x13P\\t\\x01\\x06\\x04\\x0e\\x04\\x17\\x05\\x05\\xb5\\x05\\r\\x05\\x16\\x05\\x05\\xf77-n\\x13\\a\\x1bf\\x05\\x05\\x16\\x05\\r\\x05fx\\x1b\\x13n-7{\\nD\\n\\x06\\tP\\x13\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x00\\x122\\x1e\\x01\\x15\\x14\\x06\\\"&546\\x8fb]2p\\xa0p2\\x01\\xc0u\\x947PppP7\\x94\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\v\\x00\\x1b\\x00'\\x00/\\x007\\x00?\\x00\\x00%2\\x16\\x14\\x06#!\\\"&463\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014637\\\"&7>\\x012\\x16\\x17\\x16\\x06#&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x16264\\x06\\\"\\x06\\x14\\x16264\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xb0\\a\\t&\\x1a\\xfe\\xa0\\x1a&\\t\\a\\x1b\\x1a\\x18\\x0f\\x1f~\\x96~\\x1f\\x0f\\x18\\x1a>\\x0e\\t\\t\\x0e\\t\\x89\\x0e\\t\\t\\x0e\\t\\x89\\x0e\\t\\t\\x0e\\t\\xc0\\x1c(\\x1c\\x1c(\\x1c\\x80\\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\xa04\\x182BB2\\x184p\\t\\x0e\\t\\t\\x0e)\\t\\x0e\\t\\t\\x0e\\x17\\t\\x0e\\t\\t\\x0e\\x00\\x00\\x01\\x00 \\xff\\xc0\\x01\\xe0\\x01\\xc1\\x00@\\x00\\x00%\\x15\\x14\\x0e\\x01+\\x01\\\"&/\\x01&=\\x0146?\\x01\\x15\\x142=\\x014>\\x03376\\x1e\\x01\\x1d\\x01\\x142=\\x0146321\\x1e\\x01\\x1d\\x01\\x142=\\x0146\\x1f\\x01\\x1e\\x03\\x1d\\x01\\x17\\x1e\\x01\\x01\\xe0\\x1e4\\x1e\\xd7\\x13/\\r\\x1f\\v\\f\\t\\x1b\\x10\\x03\\x05\\b\\n\\x05\\x1f\\b\\x10\\n\\x10\\x1c\\x14\\x01\\x14\\x1b\\x10\\x15\\r'\\x05\\b\\a\\x03$\\v\\x11\\x83S\\x1e4\\x1e\\x13\\x0e\\x1f\\v\\x0fJ\\t\\x14\\x04\\x0fL\\b\\b\\x93\\x05\\b\\a\\x06\\x05\\x06\\x01\\x06\\f\\a \\b\\b\\xc8\\x14\\x1c\\x01\\x1d\\x14\\xc6\\b\\b \\v\\x0f\\x02\\a\\x01\\x04\\x06\\b\\x042\\t\\x03\\x15\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x13\\x00#\\x00\\x00%\\x15!5467\\x17546;\\x012\\x16\\x1d\\x017\\x1e\\x01\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x01463\\x01\\xe0\\xfe@B5)\\t\\a`\\a\\t)5B\\x10\\a\\t\\t\\a\\xfe \\a\\t\\t\\a\\xa0@@;a\\x16Rp\\a\\t\\t\\apR\\x16a\\x9b\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\x00\\x00\\x04\\xff\\xfe\\xff\\xbe\\x02\\x02\\x01\\xc2\\x00\\x17\\x00A\\x00K\\x00U\\x00\\x00\\x01\\x1e\\x03\\x15\\x14\\x06\\a\\x01\\x0e\\x01#\\\"&5467\\x01>\\x012\\x16\\a64&\\\"\\a\\x06\\a\\x0e\\x01\\a\\x0e\\x01\\a\\x0e\\x01\\a\\x0e\\x01\\a\\x06\\a\\x06\\x14\\x162767>\\x017>\\x017>\\x017>\\x0176\\x05'.\\x01?\\x016\\x16\\x1f\\x03\\x1e\\x01\\x0f\\x01\\x06&/\\x01\\x01\\xe9\\x04\\t\\x06\\x04\\x0e\\t\\xfe\\xa0\\n\\\"\\x0e!/\\x0e\\n\\x01`\\n!\\x1c!(\\x04\\t\\r\\x05\\f\\x17 '\\x06\\x04\\x18\\x17 '\\x06\\x04\\x18\\x17 \\x14\\x04\\t\\r\\x05\\f\\x17 '\\x06\\x04\\x18\\x17 '\\x06\\x04\\x18\\x17 \\xfe|\\v\\x13\\x02\\x11\\xd0\\x113\\x13\\v\\x9f\\v\\x13\\x02\\x11\\xd0\\x113\\x13\\v\\x01\\xa9\\x05\\x0e\\x0f\\x10\\a\\x0e!\\n\\xfe\\xa0\\n\\x0e/!\\x0e\\\"\\n\\x01`\\t\\x0e\\x0ei\\x05\\r\\n\\x05\\f\\x04\\x06' \\x17\\x18\\x04\\x06' \\x17\\x18\\x04\\x06\\x13\\x05\\r\\n\\x05\\f\\x04\\x06' \\x17\\x18\\x04\\x06' \\x17\\x18\\x04\\x06\\xb8\\v\\x133\\x11\\xd0\\x11\\x02\\x13\\v\\x9f\\v\\x133\\x11\\xd0\\x11\\x02\\x13\\v\\x00\\x00\\x00\\x02\\x00 \\xff\\xbf\\x01\\xa0\\x01\\xc1\\x00\\x15\\x00\\x1d\\x00\\x00\\x012\\x16\\x14\\x06#!\\\"&46;\\x01&5462\\x16\\x15\\x14\\a\\x03'!\\a\\x0e\\x01\\\"&\\x01p\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01\\x01TxT\\x01\\xacc\\x01\\x00c\\x04\\x11\\x10\\x11\\x01 \\x1c(\\x1c\\x1c(\\x1c\\b\\b<TT<\\b\\b\\xfe\\xb2\\xce\\xce\\a\\v\\v\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x1b\\x00%\\x00)\\x00A\\x00\\x007\\\"=\\x014;\\x0154;\\x012\\x1d\\x0132\\x1d\\x01\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01%\\x11!\\x11463!2\\x16\\x03\\x11!\\x11\\x052\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x01\\x14\\x16;\\x01267\\xe8\\b\\b8\\b0\\b8\\b\\b8\\b0\\b\\x01 \\xfe\\x00\\x1c\\x14\\x01\\xa0\\x14\\x1c@\\xfe\\x80\\x01\\xf0\\a\\t&\\x1a\\xfe\\x00\\x1a&\\t\\a\\xef\\x14\\r=\\x0e\\x12\\x01\\xe0\\b0\\b8\\b\\b8\\b0\\b8\\b\\b8\\xb0\\xfe\\xb0\\x01P\\x14\\x1c\\x1c\\xfe\\xdc\\x01\\x00\\xff\\x00`\\t\\a\\x10\\x1a&&\\x1a\\x10\\a\\t\\v\\x15\\x11\\x0f\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x19\\x00#\\x003\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x135#\\\"\\x06\\x1d\\x01\\x14\\x163754&+\\x01\\x15326754&#!\\\"\\x06\\x1d\\x01\\x14\\x163!26\\x01\\xc0\\x1a&&\\x1a\\xfe\\x80\\x1a&&\\x1a`P\\a\\t\\t\\a\\xd0\\t\\aPP\\a\\t\\xa0\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\x01\\x80&\\x1a\\xff\\x00\\x1a&&\\x1a\\x01\\x00\\x1a&\\xfe\\xd00\\t\\a\\x10\\a\\t\\x10\\x10\\a\\t0\\t\\x87@\\r\\x13\\x13\\r@\\r\\x13\\x13\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x15\\x001\\x00\\x00%3\\x17\\x0e\\x03#\\\"&4632>\\x057\\x177\\x1e\\x01\\x15\\x14\\a'#5'632\\x176'&54?\\x01632\\x17\\x1e\\x01\\x06\\x01Kk%\\x13Kj\\x8fL\\x17!!\\x17\\x1d1$\\x1d\\x18\\x14\\x18\\v5\\x83\\x15\\x1d\\x066YK$(\\x1e\\x1c\\x15\\x14\\x02\\x03\\x17\\x02\\x03\\x04\\x03\\n\\f\\x04\\xb9'\\\"G@)!.!\\x14#+2-,\\x0e\\x18&\\x13B\\x1d\\x11\\x169N\\\"\\x17\\f+\\x1d\\x02\\x03\\x03\\x03\\x17\\x02\\x03\\r$7\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00\\x11\\x00\\x1e\\x00&\\x00.\\x006\\x00\\x00\\x13\\x1e\\x02\\x17\\x16\\x0e\\x01\\x0f\\x01.\\x02'7>\\x02\\a\\x1e\\x02\\x17\\x05\\x06#\\\"&5476264&\\\"\\x06\\x146264&\\\"\\x06\\x14\\x16264&\\\"\\x06\\x14\\x9fZ\\x9ab\\v\\x01\\x06\\v\\b9\\x04R\\x8f]\\x0f\\x02\\n\\x0f3X\\x86K\\x03\\xfe\\x85\\x03\\x02\\x06\\n\\x01r\\x1a\\x13\\x13\\x1a\\x13C\\x1a\\x13\\x13\\x1a\\x13{\\x1a\\x13\\x13\\x1a\\x13\\x01\\xc0\\t_\\x99Y\\b\\x0f\\v\\x02\\x10]\\x8eP\\x029\\a\\f\\x06q\\x01J\\x85Vi\\x01\\n\\x06\\x02\\x02L\\x13\\x1a\\x13\\x13\\x1a\\x85\\x13\\x1a\\x13\\x13\\x1a{\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x1f\\x007\\x00\\x00\\x17\\x03!\\x03\\x0e\\x01+\\x01\\\"&7\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326/\\x01&\\\"\\a72\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x015\\x15\\x01\\x80\\x15\\x01\\x1c\\x13\\xf6\\x13\\x1cE\\a\\b\\v9\\t\\a \\a\\t9\\v\\b\\aZ\\x04\\x0e\\x04\\xdb\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\x13\\x01S\\xfe\\xad\\x13\\x1a\\x1a\\xc3\\b\\x15p\\a\\t\\t\\ap\\x15\\b^\\x05\\x05\\xa5\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\t\\x00\\x1f\\x007\\x00\\x00\\x17\\x11!\\x11\\x14\\x06#!\\\"&7\\x06\\x16;\\x01\\x15\\x14\\x16;\\x0126=\\x01326/\\x01&\\\"\\a72\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x0146;\\x0176;\\x012\\x1f\\x01 \\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c[\\a\\b\\v9\\t\\a \\a\\t9\\v\\b\\aZ\\x04\\x0e\\x04\\xdb\\a\\t\\t\\a\\xfe`\\a\\t\\t\\ax\\t\\a\\x0fr\\x0f\\a\\t\\x10\\x01P\\xfe\\xb0\\x14\\x1c\\x1c\\xc1\\b\\x15p\\a\\t\\t\\ap\\x15\\b^\\x05\\x05\\xa5\\t\\a \\a\\t\\t\\a \\a\\t\\x13\\r\\r\\x13\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc1\\x00\\x0e\\x00 \\x00<\\x00D\\x00\\x00%\\x1e\\x01\\x15\\x14\\x06#!\\\"&5467\\x176\\\"&=\\x0146?\\x0162\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x14'\\x15\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014+\\x0154+\\x01\\\"\\x1d\\x01#\\\"\\a\\x15\\x14\\x1626=\\x01\\x01?6K\\\"\\x18\\xfe\\xb4\\x18\\\"K6_5jK\\f\\tU\\n\\x18\\nU\\t\\f\\xa8\\x05\\x16\\x05\\x10\\x05\\x16\\x05\\x05\\x16\\x05\\x10\\x05\\x16\\x05(/B/\\x80\\x02N6\\x18\\\"\\\"\\x186N\\x02_oK5n\\t\\x12\\x03 \\x04\\x04 \\x03\\x12\\tn5\\x9d\\x10\\x05\\x16\\x05\\x05\\x16\\x05\\x10\\x05\\x16\\x05\\x05\\x16]\\x10!//!\\x10\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xa0\\x00-\\x00\\x00\\x05#\\\"&5\\x11#\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x01546;\\x012\\x16\\x15\\x113546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\x15\\x14\\x06\\x01ܘ\\x0f\\x15`\\x15\\x0f\\x8c\\a\\t\\t\\ap\\x15\\x0f\\x98\\x0f\\x15`\\x15\\x0f\\x8c\\a\\t\\t\\ap\\x15 \\x15\\x0f\\x01\\\\\\x9c\\x0f\\x15\\t\\a \\a\\t\\x9c\\x0f\\x15\\x15\\x0f\\xfe\\xa4\\x9c\\x0f\\x15\\t\\a \\a\\t\\x9c\\x0f\\x15\\x00\\x06\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\a\\x00'\\x00/\\x007\\x00?\\x00G\\x00\\x00\\x00\\\"&462\\x16\\x14\\a'\\a\\x17\\x16\\x1d\\x01\\x14\\x06\\\"&=\\x01'&54?\\x01632\\x1f\\x0132\\x16\\x14\\x06+\\x01\\\"\\x162\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01\\xa4(\\x1c\\x1c(\\x1c4);*\\x0e\\x13\\x1a\\x13R\\x0e\\vp\\t\\f\\v\\tG5\\r\\x13\\x13\\r@\\v6jKKjKf4&&4&\\xfe\\x8bjKKjKf4&&4&\\x01`\\x1c(\\x1c\\x1c(\\x95!2\\x1b\\n\\x11\\x80\\r\\x13\\x13\\ro6\\n\\x11\\x0f\\t`\\b\\a9\\x13\\x1a\\x13 KjKKju&4&&4\\x9aKjKKju&4&&4\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1f\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x05#\\x153'#\\x153\\a35#\\x1735#\\x01\\xa0\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01`\\x80\\x80\\xc0\\x80\\x80\\x80\\x80\\x80\\xc0\\x80\\x80\\x01\\xa0\\x13\\r\\xfe\\x80\\r\\x13\\x13\\r\\x01\\x80\\r\\x13@\\x80\\x80\\x80\\xc0\\x80\\x80\\x80\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\u007f\\x00\\x8f\\x00\\x9f\\x00\\xaf\\x00\\xbf\\x00\\xcf\\x00\\xdf\\x00\\xef\\x00\\xff\\x01\\x0f\\x01\\x1f\\x01/\\x01?\\x01O\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x032\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\xf0\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a\\xa0\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a@\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\xfe\\xa0\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xfe\\xe0\\t\\a \\a\\t\\t\\a \\a\\t\\x01\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00O\\x00_\\x00o\\x00\\x84\\x00\\x0072\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463#2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x172\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146372\\x16\\x1d\\x01\\x14\\x06#!\\x11\\x14\\x06+\\x01\\\"&5\\x11463\\xf0\\a\\t\\t\\a \\a\\t\\t\\a@\\a\\t\\t\\a \\a\\t\\t\\a\\xe0\\a\\t\\t\\a \\a\\t\\t\\a\\x80\\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a\\xfe\\x90\\t\\a \\a\\t\\x13\\r \\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\t\\a \\a\\t\\x01 \\t\\a \\a\\t\\t\\a \\a\\t`\\t\\a \\a\\t\\xfe\\x90\\a\\t\\t\\a\\x01\\x90\\r\\x13\\x00\\x00\\x00\\x00\\x02\\xff\\xff\\xff\\xbf\\x02\\x01\\x01\\xc1\\x00$\\x00,\\x00\\x00\\x012\\x16\\x17\\x16\\x06/\\x01\\x16\\x15\\x14\\x0e\\x01\\a\\x06&?\\x01\\x06#\\\"&'&6\\x1f\\x01&54676\\x16\\x0f\\x016\\x06264&\\\"\\x06\\x14\\x01a=Z\\b\\x01\\v\\b{\\r%A'\\b\\f\\x01\\f#*=Z\\b\\x01\\v\\b{\\rQ<\\b\\f\\x01\\f#D\\x1a\\x13\\x13\\x1a\\x13\\x01@Q<\\b\\f\\x01\\f#*(E-\\x05\\x01\\v\\b{\\rQ<\\b\\f\\x01\\f#*=Z\\b\\x01\\v\\b{\\r\\xa0\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\xff\\xfe\\xff\\xc0\\x02\\x02\\x01\\xc2\\x00\\x12\\x00.\\x006\\x00L\\x00j\\x00\\x007'&676\\x16\\x1f\\x017>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x06\\\"\\x172\\x16\\x1d\\x01\\x14\\x0e\\x02+\\x01\\\"&=\\x0146;\\x017>\\x01;\\x012\\x16\\x1f\\x01\\x06264&\\\"\\x06\\x14%2\\x16\\x0f\\x01\\x06\\\"&?\\x01#\\\"&?\\x016;\\x012\\x16\\x0f\\x01\\x136\\x16\\x1d\\x01\\x14\\x06\\\"&4632\\x175\\a\\x15\\x14\\x06\\\"&4632\\x175467ua\\x15\\x02\\x18\\x155\\x13\\n\\n\\x135\\x15\\x18\\x02\\x15a\\x04\\x0e\\x8c\\v\\x10\\x04\\b\\n\\x05\\xea\\v\\x10\\x10\\v0\\a\\x03\\x0f\\bH\\b\\x0f\\x02\\b[,\\x1e\\x1e,\\x1e\\x01\\x97\\b\\a\\x04\\\\\\x04\\r\\b\\x02\\x18>\\x06\\b\\x01\\x11\\x01\\vL\\x06\\b\\x02\\x16'\\x0e\\x14&5%%\\x1b\\b\\bp&5%%\\x1b\\b\\b\\x0f\\v\\xe5c\\x16>\\x14\\x12\\x05\\x13\\v\\v\\x13\\x05\\x12\\x14>\\x16c\\x05`\\x10\\v\\x8a\\x05\\n\\b\\x04\\x10\\v\\x8a\\v\\x10\\x0e\\b\\n\\n\\b\\x0e\\x94\\x1e,\\x1e\\x1e,V\\v\\x05\\x8b\\x05\\b\\x05S\\a\\x05k\\t\\b\\x053\\x01`\\x02\\x13\\x0f\\x90\\x14\\x1c\\x1c(\\x1c\\x020\\x12l\\x14\\x1c\\x1c(\\x1c\\x02k\\f\\x12\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00#\\x00\\x00%\\x16\\x15\\x14\\x0f\\x01\\x0e\\x02#\\\"\\x0054>\\x01?\\x01632\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x1e\\x01\\x177632\\x17\\x01\\xf1\\x0f\\x01\\x18\\x01\\a\\n\\x05\\xc0\\xfe\\xf0\\x05\\t\\x05h\\x02\\x03\\x10\\x060\\x02\\t<\\x17h21\\b\\v\\x05\\x04V\\x06\\x10\\x03\\x02h\\x05\\t\\x05\\x01\\x10\\xc0\\x05\\n\\a\\x01\\x18\\x01\\x0fp\\x04\\x05\\v\\b12h\\x17<\\t\\x02\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01454/\\x01&#\\\"\\x0f\\x01.\\x01'7654/\\x01&#\\\"#\\a\\x06\\x15\\x14\\x16327\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01P\\tF\\x03\\x03\\a\\x05\\x1f\\x1fA\\x0e&\\x05\\x01\\x1e\\x04\\n\\x02\\x01A\\f\\xaax\\f\\x03\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfe\\xcd\\x01\\x02\\n\\x04\\x1e\\x01\\x05&\\x0eA\\x1f\\x1f\\x05\\a\\x03\\x03F\\t\\x0f\\x03\\fx\\xaa\\f\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x02\\x80\\x01\\xc0\\x00\\x10\\x00\\x1c\\x00(\\x004\\x00@\\x00P\\x00X\\x00_\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x11#\\x15#5463\\x1754+\\x01\\\"\\x1d\\x01\\x14;\\x012\\x0554+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012=\\x014+\\x01\\\"\\x1d\\x01\\x14;\\x012\\a2\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\\"\\x06\\x14\\x16264\\x055'\\a'\\a\\x15\\x02`\\r\\x13\\x13\\r\\x80\\xc0\\xa0\\x13\\rH\\t\\x1e\\t\\t\\x1e\\t\\x01`\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\t\\x1e\\t\\xa8\\r\\x13\\x13\\r\\xfe\\x80\\r\\x13\\x13\\rM\\x1a\\x13\\x13\\x1a\\x13\\x01\\x00`\\x80 @\\x01\\xc0\\x13\\r\\xfe\\xc0\\r\\x13\\x01@@`\\r\\x13g\\x1e\\t\\t\\x1e\\t\\xc7\\x1e\\t\\t\\x1e\\tq\\x1e\\t\\t\\x1e\\tq\\x1e\\t\\t\\x1e\\t0\\x13\\r\\xfe\\xe0\\r\\x13\\x13\\r\\x01 \\r\\x13@\\x13\\x1a\\x13\\x13\\x1a\\xcd``\\x80 @ \\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xbf\\x02\\x81\\x01\\xc0\\x00\\x13\\x00;\\x00?\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x017\\x17\\a\\x05\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'\\x01&54?\\x01632\\x1f\\x015463!2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01#\\a'7#\\x15\\x01P\\a\\t\\t\\a\\x80\\a\\t\\t\\a \\x1bC\\t\\x015\\x06\\x03\\x14\\x05\\b\\x05\\x04\\xfd\\xb3\\x06\\x03\\x14\\x05\\b\\x05\\x04s\\t\\a\\x01\\xa0\\a\\t\\t\\a \\a\\tv1C v \\t\\a \\a\\t\\t\\a \\a\\tP4\\x1c*\\x05\\b\\x05\\x05\\x19\\x06\\x03\\x01\\xc7\\x05\\b\\x05\\x05\\x19\\x06\\x03Y,\\a\\t\\t\\a`\\a\\t\\t\\a \\x944`\\x1d\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x117\\\"&=\\x014?\\x01#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06#\\x17\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\xb0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\xa0\\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x1f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10`\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfeЀ\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\xeb\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x15\\x005\\x00O\\x00R\\x00\\x00\\x13\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\x17\\\"&=\\x014?\\x01#\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x0f\\x0132\\x16\\x1d\\x01\\x14\\x06#\\x17\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x016;\\x012\\x17\\a3'\\x10\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\xe0\\a\\t\\v=8\\a\\t\\t\\a\\x80\\a\\t\\v=8\\a\\t\\t\\a\\x1f\\x01\\t\\a\\x19\\f\\x03\\x05G\\x04\\x04\\v\\x19\\a\\t\\x01;\\x04\\v*\\v\\x044 \\x10\\x01 \\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010@\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\t\\a\\x12\\x0e\\nF\\t\\a \\a\\t\\xeb\\x02\\x03\\a\\t\\v\\r\\r\\v\\t\\a\\x03\\x02\\xa0\\v\\ve0\\x00\\x00\\x00\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00U\\x00\\x00\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014635\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#!2\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11\\xf0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\xff\\x00\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a \\a\\t\\t\\a \\a\\t\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0\\x00\\x05\\xff\\xfd\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1f\\x00/\\x00?\\x00U\\x00\\x00\\x13\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\a\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014635\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#%\\\"&?\\x0162\\x1f\\x01\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11\\xf0\\a\\t\\t\\a@\\a\\t\\t\\a@\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\x80\\a\\t\\t\\a\\xff\\x00\\a\\t\\t\\a\\a\\t\\t\\a\\xc0\\a\\t\\t\\a\\xfe`\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01`\\t\\a \\a\\t\\t\\a \\a\\t\\x80\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a \\a\\t\\t\\a \\a\\t\\xc0\\x14\\a`\\x05\\x05`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xb1\\x01\\xa8\\x00\\x15\\x005\\x00J\\x00R\\x00\\x0072\\x16\\x0f\\x01\\x06\\\"/\\x01&6;\\x01\\x1146;\\x012\\x16\\x15\\x11\\x052\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01\\x036\\x16\\x1d\\x01\\x14\\x06\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14\\xb0\\v\\b\\bP\\x04\\x0e\\x04P\\b\\b\\v0\\t\\a \\a\\t\\x01\\x10\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t6(>*,\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05!\\x1f\\x10\\f\\f\\x10\\f`\\x14\\a`\\x05\\x05`\\a\\x14\\x010\\a\\t\\t\\a\\xfe\\xd0@\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a\\x04\\x03 \\t\\t\\ap\\x01}\\v1'\\v3>\\x13\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\x00\\x00\\x00\\x00\\x04\\xff\\xfd\\xff\\xe0\\x01\\xb1\\x01\\xa8\\x00\\x15\\x005\\x00J\\x00R\\x00\\x00\\x13\\x17\\x16\\x06+\\x01\\x11\\x14\\x06+\\x01\\\"&5\\x11#\\\"&?\\x0162\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x015#\\\"&54?\\x016;\\x012\\x16\\x1d\\x01\\x036\\x16\\x1d\\x01\\x14\\x06\\a\\x06&/\\x01&767.\\x017>\\x01\\x16264&\\\"\\x06\\x14kP\\b\\b\\v0\\t\\a \\a\\t0\\v\\b\\bP\\x04\\x0e\\x01)\\a\\t\\t\\a`\\a\\t\\t\\a\\x10\\x10\\a\\t\\x02\\x10\\x04\\n0\\a\\t6(>*,\\x06\\r\\x02\\n\\x05\\r\\f\\t$+\\n\\x05!\\x1f\\x10\\f\\f\\x10\\f\\x01\\x9b`\\a\\x14\\xfe\\xd0\\a\\t\\t\\a\\x010\\x14\\a`\\x05\\xfe\\x80\\t\\a \\a\\t\\t\\a \\a\\t@\\t\\a\\x04\\x03 \\t\\t\\ap\\x01}\\v1'\\v3>\\x13\\x02\\x06\\x06\\x14\\x0f\\x05\\x05\\b\\x04=&\\x12\\x1f\\\\\\f\\x10\\f\\f\\x10\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc0\\x00\\x17\\x00\\x1f\\x00'\\x00D\\x00G\\x00\\\\\\x00\\x00%\\\"&=\\x0146;\\x012\\x16\\x17\\x14\\x15\\x14\\a\\x1e\\x01\\x15\\x14\\x15\\x0e\\x01#'\\x153264&#\\a\\x153264&#'\\x17\\x16\\x15\\x14\\x06+\\x01\\\"/\\x01#\\a\\x06+\\x01\\\"&54?\\x01>\\x02;\\x012\\x16\\a3'\\x05\\x16\\x14\\x0f\\x01\\x06\\\"/\\x01&4?\\x0162\\x1f\\x01762\\x17\\x01\\x10\\a\\t\\t\\aK 2\\x03\\t\\n\\x0f\\x022!3(\\n\\x0e\\x0e\\n(8\\n\\x0e\\x0e\\n\\xd5D\\x01\\t\\a\\x19\\f\\x03\\fX\\f\\x03\\f\\x19\\a\\t\\x01D\\x02\\t\\r\\x06\\x1a\\t\\x12?.\\x17\\x01\\xcb\\x05\\x05\\xd0\\x04\\x0e\\x04p\\x05\\x05-\\x05\\r\\x057\\x98\\x04\\r\\x05\\xc0\\t\\a\\xe0\\a\\t*\\x1f\\x03\\x04\\x14\\x12\\t#\\x0e\\x02\\x03 +\\xc80\\x0e\\x14\\x0e`0\\x0e\\x14\\x0e\\x82\\xd6\\x02\\x02\\a\\t\\f$$\\f\\t\\a\\x02\\x02\\xd6\\x06\\n\\x06\\r\\x83E\\xc9\\x05\\r\\x05\\xd0\\x05\\x05p\\x05\\r\\x05-\\x05\\x058\\x98\\x05\\x05\\x00\\x03\\x00\\x00\\x00 \\x02\\x80\\x01@\\x00\\x16\\x00\\x1e\\x00&\\x00\\x00\\x012\\x16\\x14\\x06#!\\\"&462\\x16\\x15\\x14\\x06\\a3.\\x01546\\x04\\x14\\x16264&\\\"\\x04264&\\\"\\x06\\x14\\x01\\xf0<TT<\\xfe\\xa0<TTxT\\x0e\\np\\n\\x0eT\\xfe\\x8c/B//B\\x01`B//B/\\x01@TxTTxTT<\\x12/\\x0f\\x0f/\\x12<ToB//B/\\xa0/B//B\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\x80\\x00\\r\\x005\\x00\\x00%\\x06\\\"'632\\x17\\x1627632\\x17\\x16\\x15\\x14\\a\\x0e\\x04\\\".\\x03'&54632\\x17\\x1e\\x0632>\\x037632\\x01\\xeaG\\xc6G';\\x12\\x13\\x0f(\\x0f\\x13\\x12;\\xb6\\a\\x01\\x03\\x0e4Bt\\x88tB4\\x0e\\x03\\x01\\t\\a\\x06\\x05\\x02\\b\\x1d!47K'6d?7\\x11\\x04\\x05\\x06\\x05\\x97\\x17\\x17\\xe9\\x0e\\f\\f\\x0e\\xc4\\x04\\t\\x03\\x03\\a\\x1eD5++5D\\x1e\\a\\x03\\x03\\a\\t\\x04\\x02\\a\\x13\\x11\\x15\\x0f\\n\\x13\\x18\\x1f\\r\\x04\\x04\\x00\\x00\\x00\\x02\\xff\\xfb\\xff\\xe0\\x02\\x80\\x01\\x81\\x00\\x0f\\x00-\\x00\\x00%\\x17\\x1e\\x033!\\\"'&7>\\x0132\\x05\\x1e\\x03\\x15\\x14\\x06#\\\".\\x03/\\x01&#\\\"\\a7>\\x01?\\x01632\\x16\\x17\\x01\\x05b!-9<&\\xfd\\xde\\x16\\x0e\\x0e\\x05\\x0fZ:5\\x01\\x16)=\\x1d\\x0e\\x1c\\x14\\x1d1$+\\x1e\\x19b6@\\x04\\x10\\x06\\x03\\x1d\\x13\\xbf\\a\\x06\\x17%\\x03\\x9dU\\x1c!\\x1f\\f\\x15\\x15\\x1aFV\\x11\\x03 ,$\\f\\x14\\x1c\\t\\x0e\\x1c\\x17\\x17T+\\x02A\\x13!\\x04)\\x01\\x1f\\x16\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\t\\x00\\x10\\x00\\x17\\x00\\x00=\\x01!\\x15\\x14\\x06+\\x01\\\"&\\x13\\x15#546;\\x012\\x16\\x1d\\x01#5\\x01\\x80^B@B^\\xb0\\xb0^B@B^\\xb0`\\x80\\x80B^^\\x01\\xa2\\xc0 B^^B \\xc0\\x00\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x022\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\xd5V==V=^\\x14\\x0e\\x0e\\x14\\x0eOΑ\\x91Α\\xc3jKKjK\\x01(=V==VC\\x0e\\x14\\x0e\\x0e\\x14\\x01\\x02\\x91Α\\x91\\xce\\xe7KjKKj\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\xc0\\x00\\a\\x00\\\"\\x00*\\x00:\\x00D\\x00\\x00$2\\x16\\x14\\x06\\\"&4\\x172\\x16\\x1d\\x01\\x14\\x06#!\\x14\\x06\\\"&5#\\\"&5\\x11463!2\\x16\\x1d\\x01\\x04264&\\\"\\x06\\x14754&+\\x01\\\"\\x06\\x1d\\x01\\x14\\x16;\\x0126\\x1754&+\\x01\\\"\\x06\\x1d\\x01\\x01\\x99\\x0e\\t\\t\\x0e\\t\\xe0\\a\\t\\t\\a\\xfe\\xb08P8 \\x1a&&\\x1a\\x01`B^\\xfel(\\x1c\\x1c(\\x1cp\\x13\\r\\x80\\r\\x13\\x13\\r\\x80\\r\\x13\\xc0\\x13\\r@\\r\\x13\\xf0\\t\\x0e\\t\\t\\x0eg\\t\\a \\a\\t(88(&\\x1a\\x01\\x00\\x1a&^B\\xa0p\\x1c(\\x1c\\x1c(\\xd4@\\r\\x13\\x13\\r@\\r\\x13\\x13s\\xc0\\r\\x13\\x13\\r\\xc0\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x02\\x80\\x01\\x80\\x00\\x1a\\x00#\\x00-\\x006\\x00>\\x00F\\x00N\\x00V\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!.\\x01\\\"\\x06\\a#\\\"&5\\x11463!2\\x16\\x1d\\x01%54+\\x01\\\"\\x1d\\x016754+\\x01\\\"\\x1d\\x0162\\x1754+\\x01\\\"\\x1d\\x01\\x16\\x1754+\\x01\\\"\\x1d\\x01354+\\x01\\\"\\x1d\\x01 2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x02p\\a\\t\\t\\a\\xfe\\xae\\x06>T>\\x062\\a\\t\\t\\a\\x02\\x00\\a\\t\\xfe@\\b\\x10\\b\\x0fq\\b\\x10\\b\\f\\bl\\b\\x10\\b\\x11o\\b\\x10\\b\\x80\\b\\x10\\b\\xfe\\xcfB//B/C\\x1a\\x13\\x13\\x1a\\x13\\x80\\t\\a \\a\\t)77)\\t\\a\\x01 \\a\\t\\t\\a\\xf0Ll\\b\\b\\x80\\f\\x1bY\\b\\bY\\x01(\\x80\\b\\bl\\bD\\xb8\\b\\b\\xb8\\xb8\\b\\b\\xb8/B//BA\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x1c\\x01V\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x006\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x19\\x00\\x85\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x05\\x00\\xab\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x03\\x00 \\x00\\xf3\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x19\\x01H\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x00&\\x01\\xb0\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x16\\x02\\x05\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\n\\x00,\\x02v\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\v\\x00\\x17\\x02\\xd3\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x13\\x03\\x13\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x05\\x033\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x19\\x03m\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x13\\x03\\xaf\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x05\\x03\\xcf\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x00\\x004\\x00\\x00\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x01\\x002\\x00Q\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x02\\x00\\n\\x00\\x9f\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x03\\x00@\\x00\\xb1\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x04\\x002\\x01\\x14\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x05\\x00L\\x01b\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x06\\x00,\\x01\\xd7\\x00\\x03\\x00\\x01\\x04\\t\\x00\\n\\x00X\\x02\\x1c\\x00\\x03\\x00\\x01\\x04\\t\\x00\\v\\x00.\\x02\\xa3\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x10\\x00&\\x02\\xeb\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x11\\x00\\n\\x03'\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x12\\x002\\x039\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x15\\x00&\\x03\\x87\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x16\\x00\\n\\x03\\xc3\\x00C\\x00o\\x00p\\x00y\\x00r\\x00i\\x00g\\x00h\\x00t\\x00 \\x00(\\x00c\\x00)\\x00 \\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00\\x00Copyright (c) Font Awesome\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Font Awesome 5 Free Solid\\x00\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Solid\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00-\\x005\\x00.\\x001\\x002\\x00.\\x000\\x00\\x00Font Awesome 5 Free Solid-5.12.0\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Font Awesome 5 Free Solid\\x00\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00330.752 (Font Awesome version: 5.12.0)\\x00\\x00F\\x00o\\x00n\\x00t\\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x005\\x00F\\x00r\\x00e\\x00e\\x00-\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00FontAwesome5Free-Solid\\x00\\x00T\\x00h\\x00e\\x00 \\x00w\\x00e\\x00b\\x00'\\x00s\\x00 \\x00m\\x00o\\x00s\\x00t\\x00 \\x00p\\x00o\\x00p\\x00u\\x00l\\x00a\\x00r\\x00 \\x00i\\x00c\\x00o\\x00n\\x00 \\x00s\\x00e\\x00t\\x00 \\x00a\\x00n\\x00d\\x00 \\x00t\\x00o\\x00o\\x00l\\x00k\\x00i\\x00t\\x00.\\x00\\x00The web's most popular icon set and toolkit.\\x00\\x00h\\x00t\\x00t\\x00p\\x00s\\x00:\\x00/\\x00/\\x00f\\x00o\\x00n\\x00t\\x00a\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00.\\x00c\\x00o\\x00m\\x00\\x00https://fontawesome.com\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Solid\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Font Awesome 5 Free Solid\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00S\\x00o\\x00l\\x00i\\x00d\\x00\\x00Solid\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xdb\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\xc7\\x00\\x00\\x00\\x01\\x00\\x02\\x01\\x02\\x01\\x03\\x01\\x04\\x01\\x05\\x01\\x06\\x01\\a\\x01\\b\\x01\\t\\x01\\n\\x01\\v\\x01\\f\\x01\\r\\x01\\x0e\\x01\\x0f\\x01\\x10\\x01\\x11\\x01\\x12\\x01\\x13\\x01\\x14\\x01\\x15\\x01\\x16\\x01\\x17\\x01\\x18\\x01\\x19\\x01\\x1a\\x01\\x1b\\x01\\x1c\\x01\\x1d\\x01\\x1e\\x01\\x1f\\x01 \\x01!\\x01\\\"\\x01#\\x01$\\x01%\\x01&\\x01'\\x01(\\x01)\\x01*\\x01+\\x01,\\x01-\\x01.\\x01/\\x010\\x011\\x012\\x013\\x014\\x015\\x016\\x017\\x018\\x019\\x01:\\x01;\\x01<\\x01=\\x01>\\x01?\\x01@\\x01A\\x01B\\x01C\\x01D\\x01E\\x01F\\x01G\\x01H\\x01I\\x01J\\x01K\\x01L\\x01M\\x01N\\x01O\\x01P\\x01Q\\x01R\\x01S\\x01T\\x01U\\x00\\x0e\\x00\\xef\\x00\\r\\x01V\\x01W\\x01X\\x01Y\\x01Z\\x01[\\x01\\\\\\x01]\\x01^\\x01_\\x01`\\x01a\\x01b\\x01c\\x01d\\x01e\\x01f\\x01g\\x01h\\x01i\\x01j\\x01k\\x01l\\x01m\\x01n\\x01o\\x01p\\x01q\\x01r\\x01s\\x01t\\x01u\\x01v\\x01w\\x01x\\x01y\\x01z\\x01{\\x01|\\x01}\\x01~\\x01\\u007f\\x01\\x80\\x01\\x81\\x01\\x82\\x01\\x83\\x01\\x84\\x01\\x85\\x01\\x86\\x01\\x87\\x01\\x88\\x01\\x89\\x01\\x8a\\x01\\x8b\\x01\\x8c\\x01\\x8d\\x01\\x8e\\x01\\x8f\\x01\\x90\\x01\\x91\\x01\\x92\\x01\\x93\\x01\\x94\\x01\\x95\\x01\\x96\\x01\\x97\\x01\\x98\\x01\\x99\\x01\\x9a\\x01\\x9b\\x01\\x9c\\x01\\x9d\\x01\\x9e\\x01\\x9f\\x01\\xa0\\x01\\xa1\\x01\\xa2\\x01\\xa3\\x01\\xa4\\x01\\xa5\\x01\\xa6\\x01\\xa7\\x01\\xa8\\x01\\xa9\\x01\\xaa\\x01\\xab\\x01\\xac\\x01\\xad\\x01\\xae\\x01\\xaf\\x01\\xb0\\x01\\xb1\\x01\\xb2\\x01\\xb3\\x01\\xb4\\x01\\xb5\\x01\\xb6\\x01\\xb7\\x01\\xb8\\x01\\xb9\\x01\\xba\\x01\\xbb\\x01\\xbc\\x01\\xbd\\x01\\xbe\\x01\\xbf\\x01\\xc0\\x01\\xc1\\x01\\xc2\\x01\\xc3\\x01\\xc4\\x01\\xc5\\x01\\xc6\\x01\\xc7\\x01\\xc8\\x01\\xc9\\x01\\xca\\x01\\xcb\\x01\\xcc\\x01\\xcd\\x01\\xce\\x01\\xcf\\x01\\xd0\\x01\\xd1\\x01\\xd2\\x00\\\"\\x01\\xd3\\x01\\xd4\\x01\\xd5\\x01\\xd6\\x01\\xd7\\x01\\xd8\\x01\\xd9\\x01\\xda\\x01\\xdb\\x01\\xdc\\x01\\xdd\\x01\\xde\\x01\\xdf\\x01\\xe0\\x01\\xe1\\x01\\xe2\\x01\\xe3\\x01\\xe4\\x01\\xe5\\x01\\xe6\\x01\\xe7\\x01\\xe8\\x01\\xe9\\x01\\xea\\x01\\xeb\\x01\\xec\\x01\\xed\\x01\\xee\\x01\\xef\\x01\\xf0\\x01\\xf1\\x01\\xf2\\x01\\xf3\\x01\\xf4\\x01\\xf5\\x01\\xf6\\x01\\xf7\\x01\\xf8\\x01\\xf9\\x01\\xfa\\x01\\xfb\\x01\\xfc\\x01\\xfd\\x01\\xfe\\x01\\xff\\x02\\x00\\x02\\x01\\x02\\x02\\x02\\x03\\x02\\x04\\x02\\x05\\x02\\x06\\x02\\a\\x02\\b\\x02\\t\\x02\\n\\x02\\v\\x02\\f\\x02\\r\\x02\\x0e\\x02\\x0f\\x02\\x10\\x02\\x11\\x02\\x12\\x02\\x13\\x02\\x14\\x02\\x15\\x02\\x16\\x02\\x17\\x02\\x18\\x02\\x19\\x02\\x1a\\x02\\x1b\\x02\\x1c\\x02\\x1d\\x02\\x1e\\x02\\x1f\\x02 \\x02!\\x02\\\"\\x02#\\x02$\\x02%\\x02&\\x02'\\x02(\\x02)\\x00\\x88\\x02*\\x02+\\x02,\\x02-\\x02.\\x02/\\x020\\x021\\x022\\x023\\x024\\x025\\x026\\x00\\x8b\\x00#\\x027\\x028\\x029\\x02:\\x02;\\x02<\\x02=\\x02>\\x02?\\x02@\\x02A\\x02B\\x02C\\x02D\\x02E\\x02F\\x02G\\x02H\\x02I\\x02J\\x02K\\x02L\\x02M\\x02N\\x02O\\x02P\\x02Q\\x02R\\x02S\\x02T\\x02U\\x02V\\x02W\\x02X\\x02Y\\x02Z\\x02[\\x02\\\\\\x02]\\x02^\\x02_\\x02`\\x02a\\x02b\\x02c\\x02d\\x02e\\x02f\\x02g\\x02h\\x02i\\x02j\\x02k\\x02l\\x02m\\x02n\\x02o\\x02p\\x02q\\x02r\\x02s\\x00\\x8c\\x00\\x8a\\x02t\\x02u\\x02v\\x02w\\x02x\\x02y\\x02z\\x02{\\x02|\\x02}\\x02~\\x02\\u007f\\x02\\x80\\x02\\x81\\x02\\x82\\x00\\b\\x02\\x83\\x02\\x84\\x02\\x85\\x02\\x86\\x02\\x87\\x02\\x88\\x02\\x89\\x02\\x8a\\x02\\x8b\\x02\\x8c\\x02\\x8d\\x02\\x8e\\x02\\x8f\\x02\\x90\\x02\\x91\\x02\\x92\\x02\\x93\\x02\\x94\\x02\\x95\\x02\\x96\\x02\\x97\\x02\\x98\\x02\\x99\\x02\\x9a\\x02\\x9b\\x02\\x9c\\x02\\x9d\\x02\\x9e\\x02\\x9f\\x02\\xa0\\x02\\xa1\\x02\\xa2\\x02\\xa3\\x02\\xa4\\x02\\xa5\\x02\\xa6\\x02\\xa7\\x02\\xa8\\x02\\xa9\\x02\\xaa\\x02\\xab\\x02\\xac\\x02\\xad\\x02\\xae\\x02\\xaf\\x02\\xb0\\x02\\xb1\\x02\\xb2\\x02\\xb3\\x02\\xb4\\x02\\xb5\\x02\\xb6\\x02\\xb7\\x02\\xb8\\x02\\xb9\\x02\\xba\\x02\\xbb\\x02\\xbc\\x02\\xbd\\x02\\xbe\\x02\\xbf\\x02\\xc0\\x02\\xc1\\x02\\xc2\\x02\\xc3\\x02\\xc4\\x02\\xc5\\x02\\xc6\\x02\\xc7\\x02\\xc8\\x02\\xc9\\x02\\xca\\x02\\xcb\\x02\\xcc\\x02\\xcd\\x02\\xce\\x02\\xcf\\x02\\xd0\\x02\\xd1\\x02\\xd2\\x02\\xd3\\x02\\xd4\\x02\\xd5\\x02\\xd6\\x02\\xd7\\x02\\xd8\\x02\\xd9\\x02\\xda\\x02\\xdb\\x02\\xdc\\x02\\xdd\\x02\\xde\\x02\\xdf\\x02\\xe0\\x02\\xe1\\x02\\xe2\\x02\\xe3\\x02\\xe4\\x02\\xe5\\x02\\xe6\\x02\\xe7\\x02\\xe8\\x02\\xe9\\x02\\xea\\x02\\xeb\\x02\\xec\\x02\\xed\\x02\\xee\\x02\\xef\\x02\\xf0\\x02\\xf1\\x02\\xf2\\x02\\xf3\\x02\\xf4\\x02\\xf5\\x02\\xf6\\x02\\xf7\\x02\\xf8\\x02\\xf9\\x02\\xfa\\x02\\xfb\\x02\\xfc\\x02\\xfd\\x02\\xfe\\x02\\xff\\x03\\x00\\x03\\x01\\x03\\x02\\x03\\x03\\x03\\x04\\x03\\x05\\x03\\x06\\x03\\a\\x03\\b\\x03\\t\\x03\\n\\x03\\v\\x03\\f\\x03\\r\\x03\\x0e\\x03\\x0f\\x03\\x10\\x03\\x11\\x03\\x12\\x03\\x13\\x03\\x14\\x03\\x15\\x03\\x16\\x03\\x17\\x03\\x18\\x03\\x19\\x03\\x1a\\x03\\x1b\\x03\\x1c\\x03\\x1d\\x03\\x1e\\x03\\x1f\\x03 \\x03!\\x03\\\"\\x03#\\x03$\\x03%\\x03&\\x03'\\x03(\\x03)\\x03*\\x03+\\x03,\\x03-\\x03.\\x03/\\x030\\x031\\x032\\x033\\x034\\x035\\x036\\x037\\x038\\x039\\x03:\\x03;\\x03<\\x03=\\x03>\\x03?\\x03@\\x03A\\x03B\\x03C\\x03D\\x00\\xb8\\x03E\\x03F\\x03G\\x03H\\x03I\\x03J\\x03K\\x03L\\x03M\\x03N\\x00\\x92\\x03O\\x03P\\x03Q\\x03R\\x03S\\x03T\\x03U\\x03V\\x03W\\x03X\\x03Y\\x03Z\\x03[\\x03\\\\\\x03]\\x03^\\x03_\\x03`\\x03a\\x03b\\x03c\\x03d\\x03e\\x03f\\x03g\\x03h\\x03i\\x03j\\x03k\\x03l\\x03m\\x03n\\x03o\\x03p\\x03q\\x03r\\x03s\\x03t\\x03u\\x03v\\x03w\\x03x\\x03y\\x03z\\x03{\\x03|\\x03}\\x03~\\x03\\u007f\\x03\\x80\\x03\\x81\\x03\\x82\\x03\\x83\\x03\\x84\\x03\\x85\\x03\\x86\\x03\\x87\\x03\\x88\\x03\\x89\\x03\\x8a\\x03\\x8b\\x03\\x8c\\x03\\x8d\\x03\\x8e\\x03\\x8f\\x03\\x90\\x03\\x91\\x03\\x92\\x03\\x93\\x03\\x94\\x03\\x95\\x03\\x96\\x03\\x97\\x03\\x98\\x03\\x99\\x03\\x9a\\x03\\x9b\\x03\\x9c\\x03\\x9d\\x03\\x9e\\x03\\x9f\\x03\\xa0\\x03\\xa1\\x03\\xa2\\x03\\xa3\\x03\\xa4\\x03\\xa5\\x03\\xa6\\x03\\xa7\\x03\\xa8\\x03\\xa9\\x03\\xaa\\x03\\xab\\x03\\xac\\x03\\xad\\x03\\xae\\x03\\xaf\\x03\\xb0\\x03\\xb1\\x03\\xb2\\x03\\xb3\\x03\\xb4\\x03\\xb5\\x03\\xb6\\x03\\xb7\\x03\\xb8\\x03\\xb9\\x03\\xba\\x03\\xbb\\x03\\xbc\\x03\\xbd\\x03\\xbe\\x03\\xbf\\x03\\xc0\\x03\\xc1\\x03\\xc2\\x03\\xc3\\x03\\xc4\\x03\\xc5\\x03\\xc6\\x03\\xc7\\x03\\xc8\\x03\\xc9\\x03\\xca\\x03\\xcb\\x03\\xcc\\x03\\xcd\\x03\\xce\\x03\\xcf\\x03\\xd0\\x03\\xd1\\x03\\xd2\\x03\\xd3\\x03\\xd4\\x03\\xd5\\x03\\xd6\\x03\\xd7\\x03\\xd8\\x03\\xd9\\x03\\xda\\x03\\xdb\\x03\\xdc\\x03\\xdd\\x03\\xde\\x03\\xdf\\x03\\xe0\\x03\\xe1\\x03\\xe2\\x03\\xe3\\x03\\xe4\\x03\\xe5\\x03\\xe6\\x03\\xe7\\x03\\xe8\\x03\\xe9\\x03\\xea\\x03\\xeb\\x03\\xec\\x03\\xed\\x03\\xee\\x03\\xef\\x03\\xf0\\x03\\xf1\\x03\\xf2\\x03\\xf3\\x03\\xf4\\x03\\xf5\\x03\\xf6\\x03\\xf7\\x03\\xf8\\x03\\xf9\\x03\\xfa\\x03\\xfb\\x03\\xfc\\x03\\xfd\\x03\\xfe\\x03\\xff\\x04\\x00\\x04\\x01\\x04\\x02\\x04\\x03\\x04\\x04\\x04\\x05\\x04\\x06\\x04\\a\\x04\\b\\x04\\t\\x04\\n\\x04\\v\\x04\\f\\x04\\r\\x04\\x0e\\x04\\x0f\\x04\\x10\\x04\\x11\\x04\\x12\\x04\\x13\\x04\\x14\\x04\\x15\\x04\\x16\\x04\\x17\\x04\\x18\\x04\\x19\\x04\\x1a\\x04\\x1b\\x04\\x1c\\x04\\x1d\\x04\\x1e\\x04\\x1f\\x04 \\x04!\\x04\\\"\\x04#\\x04$\\x04%\\x04&\\x04'\\x04(\\x04)\\x04*\\x04+\\x04,\\x04-\\x04.\\x04/\\x040\\x041\\x042\\x043\\x044\\x045\\x046\\x047\\x048\\x049\\x04:\\x04;\\x04<\\x04=\\x04>\\x04?\\x04@\\x00\\xdd\\x04A\\x04B\\x04C\\x00\\x12\\x04D\\x04E\\x04F\\x04G\\x04H\\x04I\\x04J\\x04K\\x04L\\x04M\\x04N\\x04O\\x04P\\x04Q\\x04R\\x04S\\x04T\\x04U\\x04V\\x04W\\x04X\\x04Y\\x04Z\\x04[\\x04\\\\\\x04]\\x04^\\x04_\\x04`\\x04a\\x04b\\x04c\\x04d\\x04e\\x04f\\x04g\\x04h\\x04i\\x04j\\x04k\\x04l\\x04m\\x04n\\x04o\\x04p\\x04q\\x04r\\x04s\\x04t\\x04u\\x04v\\x04w\\x04x\\x04y\\x04z\\x04{\\x04|\\x04}\\x04~\\x04\\u007f\\x04\\x80\\x04\\x81\\x04\\x82\\x04\\x83\\x04\\x84\\x04\\x85\\x04\\x86\\x04\\x87\\x04\\x88\\x04\\x89\\x04\\x8a\\x04\\x8b\\x04\\x8c\\x04\\x8d\\x04\\x8e\\x04\\x8f\\x04\\x90\\x04\\x91\\x04\\x92\\x04\\x93\\x04\\x94\\x04\\x95\\x04\\x96\\x04\\x97\\x04\\x98\\x04\\x99\\x04\\x9a\\x04\\x9b\\x04\\x9c\\x04\\x9d\\x04\\x9e\\x04\\x9f\\x04\\xa0\\x04\\xa1\\x04\\xa2\\x04\\xa3\\x04\\xa4\\x04\\xa5\\x04\\xa6\\x04\\xa7\\x04\\xa8\\x04\\xa9\\x04\\xaa\\x04\\xab\\x04\\xac\\x04\\xad\\x04\\xae\\x04\\xaf\\x04\\xb0\\x04\\xb1\\x04\\xb2\\x04\\xb3\\x04\\xb4\\x04\\xb5\\x04\\xb6\\x04\\xb7\\rglass-martini\\x05music\\x06search\\x05heart\\x04star\\x04user\\x04film\\bth-large\\x02th\\ath-list\\x05check\\x05times\\vsearch-plus\\fsearch-minus\\tpower-off\\x06signal\\x03cog\\x04home\\x05clock\\x04road\\bdownload\\x05inbox\\x04redo\\x04sync\\blist-alt\\x04lock\\x04flag\\nheadphones\\nvolume-off\\vvolume-down\\tvolume-up\\x06qrcode\\abarcode\\x03tag\\x04tags\\x04book\\bbookmark\\x05print\\x06camera\\x04font\\x04bold\\x06italic\\vtext-height\\ntext-width\\nalign-left\\falign-center\\valign-right\\ralign-justify\\x04list\\aoutdent\\x06indent\\x05video\\x05image\\nmap-marker\\x06adjust\\x04tint\\x04edit\\rstep-backward\\rfast-backward\\bbackward\\x04play\\x05pause\\x04stop\\aforward\\ffast-forward\\fstep-forward\\x05eject\\fchevron-left\\rchevron-right\\vplus-circle\\fminus-circle\\ftimes-circle\\fcheck-circle\\x0fquestion-circle\\vinfo-circle\\ncrosshairs\\x03ban\\narrow-left\\varrow-right\\barrow-up\\narrow-down\\x05share\\x06expand\\bcompress\\x12exclamation-circle\\x04gift\\x04leaf\\x04fire\\x03eye\\teye-slash\\x14exclamation-triangle\\x05plane\\fcalendar-alt\\x06random\\acomment\\x06magnet\\nchevron-up\\fchevron-down\\aretweet\\rshopping-cart\\x06folder\\vfolder-open\\tchart-bar\\fcamera-retro\\x03key\\x04cogs\\bcomments\\tstar-half\\tthumbtack\\x06trophy\\x06upload\\x05lemon\\x05phone\\fphone-square\\x06unlock\\vcredit-card\\x03rss\\x03hdd\\bbullhorn\\vcertificate\\x10hand-point-right\\x0fhand-point-left\\rhand-point-up\\x0fhand-point-down\\x11arrow-circle-left\\x12arrow-circle-right\\x0farrow-circle-up\\x11arrow-circle-down\\x05globe\\x06wrench\\x05tasks\\x06filter\\tbriefcase\\narrows-alt\\x05users\\x04link\\x05cloud\\x05flask\\x03cut\\x04copy\\tpaperclip\\x04save\\x06square\\x04bars\\alist-ul\\alist-ol\\rstrikethrough\\tunderline\\x05table\\x05magic\\x05truck\\nmoney-bill\\ncaret-down\\bcaret-up\\ncaret-left\\vcaret-right\\acolumns\\x04sort\\tsort-down\\asort-up\\benvelope\\x04undo\\x05gavel\\x04bolt\\asitemap\\bumbrella\\x05paste\\tlightbulb\\auser-md\\vstethoscope\\bsuitcase\\x04bell\\x06coffee\\bhospital\\tambulance\\x06medkit\\vfighter-jet\\x04beer\\bh-square\\vplus-square\\x11angle-double-left\\x12angle-double-right\\x0fangle-double-up\\x11angle-double-down\\nangle-left\\vangle-right\\bangle-up\\nangle-down\\adesktop\\x06laptop\\x06tablet\\x06mobile\\nquote-left\\vquote-right\\aspinner\\x06circle\\x05smile\\x05frown\\x03meh\\agamepad\\bkeyboard\\x0eflag-checkered\\bterminal\\x04code\\treply-all\\x0elocation-arrow\\x04crop\\vcode-branch\\x06unlink\\x04info\\vexclamation\\vsuperscript\\tsubscript\\x06eraser\\fpuzzle-piece\\nmicrophone\\x10microphone-slash\\bcalendar\\x11fire-extinguisher\\x06rocket\\x13chevron-circle-left\\x14chevron-circle-right\\x11chevron-circle-up\\x13chevron-circle-down\\x06anchor\\nunlock-alt\\bbullseye\\nellipsis-h\\nellipsis-v\\nrss-square\\vplay-circle\\fminus-square\\fcheck-square\\npen-square\\fshare-square\\acompass\\x11caret-square-down\\x0fcaret-square-up\\x12caret-square-right\\teuro-sign\\npound-sign\\vdollar-sign\\nrupee-sign\\byen-sign\\nruble-sign\\bwon-sign\\x04file\\bfile-alt\\x0fsort-alpha-down\\rsort-alpha-up\\x10sort-amount-down\\x0esort-amount-up\\x11sort-numeric-down\\x0fsort-numeric-up\\tthumbs-up\\vthumbs-down\\x06female\\x04male\\x03sun\\x04moon\\aarchive\\x03bug\\x11caret-square-left\\ndot-circle\\nwheelchair\\tlira-sign\\rspace-shuttle\\x0fenvelope-square\\nuniversity\\x0egraduation-cap\\blanguage\\x03fax\\bbuilding\\x05child\\x03paw\\x04cube\\x05cubes\\arecycle\\x03car\\x04taxi\\x04tree\\bdatabase\\bfile-pdf\\tfile-word\\nfile-excel\\x0ffile-powerpoint\\nfile-image\\ffile-archive\\nfile-audio\\nfile-video\\tfile-code\\tlife-ring\\fcircle-notch\\vpaper-plane\\ahistory\\aheading\\tsliders-h\\tshare-alt\\x10share-alt-square\\x04bomb\\x06futbol\\x03tty\\nbinoculars\\x04plug\\tnewspaper\\x04wifi\\ncalculator\\nbell-slash\\x05trash\\veye-dropper\\vpaint-brush\\rbirthday-cake\\nchart-area\\tchart-pie\\nchart-line\\ntoggle-off\\ttoggle-on\\abicycle\\x03bus\\x11closed-captioning\\vshekel-sign\\tcart-plus\\x0fcart-arrow-down\\x04ship\\vuser-secret\\nmotorcycle\\vstreet-view\\theartbeat\\x05venus\\x04mars\\amercury\\vtransgender\\x0ftransgender-alt\\fvenus-double\\vmars-double\\nvenus-mars\\vmars-stroke\\rmars-stroke-v\\rmars-stroke-h\\x06neuter\\ngenderless\\x06server\\tuser-plus\\nuser-times\\x03bed\\x05train\\x06subway\\fbattery-full\\x16battery-three-quarters\\fbattery-half\\x0fbattery-quarter\\rbattery-empty\\rmouse-pointer\\bi-cursor\\fobject-group\\x0eobject-ungroup\\vsticky-note\\x05clone\\rbalance-scale\\x0fhourglass-start\\x0ehourglass-half\\rhourglass-end\\thourglass\\thand-rock\\nhand-paper\\rhand-scissors\\vhand-lizard\\nhand-spock\\fhand-pointer\\nhand-peace\\x02tv\\rcalendar-plus\\x0ecalendar-minus\\x0ecalendar-times\\x0ecalendar-check\\bindustry\\amap-pin\\tmap-signs\\x03map\\vcomment-alt\\fpause-circle\\vstop-circle\\fshopping-bag\\x0fshopping-basket\\ahashtag\\x10universal-access\\x05blind\\x11audio-description\\fphone-volume\\abraille\\x1bassistive-listening-systems#american-sign-language-interpreting\\x04deaf\\rsign-language\\nlow-vision\\thandshake\\renvelope-open\\faddress-book\\faddress-card\\vuser-circle\\bid-badge\\aid-card\\x10thermometer-full\\x1athermometer-three-quarters\\x10thermometer-half\\x13thermometer-quarter\\x11thermometer-empty\\x06shower\\x04bath\\apodcast\\x0fwindow-maximize\\x0fwindow-minimize\\x0ewindow-restore\\tmicrochip\\tsnowflake\\rutensil-spoon\\butensils\\bundo-alt\\ttrash-alt\\bsync-alt\\tstopwatch\\fsign-out-alt\\vsign-in-alt\\bredo-alt\\x03poo\\x06images\\npencil-alt\\x03pen\\apen-alt\\x13long-arrow-alt-down\\x13long-arrow-alt-left\\x14long-arrow-alt-right\\x11long-arrow-alt-up\\x11expand-arrows-alt\\tclipboard\\farrows-alt-h\\farrows-alt-v\\x15arrow-alt-circle-down\\x15arrow-alt-circle-left\\x16arrow-alt-circle-right\\x13arrow-alt-circle-up\\x11external-link-alt\\x18external-link-square-alt\\fexchange-alt\\x12cloud-download-alt\\x10cloud-upload-alt\\x03gem\\x0elevel-down-alt\\flevel-up-alt\\tlock-open\\x0emap-marker-alt\\x0emicrophone-alt\\nmobile-alt\\x0emoney-bill-alt\\vphone-slash\\bportrait\\x05reply\\nshield-alt\\ntablet-alt\\x0etachometer-alt\\nticket-alt\\buser-alt\\fwindow-close\\fcompress-alt\\nexpand-alt\\rbaseball-ball\\x0fbasketball-ball\\fbowling-ball\\x05chess\\fchess-bishop\\vchess-board\\nchess-king\\fchess-knight\\nchess-pawn\\vchess-queen\\nchess-rook\\bdumbbell\\rfootball-ball\\tgolf-ball\\vhockey-puck\\tquidditch\\vsquare-full\\ftable-tennis\\x0fvolleyball-ball\\tallergies\\bband-aid\\x03box\\x05boxes\\x11briefcase-medical\\x04burn\\bcapsules\\x0fclipboard-check\\x0eclipboard-list\\tdiagnoses\\x03dna\\x05dolly\\rdolly-flatbed\\ffile-medical\\x10file-medical-alt\\tfirst-aid\\fhospital-alt\\x0fhospital-symbol\\vid-card-alt\\rnotes-medical\\x06pallet\\x05pills\\x13prescription-bottle\\x17prescription-bottle-alt\\nprocedures\\rshipping-fast\\asmoking\\asyringe\\atablets\\vthermometer\\x04vial\\x05vials\\twarehouse\\x06weight\\x05x-ray\\bbox-open\\fcomment-dots\\rcomment-slash\\x05couch\\x06donate\\x04dove\\fhand-holding\\x12hand-holding-heart\\x10hand-holding-usd\\x05hands\\rhands-helping\\rparachute-box\\fpeople-carry\\npiggy-bank\\x06ribbon\\x05route\\bseedling\\x04sign\\nsmile-wink\\x04tape\\rtruck-loading\\ftruck-moving\\vvideo-slash\\nwine-glass\\x0euser-alt-slash\\x0euser-astronaut\\nuser-check\\nuser-clock\\buser-cog\\tuser-edit\\fuser-friends\\ruser-graduate\\tuser-lock\\nuser-minus\\nuser-ninja\\vuser-shield\\nuser-slash\\buser-tag\\buser-tie\\tusers-cog\\x12balance-scale-left\\x13balance-scale-right\\ablender\\tbook-open\\x0fbroadcast-tower\\x05broom\\nchalkboard\\x12chalkboard-teacher\\x06church\\x05coins\\fcompact-disc\\x04crow\\x05crown\\x04dice\\tdice-five\\tdice-four\\bdice-one\\bdice-six\\ndice-three\\bdice-two\\vdoor-closed\\tdoor-open\\x06equals\\afeather\\x04frog\\bgas-pump\\aglasses\\fgreater-than\\x12greater-than-equal\\nhelicopter\\tkiwi-bird\\tless-than\\x0fless-than-equal\\x06memory\\x14microphone-alt-slash\\x0fmoney-bill-wave\\x13money-bill-wave-alt\\vmoney-check\\x0fmoney-check-alt\\tnot-equal\\apalette\\aparking\\npercentage\\x0fproject-diagram\\areceipt\\x05robot\\x05ruler\\x0eruler-combined\\x10ruler-horizontal\\x0eruler-vertical\\x06school\\vscrewdriver\\vshoe-prints\\x05skull\\vsmoking-ban\\x05store\\tstore-alt\\x06stream\\vstroopwafel\\atoolbox\\x06tshirt\\awalking\\x06wallet\\x05angry\\aarchway\\x05atlas\\x05award\\tbackspace\\fbezier-curve\\x04bong\\x05brush\\abus-alt\\bcannabis\\fcheck-double\\bcocktail\\x0econcierge-bell\\x06cookie\\vcookie-bite\\bcrop-alt\\x12digital-tachograph\\x05dizzy\\x10drafting-compass\\x04drum\\rdrum-steelpan\\vfeather-alt\\rfile-contract\\rfile-download\\vfile-export\\vfile-import\\ffile-invoice\\x13file-invoice-dollar\\x11file-prescription\\x0efile-signature\\vfile-upload\\x04fill\\tfill-drip\\vfingerprint\\x04fish\\aflushed\\nfrown-open\\x11glass-martini-alt\\fglobe-africa\\x0eglobe-americas\\nglobe-asia\\agrimace\\x04grin\\bgrin-alt\\tgrin-beam\\x0fgrin-beam-sweat\\vgrin-hearts\\vgrin-squint\\x11grin-squint-tears\\ngrin-stars\\ngrin-tears\\vgrin-tongue\\x12grin-tongue-squint\\x10grin-tongue-wink\\tgrin-wink\\x0fgrip-horizontal\\rgrip-vertical\\x0eheadphones-alt\\aheadset\\vhighlighter\\ahot-tub\\x05hotel\\x05joint\\x04kiss\\tkiss-beam\\x0fkiss-wink-heart\\x05laugh\\nlaugh-beam\\flaugh-squint\\nlaugh-wink\\fluggage-cart\\nmap-marked\\x0emap-marked-alt\\x06marker\\x05medal\\tmeh-blank\\x10meh-rolling-eyes\\bmonument\\rmortar-pestle\\fpaint-roller\\bpassport\\tpen-fancy\\apen-nib\\fpencil-ruler\\rplane-arrival\\x0fplane-departure\\fprescription\\asad-cry\\bsad-tear\\vshuttle-van\\tsignature\\nsmile-beam\\vsolar-panel\\x03spa\\asplotch\\tspray-can\\x05stamp\\rstar-half-alt\\x10suitcase-rolling\\bsurprise\\nswatchbook\\aswimmer\\rswimming-pool\\ntint-slash\\x05tired\\x05tooth\\x0eumbrella-beach\\rvector-square\\x0eweight-hanging\\x0ewine-glass-alt\\rair-freshener\\tapple-alt\\x04atom\\x04bone\\vbook-reader\\x05brain\\acar-alt\\vcar-battery\\tcar-crash\\bcar-side\\x10charging-station\\ndirections\\fdraw-polygon\\vlaptop-code\\vlayer-group\\nmicroscope\\aoil-can\\x04poop\\x06shapes\\fstar-of-life\\x05teeth\\nteeth-open\\rtheater-masks\\rtraffic-light\\rtruck-monster\\ftruck-pickup\\x02ad\\x04ankh\\x05bible\\rbusiness-time\\x04city\\x0ecomment-dollar\\x0fcomments-dollar\\x05cross\\fdharmachakra\\x12envelope-open-text\\ffolder-minus\\vfolder-plus\\rfunnel-dollar\\agopuram\\x05hamsa\\x05bahai\\x04jedi\\x0ejournal-whills\\x05kaaba\\x06khanda\\blandmark\\tmail-bulk\\amenorah\\x06mosque\\x02om\\x0epastafarianism\\x05peace\\x10place-of-worship\\x04poll\\x06poll-h\\x04pray\\rpraying-hands\\x05quran\\rsearch-dollar\\x0fsearch-location\\x05socks\\x0fsquare-root-alt\\x11star-and-crescent\\rstar-of-david\\tsynagogue\\x05torah\\ntorii-gate\\x06vihara\\vvolume-mute\\byin-yang\\rblender-phone\\tbook-dead\\ncampground\\x03cat\\x05chair\\ncloud-moon\\tcloud-sun\\bdice-d20\\adice-d6\\x03dog\\x06dragon\\x0edrumstick-bite\\adungeon\\bfile-csv\\vfist-raised\\x05ghost\\x06hammer\\bhanukiah\\nhat-wizard\\x06hiking\\x05hippo\\x05horse\\fhouse-damage\\ahryvnia\\x04mask\\bmountain\\rnetwork-wired\\x05otter\\arunning\\x06scroll\\x10skull-crossbones\\x06spider\\ftoilet-paper\\atractor\\fuser-injured\\fvr-cardboard\\x04wind\\vwine-bottle\\x0ecloud-meatball\\x0fcloud-moon-rain\\ncloud-rain\\x13cloud-showers-heavy\\x0ecloud-sun-rain\\bdemocrat\\bflag-usa\\x06meteor\\fperson-booth\\tpoo-storm\\arainbow\\nrepublican\\x04smog\\x10temperature-high\\x0ftemperature-low\\bvote-yea\\x05water\\x04baby\\rbaby-carriage\\tbiohazard\\x04blog\\fcalendar-day\\rcalendar-week\\ncandy-cane\\x06carrot\\rcash-register\\x13compress-arrows-alt\\bdumpster\\rdumpster-fire\\bethernet\\x05gifts\\fglass-cheers\\rglass-whiskey\\fglobe-europe\\ngrip-lines\\x13grip-lines-vertical\\x06guitar\\fheart-broken\\vholly-berry\\nhorse-head\\aicicles\\x05igloo\\x06mitten\\amug-hot\\tradiation\\rradiation-alt\\brestroom\\tsatellite\\x0esatellite-dish\\asd-card\\bsim-card\\askating\\x06skiing\\rskiing-nordic\\x06sleigh\\x03sms\\fsnowboarding\\asnowman\\bsnowplow\\x05tenge\\x06toilet\\x05tools\\x04tram\\bfire-alt\\x05bacon\\fbook-medical\\vbread-slice\\x06cheese\\x0eclinic-medical\\x0fcomment-medical\\x06crutch\\x03egg\\thamburger\\x12hand-middle-finger\\bhard-hat\\x06hotdog\\tice-cream\\x0elaptop-medical\\x05pager\\npepper-hot\\vpizza-slice\\rtrash-restore\\x11trash-restore-alt\\nuser-nurse\\vwave-square\\x06biking\\nborder-all\\vborder-none\\fborder-style\\x03fan\\x05icons\\tphone-alt\\x10phone-square-alt\\vphoto-video\\rremove-format\\x13sort-alpha-down-alt\\x11sort-alpha-up-alt\\x14sort-amount-down-alt\\x12sort-amount-up-alt\\x15sort-numeric-down-alt\\x13sort-numeric-up-alt\\vspell-check\\tvoicemail\\nhat-cowboy\\x0fhat-cowboy-side\\x05mouse\\frecord-vinyl\\acaravan\\atrailer\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x03\\xc6\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\xd9k%\\xf9\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\"\nvar _Assets3937419623a4cdffaf5c05b0d497629e127d85b5 = \"<?xml version=\\\"1.0\\\" standalone=\\\"no\\\"?>\\n<!--\\nFont Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com\\nLicense - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\\n-->\\n<!DOCTYPE svg PUBLIC \\\"-//W3C//DTD SVG 1.1//EN\\\" \\\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\\\" >\\n<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" version=\\\"1.1\\\">\\n<metadata>\\nCreated by FontForge 20190801 at Tue Dec 10 16:09:21 2019\\n By Robert Madole\\nCopyright (c) Font Awesome\\n</metadata>\\n<defs>\\n<font id=\\\"FontAwesome5Free-Solid\\\" horiz-adv-x=\\\"512\\\" >\\n  <font-face \\n    font-family=\\\"Font Awesome 5 Free Solid\\\"\\n    font-weight=\\\"900\\\"\\n    font-stretch=\\\"normal\\\"\\n    units-per-em=\\\"512\\\"\\n    panose-1=\\\"2 0 5 3 0 0 0 0 0 0\\\"\\n    ascent=\\\"448\\\"\\n    descent=\\\"-64\\\"\\n    bbox=\\\"-0.983398 -64.9834 640.104 448.427\\\"\\n    underline-thickness=\\\"25\\\"\\n    underline-position=\\\"-50\\\"\\n    unicode-range=\\\"U+0020-F941\\\"\\n  />\\n    <missing-glyph />\\n    <glyph glyph-name=\\\"glass-martini\\\" unicode=\\\"&#xf000;\\\" \\nd=\\\"M502.05 390.4l-214.05 -214.04v-192.36h56c22.0898 0 40 -17.9102 40 -40c0 -4.41992 -3.58008 -8 -8 -8h-240c-4.41992 0 -8 3.58008 -8 8c0 22.0898 17.9102 40 40 40h56v192.36l-214.05 214.04c-21.25 21.2598 -6.2002 57.5996 23.8496 57.5996h444.4\\nc30.0498 0 45.0996 -36.3398 23.8496 -57.5996z\\\" />\\n    <glyph glyph-name=\\\"music\\\" unicode=\\\"&#xf001;\\\" \\nd=\\\"M470.38 446.49c2.59277 0.816406 6.90234 1.48047 9.62012 1.48047c17.6475 0 31.9834 -14.3232 32 -31.9707v-352c0 -35.3496 -43 -64 -96 -64s-96 28.6602 -96 64s43 64 96 64c8.95898 -0.0488281 23.2949 -1.80957 32 -3.92969v184.609l-256 -75v-233.68\\nc0 -35.3398 -43 -64 -96 -64s-96 28.6602 -96 64s43 64 96 64c8.95801 -0.0507812 23.2939 -1.80664 32 -3.91992v261.41c0.0078125 12.958 10.0479 26.626 22.4102 30.5098z\\\" />\\n    <glyph glyph-name=\\\"search\\\" unicode=\\\"&#xf002;\\\" \\nd=\\\"M505 5.2998c9.2998 -9.39941 9.2998 -24.5996 -0.0996094 -34l-28.3008 -28.2998c-9.2998 -9.40039 -24.5 -9.40039 -33.8994 0l-99.7002 99.7002c-4.5 4.5 -7 10.5996 -7 17v16.2998c-35.2998 -27.5996 -79.7002 -44 -128 -44c-114.9 0 -208 93.0996 -208 208\\ns93.0996 208 208 208s208 -93.0996 208 -208c0 -48.2998 -16.4004 -92.7002 -44 -128h16.2998c6.40039 0 12.5 -2.5 17 -7zM208 112c70.7998 0 128 57.2998 128 128c0 70.7998 -57.2998 128 -128 128c-70.7998 0 -128 -57.2998 -128 -128c0 -70.7998 57.2998 -128 128 -128z\\n\\\" />\\n    <glyph glyph-name=\\\"heart\\\" unicode=\\\"&#xf004;\\\" \\nd=\\\"M462.3 385.4c62.7998 -53.6006 66.1006 -149.801 9.7998 -207.9l-193.5 -199.8c-12.5 -12.9004 -32.7998 -12.9004 -45.2998 0l-193.5 199.8c-56.2002 58.0996 -52.8994 154.3 9.90039 207.9c54.7998 46.6992 136.399 38.2998 186.6 -13.6006l19.7002 -20.2998\\nl19.7002 20.2998c50.2998 51.9004 131.8 60.2998 186.6 13.6006z\\\" />\\n    <glyph glyph-name=\\\"star\\\" unicode=\\\"&#xf005;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M259.3 430.2c11.7998 23.8994 45.7002 23.5996 57.4004 0l65.2998 -132.4l146.1 -21.2998c26.2002 -3.7998 36.7002 -36.0996 17.7002 -54.5996l-105.7 -103l25 -145.5c4.5 -26.3008 -23.1992 -45.9004 -46.3994 -33.7002l-130.7 68.7002l-130.7 -68.7002\\nc-23.2002 -12.2998 -50.8994 7.39941 -46.3994 33.7002l25 145.5l-105.7 103c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2998z\\\" />\\n    <glyph glyph-name=\\\"user\\\" unicode=\\\"&#xf007;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM313.6 160c74.2002 0 134.4 -60.2002 134.4 -134.4v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v41.5996\\nc0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992z\\\" />\\n    <glyph glyph-name=\\\"film\\\" unicode=\\\"&#xf008;\\\" \\nd=\\\"M488 384c13.2998 0 24 -10.7002 24 -24v-336c0 -13.2998 -10.7002 -24 -24 -24h-8v20c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-20h-320v20c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-20h-8\\nc-13.2998 0 -24 10.7002 -24 24v336c0 13.2998 10.7002 24 24 24h8v-20c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v20h320v-20c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v20h8zM96 76v40c0 6.59961 -5.40039 12 -12 12h-40\\nc-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM96 172v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM96 268v40\\nc0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM368 60v96c0 6.59961 -5.40039 12 -12 12h-200c-6.59961 0 -12 -5.40039 -12 -12v-96c0 -6.59961 5.40039 -12 12 -12h200\\nc6.59961 0 12 5.40039 12 12zM368 228v96c0 6.59961 -5.40039 12 -12 12h-200c-6.59961 0 -12 -5.40039 -12 -12v-96c0 -6.59961 5.40039 -12 12 -12h200c6.59961 0 12 5.40039 12 12zM480 76v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40\\nc0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM480 172v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM480 268v40c0 6.59961 -5.40039 12 -12 12h-40\\nc-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"th-large\\\" unicode=\\\"&#xf009;\\\" \\nd=\\\"M296 416h192c13.2549 0 24 -10.7451 24 -24v-160c0 -13.2549 -10.7451 -24 -24 -24h-192c-13.2549 0 -24 10.7451 -24 24v160c0 13.2549 10.7451 24 24 24zM216 416c13.2549 0 24 -10.7451 24 -24v-160c0 -13.2549 -10.7451 -24 -24 -24h-192\\nc-13.2549 0 -24 10.7451 -24 24v160c0 13.2549 10.7451 24 24 24h192zM0 152c0 13.2549 10.7451 24 24 24h192c13.2549 0 24 -10.7451 24 -24v-160c0 -13.2549 -10.7451 -24 -24 -24h-192c-13.2549 0 -24 10.7451 -24 24v160zM296 -32c-13.2549 0 -24 10.7451 -24 24v160\\nc0 13.2549 10.7451 24 24 24h192c13.2549 0 24 -10.7451 24 -24v-160c0 -13.2549 -10.7451 -24 -24 -24h-192z\\\" />\\n    <glyph glyph-name=\\\"th\\\" unicode=\\\"&#xf00a;\\\" \\nd=\\\"M149.333 392v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24zM330.667 152c0 -13.2549 -10.7451 -24 -24.001 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80\\nc0 13.2549 10.7451 24 24 24h101.334c13.2549 0 24 -10.7451 24 -24v-80zM362.667 392c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80zM330.667 312\\nc0 -13.2549 -10.7451 -24 -24.001 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.334c13.2549 0 24 -10.7451 24 -24v-80zM125.333 256c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333\\nc-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.333zM0 72c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80zM386.667 128\\nc-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333zM386.667 -32c-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24\\nv-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333zM181.333 72c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80z\\\" />\\n    <glyph glyph-name=\\\"th-list\\\" unicode=\\\"&#xf00b;\\\" \\nd=\\\"M149.333 232v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24zM0 72c0 13.2549 10.7451 24 24 24h101.333c13.2549 0 24 -10.7451 24 -24v-80\\nc0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80zM125.333 416c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-101.333c-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h101.333zM205.333 -32\\nc-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h282.667c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-282.667zM181.333 392c0 13.2549 10.7451 24 24 24h282.667c13.2549 0 24 -10.7451 24 -24v-80\\nc0 -13.2549 -10.7451 -24 -24 -24h-282.667c-13.2549 0 -24 10.7451 -24 24v80zM205.333 128c-13.2549 0 -24 10.7451 -24 24v80c0 13.2549 10.7451 24 24 24h282.667c13.2549 0 24 -10.7451 24 -24v-80c0 -13.2549 -10.7451 -24 -24 -24h-282.667z\\\" />\\n    <glyph glyph-name=\\\"check\\\" unicode=\\\"&#xf00c;\\\" \\nd=\\\"M173.898 8.5957l-166.4 166.4c-9.99707 9.99707 -9.99707 26.2061 0 36.2041l36.2031 36.2041c9.99707 9.99805 26.207 9.99805 36.2041 0l112.095 -112.095l240.095 240.095c9.99707 9.99707 26.207 9.99707 36.2041 0l36.2031 -36.2041\\nc9.99707 -9.99707 9.99707 -26.2061 0 -36.2041l-294.4 -294.401c-9.99805 -9.99707 -26.207 -9.99707 -36.2031 0.000976562z\\\" />\\n    <glyph glyph-name=\\\"times\\\" unicode=\\\"&#xf00d;\\\" horiz-adv-x=\\\"352\\\" \\nd=\\\"M242.72 192l100.07 -100.07c12.2803 -12.29 12.2803 -32.1992 0 -44.4795l-22.2402 -22.2402c-12.2803 -12.2803 -32.2002 -12.2803 -44.4795 0l-100.07 100.07l-100.07 -100.07c-12.2793 -12.2803 -32.1992 -12.2803 -44.4795 0l-22.2402 22.2402\\nc-12.2803 12.29 -12.2803 32.2002 0 44.4795l100.07 100.07l-100.07 100.07c-12.2803 12.29 -12.2803 32.1992 0 44.4795l22.2402 22.2402c12.29 12.2803 32.2002 12.2803 44.4795 0l100.07 -100.07l100.07 100.07c12.29 12.2803 32.1992 12.2803 44.4795 0\\nl22.2402 -22.2402c12.2803 -12.29 12.2803 -32.2002 0 -44.4795z\\\" />\\n    <glyph glyph-name=\\\"search-plus\\\" unicode=\\\"&#xf00e;\\\" \\nd=\\\"M304 256v-32c0 -6.59961 -5.40039 -12 -12 -12h-56v-56c0 -6.59961 -5.40039 -12 -12 -12h-32c-6.59961 0 -12 5.40039 -12 12v56h-56c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h56v56c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12\\nv-56h56c6.59961 0 12 -5.40039 12 -12zM505 -28.7002l-28.2998 -28.2998c-9.40039 -9.40039 -24.6006 -9.40039 -33.9004 0l-99.7998 99.7002c-4.5 4.5 -7 10.5996 -7 17v16.2998c-35.2998 -27.5996 -79.7002 -44 -128 -44c-114.9 0 -208 93.0996 -208 208\\ns93.0996 208 208 208s208 -93.0996 208 -208c0 -48.2998 -16.4004 -92.7002 -44 -128h16.2998c6.40039 0 12.5 -2.5 17 -7l99.7002 -99.7002c9.2998 -9.39941 9.2998 -24.5996 0 -34zM344 240c0 75.2002 -60.7998 136 -136 136s-136 -60.7998 -136 -136\\ns60.7998 -136 136 -136s136 60.7998 136 136z\\\" />\\n    <glyph glyph-name=\\\"search-minus\\\" unicode=\\\"&#xf010;\\\" \\nd=\\\"M304 256v-32c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h168c6.59961 0 12 -5.40039 12 -12zM505 -28.7002l-28.2998 -28.2998c-9.40039 -9.40039 -24.6006 -9.40039 -33.9004 0l-99.7998 99.7002\\nc-4.5 4.5 -7 10.5996 -7 17v16.2998c-35.2998 -27.5996 -79.7002 -44 -128 -44c-114.9 0 -208 93.0996 -208 208s93.0996 208 208 208s208 -93.0996 208 -208c0 -48.2998 -16.4004 -92.7002 -44 -128h16.2998c6.40039 0 12.5 -2.5 17 -7l99.7002 -99.7002\\nc9.2998 -9.39941 9.2998 -24.5996 0 -34zM344 240c0 75.2002 -60.7998 136 -136 136s-136 -60.7998 -136 -136s60.7998 -136 136 -136s136 60.7998 136 136z\\\" />\\n    <glyph glyph-name=\\\"power-off\\\" unicode=\\\"&#xf011;\\\" \\nd=\\\"M400 393.9c63 -45 104 -118.601 104 -201.9c0 -136.8 -110.8 -247.7 -247.5 -248c-136.5 -0.299805 -248.3 111 -248.5 247.6c-0.0996094 83.3008 40.9004 157.101 103.8 202.2c11.7002 8.2998 28 4.7998 35 -7.7002l15.7998 -28.0996\\nc5.90039 -10.5 3.10059 -23.7998 -6.59961 -31c-41.5 -30.7998 -68 -79.5996 -68 -134.9c-0.0996094 -92.2998 74.5 -168.1 168 -168.1c91.5996 0 168.6 74.2002 168 169.1c-0.299805 51.8008 -24.7002 101.801 -68.0996 134c-9.7002 7.2002 -12.4004 20.5 -6.5 30.9004\\nl15.7998 28.0996c7 12.4004 23.2002 16.1006 34.7998 7.80078zM296 184c0 -13.2998 -10.7002 -24 -24 -24h-32c-13.2998 0 -24 10.7002 -24 24v240c0 13.2998 10.7002 24 24 24h32c13.2998 0 24 -10.7002 24 -24v-240z\\\" />\\n    <glyph glyph-name=\\\"signal\\\" unicode=\\\"&#xf012;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M216 160c8.83984 0 16 -7.16016 16 -16v-192c0 -8.83984 -7.16016 -16 -16 -16h-48c-8.83984 0 -16 7.16016 -16 16v192c0 8.83984 7.16016 16 16 16h48zM88 64c8.83984 0 16 -7.16016 16 -16v-96c0 -8.83984 -7.16016 -16 -16 -16h-48c-8.83984 0 -16 7.16016 -16 16v96\\nc0 8.83984 7.16016 16 16 16h48zM344 256c8.83984 0 16 -7.16016 16 -16v-288c0 -8.83984 -7.16016 -16 -16 -16h-48c-8.83984 0 -16 7.16016 -16 16v288c0 8.83984 7.16016 16 16 16h48zM472 352c8.83984 0 16 -7.16016 16 -16v-384c0 -8.83984 -7.16016 -16 -16 -16h-48\\nc-8.83984 0 -16 7.16016 -16 16v384c0 8.83984 7.16016 16 16 16h48zM600 448c8.83984 0 16 -7.16016 16 -16v-480c0 -8.83984 -7.16016 -16 -16 -16h-48c-8.83984 0 -16 7.16016 -16 16v480c0 8.83984 7.16016 16 16 16h48z\\\" />\\n    <glyph glyph-name=\\\"cog\\\" unicode=\\\"&#xf013;\\\" \\nd=\\\"M487.4 132.3c4.89941 -2.7998 7.09961 -8.59961 5.59961 -14.0996c-11.0996 -35.7002 -30 -67.9004 -54.7002 -94.6006c-3.7998 -4.19922 -9.89941 -5.09961 -14.7998 -2.2998l-42.5996 24.6006c-18 -15.3008 -38.6006 -27.2002 -60.8008 -35.1006v-49.2002\\nc0 -5.59961 -3.89941 -10.5 -9.39941 -11.6992c-34.9004 -7.80078 -72.5 -8.2002 -109.2 0c-5.5 1.19922 -9.40039 6.09961 -9.40039 11.6992v49.2002c-22.2998 7.7998 -42.8994 19.7002 -60.7998 35.1006l-42.5996 -24.6006c-4.7998 -2.7998 -11 -1.7998 -14.7998 2.2998\\nc-24.7002 26.8008 -43.6006 59 -54.7002 94.6006c-1.60059 5.39941 0.599609 11.2002 5.5 14l42.5996 24.5996c-4.2998 23.2002 -4.2998 47 0 70.2002l-42.5996 24.5996c-4.90039 2.80078 -7.2002 8.60059 -5.5 14c11.0996 35.7002 30 67.9004 54.7002 94.6006\\nc3.7998 4.2002 9.89941 5.09961 14.7998 2.2998l42.5 -24.5996c18 15.2998 38.5996 27.1992 60.7998 35.0996v49.2002c0 5.59961 3.90039 10.5 9.40039 11.7002c34.8994 7.7998 72.5 8.19922 109.199 0c5.5 -1.2002 9.40039 -6.10059 9.40039 -11.7002v-49.1006\\nc22.2998 -7.7998 42.9004 -19.6992 60.7998 -35.0996l42.6006 24.5996c4.7998 2.80078 11 1.80078 14.7998 -2.2998c24.7002 -26.7998 43.5996 -59 54.7002 -94.5996c1.59961 -5.40039 -0.600586 -11.2002 -5.5 -14l-42.6006 -24.6006\\nc4.2998 -23.1992 4.2998 -47 0 -70.1992zM256 112c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"home\\\" unicode=\\\"&#xf015;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M280.37 299.74c1.84863 1.49023 5.27539 2.69922 7.64941 2.69922c2.375 0 5.80176 -1.20898 7.65039 -2.69922l184.33 -151.74v-164c0 -8.83203 -7.16797 -16 -16 -16l-112.02 0.30957h-0.000976562c-8.83203 0 -16 7.16797 -16 16\\nc0 0.0146484 0 0.0371094 0.000976562 0.0507812v95.6396c0 8.83203 -7.16895 16 -16 16h-64c-8.83203 0 -16 -7.16797 -16 -16v-95.71v0c0 -8.78809 -7.13281 -15.9561 -15.9209 -16l-112.06 -0.290039c-8.83203 0 -16 7.16797 -16 16v163.89zM571.6 196.53\\nc2.44531 -1.98828 4.42969 -6.15918 4.42969 -9.31055c0 -2.37305 -1.22266 -5.78613 -2.72949 -7.62012l-25.5 -31c-1.98633 -2.40332 -6.13086 -4.35449 -9.24902 -4.35449c-2.38574 0 -5.81348 1.23438 -7.65039 2.75488l-235.23 193.74\\nc-1.84863 1.49023 -5.27539 2.69922 -7.65039 2.69922c-2.37402 0 -5.80078 -1.20898 -7.64941 -2.69922l-235.22 -193.74c-1.83691 -1.5166 -5.26074 -2.74805 -7.64258 -2.74805c-3.12793 0 -7.28027 1.96191 -9.26758 4.37793l-25.5 31\\nc-1.52051 1.83789 -2.75488 5.26562 -2.75488 7.65039c0 3.11914 1.95117 7.2627 4.35449 9.25l253.13 208.47c7.33594 6.03613 21 10.9355 30.5 10.9355c9.50098 0 23.1641 -4.89941 30.5 -10.9355l89.5303 -73.6602v72.6104c0 6.62402 5.37598 12 12 12h56\\nc6.62402 0 12 -5.37598 12 -12v-138.51z\\\" />\\n    <glyph glyph-name=\\\"clock\\\" unicode=\\\"&#xf017;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM313.1 89.9004c5.40039 -3.90039 12.9004 -2.7002 16.8008 2.59961l28.1992 38.7998c3.90039 5.40039 2.80078 12.9004 -2.59961 16.7998l-63.5 46.2002v137.7\\nc0 6.59961 -5.40039 12 -12 12h-48c-6.59961 0 -12 -5.40039 -12 -12v-168.3c0 -3.7998 1.7998 -7.40039 4.90039 -9.7002z\\\" />\\n    <glyph glyph-name=\\\"road\\\" unicode=\\\"&#xf018;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M573.19 45.3301c9.25977 -21.1904 -5.5 -45.3301 -27.7305 -45.3301h-196.84l-10.3105 97.6797c-0.859375 8.14062 -7.71973 14.3203 -15.9092 14.3203h-68.8008c-8.18945 0 -15.0498 -6.17969 -15.9092 -14.3203l-10.3105 -97.6797h-196.84\\nc-22.2305 0 -36.9902 24.1396 -27.7402 45.3301l139.79 320c4.96973 11.3799 15.7998 18.6699 27.7305 18.6699h97.5898l-2.4502 -23.1602c-0.5 -4.71973 3.20996 -8.83984 7.95996 -8.83984h29.1602c4.75 0 8.45996 4.12012 7.95996 8.83984l-2.4502 23.1602h97.5898\\nc11.9199 0 22.75 -7.29004 27.7207 -18.6699zM260.4 312.84l-4.59082 -43.5801c-0.75 -7.08984 4.80078 -13.2598 11.9307 -13.2598h40.54c7.12012 0 12.6797 6.16992 11.9297 13.2598l-4.59961 43.5801c-0.430664 4.07031 -3.87012 7.16016 -7.95996 7.16016h-39.29\\nh-0.00488281c-3.97363 0 -7.53809 -3.20801 -7.95508 -7.16016zM315.64 144c9.5 0 16.9102 8.23047 15.9102 17.6797l-5.06934 48c-0.860352 8.14062 -7.7207 14.3203 -15.9102 14.3203h-45.1504c-8.18945 0 -15.0498 -6.17969 -15.9102 -14.3203l-5.06934 -48\\nc-1 -9.44922 6.40918 -17.6797 15.9092 -17.6797h55.29z\\\" />\\n    <glyph glyph-name=\\\"download\\\" unicode=\\\"&#xf019;\\\" \\nd=\\\"M216 448h80c13.2998 0 24 -10.7002 24 -24v-168h87.7002c17.7998 0 26.7002 -21.5 14.0996 -34.0996l-152.1 -152.2c-7.5 -7.5 -19.7998 -7.5 -27.2998 0l-152.301 152.2c-12.5996 12.5996 -3.69922 34.0996 14.1006 34.0996h87.7998v168c0 13.2998 10.7002 24 24 24z\\nM512 72v-112c0 -13.2998 -10.7002 -24 -24 -24h-464c-13.2998 0 -24 10.7002 -24 24v112c0 13.2998 10.7002 24 24 24h146.7l49 -49c20.0996 -20.0996 52.5 -20.0996 72.5996 0l49 49h146.7c13.2998 0 24 -10.7002 24 -24zM388 -16c0 11 -9 20 -20 20s-20 -9 -20 -20\\ns9 -20 20 -20s20 9 20 20zM452 -16c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20z\\\" />\\n    <glyph glyph-name=\\\"inbox\\\" unicode=\\\"&#xf01c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M567.938 204.092c4.4502 -6.6748 8.06152 -18.6025 8.06152 -26.624v-0.000976562v-129.467c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v129.467v0.000976562c0 8.02148 3.61133 19.9492 8.06152 26.624l105.689 158.534\\nc7.86621 11.7988 25.7578 21.374 39.9385 21.374h268.621c14.1807 0 32.0732 -9.57617 39.9395 -21.374zM162.252 320l-85.334 -128h123.082l32 -64h112l32 64h123.082l-85.333 128h-251.497z\\\" />\\n    <glyph glyph-name=\\\"redo\\\" unicode=\\\"&#xf01e;\\\" \\nd=\\\"M500.33 448c6.62402 0 12 -5.37598 12 -12v-200.34c0 -6.62402 -5.37598 -12 -12 -12h-200.33c-6.62402 0 -12 5.37598 -12 12v47.4102v0.0136719c0 6.62402 5.37598 12 12 12c0.157227 0 0.413086 -0.00683594 0.570312 -0.0136719l101.529 -4.87012\\nc-28.8721 42.9609 -94.3145 77.8281 -146.076 77.8281c-97.1514 0 -176 -78.8486 -176 -176c0 -97.1523 78.8486 -176 176 -176c36.6543 0 88.7373 19.6504 116.257 43.8613c1.87207 1.63672 5.40918 2.96387 7.89551 2.96387c2.74316 0 6.54395 -1.57422 8.48438 -3.51367\\nl34 -34c1.94141 -1.94043 3.51758 -5.74316 3.51758 -8.48828c0 -2.96094 -1.79102 -6.9668 -3.99805 -8.94141c-38.9707 -35.2783 -113.264 -63.9102 -165.831 -63.9102h-0.348633c-136.9 0 -247.9 110.93 -248 247.81c-0.0996094 136.66 111.34 248.19 248 248.19\\nh0.272461c63.2246 0 147.739 -39.124 188.647 -87.3301l-4 82.7598c-0.0078125 0.157227 -0.0136719 0.413086 -0.0136719 0.570312c0 6.62402 5.37598 12 12 12h0.0136719h47.4102z\\\" />\\n    <glyph glyph-name=\\\"sync\\\" unicode=\\\"&#xf021;\\\" \\nd=\\\"M440.65 435.43c-0.0078125 0.157227 -0.0136719 0.413086 -0.0136719 0.570312c0 6.62012 5.37305 11.9961 11.9932 12h47.3701c6.62402 0 12 -5.37598 12 -12v-200.35c0 -6.62402 -5.37598 -12 -12 -12h-200.22c-6.62402 0 -12 5.37598 -12 12v47.4092v0.0136719\\nc0 6.62402 5.37598 12 12 12c0.157227 0 0.412109 -0.00585938 0.569336 -0.0136719l101.46 -4.85938c-28.8584 42.9248 -94.2598 77.7627 -145.984 77.7627c-76.4834 0 -153.099 -60.3467 -171.016 -134.703c-1.19727 -5.10547 -6.4248 -9.25391 -11.6699 -9.25977\\nh-49.0498c-6.62402 0 -12 5.37598 -12 12c0 0.606445 0.0898438 1.58301 0.200195 2.17969c21.6201 114.9 122.44 201.82 243.54 201.82h0.28418c63.2031 0 147.667 -39.1279 188.536 -87.3398zM255.83 16c76.4971 0 153.144 60.3633 171.03 134.74\\nc1.19727 5.10547 6.4248 9.25391 11.6699 9.25977h49.0498c6.62402 0 12 -5.37598 12 -12c0 -0.606445 -0.0898438 -1.58301 -0.200195 -2.17969c-21.6201 -114.9 -122.439 -201.82 -243.55 -201.82h-0.234375c-63.1289 0 -147.53 39.0518 -188.396 87.1699\\nl4.14941 -82.5703c0.00878906 -0.165039 0.015625 -0.433594 0.015625 -0.599609c0 -6.62402 -5.37598 -12 -12 -12h-0.015625h-47.3496c-6.62402 0 -12 5.37598 -12 12v200.33c0 6.62402 5.37598 12 12 12h200.2c6.62402 0 12 -5.37598 12 -12v-47.4004v-0.0136719\\nc0 -6.62402 -5.37598 -12 -12 -12c-0.157227 0 -0.413086 0.00683594 -0.570312 0.0136719l-101.8 4.87012c28.7998 -42.9453 94.1406 -77.7998 145.85 -77.7998h0.150391z\\\" />\\n    <glyph glyph-name=\\\"list-alt\\\" unicode=\\\"&#xf022;\\\" \\nd=\\\"M464 -32h-416c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48zM128 328c-22.0908 0 -40 -17.9092 -40 -40s17.9092 -40 40 -40s40 17.9092 40 40s-17.9092 40 -40 40zM128 232\\nc-22.0908 0 -40 -17.9092 -40 -40s17.9092 -40 40 -40s40 17.9092 40 40s-17.9092 40 -40 40zM128 136c-22.0908 0 -40 -17.9092 -40 -40s17.9092 -40 40 -40s40 17.9092 40 40s-17.9092 40 -40 40zM416 272v32c0 6.62695 -5.37305 12 -12 12h-200\\nc-6.62695 0 -12 -5.37305 -12 -12v-32c0 -6.62695 5.37305 -12 12 -12h200c6.62695 0 12 5.37305 12 12zM416 176v32c0 6.62695 -5.37305 12 -12 12h-200c-6.62695 0 -12 -5.37305 -12 -12v-32c0 -6.62695 5.37305 -12 12 -12h200c6.62695 0 12 5.37305 12 12zM416 80v32\\nc0 6.62695 -5.37305 12 -12 12h-200c-6.62695 0 -12 -5.37305 -12 -12v-32c0 -6.62695 5.37305 -12 12 -12h200c6.62695 0 12 5.37305 12 12z\\\" />\\n    <glyph glyph-name=\\\"lock\\\" unicode=\\\"&#xf023;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 224c26.5 0 48 -21.5 48 -48v-192c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v192c0 26.5 21.5 48 48 48h24v72c0 83.7998 68.2002 152 152 152s152 -68.2002 152 -152v-72h24zM296 224v72c0 39.7002 -32.2998 72 -72 72s-72 -32.2998 -72 -72v-72h144\\nz\\\" />\\n    <glyph glyph-name=\\\"flag\\\" unicode=\\\"&#xf024;\\\" \\nd=\\\"M349.565 349.217c40.4951 0 82.6113 15.9062 116.949 31.8545c21.2168 9.85352 45.4854 -5.62305 45.4854 -29.0166v-243.1c0 -10.5264 -5.16016 -20.4072 -13.8428 -26.3584c-35.8379 -24.5635 -74.3359 -40.8574 -122.505 -40.8574\\nc-67.373 0 -111.629 34.7832 -165.218 34.7832c-50.8525 0 -86.124 -10.0586 -114.435 -22.1221v-94.4004c0 -13.2549 -10.7451 -24 -24 -24h-16c-13.2549 0 -24 10.7451 -24 24v386.055c-14.5029 10.1201 -24 26.9189 -24 45.9453\\nc0 31.7041 26.3447 57.2539 58.3379 55.9521c28.4678 -1.1582 51.7793 -23.9668 53.5508 -52.4033c0.0625 -0.980469 0.113281 -2.57324 0.113281 -3.55566c0 -5.71094 -1.65723 -14.6738 -3.69922 -20.0059c20.7363 7.62891 43.0898 12.0127 68.0449 12.0127\\nc67.373 0 111.63 -34.7832 165.218 -34.7832z\\\" />\\n    <glyph glyph-name=\\\"headphones\\\" unicode=\\\"&#xf025;\\\" \\nd=\\\"M256 416c141.504 0 256 -114.521 256 -256v-48c0 -10.917 -7.9248 -23.7402 -17.6904 -28.6221l-14.3818 -7.19141c-2.01074 -60.0889 -51.3486 -108.187 -111.928 -108.187h-24c-13.2549 0 -24 10.7451 -24 24v176c0 13.2549 10.7451 24 24 24h24\\nc31.3418 0 59.6709 -12.8789 80 -33.627v1.62695c0 105.869 -86.1309 192 -192 192s-192 -86.1309 -192 -192v-1.62695c20.3291 20.748 48.6582 33.627 80 33.627h24c13.2549 0 24 -10.7451 24 -24v-176c0 -13.2549 -10.7451 -24 -24 -24h-24\\nc-60.5791 0 -109.917 48.0967 -111.928 108.187l-14.3828 7.19141c-9.76465 4.88184 -17.6895 17.7051 -17.6895 28.6221v0v48c0 141.504 114.52 256 256 256z\\\" />\\n    <glyph glyph-name=\\\"volume-off\\\" unicode=\\\"&#xf026;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M215 377c15 15 41 4.46973 41 -17v-336c0 -21.4697 -26 -32 -41 -17l-88.9404 89h-102.06c-13.248 0 -24 10.752 -24 24v144c0 13.248 10.752 24 24 24h102z\\\" />\\n    <glyph glyph-name=\\\"volume-down\\\" unicode=\\\"&#xf027;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M215.03 375.96c15.0098 15 40.9697 4.49023 40.9697 -16.9795v-335.961c0 -21.4395 -25.9404 -32 -40.9697 -16.9697l-88.9707 88.9502h-102.06c-13.2598 0 -24 10.75 -24 24v144c0 13.2598 10.7402 24 24 24h102.06zM338.23 267.88\\nc28.2393 -15.5498 45.7793 -44.9902 45.7793 -76.8701s-17.54 -61.3301 -45.7695 -76.8799c-11.5605 -6.34961 -26.1807 -2.20996 -32.6104 9.4502c-6.38965 11.6104 -2.16016 26.2002 9.4502 32.6104c12.9004 7.08984 20.9199 20.4297 20.9199 34.8096\\ns-8.01953 27.7197 -20.9297 34.8203c-11.6104 6.41016 -15.8398 21 -9.4502 32.6094c6.41992 11.6104 21.0303 15.7803 32.6104 9.4502z\\\" />\\n    <glyph glyph-name=\\\"volume-up\\\" unicode=\\\"&#xf028;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M215.03 376.95c15.0098 15.0098 40.9697 4.49023 40.9697 -16.9697v-335.961c0 -21.4395 -25.9404 -32 -40.9697 -16.9697l-88.9707 88.9502h-102.06c-13.2598 0 -24 10.75 -24 24v144c0 13.2598 10.7402 24 24 24h102.06zM448.35 428.03\\nc79.9199 -52.46 127.65 -140.7 127.65 -236.03s-47.7305 -183.58 -127.65 -236.04c-11.5801 -7.61035 -26.4697 -3.75977 -33.5098 6.9502c-7.33984 11.1602 -4.21973 26.1797 6.9502 33.5c66.2695 43.4902 105.82 116.6 105.82 195.58\\nc0 78.9795 -39.5508 152.09 -105.82 195.58c-11.1699 7.33008 -14.29 22.3398 -6.9502 33.5098c7.33008 11.1895 22.3398 14.2803 33.5098 6.9502zM480 192c0 -63.54 -32.0596 -121.94 -85.7695 -156.24c-12 -7.67969 -26.6104 -2.89941 -33.1201 7.45996\\nc-7.09082 11.29 -3.78027 26.2207 7.40918 33.3604c39.75 25.3896 63.4805 68.5303 63.4805 115.42s-23.7305 90.0303 -63.4805 115.42c-11.1895 7.15039 -14.5 22.0801 -7.40918 33.3604c7.08984 11.2793 21.9297 14.5996 33.1201 7.45996\\nc53.71 -34.2998 85.7695 -92.71 85.7695 -156.24zM338.23 268.87c28.2393 -15.54 45.7793 -44.9805 45.7793 -76.8604s-17.54 -61.3301 -45.7695 -76.8799c-11.5605 -6.34961 -26.1807 -2.20996 -32.6104 9.4502c-6.38965 11.6104 -2.16016 26.2002 9.4502 32.6104\\nc12.9004 7.08984 20.9199 20.4297 20.9199 34.8096c0 14.3701 -8.01953 27.7197 -20.9297 34.8096c-11.6104 6.41016 -15.8398 21 -9.4502 32.6104c6.41992 11.6104 21.0303 15.7803 32.6104 9.4502z\\\" />\\n    <glyph glyph-name=\\\"qrcode\\\" unicode=\\\"&#xf029;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0 224v192h192v-192h-192zM64 352v-64h64v64h-64zM256 416h192v-192h-192v192zM384 288v64h-64v-64h64zM0 -32v192h192v-192h-192zM64 96v-64h64v64h-64zM416 160h32v-128h-96v32h-32v-96h-64v192h96v-32h64v32zM416 0h32v-32h-32v32zM352 0h32v-32h-32v32z\\\" />\\n    <glyph glyph-name=\\\"barcode\\\" unicode=\\\"&#xf02a;\\\" \\nd=\\\"M0 0v384h18v-384h-18zM26.8574 0.273438v383.727h9.14258v-383.727h-9.14258zM54 0.273438v383.727h8.85742v-383.727h-8.85742zM98.8574 0.273438v383.727h8.85645v-383.727h-8.85645zM134.857 0.273438v383.727h17.7139v-383.727h-17.7139zM179.714 0.273438v383.727\\nh8.85742v-383.727h-8.85742zM197.714 0.273438v383.727h8.85742v-383.727h-8.85742zM215.714 0.273438v383.727h8.85742v-383.727h-8.85742zM251.429 0.273438v383.727h18v-383.727h-18zM296.286 0.273438v383.727h18v-383.727h-18zM332.285 0.273438v383.727h18.001\\nv-383.727h-18.001zM368.286 0.273438v383.727h18.001v-383.727h-18.001zM395.143 0.273438v383.727h18v-383.727h-18zM440.286 0.273438v383.727h26.8564v-383.727h-26.8564zM476 0.273438v383.727h9.14258v-383.727h-9.14258zM494 0v384h18v-384h-18z\\\" />\\n    <glyph glyph-name=\\\"tag\\\" unicode=\\\"&#xf02b;\\\" \\nd=\\\"M0 195.882v204.118c0 26.5098 21.4902 48 48 48h204.118c10.9746 0 26.1807 -6.29883 33.9404 -14.0586l211.883 -211.883c18.7441 -18.7441 18.7441 -49.1367 0 -67.8818l-204.118 -204.118c-18.7451 -18.7441 -49.1377 -18.7441 -67.8818 0l-211.883 211.883\\nc-7.75977 7.75977 -14.0586 22.9658 -14.0586 33.9404zM112 384c-26.5098 0 -48 -21.4902 -48 -48s21.4902 -48 48 -48s48 21.4902 48 48s-21.4902 48 -48 48z\\\" />\\n    <glyph glyph-name=\\\"tags\\\" unicode=\\\"&#xf02c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M497.941 222.059c18.7441 -18.7441 18.7441 -49.1367 0 -67.8818l-204.118 -204.118c-18.7461 -18.7451 -49.1387 -18.7441 -67.8818 0l-211.883 211.883c-7.75977 7.75977 -14.0586 22.9658 -14.0586 33.9404v204.118c0 26.5098 21.4902 48 48 48h204.118\\nc10.9746 0 26.1807 -6.29883 33.9404 -14.0586zM112 288c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM625.941 154.177l-204.118 -204.118c-18.7451 -18.7441 -49.1377 -18.7441 -67.8818 0l-0.360352 0.360352\\nl174.059 174.059c16.999 16.999 26.3604 39.6006 26.3604 63.6406s-9.3623 46.6406 -26.3604 63.6396l-196.242 196.242h48.7207c10.9746 0 26.1807 -6.29883 33.9404 -14.0586l211.883 -211.883c18.7441 -18.7441 18.7441 -49.1367 0 -67.8818z\\\" />\\n    <glyph glyph-name=\\\"book\\\" unicode=\\\"&#xf02d;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 88c0 -7.5 -3.5 -14.2998 -8.90039 -18.5996c-4.19922 -15.4004 -4.19922 -59.3008 0 -74.7002c5.40039 -4.40039 8.90039 -11.2002 8.90039 -18.7002v-16c0 -13.2998 -10.7002 -24 -24 -24h-328c-53 0 -96 43 -96 96v320c0 53 43 96 96 96h328\\nc13.2998 0 24 -10.7002 24 -24v-336zM128 314v-20c0 -3.2998 2.7002 -6 6 -6h212c3.2998 0 6 2.7002 6 6v20c0 3.2998 -2.7002 6 -6 6h-212c-3.2998 0 -6 -2.7002 -6 -6zM128 250v-20c0 -3.2998 2.7002 -6 6 -6h212c3.2998 0 6 2.7002 6 6v20c0 3.2998 -2.7002 6 -6 6h-212\\nc-3.2998 0 -6 -2.7002 -6 -6zM381.4 0c-1.90039 17.0996 -1.90039 46.9004 0 64h-285.4c-17.5996 0 -32 -14.4004 -32 -32c0 -17.7002 14.2998 -32 32 -32h285.4z\\\" />\\n    <glyph glyph-name=\\\"bookmark\\\" unicode=\\\"&#xf02e;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M0 -64v464c0 26.5098 21.4902 48 48 48h288c26.5098 0 48 -21.4902 48 -48v-464l-192 112z\\\" />\\n    <glyph glyph-name=\\\"print\\\" unicode=\\\"&#xf02f;\\\" \\nd=\\\"M448 256c35.3496 0 64 -28.6504 64 -64v-112c0 -8.83984 -7.16016 -16 -16 -16h-48v-96c0 -17.6699 -14.3301 -32 -32 -32h-320c-17.6699 0 -32 14.3301 -32 32v96h-48c-8.83984 0 -16 7.16016 -16 16v112c0 35.3496 28.6504 64 64 64v160c0 17.6699 14.3301 32 32 32\\nh274.74c8.49023 0 16.6299 -3.37012 22.6299 -9.37012l45.2598 -45.25c6 -6.00977 9.37012 -14.1396 9.37012 -22.6299v-114.75zM384 0v96h-256v-96h256zM384 224v96h-48c-8.83984 0 -16 7.16016 -16 16v48h-192v-160h256zM432 152c13.25 0 24 10.75 24 24\\nc0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"camera\\\" unicode=\\\"&#xf030;\\\" \\nd=\\\"M512 304v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h88l12.2998 32.9004c7 18.6992 24.9004 31.0996 44.9004 31.0996h125.5c20 0 37.8994 -12.4004 44.8994 -31.0996l12.4004 -32.9004h88c26.5 0 48 -21.5 48 -48zM376 160\\nc0 66.2002 -53.7998 120 -120 120s-120 -53.7998 -120 -120s53.7998 -120 120 -120s120 53.7998 120 120zM344 160c0 -48.5 -39.5 -88 -88 -88s-88 39.5 -88 88s39.5 88 88 88s88 -39.5 88 -88z\\\" />\\n    <glyph glyph-name=\\\"font\\\" unicode=\\\"&#xf031;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M432 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h19.5801l-23.2998 64h-152.561l-23.2998 -64h19.5801c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-128c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h23.4102l130.71 362.31c4.07422 11.9736 17.6465 21.6904 30.2939 21.6904h0.00585938h47.1602h0.00585938c12.6475 0 26.2197 -9.7168 30.2939 -21.6904\\nl130.71 -362.31h23.4102zM176.85 176h94.3008l-47.1504 129.49z\\\" />\\n    <glyph glyph-name=\\\"bold\\\" unicode=\\\"&#xf032;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M333.49 210c34.4395 -27.54 55.5693 -71.1504 50.8301 -119.6c-6.86035 -70.6504 -70.2002 -122.4 -141 -122.4h-209.32c-8.83203 0 -16 7.16797 -16 16v48c0 8.83203 7.16797 16 16 16h31.8701v288h-31.8701c-8.83203 0 -16 7.16797 -16 16v48\\nc0 8.83203 7.16797 16 16 16h199.42c74.5801 0 134.45 -64.4902 127.07 -140.79c-2.01367 -20.25 -14.1094 -49.4639 -27 -65.21zM145.66 336v-96h87.7598c26.4961 0 48 21.5039 48 48s-21.5039 48 -48 48h-87.7598zM233.42 48c30.9121 0 56 25.0879 56 56\\ns-25.0879 56 -56 56h-87.7598v-112h87.7598z\\\" />\\n    <glyph glyph-name=\\\"italic\\\" unicode=\\\"&#xf033;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M320 400v-32c0 -8.83203 -7.16797 -16 -16 -16h-62.7598l-80 -320h46.7598c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-192c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h62.7598l80 320h-46.7598\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h192c8.83203 0 16 -7.16797 16 -16z\\\" />\\n    <glyph glyph-name=\\\"text-height\\\" unicode=\\\"&#xf034;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M304 416c8.83203 0 16 -7.16797 16 -16v-96c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32h-56v-304h40c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-160c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h40v304h-56v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v96c0 8.83203 7.16797 16 16 16h288zM560 80c15.6396 0 20.6396 -18 11.3096 -27.3096l-80 -80c-2.58594 -2.58496 -7.65332 -4.68262 -11.3096 -4.68262\\ns-8.72363 2.09766 -11.3096 4.68262l-80 80c-10.0107 10 -3 27.3096 11.3096 27.3096h48v224h-48c-15.6396 0 -20.6396 18 -11.3096 27.3096l80 80c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262l80 -80\\nc10.0205 -10 3 -27.3096 -11.3096 -27.3096h-48v-224h48z\\\" />\\n    <glyph glyph-name=\\\"text-width\\\" unicode=\\\"&#xf035;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M432 416c8.83203 0 16 -7.16797 16 -16v-80c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v16h-120v-112h24c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h24v112h-120v-16c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v80c0 8.83203 7.16797 16 16 16h416zM363.31 155.31l80 -80c2.58496 -2.58594 4.68262 -7.65332 4.68262 -11.3096s-2.09766 -8.72363 -4.68262 -11.3096\\nl-80 -80c-10 -10.0205 -27.3096 -3 -27.3096 11.3096v48h-224v-48c0 -15.6396 -18 -20.6396 -27.3096 -11.3096l-80 80c-2.58496 2.58594 -4.68262 7.65332 -4.68262 11.3096s2.09766 8.72363 4.68262 11.3096l80 80c10 10.0107 27.3096 3 27.3096 -11.3096v-48h224v48\\nc0 15.6396 18 20.6396 27.3096 11.3096z\\\" />\\n    <glyph glyph-name=\\\"align-left\\\" unicode=\\\"&#xf036;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M12.8301 96c-7.07715 0 -12.8301 5.74316 -12.8301 12.8203v0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h262.34h0.00976562c7.07715 0 12.8203 -5.74316 12.8203 -12.8203v-0.00976562v-38.3398v-0.00976562\\nc0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-262.34zM12.8301 352c-7.07715 0 -12.8301 5.74316 -12.8301 12.8203v0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h262.34h0.00976562\\nc7.07715 0 12.8203 -5.74316 12.8203 -12.8203v-0.00976562v-38.3398v-0.00976562c0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-262.34zM432 288c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16\\nv32c0 8.83203 7.16797 16 16 16h416zM432 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416z\\\" />\\n    <glyph glyph-name=\\\"align-center\\\" unicode=\\\"&#xf037;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M432 288c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416zM432 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16\\nv32c0 8.83203 7.16797 16 16 16h416zM108.1 352c-6.67871 0 -12.0996 5.4209 -12.0996 12.0996v39.8105c0 6.67383 5.41602 12.0898 12.0898 12.0898h0.00976562h231.811c6.67383 0 12.0898 -5.41602 12.0898 -12.0898v-39.8105v-0.00976562\\nc0 -6.67383 -5.41602 -12.0898 -12.0898 -12.0898v0h-231.811zM339.91 96h-231.811c-6.67871 0 -12.0996 5.4209 -12.0996 12.0996v39.8105c0 6.67383 5.41602 12.0898 12.0898 12.0898h0.00976562h231.811c6.67383 0 12.0898 -5.41602 12.0898 -12.0898v-39.8105\\nv-0.00976562c0 -6.67383 -5.41602 -12.0898 -12.0898 -12.0898v0z\\\" />\\n    <glyph glyph-name=\\\"align-right\\\" unicode=\\\"&#xf038;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M16 224c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416zM432 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16\\nv32c0 8.83203 7.16797 16 16 16h416zM435.17 416c7.07715 0 12.8301 -5.74316 12.8301 -12.8203v-0.00976562v-38.3398v-0.00976562c0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-262.34h-0.00976562c-7.07715 0 -12.8203 5.74316 -12.8203 12.8203\\nv0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h262.34zM435.17 160c7.07715 0 12.8301 -5.74316 12.8301 -12.8203v-0.00976562v-38.3398v-0.00976562c0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-262.34\\nh-0.00976562c-7.07715 0 -12.8203 5.74316 -12.8203 12.8203v0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h262.34z\\\" />\\n    <glyph glyph-name=\\\"align-justify\\\" unicode=\\\"&#xf039;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M432 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416zM432 160c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16\\nv32c0 8.83203 7.16797 16 16 16h416zM432 288c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416zM432 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16\\nh-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416z\\\" />\\n    <glyph glyph-name=\\\"list\\\" unicode=\\\"&#xf03a;\\\" \\nd=\\\"M80 80c8.83203 0 16 -7.16797 16 -16v-64c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v64c0 8.83203 7.16797 16 16 16h64zM80 400c8.83203 0 16 -7.16797 16 -16v-64c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v64\\nc0 8.83203 7.16797 16 16 16h64zM80 240c8.83203 0 16 -7.16797 16 -16v-64c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v64c0 8.83203 7.16797 16 16 16h64zM496 64c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-320\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM496 384c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM496 224c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320z\\\" />\\n    <glyph glyph-name=\\\"outdent\\\" unicode=\\\"&#xf03b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M100.69 84.71l-96 95.9805c-2.58496 2.58594 -4.68262 7.65332 -4.68262 11.3096s2.09766 8.72363 4.68262 11.3096l96 96c9.97949 10 27.3096 3.01074 27.3096 -11.3096v-191.98c0 -14.2393 -17.3096 -21.3096 -27.3096 -11.3096zM432 32c8.83203 0 16 -7.16797 16 -16\\nv-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416zM435.17 160c7.07715 0 12.8301 -5.74316 12.8301 -12.8203v-0.00976562v-38.3398v-0.00976562c0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562\\nh-230.34h-0.00976562c-7.07715 0 -12.8203 5.74316 -12.8203 12.8203v0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h230.34zM435.17 288c7.07715 0 12.8301 -5.74316 12.8301 -12.8203v-0.00976562v-38.3398v-0.00976562\\nc0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-230.34h-0.00976562c-7.07715 0 -12.8203 5.74316 -12.8203 12.8203v0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h230.34zM432 416c8.83203 0 16 -7.16797 16 -16\\nv-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416z\\\" />\\n    <glyph glyph-name=\\\"indent\\\" unicode=\\\"&#xf03c;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M27.3096 84.7002c-9.97949 -10 -27.3096 -3.00977 -27.3096 11.2998v192c0 14.2197 17.2695 21.3398 27.3096 11.3203l96 -96c2.58496 -2.58691 4.68262 -7.65332 4.68262 -11.3105c0 -3.65625 -2.09766 -8.72363 -4.68262 -11.3096zM432 32\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416zM435.17 160c7.07715 0 12.8301 -5.74316 12.8301 -12.8203v-0.00976562v-38.3398v-0.00976562\\nc0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-230.34h-0.00976562c-7.07715 0 -12.8203 5.74316 -12.8203 12.8203v0.00976562v38.3398v0.00976562c0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h230.34zM435.17 288\\nc7.07715 0 12.8301 -5.74316 12.8301 -12.8203v-0.00976562v-38.3398v-0.00976562c0 -7.07715 -5.74316 -12.8203 -12.8203 -12.8203h-0.00976562h-230.34h-0.00976562c-7.07715 0 -12.8203 5.74316 -12.8203 12.8203v0.00976562v38.3398v0.00976562\\nc0 7.07715 5.74316 12.8203 12.8203 12.8203h0.00976562h230.34zM432 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416z\\\" />\\n    <glyph glyph-name=\\\"video\\\" unicode=\\\"&#xf03d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M336.2 384c26.3994 0 47.7998 -21.4004 47.7998 -47.7998v-288.4c0 -26.3994 -21.4004 -47.7998 -47.7998 -47.7998h-288.4c-26.3994 0 -47.7998 21.4004 -47.7998 47.7998v288.4c0 26.3994 21.4004 47.7998 47.7998 47.7998h288.4zM525.6 346.3\\nc21.3008 14.6006 50.4004 -0.399414 50.4004 -25.7998v-256.9c0 -25.5 -29.2002 -40.3994 -50.4004 -25.7998l-109.6 75.5v157.4z\\\" />\\n    <glyph glyph-name=\\\"image\\\" unicode=\\\"&#xf03e;\\\" \\nd=\\\"M464 0h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48zM112 328c-30.9277 0 -56 -25.0723 -56 -56s25.0723 -56 56 -56s56 25.0723 56 56s-25.0723 56 -56 56zM64 64h384\\nv112l-87.5146 87.5146c-4.68652 4.68652 -12.2842 4.68652 -16.9717 0l-135.514 -135.515l-55.5146 55.5146c-4.68652 4.68652 -12.2842 4.68652 -16.9717 0l-71.5137 -71.5146v-48z\\\" />\\n    <glyph glyph-name=\\\"map-marker\\\" unicode=\\\"&#xf041;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M172.268 -53.6699c-145.298 210.639 -172.268 232.257 -172.268 309.67c0 106.039 85.9609 192 192 192s192 -85.9609 192 -192c0 -77.4131 -26.9697 -99.0312 -172.268 -309.67c-9.53516 -13.7744 -29.9307 -13.7734 -39.4648 0z\\\" />\\n    <glyph glyph-name=\\\"adjust\\\" unicode=\\\"&#xf042;\\\" \\nd=\\\"M8 192c0 136.967 111.034 248 248 248s248 -111.034 248 -248s-111.033 -248 -248 -248s-248 111.034 -248 248zM256 8c101.689 0 184 82.2949 184 184c0 101.689 -82.2949 184 -184 184v-368z\\\" />\\n    <glyph glyph-name=\\\"tint\\\" unicode=\\\"&#xf043;\\\" horiz-adv-x=\\\"352\\\" \\nd=\\\"M205.22 425.91c46.9902 -158.48 146.78 -200.07 146.78 -311.82c0 -98.4395 -78.7197 -178.09 -176 -178.09s-176 79.6504 -176 178.09c0 111.19 100.01 154.061 146.78 311.82c9 30.1201 50.5 28.7803 58.4395 0zM176 0c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16\\nc-44.1104 0 -80 35.8896 -80 80c0 8.83984 -7.16016 16 -16 16s-16 -7.16016 -16 -16c0 -61.75 50.25 -112 112 -112z\\\" />\\n    <glyph glyph-name=\\\"edit\\\" unicode=\\\"&#xf044;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M402.6 364.8l90.2002 -90.2002c3.7998 -3.7998 3.7998 -10 0 -13.7998l-218.399 -218.399l-92.8008 -10.3008c-12.3994 -1.39941 -22.8994 9.10059 -21.5 21.5l10.3008 92.8008l218.399 218.399c3.7998 3.7998 10 3.7998 13.7998 0zM564.6 387.7\\nc15.2002 -15.2002 15.2002 -39.9004 0 -55.2002l-35.3994 -35.4004c-3.7998 -3.7998 -10 -3.7998 -13.7998 0l-90.2002 90.2002c-3.7998 3.7998 -3.7998 10 0 13.7998l35.3994 35.4004c15.3008 15.2002 40 15.2002 55.2002 0zM384 101.8c0 3.2002 1.2998 6.2002 3.5 8.5\\nl40 40c7.59961 7.5 20.5 2.2002 20.5 -8.5v-157.8c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h285.8c10.7002 0 16.1006 -12.9004 8.5 -20.5l-40 -40c-2.2998 -2.2002 -5.2998 -3.5 -8.5 -3.5h-229.8v-320h320v101.8z\\\" />\\n    <glyph glyph-name=\\\"step-backward\\\" unicode=\\\"&#xf048;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M64 -20v424c0 6.59961 5.40039 12 12 12h48c6.59961 0 12 -5.40039 12 -12v-176.4l195.5 181c20.5996 17.1006 52.5 2.80078 52.5 -24.5996v-384c0 -27.4004 -31.9004 -41.7002 -52.5 -24.5996l-195.5 179.899v-175.3c0 -6.59961 -5.40039 -12 -12 -12h-48\\nc-6.59961 0 -12 5.40039 -12 12z\\\" />\\n    <glyph glyph-name=\\\"fast-backward\\\" unicode=\\\"&#xf049;\\\" \\nd=\\\"M0 12v360c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-151.9l171.5 156.5c20.5996 17.1006 52.5 2.80078 52.5 -24.5996v-131.9l171.5 156.5c20.5996 17.1006 52.5 2.80078 52.5 -24.5996v-320c0 -27.4004 -31.9004 -41.7002 -52.5 -24.5996\\nl-171.5 155.3v-130.7c0 -27.4004 -31.9004 -41.7002 -52.5 -24.5996l-171.5 155.3v-150.7c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12z\\\" />\\n    <glyph glyph-name=\\\"backward\\\" unicode=\\\"&#xf04a;\\\" \\nd=\\\"M11.5 167.4c-15.2998 12.7998 -15.2998 36.3994 0 49.1992l192 160c20.5996 17.2002 52.5 2.80078 52.5 -24.5996v-320c0 -27.4004 -31.9004 -41.7998 -52.5 -24.5996zM267.5 167.4c-15.2998 12.7998 -15.2998 36.3994 0 49.1992l192 160\\nc20.5996 17.2002 52.5 2.80078 52.5 -24.5996v-320c0 -27.4004 -31.9004 -41.7998 -52.5 -24.5996z\\\" />\\n    <glyph glyph-name=\\\"play\\\" unicode=\\\"&#xf04b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M424.4 233.3c31.5 -18.5 31.3994 -64.0996 0 -82.5996l-352 -208c-31.7002 -18.7998 -72.4004 3.7998 -72.4004 41.2998v416.1c0 41.8008 43.7998 58.2002 72.4004 41.3008z\\\" />\\n    <glyph glyph-name=\\\"pause\\\" unicode=\\\"&#xf04c;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M144 -31h-96c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48zM448 17c0 -26.5 -21.5 -48 -48 -48h-96c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48 -21.5 48 -48v-352z\\\" />\\n    <glyph glyph-name=\\\"stop\\\" unicode=\\\"&#xf04d;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352z\\\" />\\n    <glyph glyph-name=\\\"forward\\\" unicode=\\\"&#xf04e;\\\" \\nd=\\\"M500.5 216.6c15.2998 -12.7998 15.2998 -36.3994 0 -49.1992l-192 -160c-20.5996 -17.2002 -52.5 -2.80078 -52.5 24.5996v320c0 27.4004 31.9004 41.7002 52.5 24.5996zM244.5 216.6c15.2998 -12.7998 15.2998 -36.3994 0 -49.1992l-192 -160\\nc-20.5996 -17.2002 -52.5 -2.80078 -52.5 24.5996v320c0 27.4004 31.9004 41.7002 52.5 24.5996z\\\" />\\n    <glyph glyph-name=\\\"fast-forward\\\" unicode=\\\"&#xf050;\\\" \\nd=\\\"M512 372v-360c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v151.9l-171.5 -156.5c-20.5996 -17.2002 -52.5 -2.80078 -52.5 24.5996v131.9l-171.5 -156.5c-20.5996 -17.2002 -52.5 -2.80078 -52.5 24.5996v320\\nc0 27.4004 31.9004 41.7002 52.5 24.5996l171.5 -155.399v130.8c0 27.4004 31.9004 41.7002 52.5 24.5996l171.5 -155.399v150.8c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12z\\\" />\\n    <glyph glyph-name=\\\"step-forward\\\" unicode=\\\"&#xf051;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 404v-424c0 -6.59961 -5.40039 -12 -12 -12h-48c-6.59961 0 -12 5.40039 -12 12v176.4l-195.5 -181c-20.5996 -17.1006 -52.5 -2.80078 -52.5 24.5996v384c0 27.4004 31.9004 41.7002 52.5 24.5996l195.5 -179.899v175.3c0 6.59961 5.40039 12 12 12h48\\nc6.59961 0 12 -5.40039 12 -12z\\\" />\\n    <glyph glyph-name=\\\"eject\\\" unicode=\\\"&#xf052;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 64v-64c0 -17.6729 -14.3271 -32 -32 -32h-384c-17.6729 0 -32 14.3271 -32 32v64c0 17.6729 14.3271 32 32 32h384c17.6729 0 32 -14.3271 32 -32zM48.0527 128c-41.7285 0 -63.5273 49.7324 -35.3828 80.4346l175.946 192.008\\nc19.0156 20.7432 51.7529 20.7422 70.7666 0l175.939 -192.008c28.1973 -30.7607 6.26758 -80.4346 -35.3828 -80.4346h-351.887z\\\" />\\n    <glyph glyph-name=\\\"chevron-left\\\" unicode=\\\"&#xf053;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M34.5195 208.97l194.351 194.34c9.37012 9.37012 24.5703 9.37012 33.9395 0l22.6709 -22.6699c9.35938 -9.35938 9.36914 -24.5195 0.0390625 -33.8994l-154.029 -154.74l154.02 -154.75c9.33984 -9.37988 9.32031 -24.54 -0.0400391 -33.9004l-22.6699 -22.6699\\nc-9.37012 -9.37012 -24.5693 -9.37012 -33.9395 0l-194.341 194.351c-9.36914 9.37012 -9.36914 24.5693 0 33.9395z\\\" />\\n    <glyph glyph-name=\\\"chevron-right\\\" unicode=\\\"&#xf054;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M285.476 175.029l-194.344 -194.344c-9.37305 -9.37207 -24.5684 -9.37207 -33.9404 0l-22.667 22.667c-9.35742 9.35742 -9.375 24.5225 -0.0400391 33.9014l154.021 154.746l-154.021 154.745c-9.33496 9.37891 -9.31738 24.5439 0.0400391 33.9014l22.667 22.667\\nc9.37305 9.37207 24.5684 9.37207 33.9404 0l194.343 -194.344c9.37305 -9.37207 9.37305 -24.5674 0.000976562 -33.9404z\\\" />\\n    <glyph glyph-name=\\\"plus-circle\\\" unicode=\\\"&#xf055;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM400 164v56c0 6.59961 -5.40039 12 -12 12h-92v92c0 6.59961 -5.40039 12 -12 12h-56c-6.59961 0 -12 -5.40039 -12 -12v-92h-92c-6.59961 0 -12 -5.40039 -12 -12v-56\\nc0 -6.59961 5.40039 -12 12 -12h92v-92c0 -6.59961 5.40039 -12 12 -12h56c6.59961 0 12 5.40039 12 12v92h92c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"minus-circle\\\" unicode=\\\"&#xf056;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM124 152h264c6.59961 0 12 5.40039 12 12v56c0 6.59961 -5.40039 12 -12 12h-264c-6.59961 0 -12 -5.40039 -12 -12v-56c0 -6.59961 5.40039 -12 12 -12z\\\" />\\n    <glyph glyph-name=\\\"times-circle\\\" unicode=\\\"&#xf057;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM377.6 126.9l-65.5996 65.0996l65.7002 65c4.7002 4.7002 4.7002 12.2998 0 17l-39.6006 39.5996c-4.69922 4.7002 -12.2998 4.7002 -17 0l-65.0996 -65.5996l-65 65.7002\\nc-4.7002 4.7002 -12.2998 4.7002 -17 0l-39.5996 -39.6006c-4.7002 -4.69922 -4.7002 -12.2998 0 -17l65.5996 -65.0996l-65.5996 -65c-4.7002 -4.7002 -4.7002 -12.2998 0 -17l39.5 -39.5996c4.69922 -4.7002 12.2998 -4.7002 17 0l65.0996 65.5996l65 -65.5996\\nc4.7002 -4.7002 12.2998 -4.7002 17 0l39.5996 39.5c4.7002 4.69922 4.7002 12.2998 0 17z\\\" />\\n    <glyph glyph-name=\\\"check-circle\\\" unicode=\\\"&#xf058;\\\" \\nd=\\\"M504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248zM227.314 60.6855l184 184c6.24707 6.24805 6.24707 16.3799 0 22.6279l-22.6279 22.627c-6.24707 6.24902 -16.3789 6.24902 -22.6279 0\\nl-150.059 -150.059l-70.0586 70.0596c-6.24805 6.24805 -16.3799 6.24805 -22.6279 0l-22.6279 -22.627c-6.24707 -6.24805 -6.24707 -16.3799 0 -22.6279l104 -104c6.24902 -6.24805 16.3799 -6.24805 22.6289 -0.000976562z\\\" />\\n    <glyph glyph-name=\\\"question-circle\\\" unicode=\\\"&#xf059;\\\" \\nd=\\\"M504 192c0 -136.997 -111.043 -248 -248 -248s-248 111.003 -248 248c0 136.917 111.043 248 248 248s248 -111.083 248 -248zM262.655 358c-54.4971 0 -89.2549 -22.957 -116.549 -63.7578c-3.53613 -5.28613 -2.35352 -12.415 2.71484 -16.2578l34.6982 -26.3105\\nc5.20508 -3.94727 12.6211 -3.00781 16.665 2.12207c17.8643 22.6582 30.1133 35.7969 57.3037 35.7969c20.4287 0 45.6973 -13.1475 45.6973 -32.958c0 -14.9756 -12.3623 -22.667 -32.5332 -33.9756c-23.5244 -13.1875 -54.6523 -29.6006 -54.6523 -70.6592v-4\\nc0 -6.62695 5.37305 -12 12 -12h56c6.62695 0 12 5.37305 12 12v1.33301c0 28.4619 83.1855 29.6475 83.1855 106.667c0 58.002 -60.1641 102 -116.53 102zM256 110c-25.3652 0 -46 -20.6348 -46 -46c0 -25.3643 20.6348 -46 46 -46s46 20.6357 46 46\\nc0 25.3652 -20.6348 46 -46 46z\\\" />\\n    <glyph glyph-name=\\\"info-circle\\\" unicode=\\\"&#xf05a;\\\" \\nd=\\\"M256 440c136.957 0 248 -111.083 248 -248c0 -136.997 -111.043 -248 -248 -248s-248 111.003 -248 248c0 136.917 111.043 248 248 248zM256 330c-23.1963 0 -42 -18.8037 -42 -42s18.8037 -42 42 -42s42 18.8037 42 42s-18.8037 42 -42 42zM312 76v24\\nc0 6.62695 -5.37305 12 -12 12h-12v100c0 6.62695 -5.37305 12 -12 12h-64c-6.62695 0 -12 -5.37305 -12 -12v-24c0 -6.62695 5.37305 -12 12 -12h12v-64h-12c-6.62695 0 -12 -5.37305 -12 -12v-24c0 -6.62695 5.37305 -12 12 -12h88c6.62695 0 12 5.37305 12 12z\\\" />\\n    <glyph glyph-name=\\\"crosshairs\\\" unicode=\\\"&#xf05b;\\\" \\nd=\\\"M500 224c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-30.3643c-13.9121 -93.6748 -87.9609 -167.724 -181.636 -181.636v-30.3643c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v30.3643\\nc-93.6748 13.9121 -167.724 87.9609 -181.636 181.636h-30.3643c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h30.3643c13.9121 93.6748 87.9609 167.724 181.636 181.636v30.3643c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-30.3643\\nc93.6748 -13.9121 167.724 -87.9609 181.636 -181.636h30.3643zM288 43.3662c58.2432 12.417 104.232 58.46 116.634 116.634h-40.6338c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40.6338c-12.417 58.2432 -58.46 104.232 -116.634 116.634v-40.6338\\nc0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40.6338c-58.2432 -12.417 -104.232 -58.46 -116.634 -116.634h40.6338c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40.6338\\nc12.417 -58.2432 58.46 -104.232 116.634 -116.634v40.6338c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40.6338zM288 192c0 -17.6729 -14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32s32 -14.3271 32 -32z\\\" />\\n    <glyph glyph-name=\\\"ban\\\" unicode=\\\"&#xf05e;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.034 248 -248s-111.034 -248 -248 -248s-248 111.033 -248 248s111.034 248 248 248zM386.108 322.108c-65.4121 65.4102 -165.435 70.0312 -235.639 20.6758l256.315 -256.313c49.3232 70.1562 44.7705 170.189 -20.6768 235.638z\\nM125.892 61.8916c65.4121 -65.4111 165.436 -70.0312 235.639 -20.6758l-256.315 256.313c-49.3232 -70.1562 -44.7705 -170.189 20.6768 -235.638z\\\" />\\n    <glyph glyph-name=\\\"arrow-left\\\" unicode=\\\"&#xf060;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M257.5 2.90039l-22.2002 -22.2002c-9.39941 -9.40039 -24.5996 -9.40039 -33.8994 0l-194.4 194.3c-9.40039 9.40039 -9.40039 24.5996 0 33.9004l194.4 194.399c9.39941 9.40039 24.5996 9.40039 33.8994 0l22.2002 -22.2002c9.5 -9.5 9.2998 -25 -0.400391 -34.2998\\nl-120.5 -114.8h287.4c13.2998 0 24 -10.7002 24 -24v-32c0 -13.2998 -10.7002 -24 -24 -24h-287.4l120.5 -114.8c9.80078 -9.2998 10 -24.7998 0.400391 -34.2998z\\\" />\\n    <glyph glyph-name=\\\"arrow-right\\\" unicode=\\\"&#xf061;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M190.5 381.1l22.2002 22.2002c9.39941 9.40039 24.5996 9.40039 33.8994 0l194.4 -194.3c9.40039 -9.40039 9.40039 -24.5996 0 -33.9004l-194.4 -194.399c-9.39941 -9.40039 -24.5996 -9.40039 -33.8994 0l-22.2002 22.2002c-9.5 9.5 -9.2998 25 0.400391 34.2998\\nl120.5 114.8h-287.4c-13.2998 0 -24 10.7002 -24 24v32c0 13.2998 10.7002 24 24 24h287.4l-120.5 114.8c-9.80078 9.2998 -10 24.7998 -0.400391 34.2998z\\\" />\\n    <glyph glyph-name=\\\"arrow-up\\\" unicode=\\\"&#xf062;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M34.9004 158.5l-22.2002 22.2002c-9.40039 9.39941 -9.40039 24.5996 0 33.8994l194.3 194.4c9.40039 9.40039 24.5996 9.40039 33.9004 0l194.3 -194.3c9.39941 -9.40039 9.39941 -24.6006 0 -33.9004l-22.2002 -22.2002c-9.5 -9.5 -25 -9.2998 -34.2998 0.400391\\nl-114.7 120.4v-287.4c0 -13.2998 -10.7002 -24 -24 -24h-32c-13.2998 0 -24 10.7002 -24 24v287.4l-114.8 -120.5c-9.2998 -9.80078 -24.7998 -10 -34.2998 -0.400391z\\\" />\\n    <glyph glyph-name=\\\"arrow-down\\\" unicode=\\\"&#xf063;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M413.1 225.5l22.2002 -22.2002c9.40039 -9.39941 9.40039 -24.5996 0 -33.8994l-194.3 -194.4c-9.40039 -9.40039 -24.5996 -9.40039 -33.9004 0l-194.399 194.4c-9.40039 9.39941 -9.40039 24.5996 0 33.8994l22.2002 22.2002c9.5 9.5 25 9.2998 34.2998 -0.400391\\nl114.8 -120.5v287.4c0 13.2998 10.7002 24 24 24h32c13.2998 0 24 -10.7002 24 -24v-287.4l114.8 120.5c9.2998 9.80078 24.7998 10 34.2998 0.400391z\\\" />\\n    <glyph glyph-name=\\\"share\\\" unicode=\\\"&#xf064;\\\" \\nd=\\\"M503.691 258.164c11.0859 -9.5752 11.0703 -26.7656 0 -36.3281l-176.005 -152c-15.3867 -13.2891 -39.6865 -2.53613 -39.6865 18.1641v87.915c-155.083 -2.23145 -221.934 -40.7295 -176.59 -185.742c5.03418 -16.0977 -14.4238 -28.5615 -28.0771 -18.6309\\nc-43.752 31.8232 -83.333 92.6914 -83.333 154.132c0 152.227 127.371 184.419 288 186.258v80.0537c0 20.668 24.2812 31.4688 39.6865 18.1641z\\\" />\\n    <glyph glyph-name=\\\"expand\\\" unicode=\\\"&#xf065;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0 268v124c0 13.2998 10.7002 24 24 24h124c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-84v-84c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12zM288 404c0 6.59961 5.40039 12 12 12h124c13.2998 0 24 -10.7002 24 -24\\nv-124c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v84h-84c-6.59961 0 -12 5.40039 -12 12v40zM436 128c6.59961 0 12 -5.40039 12 -12v-124c0 -13.2998 -10.7002 -24 -24 -24h-124c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h84\\nv84c0 6.59961 5.40039 12 12 12h40zM160 -20c0 -6.59961 -5.40039 -12 -12 -12h-124c-13.2998 0 -24 10.7002 -24 24v124c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-84h84c6.59961 0 12 -5.40039 12 -12v-40z\\\" />\\n    <glyph glyph-name=\\\"compress\\\" unicode=\\\"&#xf066;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 256h-124c-13.2998 0 -24 10.7002 -24 24v124c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-84h84c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM160 280c0 -13.2998 -10.7002 -24 -24 -24h-124\\nc-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h84v84c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-124zM160 -20c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v84h-84c-6.59961 0 -12 5.40039 -12 12v40\\nc0 6.59961 5.40039 12 12 12h124c13.2998 0 24 -10.7002 24 -24v-124zM352 -20c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v124c0 13.2998 10.7002 24 24 24h124c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-84v-84z\\\" />\\n    <glyph glyph-name=\\\"plus\\\" unicode=\\\"&#xf067;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M416 240c17.6699 0 32 -14.3301 32 -32v-32c0 -17.6699 -14.3301 -32 -32 -32h-144v-144c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v144h-144c-17.6699 0 -32 14.3301 -32 32v32c0 17.6699 14.3301 32 32 32h144v144\\nc0 17.6699 14.3301 32 32 32h32c17.6699 0 32 -14.3301 32 -32v-144h144z\\\" />\\n    <glyph glyph-name=\\\"minus\\\" unicode=\\\"&#xf068;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M416 240c17.6699 0 32 -14.3301 32 -32v-32c0 -17.6699 -14.3301 -32 -32 -32h-384c-17.6699 0 -32 14.3301 -32 32v32c0 17.6699 14.3301 32 32 32h384z\\\" />\\n    <glyph glyph-name=\\\"asterisk\\\" unicode=\\\"&#xf069;\\\" \\nd=\\\"M478.21 113.907c11.7949 -6.47754 15.96 -21.3828 9.23242 -33.0361l-19.4805 -33.7412c-6.72754 -11.6533 -21.7207 -15.499 -33.2266 -8.52246l-138.735 84.1104l3.47559 -162.204c0.288086 -13.4531 -10.5391 -24.5137 -23.9941 -24.5137h-38.9619\\nc-13.4551 0 -24.2822 11.0605 -23.9941 24.5137l3.47461 162.204l-138.735 -84.1113c-11.5059 -6.97656 -26.499 -3.13086 -33.2266 8.52246l-19.4805 33.7412c-6.72852 11.6533 -2.5625 26.5596 9.23242 33.0371l142.21 78.0928l-142.209 78.0918\\nc-11.7949 6.47754 -15.9609 21.3838 -9.2334 33.0371l19.4805 33.7412c6.72754 11.6533 21.7207 15.499 33.2266 8.52246l138.735 -84.1104l-3.47363 162.204c-0.289062 13.4531 10.5381 24.5137 23.9932 24.5137h38.9609c13.4561 0 24.2822 -11.0605 23.9941 -24.5137\\nl-3.47461 -162.204l138.735 84.1113c11.5068 6.97656 26.499 3.13086 33.2266 -8.52246l19.4805 -33.7412c6.72852 -11.6533 2.5625 -26.5596 -9.23242 -33.0371l-142.21 -78.0928z\\\" />\\n    <glyph glyph-name=\\\"exclamation-circle\\\" unicode=\\\"&#xf06a;\\\" \\nd=\\\"M504 192c0 -136.997 -111.043 -248 -248 -248s-248 111.003 -248 248c0 136.917 111.043 248 248 248s248 -111.083 248 -248zM256 142c-25.4053 0 -46 -20.5947 -46 -46s20.5947 -46 46 -46s46 20.5947 46 46s-20.5947 46 -46 46zM212.327 307.346l7.41797 -136\\nc0.34668 -6.36328 5.6084 -11.3457 11.9814 -11.3457h48.5469c6.37305 0 11.6348 4.98242 11.9814 11.3457l7.41797 136c0.375 6.87402 -5.09766 12.6543 -11.9814 12.6543h-63.3838c-6.88379 0 -12.3555 -5.78027 -11.9805 -12.6543z\\\" />\\n    <glyph glyph-name=\\\"gift\\\" unicode=\\\"&#xf06b;\\\" \\nd=\\\"M32 0v128h192v-160h-160c-17.7002 0 -32 14.2998 -32 32zM288 -32v160h192v-128c0 -17.7002 -14.2998 -32 -32 -32h-160zM480 288c17.7002 0 32 -14.2998 32 -32v-80c0 -8.7998 -7.2002 -16 -16 -16h-480c-8.7998 0 -16 7.2002 -16 16v80c0 17.7002 14.2998 32 32 32\\nh44.0996c-6.2998 12.0996 -10.0996 25.5 -10.0996 40c0 48.5 39.5 88 88 88c41.5996 0 68.5 -21.2998 103 -68.2998c34.5 47 61.4004 68.2998 103 68.2998c48.5 0 88 -39.5 88 -88c0 -14.5 -3.90039 -27.9004 -10.0996 -40h42.0996zM153.9 288h86.0996\\nc-51.5 76.7002 -66.2002 80 -86.0996 80c-22.1006 0 -40 -17.9004 -40 -40s17.8994 -40 40 -40zM360 288c22.0996 0 40 17.9004 40 40s-17.9004 40 -40 40c-20.4004 0 -34.7002 -3.5 -86.0996 -80h86.0996z\\\" />\\n    <glyph glyph-name=\\\"leaf\\\" unicode=\\\"&#xf06c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M546.2 438.3c19 -42.3994 29.7998 -94.3994 29.7998 -144.6c0 -172.4 -110.5 -313.2 -267.5 -324.601c-80.9004 -8.59961 -142.5 33.3008 -174.9 77.2002c-51 -42.7002 -70.3994 -87 -71.8994 -90.5996c-6.7998 -16.2002 -25.4004 -24.1006 -41.7998 -17.2998\\nc-16.3008 6.69922 -24.1006 25.2998 -17.5 41.5996c23.5996 57.9004 130.199 212 381.6 212c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16c-130.6 0 -222.7 -38.7998 -286.5 -84.5c-0.700195 6.7998 -1.5 13.5 -1.5 20.5c0 106 86 192 192 192h80\\nc63.4004 0 118.9 33.5996 149.9 87.5c6.69922 11.7998 22.6992 11.2998 28.2998 -1.2002z\\\" />\\n    <glyph glyph-name=\\\"fire\\\" unicode=\\\"&#xf06d;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M216 424.14c0 -103.14 168 -125.85 168 -296.14c0 -105.87 -86.1299 -192 -192 -192s-192 86.1299 -192 192c0 58.6699 27.7998 106.84 54.5703 134.96c14.96 15.7305 41.4297 5.2002 41.4297 -16.5v-85.5098c0 -35.1699 27.9805 -64.4902 63.1504 -64.9404\\nc35.7393 -0.469727 64.8496 28.3604 64.8496 63.9902c0 88 -176 96.1504 -52.1504 277.18c13.5 19.7305 44.1504 10.7607 44.1504 -13.04z\\\" />\\n    <glyph glyph-name=\\\"eye\\\" unicode=\\\"&#xf06e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M572.52 206.6c1.9209 -3.79883 3.47949 -10.3379 3.47949 -14.5947s-1.55859 -10.7959 -3.47949 -14.5947c-54.1992 -105.771 -161.59 -177.41 -284.52 -177.41s-230.29 71.5898 -284.52 177.4c-1.9209 3.79883 -3.47949 10.3379 -3.47949 14.5947\\ns1.55859 10.7959 3.47949 14.5947c54.1992 105.771 161.59 177.41 284.52 177.41s230.29 -71.5898 284.52 -177.4zM288 48h0.0703125c79.4492 0 143.93 64.4805 143.93 143.93v0.0703125c0 79.4883 -64.5117 144 -144 144s-144 -64.5117 -144 -144s64.5117 -144 144 -144z\\nM288 288h0.225586c52.8701 0 95.7803 -42.9092 95.7803 -95.7793c0 -52.8711 -42.9102 -95.7803 -95.7803 -95.7803c-52.8711 0 -95.7803 42.9092 -95.7803 95.7803c0 7.04785 1.49805 18.2871 3.34473 25.0889c6.9834 -5.13867 19.6895 -9.30957 28.3604 -9.30957\\nc26.4131 0 47.8496 21.4365 47.8496 47.8496c0 8.6709 -4.1709 21.377 -9.30957 28.3604c6.84375 1.99219 18.1826 3.69043 25.3096 3.79004z\\\" />\\n    <glyph glyph-name=\\\"eye-slash\\\" unicode=\\\"&#xf070;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M320 48c7.24121 0.0673828 18.8896 1.23633 26 2.61035l51.8896 -40.1504c-25.0195 -6.45996 -50.9795 -10.46 -77.8896 -10.46c-122.93 0 -230.29 71.5898 -284.52 177.4c-1.9209 3.79883 -3.47949 10.3379 -3.47949 14.5947s1.55859 10.7959 3.47949 14.5947\\nc10.2393 20 22.9297 38.29 36.7197 55.5898l104.899 -81.0693c5.65039 -74.4004 67.0508 -133.11 142.9 -133.11zM633.82 -10.0996c3.41309 -2.65234 6.18359 -8.3125 6.18359 -12.6357c0 -3.02734 -1.50684 -7.42383 -3.36426 -9.81445l-19.6396 -25.2705\\nc-2.65234 -3.41211 -8.31152 -6.18262 -12.6338 -6.18262c-3.03125 0 -7.43359 1.51172 -9.82617 3.37305l-588.36 454.729c-3.41016 2.65234 -6.17773 8.31055 -6.17773 12.6309c0 3.0293 1.50879 7.42773 3.36816 9.81934l19.6299 25.2705\\nc2.65234 3.41211 8.31152 6.18262 12.6338 6.18262c3.03125 0 7.43359 -1.51172 9.82617 -3.37305l127.22 -98.3301c38.0117 20.7578 104.011 37.6475 147.32 37.7002c122.93 0 230.29 -71.5898 284.52 -177.4c1.9209 -3.79883 3.47949 -10.3379 3.47949 -14.5947\\ns-1.55859 -10.7959 -3.47949 -14.5947c-16.7666 -32.6758 -53.166 -78.4033 -81.25 -102.07zM450.1 131.9c8.61035 18.3203 13.9004 38.4697 13.9004 60.0996v0.0800781c0 79.4434 -64.4766 143.92 -143.92 143.92h-0.0800781\\nc-28.4697 -0.0214844 -69.3047 -14.8545 -91.1504 -33.1104l73.6104 -56.8896c0.726562 2.71387 1.41602 7.19336 1.54004 10c-0.015625 8.62891 -4.18652 21.2666 -9.30957 28.21c7.17969 2.09668 19.0781 3.79785 26.5576 3.79785\\nc52.3076 0 94.7598 -42.4521 94.7598 -94.7598c0 -0.344727 -0.00292969 -0.90332 -0.0078125 -1.24805c-0.112305 -8.43457 -2.44238 -21.749 -5.2002 -29.7197z\\\" />\\n    <glyph glyph-name=\\\"exclamation-triangle\\\" unicode=\\\"&#xf071;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M569.517 7.9873c18.458 -31.9941 -4.71094 -71.9873 -41.5762 -71.9873h-479.887c-36.9365 0 -59.999 40.0547 -41.5771 71.9873l239.946 416.027c18.4668 32.0098 64.7197 31.9512 83.1543 0zM288 94c-25.4053 0 -46 -20.5947 -46 -46s20.5947 -46 46 -46\\ns46 20.5947 46 46s-20.5947 46 -46 46zM244.327 259.346l7.41797 -136c0.34668 -6.36328 5.6084 -11.3457 11.9814 -11.3457h48.5469c6.37305 0 11.6348 4.98242 11.9814 11.3457l7.41797 136c0.375 6.87402 -5.09766 12.6543 -11.9814 12.6543h-63.3838\\nc-6.88379 0 -12.3555 -5.78027 -11.9805 -12.6543z\\\" />\\n    <glyph glyph-name=\\\"plane\\\" unicode=\\\"&#xf072;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M480 256c35.3496 0 96 -28.6504 96 -64s-60.6504 -64 -96 -64h-114.29l-105.11 -183.94c-2.84961 -4.97949 -8.14941 -8.05957 -13.8896 -8.05957h-65.5c-10.6299 0 -18.2998 10.1797 -15.3799 20.4004l49.0303 171.6h-102.86l-43.2002 -57.5996\\nc-3.01953 -4.03027 -7.75977 -6.40039 -12.7998 -6.40039h-39.9902c-10.4102 0 -18.0498 9.78027 -15.5195 19.8799l31.5098 108.12l-31.5098 108.12c-2.53027 10.0996 5.10938 19.8799 15.5195 19.8799h39.9902c5.03027 0 9.78027 -2.37012 12.7998 -6.40039\\nl43.2002 -57.5996h102.86l-49.0303 171.61c-2.91992 10.2197 4.75 20.3896 15.3799 20.3896h65.5h0.000976562c5.12598 0 11.3525 -3.61133 13.8994 -8.05957l105.1 -183.94h114.29z\\\" />\\n    <glyph glyph-name=\\\"calendar-alt\\\" unicode=\\\"&#xf073;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0 -16v272h448v-272c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48zM320 180v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12zM320 52v-40\\nc0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12zM192 180v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-40\\nc-6.59961 0 -12 -5.40039 -12 -12zM192 52v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12zM64 180v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v40\\nc0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12zM64 52v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12zM400 384c26.5 0 48 -21.5 48 -48v-48h-448v48\\nc0 26.5 21.5 48 48 48h48v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48h128v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48h48z\\\" />\\n    <glyph glyph-name=\\\"random\\\" unicode=\\\"&#xf074;\\\" \\nd=\\\"M504.971 88.9707c9.37305 -9.37305 9.37305 -24.5684 0 -33.9404l-80 -79.9844c-15.0098 -15.0098 -40.9707 -4.49023 -40.9707 16.9707v39.9834h-58.7852c-2.87793 0 -6.80859 1.70801 -8.77246 3.81152l-70.5566 75.5967l53.333 57.1426l52.7812 -56.5508h32v39.9814\\nc0 21.4375 25.9434 31.9971 40.9707 16.9707zM12 272c-6.62695 0 -12 5.37305 -12 12v56c0 6.62695 5.37305 12 12 12h110.785h0.000976562c2.87793 0 6.80762 -1.70801 8.77148 -3.81152l70.5566 -75.5967l-53.333 -57.1426l-52.7812 56.5508h-84zM384 272h-32\\nl-220.442 -236.188c-2.26953 -2.43066 -5.44629 -3.81152 -8.77246 -3.81152h-110.785c-6.62695 0 -12 5.37305 -12 12v56c0 6.62695 5.37305 12 12 12h84l220.442 236.188c1.96387 2.10352 5.89453 3.81152 8.77246 3.81152h58.7852v39.9814\\nc0 21.4365 25.9434 31.9971 40.9707 16.9697l80 -79.9814c9.37305 -9.37207 9.37305 -24.5674 0 -33.9404l-80 -79.9844c-15.0098 -15.0088 -40.9707 -4.48926 -40.9707 16.9707v39.9844z\\\" />\\n    <glyph glyph-name=\\\"comment\\\" unicode=\\\"&#xf075;\\\" \\nd=\\\"M256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-38.4004 0 -74.7002 7.09961 -107.4 19.4004c-24.5996 -19.6006 -74.2998 -51.4004 -140.6 -51.4004c-3.2002 0 -6 1.7998 -7.2998 4.7998s-0.700195 6.40039 1.5 8.7002\\nc0.5 0.5 42.2998 45.4004 54.7998 95.7998c-35.5996 35.7002 -57 81.1006 -57 130.7c0 114.9 114.6 208 256 208z\\\" />\\n    <glyph glyph-name=\\\"magnet\\\" unicode=\\\"&#xf076;\\\" \\nd=\\\"M164.07 299.9h-152.07c-6.62402 0 -12 5.37598 -12 12v80c0 19.8721 16.1279 36 36 36h104c19.8721 0 36 -16.1279 36 -36v-80c0 -0.03125 0.000976562 -0.0800781 0.000976562 -0.110352c0 -6.56348 -5.32715 -11.8896 -11.8906 -11.8896h-0.0400391zM512 311.9\\nc0 -6.56348 -5.32715 -11.9014 -11.8896 -11.9014c-0.0302734 0 -0.0800781 0.000976562 -0.110352 0.000976562h-152c-6.62402 0 -12 5.37598 -12 12v80c0 19.8721 16.1279 36 36 36h104c19.8721 0 36 -16.1279 36 -36v-80.0996zM348 267.9h151.85h0.000976562\\nc6.62402 0 12 -5.37598 12 -12c0 -0.0283203 0 -0.0732422 -0.000976562 -0.100586c-0.199219 -20.2002 -0.599609 -40.3994 0 -53.2002c0 -150.699 -134.42 -246.699 -255 -246.699s-256.75 96 -256.75 246.6c0.600586 13 0.100586 31.9004 0 53.2998v0.100586\\nc0 6.62402 5.37598 12 12 12v0h151.9c6.62402 0 12 -5.37598 12 -12v-52c0 -127.9 160 -128.101 160 0v52c0 6.62402 5.37598 12 12 12z\\\" />\\n    <glyph glyph-name=\\\"chevron-up\\\" unicode=\\\"&#xf077;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M240.971 317.476l194.344 -194.343c9.37207 -9.37305 9.37207 -24.5684 0 -33.9404l-22.667 -22.667c-9.35742 -9.35742 -24.5225 -9.375 -33.9014 -0.0400391l-154.746 154.02l-154.745 -154.021c-9.37891 -9.33496 -24.5439 -9.31738 -33.9014 0.0400391\\nl-22.667 22.667c-9.37207 9.37305 -9.37207 24.5684 0 33.9404l194.344 194.343c9.37207 9.37305 24.5674 9.37305 33.9404 0.000976562z\\\" />\\n    <glyph glyph-name=\\\"chevron-down\\\" unicode=\\\"&#xf078;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M207.029 66.5244l-194.344 194.344c-9.37207 9.37305 -9.37207 24.5684 0 33.9404l22.667 22.667c9.35742 9.35742 24.5225 9.375 33.9014 0.0400391l154.746 -154.021l154.745 154.021c9.37891 9.33496 24.5439 9.31738 33.9014 -0.0400391l22.667 -22.667\\nc9.37207 -9.37305 9.37207 -24.5684 0 -33.9404l-194.343 -194.344c-9.37305 -9.37207 -24.5684 -9.37207 -33.9414 0z\\\" />\\n    <glyph glyph-name=\\\"retweet\\\" unicode=\\\"&#xf079;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M629.657 104.402l-100.687 -100.687c-9.37305 -9.37207 -24.5674 -9.37207 -33.9404 0l-100.688 100.687c-9.37305 9.37305 -9.37305 24.5684 0 33.9404l10.8232 10.8232c9.56152 9.56152 25.1328 9.33984 34.4189 -0.492188l40.415 -42.792v182.118h-187.549\\nc-5.4873 0 -13.0908 3.14941 -16.9707 7.0293l-16 16c-15.1191 15.1201 -4.41113 40.9707 16.9707 40.9707h243.549c13.2549 0 24 -10.7451 24 -24v-222.118l40.416 42.792c9.28516 9.83105 24.8564 10.0537 34.4189 0.492188l10.8232 -10.8232\\nc9.37207 -9.37207 9.37207 -24.5684 -0.000976562 -33.9404zM364.519 88.9707l16.001 -16c15.1191 -15.1201 4.41113 -40.9707 -16.9707 -40.9707h-243.549c-13.2549 0 -24 10.7451 -24 24v222.119l-40.416 -42.793c-9.28613 -9.83105 -24.8574 -10.0527 -34.4189 -0.491211\\nl-10.8223 10.8223c-9.37305 9.37207 -9.37305 24.5674 0 33.9404l100.688 100.687c9.37207 9.37305 24.5674 9.37305 33.9404 0l100.687 -100.686c9.37305 -9.37207 9.37305 -24.5674 0 -33.9404l-10.8223 -10.8223c-9.5625 -9.5625 -25.1328 -9.33984 -34.4189 0.491211\\nl-40.416 42.792v-182.119h187.548h0.000976562c5.4873 0 13.0898 -3.14941 16.9697 -7.0293z\\\" />\\n    <glyph glyph-name=\\\"shopping-cart\\\" unicode=\\\"&#xf07a;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528.12 146.681c-2.4834 -10.9268 -12.1973 -18.6807 -23.4033 -18.6807h-293.145l6.54492 -32h268.418c15.4004 0 26.8154 -14.3008 23.4033 -29.3193l-5.51758 -24.2754c18.6914 -9.07324 31.5791 -28.2334 31.5791 -50.4053c0 -30.9277 -25.0723 -56 -56 -56\\ns-56 25.0723 -56 56c0 15.6738 6.44727 29.835 16.8232 40h-209.647c10.377 -10.165 16.8242 -24.3262 16.8242 -40c0 -30.9277 -25.0723 -56 -56 -56s-56 25.0723 -56 56c0 20.7783 11.3252 38.9004 28.1309 48.5654l-70.248 343.435h-69.8828\\nc-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h102.529c11.4004 0 21.2285 -8.02148 23.5127 -19.1904l9.16602 -44.8096h392.782c15.4004 0 26.8154 -14.3008 23.4023 -29.3193z\\\" />\\n    <glyph glyph-name=\\\"folder\\\" unicode=\\\"&#xf07b;\\\" \\nd=\\\"M464 320c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h160l64 -64h192z\\\" />\\n    <glyph glyph-name=\\\"folder-open\\\" unicode=\\\"&#xf07c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M572.694 155.907l-72.4248 -124.155c-10.2236 -17.5273 -34.9883 -31.752 -55.2793 -31.752h-0.000976562h-399.964c-18.5234 0 -30.0645 20.0928 -20.7314 36.0928l72.4238 124.155c10.2246 17.5273 34.9902 31.752 55.2822 31.752v0h399.964\\nc18.5234 0 30.0645 -20.0928 20.7305 -36.0928zM152 224c-34.0107 0 -65.7861 -18.25 -82.9229 -47.6279l-69.0771 -118.418v278.046c0 26.5098 21.4902 48 48 48h160l64 -64h160c26.5098 0 48 -21.4902 48 -48v-48h-328z\\\" />\\n    <glyph glyph-name=\\\"chart-bar\\\" unicode=\\\"&#xf080;\\\" \\nd=\\\"M332.8 128c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v134.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h38.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-134.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-38.4004zM428.8 128\\nc-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v230.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h38.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-230.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-38.4004zM140.8 128\\nc-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v70.4004c0 6.39941 6.40039 12.7998 12.7998 12.7998h38.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-70.4004c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-38.4004zM236.8 128\\nc-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v198.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h38.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-198.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-38.4004zM496 64c8.83984 0 16 -7.16016 16 -16v-32\\nc0 -8.83984 -7.16016 -16 -16 -16h-464c-17.6699 0 -32 14.3301 -32 32v336c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-304h432z\\\" />\\n    <glyph glyph-name=\\\"camera-retro\\\" unicode=\\\"&#xf083;\\\" \\nd=\\\"M48 416h416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48zM48 384c-8.7998 0 -16 -7.2002 -16 -16v-10c0 -3.2998 2.7002 -6 6 -6h116c3.2998 0 6 2.7002 6 6v20c0 3.2998 -2.7002 6 -6 6h-106z\\nM474 288c3.2998 0 6 2.7002 6 6v74c0 8.7998 -7.2002 16 -16 16h-252.8c-2 0 -3.90039 -1 -5 -2.7002l-30.2002 -45.2998h-138c-3.2998 0 -6 -2.7002 -6 -6v-36c0 -3.2998 2.7002 -6 6 -6h436zM256 24c66.2002 0 120 53.7998 120 120s-53.7998 120 -120 120\\ns-120 -53.7998 -120 -120s53.7998 -120 120 -120zM256 232c48.5 0 88 -39.5 88 -88s-39.5 -88 -88 -88s-88 39.5 -88 88s39.5 88 88 88zM208 128c8.7998 0 16 7.2002 16 16c0 17.5996 14.4004 32 32 32c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16\\nc-35.2998 0 -64 -28.7002 -64 -64c0 -8.7998 7.2002 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"key\\\" unicode=\\\"&#xf084;\\\" \\nd=\\\"M512 271.999c0 -97.2021 -78.7979 -175.999 -176 -175.999c-11.2197 0 -22.1904 1.06152 -32.8271 3.06934l-24.0117 -27.0146c-3.95215 -4.44629 -11.9883 -8.05469 -17.9375 -8.05469h-0.000976562h-37.2227v-40c0 -13.2549 -10.7451 -24 -24 -24h-40v-40\\nc0 -13.2549 -10.7451 -24 -24 -24h-112c-13.2549 0 -24 10.7451 -24 24v78.0586c0 6.36523 2.5293 12.4707 7.0293 16.9717l161.802 161.802c-5.72266 17.3535 -8.83105 35.8965 -8.83105 55.168c0 97.2021 78.7969 175.999 175.999 176\\nc97.4893 0.000976562 176.001 -78.5107 176.001 -176.001zM336 320c0 -26.5098 21.4902 -48 48 -48s48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48z\\\" />\\n    <glyph glyph-name=\\\"cogs\\\" unicode=\\\"&#xf085;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M512.1 257l-8.19922 -14.2998c-3 -5.2998 -9.40039 -7.5 -15.1006 -5.40039c-11.7998 4.40039 -22.5996 10.7002 -32.0996 18.6006c-4.60059 3.7998 -5.7998 10.5 -2.7998 15.6992l8.19922 14.3008c-6.89941 8 -12.2998 17.2998 -15.8994 27.3994h-16.5\\nc-6 0 -11.2002 4.2998 -12.2002 10.2998c-2 12 -2.09961 24.6006 0 37.1006c1 6 6.2002 10.3994 12.2002 10.3994h16.5c3.59961 10.1006 9 19.4004 15.8994 27.4004l-8.19922 14.2998c-3 5.2002 -1.90039 11.9004 2.7998 15.7002\\nc9.5 7.90039 20.3994 14.2002 32.0996 18.5996c5.7002 2.10059 12.1006 -0.0996094 15.1006 -5.39941l8.19922 -14.2998c10.5 1.89941 21.2002 1.89941 31.7002 0l8.2002 14.2998c3 5.2998 9.40039 7.5 15.0996 5.39941c11.8008 -4.39941 22.6006 -10.6992 32.1006 -18.5996\\nc4.59961 -3.7998 5.7998 -10.5 2.7998 -15.7002l-8.2002 -14.2998c6.90039 -8 12.2998 -17.2998 15.9004 -27.4004h16.5c6 0 11.2002 -4.2998 12.2002 -10.2998c2 -12 2.09961 -24.5996 0 -37.0996c-1 -6 -6.2002 -10.4004 -12.2002 -10.4004h-16.5\\nc-3.60059 -10.0996 -9 -19.3994 -15.9004 -27.3994l8.2002 -14.3008c3 -5.19922 1.90039 -11.8994 -2.7998 -15.6992c-9.5 -7.90039 -20.4004 -14.2002 -32.1006 -18.6006c-5.69922 -2.09961 -12.0996 0.100586 -15.0996 5.40039l-8.2002 14.2998\\nc-10.3994 -1.90039 -21.2002 -1.90039 -31.7002 0zM501.6 315.8c38.5 -29.5996 82.4004 14.2998 52.8008 52.7998c-38.5 29.7002 -82.4004 -14.2998 -52.8008 -52.7998zM386.3 161.9l33.7002 -16.8008c10.0996 -5.7998 14.5 -18.0996 10.5 -29.0996\\nc-8.90039 -24.2002 -26.4004 -46.4004 -42.5996 -65.7998c-7.40039 -8.90039 -20.2002 -11.1006 -30.3008 -5.2998l-29.0996 16.7998c-16 -13.7002 -34.5996 -24.6006 -54.9004 -31.7002v-33.5996c0 -11.6006 -8.2998 -21.6006 -19.6992 -23.6006\\nc-24.6006 -4.2002 -50.4004 -4.39941 -75.9004 0c-11.5 2 -20 11.9004 -20 23.6006v33.5996c-20.2998 7.2002 -38.9004 18 -54.9004 31.7002l-29.0996 -16.7002c-10 -5.7998 -22.9004 -3.59961 -30.2998 5.2998c-16.2002 19.4004 -33.2998 41.6006 -42.2002 65.7002\\nc-4 10.9004 0.400391 23.2002 10.5 29.0996l33.2998 16.8008c-3.89941 20.8994 -3.89941 42.3994 0 63.3994l-33.2998 16.9004c-10.0996 5.7998 -14.5996 18.0996 -10.5 29c8.90039 24.2002 26 46.3994 42.2002 65.7998c7.39941 8.90039 20.2002 11.0996 30.2998 5.2998\\nl29.0996 -16.7998c16 13.7002 34.6006 24.5996 54.9004 31.7002v33.7002c0 11.5 8.2002 21.5 19.5996 23.5c24.6006 4.19922 50.5 4.39941 76 0.0996094c11.5 -2 20 -11.9004 20 -23.5996v-33.6006c20.3008 -7.2002 38.9004 -18 54.9004 -31.7002l29.0996 16.8008\\nc10 5.7998 22.9004 3.59961 30.3008 -5.30078c16.1992 -19.3994 33.1992 -41.5996 42.0996 -65.7998c4 -10.8994 0.0996094 -23.2002 -10 -29.0996l-33.7002 -16.7998c3.90039 -21 3.90039 -42.5 0 -63.5zM268.7 140.8c59.2002 77 -28.7002 164.9 -105.7 105.7\\nc-59.2002 -77 28.7002 -164.9 105.7 -105.7zM512.1 -41.9004l-8.19922 -14.2998c-3 -5.2998 -9.40039 -7.5 -15.1006 -5.39941c-11.7998 4.39941 -22.5996 10.6992 -32.0996 18.5996c-4.60059 3.7998 -5.7998 10.5 -2.7998 15.7002l8.19922 14.2998\\nc-6.89941 8 -12.2998 17.2998 -15.8994 27.4004h-16.5c-6 0 -11.2002 4.2998 -12.2002 10.2998c-2 12 -2.09961 24.5996 0 37.0996c1 6 6.2002 10.4004 12.2002 10.4004h16.5c3.59961 10.0996 9 19.3994 15.8994 27.3994l-8.19922 14.3008\\nc-3 5.19922 -1.90039 11.8994 2.7998 15.6992c9.5 7.90039 20.3994 14.2002 32.0996 18.6006c5.7002 2.09961 12.1006 -0.100586 15.1006 -5.40039l8.19922 -14.2998c10.5 1.90039 21.2002 1.90039 31.7002 0l8.2002 14.2998c3 5.2998 9.40039 7.5 15.0996 5.40039\\nc11.8008 -4.40039 22.6006 -10.7002 32.1006 -18.6006c4.59961 -3.7998 5.7998 -10.5 2.7998 -15.6992l-8.2002 -14.3008c6.90039 -8 12.2998 -17.2998 15.9004 -27.3994h16.5c6 0 11.2002 -4.2998 12.2002 -10.2998c2 -12 2.09961 -24.6006 0 -37.1006\\nc-1 -6 -6.2002 -10.3994 -12.2002 -10.3994h-16.5c-3.60059 -10.1006 -9 -19.4004 -15.9004 -27.4004l8.2002 -14.2998c3 -5.2002 1.90039 -11.9004 -2.7998 -15.7002c-9.5 -7.90039 -20.4004 -14.2002 -32.1006 -18.5996\\nc-5.69922 -2.10059 -12.0996 0.0996094 -15.0996 5.39941l-8.2002 14.2998c-10.3994 -1.89941 -21.2002 -1.89941 -31.7002 0zM501.6 17c38.5 -29.5996 82.4004 14.2998 52.8008 52.7998c-38.5 29.6006 -82.4004 -14.2998 -52.8008 -52.7998z\\\" />\\n    <glyph glyph-name=\\\"comments\\\" unicode=\\\"&#xf086;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M416 256c0 -88.4004 -93.0996 -160 -208 -160c-41 0 -79.0996 9.2998 -111.3 25c-21.7998 -12.7002 -52.1006 -25 -88.7002 -25c-3.2002 0 -6 1.7998 -7.2998 4.7998s-0.700195 6.40039 1.5 8.7002c0.299805 0.299805 22.3994 24.2998 35.7998 54.5\\nc-23.9004 26.0996 -38 57.7002 -38 92c0 88.4004 93.0996 160 208 160s208 -71.5996 208 -160zM538 36c13.4004 -30.2998 35.5 -54.2002 35.7998 -54.5c2.2002 -2.40039 2.7998 -5.7998 1.5 -8.7002c-1.2002 -2.89941 -4.09961 -4.7998 -7.2998 -4.7998\\nc-36.5996 0 -66.9004 12.2998 -88.7002 25c-32.2002 -15.7998 -70.2998 -25 -111.3 -25c-86.2002 0 -160.2 40.4004 -191.7 97.9004c10.4004 -1.10059 20.9004 -1.90039 31.7002 -1.90039c132.3 0 240 86.0996 240 192c0 6.7998 -0.400391 13.5 -1.2998 20.0996\\nc75.7998 -23.8994 129.3 -81.1992 129.3 -148.1c0 -34.2998 -14.0996 -66 -38 -92z\\\" />\\n    <glyph glyph-name=\\\"star-half\\\" unicode=\\\"&#xf089;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 448v-439.6l-130.7 -68.6006c-23.3994 -12.2998 -50.8994 7.60059 -46.3994 33.7002l25 145.5l-105.7 103c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2002l65.2998 132.4c5.90039 11.8994 17.2998 17.7998 28.7002 17.7998z\\\" />\\n    <glyph glyph-name=\\\"thumbtack\\\" unicode=\\\"&#xf08d;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M298.028 233.733c47.9893 -22.3135 85.9717 -62.5508 85.9727 -113.733c0 -13.2549 -10.7451 -24 -24 -24h-136v-104.007c0 -1.04297 -0.378906 -2.64551 -0.844727 -3.57812l-24 -48c-2.94727 -5.89258 -11.3701 -5.88184 -14.3115 0l-24 48\\nc-0.555664 1.11133 -0.844727 2.33594 -0.844727 3.57812v104.007h-136c-13.2549 0 -24 10.7451 -24 24c0 50.7393 37.4648 91.1797 85.9717 113.733l12.2354 118.267h-42.207c-13.2549 0 -24 10.7451 -24 24v48c0 13.2549 10.7451 24 24 24h272\\nc13.2549 0 24 -10.7451 24 -24v-48c0 -13.2549 -10.7451 -24 -24 -24h-42.207z\\\" />\\n    <glyph glyph-name=\\\"trophy\\\" unicode=\\\"&#xf091;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M552 384c13.2998 0 24 -10.7002 24 -24v-56c0 -35.7002 -22.5996 -72.4004 -61.9004 -100.7c-31.3994 -22.7002 -69.6992 -37.0996 -110 -41.7002c-31.3994 -52.0996 -68.0996 -73.5996 -68.0996 -73.5996v-72h48c35.2998 0 64 -20.7002 64 -56v-12\\nc0 -6.59961 -5.40039 -12 -12 -12h-296c-6.59961 0 -12 5.40039 -12 12v12c0 35.2998 28.7002 56 64 56h48v72s-36.7002 21.5 -68.0996 73.5996c-40.2002 4.60059 -78.5 19 -110 41.7002c-39.4004 28.2998 -61.9004 65 -61.9004 100.7v56c0 13.2998 10.7002 24 24 24h104v40\\nc0 13.2998 10.7002 24 24 24h272c13.2998 0 24 -10.7002 24 -24v-40h104zM99.2998 255.2c12.5 -9 26.6006 -16.2002 41.7002 -21.4004c-7 25 -11.7998 53.6006 -12.7998 86.2002h-64.2002v-16c0 -11.5996 10.9004 -31.2002 35.2998 -48.7998zM512 304v16h-64.2998\\nc-1 -32.5996 -5.7998 -61.2002 -12.7998 -86.2002c15.0996 5.2002 29.2998 12.4004 41.7998 21.4004c17.5996 12.7002 35.2998 32.7002 35.2998 48.7998z\\\" />\\n    <glyph glyph-name=\\\"upload\\\" unicode=\\\"&#xf093;\\\" \\nd=\\\"M296 64h-80c-13.2998 0 -24 10.7002 -24 24v168h-87.7002c-17.7998 0 -26.7002 21.5 -14.0996 34.0996l152.1 152.2c7.5 7.5 19.7998 7.5 27.2998 0l152.2 -152.2c12.6006 -12.5996 3.7002 -34.0996 -14.0996 -34.0996h-87.7002v-168c0 -13.2998 -10.7002 -24 -24 -24z\\nM512 72v-112c0 -13.2998 -10.7002 -24 -24 -24h-464c-13.2998 0 -24 10.7002 -24 24v112c0 13.2998 10.7002 24 24 24h136v-8c0 -30.9004 25.0996 -56 56 -56h80c30.9004 0 56 25.0996 56 56v8h136c13.2998 0 24 -10.7002 24 -24zM388 -16c0 11 -9 20 -20 20s-20 -9 -20 -20\\ns9 -20 20 -20s20 9 20 20zM452 -16c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20z\\\" />\\n    <glyph glyph-name=\\\"lemon\\\" unicode=\\\"&#xf094;\\\" \\nd=\\\"M489.038 425.037c23.0938 -23.0938 28.8916 -54.3906 16.833 -75.0928c-34.3115 -58.9043 53.0762 -181.249 -86.7461 -321.071s-262.167 -52.4326 -321.068 -86.7432c-20.7031 -12.0586 -52 -6.2627 -75.0947 16.832c-23.0928 23.0938 -28.8916 54.3906 -16.833 75.0928\\nc34.3125 58.9043 -53.0781 181.247 86.7451 321.07s262.167 52.4336 321.073 86.7461c20.7012 12.0586 51.9971 6.25879 75.0908 -16.834zM243.881 352.478c8.57227 2.14355 13.7832 10.8291 11.6416 19.4023c-2.14258 8.57324 -10.8281 13.7852 -19.4033 11.6426\\nc-69.8027 -17.4521 -154.218 -101.949 -171.643 -171.643c-2.1416 -8.57324 3.07031 -17.2588 11.6426 -19.4033c1.30273 -0.324219 2.6084 -0.480469 3.89258 -0.480469c7.16895 0 13.6943 4.85352 15.5117 12.124c14.5498 58.2031 90.1689 133.811 148.357 148.357z\\\" />\\n    <glyph glyph-name=\\\"phone\\\" unicode=\\\"&#xf095;\\\" \\nd=\\\"M493.4 423.4c10.8994 -2.5 18.5996 -12.2002 18.5996 -23.4004c0 -256.5 -207.9 -464 -464 -464c-11.2998 0 -20.9004 7.7998 -23.4004 18.5996l-24 104c-2.59961 11.3008 3.30078 22.9004 14 27.6006l112 48c9.80078 4.2002 21.2002 1.39941 28 -6.90039\\nl49.6006 -60.5996c78.2998 36.7002 141.2 100.5 177.2 177.2l-60.6006 49.5996c-8.2998 6.7002 -11.0996 18.2002 -6.89941 28l48 112c4.59961 10.5996 16.1992 16.5 27.5 13.9004z\\\" />\\n    <glyph glyph-name=\\\"phone-square\\\" unicode=\\\"&#xf098;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352zM94 32c160.055 0 290 129.708 290 290v0c0 6.58691 -5.20898 13.1338 -11.6279 14.6143l-65 14.998\\nc-0.918945 0.211914 -2.42969 0.383789 -3.37305 0.383789c-5.45996 0 -11.6367 -4.07324 -13.7871 -9.09082l-30 -69.998c-0.668945 -1.5625 -1.21191 -4.20898 -1.21191 -5.9082c0 -3.92383 2.46387 -9.125 5.50098 -11.6104l37.8857 -30.9971\\nc-22.4834 -47.9219 -61.8369 -87.8164 -110.78 -110.779l-30.9971 37.8848c-2.48535 3.03711 -7.68652 5.50195 -11.6104 5.50195c-1.69922 0 -4.3457 -0.543945 -5.9082 -1.21289l-69.998 -29.999c-5.01855 -2.15039 -9.09082 -8.32715 -9.09082 -13.7871\\nc0 -0.943359 0.171875 -2.4541 0.383789 -3.37305l14.998 -65c1.55957 -6.75391 7.58301 -11.627 14.6162 -11.627z\\\" />\\n    <glyph glyph-name=\\\"unlock\\\" unicode=\\\"&#xf09c;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 192c26.5 0 48 -21.5 48 -48v-160c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v160c0 26.5 21.5 48 48 48h24v102.5c0 84 67.5 153.2 151.5 153.5s152.5 -68 152.5 -152v-16c0 -13.2998 -10.7002 -24 -24 -24h-32c-13.2998 0 -24 10.7002 -24 24v16\\nc0 39.9004 -32.7002 72.4004 -72.7002 72c-39.5996 -0.400391 -71.2998 -33.2998 -71.2998 -72.9004v-103.1h248z\\\" />\\n    <glyph glyph-name=\\\"credit-card\\\" unicode=\\\"&#xf09d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M0 16v176h576v-176c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48zM192 84v-40c0 -6.59961 5.40039 -12 12 -12h136c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-136c-6.59961 0 -12 -5.40039 -12 -12zM64 84v-40\\nc0 -6.59961 5.40039 -12 12 -12h72c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-72c-6.59961 0 -12 -5.40039 -12 -12zM576 368v-48h-576v48c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48z\\\" />\\n    <glyph glyph-name=\\\"rss\\\" unicode=\\\"&#xf09e;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M128.081 32.041c0 -35.3691 -28.6719 -64.041 -64.041 -64.041s-64.04 28.6719 -64.04 64.041s28.6719 64.041 64.041 64.041s64.04 -28.6729 64.04 -64.041zM303.741 -15.209c0.494141 -9.13477 -6.84668 -16.791 -15.9951 -16.79h-48.0693\\nc-8.41406 0 -15.4707 6.49023 -16.0176 14.8867c-7.29883 112.07 -96.9404 201.488 -208.772 208.772c-8.39648 0.545898 -14.8867 7.60254 -14.8867 16.0176v48.0693c0 9.14746 7.65625 16.4883 16.791 15.9941c154.765 -8.36328 278.596 -132.351 286.95 -286.95z\\nM447.99 -15.4971c0.324219 -9.03027 -6.97168 -16.5029 -16.0049 -16.5039h-48.0684c-8.62598 0 -15.6455 6.83496 -15.999 15.4531c-7.83789 191.148 -161.286 344.626 -352.465 352.465c-8.61816 0.354492 -15.4531 7.37402 -15.4531 15.999v48.0684\\nc0 9.03418 7.47266 16.3301 16.5029 16.0059c234.962 -8.43555 423.093 -197.667 431.487 -431.487z\\\" />\\n    <glyph glyph-name=\\\"hdd\\\" unicode=\\\"&#xf0a0;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M576 144v-96c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v96c0 26.5098 21.4902 48 48 48h480c26.5098 0 48 -21.4902 48 -48zM528 224h-480h-0.0693359c-8.81738 0 -22.5742 -2.76172 -30.708 -6.16504l96.5283 144.791\\nc7.86621 11.7988 25.7578 21.374 39.9385 21.374h268.621c14.1807 0 32.0732 -9.57617 39.9395 -21.374l96.5273 -144.791c-8.13379 3.40332 -21.8906 6.16504 -30.708 6.16504h-0.0693359zM480 128c-17.6729 0 -32 -14.3271 -32 -32s14.3271 -32 32 -32s32 14.3271 32 32\\ns-14.3271 32 -32 32zM384 128c-17.6729 0 -32 -14.3271 -32 -32s14.3271 -32 32 -32s32 14.3271 32 32s-14.3271 32 -32 32z\\\" />\\n    <glyph glyph-name=\\\"bullhorn\\\" unicode=\\\"&#xf0a1;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M576 208c0 -23.6299 -12.9502 -44.04 -32.0098 -55.1299v-152.87c0 -9.21973 -7.08008 -32 -32 -32c-6.19336 0.00585938 -15.1445 3.15039 -19.9805 7.01953l-85.0293 68.0303c-42.7002 34.1406 -96.3203 52.9502 -150.98 52.9502h-28.0801\\nc-2.79004 -10.21 -4.41016 -20.8896 -4.41016 -32c0 -29.0801 9.75 -55.9199 26.1504 -77.4404c15.79 -20.7197 0.149414 -50.5596 -25.9004 -50.5596h-74.2793c-11.8809 0 -23.2109 6.37012 -28.4004 17.0596c-16.2998 33.5908 -25.5605 71.1709 -25.5605 110.94\\nc0 10.8604 0.790039 21.5195 2.18066 32h-33.7002c-35.3496 0 -64 28.6504 -64 64v96c0 35.3496 28.6504 64 64 64h192c54.6602 0 108.28 18.8096 150.99 52.9502l85.0293 68.0303c5.79004 4.63965 12.8604 7.01953 19.9805 7.01953c25.0195 0 32 -23.2598 32 -32.0098\\nv-152.87c19.0498 -11.0801 32 -31.4902 32 -55.1201zM480 66.5801v282.84l-33.0498 -26.4395c-54 -43.2002 -121.83 -66.9805 -190.95 -66.9805v-96c69.1201 0 136.95 -23.7803 190.95 -66.9805z\\\" />\\n    <glyph glyph-name=\\\"certificate\\\" unicode=\\\"&#xf0a3;\\\" \\nd=\\\"M458.622 192.08l45.9844 -45.0039c13.7012 -12.9727 7.32227 -36.0371 -10.6641 -40.3389l-62.6504 -15.9902l17.6611 -62.0146c4.99023 -17.834 -11.8252 -34.665 -29.6611 -29.6719l-61.9941 17.667l-15.9834 -62.6709\\nc-4.33887 -18.1533 -27.8252 -24.1553 -40.3252 -10.668l-44.9893 46.001l-44.9912 -46.001c-12.6289 -13.3496 -35.8857 -7.90625 -40.3252 10.668l-15.9834 62.6709l-61.9941 -17.667c-17.832 -4.99121 -34.6523 11.833 -29.6611 29.6719l17.6611 62.0146\\nl-62.6504 15.9902c-17.9795 4.2998 -24.3721 27.3613 -10.6641 40.3389l45.9854 45.0039l-45.9854 45.0049c-13.7012 12.9707 -7.32227 36.0371 10.665 40.3379l62.6504 15.9902l-17.6611 62.0146c-4.99023 17.834 11.8242 34.665 29.6611 29.6709l61.9951 -17.667\\nl15.9834 62.6709c4.27832 17.9023 27.6953 24.0195 40.3252 10.6689l44.9893 -46.3418l44.9902 46.3428c12.7744 13.5039 36.0947 7.03027 40.3252 -10.6689l15.9834 -62.6709l61.9941 17.667c17.832 4.99219 34.6523 -11.833 29.6611 -29.6709l-17.6611 -62.0146\\nl62.6504 -15.9902c17.9795 -4.2998 24.3721 -27.3623 10.6641 -40.3389z\\\" />\\n    <glyph glyph-name=\\\"hand-point-right\\\" unicode=\\\"&#xf0a4;\\\" \\nd=\\\"M512 248.348c0 -23.625 -20.6504 -43.8252 -44.7998 -43.8252h-99.8516c16.3408 -17.0488 18.3467 -49.7666 -6.29883 -70.9443c14.2881 -22.8291 2.14746 -53.0176 -16.4502 -62.3154c8.97461 -49.1406 -21.9453 -71.2627 -72.5996 -71.2627\\nc-2.74609 0 -13.2764 0.203125 -16 0.195312c-61.9707 -0.167969 -76.8936 31.0645 -123.731 38.3145c-11.6729 1.80762 -20.2686 11.8916 -20.2686 23.7041v171.525l0.00195312 0.000976562c0.0107422 18.3662 10.6074 35.8887 28.4639 43.8447\\nc28.8857 12.9941 95.4131 49.0381 107.534 77.3232c7.79688 18.1934 21.3838 29.084 40 29.0918c34.2217 0.0136719 57.752 -35.0977 44.1191 -66.9082c-3.58301 -8.3584 -8.3125 -16.6699 -14.1533 -24.918h149.234c23.4502 0 44.7998 -20.543 44.7998 -43.8262zM96 248\\nv-192c0 -13.2549 -10.7451 -24 -24 -24h-48c-13.2549 0 -24 10.7451 -24 24v192c0 13.2549 10.7451 24 24 24h48c13.2549 0 24 -10.7451 24 -24zM68 80c0 11.0459 -8.9541 20 -20 20s-20 -8.9541 -20 -20s8.9541 -20 20 -20s20 8.9541 20 20z\\\" />\\n    <glyph glyph-name=\\\"hand-point-left\\\" unicode=\\\"&#xf0a5;\\\" \\nd=\\\"M44.7998 292.174h149.234c-5.84082 8.24805 -10.5703 16.5586 -14.1533 24.918c-13.6328 31.8105 9.89746 66.9219 44.1191 66.9082c18.6162 -0.0078125 32.2031 -10.8975 40 -29.0918c12.1221 -28.2861 78.6484 -64.3291 107.534 -77.3232\\nc17.8564 -7.95605 28.4531 -25.4785 28.4639 -43.8447l0.00195312 -0.000976562v-171.526c0 -11.8115 -8.5957 -21.8965 -20.2686 -23.7031c-46.8379 -7.25 -61.7607 -38.4824 -123.731 -38.3145c-2.72363 0.00683594 -13.2539 -0.195312 -16 -0.195312\\nc-50.6543 0 -81.5742 22.1221 -72.5996 71.2627c-18.5977 9.29688 -30.7383 39.4863 -16.4502 62.3154c-24.6455 21.1768 -22.6396 53.8955 -6.29883 70.9443h-99.8516c-24.1494 0 -44.7998 20.2002 -44.7998 43.8252c0 23.2832 21.3496 43.8262 44.7998 43.8262zM440 272\\nh48c13.2549 0 24 -10.7451 24 -24v-192c0 -13.2549 -10.7451 -24 -24 -24h-48c-13.2549 0 -24 10.7451 -24 24v192c0 13.2549 10.7451 24 24 24zM464 60c11.0459 0 20 8.9541 20 20s-8.9541 20 -20 20s-20 -8.9541 -20 -20s8.9541 -20 20 -20z\\\" />\\n    <glyph glyph-name=\\\"hand-point-up\\\" unicode=\\\"&#xf0a6;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M135.652 448c23.625 0 43.8252 -20.6504 43.8252 -44.7998v-99.8516c17.0488 16.3408 49.7666 18.3467 70.9443 -6.29883c22.8291 14.2881 53.0176 2.14746 62.3154 -16.4502c49.1406 8.97461 71.2627 -21.9453 71.2627 -72.5996\\nc0 -2.74609 -0.203125 -13.2764 -0.195312 -16c0.167969 -61.9707 -31.0645 -76.8936 -38.3145 -123.731c-1.80762 -11.6729 -11.8916 -20.2686 -23.7041 -20.2686h-171.525l-0.000976562 0.00195312c-18.3662 0.0107422 -35.8887 10.6074 -43.8447 28.4639\\nc-12.9941 28.8857 -49.0381 95.4121 -77.3232 107.534c-18.1943 7.79688 -29.084 21.3838 -29.0918 40c-0.0136719 34.2217 35.0977 57.752 66.9082 44.1191c8.3584 -3.58301 16.6699 -8.3125 24.918 -14.1533v149.234c0 23.4502 20.543 44.7998 43.8262 44.7998zM136 32\\nh192c13.2549 0 24 -10.7451 24 -24v-48c0 -13.2549 -10.7451 -24 -24 -24h-192c-13.2549 0 -24 10.7451 -24 24v48c0 13.2549 10.7451 24 24 24zM304 4c-11.0459 0 -20 -8.9541 -20 -20s8.9541 -20 20 -20s20 8.9541 20 20s-8.9541 20 -20 20z\\\" />\\n    <glyph glyph-name=\\\"hand-point-down\\\" unicode=\\\"&#xf0a7;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M91.8262 -19.2002v149.234c-8.24805 -5.84082 -16.5586 -10.5703 -24.918 -14.1533c-31.8105 -13.6328 -66.9219 9.89746 -66.9082 44.1191c0.0078125 18.6162 10.8975 32.2031 29.0918 40c28.2861 12.1221 64.3291 78.6484 77.3232 107.534\\nc7.95605 17.8564 25.4785 28.4531 43.8447 28.4639l0.000976562 0.00195312h171.526c11.8115 0 21.8965 -8.5957 23.7031 -20.2686c7.25 -46.8379 38.4824 -61.7607 38.3145 -123.731c-0.00683594 -2.72363 0.195312 -13.2539 0.195312 -16\\nc0 -50.6543 -22.1221 -81.5742 -71.2627 -72.5996c-9.29688 -18.5977 -39.4863 -30.7383 -62.3154 -16.4502c-21.1768 -24.6455 -53.8955 -22.6396 -70.9443 -6.29883v-99.8516c0 -24.1494 -20.2002 -44.7998 -43.8252 -44.7998\\nc-23.2832 0 -43.8262 21.3496 -43.8262 44.7998zM112 376v48c0 13.2549 10.7451 24 24 24h192c13.2549 0 24 -10.7451 24 -24v-48c0 -13.2549 -10.7451 -24 -24 -24h-192c-13.2549 0 -24 10.7451 -24 24zM324 400c0 11.0459 -8.9541 20 -20 20s-20 -8.9541 -20 -20\\ns8.9541 -20 20 -20s20 8.9541 20 20z\\\" />\\n    <glyph glyph-name=\\\"arrow-circle-left\\\" unicode=\\\"&#xf0a8;\\\" \\nd=\\\"M256 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM284.9 87.5996l-75.5 72.4004h182.6c13.2998 0 24 10.7002 24 24v16c0 13.2998 -10.7002 24 -24 24h-182.6l75.5 72.4004c9.69922 9.2998 9.89941 24.7998 0.399414 34.2998\\nl-11 10.8994c-9.39941 9.40039 -24.5996 9.40039 -33.8994 0l-132.7 -132.6c-9.40039 -9.40039 -9.40039 -24.5996 0 -33.9004l132.7 -132.699c9.39941 -9.40039 24.5996 -9.40039 33.8994 0l11 10.8994c9.5 9.5 9.2998 25 -0.399414 34.2998z\\\" />\\n    <glyph glyph-name=\\\"arrow-circle-right\\\" unicode=\\\"&#xf0a9;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM227.1 296.4l75.5 -72.4004h-182.6c-13.2998 0 -24 -10.7002 -24 -24v-16c0 -13.2998 10.7002 -24 24 -24h182.6l-75.5 -72.4004\\nc-9.69922 -9.2998 -9.89941 -24.7998 -0.399414 -34.2998l11 -10.8994c9.39941 -9.40039 24.5996 -9.40039 33.8994 0l132.7 132.6c9.40039 9.40039 9.40039 24.5996 0 33.9004l-132.7 132.8c-9.39941 9.39941 -24.5996 9.39941 -33.8994 0l-11 -10.9004\\nc-9.5 -9.59961 -9.2998 -25.0996 0.399414 -34.3994z\\\" />\\n    <glyph glyph-name=\\\"arrow-circle-up\\\" unicode=\\\"&#xf0aa;\\\" \\nd=\\\"M8 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM151.6 163.1l72.4004 75.5v-182.6c0 -13.2998 10.7002 -24 24 -24h16c13.2998 0 24 10.7002 24 24v182.6l72.4004 -75.5c9.2998 -9.69922 24.7998 -9.89941 34.2998 -0.399414\\nl10.8994 11c9.40039 9.39941 9.40039 24.5996 0 33.8994l-132.6 132.7c-9.40039 9.40039 -24.5996 9.40039 -33.9004 0l-132.8 -132.7c-9.39941 -9.39941 -9.39941 -24.5996 0 -33.8994l10.9004 -11c9.59961 -9.5 25.0996 -9.2998 34.3994 0.399414z\\\" />\\n    <glyph glyph-name=\\\"arrow-circle-down\\\" unicode=\\\"&#xf0ab;\\\" \\nd=\\\"M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM360.4 220.9l-72.4004 -75.5v182.6c0 13.2998 -10.7002 24 -24 24h-16c-13.2998 0 -24 -10.7002 -24 -24v-182.6l-72.4004 75.5\\nc-9.2998 9.69922 -24.7998 9.89941 -34.2998 0.399414l-10.8994 -11c-9.40039 -9.39941 -9.40039 -24.5996 0 -33.8994l132.6 -132.7c9.40039 -9.40039 24.5996 -9.40039 33.9004 0l132.699 132.7c9.40039 9.39941 9.40039 24.5996 0 33.8994l-10.8994 11\\nc-9.5 9.5 -25 9.2998 -34.2998 -0.399414z\\\" />\\n    <glyph glyph-name=\\\"globe\\\" unicode=\\\"&#xf0ac;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M336.5 288h-177c14.5 89.2998 48.7002 152 88.5 152s74 -62.7002 88.5 -152zM152 192c0 22.2002 1.2002 43.5 3.2998 64h185.3c2.10059 -20.5 3.30078 -41.7998 3.30078 -64s-1.2002 -43.5 -3.30078 -64h-185.3c-2.09961 20.5 -3.2998 41.7998 -3.2998 64zM476.7 288\\nh-108c-8.7998 56.9004 -25.6006 107.8 -50 141.6c71.5 -21.1992 129.399 -73.6992 158 -141.6zM177.2 429.6c-24.4004 -33.7998 -41.2002 -84.6992 -49.9004 -141.6h-108c28.5 67.9004 86.5 120.4 157.9 141.6zM487.4 256c5.39941 -20.5 8.5 -41.7998 8.5 -64\\ns-3.10059 -43.5 -8.60059 -64h-114.6c2.09961 21 3.2998 42.5 3.2998 64s-1.2002 43 -3.2998 64h114.7zM120 192c0 -21.5 1.2002 -43 3.2002 -64h-114.601c-5.39941 20.5 -8.59961 41.7998 -8.59961 64s3.2002 43.5 8.59961 64h114.7\\nc-2.09961 -21 -3.2998 -42.5 -3.2998 -64zM159.5 96h177c-14.5 -89.2998 -48.7002 -152 -88.5 -152s-74 62.7002 -88.5 152zM318.8 -45.5996c24.4004 33.7998 41.2002 84.6992 50 141.6h108c-28.5996 -67.9004 -86.5996 -120.4 -158 -141.6zM19.2998 96h108\\nc8.7998 -56.9004 25.6006 -107.8 50 -141.6c-71.5 21.1992 -129.399 73.6992 -158 141.6z\\\" />\\n    <glyph glyph-name=\\\"wrench\\\" unicode=\\\"&#xf0ad;\\\" \\nd=\\\"M507.73 338.9c11.7891 -47.4102 -0.84082 -99.6602 -37.9102 -136.73c-39.9004 -39.9004 -97.25 -50.9297 -147.37 -34.2197l-213.21 -213.21c-24.9902 -24.9902 -65.5098 -24.9902 -90.5 0s-24.9902 65.5098 0 90.5l213.39 213.39\\nc-16.5 50.1006 -5.58984 107.561 34.0498 147.2c37.0303 37.0195 89.2002 49.6699 136.58 37.9297c9.08984 -2.25977 12.2803 -13.54 5.66016 -20.1602l-74.3604 -74.3594l11.3105 -67.8799l67.8799 -11.3105l74.3604 74.3604\\nc6.58008 6.58008 17.8799 3.51953 20.1201 -5.50977zM64 -24c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"tasks\\\" unicode=\\\"&#xf0ae;\\\" \\nd=\\\"M139.61 412.5l17 -16.5c1.90234 -1.94531 3.44727 -5.7334 3.44727 -8.4541c0 -2.7627 -1.58496 -6.5918 -3.53809 -8.5459l-72.1992 -72.1904l-15.5898 -15.6191c-2.04297 -1.94238 -5.9873 -3.51758 -8.80566 -3.51758c-2.81738 0 -6.7627 1.5752 -8.80469 3.51758\\nl-47.5898 47.3994c-1.94824 1.94141 -3.5293 5.75 -3.5293 8.5c0 2.75098 1.58105 6.55859 3.5293 8.5l15.7002 15.7197c1.94141 1.94824 5.74902 3.53027 8.5 3.53027c2.75 0 6.55762 -1.58203 8.5 -3.53027l22.6992 -22.1191l63.6807 63.3096\\nc1.94141 1.94824 5.74902 3.5293 8.5 3.5293c2.75 0 6.55859 -1.58105 8.5 -3.5293zM139.61 253.31l16.9795 -17c1.89648 -1.93164 3.43457 -5.69727 3.43457 -8.4043c0 -2.74805 -1.5791 -6.55371 -3.52441 -8.49512l-72.2002 -72.2197l-15.7002 -15.6904\\nc-2.04102 -1.94141 -5.9834 -3.5166 -8.7998 -3.5166s-6.75879 1.5752 -8.7998 3.5166l-47.4697 47.5c-1.94824 1.94141 -3.5293 5.74902 -3.5293 8.5s1.58105 6.55859 3.5293 8.5l15.7002 15.6904c1.94141 1.94824 5.74902 3.5293 8.5 3.5293\\nc2.75 0 6.55762 -1.58105 8.5 -3.5293l22.6992 -22.1006l63.6807 63.7197c1.94141 1.94824 5.74902 3.53027 8.5 3.53027c2.75 0 6.55859 -1.58203 8.5 -3.53027zM64 80c26.4961 0 48 -21.5039 48 -48s-21.5039 -48 -48 -48c-26.4697 0 -48.5898 21.5 -48.5898 48\\ns22.0996 48 48.5898 48zM496 64c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-288c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h288zM496 384c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-288\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h288zM496 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-288c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h288z\\\" />\\n    <glyph glyph-name=\\\"filter\\\" unicode=\\\"&#xf0b0;\\\" \\nd=\\\"M487.976 448c21.3623 0 32.0459 -25.8965 16.9717 -40.9707l-184.947 -184.971v-262.039c0 -19.5127 -21.9805 -30.71 -37.7627 -19.6611l-80 55.9795c-6.41602 4.49219 -10.2373 11.8311 -10.2373 19.6621v206.059l-184.942 184.971\\nc-15.1045 15.1045 -4.34766 40.9707 16.9707 40.9707h463.947z\\\" />\\n    <glyph glyph-name=\\\"briefcase\\\" unicode=\\\"&#xf0b1;\\\" \\nd=\\\"M320 112v48h192v-144c0 -25.5996 -22.4004 -48 -48 -48h-416c-25.5996 0 -48 22.4004 -48 48v144h192v-48c0 -8.83984 7.16016 -16 16 -16h96c8.83984 0 16 7.16016 16 16zM464 320c25.5996 0 48 -22.4004 48 -48v-80h-512v80c0 25.5996 22.4004 48 48 48h80v48\\nc0 25.5996 22.4004 48 48 48h160c25.5996 0 48 -22.4004 48 -48v-48h80zM320 320v32h-128v-32h128z\\\" />\\n    <glyph glyph-name=\\\"arrows-alt\\\" unicode=\\\"&#xf0b2;\\\" \\nd=\\\"M352.201 22.2246l-79.1963 -79.1953c-9.37305 -9.37305 -24.5684 -9.37305 -33.9404 0l-79.1963 79.1953c-15.1191 15.1191 -4.41113 40.9717 16.9707 40.9707h51.1621l-0.000976562 100.805h-100.804v-51.1621c0 -21.3818 -25.8516 -32.0898 -40.9717 -16.9707\\nl-79.1953 79.1963c-9.37305 9.37207 -9.37305 24.5684 0 33.9404l79.1953 79.1963c15.1191 15.1191 40.9717 4.41113 40.9717 -16.9717v-51.2285h100.804v100.804h-51.2305c-21.3818 0 -32.0898 25.8516 -16.9707 40.9717l79.1963 79.1953\\nc9.37305 9.37305 24.5684 9.37305 33.9404 0l79.1963 -79.1953c15.1191 -15.1191 4.41113 -40.9717 -16.9707 -40.9717h-51.1621v-100.804h100.804v51.1621c0 21.3818 25.8516 32.0898 40.9707 16.9707l79.1953 -79.1963c9.37305 -9.37207 9.37305 -24.5684 0 -33.9404\\nl-79.1953 -79.1963c-15.1191 -15.1191 -40.9717 -4.41113 -40.9707 16.9717v51.2285h-100.803v-100.804h51.2305c21.3818 0 32.0898 -25.8516 16.9707 -40.9717z\\\" />\\n    <glyph glyph-name=\\\"users\\\" unicode=\\\"&#xf0c0;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M96 224c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM544 224c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM576 192c35.2998 0 64 -28.7002 64 -64v-32\\nc0 -17.7002 -14.2998 -32 -32 -32h-66c-6.2002 47.4004 -34.7998 87.2998 -75.0996 109.4c11.5996 11.5 27.5 18.5996 45.0996 18.5996h64zM320 192c-61.9004 0 -112 50.0996 -112 112s50.0996 112 112 112s112 -50.0996 112 -112s-50.0996 -112 -112 -112zM396.8 160\\nc63.6006 0 115.2 -51.5996 115.2 -115.2v-28.7998c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v28.7998c0 63.6006 51.5996 115.2 115.2 115.2h8.2998c20.9004 -10 43.9004 -16 68.5 -16s47.7002 6 68.5 16h8.2998zM173.1 173.4\\nc-40.2998 -22.1006 -68.8994 -62 -75.1992 -109.4h-65.9004c-17.7002 0 -32 14.2998 -32 32v32c0 35.2998 28.7002 64 64 64h64c17.5996 0 33.5 -7.09961 45.0996 -18.5996z\\\" />\\n    <glyph glyph-name=\\\"link\\\" unicode=\\\"&#xf0c1;\\\" \\nd=\\\"M326.612 262.609c59.7471 -59.8096 58.9268 -155.698 0.359375 -214.591c-0.109375 -0.119141 -0.239258 -0.25 -0.359375 -0.369141l-67.2002 -67.2002c-59.2705 -59.2705 -155.699 -59.2627 -214.96 0c-59.2705 59.2598 -59.2705 155.7 0 214.96l37.1055 37.1055\\nc9.84082 9.84082 26.7861 3.30078 27.2939 -10.6055c0.648438 -17.7227 3.82617 -35.5273 9.69043 -52.7207c1.98633 -5.82227 0.567383 -12.2627 -3.7832 -16.6123l-13.0869 -13.0869c-28.0254 -28.0264 -28.9053 -73.6602 -1.15527 -101.96\\nc28.0244 -28.5791 74.0859 -28.749 102.325 -0.510742l67.2002 67.1904c28.1914 28.1914 28.0732 73.7568 0 101.83c-3.70117 3.69434 -7.42871 6.56348 -10.3408 8.56934c-3.66504 2.51562 -6.77734 8.16309 -6.94727 12.6055\\nc-0.395508 10.5674 3.34766 21.4561 11.6982 29.8057l21.0537 21.0557c5.52148 5.52051 14.1826 6.19922 20.584 1.73047c6.08301 -4.24707 15.2764 -11.9512 20.5225 -17.1963zM467.547 403.551c59.2705 -59.2598 59.2705 -155.7 -0.000976562 -214.959l-37.1055 -37.1055\\nc-9.84082 -9.83984 -26.7852 -3.30078 -27.2939 10.6055c-0.648438 17.7227 -3.82617 35.5273 -9.69043 52.7217c-1.98633 5.82129 -0.567383 12.2617 3.7832 16.6113l13.0869 13.0869c28.0264 28.0264 28.9053 73.6602 1.15527 101.96\\nc-28.0254 28.5791 -74.0869 28.749 -102.325 0.510742l-67.2002 -67.1904c-28.1914 -28.1914 -28.0732 -73.7568 0 -101.83c3.70117 -3.69434 7.42871 -6.56348 10.3408 -8.56934c3.66504 -2.51562 6.77734 -8.16309 6.94727 -12.6055\\nc0.395508 -10.5674 -3.34766 -21.4561 -11.6982 -29.8057l-21.0537 -21.0557c-5.52051 -5.51953 -14.1826 -6.19922 -20.584 -1.73047c-6.08203 4.24609 -15.2754 11.9502 -20.5215 17.1953c-59.7471 59.8096 -58.9258 155.698 -0.359375 214.591\\nc0.109375 0.119141 0.239258 0.25 0.359375 0.369141l67.2002 67.2002c59.2705 59.2705 155.699 59.2627 214.96 0z\\\" />\\n    <glyph glyph-name=\\\"cloud\\\" unicode=\\\"&#xf0c2;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M537.6 221.4c58.4004 -11.8008 102.4 -63.5 102.4 -125.4c0 -70.7002 -57.2998 -128 -128 -128h-368c-79.5 0 -144 64.5 -144 144c0 62.7998 40.2002 116.2 96.2002 135.9c-0.100586 2.69922 -0.200195 5.39941 -0.200195 8.09961c0 88.4004 71.5996 160 160 160\\nc59.2998 0 111 -32.2002 138.7 -80.2002c15.2002 10.2002 33.5996 16.2002 53.2998 16.2002c53 0 96 -43 96 -96c0 -12.2002 -2.2998 -23.9004 -6.40039 -34.5996z\\\" />\\n    <glyph glyph-name=\\\"flask\\\" unicode=\\\"&#xf0c3;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M437.2 44.5c29.2998 -47 -4.40039 -108.5 -60.1006 -108.5h-306.199c-55.6006 0 -89.4004 61.4004 -60.1006 108.5l117.2 188.5v151h-8c-13.2998 0 -24 10.7002 -24 24v16c0 13.2998 10.7002 24 24 24h208c13.2998 0 24 -10.7002 24 -24v-16\\nc0 -13.2998 -10.7002 -24 -24 -24h-8v-151zM137.9 128h172l-48.2002 77.5996c-3.60059 5.2002 -5.7998 11.5 -5.7998 18.4004v160h-64v-160c0 -6.7998 -2.10059 -13.2002 -5.80078 -18.4004z\\\" />\\n    <glyph glyph-name=\\\"cut\\\" unicode=\\\"&#xf0c4;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M278.06 192l166.421 -166.43c4.68945 -4.69043 4.68945 -12.29 0 -16.9707c-32.8008 -32.7998 -85.9902 -32.7998 -118.79 0l-115.511 115.521l-24.8594 -24.8604c4.30957 -10.9199 6.67969 -22.8096 6.67969 -35.2598c0 -53.0195 -42.9805 -96 -96 -96\\ns-96 42.9805 -96 96s42.9805 96 96 96c4.53027 0 8.99023 -0.320312 13.3604 -0.929688l32.9297 32.9297l-32.9297 32.9297c-4.37012 -0.609375 -8.82031 -0.929688 -13.3604 -0.929688c-53.0195 0 -96 42.9805 -96 96s42.9805 96 96 96s96 -42.9805 96 -96\\nc0 -12.4502 -2.37012 -24.3398 -6.67969 -35.2598l24.8594 -24.8604l115.511 115.521c32.7998 32.7998 85.9893 32.7998 118.79 0c4.68945 -4.68066 4.68945 -12.2803 0 -16.9707zM96 288c17.6396 0 32 14.3604 32 32s-14.3604 32 -32 32s-32 -14.3604 -32 -32\\ns14.3604 -32 32 -32zM96 32c17.6396 0 32 14.3604 32 32s-14.3604 32 -32 32s-32 -14.3604 -32 -32s14.3604 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"copy\\\" unicode=\\\"&#xf0c5;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M320 0v-40c0 -13.2549 -10.7451 -24 -24 -24h-272c-13.2549 0 -24 10.7451 -24 24v368c0 13.2549 10.7451 24 24 24h72v-296c0 -30.8789 25.1211 -56 56 -56h168zM320 344c0 -13.2002 10.7998 -24 24 -24h104v-264c0 -13.2549 -10.7451 -24 -24 -24h-272\\nc-13.2549 0 -24 10.7451 -24 24v368c0 13.2549 10.7451 24 24 24h168v-104zM440.971 375.029c3.87988 -3.88086 7.0293 -11.4834 7.0293 -16.9707v-6.05859h-96v96h6.05859c5.4873 0 13.0898 -3.14941 16.9707 -7.0293z\\\" />\\n    <glyph glyph-name=\\\"paperclip\\\" unicode=\\\"&#xf0c6;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M43.2461 -18.1416c-58.4297 60.2891 -57.3408 157.511 1.38574 217.581l209.76 214.561c44.3164 45.332 116.352 45.3359 160.672 0c43.8896 -44.8936 43.9424 -117.329 0 -162.276l-182.85 -186.852c-29.8545 -30.5371 -78.6328 -30.1113 -107.981 0.998047\\nc-28.2754 29.9697 -27.3682 77.4727 1.45117 106.953l143.743 146.835c6.18262 6.31348 16.3125 6.42188 22.626 0.241211l22.8613 -22.3799c6.31445 -6.18164 6.42188 -16.3115 0.241211 -22.626l-143.729 -146.82c-4.93164 -5.04492 -5.23535 -13.4287 -0.647461 -18.292\\nc4.37207 -4.63379 11.2451 -4.71094 15.6875 -0.165039l182.85 186.851c19.6123 20.0625 19.6123 52.7256 -0.0117188 72.7979c-19.1885 19.627 -49.957 19.6377 -69.1533 0l-209.762 -214.56c-34.7627 -35.5605 -35.2988 -93.1201 -1.19043 -128.313\\nc34.0098 -35.0928 88.9844 -35.1367 123.058 -0.285156l172.061 175.999c6.17676 6.31836 16.3066 6.43262 22.626 0.255859l22.877 -22.3643c6.31836 -6.17676 6.43359 -16.3066 0.255859 -22.626l-172.061 -175.998c-59.5752 -60.9385 -155.942 -60.2158 -214.77 0.485352\\nz\\\" />\\n    <glyph glyph-name=\\\"save\\\" unicode=\\\"&#xf0c7;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M433.941 318.059c7.75977 -7.75977 14.0586 -22.9658 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h268.118c10.9746 0 26.1807 -6.29883 33.9404 -14.0586zM224 32\\nc35.3457 0 64 28.6543 64 64s-28.6543 64 -64 64s-64 -28.6543 -64 -64s28.6543 -64 64 -64zM320 336.52c0 2.74316 -1.5752 6.5459 -3.51465 8.48535l-3.48047 3.48047c-2.25 2.25098 -5.30176 3.51465 -8.48535 3.51465h-228.52c-6.62695 0 -12 -5.37305 -12 -12v-104\\nc0 -6.62695 5.37305 -12 12 -12h232c6.62695 0 12 5.37305 12 12v100.52z\\\" />\\n    <glyph glyph-name=\\\"square\\\" unicode=\\\"&#xf0c8;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352z\\\" />\\n    <glyph glyph-name=\\\"bars\\\" unicode=\\\"&#xf0c9;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M16 316c-8.83691 0 -16 7.16309 -16 16v40c0 8.83691 7.16309 16 16 16h416c8.83691 0 16 -7.16309 16 -16v-40c0 -8.83691 -7.16309 -16 -16 -16h-416zM16 156c-8.83691 0 -16 7.16309 -16 16v40c0 8.83691 7.16309 16 16 16h416c8.83691 0 16 -7.16309 16 -16v-40\\nc0 -8.83691 -7.16309 -16 -16 -16h-416zM16 -4c-8.83691 0 -16 7.16309 -16 16v40c0 8.83691 7.16309 16 16 16h416c8.83691 0 16 -7.16309 16 -16v-40c0 -8.83691 -7.16309 -16 -16 -16h-416z\\\" />\\n    <glyph glyph-name=\\\"list-ul\\\" unicode=\\\"&#xf0ca;\\\" \\nd=\\\"M48 400c26.4961 0 48 -21.5039 48 -48s-21.5039 -48 -48 -48s-48 21.5039 -48 48s21.5039 48 48 48zM48 240c26.4961 0 48 -21.5039 48 -48s-21.5039 -48 -48 -48s-48 21.5039 -48 48s21.5039 48 48 48zM48 80c26.4961 0 48 -21.5039 48 -48s-21.5039 -48 -48 -48\\ns-48 21.5039 -48 48s21.5039 48 48 48zM496 64c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM496 384c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16\\nh-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM496 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320z\\\" />\\n    <glyph glyph-name=\\\"list-ol\\\" unicode=\\\"&#xf0cb;\\\" \\nd=\\\"M61.7695 47c19.6104 -5.12012 28.7002 -20.5 28.7305 -34.8799c0 -21.3701 -14.3398 -44.1201 -48.5 -44.1201c-16.6201 0 -29.29 4.75 -37 9.44043c-5.82031 4.21973 -6.34961 9.80957 -2.62988 15.9395l5.58984 9.31055c3.86035 6.61914 9.11035 7 15.5996 3.11914\\nc4.10352 -1.68652 11.0342 -3.08496 15.4707 -3.11914c10.1602 0 14.3594 3.5 14.3594 8.21973c0 6.64941 -5.60938 9.08984 -15.9395 9.08984h-4.73047c-5.95996 0 -9.25 2.12012 -12.25 7.87988l-1.0498 1.92969c-2.4502 4.75 -1.2002 9.81055 2.7998 14.8809l5.61035 7\\nc2.85742 3.55664 7.78516 9.07129 11 12.3096h-22.8301c-4.41602 0 -8 3.58398 -8 8v16c0 4.41602 3.58398 8 8 8h57c7.5 0 11.3398 -4 11.3398 -11.3496v-3.31055c0.0107422 -0.245117 0.0205078 -0.644531 0.0205078 -0.890625\\nc0 -4.20801 -2.28027 -10.166 -5.09082 -13.2988zM496 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM496 384c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM496 64c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-320c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h320zM16 288\\nc-4.41602 0 -8 3.58398 -8 8v16c0 4.41602 3.58398 8 8 8h16v64h-8c-4.4082 0.0078125 -7.98535 3.5918 -7.98535 8c0 1.04297 0.378906 2.64746 0.845703 3.58008l8 16c1.21777 2.43457 4.41699 4.41504 7.13965 4.41992h24c4.41602 0 8 -3.58398 8 -8v-88h16\\nc4.41602 0 8 -3.58398 8 -8v-16c0 -4.41602 -3.58398 -8 -8 -8h-64zM12.0898 128c-7.00977 0 -12.0898 4 -12.0898 11.4102v4c0 47.2803 51 56.3994 50.9697 69.1201c0 7.18945 -5.9502 8.75 -9.2793 8.75h-0.0546875c-3.02832 0 -7.24219 -1.7207 -9.40527 -3.83984\\nc-5.12012 -4.91016 -10.5107 -7 -16.1201 -2.44043l-8.58008 6.87988c-5.7998 4.53027 -7.16992 9.78027 -2.7998 15.3701c6.65918 8.75 19.0996 18.75 40.46 18.75c19.4697 0 44.4697 -10.5 44.4697 -39.5596c0 -37.7607 -45.0498 -46.1504 -48.3398 -56.4404h38.6797\\nc4.41602 0 8 -3.58398 8 -8v-16c0 -4.41602 -3.58398 -8 -8 -8h-67.9102z\\\" />\\n    <glyph glyph-name=\\\"strikethrough\\\" unicode=\\\"&#xf0cc;\\\" \\nd=\\\"M496 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-480c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h102.29c-11.6797 16.5303 -19.7803 35.4697 -21.7803 56.3604c-0.319336 3.29297 -0.579102 8.65137 -0.579102 11.96\\nc0 68.2158 55.3633 123.624 123.579 123.68h68h0.0117188c43.6865 0 94.9863 -31.7188 114.509 -70.7998l0.529297 -1c0.930664 -1.86328 1.68652 -5.06641 1.68652 -7.14844c0 -5.45898 -3.96289 -11.8711 -8.8457 -14.3115l-42.9404 -21.4707\\nc-1.86426 -0.931641 -5.06836 -1.6875 -7.15234 -1.6875c-5.45605 0 -11.8652 3.95996 -14.3076 8.83789c-7.61133 15.2246 -27.6025 27.5801 -44.624 27.5801h-0.0361328h-66.79c-24.0391 -0.000976562 -43.5488 -19.5107 -43.5488 -43.5498\\nc0 -17.749 13.7666 -36.3945 30.7295 -41.6201l87.1699 -26.8301h202.1zM315.76 128h94.3906c2.21191 -6.56152 4.60352 -17.4746 5.33984 -24.3604c0.319336 -3.29297 0.579102 -8.65137 0.579102 -11.96c0 -68.2158 -55.3633 -123.624 -123.579 -123.68h-68h-0.0117188\\nc-43.6865 0 -94.9863 31.7188 -114.509 70.7998l-0.529297 1c-0.930664 1.86328 -1.68652 5.06641 -1.68652 7.14844c0 5.45898 3.96289 11.8711 8.8457 14.3115l42.9404 21.4707c1.86426 0.931641 5.06836 1.6875 7.15234 1.6875\\nc5.45605 0 11.8652 -3.95996 14.3076 -8.83789c7.61133 -15.2246 27.6025 -27.5801 44.624 -27.5801h0.0361328h66.79c24.0176 0.0224609 43.5273 19.5322 43.5498 43.5498c-0.00976562 13.1572 -9.07715 29.4863 -20.2402 36.4502z\\\" />\\n    <glyph glyph-name=\\\"underline\\\" unicode=\\\"&#xf0cd;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M32 384c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h144c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32v-160c0 -44.1602 35.8398 -80 80 -80s80 35.8398 80 80v160h-32c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h144c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32v-160c0 -88.2197 -71.7803 -160 -160 -160s-160 71.7803 -160 160v160h-32zM432 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h416z\\\" />\\n    <glyph glyph-name=\\\"table\\\" unicode=\\\"&#xf0ce;\\\" \\nd=\\\"M464 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h416zM224 32v96h-160v-96h160zM224 192v96h-160v-96h160zM448 32v96h-160v-96h160zM448 192v96h-160v-96h160z\\\" />\\n    <glyph glyph-name=\\\"magic\\\" unicode=\\\"&#xf0d0;\\\" \\nd=\\\"M224 352l-16 32l-32 16l32 16l16 32l16 -32l32 -16l-32 -16zM80 288l-26.6602 53.3301l-53.3398 26.6699l53.3398 26.6699l26.6602 53.3301l26.6602 -53.3301l53.3398 -26.6699l-53.3398 -26.6699zM432 160l26.6602 -53.3301l53.3398 -26.6699l-53.3398 -26.6699\\nl-26.6602 -53.3301l-26.6602 53.3301l-53.3398 26.6699l53.3398 26.6699zM502.62 353.77c12.5 -12.4893 12.5 -32.7598 0 -45.2393l-363.14 -363.15c-6.25 -6.25 -14.4404 -9.37012 -22.6309 -9.37012c-8.17969 0 -16.3691 3.12012 -22.6191 9.37012l-84.8506 84.8506\\nc-12.5 12.4893 -12.5 32.75 0 45.25l363.14 363.14c6.25 6.25977 14.4404 9.37988 22.6309 9.37988c8.18945 0 16.3799 -3.12012 22.6191 -9.37988zM359.45 244.54l86.5996 86.5996l-50.9102 50.9102l-86.5996 -86.5996z\\\" />\\n    <glyph glyph-name=\\\"truck\\\" unicode=\\\"&#xf0d1;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 96c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-48c0 -53 -43 -96 -96 -96s-96 43 -96 96h-128c0 -53 -43 -96 -96 -96s-96 43 -96 96h-16c-26.5 0 -48 21.5 -48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48 -21.5 48 -48v-48h44.0996\\nc12.7002 0 24.9004 -5.09961 33.9004 -14.0996l99.9004 -99.9004c9 -9 14.0996 -21.2002 14.0996 -33.9004v-108.1h16zM160 -16c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM480 -16c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48\\ns21.5 -48 48 -48zM560 192v12.0996l-99.9004 99.9004h-44.0996v-112h144z\\\" />\\n    <glyph glyph-name=\\\"money-bill\\\" unicode=\\\"&#xf0d6;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 384c17.6699 0 32 -14.3301 32 -32v-320c0 -17.6699 -14.3301 -32 -32 -32h-576c-17.6699 0 -32 14.3301 -32 32v320c0 17.6699 14.3301 32 32 32h576zM48 48h64c0 35.3496 -28.6504 64 -64 64v-64zM48 272c35.3496 0 64 28.6504 64 64h-64v-64zM320 96\\nc44.1699 0 80 42.9697 80 96c0 53.0195 -35.8203 96 -80 96s-80 -42.9805 -80 -96c0 -53.0098 35.8096 -96 80 -96zM592 48v64c-35.3496 0 -64 -28.6504 -64 -64h64zM592 272v64h-64c0 -35.3496 28.6504 -64 64 -64z\\\" />\\n    <glyph glyph-name=\\\"caret-down\\\" unicode=\\\"&#xf0d7;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M31.2998 256h257.3c17.8008 0 26.7002 -21.5 14.1006 -34.0996l-128.601 -128.7c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0l-128.6 128.7c-12.6006 12.5996 -3.7002 34.0996 14.0996 34.0996z\\\" />\\n    <glyph glyph-name=\\\"caret-up\\\" unicode=\\\"&#xf0d8;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M288.662 96h-257.324c-17.8184 0 -26.7412 21.543 -14.1416 34.1416l128.662 128.662c7.80957 7.81055 20.4736 7.81055 28.2832 0l128.662 -128.662c12.6006 -12.5986 3.67676 -34.1416 -14.1416 -34.1416z\\\" />\\n    <glyph glyph-name=\\\"caret-left\\\" unicode=\\\"&#xf0d9;\\\" horiz-adv-x=\\\"192\\\" \\nd=\\\"M192 320.662v-257.324c0 -17.8184 -21.543 -26.7412 -34.1416 -14.1416l-128.662 128.662c-7.81055 7.80957 -7.81055 20.4736 0 28.2832l128.662 128.662c12.5986 12.6006 34.1416 3.67676 34.1416 -14.1416z\\\" />\\n    <glyph glyph-name=\\\"caret-right\\\" unicode=\\\"&#xf0da;\\\" horiz-adv-x=\\\"192\\\" \\nd=\\\"M0 63.3379v257.324c0 17.8184 21.543 26.7412 34.1416 14.1416l128.662 -128.662c7.81055 -7.80957 7.81055 -20.4736 0 -28.2832l-128.662 -128.662c-12.5986 -12.6006 -34.1416 -3.67676 -34.1416 14.1416z\\\" />\\n    <glyph glyph-name=\\\"columns\\\" unicode=\\\"&#xf0db;\\\" \\nd=\\\"M464 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h416zM224 32v256h-160v-256h160zM448 32v256h-160v-256h160z\\\" />\\n    <glyph glyph-name=\\\"sort\\\" unicode=\\\"&#xf0dc;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M41 160h238c21.4004 0 32.0996 -25.9004 17 -41l-119 -119c-9.40039 -9.40039 -24.5996 -9.40039 -33.9004 0l-119.1 119c-15.0996 15.0996 -4.40039 41 17 41zM296 265c15.0996 -15.0996 4.40039 -41 -17 -41h-238c-21.4004 0 -32.0996 25.9004 -17 41l119.1 119\\nc9.30078 9.40039 24.5 9.40039 33.9004 0z\\\" />\\n    <glyph glyph-name=\\\"sort-down\\\" unicode=\\\"&#xf0dd;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M41 160h238c21.4004 0 32.0996 -25.9004 17 -41l-119 -119c-9.40039 -9.40039 -24.5996 -9.40039 -33.9004 0l-119.1 119c-15.0996 15.0996 -4.40039 41 17 41z\\\" />\\n    <glyph glyph-name=\\\"sort-up\\\" unicode=\\\"&#xf0de;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M279 224h-238c-21.4004 0 -32.0996 25.9004 -17 41l119 119c9.40039 9.40039 24.5996 9.40039 33.9004 0l119 -119c15.1992 -15.0996 4.5 -41 -16.9004 -41z\\\" />\\n    <glyph glyph-name=\\\"envelope\\\" unicode=\\\"&#xf0e0;\\\" \\nd=\\\"M502.3 257.2c3.90039 3.09961 9.7002 0.200195 9.7002 -4.7002v-204.5c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v204.4c0 5 5.7002 7.7998 9.7002 4.69922c22.3994 -17.3994 52.0996 -39.5 154.1 -113.6\\nc21.1006 -15.4004 56.7002 -47.7998 92.2002 -47.5996c35.7002 -0.300781 72 32.7998 92.2998 47.5996c102 74.0996 131.601 96.2998 154 113.7zM256 128c-23.2002 -0.400391 -56.5996 29.2002 -73.4004 41.4004c-132.699 96.2998 -142.8 104.8 -173.399 128.699\\nc-5.7998 4.60059 -9.2002 11.5 -9.2002 18.9004v19c0 26.5 21.5 48 48 48h416c26.5 0 48 -21.5 48 -48v-19c0 -7.40039 -3.40039 -14.4004 -9.2002 -18.9004c-30.5996 -24 -40.7002 -32.3994 -173.399 -128.699c-16.8008 -12.2002 -50.2002 -41.8008 -73.4004 -41.4004z\\\" />\\n    <glyph glyph-name=\\\"undo\\\" unicode=\\\"&#xf0e2;\\\" \\nd=\\\"M212.333 223.667h-200.333c-6.62695 0 -12 5.37305 -12 12v200.333c0 6.62695 5.37305 12 12 12h48c6.62695 0 12 -5.37305 12 -12v-78.1123c45.7734 50.833 112.26 82.6426 186.175 82.1055c136.906 -0.994141 246.448 -111.623 246.157 -248.532\\nc-0.291016 -136.719 -111.212 -247.461 -247.999 -247.461c-64.0889 0 -122.496 24.3135 -166.51 64.2148c-5.09961 4.62207 -5.33398 12.5537 -0.466797 17.4199l33.9668 33.9668c4.47363 4.47461 11.6621 4.71777 16.4004 0.525391\\nc31.0361 -27.4629 71.8564 -44.127 116.609 -44.127c97.2676 0 176 78.7158 176 176c0 97.2666 -78.7158 176 -176 176c-58.4961 0 -110.28 -28.4756 -142.274 -72.333h98.2744c6.62695 0 12 -5.37305 12 -12v-48c0 -6.62695 -5.37305 -12 -12 -12z\\\" />\\n    <glyph glyph-name=\\\"gavel\\\" unicode=\\\"&#xf0e3;\\\" \\nd=\\\"M504.971 248.638c9.37207 -9.37305 9.37207 -24.5684 0 -33.9404l-124.451 -124.451c-9.37109 -9.37305 -24.5674 -9.37305 -33.9404 0l-22.627 22.627c-9.37305 9.37207 -9.37305 24.5684 0 33.9414l5.65723 5.65625l-39.5986 39.5986l-81.04 -81.04l5.65723 -5.65723\\nc12.4971 -12.4971 12.4971 -32.7578 0 -45.2549l-114.745 -114.745c-12.4971 -12.4971 -32.7578 -12.4971 -45.2549 0l-45.2549 45.2549c-12.4971 12.4971 -12.4971 32.7578 0 45.2549l114.744 114.746c12.4971 12.4971 32.7578 12.4971 45.2549 0l5.65723 -5.65723\\nl81.04 81.04l-39.5986 39.5986l-5.65625 -5.65723c-9.37207 -9.37305 -24.5684 -9.37305 -33.9414 0l-22.627 22.627c-9.37305 9.37207 -9.37305 24.5684 0 33.9404l124.451 124.451c9.37207 9.37305 24.5674 9.37305 33.9404 0l22.627 -22.6279\\nc9.37305 -9.37207 9.37305 -24.5674 0 -33.9404l-5.65625 -5.65723l113.138 -113.137l5.65723 5.65625c9.37207 9.37305 24.5674 9.37305 33.9404 0z\\\" />\\n    <glyph glyph-name=\\\"bolt\\\" unicode=\\\"&#xf0e7;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M296 288c18.5 0 30 -20.0996 20.7002 -36l-176 -304c-4.40039 -7.59961 -12.4004 -12 -20.7998 -12c-15.3008 0 -26.9004 14.2998 -23.3008 29.5l46.1006 194.5h-118.7c-14.5 0 -25.7002 12.7998 -23.7998 27.2002l32 240\\nc1.59961 11.8994 11.7998 20.7998 23.7998 20.7998h144c15.7002 0 27.2002 -15 23.2002 -30.2002l-42.6006 -129.8h115.4z\\\" />\\n    <glyph glyph-name=\\\"sitemap\\\" unicode=\\\"&#xf0e8;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M128 96c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h96zM104 176v-48h-48v57.5898c0 21.1797 17.2305 38.4102 38.4102 38.4102h201.59v64h-40c-17.6699 0 -32 14.3301 -32 32\\nv96c0 17.6699 14.3301 32 32 32h128c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-40v-64h201.59c21.1797 0 38.4102 -17.2402 38.4102 -38.4102v-57.5898h-48v48h-192v-48h-48v48h-192zM368 96c17.6699 0 32 -14.3301 32 -32v-96\\nc0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h96zM608 96c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h96z\\\" />\\n    <glyph glyph-name=\\\"umbrella\\\" unicode=\\\"&#xf0e9;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M575.7 167.2c2.2002 -10.1006 -8.40039 -21.4004 -18.7002 -11.4004c-51.5 54.4004 -107.6 52.5 -158.6 -37c-5.30078 -9.5 -14.9004 -8.59961 -19.7002 0c-2.5 4.40039 -32.2002 73.2002 -90.7002 73.2002c-45.7998 0 -70.5 -37.7998 -90.7002 -73.2002\\nc-4.7998 -8.59961 -14.3994 -9.5 -19.7002 0c-50.8994 89.4004 -106.6 92 -158.6 37c-10.2002 -9.89941 -20.9004 1.2998 -18.7002 11.4004c29.2002 136.3 138 218.2 255.7 230.899v17.9004c0 17.7002 14.2998 32 32 32s32 -14.2998 32 -32v-17.9004\\nc117.3 -12.6992 227.1 -94.5996 255.7 -230.899zM256 146.3c9.59961 8.90039 19.7002 13.6006 32 13.7002c12.2002 0 22.9004 -5.7002 32 -13.5996v-130.301c0 -44.0996 -35.9004 -80 -80 -80c-33.7998 0 -64.2002 21.4004 -75.4004 53.3008\\nc-5.89941 16.5996 2.80078 34.8994 19.5 40.7998c16.7002 5.89941 34.9004 -2.7998 40.8008 -19.5c1.89941 -5.40039 7.2998 -10.7002 15.0996 -10.7002c8.7998 0 16 7.2002 16 16v130.3z\\\" />\\n    <glyph glyph-name=\\\"paste\\\" unicode=\\\"&#xf0ea;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M128 264v-232h-104c-13.2549 0 -24 10.7451 -24 24v336c0 13.2549 10.7451 24 24 24h80.6104c11.084 19.1104 31.7529 32 55.3896 32s44.3057 -12.8896 55.3896 -32h80.6104c13.2549 0 24 -10.7451 24 -24v-72h-136c-30.8779 0 -56 -25.1211 -56 -56zM160 408\\nc-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24zM344 160h104v-200c0 -13.2549 -10.7451 -24 -24 -24h-240c-13.2549 0 -24 10.7451 -24 24v304c0 13.2549 10.7451 24 24 24h136v-104c0 -13.2002 10.7998 -24 24 -24z\\nM448 198.059v-6.05859h-96v96h6.05859c5.4873 0 13.0898 -3.14941 16.9707 -7.0293l65.9404 -65.9404c3.88086 -3.88086 7.03027 -11.4834 7.03027 -16.9717z\\\" />\\n    <glyph glyph-name=\\\"lightbulb\\\" unicode=\\\"&#xf0eb;\\\" horiz-adv-x=\\\"352\\\" \\nd=\\\"M96.0596 -6.34961l-0.0498047 38.3496h159.98l-0.0400391 -38.3496c-0.00585938 -5.3291 -2.40723 -13.2549 -5.36035 -17.6904l-17.0898 -25.6904c-5.24023 -7.88184 -17.1748 -14.2793 -26.6396 -14.2793h-61.71c-9.46582 0 -21.4004 6.39746 -26.6406 14.2793\\nl-17.0898 25.6904c-3.49023 5.24023 -5.34961 11.4004 -5.36035 17.6904zM0 272c0 93.0303 73.4404 175.69 175.45 176c97.46 0.299805 176.55 -78.6104 176.55 -176c0 -44.3701 -16.4502 -84.8496 -43.5596 -115.78c-16.5205 -18.8496 -42.3604 -58.2295 -52.21 -91.4502\\nc-0.0400391 -0.269531 -0.0703125 -0.519531 -0.110352 -0.779297h-160.24c-0.0400391 0.259766 -0.0703125 0.519531 -0.110352 0.779297c-9.84961 33.2207 -35.6895 72.6006 -52.21 91.4502c-27.1094 30.9307 -43.5596 71.4102 -43.5596 115.78zM176 352\\nc8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16c-61.7598 0 -112 -50.2402 -112 -112c0 -8.83984 7.16016 -16 16 -16s16 7.16016 16 16c0 44.1104 35.8896 80 80 80z\\\" />\\n    <glyph glyph-name=\\\"user-md\\\" unicode=\\\"&#xf0f0;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM104 24c0 13.2998 10.7002 24 24 24s24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24zM320 159.4c71.2002 -3.5 128 -61.8008 128 -133.801\\nv-44.7998c0 -24.7002 -20.0996 -44.7998 -44.7998 -44.7998h-358.4c-24.7002 0 -44.7998 20.0996 -44.7998 44.7998v44.7998c0 66.6006 48.5 121.4 112.1 132.101v-80.4004c-23.0996 -6.89941 -40 -28.0996 -40 -53.3994c0 -30.9004 25.1006 -56 56 -56\\nc30.9004 0 56 25.0996 56 56c0 25.2998 -16.8994 46.5 -40 53.3994v81.6006c7.7002 -1 15.2002 -2.60059 22.6006 -5.2002c18 -6.2998 37.2998 -9.7998 57.3994 -9.7998c20.1006 0 39.4004 3.5 57.4004 9.7998c2.2002 0.799805 4.40039 1.2002 6.59961 1.89941v-45.1992\\nc-36.5 -7.5 -64 -39.8008 -64 -78.4004v-43.7998c0 -8.10059 5.90039 -14.7998 13.8008 -15.9004l31.1992 -4.2002c4.30078 -0.799805 8.5 2 9.40039 6.30078l3.09961 15.6992c0.800781 4.30078 -2 8.5 -6.2998 9.40039l-19.2998 3.90039v26.6992\\nc0 67 96 64.7002 96 1.90039v-28.5l-19.2998 -3.90039c-4.40039 -0.799805 -7.2002 -5.09961 -6.2998 -9.39941l3.09961 -15.7002c0.900391 -4.40039 5.09961 -7.2002 9.40039 -6.2998l32.1992 6.39941c7.5 1.5 12.9004 8.10059 12.9004 15.7002v41.7002\\nc0 38.5996 -27.5 71 -64 78.4004v49z\\\" />\\n    <glyph glyph-name=\\\"stethoscope\\\" unicode=\\\"&#xf0f1;\\\" \\nd=\\\"M447.1 336c35.7002 0.5 64.9004 -28.2998 64.9004 -64c0 -23.7002 -12.9004 -44.2998 -32 -55.4004v-112.6c0 -92.5996 -79 -168 -176 -168c-95.4004 0 -173.3 72.7998 -175.9 163.2c-73 14.7998 -128.1 79.5 -128.1 156.8v155.4c0 11.5 8.09961 21.2998 19.2998 23.5996\\nl62.7998 12.4004c13 2.59961 25.6006 -5.80078 28.2002 -18.8008l3.10059 -15.6992c2.59961 -13 -5.80078 -25.6006 -18.8008 -28.2002l-30.6992 -6.10059v-122.5c0 -53.2998 43.5 -96.5 96.8994 -96c52.9004 0.5 95.1006 44.3008 95.1006 97.2002v121.4l-30.7002 6.09961\\nc-13 2.60059 -21.4004 15.2002 -18.7998 28.2002l3.19922 15.7002c2.60059 13 15.2002 21.3994 28.2002 18.7998l62.9004 -12.5996c11.2002 -2.2002 19.2998 -12.1006 19.2998 -23.5v-155.4c0 -77.2002 -55 -141.8 -127.8 -156.8\\nc2.7002 -55.1006 51.8994 -99.2002 111.899 -99.2002c61.8008 0 112 46.7002 112 104v112.6c-19.5 11.2002 -32.5 32.5 -32 56.8008c0.700195 34.1992 28.8008 62.0996 63 62.5996zM448 256c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16\\ns7.2002 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"suitcase\\\" unicode=\\\"&#xf0f2;\\\" \\nd=\\\"M128 -32v400c0 26.5 21.5 48 48 48h160c26.5 0 48 -21.5 48 -48v-400h-256zM192 352v-32h128v32h-128zM512 272v-256c0 -26.5 -21.5 -48 -48 -48h-48v352h48c26.5 0 48 -21.5 48 -48zM96 -32h-48c-26.5 0 -48 21.5 -48 48v256c0 26.5 21.5 48 48 48h48v-352z\\\" />\\n    <glyph glyph-name=\\\"bell\\\" unicode=\\\"&#xf0f3;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M224 -64c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64zM439.39 85.71c6 -6.44043 8.66016 -14.1602 8.61035 -21.71c-0.0996094 -16.4004 -12.9805 -32 -32.0996 -32h-383.801c-19.1191 0 -31.9893 15.5996 -32.0996 32\\nc-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c19.3193 20.7598 55.4697 51.9902 55.4697 154.29c0 77.7002 54.4795 139.9 127.939 155.16v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398\\nc73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -102.3 36.1504 -133.53 55.4697 -154.29z\\\" />\\n    <glyph glyph-name=\\\"coffee\\\" unicode=\\\"&#xf0f4;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M192 64c-53 0 -96 43 -96 96v232c0 13.2998 10.7002 24 24 24h392c70.5996 0 128 -57.4004 128 -128s-57.4004 -128 -128 -128h-32c0 -53 -43 -96 -96 -96h-192zM512 352h-32v-128h32c35.2998 0 64 28.7002 64 64s-28.7002 64 -64 64zM559.7 -32h-511.4\\nc-47.5996 0 -61 64 -36 64h583.3c25 0 11.8008 -64 -35.8994 -64z\\\" />\\n    <glyph glyph-name=\\\"hospital\\\" unicode=\\\"&#xf0f8;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 -44v-20h-448v20c0 6.62695 5.37305 12 12 12h20v360c0 13.2549 10.7451 24 24 24h88v72c0 13.2549 10.7451 24 24 24h112c13.2549 0 24 -10.7451 24 -24v-72h88c13.2549 0 24 -10.7451 24 -24v-360h20c6.62695 0 12 -5.37305 12 -12zM308 256h-40\\nc-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12v40c0 6.62695 -5.37305 12 -12 12zM140 192h40c6.62695 0 12 5.37305 12 12v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40\\nc0 -6.62695 5.37305 -12 12 -12zM244 64h-40c-6.62695 0 -12 -5.37305 -12 -12v-84h64v84c0 6.62695 -5.37305 12 -12 12zM308 160h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12v40c0 6.62695 -5.37305 12 -12 12\\nzM192 148c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12v40zM182 352h26v-26c0 -3.31152 2.68848 -6 6 -6h20c3.31152 0 6 2.68848 6 6v26h26c3.31152 0 6 2.68848 6 6v20\\nc0 3.31152 -2.68848 6 -6 6h-26v26c0 3.31152 -2.68848 6 -6 6h-20c-3.31152 0 -6 -2.68848 -6 -6v-26h-26c-3.31152 0 -6 -2.68848 -6 -6v-20c0 -3.31152 2.68848 -6 6 -6z\\\" />\\n    <glyph glyph-name=\\\"ambulance\\\" unicode=\\\"&#xf0f9;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 96c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-48c0 -53 -43 -96 -96 -96s-96 43 -96 96h-128c0 -53 -43 -96 -96 -96s-96 43 -96 96h-16c-26.5 0 -48 21.5 -48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48 -21.5 48 -48v-48h44.0996\\nc12.7002 0 24.9004 -5.09961 33.9004 -14.0996l99.9004 -99.9004c9 -9 14.0996 -21.2002 14.0996 -33.9004v-108.1h16zM160 -16c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM304 232v48c0 4.40039 -3.59961 8 -8 8h-56v56\\nc0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-56h-56c-4.40039 0 -8 -3.59961 -8 -8v-48c0 -4.40039 3.59961 -8 8 -8h56v-56c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v56h56c4.40039 0 8 3.59961 8 8zM480 -16c26.5 0 48 21.5 48 48\\ns-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM560 192v12.0996l-99.9004 99.9004h-44.0996v-112h144z\\\" />\\n    <glyph glyph-name=\\\"medkit\\\" unicode=\\\"&#xf0fa;\\\" \\nd=\\\"M96 -32v352h32v48c0 26.5098 21.4902 48 48 48h160c26.5098 0 48 -21.4902 48 -48v-48h32v-352h-320zM192 352v-32h128v32h-128zM512 272v-256c0 -26.5098 -21.4902 -48 -48 -48h-16v352h16c26.5098 0 48 -21.4902 48 -48zM64 -32h-16c-26.5098 0 -48 21.4902 -48 48v256\\nc0 26.5098 21.4902 48 48 48h16v-352zM352 176c0 8.83691 -7.16309 16 -16 16h-48v48c0 8.83691 -7.16309 16 -16 16h-32c-8.83691 0 -16 -7.16309 -16 -16v-48h-48c-8.83691 0 -16 -7.16309 -16 -16v-32c0 -8.83691 7.16309 -16 16 -16h48v-48\\nc0 -8.83691 7.16309 -16 16 -16h32c8.83691 0 16 7.16309 16 16v48h48c8.83691 0 16 7.16309 16 16v32z\\\" />\\n    <glyph glyph-name=\\\"fighter-jet\\\" unicode=\\\"&#xf0fb;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 224c96 -21.333 96 -26.583 96 -32s0 -10.667 -96 -32l-128 -16l-48 -16h-24l-116.842 -148h39.5088c11.666 0 21.333 -2.625 21.333 -6s-9.66602 -6 -21.333 -6h-114.667v12h16v164h-48l-66.666 -80h-34.667l-10.667 10.667v69.333h8v16h48v2.66699l-64 8v42.667\\nl64 8v2.66602h-48v16h-8v69.333l10.667 10.667h34.666l66.667 -80h48v164h-16v12h114.667c11.666 0 21.333 -2.625 21.333 -6s-9.66699 -6 -21.333 -6h-39.5088l116.842 -148h24l48 -16z\\\" />\\n    <glyph glyph-name=\\\"beer\\\" unicode=\\\"&#xf0fc;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M368 352c44.1123 0 80 -35.8877 80 -80v-128.86c0 -31.5273 -18.6035 -60.2031 -47.3936 -73.0527l-80.6064 -35.9766v-42.1104c0 -13.2549 -10.7451 -24 -24 -24h-272c-13.2549 0 -24 10.7451 -24 24v400c0 13.2549 10.7451 24 24 24h272c13.2549 0 24 -10.7451 24 -24\\nv-40h48zM384 143.14v128.86c0 8.82227 -7.17773 16 -16 16h-48v-183.805l54.5215 24.334c5.22754 2.33789 9.47461 8.88379 9.47852 14.6104zM208 64c8.83594 0 16 7.16406 16 16v224c0 8.83594 -7.16406 16 -16 16s-16 -7.16406 -16 -16v-224\\nc0 -8.83594 7.16406 -16 16 -16zM112 64c8.83594 0 16 7.16406 16 16v224c0 8.83594 -7.16406 16 -16 16s-16 -7.16406 -16 -16v-224c0 -8.83594 7.16406 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"h-square\\\" unicode=\\\"&#xf0fd;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 368v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48zM336 320h-32c-8.83691 0 -16 -7.16309 -16 -16v-80h-128v80c0 8.83691 -7.16309 16 -16 16h-32\\nc-8.83691 0 -16 -7.16309 -16 -16v-224c0 -8.83691 7.16309 -16 16 -16h32c8.83691 0 16 7.16309 16 16v80h128v-80c0 -8.83691 7.16309 -16 16 -16h32c8.83691 0 16 7.16309 16 16v224c0 8.83691 -7.16309 16 -16 16z\\\" />\\n    <glyph glyph-name=\\\"plus-square\\\" unicode=\\\"&#xf0fe;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM368 164v56c0 6.59961 -5.40039 12 -12 12h-92v92c0 6.59961 -5.40039 12 -12 12h-56c-6.59961 0 -12 -5.40039 -12 -12v-92h-92\\nc-6.59961 0 -12 -5.40039 -12 -12v-56c0 -6.59961 5.40039 -12 12 -12h92v-92c0 -6.59961 5.40039 -12 12 -12h56c6.59961 0 12 5.40039 12 12v92h92c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"angle-double-left\\\" unicode=\\\"&#xf100;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M223.7 209l136 136c9.39941 9.40039 24.5996 9.40039 33.8994 0l22.6006 -22.5996c9.39941 -9.40039 9.39941 -24.6006 0 -33.9004l-96.2998 -96.5l96.3994 -96.4004c9.40039 -9.39941 9.40039 -24.5996 0 -33.8994l-22.5996 -22.7002\\nc-9.40039 -9.40039 -24.6006 -9.40039 -33.9004 0l-136 136c-9.5 9.40039 -9.5 24.5996 -0.0996094 34zM31.7002 175c-9.40039 9.40039 -9.40039 24.5996 0.0996094 34l136 136c9.2998 9.40039 24.5 9.40039 33.9004 0l22.5996 -22.7002\\nc9.40039 -9.2998 9.40039 -24.5 0 -33.8994l-96.3994 -96.4004l96.2998 -96.5c9.39941 -9.2998 9.39941 -24.5 0 -33.9004l-22.6006 -22.5996c-9.2998 -9.40039 -24.5 -9.40039 -33.8994 0z\\\" />\\n    <glyph glyph-name=\\\"angle-double-right\\\" unicode=\\\"&#xf101;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M224.3 175l-136 -136c-9.39941 -9.40039 -24.5996 -9.40039 -33.8994 0l-22.6006 22.5996c-9.39941 9.40039 -9.39941 24.6006 0 33.9004l96.4004 96.4004l-96.4004 96.3994c-9.39941 9.40039 -9.39941 24.6006 0 33.9004l22.5 22.7998\\nc9.40039 9.40039 24.6006 9.40039 33.9004 0l136 -136c9.5 -9.40039 9.5 -24.5996 0.0996094 -34zM416.3 209c9.40039 -9.40039 9.40039 -24.5996 0 -33.7998l-136 -136c-9.2998 -9.40039 -24.5 -9.40039 -33.8994 0l-22.6006 22.5996\\nc-9.39941 9.2998 -9.39941 24.5 0 33.9004l96.4004 96.3994l-96.4004 96.4004c-9.39941 9.2998 -9.39941 24.5 0 33.9004l22.6006 22.5996c9.2998 9.40039 24.5 9.40039 33.8994 0z\\\" />\\n    <glyph glyph-name=\\\"angle-double-up\\\" unicode=\\\"&#xf102;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M177 192.3l136 -136c9.40039 -9.39941 9.40039 -24.5996 0 -33.8994l-22.5996 -22.6006c-9.40039 -9.39941 -24.6006 -9.39941 -33.9004 0l-96.5 96.2998l-96.4004 -96.3994c-9.39941 -9.40039 -24.5996 -9.40039 -33.8994 0l-22.7002 22.5996\\nc-9.40039 9.40039 -9.40039 24.6006 0 33.9004l136 136c9.40039 9.5 24.5996 9.5 34 0.0996094zM143 384.3c9.40039 9.40039 24.5996 9.40039 33.7998 0l136 -136c9.40039 -9.2998 9.40039 -24.5 0 -33.8994l-22.5996 -22.6006c-9.2998 -9.39941 -24.5 -9.39941 -33.9004 0\\nl-96.3994 96.4004l-96.4004 -96.4004c-9.2998 -9.39941 -24.5 -9.39941 -33.9004 0l-22.5996 22.6006c-9.40039 9.2998 -9.40039 24.5 0 33.8994z\\\" />\\n    <glyph glyph-name=\\\"angle-double-down\\\" unicode=\\\"&#xf103;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M143 191.7l-136 136c-9.40039 9.39941 -9.40039 24.5996 0 33.8994l22.5996 22.6006c9.40039 9.39941 24.6006 9.39941 33.9004 0l96.4004 -96.4004l96.3994 96.4004c9.40039 9.39941 24.6006 9.39941 33.9004 0l22.7998 -22.5\\nc9.40039 -9.40039 9.40039 -24.6006 0 -33.9004l-136 -136c-9.40039 -9.5 -24.5996 -9.5 -34 -0.0996094zM177 -0.299805c-9.40039 -9.40039 -24.5996 -9.40039 -34 0.0996094l-136 136c-9.40039 9.2998 -9.40039 24.5 0 33.9004l22.7002 22.5996\\nc9.2998 9.40039 24.5 9.40039 33.8994 0l96.4004 -96.3994l96.5 96.2998c9.2998 9.39941 24.5 9.39941 33.9004 0l22.5996 -22.6006c9.40039 -9.2998 9.40039 -24.5 0 -33.8994z\\\" />\\n    <glyph glyph-name=\\\"angle-left\\\" unicode=\\\"&#xf104;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M31.7002 209l136 136c9.39941 9.40039 24.5996 9.40039 33.8994 0l22.6006 -22.5996c9.39941 -9.40039 9.39941 -24.6006 0 -33.9004l-96.2998 -96.5l96.3994 -96.4004c9.40039 -9.39941 9.40039 -24.5996 0 -33.8994l-22.5996 -22.7002\\nc-9.40039 -9.40039 -24.6006 -9.40039 -33.9004 0l-136 136c-9.5 9.40039 -9.5 24.5996 -0.0996094 34z\\\" />\\n    <glyph glyph-name=\\\"angle-right\\\" unicode=\\\"&#xf105;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M224.3 175l-136 -136c-9.39941 -9.40039 -24.5996 -9.40039 -33.8994 0l-22.6006 22.5996c-9.39941 9.40039 -9.39941 24.6006 0 33.9004l96.4004 96.4004l-96.4004 96.3994c-9.39941 9.40039 -9.39941 24.6006 0 33.9004l22.5 22.7998\\nc9.40039 9.40039 24.6006 9.40039 33.9004 0l136 -136c9.5 -9.40039 9.5 -24.5996 0.0996094 -34z\\\" />\\n    <glyph glyph-name=\\\"angle-up\\\" unicode=\\\"&#xf106;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M177 288.3l136 -136c9.40039 -9.39941 9.40039 -24.5996 0 -33.8994l-22.5996 -22.6006c-9.40039 -9.39941 -24.6006 -9.39941 -33.9004 0l-96.5 96.2998l-96.4004 -96.3994c-9.39941 -9.40039 -24.5996 -9.40039 -33.8994 0l-22.7002 22.5996\\nc-9.40039 9.40039 -9.40039 24.6006 0 33.9004l136 136c9.40039 9.5 24.5996 9.5 34 0.0996094z\\\" />\\n    <glyph glyph-name=\\\"angle-down\\\" unicode=\\\"&#xf107;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M143 95.7002l-136 136c-9.40039 9.39941 -9.40039 24.5996 0 33.8994l22.5996 22.6006c9.40039 9.39941 24.6006 9.39941 33.9004 0l96.4004 -96.4004l96.3994 96.4004c9.40039 9.39941 24.6006 9.39941 33.9004 0l22.5996 -22.6006\\nc9.40039 -9.39941 9.40039 -24.5996 0 -33.8994l-136 -136c-9.2002 -9.40039 -24.3994 -9.40039 -33.7998 0z\\\" />\\n    <glyph glyph-name=\\\"desktop\\\" unicode=\\\"&#xf108;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 448c26.5 0 48 -21.5 48 -48v-320c0 -26.5 -21.5 -48 -48 -48h-192l16 -48h72c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24h-272c-13.2998 0 -24 10.7002 -24 24s10.7002 24 24 24h72l16 48h-192c-26.5 0 -48 21.5 -48 48v320c0 26.5 21.5 48 48 48h480z\\nM512 96v288h-448v-288h448z\\\" />\\n    <glyph glyph-name=\\\"laptop\\\" unicode=\\\"&#xf109;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 32c8.7998 0 16 -7.2002 16 -16v-16c0 -35.2002 -28.7998 -64 -64 -64h-512c-35.2002 0 -64 28.7998 -64 64v16c0 8.7998 7.2002 16 16 16h239.23c-0.25 -14.5303 14.0791 -32 32.7695 -32h60.7998c18.0303 0 32 12.1904 32.7402 32h242.46zM576 400v-336h-512v336\\nc0 26.4004 21.5996 48 48 48h416c26.4004 0 48 -21.5996 48 -48zM512 128v256h-384v-256h384z\\\" />\\n    <glyph glyph-name=\\\"tablet\\\" unicode=\\\"&#xf10a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h352zM224 -32c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"mobile\\\" unicode=\\\"&#xf10b;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M272 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-224c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h224zM160 -32c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"quote-left\\\" unicode=\\\"&#xf10d;\\\" \\nd=\\\"M464 192c26.5 0 48 -21.5 48 -48v-128c0 -26.5 -21.5 -48 -48 -48h-128c-26.5 0 -48 21.5 -48 48v240c0 88.4004 71.5996 160 160 160h8c13.2998 0 24 -10.7002 24 -24v-48c0 -13.2998 -10.7002 -24 -24 -24h-8c-35.2998 0 -64 -28.7002 -64 -64v-64h80zM176 192\\nc26.5 0 48 -21.5 48 -48v-128c0 -26.5 -21.5 -48 -48 -48h-128c-26.5 0 -48 21.5 -48 48v240c0 88.4004 71.5996 160 160 160h8c13.2998 0 24 -10.7002 24 -24v-48c0 -13.2998 -10.7002 -24 -24 -24h-8c-35.2998 0 -64 -28.7002 -64 -64v-64h80z\\\" />\\n    <glyph glyph-name=\\\"quote-right\\\" unicode=\\\"&#xf10e;\\\" \\nd=\\\"M464 416c26.5 0 48 -21.5 48 -48v-240c0 -88.4004 -71.5996 -160 -160 -160h-8c-13.2998 0 -24 10.7002 -24 24v48c0 13.2998 10.7002 24 24 24h8c35.2998 0 64 28.7002 64 64v64h-80c-26.5 0 -48 21.5 -48 48v128c0 26.5 21.5 48 48 48h128zM176 416\\nc26.5 0 48 -21.5 48 -48v-240c0 -88.4004 -71.5996 -160 -160 -160h-8c-13.2998 0 -24 10.7002 -24 24v48c0 13.2998 10.7002 24 24 24h8c35.2998 0 64 28.7002 64 64v64h-80c-26.5 0 -48 21.5 -48 48v128c0 26.5 21.5 48 48 48h128z\\\" />\\n    <glyph glyph-name=\\\"spinner\\\" unicode=\\\"&#xf110;\\\" \\nd=\\\"M304 400c0 -26.5098 -21.4902 -48 -48 -48s-48 21.4902 -48 48s21.4902 48 48 48s48 -21.4902 48 -48zM256 32c26.5098 0 48 -21.4902 48 -48s-21.4902 -48 -48 -48s-48 21.4902 -48 48s21.4902 48 48 48zM464 240c26.5098 0 48 -21.4902 48 -48s-21.4902 -48 -48 -48\\ns-48 21.4902 -48 48s21.4902 48 48 48zM96 192c0 -26.5098 -21.4902 -48 -48 -48s-48 21.4902 -48 48s21.4902 48 48 48s48 -21.4902 48 -48zM108.922 92.9219c26.5088 0 48 -21.4912 48 -48c0 -26.5098 -21.4902 -48 -48 -48s-48 21.4902 -48 48s21.4902 48 48 48z\\nM403.078 92.9219c26.5098 0 48 -21.4912 48 -48c0 -26.5098 -21.4902 -48 -48 -48s-48 21.4902 -48 48s21.4902 48 48 48zM108.922 387.078c26.5088 0 48 -21.4902 48 -48s-21.4902 -48 -48 -48s-48 21.4902 -48 48s21.4902 48 48 48z\\\" />\\n    <glyph glyph-name=\\\"circle\\\" unicode=\\\"&#xf111;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248z\\\" />\\n    <glyph glyph-name=\\\"smile\\\" unicode=\\\"&#xf118;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM328 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM168 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32\\ns32 14.2998 32 32s-14.2998 32 -32 32zM362.8 101.8c13.5 16.2998 -11.2002 36.7002 -24.5996 20.5c-22.4004 -26.7998 -55.2002 -42.2002 -90.2002 -42.2002s-67.7998 15.3008 -90.2002 42.2002c-13.5996 16.2002 -38.2002 -4.2002 -24.5996 -20.5\\nc28.5 -34.2002 70.2998 -53.7998 114.8 -53.7998s86.2998 19.5996 114.8 53.7998z\\\" />\\n    <glyph glyph-name=\\\"frown\\\" unicode=\\\"&#xf119;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM328 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM168 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32\\ns32 14.2998 32 32s-14.2998 32 -32 32zM338.2 53.7998c13.5 -16.2998 38.0996 4.2002 24.5 20.4004c-28.4004 34.2002 -70.2998 53.7998 -114.7 53.7998s-86.2998 -19.5996 -114.8 -53.7002c-13.5 -16.2998 11.0996 -36.7998 24.5996 -20.5\\nc22.4004 26.7998 55.2998 42.2002 90.2002 42.2002s67.7998 -15.4004 90.2002 -42.2002z\\\" />\\n    <glyph glyph-name=\\\"meh\\\" unicode=\\\"&#xf11a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM168 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM344 80c21.2002 0 21.2002 32 0 32h-192c-21.2002 0 -21.2002 -32 0 -32\\nh192zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"gamepad\\\" unicode=\\\"&#xf11b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M480.07 352c88.2939 -0.0263672 159.952 -71.7061 159.952 -160c0 -88.3203 -71.6797 -160 -160 -160c-37.1016 0 -88.291 21.5039 -114.263 48h-91.5195c-25.9717 -26.4961 -77.1611 -48 -114.263 -48c-88.3203 0 -160 71.6797 -160 160s71.6797 160 160 160h0.0224609\\nh320.07zM248 180v24c0 6.62402 -5.37598 12 -12 12h-52v52c0 6.62402 -5.37598 12 -12 12h-24c-6.62402 0 -12 -5.37598 -12 -12v-52h-52c-6.62402 0 -12 -5.37598 -12 -12v-24c0 -6.62402 5.37598 -12 12 -12h52v-52c0 -6.62402 5.37598 -12 12 -12h24\\nc6.62402 0 12 5.37598 12 12v52h52c6.62402 0 12 5.37598 12 12zM464 104c22.0801 0 40 17.9199 40 40s-17.9199 40 -40 40s-40 -17.9199 -40 -40s17.9199 -40 40 -40zM528 200c22.0801 0 40 17.9199 40 40s-17.9199 40 -40 40s-40 -17.9199 -40 -40s17.9199 -40 40 -40z\\n\\\" />\\n    <glyph glyph-name=\\\"keyboard\\\" unicode=\\\"&#xf11c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 0h-480c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h480c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48zM128 268v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40\\nc0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM224 268v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM320 268v40c0 6.62695 -5.37305 12 -12 12h-40\\nc-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM416 268v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM512 268v40\\nc0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM176 172v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40\\nc6.62695 0 12 5.37305 12 12zM272 172v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM368 172v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40\\nc0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM464 172v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM128 76v40c0 6.62695 -5.37305 12 -12 12h-40\\nc-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM416 76v40c0 6.62695 -5.37305 12 -12 12h-232c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h232c6.62695 0 12 5.37305 12 12zM512 76v40\\nc0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12z\\\" />\\n    <glyph glyph-name=\\\"flag-checkered\\\" unicode=\\\"&#xf11e;\\\" \\nd=\\\"M243.2 258.1c24.2002 -6.69922 47.5996 -16.3994 73.5996 -22.1992v-68.2002c-24.2998 6.7002 -47.5 16.3994 -73.5996 22.2998v68.0996zM466.5 381.1c21.2002 9.80078 45.5 -5.69922 45.4004 -29v-243.1c0 -10.5996 -5.10059 -20.4004 -13.8008 -26.4004\\nc-35.7998 -24.5996 -74.2998 -40.8994 -122.5 -40.8994c-67.3994 0 -111.6 34.7998 -165.199 34.7998c-50.8008 0 -86.1006 -10 -114.4 -22.0996v-94.4004c0 -13.2998 -10.7002 -24 -24 -24h-16c-13.2998 0 -24 10.7002 -24 24v386.1c-14.5 10.1006 -24 26.9004 -24 45.9004\\nc0 31.7002 26.2998 57.2998 58.2998 56c28.5 -1.2002 51.7998 -24 53.6006 -52.4004c0.5 -8.39941 -0.800781 -16.2998 -3.60059 -23.5996c20.7002 7.59961 43 12 68 12c67.4004 0 111.7 -34.7998 165.2 -34.7998c40.5 0 82.7002 16 117 31.8994zM169.6 122.5v71.2998\\nc-26.0996 -2.39941 -47.3994 -8.09961 -73.5996 -17.3994v-70.5c23.5996 8.39941 47.7998 13.8994 73.5996 16.5996zM464 257v70.5c-21.2998 -8.90039 -46.5996 -17.7002 -73.5996 -22.5v-71.9004c-26 -4.19922 -49.9004 -2.59961 -73.6006 2.7002v68.4004\\nc-26.3994 4.59961 -49.8994 13.8994 -73.5996 21.2998v-67.4004c-25.2002 7 -46.6006 9.40039 -73.6006 5.7002v71.6006c-23.5 -2.2002 -40.3994 -9.80078 -73.5996 -22v-70.5c29 10.6992 51.2002 17.7998 73.5996 20.8994v-70c32.8008 3 53.9004 0.600586 73.6006 -3.7998\\nv-68.5c26.2998 -4.59961 49.7002 -13.9004 73.5996 -21.2998v67.3994c25.7002 -7.09961 46.6006 -9.2998 73.6006 -5.59961v-71.5996c25.0996 2.39941 48.5 11 73.5996 27.0996v70.5c-22.2002 -14.2002 -48.7998 -22.5996 -73.5996 -26v71.0996\\nc27.2998 4.40039 50 14.1006 73.5996 23.9004z\\\" />\\n    <glyph glyph-name=\\\"terminal\\\" unicode=\\\"&#xf120;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M257.981 175.029l-194.344 -194.344c-9.37305 -9.37207 -24.5684 -9.37207 -33.9404 0l-22.668 22.667c-9.35742 9.35742 -9.375 24.5225 -0.0400391 33.9014l154.021 154.746l-154.021 154.745c-9.33496 9.37891 -9.31738 24.5439 0.0400391 33.9014l22.667 22.667\\nc9.37305 9.37207 24.5684 9.37207 33.9404 0l194.344 -194.344c9.37207 -9.37207 9.37207 -24.5674 0 -33.9404zM640 -8c0 -13.2549 -10.7451 -24 -24 -24h-304c-13.2549 0 -24 10.7451 -24 24v32c0 13.2549 10.7451 24 24 24h304c13.2549 0 24 -10.7451 24 -24v-32z\\\" />\\n    <glyph glyph-name=\\\"code\\\" unicode=\\\"&#xf121;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M278.9 -63.5l-61 17.7002c-6.40039 1.7998 -10 8.5 -8.2002 14.8994l136.5 470.2c1.7998 6.40039 8.5 10 14.8994 8.2002l61 -17.7002c6.40039 -1.7998 10 -8.5 8.2002 -14.8994l-136.5 -470.2c-1.89941 -6.40039 -8.5 -10.1006 -14.8994 -8.2002zM164.9 48.7002\\nc-4.5 -4.90039 -12.1006 -5.10059 -17 -0.5l-144.101 135.1c-5.09961 4.7002 -5.09961 12.7998 0 17.5l144.101 135c4.89941 4.60059 12.5 4.2998 17 -0.5l43.5 -46.3994c4.69922 -4.90039 4.2998 -12.7002 -0.800781 -17.2002l-90.5996 -79.7002l90.5996 -79.7002\\nc5.10059 -4.5 5.40039 -12.2998 0.800781 -17.2002zM492.1 48.0996c-4.89941 -4.5 -12.5 -4.2998 -17 0.600586l-43.5 46.3994c-4.69922 4.90039 -4.2998 12.7002 0.800781 17.2002l90.5996 79.7002l-90.5996 79.7998c-5.10059 4.5 -5.40039 12.2998 -0.800781 17.2002\\nl43.5 46.4004c4.60059 4.7998 12.2002 5 17 0.5l144.101 -135.2c5.09961 -4.7002 5.09961 -12.7998 0 -17.5z\\\" />\\n    <glyph glyph-name=\\\"reply-all\\\" unicode=\\\"&#xf122;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M136.309 258.164l176.005 151.985c15.4062 13.3047 39.6865 2.50293 39.6865 -18.1641v-82.7637c129.182 -10.2305 224 -52.2119 224 -183.548c0 -61.4404 -39.582 -122.309 -83.333 -154.132c-13.6533 -9.93066 -33.1113 2.5332 -28.0771 18.6309\\nc38.5117 123.162 -3.92188 169.482 -112.59 182.016v-84.1758c0 -20.7012 -24.2998 -31.4531 -39.6865 -18.1641l-176.005 151.987c-11.0703 9.56152 -11.0859 26.7529 0 36.3281zM8.30859 221.836c-11.0703 9.56152 -11.0859 26.7529 0 36.3281l176.005 151.985\\nc15.4062 13.3047 39.6865 2.50293 39.6865 -18.1641v-15.8174l-108.607 -93.7861c-10.7041 -9.23926 -19.3926 -28.2158 -19.3926 -42.3564v-0.0234375v-0.0244141c0 -14.1416 8.68848 -33.1191 19.3936 -42.3604l108.606 -93.7852v-15.8184\\nc0 -20.7002 -24.2998 -31.4531 -39.6865 -18.1641z\\\" />\\n    <glyph glyph-name=\\\"location-arrow\\\" unicode=\\\"&#xf124;\\\" \\nd=\\\"M444.52 444.48c38.3809 16 79.9609 -25.5801 63.9707 -63.9707l-191.9 -415.779c-22.3896 -47.9805 -92.75 -31.9805 -92.75 19.1895v175.91h-175.91c-51.1699 0 -67.1602 70.3604 -19.1895 92.75z\\\" />\\n    <glyph glyph-name=\\\"crop\\\" unicode=\\\"&#xf125;\\\" \\nd=\\\"M488 96c13.25 0 24 -10.7402 24 -24v-48c0 -13.25 -10.75 -24 -24 -24h-40v-40c0 -13.25 -10.75 -24 -24 -24h-48c-13.25 0 -24 10.75 -24 24v282.75l-146.75 -146.75h114.75v-96h-232c-13.25 0 -24 10.75 -24 24v264h-40c-13.25 0 -24 10.75 -24 24v48\\nc0 13.2598 10.75 24 24 24h40v40c0 13.2598 10.75 24 24 24h48c13.25 0 24 -10.7402 24 -24v-282.75l146.75 146.75h-114.75v96h210.75l59.3096 59.3096c6.25 6.25 16.3809 6.25 22.6309 0l22.6191 -22.6191c6.25 -6.25 6.25 -16.3809 0 -22.6309l-59.3096 -59.3096v-242.75\\nh40z\\\" />\\n    <glyph glyph-name=\\\"code-branch\\\" unicode=\\\"&#xf126;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 304c0 -35.2002 -22.7998 -65.0996 -54.4004 -75.9004c-0.5 -28.0996 -7.59961 -50.5 -21.5996 -67.8994c-28.2002 -35 -76 -39.5 -118.2 -43.4004c-25.7002 -2.39941 -49.8994 -4.59961 -66.0996 -12.7998c-7.10059 -3.59961 -11.7998 -8.2002 -14.9004 -13.4004\\nc30 -11.5 51.2002 -40.5996 51.2002 -74.5996c0 -44.2002 -35.7998 -80 -80 -80s-80 35.7998 -80 80c0 35.7998 23.5 66.0996 56 76.4004v199.3c-32.5 10.2002 -56 40.5 -56 76.2998c0 44.2002 35.7998 80 80 80s80 -35.7998 80 -80c0 -35.7998 -23.5 -66.0996 -56 -76.2998\\nv-144c23.9004 11.5 53.0996 14.2998 81.2998 16.8994c35.9004 3.30078 69.7998 6.5 85.2002 25.7002c6.7998 8.40039 10.4004 20.7998 11 36.9004c-33.2002 9.7002 -57.5 40.3994 -57.5 76.7998c0 44.2002 35.7998 80 80 80s80 -35.7998 80 -80zM80 384\\nc-8.7998 0 -16 -7.2002 -16 -16s7.2002 -16 16 -16s16 7.2002 16 16s-7.2002 16 -16 16zM80 0c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM304 320c-8.7998 0 -16 -7.2002 -16 -16s7.2002 -16 16 -16s16 7.2002 16 16\\ns-7.2002 16 -16 16z\\\" />\\n    <glyph glyph-name=\\\"unlink\\\" unicode=\\\"&#xf127;\\\" \\nd=\\\"M304.083 42.0928c4.68555 -4.68555 4.68555 -12.2842 0 -16.9707l-44.6738 -44.6738c-59.2627 -59.2627 -155.693 -59.2666 -214.961 0c-59.2646 59.2646 -59.2646 155.695 0 214.96l44.6748 44.6748c4.68555 4.68555 12.2842 4.68555 16.9707 0l39.5986 -39.5977\\nc4.68555 -4.68652 4.68555 -12.2842 0 -16.9717l-44.6758 -44.6738c-28.0713 -28.0732 -28.0713 -73.75 0 -101.823c28.0723 -28.0713 73.75 -28.0723 101.824 0l44.6738 44.6748c4.68652 4.68555 12.2842 4.68555 16.9717 0zM247.515 302.309l-39.5967 39.5986\\nc-4.68555 4.68652 -4.68555 12.2852 0 16.9707l44.6738 44.6738c59.2666 59.2646 155.695 59.2646 214.961 0s59.2656 -155.694 0 -214.96l-44.6748 -44.6748c-4.68652 -4.68555 -12.2852 -4.68555 -16.9707 0l-39.5986 39.5977c-4.68555 4.6875 -4.68555 12.2852 0 16.9717\\nl44.6758 44.6738c28.0713 28.0732 28.0713 73.75 0 101.823c-28.0742 28.0723 -73.752 28.0742 -101.824 0l-44.6738 -44.6748c-4.6875 -4.68555 -12.2852 -4.68555 -16.9717 0zM482.343 -56.9707c-9.37207 -9.37207 -24.5674 -9.37207 -33.9404 0l-441.373 441.373\\nc-9.37305 9.37207 -9.37305 24.5674 0 33.9404l22.6279 22.6279c9.37207 9.37305 24.5674 9.37305 33.9404 0l441.372 -441.374c9.37305 -9.37207 9.37305 -24.5674 0 -33.9404z\\\" />\\n    <glyph glyph-name=\\\"question\\\" unicode=\\\"&#xf128;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M202.021 448c84.8809 0 175.482 -66.2559 175.481 -153.6c0 -115.982 -125.268 -117.768 -125.268 -160.627v-5.77344c0 -13.2549 -10.7451 -24 -24 -24h-72.4717c-13.2549 0 -24 10.7451 -24 24v9.78809c0 61.8291 46.876 86.5449 82.2998 106.405\\nc30.376 17.0293 48.9922 28.6113 48.9922 51.1641c0 29.832 -38.0518 49.6309 -68.8154 49.6309c-39.127 0 -57.708 -18.0684 -82.7568 -49.4492c-8.12109 -10.1738 -22.8809 -12.0127 -33.2529 -4.14844l-43.1387 32.709c-10.2705 7.78809 -12.541 22.2939 -5.17773 32.874\\nc40.5889 58.3232 92.2881 91.0264 172.107 91.0264zM192 74.541c38.1963 0 69.2715 -31.0742 69.2715 -69.2695c0 -38.1963 -31.0752 -69.2715 -69.2715 -69.2715s-69.2715 31.0752 -69.2715 69.2695c0 38.1963 31.0752 69.2715 69.2715 69.2715z\\\" />\\n    <glyph glyph-name=\\\"info\\\" unicode=\\\"&#xf129;\\\" horiz-adv-x=\\\"192\\\" \\nd=\\\"M20 23.7715h20v144.457h-20c-11.0459 0 -20 8.9541 -20 20v47.7715c0 11.0459 8.9541 20 20 20h112c11.0459 0 20 -8.9541 20 -20v-212.229h20c11.0459 0 20 -8.9541 20 -20v-47.7715c0 -11.0459 -8.9541 -20 -20 -20h-152c-11.0459 0 -20 8.9541 -20 20v47.7715\\nc0 11.0459 8.9541 20 20 20zM96 448c39.7637 0 72 -32.2354 72 -72s-32.2354 -72 -72 -72s-72 32.2354 -72 72s32.2354 72 72 72z\\\" />\\n    <glyph glyph-name=\\\"exclamation\\\" unicode=\\\"&#xf12a;\\\" horiz-adv-x=\\\"192\\\" \\nd=\\\"M176 16c0 -44.1123 -35.8877 -80 -80 -80s-80 35.8877 -80 80s35.8877 80 80 80s80 -35.8877 80 -80zM25.2598 422.801c-0.68457 13.709 10.2441 25.1992 23.9707 25.1992h93.5391c13.7266 0 24.6553 -11.4902 23.9707 -25.1992l-13.6006 -272\\nc-0.638672 -12.7725 -11.1807 -22.8008 -23.9697 -22.8008h-66.3398c-12.7891 0 -23.3311 10.0283 -23.9697 22.8008z\\\" />\\n    <glyph glyph-name=\\\"superscript\\\" unicode=\\\"&#xf12b;\\\" \\nd=\\\"M496 288c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h16v96h-16c-8.82422 0.0078125 -15.9863 7.17578 -15.9863 16c0 2.08984 0.759766 5.30176 1.69629 7.16992l16 32\\nc2.44141 4.87012 8.84277 8.8252 14.29 8.83008h48c8.83203 0 16 -7.16797 16 -16v-144h16zM336 384c8.83203 0 16 -7.16797 16 -16v-48c0 -8.83203 -7.16797 -16 -16 -16h-33.4805l-77.8096 -112l77.8096 -112h33.4805c8.83203 0 16 -7.16797 16 -16v-48\\nc0 -8.83203 -7.16797 -16 -16 -16h-67c-4.58984 0.0224609 -10.4404 3.10059 -13.0596 6.87012l-79.9004 115l-79.9004 -115c-2.63477 -3.79199 -8.52148 -6.87012 -13.1387 -6.87012h-0.000976562h-67c-8.83203 0 -16 7.16797 -16 16v48c0 8.83203 7.16797 16 16 16\\nh33.4805l77.8096 112l-77.8096 112h-33.4805c-8.83203 0 -16 7.16797 -16 16v48c0 8.83203 7.16797 16 16 16h67c4.58984 -0.0224609 10.4404 -3.10059 13.0596 -6.87012l79.9004 -115l79.9004 115c2.63477 3.79199 8.52148 6.87012 13.1387 6.87012h0.000976562h67z\\\" />\\n    <glyph glyph-name=\\\"subscript\\\" unicode=\\\"&#xf12c;\\\" \\nd=\\\"M496 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h16v96h-16c-8.82422 0.0078125 -15.9863 7.17578 -15.9863 16c0 2.08984 0.759766 5.30176 1.69629 7.16992l16 32\\nc2.44141 4.87012 8.84277 8.8252 14.29 8.83008h48c8.83203 0 16 -7.16797 16 -16v-144h16zM336 384c8.83203 0 16 -7.16797 16 -16v-48c0 -8.83203 -7.16797 -16 -16 -16h-33.4805l-77.8096 -112l77.8096 -112h33.4805c8.83203 0 16 -7.16797 16 -16v-48\\nc0 -8.83203 -7.16797 -16 -16 -16h-67c-4.58984 0.0224609 -10.4404 3.10059 -13.0596 6.87012l-79.9004 115l-79.9004 -115c-2.63477 -3.79199 -8.52148 -6.87012 -13.1387 -6.87012h-0.000976562h-67c-8.83203 0 -16 7.16797 -16 16v48c0 8.83203 7.16797 16 16 16\\nh33.4805l77.8096 112l-77.8096 112h-33.4805c-8.83203 0 -16 7.16797 -16 16v48c0 8.83203 7.16797 16 16 16h67c4.58984 -0.0224609 10.4404 -3.10059 13.0596 -6.87012l79.9004 -115l79.9004 115c2.63477 3.79199 8.52148 6.87012 13.1387 6.87012h0.000976562h67z\\\" />\\n    <glyph glyph-name=\\\"eraser\\\" unicode=\\\"&#xf12d;\\\" \\nd=\\\"M497.941 174.059l-142.059 -142.059h144.117c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-356c-10.9756 0 -26.1816 6.29883 -33.9424 14.0586l-96 96c-18.7441 18.7451 -18.7441 49.1377 0 67.8828l256 256\\nc18.7471 18.7451 49.1387 18.7441 67.8838 0l160 -160c18.7441 -18.7451 18.7441 -49.1377 0 -67.8828zM195.314 236.686l-124.687 -124.686l80 -80h114.745l67.3135 67.3135z\\\" />\\n    <glyph glyph-name=\\\"puzzle-piece\\\" unicode=\\\"&#xf12e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M519.442 159.349c37.5957 0 56.5576 -31.5928 56.5576 -65.792c0 -33.5469 -19.2881 -61.5566 -54.9229 -61.5557c-39.8848 0 -50.3457 36.1523 -86.3086 36.1523c-60.5518 0 -25.8262 -120.102 -25.8262 -120.102c-51.5557 0 -181.23 -35.0732 -181.23 25.7305\\nc0 35.8271 36.2881 46.25 36.2881 85.9844c0 35.501 -28.1152 54.7178 -61.7881 54.7178c-34.3271 0 -63.5771 -18.8906 -63.5771 -56.3467c0 -41.3633 40 -58.998 40 -81.4707c0 -69.709 -178.635 -28.6621 -178.635 -28.6621v333.237s175.885 -40.9609 175.884 28.6621\\nc0 22.4727 -31.7109 40.3857 -31.7109 81.75c0 37.4551 31.7119 56.3457 66.3662 56.3457c33.3457 0 61.4609 -19.2158 61.4609 -54.7178c0 -39.7354 -36.2881 -50.1582 -36.2881 -85.9854c0 -83.2969 196.288 -3.29688 196.288 -3.29688\\ns-54.5908 -176.244 5.38379 -176.244c22.5586 0 40.5391 31.5928 82.0586 31.5928z\\\" />\\n    <glyph glyph-name=\\\"microphone\\\" unicode=\\\"&#xf130;\\\" horiz-adv-x=\\\"352\\\" \\nd=\\\"M176 96c-53.0195 0 -96 42.9805 -96 96v160c0 53.0195 42.9805 96 96 96s96 -42.9805 96 -96v-160c0 -53.0195 -42.9805 -96 -96 -96zM336 256c8.83984 0 16 -7.16016 16 -16v-48c0 -88.9004 -66.29 -162.47 -152 -174.23v-33.7695h56c8.83984 0 16 -7.16016 16 -16v-16\\nc0 -8.83984 -7.16016 -16 -16 -16h-160c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h56v34.1504c-88.0303 12.1396 -152 92.0498 -152 181.689v40.1602c0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-42.2998\\nc0 -66.8105 48.71 -126.59 115.21 -133.08c76.2998 -7.44043 140.79 52.5801 140.79 127.38v48c0 8.83984 7.16016 16 16 16h16z\\\" />\\n    <glyph glyph-name=\\\"microphone-slash\\\" unicode=\\\"&#xf131;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.82 -10.0996c6.97949 -5.43066 8.22949 -15.4805 2.81934 -22.4502l-19.6396 -25.2705c-5.42969 -6.97949 -15.4805 -8.23926 -22.46 -2.80957l-588.36 454.729c-6.97949 5.43066 -8.22949 15.4805 -2.80957 22.4502l19.6396 25.2705\\nc5.41992 6.97949 15.4805 8.22949 22.46 2.80957l178.54 -137.99v45.3604c0 53.0195 42.9805 96 96 96c53.0205 0 96 -42.9805 96 -96v-160.01c0 -10.4502 -2.17969 -20.2705 -5.2793 -29.6699l26.5498 -20.5205c6.75977 15.4004 10.7197 32.2803 10.7197 50.2002v48\\nc0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-48c0 -29.0098 -7.38965 -56.1299 -19.9805 -80.1396zM400 -16c8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16h-160c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h56\\nv34.1504c-88.0303 12.1396 -152 92.0498 -152 181.689v6.85059l52.0303 -40.2305c12.4395 -53.2197 55.3301 -96.4004 111.18 -101.85c6.94043 -0.669922 13.6396 -0.200195 20.3496 0.199219l50.1104 -38.7295c-10.8203 -3.77051 -22.0098 -6.70996 -33.6699 -8.31055\\nv-33.7695h56z\\\" />\\n    <glyph glyph-name=\\\"calendar\\\" unicode=\\\"&#xf133;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M12 256h424c6.59961 0 12 -5.40039 12 -12v-260c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v260c0 6.59961 5.40039 12 12 12zM448 300c0 -6.59961 -5.40039 -12 -12 -12h-424c-6.59961 0 -12 5.40039 -12 12v36c0 26.5 21.5 48 48 48h48v52\\nc0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48v-36z\\\" />\\n    <glyph glyph-name=\\\"fire-extinguisher\\\" unicode=\\\"&#xf134;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M434.027 421.671c7.31445 1.21875 13.9727 -4.4209 13.9727 -11.8369v-115.668c0 -7.41602 -6.6582 -13.0557 -13.9727 -11.8369l-168 28c-11.7305 1.95508 -10.0273 14.6973 -10.0273 17.6709h-40v-27.0303c41.4043 -10.6582 72 -48.2383 72 -92.9697v-248\\nc0 -13.2549 -10.7451 -24 -24 -24h-144c-13.2549 0 -24 10.7451 -24 24v246.795c0 44.8945 30.457 83.2666 72 94.1289v27.0762c-61.0361 0 -92.9424 7.00977 -121.711 -64.9141c-4.91699 -12.2949 -18.8789 -18.2959 -31.1963 -13.3701\\nc-12.3066 4.92285 -18.293 18.8906 -13.3701 31.1973c14.668 36.6709 38.0107 77.833 90.0498 90.8838c-14.1406 36.5273 12.793 76.2031 52.2275 76.2031c37.4463 0 64.3525 -36.1084 53.668 -72h58.332c0 4.2002 -1.30664 15.7822 10.0273 17.6709zM144 376\\nc8.82227 0 16 7.17773 16 16s-7.17773 16 -16 16s-16 -7.17773 -16 -16s7.17773 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"rocket\\\" unicode=\\\"&#xf135;\\\" \\nd=\\\"M505.12 428.906c6.95508 -32.2031 6.95508 -57.4062 6.86133 -82.6094c0 -102.688 -55.4375 -164.781 -128.035 -211.094v-104.438c0 -16.3594 -11.8789 -35.5625 -26.5078 -42.8594l-98.7275 -49.3906c-2.81934 -1.27441 -7.61621 -2.40137 -10.707 -2.51562\\nc-13.2471 0.00195312 -24.002 10.7539 -24.0059 24v103.844l-22.4746 -22.4688c-13.1211 -13.1562 -34.1211 -11.1875 -45.2773 0l-50.9043 50.9062c-12.9961 12.9922 -11.3652 33.8887 0 45.25l22.4746 22.4688h-103.811c-13.2461 0.00195312 -24.001 10.7539 -24.0059 24\\nc0.111328 3.09082 1.23828 7.88574 2.51562 10.7031l49.4355 98.8125c7.33008 14.6094 26.5391 26.4688 42.8867 26.4844h104.215c46.2168 72.7969 108.122 128 211.354 128c25.0996 0 50.3086 0 82.5059 -6.90625c5.54883 -1.1875 11.0176 -6.65625 12.207 -12.1875z\\nM384.04 280c22.0732 0.0078125 39.9971 17.9277 40.0098 40c0 22.0801 -17.9199 40 -40 40s-40 -17.9199 -40 -40c0 -22.0742 17.916 -39.9951 39.9902 -40z\\\" />\\n    <glyph glyph-name=\\\"chevron-circle-left\\\" unicode=\\\"&#xf137;\\\" \\nd=\\\"M256 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM142.1 175l135.5 -135.5c9.40039 -9.40039 24.6006 -9.40039 33.9004 0l17 17c9.40039 9.40039 9.40039 24.5996 0 33.9004l-101.6 101.6l101.6 101.6\\nc9.40039 9.40039 9.40039 24.6006 0 33.9004l-17 17c-9.40039 9.40039 -24.5996 9.40039 -33.9004 0l-135.5 -135.5c-9.39941 -9.40039 -9.39941 -24.5996 0 -34z\\\" />\\n    <glyph glyph-name=\\\"chevron-circle-right\\\" unicode=\\\"&#xf138;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM369.9 209l-135.5 135.5c-9.40039 9.40039 -24.6006 9.40039 -33.9004 0l-17 -17c-9.40039 -9.40039 -9.40039 -24.5996 0 -33.9004l101.6 -101.6l-101.6 -101.6\\nc-9.40039 -9.40039 -9.40039 -24.6006 0 -33.9004l17 -17c9.40039 -9.40039 24.5996 -9.40039 33.9004 0l135.5 135.5c9.39941 9.40039 9.39941 24.5996 0 34z\\\" />\\n    <glyph glyph-name=\\\"chevron-circle-up\\\" unicode=\\\"&#xf139;\\\" \\nd=\\\"M8 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM239 305.9l-135.5 -135.5c-9.40039 -9.40039 -9.40039 -24.6006 0 -33.9004l17 -17c9.40039 -9.40039 24.5996 -9.40039 33.9004 0l101.6 101.6l101.6 -101.6\\nc9.40039 -9.40039 24.6006 -9.40039 33.9004 0l17 17c9.40039 9.40039 9.40039 24.5996 0 33.9004l-135.5 135.5c-9.40039 9.39941 -24.5996 9.39941 -34 0z\\\" />\\n    <glyph glyph-name=\\\"chevron-circle-down\\\" unicode=\\\"&#xf13a;\\\" \\nd=\\\"M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM273 78.0996l135.5 135.5c9.40039 9.40039 9.40039 24.6006 0 33.9004l-17 17c-9.40039 9.40039 -24.5996 9.40039 -33.9004 0l-101.6 -101.6l-101.6 101.6\\nc-9.40039 9.40039 -24.6006 9.40039 -33.9004 0l-17 -17c-9.40039 -9.40039 -9.40039 -24.5996 0 -33.9004l135.5 -135.5c9.40039 -9.39941 24.5996 -9.39941 34 0z\\\" />\\n    <glyph glyph-name=\\\"anchor\\\" unicode=\\\"&#xf13d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M12.9707 96c-10.6904 0 -16.0449 12.9258 -8.48535 20.4854l67.0283 67.0283c4.6875 4.68652 12.2852 4.68652 16.9717 0l67.0283 -67.0283c7.56055 -7.55957 2.20605 -20.4854 -8.48438 -20.4854h-35.1465c20.2969 -54.3359 85.1816 -86.6162 144.117 -94.0146v190.015\\nh-52c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h52v5.46973c-37.2842 13.1807 -64 48.7324 -64 90.5303c0 53.4746 43.7227 96.7393 97.3701 95.9902c52.2354 -0.728516 94.6348 -43.7627 94.6289 -96.002\\nc-0.00488281 -41.793 -26.7188 -77.3398 -64 -90.5186v-5.46973h52c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-52v-190.015c59.1543 7.42676 123.827 39.6973 144.117 94.0146h-35.1465c-10.6904 0 -16.0449 12.9248 -8.48438 20.4854\\nl67.0283 67.0283c4.6875 4.68652 12.2852 4.68652 16.9717 0l67.0283 -67.0283c7.56055 -7.55957 2.20605 -20.4854 -8.48438 -20.4854h-32.3945c-21.7822 -102.62 -136.406 -160 -242.635 -160c-106.056 0 -220.828 57.2646 -242.635 160h-32.3945zM288 384\\nc-17.6445 0 -32 -14.3555 -32 -32s14.3555 -32 32 -32s32 14.3555 32 32s-14.3555 32 -32 32z\\\" />\\n    <glyph glyph-name=\\\"unlock-alt\\\" unicode=\\\"&#xf13e;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 192c26.5 0 48 -21.5 48 -48v-160c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v160c0 26.5 21.5 48 48 48h24v102.5c0 84 67.5 153.2 151.5 153.5s152.5 -68 152.5 -152v-16c0 -13.2998 -10.7002 -24 -24 -24h-32c-13.2998 0 -24 10.7002 -24 24v16\\nc0 39.9004 -32.7002 72.4004 -72.7002 72c-39.5996 -0.400391 -71.2998 -33.2998 -71.2998 -72.9004v-103.1h248zM264 40v48c0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-48c0 -22.0996 17.9004 -40 40 -40s40 17.9004 40 40z\\\" />\\n    <glyph glyph-name=\\\"bullseye\\\" unicode=\\\"&#xf140;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 8c101.71 0 184 82.3096 184 184c0 101.71 -82.3096 184 -184 184c-101.71 0 -184 -82.3096 -184 -184c0 -101.71 82.3096 -184 184 -184zM248 320\\nc70.6904 0 128 -57.3096 128 -128s-57.3096 -128 -128 -128s-128 57.3096 -128 128s57.3096 128 128 128zM248 128c35.29 0 64 28.71 64 64s-28.71 64 -64 64s-64 -28.71 -64 -64s28.71 -64 64 -64z\\\" />\\n    <glyph glyph-name=\\\"ellipsis-h\\\" unicode=\\\"&#xf141;\\\" \\nd=\\\"M328 192c0 -39.7998 -32.2002 -72 -72 -72s-72 32.2002 -72 72s32.2002 72 72 72s72 -32.2002 72 -72zM432 264c39.7998 0 72 -32.2002 72 -72s-32.2002 -72 -72 -72s-72 32.2002 -72 72s32.2002 72 72 72zM80 264c39.7998 0 72 -32.2002 72 -72s-32.2002 -72 -72 -72\\ns-72 32.2002 -72 72s32.2002 72 72 72z\\\" />\\n    <glyph glyph-name=\\\"ellipsis-v\\\" unicode=\\\"&#xf142;\\\" horiz-adv-x=\\\"192\\\" \\nd=\\\"M96 264c39.7998 0 72 -32.2002 72 -72s-32.2002 -72 -72 -72s-72 32.2002 -72 72s32.2002 72 72 72zM24 368c0 39.7998 32.2002 72 72 72s72 -32.2002 72 -72s-32.2002 -72 -72 -72s-72 32.2002 -72 72zM24 16c0 39.7998 32.2002 72 72 72s72 -32.2002 72 -72\\ns-32.2002 -72 -72 -72s-72 32.2002 -72 72z\\\" />\\n    <glyph glyph-name=\\\"rss-square\\\" unicode=\\\"&#xf143;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352zM112 32c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM269.533 32\\nc6.53516 0 11.7764 5.46777 11.4248 11.9941c-5.9668 110.428 -94.418 198.99 -204.964 204.964c-6.52637 0.351562 -11.9941 -4.88965 -11.9941 -11.4248v-34.335c0 -6.00977 4.63574 -11.0508 10.6328 -11.4414c79.8799 -5.20312 143.909 -69.0732 149.123 -149.123\\nc0.391602 -5.99805 5.43066 -10.6338 11.4424 -10.6338h34.335zM372.56 32c6.4541 0 11.6641 5.33789 11.4326 11.7871c-5.99512 167.014 -140.375 302.18 -308.205 308.205c-6.44922 0.231445 -11.7871 -4.97852 -11.7871 -11.4326v-34.334\\nc0 -6.16016 4.88184 -11.1748 11.0391 -11.4277c136.556 -5.59863 246.162 -115.225 251.76 -251.76c0.251953 -6.15625 5.2666 -11.0381 11.4268 -11.0381h34.334z\\\" />\\n    <glyph glyph-name=\\\"play-circle\\\" unicode=\\\"&#xf144;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM371.7 168c16.3994 9.09961 16.3994 32.7998 0 42l-176 107c-15.9004 8.7998 -35.7002 -2.59961 -35.7002 -21v-208c0 -18.5 19.9004 -29.7998 35.7002 -21z\\\" />\\n    <glyph glyph-name=\\\"minus-square\\\" unicode=\\\"&#xf146;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM92 152h264c6.59961 0 12 5.40039 12 12v56c0 6.59961 -5.40039 12 -12 12h-264c-6.59961 0 -12 -5.40039 -12 -12v-56\\nc0 -6.59961 5.40039 -12 12 -12z\\\" />\\n    <glyph glyph-name=\\\"check-square\\\" unicode=\\\"&#xf14a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 -32h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48zM195.314 66.0586l184 184c6.24707 6.24805 6.24707 16.3799 0 22.627l-22.6279 22.6279\\nc-6.24707 6.24707 -16.3789 6.24805 -22.6279 0l-150.059 -150.059l-70.0586 70.0596c-6.24805 6.24707 -16.3799 6.24707 -22.6279 0l-22.6279 -22.6279c-6.24707 -6.24707 -6.24707 -16.3789 0 -22.627l104 -104c6.24902 -6.25 16.3799 -6.25 22.6289 -0.000976562z\\\" />\\n    <glyph glyph-name=\\\"pen-square\\\" unicode=\\\"&#xf14b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 -32h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48zM238.1 270.1l-135.699 -135.699l-6.30078 -57.1006c-0.799805 -7.59961 5.60059 -14.0996 13.3008 -13.2998l57.0996 6.2998l135.7 135.7\\nc2.2998 2.2998 2.2998 6.09961 0 8.5l-55.5 55.5c-2.5 2.40039 -6.2998 2.40039 -8.60059 0.0996094zM345 282.9l-30.0996 30.0996c-9.40039 9.40039 -24.6006 9.40039 -33.9004 0l-23.0996 -23.0996c-2.30078 -2.30078 -2.30078 -6.10059 0 -8.5l55.5 -55.5\\nc2.2998 -2.30078 6.09961 -2.30078 8.5 0l23.0996 23.0996c9.2998 9.2998 9.2998 24.5 0 33.9004z\\\" />\\n    <glyph glyph-name=\\\"share-square\\\" unicode=\\\"&#xf14d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M568.482 270.552l-144.004 -135.984c-15.1787 -14.335 -40.4785 -3.70703 -40.4785 17.4473v71.9629c-144.575 -0.969727 -205.566 -35.1123 -164.775 -171.353c4.4834 -14.9727 -12.8457 -26.5674 -25.0059 -17.3301\\nc-38.9668 29.5996 -74.2188 86.2168 -74.2188 143.366c0 143.937 117.599 172.5 264 173.312v72.0156c0 21.1738 25.3174 31.7676 40.4785 17.4473l144.004 -135.987c10.0195 -9.46289 10.0273 -25.4248 0 -34.8965zM384 68.8721c0 7.34473 6.53027 12.9053 13.7998 11.8594\\nc2.81152 -0.405273 7.39844 -0.734375 10.2393 -0.734375c6.80469 0 17.5342 1.8418 23.9502 4.11133c7.81348 2.76367 16.0107 -3.01465 16.0107 -11.3027v-88.8057c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48\\nh121.033c12.5508 0 16.6748 -16.8301 5.54492 -22.6309c-18.7773 -9.78613 -36.0615 -22.1084 -51.0137 -37.6758c-1.95312 -2.03711 -5.82715 -3.69141 -8.64844 -3.69336h-50.916v-320h320v68.8721z\\\" />\\n    <glyph glyph-name=\\\"compass\\\" unicode=\\\"&#xf14e;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M225.38 214.63c12.4902 12.4902 32.75 12.4902 45.25 0s12.5 -32.75 0 -45.25c-12.4902 -12.5 -32.7598 -12.5 -45.25 0c-12.5 12.4902 -12.5 32.75 0 45.25zM248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248z\\nM374.14 291.95c7.61035 16.6494 -9.54004 33.7998 -26.1895 26.2002l-144.34 -65.9707c-5.97461 -2.73047 -13.04 -9.7959 -15.7705 -15.7695l-65.9795 -144.351c-7.61035 -16.6494 9.5498 -33.8096 26.1992 -26.1992l144.341 65.9697\\nc5.97363 2.73047 13.0391 9.7959 15.7695 15.7695z\\\" />\\n    <glyph glyph-name=\\\"caret-square-down\\\" unicode=\\\"&#xf150;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM92.5 227.5l123 -123c4.7002 -4.7002 12.2998 -4.7002 17 0l123 123c7.59961 7.59961 2.2002 20.5 -8.5 20.5h-246\\nc-10.7002 0 -16.0996 -12.9004 -8.5 -20.5z\\\" />\\n    <glyph glyph-name=\\\"caret-square-up\\\" unicode=\\\"&#xf151;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0 16v352c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48zM355.515 156.485l-123.029 123.029c-4.68652 4.68652 -12.2842 4.68652 -16.9717 0l-123.028 -123.029\\nc-7.56055 -7.56055 -2.20605 -20.4854 8.48438 -20.4854h246.06c10.6904 0 16.0449 12.9258 8.48535 20.4854z\\\" />\\n    <glyph glyph-name=\\\"caret-square-right\\\" unicode=\\\"&#xf152;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M48 416h352c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48zM188.485 60.4854l123.028 123.028c4.68652 4.68652 4.68652 12.2842 0 16.9717l-123.028 123.029\\nc-7.56055 7.56055 -20.4854 2.20605 -20.4854 -8.48438v-246.06c0 -10.6904 12.9258 -16.0449 20.4854 -8.48535z\\\" />\\n    <glyph glyph-name=\\\"euro-sign\\\" unicode=\\\"&#xf153;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M310.706 34.2354l8.81836 -44.4902c1.23828 -6.24902 -2.62109 -12.3623 -8.78809 -13.957c-12.5391 -3.24414 -34.8008 -7.78809 -61.1016 -7.78809c-104.371 0 -182.496 65.3076 -207.521 155.64h-30.1143c-6.62695 0 -12 5.37305 -12 12v28.3604\\nc0 6.62695 5.37305 12 12 12h21.3877c-1 12.958 -0.828125 28.6377 0.181641 42.2451h-21.5693c-6.62695 0 -12 5.37305 -12 12v29.7549c0 6.62695 5.37305 12 12 12h33.0752c28.9551 83.748 107.376 144 204.56 144c21.0752 0 40.582 -2.91211 52.6865 -5.20703\\nc6.86035 -1.30078 11.1475 -8.17578 9.32617 -14.917l-11.9912 -44.3682c-1.65527 -6.125 -7.78613 -9.89062 -14.002 -8.62305c-9.28711 1.89551 -23.3652 4.14551 -37.8516 4.14551c-54.9287 0 -96.9854 -30.0391 -117.619 -75.0303h138.278\\nc7.66211 0 13.3613 -7.08203 11.7227 -14.5664l-6.51172 -29.7549c-1.13965 -5.20703 -6.3916 -9.43359 -11.7227 -9.43359v0h-146.593c-1.55176 -13.958 -1.34766 -27.917 -0.137695 -42.2451h134.237c7.68945 0 13.3936 -7.12891 11.708 -14.6309l-6.37305 -28.3604\\nc-1.16211 -5.17188 -6.40723 -9.36914 -11.708 -9.36914h-113.689c19.5322 -50.6582 64.6982 -85.4482 121.462 -85.4482c18.0039 0 34.7334 2.97363 45.4258 5.41211c6.58887 1.50391 13.1094 -2.73828 14.4238 -9.36816z\\\" />\\n    <glyph glyph-name=\\\"pound-sign\\\" unicode=\\\"&#xf154;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M308 96c6.62695 0 12 -5.37305 12 -12v-104c0 -6.62695 -5.37305 -12 -12 -12h-296c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h36v128h-28c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h28v66.0391\\nc0 73.2188 58.0264 125.961 139.931 125.961c48.6455 0 85.1934 -22.5596 101.575 -34.9277c5.39844 -4.07617 6.35254 -11.8057 2.11914 -17.0811l-28.4932 -35.5137c-3.7998 -4.73535 -10.5371 -5.89746 -15.6875 -2.68457\\nc-11.7744 7.34375 -33.9941 18.8486 -57.6523 18.8486c-37.2305 0 -61.792 -24.8193 -61.792 -57.0859v-63.5557h84c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-84v-126.848h122.505v50.8477c0 6.62695 5.37305 12 12 12h45.4951z\\\" />\\n    <glyph glyph-name=\\\"dollar-sign\\\" unicode=\\\"&#xf155;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M209.2 214.6c57.8994 -16.8994 94 -80.0996 72.5 -141.699c-15.4004 -44.1006 -59.1006 -71.8008 -105.7 -72.7002v-48.2002c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v48c-31.4004 0.0996094 -62 10.7998 -86.5 30\\nc-7.90039 6.09961 -8.90039 17.5996 -1.7998 24.5l34.7998 34c5.2002 5.09961 13.4004 6.09961 19.5 2c10 -6.7998 22 -10.5 34.2002 -10.5h66.2998c16.2998 0 29.5 13.2002 29.5 29.5c0 13 -8.7002 24.5996 -21.2002 28.2998l-102.5 30\\nc-44.3994 13 -79.5996 50.5 -83.7998 96.6006c-5.90039 64.8994 45.2998 119.6 109 119.6h2.5v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48c31.4004 -0.0996094 62 -10.7998 86.5 -30c7.90039 -6.09961 8.90039 -17.5996 1.7998 -24.5l-34.7998 -34\\nc-5.2002 -5.09961 -13.4004 -6.09961 -19.5 -2c-10 6.7998 -22 10.5 -34.2002 10.5h-66.2998c-16.2998 0 -29.5 -13.2002 -29.5 -29.5c0 -13 8.7002 -24.7002 21.2002 -28.2998z\\\" />\\n    <glyph glyph-name=\\\"rupee-sign\\\" unicode=\\\"&#xf156;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M308 352h-72.9424c5.97266 -9.75391 10.7666 -20.459 14.252 -32h58.6904c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-52.8105c-7.1748 -74.5107 -61.8193 -125.566 -138.318 -127.906l150.882 -139.275\\nc8.02734 -7.41016 2.78516 -20.8184 -8.13867 -20.8184h-82.5625c-2.58984 0 -6.23535 1.42578 -8.13867 3.18164l-165.052 152.356c-2.46094 2.27148 -3.86133 5.46875 -3.86133 8.81836v53.0117c0 6.62695 5.37305 12 12 12h84c41.7959 0 68.54 22.5459 74.7568 58.6318\\nh-158.757c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h146.25c-12.709 17.2939 -33.6621 27.252 -60.9697 27.252h-85.2803c-6.62695 0 -12 5.37305 -12 12v44.748c0 6.62695 5.37305 12 12 12h296c6.62695 0 12 -5.37305 12 -12v-40\\nc0 -6.62695 -5.37305 -12 -12 -12z\\\" />\\n    <glyph glyph-name=\\\"yen-sign\\\" unicode=\\\"&#xf157;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M351.2 416c9.09961 0 14.8994 -9.7002 10.5996 -17.5996l-80.0996 -150.4h58.2998c6.59961 0 12 -5.40039 12 -12v-32c0 -6.59961 -5.40039 -12 -12 -12h-88.2002l-19.7998 -37.2002v-26.7998h108c6.59961 0 12 -5.40039 12 -12v-32c0 -6.59961 -5.40039 -12 -12 -12\\nh-108v-92c0 -6.59961 -5.40039 -12 -12 -12h-56c-6.59961 0 -12 5.40039 -12 12v92h-108c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h108v26.7998l-19.7998 37.2002h-88.2002c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h58.2998\\nl-80.0996 150.4c-4.2002 7.89941 1.5 17.5996 10.5996 17.5996h65.2002c4.59961 0 8.7998 -2.59961 10.7998 -6.7002l55.4004 -113.2c14.5 -34.6992 27.0996 -71.8994 27.0996 -71.8994h1.2998s12.6006 37.2002 27.1006 71.8994l55.3994 113.2\\nc2 4.10059 6.2002 6.7002 10.8008 6.7002h65.2998z\\\" />\\n    <glyph glyph-name=\\\"ruble-sign\\\" unicode=\\\"&#xf158;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M239.36 128h-92.8008v-32h161.44c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-161.44v-52c0 -6.62695 -5.37305 -12 -12 -12h-58.5596c-6.62695 0 -12 5.37305 -12 12v52h-52c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h52\\nv32h-52c-6.62695 0 -12 5.37305 -12 12v45.3682c0 6.62695 5.37305 12 12 12h52v206.632c0 6.62695 5.37305 12 12 12h163.36c85.1201 0 144.64 -57.5996 144.64 -143.071c0 -85.4707 -59.5195 -144.929 -144.64 -144.929zM146.56 347.252v-149.884h77.4404\\nc48 0 76.1602 29.7285 76.1602 75.5605c0 45.2129 -28.1602 74.3232 -74.8799 74.3232h-78.7207z\\\" />\\n    <glyph glyph-name=\\\"won-sign\\\" unicode=\\\"&#xf159;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M564 256h-62.7002l-7.39941 -32h70.0996c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-84.9004l-42.0996 -182.7c-1.2998 -5.39941 -6.09961 -9.2998 -11.7002 -9.2998h-56.7998c-5.59961 0 -10.4004 3.90039 -11.7002 9.2998l-42.3994 182.7\\nh-55.1006l-42.2998 -182.7c-1.2998 -5.39941 -6.09961 -9.2998 -11.7002 -9.2998h-56.7998c-5.59961 0 -10.5 3.90039 -11.7002 9.40039l-40.8994 182.6h-83.9004c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h69.5l-7.2002 32h-62.2998\\nc-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h48l-18.0996 80.7002c-1.7002 7.5 4 14.5996 11.6992 14.5996h42.1006c5.7002 0 10.7002 -4 11.7998 -9.59961l17.5 -85.7002h108.7l20 86c1.2998 5.5 6.09961 9.2998 11.7002 9.2998h44\\nc5.59961 0 10.3994 -3.7998 11.6992 -9.2998l19.7002 -86h109.9l14.3994 85.7998c1.10059 5.5 6 9.5 11.7002 9.5h46.1006c7.69922 0 13.3994 -7.2002 11.6992 -14.7002l-18.5996 -80.5996h48c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM183.8 106\\nl12.6006 54h-38.8008l11 -54c5.10059 -25.2002 6.80078 -47.2002 6.80078 -47.2002h1.09961c0.5 0 1.09961 21.4004 7.2998 47.2002zM211.3 224l7.5 32h-80.7998l6.5 -32h66.7998zM274.2 224h25.3994l-2 8.59961c-1.89941 8 -3.5 16 -4.7998 23.4004h-11.7998\\nc-1.2998 -7.40039 -2.90039 -15.4004 -4.7998 -23.4004zM405.1 106l11.5 54h-39.0996l12.4004 -54c6.19922 -25.7998 6.69922 -47.2002 7.2998 -47.2002h1.09961s1.7002 22 6.7998 47.2002zM430.3 224l6.90039 32h-81.6006l7.30078 -32h67.3994z\\\" />\\n    <glyph glyph-name=\\\"file\\\" unicode=\\\"&#xf15b;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM384 326.1v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98\\nc4.5 -4.5 7 -10.5996 7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"file-alt\\\" unicode=\\\"&#xf15c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM288 76v8c0 6.59961 -5.40039 12 -12 12h-168c-6.59961 0 -12 -5.40039 -12 -12v-8\\nc0 -6.59961 5.40039 -12 12 -12h168c6.59961 0 12 5.40039 12 12zM288 140v8c0 6.59961 -5.40039 12 -12 12h-168c-6.59961 0 -12 -5.40039 -12 -12v-8c0 -6.59961 5.40039 -12 12 -12h168c6.59961 0 12 5.40039 12 12zM288 212c0 6.59961 -5.40039 12 -12 12h-168\\nc-6.59961 0 -12 -5.40039 -12 -12v-8c0 -6.59961 5.40039 -12 12 -12h168c6.59961 0 12 5.40039 12 12v8zM384 326.1v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"sort-alpha-down\\\" unicode=\\\"&#xf15d;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M176 96c14.2197 0 21.3496 -17.2598 11.3301 -27.3096l-80 -96c-2.58691 -2.58496 -7.65332 -4.68262 -11.3105 -4.68262c-3.65625 0 -8.72266 2.09766 -11.3096 4.68262l-80 96c-10.0703 10.0693 -2.90039 27.3096 11.29 27.3096h48v304c0 8.83203 7.16797 16 16 16h32\\nc8.83203 0 16 -7.16797 16 -16v-304h48zM416 160c8.83203 0 16 -7.16797 16 -16v-17.6299v-0.00292969c0 -7.93262 -4.81152 -18.6475 -10.7402 -23.917l-61.2598 -70.4502h56c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128\\nc-8.83203 0 -16 7.16797 -16 16v17.6299v0.00292969c0 7.93262 4.81152 18.6475 10.7402 23.917l61.2598 70.4502h-56c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128zM447.06 245.38c0.514648 -1.44043 0.931641 -3.85059 0.931641 -5.37988\\nc0 -8.82715 -7.16406 -15.9951 -15.9912 -16h-24.8398h-0.0449219c-6.42773 0 -13.249 4.96387 -15.2256 11.0801l-4.40918 12.9199h-71l-4.4209 -12.9199c-1.97559 -6.11621 -8.79688 -11.0801 -15.2246 -11.0801h-0.00488281h-24.8301\\nc-8.82715 0.00488281 -15.9912 7.17285 -15.9912 16c0 1.5293 0.416992 3.93945 0.931641 5.37988l59.2695 160c2.09277 5.8623 8.84375 10.6201 15.0684 10.6201h0.00195312h41.4395h0.00195312c6.22461 0 12.9756 -4.75781 15.0684 -10.6201zM335.61 304h32.7793\\nl-16.3896 48z\\\" />\\n    <glyph glyph-name=\\\"sort-alpha-up\\\" unicode=\\\"&#xf15e;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M16 288c-14.2197 0 -21.3496 17.2598 -11.3096 27.3096l80 96c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262l80 -96c10.0703 -10.0693 2.90039 -27.3096 -11.3096 -27.3096h-48v-304c0 -8.83203 -7.16797 -16 -16 -16h-32\\nc-8.83203 0 -16 7.16797 -16 16v304h-48zM416 160c8.83203 0 16 -7.16797 16 -16v-17.6299v-0.00292969c0 -7.93262 -4.81152 -18.6475 -10.7402 -23.917l-61.2598 -70.4502h56c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128\\nc-8.83203 0 -16 7.16797 -16 16v17.6299v0.00292969c0 7.93262 4.81152 18.6475 10.7402 23.917l61.2598 70.4502h-56c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128zM447.06 245.38c0.514648 -1.44043 0.931641 -3.85059 0.931641 -5.37988\\nc0 -8.82715 -7.16406 -15.9951 -15.9912 -16h-24.8398h-0.0449219c-6.42773 0 -13.249 4.96387 -15.2256 11.0801l-4.40918 12.9199h-71l-4.4209 -12.9199c-1.97559 -6.11621 -8.79688 -11.0801 -15.2246 -11.0801h-0.00488281h-24.8301\\nc-8.82715 0.00488281 -15.9912 7.17285 -15.9912 16c0 1.5293 0.416992 3.93945 0.931641 5.37988l59.2695 160c2.09277 5.8623 8.84375 10.6201 15.0684 10.6201h0.00195312h41.4395h0.00195312c6.22461 0 12.9756 -4.75781 15.0684 -10.6201zM335.61 304h32.7793\\nl-16.3896 48z\\\" />\\n    <glyph glyph-name=\\\"sort-amount-down\\\" unicode=\\\"&#xf160;\\\" \\nd=\\\"M304 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h64zM176 96c14.2197 0 21.3496 -17.2598 11.3301 -27.3096l-80 -96\\nc-2.58691 -2.58496 -7.65332 -4.68262 -11.3105 -4.68262c-3.65625 0 -8.72266 2.09766 -11.3096 4.68262l-80 96c-10.0801 10.0693 -2.90039 27.3096 11.29 27.3096h48v304c0 8.83203 7.16797 16 16 16h32c8.83203 0 16 -7.16797 16 -16v-304h48zM432 288\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-192c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h192zM368 160c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h128zM496 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-256c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h256z\\\" />\\n    <glyph glyph-name=\\\"sort-amount-up\\\" unicode=\\\"&#xf161;\\\" \\nd=\\\"M304 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h64zM16 288c-14.2305 0 -21.3496 17.2598 -11.3096 27.3096l80 96c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262\\ns8.72363 -2.09766 11.3096 -4.68262l80 -96c10.0703 -10.0693 2.90039 -27.3096 -11.3096 -27.3096h-48v-304c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v304h-48zM432 288c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16\\nh-192c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h192zM368 160c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128zM496 416c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-256c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h256z\\\" />\\n    <glyph glyph-name=\\\"sort-numeric-down\\\" unicode=\\\"&#xf162;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M304 352c-8.82422 0.0078125 -15.9863 7.17578 -15.9863 16c0 2.08984 0.759766 5.30176 1.69629 7.16992l16 32c2.44141 4.87012 8.84277 8.8252 14.29 8.83008h48c8.83203 0 16 -7.16797 16 -16v-112h16c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h16v64h-16zM330.15 189.09c53.4502 14.25 101.85 -25.8799 101.869 -77.0898v-10.7695c0 -70.3906 -28.25 -107.24 -86.25 -132\\nc-8.36914 -3.58008 -18.0293 1.2793 -20.8994 9.90918l-9.90039 20c-2.62012 7.87012 0.610352 16.9404 8.18066 20.3408c6.2793 2.71387 15.6201 8.49805 20.8496 12.9092c-47.6396 4.76074 -83.0996 51.4805 -68.8496 102.53c6.80762 23.4512 31.4473 47.7197 55 54.1699z\\nM352 92c11.04 0 20 8.95996 20 20s-8.95996 20 -20 20s-20 -8.95996 -20 -20s8.95996 -20 20 -20zM176 96c14.2197 0 21.3496 -17.2598 11.3301 -27.3096l-80 -96c-2.58691 -2.58496 -7.65332 -4.68262 -11.3105 -4.68262c-3.65625 0 -8.72266 2.09766 -11.3096 4.68262\\nl-80 96c-10.0703 10.0693 -2.90039 27.3096 11.29 27.3096h48v304c0 8.83203 7.16797 16 16 16h32c8.83203 0 16 -7.16797 16 -16v-304h48z\\\" />\\n    <glyph glyph-name=\\\"sort-numeric-up\\\" unicode=\\\"&#xf163;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M330.17 189.09c53.4502 14.25 101.83 -25.8799 101.85 -77.0898v-10.7695c0 -70.3906 -28.25 -107.24 -86.25 -132c-8.36914 -3.58008 -18.0293 1.2793 -20.8994 9.90918l-9.90039 20c-2.62012 7.87012 0.610352 16.9404 8.18066 20.3408\\nc6.2793 2.71387 15.6201 8.49805 20.8496 12.9092c-47.6396 4.76074 -83.0996 51.4805 -68.8301 102.53c6.80762 23.4512 31.4482 47.7197 55 54.1699zM352 92c11.04 0 20 8.95996 20 20s-8.95996 20 -20 20s-20 -8.95996 -20 -20s8.95996 -20 20 -20zM304 352\\nc-8.82422 0.0078125 -15.9863 7.17578 -15.9863 16c0 2.08984 0.759766 5.30176 1.69629 7.16992l16 32c2.44141 4.87012 8.84277 8.8252 14.29 8.83008h48c8.83203 0 16 -7.16797 16 -16v-112h16c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-96\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h16v64h-16zM107.31 411.31l80 -96c10.0703 -10.0693 2.90039 -27.3096 -11.3096 -27.3096h-48v-304c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v304h-48\\nc-14.2197 0 -21.3496 17.2598 -11.3096 27.3096l80 96c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262z\\\" />\\n    <glyph glyph-name=\\\"thumbs-up\\\" unicode=\\\"&#xf164;\\\" \\nd=\\\"M104 224c13.2549 0 24 -10.7451 24 -24v-240c0 -13.2549 -10.7451 -24 -24 -24h-80c-13.2549 0 -24 10.7451 -24 24v240c0 13.2549 10.7451 24 24 24h80zM64 -24c13.2549 0 24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24zM384 366.548\\nc0 -42.416 -25.9697 -66.208 -33.2773 -94.5479h101.724c33.3965 0 59.3965 -27.7461 59.5527 -58.0977c0.0839844 -17.9385 -7.5459 -37.249 -19.4395 -49.1973l-0.109375 -0.110352c9.83594 -23.3369 8.23633 -56.0371 -9.30859 -79.4688\\nc8.68164 -25.8945 -0.0683594 -57.7041 -16.3818 -74.7568c4.29785 -17.5977 2.24414 -32.5752 -6.14746 -44.6318c-20.4102 -29.3242 -70.9961 -29.7373 -113.773 -29.7373l-2.84473 0.000976562c-48.2871 0.0166016 -87.8057 17.5977 -119.561 31.7246\\nc-15.957 7.09961 -36.8203 15.8877 -52.6504 16.1787c-6.54004 0.120117 -11.7832 5.45703 -11.7832 11.998v213.77c0 3.2002 1.28223 6.27148 3.55762 8.52148c39.6143 39.1436 56.6484 80.5869 89.1172 113.11c14.8037 14.832 20.1885 37.2363 25.3936 58.9023\\nc4.44629 18.501 13.749 57.7939 33.9316 57.7939c24 0 72 -8 72 -81.4521z\\\" />\\n    <glyph glyph-name=\\\"thumbs-down\\\" unicode=\\\"&#xf165;\\\" \\nd=\\\"M0 392c0 13.2549 10.7451 24 24 24h80c13.2549 0 24 -10.7451 24 -24v-240c0 -13.2549 -10.7451 -24 -24 -24h-80c-13.2549 0 -24 10.7451 -24 24v240zM40 192c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24zM312 -64\\nc-20.1826 0 -29.4854 39.293 -33.9307 57.7949c-5.20605 21.666 -10.5889 44.0703 -25.3936 58.9023c-32.4688 32.5234 -49.5029 73.9668 -89.1172 113.11c-1.96387 1.94141 -3.55762 5.75879 -3.55762 8.52051v0.000976562v213.77\\nc0 6.54102 5.24316 11.8779 11.7832 11.998c15.8311 0.290039 36.6934 9.0791 52.6504 16.1787c31.7549 14.127 71.2744 31.708 119.561 31.7246h2.84375c42.7773 0 93.3633 -0.413086 113.774 -29.7373c8.3916 -12.0566 10.4453 -27.0342 6.14746 -44.6318\\nc16.3125 -17.0527 25.0635 -48.8633 16.3818 -74.7568c17.5439 -23.4316 19.1436 -56.1318 9.30859 -79.4688l0.109375 -0.110352c11.8936 -11.9492 19.5234 -31.2588 19.4395 -49.1973c-0.15625 -30.3516 -26.1572 -58.0977 -59.5527 -58.0977h-101.725\\nc7.30762 -28.3398 33.2773 -52.1318 33.2773 -94.5479c0 -73.4521 -48 -81.4521 -72 -81.4521z\\\" />\\n    <glyph glyph-name=\\\"female\\\" unicode=\\\"&#xf182;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M128 448c35.3457 0 64 -28.6543 64 -64s-28.6543 -64 -64 -64s-64 28.6543 -64 64s28.6543 64 64 64zM247.283 93.8213c3.78809 -15.1504 -7.69238 -29.8213 -23.2832 -29.8213h-56v-104c0 -13.2549 -10.7451 -24 -24 -24h-32c-13.2549 0 -24 10.7451 -24 24v104h-56\\nc-15.6172 0 -27.0654 14.6953 -23.2832 29.8213l48 192c2.50879 10.0342 12.9395 18.1787 23.2832 18.1787h11.3604c23.6895 -10.8936 50.5684 -10.4434 73.2793 0h11.3604c10.3438 0 20.7744 -8.14453 23.2832 -18.1787z\\\" />\\n    <glyph glyph-name=\\\"male\\\" unicode=\\\"&#xf183;\\\" horiz-adv-x=\\\"192\\\" \\nd=\\\"M96 448c35.3457 0 64 -28.6543 64 -64s-28.6543 -64 -64 -64s-64 28.6543 -64 64s28.6543 64 64 64zM144 304c26.5098 0 48 -21.4902 48 -48v-136c0 -13.2549 -10.7451 -24 -24 -24h-16v-136c0 -13.2549 -10.7451 -24 -24 -24h-64c-13.2549 0 -24 10.7451 -24 24v136h-16\\nc-13.2549 0 -24 10.7451 -24 24v136c0 26.5098 21.4902 48 48 48h11.3604c23.6895 -10.8936 50.5684 -10.4434 73.2793 0h11.3604z\\\" />\\n    <glyph glyph-name=\\\"sun\\\" unicode=\\\"&#xf185;\\\" \\nd=\\\"M256 288c52.9004 0 96 -43.0996 96 -96s-43.0996 -96 -96 -96s-96 43.0996 -96 96s43.0996 96 96 96zM502.4 207.5c12.7998 -6.40039 12.7998 -24.5996 -0.200195 -31.0996l-94.7002 -47.3008l33.5 -100.399c4.59961 -13.5 -8.2998 -26.4004 -21.9004 -21.9004\\nl-100.399 33.5l-47.2998 -94.7002c-6.40039 -12.7998 -24.6006 -12.7998 -31 0l-47.3008 94.7002l-100.399 -33.5c-13.5 -4.59961 -26.4004 8.2998 -21.9004 21.9004l33.5 100.5l-94.7002 47.2998c-12.7998 6.40039 -12.7998 24.5996 0 31l94.7002 47.4004l-33.5 100.399\\nc-4.59961 13.5 8.2998 26.4004 21.9004 21.9004l100.5 -33.5l47.2998 94.7002c6.40039 12.7998 24.5996 12.7998 31 0l47.4004 -94.8008l100.399 33.5c13.5 4.60059 26.4004 -8.2998 21.9004 -21.8994l-33.5 -100.4zM346.5 101.5c49.9004 49.9004 49.9004 131.1 0 181\\ns-131.1 49.9004 -181 0s-49.9004 -131.1 0 -181s131.1 -49.9004 181 0z\\\" />\\n    <glyph glyph-name=\\\"moon\\\" unicode=\\\"&#xf186;\\\" \\nd=\\\"M283.211 -64c-141.489 0 -256 114.691 -256 256c0 141.489 114.691 256 256 256c13.0176 -0.00195312 33.9727 -1.91895 46.7754 -4.28027c11.0059 -2.0332 13.4414 -16.7178 3.75586 -22.2295c-62.8359 -35.7588 -101.498 -102.172 -101.498 -174.395\\nc0 -125.378 114.059 -220.607 238.262 -196.954c10.9229 2.08008 18.6299 -10.6416 11.5625 -19.3496c-47.7783 -58.8672 -119.896 -94.792 -198.857 -94.792z\\\" />\\n    <glyph glyph-name=\\\"archive\\\" unicode=\\\"&#xf187;\\\" \\nd=\\\"M32 0v288h448v-288c0 -17.7002 -14.2998 -32 -32 -32h-384c-17.7002 0 -32 14.2998 -32 32zM192 212v-8c0 -6.59961 5.40039 -12 12 -12h104c6.59961 0 12 5.40039 12 12v8c0 6.59961 -5.40039 12 -12 12h-104c-6.59961 0 -12 -5.40039 -12 -12zM480 416\\nc17.7002 0 32 -14.2998 32 -32v-48c0 -8.7998 -7.2002 -16 -16 -16h-480c-8.7998 0 -16 7.2002 -16 16v48c0 17.7002 14.2998 32 32 32h448z\\\" />\\n    <glyph glyph-name=\\\"bug\\\" unicode=\\\"&#xf188;\\\" \\nd=\\\"M511.988 159.1c-0.478516 -17.4297 -15.2168 -31.0996 -32.6533 -31.0996h-55.335v-16c0 -21.8643 -4.88184 -42.584 -13.5996 -61.1445l60.2275 -60.2285c12.4961 -12.4971 12.4961 -32.7578 0 -45.2549c-12.498 -12.4971 -32.7588 -12.4961 -45.2559 0\\nl-54.7363 54.7363c-24.75 -20.0732 -56.2852 -32.1084 -90.6357 -32.1084v244c0 6.62695 -5.37305 12 -12 12h-24c-6.62695 0 -12 -5.37305 -12 -12v-244c-34.3506 0 -65.8857 12.0352 -90.6357 32.1084l-54.7363 -54.7363c-12.498 -12.4971 -32.7588 -12.4961 -45.2559 0\\nc-12.4961 12.4971 -12.4961 32.7578 0 45.2549l60.2275 60.2285c-8.71777 18.5605 -13.5996 39.2803 -13.5996 61.1445v16h-55.334c-17.4355 0 -32.1748 13.6699 -32.6533 31.0996c-0.49707 18.084 14.0156 32.9004 31.9873 32.9004h56v58.7451l-46.6279 46.6279\\nc-12.4961 12.4971 -12.4961 32.7578 0 45.2549c12.498 12.4971 32.7578 12.4971 45.2559 0l54.627 -54.6279h229.489l54.627 54.627c12.498 12.4971 32.7578 12.4971 45.2559 0c12.4961 -12.4971 12.4961 -32.7578 0 -45.2549l-46.627 -46.627v-58.7451h56\\nc17.9717 0 32.4844 -14.8164 31.9883 -32.9004zM257 448c61.8564 0 112 -50.1436 112 -112h-224c0 61.8564 50.1436 112 112 112z\\\" />\\n    <glyph glyph-name=\\\"caret-square-left\\\" unicode=\\\"&#xf191;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 -32h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48zM259.515 323.515l-123.029 -123.029c-4.68652 -4.68652 -4.68652 -12.2842 0 -16.9717l123.028 -123.028\\nc7.56055 -7.56055 20.4854 -2.20605 20.4854 8.48438v246.06c0.000976562 10.6904 -12.9248 16.0449 -20.4844 8.48535z\\\" />\\n    <glyph glyph-name=\\\"dot-circle\\\" unicode=\\\"&#xf192;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM336 192c0 44.1123 -35.8877 80 -80 80s-80 -35.8877 -80 -80s35.8877 -80 80 -80s80 35.8877 80 80z\\\" />\\n    <glyph glyph-name=\\\"wheelchair\\\" unicode=\\\"&#xf193;\\\" \\nd=\\\"M496.101 62.3311l14.2275 -28.6631c3.92871 -7.91504 0.697266 -17.5156 -7.21777 -21.4453l-65.4658 -32.8857c-16.0488 -7.9668 -35.5557 -1.19434 -43.1885 15.0547l-62.7773 133.608h-139.679c-15.9248 0 -29.4258 11.71 -31.6787 27.4746\\nc-33.8887 237.218 -31.9414 222.481 -32.3213 228.525c0 36.3584 30.3184 65.6348 67.0518 63.9287c33.2715 -1.54492 60.0479 -28.9043 60.9248 -62.2012c0.868164 -32.9326 -23.1514 -60.4229 -54.6074 -65.0381l4.66992 -32.6904h129.961c8.83691 0 16 -7.16309 16 -16\\nv-32c0 -8.83691 -7.16309 -16 -16 -16h-120.818l4.57227 -32h132.246c11.2168 0 24.1924 -8.24023 28.9619 -18.3916l57.5146 -122.407l36.1787 18.3486c7.91504 3.92871 17.5166 0.697266 21.4453 -7.21777zM311.358 96l25.752 -54.8076\\nc-27.3047 -61.8848 -89.2402 -105.192 -161.11 -105.192c-97.0469 0 -176 78.9531 -176 176c0 74.0371 45.9561 137.536 110.836 163.489c2.64453 -18.4736 5.77637 -40.3682 9.48828 -66.333c-33.6299 -19.3477 -56.3242 -55.6514 -56.3242 -97.1562\\nc0 -61.7568 50.2432 -112 112 -112c56.3242 0 103.064 41.7959 110.852 96h24.5068z\\\" />\\n    <glyph glyph-name=\\\"lira-sign\\\" unicode=\\\"&#xf195;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M371.994 192c6.78613 0 12.2578 -5.62598 11.9971 -12.4082c-5.15332 -133.758 -94.3174 -211.592 -228.408 -211.592h-79.583c-6.62695 0 -12 5.37305 -12 12v193.442l-49.3975 -10.9775c-7.49316 -1.66602 -14.6025 4.03711 -14.6025 11.7139v40.9766\\nc0 5.31348 4.20996 10.5615 9.39746 11.7139l54.6025 12.1338v30.4395l-49.3975 -10.9775c-7.49316 -1.66602 -14.6025 4.03711 -14.6025 11.7139v40.9766c0 5.31348 4.20996 10.5615 9.39746 11.7139l54.6025 12.1338v68.9971c0 6.62695 5.37305 12 12 12h56\\nc6.62695 0 12 -5.37305 12 -12v-51.2188l129.397 28.7539c7.49316 1.66602 14.6025 -4.03711 14.6025 -11.7139v-40.9756c0 -5.31348 -4.20996 -10.5615 -9.39746 -11.7139l-134.603 -29.9121v-30.4385l129.397 28.7539c7.49316 1.66602 14.6025 -4.03711 14.6025 -11.7139\\nv-40.9766c0 -5.31348 -4.20996 -10.5615 -9.39746 -11.7139l-134.603 -29.9121v-159.219c86.1787 0 168 48 168 148.754c0 6.33398 5.63965 11.2461 11.9746 11.2461h48.0195z\\\" />\\n    <glyph glyph-name=\\\"space-shuttle\\\" unicode=\\\"&#xf197;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M592.604 239.756c29.6787 -13.9111 47.3965 -31.7637 47.3965 -47.7559s-17.7178 -33.8447 -47.3965 -47.7559c-32.8682 -15.4082 -76.8262 -24.2441 -120.604 -24.2441h-285.674c-4.95215 -6.55469 -10.585 -11.9775 -16.7197 -16h206.394\\nc-146.843 -30.2529 -156.597 -136 -279.997 -136h-0.00292969v128h-16v-128c-26.5098 0 -48 28.6543 -48 64v64c-23.1807 0 -32 10.0166 -32 24v40c0 13.9678 8.80273 24 32 24v16c-23.1807 0 -32 10.0166 -32 24v40c0 13.9678 8.80273 24 32 24v64\\nc0 35.3457 21.4902 64 48 64v-128h16v128h0.00292969c123.4 0 133.154 -105.747 279.997 -136h-206.393c6.13477 -4.02246 11.7676 -9.44531 16.7197 -16h285.673c43.7773 0 87.7354 -8.83594 120.604 -24.2441zM488 152c31.9424 0 31.9092 80 0 80\\nc-4.41602 0 -8 -3.58398 -8 -8v-64c0 -4.41602 3.58398 -8 8 -8z\\\" />\\n    <glyph glyph-name=\\\"envelope-square\\\" unicode=\\\"&#xf199;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352zM178.117 185.896c10.5156 -7.66895 31.3799 -26.1133 45.8828 -25.8955\\nc14.4912 -0.225586 35.3828 18.2393 45.8828 25.8936c90.6836 65.8145 89.7461 65.9697 114.117 84.9385v25.167c0 13.2549 -10.7451 24 -24 24h-272c-13.2549 0 -24 -10.7451 -24 -24v-25.167c24.3525 -18.9541 23.4287 -19.1201 114.117 -84.9365zM384 230.225\\nc-13.958 -10.793 -33.3252 -25.2334 -95.2832 -70.1982c-13.6826 -9.98438 -37.833 -32.1592 -64.7197 -32.0254c-26.7188 -0.134766 -50.5322 21.6689 -64.6943 32.0098c-61.9736 44.9785 -81.3447 59.4199 -95.3027 70.2139v-142.225c0 -13.2549 10.7451 -24 24 -24h272\\nc13.2549 0 24 10.7451 24 24v142.225z\\\" />\\n    <glyph glyph-name=\\\"university\\\" unicode=\\\"&#xf19c;\\\" \\nd=\\\"M496 320v-16c0 -4.41602 -3.58398 -8 -8 -8h-24v-12c0 -6.62695 -5.37305 -12 -12 -12h-392c-6.62695 0 -12 5.37305 -12 12v12h-24c-4.41602 0 -8 3.58398 -8 8v16c0 2.95215 2.21387 6.26367 4.94141 7.3916l232 88\\nc0.810547 0.335938 2.18066 0.608398 3.05859 0.608398s2.24805 -0.272461 3.05859 -0.608398l232 -88c2.72754 -1.12793 4.94141 -4.43945 4.94141 -7.3916zM472 16c13.2549 0 24 -10.7451 24 -24v-16c0 -4.41602 -3.58398 -8 -8 -8h-464c-4.41602 0 -8 3.58398 -8 8v16\\nc0 13.2549 10.7451 24 24 24h432zM96 256h64v-192h64v192h64v-192h64v192h64v-192h36c6.62695 0 12 -5.37305 12 -12v-20h-416v20c0 6.62695 5.37305 12 12 12h36v192z\\\" />\\n    <glyph glyph-name=\\\"graduation-cap\\\" unicode=\\\"&#xf19d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M622.34 294.8c23.5498 -7.24023 23.5498 -38.3594 0 -45.5996l-278.95 -85.7002c-20.3496 -6.25 -37.7295 -2.78027 -46.79 0l-195.569 60.0898c-12.25 -8.41992 -19.9307 -21.7002 -20.6904 -36.7197c9.19043 -5.62012 15.6602 -15.2998 15.6602 -26.8701\\nc0 -10.7803 -5.67969 -19.8496 -13.8604 -25.6504l25.5303 -114.88c2.21973 -9.98926 -5.37988 -19.4697 -15.6201 -19.4697h-56.1094c-10.2305 0 -17.8301 9.48047 -15.6104 19.4697l25.5303 114.88c-8.18066 5.80078 -13.8604 14.8701 -13.8604 25.6504\\nc0 11.8896 6.78027 21.8496 16.4102 27.3701c0.649414 17.6201 7.20996 33.71 17.8799 46.8994l-48.6299 14.9404c-23.54 7.23047 -23.54 38.3604 0 45.5898l278.95 85.7002c15.1895 4.66992 31.5898 4.66992 46.79 0zM352.79 132.91l145.03 44.5596l14.1797 -113.47\\nc0 -35.3496 -85.96 -64 -192 -64s-192 28.6504 -192 64l14.1797 113.46l145.021 -44.5498c12.75 -3.91992 37.0596 -8.75977 65.5898 0z\\\" />\\n    <glyph glyph-name=\\\"language\\\" unicode=\\\"&#xf1ab;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M152.1 211.8l10.9004 -37.5h-38.0996l11.0996 37.5c3.5 12.1006 7.7998 33.2002 7.7998 33.2002h0.5s4.2998 -21.0996 7.7998 -33.2002zM616 352c13.2998 0 24 -10.7002 24 -24v-272c0 -13.2998 -10.7002 -24 -24 -24h-280v320h280zM592 232v16\\nc0 6.59961 -5.40039 12 -12 12h-64v16c0 6.59961 -5.40039 12 -12 12h-16c-6.59961 0 -12 -5.40039 -12 -12v-16h-64c-6.59961 0 -12 -5.40039 -12 -12v-16c0 -6.59961 5.40039 -12 12 -12h114.3c-6.2002 -14.2998 -16.5 -29 -30 -43.2002\\nc-6.59961 6.90039 -12.3994 13.9004 -17.3994 20.9004c-3.60059 5.09961 -10.6006 6.59961 -16 3.39941l-7.30078 -4.2998l-6.5 -3.89941c-5.89941 -3.5 -7.69922 -11.4004 -3.69922 -17.1006c6.09961 -8.7002 13.0996 -17.2998 21 -25.7002\\nc-8.10059 -6.2998 -16.8008 -12.2998 -26.1006 -18c-5.59961 -3.39941 -7.39941 -10.5996 -4.2002 -16.1992l7.90039 -13.9004c3.40039 -5.90039 10.9004 -7.7998 16.7002 -4.2998c12.7002 7.7998 24.5 16.2002 35.3994 24.8994\\nc10.9004 -8.7998 22.8008 -17.0996 35.4004 -24.8994c5.7998 -3.5 13.2998 -1.60059 16.7002 4.2998l7.89941 13.9004c3.2002 5.69922 1.40039 12.7998 -4.09961 16.1992c-9 5.5 -17.7002 11.6006 -26.0996 18c21 22.5 35.7998 46.3008 42.6992 69.9004h11.4004\\nc6.59961 0 12 5.40039 12 12zM0 328c0 13.2998 10.7002 24 24 24h280v-320h-280c-13.2998 0 -24 10.7002 -24 24v272zM58.9004 111.9c-2.60059 -7.80078 3.19922 -15.9004 11.3994 -15.9004h22.9004c5.2998 0 10 3.59961 11.5 8.7002l9.09961 31.7998h60.2002\\nl9.40039 -31.9004c1.40137 -4.74316 6.55273 -8.59668 11.5 -8.59961h22.8994c8.2998 0 14 8.09961 11.4004 15.9004l-57.5 169.1c-1.7002 4.7998 -6.2998 8.09961 -11.4004 8.09961h-32.5c-5.2002 0 -9.7002 -3.19922 -11.3994 -8.09961z\\\" />\\n    <glyph glyph-name=\\\"fax\\\" unicode=\\\"&#xf1ac;\\\" \\nd=\\\"M480 288c17.6641 0 32 -14.3359 32 -32v-288c0 -17.6641 -14.3359 -32 -32 -32h-320c-17.6641 0 -32 14.3359 -32 32v448c0 17.6641 14.3359 32 32 32h242.75c7.31348 -0.000976562 17.4473 -4.19922 22.6201 -9.37012l45.25 -45.25\\nc5.17676 -5.17285 9.37891 -15.3115 9.37988 -22.6299v-82.75zM288 16v32c0 8.83203 -7.16797 16 -16 16h-32c-8.83203 0 -16 -7.16797 -16 -16v-32c0 -8.83203 7.16797 -16 16 -16h32c8.83203 0 16 7.16797 16 16zM288 144v32c0 8.83203 -7.16797 16 -16 16h-32\\nc-8.83203 0 -16 -7.16797 -16 -16v-32c0 -8.83203 7.16797 -16 16 -16h32c8.83203 0 16 7.16797 16 16zM416 16v32c0 8.83203 -7.16797 16 -16 16h-32c-8.83203 0 -16 -7.16797 -16 -16v-32c0 -8.83203 7.16797 -16 16 -16h32c8.83203 0 16 7.16797 16 16zM416 144v32\\nc0 8.83203 -7.16797 16 -16 16h-32c-8.83203 0 -16 -7.16797 -16 -16v-32c0 -8.83203 7.16797 -16 16 -16h32c8.83203 0 16 7.16797 16 16zM416 256v64h-48c-8.83203 0 -16 7.16797 -16 16v48h-160v-128h224zM64 320c17.6641 0 32 -14.3359 32 -32v-320\\nc0 -17.6641 -14.3359 -32 -32 -32h-32c-17.6641 0 -32 14.3359 -32 32v320c0 17.6641 14.3359 32 32 32h32z\\\" />\\n    <glyph glyph-name=\\\"building\\\" unicode=\\\"&#xf1ad;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 -32c6.62695 0 12 -5.37305 12 -12v-20h-448v20c0 6.62695 5.37305 12 12 12h20v456c0 13.2549 10.7451 24 24 24h336c13.2549 0 24 -10.7451 24 -24v-456h20zM128 372v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12v40\\nc0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12zM128 276v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12zM180 128c6.62695 0 12 5.37305 12 12v40\\nc0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40zM256 -32v84c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-84h64zM320 140v40c0 6.62695 -5.37305 12 -12 12h-40\\nc-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM320 236v40c0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12zM320 332v40\\nc0 6.62695 -5.37305 12 -12 12h-40c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h40c6.62695 0 12 5.37305 12 12z\\\" />\\n    <glyph glyph-name=\\\"child\\\" unicode=\\\"&#xf1ae;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M120 376c0 39.7646 32.2354 72 72 72s72 -32.2354 72 -72c0 -39.7637 -32.2354 -72 -72 -72s-72 32.2363 -72 72zM374.627 374.627c12.4971 -12.4971 12.4971 -32.7568 0 -45.2539l-94.627 -94.627v-266.746c0 -17.6729 -14.3271 -32 -32 -32h-16\\nc-17.6729 0 -32 14.3271 -32 32v112h-16v-112c0 -17.6729 -14.3271 -32 -32 -32h-16c-17.6729 0 -32 14.3271 -32 32v266.746l-94.627 94.626c-12.4971 12.4971 -12.4971 32.7578 0 45.2549c12.4961 12.4971 32.7578 12.4971 45.2539 0l86.627 -86.627h101.491\\nl86.6279 86.627c12.4961 12.4971 32.7578 12.4971 45.2539 0z\\\" />\\n    <glyph glyph-name=\\\"paw\\\" unicode=\\\"&#xf1b0;\\\" \\nd=\\\"M256 224c79.4102 0 192 -122.76 192 -200.25c0 -34.9004 -26.8096 -55.75 -71.7402 -55.75c-48.4102 0 -80.75 25.0801 -120.26 25.0801c-39.1699 0 -71.4199 -25.0801 -120.26 -25.0801c-44.9307 0 -71.7402 20.8496 -71.7402 55.75c0 77.4902 112.59 200.25 192 200.25\\nzM108.72 236.61c10.4004 -34.6504 -4.76953 -68.3799 -33.8896 -75.3408c-29.1201 -6.95996 -61.1602 15.4805 -71.5605 50.1309c-10.3994 34.6494 4.77051 68.3799 33.8906 75.3398s61.1602 -15.4805 71.5596 -50.1299zM193.44 257.39\\nc-30.9307 -8.14941 -65.6201 20.4502 -77.46 63.8701c-11.8408 43.4199 3.63965 85.2207 34.5791 93.3604c30.9404 8.13965 65.6201 -20.4502 77.46 -63.8701c11.8408 -43.4199 -3.63965 -85.2197 -34.5791 -93.3604zM474.83 286.73\\nc29.1201 -6.96094 44.29 -40.6904 33.8896 -75.3408c-10.4102 -34.6494 -42.4395 -57.0898 -71.5596 -50.1299s-44.29 40.6904 -33.8906 75.3398c10.4102 34.6504 42.4404 57.0908 71.5605 50.1309zM318.56 257.39c-30.9395 8.14062 -46.4199 49.9404 -34.5791 93.3604\\nc11.8398 43.4199 46.5195 72.0195 77.46 63.8701c30.9395 -8.15039 46.4199 -49.9404 34.5791 -93.3604c-11.8398 -43.4199 -46.5195 -72.0098 -77.46 -63.8701z\\\" />\\n    <glyph glyph-name=\\\"cube\\\" unicode=\\\"&#xf1b2;\\\" \\nd=\\\"M239.1 441.7c10.9004 4.09961 22.9004 4.09961 33.7002 -0.100586l208 -78c18.7002 -7 31.1006 -24.8994 31.1006 -44.8994v-225.101c0 -18.0996 -10.2002 -34.7998 -26.5 -42.8994l-208 -104c-13.5 -6.7998 -29.4004 -6.7998 -42.9004 0l-208 104\\nc-16.2002 8.09961 -26.5 24.7002 -26.5 42.8994v225.101c0 20 12.4004 38 31.0996 45zM256 379.6l-192 -72v-1.09961l192 -78l192 78v1.09961zM288 23.5996l160 80v133.9l-160 -65v-148.9z\\\" />\\n    <glyph glyph-name=\\\"cubes\\\" unicode=\\\"&#xf1b3;\\\" \\nd=\\\"M488.6 197.8c14.1006 -5.2998 23.4004 -18.7002 23.4004 -33.7002v-110.1c0 -13.5996 -7.7002 -26.0996 -19.9004 -32.2002l-100 -50c-10.0996 -5.09961 -22.0996 -5.09961 -32.1992 0l-103.9 52l-103.9 -52c-10.0996 -5.09961 -22.0996 -5.09961 -32.1992 0l-100 50\\nc-12.2002 6.10059 -19.9004 18.6006 -19.9004 32.2002v110.1c0 15 9.2998 28.4004 23.2998 33.7002l96.6006 36.2002v108.5c0 15 9.2998 28.4004 23.3994 33.7002l100 37.5c8.2002 3.09961 17.2002 3.09961 25.2998 0l100 -37.5\\nc14.1006 -5.2998 23.4004 -18.7002 23.4004 -33.7002v-108.5zM358 233.2v73.2998l-85 -37v-68.2002zM154 343.9v-0.600586l102 -41.3994l102 41.3994v0.600586l-102 38.1992zM238 52.7998v75.4004l-85 -38.7998v-79.1006zM238 164.8v0.600586l-102 38.1992l-102 -38.1992\\nv-0.600586l102 -41.3994zM478 52.7998v75.4004l-85 -38.7998v-79.1006zM478 164.8v0.600586l-102 38.1992l-102 -38.1992v-0.600586l102 -41.3994z\\\" />\\n    <glyph glyph-name=\\\"recycle\\\" unicode=\\\"&#xf1b8;\\\" \\nd=\\\"M184.561 186.097c3.23242 -13.9971 -12.1221 -24.6348 -24.0674 -17.168l-40.7363 25.4551l-50.8672 -81.4014c-13.2832 -21.2559 2.07031 -48.9824 27.1221 -48.9824h51.9883c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-51.8848\\nc-75.334 0 -121.302 83.0479 -81.4082 146.88l50.8223 81.3877l-40.7256 25.4482c-12.0811 7.54688 -8.96582 25.9609 4.87891 29.1582l110.237 25.4502c8.61133 1.9873 17.2012 -3.38086 19.1895 -11.9902zM283.122 369.012\\nc-12.2842 19.6543 -41.5449 20.3193 -54.2568 -0.0214844l-17.9609 -28.7432c-3.5127 -5.62012 -10.916 -7.3291 -16.5361 -3.81738l-33.9189 21.1953c-5.62012 3.51172 -7.33008 10.9131 -3.82031 16.5332l17.9629 28.7656c37.6074 60.1709 125.295 60.0332 162.816 0\\nl41.2627 -66.082l40.6875 25.4238c12.0771 7.55176 27.2646 -3.32324 24.0674 -17.168l-25.4502 -110.236c-1.97363 -8.55273 -10.5166 -13.9893 -19.1885 -11.9902l-110.237 25.4502c-13.8789 3.20508 -16.9297 21.6299 -4.87891 29.1572l40.7402 25.457zM497.288 146.88\\nc39.9268 -63.8828 -6.13379 -146.88 -81.4082 -146.88h-95.8799v-47.9893c0 -14.3105 -17.3105 -21.3184 -27.3135 -11.3145l-80 79.9883c-6.24805 6.24805 -6.24805 16.3799 0 22.627l80 79.9814c10.0713 10.0703 27.3135 2.90039 27.3135 -11.3125v-47.9814h95.9844\\nc25.0791 0 40.3926 27.749 27.1357 48.96l-27.5645 44.1123c-3.51172 5.62109 -1.80176 13.0234 3.81836 16.5361l33.8613 21.1582c5.62207 3.51367 13.0264 1.80273 16.5381 -3.82031z\\\" />\\n    <glyph glyph-name=\\\"car\\\" unicode=\\\"&#xf1b9;\\\" \\nd=\\\"M499.99 272c7.80957 0 13.54 -7.33984 11.6494 -14.9102l-6 -24c-1.33008 -5.33984 -6.12988 -9.08984 -11.6396 -9.08984h-20.0703c13.4199 -11.7305 22.0703 -28.7803 22.0703 -48v-48c0 -16.1299 -6.16016 -30.6797 -16 -41.9297v-54.0703\\nc0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v32h-256v-32c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v54.0703c-9.83984 11.2598 -16 25.8096 -16 41.9297v48c0 19.2197 8.65039 36.2695 22.0801 48h-20.0703\\nc-5.50977 0 -10.3096 3.75 -11.6396 9.08984l-6 24c-1.90039 7.57031 3.83008 14.9102 11.6396 14.9102h59.8604l16.6396 41.5996c17.1104 42.7705 57.9307 70.4004 103.99 70.4004h127c46.0703 0 86.8799 -27.6299 103.98 -70.4004l16.6396 -41.5996h59.8701z\\nM147.93 289.83l-19.9297 -49.8301h256l-19.9297 49.8301c-7.29004 18.2197 -24.9404 30.1699 -44.5703 30.1699h-127c-19.6299 0 -37.2803 -11.9502 -44.5703 -30.1699zM96 128.2c19.2002 0 48 -3.19043 48 15.9502c0 19.1396 -28.7998 47.8496 -48 47.8496\\ns-32 -12.7598 -32 -31.9004c0 -19.1396 12.7998 -31.8994 32 -31.8994zM416 128.2c19.2002 0 32 12.7598 32 31.8994c0 19.1406 -12.7998 31.9004 -32 31.9004s-48 -28.71 -48 -47.8496c0 -19.1406 28.7998 -15.9502 48 -15.9502z\\\" />\\n    <glyph glyph-name=\\\"taxi\\\" unicode=\\\"&#xf1ba;\\\" \\nd=\\\"M462 206.36c28.5898 -6.40039 50 -31.8301 50 -62.3604v-48c0 -23.6201 -12.9502 -44.0303 -32 -55.1201v-40.8799c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v32h-256v-32c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32\\nv40.8799c-19.0498 11.0801 -32 31.4902 -32 55.1201v48c0 30.5303 21.4102 55.96 50 62.3604l22 84.8398c9.59961 35.2002 41.5996 60.7998 76.7998 60.7998h11.2002v32c0 17.6699 14.3301 32 32 32h128c17.6699 0 32 -14.3301 32 -32v-32h11.2002\\nc35.2002 0 67.2002 -25.5996 76.7998 -60.7998zM96 96c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM116.55 208h278.9l-17.3906 67.1396c-2.01953 7.37988 -9.37988 12.8604 -14.8496 12.8604h-214.4\\nc-5.46973 0 -12.8291 -5.48047 -15.0596 -13.6396zM416 96c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"tree\\\" unicode=\\\"&#xf1bb;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M378.31 69.5098c6 -6.79004 7.36035 -16.0898 3.56055 -24.2598c-3.75 -8.0498 -12 -13.25 -21.0098 -13.25h-136.86v-24.4502l30.29 -48.3994c5.32031 -10.6406 -2.41992 -23.1602 -14.3096 -23.1602h-95.9609c-11.8896 0 -19.6299 12.5195 -14.3096 23.1602\\nl30.29 48.3994v24.4502h-136.86c-9.00977 0 -17.2598 5.2002 -21.0098 13.25c-3.7998 8.16992 -2.43945 17.4697 3.56055 24.2598l79.8896 90.4902h-30.6299c-9.02051 0 -16.9805 5 -20.7803 13.0498c-3.79004 8.0498 -2.54004 17.2598 3.27051 24.04l78.1396 90.9102\\nh-28.8896c-9.10059 0 -17.3105 5.34961 -20.8701 13.6104c-3.51074 8.12988 -1.86035 17.5898 4.23926 24.0801l110.28 117.479c6.04004 6.4502 17.29 6.4502 23.3203 0l110.27 -117.479c6.10059 -6.49023 7.76074 -15.9502 4.24023 -24.0801\\nc-3.55957 -8.26074 -11.7598 -13.6104 -20.8604 -13.6104h-28.8896l78.1299 -90.8896c5.83008 -6.79004 7.08008 -16.0107 3.28027 -24.0508c-3.7998 -8.05957 -11.7705 -13.0596 -20.7803 -13.0596h-30.6299z\\\" />\\n    <glyph glyph-name=\\\"database\\\" unicode=\\\"&#xf1c0;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 374.857v-45.7148c0 -40.2852 -100.333 -73.1426 -224 -73.1426s-224 32.8574 -224 73.1426v45.7148c0 40.2852 100.333 73.1426 224 73.1426s224 -32.8574 224 -73.1426zM448 272v-102.857c0 -40.2852 -100.333 -73.1426 -224 -73.1426s-224 32.8574 -224 73.1426\\nv102.857c48.125 -33.1426 136.208 -48.5723 224 -48.5723s175.874 15.4297 224 48.5723zM448 112v-102.857c0 -40.2852 -100.333 -73.1426 -224 -73.1426s-224 32.8574 -224 73.1426v102.857c48.125 -33.1426 136.208 -48.5723 224 -48.5723s175.874 15.4297 224 48.5723z\\n\\\" />\\n    <glyph glyph-name=\\\"file-pdf\\\" unicode=\\\"&#xf1c1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M181.9 191.9c-5 16 -4.90039 46.8994 -2 46.8994c8.39941 0 7.59961 -36.8994 2 -46.8994zM180.2 144.7c9.59961 -17.4004 21.7998 -31.2002 34.5 -40.7998c-23.9004 -4.7002 -44.6006 -14.9004 -62.9004 -21.9004c11.1006 19.4004 20.7002 42.5 28.4004 62.7002z\\nM86.0996 19.9004c5.80078 15.6992 28.2002 33.8994 34.9004 40.1992c-21.7002 -34.7998 -34.9004 -41 -34.9004 -40.1992zM248 288h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136\\nc0 -13.2002 10.7998 -24 24 -24zM240 116.2c-20 12.2002 -33.2998 29 -42.7002 53.7998c4.5 18.5 11.6006 46.5996 6.2002 64.2002c-4.7002 29.3994 -42.4004 26.5 -47.7998 6.7998c-5 -18.2998 -0.400391 -44.0996 8.09961 -77\\nc-11.5996 -27.5996 -28.7002 -64.5996 -40.7998 -85.7998c-0.0996094 0 -0.0996094 -0.100586 -0.200195 -0.100586c-27.0996 -13.8994 -73.5996 -44.5 -54.5 -68c5.60059 -6.89941 16 -10 21.5 -10c17.9004 0 35.7002 18 61.1006 61.8008\\nc25.7998 8.5 54.0996 19.0996 79 23.1992c21.6992 -11.7998 47.0996 -19.5 64 -19.5c29.1992 0 31.1992 32 19.6992 43.4004c-13.8994 13.5996 -54.2998 9.7002 -73.5996 7.2002zM377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6c6.40039 0 12.5 -2.5 17 -7z\\nM302.9 87.7002c0 0 -5.7002 -6.7998 -42.8008 9c40.3008 2.89941 46.9004 -6.2998 42.8008 -9z\\\" />\\n    <glyph glyph-name=\\\"file-word\\\" unicode=\\\"&#xf1c2;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM281.1 192c-5.59961 0 -10.5 -3.90039 -11.5 -9.5c-24.1992 -111.4 -21.7998 -118 -21.5996 -129.2\\nc-0.799805 5.40039 -5.59961 29 -29.5996 129.4c-1.30078 5.39941 -6.10059 9.2002 -11.7002 9.2002h-29.1006c-5.59961 0 -10.3994 -3.7002 -11.6992 -9.10059c-22.1006 -90 -27.8008 -112.5 -29.4004 -122.7c-0.900391 12.7002 -5.40039 44.2002 -21 122.2\\nc-1.09961 5.7002 -6.09961 9.7002 -11.7998 9.7002h-24.5c-7.7002 0 -13.4004 -7.09961 -11.7002 -14.5996l37.7998 -168c1.2002 -5.5 6.10059 -9.40039 11.7002 -9.40039h37.0996c5.5 0 10.3008 3.7998 11.6006 9.09961c23.2002 93.1006 24.5 96.2002 25.5996 110.5h0.5\\nc4.7998 -29.2998 -0.200195 -7 25.6006 -110.5c1.2998 -5.2998 6.09961 -9.09961 11.5996 -9.09961h38c5.59961 0 10.5 3.7998 11.7002 9.2998l38 168c1.7002 7.60059 -4 14.7002 -11.7002 14.7002h-23.9004zM384 326.1v-6.09961h-128v128h6.09961\\nc6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"file-excel\\\" unicode=\\\"&#xf1c3;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM284.1 205.5c5.10059 8 -0.599609 18.5 -10.0996 18.4004h-34.7998\\nc-4.40039 0 -8.5 -2.40039 -10.6006 -6.30078c-30.5 -56.7998 -36.5996 -68.5 -36.5996 -68.5c-16.5996 34.9004 -10.5 19.7002 -36.5996 68.5c-2.10059 3.90039 -6.2002 6.30078 -10.6006 6.30078h-34.7998c-9.5 0 -15.2998 -10.5 -10.0996 -18.5l60.2998 -93.5\\nl-60.2998 -93.5c-5.10059 -8 0.599609 -18.5 10.0996 -18.5h34.9004c4.39941 0 8.39941 2.39941 10.5 6.2998c26.5996 48.7998 30.1992 54 36.5996 68.7998c0 0 16.9004 -32.5 36.5 -68.7002c2.09961 -3.89941 6.2002 -6.2998 10.5996 -6.2998h34.9004\\nc9.5 0 15.2002 10.5 10.0996 18.5l-60.0996 93.5zM384 326.1v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"file-powerpoint\\\" unicode=\\\"&#xf1c4;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M193.7 176.8c8.7998 0 15.5 -2.7002 20.2998 -8.09961c9.59961 -10.9004 9.7998 -32.7002 -0.200195 -44.1006c-4.89941 -5.59961 -11.8994 -8.5 -21.0996 -8.5h-26.9004v60.7002h27.9004zM377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6\\nc6.40039 0 12.5 -2.5 17 -7zM224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM277 146.8c0 44.2002 -28.4004 77 -72.9004 77h-81\\nc-6.59961 0 -12 -5.39941 -12 -12v-199.8c0 -6.59961 5.40039 -12 12 -12h30.8008c6.59961 0 12 5.40039 12 12v57.2002c22.2998 0 111.1 -12.7002 111.1 77.5996z\\\" />\\n    <glyph glyph-name=\\\"file-image\\\" unicode=\\\"&#xf1c5;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 326.059v-6.05859h-128v128h6.05859c5.4873 0 13.0898 -3.14941 16.9707 -7.0293l97.9404 -97.9404c3.88086 -3.88086 7.03027 -11.4834 7.03027 -16.9717zM248 288h136v-328c0 -13.2549 -10.7451 -24 -24 -24h-336c-13.2549 0 -24 10.7451 -24 24v464\\nc0 13.2549 10.7451 24 24 24h200v-136c0 -13.2002 10.7998 -24 24 -24zM112.545 272c-26.5088 0 -48 -21.4902 -48 -48s21.4902 -48 48 -48s48 21.4902 48 48s-21.4902 48 -48 48zM320.545 32v112l-39.5137 39.5146c-4.6875 4.68652 -12.2852 4.68652 -16.9717 0\\nl-103.515 -103.515l-39.5146 39.5146c-4.68652 4.68652 -11.7988 5.1709 -16.4854 0.485352l-39.5146 -39.5146l-0.485352 -48.4854h256z\\\" />\\n    <glyph glyph-name=\\\"file-archive\\\" unicode=\\\"&#xf1c6;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7zM128.4 112c17.8994 0 32.5 -12.0996 32.5 -27s-14.5 -27 -32.4004 -27s-32.5 12 -32.5 27c0 14.9004 14.5 27 32.4004 27zM224 312c0 -13.2002 10.7998 -24 24 -24h136\\nv-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h104.4v-32h32v32h63.5996v-136zM95.9004 416v-32h32v32h-32zM128.2 32c33 0 57.7998 30.2002 51.3994 62.5996l-17.2998 87.7002\\nc-1.09961 5.60059 -6.09961 9.7002 -11.7998 9.7002h-22.0996v32h32v32h-32v32h32v32h-32v32h32v32h-32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32l-19.6006 -97.0996c-6.59961 -32.5 18.2002 -62.9004 51.4004 -62.9004z\\\" />\\n    <glyph glyph-name=\\\"file-audio\\\" unicode=\\\"&#xf1c7;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM160 44v136c0 10.7002 -12.9004 16.0996 -20.5 8.5l-35.5 -36.5h-28c-6.59961 0 -12 -5.40039 -12 -12\\nv-56c0 -6.59961 5.40039 -12 12 -12h28l35.5 -36.5c7.59961 -7.5 20.5 -2.2002 20.5 8.5zM193.2 91.5996c-22.5 -23.0996 12.5996 -55.7998 34.3994 -33.5c27.2002 28 27.2002 72.5 0 100.4c-22.1992 22.7002 -56.5 -10.7002 -34.3994 -33.5\\nc9.09961 -9.2998 9.09961 -24.0996 0 -33.4004zM279.2 208.7c-22.1006 22.7998 -56.5 -10.7002 -34.4004 -33.5c36.2998 -37.2998 36.2002 -96.6006 0 -133.8c-22.5996 -23.2002 12.6006 -55.9004 34.4004 -33.5c54.3994 56 54.3994 144.899 0 200.8zM384 326.1v-6.09961\\nh-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"file-video\\\" unicode=\\\"&#xf1c8;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 326.059v-6.05859h-128v128h6.05859c6.36523 0 12.4707 -2.5293 16.9717 -7.0293l97.9404 -97.9404c3.87988 -3.88086 7.0293 -11.4834 7.0293 -16.9717zM224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2549 -10.7451 -24 -24 -24h-336\\nc-13.2549 0 -24 10.7451 -24 24v464c0 13.2549 10.7451 24 24 24h200v-136zM320 167.984c0 21.4609 -25.96 31.9795 -40.9707 16.9697l-55.0293 -55.0127v38.0586c0 13.2549 -10.7451 24 -24 24h-112c-13.2549 0 -24 -10.7451 -24 -24v-112c0 -13.2549 10.7451 -24 24 -24\\nh112c13.2549 0 24 10.7451 24 24v38.0586l55.0293 -55.0088c15.0273 -15.0264 40.9707 -4.47363 40.9707 16.9717v111.963z\\\" />\\n    <glyph glyph-name=\\\"file-code\\\" unicode=\\\"&#xf1c9;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 326.059v-6.05859h-128v128h6.05859c6.36523 0 12.4707 -2.5293 16.9717 -7.0293l97.9404 -97.9404c3.87988 -3.88086 7.0293 -11.4834 7.0293 -16.9717zM248 288h136v-328c0 -13.2549 -10.7451 -24 -24 -24h-336c-13.2549 0 -24 10.7451 -24 24v464\\nc0 13.2549 10.7451 24 24 24h200v-136c0 -13.2002 10.7998 -24 24 -24zM123.206 47.4951l19.5791 20.8838c0.805664 0.860352 1.45996 2.51465 1.45996 3.69336c0 1.34766 -0.820312 3.16309 -1.83203 4.05371l-40.7627 35.874l40.7627 35.874\\nc1.01172 0.890625 1.83203 2.70605 1.83203 4.05371c0 1.17871 -0.654297 2.83301 -1.45996 3.69336l-19.5791 20.8848c-0.882812 0.942383 -2.64844 1.70703 -3.93945 1.70703c-1.17871 0 -2.83398 -0.654297 -3.69336 -1.46094l-64.8662 -60.8115\\nc-0.942383 -0.883789 -1.70703 -2.64844 -1.70703 -3.93945c0 -1.29199 0.764648 -3.05664 1.70703 -3.94043l64.8662 -60.8115c0.859375 -0.806641 2.51465 -1.46094 3.69336 -1.46094c1.29102 0 3.05664 0.764648 3.93945 1.70703zM174.501 -2.98438\\nc0.407227 -0.118164 1.08203 -0.213867 1.50586 -0.213867c2.23926 0 4.56152 1.74512 5.18457 3.89551l61.4395 211.626c0.118164 0.407227 0.214844 1.08203 0.214844 1.50586c0 2.23828 -1.74512 4.56152 -3.89453 5.18555l-27.4521 7.9707\\nc-0.407227 0.117188 -1.08105 0.213867 -1.50488 0.213867c-2.23828 0 -4.5625 -1.74512 -5.1875 -3.89551l-61.4395 -211.626c-0.118164 -0.40625 -0.213867 -1.08105 -0.213867 -1.50391c0 -2.23926 1.74512 -4.56348 3.89453 -5.1875zM335.293 108.061\\nc0.942383 0.883789 1.70703 2.64844 1.70703 3.94043c0 1.29102 -0.764648 3.05566 -1.70605 3.93945l-64.8662 60.8115c-0.859375 0.806641 -2.51465 1.46094 -3.69336 1.46094c-1.29102 0 -3.05566 -0.764648 -3.93945 -1.70703l-19.5801 -20.8848\\nc-0.805664 -0.860352 -1.45996 -2.51465 -1.45996 -3.69336c0 -1.34766 0.820312 -3.16309 1.83203 -4.05371l40.7627 -35.874l-40.7637 -35.873c-1.01172 -0.890625 -1.83203 -2.70605 -1.83203 -4.05371c0 -1.17871 0.654297 -2.83301 1.45996 -3.69336l19.5801 -20.8848\\nc0.882812 -0.942383 2.64844 -1.70703 3.93945 -1.70703c1.17871 0 2.83398 0.654297 3.69336 1.46094z\\\" />\\n    <glyph glyph-name=\\\"life-ring\\\" unicode=\\\"&#xf1cd;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM429.696 320.441c-10.6406 14.3398 -30.915 34.6143 -45.2549 45.2549l-63.3994 -63.3994c18.585 -11.0029 34.2676 -26.6963 45.2549 -45.2549zM256 96\\nc53.0186 0 96 42.9814 96 96s-42.9814 96 -96 96s-96 -42.9814 -96 -96s42.9814 -96 96 -96zM127.559 365.696c-14.3398 -10.6406 -34.6143 -30.915 -45.2549 -45.2549l63.3994 -63.3994c11.0029 18.585 26.6963 34.2676 45.2549 45.2549zM82.3037 63.5586\\nc10.6406 -14.3398 30.915 -34.6143 45.2549 -45.2549l63.3994 63.3994c-18.585 11.0029 -34.2676 26.6963 -45.2549 45.2549zM384.441 18.3037c14.3398 10.6406 34.6143 30.915 45.2549 45.2549l-63.3994 63.3994c-11.0029 -18.585 -26.6963 -34.2676 -45.2549 -45.2549z\\n\\\" />\\n    <glyph glyph-name=\\\"circle-notch\\\" unicode=\\\"&#xf1ce;\\\" \\nd=\\\"M288 408.944c0 15.5996 14.6777 27.167 29.7891 23.292c107.071 -27.457 186.211 -124.604 186.211 -240.236c0 -136.788 -110.745 -247.711 -247.466 -247.999c-137.054 -0.289062 -247.812 109.615 -248.531 246.667c-0.609375 116.126 78.5996 213.85 185.951 241.502\\nc15.2119 3.91895 30.0459 -7.52539 30.0459 -23.2344v-16.6475c0 -10.8047 -7.28125 -20.1621 -17.6885 -23.0693c-77.5254 -21.6543 -134.312 -92.749 -134.312 -177.219c0 -101.705 82.3105 -184 184 -184c101.705 0 184 82.3105 184 184\\nc0 84.4824 -56.7959 155.566 -134.314 177.219c-10.4043 2.90723 -17.6855 12.2627 -17.6855 23.0664v16.6592z\\\" />\\n    <glyph glyph-name=\\\"paper-plane\\\" unicode=\\\"&#xf1d8;\\\" \\nd=\\\"M476 444.8c17.2998 10 39 -4.59961 35.5996 -24.7998l-72 -432c-2.59961 -15.2998 -18.7998 -24.2002 -33 -18.2002l-124.6 52.2002l-63.5 -77.2998c-14 -17.1006 -42.5 -7.7998 -42.5 15.7998v80.5l240.9 293.5c4.69922 5.7002 -3.10059 13.2002 -8.60059 8.2998\\nl-287.3 -253.2l-106.3 44.6006c-18 7.59961 -20.2998 32.7998 -2.2002 43.2002z\\\" />\\n    <glyph glyph-name=\\\"history\\\" unicode=\\\"&#xf1da;\\\" \\nd=\\\"M504 192.469c0.25293 -136.64 -111.18 -248.372 -247.82 -248.468c-59.0146 -0.0419922 -113.223 20.5303 -155.821 54.9111c-11.0771 8.93945 -11.9053 25.541 -1.83984 35.6064l11.2676 11.2676c8.6084 8.6084 22.3525 9.55078 31.8906 1.9834\\nc31.3848 -24.9043 71.1045 -39.7695 114.323 -39.7695c101.705 0 184 82.3105 184 184c0 101.705 -82.3105 184 -184 184c-48.8145 0 -93.1494 -18.9688 -126.068 -49.9316l50.7539 -50.7539c10.0801 -10.0801 2.94141 -27.3145 -11.3125 -27.3145h-145.373\\nc-8.83691 0 -16 7.16309 -16 16v145.373c0 14.2539 17.2344 21.3926 27.3145 11.3135l49.3711 -49.3711c44.5234 42.5488 104.866 68.6846 171.314 68.6846c136.81 0 247.747 -110.78 248 -247.531zM323.088 113.685c-8.1377 -10.4629 -23.2158 -12.3467 -33.6787 -4.20996\\nl-65.4092 50.874v135.651c0 13.2549 10.7451 24 24 24h16c13.2549 0 24 -10.7451 24 -24v-104.349l40.7012 -31.6572c10.4629 -8.13672 12.3477 -23.2158 4.20996 -33.6787z\\\" />\\n    <glyph glyph-name=\\\"heading\\\" unicode=\\\"&#xf1dc;\\\" \\nd=\\\"M448 352v-320h32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-160c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32v128h-192v-128h32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-160\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32v320h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h160c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32v-128h192v128h-32c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h160c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32z\\\" />\\n    <glyph glyph-name=\\\"paragraph\\\" unicode=\\\"&#xf1dd;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 400v-32c0 -8.83203 -7.16797 -16 -16 -16h-48v-368c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v368h-32v-368c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v112h-32c-88.3203 0 -160 71.6797 -160 160\\ns71.6797 160 160 160h240c8.83203 0 16 -7.16797 16 -16z\\\" />\\n    <glyph glyph-name=\\\"sliders-h\\\" unicode=\\\"&#xf1de;\\\" \\nd=\\\"M496 64c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-336v-16c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v16h-80c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h80v16c0 8.7998 7.2002 16 16 16h32\\nc8.7998 0 16 -7.2002 16 -16v-16h336zM496 224c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-80v-16c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v16h-336c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h336v16\\nc0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-16h80zM496 384c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-208v-16c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v16h-208c-8.7998 0 -16 7.2002 -16 16v32\\nc0 8.7998 7.2002 16 16 16h208v16c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-16h208z\\\" />\\n    <glyph glyph-name=\\\"share-alt\\\" unicode=\\\"&#xf1e0;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M352 128c53.0186 0 96 -42.9814 96 -96s-42.9814 -96 -96 -96s-96 42.9814 -96 96v0.0283203c0 5.8125 1.01953 15.1367 2.27637 20.8125l-102.486 64.0537c-16.4033 -13.0752 -37.1816 -20.8945 -59.79 -20.8945c-53.0186 0 -96 42.9814 -96 96s42.9814 96 96 96\\nc22.6084 0 43.3867 -7.81934 59.79 -20.8945l102.486 64.0537c-1.48633 6.71094 -2.27637 13.6826 -2.27637 20.8408c0 53.0186 42.9814 96 96 96s96 -42.9814 96 -96s-42.9814 -96 -96 -96c-22.6084 0 -43.3867 7.81934 -59.79 20.8965l-102.486 -64.0547\\nc1.25684 -5.68359 2.27637 -15.0205 2.27637 -20.8408c0 -5.82129 -1.01953 -15.1582 -2.27637 -20.8418l102.486 -64.0537c16.4033 13.0752 37.1816 20.8945 59.79 20.8945z\\\" />\\n    <glyph glyph-name=\\\"share-alt-square\\\" unicode=\\\"&#xf1e1;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 368v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48zM304 152c-14.5615 0 -27.8232 -5.56055 -37.7832 -14.6709l-67.958 40.7744\\nc0.960938 3.77539 1.74121 10.001 1.74121 13.8975c0 3.89551 -0.780273 10.1211 -1.74121 13.8965l67.958 40.7744c9.95996 -9.11133 23.2217 -14.6719 37.7832 -14.6719c30.9277 0 56 25.0723 56 56s-25.0723 56 -56 56s-56 -25.0723 -56 -56\\nc0 -4.79688 0.605469 -9.45312 1.74023 -13.8975l-67.958 -40.7744c-9.95898 9.11133 -23.2207 14.6719 -37.7822 14.6719c-30.9277 0 -56 -25.0723 -56 -56s25.0723 -56 56 -56c14.5615 0 27.8232 5.56055 37.7832 14.6709l67.958 -40.7744\\nc-0.960938 -3.7666 -1.74023 -9.97656 -1.74023 -13.8623v-0.0351562c0 -30.9277 25.0723 -56 56 -56s56 25.0723 56 56c-0.000976562 30.9287 -25.0732 56.001 -56.001 56.001z\\\" />\\n    <glyph glyph-name=\\\"bomb\\\" unicode=\\\"&#xf1e2;\\\" \\nd=\\\"M440.5 359.5l-52 -52l26.5 -26.5c9.40039 -9.40039 9.40039 -24.5996 0 -33.9004l-17.4004 -17.3994c11.8008 -26.1006 18.4004 -55.1006 18.4004 -85.6006c0 -114.899 -93.0996 -208 -208 -208s-208 93 -208 207.9s93.0996 208 208 208\\nc30.5 0 59.5 -6.59961 85.5996 -18.4004l17.4004 17.4004c9.40039 9.40039 24.5996 9.40039 33.9004 0l26.5 -26.5l52 52zM500 388c6.59961 0 12 -5.40039 12 -12s-5.40039 -12 -12 -12h-24c-6.59961 0 -12 5.40039 -12 12s5.40039 12 12 12h24zM440 448\\nc6.59961 0 12 -5.40039 12 -12v-24c0 -6.59961 -5.40039 -12 -12 -12s-12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12zM473.9 393c-4.60059 -4.7002 -12.2002 -4.7002 -17 0c-4.7002 4.7002 -4.7002 12.2998 0 17l17 17c4.69922 4.7002 12.2998 4.7002 17 0\\nc4.69922 -4.7002 4.69922 -12.2998 0 -17zM406.1 393l-17 17c-4.69922 4.7002 -4.69922 12.2998 0 17c4.7002 4.7002 12.3008 4.7002 17 0l17 -17c4.7002 -4.7002 4.7002 -12.2998 0 -17c-4.69922 -4.7002 -12.2998 -4.7002 -17 0zM473.9 359l17 -17\\nc4.69922 -4.7002 4.69922 -12.2998 0 -17c-4.7002 -4.7002 -12.3008 -4.7002 -17 0l-17 17c-4.7002 4.7002 -4.7002 12.2998 0 17c4.69922 4.7002 12.2998 4.7002 17 0zM112 176c0 35.2998 28.7002 64 64 64c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16\\nc-52.9004 0 -96 -43.0996 -96 -96c0 -8.7998 7.2002 -16 16 -16s16 7.2002 16 16z\\\" />\\n    <glyph glyph-name=\\\"futbol\\\" unicode=\\\"&#xf1e3;\\\" \\nd=\\\"M504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248zM456 192l-0.00292969 0.282227l-26.0645 -22.7412l-62.6787 58.5l16.4541 84.3555l34.3027 -3.07227\\nc-24.8887 34.2158 -60.0039 60.0889 -100.709 73.1406l13.6514 -31.9385l-74.9531 -41.5264l-74.9531 41.5254l13.6514 31.9385c-40.6309 -13.0283 -75.7803 -38.8701 -100.709 -73.1406l34.5645 3.07324l16.1924 -84.3555l-62.6777 -58.5l-26.0645 22.7412\\nl-0.00292969 -0.282227c0 -43.0146 13.4971 -83.9521 38.4717 -117.991l7.7041 33.8975l85.1387 -10.4473l36.3008 -77.8262l-29.9023 -17.7861c40.2021 -13.1221 84.29 -13.1475 124.572 0l-29.9023 17.7861l36.3008 77.8262l85.1387 10.4473l7.7041 -33.8975\\nc24.9756 34.0391 38.4727 74.9766 38.4727 117.991zM207.898 122.429l-29.8945 91.3125l77.9961 56.5264l77.9961 -56.5264l-29.6221 -91.3125h-96.4756z\\\" />\\n    <glyph glyph-name=\\\"tty\\\" unicode=\\\"&#xf1e4;\\\" \\nd=\\\"M5.37012 344.178c138.532 138.532 362.936 138.326 501.262 0c6.07812 -6.07812 7.07422 -15.4961 2.58301 -22.6807l-43.2139 -69.1377c-2.97266 -4.75684 -9.9375 -8.61719 -15.5459 -8.61719c-1.94922 0 -5 0.587891 -6.81055 1.31152l-86.4219 34.5693\\nc-6.36133 2.54492 -11.5244 10.1719 -11.5244 17.0234c0 0.503906 0.0410156 1.32031 0.0908203 1.82227l5.95215 59.5312c-62.1455 22.4541 -130.636 21.9863 -191.483 0l5.95312 -59.5322c0.0507812 -0.501953 0.0908203 -1.32031 0.0908203 -1.8252\\nc0 -6.85156 -5.16309 -14.4766 -11.5244 -17.0205l-86.4238 -34.5684c-1.80957 -0.723633 -4.85938 -1.31152 -6.80859 -1.31152c-5.60938 0 -12.5742 3.86035 -15.5469 8.61719l-43.2109 69.1387c-1.53809 2.46094 -2.78711 6.81445 -2.78711 9.7168\\nc0 4.19141 2.40625 9.99902 5.37012 12.9629zM96 140c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM192 140c0 -6.62695 -5.37305 -12 -12 -12h-40\\nc-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM288 140c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM384 140\\nc0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM480 140c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40\\nc6.62695 0 12 -5.37305 12 -12v-40zM144 44c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM240 44c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40\\nc0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM336 44c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM432 44c0 -6.62695 -5.37305 -12 -12 -12h-40\\nc-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM96 -52c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM384 -52\\nc0 -6.62695 -5.37305 -12 -12 -12h-232c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h232c6.62695 0 12 -5.37305 12 -12v-40zM480 -52c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40\\nc6.62695 0 12 -5.37305 12 -12v-40z\\\" />\\n    <glyph glyph-name=\\\"binoculars\\\" unicode=\\\"&#xf1e5;\\\" \\nd=\\\"M416 400v-48h-96v48c0 8.83984 7.16016 16 16 16h64c8.83984 0 16 -7.16016 16 -16zM63.9102 288.01c0.479492 17.6201 14.2998 31.9902 31.9297 31.9902h96.1602v-160h-32v-160c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v44\\nc3.45996 129.78 61.4004 150.16 63.9102 244.01zM448.09 288.01c2.50977 -93.8496 60.4502 -114.229 63.9102 -244.01v-44c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v160h-32v160h96.1602c17.6299 0 31.4502 -14.3701 31.9297 -31.9902zM176 416\\nc8.83984 0 16 -7.16016 16 -16v-48h-96v48c0 8.83984 7.16016 16 16 16h64zM224 160v160h64v-160h-64z\\\" />\\n    <glyph glyph-name=\\\"plug\\\" unicode=\\\"&#xf1e6;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M320 416v-96h-64v96c0 17.6641 14.3359 32 32 32s32 -14.3359 32 -32zM368 288c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-16v-32c-0.0107422 -72.1074 -57.3555 -142.354 -128 -156.8v-99.2002h-64v99.2002\\nc-70.6445 14.4463 -127.989 84.6924 -128 156.8v32h-16c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h352zM128 416v-96h-64v96c0 17.6641 14.3359 32 32 32s32 -14.3359 32 -32z\\\" />\\n    <glyph glyph-name=\\\"newspaper\\\" unicode=\\\"&#xf1ea;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M552 384c13.2549 0 24 -10.7451 24 -24v-312c0 -26.5098 -21.4902 -48 -48 -48h-472c-30.9277 0 -56 25.0723 -56 56v272c0 13.2549 10.7451 24 24 24h40v8c0 13.2549 10.7451 24 24 24h464zM56 48c4.41602 0 8 3.58398 8 8v248h-16v-248c0 -4.41602 3.58398 -8 8 -8z\\nM292 64c6.62695 0 12 5.37305 12 12v8c0 6.62695 -5.37305 12 -12 12h-152c-6.62695 0 -12 -5.37305 -12 -12v-8c0 -6.62695 5.37305 -12 12 -12h152zM500 64c6.62695 0 12 5.37305 12 12v8c0 6.62695 -5.37305 12 -12 12h-152c-6.62695 0 -12 -5.37305 -12 -12v-8\\nc0 -6.62695 5.37305 -12 12 -12h152zM292 160c6.62695 0 12 5.37305 12 12v8c0 6.62695 -5.37305 12 -12 12h-152c-6.62695 0 -12 -5.37305 -12 -12v-8c0 -6.62695 5.37305 -12 12 -12h152zM500 160c6.62695 0 12 5.37305 12 12v8c0 6.62695 -5.37305 12 -12 12h-152\\nc-6.62695 0 -12 -5.37305 -12 -12v-8c0 -6.62695 5.37305 -12 12 -12h152zM500 256c6.62695 0 12 5.37305 12 12v40c0 6.62695 -5.37305 12 -12 12h-360c-6.62695 0 -12 -5.37305 -12 -12v-40c0 -6.62695 5.37305 -12 12 -12h360z\\\" />\\n    <glyph glyph-name=\\\"wifi\\\" unicode=\\\"&#xf1eb;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M634.91 293.12c6.66016 -6.16016 6.79004 -16.5898 0.359375 -22.9805l-34.2393 -33.9697c-6.14062 -6.08984 -16.0205 -6.22949 -22.4004 -0.379883c-145.95 133.71 -371.33 133.68 -517.25 0c-6.37988 -5.84961 -16.2598 -5.71973 -22.3994 0.379883l-34.2402 33.9697\\nc-6.44043 6.39062 -6.31055 16.8203 0.349609 22.9805c177.101 163.81 452.65 163.87 629.82 0zM320 96c35.3496 0 64 -28.6504 64 -64s-28.6504 -64 -64 -64s-64 28.6504 -64 64s28.6504 64 64 64zM522.67 179.59c6.88965 -6.08984 7.12012 -16.6895 0.560547 -23.1494\\nl-34.4404 -33.9902c-6 -5.93066 -15.6602 -6.32031 -22.0498 -0.799805c-83.75 72.4092 -209.54 72.5693 -293.49 0c-6.38965 -5.52051 -16.0498 -5.12012 -22.0498 0.799805l-34.4404 33.9902c-6.5498 6.45996 -6.33008 17.0498 0.570312 23.1494\\nc115.13 101.82 290.08 101.93 405.34 0z\\\" />\\n    <glyph glyph-name=\\\"calculator\\\" unicode=\\\"&#xf1ec;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 448c25.5996 0 48 -22.4004 48 -48v-416c0 -25.5996 -22.4004 -48 -48 -48h-352c-25.5996 0 -48 22.4004 -48 48v416c0 25.5996 22.4004 48 48 48h352zM128 12.7998v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998zM128 140.8v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998zM256 12.7998v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998zM256 140.8v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998zM384 12.7998v166.4c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-166.4c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998zM384 268.8v102.4c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-294.4\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-102.4c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h294.4c6.39941 0 12.7998 6.40039 12.7998 12.7998z\\\" />\\n    <glyph glyph-name=\\\"bell-slash\\\" unicode=\\\"&#xf1f6;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.82 -10.0996c6.97949 -5.43066 8.22949 -15.4805 2.80957 -22.4502l-19.6396 -25.2705c-5.43066 -6.97949 -15.4805 -8.23926 -22.46 -2.80957l-588.351 454.729c-6.97949 5.43066 -8.22949 15.4805 -2.80957 22.4502l19.6396 25.2705\\nc5.41992 6.97949 15.4805 8.22949 22.46 2.80957l144.96 -112.04c22.9307 31.5 57.2607 54.1904 97.5898 62.5703v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8301c73.46 -15.2598 127.939 -77.46 127.939 -155.16\\nc0 -102.3 36.1504 -133.529 55.4697 -154.29c6 -6.43945 8.66016 -14.1602 8.61035 -21.71c0 -1.39941 -0.610352 -2.67969 -0.799805 -4.05957zM157.23 196.46l212.789 -164.46h-241.92c-19.1191 0 -31.9893 15.5996 -32.0996 32\\nc-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c16.21 17.4199 44.0098 42.79 52.6201 110.75zM320 -64c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z\\\" />\\n    <glyph glyph-name=\\\"trash\\\" unicode=\\\"&#xf1f8;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M432 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h120l9.40039 18.7002c3.58984 7.3418 13.1357 13.2998 21.3086 13.2998h0.0908203h114.3h0.0175781\\nc8.20215 0 17.8262 -5.95801 21.4824 -13.2998l9.40039 -18.7002h120zM53.2002 -19l-21.2002 339h384l-21.2002 -339c-1.55469 -24.8369 -23.0146 -44.9971 -47.8994 -45h-245.801c-24.8848 0.00292969 -46.3447 20.1631 -47.8994 45z\\\" />\\n    <glyph glyph-name=\\\"copyright\\\" unicode=\\\"&#xf1f9;\\\" \\nd=\\\"M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM373.134 93.2471c1.58203 1.85645 2.86621 5.34375 2.86621 7.7832c0 2.16309 -1.03613 5.33594 -2.31348 7.08301l-24.5469 33.5713\\nc-4.44824 6.08691 -13.376 6.61816 -18.5078 1.05371c-0.263672 -0.287109 -26.8467 -28.625 -65.5439 -28.625c-48.7627 0 -74.2773 40.0898 -74.2773 79.6914c0 42.5068 27.8008 76.082 73.916 76.082c35.3516 0 61.6475 -23.666 61.8809 -23.8799\\nc5.45996 -5.05566 14.1846 -3.97168 18.2334 2.29492l22.3799 34.6553c1.05957 1.64062 1.91992 4.55762 1.91992 6.51074c0 2.57812 -1.41504 6.21191 -3.15723 8.1123c-1.45703 1.58887 -36.4658 38.9043 -103.423 38.9043\\nc-81.7578 0 -143.762 -62.0986 -143.762 -143.401c0 -82.3066 59.792 -145.567 144.484 -145.567c70.0752 0 108.259 43.8643 109.851 45.7314z\\\" />\\n    <glyph glyph-name=\\\"at\\\" unicode=\\\"&#xf1fa;\\\" \\nd=\\\"M256 440c138.023 0 248 -87.6533 248 -224c0 -75.7979 -41.3906 -147.41 -150.299 -147.41c-30.0977 0 -61.1885 -0.000976562 -70.71 34.1035c-17.6221 -22.6963 -48.0068 -38.333 -74.9912 -38.333c-59.2148 0 -96 40.5664 -96 105.87\\nc0 89.2256 63.251 151.46 137.831 151.46c19.5225 0 45.2744 -3.87402 59.9707 -21.7754l0.00976562 0.0917969c0.751953 6.62012 6.76953 11.9932 13.4326 11.9932v0h44.9805c15.083 0 26.4287 -13.75 23.5625 -28.5586l-23.4336 -121.11\\nc-3.43359 -17.167 -3.87207 -29.5703 13.4766 -30.0244c37.0771 3.95117 58.1699 44.9072 58.1699 83.6934c0 102.381 -83.8613 160 -184 160c-101.458 0 -184 -82.542 -184 -184s82.542 -184 184 -184c35.3145 0 69.9199 10.2432 99.4102 29.1572\\nc10.1934 6.53809 23.7021 4.24219 31.373 -5.12891l10.1768 -12.4336c9.07324 -11.084 6.45312 -27.5566 -5.55176 -35.3721c-40.0664 -26.083 -87.2539 -40.2227 -135.408 -40.2227c-137.081 0 -248 110.941 -248 248c0 137.081 110.941 248 248 248zM234.32 135.57\\nc24.2861 0 58.1611 27.6689 58.1611 72.7295c0 25.5293 -13.3096 40.7705 -35.6016 40.7705c-27.8506 0 -58.6299 -27.7363 -58.6299 -72.7295c0 -25.1475 13.8213 -40.7705 36.0703 -40.7705z\\\" />\\n    <glyph glyph-name=\\\"eye-dropper\\\" unicode=\\\"&#xf1fb;\\\" \\nd=\\\"M50.75 114.75l126.63 126.61l128 -128l-126.64 -126.62c-12 -12 -28.2803 -18.7402 -45.25 -18.7402h-45.4902l-56 -32l-32 32l32 56v45.4902c0 16.9795 6.75 33.2598 18.75 45.2598zM483.88 419.88c37.5 -37.4902 37.5 -98.2695 -0.00976562 -135.75l-77.0898 -77.0898\\nl13.0996 -13.0996c9.37012 -9.37012 9.37012 -24.5703 0 -33.9404l-40.9697 -40.96c-9.29004 -9.30957 -24.5 -9.44043 -33.9404 0l-161.939 161.94c-9.37012 9.36914 -9.37012 24.5693 0 33.9395l40.9697 40.9697c9.29004 9.31055 24.5 9.44043 33.9404 0l13.0996 -13.0996\\nl77.0898 77.0898c37.4697 37.5 98.2803 37.5 135.75 0z\\\" />\\n    <glyph glyph-name=\\\"paint-brush\\\" unicode=\\\"&#xf1fc;\\\" \\nd=\\\"M167.02 138.66l88.0107 -73.3398c0.319336 -3.05078 0.969727 -6.02051 0.969727 -9.12988c0 -76.4209 -52.1396 -120.19 -128 -120.19c-90.0703 0 -128 72.3799 -128.01 154.73c9.79004 -6.68066 44.1396 -34.3506 55.25 -34.3506\\nc6.58984 0 12.2402 3.77051 14.5898 9.98047c20.6602 54.4395 57.0703 69.7197 97.1895 72.2998zM457.89 448c28.1104 0 54.1104 -20.6396 54.1104 -49.5498c0 -16.1406 -6.51953 -31.6406 -13.9004 -45.9902c-113.05 -210.99 -149.05 -256.46 -211.159 -256.46\\nc-7.75 0 -15.1807 1.23047 -22.3906 3.03027l-63.8193 53.1797c-5.48047 11.9404 -8.73047 25 -8.73047 38.7002c0 53.75 21.2695 58.04 225.68 240.64c10.8398 9.74023 25.0508 16.4502 40.21 16.4502z\\\" />\\n    <glyph glyph-name=\\\"birthday-cake\\\" unicode=\\\"&#xf1fd;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 64c-28.0195 0 -31.2598 32 -74.5 32c-43.4297 0 -46.8252 -32 -74.75 -32c-27.6953 0 -31.4541 32 -74.75 32c-42.8418 0 -47.2178 -32 -74.5 -32c-28.1484 0 -31.2021 32 -74.75 32c-43.5469 0 -46.6533 -32 -74.75 -32v80c0 26.5 21.5 48 48 48h16v144h64v-144h64\\nv144h64v-144h64v144h64v-144h16c26.5 0 48 -21.5 48 -48v-80zM448 -64h-448v96c43.3564 0 46.7666 32 74.75 32c27.9512 0 31.2529 -32 74.75 -32c42.8428 0 47.2168 32 74.5 32c28.1484 0 31.2012 -32 74.75 -32c43.3574 0 46.7666 32 74.75 32\\nc27.4883 0 31.252 -32 74.5 -32v-96zM96 352c-17.75 0 -32 14.25 -32 32c0 31 32 23 32 64c12 0 32 -29.5 32 -56s-14.25 -40 -32 -40zM224 352c-17.75 0 -32 14.25 -32 32c0 31 32 23 32 64c12 0 32 -29.5 32 -56s-14.25 -40 -32 -40zM352 352c-17.75 0 -32 14.25 -32 32\\nc0 31 32 23 32 64c12 0 32 -29.5 32 -56s-14.25 -40 -32 -40z\\\" />\\n    <glyph glyph-name=\\\"chart-area\\\" unicode=\\\"&#xf1fe;\\\" \\nd=\\\"M500 64c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-488c-6.59961 0 -12 5.40039 -12 12v360c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-308h436zM372.7 288.5c6 4 14.2002 1.7998 17.3994 -4.7002l89.9004 -187.8h-384v104\\nl86.7998 144.7c4.40039 7.2998 14.7998 7.7998 19.9004 1l85.2998 -113.7z\\\" />\\n    <glyph glyph-name=\\\"chart-pie\\\" unicode=\\\"&#xf200;\\\" horiz-adv-x=\\\"544\\\" \\nd=\\\"M527.79 160c9.5498 0 17.4004 -8.38965 16.0596 -17.8496c-7.80957 -55.25 -34.4297 -104.4 -73.1299 -140.86c-6.20996 -5.84961 -16.1494 -5.36035 -22.1895 0.679688l-158.03 158.03h237.29zM511.96 224.8c0.629883 -9.12012 -7.0498 -16.7998 -16.1904 -16.7998\\nh-223.77v223.76c0 9.14062 7.67969 16.8301 16.7998 16.2002c119.46 -8.24023 214.92 -103.7 223.16 -223.16zM224 160l155.86 -155.87c6.84961 -6.84961 6.33008 -18.4795 -1.57031 -24.0801c-38.29 -27.1602 -84.8604 -43.3994 -135.26 -44.0303\\nc-128.2 -1.60938 -238.53 103.471 -242.891 231.61c-4.23926 124.771 86.8506 228.88 206.021 245.72c9.4502 1.34082 17.8398 -6.50977 17.8398 -16.0596v-237.29z\\\" />\\n    <glyph glyph-name=\\\"chart-line\\\" unicode=\\\"&#xf201;\\\" \\nd=\\\"M496 64c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-464c-17.6699 0 -32 14.3301 -32 32v336c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-304h432zM464 352c8.83984 0 16 -7.16016 15.9902 -16v-118.05\\nc0 -21.3799 -25.8506 -32.0898 -40.9707 -16.9697l-32.3994 32.3994l-96 -96c-12.4902 -12.5 -32.75 -12.5 -45.25 0l-73.3701 73.3701l-46.0596 -46.0703c-6.25 -6.25 -16.3809 -6.25 -22.6309 0l-22.6191 22.6201c-6.25 6.25 -6.25 16.3799 0 22.6299l68.6895 68.6904\\nc12.4902 12.5 32.75 12.5 45.25 0l73.3701 -73.3701l73.3701 73.3799l-32.4004 32.4004c-15.1201 15.1201 -4.41016 40.9697 16.9707 40.9697h118.06z\\\" />\\n    <glyph glyph-name=\\\"toggle-off\\\" unicode=\\\"&#xf204;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M384 384c106.039 0 192 -85.9609 192 -192s-85.9609 -192 -192 -192h-192c-106.039 0 -192 85.9609 -192 192s85.9609 192 192 192h192zM64 192c0 -70.751 57.2588 -128 128 -128c70.751 0 128 57.2588 128 128c0 70.751 -57.2588 128 -128 128\\nc-70.751 0 -128 -57.2588 -128 -128zM384 64c70.751 0 128 57.2598 128 128c0 70.751 -57.2588 128 -128 128h-48.9053c65.2363 -72.8799 65.2168 -183.142 0 -256h48.9053z\\\" />\\n    <glyph glyph-name=\\\"toggle-on\\\" unicode=\\\"&#xf205;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M384 384c106 0 192 -86 192 -192s-86 -192 -192 -192h-192c-106 0 -192 86 -192 192s86 192 192 192h192zM384 64c70.7002 0 128 57.2002 128 128c0 70.7002 -57.2002 128 -128 128c-70.7002 0 -128 -57.2002 -128 -128c0 -70.7002 57.2002 -128 128 -128z\\\" />\\n    <glyph glyph-name=\\\"bicycle\\\" unicode=\\\"&#xf206;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M512.509 255.999c70.9502 -0.276367 128.562 -59.0547 127.477 -129.996c-1.07422 -70.1934 -58.6494 -126.681 -129.255 -125.996c-68.8301 0.667969 -126.584 58.8857 -126.729 127.719c-0.078125 37.3564 15.8516 70.9893 41.3066 94.4375l-14.9375 24.0674\\nl-85.9619 -138.863c-3.88477 -6.27441 -13.0264 -11.3672 -20.4062 -11.3672h-52.0332c-14.209 -55.207 -64.3252 -96 -123.967 -96c-70.9473 0 -128.415 57.7207 -128 128.764c0.410156 70.2246 58.0918 127.406 128.317 127.236\\nc15.0879 -0.0371094 29.5586 -2.69043 42.9912 -7.51953l29.417 47.5195h-48.7256c-13.1191 0 -23.7627 10.5186 -23.9951 23.5635c-0.241211 13.4375 11.0947 24.4365 24.5361 24.4365h87.459c8.83691 0 16 -7.16309 16 -16v-16h113.544l-14.8955 24h-50.6494\\nc-8.83691 0 -16 7.16309 -16 16v16c0 8.83691 7.16309 16 16 16h64h0.000976562c7.36914 0 16.5049 -5.08203 20.3906 -11.3428l77.6807 -125.153c14.4053 5.54004 30.0625 8.55957 46.4355 8.49512zM186.75 182.228l-23.6641 -38.2275h43.3057\\nc-2.96875 14.5674 -9.91504 27.6992 -19.6416 38.2275zM128.002 48c32.7383 0 60.9297 19.7754 73.2998 48h-81.2998c-18.7891 0 -30.2871 20.6729 -20.4062 36.6318l45.5049 73.5088c-5.5127 1.20605 -11.2295 1.85938 -17.0986 1.85938c-44.1123 0 -80 -35.8877 -80 -80\\ns35.8877 -80 80 -80zM290.632 144l74.2861 120h-127.547l-24.7461 -39.9736c22.8271 -20.1328 38.4229 -48.2705 42.3828 -80.0264h35.624zM507.689 48.1143c46.0605 -2.43164 84.3115 34.3447 84.3125 79.8848c0 44.1123 -35.8877 80 -80 80h-0.0390625\\nc-5.55664 0 -14.4355 -1.11914 -19.8193 -2.49707l44.4688 -71.6426c4.66113 -7.50879 2.35156 -17.3721 -5.15625 -22.0322l-13.5938 -8.4375c-7.50879 -4.65918 -17.3721 -2.35156 -22.0322 5.15625l-44.4326 71.5859\\nc-12.7021 -14.7451 -20.1475 -34.1416 -19.3359 -55.2627c1.57812 -41.0635 34.5918 -74.5898 75.6279 -76.7549z\\\" />\\n    <glyph glyph-name=\\\"bus\\\" unicode=\\\"&#xf207;\\\" \\nd=\\\"M488 320c13.25 0 24 -10.7402 24 -24v-80c0 -13.25 -10.75 -24 -24 -24h-8v-166.4c0 -12.7998 -9.59961 -25.5996 -25.5996 -25.5996h-6.40039v-32c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v32h-192v-32c0 -17.6699 -14.3301 -32 -32 -32h-32\\nc-17.6699 0 -32 14.3301 -32 32v32c-17.6699 0 -32 14.3301 -32 32v160h-8c-13.25 0 -24 10.75 -24 24v80c0 13.2598 10.75 24 24 24h8v48c0 44.7998 99.2002 80 224 80s224 -35.2002 224 -80v-48h8zM112 48c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32zM128 160h256c17.6699 0 32 14.3301 32 32v128c0 17.6699 -14.3301 32 -32 32h-256c-17.6699 0 -32 -14.3301 -32 -32v-128c0 -17.6699 14.3301 -32 32 -32zM400 48c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"closed-captioning\\\" unicode=\\\"&#xf20a;\\\" \\nd=\\\"M464 384c26.5 0 48 -21.5 48 -48v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h416zM218.1 160.3c-41.1992 -37.8994 -92.1992 -15.3994 -92.2998 32.6006c0 46.0996 53.7998 63.1992 94.6006 31.1992\\nc2.89941 -2.2998 7.19922 -1.39941 9.09961 1.7002l17.5 30.5c1.5 2.5 1.09961 3.7002 -1 5.7002c-50.7998 49.4004 -172.5 27.2002 -172.5 -70.0996c0 -100 119.2 -124.7 172.8 -67.9004c2 2.09961 2.2002 5.2998 0.5 7.7002l-19.5 27.7002\\nc-2.09961 3 -6.39941 3.39941 -9.2002 0.899414zM408.5 160.3c-41.2002 -37.8994 -92.2002 -15.3994 -92.2002 32.6006c0 46.0996 53.7998 63.1992 94.6006 31.1992c2.89941 -2.2998 7.19922 -1.39941 9.09961 1.7002l17.5 30.5c1.5 2.5 1.09961 3.7002 -1 5.7002\\nc-50.7998 49.4004 -172.5 27.2002 -172.5 -70.0996c0 -100 119.2 -124.801 172.7 -67.9004c2 2.09961 2.2002 5.2998 0.5 7.7002l-19.5 27.7002c-2.10059 3 -6.40039 3.39941 -9.2002 0.899414z\\\" />\\n    <glyph glyph-name=\\\"shekel-sign\\\" unicode=\\\"&#xf20b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M248 280c0 30.9297 -25.0703 56 -56 56h-112v-352c0 -8.83984 -7.16016 -16 -16 -16h-48c-8.83984 0 -16 7.16016 -16 16v408c0 13.2598 10.75 24 24 24h168c75.1104 0 136 -60.8896 136 -136v-168c0 -8.83984 -7.16016 -16 -16 -16h-48c-8.83984 0 -16 7.16016 -16 16\\nv168zM432 416c8.83984 0 16 -7.16016 16 -16v-296c0 -75.1104 -60.8896 -136 -136 -136h-168c-13.25 0 -24 10.75 -24 24v280c0 8.83984 7.16016 16 16 16h48c8.83984 0 16 -7.16016 16 -16v-224h112c30.9297 0 56 25.0703 56 56v296c0 8.83984 7.16016 16 16 16h48z\\\" />\\n    <glyph glyph-name=\\\"cart-plus\\\" unicode=\\\"&#xf217;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M504.717 128h-293.145l6.54492 -32h268.418c15.4004 0 26.8154 -14.3008 23.4033 -29.3193l-5.51758 -24.2754c18.6914 -9.07324 31.5791 -28.2334 31.5791 -50.4053c0 -31.2021 -25.5186 -56.4443 -56.8242 -55.9941\\nc-29.8232 0.428711 -54.3496 24.6309 -55.1543 54.4473c-0.44043 16.2871 6.08496 31.0488 16.8027 41.5479h-209.648c10.377 -10.166 16.8242 -24.3271 16.8242 -40.001c0 -31.8135 -26.5283 -57.4307 -58.6699 -55.9385c-28.54 1.3252 -51.751 24.3857 -53.251 52.917\\nc-1.1582 22.0342 10.4355 41.4551 28.0508 51.5869l-70.2471 343.435h-69.8828c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h102.529c11.4004 0 21.2275 -8.02148 23.5127 -19.1904l9.16602 -44.8096h392.782\\nc15.4004 0 26.8154 -14.3008 23.4023 -29.3193l-47.2725 -208c-2.4834 -10.9268 -12.1973 -18.6807 -23.4033 -18.6807zM408 280h-48v40c0 8.83691 -7.16309 16 -16 16h-16c-8.83691 0 -16 -7.16309 -16 -16v-40h-48c-8.83691 0 -16 -7.16309 -16 -16v-16\\nc0 -8.83691 7.16309 -16 16 -16h48v-40c0 -8.83691 7.16309 -16 16 -16h16c8.83691 0 16 7.16309 16 16v40h48c8.83691 0 16 7.16309 16 16v16c0 8.83691 -7.16309 16 -16 16z\\\" />\\n    <glyph glyph-name=\\\"cart-arrow-down\\\" unicode=\\\"&#xf218;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M504.717 128h-293.145l6.54492 -32h268.418c15.4004 0 26.8154 -14.3008 23.4033 -29.3193l-5.51758 -24.2754c18.6914 -9.07324 31.5791 -28.2334 31.5791 -50.4053c0 -31.2021 -25.5186 -56.4443 -56.8242 -55.9941\\nc-29.8232 0.428711 -54.3496 24.6309 -55.1543 54.4473c-0.44043 16.2871 6.08496 31.0488 16.8027 41.5479h-209.648c10.377 -10.166 16.8242 -24.3271 16.8242 -40.001c0 -31.8135 -26.5283 -57.4307 -58.6699 -55.9385c-28.54 1.3252 -51.751 24.3857 -53.251 52.917\\nc-1.1582 22.0342 10.4355 41.4551 28.0508 51.5869l-70.2471 343.435h-69.8828c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h102.529c11.4004 0 21.2275 -8.02148 23.5127 -19.1904l9.16602 -44.8096h392.782\\nc15.4004 0 26.8154 -14.3008 23.4023 -29.3193l-47.2725 -208c-2.4834 -10.9268 -12.1973 -18.6807 -23.4033 -18.6807zM403.029 256h-43.0293v60c0 6.62695 -5.37305 12 -12 12h-24c-6.62695 0 -12 -5.37305 -12 -12v-60h-43.0293\\nc-10.6904 0 -16.0449 -12.9258 -8.48438 -20.4854l67.0283 -67.0283c4.68652 -4.68652 12.2842 -4.68652 16.9717 0l67.0283 67.0283c7.55957 7.55957 2.20508 20.4854 -8.48535 20.4854z\\\" />\\n    <glyph glyph-name=\\\"ship\\\" unicode=\\\"&#xf21a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M496.616 75.3613c17.8418 -44.3604 58.5664 -75.3613 119.384 -75.3613c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24c-61.0322 0 -107.505 20.6162 -143.258 59.3965c-14.4189 -34.8281 -48.7637 -59.3965 -88.7422 -59.3965h-128\\nc-39.9785 0 -74.3232 24.5684 -88.7422 59.3965c-35.7588 -38.7861 -82.2344 -59.3965 -143.258 -59.3965c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24c61.5869 0 101.828 31.7129 119.384 75.3613l-70.0117 70.0117\\nc-16.918 16.9189 -9.91699 45.7793 12.8359 53.0918l41.792 13.4336v140.102c0 17.6729 14.3271 32 32 32h64v40c0 13.2549 10.7451 24 24 24h144c13.2549 0 24 -10.7451 24 -24v-40h64c17.6729 0 32 -14.3271 32 -32v-140.102l41.792 -13.4336\\nc22.7783 -7.32129 29.7354 -36.1914 12.8359 -53.0918zM192 320v-87.5312l118.208 37.9951c2.63574 0.847656 7.02344 1.53516 9.79199 1.53516s7.15625 -0.6875 9.79199 -1.53516l118.208 -37.9951v87.5312h-256z\\\" />\\n    <glyph glyph-name=\\\"user-secret\\\" unicode=\\\"&#xf21b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M383.9 139.7c38.2998 -23.7002 64.0996 -65.7002 64.0996 -114.101v-44.7998c0 -24.7002 -20.0996 -44.7998 -44.7998 -44.7998h-358.4c-24.7002 0 -44.7998 20.0996 -44.7998 44.7998v44.7998c0 49.7002 27.2998 92.6006 67.4004 115.9l-25.8008 60.2002\\nc-4.5 10.5996 3.2002 22.2998 14.7002 22.2998h57.5c-11 18.9004 -17.7998 40.5996 -17.7998 64v0.299805c-39.2002 7.7998 -64 19.1006 -64 31.7002c0 13.2998 27.2998 25.0996 70 33c9.2002 32.7998 27.0996 65.7998 40.5996 82.7998\\nc9.5 11.9004 25.9004 15.6006 39.5 8.7998l27.6006 -13.7998c9 -4.5 19.5996 -4.5 28.5996 0l27.6006 13.7998c13.5996 6.80078 30 3.10059 39.5 -8.7998c13.5996 -17 31.3994 -50 40.5996 -82.7998c42.7998 -7.90039 70.0996 -19.7002 70.0996 -33\\nc0 -12.5996 -24.7998 -23.9004 -64 -31.7002v-0.299805c0 -23.4004 -6.7998 -45.0996 -17.7998 -64h58.5c11.2998 0 19 -11.2002 15 -21.7002zM176 -32l32 120l-24 40l-49.5996 32zM272 -32l41.5996 192l-49.5996 -32l-24 -40zM313.7 266.5\\nc0.799805 2.59961 6.2998 5.7002 6.39941 5.7998v10.7998c-28.2998 -3.69922 -61 -5.7998 -96 -5.7998s-67.6992 2.2002 -96 5.7998v-10.7998c0 -0.0996094 5.5 -3.2998 6.30078 -5.7998c3.7998 -11.9004 7 -24.5996 16.5 -33.4004c8 -7.39941 47 -25.1992 64 25\\nc2.89941 8.40039 15.5 8.40039 18.2998 0c16 -47.3994 53.8994 -34.2998 64 -25c9.5 8.80078 12.5996 21.5 16.5 33.4004z\\\" />\\n    <glyph glyph-name=\\\"motorcycle\\\" unicode=\\\"&#xf21c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M512.9 256c69.5996 -0.5 126.5 -57.2998 127.199 -126.9c0.600586 -71.5996 -57.5996 -129.8 -129.199 -129.1c-69.6006 0.599609 -126.301 57.5 -126.801 127.1c-0.299805 39.3008 17.2002 74.5 44.8008 98.2002l-12.5 20.7998\\nc-38.7002 -31.2998 -58.3008 -77.8994 -56.2002 -125c0.599609 -13.6992 -10.2998 -25.0996 -24 -25.0996h-84.2002c-14.2998 -55.2002 -64.4004 -96 -124 -96c-71.7002 0 -129.6 58.9004 -128 131c1.59961 67.4004 55.9004 122.5 123.2 124.9\\nc14.3994 0.5 28.2998 -1.30078 41.2998 -5.2002l11.2998 20.5c-9.09961 13.8994 -23.2998 24.7998 -47.7998 24.7998h-56c-13.0996 0 -23.7998 10.5 -24 23.5c-0.299805 13.5 11 24.5 24.5 24.5h55.5c55 0 82.2002 -16.9004 99.9004 -40h153.699l-19.1992 32h-66.4004\\nc-8.7998 0 -16 7.2002 -16 16v16c0 8.7998 7.2002 16 16 16h80c8.40039 0 16.2002 -4.40039 20.5996 -11.5996l22.8008 -38l37.5 41.6992c4.5 5 11 7.90039 17.7998 7.90039h45.2998c13.2998 0 24 -10.7002 24 -24v-32c0 -13.2998 -10.7002 -24 -24 -24h-82.4004\\nl32.9004 -54.9004c13.2998 4.60059 27.5 7 42.4004 6.90039zM128 48c32.7002 0 60.9004 19.7998 73.2998 48h-81.2998c-18.2002 0 -29.7998 19.5996 -21 35.5996l41.5 75.4004c-4.09961 0.700195 -8.2998 1 -12.5 1c-44.0996 0 -80 -35.9004 -80 -80s35.9004 -80 80 -80z\\nM591.9 123.6c2.39941 46.1006 -34.3008 84.4004 -79.9004 84.3008c-5.40039 0 -10.7002 -0.5 -15.9004 -1.60059l48.6006 -80.8994c4.5 -7.60059 2.09961 -17.5 -5.5 -22l-13.7002 -8.2002c-7.59961 -4.5 -17.5 -2.10059 -22 5.5l-49.4004 82.3994\\nc-13.6992 -14.2998 -22.0996 -33.6992 -22.0996 -55.0996c0 -45.5996 38.2998 -82.4004 84.4004 -79.9004c40.5 2.10059 73.2998 34.9004 75.5 75.5z\\\" />\\n    <glyph glyph-name=\\\"street-view\\\" unicode=\\\"&#xf21d;\\\" \\nd=\\\"M367.9 118.24c85.2295 -15.5801 144.1 -48.29 144.1 -86.2402c0 -53.0195 -114.62 -96 -256 -96s-256 42.9805 -256 96c0 37.9502 58.8701 70.6602 144.1 86.2402c4.62012 -5.2998 9.78027 -10.1006 15.9004 -13.6504v-22.9395\\nc-66.5195 -9.35059 -112 -28.0508 -112 -49.6504c0 -30.9297 93.1201 -56 208 -56s208 25.0703 208 56c0 21.5996 -45.4805 40.3096 -112 49.6504v22.9395c6.12012 3.5498 11.2803 8.35059 15.9004 13.6504zM256 320c-35.3496 0 -64 28.6504 -64 64s28.6504 64 64 64\\ns64 -28.6504 64 -64s-28.6504 -64 -64 -64zM192 128c-17.6699 0 -32 14.3301 -32 32v96c0 26.5098 21.4902 48 48 48h11.7998c11.0703 -5.03027 23.2598 -8 36.2002 -8s25.1299 2.96973 36.2002 8h11.7998c26.5098 0 48 -21.4902 48 -48v-96\\nc0 -17.6699 -14.3301 -32 -32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v96z\\\" />\\n    <glyph glyph-name=\\\"heartbeat\\\" unicode=\\\"&#xf21e;\\\" \\nd=\\\"M320.2 204.2l22.0996 -44.2002h109.101l-182.601 -186.5c-7.09961 -7.2998 -18.5996 -7.2998 -25.7002 0l-182.5 186.5h94.1006l30 71.7002l56.8994 -126.3c5.5 -12.3008 22.9004 -12.7002 28.9004 -0.600586zM473.7 374.1\\nc48.7002 -49.7998 50.7998 -129.1 7.2998 -182.1h-118.9l-27.5996 55.2002c-5.90039 11.7998 -22.7002 11.7998 -28.5996 0l-49 -97.9004l-58.2002 129.3c-5.7998 12.8008 -24 12.5 -29.4004 -0.399414l-35.8994 -86.2002h-102.4c-43.5 53 -41.4004 132.3 7.2998 182.1\\nl2.40039 2.40039c51.5 52.7002 135.899 52.7002 187.399 0l27.9004 -28.5l27.9004 28.5996c51.5996 52.6006 135.899 52.6006 187.399 0z\\\" />\\n    <glyph glyph-name=\\\"venus\\\" unicode=\\\"&#xf221;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M288 272c0 -68.5 -47.9004 -125.9 -112 -140.4v-51.5996h36c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-36v-36c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v36h-36c-6.59961 0 -12 5.40039 -12 12v40\\nc0 6.59961 5.40039 12 12 12h36v51.5996c-64.0996 14.5 -112 71.9004 -112 140.4c0 79.5 64.5 144 144 144s144 -64.5 144 -144zM64 272c0 -44.0996 35.9004 -80 80 -80s80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80z\\\" />\\n    <glyph glyph-name=\\\"mars\\\" unicode=\\\"&#xf222;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M372 384c6.59961 0 12 -5.40039 12 -12v-79c0 -10.7002 -12.9004 -16.0996 -20.5 -8.5l-16.9004 16.9004l-80.6992 -80.7002c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -79.5 -64.5 -144 -144 -144s-144 64.5 -144 144s64.5 144 144 144\\nc28.2002 0 54.5 -8.09961 76.7002 -22.0996l80.7002 80.6992l-16.9004 16.9004c-7.5 7.59961 -2.2002 20.5 8.5 20.5h79zM144 64c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"mercury\\\" unicode=\\\"&#xf223;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M288 240c0 -68.5 -47.9004 -125.9 -112 -140.4v-51.5996h36c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-36v-36c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v36h-36c-6.59961 0 -12 5.40039 -12 12v40\\nc0 6.59961 5.40039 12 12 12h36v51.5996c-64.0996 14.5 -112 71.9004 -112 140.4c0 44.2002 19.9004 83.7002 51.2002 110c-2.5 1.90039 -4.90039 3.7998 -7.2002 5.7998c-24.7998 21.2002 -39.7998 48.7998 -43.2002 78.9004\\nc-0.899414 7.09961 4.7002 13.2998 11.9004 13.2998h40.5c5.7002 0 10.5996 -4.09961 11.7002 -9.7998c2.5 -12.5 9.59961 -24.2998 20.6992 -33.7998c15.4004 -13.2002 36.1006 -20.4004 58.4004 -20.4004s43 7.2002 58.2998 20.4004\\nc11.1006 9.5 18.2998 21.2998 20.7002 33.7998c1.09961 5.7002 6 9.7998 11.7998 9.7998h40.5c7.2002 0 12.7998 -6.2002 11.9004 -13.2998c-3.40039 -30 -18.5 -57.6006 -43.2002 -78.7998c-2.2998 -2 -4.7002 -4 -7.2002 -5.80078\\nc31.2998 -26.3994 51.2002 -65.8994 51.2002 -110.1zM64 240c0 -44.0996 35.9004 -80 80 -80s80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80z\\\" />\\n    <glyph glyph-name=\\\"transgender\\\" unicode=\\\"&#xf224;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M372 448c6.59961 0 12 -5.40039 12 -12v-79c0 -10.7002 -12.9004 -16.0996 -20.5 -8.5l-16.9004 16.9004l-80.6992 -80.7002c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -68.5 -47.9004 -125.8 -112 -140.4v-27.5996h36c6.59961 0 12 -5.40039 12 -12v-40\\nc0 -6.59961 -5.40039 -12 -12 -12h-36v-28c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v28h-36c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h36v27.5996c-64.0996 14.5 -112 71.9004 -112 140.4c0 79.5 64.5 144 144 144\\nc28.2002 0 54.5 -8.09961 76.7002 -22.0996l80.7002 80.6992l-16.9004 16.9004c-7.5 7.59961 -2.2002 20.5 8.5 20.5h79zM144 128c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"transgender-alt\\\" unicode=\\\"&#xf225;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M468 448c6.59961 0 12 -5.40039 12 -12v-79c0 -10.7002 -12.9004 -16.0996 -20.5 -8.5l-16.9004 16.9004l-80.6992 -80.7002c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -68.5 -47.9004 -125.8 -112 -140.4v-27.5996h36c6.59961 0 12 -5.40039 12 -12v-40\\nc0 -6.59961 -5.40039 -12 -12 -12h-36v-28c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v28h-36c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h36v27.5996c-64.0996 14.5 -112 71.9004 -112 140.4\\nc0 28.2002 8.09961 54.5 22.2002 76.5996l-16.5 16.5l-19.7998 -19.7998c-4.7002 -4.7002 -12.3008 -4.7002 -17 0l-28.3008 28.2998c-4.69922 4.7002 -4.69922 12.3008 0 17l19.8008 19.8008l-19 19l-16.9004 -16.9004c-7.59961 -7.5 -20.5 -2.2002 -20.5 8.5v79\\nc0 6.59961 5.40039 12 12 12h79c10.7002 0 16.0996 -12.9004 8.40039 -20.4004l-16.9004 -16.8994l19 -19l19.7998 19.7998c4.7002 4.7002 12.2998 4.7002 17 0l28.2998 -28.2998c4.7002 -4.7002 4.7002 -12.2998 0 -17l-19.7998 -19.7998l16.5 -16.5\\nc22.2002 14 48.5 22.0996 76.7002 22.0996s54.5 -8.09961 76.7002 -22.0996l80.7002 80.6992l-16.9004 16.9004c-7.5 7.59961 -2.2002 20.5 8.5 20.5h79zM240 128c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"venus-double\\\" unicode=\\\"&#xf226;\\\" \\nd=\\\"M288 272c0 -68.5 -47.9004 -125.9 -112 -140.4v-51.5996h36c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-36v-36c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v36h-36c-6.59961 0 -12 5.40039 -12 12v40\\nc0 6.59961 5.40039 12 12 12h36v51.5996c-64.0996 14.5 -112 71.9004 -112 140.4c0 79.5 64.5 144 144 144s144 -64.5 144 -144zM64 272c0 -44.0996 35.9004 -80 80 -80s80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80zM400 131.6v-51.5996h36\\nc6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-36v-36c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v36h-36c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h36v51.5996\\nc-21.2002 4.80078 -40.5996 14.3008 -57.2002 27.3008c14 16.6992 25 36 32.1006 57.0996c14.5 -14.7998 34.6992 -24 57.0996 -24c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80c-22.2998 0 -42.5996 -9.2002 -57.0996 -24\\nc-7.10059 21.0996 -18 40.4004 -32.1006 57.0996c24.6006 19.3008 55.5 30.9004 89.2002 30.9004c79.5 0 144 -64.5 144 -144c0 -68.5 -47.9004 -125.9 -112 -140.4z\\\" />\\n    <glyph glyph-name=\\\"mars-double\\\" unicode=\\\"&#xf227;\\\" \\nd=\\\"M340 448c6.59961 0 12 -5.40039 12 -12v-79c0 -7.2002 -5.90039 -12 -12.0996 -12c-2.90039 0 -6 1.09961 -8.40039 3.5l-16.9004 16.9004l-48.6992 -48.7002c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -79.5 -64.5 -144 -144 -144s-144 64.5 -144 144\\ns64.5 144 144 144c28.2002 0 54.5 -8.09961 76.7002 -22.0996l48.7002 48.6992l-16.9004 16.9004c-7.5 7.59961 -2.2002 20.5 8.5 20.5h79zM144 160c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80zM500 288.1\\nc6.59961 0 12 -5.39941 12 -12.0996v-79c0 -7.2002 -5.90039 -12 -12.0996 -12c-3 0 -6 1.09961 -8.40039 3.5l-16.9004 16.9004l-48.6992 -48.7002c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -79.5 -64.5 -144 -144 -144c-74.4004 0 -135.6 56.4004 -143.2 128.9\\nc21.7998 2 43.2998 8.19922 63.2998 18.3994c-0.0996094 -1 -0.0996094 -2.09961 -0.0996094 -3.2002c0 -44.0996 35.9004 -80 80 -80s80 35.9004 80 80c0 44.1006 -35.9004 80 -80 80c-1 0 -2.09961 -0.0996094 -3.2002 -0.0996094\\nc10.2002 20 16.2998 41.5 18.4004 63.2998c22.5 -2.39941 43.2998 -9.89941 61.5 -21.2998l48.7002 48.7002l-16.9004 16.8994c-7.5 7.60059 -2.2002 20.5 8.5 20.5h79z\\\" />\\n    <glyph glyph-name=\\\"venus-mars\\\" unicode=\\\"&#xf228;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M564 448c6.59961 0 12 -5.40039 12 -12v-79c0 -7.2002 -5.90039 -12 -12.0996 -12c-3 0 -6 1.09961 -8.40039 3.5l-16.9004 16.9004l-48.6992 -48.7002c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -79.5 -64.5 -144 -144 -144\\nc-33.7002 0 -64.7002 11.5 -89.2002 30.9004c14.1006 16.6992 25 36 32.1006 57.0996c14.5 -14.7998 34.7998 -24 57.0996 -24c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80c-22.4004 0 -42.5996 -9.2002 -57.0996 -24\\nc-7.10059 21.0996 -18.1006 40.4004 -32.1006 57.0996c24.6006 19.3008 55.5 30.9004 89.2002 30.9004c28.2002 0 54.5 -8.09961 76.7002 -22.0996l48.7002 48.6992l-16.9004 16.9004c-7.5 7.59961 -2.2002 20.5 8.5 20.5h79zM144 384c79.5 0 144 -64.5 144 -144\\nc0 -68.5 -47.9004 -125.8 -112 -140.4v-51.5996h36c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-36v-36c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v36h-36c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12\\nh36v51.5996c-64.0996 14.5 -112 71.9004 -112 140.4c0 79.5 64.5 144 144 144zM144 160c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"mars-stroke\\\" unicode=\\\"&#xf229;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M372 384c6.59961 0 12 -5.40039 12.0996 -12v-78.9004c0 -10.6992 -12.8994 -16.0996 -20.5 -8.5l-16.8994 16.9004l-17.5 -17.5l14.0996 -14.0996c4.7002 -4.7002 4.7002 -12.3008 0 -17l-28.2998 -28.3008c-4.7002 -4.69922 -12.2998 -4.69922 -17 0l-14.0996 14.1006\\nl-18 -18c14 -22.2002 22.0996 -48.5 22.0996 -76.7002c0 -79.5 -64.5 -144 -144 -144s-144 64.5 -144 144s64.5 144 143.9 144c28.1992 0 54.5 -8.09961 76.6992 -22.0996l18 18l-14.0996 14.0996c-4.7002 4.7002 -4.7002 12.2998 0 17l28.2998 28.2002\\nc4.7002 4.7002 12.2998 4.7002 17 0l14.1006 -14.1006l17.5 17.5l-16.9004 16.9004c-7.5 7.59961 -2.2002 20.5 8.5 20.5h79zM144 64c44.0996 0 80 35.9004 80 80s-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"mars-stroke-v\\\" unicode=\\\"&#xf22a;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M245.8 213.8c56.2998 -56.2002 56.2998 -147.399 0 -203.6c-56.2002 -56.2002 -147.399 -56.2002 -203.6 0s-56.2002 147.399 0 203.6c19.8994 19.9004 44.2002 32.7998 69.7998 38.6006v25.3994h-20c-6.59961 0 -12 5.40039 -12 12v40c0 6.60059 5.40039 12 12 12h20\\nv24.7002h-23.9004c-10.6992 0 -16.0996 12.9004 -8.5 20.5l55.9004 55.9004c4.7002 4.69922 12.2998 4.69922 17 0l55.9004 -55.8008c7.5 -7.59961 2.19922 -20.5 -8.5 -20.5h-23.9004v-24.7998h20c6.59961 0 12 -5.39941 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20\\nv-25.3994c25.5996 -5.80078 49.9004 -18.7002 69.7998 -38.6006zM200.6 55.4004c31.2002 31.1992 31.2002 82 0 113.1c-31.1992 31.2002 -81.8994 31.2002 -113.1 0s-31.2002 -81.9004 0 -113.1c31.2002 -31.2002 81.9004 -31.2002 113.1 0z\\\" />\\n    <glyph glyph-name=\\\"mars-stroke-h\\\" unicode=\\\"&#xf22b;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M476.2 200.5c4.7002 -4.7002 4.7002 -12.2998 0.0996094 -17l-55.8994 -55.9004c-7.60059 -7.5 -20.5 -2.19922 -20.5 8.5v23.9004h-23.9004v-20c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v20h-27.5996\\nc-5.80078 -25.5996 -18.7002 -49.9004 -38.6006 -69.7998c-56.2002 -56.2002 -147.399 -56.2002 -203.6 0s-56.2002 147.399 0 203.6s147.399 56.2002 203.6 0c19.9004 -19.8994 32.7998 -44.2002 38.6006 -69.7998h27.5996v20c0 6.59961 5.40039 12 12 12h40\\nc6.59961 0 12 -5.40039 12 -12v-20h23.7998v23.9004c0 10.6992 12.9004 16.0996 20.5 8.5zM200.6 135.4c31.2002 31.1992 31.2002 82 0 113.1c-31.1992 31.2002 -81.8994 31.2002 -113.1 0s-31.2002 -81.9004 0 -113.1c31.2002 -31.2002 81.9004 -31.2002 113.1 0z\\\" />\\n    <glyph glyph-name=\\\"neuter\\\" unicode=\\\"&#xf22c;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M288 272c0 -68.5 -47.9004 -125.9 -112 -140.4v-151.6c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v151.6c-64.0996 14.5 -112 71.9004 -112 140.4c0 79.5 64.5 144 144 144s144 -64.5 144 -144zM144 192c44.0996 0 80 35.9004 80 80\\ns-35.9004 80 -80 80s-80 -35.9004 -80 -80s35.9004 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"genderless\\\" unicode=\\\"&#xf22d;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M144 272c-44.0996 0 -80 -35.9004 -80 -80s35.9004 -80 80 -80s80 35.9004 80 80s-35.9004 80 -80 80zM144 336c79.5 0 144 -64.5 144 -144s-64.5 -144 -144 -144s-144 64.5 -144 144s64.5 144 144 144z\\\" />\\n    <glyph glyph-name=\\\"server\\\" unicode=\\\"&#xf233;\\\" \\nd=\\\"M480 288h-448c-17.6729 0 -32 14.3271 -32 32v64c0 17.6729 14.3271 32 32 32h448c17.6729 0 32 -14.3271 32 -32v-64c0 -17.6729 -14.3271 -32 -32 -32zM432 376c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24zM368 376\\nc-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24zM480 128h-448c-17.6729 0 -32 14.3271 -32 32v64c0 17.6729 14.3271 32 32 32h448c17.6729 0 32 -14.3271 32 -32v-64c0 -17.6729 -14.3271 -32 -32 -32zM432 216\\nc-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24zM368 216c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24zM480 -32h-448c-17.6729 0 -32 14.3271 -32 32v64\\nc0 17.6729 14.3271 32 32 32h448c17.6729 0 32 -14.3271 32 -32v-64c0 -17.6729 -14.3271 -32 -32 -32zM432 56c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24zM368 56c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24\\ns24 10.7451 24 24s-10.7451 24 -24 24z\\\" />\\n    <glyph glyph-name=\\\"user-plus\\\" unicode=\\\"&#xf234;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 240c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-64v-64c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v64h-64c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h64v64c0 8.7998 7.2002 16 16 16h32\\nc8.7998 0 16 -7.2002 16 -16v-64h64zM224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM313.6 160c74.2002 0 134.4 -60.2002 134.4 -134.4v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352\\nc-26.5 0 -48 21.5 -48 48v41.5996c0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992z\\\" />\\n    <glyph glyph-name=\\\"user-times\\\" unicode=\\\"&#xf235;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M589.6 208l45.6006 -45.5996c6.2998 -6.30078 6.2998 -16.5 0 -22.8008l-22.7998 -22.7998c-6.30078 -6.2998 -16.5 -6.2998 -22.8008 0l-45.5996 45.6006l-45.5996 -45.6006c-6.30078 -6.2998 -16.5 -6.2998 -22.8008 0l-22.7998 22.7998\\nc-6.2998 6.30078 -6.2998 16.5 0 22.8008l45.6006 45.5996l-45.6006 45.5996c-6.2998 6.30078 -6.2998 16.5 0 22.8008l22.7998 22.7998c6.30078 6.2998 16.5 6.2998 22.8008 0l45.5996 -45.6006l45.5996 45.6006c6.30078 6.2998 16.5 6.2998 22.8008 0l22.7998 -22.7998\\nc6.2998 -6.30078 6.2998 -16.5 0 -22.8008zM224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM313.6 160c74.2002 0 134.4 -60.2002 134.4 -134.4v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352\\nc-26.5 0 -48 21.5 -48 48v41.5996c0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992z\\\" />\\n    <glyph glyph-name=\\\"bed\\\" unicode=\\\"&#xf236;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M176 192c-44.1104 0 -80 35.8896 -80 80s35.8896 80 80 80s80 -35.8896 80 -80s-35.8896 -80 -80 -80zM528 320c61.8604 0 112 -50.1396 112 -112v-192c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v48h-512v-48c0 -8.83984 -7.16016 -16 -16 -16\\nh-32c-8.83984 0 -16 7.16016 -16 16v352c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-208h224v144c0 8.83984 7.16016 16 16 16h224z\\\" />\\n    <glyph glyph-name=\\\"train\\\" unicode=\\\"&#xf238;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 352v-256c0 -51.8154 -61.624 -96 -130.022 -96l62.9805 -49.7207c5.94727 -4.69629 2.60352 -14.2793 -4.95801 -14.2793h-304c-7.57812 0 -10.8916 9.59375 -4.95703 14.2793l62.9795 49.7207c-68.2021 0 -130.022 44.0459 -130.022 96v256c0 53.0186 64 96 128 96\\nh192c65 0 128 -42.9814 128 -96zM400 216v112c0 13.2549 -10.7451 24 -24 24h-304c-13.2549 0 -24 -10.7451 -24 -24v-112c0 -13.2549 10.7451 -24 24 -24h304c13.2549 0 24 10.7451 24 24zM224 152c-30.9277 0 -56 -25.0723 -56 -56s25.0723 -56 56 -56s56 25.0723 56 56\\ns-25.0723 56 -56 56z\\\" />\\n    <glyph glyph-name=\\\"subway\\\" unicode=\\\"&#xf239;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 352v-256c0 -51.8154 -61.624 -96 -130.022 -96l62.9805 -49.7207c5.94727 -4.69629 2.60352 -14.2793 -4.95801 -14.2793h-304c-7.57812 0 -10.8916 9.59375 -4.95703 14.2793l62.9795 49.7207c-68.2021 0 -130.022 44.0459 -130.022 96v256c0 53.0186 64 96 128 96\\nh192c65 0 128 -42.9814 128 -96zM200 216v112c0 13.2549 -10.7451 24 -24 24h-104c-13.2549 0 -24 -10.7451 -24 -24v-112c0 -13.2549 10.7451 -24 24 -24h104c13.2549 0 24 10.7451 24 24zM400 216v112c0 13.2549 -10.7451 24 -24 24h-104c-13.2549 0 -24 -10.7451 -24 -24\\nv-112c0 -13.2549 10.7451 -24 24 -24h104c13.2549 0 24 10.7451 24 24zM352 160c-26.5098 0 -48 -21.4902 -48 -48s21.4902 -48 48 -48s48 21.4902 48 48s-21.4902 48 -48 48zM96 160c-26.5098 0 -48 -21.4902 -48 -48s21.4902 -48 48 -48s48 21.4902 48 48\\ns-21.4902 48 -48 48z\\\" />\\n    <glyph glyph-name=\\\"battery-full\\\" unicode=\\\"&#xf240;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 288h-480v-192h480v64h32v64h-32v64zM560 352c26.5098 0 48 -21.4902 48 -48v-16h8c13.2549 0 24 -10.7451 24 -24v-144c0 -13.2549 -10.7451 -24 -24 -24h-8v-16c0 -26.5098 -21.4902 -48 -48 -48h-512c-26.5098 0 -48 21.4902 -48 48v224\\nc0 26.5098 21.4902 48 48 48h512zM512 256v-128h-416v128h416z\\\" />\\n    <glyph glyph-name=\\\"battery-three-quarters\\\" unicode=\\\"&#xf241;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 288h-480v-192h480v64h32v64h-32v64zM560 352c26.5098 0 48 -21.4902 48 -48v-16h8c13.2549 0 24 -10.7451 24 -24v-144c0 -13.2549 -10.7451 -24 -24 -24h-8v-16c0 -26.5098 -21.4902 -48 -48 -48h-512c-26.5098 0 -48 21.4902 -48 48v224\\nc0 26.5098 21.4902 48 48 48h512zM416 256v-128h-320v128h320z\\\" />\\n    <glyph glyph-name=\\\"battery-half\\\" unicode=\\\"&#xf242;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 288h-480v-192h480v64h32v64h-32v64zM560 352c26.5098 0 48 -21.4902 48 -48v-16h8c13.2549 0 24 -10.7451 24 -24v-144c0 -13.2549 -10.7451 -24 -24 -24h-8v-16c0 -26.5098 -21.4902 -48 -48 -48h-512c-26.5098 0 -48 21.4902 -48 48v224\\nc0 26.5098 21.4902 48 48 48h512zM320 256v-128h-224v128h224z\\\" />\\n    <glyph glyph-name=\\\"battery-quarter\\\" unicode=\\\"&#xf243;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 288h-480v-192h480v64h32v64h-32v64zM560 352c26.5098 0 48 -21.4902 48 -48v-16h8c13.2549 0 24 -10.7451 24 -24v-144c0 -13.2549 -10.7451 -24 -24 -24h-8v-16c0 -26.5098 -21.4902 -48 -48 -48h-512c-26.5098 0 -48 21.4902 -48 48v224\\nc0 26.5098 21.4902 48 48 48h512zM224 256v-128h-128v128h128z\\\" />\\n    <glyph glyph-name=\\\"battery-empty\\\" unicode=\\\"&#xf244;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 288h-480v-192h480v64h32v64h-32v64zM560 352c26.5098 0 48 -21.4902 48 -48v-16h8c13.2549 0 24 -10.7451 24 -24v-144c0 -13.2549 -10.7451 -24 -24 -24h-8v-16c0 -26.5098 -21.4902 -48 -48 -48h-512c-26.5098 0 -48 21.4902 -48 48v224\\nc0 26.5098 21.4902 48 48 48h512z\\\" />\\n    <glyph glyph-name=\\\"mouse-pointer\\\" unicode=\\\"&#xf245;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M302.189 118.874h-106.084l55.8301 -135.993c3.88965 -9.42773 -0.554688 -19.999 -9.44336 -23.999l-49.165 -21.4268c-9.16504 -4 -19.4434 0.571289 -23.332 9.71387l-53.0527 129.136l-86.6641 -89.1377c-11.5498 -11.877 -30.2783 -2.7207 -30.2783 12.8564v429.678\\nc0 16.3994 19.9209 24.3945 30.2773 12.8555l284.412 -292.542c11.4717 -11.1787 3.00684 -31.1406 -12.5 -31.1406z\\\" />\\n    <glyph glyph-name=\\\"i-cursor\\\" unicode=\\\"&#xf246;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M256 395.952c0 -6.64648 -5.4043 -12.0098 -12.0498 -11.9922c-27.875 0.0712891 -83.9502 -3.20996 -83.9502 -48.1416v-111.818h36c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-36v-112c0 -44.9395 57.8887 -48.5527 83.8555 -48.2422\\nc6.68652 0.0800781 12.1445 -5.31055 12.1445 -11.998v-39.6445c0 -6.5957 -5.31836 -11.957 -11.9131 -12c-35.0654 -0.228516 -78.3525 0.62207 -116.087 37.8447c-38.4688 -37.9482 -83.6211 -38.3027 -116.158 -37.8936\\nc-6.56738 0.0820312 -11.8418 5.42969 -11.8418 11.999v39.9824c0 6.64648 5.4043 12.0098 12.0498 11.9932c27.875 -0.0722656 83.9502 3.02734 83.9502 47.959v112h-36c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h36v111.818\\nc0 44.9385 -57.8887 48.7344 -83.8555 48.4248c-6.68652 -0.0800781 -12.1445 5.31055 -12.1445 11.998v39.6445c0 6.5957 5.31836 11.957 11.9131 12c35.0654 0.228516 78.3525 -0.62207 116.087 -37.8447c38.4688 37.9482 83.6211 38.3027 116.158 37.8926\\nc6.56738 -0.0820312 11.8418 -5.42969 11.8418 -11.999v-39.9824z\\\" />\\n    <glyph glyph-name=\\\"object-group\\\" unicode=\\\"&#xf247;\\\" \\nd=\\\"M480 320v-288h20c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v20h-384v-20c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h20v320h-20\\nc-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-20h384v20c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-20v-32zM96 172c0 -6.62695 5.37305 -12 12 -12h168\\nc6.62695 0 12 5.37305 12 12v136c0 6.62695 -5.37305 12 -12 12h-168c-6.62695 0 -12 -5.37305 -12 -12v-136zM416 76v136c0 6.62695 -5.37305 12 -12 12h-84v-72c0 -13.2549 -10.7451 -24 -24 -24h-72v-52c0 -6.62695 5.37305 -12 12 -12h168c6.62695 0 12 5.37305 12 12z\\n\\\" />\\n    <glyph glyph-name=\\\"object-ungroup\\\" unicode=\\\"&#xf248;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M64 128v-26c0 -3.31152 -2.68848 -6 -6 -6h-52c-3.31152 0 -6 2.68848 -6 6v52c0 3.31152 2.68848 6 6 6h26v192h-26c-3.31152 0 -6 2.68848 -6 6v52c0 3.31152 2.68848 6 6 6h52c3.31152 0 6 -2.68848 6 -6v-26h288v26c0 3.31152 2.68848 6 6 6h52\\nc3.31152 0 6 -2.68848 6 -6v-52c0 -3.31152 -2.68848 -6 -6 -6h-26v-192h26c3.31152 0 6 -2.68848 6 -6v-52c0 -3.31152 -2.68848 -6 -6 -6h-52c-3.31152 0 -6 2.68848 -6 6v26h-288zM544 192v-160h26c3.31152 0 6 -2.68848 6 -6v-52c0 -3.31152 -2.68848 -6 -6 -6h-52\\nc-3.31152 0 -6 2.68848 -6 6v26h-288v-26c0 -3.31152 -2.68848 -6 -6 -6h-52c-3.31152 0 -6 2.68848 -6 6v52c0 3.31152 2.68848 6 6 6h26v72h136v-8c0 -13.2549 10.7451 -24 24 -24h64c13.2549 0 24 10.7451 24 24v64c0 13.2549 -10.7451 24 -24 24h-8v72h104v26\\nc0 3.31152 2.68848 6 6 6h52c3.31152 0 6 -2.68848 6 -6v-52c0 -3.31152 -2.68848 -6 -6 -6h-26v-32z\\\" />\\n    <glyph glyph-name=\\\"sticky-note\\\" unicode=\\\"&#xf249;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M312 128c-13.2002 0 -24 -10.7998 -24 -24v-136h-264c-13.2998 0 -24 10.7002 -24 24v400c0 13.2998 10.7002 24 24 24h400c13.2998 0 24 -10.7002 24 -24v-264h-136zM441 73l-98 -98c-4.5 -4.5 -10.5996 -7 -17 -7h-6v128h128v-6.09961\\nc0 -6.30078 -2.5 -12.4004 -7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"clone\\\" unicode=\\\"&#xf24d;\\\" \\nd=\\\"M464 448c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h288zM176 32h208v-48c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v288\\nc0 26.5098 21.4902 48 48 48h48v-208c0 -44.1123 35.8877 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"balance-scale\\\" unicode=\\\"&#xf24e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M256 112c0 -44.1797 -57.3096 -80 -128 -80s-128 35.8203 -128 80h0.0195312c0 15.6699 -2.0791 7.25 85.04 181.51c17.6807 35.3604 68.2207 35.29 85.8701 0c86.3906 -172.779 85.0508 -165.33 85.0508 -181.51h0.0195312zM128 272l-72 -144h144zM639.98 112\\nc0 -44.1797 -57.29 -80 -127.98 -80s-128 35.8203 -128 80h0.0195312c0 15.6699 -2.0791 7.25 85.04 181.51c17.6807 35.3604 68.2207 35.29 85.8701 0c86.3906 -172.779 85.0508 -165.33 85.0508 -181.51zM440 128h144l-72 144zM528 0c8.83984 0 16 -7.16016 16 -16v-32\\nc0 -8.83984 -7.16016 -16 -16 -16h-416c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h176v294.75c-23.5195 10.29 -41.1602 31.4902 -46.3896 57.25h-129.61c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h144.36\\nc14.5996 19.3203 37.5498 32 63.6396 32s49.04 -12.6797 63.6396 -32h144.36c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-129.61c-5.22949 -25.7695 -22.8799 -46.96 -46.3896 -57.25v-294.75h176z\\\" />\\n    <glyph glyph-name=\\\"hourglass-start\\\" unicode=\\\"&#xf251;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M360 448c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24c0 -90.9648 -51.0156 -167.734 -120.842 -192c69.8262 -24.2656 120.842 -101.035 120.842 -192c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24h-336\\nc-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24c0 90.9648 51.0156 167.734 120.842 192c-69.8262 24.2656 -120.842 101.035 -120.842 192c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h336zM296 0c0 77.4834 -46.2139 144 -104 144\\nc-57.7959 0 -104 -66.542 -104 -144h208z\\\" />\\n    <glyph glyph-name=\\\"hourglass-half\\\" unicode=\\\"&#xf252;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M360 448c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24c0 -90.9648 -51.0156 -167.734 -120.842 -192c69.8262 -24.2656 120.842 -101.035 120.842 -192c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24h-336\\nc-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24c0 90.9648 51.0156 167.734 120.842 192c-69.8262 24.2656 -120.842 101.035 -120.842 192c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h336zM284.922 64\\nc-17.0596 46.8037 -52.1006 80 -92.9219 80c-40.8242 0 -75.8613 -33.2031 -92.9199 -80h185.842zM284.941 320c7.07129 19.4131 11.0586 41.1953 11.0586 64h-208c0 -22.748 3.98828 -44.5479 11.0781 -64h185.863z\\\" />\\n    <glyph glyph-name=\\\"hourglass-end\\\" unicode=\\\"&#xf253;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M360 384c0 -90.9648 -51.0156 -167.734 -120.842 -192c69.8262 -24.2656 120.842 -101.035 120.842 -192c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24h-336c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24\\nc0 90.9648 51.0156 167.734 120.842 192c-69.8262 24.2656 -120.842 101.035 -120.842 192c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h336c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24zM192 240c57.4902 0 104 66.0547 104 144\\nh-208c0 -77.4824 46.2129 -144 104 -144z\\\" />\\n    <glyph glyph-name=\\\"hourglass\\\" unicode=\\\"&#xf254;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M360 384c0 -90.9648 -51.0156 -167.734 -120.842 -192c69.8262 -24.2656 120.842 -101.035 120.842 -192c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24h-336c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24\\nc0 90.9648 51.0156 167.734 120.842 192c-69.8262 24.2656 -120.842 101.035 -120.842 192c-13.2549 0 -24 10.7451 -24 24v16c0 13.2549 10.7451 24 24 24h336c13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24z\\\" />\\n    <glyph glyph-name=\\\"hand-rock\\\" unicode=\\\"&#xf255;\\\" \\nd=\\\"M464.8 368c26.2998 -0.400391 47.2002 -22.5 47.2002 -48.7998v-133.5c0 -12.7998 -2.5 -25.5 -7.5 -37.2998l-49 -116.301c-4.90039 -11.7998 -7.5 -24.5 -7.5 -37.2998v-2.89941c0 -13.3008 -10.7002 -24 -24 -24h-240c-13.2998 0 -24 10.6992 -24 24v6.69922\\nc0 13.7002 -5.90039 26.8008 -16.0996 35.9004l-111.7 99.2998c-20.5 18.2998 -32.2002 44.4004 -32.2002 71.7998v66.4004c0 26.7998 21.9004 48.4004 48.7998 48c26.2998 -0.5 47.2002 -22.5 47.2002 -48.7998v-48.1006l8 -7.09961v136\\nc0 26.7998 21.9004 48.4004 48.7998 48c26.2998 -0.5 47.2002 -22.5 47.2002 -48.7998v-31.2002h8v48c0 26.7998 21.9004 48.4004 48.7998 48c26.2998 -0.5 47.2002 -22.5 47.2002 -48.7998v-47.2002h8v32c0 26.7998 21.9004 48.4004 48.7998 48\\nc26.2998 -0.5 47.2002 -22.5 47.2002 -48.7998v-31.2002h8c0 26.7998 21.9004 48.4004 48.7998 48z\\\" />\\n    <glyph glyph-name=\\\"hand-paper\\\" unicode=\\\"&#xf256;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M408.781 319.993c21.7305 -0.416016 39.2188 -18.1621 39.2178 -39.9932v-150.359c0 -12.2998 -2.28711 -32.001 -5.10449 -43.9746l-26.5078 -112.66c-5.10156 -21.6816 -24.4502 -37.0059 -46.7236 -37.0059h-197.59c-13.4922 0 -30.8838 8.85645 -38.8193 19.7676\\nl-125.601 172.705c-12.9932 17.8672 -9.04297 42.8838 8.82129 55.877c17.8682 12.9941 42.8848 9.04297 55.877 -8.82227l31.6484 -43.5195v235.992c0 21.8311 17.4883 39.5771 39.2188 39.9932c22.4248 0.428711 40.7812 -18.3535 40.7812 -40.7832v-175.21h8v216\\nc0 21.8311 17.4883 39.5771 39.2188 39.9932c22.4248 0.428711 40.7812 -18.3535 40.7812 -40.7832v-215.21h8v177c0 21.8311 17.4883 39.5771 39.2188 39.9932c22.4248 0.428711 40.7812 -18.3535 40.7812 -40.7832v-176.21h8v87.21\\nc0 22.4297 18.3564 41.2119 40.7812 40.7832z\\\" />\\n    <glyph glyph-name=\\\"hand-scissors\\\" unicode=\\\"&#xf257;\\\" \\nd=\\\"M216 8c0 22.0918 17.9092 40 40 40v8h-32c-22.0908 0 -40 17.9082 -40 40s17.9092 40 40 40h32v8h-208c-26.5098 0 -48 21.4902 -48 48s21.4902 48 48 48h208v13.5723l-177.551 69.7393c-24.6738 9.69434 -36.8184 37.5557 -27.125 62.2285\\nc9.69238 24.6738 37.5537 36.8174 62.2275 27.124l190.342 -74.7646l24.8721 31.0898c12.3066 15.3809 33.9785 19.5146 51.0811 9.74121l112 -64c11.125 -6.3584 20.1533 -21.917 20.1533 -34.7305v-240c0 -18.5615 -12.7695 -34.6855 -30.8379 -38.9365l-136 -32\\nc-2.49414 -0.586914 -6.59668 -1.06348 -9.1582 -1.06348h-0.00390625h-80c-22.0908 0 -40 17.9082 -40 40z\\\" />\\n    <glyph glyph-name=\\\"hand-lizard\\\" unicode=\\\"&#xf258;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M384 -32v61.4609c0 7.28906 -4.99707 16.3711 -11.1543 20.2734l-111.748 70.8105c-6.49316 4.11523 -18.0029 7.45508 -25.6904 7.45508h-0.000976562h-147.406c-13.2549 0 -24 10.7451 -24 24v8c0 35.3457 28.6543 64 64 64h123.648\\nc11.7754 0 25.0088 8.82227 29.5371 19.6924l21.4102 51.3848c4.94141 11.8555 -3.77051 24.9229 -16.6143 24.9229h-229.981c-30.9277 0 -56 25.0723 -56 56v16c0 13.2549 10.7451 24 24 24h333.544c14.6035 0 32.7852 -10.0205 40.583 -22.3682l163.04 -258.146\\nc8.1875 -12.9639 14.833 -35.9297 14.833 -51.2627v-0.000976562v-116.222h-192z\\\" />\\n    <glyph glyph-name=\\\"hand-spock\\\" unicode=\\\"&#xf259;\\\" \\nd=\\\"M510.9 302.729l-68.2969 -286.823c-10.502 -44.1084 -55.8252 -79.9062 -101.166 -79.9062h-127.363c-29.7637 0 -71.5107 16.5547 -93.1855 36.9531l-108.298 101.92c-6.92383 6.53418 -12.542 19.5635 -12.542 29.083c0 22.0762 17.916 39.9922 39.9922 39.9922\\nc8.7334 0 20.9922 -4.84961 27.3623 -10.8252l60.5928 -57.0254v0c0 22.6758 -5.22852 58.7256 -11.6699 80.4668l-42.6885 144.075c-0.90918 3.06934 -1.64746 8.1582 -1.64746 11.3594c0 22.083 17.9229 40.0059 40.0059 40.0059\\nc16.4922 0 33.6768 -12.833 38.3594 -28.6465l37.1543 -125.395c0.975586 -3.29199 4.55469 -5.96484 7.98828 -5.96484c4.59863 0 8.33105 3.73242 8.33105 8.33105c0 0.582031 -0.117188 1.51172 -0.262695 2.0752l-50.3047 195.641\\nc-0.696289 2.70703 -1.26172 7.17285 -1.26172 9.96875c0 22.0781 17.918 39.9961 39.9961 39.9961c17.1152 0 34.4678 -13.4521 38.7344 -30.0273l56.0947 -218.158c1.11035 -4.31934 5.63184 -7.82617 10.0918 -7.82617c4.69238 0 9.26562 3.73047 10.208 8.32715\\nl37.6826 183.704c3.6416 17.6387 21.2139 31.9541 39.2246 31.9541c3.41309 0 8.82422 -0.835938 12.0781 -1.86426c19.8604 -6.2998 30.8623 -27.6738 26.6758 -48.085l-33.8389 -164.967c-0.0849609 -0.414062 -0.154297 -1.09375 -0.154297 -1.51758\\nc0 -4.16797 3.38281 -7.55176 7.55176 -7.55176c3.29297 0 6.58398 2.59961 7.34668 5.80273l29.3975 123.459c4.03906 16.9619 21.4688 30.7285 38.9053 30.7285c22.0771 0 39.9941 -17.917 39.9941 -39.9941c0 -2.59277 -0.487305 -6.74316 -1.08789 -9.26562z\\\" />\\n    <glyph glyph-name=\\\"hand-pointer\\\" unicode=\\\"&#xf25a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 208v-96c0 -3.08398 -0.356445 -6.15918 -1.06348 -9.16211l-32 -136c-4.25098 -18.0684 -20.375 -30.8379 -38.9365 -30.8379h-208c-11.2432 0 -25.7363 7.37988 -32.3496 16.4727l-127.997 176c-12.9932 17.8662 -9.04297 42.8838 8.82129 55.876\\nc17.8672 12.9941 42.8848 9.04297 55.877 -8.82227l31.6484 -43.5186v275.992c0 22.0908 17.9082 40 40 40s40 -17.9092 40 -40v-200h8v40c0 22.0908 17.9082 40 40 40s40 -17.9092 40 -40v-40h8v24c0 22.0908 17.9082 40 40 40s40 -17.9092 40 -40v-24h8\\nc0 22.0908 17.9082 40 40 40s40 -17.9092 40 -40zM192 128h-8v-96h8v96zM280 128h-8v-96h8v96zM368 128h-8v-96h8v96z\\\" />\\n    <glyph glyph-name=\\\"hand-peace\\\" unicode=\\\"&#xf25b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M408 232c22.0918 0 40 -17.9092 40 -40v-80v-0.00488281c0 -2.56152 -0.476562 -6.66406 -1.06348 -9.15723l-32 -136c-4.25098 -18.0684 -20.375 -30.8379 -38.9365 -30.8379h-240h-0.000976562c-12.8125 0 -28.3711 9.0293 -34.7275 20.1543l-64 112\\nc-9.77441 17.1025 -5.64062 38.7744 9.74023 51.0811l31.0898 24.8721l-74.7646 190.342c-9.69336 24.6738 2.4502 52.5342 27.124 62.2266c24.6729 9.69434 52.5332 -2.4502 62.2275 -27.125l69.7393 -177.551h13.5723v208c0 26.5098 21.4902 48 48 48s48 -21.4902 48 -48\\nv-208h8v32c0 22.0908 17.9082 40 40 40s40 -17.9092 40 -40v-32h8c0 22.0908 17.9082 40 40 40z\\\" />\\n    <glyph glyph-name=\\\"trademark\\\" unicode=\\\"&#xf25c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M260.6 352c6.60059 0 12 -5.40039 11.9004 -12v-43.0996c0 -6.60059 -5.40039 -12 -12 -12h-85.0996v-240.9c0 -6.59961 -5.40039 -12 -12 -12h-54.3008c-6.59961 0 -12 5.40039 -12 12v240.9h-85.0996c-6.59961 0 -12 5.39941 -12 12v43.0996\\nc0 6.59961 5.40039 12 12 12h248.6zM640 45c0.5 -7 -5 -13 -12 -13h-53.9004c-6.2998 0 -11.5996 4.90039 -12 11.2002l-9.09961 132.899c-1.7998 24.2002 0 53.7002 0 53.7002h-0.900391s-10.6992 -33.5996 -17.8994 -53.7002l-30.7002 -84.6992\\nc-1.7002 -4.7002 -6.2002 -7.90039 -11.2998 -7.90039h-50.2998c-5.10059 0 -9.60059 3.2002 -11.3008 7.90039l-30.6992 84.6992c-7.2002 20.1006 -17.9004 53.7002 -17.9004 53.7002h-0.900391s1.80078 -29.5 0 -53.7002l-9.09961 -132.899\\nc-0.5 -6.2998 -5.7002 -11.2002 -12 -11.2002h-54.5c-7.09961 0 -12.5996 6 -12 13l24.4004 296c0.599609 6.2002 5.7998 11 12 11h65.3994c5.10059 0 9.60059 -3.2998 11.2998 -8.09961l43.8008 -127.101c7.19922 -20.5996 16.0996 -52.7998 16.0996 -52.7998h0.900391\\ns8.89941 32.2002 16.0996 52.7998l43.7998 127.101c1.60059 4.7998 6.2002 8.09961 11.2998 8.09961h65.4004c6.2998 0 11.5 -4.7998 12 -11z\\\" />\\n    <glyph glyph-name=\\\"registered\\\" unicode=\\\"&#xf25d;\\\" \\nd=\\\"M285.363 240.525c0 -18.6006 -9.83105 -28.4316 -28.4316 -28.4316h-29.876v56.1406h23.3779c28.668 0 34.9297 -8.77344 34.9297 -27.709zM504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248z\\nM363.411 87.5859c-46.7295 84.8252 -43.2988 78.6357 -44.7021 80.9805c23.4316 15.1719 37.9453 42.9785 37.9453 74.4854c0 54.2441 -31.5 89.252 -105.498 89.252h-70.667c-13.2549 0 -24 -10.7451 -24 -24v-232.304c0 -13.2549 10.7451 -24 24 -24h22.5664\\nc13.2549 0 24 10.7451 24 24v71.6631h25.5566l44.1289 -82.9375c3.73828 -7.02441 13.2305 -12.7266 21.1875 -12.7266h24.4639c18.2617 0.000976562 29.8291 19.5908 21.0186 35.5869z\\\" />\\n    <glyph glyph-name=\\\"tv\\\" unicode=\\\"&#xf26c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M592 448c26.4961 0 48 -21.5039 48 -48v-320c0 -26.4961 -21.5039 -48 -48 -48h-240v-32h176c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h176v32h-240\\nc-26.4961 0 -48 21.5039 -48 48v320c0 26.4961 21.5039 48 48 48h544zM576 96v288h-512v-288h512z\\\" />\\n    <glyph glyph-name=\\\"calendar-plus\\\" unicode=\\\"&#xf271;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 288h-424c-6.59961 0 -12 5.40039 -12 12v36c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48v-36\\nc0 -6.59961 -5.40039 -12 -12 -12zM12 256h424c6.59961 0 12 -5.40039 12 -12v-260c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v260c0 6.59961 5.40039 12 12 12zM328 116c0 6.59961 -5.40039 12 -12 12h-60v60c0 6.59961 -5.40039 12 -12 12h-40\\nc-6.59961 0 -12 -5.40039 -12 -12v-60h-60c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h60v-60c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12v60h60c6.59961 0 12 5.40039 12 12v40z\\\" />\\n    <glyph glyph-name=\\\"calendar-minus\\\" unicode=\\\"&#xf272;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 288h-424c-6.59961 0 -12 5.40039 -12 12v36c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48v-36\\nc0 -6.59961 -5.40039 -12 -12 -12zM12 256h424c6.59961 0 12 -5.40039 12 -12v-260c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v260c0 6.59961 5.40039 12 12 12zM316 64c6.59961 0 12 5.40039 12 12v40c0 6.59961 -5.40039 12 -12 12h-184\\nc-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h184z\\\" />\\n    <glyph glyph-name=\\\"calendar-times\\\" unicode=\\\"&#xf273;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 288h-424c-6.59961 0 -12 5.40039 -12 12v36c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48v-36\\nc0 -6.59961 -5.40039 -12 -12 -12zM12 256h424c6.59961 0 12 -5.40039 12 -12v-260c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v260c0 6.59961 5.40039 12 12 12zM269.3 96l48.1006 48.0996c4.69922 4.7002 4.69922 12.3008 0 17l-28.3008 28.3008\\nc-4.69922 4.69922 -12.2998 4.69922 -17 0l-48.0996 -48.1006l-48.0996 48.1006c-4.7002 4.69922 -12.3008 4.69922 -17 0l-28.3008 -28.3008c-4.69922 -4.69922 -4.69922 -12.2998 0 -17l48.1006 -48.0996l-48.1006 -48.0996c-4.69922 -4.7002 -4.69922 -12.3008 0 -17\\nl28.3008 -28.3008c4.69922 -4.69922 12.2998 -4.69922 17 0l48.0996 48.1006l48.0996 -48.1006c4.7002 -4.69922 12.3008 -4.69922 17 0l28.3008 28.3008c4.69922 4.69922 4.69922 12.2998 0 17z\\\" />\\n    <glyph glyph-name=\\\"calendar-check\\\" unicode=\\\"&#xf274;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 288h-424c-6.62695 0 -12 5.37305 -12 12v36c0 26.5098 21.4902 48 48 48h48v52c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-52h128v52c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-52h48c26.5098 0 48 -21.4902 48 -48v-36\\nc0 -6.62695 -5.37305 -12 -12 -12zM12 256h424c6.62695 0 12 -5.37305 12 -12v-260c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v260c0 6.62695 5.37305 12 12 12zM345.296 160.053l-28.1689 28.3984\\nc-4.66699 4.70508 -12.2646 4.73535 -16.9697 0.0673828l-106.037 -105.184l-45.9805 46.3516c-4.66699 4.70508 -12.2656 4.73633 -16.9707 0.0683594l-28.3965 -28.1699c-4.70508 -4.66699 -4.73633 -12.2646 -0.0683594 -16.9697l82.6006 -83.2695\\nc4.66699 -4.70508 12.2656 -4.73535 16.9707 -0.0673828l142.952 141.805c4.70508 4.66699 4.73633 12.2646 0.0683594 16.9697z\\\" />\\n    <glyph glyph-name=\\\"industry\\\" unicode=\\\"&#xf275;\\\" \\nd=\\\"M475.115 284.219c15.9541 10.1514 36.8848 -1.33105 36.8848 -20.248v-271.971c0 -13.2549 -10.7451 -24 -24 -24h-464c-13.2549 0 -24 10.7451 -24 24v400c0 13.2549 10.7451 24 24 24h112c13.2549 0 24 -10.7451 24 -24v-196.309l139.115 88.5273\\nc15.9541 10.1514 36.8848 -1.33203 36.8848 -20.248v-68.2793z\\\" />\\n    <glyph glyph-name=\\\"map-pin\\\" unicode=\\\"&#xf276;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M112 131.06c10.3896 -1.91992 21.0596 -3.05957 32 -3.05957s21.6104 1.13965 32 3.05957v-156.689l-22.0098 -33.0205c-4.75 -7.11914 -15.2207 -7.11914 -19.9707 0l-22.0195 33.0205v156.689zM144 448c79.5303 0 144 -64.4697 144 -144s-64.4697 -144 -144 -144\\ns-144 64.4697 -144 144s64.4697 144 144 144zM144 372c6.62012 0 12 5.37988 12 12s-5.37988 12 -12 12c-50.7197 0 -92 -41.2695 -92 -92c0 -6.62012 5.37988 -12 12 -12s12 5.37988 12 12c0 37.5 30.5 68 68 68z\\\" />\\n    <glyph glyph-name=\\\"map-signs\\\" unicode=\\\"&#xf277;\\\" \\nd=\\\"M507.31 363.31c6.25 -6.25 6.25 -16.3691 0 -22.6299l-43.3096 -43.3096c-6.00977 -6 -14.1396 -9.37012 -22.6299 -9.37012h-385.37c-13.25 0 -24 10.75 -24 24v80c0 13.25 10.75 24 24 24h168v16c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-16\\nh153.37c8.49023 0 16.6299 -3.37012 22.6299 -9.37012zM224 -48v112h64v-112c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16zM456 224c13.25 0 24 -10.75 24 -24v-80c0 -13.25 -10.75 -24 -24 -24h-385.37\\nc-8.49023 0 -16.6299 3.37012 -22.6299 9.37012l-43.3096 43.3096c-6.25 6.25 -6.25 16.3799 0 22.6299l43.3096 43.3203c6.00977 6 14.1396 9.37012 22.6299 9.37012h153.37v32h64v-32h168z\\\" />\\n    <glyph glyph-name=\\\"map\\\" unicode=\\\"&#xf279;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M0 330.34c0.00292969 11.959 9.0166 25.2686 20.1201 29.71l139.88 55.9502v-384l-138.06 -62.8398c-10.5107 -4.2002 -21.9404 3.54004 -21.9404 14.8594v346.32zM192 32v384l192 -64v-384zM554.06 414.84c10.5107 4.2002 21.9404 -3.54004 21.9404 -14.8594v-346.32\\nc0 -11.9609 -9.01367 -25.2705 -20.1201 -29.71l-139.88 -55.9502v384z\\\" />\\n    <glyph glyph-name=\\\"comment-alt\\\" unicode=\\\"&#xf27a;\\\" \\nd=\\\"M448 448c35.2998 0 64 -28.7002 64 -64v-288c0 -35.2998 -28.7002 -64 -64 -64h-144l-124.9 -93.7002c-7.89941 -5.7998 -19.0996 -0.0996094 -19.0996 9.7002v84h-96c-35.2998 0 -64 28.7002 -64 64v288c0 35.2998 28.7002 64 64 64h384z\\\" />\\n    <glyph glyph-name=\\\"pause-circle\\\" unicode=\\\"&#xf28b;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM240 112v160c0 8.7998 -7.2002 16 -16 16h-48c-8.7998 0 -16 -7.2002 -16 -16v-160c0 -8.7998 7.2002 -16 16 -16h48c8.7998 0 16 7.2002 16 16zM352 112v160\\nc0 8.7998 -7.2002 16 -16 16h-48c-8.7998 0 -16 -7.2002 -16 -16v-160c0 -8.7998 7.2002 -16 16 -16h48c8.7998 0 16 7.2002 16 16z\\\" />\\n    <glyph glyph-name=\\\"stop-circle\\\" unicode=\\\"&#xf28d;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM352 112v160c0 8.7998 -7.2002 16 -16 16h-160c-8.7998 0 -16 -7.2002 -16 -16v-160c0 -8.7998 7.2002 -16 16 -16h160c8.7998 0 16 7.2002 16 16z\\\" />\\n    <glyph glyph-name=\\\"shopping-bag\\\" unicode=\\\"&#xf290;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M352 288h96v-272c0 -44.1826 -35.8174 -80 -80 -80h-288c-44.1826 0 -80 35.8174 -80 80v272h96v32c0 70.5801 57.4199 128 128 128c70.5791 0 128 -57.4199 128 -128v-32zM160 320v-32h128v32c0 35.29 -28.71 64 -64 64s-64 -28.71 -64 -64zM320 200\\nc13.2549 0 24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24zM128 200c13.2549 0 24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"shopping-basket\\\" unicode=\\\"&#xf291;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M576 232v-16c0 -13.2549 -10.7451 -24 -24 -24h-8l-26.1133 -182.788c-3.37793 -23.6465 -23.6299 -41.2119 -47.5166 -41.2119h-364.74c-23.8867 0 -44.1387 17.5654 -47.5176 41.2119l-26.1123 182.788h-8c-13.2549 0 -24 10.7451 -24 24v16\\nc0 13.2549 10.7451 24 24 24h67.3408l106.78 146.821c10.3945 14.292 30.4072 17.4531 44.7012 7.05762c14.293 -10.3945 17.4531 -30.4082 7.05762 -44.7012l-79.4033 -109.178h235.047l-79.4033 109.179c-10.3955 14.292 -7.23438 34.3066 7.05859 44.7012\\nc14.291 10.3955 34.3066 7.23535 44.7012 -7.05762l106.779 -146.822h67.3408c13.2549 0 24 -10.7451 24 -24zM312 56v112c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24v-112c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24zM424 56v112\\nc0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24v-112c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24zM200 56v112c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24v-112c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24z\\\" />\\n    <glyph glyph-name=\\\"hashtag\\\" unicode=\\\"&#xf292;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M440.667 265.891c-0.974609 -5.45898 -6.2666 -9.89062 -11.8135 -9.89062h-79.0957l-22.8564 -128h74.8096c7.4707 0 13.126 -6.75391 11.8135 -14.1094l-7.14355 -40c-0.974609 -5.45898 -6.2666 -9.89062 -11.8125 -9.89062h-79.0967l-15.377 -86.1094\\nc-0.974609 -5.45898 -6.2666 -9.89062 -11.8125 -9.89062h-40.6318c-7.47266 0 -13.127 6.75391 -11.8135 14.1094l14.623 81.8906h-98.6338l-15.3779 -86.1094c-0.974609 -5.45898 -6.26758 -9.89062 -11.8135 -9.89062h-40.6318\\nc-7.4707 0 -13.126 6.75391 -11.8125 14.1094l14.623 81.8906h-74.8105c-7.4707 0 -13.126 6.75391 -11.8125 14.1094l7.14258 40c0.974609 5.45898 6.2666 9.89062 11.8135 9.89062h79.0957l22.8564 128h-74.8096c-7.4707 0 -13.126 6.75391 -11.8135 14.1094l7.14355 40\\nc0.974609 5.45898 6.2666 9.89062 11.8125 9.89062h79.0967l15.377 86.1094c0.974609 5.45898 6.2666 9.89062 11.8125 9.89062h40.6318c7.47266 0 13.127 -6.75391 11.8135 -14.1094l-14.623 -81.8906h98.6348l15.377 86.1094\\nc0.974609 5.45898 6.26758 9.89062 11.8135 9.89062h40.6318c7.4707 0 13.126 -6.75391 11.8125 -14.1094l-14.623 -81.8906h74.8105c7.4707 0 13.126 -6.75391 11.8125 -14.1094zM261.889 128l22.8574 128h-98.6338l-22.8574 -128h98.6338z\\\" />\\n    <glyph glyph-name=\\\"percent\\\" unicode=\\\"&#xf295;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M112 224c-61.9004 0 -112 50.0996 -112 112s50.0996 112 112 112s112 -50.0996 112 -112s-50.0996 -112 -112 -112zM112 384c-26.5 0 -48 -21.5 -48 -48s21.5 -48 48 -48s48 21.5 48 48s-21.5 48 -48 48zM336 160c61.9004 0 112 -50.0996 112 -112\\ns-50.0996 -112 -112 -112s-112 50.0996 -112 112s50.0996 112 112 112zM336 0c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM392.3 447.8l31.6006 0.100586c19.3994 0.0996094 30.8994 -21.8008 19.6992 -37.8008l-366.199 -463.699\\nc-3.94629 -5.62793 -12.7275 -10.1973 -19.6006 -10.2002l-33.3994 -0.100586c-19.5 0 -30.9004 21.9004 -19.7002 37.8008l368 463.699c4.5 6.40039 11.7998 10.2002 19.5996 10.2002z\\\" />\\n    <glyph glyph-name=\\\"universal-access\\\" unicode=\\\"&#xf29a;\\\" \\nd=\\\"M256 400c-114.971 0 -208 -93.0469 -208 -208c0 -114.971 93.0469 -208 208 -208c114.971 0 208 93.0469 208 208c0 114.971 -93.0469 208 -208 208zM256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248z\\nM256 384c106.039 0 192 -85.9609 192 -192s-85.9609 -192 -192 -192s-192 85.9609 -192 192s85.9609 192 192 192zM256 340c-19.8818 0 -36 -16.1182 -36 -36s16.1182 -36 36 -36s36 16.1182 36 36s-16.1182 36 -36 36zM373.741 241.977\\nc8.59961 2.03027 13.9258 10.6484 11.8965 19.249c-2.03027 8.60156 -10.6494 13.9258 -19.249 11.8955c-96.4912 -22.7832 -124.089 -22.8291 -220.774 0c-8.60254 2.03125 -17.2178 -3.29395 -19.249 -11.8955c-2.03125 -8.60059 3.29492 -17.2178 11.8945 -19.249\\nc28.7129 -6.7793 55.5127 -12.749 82.1416 -15.8066c-0.852539 -101.08 -12.3242 -123.08 -25.0371 -155.621c-3.61719 -9.25879 0.957031 -19.6982 10.2168 -23.3145c9.26465 -3.61914 19.7002 0.961914 23.3154 10.2168c8.72754 22.3408 17.0947 40.6982 22.2617 78.5488\\nh9.68555c5.1748 -37.9131 13.5566 -56.2412 22.2617 -78.5488c3.61621 -9.25977 14.0547 -13.834 23.3154 -10.2168c9.25977 3.61621 13.834 14.0547 10.2168 23.3145c-12.7305 32.5693 -24.1855 54.5986 -25.0371 155.621c26.6299 3.05859 53.4287 9.02832 82.1406 15.8066\\nz\\\" />\\n    <glyph glyph-name=\\\"blind\\\" unicode=\\\"&#xf29d;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M380.15 -62.8369c-1.05664 -0.640625 -2.91602 -1.16113 -4.15137 -1.16113c-2.48438 0 -5.54785 1.72363 -6.83789 3.84766l-125.33 206.428c4.25684 1.68848 10.0615 5.9375 12.958 9.48438l126.048 -207.607c0.641602 -1.05664 1.16211 -2.91699 1.16211 -4.15234\\nc0 -2.48535 -1.72461 -5.5498 -3.84863 -6.83887zM142.803 133.662l62.8145 -153.537c6.69141 -16.3584 -1.14453 -35.042 -17.501 -41.7344c-16.3564 -6.69043 -35.04 1.1416 -41.7334 17.501l-36.1201 88.2852zM96 360c-24.3008 0 -44 19.6992 -44 44s19.6992 44 44 44\\ns44 -19.6992 44 -44s-19.6992 -44 -44 -44zM250.837 190.872c8.19336 -10.374 6.44434 -25.4922 -3.96582 -33.708c-9.33984 -7.37402 -24.5635 -7.61914 -33.708 3.96484l-102.3 129.217c-0.663086 0.836914 -2.06738 1.51562 -3.13477 1.51562\\nc-2.20801 0 -4 -1.79297 -4 -4.00098c0 -0.769531 0.387695 -1.88281 0.865234 -2.48535l31.4062 -39.8164v-107.196l-65.9258 -181.288c-6.04102 -16.6143 -24.4072 -25.1768 -41.0088 -19.1387c-16.6104 6.04004 -25.1787 24.4004 -19.1387 41.0098l54.0732 148.693\\nv140.698l-16 -20.5713v-79.7656c0 -13.0996 -10.4951 -23.748 -23.5361 -23.9961c-13.4531 -0.254883 -24.4639 11.0811 -24.4639 24.5361v95.6943l61.0557 78.5c4.72754 6.0791 11.7979 9.23633 18.9443 9.23926v0.0263672h32v-0.015625\\nc7.08691 -0.00390625 14.1035 -3.11719 18.8369 -9.1123z\\\" />\\n    <glyph glyph-name=\\\"audio-description\\\" unicode=\\\"&#xf29e;\\\" \\nd=\\\"M162.925 209.291l8.82227 -30.6553h-25.6064l9.04102 30.6523c1.27734 4.4209 2.65137 9.99414 3.87207 15.2451c1.2207 -5.25098 2.59473 -10.8232 3.87109 -15.2422zM329.399 241.39c28.6846 0 46.1748 -16.7656 46.1748 -49.0049\\nc0 -32.0977 -16.3994 -49.7754 -46.1748 -49.7754h-14.5234v98.7803h14.5234zM512 336v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416c26.5098 0 48 -21.4902 48 -48zM245.459 111.861l-57.0967 168\\nc-1.52734 4.49219 -6.61719 8.13867 -11.3623 8.13867h-35.8936c-4.74512 0 -9.83594 -3.64648 -11.3623 -8.13867l-57.0967 -168c-2.64453 -7.7832 3.1416 -15.8613 11.3613 -15.8613h29.1328c4.99219 0 10.1602 3.89453 11.5352 8.69336l8.57422 29.9053h51.3672\\nl8.79297 -29.9766c1.39648 -4.75977 6.55469 -8.62207 11.5146 -8.62207v0h29.1719c8.2207 0 14.0059 8.07812 11.3613 15.8613zM430.16 192.386c0 58.9775 -37.9189 95.6143 -98.96 95.6143h-57.3662c-6.62695 0 -12 -5.37305 -12 -12v-168c0 -6.62695 5.37305 -12 12 -12\\nh57.3662c61.041 0 98.96 36.9326 98.96 96.3857z\\\" />\\n    <glyph glyph-name=\\\"phone-volume\\\" unicode=\\\"&#xf2a0;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M97.333 -58.9658c-129.874 129.874 -129.681 340.252 0 469.933c5.69824 5.69824 14.5273 6.63184 21.2627 2.42188l64.8174 -40.5127c4.45898 -2.78711 8.07812 -9.31641 8.07812 -14.5752c0 -1.82715 -0.550781 -4.68652 -1.22949 -6.38281l-32.4082 -81.0205\\nc-2.38477 -5.96484 -9.53418 -10.8047 -15.958 -10.8047c-0.473633 0 -1.23926 0.0380859 -1.71094 0.0849609l-55.8096 5.58008c-21.0508 -58.2607 -20.6123 -122.471 0 -179.515l55.8105 5.58105c0.47168 0.046875 1.2373 0.0849609 1.71094 0.0849609\\nc6.42383 0 13.5732 -4.83984 15.959 -10.8037l32.4072 -81.0225c0.678711 -1.69629 1.22949 -4.55566 1.22949 -6.38281c0 -5.25879 -3.61914 -11.7881 -8.07812 -14.5752l-64.8174 -40.5127c-2.30762 -1.44238 -6.38867 -2.6123 -9.10938 -2.6123\\nc-3.92969 0 -9.375 2.25488 -12.1543 5.03418zM247.126 352.527c11.832 -20.0469 11.832 -45.0088 0 -65.0557c-3.9502 -6.69238 -13.1084 -7.95898 -18.7178 -2.58105l-5.97559 5.72656c-3.91016 3.74805 -4.79297 9.62207 -2.26074 14.4102\\nc2.04883 3.87793 3.71094 10.5859 3.71094 14.9717c0 4.38672 -1.66211 11.0947 -3.71094 14.9727c-2.5332 4.78809 -1.64941 10.6621 2.26074 14.4102l5.97559 5.72656c5.60938 5.37793 14.7676 4.11133 18.7178 -2.58105zM338.913 443.714\\nc60.1396 -71.6035 60.0918 -175.882 0 -247.428c-4.47363 -5.32715 -12.5303 -5.74609 -17.5518 -0.933594l-5.79785 5.55762c-4.56055 4.37109 -4.97754 11.5293 -0.930664 16.3789c49.6875 59.5381 49.6465 145.933 0 205.422\\nc-4.04688 4.84961 -3.63086 12.0078 0.930664 16.3789l5.79785 5.55762c5.02148 4.8125 13.0781 4.39355 17.5518 -0.933594zM292.941 398.773c36.0498 -46.3223 36.1074 -111.149 0 -157.547c-4.39062 -5.64062 -12.6973 -6.25098 -17.8564 -1.30371l-5.81836 5.5791\\nc-4.39941 4.21875 -4.99805 11.0947 -1.28418 15.9307c26.5352 34.5645 26.5332 82.5723 0 117.135c-3.71387 4.83594 -3.11523 11.7109 1.28418 15.9307l5.81836 5.5791c5.15918 4.94727 13.4658 4.33691 17.8564 -1.30371z\\\" />\\n    <glyph glyph-name=\\\"braille\\\" unicode=\\\"&#xf2a1;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M128 192c0 -35.3457 -28.6543 -64 -64 -64s-64 28.6543 -64 64s28.6543 64 64 64s64 -28.6543 64 -64zM64 64c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM64 416c35.3457 0 64 -28.6543 64 -64s-28.6543 -64 -64 -64\\ns-64 28.6543 -64 64s28.6543 64 64 64zM224 224c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM224 64c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM224 416\\nc35.3457 0 64 -28.6543 64 -64s-28.6543 -64 -64 -64s-64 28.6543 -64 64s28.6543 64 64 64zM448 224c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM448 64c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32\\ns-32 14.3271 -32 32s14.3271 32 32 32zM448 416c35.3457 0 64 -28.6543 64 -64s-28.6543 -64 -64 -64s-64 28.6543 -64 64s28.6543 64 64 64zM608 224c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM608 64\\nc17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM608 384c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"assistive-listening-systems\\\" unicode=\\\"&#xf2a2;\\\" \\nd=\\\"M216 188c0 -15.4639 -12.5361 -28 -28 -28s-28 12.5361 -28 28c0 44.1123 35.8877 80 80 80s80 -35.8877 80 -80c0 -15.4639 -12.5361 -28 -28 -28s-28 12.5361 -28 28c0 13.2344 -10.7666 24 -24 24s-24 -10.7656 -24 -24zM240 364c97.0469 0 176 -78.9531 176 -176\\nc0 -95.9863 -71.4053 -109.798 -72 -144.226c-0.124023 -59.4463 -48.5254 -107.774 -108 -107.774c-15.4639 0 -28 12.5361 -28 28s12.5361 28 28 28c28.6729 0 52 23.3271 52 52l0.00292969 0.37793c0.988281 73.3115 71.9971 68.458 71.9971 143.622\\nc0 66.168 -53.832 120 -120 120s-120 -53.832 -120 -120c0 -15.4639 -12.5361 -28 -28 -28s-28 12.5361 -28 28c0 97.0469 78.9531 176 176 176zM160 128c17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM32 0\\nc17.6729 0 32 -14.3271 32 -32s-14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32zM512 187.993c0 -15.4639 -12.5371 -28 -28.001 -28s-28 12.5361 -28 28c0 1.12695 -0.00683594 2.24512 -0.0332031 3.36328l-0.00292969 0.1875\\nc-1.4668 91.4404 -60.1709 172.599 -146.077 201.953c-14.6318 5.00098 -22.4414 20.917 -17.4414 35.5498c5.00098 14.6328 20.917 22.4404 35.5498 17.4424c108.163 -36.959 182.082 -139.015 183.961 -253.965c0.0332031 -1.50684 0.0449219 -3.01367 0.0449219 -4.53125\\nzM152.971 8.9707l-33.9404 -33.9404l-80 80l33.9404 33.9404z\\\" />\\n    <glyph glyph-name=\\\"american-sign-language-interpreting\\\" unicode=\\\"&#xf2a3;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M290.547 258.961c-20.2949 10.1494 -44.1465 11.1992 -64.7393 3.88965c42.6064 0 71.208 -20.4746 85.5781 -50.5752c8.57617 -17.8994 -5.14746 -38.0713 -23.6172 -38.0713c18.4297 0 32.2119 -20.1357 23.6172 -38.0713\\nc-14.7246 -30.8457 -46.123 -50.8535 -80.2979 -50.8535c-0.556641 0 -94.4707 8.61426 -94.4707 8.61426l-66.4062 -33.3467c-9.38379 -4.69336 -19.8145 -0.378906 -23.8945 7.78125l-44.4561 88.9248c-4.16699 8.61523 -1.11133 18.8975 6.94531 23.6211l58.0723 33.0693\\nl41.1221 74.1953c6.38965 57.2451 34.7314 109.768 79.7432 146.727c11.3906 9.44824 28.3408 7.78125 37.5098 -3.61328c9.44629 -11.3936 7.78027 -28.0674 -3.6123 -37.5156c-12.5029 -10.5596 -23.6172 -22.5098 -32.5088 -35.5703\\nc21.6719 14.7285 46.6787 24.7324 74.1865 28.0674c14.7246 1.94434 28.0625 -8.33594 29.7295 -23.0654c1.94531 -14.7275 -8.33594 -28.0674 -23.0615 -29.7344c-16.1162 -1.94434 -31.1201 -7.50293 -44.1787 -15.2832c26.1143 5.71289 58.7119 3.1377 88.0791 -11.1152\\nc13.3359 -6.66895 18.8936 -22.5088 12.2246 -35.8486c-6.38965 -13.0596 -22.5039 -18.6162 -35.5645 -12.2256zM263.318 189.489c-6.1123 12.5049 -18.3379 20.2861 -32.2314 20.2861h-0.105469c-19.5732 0 -35.46 -15.8867 -35.46 -35.46\\nc0 -0.0302734 0 -0.0800781 0.000976562 -0.110352c0 -21.4277 17.8076 -35.5703 35.5645 -35.5703c13.8936 0 26.1191 7.78125 32.2314 20.2861c4.44531 9.44922 13.6133 15.0059 23.3389 15.2842c-9.72559 0.277344 -18.8936 5.83496 -23.3389 15.2842zM638.139 226.726\\nc4.16797 -8.61426 1.11133 -18.8965 -6.94531 -23.6201l-58.0713 -33.0693l-41.1221 -74.1963c-6.38965 -57.2451 -34.7314 -109.767 -79.7432 -146.726c-10.9316 -9.1123 -27.7988 -8.14453 -37.5098 3.6123c-9.44629 11.3945 -7.78027 28.0674 3.61328 37.5166\\nc12.5029 10.5586 23.6162 22.5088 32.5078 35.5703c-21.6719 -14.7295 -46.6787 -24.7324 -74.1865 -28.0674c-10.0205 -2.50586 -27.5518 5.64258 -29.7295 23.0645c-1.94531 14.7285 8.33594 28.0674 23.0615 29.7344c16.1162 1.94629 31.1201 7.50293 44.1787 15.2842\\nc-26.1143 -5.71289 -58.7119 -3.1377 -88.0791 11.1152c-13.3359 6.66895 -18.8936 22.5088 -12.2246 35.8477c6.38965 13.0605 22.5049 18.6191 35.5654 12.2266c20.2949 -10.1484 44.1465 -11.1982 64.7393 -3.88965c-42.6064 0 -71.208 20.4746 -85.5781 50.5762\\nc-8.57617 17.8984 5.14746 38.0713 23.6172 38.0713c-18.4297 0 -32.2109 20.1357 -23.6172 38.0703c14.0332 29.3965 44.0391 50.8877 81.9658 50.8545l92.8027 -8.61523l66.4062 33.3467c9.4082 4.7041 19.8281 0.354492 23.8936 -7.78027zM408.912 245.344\\nc-13.8936 0 -26.1191 -7.78027 -32.2314 -20.2861c-4.44531 -9.44824 -13.6133 -15.0059 -23.3389 -15.2832c9.72559 -0.27832 18.8936 -5.83594 23.3389 -15.2842c6.1123 -12.5049 18.3379 -20.2861 32.2314 -20.2861h0.105469c19.5732 0 35.46 15.8857 35.46 35.46\\nc0 0.0302734 0 0.0791016 -0.000976562 0.110352c0 21.4287 -17.8076 35.5693 -35.5645 35.5693z\\\" />\\n    <glyph glyph-name=\\\"deaf\\\" unicode=\\\"&#xf2a4;\\\" \\nd=\\\"M216 188c0 -15.4639 -12.5361 -28 -28 -28s-28 12.5361 -28 28c0 44.1123 35.8877 80 80 80s80 -35.8877 80 -80c0 -15.4639 -12.5361 -28 -28 -28s-28 12.5361 -28 28c0 13.2344 -10.7666 24 -24 24s-24 -10.7656 -24 -24zM240 364c97.0469 0 176 -78.9531 176 -176\\nc0 -95.9863 -71.4053 -109.798 -72 -144.226c-0.124023 -59.4463 -48.5254 -107.774 -108 -107.774c-15.4639 0 -28 12.5361 -28 28s12.5361 28 28 28c28.6729 0 52 23.3271 52 52l0.00292969 0.37793c0.988281 73.3115 71.9971 68.458 71.9971 143.622\\nc0 66.168 -53.832 120 -120 120s-120 -53.832 -120 -120c0 -15.4639 -12.5361 -28 -28 -28s-28 12.5361 -28 28c0 97.0469 78.9531 176 176 176zM508.485 416.201c4.68652 -4.68652 4.68652 -12.2842 0 -16.9727l-87.0303 -87.0283\\nc-4.68652 -4.68652 -12.2842 -4.68652 -16.9697 0l-28.2852 28.2852c-4.68652 4.68652 -4.68652 12.2842 0 16.9707l87.0283 87.0293c4.6875 4.68555 12.2842 4.68555 16.9717 0zM168.97 133.255l28.2861 -28.2842c4.68652 -4.68652 4.68652 -12.2852 0 -16.9707\\nl-148.484 -148.485c-4.6875 -4.68555 -12.2842 -4.68555 -16.9717 0l-28.2852 28.2842c-4.68555 4.6875 -4.68555 12.2852 0 16.9707l148.485 148.485c4.68555 4.68652 12.2842 4.68652 16.9697 0z\\\" />\\n    <glyph glyph-name=\\\"sign-language\\\" unicode=\\\"&#xf2a7;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M91.4336 -35.9873c-0.306641 16.0186 13.1094 29.1289 29.1309 29.1289h62.293v5.71484h-125.864c-16.0215 0 -29.4375 13.1104 -29.1299 29.1289c0.296875 15.5234 12.9717 28.0146 28.5645 28.0146h126.43v5.71387h-153.722\\nc-16.0205 0 -29.4365 13.1113 -29.1299 29.1289c0.296875 15.5225 12.9727 28.0137 28.5664 28.0137h154.286v5.71387h-125.151c-16.0215 0 -29.4375 13.1104 -29.1299 29.1289c0.296875 15.5215 12.9727 28.0127 28.5654 28.0127h168.566l-31.085 22.6064\\nc-12.7617 9.28027 -15.583 27.1484 -6.30176 39.9121c9.28027 12.7607 27.1494 15.5811 39.9121 6.30176l123.36 -89.7148c7.79395 -5.66895 14.1201 -18.0908 14.1201 -27.7285v-141.136c0 -15.9102 -10.9463 -29.7305 -26.4326 -33.374l-80.4717 -18.9346\\nc-8.55176 -2.01172 -22.624 -3.64551 -31.4102 -3.64551h-107.4c-15.5928 0.000976562 -28.2686 12.4922 -28.5664 28.0137zM164.683 189.714l-36.3711 46.71c-9.5791 12.3027 -7.51172 29.9795 4.55371 39.75c12.4502 10.083 31.0371 7.55273 40.8799 -5.08789\\nl13.0039 -16.7002c-17.1426 -15.6484 -15.4092 -43.0244 3.16992 -56.5361l11.1875 -8.13574h-36.4238zM447.981 191.817c0.00976562 -0.311523 0.0175781 -0.81543 0.0175781 -1.12695c0 -9.24902 -5.92188 -21.3682 -13.2197 -27.0508l-61.0645 -47.5488v16.999\\nc0 13.4834 -6.51074 26.2686 -17.415 34.1982l-123.359 89.7139c-12.6357 9.18945 -29.1934 9.16113 -41.6904 0.904297l-52.0527 66.8486c-9.84375 12.6416 -7.74121 31.2822 5.08594 40.8809c12.4297 9.30273 30.0732 6.97559 39.6523 -5.32812l77.6758 -99.7539\\nl4.50879 3.51172l-94.4434 121.287c-9.84277 12.6416 -7.74121 31.2822 5.08594 40.8818c12.4307 9.30176 30.0732 6.97461 39.6533 -5.32812l94.79 -121.734l4.50879 3.51074l-76.8887 98.7451c-9.84277 12.6416 -7.74121 31.2822 5.08594 40.8809\\nc12.4297 9.30273 30.0732 6.97559 39.6533 -5.32715l103.562 -133.001l-1.26172 38.4141c-0.518555 15.7715 11.8457 28.9756 27.6191 29.4932c15.7705 0.517578 28.9746 -11.8477 29.4922 -27.6191z\\\" />\\n    <glyph glyph-name=\\\"low-vision\\\" unicode=\\\"&#xf2a8;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M569.344 216.369c3.67383 -6.22461 6.65625 -17.1416 6.65625 -24.3691s-2.98242 -18.1455 -6.65723 -24.3701c-31.9746 -54.2607 -79.6484 -98.3232 -136.81 -126.301l0.00683594 -0.00878906l43.1201 -58.377c7.60156 -10.8594 4.95996 -25.8252 -5.90039 -33.4268\\nl-13.1133 -9.17773c-10.8594 -7.59863 -25.8223 -4.95801 -33.4238 5.90039l-251.836 356.544c-11.1797 -5.09375 -28.5518 -14.7539 -38.7764 -21.5635l189.979 -271.399c-9.52637 -1.00488 -25.0342 -1.82031 -34.6133 -1.82031\\nc-12.29 0 -32.1484 1.33984 -44.3262 2.99023l-40.6309 58.04h-0.00976562l-119.399 170.58c-8.64453 -9.25391 -21.3203 -25.3428 -28.2939 -35.9121l124.19 -177.417c-73.1172 25.4863 -134.358 76.0166 -172.858 141.349c-8.96484 15.2109 -8.76562 33.8643 0 48.7393\\nc0.0107422 0.0166016 0.0234375 0.0332031 0.0332031 0.0498047c33.5459 56.8984 82.7676 99.8506 136.79 126.242l-43.1309 58.3945c-7.60156 10.8604 -4.95996 25.8252 5.90039 33.4268l13.1143 9.17773c10.8584 7.59961 25.8213 4.95801 33.4229 -5.90039\\nl52.7705 -72.1689c26.3496 6.79004 53.9834 10.4092 82.4512 10.4092c119.81 0 224.96 -63.9492 281.344 -159.631zM390.026 102.06c21.1406 23.9658 33.9736 55.4365 33.9736 89.9404c0 75.1738 -60.8379 136 -136 136c-17.5117 0 -34.2422 -3.30566 -49.6084 -9.32324\\nl19.0684 -27.2363c25.9883 7.96289 54.7598 5.56836 79.5098 -7.68066h-0.0292969c-23.6504 0 -42.8203 -19.1699 -42.8203 -42.8193c0 -23.4717 18.9922 -42.8203 42.8203 -42.8203c23.6494 0 42.8193 19.1699 42.8193 42.8203v0.0292969\\nc18.9111 -35.3271 15.8818 -79.1123 -8.7998 -111.68z\\\" />\\n    <glyph glyph-name=\\\"handshake\\\" unicode=\\\"&#xf2b5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M434.7 384c8.5 0 16.7002 -3.40039 22.5996 -9.40039l54.6006 -54.5996v-193.5c-2.40039 2.7002 -5 5.2998 -7.90039 7.7002l-145.6 118.2l26.0996 23.8994c6.5 6 7 16.1006 1 22.6006c-5.90039 6.5 -16.0996 6.89941 -22.5996 1l-79.9004 -73.2002\\nc-0.0996094 -0.100586 -0.299805 -0.100586 -0.400391 -0.200195c-16.6992 -14.9004 -43.3994 -11.2002 -56.0996 2.7002c-14.2002 15.5 -14.5 40.3994 2.09961 56c0.100586 0.0996094 0.200195 0.299805 0.300781 0.399414l98.2998 90\\nc5.89941 5.40039 13.5996 8.40039 21.5996 8.40039h85.9004zM544 319.8h96v-255.899h-64c-17.7002 0 -32 14.2998 -32 32v223.899zM592 95.9004c8.7998 0 16 7.19922 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16zM0 64v255.8h96\\nv-223.8c0 -17.7002 -14.2998 -32 -32 -32h-64zM48 127.9c-8.7998 0 -16 -7.10059 -16 -16c0 -8.80078 7.2002 -16 16 -16s16 7.19922 16 16c0 8.7998 -7.2002 16 -16 16zM483.9 109.3c13.6992 -11.2002 15.7998 -31.2998 4.59961 -45.0996l-9.5 -11.7002\\nc-11.0996 -13.7998 -31.2998 -15.7998 -45 -4.7002l-5.40039 4.40039l-31.3994 -38.6006c-12.9004 -15.8994 -36.4004 -18.3994 -52.2998 -5.39941l-17.9004 15.5l-0.200195 -0.200195c-22.2998 -27.4004 -62.5996 -31.5996 -90 -9.2998l-90.5 81.8994h-18.2998v223.9\\nl54.7002 54.5996c6 6 14.0996 9.40039 22.5996 9.40039h83.7998l-81.7998 -74.9004c-29.2002 -26.7998 -31.2998 -72.2998 -4.39941 -101.699c26.5 -28.9004 72 -31.5 101.699 -4.40039l30 27.5z\\\" />\\n    <glyph glyph-name=\\\"envelope-open\\\" unicode=\\\"&#xf2b6;\\\" \\nd=\\\"M512 -16c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v263.276c0 12.8955 8.2373 29.8193 18.3867 37.7754c24.9131 19.5293 45.501 35.3652 164.2 121.512c16.8252 12.2666 50.21 41.7832 73.4131 41.4336\\nc23.1982 0.353516 56.5957 -29.1719 73.4131 -41.4326c118.687 -86.1377 139.303 -101.995 164.2 -121.513c10.1494 -7.95605 18.3867 -24.8799 18.3867 -37.7754v-263.276zM446.334 180.605c-2.5625 3.72754 -7.7002 4.59473 -11.3389 1.90625\\nc-22.8447 -16.873 -55.4619 -40.7051 -105.582 -77.0791c-16.8252 -12.2656 -50.21 -41.7803 -73.4131 -41.4297c-23.2109 -0.34375 -56.5586 29.1436 -73.4131 41.4297c-50.1143 36.3701 -82.7344 60.2041 -105.582 77.0791\\nc-3.63867 2.68848 -8.77637 1.82129 -11.3389 -1.90625l-9.07227 -13.1963c-0.777344 -1.13086 -1.4082 -3.16113 -1.4082 -4.5332c0 -2.22754 1.45508 -5.11035 3.24707 -6.43359c22.8877 -16.8994 55.4541 -40.6904 105.304 -76.8682\\nc20.2734 -14.7812 56.5234 -47.8135 92.2637 -47.5732c35.7236 -0.242188 71.9609 32.7715 92.2627 47.5732c49.8506 36.1787 82.418 59.9697 105.304 76.8682c1.79199 1.32324 3.24707 4.20605 3.24707 6.43359c0 1.37207 -0.630859 3.40234 -1.4082 4.5332z\\\" />\\n    <glyph glyph-name=\\\"address-book\\\" unicode=\\\"&#xf2b9;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M436 288h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48\\nh320c26.5 0 48 -21.5 48 -48v-48h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM208 320c-35.2998 0 -64 -28.7002 -64 -64s28.7002 -64 64 -64s64 28.7002 64 64s-28.7002 64 -64 64zM320 83.2002v19.2002\\nc0 31.7998 -30.0996 57.5996 -67.2002 57.5996h-5c-12.2002 -5.09961 -25.7002 -8 -39.7998 -8s-27.5 2.90039 -39.7998 8h-5c-37.1006 0 -67.2002 -25.7998 -67.2002 -57.5996v-19.2002c0 -10.6006 10 -19.2002 22.4004 -19.2002h179.199\\nc12.4004 0 22.4004 8.59961 22.4004 19.2002z\\\" />\\n    <glyph glyph-name=\\\"address-card\\\" unicode=\\\"&#xf2bb;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM176 320c-35.2998 0 -64 -28.7002 -64 -64s28.7002 -64 64 -64s64 28.7002 64 64s-28.7002 64 -64 64zM288 83.2002v19.2002\\nc0 31.7998 -30.0996 57.5996 -67.2002 57.5996h-5c-12.2002 -5.09961 -25.7002 -8 -39.7998 -8s-27.5 2.90039 -39.7998 8h-5c-37.1006 0 -67.2002 -25.7998 -67.2002 -57.5996v-19.2002c0 -10.6006 10 -19.2002 22.4004 -19.2002h179.199\\nc12.4004 0 22.4004 8.59961 22.4004 19.2002zM512 136v16c0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8zM512 200v16c0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8v-16\\nc0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8zM512 264v16c0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"user-circle\\\" unicode=\\\"&#xf2bd;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 344c-48.5996 0 -88 -39.4004 -88 -88s39.4004 -88 88 -88s88 39.4004 88 88s-39.4004 88 -88 88zM248 0c58.7002 0 111.3 26.5996 146.5 68.2002\\nc-18.7998 35.3994 -55.5996 59.7998 -98.5 59.7998c-2.40039 0 -4.7998 -0.400391 -7.09961 -1.09961c-12.9004 -4.2002 -26.6006 -6.90039 -40.9004 -6.90039s-27.9004 2.7002 -40.9004 6.90039c-2.2998 0.699219 -4.69922 1.09961 -7.09961 1.09961\\nc-42.9004 0 -79.7002 -24.4004 -98.5 -59.7998c35.2002 -41.6006 87.7998 -68.2002 146.5 -68.2002z\\\" />\\n    <glyph glyph-name=\\\"id-badge\\\" unicode=\\\"&#xf2c1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h288zM144 416c-8.7998 0 -16 -7.2002 -16 -16s7.2002 -16 16 -16h96c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16h-96zM192 288\\nc-35.2998 0 -64 -28.7002 -64 -64s28.7002 -64 64 -64s64 28.7002 64 64s-28.7002 64 -64 64zM304 51.2002v19.2002c0 31.7998 -30.0996 57.5996 -67.2002 57.5996h-5c-12.2002 -5.09961 -25.7002 -8 -39.7998 -8s-27.5 2.90039 -39.7998 8h-5\\nc-37.1006 0 -67.2002 -25.7998 -67.2002 -57.5996v-19.2002c0 -10.6006 10 -19.2002 22.4004 -19.2002h179.199c12.4004 0 22.4004 8.59961 22.4004 19.2002z\\\" />\\n    <glyph glyph-name=\\\"id-card\\\" unicode=\\\"&#xf2c2;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 416c26.5 0 48 -21.5 48 -48v-16h-576v16c0 26.5 21.5 48 48 48h480zM0 16v304h576v-304c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48zM352 248v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-144\\nc-4.40039 0 -8 -3.59961 -8 -8zM352 184v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8zM352 120v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8v16\\nc0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8zM176 256c-35.2998 0 -64 -28.7002 -64 -64s28.7002 -64 64 -64s64 28.7002 64 64s-28.7002 64 -64 64zM67.0996 51.7998c-3.19922 -9.7998 5.2002 -19.7998 15.6006 -19.7998h186.6\\nc10.4004 0 18.7998 9.90039 15.6006 19.7998c-8.40039 25.7002 -32.5 44.2002 -60.9004 44.2002h-8.2002c-12.2002 -5.09961 -25.7002 -8 -39.7998 -8s-27.5 2.90039 -39.7998 8h-8.2002c-28.4004 0 -52.5 -18.5 -60.9004 -44.2002z\\\" />\\n    <glyph glyph-name=\\\"thermometer-full\\\" unicode=\\\"&#xf2c7;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M224 352v-203.347c19.9121 -22.5635 32 -52.1943 32 -84.6533c0 -70.6963 -57.3018 -128 -128 -128c-0.298828 0 -0.610352 0.000976562 -0.90918 0.00292969c-70.3018 0.488281 -127.448 58.3613 -127.089 128.664c0.164062 32.1973 12.2227 61.5771 31.998 83.9863\\nv203.347c0 53.0186 42.9814 96 96 96s96 -42.9814 96 -96zM128 -16c44.1123 0 80 35.8877 80 80c0 34.3379 -19.3701 52.1904 -32 66.502v221.498c0 26.4668 -21.5332 48 -48 48s-48 -21.5332 -48 -48v-221.498c-12.7334 -14.4277 -31.8262 -32.0996 -31.999 -66.0801\\nc-0.223633 -43.876 35.5635 -80.1162 79.4229 -80.4199zM192 64c0 -35.3457 -28.6543 -64 -64 -64s-64 28.6543 -64 64c0 23.6846 12.876 44.3486 32 55.417v232.583c0 17.6729 14.3271 32 32 32s32 -14.3271 32 -32v-232.583c19.124 -11.0684 32 -31.7324 32 -55.417z\\\" />\\n    <glyph glyph-name=\\\"thermometer-three-quarters\\\" unicode=\\\"&#xf2c8;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M192 64c0 -35.3457 -28.6543 -64 -64 -64s-64 28.6543 -64 64c0 23.6846 12.876 44.3486 32 55.417v168.583c0 17.6729 14.3271 32 32 32s32 -14.3271 32 -32v-168.583c19.124 -11.0684 32 -31.7324 32 -55.417zM224 148.653c19.9121 -22.5635 32 -52.1943 32 -84.6533\\nc0 -70.6963 -57.3027 -128 -128 -128c-0.298828 0 -0.609375 0.000976562 -0.90918 0.00292969c-70.3018 0.488281 -127.448 58.3613 -127.089 128.664c0.164062 32.1982 12.2227 61.5781 31.998 83.9863v203.347c0 53.0186 42.9814 96 96 96s96 -42.9814 96 -96v-203.347z\\nM208 64c0 34.3389 -19.3701 52.1904 -32 66.502v221.498c0 26.4668 -21.5332 48 -48 48s-48 -21.5332 -48 -48v-221.498c-12.7324 -14.4277 -31.8252 -32.0996 -31.999 -66.0801c-0.223633 -43.876 35.5635 -80.1162 79.4229 -80.4199l0.576172 -0.00195312\\nc44.1123 0 80 35.8877 80 80z\\\" />\\n    <glyph glyph-name=\\\"thermometer-half\\\" unicode=\\\"&#xf2c9;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M192 64c0 -35.3457 -28.6543 -64 -64 -64s-64 28.6543 -64 64c0 23.6846 12.876 44.3486 32 55.417v104.583c0 17.6729 14.3271 32 32 32s32 -14.3271 32 -32v-104.583c19.124 -11.0684 32 -31.7324 32 -55.417zM224 148.653c19.9121 -22.5635 32 -52.1943 32 -84.6533\\nc0 -70.6963 -57.3027 -128 -128 -128c-0.298828 0 -0.609375 0.000976562 -0.90918 0.00292969c-70.3018 0.488281 -127.448 58.3613 -127.089 128.664c0.164062 32.1982 12.2227 61.5781 31.998 83.9863v203.347c0 53.0186 42.9814 96 96 96s96 -42.9814 96 -96v-203.347z\\nM208 64c0 34.3389 -19.3701 52.1904 -32 66.502v221.498c0 26.4668 -21.5332 48 -48 48s-48 -21.5332 -48 -48v-221.498c-12.7324 -14.4277 -31.8252 -32.0996 -31.999 -66.0801c-0.223633 -43.876 35.5635 -80.1162 79.4229 -80.4199l0.576172 -0.00195312\\nc44.1123 0 80 35.8877 80 80z\\\" />\\n    <glyph glyph-name=\\\"thermometer-quarter\\\" unicode=\\\"&#xf2ca;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M192 64c0 -35.3457 -28.6543 -64 -64 -64s-64 28.6543 -64 64c0 23.6846 12.876 44.3486 32 55.417v40.583c0 17.6729 14.3271 32 32 32s32 -14.3271 32 -32v-40.583c19.124 -11.0684 32 -31.7324 32 -55.417zM224 148.653c19.9121 -22.5635 32 -52.1943 32 -84.6533\\nc0 -70.6963 -57.3027 -128 -128 -128c-0.298828 0 -0.609375 0.000976562 -0.90918 0.00292969c-70.3018 0.488281 -127.448 58.3613 -127.089 128.664c0.164062 32.1982 12.2227 61.5781 31.998 83.9863v203.347c0 53.0186 42.9814 96 96 96s96 -42.9814 96 -96v-203.347z\\nM208 64c0 34.3389 -19.3701 52.1904 -32 66.502v221.498c0 26.4668 -21.5332 48 -48 48s-48 -21.5332 -48 -48v-221.498c-12.7324 -14.4277 -31.8252 -32.0996 -31.999 -66.0801c-0.223633 -43.876 35.5635 -80.1162 79.4229 -80.4199l0.576172 -0.00195312\\nc44.1123 0 80 35.8877 80 80z\\\" />\\n    <glyph glyph-name=\\\"thermometer-empty\\\" unicode=\\\"&#xf2cb;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M192 64c0 -35.3457 -28.6543 -64 -64 -64s-64 28.6543 -64 64s28.6543 64 64 64s64 -28.6543 64 -64zM224 148.653c19.9121 -22.5635 32 -52.1943 32 -84.6533c0 -70.6963 -57.3027 -128 -128 -128c-0.298828 0 -0.609375 0.000976562 -0.90918 0.00292969\\nc-70.3018 0.488281 -127.448 58.3613 -127.089 128.664c0.164062 32.1982 12.2227 61.5781 31.998 83.9863v203.347c0 53.0186 42.9814 96 96 96s96 -42.9814 96 -96v-203.347zM208 64c0 34.3389 -19.3701 52.1904 -32 66.502v221.498c0 26.4668 -21.5332 48 -48 48\\ns-48 -21.5332 -48 -48v-221.498c-12.7324 -14.4277 -31.8252 -32.0996 -31.999 -66.0801c-0.223633 -43.876 35.5635 -80.1162 79.4229 -80.4199l0.576172 -0.00195312c44.1123 0 80 35.8877 80 80z\\\" />\\n    <glyph glyph-name=\\\"shower\\\" unicode=\\\"&#xf2cc;\\\" \\nd=\\\"M304 128c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM336 224c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM368 160c-8.83203 0 -16 7.16797 -16 16s7.16797 16 16 16\\ns16 -7.16797 16 -16s-7.16797 -16 -16 -16zM336 128c-8.83203 0 -16 7.16797 -16 16s7.16797 16 16 16s16 -7.16797 16 -16s-7.16797 -16 -16 -16zM304 192c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM432 224\\nc-8.83203 0 -16 7.16797 -16 16s7.16797 16 16 16s16 -7.16797 16 -16s-7.16797 -16 -16 -16zM384 208c0 8.83203 7.16797 16 16 16s16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16zM368 256c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16\\ns-16 7.16797 -16 16s7.16797 16 16 16zM464 224c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM496 256c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM432 192\\nc8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM400 160c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM336 96c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16\\ns-16 7.16797 -16 16s7.16797 16 16 16zM304 64c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM368 128c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM389.65 346.35\\nc2.58691 -2.58691 4.6875 -7.65527 4.6875 -11.3145s-2.10059 -8.72852 -4.6875 -11.3154l-169.381 -169.37c-2.58691 -2.58691 -7.65527 -4.6875 -11.3145 -4.6875s-8.72852 2.10059 -11.3154 4.6875l-11.2998 11.3105c-2.58496 2.58594 -4.68262 7.65332 -4.68262 11.3096\\nc0 3.65723 2.09766 8.72363 4.68262 11.3105l5.66016 5.66992c-17.6602 17.9219 -31.9961 52.8887 -32 78.0498c0 19.2402 5.2998 37.0801 13.9297 52.8604l-10 10c-9.44434 9.47461 -27.9678 17.1641 -41.3457 17.1641c-2.10254 0 -5.5 -0.22168 -7.58398 -0.494141\\nc-30 -3.73047 -51 -31.7803 -51 -61.9307v-305.6c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v303.15c0 67.9395 55.4902 129.35 123.44 128.85c27.7246 -0.138672 66.1006 -16.1992 85.6592 -35.8496l10 -10\\nc15.8203 8.5498 33.6602 13.8496 52.9004 13.8496c25.1631 -0.000976562 60.1289 -14.3369 78.0498 -32l5.66992 5.66016c2.58691 2.58691 7.65625 4.6875 11.3154 4.6875s8.72754 -2.10059 11.3145 -4.6875z\\\" />\\n    <glyph glyph-name=\\\"bath\\\" unicode=\\\"&#xf2cd;\\\" \\nd=\\\"M32 64v48h448v-48c-0.0478516 -23.5742 -14.3848 -55.4229 -32 -71.0898v-40.9102c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v16h-256v-16c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v40.9102\\nc-17.6152 15.667 -31.9521 47.5156 -32 71.0898zM496 192c8.83203 0 16 -7.16797 16 -16v-16c0 -8.83203 -7.16797 -16 -16 -16h-480c-8.83203 0 -16 7.16797 -16 16v16c0 8.83203 7.16797 16 16 16h16v186.75v0.00585938c0 38.2256 31.0244 69.25 69.25 69.25\\nc15.835 0 37.7734 -9.08789 48.9697 -20.2861l19.2607 -19.2695c29.8994 13.1299 59.1094 7.60938 79.7295 -8.62012l0.169922 0.169922c2.58691 2.58496 7.65332 4.68262 11.3105 4.68262c3.65625 0 8.72266 -2.09766 11.3096 -4.68262l11.3096 -11.3096\\nc2.58789 -2.58691 4.68848 -7.65625 4.68848 -11.3154s-2.10059 -8.72852 -4.68848 -11.3154l-105.369 -105.369c-2.58691 -2.58789 -7.65625 -4.68848 -11.3154 -4.68848s-8.72852 2.10059 -11.3154 4.68848l-11.3096 11.3096\\nc-2.57617 2.58496 -4.66797 7.64551 -4.66797 11.2949s2.0918 8.70996 4.66797 11.2949l0.169922 0.169922c-16.2295 20.6201 -21.75 49.8506 -8.62012 79.7305l-19.2695 19.2598c-3.43652 3.42969 -10.165 6.21387 -15.0205 6.21387\\nc-11.71 0 -21.2344 -9.50391 -21.2598 -21.2139v-186.75h416z\\\" />\\n    <glyph glyph-name=\\\"podcast\\\" unicode=\\\"&#xf2ce;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M267.429 -40.5635c-5.14258 -19.0098 -24.5703 -23.4365 -43.4287 -23.4365c-18.8574 0 -38.2861 4.42676 -43.4277 23.4365c-7.64551 28.4297 -20.5723 99.665 -20.5723 132.813c0 35.1562 31.1416 43.75 64 43.75s64 -8.59375 64 -43.75\\nc0 -32.9492 -12.8711 -104.179 -20.5713 -132.813zM156.867 159.446c2.6748 -2.61914 2.39941 -6.98535 -0.628906 -9.18555c-9.3125 -6.76465 -16.4609 -15.3418 -21.2354 -25.3623c-1.74219 -3.65723 -6.5 -4.6582 -9.45312 -1.8877\\nc-28.0176 26.2891 -45.5498 63.6279 -45.5498 104.989c0 80.7852 66.8691 146.247 148.163 143.941c76.1982 -2.16113 137.938 -64.1631 139.793 -140.369c1.04199 -42.7822 -16.6846 -81.5225 -45.5107 -108.565c-2.95215 -2.76855 -7.70801 -1.7627 -9.44922 1.8916\\nc-4.77441 10.0195 -11.9219 18.5977 -21.2344 25.3623c-3.02832 2.20117 -3.30273 6.56738 -0.62793 9.1875c17.8018 17.4355 28.8662 41.7246 28.8662 68.5518c0 54.1934 -45.1377 98.042 -99.793 95.9258c-49.7295 -1.9248 -90.0703 -42.1572 -92.124 -91.8809\\nc-1.17383 -28.4258 10.0908 -54.291 28.7842 -72.5986zM224 448c123.815 0 224 -100.205 224 -224c0 -90.1865 -52.7734 -165.727 -125.739 -201.407c-4.33203 -2.11914 -9.2666 1.54297 -8.53516 6.31055c2.55566 16.6416 4.625 33.1924 5.62402 47.2295\\nc48.4922 31.377 80.6504 85.9355 80.6504 147.867c0 97.2031 -79.207 176.253 -176.468 175.999c-96.2393 -0.250977 -174.938 -78.6621 -175.529 -174.899c-0.376953 -61.3311 30.7871 -115.541 78.1875 -147.347c1.52832 -1.02637 2.53125 -2.67578 2.67773 -4.51172\\nc1.06348 -13.3936 3.02344 -28.8271 5.40625 -44.3389c0.731445 -4.7666 -4.20215 -8.42871 -8.53516 -6.31055c-73.1377 35.7607 -125.739 111.416 -125.739 201.408c0 123.815 100.204 224 224 224zM224 288c35.3457 0 64 -28.6543 64 -64s-28.6543 -64 -64 -64\\ns-64 28.6543 -64 64s28.6543 64 64 64z\\\" />\\n    <glyph glyph-name=\\\"window-maximize\\\" unicode=\\\"&#xf2d0;\\\" \\nd=\\\"M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM448 256v84c0 6.59961 -5.40039 12 -12 12h-360c-6.59961 0 -12 -5.40039 -12 -12v-84h384z\\\" />\\n    <glyph glyph-name=\\\"window-minimize\\\" unicode=\\\"&#xf2d1;\\\" \\nd=\\\"M464 96c26.5 0 48 -21.5 48 -48v-32c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v32c0 26.5 21.5 48 48 48h416z\\\" />\\n    <glyph glyph-name=\\\"window-restore\\\" unicode=\\\"&#xf2d2;\\\" \\nd=\\\"M512 400v-288c0 -26.5 -21.5 -48 -48 -48h-48v208c0 44.0996 -35.9004 80 -80 80h-208v48c0 26.5 21.5 48 48 48h288c26.5 0 48 -21.5 48 -48zM384 272v-288c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h288\\nc26.5 0 48 -21.5 48 -48zM316 244c0 6.59961 -5.40039 12 -12 12h-228c-6.59961 0 -12 -5.40039 -12 -12v-52h252v52z\\\" />\\n    <glyph glyph-name=\\\"microchip\\\" unicode=\\\"&#xf2db;\\\" \\nd=\\\"M416 400v-416c0 -26.5098 -21.4902 -48 -48 -48h-224c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h224c26.5098 0 48 -21.4902 48 -48zM512 342v-12c0 -3.31152 -2.68848 -6 -6 -6h-18v-6c0 -3.31152 -2.68848 -6 -6 -6h-42v48h42\\nc3.31152 0 6 -2.68848 6 -6v-6h18c3.31152 0 6 -2.68848 6 -6zM512 246v-12c0 -3.31152 -2.68848 -6 -6 -6h-18v-6c0 -3.31152 -2.68848 -6 -6 -6h-42v48h42c3.31152 0 6 -2.68848 6 -6v-6h18c3.31152 0 6 -2.68848 6 -6zM512 150v-12c0 -3.31152 -2.68848 -6 -6 -6h-18v-6\\nc0 -3.31152 -2.68848 -6 -6 -6h-42v48h42c3.31152 0 6 -2.68848 6 -6v-6h18c3.31152 0 6 -2.68848 6 -6zM512 54v-12c0 -3.31152 -2.68848 -6 -6 -6h-18v-6c0 -3.31152 -2.68848 -6 -6 -6h-42v48h42c3.31152 0 6 -2.68848 6 -6v-6h18c3.31152 0 6 -2.68848 6 -6zM30 72h42\\nv-48h-42c-3.31152 0 -6 2.68848 -6 6v6h-18c-3.31152 0 -6 2.68848 -6 6v12c0 3.31152 2.68848 6 6 6h18v6c0 3.31152 2.68848 6 6 6zM30 168h42v-48h-42c-3.31152 0 -6 2.68848 -6 6v6h-18c-3.31152 0 -6 2.68848 -6 6v12c0 3.31152 2.68848 6 6 6h18v6\\nc0 3.31152 2.68848 6 6 6zM30 264h42v-48h-42c-3.31152 0 -6 2.68848 -6 6v6h-18c-3.31152 0 -6 2.68848 -6 6v12c0 3.31152 2.68848 6 6 6h18v6c0 3.31152 2.68848 6 6 6zM30 360h42v-48h-42c-3.31152 0 -6 2.68848 -6 6v6h-18c-3.31152 0 -6 2.68848 -6 6v12\\nc0 3.31152 2.68848 6 6 6h18v6c0 3.31152 2.68848 6 6 6z\\\" />\\n    <glyph glyph-name=\\\"snowflake\\\" unicode=\\\"&#xf2dc;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M440.3 102.8c7.40039 -4.2002 9.90039 -13.7002 5.60059 -21l-15.5 -26.7998c-4.30078 -7.40039 -13.7002 -10 -21.1006 -5.7002l-33.7998 19.5l7 -26c2.2002 -8.2002 -2.7002 -16.7002 -10.9004 -18.8994l-14.8994 -4\\nc-8.2002 -2.2002 -16.7002 2.69922 -18.9004 10.8994l-19 70.7998l-62.7998 36.2002v-77.5l53.4004 -53.7002c6.19922 -6.19922 6.19922 -16.3994 0 -22.5996l-11.3008 -11.2998c-6.19922 -6.2002 -16.3994 -6.2002 -22.5996 0l-19.7002 19.7002v-40.4004\\nc0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v40.2998l-19.7002 -19.7002c-6.19922 -6.19922 -16.3994 -6.19922 -22.5996 0l-11.2998 11.3008c-6.2998 6.19922 -6.2998 16.3994 0 22.5996l53.7002 53.7002v77.5l-62.8008 -36.2002l-19 -70.7998\\nc-2.19922 -8.2002 -10.6992 -13.1006 -18.8994 -10.9004l-14.9004 4c-8.2002 2.2002 -13.0996 10.7002 -10.8994 18.9004l7 26l-33.8008 -19.5c-7.39941 -4.2002 -16.7998 -1.7002 -21.0996 5.7002l-15.5 26.7998c-4.2002 7.39941 -1.7002 16.7998 5.7002 21.0996\\nl33.7998 19.6006l-26 7c-8.2002 2.19922 -13.0996 10.6992 -10.9004 18.8994l4 14.9004c2.2002 8.2002 10.7002 13.0996 18.9004 10.8994l70.7998 -19l63.7998 36.9004l-63.7998 36.9004l-70.7998 -19c-8.2002 -2.2002 -16.7002 2.69922 -18.9004 10.8994l-4 14.9004\\nc-2.19922 8.2998 2.7002 16.7998 11 19l26 7l-33.7998 19.5c-7.39941 4.2998 -10 13.7002 -5.7002 21.0996l15.5 26.7002c4.30078 7.40039 13.7002 10 21.1006 5.7002l33.7998 -19.5l-7 26c-2.2002 8.2002 2.7002 16.7002 10.9004 18.8994l14.8994 4\\nc8.2002 2.2002 16.7002 -2.69922 18.9004 -10.8994l19 -70.7998l62.7998 -36.2002v77.5l-53.7002 53.7002c-6.2998 6.19922 -6.2998 16.3994 0 22.5996l11.4004 11.2998c6.2002 6.2002 16.3994 6.2002 22.5996 0l19.7002 -19.7002v40.4004c0 8.7998 7.2002 16 16 16h32\\nc8.7998 0 16 -7.2002 16 -16v-40.4004l19.7998 19.7002c6.2002 6.2002 16.4004 6.2002 22.6006 0l11.2998 -11.2998c6.2002 -6.2002 6.2002 -16.4004 0 -22.5996l-53.7002 -53.7002v-77.5l62.7998 36.2002l19 70.7998c2.2002 8.2002 10.7002 13.0996 18.9004 10.8994\\nl14.8994 -4c8.2002 -2.19922 13.1006 -10.6992 10.9004 -18.8994l-7 -26l33.7998 19.5c7.40039 4.2002 16.7998 1.7002 21.1006 -5.7002l15.5 -26.7998c4.19922 -7.40039 1.69922 -16.7998 -5.7002 -21.1006l-33.7998 -19.5l26 -7\\nc8.19922 -2.19922 13.0996 -10.6992 10.8994 -18.8994l-4 -14.9004c-2.2002 -8.2002 -10.7002 -13.0996 -18.8994 -10.8994l-70.8008 19l-63.7998 -36.9004l63.9004 -37l70.7998 19c8.2002 2.2002 16.7002 -2.7002 18.9004 -10.9004l4 -14.8994\\nc2.19922 -8.2002 -2.7002 -16.7002 -10.9004 -18.9004l-26 -7z\\\" />\\n    <glyph glyph-name=\\\"utensil-spoon\\\" unicode=\\\"&#xf2e5;\\\" \\nd=\\\"M480.1 416.1c55.1006 -55 34.5 -164.899 -28.5 -227.8c-49.2998 -49.2998 -110 -55.0996 -160.399 -28.7998l-192.4 -214.4c-10.3994 -11.5996 -28.5 -12.0996 -39.5 -1.09961l-51.2998 51.2998c-11.0996 11 -10.5996 29 1 39.5l214.5 192.4\\nc-26.2998 50.3994 -20.5 111.1 28.7998 160.399c62.9004 63 172.8 83.6006 227.8 28.5z\\\" />\\n    <glyph glyph-name=\\\"utensils\\\" unicode=\\\"&#xf2e7;\\\" horiz-adv-x=\\\"416\\\" \\nd=\\\"M207.9 432.8c0.799805 -4.7002 16.0996 -94.5 16.0996 -128.8c0 -52.2998 -27.7998 -89.5996 -68.9004 -104.6l12.9004 -238.101c0.700195 -13.7002 -10.2002 -25.2998 -24 -25.2998h-64c-13.7002 0 -24.7002 11.5 -24 25.2998l12.9004 238.101\\nc-41.2002 15 -68.9004 52.3994 -68.9004 104.6c0 34.4004 15.2998 124.1 16.0996 128.8c3.2002 20.2998 45.3008 20.6006 47.9004 -1.09961v-141.2c1.2998 -3.40039 15.0996 -3.2002 16 0c1.40039 25.2998 7.90039 139.2 8 141.8c3.2998 20.7998 44.7002 20.7998 47.9004 0\\nc0.199219 -2.7002 6.59961 -116.5 8 -141.8c0.899414 -3.2002 14.7998 -3.40039 16 0v141.2c2.59961 21.5996 44.7998 21.3994 48 1.09961zM327.1 147.1c-156.5 122.4 -17.5996 300.9 64.9004 300.9c13.2998 0 24 -10.7998 24 -24v-464c0 -13.2998 -10.7002 -24 -24 -24h-56\\nc-14 0 -25.0996 12 -23.9004 26z\\\" />\\n    <glyph glyph-name=\\\"undo-alt\\\" unicode=\\\"&#xf2ea;\\\" \\nd=\\\"M255.545 440c136.809 0.245117 248.456 -111.193 248.455 -248.002c-0.000976562 -136.965 -111.034 -247.998 -248 -247.998c-63.9258 0 -122.202 24.1865 -166.178 63.9082c-5.11328 4.61816 -5.35449 12.5605 -0.482422 17.4326l39.6621 39.6621\\nc4.46191 4.46094 11.625 4.71387 16.3682 0.552734c30.6328 -26.8779 69.5029 -41.5557 110.63 -41.5557c93.8164 0 167.236 75.9912 167.994 166.552c0.798828 95.4648 -77.0859 170.24 -169.484 169.442c-42.4287 -0.366211 -82.3662 -16.374 -113.229 -45.2734\\nl41.75 -41.75c15.1191 -15.1201 4.41113 -40.9707 -16.9717 -40.9707h-134.059c-13.2549 0 -24 10.7451 -24 24v134.059c0 21.3828 25.8506 32.0908 40.9707 16.9707l35.7139 -35.7139c44.4229 42.4512 104.592 68.5654 170.86 68.6846z\\\" />\\n    <glyph glyph-name=\\\"trash-alt\\\" unicode=\\\"&#xf2ed;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M32 -16v336h384v-336c0 -26.4961 -21.5039 -48 -48 -48h-288c-26.4961 0 -48 21.5039 -48 48zM304 240v-224c0 -8.83203 7.16797 -16 16 -16s16 7.16797 16 16v224c0 8.83203 -7.16797 16 -16 16s-16 -7.16797 -16 -16zM208 240v-224c0 -8.83203 7.16797 -16 16 -16\\ns16 7.16797 16 16v224c0 8.83203 -7.16797 16 -16 16s-16 -7.16797 -16 -16zM112 240v-224c0 -8.83203 7.16797 -16 16 -16s16 7.16797 16 16v224c0 8.83203 -7.16797 16 -16 16s-16 -7.16797 -16 -16zM432 416c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h120l9.40039 18.7002c3.58984 7.3418 13.1357 13.2998 21.3086 13.2998h0.0908203h114.3h0.0175781c8.20215 0 17.8262 -5.95801 21.4824 -13.2998l9.40039 -18.7002\\nh120z\\\" />\\n    <glyph glyph-name=\\\"sync-alt\\\" unicode=\\\"&#xf2f1;\\\" \\nd=\\\"M370.72 314.72c-31.2617 29.2725 -71.832 45.3184 -114.872 45.2803c-77.458 -0.0683594 -144.328 -53.1777 -162.791 -126.85c-1.34375 -5.36328 -6.12207 -9.15039 -11.6504 -9.15039h-57.3037c-7.49707 0 -13.1934 6.80664 -11.8066 14.1758\\nc21.6367 114.9 122.518 201.824 243.704 201.824c66.4482 0 126.791 -26.1357 171.315 -68.6846l35.7148 35.7148c15.1191 15.1191 40.9697 4.41113 40.9697 -16.9717v-134.059c0 -13.2549 -10.7451 -24 -24 -24h-134.059c-21.3828 0 -32.0908 25.8506 -16.9717 40.9707z\\nM32 152h134.059c21.3828 0 32.0908 -25.8506 16.9717 -40.9707l-41.75 -41.75c31.2617 -29.2734 71.835 -45.3193 114.876 -45.2803c77.418 0.0703125 144.314 53.1436 162.787 126.849c1.34375 5.36328 6.12207 9.15039 11.6504 9.15039h57.3047\\nc7.49805 0 13.1934 -6.80664 11.8066 -14.1758c-21.6377 -114.898 -122.519 -201.822 -243.705 -201.822c-66.4482 0 -126.791 26.1357 -171.315 68.6846l-35.7148 -35.7148c-15.1191 -15.1191 -40.9697 -4.41113 -40.9697 16.9717v134.059c0 13.2549 10.7451 24 24 24z\\\" />\\n    <glyph glyph-name=\\\"stopwatch\\\" unicode=\\\"&#xf2f2;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M432 144c0 -114.9 -93.0996 -208 -208 -208s-208 93.0996 -208 208c0 104 76.2998 190.2 176 205.5v34.5h-28c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h120c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-28v-34.5\\nc37.5 -5.7998 71.7002 -21.5996 99.7002 -44.5996l27.5 27.5c4.7002 4.69922 12.2998 4.69922 17 0l28.2998 -28.3008c4.7002 -4.69922 4.7002 -12.2998 0 -17l-29.4004 -29.3994l-0.599609 -0.600586c21.2002 -32.3994 33.5 -71.2998 33.5 -113.1zM256 108v151.5\\nc0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-151.5c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"sign-out-alt\\\" unicode=\\\"&#xf2f5;\\\" \\nd=\\\"M497 175l-168 -168c-15 -15 -41 -4.5 -41 17v96h-136c-13.2998 0 -24 10.7002 -24 24v96c0 13.2998 10.7002 24 24 24h136v96c0 21.4004 25.9004 32 41 17l168 -168c9.2998 -9.40039 9.2998 -24.5996 0 -34zM192 12c0 -6.59961 -5.40039 -12 -12 -12h-84\\nc-53 0 -96 43 -96 96v192c0 53 43 96 96 96h84c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-84c-17.7002 0 -32 -14.2998 -32 -32v-192c0 -17.7002 14.2998 -32 32 -32h84c6.59961 0 12 -5.40039 12 -12v-40z\\\" />\\n    <glyph glyph-name=\\\"sign-in-alt\\\" unicode=\\\"&#xf2f6;\\\" \\nd=\\\"M416 0h-84c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h84c17.7002 0 32 14.2998 32 32v192c0 17.7002 -14.2998 32 -32 32h-84c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h84c53 0 96 -43 96 -96v-192c0 -53 -43 -96 -96 -96z\\nM369 201c9.2998 -9.40039 9.2998 -24.5996 0 -34l-168 -168c-15 -15 -41 -4.5 -41 17v96h-136c-13.2998 0 -24 10.7002 -24 24v96c0 13.2998 10.7002 24 24 24h136v96c0 21.5 26 32 41 17z\\\" />\\n    <glyph glyph-name=\\\"redo-alt\\\" unicode=\\\"&#xf2f9;\\\" \\nd=\\\"M256.455 440c66.2686 -0.119141 126.437 -26.2334 170.859 -68.6846l35.7148 35.7148c15.1201 15.1191 40.9707 4.41113 40.9707 -16.9717v-134.059c0 -13.2549 -10.7451 -24 -24 -24h-134.059c-21.3828 0 -32.0908 25.8506 -16.9717 40.9707l41.75 41.75\\nc-30.8633 28.8994 -70.8008 44.9072 -113.229 45.2734c-92.3984 0.797852 -170.283 -73.9775 -169.484 -169.442c0.757812 -90.5605 74.1777 -166.552 167.994 -166.552c41.127 0 79.9971 14.6777 110.629 41.5557c4.74316 4.16113 11.9062 3.9082 16.3682 -0.552734\\nl39.6621 -39.6621c4.87207 -4.87207 4.63086 -12.8145 -0.482422 -17.4326c-43.9746 -39.7217 -102.251 -63.9082 -166.177 -63.9082c-136.966 0 -247.999 111.033 -248 247.998c-0.000976562 136.809 111.646 248.247 248.455 248.002z\\\" />\\n    <glyph glyph-name=\\\"poo\\\" unicode=\\\"&#xf2fe;\\\" \\nd=\\\"M451.4 78.9004c34.2998 -5.5 60.5996 -35 60.5996 -70.9004c0 -39.7998 -32.2002 -72 -72 -72h-368c-39.7998 0 -72 32.2002 -72 72c0 35.9004 26.2998 65.4004 60.5996 70.9004c-17.2998 13.0996 -28.5996 33.6992 -28.5996 57.0996c0 39.7998 32.2002 72 72 72h14.0996\\nc-13.3994 11.7002 -22.0996 28.7998 -22.0996 48c0 35.2998 28.7002 64 64 64h16c44.2002 0 80 35.7998 80 80c0 17.4004 -5.7002 33.4004 -15.0996 46.5c4.89941 0.799805 9.89941 1.5 15.0996 1.5c53 0 96 -43 96 -96c0 -11.2998 -2.2998 -21.9004 -5.90039 -32h5.90039\\nc35.2998 0 64 -28.7002 64 -64c0 -19.2002 -8.7002 -36.2998 -22.0996 -48h14.0996c39.7998 0 72 -32.2002 72 -72c0 -23.4004 -11.2998 -44 -28.5996 -57.0996zM192 192c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32z\\nM351.5 53c2 5.2998 -2 11 -7.7998 11h-175.4c-5.7998 0 -9.7998 -5.7002 -7.7998 -11c10.5 -27.9004 58.5 -53 95.5 -53s85 25.0996 95.5 53zM320 128c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"images\\\" unicode=\\\"&#xf302;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M480 32v-16c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256c0 26.5098 21.4902 48 48 48h16v-208c0 -44.1123 35.8877 -80 80 -80h336zM576 112c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256\\nc0 26.5098 21.4902 48 48 48h384c26.5098 0 48 -21.4902 48 -48v-256zM256 320c0 26.5098 -21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48s48 21.4902 48 48zM160 176v-48h352v112l-87.5137 87.5146c-4.6875 4.68652 -12.2852 4.68652 -16.9717 0\\nl-135.515 -135.515l-39.5137 39.5146c-4.6875 4.68652 -12.2852 4.68652 -16.9717 0z\\\" />\\n    <glyph glyph-name=\\\"pencil-alt\\\" unicode=\\\"&#xf303;\\\" \\nd=\\\"M497.9 305.9l-46.1006 -46.1006c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-111 111c-4.7002 4.7002 -4.7002 12.2998 0 17l46.1006 46.1006c18.6992 18.6992 49.0996 18.6992 67.8994 0l60.1006 -60.1006c18.7998 -18.7002 18.7998 -49.0996 0 -67.8994zM284.2 348.2\\nc4.7002 4.7002 12.2998 4.7002 17.0996 0l111 -111c4.7002 -4.7002 4.7002 -12.2998 0 -17l-262.6 -262.601l-121.5 -21.2998c-16.4004 -2.7998 -30.7002 11.4004 -27.7998 27.7998l21.1992 121.5zM124.1 108.1c5.5 -5.5 14.3008 -5.5 19.8008 0l154 154\\nc5.5 5.5 5.5 14.3008 0 19.8008s-14.3008 5.5 -19.8008 0l-154 -154c-5.5 -5.5 -5.5 -14.3008 0 -19.8008zM88 24v48h-36.2998l-11.2998 -64.5l31.0996 -31.0996l64.5 11.2998v36.2998h-48z\\\" />\\n    <glyph glyph-name=\\\"pen\\\" unicode=\\\"&#xf304;\\\" \\nd=\\\"M290.74 354.76l128.02 -128.02l-277.99 -277.99l-114.14 -12.5996c-15.2803 -1.69043 -28.1895 11.2295 -26.4902 26.5098l12.7002 114.22zM497.94 373.82c18.75 -18.75 18.75 -49.1504 0 -67.9102l-56.5508 -56.5498l-128.02 128.02l56.5498 56.5498\\nc18.75 18.75 49.1602 18.75 67.9102 0z\\\" />\\n    <glyph glyph-name=\\\"pen-alt\\\" unicode=\\\"&#xf305;\\\" \\nd=\\\"M497.94 373.83c18.75 -18.7598 18.75 -49.1602 0 -67.9102l-56.5508 -56.5498l-128.02 128.02l56.5498 56.5508c18.75 18.75 49.1602 18.75 67.9102 0zM251.14 394.36l84.8506 -84.8506l82.7695 -82.7695l-196.79 -196.79\\nc-44.8223 -44.8203 -132.335 -86.8428 -195.34 -93.7998c-15.2803 -1.69043 -28.1895 11.2295 -26.4902 26.5098l0.0302734 0.229492c7.00195 62.9189 49.0156 150.315 93.7803 195.08l151.56 151.55l-22.6299 22.6201l-101.82 -101.819\\nc-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-22.6299 22.6299c-6.25 6.24023 -6.25 16.3701 0 22.6201l118.78 118.79c15.6201 15.6201 40.9395 15.6201 56.5596 0z\\\" />\\n    <glyph glyph-name=\\\"long-arrow-alt-down\\\" unicode=\\\"&#xf309;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M168 102.059h46.0576c21.3828 0 32.0908 -25.8516 16.9717 -40.9707l-86.0596 -86.0586c-9.37207 -9.37305 -24.5674 -9.37305 -33.9404 0l-86.0596 86.0586c-15.1191 15.1201 -4.41113 40.9707 16.9717 40.9707h46.0586v301.941c0 6.62695 5.37305 12 12 12h56\\nc6.62695 0 12 -5.37305 12 -12v-301.941z\\\" />\\n    <glyph glyph-name=\\\"long-arrow-alt-left\\\" unicode=\\\"&#xf30a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M134.059 152v-46.0576c0 -21.3828 -25.8516 -32.0908 -40.9707 -16.9717l-86.0586 86.0596c-9.37305 9.37207 -9.37305 24.5674 0 33.9404l86.0586 86.0596c15.1201 15.1191 40.9707 4.41113 40.9707 -16.9717v-46.0586h301.941c6.62695 0 12 -5.37305 12 -12v-56\\nc0 -6.62695 -5.37305 -12 -12 -12h-301.941z\\\" />\\n    <glyph glyph-name=\\\"long-arrow-alt-right\\\" unicode=\\\"&#xf30b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M313.941 232v46.0576c0 21.3828 25.8516 32.0908 40.9707 16.9717l86.0586 -86.0596c9.37305 -9.37207 9.37305 -24.5674 0 -33.9404l-86.0586 -86.0596c-15.1201 -15.1191 -40.9707 -4.41113 -40.9707 16.9717v46.0586h-301.941c-6.62695 0 -12 5.37305 -12 12v56\\nc0 6.62695 5.37305 12 12 12h301.941z\\\" />\\n    <glyph glyph-name=\\\"long-arrow-alt-up\\\" unicode=\\\"&#xf30c;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M88 281.941h-46.0576c-21.3828 0 -32.0908 25.8516 -16.9717 40.9707l86.0596 86.0586c9.37207 9.37305 24.5674 9.37305 33.9404 0l86.0596 -86.0586c15.1191 -15.1201 4.41113 -40.9707 -16.9717 -40.9707h-46.0586v-301.941c0 -6.62695 -5.37305 -12 -12 -12h-56\\nc-6.62695 0 -12 5.37305 -12 12v301.941z\\\" />\\n    <glyph glyph-name=\\\"expand-arrows-alt\\\" unicode=\\\"&#xf31e;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 104v-112v-0.0605469c0 -13.2148 -10.7246 -23.9395 -23.9395 -23.9395h-0.0605469h-112c-21.3896 0 -32.0898 25.9004 -17 41l36.2002 36.2002l-107.2 107.2l-107.23 -107.301l36.2305 -36.0996c15.0898 -15.0996 4.38965 -41 -17 -41h-112h-0.0605469\\nc-13.2148 0 -23.9395 10.7246 -23.9395 23.9395v0.0605469v112c0 21.4004 25.8896 32.0996 41 17l36.1904 -36.2002l107.27 107.2l-107.28 107.3l-36.1797 -36.2998c-15.0996 -15.0996 -41 -4.40039 -41 17v112v0.0605469c0 13.2148 10.7246 23.9395 23.9395 23.9395\\nh0.0605469h112c21.3896 0 32.0898 -25.9004 17 -41l-36.2002 -36.2002l107.2 -107.2l107.23 107.301l-36.2305 36.0996c-15.0898 15.0996 -4.38965 41 17 41h112h0.0605469c13.2148 0 23.9395 -10.7246 23.9395 -23.9395v-0.0605469v-112\\nc0 -21.4004 -25.8896 -32.0996 -41 -17l-36.1904 36.2002l-107.27 -107.2l107.28 -107.3l36.1797 36.2002c15.0996 15.1992 41 4.5 41 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"clipboard\\\" unicode=\\\"&#xf328;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 336v-352c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h80c0 35.29 28.71 64 64 64s64 -28.71 64 -64h80c26.5098 0 48 -21.4902 48 -48zM192 408c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24\\ns24 10.7451 24 24s-10.7451 24 -24 24zM288 294v20c0 3.31152 -2.68848 6 -6 6h-180c-3.31152 0 -6 -2.68848 -6 -6v-20c0 -3.31152 2.68848 -6 6 -6h180c3.31152 0 6 2.68848 6 6z\\\" />\\n    <glyph glyph-name=\\\"arrows-alt-h\\\" unicode=\\\"&#xf337;\\\" \\nd=\\\"M377.941 278.059c0 21.3828 25.8516 32.0908 40.9707 16.9707l86.0586 -86.0596c9.37305 -9.37305 9.37305 -24.5674 0 -33.9404l-86.0586 -86.0596c-15.1201 -15.1191 -40.9707 -4.41113 -40.9707 16.9717v46.0586h-243.883v-46.0576\\nc0 -21.3828 -25.8516 -32.0908 -40.9707 -16.9717l-86.0586 86.0596c-9.37305 9.37305 -9.37305 24.5674 0 33.9404l86.0586 86.0596c15.1201 15.1191 40.9707 4.41113 40.9707 -16.9717v-46.0586h243.883v46.0586z\\\" />\\n    <glyph glyph-name=\\\"arrows-alt-v\\\" unicode=\\\"&#xf338;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M214.059 70.0586c21.3828 0 32.0908 -25.8516 16.9707 -40.9707l-86.0596 -86.0586c-9.37305 -9.37305 -24.5674 -9.37305 -33.9404 0l-86.0596 86.0586c-15.1191 15.1201 -4.41113 40.9707 16.9717 40.9707h46.0586v243.883h-46.0576\\nc-21.3828 0 -32.0908 25.8516 -16.9717 40.9707l86.0596 86.0586c9.37305 9.37305 24.5674 9.37305 33.9404 0l86.0596 -86.0586c15.1191 -15.1201 4.41113 -40.9707 -16.9717 -40.9707h-46.0586v-243.883h46.0586z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-down\\\" unicode=\\\"&#xf358;\\\" \\nd=\\\"M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM212 308v-116h-70.9004c-10.6992 0 -16.0996 -13 -8.5 -20.5l114.9 -114.3c4.7002 -4.7002 12.2002 -4.7002 16.9004 0l114.899 114.3c7.60059 7.59961 2.2002 20.5 -8.5 20.5\\nh-70.7998v116c0 6.59961 -5.40039 12 -12 12h-64c-6.59961 0 -12 -5.40039 -12 -12z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-left\\\" unicode=\\\"&#xf359;\\\" \\nd=\\\"M256 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM372 236h-116v70.9004c0 10.6992 -13 16.0996 -20.5 8.5l-114.3 -114.9c-4.7002 -4.7002 -4.7002 -12.2002 0 -16.9004l114.3 -114.899\\nc7.59961 -7.60059 20.5 -2.2002 20.5 8.5v70.7998h116c6.59961 0 12 5.40039 12 12v64c0 6.59961 -5.40039 12 -12 12z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-right\\\" unicode=\\\"&#xf35a;\\\" \\nd=\\\"M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM140 148h116v-70.9004c0 -10.6992 13 -16.0996 20.5 -8.5l114.3 114.9c4.7002 4.7002 4.7002 12.2002 0 16.9004l-114.3 115c-7.59961 7.59961 -20.5 2.19922 -20.5 -8.5\\nv-70.9004h-116c-6.59961 0 -12 -5.40039 -12 -12v-64c0 -6.59961 5.40039 -12 12 -12z\\\" />\\n    <glyph glyph-name=\\\"arrow-alt-circle-up\\\" unicode=\\\"&#xf35b;\\\" \\nd=\\\"M8 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM300 76v116h70.9004c10.6992 0 16.0996 13 8.5 20.5l-114.9 114.3c-4.7002 4.7002 -12.2002 4.7002 -16.9004 0l-115 -114.3c-7.59961 -7.59961 -2.19922 -20.5 8.5 -20.5\\nh70.9004v-116c0 -6.59961 5.40039 -12 12 -12h64c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"external-link-alt\\\" unicode=\\\"&#xf35d;\\\" \\nd=\\\"M432 128c8.83203 0 16 -7.16797 16 -16v-128c0 -26.4961 -21.5039 -48 -48 -48h-352c-26.4961 0 -48 21.5039 -48 48v352c0 26.4961 21.5039 48 48 48h160c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-144v-320h320v112\\nc0 8.83203 7.16797 16 16 16h32zM488 448c13.248 0 24 -10.752 24 -24v-128c0 -21.5 -26 -32 -41 -17l-35.7197 35.6797l-243.61 -243.68c-3.88281 -3.89648 -11.499 -7.05859 -17 -7.05859s-13.1172 3.16211 -17 7.05859l-22.6699 22.6299\\nc-3.89648 3.88281 -7.05859 11.499 -7.05859 17s3.16211 13.1172 7.05859 17l243.73 243.64l-35.7305 35.7305c-15.0498 15.0898 -4.37012 41 17 41h128z\\\" />\\n    <glyph glyph-name=\\\"external-link-square-alt\\\" unicode=\\\"&#xf360;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 368v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48zM360 352h-111.971c-21.3135 0 -32.0801 -25.8613 -16.9717 -40.9707l31.9844 -31.9873l-195.527 -195.527\\nc-4.68555 -4.68555 -4.68555 -12.2832 0 -16.9707l31.0293 -31.0293c4.6875 -4.68555 12.2852 -4.68555 16.9707 0l195.526 195.526l31.9883 -31.9912c15.0283 -15.0264 40.9707 -4.47461 40.9707 16.9717v111.979c0 13.2549 -10.7451 24 -24 24z\\\" />\\n    <glyph glyph-name=\\\"exchange-alt\\\" unicode=\\\"&#xf362;\\\" \\nd=\\\"M0 280v16c0 13.2549 10.7451 24 24 24h360v48c0 21.3672 25.8994 32.042 40.9707 16.9707l80 -80c9.37207 -9.37305 9.37207 -24.5684 0 -33.9404l-80 -80c-15.0146 -15.0127 -40.9707 -4.48633 -40.9707 16.9697v48h-360c-13.2549 0 -24 10.7451 -24 24zM488 128\\nc13.2549 0 24 -10.7451 24 -24v-16c0 -13.2549 -10.7451 -24 -24 -24h-360v-48c0 -21.4365 -25.9434 -31.9971 -40.9707 -16.9697l-80 80c-9.37207 9.37207 -9.37207 24.5674 0 33.9404l80 80c15.1084 15.1094 40.9707 4.34375 40.9707 -16.9707v-48h360z\\\" />\\n    <glyph glyph-name=\\\"cloud-download-alt\\\" unicode=\\\"&#xf381;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M537.6 221.4c58.4004 -11.8008 102.4 -63.5 102.4 -125.4c0 -70.7002 -57.2998 -128 -128 -128h-368c-79.5 0 -144 64.5 -144 144c0 62.7998 40.2002 116.2 96.2002 135.9c-0.100586 2.69922 -0.200195 5.39941 -0.200195 8.09961c0 88.4004 71.5996 160 160 160\\nc59.2998 0 111 -32.2002 138.7 -80.2002c15.2002 10.2002 33.5996 16.2002 53.2998 16.2002c53 0 96 -43 96 -96c0 -12.2002 -2.2998 -23.9004 -6.40039 -34.5996zM404.7 132.7c10.0996 10.0996 2.89941 27.2998 -11.2998 27.2998h-65.4004v112c0 8.7998 -7.2002 16 -16 16\\nh-48c-8.7998 0 -16 -7.2002 -16 -16v-112h-65.4004c-14.1992 0 -21.3994 -17.2002 -11.2998 -27.2998l105.4 -105.4c6.2002 -6.2002 16.3994 -6.2002 22.5996 0z\\\" />\\n    <glyph glyph-name=\\\"cloud-upload-alt\\\" unicode=\\\"&#xf382;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M537.6 221.4c58.4004 -11.8008 102.4 -63.5 102.4 -125.4c0 -70.7002 -57.2998 -128 -128 -128h-368c-79.5 0 -144 64.5 -144 144c0 62.7998 40.2002 116.2 96.2002 135.9c-0.100586 2.69922 -0.200195 5.39941 -0.200195 8.09961c0 88.4004 71.5996 160 160 160\\nc59.2998 0 111 -32.2002 138.7 -80.2002c15.2002 10.2002 33.5996 16.2002 53.2998 16.2002c53 0 96 -43 96 -96c0 -12.2002 -2.2998 -23.9004 -6.40039 -34.5996zM393.4 160c14.1992 0 21.3994 17.2002 11.2998 27.2998l-105.4 105.4\\nc-6.2002 6.2002 -16.3994 6.2002 -22.5996 0l-105.4 -105.4c-10.0996 -10.0996 -3 -27.2998 11.2998 -27.2998h65.4004v-112c0 -8.7998 7.2002 -16 16 -16h48c8.7998 0 16 7.2002 16 16v112h65.4004z\\\" />\\n    <glyph glyph-name=\\\"gem\\\" unicode=\\\"&#xf3a5;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M485.5 448l90.5 -160h-101.1l-69.2002 160h79.7998zM357.5 448l69.2002 -160h-277.4l69.2002 160h139zM90.5 448h79.7998l-69.2002 -160h-101.1zM0 256h100.7l123 -251.7c1.5 -3.09961 -2.7002 -5.89941 -5 -3.2998zM148.2 256h279.6l-137 -318.2\\nc-1 -2.39941 -4.5 -2.39941 -5.5 0zM352.3 4.2998l123 251.7h100.7l-218.7 -254.9c-2.2998 -2.69922 -6.5 0.100586 -5 3.2002z\\\" />\\n    <glyph glyph-name=\\\"level-down-alt\\\" unicode=\\\"&#xf3be;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M313.553 55.6689l-103.966 -112.003c-9.48535 -10.2139 -25.6758 -10.2295 -35.1738 0l-103.975 112.003c-14.2061 15.2998 -3.37695 40.3311 17.5869 40.3311h63.9746v272h-83.9756h-0.00195312c-2.74316 0 -6.54395 1.5752 -8.4834 3.51465l-56 56\\nc-7.56055 7.55957 -2.20605 20.4854 8.48535 20.4854h195.976c13.2549 0 24 -10.7451 24 -24v-328h63.9658c20.8779 0 31.8516 -24.9688 17.5869 -40.3311z\\\" />\\n    <glyph glyph-name=\\\"level-up-alt\\\" unicode=\\\"&#xf3bf;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M313.553 328.331c14.2646 -15.3623 3.29102 -40.3311 -17.5869 -40.3311h-63.9658v-328c0 -13.2549 -10.7451 -24 -24 -24h-195.976c-10.6914 0 -16.0459 12.9258 -8.48535 20.4854l56 56c1.93945 1.93945 5.74023 3.51465 8.4834 3.51465h0.00195312h83.9756v272\\nh-63.9746c-20.9639 0 -31.793 25.0312 -17.5869 40.3311l103.975 112.003c9.49805 10.2295 25.6885 10.2139 35.1738 0z\\\" />\\n    <glyph glyph-name=\\\"lock-open\\\" unicode=\\\"&#xf3c1;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M423.5 448c84 0.299805 152.5 -68 152.5 -152v-80c0 -13.2998 -10.7002 -24 -24 -24h-32c-13.2998 0 -24 10.7002 -24 24v80c0 39.9004 -32.7002 72.4004 -72.7002 72c-39.5996 -0.400391 -71.2998 -33.2998 -71.2998 -72.9004v-71.0996h48c26.5 0 48 -21.5 48 -48v-192\\nc0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v192c0 26.5 21.5 48 48 48h224v70.5c0 84 67.5 153.2 151.5 153.5z\\\" />\\n    <glyph glyph-name=\\\"map-marker-alt\\\" unicode=\\\"&#xf3c5;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M172.268 -53.6699c-145.298 210.639 -172.268 232.257 -172.268 309.67c0 106.039 85.9609 192 192 192s192 -85.9609 192 -192c0 -77.4131 -26.9697 -99.0312 -172.268 -309.67c-9.53516 -13.7744 -29.9307 -13.7734 -39.4648 0zM192 176c44.1826 0 80 35.8174 80 80\\ns-35.8174 80 -80 80s-80 -35.8174 -80 -80s35.8174 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"microphone-alt\\\" unicode=\\\"&#xf3c9;\\\" horiz-adv-x=\\\"352\\\" \\nd=\\\"M336 256c8.83984 0 16 -7.16016 16 -16v-48c0 -88.9004 -66.29 -162.47 -152 -174.23v-33.7695h56c8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16h-160c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h56v34.1504\\nc-88.0303 12.1396 -152 92.0498 -152 181.689v40.1602c0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-42.2998c0 -66.8105 48.71 -126.59 115.21 -133.08c76.2998 -7.44043 140.79 52.5801 140.79 127.38v48c0 8.83984 7.16016 16 16 16h16zM176 96\\nc-53.0195 0 -96 42.9805 -96 96v160c0 53.0195 42.9805 96 96 96s96 -42.9805 96 -96h-85.3301c-5.88965 0 -10.6699 -3.58008 -10.6699 -8v-16c0 -4.41992 4.78027 -8 10.6699 -8h85.3301v-32h-85.3301c-5.88965 0 -10.6699 -3.58008 -10.6699 -8v-16\\nc0 -4.41992 4.78027 -8 10.6699 -8h85.3301v-32h-85.3301c-5.88965 0 -10.6699 -3.58008 -10.6699 -8v-16c0 -4.41992 4.78027 -8 10.6699 -8h85.3301c0 -53.0195 -42.9805 -96 -96 -96z\\\" />\\n    <glyph glyph-name=\\\"mobile-alt\\\" unicode=\\\"&#xf3cd;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M272 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-224c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h224zM160 -32c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM272 76v312\\nc0 6.59961 -5.40039 12 -12 12h-200c-6.59961 0 -12 -5.40039 -12 -12v-312c0 -6.59961 5.40039 -12 12 -12h200c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"money-bill-alt\\\" unicode=\\\"&#xf3d1;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M352 160c4.41992 0 8 -3.58008 8 -8v-16c0 -4.41992 -3.58008 -8 -8 -8h-64c-4.41992 0 -8 3.58008 -8 8v16c0 4.41992 3.58008 8 8 8h16v55.4404l-0.469727 -0.310547c-1.1123 -0.741211 -3.09961 -1.34375 -4.43652 -1.34375\\nc-2.36328 0 -5.34375 1.59668 -6.65332 3.56348l-8.88086 13.3105c-0.741211 1.1123 -1.34375 3.09961 -1.34375 4.43555c0 2.36328 1.59668 5.34473 3.56445 6.6543l15.3301 10.2197c3.93945 2.62988 8.56934 4.03027 13.3096 4.03027h13.5801c4.41992 0 8 -3.58008 8 -8\\nv-88h16zM608 384c17.6699 0 32 -14.3301 32 -32v-320c0 -17.6699 -14.3301 -32 -32 -32h-576c-17.6699 0 -32 14.3301 -32 32v320c0 17.6699 14.3301 32 32 32h576zM48 48h64c0 35.3496 -28.6504 64 -64 64v-64zM48 272c35.3496 0 64 28.6504 64 64h-64v-64zM320 80\\nc53 0 96 50.1299 96 112c0 61.8604 -42.9805 112 -96 112s-96 -50.1396 -96 -112c0 -61.8496 42.9805 -112 96 -112zM592 48v64c-35.3496 0 -64 -28.6504 -64 -64h64zM592 272v64h-64c0 -35.3496 28.6504 -64 64 -64z\\\" />\\n    <glyph glyph-name=\\\"phone-slash\\\" unicode=\\\"&#xf3dd;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M268.2 66.5996c11.5 5.40039 22.7002 11.6006 33.5996 18.1006l80 -61.7998c-76 -54.5 -169 -86.9004 -269.7 -86.9004c-11.2998 0 -20.8994 7.7998 -23.3994 18.5996l-24 104c-2.60059 11.4004 3.2002 22.9004 13.8994 27.5l112 48\\nc9.80078 4.2002 21.2002 1.40039 28 -6.89941zM633.8 -10.0996c7 -5.40039 8.2998 -15.5 2.90039 -22.3008l-19.6006 -25.2998c-5.5 -7 -15.5 -8.2002 -22.5 -2.7998l-588.399 454.7c-7 5.39941 -8.2002 15.3994 -2.7998 22.3994l19.5996 25.2002\\nc5.5 7 15.5 8.2002 22.5 2.7998l353.9 -273.5c18.0996 22.5 33.7998 46.7002 46 72.8008l-60.6006 49.5996c-8.2998 6.7002 -11.0996 18.2002 -6.89941 28l48 112c4.59961 10.5996 16.1992 16.5 27.5 13.9004l104 -24c10.8994 -2.5 18.5996 -12.2002 18.5996 -23.4004\\nc0 -108.9 -38.0996 -208.4 -100.9 -287.5z\\\" />\\n    <glyph glyph-name=\\\"portrait\\\" unicode=\\\"&#xf3e0;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h288zM192 320c-35.2998 0 -64 -28.7002 -64 -64s28.7002 -64 64 -64s64 28.7002 64 64s-28.7002 64 -64 64zM304 83.2002v19.2002\\nc0 31.7998 -30.0996 57.5996 -67.2002 57.5996h-5c-12.2002 -5.09961 -25.7002 -8 -39.7998 -8s-27.5 2.90039 -39.7998 8h-5c-37.1006 0 -67.2002 -25.7998 -67.2002 -57.5996v-19.2002c0 -10.6006 10 -19.2002 22.4004 -19.2002h179.199\\nc12.4004 0 22.4004 8.59961 22.4004 19.2002z\\\" />\\n    <glyph glyph-name=\\\"reply\\\" unicode=\\\"&#xf3e5;\\\" \\nd=\\\"M8.30859 258.164l176.005 151.985c15.4053 13.3047 39.6865 2.50391 39.6865 -18.1641v-80.0537c160.629 -1.83887 288 -34.0312 288 -186.258c0 -61.4404 -39.5811 -122.309 -83.333 -154.132c-13.6533 -9.93066 -33.1113 2.5332 -28.0771 18.6309\\nc45.3438 145.012 -21.5068 183.51 -176.59 185.742v-87.915c0 -20.7002 -24.2998 -31.4531 -39.6865 -18.1641l-176.005 152c-11.0703 9.5625 -11.0859 26.7529 0 36.3281z\\\" />\\n    <glyph glyph-name=\\\"shield-alt\\\" unicode=\\\"&#xf3ed;\\\" \\nd=\\\"M466.5 364.3c17.7998 -7.39941 29.5 -24.8994 29.5 -44.2998c0 -221.3 -135.9 -344.6 -221.6 -380.3c-11.8008 -4.90039 -25.1006 -4.90039 -36.9004 0c-107 44.5996 -221.5 181.8 -221.5 380.3c0 19.4004 11.7002 36.9004 29.5996 44.2998l192 80\\nc4.89062 2.0293 13.1562 3.6748 18.4502 3.6748c5.29492 0 13.5596 -1.64551 18.4502 -3.6748zM256.1 1.7002c93.7002 46.5996 172.5 156.3 175.801 307.7l-175.9 73.2998z\\\" />\\n    <glyph glyph-name=\\\"tablet-alt\\\" unicode=\\\"&#xf3fa;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h352zM224 -32c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM400 76v312\\nc0 6.59961 -5.40039 12 -12 12h-328c-6.59961 0 -12 -5.40039 -12 -12v-312c0 -6.59961 5.40039 -12 12 -12h328c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"tachometer-alt\\\" unicode=\\\"&#xf3fd;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 416c159.06 0 288 -128.94 288 -288c0 -52.7998 -14.25 -102.26 -39.0596 -144.8c-5.61035 -9.62012 -16.3008 -15.2002 -27.4404 -15.2002h-443c-11.1396 0 -21.8301 5.58008 -27.4404 15.2002c-24.8096 42.54 -39.0596 92 -39.0596 144.8\\nc0 159.06 128.94 288 288 288zM288 352c-17.6699 0 -31.9902 -14.3301 -31.9902 -32s14.3301 -32 32 -32c6.66992 0 12.5098 2.51953 17.6406 6.00977l9.21973 27.6699c0.80957 2.44043 2.33984 4.41016 3.4502 6.66992c-3.74023 13.5205 -15.6104 23.6504 -30.3203 23.6504\\nzM96 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM144 224c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM390.77 296.41c4.18066 12.5703 -2.59961 26.1699 -15.1699 30.3594\\nc-12.6299 4.28027 -26.1895 -2.60938 -30.3594 -15.1699l-61.3398 -184.01c-33.4004 -2.16016 -59.9004 -29.6494 -59.9004 -63.5898c0 -11.7197 3.37988 -22.5498 8.87988 -32h110.24c5.5 9.4502 8.87988 20.2803 8.87988 32c0 19.46 -8.87012 36.6699 -22.5596 48.4102z\\nM405.43 239.21c5.68066 -8.94043 15.1904 -15.21 26.5703 -15.2197c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32c-3.91992 0 -7.58008 -0.94043 -11.0498 -2.23047zM480 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\n\\\" />\\n    <glyph glyph-name=\\\"ticket-alt\\\" unicode=\\\"&#xf3ff;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M128 288h320v-192h-320v192zM528 192c0 -26.5098 21.4902 -48 48 -48v-96c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v96c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48v96c0 26.5098 21.4902 48 48 48h480c26.5098 0 48 -21.4902 48 -48\\nv-96c-26.5098 0 -48 -21.4902 -48 -48zM480 296c0 13.2549 -10.7451 24 -24 24h-336c-13.2549 0 -24 -10.7451 -24 -24v-208c0 -13.2549 10.7451 -24 24 -24h336c13.2549 0 24 10.7451 24 24v208z\\\" />\\n    <glyph glyph-name=\\\"user-alt\\\" unicode=\\\"&#xf406;\\\" \\nd=\\\"M256 160c-79.5 0 -144 64.5 -144 144s64.5 144 144 144s144 -64.5 144 -144s-64.5 -144 -144 -144zM384 128c70.7002 0 128 -57.2998 128 -128v-16c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v16c0 70.7002 57.2998 128 128 128h55.0996\\nc22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h55.0996z\\\" />\\n    <glyph glyph-name=\\\"window-close\\\" unicode=\\\"&#xf410;\\\" \\nd=\\\"M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM380.4 125.5l-67.1006 66.5l67.1006 66.5c4.7998 4.7998 4.7998 12.5996 0 17.4004l-40.5 40.5\\nc-4.80078 4.7998 -12.6006 4.7998 -17.4004 0l-66.5 -67.1006l-66.5 67.1006c-4.7998 4.7998 -12.5996 4.7998 -17.4004 0l-40.5 -40.5c-4.7998 -4.80078 -4.7998 -12.6006 0 -17.4004l67.1006 -66.5l-67.1006 -66.5c-4.7998 -4.7998 -4.7998 -12.5996 0 -17.4004\\nl40.5 -40.5c4.80078 -4.7998 12.6006 -4.7998 17.4004 0l66.5 67.1006l66.5 -67.1006c4.7998 -4.7998 12.5996 -4.7998 17.4004 0l40.5 40.5c4.7998 4.80078 4.7998 12.6006 0 17.4004z\\\" />\\n    <glyph glyph-name=\\\"compress-alt\\\" unicode=\\\"&#xf422;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M4.68555 20.6855l99.3145 99.3145l-32.9219 31.0293c-15.1201 15.1201 -4.41211 40.9707 16.9697 40.9707h112c13.2549 0 23.9521 -10.7451 23.9521 -24v-112c0 -21.3818 -25.8027 -32.0898 -40.9219 -16.9707l-31.0781 32.9707l-99.3145 -99.3145\\nc-6.24707 -6.24707 -16.3789 -6.24707 -22.627 0l-25.373 25.373c-6.24707 6.24805 -6.24707 16.3799 0 22.627zM443.314 363.314l-99.3145 -99.3145l32.9219 -31.0293c15.1201 -15.1201 4.41211 -40.9707 -16.9697 -40.9707h-112c-13.2549 0 -23.9521 10.7451 -23.9521 24\\nv112c0 21.3818 25.8027 32.0898 40.9219 16.9707l31.0781 -32.9707l99.3145 99.3145c6.24707 6.24707 16.3789 6.24707 22.627 0l25.373 -25.373c6.24707 -6.24805 6.24707 -16.3799 0 -22.627z\\\" />\\n    <glyph glyph-name=\\\"expand-alt\\\" unicode=\\\"&#xf424;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M212.686 132.686l-92.6855 -92.6855l32.9219 -31.0293c15.1201 -15.1201 4.41211 -40.9707 -16.9697 -40.9707h-112c-13.2549 0 -23.9521 10.7451 -23.9521 24v112c0 21.3818 25.8027 32.0898 40.9219 16.9707l31.0781 -32.9707l92.6855 92.6855\\nc6.24805 6.24805 16.3799 6.24805 22.6279 0l25.3721 -25.3721c6.24902 -6.24805 6.24902 -16.3789 0 -22.6279zM235.314 251.314l92.6855 92.6855l-32.9219 31.0293c-15.1201 15.1201 -4.41211 40.9707 16.9697 40.9707h112c13.2549 0 23.9521 -10.7451 23.9521 -24v-112\\nc0 -21.3818 -25.8027 -32.0898 -40.9219 -16.9707l-31.0781 32.9707l-92.6855 -92.6855c-6.24805 -6.24805 -16.3799 -6.24805 -22.6279 0l-25.3721 25.3721c-6.24902 6.24805 -6.24902 16.3789 0 22.6279z\\\" />\\n    <glyph glyph-name=\\\"baseball-ball\\\" unicode=\\\"&#xf433;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M368.5 84.0996c12.9004 -26.6992 30.2998 -50.1992 51.4004 -70.5996c-44.6006 -43 -105.101 -69.5 -171.9 -69.5c-66.9004 0 -127.5 26.5996 -172 69.7002c21.2002 20.3994 38.5996 44 51.5 70.7002l-28.7998 13.8994c-11.1006 -23 -26.1006 -43.2998 -44.2998 -61\\nc-34 42.4004 -54.4004 96.1006 -54.4004 154.7s20.4004 112.3 54.4004 154.8c17.7998 -17.2998 32.5 -37.0996 43.5 -59.3994l28.6992 14.0996c-12.7998 25.9004 -30 48.9004 -50.6992 68.7998c44.5996 43.1006 105.199 69.7002 172.1 69.7002\\nc67 0 127.6 -26.7002 172.2 -69.7998c-20.7998 -20 -38 -43 -50.7998 -69l28.6992 -14.1006c11 22.4004 25.8008 42.2002 43.6006 59.5c33.7998 -42.3994 54.2002 -96.0996 54.2002 -154.6c0 -58.5996 -20.5 -112.4 -54.5 -154.9c-18.1006 17.7002 -33 38 -44.1006 60.9004z\\nM140.2 116.1c17.2998 53.9004 14.2998 108.2 -0.700195 153.801l-30.4004 -10c13.3008 -40.2002 15.5 -87.6006 0.600586 -134zM356.5 269.5c-15 -45.5 -18 -99.7998 -0.700195 -153.8l30.5 9.7998c-14.8994 46.5 -12.5996 93.9004 0.600586 134z\\\" />\\n    <glyph glyph-name=\\\"basketball-ball\\\" unicode=\\\"&#xf434;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M212.3 437.7c-1.5 -50 -17 -95.4004 -44.7998 -131.2l-77.4004 77.4004c36 29.6992 78.4004 47.5 122.2 53.7998zM248 226l-46.2998 46.2998c37.2002 45.4004 57.5 103.8 58.7002 167.7c51.8994 -2.59961 103.1 -21.0996 145.5 -56.0996zM56.0996 349.9l77.4004 -77.4004\\nc-35.7002 -27.7998 -81.2002 -43.2998 -131.2 -44.7998c6.2998 43.7998 24.1006 86.2002 53.7998 122.2zM328.3 145.7l-46.2998 46.2998l157.9 157.9c35 -42.4004 53.5 -93.6006 56.0996 -145.5c-64 -1.30078 -122.4 -21.6006 -167.7 -58.7002zM248 158l46.2998 -46.2998\\nc-37.0996 -45.2998 -57.3994 -103.7 -58.7002 -167.7c-51.8994 2.59961 -103.1 21.2002 -145.5 56.0996zM439.9 34.0996l-77.4004 77.4004c35.7002 27.7002 81.0996 43.2002 131.2 44.7998c-6.2998 -43.7998 -24.1006 -86.2002 -53.7998 -122.2zM167.7 238.3\\nl46.2998 -46.2998l-157.9 -157.9c-35 42.4004 -53.5 93.6006 -56.0996 145.5c63.9004 1.10059 122.3 21.5 167.7 58.7002zM283.7 -53.7002c1.59961 50 17.0996 95.5 44.7998 131.2l77.4004 -77.4004c-36 -29.6992 -78.4004 -47.5 -122.2 -53.7998z\\\" />\\n    <glyph glyph-name=\\\"bowling-ball\\\" unicode=\\\"&#xf436;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM120 256c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM184 352c0 -17.7002 14.2998 -32 32 -32s32 14.2998 32 32\\ns-14.2998 32 -32 32s-32 -14.2998 -32 -32zM232 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"chess\\\" unicode=\\\"&#xf439;\\\" \\nd=\\\"M74 240l-33.9102 90.3799c-0.5625 1.5 -1.01953 4.01758 -1.01953 5.62012c0 8.83203 7.16797 16 16 16h0.0195312h56.9102v32h-24c-4.41602 0 -8 3.58398 -8 8v16c0 4.41602 3.58398 8 8 8h24v24c0 4.41602 3.58398 8 8 8h16c4.41602 0 8 -3.58398 8 -8v-24h24\\nc4.41602 0 8 -3.58398 8 -8v-16c0 -4.41602 -3.58398 -8 -8 -8h-24v-32h56.8896h0.0195312c8.83203 0 16 -7.16797 16 -16c0 -1.60254 -0.456055 -4.12012 -1.01953 -5.62012l-33.8896 -90.3799h10c8.83203 0 16 -7.16797 16 -16v-16c0 -8.83203 -7.16797 -16 -16 -16\\nh-15.9404c0.116211 -35.8613 7.25684 -93.2051 15.9404 -128h-128c8.68359 34.7949 15.8242 92.1387 15.9404 128h-15.9404c-8.83203 0 -16 7.16797 -16 16v16c0 8.83203 7.16797 16 16 16h10zM247.16 -11.5801c4.87988 -2.44141 8.83984 -8.85156 8.83984 -14.3086\\nv-0.000976562v-22.1104c0 -8.83203 -7.16797 -16 -16 -16h-224c-8.83203 0 -16 7.16797 -16 16v22.1104c0.000976562 5.45898 3.96582 11.8701 8.84961 14.3096l23.1504 11.5801v16c0 8.83203 7.16797 16 16 16h160c8.83203 0 16 -7.16797 16 -16v-16zM339.93 146.2\\nl-24.5693 20.7998c-6.25684 5.28125 -11.3467 16.2119 -11.3604 24.4004v58.5996c0 3.31152 2.68848 6 6 6h26.3896c3.3125 0 6 -2.68848 6 -6v-26h24.71v26c0 3.31152 2.68848 6 6 6h53.8105c3.31152 0 6 -2.68848 6 -6v-26h24.71v26c0 3.31152 2.6875 6 6 6h26.3799\\nc3.31152 0 6 -2.68848 6 -6v-58.54v-0.03125c0 -8.19238 -5.07617 -19.1367 -11.3301 -24.4287l-24.5996 -20.79l3.29004 -82.21h-126.721zM384 144v-32h32v32c0 8.83203 -7.16797 16 -16 16s-16 -7.16797 -16 -16zM503.16 -11.5801\\nc4.87988 -2.44141 8.83984 -8.85156 8.83984 -14.3086v-0.000976562v-22.1104c0 -8.83203 -7.16797 -16 -16 -16h-192c-8.83203 0 -16 7.16797 -16 16v22.1104c0.000976562 5.45898 3.96582 11.8701 8.84961 14.3096l23.1504 11.5801v16c0 8.83203 7.16797 16 16 16h128\\nc8.83203 0 16 -7.16797 16 -16v-16z\\\" />\\n    <glyph glyph-name=\\\"chess-bishop\\\" unicode=\\\"&#xf43a;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M8 160.12c0 73.3799 59.8096 181.08 112.6 225.37c-14 3.41992 -24.5996 15.5098 -24.5996 30.5098c0 17.6641 14.3359 32 32 32h64c17.6641 0 32 -14.3359 32 -32c0 -15.0498 -10.5996 -27.0898 -24.5996 -30.5098c24.3994 -20.4902 50.0693 -54.6807 70.8691 -92.5898\\nl-107.89 -107.931c-1.29199 -1.29297 -2.34082 -3.82617 -2.34082 -5.6543c0 -1.8291 1.04883 -4.3623 2.34082 -5.65527l11.3105 -11.3105c1.29297 -1.29199 3.82617 -2.34082 5.6543 -2.34082s4.3623 1.04883 5.65527 2.34082l100.31 100.33\\nc15.96 -35.46 26.6904 -71.9492 26.6904 -102.56c0 -51.6006 -22.1396 -73.8301 -56 -84.6006v-43.5195h-192v43.5195c-33.8604 10.7705 -56 32.9609 -56 84.6006zM304 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-288\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h288z\\\" />\\n    <glyph glyph-name=\\\"chess-board\\\" unicode=\\\"&#xf43c;\\\" \\nd=\\\"M255.9 447.8v-64h-64v64h64zM0 383.83h64v-64h-64v64zM128 447.8v-64h-64v64h64zM192 191.9h64v-64h-64v64zM0 255.88h64v-64h-64v64zM383.85 447.8v-64h-64v64h64zM511.85 447.8v-64h-64v64h64zM128 191.9v-64h-64v64h64zM511.8 0h-64v64h64v-64zM511.8 128h-64v64h64\\nv-64zM383.85 -64v64h64v-64h-64zM511.85 255.88h-64v64h64v-64zM128 -64v64h64v-64h-64zM0 -64v64h64v-64h-64zM255.9 -64v64h64v-64h-64zM0 127.93h64v-64h-64v64zM319.88 319.85h-64v64h64v-64zM255.88 191.85v64h64v-64h-64zM191.88 63.8496h64v-64h-64v64z\\nM319.88 127.85v64h64v-64h-64zM319.88 255.8v64h64v-64h-64zM319.88 63.8701h64v-64h-64v64zM64 63.9502h64v-64h-64v64zM192 319.85h-64v64h64v-64zM383.92 63.9502v64h64v-64h-64zM255.92 255.88h-64v64h64v-64zM383.92 383.83h64v-64h-64v64zM255.92 127.93h64v-64h-64\\nv64zM191.92 255.88l0.0800781 -64h-64v64h63.9199zM383.84 191.88v64h64v-64h-64zM128 319.85v-64h-64v64h64zM128 127.93h64v-64h-64v64z\\\" />\\n    <glyph glyph-name=\\\"chess-king\\\" unicode=\\\"&#xf43f;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-352c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h352zM416 288c17.6504 -0.0136719 31.9756 -14.3496 31.9756 -32c0 -2.69434 -0.652344 -6.96777 -1.45605 -9.54004\\nl-73.0791 -214.46h-298.881l-73.0791 214.46c-0.803711 2.57227 -1.45605 6.8457 -1.45605 9.54004c0 17.6504 14.3252 31.9863 31.9756 32h160v48h-40c-4.41602 0 -8 3.58398 -8 8v48c0 4.41602 3.58398 8 8 8h40v40c0 4.41602 3.58398 8 8 8h48c4.41602 0 8 -3.58398 8 -8\\nv-40h40c4.41602 0 8 -3.58398 8 -8v-48c0 -4.41602 -3.58398 -8 -8 -8h-40v-48h160z\\\" />\\n    <glyph glyph-name=\\\"chess-knight\\\" unicode=\\\"&#xf441;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M19 175.53c-10.4883 4.66211 -19 17.7627 -19 29.2402v0.0195312v137.21v0.0585938c0 5.47461 3.13574 13.0635 7 16.9414l9 9l-14.21 28.4199c-0.988281 1.97266 -1.79004 5.36328 -1.79004 7.56934v0.0107422c0 6.62402 5.37598 12 12 12h147.94\\nc106 0 191.92 -86 191.92 -192v-192h-319.86v14.5195v0.0224609c0 27.2783 19.7969 59.3271 44.1904 71.5381l57.2197 28.6504c14.6445 7.32324 26.5303 26.5566 26.5303 42.9297v0.00976562v50.3301l-22.1201 -11.0801\\nc-5.45117 -2.72559 -11.0732 -9.7373 -12.5508 -15.6504l-9.21973 -30.6494c-2.4502 -8.15332 -10.8545 -17.3379 -18.7598 -20.5l-12.7803 -5.12012c-3.1582 -1.2627 -8.48145 -2.28809 -11.8828 -2.28809c-3.74902 0 -9.57129 1.23535 -12.9971 2.75781zM52 320\\nc-11.04 0 -20 -8.95996 -20 -20s8.95996 -20 20 -20s20 8.95996 20 20s-8.95996 20 -20 20zM368 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-352c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h352z\\\" />\\n    <glyph glyph-name=\\\"chess-pawn\\\" unicode=\\\"&#xf443;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M105.1 224c-29.3896 18.3799 -49.0996 50.7803 -49.0996 88c0 57.4082 46.5918 104 104 104s104 -46.5918 104 -104c0 -37.2197 -19.71 -69.6201 -49.0996 -88h25.0996c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-16v-5.49023\\nc0 -44 4.11035 -86.5996 24 -122.51h-176c19.8604 35.9102 24 78.5098 24 122.51v5.49023h-16c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h25.0996zM304 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-288\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h288z\\\" />\\n    <glyph glyph-name=\\\"chess-queen\\\" unicode=\\\"&#xf445;\\\" \\nd=\\\"M256 336c-30.9121 0 -56 25.0879 -56 56s25.0879 56 56 56s56 -25.0879 56 -56s-25.0879 -56 -56 -56zM432 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-352c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h352zM504.87 263.84\\nc3.93457 -2.62109 7.12891 -8.58691 7.12891 -13.3154c0 -2.08496 -0.756836 -5.29004 -1.68945 -7.1543l-102.55 -211.37h-303.52l-102.55 211.33c-0.932617 1.86426 -1.68945 5.06934 -1.68945 7.1543c0 4.72852 3.19434 10.6943 7.12891 13.3154l28.5703 16\\nc7.35938 4.91016 16.8096 2.5498 22.0898 -4.54004c7.86035 -10.6357 24.9736 -19.2676 38.1992 -19.2676c0.922852 0 2.41992 0.0527344 3.34082 0.118164c25.6699 1.73926 44.6699 24.7998 44.6699 50.4893c0 7.39746 6.00293 13.4004 13.4004 13.4004v0h38.7695\\nc6.04004 0 11.6104 -3.99023 12.8604 -9.91016c4.42969 -21.0361 25.4717 -38.1094 46.9697 -38.1094s42.54 17.0732 46.9697 38.1094c1.25 5.91016 6.86035 9.91016 12.8604 9.91016h38.7695c7.39746 0 13.4004 -6.00293 13.4004 -13.4004\\nc0 -23.5293 15.7002 -45.46 38.8398 -49.75c2.48926 -0.484375 6.56738 -0.878906 9.10352 -0.878906c13.166 0 30.2471 8.56152 38.127 19.1094c5.37988 7.13965 14.8496 9.67969 22.29 4.67969z\\\" />\\n    <glyph glyph-name=\\\"chess-rook\\\" unicode=\\\"&#xf447;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M368 416c8.83203 0 16 -7.16797 16 -16v-176l-64 -32c0 -47.7197 1.54004 -95 13.21 -160h-282.42c11.6699 65 13.21 111.67 13.21 160l-64 32v176c0 8.83203 7.16797 16 16 16h56.0996c8.83203 0 16 -7.16797 16 -16v-48h47.9004v48c0 8.83203 7.16797 16 16 16h80\\nc8.83203 0 16 -7.16797 16 -16v-48h48v48c0 8.83203 7.16797 16 16 16h56zM224 128v64c0 17.6641 -14.3359 32 -32 32s-32 -14.3359 -32 -32v-64h64zM368 0c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-352c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h352z\\\" />\\n    <glyph glyph-name=\\\"dumbbell\\\" unicode=\\\"&#xf44b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M104 352c13.2998 0 24 -10.7002 24 -24v-272c0 -13.2998 -10.7002 -24 -24 -24h-48c-13.2998 0 -24 10.7002 -24 24v104h-24c-4.40039 0 -8 3.59961 -8 8v48c0 4.40039 3.59961 8 8 8h24v104c0 13.2998 10.7002 24 24 24h48zM632 224c4.40039 0 8 -3.59961 8 -8v-48\\nc0 -4.40039 -3.59961 -8 -8 -8h-24v-104c0 -13.2998 -10.7002 -24 -24 -24h-48c-13.2998 0 -24 10.7002 -24 24v272c0 13.2998 10.7002 24 24 24h48c13.2998 0 24 -10.7002 24 -24v-104h24zM456 416c13.2998 0 24 -10.7002 24 -24v-400c0 -13.2998 -10.7002 -24 -24 -24h-48\\nc-13.2998 0 -24 10.7002 -24 24v168h-128v-168c0 -13.2998 -10.7002 -24 -24 -24h-48c-13.2998 0 -24 10.7002 -24 24v400c0 13.2998 10.7002 24 24 24h48c13.2998 0 24 -10.7002 24 -24v-168h128v168c0 13.2998 10.7002 24 24 24h48z\\\" />\\n    <glyph glyph-name=\\\"football-ball\\\" unicode=\\\"&#xf44e;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M481.5 387.7c6.2998 -23.9004 13.7002 -61 14.5 -104.5l-156.6 156.8c43.5996 -0.900391 80.8994 -8.5 104.8 -14.9004c18.2002 -4.89941 32.5 -19.1992 37.2998 -37.3994zM14.5 -3.7002c-6.2998 23.9004 -13.7002 61 -14.5 104.5l156.6 -156.8\\nc-43.5996 0.900391 -80.8994 8.5 -104.8 14.9004c-18.2002 4.89941 -32.5 19.1992 -37.2998 37.3994zM4.2002 164.6c22.5996 152.7 138.899 252 271.399 271.4l216.301 -216.6c-22.7002 -152.7 -139 -252 -271.5 -271.4zM321.5 288.2l-28.2998 -28.5l-28.2998 28.2998\\nc-3.10059 3.09961 -8.2002 3.09961 -11.3008 0l-11.2998 -11.2998c-3.09961 -3.10059 -3.09961 -8.2002 0 -11.2998l28.2998 -28.3008l-22.5996 -22.5996l-28.2998 28.2998c-3.10059 3.10059 -8.2002 3.10059 -11.2998 0l-11.3008 -11.2998\\nc-3.09961 -3.09961 -3.09961 -8.2002 0 -11.2998l28.3008 -28.2998l-22.6006 -22.6006l-28.2998 28.2998c-3.09961 3.10059 -8.2002 3.10059 -11.2998 0l-11.2998 -11.2998c-3.10059 -3.09961 -3.10059 -8.2002 0 -11.2998l28.2998 -28.2002l-28.2998 -28.2998\\nc-3.10059 -3.09961 -3.10059 -8.2002 0 -11.2998l11.2998 -11.2998c3.09961 -3.10059 8.2002 -3.10059 11.2998 0l28.2998 28.2998l28.2998 -28.2998c3.10059 -3.10059 8.2002 -3.10059 11.3008 0l11.2998 11.2998c3.09961 3.09961 3.09961 8.2002 0 11.2998\\nl-28.2998 28.2998l22.5996 22.6006l28.2998 -28.3008c3.10059 -3.09961 8.2002 -3.09961 11.2998 0l11.3008 11.3008c3.09961 3.09961 3.09961 8.19922 0 11.2998l-28.3008 28.2998l22.6006 22.7002l28.2998 -28.2998c3.09961 -3.10059 8.2002 -3.10059 11.2998 0\\nl11.2998 11.2998c3.10059 3.09961 3.10059 8.2002 0 11.2998l-28.2998 28.2998l28.2998 28.2998c3.10059 3.10059 3.10059 8.2002 0 11.3008l-11.2998 11.2998c-3.09961 3.09961 -8.2002 3.09961 -11.2998 0z\\\" />\\n    <glyph glyph-name=\\\"golf-ball\\\" unicode=\\\"&#xf450;\\\" horiz-adv-x=\\\"416\\\" \\nd=\\\"M96 32h224c0 -17.7002 -14.2998 -32 -32 -32h-16c-17.7002 0 -32 -14.2998 -32 -32v-20c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v20c0 17.7002 -14.2998 32 -32 32h-16c-17.7002 0 -32 14.2998 -32 32zM416 240\\nc0 -74.2002 -39 -139.2 -97.5 -176h-221c-58.5 36.7998 -97.5 101.8 -97.5 176c0 114.9 93.0996 208 208 208s208 -93.0996 208 -208zM235.9 196.1c18.2998 0 33.0996 14.8008 33.0996 33.1006c0 14.3994 -9.2998 26.2998 -22.0996 30.8994\\nc9.59961 -26.7998 -15.6006 -51.2998 -41.9004 -41.8994c4.59961 -12.7998 16.5 -22.1006 30.9004 -22.1006zM285 149.2c0 14.3994 -9.2998 26.2998 -22.0996 30.8994c9.59961 -26.7998 -15.6006 -51.2998 -41.9004 -41.8994\\nc4.59961 -12.7998 16.5 -22.1006 30.9004 -22.1006c18.2998 0 33.0996 14.9004 33.0996 33.1006zM349 213.2c0 14.3994 -9.2998 26.2998 -22.0996 30.8994c9.59961 -26.7998 -15.6006 -51.2998 -41.9004 -41.8994c4.59961 -12.7998 16.5 -22.1006 30.9004 -22.1006\\nc18.2998 0 33.0996 14.9004 33.0996 33.1006z\\\" />\\n    <glyph glyph-name=\\\"hockey-puck\\\" unicode=\\\"&#xf453;\\\" \\nd=\\\"M0 288c0 53 114.6 96 256 96s256 -43 256 -96s-114.6 -96 -256 -96s-256 43 -256 96zM0 205.8c113.5 -82.3994 398.6 -82.2998 512 0v-109.8c0 -53 -114.6 -96 -256 -96s-256 43 -256 96v109.8z\\\" />\\n    <glyph glyph-name=\\\"quidditch\\\" unicode=\\\"&#xf458;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M256.5 231.2l86.7002 -109.2s-16.6006 -102.4 -76.6006 -150.1c-59.8994 -47.7002 -266.6 -34.1006 -266.6 -34.1006s3.7998 23.1006 11 55.4004l94.5996 112.2c4 4.69922 -0.899414 11.5996 -6.59961 9.5l-60.4004 -22.1006c14.4004 41.7002 32.7002 80 54.6006 97.5\\nc59.8994 47.7998 163.3 40.9004 163.3 40.9004zM494.5 96.2002c44 0 79.7998 -35.7002 79.7998 -79.9004c0 -44.0996 -35.7002 -79.8994 -79.7998 -79.8994s-79.7998 35.7998 -79.7998 79.8994c0 44.1006 35.7998 79.9004 79.7998 79.9004zM636.5 417\\nc5.5 -6.90039 4.40039 -17 -2.5 -22.5l-232.5 -177.9l34.0996 -42.8994c5.10059 -6.40039 1.7002 -15.9004 -6.2998 -17.6006l-58.7998 -12.3994l-86.7002 109.2l25.2998 54.5996c3.5 7.40039 13.5 8.59961 18.6006 2.2002l34.0996 -43l232.5 177.899\\nc6.90039 5.40039 16.9004 4.30078 22.4004 -2.59961z\\\" />\\n    <glyph glyph-name=\\\"square-full\\\" unicode=\\\"&#xf45c;\\\" \\nd=\\\"M512 -64h-512v512h512v-512z\\\" />\\n    <glyph glyph-name=\\\"table-tennis\\\" unicode=\\\"&#xf45d;\\\" \\nd=\\\"M496.2 151.5c-64.1006 43.2002 -149.5 27.9004 -195.601 -34.2002l-211.5 211.5l56 56.1006c83.9004 84.0996 220 84.0996 303.9 0c63 -63.1006 78.7002 -155.601 47.2002 -233.4zM278.3 71.7998c-3.7002 -12.7002 -6.2998 -25.8994 -6.2002 -39.7002\\nc0 -19.5 3.90039 -38.0996 11 -55.0996c-25.6992 2.7998 -50.5996 13.5996 -70.2998 33.2998l-35.7002 35.7002l-89.2998 -103.3c-7.5 -8.60059 -20.7002 -9.10059 -28.7002 -1l-53.3994 53.5c-8.10059 8.09961 -7.60059 21.2998 1 28.7998l103 89.4004l-34.5 34.5996\\nc-39 39.0996 -44.6006 98.7998 -17.2998 144.1zM416 128c53 0 96 -43 96 -96s-43 -96 -96 -96s-96 43 -96 96s43 96 96 96z\\\" />\\n    <glyph glyph-name=\\\"volleyball-ball\\\" unicode=\\\"&#xf45f;\\\" \\nd=\\\"M231.39 204.52c-60.8945 -37.4102 -126.348 -123.516 -146.1 -192.199c-20.248 19.1953 -45.7393 55.5283 -56.9004 81.0996c22.8008 94.4004 89.5 174.4 180.301 216.8c11.8887 -27.9648 22.0586 -75.3184 22.6992 -105.7zM194.49 338.92\\nc-84 -39.5 -149 -108.4 -182.4 -191.5c-19.7998 109.3 34 212.4 125 262.2c19.0098 -16.9424 44.7246 -48.6162 57.4004 -70.7002zM382.09 173.82c-30.1689 3.6709 -76.2686 18.5352 -102.899 33.1797c-1.9541 71.4844 -43.8428 171.263 -93.5 222.72\\nc47.2998 14 84.1992 10.2002 98.8994 8.5c70.2002 -66.8994 106.101 -164.6 97.5 -264.399zM257.39 164.32c49.7002 -26.8008 104 -40.8008 158.601 -40.9004c22.6787 0.140625 58.9219 4.7998 80.8994 10.4004c-6.55762 -27.2012 -25.4639 -67.4766 -42.1992 -89.9004\\nc-93 -27.2998 -195.5 -9.5 -277.5 47.7998c18.2803 24.2959 54.21 56.8213 80.1992 72.6006zM159.09 64.6201c53.6006 -37.2998 144 -78.2002 256.9 -62.1006c-38.1611 -32.3467 -109.732 -58.5986 -159.758 -58.5986c-38.5156 0 -96.416 16.3516 -129.242 36.499\\nc6.39941 29.7998 16.8994 58.2002 32.0996 84.2002zM339.39 425.22c95.9004 -34.2998 164.601 -125.6 164.601 -233.399c0 -2 -0.299805 -4 -0.299805 -6c-23.9658 -7.83887 -63.8799 -14.2012 -89.0947 -14.2012c-0.166992 0 -0.438477 0.000976562 -0.605469 0.000976562\\nc7.89941 92.3994 -19.2998 183.2 -74.6006 253.6z\\\" />\\n    <glyph glyph-name=\\\"allergies\\\" unicode=\\\"&#xf461;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M416 336c17.5996 0 32 -14.4004 32 -32v-176.1c-0.200195 -14 -1.90039 -28.6006 -5.09961 -42.3008l-26.5 -112.699c-5.10059 -21.7002 -24.4004 -37 -46.7002 -37h-197.601c-15.2998 0 -29.7998 7.39941 -38.7998 19.7998l-125.6 172.7\\nc-13 17.8994 -9.10059 42.8994 8.7998 55.8994s42.9004 9.10059 55.9004 -8.7998l23.5996 -32.5v241c0 17.5996 14.4004 32 32 32s32 -14.4004 32 -32v-152c0 -4.40039 3.59961 -8 8 -8h16c4.40039 0 8 3.59961 8 8v184c0 17.5996 14.4004 32 32 32s32 -14.4004 32 -32v-184\\nc0 -4.40039 3.59961 -8 8 -8h16c4.40039 0 8 3.59961 8 8v152c0 17.5996 14.4004 32 32 32s32 -14.4004 32 -32v-152c0 -4.40039 3.59961 -8 8 -8h16c4.40039 0 8 3.59961 8 8v72c0 17.5996 14.4004 32 32 32zM176 32c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16\\ns-16 -7.2002 -16 -16s7.2002 -16 16 -16zM176 128c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM240 0c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM240 96c8.7998 0 16 7.2002 16 16\\ns-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM304 64c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM336 0c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM368 128\\nc8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"band-aid\\\" unicode=\\\"&#xf462;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M0 288c0 35.2998 28.7002 64 64 64h96v-320h-96c-35.2998 0 -64 28.7002 -64 64v192zM576 352c35.2998 0 64 -28.7002 64 -64v-192c0 -35.2998 -28.7002 -64 -64 -64h-96v320h96zM192 32v320h256v-320h-256zM368 264c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24\\ns24 10.7002 24 24s-10.7002 24 -24 24zM368 168c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24s-10.7002 24 -24 24zM272 264c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24s-10.7002 24 -24 24zM272 168\\nc-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24s-10.7002 24 -24 24z\\\" />\\n    <glyph glyph-name=\\\"box\\\" unicode=\\\"&#xf466;\\\" \\nd=\\\"M509.5 263.4c0.799805 -2.40039 0.799805 -4.90039 1.2002 -7.40039h-238.7v192h141.4c20.6992 0 39 -13.2002 45.5 -32.7998zM240 448v-192h-238.7c0.400391 2.5 0.400391 5 1.2002 7.40039l50.5996 151.8c6.5 19.5996 24.8008 32.7998 45.5 32.7998h141.4zM0 224h512\\nv-240c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v240z\\\" />\\n    <glyph glyph-name=\\\"boxes\\\" unicode=\\\"&#xf468;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M560 160c8.7998 0 16 -7.2002 16 -16v-192c0 -8.7998 -7.2002 -16 -16 -16h-224c-8.7998 0 -16 7.2002 -16 16v192c0 8.7998 7.2002 16 16 16h80v-96l32 21.2998l32 -21.2998v96h80zM176 224c-8.7998 0 -16 7.2002 -16 16v192c0 8.7998 7.2002 16 16 16h80v-96\\nl32 21.2998l32 -21.2998v96h80c8.7998 0 16 -7.2002 16 -16v-192c0 -8.7998 -7.2002 -16 -16 -16h-224zM240 160c8.7998 0 16 -7.2002 16 -16v-192c0 -8.7998 -7.2002 -16 -16 -16h-224c-8.7998 0 -16 7.2002 -16 16v192c0 8.7998 7.2002 16 16 16h80v-96l32 21.2998\\nl32 -21.2998v96h80z\\\" />\\n    <glyph glyph-name=\\\"briefcase-medical\\\" unicode=\\\"&#xf469;\\\" \\nd=\\\"M464 320c26.5 0 48 -21.5 48 -48v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h80v48c0 26.5 21.5 48 48 48h160c26.5 0 48 -21.5 48 -48v-48h80zM192 352v-32h128v32h-128zM352 104v48c0 4.40039 -3.59961 8 -8 8h-56v56\\nc0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-56h-56c-4.40039 0 -8 -3.59961 -8 -8v-48c0 -4.40039 3.59961 -8 8 -8h56v-56c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v56h56c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"burn\\\" unicode=\\\"&#xf46a;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M192 448c111.8 -100.9 192 -220.6 192 -300.5c0 -124.5 -79 -211.5 -192 -211.5s-192 87 -192 211.5c0 79.5996 79.7002 199.2 192 300.5zM192 0c56.5 0 96 39 96 94.7998c0 13.5 -4.59961 61.5 -96 161.2c-91.4004 -99.7002 -96 -147.7 -96 -161.2\\nc0 -55.7998 39.5 -94.7998 96 -94.7998z\\\" />\\n    <glyph glyph-name=\\\"capsules\\\" unicode=\\\"&#xf46b;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M555.3 147.9c36.2002 -51.7002 23.7002 -123 -28 -159.2c-20 -14 -42.7998 -20.7002 -65.5 -20.7002c-36.0996 0 -71.5996 17 -93.7998 48.7998l-131.2 187.3c-5.5 7.90039 -9.5 16.4004 -12.7998 25v-149.1c0 -61.9004 -50.0996 -112 -112 -112s-112 50.0996 -112 112\\nv224c0 61.9004 50.0996 112 112 112c60 0 108.5 -47.2002 111.4 -106.5c7.7998 21 21.7998 40 41.5 53.7998c20 14 42.8994 20.7002 65.5 20.7002c36 0 71.5 -17 93.7998 -48.7998zM160 192v112c0 26.5 -21.5 48 -48 48s-48 -21.5 -48 -48v-112h96zM354.8 147.1\\nl82.5 57.7002l-65.5996 93.7002c-9.40039 13.5 -24.7998 21.5 -41.2998 21.5c-10.3008 0 -20.3008 -3.09961 -28.8008 -9.09961c-11 -7.7002 -18.3994 -19.3008 -20.6992 -32.5c-2.40039 -13.2002 0.599609 -26.6006 8.2998 -37.6006z\\\" />\\n    <glyph glyph-name=\\\"clipboard-check\\\" unicode=\\\"&#xf46c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h80c0 35.2998 28.7002 64 64 64s64 -28.7002 64 -64h80zM192 408c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24\\ns-10.7002 24 -24 24zM313.2 176.2c4.7002 4.7002 4.7998 12.2002 0.0996094 17l-28.2002 28.3994c-4.69922 4.7002 -12.2998 4.80078 -17 0.100586l-106 -105.2l-46 46.4004c-4.69922 4.69922 -12.2998 4.7998 -17 0.0996094l-28.3994 -28.2002\\nc-4.7002 -4.7002 -4.7998 -12.2998 -0.100586 -17l82.6006 -83.2998c4.7002 -4.7002 12.2998 -4.7998 17 -0.0996094z\\\" />\\n    <glyph glyph-name=\\\"clipboard-list\\\" unicode=\\\"&#xf46d;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h80c0 35.2998 28.7002 64 64 64s64 -28.7002 64 -64h80zM96 24c13.2998 0 24 10.7002 24 24s-10.7002 24 -24 24s-24 -10.7002 -24 -24\\ns10.7002 -24 24 -24zM96 120c13.2998 0 24 10.7002 24 24s-10.7002 24 -24 24s-24 -10.7002 -24 -24s10.7002 -24 24 -24zM96 216c13.2998 0 24 10.7002 24 24s-10.7002 24 -24 24s-24 -10.7002 -24 -24s10.7002 -24 24 -24zM192 408c-13.2998 0 -24 -10.7002 -24 -24\\ns10.7002 -24 24 -24s24 10.7002 24 24s-10.7002 24 -24 24zM320 40v16c0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8zM320 136v16c0 4.40039 -3.59961 8 -8 8h-144\\nc-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8zM320 232v16c0 4.40039 -3.59961 8 -8 8h-144c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h144c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"diagnoses\\\" unicode=\\\"&#xf470;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M496 192c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16s16 -7.2002 16 -16s-7.2002 -16 -16 -16zM320 272c-48.5 0 -88 39.5 -88 88s39.5 88 88 88s88 -39.5 88 -88s-39.5 -88 -88 -88zM59.7998 84l-17.7002 26.7002c-8.7998 13.2998 -7.59961 34.5996 10 45.0996\\nc7.40039 4.40039 17.5 10 28.7002 16c31.6006 -27.2998 79 -4.2002 79.2002 36c47.0996 17.7002 103 32.2002 160 32.2002c45.0996 0 89.2998 -9.2002 129.2 -21.7998c-11.7002 -52.9004 59.5996 -81.2002 87.7002 -35.1006\\nc21.3994 -10.3994 39.1992 -20.2998 51.0996 -27.3994c17.5996 -10.5 18.7998 -31.9004 10 -45.1006l-17.7998 -26.6992c-10.2002 -15.1006 -29.2998 -17.8008 -42.9004 -9.80078c-16.2002 9.60059 -56.2002 31.8008 -105.3 48.6006v-90.7002h-224v90.7998\\nc-49.0996 -16.8994 -89.0996 -39 -105.3 -48.5996c-13.6006 -8 -32.7002 -5.5 -42.9004 9.7998zM368 104c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24s-10.7002 24 -24 24zM272 200c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24\\ns24 10.7002 24 24s-10.7002 24 -24 24zM112 192c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16s16 -7.2002 16 -16s-7.2002 -16 -16 -16zM624 0c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-608c-8.7998 0 -16 7.2002 -16 16v32\\nc0 8.7998 7.2002 16 16 16h608z\\\" />\\n    <glyph glyph-name=\\\"dna\\\" unicode=\\\"&#xf471;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0.0996094 -46.0996c5.2002 42.8994 31.4004 153.899 159.9 238.1c-128.6 84.2002 -154.7 195.2 -159.9 238.1c-1.09961 9.5 6.40039 17.8008 16 17.8008l32.3008 0.0996094c8.09961 0.0996094 14.8994 -5.90039 16 -13.9004\\nc0.699219 -5 1.7998 -11.0996 3.39941 -18.0996h312.4c1.59961 7 2.7002 13.2002 3.39941 18.0996c1.10059 8 7.90039 13.9004 16 13.9004l32.4004 -0.0996094c9.59961 0 17 -8.30078 15.9004 -17.8008c-5.80078 -47.8994 -37.4004 -181.199 -209.5 -266.699\\nc-31.7002 -15.8008 -57.4004 -33.3008 -78.7002 -51.4004h127.6c-5.59961 4.7998 -10.7998 9.59961 -17 14.2002c21.4004 11.2002 40.9004 23 58.5 35.3994c93.2998 -78.6992 114.3 -169.8 118.9 -207.699c1.2002 -9.5 -6.2998 -17.8008 -15.9004 -17.8008\\nl-32.2998 -0.0996094c-8.09961 -0.0996094 -14.9004 5.90039 -16 13.9004c-0.599609 4.89941 -1.90039 11.1992 -3.5 18.0996h-312.3c-1.60059 -7 -2.7002 -13.2002 -3.40039 -18.0996c-1.09961 -8 -7.89941 -13.9004 -16 -13.9004l-32.2998 0.0996094\\nc-9.59961 0 -17 8.30078 -15.9004 17.8008zM224 228.4c25.0996 13.5996 46.4004 28.3994 64.2002 43.5996h-128.5c17.8994 -15.2002 39.2002 -29.9004 64.2998 -43.5996zM355.1 352h-262.1c5.7002 -10.4004 12.7002 -21.0996 21 -32h220.1\\nc8.2002 10.9004 15.2002 21.5996 21 32zM92.9004 32h261.6c-5.7998 10.4004 -12.9004 21.0996 -21.2002 32h-219.399c-8.2002 -10.9004 -15.2002 -21.5996 -21 -32z\\\" />\\n    <glyph glyph-name=\\\"dolly\\\" unicode=\\\"&#xf472;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M294.2 170.3l-53 159.4c-2.7998 8.2998 1.7002 17.3994 10.0996 20.2002l61.6006 20.5l33.0996 -99.4004l60.7002 20.0996l-33.1006 99.4004l61.1006 20.4004c8.2998 2.7998 17.3994 -1.7002 20.2002 -10.1006l60.3994 -181.2\\nc2.7998 -8.2998 -1.7002 -17.3994 -10.0996 -20.1992l-161.5 -53.8008c-14.7998 11.3008 -31.5 19.7002 -49.5 24.7002zM575.2 121.6c2.7998 -8.39941 -1.7998 -17.3994 -10.1006 -20.1992l-213.3 -71.2002c-1.09961 -57.7998 -53.2002 -103.3 -113.399 -92.6006\\nc-39.4004 6.90039 -71.2002 39.8008 -77.3008 79.2002c-5.69922 36.9004 9.90039 70.1006 36 90.5l-92.1992 276.7h-88.9004c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h112c13.7998 0 26 -8.7998 30.4004 -21.9004l99.3994 -298.199\\nc29.9004 -0.600586 56.2998 -15 73.5 -37l213.5 71.1992c8.2998 2.80078 17.4004 -1.69922 20.2002 -10.0996zM256 -16c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"dolly-flatbed\\\" unicode=\\\"&#xf474;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M208 128c-8.7998 0 -16 7.2002 -16 16v256c0 8.7998 7.2002 16 16 16h144v-128l48 32l48 -32v128h144c8.7998 0 16 -7.2002 16 -16v-256c0 -8.7998 -7.2002 -16 -16 -16h-384zM624 64c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-82.7998\\nc1.7002 -5 2.89941 -10.4004 2.89941 -16c0 -26.5 -21.5 -48 -48 -48s-48 21.5 -48 48c0 5.59961 1.10059 11 2.90039 16h-197.9c1.7002 -5 2.90039 -10.4004 2.90039 -16c0 -26.5 -21.5 -48 -48 -48s-48 21.5 -48 48c0 5.59961 1.09961 11 2.90039 16h-82.9004\\nc-8.7998 0 -16 7.2002 -16 16v368h-48c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h96c8.7998 0 16 -7.2002 16 -16v-368h496z\\\" />\\n    <glyph glyph-name=\\\"file-medical\\\" unicode=\\\"&#xf477;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7zM224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136z\\nM288 152c0 4.40039 -3.59961 8 -8 8h-56v56c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-56h-56c-4.40039 0 -8 -3.59961 -8 -8v-48c0 -4.40039 3.59961 -8 8 -8h56v-56c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v56h56\\nc4.40039 0 8 3.59961 8 8v48z\\\" />\\n    <glyph glyph-name=\\\"file-medical-alt\\\" unicode=\\\"&#xf478;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M288 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v168h70.0996l34.8008 -69.5c2.89941 -5.90039 11.3994 -5.90039 14.2998 0l56.7998 113.7l22.0996 -44.2002h89.9004c8.7998 0 16 7.2002 16 16\\ns-7.2002 16 -16 16h-70.2002l-34.7002 69.5c-2.89941 5.90039 -11.3994 5.90039 -14.2998 0l-56.7998 -113.7l-19.9004 39.7998c-1.39941 2.7002 -4.19922 4.40039 -7.19922 4.40039h-140.9c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h56v232\\nc0 13.2998 10.7002 24 24 24h200v-136zM441 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7z\\\" />\\n    <glyph glyph-name=\\\"first-aid\\\" unicode=\\\"&#xf479;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M0 368c0 26.5 21.5 48 48 48h48v-448h-48c-26.5 0 -48 21.5 -48 48v352zM128 -32v448h320v-448h-320zM192 216v-48c0 -4.40039 3.59961 -8 8 -8h56v-56c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v56h56c4.40039 0 8 3.59961 8 8v48\\nc0 4.40039 -3.59961 8 -8 8h-56v56c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-56h-56c-4.40039 0 -8 -3.59961 -8 -8zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-48v448h48z\\\" />\\n    <glyph glyph-name=\\\"hospital-alt\\\" unicode=\\\"&#xf47d;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M544 352c17.7002 0 32 -14.2998 32 -32v-368c0 -8.7998 -7.2002 -16 -16 -16h-544c-8.7998 0 -16 7.2002 -16 16v368c0 17.7002 14.2998 32 32 32h128v64c0 17.7002 14.2998 32 32 32h192c17.7002 0 32 -14.2998 32 -32v-64h128zM160 12v40c0 6.59961 -5.40039 12 -12 12\\nh-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM160 140v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM320 12v40\\nc0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM320 140v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40\\nc6.59961 0 12 5.40039 12 12zM336 310v20c0 3.2998 -2.7002 6 -6 6h-26v26c0 3.2998 -2.7002 6 -6 6h-20c-3.2998 0 -6 -2.7002 -6 -6v-26h-26c-3.2998 0 -6 -2.7002 -6 -6v-20c0 -3.2998 2.7002 -6 6 -6h26v-26c0 -3.2998 2.7002 -6 6 -6h20c3.2998 0 6 2.7002 6 6v26h26\\nc3.2998 0 6 2.7002 6 6zM480 12v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40c0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12zM480 140v40c0 6.59961 -5.40039 12 -12 12h-40c-6.59961 0 -12 -5.40039 -12 -12v-40\\nc0 -6.59961 5.40039 -12 12 -12h40c6.59961 0 12 5.40039 12 12z\\\" />\\n    <glyph glyph-name=\\\"hospital-symbol\\\" unicode=\\\"&#xf47e;\\\" \\nd=\\\"M256 448c141.4 0 256 -114.6 256 -256s-114.6 -256 -256 -256s-256 114.6 -256 256s114.6 256 256 256zM368 72v240c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-88h-96v88c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-240\\nc0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v88h96v-88c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"id-card-alt\\\" unicode=\\\"&#xf47f;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M528 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h144v-96h192v96h144zM288 224c-35.2998 0 -64 -28.7002 -64 -64s28.7002 -64 64 -64s64 28.7002 64 64s-28.7002 64 -64 64zM381.3 0\\nc10.4004 0 18.7998 10 15.6006 19.7998c-8.40039 25.7002 -32.5 44.2002 -60.9004 44.2002h-8.2002c-12.2002 -5.09961 -25.7002 -8 -39.7998 -8s-27.5 2.90039 -39.7998 8h-8.2002c-28.5 0 -52.5996 -18.5996 -60.9004 -44.2002\\nc-3.19922 -9.7998 5.2002 -19.7998 15.6006 -19.7998h186.6zM352 416v-96h-128v96c0 17.7002 14.2998 32 32 32h64c17.7002 0 32 -14.2998 32 -32z\\\" />\\n    <glyph glyph-name=\\\"notes-medical\\\" unicode=\\\"&#xf481;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h80c0 35.2998 28.7002 64 64 64s64 -28.7002 64 -64h80zM192 408c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24\\ns-10.7002 24 -24 24zM288 104v48c0 4.40039 -3.59961 8 -8 8h-56v56c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-56h-56c-4.40039 0 -8 -3.59961 -8 -8v-48c0 -4.40039 3.59961 -8 8 -8h56v-56c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8\\nv56h56c4.40039 0 8 3.59961 8 8zM288 296v16c0 4.40039 -3.59961 8 -8 8h-176c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h176c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"pallet\\\" unicode=\\\"&#xf482;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M144 192c-8.7998 0 -16 7.2002 -16 16v224c0 8.7998 7.2002 16 16 16h112v-128l64 32l64 -32v128h112c8.7998 0 16 -7.2002 16 -16v-224c0 -8.7998 -7.2002 -16 -16 -16h-352zM624 64h-48v-64h48c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-608\\nc-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h48v64h-48c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h608c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16zM288 0v64h-160v-64h160zM512 0v64h-160v-64h160z\\\" />\\n    <glyph glyph-name=\\\"pills\\\" unicode=\\\"&#xf484;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M112 416c61.9004 0 112 -50.0996 112 -112v-224c0 -61.9004 -50.0996 -112 -112 -112s-112 50.0996 -112 112v224c0 61.9004 50.0996 112 112 112zM160 192v112c0 26.5 -21.5 48 -48 48s-48 -21.5 -48 -48v-112h96zM299.7 221.7l210.8 -210.8\\nc3.5 -3.5 3.2002 -9.40039 -0.799805 -12.3008c-62.5 -45.2998 -150.101 -40.3994 -206.4 15.9004s-61.2002 143.9 -15.8994 206.4c2.89941 3.89941 8.7998 4.2998 12.2998 0.799805zM529.5 240.7c56.4004 -56.2998 61.2002 -143.8 15.9004 -206.4\\nc-2.90039 -3.89941 -8.80078 -4.2998 -12.3008 -0.799805l-210.8 210.8c-3.5 3.5 -3.2002 9.40039 0.799805 12.2998c62.5 45.3008 150.101 40.4004 206.4 -15.8994z\\\" />\\n    <glyph glyph-name=\\\"prescription-bottle\\\" unicode=\\\"&#xf485;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M32 256v64h320v-352c0 -17.5996 -14.4004 -32 -32 -32h-256c-17.5996 0 -32 14.4004 -32 32v64h120c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-120v64h120c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-120v64h120c4.40039 0 8 3.59961 8 8v16\\nc0 4.40039 -3.59961 8 -8 8h-120zM360 448c13.2002 0 24 -10.7998 24 -24v-48c0 -13.2002 -10.7998 -24 -24 -24h-336c-13.2002 0 -24 10.7998 -24 24v48c0 13.2002 10.7998 24 24 24h336z\\\" />\\n    <glyph glyph-name=\\\"prescription-bottle-alt\\\" unicode=\\\"&#xf486;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M360 448c13.2002 0 24 -10.7998 24 -24v-48c0 -13.2002 -10.7998 -24 -24 -24h-336c-13.2002 0 -24 10.7998 -24 24v48c0 13.2002 10.7998 24 24 24h336zM32 -32v352h320v-352c0 -17.5996 -14.4004 -32 -32 -32h-256c-17.5996 0 -32 14.4004 -32 32zM96 152v-48\\nc0 -4.40039 3.59961 -8 8 -8h56v-56c0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v56h56c4.40039 0 8 3.59961 8 8v48c0 4.40039 -3.59961 8 -8 8h-56v56c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8v-56h-56c-4.40039 0 -8 -3.59961 -8 -8z\\n\\\" />\\n    <glyph glyph-name=\\\"procedures\\\" unicode=\\\"&#xf487;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M528 224c61.9004 0 112 -50.0996 112 -112v-160c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v48h-512v-48c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v352c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-240h192\\nv144c0 8.7998 7.2002 16 16 16h256zM136 352c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h140.9c3.09961 0 5.7998 -1.7002 7.19922 -4.40039l19.9004 -39.7998l49.7002 99.4004c5.89941 11.7998 22.7002 11.7998 28.5996 0l27.6006 -55.2002h102.1\\nc8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16h-121.9l-22.0996 44.2002l-49.7002 -99.4004c-5.89941 -11.7998 -22.7002 -11.7998 -28.5996 0l-27.6006 55.2002h-126.1zM160 96c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64\\ns-28.7002 -64 -64 -64z\\\" />\\n    <glyph glyph-name=\\\"shipping-fast\\\" unicode=\\\"&#xf48b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 96c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-48c0 -53 -43 -96 -96 -96s-96 43 -96 96h-128c0 -53 -43 -96 -96 -96s-96 43 -96 96v128h152c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-208c-4.40039 0 -8 3.59961 -8 8v16\\nc0 4.40039 3.59961 8 8 8h240c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-208c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h240c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-272c-4.40039 0 -8 3.59961 -8 8v16\\nc0 4.40039 3.59961 8 8 8h56v48c0 26.5 21.5 48 48 48h256c26.5 0 48 -21.5 48 -48v-48h44.0996c12.7002 0 24.9004 -5.09961 33.9004 -14.0996l99.9004 -99.9004c9 -9 14.0996 -21.2002 14.0996 -33.9004v-108.1h16zM160 -16c26.5 0 48 21.5 48 48s-21.5 48 -48 48\\ns-48 -21.5 -48 -48s21.5 -48 48 -48zM480 -16c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM560 192v12.0996l-99.9004 99.9004h-44.0996v-112h144z\\\" />\\n    <glyph glyph-name=\\\"smoking\\\" unicode=\\\"&#xf48d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M632 96c4.40039 0 8 -3.59961 8 -8v-144c0 -4.40039 -3.59961 -8 -8 -8h-48c-4.40039 0 -8 3.59961 -8 8v144c0 4.40039 3.59961 8 8 8h48zM553.3 360.9c54.2998 -36.4004 86.7002 -97.1006 86.7002 -162.601v-30.2998c0 -4.40039 -3.59961 -8 -8 -8h-48\\nc-4.40039 0 -8 3.59961 -8 8v30.2998c0 50.2002 -25.2002 96.7002 -67.4004 124c-18.3994 12 -28.5996 33.4004 -28.5996 55.4004v62.2998c0 4.40039 3.59961 8 8 8h48c4.40039 0 8 -3.59961 8 -8v-62.2998c0 -6.7998 3.59961 -13 9.2998 -16.7998zM432 96\\nc8.7998 0 16 -7.2002 16 -16v-128c0 -8.7998 -7.2002 -16 -16 -16h-384c-26.5 0 -48 21.5 -48 48v64c0 26.5 21.5 48 48 48h384zM400 -16v64h-176v-64h176zM487.7 306.4c35.2998 -24.7002 56.2998 -64.8008 56.2998 -108.101v-30.2998c0 -4.40039 -3.59961 -8 -8 -8h-48\\nc-4.40039 0 -8 3.59961 -8 8v30.2998c0 27.4004 -13.2998 52.9004 -35.7002 68.6006c-35.7002 25.0996 -60.2998 63 -60.2998 106.699v66.4004c0 4.40039 3.59961 8 8 8h48c4.40039 0 8 -3.59961 8 -8v-62.2998c0 -29 15.7998 -54.7002 39.7002 -71.2998zM536 96\\nc4.40039 0 8 -3.59961 8 -8v-144c0 -4.40039 -3.59961 -8 -8 -8h-48c-4.40039 0 -8 3.59961 -8 8v144c0 4.40039 3.59961 8 8 8h48z\\\" />\\n    <glyph glyph-name=\\\"syringe\\\" unicode=\\\"&#xf48e;\\\" \\nd=\\\"M201.5 273.2l64.9004 65l135.699 -135.7l-181.899 -181.9c-17.5 -17.5996 -41.5 -25.5996 -65.4004 -23l-63.5996 7.10059l-66.2998 -66.2998c-3.10059 -3.10059 -8.2002 -3.10059 -11.3008 0l-11.2998 11.2998c-3.09961 3.09961 -3.09961 8.2002 0 11.2998\\nl66.4004 66.4004l-7.10059 63.5996c-2.59961 24.2998 5.7002 48.0996 23 65.4004l26.4004 26.3994l55.7998 -55.8994c3.10059 -3.10059 8.2002 -3.10059 11.2998 0l11.3008 11.2998c3.09961 3.09961 3.09961 8.2002 0 11.2998l-55.8008 55.7998l45.3008 45.2998\\nl55.6992 -55.7998c3.10059 -3.09961 8.2002 -3.09961 11.3008 0l11.2998 11.2998c3.09961 3.10059 3.09961 8.2002 0 11.3008zM509.7 366.5c3.09961 -3.2002 3.09961 -8.2002 0 -11.4004l-11.2998 -11.2998c-3.10059 -3.09961 -8.2002 -3.09961 -11.3008 0l-28.2998 28.2998\\nl-45.2998 -45.2998l73.5 -73.5c3.09961 -3.09961 3.09961 -8.2002 0 -11.2998l-33.9004 -34c-3.09961 -3.09961 -8.19922 -3.09961 -11.2998 0l-17 17l-135.7 135.9l-17 17c-3.09961 3.09961 -3.09961 8.19922 0 11.2998l33.9004 33.8994\\nc3.09961 3.10059 8.2002 3.10059 11.2998 0l17 -17l56.6006 -56.5996l45.2998 45.2998l-28.2998 28.2998c-3.10059 3.10059 -3.10059 8.2002 0 11.3008l11.2998 11.2998c3.09961 3.09961 8.2002 3.09961 11.2998 0z\\\" />\\n    <glyph glyph-name=\\\"tablets\\\" unicode=\\\"&#xf490;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M160 256c81.0996 0 147.5 -58.5 160 -134.7c0.799805 -4.7998 -3.2998 -9.2998 -8.2998 -9.2998h-303.3c-5 0 -9.10059 4.5 -8.30078 9.2998c12.4004 76.2002 78.8008 134.7 159.9 134.7zM311.6 80c5 0 9.10059 -4.5 8.30078 -9.2998\\nc-12.4004 -76.2002 -78.8008 -134.7 -159.9 -134.7s-147.5 58.5 -159.9 134.7c-0.799805 4.7998 3.30078 9.2998 8.30078 9.2998h303.199zM593.4 401.4c56.5 -56.5 61.3994 -144.2 15.8994 -206.9c-2.7998 -4 -8.7998 -4.2998 -12.2998 -0.799805l-211.3 211.399\\nc-3.5 3.40039 -3.2002 9.40039 0.799805 12.3008c62.7002 45.3994 150.4 40.5 206.9 -16zM363 382.3l211.3 -211.3c3.5 -3.40039 3.2002 -9.40039 -0.799805 -12.2998c-62.7002 -45.5 -150.4 -40.6006 -206.9 15.8994c-56.3994 56.5 -61.2998 144.2 -15.8994 206.9\\nc2.7998 4 8.7998 4.2998 12.2998 0.799805z\\\" />\\n    <glyph glyph-name=\\\"thermometer\\\" unicode=\\\"&#xf491;\\\" \\nd=\\\"M476.8 427.6c49.4004 -40.6992 42.1006 -107.3 7.2002 -142.199l-254.2 -253.301h-99.8994l-89 -89c-9.30078 -9.39941 -24.5 -9.39941 -33.9004 0c-9.40039 9.30078 -9.40039 24.5 0 33.9004l89 89v100.9l45.2998 45.6992l50.1006 -50.1992\\nc3.09961 -3.10059 8.19922 -3.10059 11.2998 0l11.2998 11.2998c3.09961 3.09961 3.09961 8.2002 0 11.2998l-50.0996 50.2002l45.0996 45.3994l50.2998 -50.1992c3.10059 -3.10059 8.2002 -3.10059 11.2998 0l11.3008 11.2998c3.09961 3.09961 3.09961 8.2002 0 11.2998\\nl-50.3008 50.4004l45.1006 45.3994l50.3994 -50.5c3.10059 -3.09961 8.2002 -3.09961 11.3008 0l11.2998 11.2998c3.09961 3.10059 3.09961 8.2002 0 11.3008l-50.5 50.5l45.7002 46c36.3994 36.5 94.3994 40.8994 131.899 10.1992z\\\" />\\n    <glyph glyph-name=\\\"vial\\\" unicode=\\\"&#xf492;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M477.7 261.9c3.09961 -3.10059 3.09961 -8.2002 0 -11.2002l-34 -33.9004c-3.10059 -3.09961 -8.2002 -3.09961 -11.2998 0l-11.2002 11.1006l-246.3 -245.7c-20.1006 -20.1006 -46.5 -30.1006 -72.9004 -30.1006c-28.9004 -0.0996094 -57.7998 11.9004 -78.4004 35.9004\\nc-35.6992 41.5 -29.3994 104.8 9.40039 143.5l242.4 241.9l-11.2002 11.0996c-3.10059 3.09961 -3.10059 8.2002 0 11.2998l34 33.9004c3.09961 3.09961 8.2002 3.09961 11.2998 0zM318 192l69.5 69.4004l-78.5 78.2998l-148 -147.7h157z\\\" />\\n    <glyph glyph-name=\\\"vials\\\" unicode=\\\"&#xf493;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M72 384c-4.40039 0 -8 3.59961 -8 8v48c0 4.40039 3.59961 8 8 8h208c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-24v-240c0 -44.0996 -35.9004 -80 -80 -80s-80 35.9004 -80 80v240h-24zM144 384v-96h64v96h-64zM624 0c8.7998 0 16 -7.2002 16 -16\\nv-32c0 -8.7998 -7.2002 -16 -16 -16h-608c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h608zM360 384c-4.40039 0 -8 3.59961 -8 8v48c0 4.40039 3.59961 8 8 8h208c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-24v-240\\nc0 -44.0996 -35.9004 -80 -80 -80s-80 35.9004 -80 80v240h-24zM432 384v-96h64v96h-64z\\\" />\\n    <glyph glyph-name=\\\"warehouse\\\" unicode=\\\"&#xf494;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M504 96c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-367.7c-4.39941 0 -8 3.59961 -8 8l0.100586 48c0 4.40039 3.59961 8 8 8h367.6zM504 0c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-368c-4.40039 0 -8 3.59961 -8 8\\nl0.0996094 48c0 4.40039 3.60059 8 8 8h367.9zM504 192c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-367.5c-4.40039 0 -8 3.59961 -8 8l0.0996094 48c0 4.40039 3.60059 8 8 8h367.4zM610.5 331c17.7998 -7.5 29.5 -24.9004 29.5 -44.2998v-342.7\\nc0 -4.40039 -3.59961 -8 -8 -8h-80c-4.40039 0 -8 3.59961 -8 8v248c0 17.5996 -14.5996 32 -32.5996 32h-382.801c-18 0 -32.5996 -14.4004 -32.5996 -32v-248c0 -4.40039 -3.59961 -8 -8 -8h-80c-4.40039 0 -8 3.59961 -8 8v342.7c0 19.3994 11.7002 36.7998 29.5 44.2998\\nl272 113.3c4.89062 2.0293 13.1553 3.6748 18.4502 3.6748c5.29395 0 13.5596 -1.64551 18.4502 -3.6748z\\\" />\\n    <glyph glyph-name=\\\"weight\\\" unicode=\\\"&#xf496;\\\" \\nd=\\\"M448 384c35.29 0 64 -28.71 64 -64v-320c0 -35.29 -28.71 -64 -64 -64h-384c-35.29 0 -64 28.71 -64 64v320c0 35.29 28.71 64 64 64h25.9805c-16.4209 -28.2803 -25.9805 -61.0098 -25.9805 -96c0 -105.87 86.1299 -192 192 -192s192 86.1299 192 192\\nc0 34.9902 -9.55957 67.7197 -25.9805 96h25.9805zM256 128c-88.3701 0 -160 71.6299 -160 160s71.6299 160 160 160s160 -71.6299 160 -160s-71.6299 -160 -160 -160zM255.7 279.94c-21.9404 -0.170898 -39.7002 -17.96 -39.7002 -39.9404c0 -22.0898 17.9102 -40 40 -40\\ns40 17.9102 40 40c0 10.5498 -4.26953 20 -10.9502 27.1602l33.6699 78.5498c3.4707 8.11035 -0.290039 17.5205 -8.41016 21c-8.08984 3.50977 -17.5293 -0.240234 -21.0293 -8.41016z\\\" />\\n    <glyph glyph-name=\\\"x-ray\\\" unicode=\\\"&#xf497;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M240 64c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16s-16 7.2002 -16 16s7.2002 16 16 16zM400 32c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16s16 -7.2002 16 -16s-7.2002 -16 -16 -16zM624 448c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16\\nh-608c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h608zM624 0c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-608c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h48v352h512v-352h48zM480 200v16c0 4.40039 -3.59961 8 -8 8\\nh-136v32h104c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-104v24c0 4.40039 -3.59961 8 -8 8h-16c-4.40039 0 -8 -3.59961 -8 -8v-24h-104c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h104v-32h-136c-4.40039 0 -8 -3.59961 -8 -8v-16\\nc0 -4.40039 3.59961 -8 8 -8h136v-32h-104c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h104v-32h-64c-26.5 0 -48 -21.5 -48 -48s21.5 -48 48 -48s48 21.5 48 48v16h64v-16c0 -26.5 21.5 -48 48 -48s48 21.5 48 48s-21.5 48 -48 48h-64v32h104\\nc4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-104v32h136c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"box-open\\\" unicode=\\\"&#xf49e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M425.7 192c4.5 0 9 0.599609 13.2998 1.90039l137 39.0996v-178c0 -14.5996 -10 -27.4004 -24.2002 -31l-216.399 -54.0996c-10.1006 -2.5 -20.8008 -2.5 -31 0l-216.2 54.0996c-14.2002 3.5 -24.2002 16.2998 -24.2002 31v178l137 -39.2002\\nc4.2998 -1.2998 8.7998 -1.89941 13.2998 -1.89941c16.9004 0 32.7998 9 41.5 23.5l64.2002 106.6l64.2998 -106.6c8.60059 -14.4004 24.5 -23.4004 41.4004 -23.4004zM638.3 304.2c4.5 -9.2002 -0.299805 -20.2002 -10.2002 -23.1006l-197.899 -56.5\\nc-7.10059 -2 -14.7002 1 -18.5 7.30078l-91.7002 152.1l250.1 31.9004c6.90039 0.899414 13.6006 -2.7002 16.7002 -8.90039zM53.2002 407c3.09961 6.2002 9.7002 9.7002 16.5996 8.90039l250.2 -31.9004l-91.7998 -152c-3.7998 -6.2998 -11.4004 -9.2998 -18.5 -7.2998\\nl-197.9 56.5c-9.7998 2.7998 -14.7002 13.7998 -10.0996 23z\\\" />\\n    <glyph glyph-name=\\\"comment-dots\\\" unicode=\\\"&#xf4ad;\\\" \\nd=\\\"M256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-38.4004 0 -74.7002 7.09961 -107.4 19.4004c-24.5996 -19.6006 -74.2998 -51.4004 -140.6 -51.4004c-3.2002 0 -6 1.7998 -7.2998 4.7998s-0.700195 6.40039 1.5 8.7002\\nc0.5 0.5 42.2998 45.4004 54.7998 95.7998c-35.5996 35.7002 -57 81.1006 -57 130.7c0 114.9 114.6 208 256 208zM128 176c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM256 176c17.7002 0 32 14.2998 32 32\\ns-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM384 176c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"comment-slash\\\" unicode=\\\"&#xf4b3;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M64 208c0 18.5996 3.2998 36.5 8.90039 53.5996l325.5 -251.6c-24.7002 -6.40039 -51 -10 -78.4004 -10c-38.4004 0 -74.7002 7.09961 -107.4 19.4004c-24.5996 -19.6006 -74.2998 -51.4004 -140.6 -51.4004c-3.2002 0 -6 1.90039 -7.2998 4.7998\\nc-1.2998 3 -0.700195 6.40039 1.5 8.7002c0.5 0.599609 42.2002 45.5 54.7998 95.7998c-35.5996 35.7002 -57 81.1006 -57 130.7zM633.8 -10.0996c7 -5.40039 8.2998 -15.5 2.90039 -22.3008l-19.6006 -25.2998c-5.5 -7 -15.5 -8.2002 -22.5 -2.7998l-588.399 454.7\\nc-7 5.39941 -8.2002 15.3994 -2.7998 22.3994l19.5996 25.2002c5.5 7 15.5 8.2002 22.5 2.7998l105.1 -81.2998c45.2002 32.6006 104.301 52.7002 169.4 52.7002c141.4 0 256 -93.0996 256 -208c0 -49.2002 -21.4004 -94.0996 -56.5996 -129.7z\\\" />\\n    <glyph glyph-name=\\\"couch\\\" unicode=\\\"&#xf4b8;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M160 224c0 35.2998 -28.7002 64 -64 64h-32c0 53 43 96 96 96h320c53 0 96 -43 96 -96h-32c-35.2998 0 -64 -28.7002 -64 -64v-64h-320v64zM576 256c35.2998 0 64 -28.7002 64 -64c0 -23.5996 -13 -44 -32 -55.0996v-120.9c0 -8.7998 -7.2002 -16 -16 -16h-64\\nc-8.7998 0 -16 7.2002 -16 16v16h-384v-16c0 -8.7998 -7.2002 -16 -16 -16h-64c-8.7998 0 -16 7.2002 -16 16v120.9c-19 11.0996 -32 31.5 -32 55.0996c0 35.2998 28.7002 64 64 64h32c17.7002 0 32 -14.2998 32 -32v-96h384v96c0 17.7002 14.2998 32 32 32h32z\\\" />\\n    <glyph glyph-name=\\\"donate\\\" unicode=\\\"&#xf4b9;\\\" \\nd=\\\"M256 32c-114.9 0 -208 93.0996 -208 208s93.0996 208 208 208s208 -93.0996 208 -208s-93.0996 -208 -208 -208zM233.8 350.6c-32.7002 -0.899414 -59 -28.3994 -59.0996 -62.3994c0 -27.7002 18 -52.4004 43.7002 -60.1006l62.2998 -18.6992\\nc7.09961 -2.10059 12.0996 -9.40039 12.0996 -17.6006c0 -10.0996 -7.2998 -18.2998 -16.2998 -18.2998h-38.9004c-6.39941 0 -12.3994 1.7002 -17.7998 5.09961c-4.5 2.80078 -10.2002 2.7002 -14 -1l-16.2998 -15.5c-5 -4.7998 -4.40039 -13 1.2002 -17.0996\\nc12.5 -9.2998 27.5 -14.5996 43 -15.4004v-17c0 -9.19922 7.39941 -16.5996 16.5996 -16.5996h11.1006c9.19922 0 16.5996 7.40039 16.5996 16.5996v16.8008c32.7002 0.899414 59.0996 28.3994 59.0996 62.3994c0 27.7002 -18 52.4004 -43.6992 60.1006l-62.3008 18.6992\\nc-7.09961 2.10059 -12.0996 9.40039 -12.0996 17.6006c0 10.0996 7.2998 18.2998 16.2998 18.2998h38.9004c6.39941 0 12.3994 -1.7002 17.7998 -5.09961c4.5 -2.80078 10.2002 -2.7002 14 1l16.2998 15.5c5 4.7998 4.40039 13 -1.2002 17.0996\\nc-12.5 9.2998 -27.5 14.5996 -43 15.4004v17c0 9.19922 -7.39941 16.5996 -16.5996 16.5996h-11.0996c-9.2002 0 -16.6006 -7.40039 -16.6006 -16.5996v-16.8008zM480 96c17.7002 0 32 -14.2998 32 -32v-96c0 -17.7002 -14.2998 -32 -32 -32h-448\\nc-17.7002 0 -32 14.2998 -32 32v96c0 17.7002 14.2998 32 32 32h32.4004c19.6992 -26 44.5996 -47.7002 73 -64h-63.8008c-5.2998 0 -9.59961 -3.59961 -9.59961 -8v-16c0 -4.40039 4.2998 -8 9.59961 -8h364.7c5.2998 0 9.60059 3.59961 9.60059 8v16\\nc0 4.40039 -4.30078 8 -9.60059 8h-63.7998c28.4004 16.2998 53.4004 38 73 64h32.5z\\\" />\\n    <glyph glyph-name=\\\"dove\\\" unicode=\\\"&#xf4ba;\\\" \\nd=\\\"M288 280.8c-50.7998 10.5 -96.5996 36.7998 -130.8 75.1006c11.2002 32.3994 27.7998 61.5996 48.8994 86.5c8.80078 10.5 25.7002 5.19922 27.8008 -8.30078c7 -45.8994 25.8994 -88.8994 54.0996 -125.199v-28.1006zM400 384h112l-32 -64v-160.1\\nc0 -88.4004 -71.5996 -159.9 -160 -159.9h-76.9004l-65.1992 -56.0996c-6.10059 -5.30078 -14.1006 -8.2002 -22.1006 -7.90039c-92.7998 3.7998 -135.8 49.4004 -153.2 76.2998c-6 9.2998 -1.19922 21.7002 9.5 24.4004l143.9 36\\nc-12.7998 9.59961 -25.7002 20.0996 -38.9004 32.7998c-51 49 -85.0996 115.1 -85.0996 185.9c0 41.3994 9.40039 80.5996 26 115.699c5.7998 12.3008 23.5 11.6006 29 -0.899414c40 -91.2002 128.6 -155.5 233 -161.7v59.4004c0 44.1992 35.7998 80.0996 80 80.0996z\\nM400 287.9c8.7998 0 16 7.19922 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"hand-holding\\\" unicode=\\\"&#xf4bd;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M565.3 119.9c15.1006 -13.6006 13.9004 -36.8008 -1.2998 -48.9004l-151.2 -121c-11.3994 -9.09961 -25.5 -14 -40 -14h-356.8c-8.7998 0 -16 7.2002 -16 16v96c0 8.7998 7.2002 16 16 16h55.4004l46.5 37.7002c21 17 47.0996 26.2998 74.0996 26.2998h160\\nc19.5 0 34.9004 -17.4004 31.5996 -37.4004c-2.59961 -15.6992 -17.3994 -26.5996 -33.2998 -26.5996h-78.2998c-8.7998 0 -16 -7.2002 -16 -16s7.2002 -16 16 -16h118.3c14.6006 0 28.7002 4.90039 40 14l92.4004 73.9004c12.3994 10 30.7998 10.6992 42.5996 0z\\\" />\\n    <glyph glyph-name=\\\"hand-holding-heart\\\" unicode=\\\"&#xf4be;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M275.3 197.5l-108.899 114.2c-31.6006 33.2002 -29.7002 88.2002 5.59961 118.8c30.7998 26.7002 76.7002 21.9004 104.9 -7.7998l11.0996 -11.6006l11.2002 11.7002c28.2002 29.6006 74.0996 34.4004 104.899 7.7002c35.4004 -30.5996 37.2002 -85.5996 5.60059 -118.8\\nl-108.9 -114.2c-7.09961 -7.40039 -18.5 -7.40039 -25.5 0zM565.3 119.9c15.1006 -13.6006 13.9004 -36.8008 -1.2998 -48.9004l-151.2 -121c-11.3994 -9.09961 -25.5 -14 -40 -14h-356.8c-8.7998 0 -16 7.2002 -16 16v96c0 8.7998 7.2002 16 16 16h55.4004l46.5 37.7002\\nc21 17 47.0996 26.2998 74.0996 26.2998h160c19.5 0 34.9004 -17.4004 31.5996 -37.4004c-2.59961 -15.6992 -17.3994 -26.5996 -33.2998 -26.5996h-78.2998c-8.7998 0 -16 -7.2002 -16 -16s7.2002 -16 16 -16h118.3c14.6006 0 28.7002 4.90039 40 14l92.4004 73.9004\\nc12.3994 10 30.7998 10.6992 42.5996 0z\\\" />\\n    <glyph glyph-name=\\\"hand-holding-usd\\\" unicode=\\\"&#xf4c0;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M271.06 303.7c-24.0596 6.39941 -43.4297 24.7002 -46.5693 47.7002c-4.33984 32 20.6201 59.3994 53.5098 63v17.5996c0 8.7998 7.82031 16 17.3701 16h17.3701c9.5498 0 17.3701 -7.2002 17.3701 -16v-17.7197c10.2324 -1.05566 25.6982 -6.20801 34.5195 -11.5\\nc3.05469 -1.83984 5.53418 -6.22656 5.53418 -9.79199c0 -1.78516 -0.758789 -4.46777 -1.69434 -5.98828c-0.490234 -0.808594 -1.46191 -1.97266 -2.16992 -2.59961l-19 -17.5c-4.01953 -3.7002 -10.0693 -4.2002 -15.2998 -2\\nc-2.98145 1.20898 -8.0127 2.19434 -11.2305 2.19922h-35.5996c-5.03027 0 -9.12012 -3.7998 -9.12012 -8.39941c0.112305 -3.6416 3.08301 -7.27051 6.62988 -8.10059l54.2705 -14.2998c24.0996 -6.39941 43.4102 -24.7002 46.5596 -47.7002\\nc4.33984 -32 -20.5693 -59.3994 -53.5 -63v-17.5996c0 -8.7998 -7.83008 -16 -17.3799 -16h-17.3701c-9.54004 0 -17.3701 7.2002 -17.3701 16v17.7002c-10.2305 1.05566 -25.6904 6.20703 -34.5098 11.5c-3.06348 1.83594 -5.54883 6.22363 -5.54883 9.79492\\nc0 1.77051 0.74707 4.43359 1.66895 5.94531c0.510742 0.827148 1.51855 2.01953 2.25 2.65918l19 17.5c4.01953 3.7002 10.0596 4.2002 15.2998 2c2.9707 -1.20508 7.98438 -2.19043 11.1904 -2.19922h35.5996c5.03027 0 9.12012 3.7998 9.12012 8.39941\\nc-0.112305 3.6416 -3.08203 7.27051 -6.62988 8.10059zM565.27 119.9c5.92383 -5.26953 10.7432 -15.9814 10.7432 -23.9102c0 -8.49121 -5.38184 -19.6865 -12.0127 -24.9902l-151.23 -121c-9.67188 -7.72754 -27.5693 -14 -39.9492 -14h-0.0507812h-356.77\\nc-8.83203 0 -16 7.16797 -16 16v96c0 8.83203 7.16797 16 16 16h55.4004l46.5 37.71c17.8789 14.5059 51.0762 26.2842 74.0996 26.29h160v0c17.6309 0 31.9668 -14.3096 32 -31.9404v-0.120117c0 -1.48438 -0.206055 -3.87695 -0.459961 -5.33984\\nc-2.54004 -15.6992 -17.3496 -26.5996 -33.25 -26.5996h-78.29c-8.83203 0 -16 -7.16797 -16 -16s7.16797 -16 16 -16h118.27h0.176758c12.3496 0 30.1904 6.27148 39.8232 14l92.4004 73.9004c12.4004 10 30.7998 10.6992 42.5996 0z\\\" />\\n    <glyph glyph-name=\\\"hands\\\" unicode=\\\"&#xf4c2;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M204.8 217.6l57.6006 -76.7998c16.5996 -22.2002 25.5996 -49.0996 25.5996 -76.7998v-112c0 -8.7998 -7.2002 -16 -16 -16h-131.7c-7.2002 0 -13.5 4.7002 -15.2998 11.5996c-2 7.80078 -5.40039 15.2002 -10.4004 21.7002l-104.1 134.3\\nc-6.7998 8.5 -10.5 19.1006 -10.5 30v218.4c0 17.7002 14.2998 32 32 32s32 -14.2998 32 -32v-148.4l89.7998 -107.8c6 -7.2998 16.9004 -7.7998 23.6006 -1.09961l12.7998 12.7998c5.59961 5.59961 6.2998 14.5 1.5 20.9004l-38.1006 50.7998\\nc-10.5996 14.0996 -7.69922 34.2002 6.40039 44.7998s34.2002 7.7002 44.7998 -6.40039zM608 384c17.7002 0 32 -14.2998 32 -32v-218.4c0 -10.8994 -3.7002 -21.5 -10.5 -30l-104.1 -134.3c-5 -6.5 -8.40039 -13.8994 -10.4004 -21.7002\\nc-1.7998 -6.89941 -8.2002 -11.5996 -15.2998 -11.5996h-131.7c-8.7998 0 -16 7.2002 -16 16v112c0 27.7002 9 54.5996 25.5996 76.7998l57.6006 76.7998c10.5996 14.1006 30.7002 17 44.7998 6.40039s17 -30.7002 6.40039 -44.7998l-38.1006 -50.7998\\nc-4.7998 -6.40039 -4.09961 -15.3008 1.5 -20.9004l12.7998 -12.7998c6.60059 -6.60059 17.6006 -6.10059 23.6006 1.09961l89.7998 107.8v148.4c0 17.7002 14.2998 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"hands-helping\\\" unicode=\\\"&#xf4c4;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M488 256c13.2998 0 24 -10.7002 24 -24v-48c0 -13.2998 -10.7002 -24 -24 -24h-8v-64c0 -17.7002 -14.2998 -32 -32 -32h-16c0 -35.2998 -28.7002 -64 -64 -64h-136.6l-103.4 -59.7002c-15.2998 -8.7998 -34.9004 -3.59961 -43.7002 11.7002l-80 138.6\\nc-8.89941 15.3008 -3.59961 34.9004 11.7002 43.7002l80 46.2002v47.2998c0 22.4004 11.7998 43.2998 31.0996 54.7998l64.9004 39v-121.6c0 -39.7002 32.2998 -72 72 -72s72 32.2998 72 72v56h152zM635.7 293.4c8.7998 -15.3008 3.59961 -34.8008 -11.7002 -43.7002\\nl-80 -46.2002v28.5c0 30.9004 -25.0996 56 -56 56h-184v-88c0 -22.0996 -17.9004 -40 -40 -40s-40 17.9004 -40 40v126.3c0 11 5.59961 21.2998 15 27.1006l33.5 20.8994c10.2002 6.2998 21.9004 9.7002 33.9004 9.7002h102.199l103.4 59.7002\\nc15.2998 8.7998 34.9004 3.59961 43.7002 -11.7002z\\\" />\\n    <glyph glyph-name=\\\"parachute-box\\\" unicode=\\\"&#xf4cd;\\\" \\nd=\\\"M511.9 273c1.09961 -9.2002 -6.80078 -17 -16.1006 -17h-8.7002l-136.8 -151.9c0.700195 -2.69922 1.60059 -5.19922 1.60059 -8.09961v-128c0 -17.7002 -14.3008 -32 -32 -32h-128c-17.7002 0 -32 14.2998 -32 32v128c0 2.90039 0.899414 5.5 1.59961 8.09961\\nl-136.7 151.9h-8.7002c-9.19922 0 -17.0996 7.90039 -16 17c9.10059 75.5 78.4004 132.3 158.301 158.7c-36.4004 -39.4004 -62.4004 -100.601 -62.4004 -175.7h-28.0996l116.6 -129.5c2.5 0.599609 4.7998 1.5 7.5 1.5h48v128h-112c0 115.2 68.9004 192 128 192\\ns128 -76.7998 128 -192h-112v-128h48c2.7002 0 5 -0.900391 7.5 -1.5l116.6 129.5h-28.0996c0 75.0996 -26 136.3 -62.4004 175.7c79.9004 -26.2998 149.2 -83.1006 158.301 -158.7z\\\" />\\n    <glyph glyph-name=\\\"people-carry\\\" unicode=\\\"&#xf4ce;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M128 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM512 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM637.7 -20.0996c6.59961 -16.4004 -1.40039 -35 -17.7998 -41.6006\\nc-3.90039 -1.59961 -7.90039 -2.2998 -11.9004 -2.2998c-12.7002 0 -24.7002 7.59961 -29.7002 20.0996l-27.7002 69.2002l2 18.2002l41.1006 46.4004zM603.5 189.7c4.59961 -20 -0.799805 -41.2002 -14.4004 -56.7002l-67.1992 -75.9004l-10.1006 -92.5996\\nc-1.7998 -16.4004 -15.7002 -28.5 -31.7998 -28.5c-1.2002 0 -2.2998 0.0996094 -3.5 0.200195c-17.5 1.89941 -30.2002 17.7002 -28.2998 35.2998l10.0996 92.7998c1.5 13 6.90039 25.1006 15.6006 35l43.2998 49l-17.6006 70.2998l-6.7998 -20.3994\\nc-4.09961 -12.6006 -11.8994 -23.4004 -24.5 -32.6006l-51.0996 -32.5c-4.60059 -2.89941 -12.1006 -4.59961 -17.2002 -5h-160c-5.09961 0.400391 -12.5996 2.10059 -17.2002 5l-51.0996 32.5c-12.6006 9.2002 -20.4004 20.1006 -24.5 32.6006l-6.7998 20.3994\\nl-17.6006 -70.2998l43.2998 -49c8.7002 -9.89941 14.1006 -22 15.6006 -35l10.0996 -92.7998c1.90039 -17.5996 -10.7002 -33.4004 -28.2998 -35.2998c-1.2002 -0.100586 -2.2998 -0.200195 -3.5 -0.200195c-16.2002 0 -30 12.2002 -31.7998 28.5l-10.1006 92.5996\\nl-67.1992 75.9004c-13.7002 15.5 -19 36.7002 -14.4004 56.7002l18.4004 80.2002c4.59961 20 18.5996 36.7998 37.5 44.8994c18.5 8 38.8994 6.7002 56.0996 -3.2998c22.7002 -13.4004 39.7998 -34.4004 48.0996 -59.4004l11.3008 -33.8994l16.0996 -10.2002v96\\nc0 8.7998 7.2002 16 16 16h160c8.7998 0 16 -7.2002 16 -16v-96l16 10.2002l11.2998 33.8994c8.40039 24.9004 25.4004 46 48.1006 59.4004c17.0996 10 37.5996 11.2998 56.0996 3.2998c18.9004 -8.09961 32.9004 -24.8994 37.5 -44.8994zM46.2998 89.9004l41.1006 -46.4004\\nl2 -18.2002l-27.7002 -69.2002c-6.5 -16.0996 -24.7998 -24.3994 -41.6006 -17.7998c-16.3994 6.60059 -24.3994 25.2002 -17.7998 41.6006z\\\" />\\n    <glyph glyph-name=\\\"piggy-bank\\\" unicode=\\\"&#xf4d3;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M560 224c8.7998 0 16 -7.2002 16 -16v-128c0 -8.7998 -7.2002 -16 -16 -16h-48.7002c-9 -11.9004 -19.5 -22.4004 -31.2998 -31.2998v-80.7002c0 -8.7998 -7.2002 -16 -16 -16h-64c-8.7998 0 -16 7.2002 -16 16v48h-128v-48c0 -8.7998 -7.2002 -16 -16 -16h-64\\nc-8.7998 0 -16 7.2002 -16 16v80.7002c-38.5996 29.2002 -64 75.0996 -64 127.3h-40c-33.2998 0 -59.9004 29.2002 -55.5 63.4004c3.59961 28.1992 29 48.5996 57.5 48.5996c3.2998 0 6 -2.7002 6 -6v-20c0 -3.2998 -2.7002 -6 -6 -6h-1\\nc-11.5996 0 -22.2998 -7.7998 -24.5 -19.2002c-3 -15.2998 8.7002 -28.7998 23.5 -28.7998h43.2002c14.8994 73 79.3994 128 156.8 128h128c7.90039 0 15.4004 -1.2002 23 -2.2998c17.5996 20.7998 43.5996 34.2998 73 34.2998h32l-18.9004 -75.5\\nc15.8008 -14.7998 28.6006 -32.5 37.4004 -52.5h29.5zM432 160c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM256 352c-16.4004 0 -32.2002 -2.2998 -47.4004 -6.2002c-0.0996094 2.10059 -0.599609 4.10059 -0.599609 6.2002\\nc0 53 43 96 96 96s96 -43 96 -96c0 -0.299805 -0.0996094 -0.5 -0.0996094 -0.799805c-5.2002 0.399414 -10.5 0.799805 -15.9004 0.799805h-128z\\\" />\\n    <glyph glyph-name=\\\"ribbon\\\" unicode=\\\"&#xf4d6;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M6.09961 3.7002l117.2 130l79.2002 -87.9004l-91.7998 -101.899c-8 -8.80078 -21.4004 -10.5 -31.2998 -3.80078l-68.8008 27.9004c-12 8.09961 -14.0996 24.9004 -4.5 35.7002zM441.9 3.7002c9.69922 -10.7998 7.59961 -27.6006 -4.30078 -35.6006l-68.7998 -27.8994\\nc-9.89941 -6.7002 -23.2998 -5.10059 -31.2998 3.7998l-248.1 275.3c-48.6006 53.7998 -13 113.5 -11.5 116l43.5996 73.2002c4.2998 7.2002 9.90039 13.2998 16.7998 18c44 29.7002 130.7 27.5996 171.4 0c6.89941 -4.7002 12.5 -10.7998 16.7998 -18l43.7002 -73.5\\nc21.8994 -36.9004 17.2998 -83.5996 -11.4004 -115.5l-34.2002 -38l-79.0996 87.7002s52.7002 59 56 64.5996c-15.4004 8.40039 -40.2002 17.9004 -77.5 17.9004s-62.0996 -9.5 -77.5 -17.9004c3.40039 -5.5 295.4 -330.1 295.4 -330.1z\\\" />\\n    <glyph glyph-name=\\\"route\\\" unicode=\\\"&#xf4d7;\\\" \\nd=\\\"M416 128c52.9004 0 96 -43.0996 96 -96s-43.0996 -96 -96 -96h-277.8c13.5 16.2998 31.2998 39.2002 47.2998 64h230.5c17.5996 0 32 14.4004 32 32s-14.4004 32 -32 32h-96c-52.9004 0 -96 43.0996 -96 96s43.0996 96 96 96h45.2998\\nc-23.0996 32.5996 -45.2998 70.5 -45.2998 96c0 53 43 96 96 96s96 -43 96 -96s-96 -160 -96 -160h-96c-17.5996 0 -32 -14.4004 -32 -32s14.4004 -32 32 -32h96zM416 384c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM96 192\\nc53 0 96 -43 96 -96s-96 -160 -96 -160s-96 107 -96 160s43 96 96 96zM96 64c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"seedling\\\" unicode=\\\"&#xf4d8;\\\" \\nd=\\\"M64 352c123.7 0 224 -100.3 224 -224v-144c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v144c-123.7 0 -224 100.3 -224 224h64zM448 416h64c0 -115.9 -88 -211.1 -200.7 -222.8c-10.7998 40.7002 -31.2998 77.3994 -59 107.6\\nc38.2998 68.7002 111.5 115.2 195.7 115.2z\\\" />\\n    <glyph glyph-name=\\\"sign\\\" unicode=\\\"&#xf4d9;\\\" \\nd=\\\"M496 384c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-368v-368c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v368h-48c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h48v48c0 8.7998 7.2002 16 16 16h32\\nc8.7998 0 16 -7.2002 16 -16v-48h368zM160 64v224h320v-224h-320z\\\" />\\n    <glyph glyph-name=\\\"smile-wink\\\" unicode=\\\"&#xf4da;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M0 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM200 240c0 17.7002 -14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32zM358.5 223.5l9.7002 -8.5c8.39941 -7.5 21.5 -0.299805 19.7998 10.7998\\nc-4 25.2002 -34.2002 42.1006 -59.9004 42.1006c-25.6992 0 -55.8994 -16.9004 -59.8994 -42.1006c-1.7998 -11.2002 11.5 -18.2002 19.7998 -10.7998l9.5 8.5c14.7998 13.2002 46.2002 13.2002 61 0zM157.8 122.2c-13.3994 16.2998 -38.0996 -4.10059 -24.5996 -20.4004\\nc28.5 -34.2002 70.2998 -53.7998 114.8 -53.7998s86.2998 19.5996 114.8 53.7002c13.5 16.2998 -11 36.7002 -24.5996 20.5c-22.4004 -26.7998 -55.2002 -42.2002 -90.2002 -42.2002s-67.7998 15.2998 -90.2002 42.2002z\\\" />\\n    <glyph glyph-name=\\\"tape\\\" unicode=\\\"&#xf4db;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M224 256c35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64s-64 28.7002 -64 64s28.7002 64 64 64zM624 32c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-400c-123.7 0 -224 100.3 -224 224s100.3 224 224 224s224 -100.3 224 -224\\nc0 -62.7002 -25.9004 -119.3 -67.4004 -160h243.4zM224 96c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96z\\\" />\\n    <glyph glyph-name=\\\"truck-loading\\\" unicode=\\\"&#xf4de;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M50.2002 72.4004l-49.6006 185.5c-2.2998 8.5 2.80078 17.2998 11.3008 19.5996l77.2998 20.7002l24.7998 -92.7002l61.7998 16.5l-24.7998 92.7002l77.2002 20.7998c8.5 2.2998 17.2998 -2.7998 19.5996 -11.2998l49.7002 -185.5\\nc2.2998 -8.5 -2.7998 -17.2998 -11.2998 -19.6006l-216.4 -58c-8.5 -2.2998 -17.2998 2.80078 -19.5996 11.3008zM384 448h256v-400c0 -61.9004 -50.0996 -112 -112 -112c-60.4004 0 -109.2 47.9004 -111.6 107.7l-393.7 -107.4\\nc-4.2002 -1.2002 -8.60059 1.2998 -9.7998 5.60059l-12.6006 46.2998c-1.2002 4.2002 1.2998 8.59961 5.60059 9.7998l346.1 94.4004v323.6c0 17.7002 14.2998 32 32 32zM528 0c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"truck-moving\\\" unicode=\\\"&#xf4df;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M621.3 210.7c12 -12 18.7002 -28.2002 18.7002 -45.2002v-85.5c0 -8.7998 -7.2002 -16 -16 -16h-17.5996c1 -5.2002 1.59961 -10.5 1.59961 -16c0 -44.2002 -35.7998 -80 -80 -80s-80 35.7998 -80 80c0 5.5 0.5 10.7998 1.59961 16h-163.199\\nc1 -5.2002 1.59961 -10.5 1.59961 -16c0 -44.2002 -35.7998 -80 -80 -80c-26.2998 0 -49.4004 12.7998 -64 32.4004c-14.5996 -19.5 -37.7002 -32.4004 -64 -32.4004c-44.2002 0 -80 35.7998 -80 80v336c0 17.7002 14.2998 32 32 32h416c17.7002 0 32 -14.2998 32 -32\\nv-96.0996h37.5c17 0 33.2998 -6.7002 45.2998 -18.7002zM80 16c17.5996 0 32 14.4004 32 32s-14.4004 32 -32 32s-32 -14.4004 -32 -32s14.4004 -32 32 -32zM208 16c17.5996 0 32 14.4004 32 32s-14.4004 32 -32 32s-32 -14.4004 -32 -32s14.4004 -32 32 -32zM480 240v-48\\nh92.0996l-43.2998 43.2998c-3 3 -7 4.7002 -11.2998 4.7002h-37.5zM528 16c17.5996 0 32 14.4004 32 32s-14.4004 32 -32 32s-32 -14.4004 -32 -32s14.4004 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"video-slash\\\" unicode=\\\"&#xf4e2;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.8 -10.0996c7 -5.40039 8.2998 -15.5 2.7998 -22.4004l-19.5996 -25.2998c-5.5 -7 -15.5 -8.2002 -22.5 -2.7998l-178.5 138l-373.3 288.6l-36.5 28.2002c-7 5.39941 -8.2002 15.3994 -2.7998 22.3994l19.5996 25.2002c5.5 7 15.5 8.2002 22.5 2.7998\\nl78.4004 -60.5996h244.3c26.3994 0 47.7998 -21.4004 47.7998 -47.7998v-178l32 -24.7002v137.2l109.6 75.5996c21.3008 14.6006 50.4004 -0.299805 50.4004 -25.7998v-257c0 -17.4004 -13.7998 -29.7002 -29.2002 -31.0996zM32 47.7998v245.5l365.8 -282.8\\nc-8.2002 -6.5 -18.3994 -10.5 -29.5996 -10.5h-288.4c-26.3994 0 -47.7998 21.4004 -47.7998 47.7998z\\\" />\\n    <glyph glyph-name=\\\"wine-glass\\\" unicode=\\\"&#xf4e3;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M216 -16c22.0898 0 40 -17.9102 40 -40c0 -4.41992 -3.58008 -8 -8 -8h-208c-4.41992 0 -8 3.58008 -8 8c0 22.0898 17.9102 40 40 40h40v117.18c-68.4697 15.8906 -118.05 79.9102 -111.4 154.16l15.96 178.11c0.730469 8.24023 7.55078 14.5498 15.7002 14.5498h223.48\\nc8.16016 0 14.9697 -6.30957 15.71 -14.5498l15.9502 -178.101c6.64941 -74.25 -42.9307 -138.27 -111.4 -154.159v-117.19h40z\\\" />\\n    <glyph glyph-name=\\\"user-alt-slash\\\" unicode=\\\"&#xf4fa;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.8 -10.0996c7 -5.40039 8.2998 -15.5 2.90039 -22.3008l-19.6006 -25.2998c-5.5 -7 -15.5 -8.2002 -22.5 -2.7998l-588.399 454.7c-7 5.39941 -8.2002 15.3994 -2.7998 22.3994l19.5996 25.2002c5.5 7 15.5 8.2002 22.5 2.7998l135.5 -104.8\\nc16 62.1006 71.9004 108.2 139 108.2c79.5 0 144 -64.5 144 -144c0 -54.0996 -30.2002 -100.7 -74.4004 -125.3zM198.4 128h47.3994l248.4 -192h-382.2c-26.5 0 -48 21.5 -48 48v9.59961c0 74.2002 60.2002 134.4 134.4 134.4z\\\" />\\n    <glyph glyph-name=\\\"user-astronaut\\\" unicode=\\\"&#xf4fb;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M64 224c-8.7998 0 -16 7.2002 -16 16v96c0 8.7998 7.2002 16 16 16h13.5c24.7002 56.5 80.9004 96 146.5 96s121.8 -39.5 146.5 -96h13.5c8.7998 0 16 -7.2002 16 -16v-96c0 -8.7998 -7.2002 -16 -16 -16h-13.5c-24.7002 -56.5 -80.9004 -96 -146.5 -96\\ns-121.8 39.5 -146.5 96h-13.5zM104 312v-24c0 -53 43 -96 96 -96h48c53 0 96 43 96 96v24c0 22.0996 -21.5 40 -48 40h-144c-26.5 0 -48 -17.9004 -48 -40zM176 240l-12 36l-36 12l36 12l12 36l12 -36l36 -12l-36 -12zM327.6 126.6c67.5 -7.09961 120.4 -63.5996 120.4 -133\\nv-9.59961c0 -26.5 -21.5 -48 -48 -48h-80v64c0 17.7002 -14.2998 32 -32 32h-128c-17.7002 0 -32 -14.2998 -32 -32v-64h-80c-26.5 0 -48 21.5 -48 48v9.59961c0 69.4004 52.9004 125.9 120.4 133c29.8994 -19.2998 65.3994 -30.5996 103.6 -30.5996\\ns73.7002 11.2998 103.6 30.5996zM272 0c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16s-16 7.2002 -16 16s7.2002 16 16 16zM176 0c8.7998 0 16 -7.2002 16 -16v-48h-32v48c0 8.7998 7.2002 16 16 16z\\\" />\\n    <glyph glyph-name=\\\"user-check\\\" unicode=\\\"&#xf4fc;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM313.6 160c74.2002 0 134.4 -60.2002 134.4 -134.4v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v41.5996\\nc0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992zM636.6 288.4c4.60059 -4.60059 4.5 -12.1006 -0.0996094 -16.8008l-141.3 -140.199c-4.7002 -4.60059 -12.2002 -4.60059 -16.7998 0.0996094\\nl-81.7002 82.2998c-4.60059 4.7002 -4.60059 12.2002 0.0996094 16.7998l28.1006 27.9004c4.69922 4.59961 12.1992 4.59961 16.7998 -0.0996094l45.5 -45.8008l104.8 104c4.7002 4.60059 12.2002 4.60059 16.7998 -0.0996094z\\\" />\\n    <glyph glyph-name=\\\"user-clock\\\" unicode=\\\"&#xf4fd;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M496 224c79.5996 0 144 -64.4004 144 -144s-64.4004 -144 -144 -144s-144 64.4004 -144 144s64.4004 144 144 144zM560 73.7002v12.5996c0 5.2998 -4.40039 9.7002 -9.7002 9.7002h-38.2998v54.2998c0 5.2998 -4.40039 9.7002 -9.7002 9.7002h-12.5996\\nc-5.2998 0 -9.7002 -4.40039 -9.7002 -9.7002v-76.5996c0 -5.2998 4.40039 -9.7002 9.7002 -9.7002h60.5996c5.2998 0 9.7002 4.40039 9.7002 9.7002zM320 80c0 -59.5 29.7998 -112.1 75.0996 -144h-347.1c-26.5 0 -48 21.5 -48 48v41.5996\\nc0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992c8.40039 0 16.6006 -1 24.6006 -2.5c-11.5 -23.4004 -18.2002 -49.7002 -18.2002 -77.5zM224 192c-70.7002 0 -128 57.2998 -128 128\\ns57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128z\\\" />\\n    <glyph glyph-name=\\\"user-cog\\\" unicode=\\\"&#xf4fe;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M610.5 74.7002l25.7998 -14.9004c2.90039 -1.7002 4.2998 -5.2002 3.2998 -8.5c-6.69922 -21.5996 -18.1992 -41.2002 -33.1992 -57.3994c-2.30078 -2.5 -6.10059 -3.10059 -9 -1.40039l-25.8008 14.9004c-10.8994 -9.30078 -23.3994 -16.5 -36.8994 -21.3008v-29.7998\\nc0 -3.39941 -2.40039 -6.39941 -5.7002 -7.09961c-21.2002 -4.7998 -43.9004 -5 -66.2002 0c-3.2998 0.700195 -5.7002 3.7002 -5.7002 7.09961v29.7998c-13.5 4.80078 -26 12 -36.8994 21.3008l-25.7998 -14.9004c-3 -1.7002 -6.7002 -1.09961 -9 1.40039\\nc-15 16.2998 -26.5 35.7998 -33.2002 57.3994c-1 3.2998 0.299805 6.7998 3.2998 8.5l25.7998 14.9004c-2.59961 14.0996 -2.59961 28.5 0 42.5996l-25.7998 14.9004c-2.90039 1.7002 -4.2998 5.2002 -3.2998 8.5c6.7002 21.5996 18.2002 41.2002 33.2002 57.3994\\nc2.2998 2.5 6.09961 3.10059 9 1.40039l25.7998 -14.9004c10.8994 9.30078 23.3994 16.5 36.8994 21.3008v29.7998c0 3.39941 2.40039 6.39941 5.7002 7.09961c21.2002 4.7998 43.9004 5 66.2002 0c3.2998 -0.700195 5.7002 -3.7002 5.7002 -7.09961v-29.7998\\nc13.5 -4.80078 26 -12 36.8994 -21.3008l25.8008 14.9004c3 1.7002 6.69922 1.09961 9 -1.40039c15 -16.1992 26.5 -35.7998 33.1992 -57.3994c1 -3.2998 -0.299805 -6.7998 -3.2998 -8.5l-25.7998 -14.9004c2.59961 -14.0996 2.59961 -28.5 0 -42.5996zM496 47.5\\nc26.7998 0 48.5 21.7998 48.5 48.5s-21.7998 48.5 -48.5 48.5s-48.5 -21.7998 -48.5 -48.5s21.7002 -48.5 48.5 -48.5zM224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM425.2 -34.5v-9.2002\\nc0 -4.09961 0.799805 -8 2 -11.7998c-7.7002 -5.2998 -17.1006 -8.5 -27.2002 -8.5h-352c-26.5 0 -48 21.5 -48 48v41.5996c0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992\\nc3.90039 0 7.60059 -0.900391 11.4004 -1.2002c-1 -2.89941 -2.2998 -5.7998 -3.2002 -8.7002c-5.5 -17.6992 1.90039 -36.5 17.9004 -45.6992l7.89941 -4.60059c-0.0996094 -2.59961 -0.0996094 -5.2002 0 -7.7998l-7.89941 -4.59961\\nc-16 -9.30078 -23.4004 -28 -17.9004 -45.7002c7.90039 -25.7002 21.9004 -49.7998 40.2002 -69.6006c7.5 -8 18 -12.5996 28.9004 -12.5996c6.7998 0 13.5996 1.90039 19.5996 5.2998l7.90039 4.60059c2.19922 -1.30078 4.5 -2.7002 6.7998 -3.90039z\\\" />\\n    <glyph glyph-name=\\\"user-edit\\\" unicode=\\\"&#xf4ff;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM313.6 160c39.9004 0 75.4004 -17.7998 99.9004 -45.5l-77.2998 -77.2998l-7.90039 -7.90039l-1.2002 -11.0996l-6.7998 -60.9004\\nc-0.799805 -7.2998 0.200195 -14.5 2.60059 -21.2998h-274.9c-26.5 0 -48 21.5 -48 48v41.5996c0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992zM358.9 14.7002l137.899 137.8l71.7002 -71.7002\\nl-137.9 -137.899l-60.8994 -6.80078c-10.1006 -1.19922 -18.7002 7.40039 -17.6006 17.6006zM633 179.1c9.2998 -9.39941 9.2998 -24.5 0 -33.8994l-41.7998 -41.7998l-71.7998 71.6992l4.09961 4.10059l37.7998 37.7998c9.2998 9.2998 24.5 9.2998 33.7998 0z\\\" />\\n    <glyph glyph-name=\\\"user-friends\\\" unicode=\\\"&#xf500;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M192 192c-61.9004 0 -112 50.0996 -112 112s50.0996 112 112 112s112 -50.0996 112 -112s-50.0996 -112 -112 -112zM268.8 160c63.6006 0 115.2 -51.5996 115.2 -115.2v-28.7998c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v28.7998\\nc0 63.6006 51.5996 115.2 115.2 115.2h8.2998c20.9004 -10 43.9004 -16 68.5 -16s47.7002 6 68.5 16h8.2998zM480 192c-53 0 -96 43 -96 96s43 96 96 96s96 -43 96 -96s-43 -96 -96 -96zM528 160c61.9004 0 112 -50.0996 112 -112c0 -26.5 -21.5 -48 -48 -48h-176.6\\nc0.0996094 2.09961 0.599609 4.2002 0.599609 6.40039v38.3994c0 38.6006 -15.2998 73.5 -39.7002 99.7998c16.5 9.5 35.2998 15.4004 55.7002 15.4004h3.7998c13.9004 -4.7998 28.6006 -8 44.2002 -8s30.2998 3.2002 44.2002 8h3.7998z\\\" />\\n    <glyph glyph-name=\\\"user-graduate\\\" unicode=\\\"&#xf501;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M319.4 127.4c71.5 -3.10059 128.6 -61.6006 128.6 -133.801v-9.59961c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v9.59961c0 72.2002 57.0996 130.7 128.6 133.801l95.4004 -95.4004zM13.5996 368.2c-18.0996 4.39941 -18.0996 27.2002 0 31.5996\\nl190.601 45.9004c13 3.09961 26.7002 3.09961 39.7002 0l190.399 -46c18.2002 -4.40039 18.2002 -27.1006 0 -31.5l-96.2998 -23.2002c8.7002 -17.2002 14 -36.4004 14 -57c0 -70.7002 -57.2998 -128 -128 -128s-128 57.2998 -128 128c0 20.5996 5.40039 39.7998 14 57\\nl-66 15.9004v-52.6006c7 -4.2002 12 -11.5 12 -20.2998c0 -8.40039 -4.59961 -15.4004 -11.0996 -19.7002l15.5996 -62.2998c1.7002 -6.90039 -2.09961 -14 -7.59961 -14h-41.8008c-5.5 0 -9.2998 7.09961 -7.59961 14l15.5996 62.2998\\nc-6.5 4.2998 -11.0996 11.2998 -11.0996 19.7002c0 8.7998 5 16.0996 12 20.2998v58.4004z\\\" />\\n    <glyph glyph-name=\\\"user-lock\\\" unicode=\\\"&#xf502;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M224 192c-70.6562 0 -128 57.3438 -128 128s57.3438 128 128 128s128 -57.3438 128 -128s-57.3438 -128 -128 -128zM320 128v-160c0.0644531 -9.49707 4.05176 -23.833 8.90039 -32h-280.9c-26.4961 0 -48 21.5039 -48 48v41.5996\\nc0.0166016 74.1729 60.2275 134.384 134.4 134.4h16.6992c19.1514 -8.83203 51.8105 -16 72.9004 -16s53.749 7.16797 72.9004 16h16.6992c5 0 9.7002 -1 14.5 -1.5c-4.41016 -7.84082 -8.03906 -21.5049 -8.09961 -30.5zM608 160c17.6641 0 32 -14.3359 32 -32v-160\\nc0 -17.6641 -14.3359 -32 -32 -32h-224c-17.6641 0 -32 14.3359 -32 32v160c0 17.6641 14.3359 32 32 32h32v80c0 44.1602 35.8398 80 80 80s80 -35.8398 80 -80v-80h32zM496 16c17.6641 0 32 14.3359 32 32s-14.3359 32 -32 32s-32 -14.3359 -32 -32s14.3359 -32 32 -32z\\nM528 160v80c0 17.6641 -14.3359 32 -32 32s-32 -14.3359 -32 -32v-80h64z\\\" />\\n    <glyph glyph-name=\\\"user-minus\\\" unicode=\\\"&#xf503;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 240c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-192c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h192zM224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128z\\nM313.6 160c74.2002 0 134.4 -60.2002 134.4 -134.4v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v41.5996c0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992z\\\" />\\n    <glyph glyph-name=\\\"user-ninja\\\" unicode=\\\"&#xf504;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M325.4 158.8c68.5996 -6.09961 122.6 -63 122.6 -133.2v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v41.5996c0 70.2002 54 127.101 122.6 133.2l101.4 -101.399zM32 256c0 33.4004 17.0996 62.7998 43.0996 80\\nc-26 17.2002 -43.0996 46.5996 -43.0996 80c32 0 60.0996 -15.7998 77.5 -39.7998c20.9004 42.3994 64.0996 71.7998 114.5 71.7998c70.7002 0 128 -57.2998 128 -128s-57.2998 -128 -128 -128c-58.7998 0 -107.7 39.7998 -122.8 93.7002\\nc-17.4004 -18.2002 -41.9004 -29.7002 -69.2002 -29.7002zM176 352c-17.7002 0 -32 -14.2998 -32 -32h160c0 17.7002 -14.2998 32 -32 32h-96z\\\" />\\n    <glyph glyph-name=\\\"user-shield\\\" unicode=\\\"&#xf505;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M622.3 176.9c10.7002 -4.2002 17.7002 -14 17.7002 -24.9004c0 -124.5 -81.5996 -193.9 -132.9 -213.9c-4.19922 -1.59961 -12.5996 -3.69922 -22.1992 0c-64.2002 25.1006 -132.9 102.301 -132.9 213.9c0 10.9004 7 20.7002 17.7002 24.9004l115.2 45\\nc9.59961 3.69922 18.0996 1.59961 22.1992 0zM496 -14.4004c34.5996 16.4004 89.9004 64.7002 95.5 151.801l-95.5 37.2998v-189.101zM224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM320 152\\nc0 -95.2998 45.2002 -169.1 99.2002 -212c-5.90039 -2.5 -12.4004 -4 -19.2002 -4h-352c-26.5 0 -48 21.5 -48 48v41.5996c0 74.2002 60.2002 134.4 134.4 134.4h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16s50.7002 5.7998 72.9004 16h16.6992\\nc2.60059 0 5 -0.700195 7.5 -0.799805c-0.299805 -2.40039 -1.09961 -4.7002 -1.09961 -7.2002z\\\" />\\n    <glyph glyph-name=\\\"user-slash\\\" unicode=\\\"&#xf506;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.8 -10.0996c7 -5.40039 8.2998 -15.5 2.90039 -22.3008l-19.6006 -25.2998c-5.5 -7 -15.5 -8.2002 -22.5 -2.7998l-588.399 454.7c-7 5.39941 -8.2002 15.3994 -2.7998 22.3994l19.5996 25.2002c5.5 7 15.5 8.2002 22.5 2.7998l147.6 -114\\nc5.40039 65.6006 59.8008 117.4 126.9 117.4c70.7002 0 128 -57.2998 128 -128c0 -55.7998 -35.9004 -102.7 -85.7002 -120.3zM96 25.5996c0 66.4004 48.2002 121.101 111.4 132.101l286.8 -221.7h-350.2c-26.5 0 -48 21.5 -48 48v41.5996z\\\" />\\n    <glyph glyph-name=\\\"user-tag\\\" unicode=\\\"&#xf507;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M630.6 83.0996c12.5 -12.5 12.5 -32.6992 -0.0996094 -45.1992l-92.5 -92.5c-12.5 -12.5 -32.7998 -12.5 -45.2998 0l-90.2998 90.1992c-12 12 -18.7002 28.2002 -18.7002 45.2002v79.2002c0 17.7002 14.2998 32 32 32h79.2998c17 0 33.2998 -6.7002 45.2998 -18.7002z\\nM447.8 104.1c13.2998 0 24 10.8008 24 24c0 13.3008 -10.7002 24 -24 24s-24 -10.6992 -24 -24c0 -13.2998 10.7002 -24 24 -24zM224 192.1c-70.7002 0 -128 57.3008 -128 127.9c0 70.7002 57.2998 128 128 128s128 -57.2998 128 -127.9c0 -70.6992 -57.2998 -128 -128 -128\\nzM351.8 80.9004c0 -25.7002 10 -49.8008 28.1006 -67.9004l58 -58c-8.80078 -11.4004 -22.4004 -18.9004 -37.9004 -18.9004h-352c-26.5 0 -48 21.5 -48 48v41.6006c0 74.2002 60.2002 134.399 134.4 134.5h16.6992c22.3008 -10.2002 46.9004 -16 72.9004 -16\\ns50.7002 5.7998 72.9004 16h16.6992c13.3008 0 26 -2.60059 38.2002 -6.2002v-73.0996z\\\" />\\n    <glyph glyph-name=\\\"user-tie\\\" unicode=\\\"&#xf508;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M224 192c-70.7002 0 -128 57.2998 -128 128s57.2998 128 128 128s128 -57.2998 128 -128s-57.2998 -128 -128 -128zM319.8 159.4c71.2998 -3.40039 128.2 -61.7002 128.2 -133.801v-41.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v41.5996\\nc0 72.1006 56.9004 130.4 128.2 133.801l47.7998 -191.4l32 136l-32 56h96l-32 -56l32 -136z\\\" />\\n    <glyph glyph-name=\\\"users-cog\\\" unicode=\\\"&#xf509;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M610.5 106.7l25.7998 -14.9004c2.90039 -1.7002 4.2998 -5.2002 3.2998 -8.5c-6.69922 -21.5996 -18.1992 -41.2002 -33.1992 -57.3994c-2.30078 -2.5 -6.10059 -3.10059 -9 -1.40039l-25.8008 14.9004c-10.8994 -9.30078 -23.3994 -16.5 -36.8994 -21.3008v-29.7998\\nc0 -3.39941 -2.40039 -6.39941 -5.7002 -7.09961c-21.2002 -4.7998 -43.9004 -5 -66.2002 0c-3.2998 0.700195 -5.7002 3.7002 -5.7002 7.09961v29.7998c-13.5 4.80078 -26 12 -36.8994 21.3008l-25.7998 -14.9004c-3 -1.7002 -6.7002 -1.09961 -9 1.40039\\nc-15 16.2998 -26.5 35.7998 -33.2002 57.3994c-1 3.2998 0.299805 6.7998 3.2998 8.5l25.7998 14.9004c-2.59961 14.0996 -2.59961 28.5 0 42.5996l-25.7998 14.9004c-2.90039 1.7002 -4.2998 5.2002 -3.2998 8.5c6.7002 21.5996 18.2002 41.2002 33.2002 57.3994\\nc2.2998 2.5 6.09961 3.10059 9 1.40039l25.7998 -14.9004c10.8994 9.30078 23.3994 16.5 36.8994 21.3008v29.7998c0 3.39941 2.40039 6.39941 5.7002 7.09961c21.2002 4.7998 43.9004 5 66.2002 0c3.2998 -0.700195 5.7002 -3.7002 5.7002 -7.09961v-29.7998\\nc13.5 -4.80078 26 -12 36.8994 -21.3008l25.8008 14.9004c3 1.7002 6.69922 1.09961 9 -1.40039c15 -16.1992 26.5 -35.7998 33.1992 -57.3994c1 -3.2998 -0.299805 -6.7998 -3.2998 -8.5l-25.7998 -14.9004c2.59961 -14.0996 2.59961 -28.5 0 -42.5996zM496 79.5\\nc26.7998 0 48.5 21.7998 48.5 48.5s-21.7998 48.5 -48.5 48.5s-48.5 -21.7998 -48.5 -48.5s21.7002 -48.5 48.5 -48.5zM96 224c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM320 192c-61.9004 0 -112 50.0996 -112 112\\ns50 111.9 111.9 111.9c61.8994 0 112 -50.1006 112 -112c0 -17.2002 -4.2002 -33.4004 -11.2002 -48c-0.799805 -0.5 -1.60059 -0.900391 -2.40039 -1.40039l-7.89941 4.59961c-5.90039 3.5 -12.7002 5.30078 -19.6006 5.30078c-11 0 -21.5 -4.60059 -28.8994 -12.6006\\nc-15.8008 -17.0996 -28 -37.5 -36.3008 -59.2002c-1.89941 -0.0996094 -3.69922 -0.599609 -5.59961 -0.599609zM425.2 -2.5v-9.2002c0 -7.5 2.5 -14.2998 6.2002 -20.2998h-255.4c-26.5 0 -48 21.5 -48 48v28.7998c0 63.6006 51.5996 115.2 115.3 115.2h8.2998\\nc20.9004 -10 43.9004 -16 68.5 -16c3.30078 0 6.5 0.400391 9.80078 0.599609c2.7998 -3.09961 6 -5.89941 9.7998 -8.09961l7.89941 -4.59961c-0.0996094 -2.60059 -0.0996094 -5.2002 0 -7.80078c-0.899414 -0.599609 -36.5 -15.7998 -25.7998 -50.2998\\nc7.90039 -25.7002 21.9004 -49.7998 40.2002 -69.5996c7.5 -8 18 -12.6006 28.9004 -12.6006c12.1992 0 19.2998 5 27.5 9.80078c2.19922 -1.30078 4.5 -2.7002 6.7998 -3.90039zM173.1 173.4c-40.2998 -22.1006 -68.8994 -62 -75.1992 -109.4h-65.9004\\nc-17.7002 0 -32 14.2998 -32 32v32c0 35.2998 28.7002 64 64 64h64c17.5996 0 33.5 -7.09961 45.0996 -18.5996z\\\" />\\n    <glyph glyph-name=\\\"balance-scale-left\\\" unicode=\\\"&#xf515;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M528 0c8.83984 0 16 -7.16016 16.0098 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-224c-8.83984 0 -16 7.16016 -16 16v342.75c-4.55957 2 -8.91992 4.34961 -12.9902 7.12012l-142.05 -47.6299c-8.37988 -2.81055 -17.4502 1.7002 -20.2598 10.0801l-10.1699 30.3398\\nc-2.80957 8.37988 1.7002 17.4502 10.0801 20.2598l128.39 43.0498c-0.419922 3.32031 -1.00977 6.60059 -1.00977 10.0303c0 44.1797 35.8203 80 80 80c29.6904 0 55.2998 -16.3604 69.1104 -40.3701l117.92 39.5303c8.37988 2.80957 17.4502 -1.7002 20.2598 -10.0801\\nl10.1699 -30.3398c2.80957 -8.37988 -1.7002 -17.4502 -10.0801 -20.2598l-132 -44.2607c-7.28027 -21.25 -22.96 -38.5293 -43.3799 -47.4697v-294.75h176zM639.98 144c0 -44.1797 -57.29 -80 -127.98 -80s-128 35.8203 -128 80h0.0195312\\nc0 15.6699 -2.0791 7.25 85.04 181.51c17.6807 35.3604 68.2207 35.29 85.8701 0c86.3906 -172.779 85.0508 -165.33 85.0508 -181.51zM440 160h144l-72 144zM170.93 197.51c86.3906 -172.779 85.0508 -165.33 85.0508 -181.51h0.0195312c0 -44.1797 -57.3096 -80 -128 -80\\ns-128 35.8203 -128 80h0.0195312c0 15.6699 -2.0791 7.25 85.04 181.51c17.6807 35.3604 68.2207 35.29 85.8701 0zM56 32h144l-72 144z\\\" />\\n    <glyph glyph-name=\\\"balance-scale-right\\\" unicode=\\\"&#xf516;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M96 -16c0 8.83984 7.16016 16 16 16h175.99v294.76c-20.4199 8.93066 -36.1006 26.2207 -43.3799 47.4707l-132 44.2598c-8.37012 2.80957 -12.8906 11.8799 -10.0801 20.2598l10.1699 30.3398c2.80957 8.37012 11.8799 12.8906 20.2598 10.0801l117.93 -39.54\\nc13.8105 24.0098 39.4199 40.3701 69.1104 40.3701c44.1797 0 80 -35.8203 80 -80c0 -3.42969 -0.589844 -6.70996 -1.00977 -10.0303l128.399 -43.0498c8.37012 -2.80957 12.8906 -11.8799 10.0801 -20.2598l-10.1699 -30.3398\\nc-2.80957 -8.37012 -11.8799 -12.8906 -20.2598 -10.0801l-142.05 47.6299c-4.07031 -2.77051 -8.43066 -5.12012 -12.9902 -7.12012v-342.75c0 -8.83984 -7.16016 -16 -16 -16h-224c-8.83984 0 -16 7.16016 -16 16v32zM0 144c0 16.1797 -1.32031 8.73047 85.0596 181.51\\nc17.6504 35.29 68.1904 35.3604 85.8701 0c87.1299 -174.26 85.0508 -165.84 85.0508 -181.51h0.0195312c0 -44.1797 -57.3096 -80 -128 -80s-128 35.8203 -128 80zM56 160h144l-72 144zM384.02 16c0 16.1797 -1.33984 8.73047 85.04 181.51\\nc17.6504 35.29 68.1904 35.3604 85.8701 0c87.1299 -174.26 85.0508 -165.84 85.0508 -181.51h0.0195312c0 -44.1797 -57.3096 -80 -128 -80s-128 35.8203 -128 80h0.0195312zM440 32h144l-72 144z\\\" />\\n    <glyph glyph-name=\\\"blender\\\" unicode=\\\"&#xf517;\\\" \\nd=\\\"M416 64c35.3496 0 64 -28.6504 64 -64v-32c0 -17.6699 -14.3301 -32 -32 -32h-320c-17.6699 0 -32 14.3301 -32 32v32c0 35.3496 28.6504 64 64 64h256zM288 -32c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM328 384\\nc-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h157.82l-17.46 -64h-140.36c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h131.64l-17.46 -64h-114.18c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h105.46l-17.46 -64\\nh-256l-8.73047 96h-103.27c-26.5098 0 -48 21.4902 -48 48v160c0 26.5098 21.4902 48 48 48h464l-17.46 -64h-166.54zM64 256h81.46l-11.6396 128h-69.8203v-128z\\\" />\\n    <glyph glyph-name=\\\"book-open\\\" unicode=\\\"&#xf518;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M542.22 415.95c18.4199 1.04004 33.7803 -12.9902 33.7705 -30.7002v-337.84c0 -16.2305 -13.1299 -29.7705 -30.0205 -30.6602c-49.4697 -2.59961 -149.52 -12.0996 -218.7 -46.9199c-10.6494 -5.36035 -23.2793 1.93945 -23.2793 13.4902v363.87\\nc0 5.2793 2.62988 10.3291 7.26953 13.1699c67.2402 41.1592 176.16 52.4795 230.96 55.5898zM264.73 360.36c4.64941 -2.85059 7.26953 -7.7002 7.26953 -12.9902v-364.12c0 -11.5195 -12.5898 -18.8096 -23.21 -13.46c-69.1797 34.8398 -169.28 44.3496 -218.771 46.9502\\nc-16.8896 0.879883 -30.0195 14.4199 -30.0195 30.6602v337.85c0 17.71 15.3604 31.7402 33.7803 30.7002c54.7998 -3.12012 163.72 -14.4307 230.95 -55.5898z\\\" />\\n    <glyph glyph-name=\\\"broadcast-tower\\\" unicode=\\\"&#xf519;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M150.94 256c-7.01074 0 -13.46 4.5 -15.4004 11.2402c-4.90039 16.9697 -7.54004 34.6396 -7.54004 52.7598s2.63965 35.79 7.53027 52.7695c1.9502 6.74023 8.39941 11.2305 15.4102 11.2305h33.7295c11.0098 0 18.6201 -10.8301 14.8604 -21.1797\\nc-4.93066 -13.5801 -7.5498 -27.9805 -7.5498 -42.8203s2.61914 -29.2402 7.5498 -42.8203c3.75 -10.3496 -3.85059 -21.1797 -14.8604 -21.1797h-33.7295zM89.9199 424.66c-16.54 -31.1406 -49.6104 -115.97 0.169922 -209.29\\nc5.66016 -10.6299 -1.92969 -23.3701 -13.9502 -23.3701h-34.8398c-6.18945 0 -11.9902 3.50977 -14.6094 9.13965c-23.5703 50.5303 -26.6904 94.1104 -26.6904 118.86c0 42.3496 9.40039 82.46 25.8896 118.69c2.60059 5.71973 8.4707 9.30957 14.7402 9.30957h35.3301\\nc12.0098 0 19.5996 -12.7197 13.96 -23.3398zM614.06 438.71c16.5205 -36.2295 25.9404 -76.3496 25.9404 -118.71s-9.42969 -82.4805 -25.96 -118.71c-2.59961 -5.70996 -8.45996 -9.29004 -14.7305 -9.29004h-35.2295c-12.1104 0 -19.6299 12.8398 -13.9102 23.5195\\nc48.1396 89.8105 17.9902 174.94 -0.280273 209.23c-5.63965 10.5898 2.04004 23.25 14.0205 23.25h35.4199c6.26953 0 12.1299 -3.58008 14.7295 -9.29004zM489.06 384c7.01074 0 13.46 -4.49023 15.4004 -11.2402c4.90039 -16.9697 7.54004 -34.6396 7.54004 -52.7598\\ns-2.62988 -35.79 -7.53027 -52.7598c-1.9502 -6.75 -8.38965 -11.2402 -15.4102 -11.2402h-33.7295c-11.0098 0 -18.6201 10.8301 -14.8604 21.1797c4.93066 13.5801 7.5498 27.9805 7.5498 42.8203s-2.61914 29.2402 -7.5498 42.8203\\nc-3.75 10.3496 3.85059 21.1797 14.8604 21.1797h33.7295zM372.76 283.88l130.5 -313.41c3.39062 -8.14941 -0.459961 -17.5195 -8.60938 -20.9199l-29.5107 -12.3096c-8.14941 -3.40039 -17.5098 0.450195 -20.9092 8.60938l-49.2002 118.15h-150.07l-49.1904 -118.15\\nc-3.38965 -8.14941 -12.7598 -12.0098 -20.9092 -8.60938l-29.5107 12.3096c-8.14941 3.40039 -12.0098 12.7705 -8.60938 20.9199l130.5 313.41c-7.0498 10.29 -11.2002 22.71 -11.2002 36.1201c0 35.3496 28.6396 64 63.96 64c35.3301 0 63.96 -28.6504 63.96 -64\\nc0 -13.4102 -4.15039 -25.8301 -11.2002 -36.1201zM271.62 128h96.7598l-48.3799 116.19z\\\" />\\n    <glyph glyph-name=\\\"broom\\\" unicode=\\\"&#xf51a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M256.47 231.23l86.7305 -109.181s-16.6006 -102.359 -76.5703 -150.12c-59.9697 -47.7793 -266.63 -34.1201 -266.63 -34.1201s3.7998 23.1406 11 55.4307l94.6201 112.17c3.96973 4.7002 -0.870117 11.6201 -6.65039 9.5l-60.3994 -22.0898\\nc14.4395 41.6602 32.7197 80.04 54.5996 97.4697c59.9697 47.7598 163.3 40.9404 163.3 40.9404zM636.53 416.97c5.48926 -6.91016 4.33984 -16.96 -2.5498 -22.4395l-232.48 -177.8l34.0898 -42.9209c5.08008 -6.39941 1.66016 -15.9092 -6.33984 -17.5996\\nl-58.7998 -12.4502l-86.7305 109.181l25.3301 54.5498c3.4502 7.41992 13.5 8.62012 18.5898 2.20996l34.1406 -42.9697l232.479 177.8c6.89062 5.48926 16.9199 4.33984 22.4102 -2.56055z\\\" />\\n    <glyph glyph-name=\\\"chalkboard\\\" unicode=\\\"&#xf51b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M96 384v-352h-64v376c0 22.0596 17.9404 40 40 40h496c22.0596 0 40 -17.9404 40 -40v-376h-64v352h-448zM624 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-608c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h272v64h192v-64\\nh144z\\\" />\\n    <glyph glyph-name=\\\"chalkboard-teacher\\\" unicode=\\\"&#xf51c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M208 96c62.0596 0 112.33 -50.4805 112 -112.62c-0.139648 -26.2598 -21.7305 -47.3799 -48 -47.3799h-224c-26.2695 0 -47.8604 21.1201 -48 47.3799c-0.330078 62.1396 49.9404 112.62 112 112.62c2.38965 0 4.76953 -0.349609 7.0498 -1.08984\\nc12.9697 -4.20996 26.6006 -6.91016 40.9502 -6.91016s27.9805 2.7002 40.9404 6.91016c2.2793 0.740234 4.66992 1.08984 7.05957 1.08984zM160 128c-53.0195 0 -96 42.9805 -96 96s42.9805 96 96 96s96 -42.9805 96 -96s-42.9805 -96 -96 -96zM592 448\\nc26.4697 0 48 -22.25 48 -49.5898v-316.82c0 -27.3398 -21.5303 -49.5898 -48 -49.5898h-244.55c-6.57031 25.2695 -20.5898 47.3096 -39.6904 64h76.2402v64h128v-64h64v288h-352v-49.7998c-18.9004 11.0195 -40.5801 17.7998 -64 17.7998v46.4102\\nc0 27.3398 21.5303 49.5898 48 49.5898h384z\\\" />\\n    <glyph glyph-name=\\\"church\\\" unicode=\\\"&#xf51d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M464.46 201.32c9.63965 -5.78027 15.54 -16.2002 15.54 -27.4404v-237.88h-96v96c0 35.3496 -28.6504 64 -64 64s-64 -28.6504 -64 -64v-96h-96v237.88c0 10.0029 6.96191 22.2959 15.54 27.4404l112.46 67.4795v51.2002h-48c-8.83984 0 -16 7.16016 -16 16v32\\nc0 8.83984 7.16016 16 16 16h48v48c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-48h48c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-48v-51.2002zM0 52.04c0.00195312 11.6455 8.68945 24.8252 19.3896 29.4199l108.61 46.54\\nv-192h-112c-8.83984 0 -16 7.16016 -16 16v100.04zM620.61 81.46c11.7598 -5.0498 19.3896 -16.6201 19.3896 -29.4199v-100.04c0 -8.83984 -7.16016 -16 -16 -16h-112v192z\\\" />\\n    <glyph glyph-name=\\\"coins\\\" unicode=\\\"&#xf51e;\\\" \\nd=\\\"M0 42.7002c41.2998 -29.1006 116.8 -42.7002 192 -42.7002s150.7 13.5996 192 42.7002v-42.7002c0 -35.2998 -86 -64 -192 -64s-192 28.7002 -192 64v42.7002zM320 320c-106 0 -192 28.7002 -192 64s86 64 192 64s192 -28.7002 192 -64s-86 -64 -192 -64zM0 147.6\\nc41.2998 -34 116.9 -51.5996 192 -51.5996s150.7 17.5996 192 51.5996v-51.5996c0 -35.2998 -86 -64 -192 -64s-192 28.7002 -192 64v51.5996zM416 136.6v63.6006c38.7002 6.89941 72.7998 18.0996 96 34.5v-42.7002c0 -23.7002 -38.7002 -44.2998 -96 -55.4004zM192 288\\nc106 0 192 -35.7998 192 -80s-86 -80 -192 -80s-192 35.7998 -192 80s86 80 192 80zM411.3 231.7c-8.7998 23.7002 -30.5 42.8994 -60 57.2002c64.2002 3.19922 125.2 16.6992 160.7 41.7998v-42.7002c0 -24.2998 -40.7002 -45.5 -100.7 -56.2998z\\\" />\\n    <glyph glyph-name=\\\"compact-disc\\\" unicode=\\\"&#xf51f;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM88 192c0 88.2002 71.7998 160 160 160v32c-105.9 0 -192 -86.0996 -192 -192h32zM248 96c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM248 224\\nc17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"crow\\\" unicode=\\\"&#xf520;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 416c53.0195 0 96 -28.6504 96 -64l-96 -16v-80c0 -87.2598 -58.2598 -160.8 -137.97 -184.14l41.2393 -111.53c2.27051 -6.23047 -0.939453 -13.1104 -7.16992 -15.3799l-22.5498 -8.20996c-6.22949 -2.27051 -13.1094 0.939453 -15.3799 7.16992l-44.5098 120.38\\nc-1.90039 -0.0595703 -3.75 -0.290039 -5.66016 -0.290039h-39.0596l38.3291 -103.68c2.27051 -6.23047 -0.939453 -13.1104 -7.16992 -15.3799l-22.5498 -8.20996c-6.22949 -2.27051 -13.1094 0.939453 -15.3799 7.16992l-44.4102 120.1h-96.4902l-121.539 -60.7695\\nc-20.0908 -10.04 -43.7305 4.56934 -43.7305 27.0293c0.00195312 8.33984 5.41797 19.168 12.0898 24.1699l371.91 292.59v20.9805c0 44.1797 35.8203 80 80 80c26.0898 0 49.04 -12.6797 63.6396 -32h16.3604zM464 344c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24\\ns-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"crown\\\" unicode=\\\"&#xf521;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M528 0c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-416c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h416zM592 320c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48c-2.59961 0 -5.2002 0.400391 -7.7002 0.799805l-72.2998 -192.8h-384\\nl-72.2998 192.8c-2.5 -0.399414 -5.10059 -0.799805 -7.7002 -0.799805c-26.5 0 -48 21.5 -48 48s21.5996 48 48.0996 48s48 -21.5 48 -48c0 -7.09961 -1.69922 -13.7998 -4.39941 -19.7998l72.2998 -43.4004c15.2998 -9.2002 35.2998 -4 44.2002 11.6006l81.5 142.6\\nc-10.7002 8.7998 -17.7002 22 -17.7002 37c0 26.5 21.5 48 48 48s48 -21.5 48 -48c0 -15 -7 -28.2002 -17.7002 -37l81.5 -142.6c8.90039 -15.6006 28.7998 -20.8008 44.2002 -11.6006l72.4004 43.4004c-2.80078 6.09961 -4.40039 12.7002 -4.40039 19.7998\\nc0 26.5 21.5 48 48 48z\\\" />\\n    <glyph glyph-name=\\\"dice\\\" unicode=\\\"&#xf522;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M592 256c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-224c-26.5098 0 -48 21.4902 -48 48v46.4199l136.26 136.26c24.1201 24.1201 29.6904 59.7305 17 89.3203h118.74zM480 72c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24\\ns-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24zM433.63 258.7c19.1602 -19.1602 19.1602 -50.2305 0 -69.4004l-174.939 -174.93c-19.1602 -19.1602 -50.2305 -19.1602 -69.3906 0l-174.93 174.939c-19.1602 19.1602 -19.1602 50.2305 0 69.3906l174.939 174.93\\nc19.1602 19.1602 50.2305 19.1602 69.3906 0zM96 200c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24zM224 72c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24z\\nM224 200c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24zM224 328c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24zM352 200c13.25 0 24 10.75 24 24\\nc0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"dice-five\\\" unicode=\\\"&#xf523;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 416c35.3496 0 64 -28.6504 64 -64v-320c0 -35.3496 -28.6504 -64 -64 -64h-320c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h320zM128 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM128 256\\nc17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM224 160c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 256c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"dice-four\\\" unicode=\\\"&#xf524;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 416c35.3496 0 64 -28.6504 64 -64v-320c0 -35.3496 -28.6504 -64 -64 -64h-320c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h320zM128 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM128 256\\nc17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 256c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"dice-one\\\" unicode=\\\"&#xf525;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 416c35.3496 0 64 -28.6504 64 -64v-320c0 -35.3496 -28.6504 -64 -64 -64h-320c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h320zM224 160c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"dice-six\\\" unicode=\\\"&#xf526;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 416c35.3496 0 64 -28.6504 64 -64v-320c0 -35.3496 -28.6504 -64 -64 -64h-320c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h320zM128 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM128 160\\nc17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM128 256c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 160c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 256c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"dice-three\\\" unicode=\\\"&#xf527;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 416c35.3496 0 64 -28.6504 64 -64v-320c0 -35.3496 -28.6504 -64 -64 -64h-320c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h320zM128 256c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM224 160\\nc17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"dice-two\\\" unicode=\\\"&#xf528;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 416c35.3496 0 64 -28.6504 64 -64v-320c0 -35.3496 -28.6504 -64 -64 -64h-320c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h320zM128 256c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM320 64\\nc17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"divide\\\" unicode=\\\"&#xf529;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M224 96c35.3496 0 64 -28.6504 64 -64s-28.6504 -64 -64 -64s-64 28.6504 -64 64s28.6504 64 64 64zM224 288c-35.3496 0 -64 28.6504 -64 64s28.6504 64 64 64s64 -28.6504 64 -64s-28.6504 -64 -64 -64zM416 240c17.6699 0 32 -14.3301 32 -32v-32\\nc0 -17.6699 -14.3301 -32 -32 -32h-384c-17.6699 0 -32 14.3301 -32 32v32c0 17.6699 14.3301 32 32 32h384z\\\" />\\n    <glyph glyph-name=\\\"door-closed\\\" unicode=\\\"&#xf52a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-608c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h111.99v397.2c0 28.0195 21.5293 50.7998 48 50.7998h288.01c26.4697 0 48 -22.7803 48 -50.7998v-397.2h112zM415.99 160\\nc17.6797 0 32.0098 14.3301 32 32c0 17.6699 -14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"door-open\\\" unicode=\\\"&#xf52b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-144v384h-96v64h112c26.4697 0 48 -22.1904 48 -49.4502v-334.55h80zM312.24 446.99c20.2002 5.24023 39.7598 -10.5898 39.7598 -32.1699v-478.82h-336c-8.83984 0 -16 7.16016 -16 16v32\\nc0 8.83984 7.16016 16 16 16h80v365.08c0 15.2197 9.99023 28.4795 24.2402 32.1699zM264 160c13.25 0 24 14.3301 24 32s-10.75 32 -24 32s-24 -14.3301 -24 -32s10.75 -32 24 -32z\\\" />\\n    <glyph glyph-name=\\\"equals\\\" unicode=\\\"&#xf52c;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M416 144c17.6699 0 32 -14.3301 32 -32v-32c0 -17.6699 -14.3301 -32 -32 -32h-384c-17.6699 0 -32 14.3301 -32 32v32c0 17.6699 14.3301 32 32 32h384zM416 336c17.6699 0 32 -14.3301 32 -32v-32c0 -17.6699 -14.3301 -32 -32 -32h-384c-17.6699 0 -32 14.3301 -32 32\\nv32c0 17.6699 14.3301 32 32 32h384z\\\" />\\n    <glyph glyph-name=\\\"feather\\\" unicode=\\\"&#xf52d;\\\" \\nd=\\\"M467.14 403.16c50.5703 -50.5205 61.7002 -124.9 16.2607 -199.36l-131.54 -43.7998h97.7793c-9.92969 -10.6797 3.68066 3.07031 -46.3096 -46.8604l-147.57 -49.1396h98.1904c-74.9502 -73.1104 -194.53 -70.6504 -246.83 -54.9404l-66.1006 -66.0293\\nc-9.37988 -9.37012 -24.5996 -9.37012 -33.9795 0s-9.37988 24.5693 0 33.9395l259.52 259.25c6.25 6.25 6.25 16.3799 0 22.6299s-16.3896 6.25 -22.6494 0l-178.44 -178.25c-6.75 60.3408 3.18066 150.78 63.6406 211.17c24.7695 24.7402 7.13965 7.14062 85.75 85.6602\\nc90.6094 90.5107 189.729 88.21 252.279 25.7305z\\\" />\\n    <glyph glyph-name=\\\"frog\\\" unicode=\\\"&#xf52e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M446.53 350.57c0 0 58.4297 -19.0605 98.9893 -41.2803c18.7607 -10.2803 30.4805 -29.8301 30.4805 -51.2305v-0.00292969c0 -18.8037 -13.3105 -41.5283 -29.71 -50.7266l-154.44 -86.6504l98.5205 -104.68h53.6299c17.6699 0 32 -14.3301 32 -32\\nc0 -8.83984 -7.16016 -16 -16 -16h-90.3799l-118.53 125.94c5.07031 54.1494 -29.9297 85.0596 -40.7998 93.21c-36.8496 27.6191 -88.29 27.6592 -125.13 0l-34.7803 -26.0908c-7.07031 -5.2998 -8.49023 -15.3291 -3.18945 -22.4092\\nc5.31934 -7.10059 15.3496 -8.5 22.4092 -3.19043l32.7607 24.5898c20.6895 15.5303 48.3496 20.8105 72.2393 10.8799c44.0605 -18.3193 57.8506 -70.3701 33.71 -106.6l-35.7998 -48.3301h79.4902c17.6699 0 32 -14.3301 32 -32c0 -8.83984 -7.16016 -16 -16 -16h-304\\nc-34.9199 0 -63.8896 28.0996 -64 63.0195c-0.5 166.86 126.75 304.021 289.46 319.44c6.82031 37.25 39.3096 65.54 78.54 65.54c39.1904 0 71.6699 -28.2305 78.5303 -65.4297zM368 312c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24\\nc-13.2598 0 -24 -10.7402 -24 -24c0 -13.25 10.7402 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"gas-pump\\\" unicode=\\\"&#xf52f;\\\" \\nd=\\\"M336 0c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-320c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h320zM493.2 340.7c12 -12 18.7998 -28.2998 18.7998 -45.2998v-223.4c0 -42.2002 -36.5 -76 -79.5 -71.7002\\nc-37.5 3.90039 -64.5 38.2002 -64.5 75.9004v27.7998c0 22.0996 -17.9004 40 -40 40h-8v-112h-288v352c0 35.2998 28.7002 64 64 64h160c35.2998 0 64 -28.7002 64 -64v-192h8c48.5996 0 88 -39.4004 88 -88v-32c0 -13.2002 10.7998 -24 24 -24s24 10.7998 24 24v160.8\\nc-27.0996 3.90039 -48 27.1006 -48 55.2002v62.0996l-37.7002 37.7002c-6.2002 6.2002 -6.2002 16.4004 0 22.6006l11.2998 11.2998c6.2002 6.2002 16.4004 6.2002 22.6006 0zM256 256v128h-160v-128h160z\\\" />\\n    <glyph glyph-name=\\\"glasses\\\" unicode=\\\"&#xf530;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M574.1 167.63c1.26074 -5.07031 1.90039 -10.2695 1.90039 -15.5v-70.25c0 -62.8896 -51.5801 -113.88 -115.2 -113.88h-37.1201c-60.2793 0 -110.37 45.9404 -114.87 105.37l-2.92969 38.6299h-35.75l-2.92969 -38.6299\\nc-4.50977 -59.4297 -54.6006 -105.37 -114.88 -105.37h-37.1201c-63.6201 0 -115.2 50.9902 -115.2 113.89v70.25c0.000976562 4.33984 0.852539 11.2793 1.90039 15.4902l45.3398 181.73c5.91016 23.6895 21.5898 44.0293 43 55.7998\\nc21.4395 11.7402 46.9697 14.1094 70.1895 6.33008l15.25 -5.08008c8.39062 -2.79004 12.9199 -11.8604 10.1201 -20.2402l-5.05957 -15.1797c-2.79004 -8.37988 -11.8506 -12.9102 -20.2305 -10.1201l-13.1699 4.38965\\nc-10.8701 3.62012 -22.9902 3.57031 -33.1494 -1.72949c-10.29 -5.36035 -17.5908 -14.5605 -20.3809 -25.8105l-38.46 -153.83c22.1904 6.81055 49.79 12.46 81.21 12.46c34.7803 0 73.9902 -7.00977 114.86 -26.75h73.1797\\nc40.8701 19.7207 80.0801 26.7402 114.851 26.7402c31.4102 0 59.0098 -5.64941 81.2002 -12.46l-38.46 153.82c-2.80078 11.2598 -10.0801 20.4502 -20.3701 25.8193c-10.1602 5.30078 -22.29 5.35059 -33.1602 1.73047l-13.1797 -4.38965\\nc-8.38086 -2.79004 -17.4404 1.73926 -20.2305 10.1201l-5.05957 15.1797c-2.80078 8.37988 1.72949 17.4502 10.1191 20.2402l15.25 5.08008c23.2207 7.7793 48.75 5.39941 70.1904 -6.33008c21.4102 -11.7607 37.0898 -32.1104 43 -55.8105zM203.38 78.21l3.12988 41.2197\\nc-22.6699 8.58984 -46.0693 12.9199 -69.9297 12.9199c-29.1602 0 -54.46 -6.42969 -72.5801 -12.9199v-37.54c0 -27.5098 22.9697 -49.8896 51.2002 -49.8896h37.1201c26.6602 0 49.0898 20.2998 51.0596 46.21zM512 81.8799l-0.00976562 37.54\\nc-18.1201 6.49023 -43.4307 12.9297 -72.5498 12.9297c-23.8701 0 -47.2803 -4.33008 -69.9502 -12.9199l3.12988 -41.2197c1.95996 -25.9102 24.3896 -46.21 51.0596 -46.21h37.1201c28.2305 0 51.2002 22.3701 51.2002 49.8799z\\\" />\\n    <glyph glyph-name=\\\"greater-than\\\" unicode=\\\"&#xf531;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M365.52 238.15c11.2803 -5.25 18.4805 -16.5605 18.4902 -29.0107v-34.2295c-0.00195312 -11.2529 -8.28027 -24.2451 -18.4795 -29l-306.471 -142.91c-16.0195 -7.46973 -35.0596 -0.540039 -42.5293 15.4805l-13.5205 29\\nc-7.46973 16.0195 -0.540039 35.0596 15.4805 42.5293l218.47 101.891l-218.43 101.85c-16.0605 7.49023 -23.0107 26.5801 -15.5205 42.6396l13.5703 29.0801c7.49023 16.0605 26.5801 23.0107 42.6396 15.5205z\\\" />\\n    <glyph glyph-name=\\\"greater-than-equal\\\" unicode=\\\"&#xf532;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M55.2197 340.31c-18.29 6 -27.7393 24.2607 -21.0996 40.79l12.0303 29.9199c6.63965 16.5303 26.8594 25.0605 45.1494 19.0605l301.72 -119.98c13.7705 -4.51953 22.9805 -16.6094 22.9805 -30.1699v-15.96c0 -13.5596 -9.20996 -25.6494 -22.9805 -30.1699\\nl-301.409 -119.859c-18.3906 -6.04004 -38.7002 2.54004 -45.3799 19.1494l-12.0908 30.0801c-6.67969 16.6104 2.81055 34.9697 21.2002 41l175.44 68.0498zM424 48c13.25 0 24 -10.7402 24 -24v-48c0 -13.25 -10.75 -24 -24 -24h-400c-13.25 0 -24 10.75 -24 24v48\\nc0 13.2598 10.75 24 24 24h400z\\\" />\\n    <glyph glyph-name=\\\"helicopter\\\" unicode=\\\"&#xf533;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M304 64c-8.83105 0 -20.3018 5.73438 -25.5996 12.7998l-86.4004 115.2l-160 64l-31.5098 108.12c-2.53027 10.0996 5.10938 19.8799 15.5195 19.8799h39.9902c5.03027 0 9.78027 -2.37012 12.7998 -6.40039l43.2002 -57.5996h208v64h-176c-8.83984 0 -16 7.16016 -16 16\\nv32c0 8.83984 7.16016 16 16 16h416c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-176v-64c123.71 0 224 -100.29 224 -224c0 -17.6699 -14.3301 -32 -32 -32h-272zM416 252.49v-124.49h124.79c-12.7598 62.5596 -62.2402 111.7 -124.79 124.49z\\nM635.37 -10.8096c6.58984 -6.61035 6.04004 -17.5205 -0.980469 -23.6602c-33.1494 -29.0498 -53.5693 -29.5205 -68.4492 -29.5205h-325.94c-8.83984 0 -16 7.18066 -16 16.0303v32.0596c0 8.85059 7.16016 16.0303 16 16.0303h325.94\\nc10.7998 0 17.5498 4.48047 24.6396 11.25c6.40039 6.11035 16.3896 6.27051 22.6396 0.00976562z\\\" />\\n    <glyph glyph-name=\\\"infinity\\\" unicode=\\\"&#xf534;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M471.1 352c93.1006 0 168.9 -71.7998 168.9 -160s-75.7998 -160 -168.9 -160c-66.0996 0 -117.8 41.2998 -151.1 78.5996c-33.2998 -37.2998 -85 -78.5996 -151.1 -78.5996c-93.1006 0 -168.9 71.7998 -168.9 160s75.7998 160 168.9 160\\nc66.0996 0 117.8 -41.2998 151.1 -78.5996c33.2998 37.2998 85 78.5996 151.1 78.5996zM168.9 128c38.0996 0 73.5996 36.4004 94 64c-20.6006 27.9004 -55.8008 64 -94 64c-40.2002 0 -72.9004 -28.7002 -72.9004 -64s32.7002 -64 72.9004 -64zM471.1 128\\nc40.2002 0 72.9004 28.7002 72.9004 64s-32.7002 64 -72.9004 64c-38.0996 0 -73.5996 -36.4004 -94 -64c20.6006 -27.9004 55.8008 -64 94 -64z\\\" />\\n    <glyph glyph-name=\\\"kiwi-bird\\\" unicode=\\\"&#xf535;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M575.81 230.02c0.300781 -5.7793 0.160156 -246.02 0.160156 -246.02c0 -7.30957 -4.95996 -13.7002 -12.0498 -15.5c-1.30957 -0.339844 -2.63965 -0.5 -3.9502 -0.5c-5.75 0 -11.1895 3.11035 -14.0498 8.33984l-74.4102 136.44\\nc-7.04004 -0.470703 2.43066 -0.780273 -23.0498 -0.780273c-54.5996 0 -106.39 -19.25 -152.13 -49.0596c-12.46 -8.12012 -26.0996 -14.4502 -40.3398 -19.5107v-59.4297c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v49.1797\\nc-5.32031 -0.449219 -10.5605 -1.17969 -16 -1.17969c-16.6006 0 -32.6406 2.2998 -48 6.25977v-54.2598c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v73.9902c-57.3105 33.21 -95.9502 95.0596 -95.9902 166.01\\nc-0.0800781 145.76 129.3 182.88 147.31 186.94c57.1709 12.9199 111.221 0.259766 153.21 -28.7002c43.4902 -29.9902 94.9209 -46.2402 147.74 -46.2402h9.37012c60.6504 0 115.01 -45.4102 118.18 -105.98zM463.97 200c13.25 0 24 10.75 24 24\\nc0 13.2598 -10.75 24 -24 24s-24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24zM543.97 46.75v99.0596c-11.1299 -11.3799 -24.7393 -20.1494 -39.8594 -25.9795z\\\" />\\n    <glyph glyph-name=\\\"less-than\\\" unicode=\\\"&#xf536;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M365.46 90.2598c16.0703 -7.49023 23.0205 -26.5801 15.5303 -42.6396l-13.5605 -29.0801c-7.48926 -16.0596 -26.5801 -23.0098 -42.6396 -15.5205l-306.31 142.83c-11.2705 5.25 -18.4805 16.5605 -18.4805 29v34.2402c0.00488281 11.252 8.2832 24.2432 18.4805 29\\nl306.46 142.91c16.0195 7.46973 35.0596 0.540039 42.5293 -15.4805l13.5205 -29c7.46973 -16.0195 0.540039 -35.0596 -15.4805 -42.5293l-218.47 -101.88z\\\" />\\n    <glyph glyph-name=\\\"less-than-equal\\\" unicode=\\\"&#xf537;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M54.9805 233.8c-13.7705 4.52051 -22.9805 16.6104 -22.9805 30.1699v15.96c0 13.5703 9.20996 25.6602 22.9805 30.1807l301.71 119.96c18.29 6 38.5098 -2.53027 45.1494 -19.0605l12.0303 -29.9199c6.63965 -16.5195 -2.81055 -34.79 -21.1006 -40.79\\nl-175.56 -68.0898l175.44 -68.0498c18.3896 -6.03027 27.8896 -24.3906 21.21 -41l-12.0908 -30.0801c-6.66992 -16.6104 -26.9893 -25.1797 -45.3799 -19.1504zM424 48c13.25 0 24 -10.7402 24 -24v-48c0 -13.25 -10.75 -24 -24 -24h-400c-13.25 0 -24 10.75 -24 24v48\\nc0 13.2598 10.75 24 24 24h400z\\\" />\\n    <glyph glyph-name=\\\"memory\\\" unicode=\\\"&#xf538;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 317.06c-18.5996 -6.60938 -32 -24.1895 -32 -45.0596s13.4004 -38.4502 32 -45.0596v-98.9404h-640v98.9404c18.5996 6.60938 32 24.1895 32 45.0596s-13.4004 38.4502 -32 45.0596v34.9404c0 17.6699 14.3301 32 32 32h576c17.6699 0 32 -14.3301 32 -32v-34.9404z\\nM224 192v128h-64v-128h64zM352 192v128h-64v-128h64zM480 192v128h-64v-128h64zM0 0v96h640v-96h-64v26.6699c0 8.83984 -7.16016 16 -16 16s-16 -7.16016 -16 -16v-26.6699h-128v26.6699c0 8.83984 -7.16016 16 -16 16s-16 -7.16016 -16 -16v-26.6699h-128v26.6699\\nc0 8.83984 -7.16016 16 -16 16s-16 -7.16016 -16 -16v-26.6699h-128v26.6699c0 8.83984 -7.16016 16 -16 16s-16 -7.16016 -16 -16v-26.6699h-64z\\\" />\\n    <glyph glyph-name=\\\"microphone-alt-slash\\\" unicode=\\\"&#xf539;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.82 -10.0996c6.97949 -5.43066 8.22949 -15.4805 2.81934 -22.4502l-19.6396 -25.2705c-5.42969 -6.97949 -15.4805 -8.23926 -22.46 -2.80957l-588.36 454.729c-6.97949 5.43066 -8.22949 15.4805 -2.80957 22.4502l19.6396 25.2705\\nc5.41992 6.97949 15.4805 8.22949 22.46 2.80957l178.53 -138v45.3604c0 53.0195 42.9805 96 96 96s96 -42.9805 96 -96h-85.3301c-5.88965 0 -10.6699 -3.58008 -10.6699 -8v-16c0 -4.41992 4.78027 -8 10.6699 -8h85.3301v-32h-85.3301\\nc-5.88965 0 -10.6699 -3.58008 -10.6699 -8v-16c0 -4.41992 4.78027 -8 10.6699 -8h85.3301v-32h-85.0596l41.3994 -32h43.6699c0 -10.4502 -2.17969 -20.2705 -5.2793 -29.6699l26.5498 -20.5205c6.75977 15.4004 10.7197 32.2803 10.7197 50.2002v48\\nc0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-48c0 -28.9805 -7.25977 -56.21 -19.7402 -80.3301zM400 -16c8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16h-160c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h56\\nv34.1504c-88.0303 12.1396 -152 92.0498 -152 181.689v6.85059l52.0303 -40.2207c12.4395 -53.2197 55.3301 -96.3994 111.18 -101.85c6.94043 -0.669922 13.6396 -0.200195 20.3496 0.200195l50.4004 -38.96c-10.8604 -3.80078 -22.25 -6.45996 -33.96 -8.08008v-33.7803\\nh56z\\\" />\\n    <glyph glyph-name=\\\"money-bill-wave\\\" unicode=\\\"&#xf53a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M621.16 393.54c11.6094 -4.87012 18.8398 -16.8301 18.8496 -29.4697v-317.25c0 -18.4902 -15.04 -31.8105 -32.25 -31.8105c-3.39941 0 -6.87988 0.520508 -10.3496 1.62012c-30.8906 9.7998 -61.7598 13.7197 -92.6504 13.7197\\nc-123.17 0 -246.34 -62.3496 -369.51 -62.3496c-38.7998 0 -77.6201 6.19043 -116.41 22.4697c-11.6094 4.86035 -18.8398 16.8301 -18.8398 29.46v317.261c0 18.4893 15.04 31.8096 32.25 31.8096c3.40039 0 6.87988 -0.519531 10.3496 -1.62012\\nc30.8906 -9.7998 61.7607 -13.7197 92.6504 -13.7197c123.17 0 246.33 62.3496 369.5 62.3398c38.7998 0 77.6201 -6.19043 116.41 -22.46zM48 315.78v-60.4707c31 0 56.8398 22.1504 62.7197 51.54c-21.5996 1.36035 -42.5996 3.89062 -62.7197 8.93066zM48 30.7803\\nc20.1201 -7.31055 41.1797 -11.8105 63.71 -13.6201c-1.53027 34.1299 -29.3398 61.3994 -63.71 61.3994v-47.7793zM320 96c44.1699 0 80 42.9697 80 96c0 53.0195 -35.8203 96 -80 96s-80 -42.9805 -80 -96c0 -53.0098 35.8096 -96 80 -96zM592 68.2197v57.7207\\nc-26.8203 -3.40039 -48.4502 -23.2002 -54.3203 -49.2803c18.6104 -1.58984 36.8008 -4.0498 54.3203 -8.44043zM592 304.33v48.8896c-17.7197 6.43066 -36.2695 10.4902 -55.8096 12.6602c0.949219 -31.8496 24.9199 -57.6396 55.8096 -61.5498z\\\" />\\n    <glyph glyph-name=\\\"money-bill-wave-alt\\\" unicode=\\\"&#xf53b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M621.16 393.54c11.6094 -4.87012 18.8398 -16.8301 18.8496 -29.4697v-317.25c0 -18.4902 -15.04 -31.8105 -32.25 -31.8105c-3.39941 0 -6.87988 0.520508 -10.3496 1.62012c-30.8906 9.7998 -61.7598 13.7197 -92.6504 13.7197\\nc-123.17 0 -246.34 -62.3496 -369.51 -62.3496c-38.7998 0 -77.6201 6.19043 -116.41 22.4697c-11.6094 4.86035 -18.8398 16.8301 -18.8398 29.46v317.261c0 18.4893 15.04 31.8096 32.25 31.8096c3.40039 0 6.87988 -0.519531 10.3496 -1.62012\\nc30.8906 -9.7998 61.7607 -13.7197 92.6504 -13.7197c123.17 0 246.33 62.3496 369.5 62.3398c38.7998 0 77.6201 -6.19043 116.41 -22.46zM320 96c44.1699 0 80 42.9697 80 96c0 53.0195 -35.8203 96 -80 96s-80 -42.9805 -80 -96c0 -53.0098 35.8096 -96 80 -96z\\\" />\\n    <glyph glyph-name=\\\"money-check\\\" unicode=\\\"&#xf53c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M0 0v320h640v-320c0 -17.6699 -14.3301 -32 -32 -32h-576c-17.6699 0 -32 14.3301 -32 32zM448 208v-32c0 -8.83984 7.16016 -16 16 -16h96c8.83984 0 16 7.16016 16 16v32c0 8.83984 -7.16016 16 -16 16h-96c-8.83984 0 -16 -7.16016 -16 -16zM448 88v-16\\nc0 -4.41992 3.58008 -8 8 -8h112c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-112c-4.41992 0 -8 -3.58008 -8 -8zM64 184v-16c0 -4.41992 3.58008 -8 8 -8h304c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-304c-4.41992 0 -8 -3.58008 -8 -8z\\nM64 88v-16c0 -4.41992 3.58008 -8 8 -8h176c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-176c-4.41992 0 -8 -3.58008 -8 -8zM624 416c8.83984 0 16 -7.16016 16 -16v-48h-640v48c0 8.83984 7.16016 16 16 16h608z\\\" />\\n    <glyph glyph-name=\\\"money-check-alt\\\" unicode=\\\"&#xf53d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 416c17.6699 0 32 -14.3301 32 -32v-384c0 -17.6699 -14.3301 -32 -32 -32h-576c-17.6699 0 -32 14.3301 -32 32v384c0 17.6699 14.3301 32 32 32h576zM176 120.12c23.6201 0.629883 42.6699 20.54 42.6699 45.0703c0 19.9697 -12.9902 37.8096 -31.5801 43.3896\\nl-45 13.5c-5.16016 1.54004 -8.76953 6.78027 -8.76953 12.7295c0 7.27051 5.2998 13.1904 11.7998 13.1904h28.1104c4.55957 0 8.94922 -1.29004 12.8193 -3.71973c3.24023 -2.03027 7.36035 -1.91016 10.1299 0.729492l11.75 11.21\\nc3.53027 3.37012 3.33008 9.20996 -0.569336 12.1406c-9.10059 6.83984 -20.0801 10.7695 -31.3701 11.3496v16.29c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-16.1201c-23.6201 -0.629883 -42.6699 -20.5498 -42.6699 -45.0703\\nc0 -19.9697 12.9893 -37.8096 31.5801 -43.3896l45 -13.5c5.15918 -1.54004 8.76953 -6.78027 8.76953 -12.7295c0 -7.27051 -5.2998 -13.1904 -11.7998 -13.1904h-28.1104c-4.55957 0 -8.9502 1.2998 -12.8193 3.71973\\nc-3.24023 2.03027 -7.36035 1.91016 -10.1309 -0.729492l-11.75 -11.21c-3.5293 -3.37012 -3.3291 -9.20996 0.570312 -12.1406c9.10059 -6.83008 20.0801 -10.7695 31.3701 -11.3496v-16.29c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v16.1201zM416 136v16\\nc0 4.41992 -3.58008 8 -8 8h-112c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h112c4.41992 0 8 3.58008 8 8zM576 136v16c0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8z\\nM576 232v16c0 4.41992 -3.58008 8 -8 8h-272c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h272c4.41992 0 8 3.58008 8 8z\\\" />\\n    <glyph glyph-name=\\\"not-equal\\\" unicode=\\\"&#xf53e;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M416 240h-98.4199l-74.5303 -96h172.95c17.6699 0 32 -14.3301 32 -32v-32c0 -17.6699 -14.3301 -32 -32 -32h-247.48l-82.0898 -105.73c-5.37012 -7.00977 -15.4102 -8.34961 -22.4297 -2.96973l-25.4102 19.46c-7.00977 5.37988 -8.33984 15.4199 -2.96973 22.4307\\nl51.8701 66.8096h-55.4902c-17.6699 0 -32 14.3301 -32 32v32c0 17.6699 14.3301 32 32 32h130.03l74.5293 96h-204.56c-17.6699 0 -32 14.3301 -32 32v32c0 17.6699 14.3301 32 32 32h279.09l82.0801 105.73c5.37988 7.00977 15.4199 8.34961 22.4404 2.96973\\nl25.4092 -19.46c7.01074 -5.37012 8.34082 -15.4102 2.9707 -22.4307l-51.8701 -66.8096h23.8799c17.6699 0 32 -14.3301 32 -32v-32c0 -17.6699 -14.3301 -32 -32 -32z\\\" />\\n    <glyph glyph-name=\\\"palette\\\" unicode=\\\"&#xf53f;\\\" \\nd=\\\"M204.3 443c163.8 31.9004 307.2 -92.0996 307.7 -249.7c-0.0996094 -35.7002 -29.0996 -65.2998 -64.9004 -65.2998h-79.6992c-51 0 -84 -53 -60.9004 -98.4004c18.9004 -37.0996 -1.2998 -85.2998 -42.5 -91.6992c-127.1 -19.7002 -295.8 119.699 -258.8 306.699\\nc19.5996 99.1006 99.7002 179 199.1 198.4zM96 128c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM128 256c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM256 320\\nc17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM384 256c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"parking\\\" unicode=\\\"&#xf540;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM240 128c52.9004 0 96 43.0996 96 96s-43.0996 96 -96 96h-96c-8.7998 0 -16 -7.2002 -16 -16v-224c0 -8.7998 7.2002 -16 16 -16h32\\nc8.7998 0 16 7.2002 16 16v48h48zM240 256c17.5996 0 32 -14.4004 32 -32s-14.4004 -32 -32 -32h-48v64h48z\\\" />\\n    <glyph glyph-name=\\\"percentage\\\" unicode=\\\"&#xf541;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M109.25 274.75c-24.9902 -25 -65.5098 -25 -90.5098 0c-24.9902 24.9902 -24.9902 65.5195 0 90.5098s65.5195 24.9902 90.5098 0s24.9902 -65.5195 0 -90.5098zM365.25 109.26c25 -25 25 -65.5195 0 -90.5098c-24.9902 -24.9902 -65.5195 -24.9902 -90.5098 0\\ns-24.9902 65.5195 0 90.5098s65.5195 24.9902 90.5098 0zM363.31 340.69c12.5 -12.5 12.5 -32.7607 0 -45.25l-274.75 -274.75c-12.4893 -12.5 -32.75 -12.5 -45.25 0l-22.6191 22.6191c-12.5 12.4902 -12.5 32.75 0 45.25l274.75 274.75c12.4893 12.5 32.75 12.5 45.25 0z\\n\\\" />\\n    <glyph glyph-name=\\\"project-diagram\\\" unicode=\\\"&#xf542;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M384 128c17.6699 0 32 -14.3301 32 -32v-128c0 -17.6699 -14.3301 -32 -32 -32h-128c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32h128zM192 416v-32h224v-64h-224v-47.5098l64.2803 -112.49h-0.280273c-23.5996 0 -44.0195 -12.9805 -55.1201 -32.04\\nl-73.1602 128.04h-95.7197c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32h128c17.6699 0 32 -14.3301 32 -32zM608 448c17.6699 0 32 -14.3301 32 -32v-128c0 -17.6699 -14.3301 -32 -32 -32h-128c-17.6699 0 -32 14.3301 -32 32v128\\nc0 17.6699 14.3301 32 32 32h128z\\\" />\\n    <glyph glyph-name=\\\"receipt\\\" unicode=\\\"&#xf543;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M358.4 444.8c10.5996 7.90039 25.5996 0.400391 25.5996 -12.7998v-480c0 -13.2002 -15.0996 -20.7002 -25.5996 -12.7998l-38.4004 44.7998l-54.4004 -44.7998c-2.35059 -1.78027 -6.65137 -3.22559 -9.59961 -3.22559s-7.24902 1.44531 -9.59961 3.22559\\nl-54.4004 44.7998l-54.4004 -44.7998c-2.35059 -1.78027 -6.65137 -3.22559 -9.59961 -3.22559s-7.24902 1.44531 -9.59961 3.22559l-54.4004 44.7998l-38.4004 -44.7998c-10.5996 -7.90039 -25.5996 -0.400391 -25.5996 12.7998v480c0 13.2002 15 20.7002 25.5996 12.7998\\nl38.4004 -44.7998l54.4004 44.7998c2.35059 1.78027 6.65137 3.22559 9.59961 3.22559s7.24902 -1.44531 9.59961 -3.22559l54.4004 -44.7998l54.4004 44.7998c2.35059 1.78027 6.65137 3.22559 9.59961 3.22559s7.24902 -1.44531 9.59961 -3.22559l54.4004 -44.7998z\\nM320 88v16c0 4.40039 -3.59961 8 -8 8h-240c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h240c4.40039 0 8 3.59961 8 8zM320 184v16c0 4.40039 -3.59961 8 -8 8h-240c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h240\\nc4.40039 0 8 3.59961 8 8zM320 280v16c0 4.40039 -3.59961 8 -8 8h-240c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h240c4.40039 0 8 3.59961 8 8z\\\" />\\n    <glyph glyph-name=\\\"robot\\\" unicode=\\\"&#xf544;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M32 224h32v-192h-32h-0.0380859c-17.6436 0 -31.9619 14.3184 -31.9619 31.9619v0.0380859v128v0.0380859c0 17.6436 14.3184 31.9619 31.9619 31.9619h0.0380859zM544 272v-272c-0.0351562 -35.293 -28.707 -63.9648 -64 -64h-320\\nc-35.293 0.0351562 -63.9648 28.707 -64 64v272v0.0263672c0 44.1455 35.8281 79.9736 79.9736 79.9736h0.0263672h112v64c0 17.6641 14.3359 32 32 32s32 -14.3359 32 -32v-64h112h0.0263672c44.1455 0 79.9736 -35.8281 79.9736 -79.9736v-0.0263672zM264 192\\nc0 22.0801 -17.9199 40 -40 40s-40 -17.9199 -40 -40s17.9199 -40 40 -40h0.00292969c22.0781 0 39.9971 17.9189 39.9971 39.9971v0.00292969zM256 64h-64v-32h64v32zM352 64h-64v-32h64v32zM456 192c0 22.0801 -17.9199 40 -40 40s-40 -17.9199 -40 -40\\ns17.9199 -40 40 -40h0.00292969c22.0781 0 39.9971 17.9189 39.9971 39.9971v0.00292969zM448 64h-64v-32h64v32zM640 192v-128v-0.0380859c0 -17.6436 -14.3184 -31.9619 -31.9619 -31.9619h-0.0380859h-32v192h32h0.0380859c17.6436 0 31.9619 -14.3184 31.9619 -31.9619\\nv-0.0380859z\\\" />\\n    <glyph glyph-name=\\\"ruler\\\" unicode=\\\"&#xf545;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M635.7 280.8c8.7998 -15 3.59961 -34.2002 -11.6006 -42.7998l-496.8 -281.9c-15.2002 -8.59961 -34.7002 -3.5 -43.5 11.5l-79.5996 135.601c-8.7998 15 -3.5 34.0996 11.7002 42.7998l69 39.0996l59.6992 -101.399c2.2002 -3.7998 7.10059 -5.10059 10.9004 -2.90039\\nl13.7998 7.7998c3.7998 2.2002 5.10059 7 2.90039 10.7002l-59.7002 101.7l55.2002 31.2998l27.8994 -47.5c2.2002 -3.7998 7.10059 -5.09961 10.9004 -2.89941l13.7998 7.7998c3.7998 2.2002 5.10059 6.89941 2.90039 10.7002l-27.9004 47.3994l55.2002 31.2998\\nl59.7002 -101.699c2.2002 -3.80078 7.09961 -5.10059 10.8994 -2.90039l13.8008 7.7998c3.7998 2.2002 5.09961 7 2.89941 10.7002l-59.7998 101.7l55.2002 31.2998l27.8994 -47.2998c2.2002 -3.7998 7.10059 -5.10059 10.9004 -2.90039l13.7998 7.7998\\nc3.7998 2.2002 5.10059 6.90039 2.90039 10.7002l-27.9004 47.4004l55.2002 31.2998l59.7002 -101.6c2.2002 -3.80078 7.09961 -5.10059 10.8994 -2.90039l13.8008 7.7998c3.7998 2.2002 5.09961 6.90039 2.89941 10.7002l-59.7002 101.7l69 39.0996\\nc15.2002 8.60059 34.7002 3.5 43.5 -11.5z\\\" />\\n    <glyph glyph-name=\\\"ruler-combined\\\" unicode=\\\"&#xf546;\\\" \\nd=\\\"M160 160v-41.3799l-158.43 -158.42c-0.660156 2.55957 -1.57031 5.03027 -1.57031 7.7998v448c0 17.6699 14.3301 32 32 32h96c17.6699 0 32 -14.3301 32 -32v-32h-56c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h56v-64h-56\\nc-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h56v-64h-56c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h56zM480 96c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-448\\nc-2.75977 0 -5.24023 0.910156 -7.7998 1.57031l158.43 158.43h41.3701v-56c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v56h64v-56c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v56h64v-56c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8\\nv56h32z\\\" />\\n    <glyph glyph-name=\\\"ruler-horizontal\\\" unicode=\\\"&#xf547;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M544 320c17.6699 0 32 -14.3301 32 -32v-192c0 -17.6699 -14.3301 -32 -32 -32h-512c-17.6699 0 -32 14.3301 -32 32v192c0 17.6699 14.3301 32 32 32h48v-88c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v88h64v-88c0 -4.41992 3.58008 -8 8 -8h16\\nc4.41992 0 8 3.58008 8 8v88h64v-88c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v88h64v-88c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v88h64v-88c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v88h48z\\\" />\\n    <glyph glyph-name=\\\"ruler-vertical\\\" unicode=\\\"&#xf548;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M168 32h88v-64c0 -17.6699 -14.3301 -32 -32 -32h-192c-17.6699 0 -32 14.3301 -32 32v448c0 17.6699 14.3301 32 32 32h192c17.6699 0 32 -14.3301 32 -32v-64h-88c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h88v-64h-88\\nc-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h88v-64h-88c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h88v-64h-88c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8z\\\" />\\n    <glyph glyph-name=\\\"school\\\" unicode=\\\"&#xf549;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M0 224c0 17.6699 14.3301 32 32 32h64v-320h-80c-8.83984 0 -16 7.16016 -16 16v272zM360 272c4.41992 0 8 -3.58008 8 -8v-16c0 -4.41992 -3.58008 -8 -8 -8h-48c-4.41992 0 -8 3.58008 -8 8v64c0 4.41992 3.58008 8 8 8h16c4.41992 0 8 -3.58008 8 -8v-40h24z\\nM497.75 335.96c8.90039 -5.92969 14.25 -15.9297 14.25 -26.6299v-373.33h-128v144c0 8.83984 -7.16016 16 -16 16h-96c-8.83984 0 -16 -7.16016 -16 -16v-144h-128v373.34c0.00195312 9.45117 6.38574 21.377 14.25 26.6201l160 106.67\\nc4.4502 2.96484 12.4023 5.37012 17.75 5.37012s13.2998 -2.40527 17.75 -5.37012zM320 192c44.1797 0 80 35.8203 80 80s-35.8203 80 -80 80s-80 -35.8203 -80 -80s35.8203 -80 80 -80zM608 256c17.6699 0 32 -14.3301 32 -32v-272c0 -8.83984 -7.16016 -16 -16 -16h-80\\nv320h64z\\\" />\\n    <glyph glyph-name=\\\"screwdriver\\\" unicode=\\\"&#xf54a;\\\" \\nd=\\\"M448 448l64 -64l-96 -128h-62.0596l-83.0303 -83.0303c-4.25 6.79004 -9.07031 13.2705 -14.8701 19.0703c-5.7998 5.80957 -12.2803 10.6201 -19.0703 14.8701l83.0303 83.0303v62.0596zM128 169.41c29.1104 29.1094 76.2998 29.1094 105.41 0\\nc29.1094 -29.1104 29.1094 -76.2998 0 -105.41l-117.08 -117.08c-14.5605 -14.5596 -38.1504 -14.5596 -52.71 0l-52.7002 52.7002c-14.5498 14.5596 -14.5498 38.1602 0 52.71z\\\" />\\n    <glyph glyph-name=\\\"shoe-prints\\\" unicode=\\\"&#xf54b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M192 288c-35.3496 0 -64 28.6504 -64 64s28.6504 64 64 64h32v-128h-32zM0 32c0 35.3496 28.6504 64 64 64h32v-128h-32c-35.3496 0 -64 28.6504 -64 64zM337.46 160c90.3604 0 174.54 -32 174.54 -96c0 -45.2197 -39.0996 -97.2998 -148.58 -120.82\\nc-31.9795 -6.87012 -64.8896 -8.50977 -97.5801 -6.19922c-27.2998 1.92969 -54.0996 7.76953 -80.3096 15.0498l-57.5303 15.9697v128c60.21 0 79.9404 15.6201 104.73 32c28.5693 18.8799 69.8193 32 104.729 32zM491.42 440.81\\nc109.48 -23.5098 148.58 -75.5898 148.58 -120.81c0 -64 -84.1797 -96 -174.54 -96c-34.9102 0 -76.1602 13.1201 -104.729 32c-24.79 16.3799 -44.5303 32 -104.73 32v128l57.5303 15.9697c26.21 7.27051 53.0098 13.1104 80.3096 15.04\\nc32.6904 2.32031 65.6006 0.669922 97.5801 -6.2002z\\\" />\\n    <glyph glyph-name=\\\"skull\\\" unicode=\\\"&#xf54c;\\\" \\nd=\\\"M256 448c141.4 0 256 -100.3 256 -224c0 -70.0996 -36.9004 -132.6 -94.5 -173.7c-9.7002 -6.89941 -15.2002 -18.2002 -13.5 -29.8994l9.40039 -66.2002c1.39941 -9.60059 -6 -18.2002 -15.7002 -18.2002h-77.7002v56c0 4.40039 -3.59961 8 -8 8h-16\\nc-4.40039 0 -8 -3.59961 -8 -8v-56h-64v56c0 4.40039 -3.59961 8 -8 8h-16c-4.40039 0 -8 -3.59961 -8 -8v-56h-77.7002c-9.7002 0 -17.0996 8.59961 -15.7002 18.2002l9.40039 66.2002c1.7002 11.7998 -3.90039 23 -13.5 29.8994\\nc-57.5996 41.1006 -94.5 103.601 -94.5 173.7c0 123.7 114.6 224 256 224zM160 128c35.2998 0 64 28.7002 64 64s-28.7002 64 -64 64s-64 -28.7002 -64 -64s28.7002 -64 64 -64zM352 128c35.2998 0 64 28.7002 64 64s-28.7002 64 -64 64s-64 -28.7002 -64 -64\\ns28.7002 -64 64 -64z\\\" />\\n    <glyph glyph-name=\\\"smoking-ban\\\" unicode=\\\"&#xf54d;\\\" \\nd=\\\"M96 144v64c0 8.7998 7.2002 16 16 16h21.5l96 -96h-117.5c-8.7998 0 -16 7.2002 -16 16zM256 448c141.4 0 256 -114.6 256 -256s-114.6 -256 -256 -256s-256 114.6 -256 256s114.6 256 256 256zM256 0c41.4004 0 79.7002 13.2998 111.1 35.7002l-267.399 267.399\\nc-22.4004 -31.3994 -35.7002 -69.6992 -35.7002 -111.1c0 -105.9 86.0996 -192 192 -192zM301.2 192l32 -32h50.7998v32h-82.7998zM412.3 80.9004c22.4004 31.3994 35.7002 69.6992 35.7002 111.1c0 105.9 -86.0996 192 -192 192\\nc-41.4004 0 -79.7002 -13.2998 -111.1 -35.7002l124.3 -124.3h130.8c8.7998 0 16 -7.2002 16 -16v-64c0 -8.7998 -7.2002 -16 -16 -16h-34.7998zM320.6 320c32.1006 0 58.7002 -23.7002 63.3008 -54.5996c0.699219 -4.90039 -3 -9.40039 -8 -9.40039h-16.2002\\nc-3.7002 0 -7 2.5 -7.7002 6.09961c-2.7998 14.7002 -15.7998 25.9004 -31.4004 25.9004c-32.0996 0 -58.6992 23.7002 -63.2998 54.5996c-0.700195 4.90039 3 9.40039 8 9.40039h16.2002c3.7002 0 7 -2.5 7.7002 -6.09961\\nc2.7998 -14.7002 15.7998 -25.9004 31.3994 -25.9004z\\\" />\\n    <glyph glyph-name=\\\"store\\\" unicode=\\\"&#xf54e;\\\" horiz-adv-x=\\\"616\\\" \\nd=\\\"M602 329.4c33.5996 -53.6006 3.7998 -128 -59 -136.4c-4.5 -0.599609 -9 -0.900391 -13.7002 -0.900391c-29.5 0 -55.7002 13 -73.7998 33.1006c-18 -20.1006 -44.2002 -33.1006 -73.7998 -33.1006c-29.5 0 -55.7998 13 -73.7998 33.1006\\nc-18 -20.1006 -44.2002 -33.1006 -73.8008 -33.1006c-29.5 0 -55.7998 13 -73.7998 33.1006c-18 -20.1006 -44.2002 -33.1006 -73.7998 -33.1006c-4.59961 0 -9.2002 0.300781 -13.7002 0.900391c-62.5996 8.5 -92.2998 82.9004 -58.7998 136.4l64.9004 103.6\\nc5.7998 9.2998 16.0996 15 27.0996 15h404c11 0 21.2998 -5.7002 27.0996 -15zM529.5 160c6.09961 0 12.0996 0.400391 18.2002 1.2002c5.59961 0.700195 11 2 16.3994 3.59961v-196.8c0 -17.7002 -14.2998 -32 -32 -32h-448c-17.6992 0 -32 14.2998 -32 32v196.8\\nc5.30078 -1.5 10.8008 -2.7998 16.4004 -3.59961c5.90039 -0.799805 12 -1.2002 18 -1.2002c10 0 19.9004 1.59961 29.5 3.7998v-99.7998h384v99.7998c9.59961 -2.2998 19.5 -3.7998 29.5 -3.7998z\\\" />\\n    <glyph glyph-name=\\\"store-alt\\\" unicode=\\\"&#xf54f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M320 64v160h64v-256c0 -17.7002 -14.2998 -32 -32 -32h-256c-17.7002 0 -32 14.2998 -32 32v256h64v-160h192zM634.6 305.8c14.1006 -21.2998 -1.09961 -49.7998 -26.5996 -49.7998h-575.9c-25.5996 0 -40.7998 28.5 -26.5996 49.7998l85.2998 128\\nc5.90039 8.90039 15.9004 14.2002 26.6006 14.2002h405.199c10.7002 0 20.7002 -5.2998 26.7002 -14.2002zM512 -48v272h64v-272c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16z\\\" />\\n    <glyph glyph-name=\\\"stream\\\" unicode=\\\"&#xf550;\\\" \\nd=\\\"M16 320c-8.83984 0 -16 7.16016 -16 16v64c0 8.83984 7.16016 16 16 16h416c8.83984 0 16 -7.16016 16 -16v-64c0 -8.83984 -7.16016 -16 -16 -16h-416zM496 240c8.83984 0 16 -7.16016 16 -16v-64c0 -8.83984 -7.16016 -16 -16 -16h-416c-8.83984 0 -16 7.16016 -16 16\\nv64c0 8.83984 7.16016 16 16 16h416zM432 64c8.83984 0 16 -7.16016 16 -16v-64c0 -8.83984 -7.16016 -16 -16 -16h-416c-8.83984 0 -16 7.16016 -16 16v64c0 8.83984 7.16016 16 16 16h416z\\\" />\\n    <glyph glyph-name=\\\"stroopwafel\\\" unicode=\\\"&#xf551;\\\" \\nd=\\\"M188.12 237.26l45.25 -45.2598l-45.2598 -45.25l-45.25 45.25zM301.25 259.88l-45.25 -45.25l-45.25 45.2598l45.25 45.25zM210.75 124.12l45.25 45.25l45.2598 -45.25l-45.2598 -45.2598zM256 448c141.38 0 256 -114.62 256 -256s-114.62 -256 -256 -256\\ns-256 114.62 -256 256s114.62 256 256 256zM442.68 152.4c1.29199 1.29492 2.34082 3.83008 2.34082 5.65918c0 1.83008 -1.04883 4.36523 -2.34082 5.66016l-28.29 28.2803l28.2705 28.3096c3.12012 3.12012 3.12012 8.19043 0 11.3105l-11.3105 11.3096\\nc-3.11914 3.12012 -8.18945 3.12012 -11.3096 0l-28.29 -28.29l-45.25 45.2607l33.9404 33.9395l16.9697 -16.9697c3.12012 -3.12012 8.18945 -3.12012 11.3096 0l11.3105 11.3096c3.12012 3.12012 3.12012 8.19043 0 11.3105l-16.9707 16.9697l16.9707 16.9697\\nc3.12012 3.12012 3.12012 8.19043 0 11.3105l-11.3105 11.3096c-3.12012 3.12012 -8.18945 3.12012 -11.3096 0l-16.9697 -16.9697l-16.9707 16.9697c-3.12012 3.12012 -8.18945 3.12012 -11.3096 0l-11.3105 -11.3096c-3.11914 -3.12012 -3.11914 -8.19043 0 -11.3105\\nl16.9707 -16.9697l-33.9404 -33.9404l-45.2598 45.25l28.29 28.29c3.12012 3.12012 3.12012 8.19043 0 11.3105l-11.3105 11.3096c-3.11914 3.12012 -8.18945 3.12012 -11.3096 0l-28.29 -28.29l-28.3096 28.2705c-3.12012 3.12012 -8.19043 3.12012 -11.3105 0\\nl-11.3096 -11.3105c-3.12012 -3.11914 -3.12012 -8.18945 0 -11.3096l28.29 -28.29l-45.2607 -45.25l-33.9395 33.9404l16.9697 16.9697c3.12012 3.12012 3.12012 8.18945 0 11.3096l-11.3096 11.3105c-3.12012 3.12012 -8.19043 3.12012 -11.3105 0l-16.9697 -16.9707\\nl-16.9697 16.9707c-3.12012 3.12012 -8.19043 3.12012 -11.3105 0l-11.3096 -11.3105c-3.12012 -3.12012 -3.12012 -8.18945 0 -11.3096l16.9697 -16.9697l-16.9697 -16.9707c-3.12012 -3.12012 -3.12012 -8.18945 0 -11.3096l11.3096 -11.3105\\nc3.12012 -3.11914 8.19043 -3.11914 11.3105 0l16.9697 16.9707l33.9404 -33.9404l-45.25 -45.2598l-28.29 28.29c-3.12012 3.12012 -8.19043 3.12012 -11.3105 0l-11.3096 -11.3105c-3.12012 -3.11914 -3.12012 -8.18945 0 -11.3096l28.29 -28.29l-28.29 -28.29\\nc-3.12012 -3.12012 -3.12012 -8.19043 0 -11.3096l11.3398 -11.3301c3.12012 -3.12012 8.18945 -3.12012 11.3096 0l28.29 28.29l45.25 -45.25l-33.9395 -33.9404l-16.9707 16.9697c-3.11914 3.12012 -8.18945 3.12012 -11.3096 0l-11.3096 -11.3096\\nc-3.12012 -3.12012 -3.12012 -8.19043 0 -11.3105l16.9697 -16.9697l-16.9697 -16.9697c-3.12012 -3.12012 -3.12012 -8.19043 0 -11.3105l11.3096 -11.3096c3.12012 -3.12012 8.19043 -3.12012 11.3096 0l16.9707 16.9697l16.9697 -16.9697\\nc3.12012 -3.12012 8.19043 -3.12012 11.3096 0l11.3105 11.3096c3.12012 3.12012 3.12012 8.19043 0 11.3105l-16.9697 16.9697l33.9395 33.9404l45.25 -45.2598l-28.29 -28.29c-3.12012 -3.12012 -3.12012 -8.19043 0 -11.3105l11.3105 -11.3096\\nc3.11914 -3.12012 8.18945 -3.12012 11.3096 0l28.29 28.29l28.3096 -28.2705c3.12012 -3.12012 8.19043 -3.12012 11.3105 0l11.3096 11.3105c3.12012 3.11914 3.12012 8.18945 0 11.3096l-28.29 28.29l45.2607 45.2598l33.9395 -33.9395l-16.9697 -16.9707\\nc-3.12012 -3.11914 -3.12012 -8.18945 0 -11.3096l11.3096 -11.3096c3.12012 -3.12012 8.19043 -3.12012 11.3105 0l16.9697 16.9697l16.9697 -16.9697c3.12012 -3.12012 8.19043 -3.12012 11.3105 0l11.3096 11.3096c3.12012 3.12012 3.12012 8.19043 0 11.3096\\nl-16.9697 16.9707l16.9697 16.9697c3.12012 3.12012 3.12012 8.19043 0 11.3096l-11.3096 11.3105c-3.12012 3.12012 -8.19043 3.12012 -11.3105 0l-16.9697 -16.9697l-33.9404 33.9395l45.25 45.25l28.29 -28.29c3.12012 -3.12012 8.19043 -3.12012 11.3105 0zM278.63 192\\nl45.2598 45.2598l45.25 -45.2598l-45.25 -45.25z\\\" />\\n    <glyph glyph-name=\\\"toolbox\\\" unicode=\\\"&#xf552;\\\" \\nd=\\\"M502.63 233.37c6 -6 9.37012 -14.1396 9.37012 -22.6201v-82.75h-128v16c0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-16h-128v16c0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-16h-128v82.7402\\nc0 8.49023 3.37012 16.6299 9.37012 22.6299l45.25 45.2598c6.00977 6 14.1396 9.37012 22.6299 9.37012h50.75v80c0 26.5098 21.4902 48 48 48h160c26.5098 0 48 -21.4902 48 -48v-80.0098h50.75c8.49023 0 16.6299 -3.37012 22.6299 -9.37012zM320 288v64h-128v-64h128z\\nM384 80v16h128v-96c0 -17.6699 -14.3301 -32 -32 -32h-448c-17.6699 0 -32 14.3301 -32 32v96h128v-16c0 -8.83984 7.16016 -16 16 -16h32c8.83984 0 16 7.16016 16 16v16h128v-16c0 -8.83984 7.16016 -16 16 -16h32c8.83984 0 16 7.16016 16 16z\\\" />\\n    <glyph glyph-name=\\\"tshirt\\\" unicode=\\\"&#xf553;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M631.2 351.5c7.89941 -3.90039 11.0996 -13.5996 7.09961 -21.5l-57.2998 -114.4c-4 -8 -13.5996 -11.1992 -21.5 -7.19922l-56.5996 27.6992c-10.6006 5.2002 -23 -2.59961 -23 -14.3994v-253.7c0 -17.7002 -14.3008 -32 -32 -32h-256c-17.7002 0 -32 14.2998 -32 32\\nv253.6c0 11.9004 -12.4004 19.6006 -23 14.4004l-56.6006 -27.7002c-7.89941 -3.89941 -17.5 -0.700195 -21.5 7.2002l-57.2002 114.5c-3.89941 7.90039 -0.699219 17.5 7.2002 21.5l194.7 96.5c20.0996 -27.7998 64.5996 -47.2002 116.5 -47.2002\\ns96.4004 19.4004 116.5 47.2002z\\\" />\\n    <glyph glyph-name=\\\"walking\\\" unicode=\\\"&#xf554;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M208 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM302.5 202.9c15.7002 -7.90039 22 -27.3008 14.2998 -43c-7.89941 -15.8008 -26.8994 -22.2002 -42.5 -14.3008l-23.2998 11.8008c-15 7.59961 -26.4004 20.8994 -31.7002 37\\nl-5.5 16.5l-17.2002 -68.7002l45.5 -49.7002c7.2002 -7.7998 12.3008 -17.4004 14.9004 -27.7002l22.2002 -89c4.2998 -17.0996 -6.2002 -34.5 -23.2998 -38.7998c-17.1006 -4.2998 -34.5 6.2002 -38.8008 23.2998l-18.2998 73.2998\\nc-2.59961 10.3008 -7.7002 19.8008 -14.8994 27.7002l-59.9004 65.4004c-14.5 15.8994 -20.0996 38 -14.9004 58.7998l15.2002 60.7002l-26.7998 -10.7998c-7.2002 -2.90039 -13 -8.40039 -16.5 -15.4004l-6.7002 -13.5996\\nc-7.89941 -15.8008 -26.8994 -22.2002 -42.5 -14.3008c-15.7002 7.90039 -22 27.1006 -14.2002 42.9004l6.7002 13.5996c10.4004 21 28.1006 37.5 49.7002 46.2002c37.4004 15.1006 57.2998 25.2998 93.2998 25.2002c46.5 -0.0996094 87.5 -31.2998 102.2 -75.9004\\nl9.7002 -29.3994zM73.5996 62.2002l20.7002 51.5c8.7002 -11.9004 -7.89941 6.59961 47.4004 -53.7002l-13.5 -33.7998c-3.2998 -8.10059 -8.10059 -15.4004 -14.2002 -21.5l-59.4004 -59.4004c-12.5 -12.5 -32.6992 -12.5 -45.1992 0s-12.5 32.7998 0 45.2998l50 50.1006\\nc6.19922 6.09961 11 13.3994 14.1992 21.5z\\\" />\\n    <glyph glyph-name=\\\"wallet\\\" unicode=\\\"&#xf555;\\\" \\nd=\\\"M461.2 320c28.0195 0 50.7998 -21.5303 50.7998 -48v-256c0 -26.4697 -22.7803 -48 -50.7998 -48h-397.2c-35.3496 0 -64 28.6504 -64 64v320c0 35.3496 28.6504 64 64 64h368c26.5098 0 48 -21.4902 48 -48c0 -8.83984 -7.16016 -16 -16 -16h-384\\nc-8.83984 0 -16 -7.16016 -16 -16s7.16016 -16 16 -16h381.2zM416 112c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"angry\\\" unicode=\\\"&#xf556;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM136 208c0 -17.7002 14.4004 -32 32.0996 -32c17.7002 0 32 14.2998 32 32c0 2.90039 -1 5.5 -1.69922 8.2002c0.599609 0 1.19922 -0.200195 1.69922 -0.200195\\nc6.90039 0 13.2002 4.5 15.3008 11.4004c2.59961 8.39941 -2.2002 17.3994 -10.7002 19.8994l-80 24c-8.5 2.5 -17.4004 -2.2002 -19.9004 -10.7002c-2.59961 -8.39941 2.2002 -17.3994 10.7002 -19.8994l31 -9.2998c-6.40039 -5.90039 -10.5 -14.1006 -10.5 -23.4004z\\nM304 53.7998c13.4004 -16.0996 38.2998 4 24.5 20.5c-20 24 -49.4004 37.7998 -80.5996 37.7998c-31.2002 0 -60.6006 -13.7998 -80.6006 -37.7998c-13.5996 -16.2998 11.1006 -36.7998 24.6006 -20.5c27.8994 33.4004 84.2998 33.4004 112.1 0zM380.6 240.7\\nc8.5 2.5 13.3008 11.3994 10.8008 19.8994c-2.5 8.40039 -11.5 13.2002 -19.9004 10.7002l-80 -24c-8.40039 -2.5 -13.2002 -11.3994 -10.7002 -19.8994c2.10059 -6.90039 8.40039 -11.4004 15.2998 -11.4004c0.600586 0 1.10059 0.0996094 1.7002 0.200195\\nc-0.799805 -2.60059 -1.7002 -5.2998 -1.7002 -8.2002c0 -17.7002 14.3008 -32 32 -32c17.7002 0 32 14.2998 32 32c0 9.2998 -4.19922 17.5996 -10.5 23.4004z\\\" />\\n    <glyph glyph-name=\\\"archway\\\" unicode=\\\"&#xf557;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M560 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-159.98c-8.83984 0 -16 7.16016 -16 16v16l-0.0195312 160c0 53.0195 -42.9805 96 -96 96s-96 -42.9805 -96 -96v-176c0 -8.83984 -7.16016 -16 -16 -16h-159.98\\nc-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h15.9805v352h512v-352h16zM560 448c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-544c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h544z\\\" />\\n    <glyph glyph-name=\\\"atlas\\\" unicode=\\\"&#xf558;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M318.38 240c-5.28027 -31.2197 -25.5898 -57.1699 -53.2998 -70.4102c7.66992 19.0605 12.7197 43.3799 14.21 70.4102h39.0898zM318.38 272h-39.0898c-1.49023 27.0303 -6.53027 51.3496 -14.21 70.4102c27.71 -13.2402 48.0098 -39.1904 53.2998 -70.4102zM224 350.69\\nc7.69043 -7.4502 20.7695 -34.4307 23.4404 -78.6904h-46.8701c2.66016 44.2695 15.7393 71.2402 23.4297 78.6904zM182.92 342.41c-7.67969 -19.0605 -12.7197 -43.3799 -14.21 -70.4102h-39.0898c5.28027 31.2197 25.5898 57.1699 53.2998 70.4102zM182.92 169.59\\nc-27.71 13.2402 -48.0195 39.1904 -53.2998 70.4102h39.0898c1.49023 -27.0303 6.53027 -51.3496 14.21 -70.4102zM247.43 240c-2.66016 -44.2598 -15.7393 -71.2402 -23.4395 -78.6904c-7.69043 7.4502 -20.7705 34.4307 -23.4307 78.6904h46.8701zM448 89.5996\\nc0 -9.59961 -3.2002 -16 -9.59961 -19.1992c-3.2002 -12.8008 -3.2002 -57.6006 0 -73.6006c6.39941 -6.39941 9.59961 -12.7998 9.59961 -19.2002v-16c0 -16 -12.7998 -25.5996 -25.5996 -25.5996h-326.4c-54.4004 0 -96 41.5996 -96 96v320c0 54.4004 41.5996 96 96 96\\nh326.4c16 0 25.5996 -9.59961 25.5996 -25.5996v-332.801zM224 384c-70.6904 0 -128 -57.3096 -128 -128s57.3096 -128 128 -128s128 57.3096 128 128s-57.3096 128 -128 128zM384 0v64h-288c-16 0 -32 -12.7998 -32 -32s12.7998 -32 32 -32h288z\\\" />\\n    <glyph glyph-name=\\\"award\\\" unicode=\\\"&#xf559;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M97.1201 85.3701c13.79 -13.7803 32.1104 -21.3701 51.6104 -21.3701c12.4395 0 24.4697 3.54004 35.3096 9.58008l-52.0498 -127.62c-4.39062 -10.7695 -18.4307 -13.4004 -26.4307 -4.95996l-36.2393 38.2803l-52.6904 -2.01074\\nc-11.6201 -0.439453 -19.8203 11.2607 -15.4297 22.0303l45.3701 111.24c7.55957 -5.87012 15.9199 -10.7705 25.4297 -13.3203c20.96 -5.60938 16.4297 -3.16016 25.1201 -11.8496zM382.8 -0.700195c4.39062 -10.7598 -3.80957 -22.4697 -15.4297 -22.0303\\nl-52.6904 2.01074l-36.25 -38.2803c-7.98926 -8.44043 -22.04 -5.80957 -26.4297 4.95996l-52.0498 127.62c10.8398 -6.03027 22.8701 -9.58008 35.3096 -9.58008c19.5 0 37.8301 7.58984 51.6201 21.3701c8.66992 8.66992 4.0498 6.20996 25.1201 11.8496\\nc9.50977 2.5498 17.8701 7.44043 25.4297 13.3203zM263 108c-13.2305 -13.4697 -33.8398 -15.8799 -49.7305 -5.82031c-5.37305 3.41211 -14.8994 6.18066 -21.2646 6.18066c-6.36426 0 -15.8916 -2.76855 -21.2646 -6.18066\\nc-15.9004 -10.0596 -36.5098 -7.64941 -49.7402 5.82031c-14.7305 15 -16.4004 14.04 -38.7803 20.1396c-13.8896 3.79004 -24.75 14.8408 -28.4697 28.9805c-7.48047 28.3994 -5.54004 24.9697 -25.9502 45.75c-10.1699 10.3604 -14.1396 25.4502 -10.4199 39.5898\\nc7.48047 28.4199 7.46973 24.46 0 52.8203c-3.72949 14.1396 0.25 29.2295 10.4199 39.5801c20.4102 20.7793 18.4805 17.3594 25.9502 45.75c3.71973 14.1396 14.5801 25.1895 28.4697 28.9795c27.8906 7.61035 24.5303 5.62988 44.9404 26.4102\\nc10.1699 10.3604 25 14.4004 38.8896 10.6104c27.9199 -7.61035 24.0303 -7.60059 51.9004 0c13.8896 3.79004 28.7197 -0.260742 38.8896 -10.6104c20.4297 -20.79 17.0703 -18.7998 44.9502 -26.4102c13.8896 -3.79004 24.75 -14.8398 28.4697 -28.9795\\nc7.48047 -28.3906 5.54004 -24.9707 25.9502 -45.75c10.1699 -10.3506 14.1396 -25.4404 10.4199 -39.5801c-7.47949 -28.4102 -7.46973 -24.4502 0 -52.8301c3.71973 -14.1406 -0.25 -29.2305 -10.4199 -39.5801c-20.4102 -20.7803 -18.4697 -17.3506 -25.9502 -45.75\\nc-3.71973 -14.1396 -14.5801 -25.1904 -28.4697 -28.9805c-21.7598 -5.92969 -23.5098 -4.58984 -38.79 -20.1396zM97.6602 272.04c0 -53.0303 42.2402 -96.0205 94.3398 -96.0205s94.3398 42.9902 94.3398 96.0205s-42.2402 96.0195 -94.3398 96.0195\\ns-94.3398 -42.9893 -94.3398 -96.0195z\\\" />\\n    <glyph glyph-name=\\\"backspace\\\" unicode=\\\"&#xf55a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M576 384c35.3496 0 64 -28.6504 64 -64v-256c0 -35.3496 -28.6504 -64 -64 -64h-370.75c-16.9697 0 -33.25 6.75 -45.25 18.75l-150.63 150.63c-12.5 12.4902 -12.5 32.75 0 45.25l150.63 150.62c10.3438 10.3496 30.6143 18.75 45.2471 18.75h0.0126953h370.74z\\nM491.31 129.94l-62.0596 62.0596l62.0596 62.0596c6.25 6.25 6.25 16.3809 0 22.6309l-22.6191 22.6191c-6.25 6.25 -16.3809 6.25 -22.6309 0l-62.0596 -62.0596l-62.0596 62.0596c-6.25 6.25 -16.3809 6.25 -22.6309 0l-22.6191 -22.6191\\nc-6.25 -6.25 -6.25 -16.3809 0 -22.6309l62.0596 -62.0596l-62.0596 -62.0596c-6.25 -6.25 -6.25 -16.3809 0 -22.6309l22.6191 -22.6191c6.25 -6.25 16.3809 -6.25 22.6309 0l62.0596 62.0596l62.0596 -62.0596c6.25 -6.25 16.3809 -6.25 22.6309 0l22.6191 22.6191\\nc6.25 6.25 6.25 16.3809 0 22.6309z\\\" />\\n    <glyph glyph-name=\\\"bezier-curve\\\" unicode=\\\"&#xf55b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M368 416c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h96zM208 360v-72c0 -9.4502 2.17969 -18.3604 5.87988 -26.4404c-34.2695 -24.3496 -59.7402 -59.9492 -71.04 -101.56\\nh-49.3994c13.6797 64.6797 54.1699 119.48 109.54 152h-79.7305c-9.5 -23.4404 -32.4102 -40 -59.25 -40c-35.3398 0 -64 28.6504 -64 64s28.6602 64 64 64c26.8398 0 49.75 -16.5596 59.25 -40h84.75zM160 128c17.6699 0 32 -14.3301 32 -32v-96\\nc0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h96zM576 400c35.3398 0 64 -28.6504 64 -64s-28.6602 -64 -64 -64c-26.8398 0 -49.75 16.5596 -59.25 40h-79.7305c55.3701 -32.5195 95.8604 -87.3203 109.54 -152\\nh-49.3994c-11.2998 41.6104 -36.7705 77.21 -71.04 101.56c3.68945 8.08008 5.87988 16.9902 5.87988 26.4404v72h84.75c9.5 23.4404 32.4102 40 59.25 40zM576 128c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32\\nv96c0 17.6699 14.3301 32 32 32h96z\\\" />\\n    <glyph glyph-name=\\\"bong\\\" unicode=\\\"&#xf55c;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M302.5 -64h-221c-23.1699 0 -44.4199 12.5801 -56 32.6602c-16.1904 28.0703 -25.5 60.5898 -25.5 95.3398c0 71.0303 38.6699 132.9 96 166.11v153.93l-15.9697 -0.0205078c-8.85059 -0.00976562 -16.0303 7.16016 -16.0205 16.0107l0.0400391 31.7295\\nc0.00976562 8.82031 7.16016 15.9707 15.9805 15.9805l223.939 0.259766c8.85059 0.00976562 16.0303 -7.16992 16.0205 -16.0195l-0.0400391 -31.7207c-0.00976562 -8.81934 -7.16016 -15.9697 -15.9805 -15.9795l-15.9697 -0.0205078v-154.16\\nc14.1201 -8.17969 27.0898 -18.1396 38.6504 -29.5098l39.4092 39.4102l-9.37988 9.37988c-6.25 6.25 -6.25 16.3799 0 22.6299l11.3105 11.3105c6.25 6.25 16.3799 6.25 22.6299 0l52.6895 -52.6904c6.25 -6.25 6.25 -16.3799 0 -22.6299l-11.2998 -11.3203\\nc-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-9.37988 9.37988l-43.4404 -43.4395c17.3604 -28.8105 27.4404 -62.5 27.4404 -98.6201c0 -34.75 -9.30957 -67.2598 -25.5 -95.3398c-11.5703 -20.0801 -32.8203 -32.6602 -56 -32.6602zM120.06 188.57\\nc-24.8096 -14.3701 -44.1094 -35.7305 -56.5596 -60.5703h257c-12.4404 24.8398 -31.75 46.2002 -56.5596 60.5703l-23.9404 13.8701v181.76l-96 -0.110352v-181.649z\\\" />\\n    <glyph glyph-name=\\\"brush\\\" unicode=\\\"&#xf55d;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M352 448c17.6699 0 32 -14.3301 32 -32v-224h-384v224c0 17.6699 14.3301 32 32 32h320zM0 128v32h384v-32c0 -35.3496 -28.6602 -64 -64 -64h-64v-64c0 -35.3496 -28.6602 -64 -64 -64s-64 28.6504 -64 64v64h-64c-35.3398 0 -64 28.6504 -64 64zM192 24\\nc-13.25 0 -24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24s24 10.75 24 24c0 13.2598 -10.75 24 -24 24z\\\" />\\n    <glyph glyph-name=\\\"bus-alt\\\" unicode=\\\"&#xf55e;\\\" \\nd=\\\"M488 320c13.25 0 24 -10.7402 24 -24v-80c0 -13.25 -10.75 -24 -24 -24h-8v-166.4c0 -12.7998 -9.59961 -25.5996 -25.5996 -25.5996h-6.40039v-32c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v32h-192v-32c0 -17.6699 -14.3301 -32 -32 -32h-32\\nc-17.6699 0 -32 14.3301 -32 32v32c-17.6699 0 -32 14.3301 -32 32v160h-8c-13.25 0 -24 10.75 -24 24v80c0 13.2598 10.75 24 24 24h8v48c0 44.7998 99.2002 80 224 80s224 -35.2002 224 -80v-48h8zM160 376v-16c0 -4.41992 3.58008 -8 8 -8h176c4.41992 0 8 3.58008 8 8\\nv16c0 4.41992 -3.58008 8 -8 8h-176c-4.41992 0 -8 -3.58008 -8 -8zM112 48c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM240 160v160h-112c-17.6699 0 -32 -14.3301 -32 -32v-96c0 -17.6699 14.3301 -32 32 -32h112zM272 160\\nh112c17.6699 0 32 14.3301 32 32v96c0 17.6699 -14.3301 32 -32 32h-112v-160zM400 48c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"cannabis\\\" unicode=\\\"&#xf55f;\\\" \\nd=\\\"M503.47 87.75c5.24023 -2.75977 8.52051 -8.20996 8.53027 -14.1504c0.00976562 -5.92969 -3.26953 -11.3691 -8.50977 -14.1494c-2.4502 -1.29004 -60.7705 -31.7197 -133.49 -31.7197c-6.12988 0 -11.96 0.0996094 -17.5 0.30957\\nc11.3604 -22.2305 16.5195 -38.3096 16.8096 -39.2197c1.80078 -5.68066 0.290039 -11.8906 -3.90918 -16.1104c-2.5918 -2.60059 -7.67578 -4.71094 -11.3467 -4.71094c-1.34277 0 -3.47168 0.322266 -4.75391 0.720703c-1.83008 0.580078 -37.7197 11.9902 -77.2998 39.29\\nv-64.0098c0 -4.41992 -3.58008 -8 -8 -8h-16c-4.41992 0 -8 3.58008 -8 8v64.0195c-39.5801 -27.2998 -75.4697 -38.7197 -77.2998 -39.2891c-1.28223 -0.398438 -3.41113 -0.72168 -4.75391 -0.72168c-3.6709 0 -8.75488 2.11035 -11.3467 4.71094\\nc-4.19922 4.2207 -5.70996 10.4307 -3.90918 16.1104c0.290039 0.910156 5.43945 16.9902 16.8096 39.2197c-5.54004 -0.209961 -11.3604 -0.30957 -17.5 -0.30957c-72.7305 0 -131.04 30.4297 -133.49 31.7197c-4.69629 2.48926 -8.50879 8.82422 -8.50879 14.1396\\nc0 5.32422 3.82129 11.6641 8.5293 14.1504c1.56934 0.820312 32.3896 16.8896 76.7793 25.8096c-64.25 75.1201 -84.0498 161.671 -84.9297 165.641c-0.210938 0.947266 -0.382812 2.50488 -0.382812 3.47559c0 3.65039 2.09375 8.71094 4.67285 11.2939\\nc3.03027 3.04004 7.12012 4.7002 11.3203 4.7002c1.14941 0 2.2998 -0.129883 3.43945 -0.379883c3.89062 -0.860352 86.5508 -19.5996 160.58 -79.7598c0 1.45996 -0.00976562 2.92969 -0.00976562 4.39941c0 118.79 59.9805 213.721 62.5303 217.7\\nc2.93945 4.58984 8.01953 7.37012 13.4697 7.37012h0.00195312c4.82812 0 10.8574 -3.30176 13.458 -7.37012c2.5498 -3.97949 62.5303 -98.9102 62.5303 -217.7c0 -1.46973 0 -2.93945 -0.00976562 -4.39941c74.0391 60.1699 156.699 78.9102 160.579 79.7598\\nc1.15039 0.259766 2.30078 0.379883 3.44043 0.379883c4.2002 0 8.29004 -1.66016 11.3203 -4.7002c3.85938 -3.87012 5.47949 -9.43945 4.2998 -14.7695c-0.879883 -3.96973 -20.6797 -90.5205 -84.9297 -165.641c44.3896 -8.91992 75.2197 -24.9893 76.7793 -25.8096z\\\" />\\n    <glyph glyph-name=\\\"check-double\\\" unicode=\\\"&#xf560;\\\" \\nd=\\\"M505 273.2c9.2998 -9.2998 9.2998 -24.5 -0.0996094 -34l-296 -296.2c-9.30078 -9.40039 -24.5 -9.40039 -33.9004 0l-168 168.1c-9.40039 9.40039 -9.40039 24.6006 0 34l39.7002 39.7002c9.2998 9.40039 24.5 9.40039 33.8994 0l111.4 -111.5l239.5 239.5\\nc9.2998 9.40039 24.5 9.40039 33.9004 0zM180.7 167.2l-112 112.2c-6.2002 6.19922 -6.2002 16.2998 0 22.5996l45.2998 45.2998c6.2002 6.2998 16.4004 6.2998 22.5996 0l55.4004 -55.5l151.5 151.5c6.2002 6.2998 16.4004 6.2998 22.5996 0l45.2002 -45.2998\\nc6.2002 -6.2002 6.2002 -16.2998 0 -22.5996l-208 -208.2c-6.2002 -6.2998 -16.3994 -6.2998 -22.5996 0z\\\" />\\n    <glyph glyph-name=\\\"cocktail\\\" unicode=\\\"&#xf561;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M296 -16c22.0898 0 40 -17.9102 40 -40c0 -4.41992 -3.58008 -8 -8 -8h-240c-4.41992 0 -8 3.58008 -8 8c0 22.0898 17.9102 40 40 40h56v125.22l-168.74 168.73c-15.5195 15.5195 -4.5293 42.0498 17.4199 42.0498h366.641c21.9492 0 32.9395 -26.5303 17.4199 -42.0498\\nl-168.74 -168.73v-125.22h56zM432 448c79.5303 0 144 -64.4697 144 -144s-64.4697 -144 -144 -144c-27.4102 0 -52.7695 8.08008 -74.5801 21.3799l35.2598 35.2598c12.0303 -5.43945 25.2803 -8.63965 39.3203 -8.63965c52.9297 0 96 43.0596 96 96s-43.0703 96 -96 96\\nc-35.3701 0 -65.9902 -19.4502 -82.6396 -48h-52.54c19.8301 55.7998 72.5693 96 135.18 96z\\\" />\\n    <glyph glyph-name=\\\"concierge-bell\\\" unicode=\\\"&#xf562;\\\" \\nd=\\\"M288 317.46c108.51 -15.5703 192 -108.64 192 -221.46h-448c0 112.82 83.4902 205.89 192 221.46v18.54h-16c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h96c8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16h-16v-18.54zM496 64\\nc8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-480c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h480z\\\" />\\n    <glyph glyph-name=\\\"cookie\\\" unicode=\\\"&#xf563;\\\" \\nd=\\\"M510.37 193.21c4.37988 -27.6602 -0.110352 -56 -12.8203 -80.96l-35.0996 -68.8701c-10.7695 -21.1328 -36.6592 -47.0273 -57.79 -57.7998l-69.1201 -35.21c-24.8301 -12.6396 -53.0098 -17.1104 -80.5205 -12.75l-76.6992 12.1396\\nc-23.3896 3.70801 -55.9639 20.3066 -72.71 37.0498l-54.7607 54.75c-16.7959 16.8027 -33.4443 49.4844 -37.1592 72.9502l-12.0801 76.2705c-0.901367 5.68848 -1.63281 14.9805 -1.63281 20.7412c0 17.5723 6.47461 44.541 14.4521 60.1982l35.1006 68.8799\\nc10.7666 21.1357 36.6562 47.0303 57.79 57.8008l69.1201 35.21c24.8291 12.6494 53.0098 17.1201 80.5195 12.7598l76.7002 -12.1504c27.5303 -4.34961 52.9795 -17.3301 72.71 -37.0498l54.7598 -54.75c16.7969 -16.8027 33.4443 -49.4844 37.1602 -72.9502zM176 80\\nc17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM208 240c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM368 112c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"cookie-bite\\\" unicode=\\\"&#xf564;\\\" \\nd=\\\"M510.52 192.18c4.10059 -27.3301 -0.349609 -55.2695 -12.9092 -79.9102l-35.1006 -68.8799c-10.7656 -21.1367 -36.6562 -47.0361 -57.79 -57.8096l-69.1299 -35.21c-24.8301 -12.6504 -53.0195 -17.1201 -80.5303 -12.7598l-76.71 12.1494\\nc-23.3916 3.70801 -55.9658 20.3105 -72.71 37.0605l-54.7695 54.7598c-16.7969 16.8057 -33.4443 49.4912 -37.1602 72.96l-12.0801 76.2695c-0.900391 5.68945 -1.63184 14.9824 -1.63184 20.7422c0 17.5752 6.47461 44.5479 14.4521 60.208l35.0996 68.8799\\nc10.7646 21.1396 36.6543 47.0391 57.79 57.8105l69.1299 35.2197c24.5898 12.5205 52.46 16.96 79.7207 12.8203c0.859375 -69.96 57.6895 -126.45 127.859 -126.45c0 -70.1699 56.5 -127.01 126.47 -127.86zM176 80c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32\\ns-32 -14.3301 -32 -32s14.3301 -32 32 -32zM208 240c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM368 112c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"crop-alt\\\" unicode=\\\"&#xf565;\\\" \\nd=\\\"M488 96c13.25 0 24 -10.7402 24 -24v-48c0 -13.25 -10.75 -24 -24 -24h-40v-40c0 -13.25 -10.75 -24 -24 -24h-48c-13.25 0 -24 10.75 -24 24v328h-160v96h224c17.6699 0 32 -14.3301 32 -32v-256h40zM160 424v-328h160v-96h-224c-17.6699 0 -32 14.3301 -32 32v256h-40\\nc-13.25 0 -24 10.75 -24 24v48c0 13.2598 10.75 24 24 24h40v40c0 13.2598 10.75 24 24 24h48c13.25 0 24 -10.7402 24 -24z\\\" />\\n    <glyph glyph-name=\\\"digital-tachograph\\\" unicode=\\\"&#xf566;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 352c17.6699 0 32 -14.3301 32 -32v-256c0 -17.6699 -14.3301 -32 -32 -32h-576c-17.6699 0 -32 14.3301 -32 32v256c0 17.6699 14.3301 32 32 32h576zM304 96v8c0 4.41992 -3.58008 8 -8 8h-224c-4.41992 0 -8 -3.58008 -8 -8v-8c0 -4.41992 3.58008 -8 8 -8h224\\nc4.41992 0 8 3.58008 8 8zM72 160c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-16zM136 160c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-16\\nc-4.41992 0 -8 -3.58008 -8 -8v-16zM200 160c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-16zM264 160c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8\\nh-16c-4.41992 0 -8 -3.58008 -8 -8v-16zM304 224v48c0 8.83984 -7.16016 16 -16 16h-208c-8.83984 0 -16 -7.16016 -16 -16v-48c0 -8.83984 7.16016 -16 16 -16h208c8.83984 0 16 7.16016 16 16zM576 96v8c0 4.41992 -3.58008 8 -8 8h-224c-4.41992 0 -8 -3.58008 -8 -8v-8\\nc0 -4.41992 3.58008 -8 8 -8h224c4.41992 0 8 3.58008 8 8z\\\" />\\n    <glyph glyph-name=\\\"dizzy\\\" unicode=\\\"&#xf567;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM152 233.4l28.7002 -28.7002c14.7002 -14.7998 37.7998 7.39941 22.5996 22.5996l-28.7002 28.7002l28.7002 28.7002c15 14.8994 -7.59961 37.5996 -22.5996 22.5996\\nl-28.7002 -28.7002l-28.7002 28.7002c-14.8994 15 -37.5996 -7.59961 -22.5996 -22.5996l28.7002 -28.7002l-28.7002 -28.7002c-15.2002 -15.0996 7.7998 -37.3994 22.5996 -22.5996zM248 32c35.2998 0 64 28.7002 64 64s-28.7002 64 -64 64s-64 -28.7002 -64 -64\\ns28.7002 -64 64 -64zM395.3 227.3l-28.7002 28.7002l28.7002 28.7002c15 14.8994 -7.59961 37.5996 -22.5996 22.5996l-28.7002 -28.7002l-28.7002 28.7002c-14.8994 15 -37.5996 -7.59961 -22.5996 -22.5996l28.7002 -28.7002l-28.7002 -28.7002\\nc-15.2002 -15.0996 7.7998 -37.3994 22.5996 -22.5996l28.7002 28.7002l28.7002 -28.7002c14.7002 -14.7998 37.7998 7.39941 22.5996 22.5996z\\\" />\\n    <glyph glyph-name=\\\"drafting-compass\\\" unicode=\\\"&#xf568;\\\" \\nd=\\\"M457.01 103.58l54.9805 -95.2305l-7.02051 -58.25c-1.2793 -10.5898 -12.3594 -16.9893 -22.1699 -12.7998l-53.9502 23.04l-54.3799 94.1904c29.9102 11.8701 57.4902 28.7197 82.54 49.0498zM499.5 198.14c-52.6201 -83.1299 -144.45 -134.14 -243.5 -134.14\\nc-35.3799 0 -69.8701 6.71973 -102.06 18.96l-70.8008 -122.63l-53.9492 -23.04c-9.81055 -4.19043 -20.8906 2.20996 -22.1709 12.7998l-7.01953 58.25l71.2803 123.46c-21.29 17.8105 -40.4102 38.3799 -55.9805 62.0205\\nc-4.99023 7.56934 -2.20996 17.9297 5.64062 22.4697l27.75 16.0703c7.40918 4.29004 16.5898 1.76953 21.3799 -5.33008c9.71973 -14.4102 21.1299 -27.3906 33.6797 -39l68.2998 118.31c-7.43945 13.6299 -12.0498 29.0303 -12.0498 45.6602c0 53.0195 42.9805 96 96 96\\ns96 -42.9805 96 -96c0 -16.6299 -4.61035 -32.0303 -12.0596 -45.6602l51.79 -89.71c-23.0508 -23.1699 -51.3809 -39.96 -82.6104 -48.9199l-51.0898 88.5c-0.69043 -0.0195312 -1.33984 -0.209961 -2.04004 -0.209961s-1.33984 0.19043 -2.04004 0.209961\\nl-67.3604 -116.68c22.1797 -7.28027 45.4805 -11.5303 69.4102 -11.5303c76.25 0 147.01 38.8496 188.12 102.38c4.64941 7.17969 13.7803 9.87012 21.2598 5.71973l28.0703 -15.5693c7.93945 -4.40039 10.9102 -14.7207 6.0498 -22.3906zM256 384\\nc-17.6699 0 -32 -14.3301 -32 -32s14.3301 -32 32 -32s32 14.3301 32 32s-14.3301 32 -32 32z\\\" />\\n    <glyph glyph-name=\\\"drum\\\" unicode=\\\"&#xf569;\\\" \\nd=\\\"M431.34 325.95c44.9004 -16.3398 80.6602 -42.7803 80.6602 -86.1006v-160.229c0 -30.2705 -27.5 -57.6797 -72 -77.8604v101.9c0 13.248 -10.752 24 -24 24s-24 -10.752 -24 -24v-118.93c-33.0498 -9.11035 -71.0703 -15.0605 -112 -16.7305v103.61\\nc0 13.248 -10.752 24 -24 24s-24 -10.752 -24 -24v-103.61c-40.9297 1.66992 -78.9502 7.62012 -112 16.7305v118.93c0 13.248 -10.752 24 -24 24s-24 -10.752 -24 -24v-101.9c-44.5 20.1807 -72 47.5898 -72 77.8604v160.229c0 107.601 219.55 112.15 256 112.15\\nc15.2197 0 62.4297 -0.910156 112.19 -9.69043l110.06 71c2.22461 1.4834 6.20117 2.6875 8.875 2.6875c4.72852 0 10.6934 -3.19238 13.3154 -7.12695l8.86914 -13.3105c1.4834 -2.22461 2.6875 -6.20117 2.6875 -8.875c0 -4.72754 -3.19238 -10.6924 -7.12695 -13.3145z\\nM256 175.76c114.87 0 208 28.6904 208 64.0898c0 21.3105 -33.9102 40.1504 -85.8604 51.75l-118.64 -76.5195c-2.22461 -1.4834 -6.20117 -2.6875 -8.875 -2.6875c-4.72852 0 -10.6934 3.19336 -13.3154 7.12695l-8.86914 13.3105\\nc-1.48535 2.22559 -2.69043 6.2041 -2.69043 8.87988c0 4.72461 3.18945 10.6875 7.12012 13.3096l72.8096 47c-15.9492 1.2002 -32.5293 1.91016 -49.6797 1.91016c-114.88 0 -208 -28.6797 -208 -64.0801c0 -35.3994 93.1201 -64.0898 208 -64.0898z\\\" />\\n    <glyph glyph-name=\\\"drum-steelpan\\\" unicode=\\\"&#xf56a;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 416c159.06 0 288 -57.3096 288 -128v-192c0 -70.6904 -128.94 -128 -288 -128s-288 57.3096 -288 128v192c0 70.6904 128.94 128 288 128zM205.01 257.64c5.11035 19.0605 2.49023 38.96 -7.37012 56.0508l-25.5996 44.3398\\nc-73.9297 -13.6406 -124.04 -39.8701 -124.04 -70.0303c0 -30.7803 52.2305 -57.46 128.7 -70.8398c13.7695 9.91016 23.8594 23.8701 28.3096 40.4795zM288 208c21.0801 0 41.4102 1 60.8896 2.7002c-8.05957 26.1299 -32.1494 45.2998 -60.8896 45.2998\\ns-52.8301 -19.1699 -60.8896 -45.2998c19.4795 -1.7002 39.8096 -2.7002 60.8896 -2.7002zM352 352v13.04c-20.4004 1.87988 -41.7998 2.95996 -64 2.95996s-43.5996 -1.08008 -64 -2.95996v-13.04c0 -35.29 28.71 -64 64 -64s64 28.71 64 64zM398.93 217.1\\nc76.6699 13.3604 129.07 40.0703 129.07 70.9004c0 30.21 -50.2803 56.5 -124.44 70.0996l-25.6494 -44.4199c-9.87012 -17.0801 -12.4902 -36.9795 -7.37988 -56.04c4.45996 -16.6396 14.5898 -30.6299 28.3994 -40.54z\\\" />\\n    <glyph glyph-name=\\\"feather-alt\\\" unicode=\\\"&#xf56b;\\\" \\nd=\\\"M512 448c-1.80957 -26.2598 -11.71 -132.86 -53.6201 -234.79l-106.54 -53.21h81.1406c-9.08008 -16.4102 -19.2002 -32.2305 -30.4502 -47.1201l-146.79 -48.8799h100.95c-35.5605 -30.0703 -79.1006 -51.0996 -132.58 -56.54\\nc-41.8105 -4.83008 -83.8701 -7.21973 -125.96 -7.36035l-57.1309 -57.0693c-9.38965 -9.37012 -24.5996 -9.37012 -33.9795 0s-9.37988 24.5693 0 33.9395l259.5 259.24c6.25 6.25 6.25 16.3799 0 22.6299s-16.4004 6.25 -22.6504 0l-178.87 -178.689\\nc1.15039 26.7998 2.90039 53.5801 5.99023 80.2393c25.4307 249.41 389.21 284.051 440.99 287.61z\\\" />\\n    <glyph glyph-name=\\\"file-contract\\\" unicode=\\\"&#xf56c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM64 376v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8\\nh-80c-4.41992 0 -8 -3.58008 -8 -8zM64 312v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8zM256.81 64c-4.19922 0 -8.13965 2.44043 -10.1592 6.5\\nc-11.9502 23.8604 -46.2305 30.3496 -66 14.1602l-13.8809 41.6396c-3.28906 9.82031 -12.4297 16.4102 -22.7695 16.4102s-19.4805 -6.59961 -22.7803 -16.4102l-18.1895 -54.6396c-1.53027 -4.58008 -5.81055 -7.66016 -10.6406 -7.66016h-12.3896\\nc-8.83984 0 -16 -7.16016 -16 -16s7.16016 -16 16 -16h12.3896c18.6201 0 35.1104 11.8701 41 29.5303l10.6104 31.8799l16.8301 -50.46c2.03027 -6.14062 7.58008 -10.4404 14.0303 -10.8906c0.389648 -0.0292969 0.759766 -0.0498047 1.13965 -0.0498047h0.00976562\\nc5.45508 0 11.8613 3.96094 14.2998 8.83984l7.6709 15.3408c2.7998 5.59961 7.93945 6.18945 10.0195 6.18945s7.21973 -0.599609 10.1699 -6.51953c7.37012 -14.7207 22.1904 -23.8604 38.6396 -23.8604h47.1904c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16h-47.1904z\\nM377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7z\\\" />\\n    <glyph glyph-name=\\\"file-download\\\" unicode=\\\"&#xf56d;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM300.45 100.64c10.1299 10.0703 3.00977 27.3604 -11.2705 27.3604h-65.1797v80\\nc0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-80h-65.1797c-14.2803 0 -21.4004 -17.29 -11.25 -27.3604l96.4199 -95.6992c6.64941 -6.61035 17.3896 -6.61035 24.04 0zM377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961\\nc6.40039 0 12.5 -2.5 17 -7z\\\" />\\n    <glyph glyph-name=\\\"file-export\\\" unicode=\\\"&#xf56e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M384 326.1v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004zM571 140c6.59961 -6.59961 6.59961 -17.4004 0 -24l-95.7002 -96.5c-10.0996 -10.0996 -27.3994 -3 -27.3994 11.2998v65.2002h-64v64h64v65.0996\\nc0 14.3008 17.2998 21.4004 27.3994 11.3008zM192 112c0 -8.7998 7.2002 -16 16 -16h176v-136c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136c0 -13.2002 10.7998 -24 24 -24h136v-128h-176\\nc-8.7998 0 -16 -7.2002 -16 -16v-32z\\\" />\\n    <glyph glyph-name=\\\"file-import\\\" unicode=\\\"&#xf56f;\\\" \\nd=\\\"M16 160h112v-64h-112c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16zM505 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7zM352 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24\\nh-336c-13.2998 0 -24 10.7002 -24 24v136h127.9v-65.0996c0 -14.3008 17.2998 -21.4004 27.3994 -11.3008l95.7002 96.4004c6.59961 6.59961 6.59961 17.2998 0 24l-95.5996 96.5c-10.1006 10.0996 -27.4004 3 -27.4004 -11.2998v-65.2002h-128v264\\nc0 13.2998 10.7002 24 24 24h200v-136z\\\" />\\n    <glyph glyph-name=\\\"file-invoice\\\" unicode=\\\"&#xf570;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M288 192v-64h-192v64h192zM377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7zM224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464\\nc0 13.2998 10.7002 24 24 24h200v-136zM64 376v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8zM64 312v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8v16\\nc0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8zM320 8v16c0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8zM320 208c0 8.83984 -7.16016 16 -16 16h-224\\nc-8.83984 0 -16 -7.16016 -16 -16v-96c0 -8.83984 7.16016 -16 16 -16h224c8.83984 0 16 7.16016 16 16v96z\\\" />\\n    <glyph glyph-name=\\\"file-invoice-dollar\\\" unicode=\\\"&#xf571;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7zM224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136z\\nM64 376v-16c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8zM64 296c0 -4.41992 3.58008 -8 8 -8h80c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-80c-4.41992 0 -8 -3.58008 -8 -8\\nv-16zM208 32.1201c23.6201 0.629883 42.6699 20.54 42.6699 45.0703c0 19.9697 -12.9902 37.8096 -31.5801 43.3896l-45 13.5c-5.16016 1.54004 -8.76953 6.78027 -8.76953 12.7295c0 7.27051 5.2998 13.1904 11.7998 13.1904h28.1104\\nc4.55957 0 8.94922 -1.29004 12.8193 -3.71973c3.24023 -2.03027 7.36035 -1.91016 10.1299 0.729492l11.75 11.21c3.53027 3.37012 3.33008 9.20996 -0.569336 12.1406c-9.10059 6.83984 -20.0801 10.7695 -31.3701 11.3496v24.29c0 4.41992 -3.58008 8 -8 8h-16\\nc-4.41992 0 -8 -3.58008 -8 -8v-24.1201c-23.6201 -0.629883 -42.6699 -20.5498 -42.6699 -45.0703c0 -19.9697 12.9893 -37.8096 31.5801 -43.3896l45 -13.5c5.15918 -1.54004 8.76953 -6.78027 8.76953 -12.7295c0 -7.27051 -5.2998 -13.1904 -11.7998 -13.1904h-28.1104\\nc-4.55957 0 -8.9502 1.2998 -12.8193 3.71973c-3.24023 2.03027 -7.36035 1.91016 -10.1309 -0.729492l-11.75 -11.21c-3.5293 -3.37012 -3.3291 -9.20996 0.570312 -12.1406c9.10059 -6.83008 20.0801 -10.7695 31.3701 -11.3496v-24.29c0 -4.41992 3.58008 -8 8 -8h16\\nc4.41992 0 8 3.58008 8 8v24.1201z\\\" />\\n    <glyph glyph-name=\\\"file-prescription\\\" unicode=\\\"&#xf572;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM292.53 132.52c-6.25 6.25 -16.3799 6.25 -22.6299 0l-29.9004 -29.8994l-33.46 33.46\\nc19.8398 10.8701 33.46 31.7002 33.46 55.9199c0 35.3496 -28.6504 64 -64 64h-80c-8.83984 0 -16 -7.16016 -16 -16v-160c0 -8.83984 7.16016 -16 16 -16h16c8.83984 0 16 7.16016 16 16v48h18.7402l59.3193 -59.3096l-30.0596 -30.0605\\nc-6.25 -6.25 -6.25 -16.3799 0 -22.6299l11.3096 -11.3096c6.25 -6.25 16.3809 -6.25 22.6309 0l30.0596 30.0596l30.0596 -30.0703c6.25 -6.25 16.3809 -6.25 22.6309 0l11.3096 11.3105c6.25 6.25 6.25 16.3799 0 22.6299l-30.0596 30.0596l29.8994 29.9004\\nc6.25 6.25 6.25 16.3799 0 22.6299zM176 176h-48v32h48c8.82031 0 16 -7.17969 16 -16s-7.17969 -16 -16 -16zM384 326.1v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004z\\\" />\\n    <glyph glyph-name=\\\"file-signature\\\" unicode=\\\"&#xf573;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M218.17 23.8604c7.25 -14.4707 21.71 -23.4404 37.8301 -23.75l128 -0.110352v-40c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136c0 -13.2002 10.7998 -24 24 -24h136.01v-46.5498l-128 -127.09\\nv-82.1201c-3.87012 0.30957 -7.46973 2.47949 -9.35938 6.25977c-11.9404 23.8604 -46.25 30.3496 -66 14.1602l-13.8809 41.6396c-3.28906 9.82031 -12.4297 16.4102 -22.7695 16.4102s-19.4805 -6.59961 -22.7803 -16.4102l-18.1895 -54.6396\\nc-1.53027 -4.58008 -5.81055 -7.66016 -10.6406 -7.66016h-12.3896c-8.83984 0 -16 -7.16016 -16 -16s7.16016 -16 16 -16h12.3896c18.6201 0 35.1104 11.8701 41 29.5303l10.6104 31.8799l16.8301 -50.4697c4.4502 -13.46 23.1104 -14.8701 29.4795 -2.09082\\nl7.6709 15.3408c2.7998 5.59961 7.93945 6.18945 10.0195 6.18945s7.21973 -0.599609 10.1699 -6.51953zM384 326.1v-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7l97.9004 -98c4.5 -4.5 7 -10.5996 7 -16.9004zM288 101.04l162.79 161.62l67.8799 -67.8799\\nl-161.68 -162.78h-68.9902v69.04zM568.54 280.67c9.9502 -9.93945 9.9502 -26.0703 0 -36.0098l-27.25 -27.25l-67.8799 67.8799l27.25 27.25c9.93945 9.94043 26.0703 9.94043 36.0098 0z\\\" />\\n    <glyph glyph-name=\\\"file-upload\\\" unicode=\\\"&#xf574;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM289.18 95.9902c14.2803 0 21.4004 17.29 11.25 27.3594l-96.4199 95.7002\\nc-6.64941 6.61035 -17.3896 6.61035 -24.04 0l-96.4199 -95.7002c-10.1396 -10.0693 -3.00977 -27.3594 11.2705 -27.3594h65.1797v-80c0 -8.83984 7.16016 -16 16 -16h32c8.83984 0 16 7.16016 16 16v80h65.1797zM377 343c4.5 -4.5 7 -10.5996 7 -16.9004v-6.09961h-128\\nv128h6.09961c6.40039 0 12.5 -2.5 17 -7z\\\" />\\n    <glyph glyph-name=\\\"fill\\\" unicode=\\\"&#xf575;\\\" \\nd=\\\"M502.63 230.94c12.4902 -12.5 12.4902 -32.7607 0 -45.2607l-221.57 -221.569c-18.75 -18.75 -43.3096 -28.1201 -67.8799 -28.1201c-24.5596 0 -49.1201 9.37988 -67.8701 28.1201l-117.189 117.189c-37.4902 37.4902 -37.4902 98.2598 0 135.75l94.7598 94.7598\\nl-86.1895 86.1807c-6.24023 6.25 -6.24023 16.3799 0 22.6299l22.6191 22.6104c6.24023 6.25 16.3809 6.25 22.6201 0l86.1807 -86.1807l81.5801 81.5801c6.23926 6.25 14.4297 9.37012 22.6191 9.37012c8.19043 0 16.3809 -3.12012 22.6309 -9.37012zM386.41 159.97\\nl48.3496 48.3398l-162.45 162.44l-58.9492 -58.9502l58.6094 -58.5996c12.4902 -12.4902 12.4902 -32.75 0 -45.2402c-12.4893 -12.4902 -32.75 -12.4902 -45.2393 0l-58.6104 58.5996l-81.6104 -81.6094l-13.1494 -13.1504\\nc-3.86035 -3.84961 -6.07031 -7.99023 -7.43066 -11.8301h320.48z\\\" />\\n    <glyph glyph-name=\\\"fill-drip\\\" unicode=\\\"&#xf576;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M512 128c0 0 64 -92.6504 64 -128s-28.6602 -64 -64 -64s-64 28.6504 -64 64s64 128 64 128zM502.63 230.94c12.4902 -12.5 12.4902 -32.75 -0.00976562 -45.25l-221.57 -221.57c-18.7402 -18.75 -43.2998 -28.1201 -67.8701 -28.1201\\nc-24.5596 0 -49.1299 9.37988 -67.8701 28.1201l-117.189 117.189c-37.4902 37.4902 -37.4902 98.2705 0 135.75l94.7598 94.7607l-86.1895 86.1797c-6.24023 6.24023 -6.24023 16.3701 0 22.6201l22.6191 22.6201c6.24023 6.25 16.3701 6.25 22.6201 0l86.1807 -86.1904\\nl81.5801 81.5801c6.23926 6.25 14.4297 9.37012 22.6191 9.37012c8.19043 0 16.3809 -3.12012 22.6309 -9.37012zM386.41 159.97l48.3398 48.3398l-162.44 162.44l-58.9492 -58.9502l58.5996 -58.5996c12.4902 -12.4902 12.4902 -32.75 0 -45.2402\\ns-32.75 -12.4902 -45.2402 0l-58.5996 58.5996l-81.6104 -81.6094l-13.1494 -13.1504c-3.86035 -3.84961 -6.07031 -7.99023 -7.43066 -11.8301h320.48z\\\" />\\n    <glyph glyph-name=\\\"fingerprint\\\" unicode=\\\"&#xf577;\\\" \\nd=\\\"M256.12 202.04c13.2598 0 24 -10.75 23.9902 -24c1.55957 -99.1104 -15.9502 -176.61 -29.4805 -224.521c-2.97949 -10.5996 -12.6104 -17.5195 -23.0898 -17.5195c-20.9697 0 -25.8496 20.7695 -23.1201 30.4902c19.5605 69.6494 28.8398 139.3 27.7002 211.55\\nc0 13.2598 10.75 24 24 24zM255.26 283.77c56.9707 -0.839844 104.03 -46.9199 104.91 -102.72c0.790039 -50.8994 -2.99023 -102.08 -11.2695 -152.109c-0.770508 -4.6709 -7.61035 -23.1006 -27.5801 -19.7705c-13.0703 2.16016 -21.9307 14.5205 -19.7607 27.5801\\nc7.80078 47.2197 11.3809 95.5 10.6104 143.55c-0.469727 30.1299 -26.3096 55 -57.6201 55.4697c-34.5303 0.150391 -54.8594 -26.3896 -54.4502 -52.3398c0.800781 -51.4395 -4.0293 -102.93 -14.3691 -153.02c-2.69043 -12.9805 -15.3105 -21.3105 -28.3604 -18.6406\\nc-12.9697 2.6709 -21.3301 15.3809 -18.6396 28.3604c9.61914 46.6396 14.1191 94.6104 13.3691 142.55c-0.849609 54.0205 41.9004 101.16 103.16 101.09zM144.57 303.55c10.2793 -8.37012 11.8398 -23.4795 3.48926 -33.7598\\nc-18.7998 -23.0898 -28.4697 -51.0898 -28 -80.9697c0.640625 -40.6699 -2.66992 -81.4902 -9.85938 -121.33c-0.820312 -4.5498 -7.78027 -22.8604 -27.8906 -19.3604c-13.0498 2.36035 -21.6992 14.8398 -19.3594 27.8896c6.63965 36.7803 9.7002 74.4707 9.10938 112.051\\nc-0.639648 40.7197 13.1309 80.5 38.75 112c8.39062 10.2793 23.46 11.8193 33.7607 3.47949zM254.04 365.88c101.09 -1.5 184.6 -83.0801 186.16 -181.83c0.0615234 -3.97852 0.111328 -10.4375 0.111328 -14.417c0 -29.1934 -2.68848 -76.4277 -6.00195 -105.433\\nc-1.06934 -9.23047 -9.85938 -23.0605 -26.5791 -21.1104c-13.1602 1.5 -22.6104 13.4102 -21.1104 26.5801c4.2998 37.5205 6.16992 75.75 5.58008 113.63c-1.15039 73.0801 -63.4502 133.45 -138.88 134.58c-11.5303 0.0800781 -22.9502 -1.08008 -34 -3.68945\\nc-12.8906 -3 -25.8301 4.93945 -28.8906 17.8291c-3.04004 12.9102 4.94043 25.8301 17.8301 28.8906c14.9102 3.53027 30.3701 5.37988 45.7803 4.96973zM506.11 244.43c6.22949 -28.2295 6.00977 -50.1602 5.83008 -72.3398\\nc-0.110352 -13.1895 -10.8301 -23.7998 -24 -23.7998h-0.200195c-13.25 0.110352 -23.9102 10.9297 -23.7998 24.2002c0.209961 24.1895 0.00976562 40.1895 -4.7002 61.5996c-2.86035 12.9502 5.31934 25.75 18.2598 28.6104\\nc13.0996 2.92969 25.75 -5.35059 28.6104 -18.2705zM465.99 335.15c7.62012 -10.8408 5 -25.8105 -5.83984 -33.4307c-10.8604 -7.58984 -25.8105 -5 -33.4199 5.86035c-39.8906 56.8301 -105.171 91.3604 -174.62 92.3896\\nc-56.3408 0.810547 -108.92 -20.0596 -147.681 -58.8594c-37.1201 -37.1406 -57.1094 -86.5 -56.2793 -139l-0.160156 -23.6406c-0.379883 -13 -11.0498 -23.2998 -23.9707 -23.2998c-0.239258 0 -0.489258 0 -0.719727 0.0205078\\nc-13.25 0.379883 -23.6699 11.4395 -23.2803 24.6895l0.120117 21.4697c-1.04004 65.6104 23.9502 127.28 70.3203 173.71c48.0098 48.0303 112.56 73.7607 182.35 72.9209c84.79 -1.27051 164.48 -43.4404 213.181 -112.83z\\\" />\\n    <glyph glyph-name=\\\"fish\\\" unicode=\\\"&#xf578;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M327.1 352c137.46 0 248.9 -128 248.9 -160s-111.44 -160 -248.9 -160c-89.9697 0 -168.55 54.7695 -212.279 101.62l-87.3301 -66.0498c-12.1299 -9.16992 -30.2402 0.599609 -27.1406 14.6602l24.1904 109.77l-24.1797 109.76\\nc-3.10059 14.0605 15.0098 23.8398 27.1396 14.6602l87.3301 -66.0498c43.7295 46.8604 122.3 101.63 212.27 101.63zM414.53 168c13.25 0 24 10.75 24 24c0 13.2598 -10.7402 24 -24 24c-13.25 0 -24 -10.7402 -24 -24c0 -13.25 10.75 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"flushed\\\" unicode=\\\"&#xf579;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M344 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM152 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248\\ns-248 111 -248 248s111 248 248 248zM80 224c0 -39.7998 32.2002 -72 72 -72s72 32.2002 72 72s-32.2002 72 -72 72s-72 -32.2002 -72 -72zM312 48c21.2002 0 21.2002 32 0 32h-128c-21.2002 0 -21.2002 -32 0 -32h128zM344 152c39.7998 0 72 32.2002 72 72\\ns-32.2002 72 -72 72s-72 -32.2002 -72 -72s32.2002 -72 72 -72z\\\" />\\n    <glyph glyph-name=\\\"frown-open\\\" unicode=\\\"&#xf57a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM136 240c0 -17.7002 14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32zM323.3 56.7002c11.4004 -3.5 22.5 6.2002 20.5 18.0996\\nc-7 39.9004 -60.0996 61.2002 -95.7998 61.2002s-88.7998 -21.2002 -95.7998 -61.2002c-2 -11.7998 9 -21.5996 20.5 -18.0996c31.2002 9.59961 59.3994 15.2998 75.2998 15.2998s44.0996 -5.7002 75.2998 -15.2998zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32\\ns-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"glass-martini-alt\\\" unicode=\\\"&#xf57b;\\\" \\nd=\\\"M502.05 390.4l-214.05 -214.04v-192.36h56c22.0898 0 40 -17.9102 40 -40c0 -4.41992 -3.58008 -8 -8 -8h-240c-4.41992 0 -8 3.58008 -8 8c0 22.0898 17.9102 40 40 40h56v192.36l-214.05 214.04c-21.25 21.2598 -6.2002 57.5996 23.8496 57.5996h444.4\\nc30.0498 0 45.0996 -36.3398 23.8496 -57.5996zM443.77 400h-375.529l48 -48h279.529z\\\" />\\n    <glyph glyph-name=\\\"globe-africa\\\" unicode=\\\"&#xf57c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM408 224.5c0 8.55957 6.94043 15.5 15.5 15.5h18.4297c-19.0693 76.9805 -82.6992 136.37 -161.92 149.21v-21.7002c0 -8.55957 -6.93945 -15.5 -15.5 -15.5\\nh-24.21c-5.17969 0 -10.0195 -2.58984 -12.8896 -6.89941l-8.08008 -12.1104c-2.13965 -3.20996 -5.40039 -5.5 -9.13965 -6.44043l-14.4502 -3.60938c-6.90039 -1.73047 -11.7402 -7.93066 -11.7402 -15.04v-4.40039c0 -8.55957 6.94043 -15.5 15.5 -15.5h90.0498\\nh0.00292969c3.54297 0 8.45215 -2.0332 10.957 -4.54004l6.91992 -6.91992c2.91016 -2.91016 6.85059 -4.54004 10.96 -4.54004h10.0908c8.55957 0 15.5 -6.93945 15.5 -15.5c0 -6.66992 -4.27051 -12.5898 -10.6006 -14.7002l-47.3096 -15.7695\\nc-3.90039 -1.2998 -8.15039 -1 -11.8301 0.839844l-14.7207 7.36035c-7.5791 3.7998 -15.9492 5.76953 -24.4297 5.76953h-0.889648c-10.0527 -0.00195312 -24.7383 -4.89941 -32.7803 -10.9297l-27.5801 -20.6904c-13.75 -10.3193 -21.8496 -26.5098 -21.8496 -43.6992\\nv-14.0605c0.00195312 -12.4902 7.16992 -29.7959 16 -38.6299c10.25 -10.2402 24.1396 -16 38.6299 -16h25.8799c8.55957 0 15.5 -6.94043 15.5 -15.5v-29.8896v-0.00390625c0 -10.2822 3.73145 -26.0898 8.33008 -35.2861\\nc4.7002 -9.40039 14.3096 -15.3398 24.8203 -15.3398c8.19824 0.000976562 18.542 5.53809 23.0898 12.3594l13.0293 19.5498c5.9248 8.88477 17.125 21.9482 25 29.1602c2.4707 2.27051 4.14062 5.27051 4.76074 8.56055l4.2998 22.8301\\nc0.439453 2.3291 1.41016 4.5293 2.83008 6.42969l18.7402 24.9795c2.00977 2.68066 3.09961 5.9502 3.09961 9.30078v11.3398c0 8.55957 -6.94043 15.5 -15.5 15.5h-8.20996c-5.17969 0 -10.0205 2.58984 -12.8896 6.89941l-13.2402 19.8604\\nc-5.66992 8.50977 -1.70996 20.0703 7.99023 23.2998l2.64941 0.879883c1.31641 0.4375 3.50977 0.792969 4.89746 0.792969c2.5918 0 6.44531 -1.16602 8.60254 -2.60254l18.21 -12.1396c2.15527 -1.43945 6.00781 -2.60742 8.59961 -2.60742\\nc2.01953 0 5.125 0.733398 6.93066 1.63672l15.3896 7.7002c5.25 2.62012 8.57031 7.99023 8.57031 13.8604v6.92969z\\\" />\\n    <glyph glyph-name=\\\"globe-americas\\\" unicode=\\\"&#xf57d;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM330.29 82.4004c7.56934 7.52832 13.7168 22.3037 13.7197 32.9795v0.00488281c0 6.97266 -4 16.6338 -8.92969 21.5654l-13.6904 13.6895\\nc-6.00977 6 -14.1396 9.37012 -22.6299 9.37012h-66.75c-9.41016 4.70996 -21.4795 32 -32 32c-10.5195 0 -20.8994 2.4502 -30.3096 7.16016l-11.0801 5.54004c-4.0498 2.03027 -6.61035 6.16016 -6.61035 10.6904v0.00292969c0 4.75391 3.66016 9.83301 8.16992 11.3369\\nl31.1699 10.3896c1.3584 0.452148 3.62305 0.818359 5.05469 0.818359c3.30078 0 8.00293 -1.75488 10.4961 -3.91797l9.2793 -8.06055c1.4502 -1.25977 3.31055 -1.95996 5.24023 -1.95996h5.63965c5.94043 0 9.81055 6.25977 7.15039 11.5801l-15.5898 31.1904\\nc-0.464844 0.931641 -0.84082 2.53223 -0.84082 3.57227c0 1.86621 1.08398 4.43555 2.4209 5.7373l9.91992 9.65039c1.5 1.45996 3.5 2.26953 5.58008 2.26953h8.99023h0.00292969c1.82812 0 4.3623 1.04883 5.65625 2.33984l8 8\\nc3.12012 3.12012 3.12012 8.19043 0 11.3105l-4.68945 4.68945c-3.12012 3.12012 -3.12012 8.19043 0 11.3105l10.3398 10.3398l4.69043 4.67969c6.25 6.25 6.25 16.3799 0 22.6299l-28.3008 28.3008c-8.26953 -0.310547 -16.3994 -1.12988 -24.3896 -2.41992v-11.3008\\nc0 -11.8994 -12.5195 -19.6299 -23.1602 -14.3096l-24.0098 12.0098c-45.8398 -19.8496 -82.7305 -56.3896 -103.2 -101.89c9.92969 -14.7197 25.21 -37.3701 34.5898 -51.1406c4.29395 -6.3252 12.3848 -15.6172 18.0605 -20.7393l0.799805 -0.720703\\nc9.5498 -8.60938 20.1699 -15.9697 31.6504 -21.75c14 -7.0498 34.4395 -18.1592 48.8096 -26.1094c10.1904 -5.62988 16.46 -16.3301 16.46 -27.9707v-32.0098c0 -8.49023 3.37012 -16.6299 9.37012 -22.6299c14.9902 -14.9902 24.3203 -38.6299 22.6299 -51.25v-27.3799\\nc14.6504 0 28.8896 1.69043 42.6504 4.69043l17.3896 46.8496c2.04004 5.49023 3.25977 11.21 4.76953 16.8701c1.07031 4.00977 3.18066 7.70996 6.1709 10.71c3.31934 3.33008 7.40918 7.39941 11.3096 11.2803zM417 173.75l29.1797 -7.29004\\nc1.08008 8.37988 1.82031 16.8701 1.82031 25.54c0 32.1299 -7.7998 62.4102 -21.3203 89.3301l-12.9795 -6.49023c-3.74023 -1.85938 -6.91992 -4.67969 -9.24023 -8.14941l-19.5898 -29.3809c-2.22754 -3.33594 -4.03516 -9.29883 -4.03516 -13.3096\\ns1.80762 -9.97363 4.03516 -13.3096l17.9795 -26.9707c3.31055 -4.96973 8.36035 -8.51953 14.1504 -9.96973z\\\" />\\n    <glyph glyph-name=\\\"globe-asia\\\" unicode=\\\"&#xf57e;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM236.66 199.77l17.3701 28.9502c1.7998 2.99023 6.2002 2.82031 7.75977 -0.299805c1.34961 -2.70996 4.12012 -4.41992 7.15039 -4.41992h3.05957\\nc4.41992 0 8 3.58008 8 8v78.1201c0 6.05957 -3.41992 11.5996 -8.83984 14.3096l-10.8301 5.41016c-5.49023 2.75 -5.96973 10.4004 -0.860352 13.8105l50.1602 38.5293c-19.4297 6.31055 -40.1201 9.82031 -61.6299 9.82031c-110.28 0 -200 -89.7197 -200 -200\\nc0 -10.9199 1.12012 -21.5498 2.80957 -31.9902h62.5703c4.24023 0 8.31055 1.69043 11.3105 4.69043l19.4697 19.46c3.85938 3.85938 10.3701 2.7998 12.8096 -2.08008l22.6201 -45.2305c2.70996 -5.42969 8.25 -8.84961 14.3105 -8.84961h6.10938\\nc8.83984 0 16 7.16016 16 16v9.37012c0 4.24023 -1.68945 8.30957 -4.68945 11.3096l-5.66016 5.66016c-3.12012 3.12012 -3.12012 8.19043 0 11.3105l5.66016 5.65918c3 3 7.06934 4.69043 11.3096 4.69043h0.310547c5.61914 0 10.8291 2.9502 13.7197 7.76953z\\nM408 89.5703l-0.00976562 24.5996c0 4.24023 -1.69043 8.31055 -4.69043 11.3105l-11.9102 11.9092c-1.5 1.5 -2.33984 3.54004 -2.33984 5.66016v12.9307c0 2.20996 -1.79004 4 -4 4h-6.05957c-1.78027 0 -3.33984 -1.1709 -3.83984 -2.88086l-4.2002 -14.4697\\nc-0.490234 -1.7002 -2.06055 -2.87988 -3.83984 -2.87988h-3.80078c-1.4707 0.000976562 -3.12305 1.10254 -3.68945 2.45996l-5.35059 12.8496c-1.23926 2.99023 -4.15918 4.93066 -7.38965 4.93066h-12.0898h-0.0117188c-1.4082 0 -3.48145 -0.663086 -4.62793 -1.48047\\nl-23.71 -16.8896c-1.73047 -1.23047 -3.61035 -2.25977 -5.59082 -3.0498l-39.3398 -15.7402c-3.04004 -1.21973 -5.0293 -4.16016 -5.0293 -7.42969v-10.2002v-0.00292969c0 -1.8291 1.04785 -4.36328 2.33984 -5.65723l11.9102 -11.9102\\nc3 -3 7.06934 -4.68945 11.3096 -4.68945h10.3398c1.31055 0 2.61035 0.15918 3.87988 0.479492l21.2705 5.32031c1.76465 0.441406 4.67383 0.798828 6.49316 0.798828c6.12012 0 14.5986 -3.51172 18.9268 -7.83887l13.0098 -13.0098\\nc3 -3 7.07031 -4.69043 11.3096 -4.69043h15.1602c4.24023 0 8.31055 1.69043 11.3105 4.69043l9.56934 9.56934c3 3 4.69043 7.07031 4.69043 11.3105z\\\" />\\n    <glyph glyph-name=\\\"grimace\\\" unicode=\\\"&#xf57f;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM144 48v40h-40v-8c0 -17.7002 14.2998 -32 32 -32h8zM144 104v40h-8c-17.7002 0 -32 -14.2998 -32 -32v-8h40zM136 240c0 -17.7002 14.2998 -32 32 -32s32 14.2998 32 32\\ns-14.2998 32 -32 32s-32 -14.2998 -32 -32zM208 48v40h-48v-40h48zM208 104v40h-48v-40h48zM272 48v40h-48v-40h48zM272 104v40h-48v-40h48zM336 48v40h-48v-40h48zM336 104v40h-48v-40h48zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32\\ns14.2998 -32 32 -32zM392 80v8h-40v-40h8c17.7002 0 32 14.2998 32 32zM392 104v8c0 17.7002 -14.2998 32 -32 32h-8v-40h40z\\\" />\\n    <glyph glyph-name=\\\"grin\\\" unicode=\\\"&#xf580;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM328 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM168 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32\\ns32 14.2998 32 32s-14.2998 32 -32 32zM248 16c60.5996 0 134.5 38.2998 143.8 93.2998c1.90039 11.7998 -9.39941 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002\\nc-11.4004 3.7002 -22.7002 -6.10059 -20.7002 -17.9004c9.2998 -55 83.2002 -93.2998 143.8 -93.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-alt\\\" unicode=\\\"&#xf581;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM311.7 311.3c-12.4004 -18.3994 -15.2002 -36.8994 -15.7002 -55.2998c0.599609 -18.4004 3.2998 -36.9004 15.7002 -55.2998c8 -11.7002 25.0996 -11.4004 32.7002 0\\nc12.3994 18.3994 15.1992 36.8994 15.6992 55.2998c-0.599609 18.4004 -3.2998 36.9004 -15.6992 55.2998c-8 11.7002 -25.1006 11.4004 -32.7002 0zM151.7 311.3c-12.4004 -18.3994 -15.2002 -36.8994 -15.7002 -55.2998\\nc0.599609 -18.4004 3.2998 -36.9004 15.7002 -55.2998c8 -11.7002 25.0996 -11.4004 32.7002 0c12.3994 18.3994 15.1992 36.8994 15.6992 55.2998c-0.599609 18.4004 -3.2998 36.9004 -15.6992 55.2998c-8 11.7002 -25.1006 11.4004 -32.7002 0zM248 16\\nc60.5996 0 134.5 38.2998 143.8 93.2998c1.90039 11.7998 -9.2998 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.4004 3.7002 -22.7002 -6.10059 -20.7002 -17.9004\\nc9.2998 -55 83.2002 -93.2998 143.8 -93.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-beam\\\" unicode=\\\"&#xf582;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM328 296c-23.7998 0 -52.7002 -29.2998 -55.7998 -71.4004c-0.700195 -8.5 10.7998 -11.7998 14.8994 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006\\nc12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17c4.10059 -7.39941 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004zM168 296c-23.7998 0 -52.7002 -29.2998 -55.7998 -71.4004c-0.700195 -8.5 10.7002 -11.8994 14.8994 -4.5l9.5 17\\nc7.7002 13.7002 19.2002 21.6006 31.5 21.6006c12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17c4.10059 -7.39941 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004zM248 16c60.5996 0 134.5 38.2998 143.8 93.2998\\nc1.90039 11.7998 -9.2998 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.3008 3.7002 -22.7002 -6 -20.7002 -17.9004c9.2998 -55 83.2002 -93.2998 143.8 -93.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-beam-sweat\\\" unicode=\\\"&#xf583;\\\" horiz-adv-x=\\\"504\\\" \\nd=\\\"M456 320c-26.5 0 -48 21 -48 47c0 20 28.5 60.4004 41.5996 77.7998c3.2002 4.2998 9.60059 4.2998 12.8008 0c13.0996 -17.3994 41.5996 -57.7998 41.5996 -77.7998c0 -26 -21.5 -47 -48 -47zM456 288c6.7998 0 13.2002 1.09961 19.5 2.59961\\nc13.0996 -30.1992 20.5 -63.5 20.5 -98.5996c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248c50.2998 0 97 -15.0996 136.1 -40.7998c-7.7998 -18 -8.09961 -27.7998 -8.09961 -32.2002c0 -43.5996 35.9004 -79 80 -79zM328 296\\nc-23.7998 0 -52.7002 -29.2998 -55.7998 -71.4004c-0.700195 -8.5 10.7998 -11.8994 14.8994 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006c12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17c4.10059 -7.5 15.6006 -4.09961 14.9004 4.5\\nc-3.2998 42.1006 -32.2002 71.4004 -56 71.4004zM168 296c-23.7998 0 -52.7002 -29.2998 -55.7998 -71.4004c-0.700195 -8.5 10.7002 -11.8994 14.8994 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006c12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17\\nc4.10059 -7.5 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004zM248 16c60.5996 0 134.5 38.2998 143.8 93.2998c1.90039 11.7002 -9.2002 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002\\ns-92.9004 5.5 -123.1 15.2002c-11.4004 3.7002 -22.7002 -6.10059 -20.7002 -17.9004c9.2998 -55 83.2002 -93.2998 143.8 -93.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-hearts\\\" unicode=\\\"&#xf584;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM90.4004 264.4c-7.7002 -20.2002 3.7998 -41.8008 24.1992 -47.2002l70.2002 -18.2002c4.60059 -1.2002 9.2998 1.5 10.5 6l19.4004 69.9004\\nc5.59961 20.2998 -7.40039 41.0996 -28.7998 44.5c-18.7002 3 -36.5 -9.80078 -41.5 -27.9004l-2 -7.09961l-7.10059 1.89941c-18.2002 4.7998 -38.2002 -4.2998 -44.8994 -21.8994zM248 16c60.5996 0 134.5 38.2998 143.8 93.2998\\nc1.90039 11.7998 -9.2998 21.5 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.5 3.59961 -22.7002 -6.10059 -20.7002 -17.9004c9.2998 -55 83.2002 -93.2998 143.8 -93.2998zM381.4 217.3\\nc20.3994 5.2998 31.8994 26.9004 24.1992 47.2002c-6.69922 17.5996 -26.6992 26.5996 -44.8994 21.9004l-7.10059 -1.90039l-2 7.09961c-5.09961 18.1006 -22.8994 30.9004 -41.5 27.9004c-21.3994 -3.40039 -34.3994 -24.2002 -28.7998 -44.5l19.4004 -69.9004\\nc1.2998 -4.5 6 -7.19922 10.5 -6z\\\" />\\n    <glyph glyph-name=\\\"grin-squint\\\" unicode=\\\"&#xf585;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM281.8 250.3c-7.7002 -4.7002 -7.7002 -15.8994 0 -20.5996l80 -48c11.5 -6.7998 24.1006 7.59961 15.4004 18l-33.6006 40.2998l33.6006 40.2998\\nc8.59961 10.2998 -3.7998 24.9004 -15.4004 18zM118.8 280.3l33.6006 -40.2998l-33.6006 -40.2998c-8.59961 -10.4004 3.90039 -24.7998 15.4004 -18l80 48c7.7998 4.7002 7.7998 15.8994 0 20.5996l-80 48c-11.6006 6.90039 -24 -7.7002 -15.4004 -18zM248 16\\nc60.5996 0 134.5 38.2998 143.8 93.2998c1.90039 11.7002 -9.2002 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.3008 3.7002 -22.7002 -6 -20.7002 -17.9004\\nc9.2998 -55 83.2002 -93.2998 143.8 -93.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-squint-tears\\\" unicode=\\\"&#xf586;\\\" \\nd=\\\"M409.6 336.1c-5.59961 -0.799805 -10.2998 3.90039 -9.5 9.40039c3.30078 22.5996 12 73.5 26.8008 88.2998c19.0996 19.2002 50.6992 18.9004 70.2998 -0.700195c19.5996 -19.5996 19.8994 -51 0.700195 -70.1992\\nc-14.8008 -14.8008 -65.7002 -23.6006 -88.3008 -26.8008zM102.4 47.9004c5.59961 0.799805 10.2998 -3.90039 9.5 -9.40039c-3.30078 -22.5996 -12 -73.5 -26.8008 -88.2998c-19.1992 -19.2002 -50.5996 -18.9004 -70.1992 0.700195\\nc-19.6006 19.5996 -19.9004 51.0996 -0.800781 70.1992c14.8008 14.8008 65.7002 23.6006 88.3008 26.8008zM414.1 304.4c24 3.5 42.1006 7.39941 56.5 11.5c54.8008 -94.9004 42 -218.2 -39.1992 -299.301c-81.2002 -81.0996 -204.5 -94 -299.301 -39.1992\\nc4.10059 14.3994 8.10059 32.5 11.5 56.5c2.90039 20.5 -12.5 49.5996 -45.6992 45.6992c-24.1006 -3.5 -42.1006 -7.39941 -56.5 -11.5c-54.8008 94.9004 -41.9004 218.2 39.1992 299.301c81.2002 81.0996 204.5 94 299.301 39.1992\\nc-4.10059 -14.3994 -8.10059 -32.5 -11.5 -56.5c-2.90039 -20.5996 12.6992 -49.5996 45.6992 -45.6992zM255.7 342l-22.5 -90.5996c-2.2002 -8.60059 5.59961 -16.7002 14.5 -14.5l90.5 22.5996c13.0996 3.2998 11.5996 22.4004 -1.7998 23.5996l-52.3008 4.80078\\nl-4.7998 52.2998c-1.2002 13.2998 -20.2998 15 -23.5996 1.7998zM164.8 111.7c1.2998 -13.4004 20.4004 -14.9004 23.5 -1.7002l22.6006 90.5c2.19922 8.7002 -5.7002 16.7002 -14.5 14.5l-90.5 -22.5996c-13.1006 -3.30078 -11.6006 -22.4004 1.7998 -23.6006\\nl52.2998 -4.7998zM380.5 67.5c42.7998 42.9004 68 122.3 35.7002 167.6c-7.10059 9.90039 -21.9004 8.5 -27.2998 -2c-14.6006 -28.1992 -42.4004 -63.8994 -76.3008 -97.7998c-33.8994 -33.8994 -69.5 -61.7002 -97.7998 -76.2998\\nc-10.7002 -5.40039 -11.7998 -20.2998 -2 -27.2002c14.4004 -10.2002 32.1006 -14.7002 51 -14.7002c41 0 87.4004 21.1006 116.7 50.4004z\\\" />\\n    <glyph glyph-name=\\\"grin-stars\\\" unicode=\\\"&#xf587;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM94.5996 279.1c-6.19922 -1 -8.89941 -8.59961 -4.2998 -13.2998l25.4004 -24.5996l-6 -34.9004c-1 -6.2002 5.2998 -11 11 -7.89941l31.2998 16.2998l31.2002 -16.2002\\nc5.7002 -3.09961 12 1.7002 11 7.90039l-6 34.8994l25.3994 24.6006c4.60059 4.59961 1.90039 12.1992 -4.2998 13.1992l-34.8994 5l-15.5 31.6006c-2.90039 5.7998 -11 5.7998 -13.9004 0l-15.5 -31.6006zM248 16c60.5996 0 134.5 38.2998 143.8 93.2998\\nc1.90039 11.7998 -9.2002 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.4004 3.59961 -22.7002 -6.10059 -20.7002 -17.9004c9.2998 -55 83.2002 -93.2998 143.8 -93.2998zM405.7 265.9\\nc4.59961 4.59961 1.89941 12.1992 -4.40039 13.0996l-34.8994 5l-15.5 31.5996c-2.90039 5.80078 -11 5.80078 -13.9004 0l-15.5 -31.5996l-34.9004 -5c-6.19922 -1 -8.7998 -8.59961 -4.2998 -13.2002l25.4004 -24.5996l-6 -34.9004c-1 -6.2002 5.2998 -11 11 -7.89941\\nl31.2998 16.2998l31.2998 -16.2002c5.7002 -3.09961 12 1.7002 11 7.90039l-6 34.8994z\\\" />\\n    <glyph glyph-name=\\\"grin-tears\\\" unicode=\\\"&#xf588;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M102.4 191.9c5.59961 0.799805 10.2998 -3.90039 9.5 -9.40039c-3.30078 -22.5996 -12 -73.5 -26.8008 -88.2998c-19.1992 -19.2002 -50.5996 -18.9004 -70.1992 0.700195c-19.6006 19.5996 -19.9004 51.0996 -0.800781 70.1992\\nc14.8008 14.8008 65.7002 23.6006 88.3008 26.8008zM625.8 165.1c19.2002 -19.0996 18.7998 -50.6992 -0.799805 -70.2998c-19.5996 -19.5996 -51 -19.8994 -70.2002 -0.700195c-14.7998 14.8008 -23.5996 65.7002 -26.7998 88.3008c-0.799805 5.59961 4 10.2998 9.5 9.5\\nc22.5996 -3.30078 73.5 -12 88.2998 -26.8008zM496.4 177.9c11.7998 -82.3008 29.8994 -100.4 35.7998 -106.301c0.899414 -1 2 -1.59961 3 -2.5c-42.7002 -74.6992 -123 -125.1 -215.2 -125.1s-172.5 50.4004 -215.2 125c1 0.900391 2.10059 1.59961 3 2.5\\nc5.90039 6 24 24.0996 35.7998 106.4c2.90039 20.3994 -12.5 49.5996 -45.6992 45.6992c-8.90039 -1.2998 -16.8008 -2.69922 -24.3008 -4.09961c13.7002 124 118.7 220.5 246.4 220.5s232.7 -96.5 246.4 -220.5c-7.5 1.40039 -15.4004 2.7998 -24.3008 4.09961\\nc-26.5996 3.80078 -49.5 -19.0996 -45.6992 -45.6992zM400 296c-23.7998 0 -52.7002 -29.2998 -55.7998 -71.4004c-0.700195 -8.5 10.7002 -11.8994 14.8994 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006c12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17\\nc4.10059 -7.5 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004zM240 296c-23.7998 0 -52.7002 -29.2998 -55.7998 -71.4004c-0.700195 -8.5 10.7002 -11.8994 14.8994 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006\\nc12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17c4.10059 -7.5 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004zM320 16c60.5996 0 134.5 38.2998 143.8 93.2998c1.90039 11.7998 -9.2998 21.6006 -20.7002 17.9004\\nc-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.5 3.7002 -22.7002 -6.2002 -20.7002 -17.9004c9.2998 -55 83.2002 -93.2998 143.8 -93.2998z\\\" />\\n    <glyph glyph-name=\\\"grin-tongue\\\" unicode=\\\"&#xf589;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248c0 -106.3 -67 -196.7 -161 -232c5.59961 12.2002 9 25.7002 9 40v45.5c24.7002 16.2002 43.5 38.0996 47.7998 63.7998c1.90039 11.7998 -9.2998 21.5 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002\\ns-92.9004 5.5 -123.1 15.2002c-11.4004 3.59961 -22.7002 -6.10059 -20.7002 -17.9004c4.2998 -25.7002 23.0996 -47.5996 47.7998 -63.7998v-45.5c0 -14.2998 3.40039 -27.7998 9 -40c-94 35.2998 -161 125.7 -161 232c0 137 111 248 248 248zM168 208\\nc17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM293.1 73.4004c0.800781 -0.400391 -0.5 0.299805 19 -9.30078v-64\\nc0 -35.5996 -29.1992 -64.5 -64.8994 -64c-35.1006 0.400391 -63.1006 29.7002 -63.1006 64.9004v63c19.2002 9.59961 18 9 18.9004 9.40039c14.4004 6.5 31.0996 -2.2002 34.5996 -17.6006l1.80078 -7.7998c2.09961 -9.2002 15.1992 -9.2002 17.2998 0l1.7998 7.7998\\nc3.5 15.4004 20.2002 24.1006 34.5996 17.6006z\\\" />\\n    <glyph glyph-name=\\\"grin-tongue-squint\\\" unicode=\\\"&#xf58a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M293.1 73.4004c0.800781 -0.400391 -0.5 0.299805 19 -9.30078v-64c0 -35.5996 -29.1992 -64.5 -64.8994 -64c-35.1006 0.400391 -63.1006 29.7002 -63.1006 64.9004v63c19.2002 9.59961 18 9 18.9004 9.40039c14.4004 6.5 31.0996 -2.2002 34.5996 -17.6006\\nl1.80078 -7.7998c2.09961 -9.2002 15.1992 -9.2002 17.2998 0l1.7998 7.7998c3.5 15.4004 20.2002 24.1006 34.5996 17.6006zM248 440c137 0 248 -111 248 -248c0 -106.3 -67 -196.7 -161 -232c5.59961 12.2002 9 25.7002 9 40v45.5\\nc24.7002 16.2002 43.5 38.0996 47.7998 63.7998c1.90039 11.7998 -9.2998 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.5 3.59961 -22.7002 -6.10059 -20.7002 -17.9004\\nc4.2998 -25.7002 23.0996 -47.5996 47.7998 -63.7998v-45.5c0 -14.2998 3.40039 -27.7998 9 -40c-94 35.2998 -161 125.7 -161 232c0 137 111 248 248 248zM214.2 229.7c7.7002 4.7002 7.7002 15.8994 0 20.5996l-80 48c-11.6006 6.90039 -24 -7.7002 -15.4004 -18\\nl33.6006 -40.2998l-33.6006 -40.2998c-8.59961 -10.4004 3.90039 -24.7998 15.4004 -18zM377.2 199.7l-33.6006 40.2998l33.6006 40.2998c8.5 10.2998 -3.7002 24.9004 -15.4004 18l-80 -48c-7.7998 -4.7002 -7.7998 -15.8994 0 -20.5996l80 -48\\nc11.5 -6.7998 24.1006 7.59961 15.4004 18z\\\" />\\n    <glyph glyph-name=\\\"grin-tongue-wink\\\" unicode=\\\"&#xf58b;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M344 264c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM248 440c137 0 248 -111 248 -248c0 -106.3 -67 -196.7 -161 -232c5.59961 12.2002 9 25.7002 9 40v45.5c24.7002 16.2002 43.5 38.0996 47.7998 63.7998\\nc1.90039 11.7998 -9.2002 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002c-11.4004 3.59961 -22.7002 -6.10059 -20.7002 -17.9004c4.2998 -25.7002 23.0996 -47.5996 47.7998 -63.7998v-45.5\\nc0 -14.2998 3.40039 -27.7998 9 -40c-94 35.2998 -161 125.7 -161 232c0 137 111 248 248 248zM192 215c8.40039 -7.40039 21.5996 -0.299805 20 10.7998c-4 25.2002 -34.2002 42.1006 -59.9004 42.1006c-25.6992 0 -55.8994 -16.9004 -59.8994 -42.1006\\nc-1.7998 -11.0996 11.2998 -18.2002 19.7998 -10.7998l9.5 8.5c14.7998 13.2002 46.2002 13.2002 61 0zM344 176c35.2998 0 64 28.7002 64 64s-28.7002 64 -64 64s-64 -28.7002 -64 -64s28.7002 -64 64 -64zM293.1 73.4004c0.800781 -0.400391 -0.5 0.299805 19 -9.30078\\nv-64c0 -35.5996 -29.1992 -64.5 -64.8994 -64c-35.1006 0.400391 -63.1006 29.7002 -63.1006 64.9004v63c19.2002 9.59961 18 9 18.9004 9.40039c14.4004 6.5 31.0996 -2.2002 34.5996 -17.6006l1.80078 -7.7998c2.09961 -9.2002 15.1992 -9.2002 17.2998 0l1.7998 7.7998\\nc3.5 15.4004 20.2002 24.1006 34.5996 17.6006z\\\" />\\n    <glyph glyph-name=\\\"grin-wink\\\" unicode=\\\"&#xf58c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M0 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM200 240c0 17.7002 -14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32zM368 215c8.5 -7.40039 21.5996 -0.200195 20 10.7998\\nc-4 25.2002 -34.2002 42.1006 -59.9004 42.1006c-25.6992 0 -55.8994 -16.9004 -59.8994 -42.1006c-1.7998 -11.2002 11.5 -18.2002 19.7998 -10.7998l9.5 8.5c14.7998 13.2002 46.2002 13.2002 61 0zM124.9 127.2c-11.4004 3.7002 -22.7002 -6 -20.7002 -17.9004\\nc9.2998 -55 83.2002 -93.2998 143.8 -93.2998s134.6 38.2998 143.8 93.2998c1.90039 11.9004 -9.39941 21.6006 -20.7002 17.9004c-30.1992 -9.7002 -75.0996 -15.2002 -123.1 -15.2002s-92.9004 5.5 -123.1 15.2002z\\\" />\\n    <glyph glyph-name=\\\"grip-horizontal\\\" unicode=\\\"&#xf58d;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M96 160c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM256 160c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64\\nc0 17.6699 14.3301 32 32 32h64zM416 160c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM96 352c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64\\nc-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM256 352c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM416 352c17.6699 0 32 -14.3301 32 -32v-64\\nc0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64z\\\" />\\n    <glyph glyph-name=\\\"grip-vertical\\\" unicode=\\\"&#xf58e;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M96 416c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM96 256c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64\\nc0 17.6699 14.3301 32 32 32h64zM96 96c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM288 416c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64\\nc-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM288 256c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64zM288 96c17.6699 0 32 -14.3301 32 -32v-64\\nc0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h64z\\\" />\\n    <glyph glyph-name=\\\"headphones-alt\\\" unicode=\\\"&#xf58f;\\\" \\nd=\\\"M160 160c17.6699 0 32 -14.3496 32 -32.0596v-127.881c0 -17.6992 -14.3301 -32.0596 -32 -32.0596h-16c-35.3496 0 -64 28.71 -64 64.1201v63.7598c0 35.4199 28.6504 64.1201 64 64.1201h16zM368 160c35.3496 0 64 -28.71 64 -64.1201v-63.7598\\nc0 -35.4102 -28.6504 -64.1201 -64 -64.1201h-16c-17.6699 0 -32 14.3604 -32 32.0596v127.881c0 17.71 14.3301 32.0596 32 32.0596h16zM256 416c143.09 0 251.43 -119.13 256 -256v-112c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v112\\nc0 114.67 -93.3301 207.8 -208 207.82c-114.67 -0.0205078 -208 -93.1504 -208 -207.82v-112c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v112c4.57031 136.87 112.91 256 256 256z\\\" />\\n    <glyph glyph-name=\\\"headset\\\" unicode=\\\"&#xf590;\\\" \\nd=\\\"M192 240v-112c0 -17.6699 -14.3301 -32 -32 -32h-16c-35.3496 0 -64 28.6504 -64 64v48c0 35.3496 28.6504 64 64 64h16c17.6699 0 32 -14.3301 32 -32zM368 96h-16c-17.6699 0 -32 14.3301 -32 32v112c0 17.6699 14.3301 32 32 32h16c35.3496 0 64 -28.6504 64 -64v-48\\nc0 -35.3496 -28.6504 -64 -64 -64zM256 448c142.82 0 251.42 -118.83 256 -256v-165.72c0 -49.8604 -40.4199 -90.2803 -90.2803 -90.2803h-181.72c-26.5098 0 -48 21.4902 -48 48s21.4902 48 48 48h32c26.5098 0 48 -21.4902 48 -48h101.72\\nc23.3506 0 42.2803 18.9297 42.2803 42.2803c0 0 -0.0400391 163.29 -0.120117 165.72h0.120117c0 114.69 -93.3096 208 -208 208s-208 -93.3096 -208 -208v-16c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v16c4.58008 137.17 113.18 256 256 256z\\n\\\" />\\n    <glyph glyph-name=\\\"highlighter\\\" unicode=\\\"&#xf591;\\\" horiz-adv-x=\\\"544\\\" \\nd=\\\"M0 -31.9805l68.3301 70.4707l67.04 -67.04l-35.4502 -35.4502zM124.61 208.03l41.5195 35.4395l173.34 -173.34l-35.5498 -41.6396c-9.5 -10.7705 -24.4199 -14.9805 -38.1504 -10.7803l-42.7393 13.0801l-50.8604 -50.8604l-96.2295 96.2305l50.9297 50.9395\\nl-13.0498 42.8301c-0.876953 2.87891 -1.58887 7.65625 -1.58887 10.665c0 9.11328 5.5459 21.4043 12.3789 27.4355zM527.92 368.73c20.5 -20.5 21.5303 -53.3906 2.34961 -75.1309l-169.949 -199.06l-169.771 169.78l199.05 169.96\\nc21.7402 19.1699 54.6309 18.1396 75.1201 -2.35059z\\\" />\\n    <glyph glyph-name=\\\"hot-tub\\\" unicode=\\\"&#xf593;\\\" \\nd=\\\"M414.21 270.35c-3.15039 25.3906 -14.6104 47.9707 -31.9697 62.1406c-27.7305 22.6299 -45.79 58.0498 -50.1299 97.1602c-1.09082 9.7793 6.48926 18.3496 16 18.3496h16.1201c7.98926 0 14.7295 -6.13965 15.7393 -14.3398\\nc3.16016 -25.4004 14.6104 -47.9805 31.9805 -62.1504c27.7295 -22.6299 45.79 -58.0498 50.1299 -97.1602c1.08008 -9.7793 -6.49023 -18.3496 -16 -18.3496h-16.1201c-8 0 -14.7295 6.13965 -15.75 14.3496zM306.21 270.35\\nc-3.15039 25.3906 -14.6104 47.9707 -31.9697 62.1406c-27.7305 22.6299 -45.79 58.0498 -50.1299 97.1602c-1.09082 9.7793 6.48926 18.3496 16 18.3496h16.1201c7.98926 0 14.7295 -6.13965 15.7393 -14.3398c3.16016 -25.4004 14.6104 -47.9805 31.9805 -62.1504\\nc27.7295 -22.6299 45.79 -58.0498 50.1299 -97.1602c1.08008 -9.7793 -6.49023 -18.3496 -16 -18.3496h-16.1201c-8 0 -14.7295 6.13965 -15.75 14.3496zM480 192c17.6699 0 32 -14.3301 32 -32v-160c0 -35.3496 -28.6504 -64 -64 -64h-384c-35.3496 0 -64 28.6504 -64 64\\nv224c0 35.3496 28.6504 64 64 64h42.6699h0.00292969c11.7754 0 28.9775 -5.73438 38.3975 -12.7998l110.93 -83.2002h224zM128 8v112c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-112c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8zM224 8v112\\nc0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-112c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8zM320 8v112c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-112c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8zM416 8\\nv112c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-112c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8zM64 320c-35.3496 0 -64 28.6504 -64 64s28.6504 64 64 64s64 -28.6504 64 -64s-28.6504 -64 -64 -64z\\\" />\\n    <glyph glyph-name=\\\"hotel\\\" unicode=\\\"&#xf594;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M560 384h-16v-384h16c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-240v80c0 8.7998 -7.2002 16 -16 16h-32c-8.7998 0 -16 -7.2002 -16 -16v-80h-240c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h15.9805v384h-15.9805\\nc-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h544c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16zM256 339.2v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998v38.4004\\nc0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004c-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998zM256 243.2v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998v38.4004\\nc0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004c-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998zM128 339.2v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998v38.4004\\nc0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004c-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998zM179.2 192c6.39941 0 12.7998 6.40039 12.7998 12.7998v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004zM192 64h192c0 53.0195 -42.9805 96 -96 96s-96 -42.9805 -96 -96zM448 204.8v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998zM448 300.8v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-38.4004\\nc-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004c0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h38.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998z\\\" />\\n    <glyph glyph-name=\\\"joint\\\" unicode=\\\"&#xf595;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M444.34 266.9c-35.7803 25.0693 -60.3398 63.0098 -60.3398 106.699v66.4004c0 4.41992 3.58008 8 8 8h48c4.41992 0 8 -3.58008 8 -8v-62.3096c0 -29.0303 15.8496 -54.71 39.6602 -71.3203c35.3301 -24.6504 56.3398 -64.8203 56.3398 -108.061v-30.3096\\nc0 -4.41992 -3.58008 -8 -8 -8h-48c-4.41992 0 -8 3.58008 -8 8v30.3096c0 27.4307 -13.2803 52.9102 -35.6602 68.5908zM194.97 89.0195c22.3701 3.60059 45.0801 -4.30957 59.8203 -21.5098l112.72 -131.51h-88.5693c-98.6406 0 -195.29 27.7197 -278.94 80\\nc59.6904 37.3096 126.03 61.9297 194.97 73.0195zM553.28 360.91c54.3096 -36.4102 86.7197 -97.1602 86.7197 -162.601v-30.3096c0 -4.41992 -3.58008 -8 -8 -8h-48c-4.41992 0 -8 3.58008 -8 8v30.3096c0 50.1504 -25.21 96.6504 -67.3604 123.99\\nc-18.4697 11.9805 -28.6396 33.3701 -28.6396 55.3906v62.3096c0 4.41992 3.58008 8 8 8h48c4.41992 0 8 -3.58008 8 -8v-62.3096c0 -6.82031 3.61035 -12.9805 9.28027 -16.7803zM360.89 95.9502h0.108398c16.2441 0 38.0049 -10.0127 48.5723 -22.3506l117.949 -137.6\\nh-88.4492h-0.00292969c-16.248 0 -38.0146 10.0127 -48.5869 22.3496l-117.801 137.431c1.40039 0.0195312 53.8105 0.109375 88.21 0.169922zM616 96c13.25 0 24 -10.7402 24 -24v-112c0 -13.25 -10.75 -24 -24 -24h-17.4199h-0.00292969\\nc-16.248 0 -38.0146 10.0127 -48.5869 22.3496l-117.99 137.65h184z\\\" />\\n    <glyph glyph-name=\\\"kiss\\\" unicode=\\\"&#xf596;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM168 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM304 52c0 13 -13.4004 27.2998 -35.2002 36.4004\\nc21.7998 8.69922 35.2002 23 35.2002 36c0 19.1992 -28.7002 41.5 -71.5 44c-8.40039 1.09961 -12.2002 -11.8008 -3.59961 -15.4004l17 -7.2002c13 -5.5 20.7998 -13.5 20.7998 -21.5s-7.7998 -16 -20.7998 -21.5l-17 -7.2002c-6.10059 -2.59961 -6 -12.2998 0 -14.7998\\nl17 -7.2002c13 -5.5 20.7998 -13.5 20.7998 -21.5s-7.7998 -16 -20.7998 -21.5l-17 -7.19922c-8.5 -3.60059 -4.90039 -16.2002 3.59961 -15.4004c42.7998 2.5 71.5 24.7998 71.5 44zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32\\ns14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"kiss-beam\\\" unicode=\\\"&#xf597;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM209 220.1c4.2002 -7.5 15.5996 -4 15.0996 4.5c-3.2998 42.1006 -32.1992 71.4004 -56 71.4004c-23.7998 0 -52.6992 -29.2998 -56 -71.4004\\nc-0.699219 -8.5 10.7002 -11.8994 14.9004 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006s23.7998 -7.90039 31.5 -21.6006zM304 52c0 13 -13.4004 27.2998 -35.2002 36.4004c21.7998 8.69922 35.2002 23 35.2002 36c0 19.1992 -28.7002 41.5 -71.5 44\\nc-8.40039 1.09961 -12.2002 -11.8008 -3.59961 -15.4004l17 -7.2002c13 -5.5 20.7998 -13.5 20.7998 -21.5s-7.7998 -16 -20.7998 -21.5l-17 -7.2002c-6.10059 -2.59961 -6 -12.2998 0 -14.7998l17 -7.2002c13 -5.5 20.7998 -13.5 20.7998 -21.5s-7.7998 -16 -20.7998 -21.5\\nl-17 -7.19922c-8.5 -3.60059 -4.90039 -16.2002 3.59961 -15.4004c42.7998 2.5 71.5 24.7998 71.5 44zM369 220.1c4.2002 -7.5 15.5996 -4 15.0996 4.5c-3.2998 42.1006 -32.1992 71.4004 -56 71.4004c-23.7998 0 -52.6992 -29.2998 -56 -71.4004\\nc-0.699219 -8.5 10.8008 -11.7998 14.9004 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006s23.7998 -7.90039 31.5 -21.6006z\\\" />\\n    <glyph glyph-name=\\\"kiss-wink-heart\\\" unicode=\\\"&#xf598;\\\" horiz-adv-x=\\\"504\\\" \\nd=\\\"M501.1 45.5c9.2002 -23.9004 -4.39941 -49.4004 -28.5 -55.7002l-83 -21.5c-5.39941 -1.39941 -10.8994 1.7998 -12.3994 7.10059l-22.9004 82.5996c-6.59961 24 8.7998 48.5996 34 52.5996c22 3.5 43.1006 -11.5996 49 -33l2.2998 -8.39941l8.40039 2.2002\\nc21.5996 5.59961 45.0996 -5.10059 53.0996 -25.9004zM323.5 49.5c0 0 23.5996 -83.9004 23.9004 -84.5996c-30.5 -13.4004 -64 -20.9004 -99.4004 -20.9004c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248c0 -31.7998 -6.2002 -62.0996 -17.0996 -90\\nc-6 1.5 -12.2002 2.7998 -18.6006 2.90039c-29.0996 49.7998 -98.0996 50.5996 -127.8 4.2998c-11.2998 -17.7002 -14.5996 -39.4004 -9 -59.7002zM168 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM288 52\\nc0 13 -13.4004 27.2998 -35.2002 36.4004c21.7998 8.69922 35.2002 23 35.2002 36c0 19.1992 -28.7002 41.5 -71.5 44c-8.2002 1.19922 -12.4004 -11.7002 -3.59961 -15.4004l17 -7.2002c13 -5.5 20.7998 -13.5 20.7998 -21.5s-7.7998 -16 -20.7998 -21.5l-17 -7.2002\\nc-5.7002 -2.5 -6 -12.2998 0 -14.7998l17 -7.2002c13 -5.5 20.7998 -13.5 20.7998 -21.5s-7.7998 -16 -20.7998 -21.5l-17 -7.19922c-8.5 -3.60059 -4.90039 -16.2002 3.59961 -15.4004c42.7998 2.5 71.5 24.7998 71.5 44zM304 231l9.7002 8.5\\nc14.7998 13.2002 46.2002 13.2002 61 0l9.5 -8.5c8.5 -7.5 21.5 -0.299805 19.7998 10.7998c-4 25.2002 -34.2002 42.1006 -59.9004 42.1006c-25.6992 0 -55.8994 -16.9004 -59.8994 -42.1006c-1.7998 -11.2002 11.5 -18.2002 19.7998 -10.7998z\\\" />\\n    <glyph glyph-name=\\\"laugh\\\" unicode=\\\"&#xf599;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM328 288c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM168 288c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32\\ns32 14.2998 32 32s-14.2998 32 -32 32zM256 16c73.4004 0 134 55 142.9 126c1.19922 9.59961 -6.30078 18 -15.9004 18h-270c-9.59961 0 -17.0996 -8.5 -15.9004 -18c8.90039 -71 69.5 -126 142.9 -126h16z\\\" />\\n    <glyph glyph-name=\\\"laugh-beam\\\" unicode=\\\"&#xf59a;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM272 240.6c-0.700195 -8.59961 10.9004 -11.8994 15.0996 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006c12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17\\nc4.10059 -7.39941 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004s-52.7002 -29.2998 -56 -71.4004zM112 240.6c-0.700195 -8.5 10.7998 -11.8994 15.0996 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006\\nc12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17c4.10059 -7.39941 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004s-52.7002 -29.2998 -56 -71.4004zM398.9 142c1.19922 9.59961 -6.30078 18 -15.9004 18h-270\\nc-9.59961 0 -17.0996 -8.5 -15.9004 -18c8.90039 -71 69.5 -126 142.9 -126h16c73.4004 0 134 55 142.9 126z\\\" />\\n    <glyph glyph-name=\\\"laugh-squint\\\" unicode=\\\"&#xf59b;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM281.8 278.3c-7.7002 -4.7002 -7.7002 -15.8994 0 -20.5996l80 -48c11.5 -6.7998 24.1006 7.59961 15.4004 18l-33.6006 40.2998l33.6006 40.2998\\nc8.59961 10.2998 -3.7998 24.9004 -15.4004 18zM118.8 308.3l33.6006 -40.2998l-33.6006 -40.2998c-8.59961 -10.4004 3.90039 -24.7998 15.4004 -18l80 48c7.7998 4.7002 7.7998 15.8994 0 20.5996l-80 48c-11.6006 6.90039 -24 -7.7002 -15.4004 -18zM398.9 142\\nc1.19922 9.59961 -6.30078 18 -15.9004 18h-270c-9.59961 0 -17.0996 -8.5 -15.9004 -18c8.90039 -71 69.5 -126 142.9 -126h16c73.4004 0 134 55 142.9 126z\\\" />\\n    <glyph glyph-name=\\\"laugh-wink\\\" unicode=\\\"&#xf59c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM268.1 241.9c-1.69922 -11.2002 11.5 -18.3008 19.9004 -10.9004l9.59961 8.59961c14.8008 13.2002 46.2002 13.2002 61 0l9.5 -8.5\\nc8.40039 -7.5 21.5 -0.299805 19.8008 10.8008c-4 25.1992 -34.2002 42.0996 -59.9004 42.0996s-55.9004 -16.9004 -59.9004 -42.0996zM168 288c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM398.9 142\\nc1.19922 9.59961 -6.30078 18 -15.9004 18h-270c-9.59961 0 -17.0996 -8.5 -15.9004 -18c8.90039 -71 69.5 -126 142.9 -126h16c73.4004 0 134 55 142.9 126z\\\" />\\n    <glyph glyph-name=\\\"luggage-cart\\\" unicode=\\\"&#xf59d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M224 128c-17.6699 0 -32 14.3301 -32 32v160c0 17.6699 14.3301 32 32 32h32v-224h-32zM576 160c0 -17.6699 -14.3301 -32 -32 -32h-32v224h32c17.6699 0 32 -14.3301 32 -32v-160zM624 64c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-82.9404\\nc1.79004 -5.03027 2.94043 -10.3604 2.94043 -16c0 -26.5098 -21.4902 -48 -48 -48s-48 21.4902 -48 48c0 5.63965 1.15039 10.9697 2.94043 16h-197.881c1.79004 -5.03027 2.94043 -10.3604 2.94043 -16c0 -26.5098 -21.4902 -48 -48 -48s-48 21.4902 -48 48\\nc0 5.63965 1.15039 10.9697 2.94043 16h-82.9404c-8.83984 0 -16 7.16016 -16 16v368h-48c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h96c8.83984 0 16 -7.16016 16 -16v-368h496zM480 352v-224h-192v272c0 26.5098 21.4902 48 48 48h96\\nc26.5098 0 48 -21.4902 48 -48v-48zM432 352v48h-96v-48h96z\\\" />\\n    <glyph glyph-name=\\\"map-marked\\\" unicode=\\\"&#xf59f;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 448c69.5898 0 126 -56.4102 126 -126c0 -56.2598 -82.3496 -158.8 -113.9 -196.02c-6.37988 -7.54004 -17.8096 -7.54004 -24.1992 0c-31.5508 37.2197 -113.9 139.76 -113.9 196.02c0 69.5898 56.4102 126 126 126zM20.1201 232.05l118.63 47.4502\\nc5.17969 -14.8799 12.4102 -30.4404 21.25 -46.4199v-233.08l-138.06 -62.8398c-10.5107 -4.2002 -21.9404 3.54004 -21.9404 14.8594v250.32c0.00292969 11.959 9.0166 25.2686 20.1201 29.71zM288 88.3301c14.0703 0 27.3799 6.17969 36.5098 16.9502\\nc19.6699 23.2002 40.5703 49.6299 59.4902 76.7197v-245.99l-192 64v182c18.9199 -27.0996 39.8301 -53.5195 59.4902 -76.7197c9.12988 -10.7803 22.4395 -16.96 36.5098 -16.96zM554.06 286.84c10.5107 4.2002 21.9404 -3.54004 21.9404 -14.8594v-250.32\\nc0 -11.9609 -9.01367 -25.2705 -20.1201 -29.71l-139.88 -55.9502v288z\\\" />\\n    <glyph glyph-name=\\\"map-marked-alt\\\" unicode=\\\"&#xf5a0;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 448c69.5898 0 126 -56.4102 126 -126c0 -56.2598 -82.3496 -158.8 -113.9 -196.02c-6.37988 -7.54004 -17.8096 -7.54004 -24.1992 0c-31.5508 37.2197 -113.9 139.76 -113.9 196.02c0 69.5898 56.4102 126 126 126zM288 280c23.2002 0 42 18.7998 42 42\\ns-18.7998 42 -42 42s-42 -18.7998 -42 -42s18.7998 -42 42 -42zM20.1201 232.05l118.63 47.4502c5.17969 -14.8799 12.4102 -30.4404 21.25 -46.4199v-233.08l-138.06 -62.8398c-10.5107 -4.2002 -21.9404 3.54004 -21.9404 14.8594v250.32\\nc0.00292969 11.959 9.0166 25.2686 20.1201 29.71zM288 88.3301c14.0703 0 27.3799 6.17969 36.5098 16.9502c19.6699 23.2002 40.5703 49.6299 59.4902 76.7197v-245.99l-192 64v182c18.9199 -27.0996 39.8301 -53.5195 59.4902 -76.7197\\nc9.12988 -10.7803 22.4395 -16.96 36.5098 -16.96zM554.06 286.84c10.5107 4.2002 21.9404 -3.54004 21.9404 -14.8594v-250.32c0 -11.9609 -9.01367 -25.2705 -20.1201 -29.71l-139.88 -55.9502v288z\\\" />\\n    <glyph glyph-name=\\\"marker\\\" unicode=\\\"&#xf5a1;\\\" \\nd=\\\"M93.9502 157.97l75.3994 75.4004l128.021 -128.021l-75.4004 -75.3994c-44.8223 -44.8203 -132.335 -86.8428 -195.34 -93.7998c-15.2803 -1.69043 -28.1895 11.2295 -26.4902 26.5098l0.0302734 0.229492c7.00195 62.9189 49.0156 150.315 93.7803 195.08z\\nM485.49 421.49c35.3496 -35.3604 35.3496 -92.6699 0 -128.021l-165.49 -165.489l-128.02 128.02l98.4795 98.4697l-19.5898 19.5898l-87.1504 -87.1494c-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-22.6201 22.6201c-6.25 6.25 -6.25 16.3799 0 22.6299l104.12 104.12\\nc15.6104 15.6201 40.9404 15.6201 56.5605 0l36.5596 -36.5498l21.7598 21.7598c35.3506 35.3496 92.6699 35.3496 128.021 0z\\\" />\\n    <glyph glyph-name=\\\"medal\\\" unicode=\\\"&#xf5a2;\\\" \\nd=\\\"M223.75 317.25c-42.04 -6.55957 -79.8398 -25.6201 -109.56 -53.3896l-111.271 158.96c-7.41992 10.6094 0.160156 25.1797 13.1104 25.1797h111.149c10.0029 0 22.2959 -6.96191 27.4404 -15.54zM495.97 448c12.9502 0 20.5303 -14.5703 13.1104 -25.1797\\nl-111.271 -158.95c-29.7197 27.7598 -67.5195 46.8203 -109.56 53.3799l69.1299 115.21c5.78027 9.63965 16.2002 15.54 27.4404 15.54h111.149zM256 288c97.2002 0 176 -78.7998 176 -176s-78.7998 -176 -176 -176s-176 78.7998 -176 176s78.7998 176 176 176z\\nM348.52 130.74c6.82031 6.63965 3.05078 18.2295 -6.34961 19.5898l-52.4297 7.63965l-23.4307 47.5205c-2.10938 4.25 -6.21973 6.38965 -10.3291 6.38965c-4.09082 0 -8.1709 -2.11035 -10.2803 -6.38965l-23.4307 -47.5205l-52.4297 -7.63965\\nc-9.39941 -1.36035 -13.1699 -12.9502 -6.34961 -19.5898l37.9297 -36.96l-8.96973 -52.2207c-1.60059 -9.34961 8.25 -16.54 16.6494 -12.0898l46.9004 24.6504l46.9102 -24.6504c8.38965 -4.41992 18.25 2.73047 16.6494 12.0898l-8.96973 52.2207z\\\" />\\n    <glyph glyph-name=\\\"meh-blank\\\" unicode=\\\"&#xf5a4;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM168 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32\\ns-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"meh-rolling-eyes\\\" unicode=\\\"&#xf5a5;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM88 224c0 -35.2998 28.7002 -64 64 -64s64 28.7002 64 64c0 24.2998 -13.7002 45.2002 -33.5996 56c0.699219 -2.59961 1.59961 -5.2002 1.59961 -8\\nc0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32c0 2.7998 0.900391 5.40039 1.59961 8c-19.8994 -10.7998 -33.5996 -31.7002 -33.5996 -56zM312 48c21.2002 0 21.2002 32 0 32h-128c-21.2002 0 -21.2002 -32 0 -32h128zM344 160c35.2998 0 64 28.7002 64 64\\nc0 24.2998 -13.7002 45.2002 -33.5996 56c0.699219 -2.59961 1.59961 -5.2002 1.59961 -8c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32c0 2.7998 0.900391 5.40039 1.59961 8c-19.8994 -10.7998 -33.5996 -31.7002 -33.5996 -56c0 -35.2998 28.7002 -64 64 -64z\\n\\\" />\\n    <glyph glyph-name=\\\"monument\\\" unicode=\\\"&#xf5a6;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M368 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-352c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h352zM289.14 347.26l30.8604 -315.26h-256l30.8701 315.26c0.625 6.27344 4.75098 14.9834 9.20996 19.4404\\nl76.5996 76.6094c6.25 6.25 16.3799 6.25 22.6299 0l76.6201 -76.6094c4.45898 -4.45703 8.58496 -13.167 9.20996 -19.4404zM240 140.8v38.4004c0 6.39941 -6.40039 12.7998 -12.7998 12.7998h-70.4004c-6.39941 0 -12.7998 -6.40039 -12.7998 -12.7998v-38.4004\\nc0 -6.39941 6.40039 -12.7998 12.7998 -12.7998h70.4004c6.39941 0 12.7998 6.40039 12.7998 12.7998z\\\" />\\n    <glyph glyph-name=\\\"mortar-pestle\\\" unicode=\\\"&#xf5a7;\\\" \\nd=\\\"M501.54 387.09l-99.0801 -99.0898h-151.37l203.811 152.86c5.25293 3.93848 14.8457 7.13477 21.4121 7.13477c4.64941 0 11.7988 -1.68652 15.957 -3.76465c21.7803 -10.8906 26.4902 -39.9209 9.27051 -57.1406zM496 256c8.83984 0 16 -7.16016 16 -16v-32\\nc0 -8.83984 -7.16016 -16 -16 -16h-16c0 -80.9805 -50.2002 -150.11 -121.13 -178.32c12.7695 -16.8701 21.7295 -36.7998 24.9502 -58.6895c1.45996 -9.91992 -6.04004 -18.9805 -16.0703 -18.9805h-223.5c-10.0303 0 -17.5303 9.06055 -16.0703 18.9805\\nc3.23047 21.8896 12.1904 41.8193 24.9502 58.6895c-70.9297 28.21 -121.13 97.3398 -121.13 178.32h-16c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h480z\\\" />\\n    <glyph glyph-name=\\\"paint-roller\\\" unicode=\\\"&#xf5aa;\\\" \\nd=\\\"M416 320c0 -17.6699 -14.3301 -32 -32 -32h-352c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h352c17.6699 0 32 -14.3301 32 -32v-96zM448 384c35.3496 0 64 -28.6504 64 -64v-64c0 -53.0195 -42.9805 -96 -96 -96h-160v-32\\nc17.6699 0 32 -14.3301 32 -32v-128c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32v32c0 35.3496 28.6504 64 64 64h160c17.6699 0 32 14.3301 32 32v128z\\\" />\\n    <glyph glyph-name=\\\"passport\\\" unicode=\\\"&#xf5ab;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M129.62 272c5.28027 31.2197 25.5898 57.1699 53.2998 70.4102c-7.66992 -19.0605 -12.7197 -43.3799 -14.21 -70.4102h-39.0898zM129.62 240h39.0898c1.49023 -27.0303 6.53027 -51.3496 14.21 -70.4102c-27.71 13.2402 -48.0098 39.1904 -53.2998 70.4102zM224 161.31\\nc-7.69043 7.4502 -20.7695 34.4307 -23.4404 78.6904h46.8701c-2.66016 -44.2695 -15.7393 -71.2402 -23.4297 -78.6904zM200.57 272c2.66016 44.2598 15.7393 71.2402 23.4395 78.6904c7.69043 -7.4502 20.7705 -34.4307 23.4307 -78.6904h-46.8701zM265.08 169.59\\nc7.67969 19.0605 12.7197 43.3799 14.21 70.4102h39.0898c-5.28027 -31.2197 -25.5898 -57.1699 -53.2998 -70.4102zM416 448c17.6699 0 32 -14.3301 32 -32v-448c0 -17.6699 -14.3301 -32 -32 -32h-352c-35.3496 0 -64 28.6504 -64 64v384c0 35.3496 28.6504 64 64 64h352z\\nM336 32c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16h-224c-8.7998 0 -16 -7.2002 -16 -16s7.2002 -16 16 -16h224zM224 128c70.6904 0 128 57.3096 128 128s-57.3096 128 -128 128s-128 -57.3096 -128 -128s57.3096 -128 128 -128zM265.08 342.41\\nc27.71 -13.2402 48.0195 -39.1904 53.2998 -70.4102h-39.0898c-1.49023 27.0303 -6.53027 51.3496 -14.21 70.4102z\\\" />\\n    <glyph glyph-name=\\\"pen-fancy\\\" unicode=\\\"&#xf5ac;\\\" \\nd=\\\"M79.1797 165.06l84.0703 33.0703l98.8799 -98.8799l-33.0703 -84.0703c-2.79102 -8.38086 -11.8584 -17.4482 -20.2393 -20.2393l-176.82 -58.9404l-4.67969 4.67969l92.8896 92.8906c2.55957 -0.660156 5.03027 -1.57031 7.7998 -1.57031c17.6699 0 32 14.3301 32 32\\ns-14.3301 32 -32 32s-32 -14.3301 -32 -32c0 -2.76953 0.910156 -5.24023 1.57031 -7.7998l-92.8896 -92.8906l-4.69043 4.69043l58.9404 176.82c2.79297 8.37891 11.8604 17.4463 20.2393 20.2393zM369.25 419.68c74.4805 84.2607 199.15 -39.1602 114.23 -114.229\\nl-199.49 -183.11l-97.8506 97.8506z\\\" />\\n    <glyph glyph-name=\\\"pen-nib\\\" unicode=\\\"&#xf5ad;\\\" \\nd=\\\"M136.6 309.21l151.4 42.79l128 -128l-42.79 -151.4c-5.08594 -17.9932 -23.6104 -37.3965 -41.3496 -43.3096l-279.86 -93.29l-14.6904 14.6904l150.11 150.109c6.25977 -2.99023 13.1797 -4.7998 20.5801 -4.7998c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48\\ns-48 -21.4902 -48 -48c0 -7.40039 1.80957 -14.3203 4.7998 -20.5801l-150.109 -150.11l-14.6904 14.6904l93.29 279.86c5.91309 17.7393 25.3164 36.2637 43.3096 41.3496zM497.94 373.83c18.75 -18.7598 18.75 -49.1602 0 -67.9102l-56.5508 -56.5498l-128.02 128.02\\nl56.5498 56.5508c18.75 18.75 49.1602 18.75 67.9102 0z\\\" />\\n    <glyph glyph-name=\\\"pencil-ruler\\\" unicode=\\\"&#xf5ae;\\\" \\nd=\\\"M109.46 203.96l-100.17 100.18c-12.3896 12.3906 -12.3799 32.4707 0 44.8604l89.71 89.71c12.3896 12.3896 32.4697 12.3896 44.8604 0l33.6396 -33.6504l-61.6797 -61.6797c-3.10059 -3.08984 -3.10059 -8.11035 0 -11.21l11.21 -11.21\\nc1.28027 -1.2832 3.79199 -2.3252 5.60449 -2.3252c1.81348 0 4.32422 1.04199 5.60547 2.3252l61.6797 61.6797l44.1201 -44.1201zM497.93 320.76l-46.0195 -46.0293l-113.2 113.199l46.0205 46.0107c18.7695 18.7598 49.1895 18.7598 67.9492 0l45.25 -45.25\\nc18.75 -18.7607 18.7607 -49.1709 0 -67.9307zM316.08 365.29l113.2 -113.19l-296.92 -296.93l-107.45 -18.8398c-14.5 -2.5498 -27.1201 10.0703 -24.5898 24.5596l18.7598 107.44zM502.71 79.8604c12.3896 -12.3906 12.3896 -32.4707 0 -44.8604l-89.71 -89.7002\\nc-12.3896 -12.3896 -32.4697 -12.3896 -44.8604 0l-100.21 100.2l134.58 134.56l44.1406 -44.1396l-61.6807 -61.6797c-3.08984 -3.08984 -3.08984 -8.11035 0 -11.21l11.21 -11.21c3.08984 -3.10059 8.11035 -3.10059 11.21 0l61.6807 61.6797z\\\" />\\n    <glyph glyph-name=\\\"plane-arrival\\\" unicode=\\\"&#xf5af;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-608c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h608zM44.8096 242.34c-6.5498 5.91016 -12.3896 14.3398 -12.5791 23.25l-0.230469 101.78\\nc0.19043 10.8799 10.3799 18.7002 20.7197 15.8799l39.7305 -10.8301c5.00977 -1.36035 9.08984 -5.04004 11.0195 -9.92969l27.5898 -67.8799l102.2 -27.8408l-47.9199 164.211c-0.189453 11.1191 10.1504 19.3193 20.71 16.4395l65.0898 -17.7295\\nc5.70996 -1.56055 10.1504 -6.10059 11.6602 -11.9102l100.36 -191.851l97.5098 -26.5596c26.4805 -7.20996 51.5498 -20.1797 70.8301 -40c21.6396 -22.25 27.2002 -40.46 23.3701 -54.96c-3.81055 -14.5 -17.5801 -27.4404 -47.25 -35.71\\nc-26.4404 -7.36035 -54.5205 -5.85059 -81 1.35938l-287.601 78.3506c-7.94531 2.16895 -19.3564 8.41016 -25.4697 13.9297z\\\" />\\n    <glyph glyph-name=\\\"plane-departure\\\" unicode=\\\"&#xf5b0;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-608c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h608zM80.5498 106.73l-76.21 82.9697c-7.62012 8.95996 -4.87012 22.7803 5.57031 28.0801l40.1299 20.3701\\nc2.0957 1.0625 5.7041 1.92578 8.05469 1.92578c2.33691 0 5.92773 -0.853516 8.01562 -1.90625l72.3496 -36.4697l103.21 52.3799l-156.22 98.0996c-8.08008 8.87988 -5.5 23.1201 5.16992 28.5303l65.75 33.3701c2.0957 1.06348 5.70508 1.92676 8.05566 1.92676\\nc3 0 7.45508 -1.36035 9.94434 -3.03711l218.7 -82.0596l98.5098 49.9902c26.7402 13.5596 56.4297 21.4199 86.2803 19.4795c33.5098 -2.17969 51.04 -12.8799 58.25 -27.4502c7.22949 -14.5596 5.23926 -35.1699 -13.0703 -63.6494\\nc-16.3096 -25.3701 -40.2803 -44.7402 -67.0205 -58.3105l-290.96 -147.649c-7.71094 -3.91895 -20.9893 -7.1084 -29.6396 -7.12012l-130.54 -0.180664c-9.22949 -0.00976562 -18.0498 3.87012 -24.3301 10.7109z\\\" />\\n    <glyph glyph-name=\\\"prescription\\\" unicode=\\\"&#xf5b1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M301.26 96l78.0605 -78.0498c6.25 -6.25 6.25 -16.3799 0 -22.6299l-22.6299 -22.6299c-6.25 -6.25 -16.3809 -6.25 -22.6309 0l-78.0596 78.0596l-78.0498 -78.0703c-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-22.6299 22.6299c-6.25 6.25 -6.25 16.3809 0 22.6309\\nl78.0596 78.0596l-128 128h-18.75v-80c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v256c0 8.83984 7.16016 16 16 16h144c53.0195 0 96 -42.9805 96 -96c0 -48.8896 -36.6904 -88.7998 -83.96 -94.7803l83.96 -83.96l78.0596 78.0605\\nc6.25 6.25 16.3809 6.25 22.6309 0l22.6299 -22.6299c6.25 -6.25 6.25 -16.3809 0 -22.6309zM64 352v-64h96c17.6396 0 32 14.3604 32 32s-14.3604 32 -32 32h-96z\\\" />\\n    <glyph glyph-name=\\\"sad-cry\\\" unicode=\\\"&#xf5b3;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248c0 -90 -48.2002 -168.7 -120 -212.1v180.1c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16v-196.7c-29.5 -12.3994 -62 -19.2998 -96 -19.2998s-66.5 6.90039 -96 19.2998v196.7c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16\\nv-180.1c-71.7998 43.3994 -120 122 -120 212.1c0 137 111 248 248 248zM182.5 223.5l9.7002 -8.5c2.5 -2.2998 7.89941 -4.7002 13.7002 -1.59961c4.39941 2.39941 6.89941 7.39941 6.09961 12.3994c-4 25.2002 -34.2002 42.1006 -59.9004 42.1006\\nc-25.6992 0 -55.8994 -16.9004 -59.8994 -42.1006c-0.799805 -5 1.7002 -10 6.09961 -12.3994c4.40039 -2.40039 9.90039 -1.7002 13.7002 1.59961l9.5 8.5c14.7998 13.2002 46.2002 13.2002 61 0zM248 32c26.5 0 48 28.7002 48 64s-21.5 64 -48 64s-48 -28.7002 -48 -64\\ns21.5 -64 48 -64zM397.8 213.5c4.40039 2.40039 6.7998 7.40039 6.2002 12.2998c-4 25.2002 -34.2002 42.1006 -59.9004 42.1006c-25.6992 0 -55.8994 -16.9004 -59.8994 -42.1006c-0.799805 -5 1.7002 -10 6.09961 -12.3994\\nc4.40039 -2.40039 9.90039 -1.7002 13.7002 1.59961l9.59961 8.59961c14.8008 13.2002 46.2002 13.2002 61 0l9.5 -8.5c2.5 -2.2998 7.90039 -4.69922 13.7002 -1.59961z\\\" />\\n    <glyph glyph-name=\\\"sad-tear\\\" unicode=\\\"&#xf5b4;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM328 272c-17.7002 0 -32 -14.2998 -32 -32s14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32zM152 32c26.5 0 48 21 48 47c0 20 -28.5 60.4004 -41.5996 77.7998\\nc-3.2002 4.2998 -9.60059 4.2998 -12.8008 0c-13.0996 -17.3994 -41.5996 -57.7998 -41.5996 -77.7998c0 -26 21.5 -47 48 -47zM168 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM338.2 53.7998\\nc13.2998 -16.0996 38.2998 4 24.5 20.4004c-28.4004 34.2002 -70.2998 53.7998 -114.7 53.7998c-21.2002 0 -21.2002 -32 0 -32c34.9004 0 67.7998 -15.4004 90.2002 -42.2002z\\\" />\\n    <glyph glyph-name=\\\"shuttle-van\\\" unicode=\\\"&#xf5b6;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M628.88 237.35c7.17969 -8.62988 11.1201 -19.5 11.1201 -30.7295v-110.62c0 -17.6699 -14.3301 -32 -32 -32h-32c0 -53.0195 -42.9805 -96 -96 -96s-96 42.9805 -96 96h-128c0 -53.0195 -42.9805 -96 -96 -96s-96 42.9805 -96 96h-32c-17.6699 0 -32 14.3301 -32 32v288\\nc0 17.6699 14.3301 32 32 32h425.52c12.4082 -0.00195312 28.9258 -7.73926 36.8701 -17.2695zM64 256h96v96h-96v-96zM160 16c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM320 256v96h-96v-96h96zM480 16\\nc26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM384 256h146.02l-80 96h-66.0195v-96z\\\" />\\n    <glyph glyph-name=\\\"signature\\\" unicode=\\\"&#xf5b7;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M623.2 256c9.09961 0.599609 16.7998 -7.09961 16.5996 -16.2002v-32.0996c0 -8.5 -6.7002 -15.1006 -15.2002 -15.7998c-39.3994 -3.2002 -105.399 -51 -138.399 -65.8008c-34.2998 -15.3994 -66.7002 -30 -102.3 -30c-28.2002 0 -50.2002 8.5 -65.5 25.3008\\nc-22.7002 24.8994 -22.8008 55.2998 -20.6006 83.7998c-56.5 -45.1006 -169 -153.601 -211.2 -195.8c-6.09961 -6.2002 -14.2998 -9.40039 -22.5996 -9.40039c-27 0 -36.5 27 -29.7002 43.9004l98.2002 245.6c8 19.9004 -14.2998 38.7998 -32.7002 27.0996l-58 -38.8994\\nc-7.5 -4.7998 -17.3994 -2.60059 -22.0996 4.89941l-17.2002 27c-4.7002 7.5 -2.5 17.4004 4.90039 22.1006l54.8994 36.8994c76.5 48.7002 160.101 -26.8994 129.7 -102.8l-41.5 -103.7c105.2 101.2 144.4 124.5 169.5 126\\nc54.4004 3.10059 43.7998 -68.0996 42.7002 -76.0996c-4.7002 -35.7002 -1.2998 -51.9004 21.2998 -51.9004c21.9004 0 47 11.3008 76.0996 24.4004c37.4004 16.7998 111.301 68 163.101 71.5z\\\" />\\n    <glyph glyph-name=\\\"smile-beam\\\" unicode=\\\"&#xf5b8;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM112 224.6c-0.700195 -8.5 10.7998 -11.8994 15.0996 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006c12.3008 0 23.8008 -7.90039 31.5 -21.6006l9.5 -17\\nc4.10059 -7.39941 15.6006 -4.09961 14.9004 4.5c-3.2998 42.1006 -32.2002 71.4004 -56 71.4004s-52.7002 -29.2998 -56 -71.4004zM362.8 101.8c13.5 16.2002 -11 36.7002 -24.5996 20.5c-22.4004 -26.7998 -55.2002 -42.2002 -90.2002 -42.2002\\ns-67.7998 15.3008 -90.2002 42.2002c-13.5996 16.2002 -38.0996 -4.2002 -24.5996 -20.5c28.5 -34.2002 70.2998 -53.7998 114.8 -53.7998s86.2998 19.5996 114.8 53.7998zM369 220.1c4.09961 -7.39941 15.7002 -4.09961 15.0996 4.5\\nc-3.2998 42.1006 -32.1992 71.4004 -56 71.4004c-23.7998 0 -52.6992 -29.2998 -56 -71.4004c-0.699219 -8.5 10.8008 -11.7998 14.9004 -4.5l9.5 17c7.7002 13.7002 19.2002 21.6006 31.5 21.6006s23.7998 -7.90039 31.5 -21.6006z\\\" />\\n    <glyph glyph-name=\\\"solar-panel\\\" unicode=\\\"&#xf5ba;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M431.98 -0.00976562c8.84961 0.00976562 16.0293 -7.16992 16.0195 -16.0205l-0.0400391 -31.7295c-0.00976562 -8.82031 -7.16016 -15.9707 -15.9795 -15.9805l-223.961 -0.259766c-8.84961 -0.00976562 -16.0293 7.16992 -16.0195 16.0195l0.0498047 31.7305\\nc0.00976562 8.83008 7.16016 15.9805 15.9805 15.9902l47.9795 0.0498047v32.21h128v-32.0596zM585.2 421.26c58.1094 -342.42 54.7803 -321.39 54.7598 -325.47c-0.0800781 -17.2305 -14.3604 -31.79 -32.5898 -31.79h-574.74c-18.3096 0 -32.6299 14.6797 -32.5996 32\\nc0.00976562 3.91992 -3.35059 -17.1602 54.7598 325.26c2.62012 15.4307 16.21 26.7402 32.1396 26.7402h466.13c15.9307 0 29.5205 -11.3096 32.1406 -26.7402zM259.83 384l-9.77051 -96h139.87l-9.76953 96h-120.33zM184.66 128l11.4102 112h-105.971l-19.0098 -112\\nh113.57zM200.95 288l9.76953 96h-96.1895l-16.29 -96h102.71zM233.77 128h172.45l-11.3994 112h-149.65zM429.27 384l9.77051 -96h102.71l-16.29 96h-96.1904zM455.33 128h113.58l-19.0098 112h-105.971z\\\" />\\n    <glyph glyph-name=\\\"spa\\\" unicode=\\\"&#xf5bb;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M568.25 256c4.41016 0.0195312 7.79004 -3.40039 7.75 -7.82031c-0.230469 -27.9199 -7.12988 -126.13 -88.7695 -199.3c-84.04 -81.8301 -167.23 -80.8799 -199.23 -80.8799s-115.21 -0.94043 -199.23 80.8799c-81.6299 73.1602 -88.5391 171.38 -88.7695 199.3\\nc-0.0400391 4.41992 3.33984 7.83984 7.75 7.82031c29.04 -0.129883 135.01 -6.16016 213.84 -83c33.1201 -29.6299 53.3604 -63.2998 66.4102 -94.8604c13.0498 31.5605 33.29 65.2305 66.4102 94.8604c78.8301 76.8398 184.8 82.8701 213.84 83zM287.98 145.4\\nc-10.7012 15.7168 -30.8789 38.7705 -45.04 51.46c-18.7207 18.25 -38.8506 32.6895 -59.2207 44.3896c16.4707 70.4404 51.75 132.93 96.7402 172.07c4.12012 3.58008 11.0303 3.58008 15.1396 0c45.0107 -39.1699 80.29 -101.721 96.7305 -172.221\\nc-20.6797 -11.8799 -41.1699 -26.5693 -60.2598 -45.1797c-16.4902 -14.7402 -31.2705 -31.6699 -44.0898 -50.5195z\\\" />\\n    <glyph glyph-name=\\\"splotch\\\" unicode=\\\"&#xf5bc;\\\" \\nd=\\\"M472.29 252.11c48.54 -16.6201 53.8301 -73.8301 8.9502 -96.79l-62 -31.7402c-17.8301 -9.12988 -29.2803 -25.2002 -30.6299 -42.9902l-4.7002 -61.8594c-3.41016 -44.79 -65.1299 -66.7803 -104.45 -37.2207l-54.3203 40.8301\\nc-15.6201 11.7305 -36.96 16.1201 -57.0693 11.7305l-69.96 -15.2803c-50.6504 -11.0596 -94.0801 32.5596 -73.4902 73.8096l28.4297 56.9805c8.18066 16.3799 6.44043 35.1699 -4.63965 50.2402l-38.54 52.4199c-27.9004 37.9502 6.97949 86.8994 59.0303 82.8301\\nl71.8799 -5.62012c20.6602 -1.62012 40.9395 5.59961 54.2002 19.3096l46.1396 47.6699c33.4102 34.5107 98.3994 21.1504 109.979 -22.6201l15.9902 -60.4492c4.60059 -17.3799 18.8604 -31.7002 38.1406 -38.3008z\\\" />\\n    <glyph glyph-name=\\\"spray-can\\\" unicode=\\\"&#xf5bd;\\\" \\nd=\\\"M224 416v-96h-128v96c0 17.6699 14.3301 32 32 32h64c17.6699 0 32 -14.3301 32 -32zM480 320c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32zM224 288c53.0195 0 96 -42.9805 96 -96v-224c0 -17.6699 -14.3301 -32 -32 -32\\nh-256c-17.6699 0 -32 14.3301 -32 32v224c0 53.0195 42.9805 96 96 96h128zM160 32c44.1797 0 80 35.8203 80 80s-35.8203 80 -80 80s-80 -35.8203 -80 -80s35.8203 -80 80 -80zM480 352c-17.6699 0 -32 14.3301 -32 32s14.3301 32 32 32s32 -14.3301 32 -32\\ns-14.3301 -32 -32 -32zM384 320c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32zM288 416c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32zM384 416c17.6699 0 32 -14.3301 32 -32\\ns-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32zM480 224c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"stamp\\\" unicode=\\\"&#xf5bf;\\\" \\nd=\\\"M32 -64v64h448v-64h-448zM416 192c53.0195 0 96 -42.9805 96 -96v-32c0 -17.6699 -14.3301 -32 -32 -32h-448c-17.6699 0 -32 14.3301 -32 32v32c0 53.0195 42.9805 96 96 96h66.5596c16.2607 0 29.4404 13.1797 29.4404 29.4404v0.0693359\\nc0 31.79 -9.98047 62.0605 -23.3096 90.9102c-5.57031 12.04 -8.69043 25.4199 -8.69043 39.5801c0 58.6699 52.6201 105.04 113.25 94.4902c38.79 -6.75 70.4902 -38.6699 77.2598 -77.4502c3.85059 -22.0303 0.0605469 -42.8096 -9.0498 -60.4199\\nc-12.5801 -24.3105 -21.46 -50.3506 -21.46 -77.7197v-9.45996c0 -16.2607 13.1797 -29.4404 29.4404 -29.4404h66.5596z\\\" />\\n    <glyph glyph-name=\\\"star-half-alt\\\" unicode=\\\"&#xf5c0;\\\" horiz-adv-x=\\\"536\\\" \\nd=\\\"M508.55 276.49c26.25 -3.7998 36.7705 -36.1006 17.7305 -54.6006l-105.91 -102.979l25.0303 -145.49c3.55957 -20.79 -13.0605 -37.4004 -31.6602 -37.4004c-4.91016 0 -9.9707 1.16016 -14.8301 3.71094l-130.94 68.6992l-130.95 -68.6797\\nc-4.86914 -2.58008 -9.93945 -3.75 -14.8691 -3.75c-18.5801 0 -35.1699 16.6699 -31.6104 37.4502l25.0596 145.479l-105.89 103c-19.0303 18.5 -8.50977 50.79 17.7402 54.5898l146.38 21.29l65.4297 132.381c5.90039 11.9092 17.29 17.8096 28.6904 17.8096\\nc11.4697 0 22.9395 -5.98047 28.8193 -17.8096l65.4102 -132.391zM386.81 153.29l82.6504 80.3799l-114.229 16.6299l-25.0107 3.64062l-11.1797 22.6299l-51.0303 103.29l-0.0292969 -317.19l22.3799 -11.7402l102.13 -53.5898l-19.5205 113.45l-4.2793 24.8799z\\\" />\\n    <glyph glyph-name=\\\"suitcase-rolling\\\" unicode=\\\"&#xf5c1;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M336 288c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-16v-16c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v16h-128v-16c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v16h-16\\nc-26.5098 0 -48 21.4902 -48 48v224c0 26.5098 21.4902 48 48 48h288zM320 72v16c0 4.41992 -3.58008 8 -8 8h-240c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h240c4.41992 0 8 3.58008 8 8zM320 168v16c0 4.41992 -3.58008 8 -8 8h-240\\nc-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h240c4.41992 0 8 3.58008 8 8zM144 400v-80h-48v80c0 26.5098 21.4902 48 48 48h96c26.5098 0 48 -21.4902 48 -48v-80h-48v80h-96z\\\" />\\n    <glyph glyph-name=\\\"surprise\\\" unicode=\\\"&#xf5c2;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM136 240c0 -17.7002 14.2998 -32 32 -32s32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32zM248 32c35.2998 0 64 28.7002 64 64s-28.7002 64 -64 64\\ns-64 -28.7002 -64 -64s28.7002 -64 64 -64zM328 208c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"swatchbook\\\" unicode=\\\"&#xf5c3;\\\" \\nd=\\\"M434.66 280.29c5.15527 -5.1709 9.33984 -15.293 9.33984 -22.5947s-4.18457 -17.4248 -9.33984 -22.5957l-210.66 -211.1v271.12l75.4297 75.5195l0.0703125 0.0703125v0c5.14258 5.12305 15.2061 9.28027 22.4648 9.28027c7.29102 0 17.3867 -4.18848 22.5352 -9.35059\\nl90.1602 -90.3496v0zM480 128c17.6641 0 32 -14.3359 32 -32v-128c0 -17.6641 -14.3359 -32 -32 -32h-300c2.17969 1.91016 4.62012 3.41992 6.67969 5.49023l186.41 186.51h106.91zM192 416v-384c0 -52.9922 -43.0078 -96 -96 -96s-96 43.0078 -96 96v384\\nc0 17.6641 14.3359 32 32 32h128c17.6641 0 32 -14.3359 32 -32zM96 8c13.248 0 24 10.752 24 24s-10.752 24 -24 24s-24 -10.752 -24 -24s10.752 -24 24 -24zM128 192v64h-64v-64h64zM128 320v64h-64v-64h64z\\\" />\\n    <glyph glyph-name=\\\"swimmer\\\" unicode=\\\"&#xf5c4;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M189.61 137.42c-5.04004 4.65039 -10.3906 8.34961 -15.8604 11.5801l68.6299 98.04c7.36035 10.5 16.3398 19.5498 26.7197 26.9404l80.0205 57.1699c25.54 18.2598 57.8301 24.96 88.5596 18.3799l100.351 -21.5303c25.9297 -5.55957 42.4297 -31.0801 36.8799 -57\\nc-5.56055 -25.9102 -31.0898 -42.4102 -57 -36.8799l-100.351 21.5303c-4.33984 0.90918 -8.97949 -0.0302734 -12.6191 -2.61035l-18 -12.8604l112.84 -80.5996c-17.5107 -1.04004 -34.5303 -8.4502 -49.3906 -22.1602\\nc-3.5293 -3.25977 -15.2695 -9.41992 -34.3896 -9.41992s-30.8496 6.16016 -34.3896 9.41992c-16.0107 14.7705 -34.5 22.5801 -53.46 22.5801h-16.3008c-18.96 0 -37.4395 -7.80957 -53.46 -22.5801c-3.5293 -3.25977 -15.2695 -9.41992 -34.3896 -9.41992\\ns-30.8496 6.16016 -34.3896 9.41992zM624 96c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-16c-38.6201 0 -72.7197 12.1797 -96 31.8398c-23.2803 -19.6494 -57.3799 -31.8398 -96 -31.8398s-72.7197 12.1797 -96 31.8398\\nc-23.2803 -19.6494 -57.3799 -31.8398 -96 -31.8398s-72.7197 12.1797 -96 31.8398c-23.2803 -19.6494 -57.3799 -31.8398 -96 -31.8398h-16c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h16c26.04 0 45.7998 8.41992 56.0703 17.9004\\nc8.89941 8.20996 19.6602 14.0996 31.7695 14.0996h16.2998c12.1104 0 22.8701 -5.88965 31.7705 -14.0996c10.29 -9.48047 30.0498 -17.9004 56.0898 -17.9004s45.7998 8.41992 56.0703 17.9004c8.89941 8.20996 19.6602 14.0996 31.7695 14.0996h16.2998\\nc12.1104 0 22.8701 -5.88965 31.7705 -14.0996c10.29 -9.48047 30.0498 -17.9004 56.0898 -17.9004s45.7998 8.41992 56.0703 17.9004c8.89941 8.20996 19.6602 14.0996 31.7695 14.0996h16.2998c12.1104 0 22.8701 -5.88965 31.7705 -14.0996\\nc10.29 -9.48047 30.0498 -17.9004 56.0898 -17.9004h16zM112 192c-44.1797 0 -80 35.8203 -80 80s35.8203 80 80 80s80 -35.8203 80 -80s-35.8203 -80 -80 -80z\\\" />\\n    <glyph glyph-name=\\\"swimming-pool\\\" unicode=\\\"&#xf5c5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 32c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-16c-38.6201 0 -72.7197 12.1797 -96 31.8398c-23.2803 -19.6494 -57.3799 -31.8398 -96 -31.8398s-72.7197 12.1797 -96 31.8398c-23.2803 -19.6494 -57.3799 -31.8398 -96 -31.8398\\ns-72.7197 12.1797 -96 31.8398c-23.2803 -19.6494 -57.3799 -31.8398 -96 -31.8398h-16c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h16c26.04 0 45.7998 8.41992 56.0703 17.9004c8.89941 8.20996 19.6602 14.0996 31.7695 14.0996h16.2998\\nc12.1104 0 22.8701 -5.88965 31.7705 -14.0996c10.29 -9.48047 30.0498 -17.9004 56.0898 -17.9004s45.7998 8.41992 56.0703 17.9004c8.89941 8.20996 19.6602 14.0996 31.7695 14.0996h16.2998c12.1104 0 22.8701 -5.88965 31.7705 -14.0996\\nc10.29 -9.48047 30.0498 -17.9004 56.0898 -17.9004s45.7998 8.41992 56.0703 17.9004c8.89941 8.20996 19.6602 14.0996 31.7695 14.0996h16.2998c12.1104 0 22.8701 -5.88965 31.7705 -14.0996c10.29 -9.48047 30.0498 -17.9004 56.0898 -17.9004h16zM224 64\\nc-19.1201 0 -30.8604 6.16016 -34.3896 9.42969c-9.16992 8.4502 -19.2002 14.3398 -29.6104 18.0703v228.5c0 52.9404 43.0596 96 96 96s96 -43.0596 96 -96v-16c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v16c0 17.6396 -14.3604 32 -32 32\\ns-32 -14.3604 -32 -32v-96h192v96c0 52.9404 43.0596 96 96 96s96 -43.0596 96 -96v-16c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v16c0 17.6396 -14.3604 32 -32 32s-32 -14.3604 -32 -32v-228.51\\nc-10.4102 -3.73047 -20.4404 -9.61035 -29.6104 -18.0703c-3.5293 -3.25977 -15.2695 -9.41992 -34.3896 -9.41992v96h-192v-96z\\\" />\\n    <glyph glyph-name=\\\"tint-slash\\\" unicode=\\\"&#xf5c7;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M633.82 -10.0996c6.97949 -5.43066 8.22949 -15.4805 2.81934 -22.4502l-19.6396 -25.2705c-5.42969 -6.97949 -15.4805 -8.23926 -22.46 -2.80957l-588.36 454.729c-6.97949 5.43066 -8.22949 15.4805 -2.80957 22.4502l19.6396 25.2705\\nc5.41992 6.97949 15.4805 8.22949 22.46 2.80957l186.82 -144.399c21.6201 33.7197 42.9697 73.3398 58.4902 125.68c9 30.1201 50.5 28.7803 58.4395 0c46.9902 -158.48 146.78 -200.061 146.78 -311.82c0 -5.70996 -0.509766 -11.2998 -1.03027 -16.8701zM144 114.09\\nc0 29.7803 7.30957 54.6299 18.7197 78.1299l273.681 -211.52c-31.0303 -27.7402 -71.6904 -44.7002 -116.4 -44.7002c-97.2803 0 -176 79.6504 -176 178.09z\\\" />\\n    <glyph glyph-name=\\\"tired\\\" unicode=\\\"&#xf5c8;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM281.8 250.3c-7.7002 -4.7002 -7.7002 -15.8994 0 -20.5996l80 -48c11.5 -6.7998 24.1006 7.59961 15.4004 18l-33.6006 40.2998l33.6006 40.2998\\nc8.59961 10.2998 -3.7998 24.9004 -15.4004 18zM118.8 280.3l33.6006 -40.2998l-33.6006 -40.2998c-8.59961 -10.4004 3.90039 -24.7998 15.4004 -18l80 48c7.7998 4.7002 7.7998 15.8994 0 20.5996l-80 48c-11.6006 6.90039 -24 -7.7002 -15.4004 -18zM248 160\\nc-51.9004 0 -115.3 -43.7998 -123.2 -106.7c-1.7002 -13.3994 7.90039 -24.5996 17.7002 -20.3994c25.9004 11.0996 64.4004 17.3994 105.5 17.3994s79.5996 -6.2998 105.5 -17.3994c9.7002 -4.2002 19.4004 6.7998 17.7002 20.3994\\nc-7.90039 62.9004 -71.2998 106.7 -123.2 106.7z\\\" />\\n    <glyph glyph-name=\\\"tooth\\\" unicode=\\\"&#xf5c9;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M443.98 351.75c10.1299 -41.6299 0.419922 -80.8203 -21.5303 -110.43c-23.3604 -31.5703 -32.6807 -68.6504 -36.29 -107.351c-4.41016 -47.1602 -10.3301 -94.1699 -20.9404 -140.319l-7.7998 -33.9502c-3.18945 -13.8701 -15.4902 -23.7002 -29.6699 -23.7002\\nc-13.9697 0 -26.1504 9.5498 -29.54 23.1602l-34.4697 138.42c-4.56055 18.3096 -20.96 31.1602 -39.7598 31.1602c-18.8008 0 -35.2002 -12.8398 -39.7607 -31.1602l-34.4697 -138.42c-3.38965 -13.6104 -15.5703 -23.1602 -29.54 -23.1602\\nc-14.1797 0 -26.4795 9.83008 -29.6699 23.7002l-7.7998 33.9502c-10.6104 46.1592 -16.54 93.1592 -20.9404 140.319c-3.60938 38.6904 -12.9297 75.7803 -36.29 107.351c-21.9199 29.6201 -31.6299 68.8096 -21.5 110.43c11.0098 45.2197 47.1104 82.0498 92.0098 93.7197\\nc23.4307 6.08984 46.1104 0.540039 66.8105 -10.3096l100.51 -64.6201c7.83984 -5.05957 17.6504 -2.15039 22.1104 4.7998c4.78027 7.44043 2.62012 17.3398 -4.7998 22.1104l-28.3203 18.21c3.54004 1.75 7.25 3.08984 10.5 5.47949\\nc26.1396 19.2305 56.9502 32.6904 89.1396 24.3301c44.9004 -11.6602 81 -48.5 92.0107 -93.7197z\\\" />\\n    <glyph glyph-name=\\\"umbrella-beach\\\" unicode=\\\"&#xf5ca;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M115.38 311.1c-10.0801 3.66992 -14.1104 16.3203 -7.41992 24.7207c59.75 74.8398 152.65 116.689 248.53 111.8c-52.79 -29.4102 -103.811 -92.1602 -139 -173.7zM247.63 262.94c44.4902 101.979 114.74 171.14 172.76 171.149c7.95996 0 15.6904 -1.2998 23.0908 -4\\nc61.3291 -22.3203 78.3896 -132.6 42.6299 -253.979zM521.48 387.5c76.5293 -57.9199 120.76 -149.67 118.439 -245.36c-0.259766 -10.7393 -11.4795 -17.8398 -21.5703 -14.1699l-102.619 37.3604c17.5293 58.75 24.6895 117.09 18.9492 166.979\\nc-2.37012 20.5908 -6.97949 38.8906 -13.1992 55.1904zM560 0.0195312c8.83984 0 16 -7.15918 16 -16v-32.0098c0 -8.83984 -7.16016 -16.0098 -16 -16.0098h-544c-8.83984 0 -16 7.16992 -16 16.0098v32.0098c0 8.85059 7.16016 16.0107 16 16.0107h236.96l72.9004 200.37\\nl60.1396 -21.9004l-64.9404 -178.48h238.94z\\\" />\\n    <glyph glyph-name=\\\"vector-square\\\" unicode=\\\"&#xf5cb;\\\" \\nd=\\\"M512 320c0 -17.6699 -14.3301 -32 -32 -32v-192c17.6699 0 32 -14.3301 32 -32v-96c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32h-192c0 -17.6699 -14.3301 -32 -32 -32h-96c-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32v192\\nc-17.6699 0 -32 14.3301 -32 32v96c0 17.6699 14.3301 32 32 32h96c17.6699 0 32 -14.3301 32 -32h192c0 17.6699 14.3301 32 32 32h96c17.6699 0 32 -14.3301 32 -32v-96zM416 384v-32h32v32h-32zM64 384v-32h32v32h-32zM96 0v32h-32v-32h32zM448 0v32h-32v-32h32zM416 96\\nv192h-32c-17.6699 0 -32 14.3301 -32 32v32h-192v-32c0 -17.6699 -14.3301 -32 -32 -32h-32v-192h32c17.6699 0 32 -14.3301 32 -32v-32h192v32c0 17.6699 14.3301 32 32 32h32z\\\" />\\n    <glyph glyph-name=\\\"weight-hanging\\\" unicode=\\\"&#xf5cd;\\\" \\nd=\\\"M510.28 2.13965c8.33008 -33.3096 -14.6602 -66.1396 -46.2998 -66.1396h-415.95c-31.6504 0 -54.6406 32.8301 -46.3105 66.1396l73.0498 292.13c3.79004 15.1807 16.4404 25.7207 30.8701 25.7207h60.25c-3.58008 10.0498 -5.87988 20.7197 -5.87988 32\\nc0 53.0195 42.9805 96 96 96c53.0205 0 96 -42.9805 96 -96c0 -11.2803 -2.30957 -21.9502 -5.87988 -32h60.25c14.4297 0 27.0703 -10.5303 30.8701 -25.7207zM256 320c17.6396 0 32 14.3604 32 32s-14.3604 32 -32 32s-32 -14.3604 -32 -32s14.3604 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"wine-glass-alt\\\" unicode=\\\"&#xf5ce;\\\" horiz-adv-x=\\\"288\\\" \\nd=\\\"M216 -16c22.0898 0 40 -17.9102 40 -40c0 -4.41992 -3.58008 -8 -8 -8h-208c-4.41992 0 -8 3.58008 -8 8c0 22.0898 17.9102 40 40 40h40v117.18c-68.4697 15.8906 -118.05 79.9102 -111.4 154.16l15.96 178.11c0.730469 8.24023 7.55078 14.5498 15.7002 14.5498h223.48\\nc8.16016 0 14.9697 -6.30957 15.71 -14.5498l15.9502 -178.101c6.64941 -74.25 -42.9307 -138.27 -111.4 -154.159v-117.19h40zM61.75 400l-7.16992 -80h178.84l-7.16992 80h-164.5z\\\" />\\n    <glyph glyph-name=\\\"air-freshener\\\" unicode=\\\"&#xf5d0;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M378.94 126.59c11.75 -12.1494 1.71973 -30.5898 -16.6406 -30.5898h-138.3v-32h112c8.83984 0 16 -7.16016 16 -16v-96c0 -8.83984 -7.16016 -16 -16 -16h-288c-8.83984 0 -16 7.16016 -16 16v96c0 8.83984 7.16016 16 16 16h112v32h-138.3\\nc-18.3604 0 -28.3906 18.4404 -16.6406 30.5898l94.2402 97.4102h-49.2197c-15.2998 0 -23.6602 16.5996 -13.8604 27.5303l113.33 126.51c-3.42969 6.61035 -5.5498 14 -5.5498 21.96c0 26.5098 21.4902 48 48 48s48 -21.4902 48 -48\\nc0 -7.95996 -2.12012 -15.3496 -5.5498 -21.96l113.33 -126.51c9.7998 -10.9307 1.43945 -27.5303 -13.8604 -27.5303h-49.2197zM192 416.02c-8.84961 0 -16.0195 -7.16992 -16.0195 -16.0195c0 -8.83984 7.16992 -16.0195 16.0195 -16.0195\\ns16.0195 7.17969 16.0195 16.0195c0 8.84961 -7.16992 16.0195 -16.0195 16.0195zM304 16h-224v-32h224v32z\\\" />\\n    <glyph glyph-name=\\\"apple-alt\\\" unicode=\\\"&#xf5d1;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M350.85 319c25.9707 -4.66992 47.2705 -18.6699 63.9199 -42c14.6504 -20.6699 24.6406 -46.6699 29.9609 -78c4.66992 -28.6699 4.31934 -57.3301 -1 -86c-7.99023 -47.3301 -23.9707 -87 -47.9404 -119c-28.6396 -38.6699 -64.5898 -58 -107.87 -58\\nc-10.6602 0 -22.2998 3.33008 -34.96 10c-8.66016 5.33008 -18.3096 8 -28.9697 8s-20.2998 -2.66992 -28.9707 -8c-12.6592 -6.66992 -24.2998 -10 -34.96 -10c-43.2793 0 -79.2295 19.3301 -107.869 58c-23.9707 32 -39.9502 71.6699 -47.9404 119\\nc-5.32031 28.6699 -5.66992 57.3301 -1 86c5.32031 31.3301 15.3096 57.3301 29.96 78c16.6504 23.3301 37.9502 37.3301 63.9199 42c15.9805 2.66992 37.9502 0.330078 65.9199 -7c23.9697 -6.66992 44.2803 -14.6699 60.9307 -24\\nc16.6494 9.33008 36.96 17.3301 60.9297 24c27.9795 7.33008 49.96 9.66992 65.9395 7zM295.91 360c-9.32031 -8.66992 -21.6504 -15 -36.96 -19c-10.6602 -3.33008 -22.2998 -5 -34.96 -5l-14.9805 1c-1.33008 9.33008 -1.33008 20 0 32\\nc2.66992 24 10.3203 42.3301 22.9707 55c9.31934 8.66992 21.6494 15 36.96 19c10.6592 3.33008 22.2998 5 34.96 5l14.9795 -1l1 -15c0 -12.6699 -1.66992 -24.3301 -4.99023 -35c-3.98926 -15.3301 -10.3096 -27.6699 -18.9795 -37z\\\" />\\n    <glyph glyph-name=\\\"atom\\\" unicode=\\\"&#xf5d2;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M223.999 224c17.6328 -0.03125 31.9727 -14.3672 32.0078 -32c0 -17.6641 -14.3359 -32 -32 -32s-32 14.3359 -32 32c0 17.6602 14.333 31.9961 31.9922 32zM438.171 320c16.3789 -29.375 15.0039 -73.125 -25.1309 -128c40.1348 -54.875 41.5098 -98.625 25.1309 -128\\nc-29.1309 -52.375 -101.646 -43.625 -116.275 -41.875c-21.5039 -51.25 -54.2617 -86.125 -97.8965 -86.125s-76.3906 34.875 -97.8965 86.125c-14.627 -1.75 -87.1426 -10.5 -116.273 41.875c-16.3789 29.375 -15.0039 73.125 25.1289 128\\nc-40.1328 54.875 -41.5078 98.625 -25.1289 128c10.877 19.5 40.5078 50.625 116.273 41.875c21.5059 51.25 54.2617 86.125 97.8965 86.125s76.3926 -34.875 97.8965 -86.125c75.7656 8.875 105.398 -22.375 116.275 -41.875zM63.3389 96\\nc3.75195 -6.625 19.0059 -11.875 43.6348 -11c-2.75 13 -5.125 26.375 -6.75 40.125c-7.75195 6.25 -15.0039 12.625 -21.8809 19.125c-15.1289 -23.5 -19.0039 -41 -15.0039 -48.25zM100.224 258.875c1.625 13.5 3.875 26.875 6.75 40.25c-1.875 0 -4 0.375 -5.75 0.375\\nc-21.5059 0 -34.5078 -5.375 -37.8848 -11.5c-4 -7.25 -0.125 -24.75 15.0039 -48.25c6.87695 6.5 14.1289 12.875 21.8809 19.125zM223.999 384c-9.50195 0 -22.2539 -13.5 -33.8828 -37.25c11.2539 -3.75 22.5059 -8 33.8828 -12.875\\nc11.3789 4.875 22.6309 9.125 33.8828 12.875c-11.627 23.75 -24.3809 37.25 -33.8828 37.25zM223.999 0c9.50195 0 22.2559 13.5 33.8828 37.25c-11.252 3.75 -22.5039 8 -33.8828 12.875c-11.377 -4.875 -22.6289 -9.125 -33.8828 -12.875\\nc11.6289 -23.75 24.3809 -37.25 33.8828 -37.25zM223.999 112c44.1602 0 80 35.8398 80 80s-35.8398 80 -80 80s-80 -35.8398 -80 -80s35.8398 -80 80 -80zM384.659 96c4 7.25 0.125 24.75 -15.0039 48.25c-6.875 -6.5 -14.127 -12.875 -21.8789 -19.125\\nc-1.625 -13.75 -4 -27.125 -6.75195 -40.125c24.6309 -0.875 40.0098 4.375 43.6348 11zM369.655 239.75c15.1289 23.5 19.0039 41 15.0039 48.25c-3.375 6.125 -16.3789 11.5 -37.8828 11.5c-1.75 0 -3.87695 -0.375 -5.75195 -0.375\\nc2.87695 -13.375 5.12695 -26.75 6.75195 -40.25c7.75195 -6.25 15.0039 -12.625 21.8789 -19.125z\\\" />\\n    <glyph glyph-name=\\\"bone\\\" unicode=\\\"&#xf5d7;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M598.88 203.44c-9.42969 -4.70996 -9.42969 -18.1709 -0.00976562 -22.8809c25.2002 -12.5996 41.1201 -38.3496 41.1201 -66.5293v-7.64062c0 -41.0898 -33.2998 -74.3896 -74.3799 -74.3896c-32.0107 0 -60.4404 20.4902 -70.5703 50.8604\\nc-6.53027 19.5996 -10.7305 45.1396 -38.1104 45.1396h-273.87c-26.5098 0 -30.4297 -22.1104 -38.1094 -45.1396c-10.1299 -30.3701 -38.5498 -50.8604 -70.5703 -50.8604c-41.0801 0 -74.3799 33.2998 -74.3799 74.3896v7.64062\\nc0 28.1699 15.9199 53.9297 41.1201 66.5293c9.42969 4.70996 9.42969 18.1709 0 22.8809c-25.2002 12.5996 -41.1201 38.3594 -41.1201 66.5293v7.64062c0 41.0898 33.2998 74.3896 74.3896 74.3896c32.0107 0 60.4404 -20.4902 70.5605 -50.8604\\nc6.53027 -19.5996 10.7295 -45.1396 38.1094 -45.1396h273.87c26.5107 0 30.4307 22.1104 38.1104 45.1396c10.1299 30.3701 38.5498 50.8604 70.5703 50.8604c41.0898 0 74.3896 -33.2998 74.3896 -74.3896v-7.64062c0 -28.1699 -15.9199 -53.9297 -41.1201 -66.5293z\\\" />\\n    <glyph glyph-name=\\\"book-reader\\\" unicode=\\\"&#xf5da;\\\" \\nd=\\\"M352 352c0 -53.0195 -42.9805 -96 -96 -96s-96 42.9805 -96 96s42.9805 96 96 96s96 -42.9805 96 -96zM233.59 206.9c4.10059 -2.51074 6.41016 -6.79004 6.41992 -11.46v-245.99c0 -10.1602 -11.1094 -16.5898 -20.4795 -11.8701\\nc-61.0498 30.75 -149.38 39.1396 -193.04 41.4297c-14.9004 0.770508 -26.4902 12.7207 -26.4902 27.0498v222.801c0 15.6299 13.5498 28.0098 29.7998 27.0898c48.3604 -2.75 144.46 -12.7305 203.79 -49.0498zM482.2 255.95\\nc16.25 0.919922 29.7998 -11.46 29.8096 -27.0898v-222.82c0 -14.3301 -11.5898 -26.2803 -26.4902 -27.0596c-43.6494 -2.29004 -131.93 -10.6807 -192.97 -41.4004c-9.39941 -4.73047 -20.54 1.70996 -20.54 11.9004v245.789c0 4.6709 2.31055 9.12012 6.41016 11.6309\\nc59.3203 36.3193 155.43 46.3096 203.78 49.0498z\\\" />\\n    <glyph glyph-name=\\\"brain\\\" unicode=\\\"&#xf5dc;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M208 448c35.2998 0 64 -28.7002 64 -64v-376c0 -39.7998 -32.2002 -72 -72 -72c-31.7998 0 -58.4004 20.7002 -68 49.2002c-3.90039 -0.700195 -7.90039 -1.2002 -12 -1.2002c-39.7998 0 -72 32.2002 -72 72c0 4.7998 0.5 9.5 1.40039 14.0996\\nc-29 12 -49.4004 40.6006 -49.4004 73.9004c0 29.7002 16.2998 55.2998 40.2998 69.0996c-5.09961 10.6006 -8.2998 22.3008 -8.2998 34.9004c0 33.4004 20.5 62 49.7002 74c-1.10059 4.5 -1.7002 9.2002 -1.7002 14c0 35.2998 28.7002 64 64 64\\nc0.799805 0 1.40039 -0.200195 2.2002 -0.200195c7.09961 27.7002 31.8994 48.2002 61.7998 48.2002zM576 144c0 -33.2998 -20.4004 -61.9004 -49.4004 -73.9004c0.900391 -4.59961 1.40039 -9.2998 1.40039 -14.0996c0 -39.7998 -32.2002 -72 -72 -72\\nc-4.09961 0 -8.09961 0.5 -12 1.2002c-9.59961 -28.5 -36.2002 -49.2002 -68 -49.2002c-39.7998 0 -72 32.2002 -72 72v376c0 35.4004 28.7002 64 64 64c29.9004 0 54.7002 -20.5 61.7998 -48.2002c0.700195 0 1.40039 0.200195 2.2002 0.200195\\nc35.2998 0 64 -28.7002 64 -64c0 -4.7998 -0.700195 -9.5 -1.7002 -14c29.2002 -12 49.7002 -40.5996 49.7002 -74c0 -12.5996 -3.09961 -24.2998 -8.2998 -34.9004c24 -13.7998 40.2998 -39.3994 40.2998 -69.0996z\\\" />\\n    <glyph glyph-name=\\\"car-alt\\\" unicode=\\\"&#xf5de;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M438.66 235.67c24.1201 -9.16992 41.3398 -32.3301 41.3398 -59.6699v-48c0 -16.1299 -6.16016 -30.6797 -16 -41.9297v-54.0703c0 -17.6699 -14.3301 -32 -32 -32h-32c-17.6699 0 -32 14.3301 -32 32v32h-256v-32c0 -17.6699 -14.3301 -32 -32 -32h-32\\nc-17.6699 0 -32 14.3301 -32 32v54.0703c-9.83984 11.2598 -16 25.8096 -16 41.9297v48c0 27.3398 17.2197 50.5 41.3398 59.6699l11.2402 28.0996l19.9297 49.8301c17.1104 42.7705 57.9307 70.4004 103.99 70.4004h127c46.0703 0 86.8799 -27.6299 103.99 -70.4004\\nl19.9297 -49.8301zM131.93 289.83l-19.9297 -49.8301h256l-19.9297 49.8301c-7.29004 18.2197 -24.9404 30.1699 -44.5703 30.1699h-127c-19.6299 0 -37.2803 -11.9502 -44.5703 -30.1699zM80 128.2c19.2002 0 48 -3.19043 48 15.9502\\nc0 19.1396 -28.7998 47.8496 -48 47.8496s-32 -12.7598 -32 -31.9004c0 -19.1396 12.7998 -31.8994 32 -31.8994zM400 128.2c19.2002 0 32 12.7598 32 31.8994c0 19.1406 -12.7998 31.9004 -32 31.9004s-48 -28.71 -48 -47.8496c0 -19.1406 28.7998 -15.9502 48 -15.9502z\\n\\\" />\\n    <glyph glyph-name=\\\"car-battery\\\" unicode=\\\"&#xf5df;\\\" \\nd=\\\"M480 320c17.6699 0 32 -14.3301 32 -32v-256c0 -17.6699 -14.3301 -32 -32 -32h-448c-17.6699 0 -32 14.3301 -32 32v256c0 17.6699 14.3301 32 32 32h32v48c0 8.83984 7.16016 16 16 16h96c8.83984 0 16 -7.16016 16 -16v-48h128v48c0 8.83984 7.16016 16 16 16h96\\nc8.83984 0 16 -7.16016 16 -16v-48h32zM192 184v16c0 4.41992 -3.58008 8 -8 8h-112c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h112c4.41992 0 8 3.58008 8 8zM448 184v16c0 4.41992 -3.58008 8 -8 8h-40v40c0 4.41992 -3.58008 8 -8 8h-16\\nc-4.41992 0 -8 -3.58008 -8 -8v-40h-40c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h40v-40c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v40h40c4.41992 0 8 3.58008 8 8z\\\" />\\n    <glyph glyph-name=\\\"car-crash\\\" unicode=\\\"&#xf5e1;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M143.25 227.19l-12.4199 -46.3701c-3.00977 -11.25 -3.62988 -22.8906 -2.41016 -34.3906l-35.2002 -28.9795c-6.56934 -5.41016 -16.3096 0.429688 -14.6201 8.76953l15.4404 76.6807c1.05957 5.25977 -2.66016 10.2793 -8 10.79l-77.8604 7.5498\\nc-8.46973 0.819336 -11.2295 11.8301 -4.13965 16.54l65.1504 43.2998c4.45996 2.96973 5.37988 9.15039 1.97949 13.29l-49.71 60.4102c-5.41016 6.56934 0.429688 16.2998 8.78027 14.6201l76.6797 -15.4404c5.25977 -1.05957 10.2803 2.66016 10.7998 8l7.5498 77.8604\\nc0.820312 8.47949 11.8301 11.2295 16.5508 4.13965l43.2998 -65.1396c2.96973 -4.45996 9.14941 -5.37988 13.29 -1.98047l60.3994 49.71c6.57031 5.41016 16.3008 -0.429688 14.6201 -8.76953l-11.3301 -56.1602c-2.70996 -3.0498 -5.42969 -6.08984 -7.90918 -9.40039\\nl-32.1504 -42.9697l-10.71 -14.3203c-32.7305 -8.75977 -59.1797 -34.5293 -68.0801 -67.7393zM637.82 94.6797l-12.4199 -46.3594c-3.13086 -11.6807 -9.38086 -21.6104 -17.5508 -29.3604c-2.25488 -2.13574 -6.17969 -5.27148 -8.75977 -7l-13.9902 -52.2295\\nc-1.13965 -4.27051 -3.09961 -8.10059 -5.64941 -11.3809c-7.66992 -9.83984 -20.7402 -14.6797 -33.54 -11.25l-30.9102 8.28027c-17.0703 4.57031 -27.2002 22.1201 -22.6299 39.1904l8.28027 30.9102l-247.28 66.2598l-8.28027 -30.9102\\nc-4.57031 -17.0703 -22.1201 -27.2002 -39.1895 -22.6299l-30.9102 8.28027c-12.7998 3.42969 -21.7002 14.1592 -23.4199 26.5098c-0.570312 4.12012 -0.350586 8.41992 0.790039 12.6797l13.9893 52.2305c-1.37207 2.78809 -3.2041 7.46973 -4.08984 10.4492\\nc-3.2002 10.79 -3.64941 22.5205 -0.519531 34.2002l12.4199 46.3701c5.30957 19.7998 19.3594 34.8301 36.8896 42.21c4.9082 2.06836 13.1914 4.18262 18.4902 4.71973l18.1299 24.2305l32.1504 42.9697c3.44922 4.61035 7.18945 8.90039 11.1992 12.8398\\nc8 7.89062 17.0303 14.4404 26.7402 19.5107c4.86035 2.54004 9.89062 4.70996 15.0498 6.48926c10.3301 3.58008 21.1904 5.62988 32.2402 6.04004s22.3105 -0.819336 33.4307 -3.7998l122.68 -32.8701c11.1201 -2.97949 21.4795 -7.54004 30.8496 -13.4297\\nc11.7236 -7.36133 27.2646 -22.8174 34.6904 -34.5c8.81934 -13.8799 14.6396 -29.8398 16.6797 -46.9902l6.36035 -53.29l3.58984 -30.0498c8.79297 -6.34863 18.9805 -19.7568 22.7402 -29.9297c4.38965 -11.8799 5.29004 -25.1904 1.75 -38.3906zM255.58 213.66\\nc-18.5498 4.96973 -34.21 -4.04004 -39.1699 -22.5303s4.10938 -34.1201 22.6494 -39.0898c18.5508 -4.96973 45.54 -15.5098 50.4902 2.97949c4.95996 18.4902 -15.4297 53.6709 -33.9697 58.6406zM546.19 185.49l-6.36035 53.29\\nc-0.580078 4.87012 -1.88965 9.5293 -3.82031 13.8594c-5.7998 12.9902 -17.2002 23.0107 -31.4199 26.8203l-122.68 32.8701c-3.36914 0.902344 -8.93457 1.63477 -12.4229 1.63477c-13.2676 0 -30.4883 -8.62207 -38.4375 -19.2451l-32.1494 -42.9697l172 -46.0801z\\nM564.68 130.84c-18.5498 4.96973 -53.7998 -15.3096 -58.75 -33.79c-4.94922 -18.4902 23.6904 -22.8594 42.2402 -27.8301c18.5498 -4.96973 34.21 4.04004 39.1699 22.5303c4.9502 18.4805 -4.10938 34.1201 -22.6602 39.0898z\\\" />\\n    <glyph glyph-name=\\\"car-side\\\" unicode=\\\"&#xf5e4;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 256c53.0195 0 96 -42.9805 96 -96v-80c0 -8.83984 -7.16016 -16 -16 -16h-48c0 -53.0195 -42.9805 -96 -96 -96s-96 42.9805 -96 96h-128c0 -53.0195 -42.9805 -96 -96 -96s-96 42.9805 -96 96h-48c-8.83984 0 -16 7.16016 -16 16v112\\nc0 29.79 20.4404 54.5996 48 61.7402l47.9102 122.029c9.71973 24.3008 33.25 40.2305 59.4199 40.2305h213.91c16.9795 -0.00195312 39.3701 -10.7627 49.9795 -24.0195l108.78 -135.98h16zM160 16c26.4697 0 48 21.5303 48 48s-21.5303 48 -48 48s-48 -21.5303 -48 -48\\ns21.5303 -48 48 -48zM232 256v96h-76.6699l-38.4004 -96h115.07zM280 256h166.04l-76.7998 96h-89.2402v-96zM480 16c26.4697 0 48 21.5303 48 48s-21.5303 48 -48 48s-48 -21.5303 -48 -48s21.5303 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"charging-station\\\" unicode=\\\"&#xf5e7;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M336 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-320c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h320zM544 320h16c8.83984 0 16 -7.16016 16 -16v-32c0 -35.7598 -23.6201 -65.6904 -56 -75.9297v-120.07\\nc0 -44.4102 -38.29 -80.0498 -83.5898 -75.6201c-39.4902 3.85059 -68.4102 39.3398 -68.4102 79.0098v24.6104c0 22.0898 -17.9102 40 -40 40h-8v-112h-288v352c0 35.3496 28.6504 64 64 64h160c35.3496 0 64 -28.6504 64 -64v-192h8c48.5996 0 88 -39.4004 88 -88v-28\\nc0 -16.9902 15.2197 -30.5 32.7402 -27.6104c13.7598 2.27051 23.2598 15.2402 23.2598 29.1904v118.49c-32.3799 10.2393 -56 40.1699 -56 75.9297v32c0 8.83984 7.16016 16 16 16h16v48c0 8.83984 7.16016 16 16 16s16 -7.16016 16 -16v-48h32v48\\nc0 8.83984 7.16016 16 16 16s16 -7.16016 16 -16v-48zM260.09 272.24c4.62012 6.97949 -1.14941 15.7598 -10.3896 15.7598h-57.7002l11.5996 50.79c2.02051 6.66992 -3.71973 13.21 -11.5996 13.21h-68c-6.01953 0 -11.0996 -3.90039 -11.8896 -9.11035l-16 -107\\nc-0.959961 -6.2998 4.63965 -11.8896 11.8896 -11.8896h59.3496l-23.0195 -83.0801c-1.7998 -6.63965 4 -12.9199 11.6699 -12.9199c4.17969 0 8.19043 1.91016 10.3896 5.24023z\\\" />\\n    <glyph glyph-name=\\\"directions\\\" unicode=\\\"&#xf5eb;\\\" \\nd=\\\"M502.61 214.68c12.5195 -12.5293 12.5195 -32.8301 0 -45.3594l-223.931 -223.931c-12.5293 -12.5293 -32.8398 -12.5293 -45.3594 0l-223.931 223.931c-12.5195 12.5293 -12.5195 32.8301 0 45.3594l223.931 223.931c12.5293 12.5195 32.8398 12.5195 45.3594 0z\\nM401.63 202.12c3.42969 3.16992 3.42969 8.58984 0 11.7598l-84.21 77.7305c-5.12988 4.72949 -13.4297 1.08984 -13.4297 -5.87988v-53.7305h-112c-17.6699 0 -32 -14.3301 -32 -32v-80c0 -4.41992 3.58008 -8 8 -8h32c4.41992 0 8 3.58008 8 8v64h96v-53.7305\\nc0 -6.97949 8.30957 -10.6094 13.4297 -5.87988z\\\" />\\n    <glyph glyph-name=\\\"draw-polygon\\\" unicode=\\\"&#xf5ee;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M384 96c35.3496 0 64 -28.6504 63.9902 -64c0 -35.3496 -28.6504 -64 -64 -64c-23.6299 0 -44.0303 12.9502 -55.1201 32h-209.75c-11.0801 -19.0498 -31.4902 -32 -55.1201 -32c-35.3496 0 -64 28.6504 -64 64c0 23.6299 12.9502 44.04 32 55.1299v209.75\\nc-19.0498 11.0801 -32 31.4902 -32 55.1201c0 35.3496 28.6504 64 64 64c23.6299 0 44.04 -12.9502 55.1201 -32h209.76c11.0801 19.0498 31.4902 32 55.1201 32c35.3496 0 64 -28.6504 64 -64s-28.6504 -64 -64 -64c-0.349609 0 -0.669922 0.0898438 -1.01953 0.0996094\\nl-39.2002 -65.3193c5.08008 -9.16992 8.21973 -19.5605 8.21973 -30.7803s-3.15039 -21.6104 -8.21973 -30.7803l39.2002 -65.3193c0.349609 0 0.669922 0.0996094 1.01953 0.0996094zM96 87.1201c8.07422 -4.68848 18.4316 -15.0459 23.1201 -23.1201h208.36\\nl-38.4609 64.0996c-0.349609 0 -0.669922 -0.0996094 -1.01953 -0.0996094c-35.3496 0 -64 28.6504 -64 64s28.6504 64 64 64c0.349609 0 0.669922 -0.0898438 1.01953 -0.0996094l38.4609 64.0996h-208.36c-4.69043 -8.07227 -15.0479 -18.4297 -23.1201 -23.1201v-209.76z\\nM272 192c0 -8.82031 7.17969 -16 16 -16s16 7.17969 16 16s-7.17969 16 -16 16s-16 -7.17969 -16 -16zM400 352c0 8.82031 -7.17969 16 -16 16s-16 -7.17969 -16 -16s7.17969 -16 16 -16s16 7.17969 16 16zM64 368c-8.82031 0 -16 -7.17969 -16 -16s7.17969 -16 16 -16\\ns16 7.17969 16 16s-7.17969 16 -16 16zM48 32c0 -8.82031 7.17969 -16 16 -16s16 7.17969 16 16s-7.17969 16 -16 16s-16 -7.17969 -16 -16zM384 16c8.82031 0 16 7.17969 16 16s-7.17969 16 -16 16s-16 -7.17969 -16 -16s7.17969 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"laptop-code\\\" unicode=\\\"&#xf5fc;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M255.03 186.35l-58.3506 58.3408c-6.25 6.25 -6.25 16.3799 0 22.6299l58.3398 58.3398c6.25 6.25 16.3809 6.25 22.6309 0l11.3096 -11.3105c6.25 -6.25 6.25 -16.3799 0 -22.6299l-35.71 -35.7197l35.7197 -35.71c6.25 -6.25 6.25 -16.3799 0 -22.6299\\nl-11.3096 -11.3105c-6.25 -6.25 -16.3799 -6.25 -22.6299 0zM351.04 197.65c-6.25 6.25 -6.25 16.3799 0 22.6299l35.71 35.7197l-35.71 35.71c-6.25 6.25 -6.25 16.3799 0 22.6299l11.3096 11.3105c6.25 6.25 16.3809 6.25 22.6309 0l58.3398 -58.3408\\nc6.25 -6.25 6.25 -16.3799 0 -22.6299l-58.3398 -58.3398c-6.25 -6.25 -16.3809 -6.25 -22.6309 0zM624 32c8.7998 0 16 -7.2002 16 -16v-16c0 -35.2002 -28.7998 -64 -64 -64h-512c-35.2002 0 -64 28.7998 -64 64v16c0 8.7998 7.2002 16 16 16h239.23\\nc-0.25 -14.5303 14.0791 -32 32.7695 -32h60.7998c18.0303 0 32 12.1904 32.7402 32h242.46zM576 400v-336h-512v336c0 26.4004 21.5996 48 48 48h416c26.4004 0 48 -21.5996 48 -48zM512 128v256h-384v-256h384z\\\" />\\n    <glyph glyph-name=\\\"layer-group\\\" unicode=\\\"&#xf5fd;\\\" \\nd=\\\"M12.4102 299.98c-16.5498 7.50977 -16.5498 32.5293 0 40.0391l232.95 105.671c2.79883 1.2793 7.56738 2.31738 10.6445 2.31738s7.84668 -1.03809 10.6455 -2.31738l232.93 -105.681c16.5498 -7.50977 16.5498 -32.5195 0 -40.0293l-232.94 -105.671\\nc-6.7998 -3.08984 -14.4893 -3.08984 -21.29 0zM499.59 211.7c16.5498 -7.5 16.5498 -32.5 0 -40l-232.95 -105.59c-6.7998 -3.08008 -14.4893 -3.08008 -21.29 0l-232.939 105.59c-16.5498 7.5 -16.5498 32.5 0 40l58.0996 26.3301l161.63 -73.2705\\nc7.57031 -3.42969 15.5908 -5.16992 23.8604 -5.16992s16.2998 1.74023 23.8604 5.16992l161.64 73.2705zM499.59 83.9004c16.5498 -7.5 16.5498 -32.5 0 -40l-232.95 -105.591c-6.7998 -3.0791 -14.4893 -3.0791 -21.29 0l-232.939 105.591\\nc-16.5498 7.5 -16.5498 32.5 0 40l57.8799 26.2295l161.85 -73.3701c7.57031 -3.42969 15.5908 -5.16992 23.8604 -5.16992s16.2998 1.74023 23.8604 5.16992l161.859 73.3701z\\\" />\\n    <glyph glyph-name=\\\"microscope\\\" unicode=\\\"&#xf610;\\\" \\nd=\\\"M160 128c-17.6699 0 -32 14.3301 -32 32v224c0 17.6699 14.3301 32 32 32v16c0 8.83984 7.16016 16 16 16h64c8.83984 0 16 -7.16016 16 -16v-16c17.6699 0 32 -14.3301 32 -32v-224c0 -17.6699 -14.3301 -32 -32 -32h-12v-16c0 -8.83984 -7.16016 -16 -16 -16h-40\\nc-8.83984 0 -16 7.16016 -16 16v16h-12zM464 0c26.5098 0 48 -21.4902 48 -48c0 -8.83984 -7.16016 -16 -16 -16h-480c-8.83984 0 -16 7.16016 -16 16c0 26.5098 21.4902 48 48 48h272c70.5801 0 128 57.4199 128 128s-57.4199 128 -128 128v64\\nc105.88 0 192 -86.1201 192 -192c0 -49.2002 -18.7598 -93.9902 -49.29 -128h1.29004zM104 32c-4.41992 0 -8 3.58008 -8 8v16c0 4.41992 3.58008 8 8 8h208c4.41992 0 8 -3.58008 8 -8v-16c0 -4.41992 -3.58008 -8 -8 -8h-208z\\\" />\\n    <glyph glyph-name=\\\"oil-can\\\" unicode=\\\"&#xf613;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M629.8 287.69c5.11035 1.45996 10.2002 -2.38086 10.1904 -7.69043v-18.0801c0 -2.12012 -0.839844 -4.16016 -2.33984 -5.66016l-212.261 -214.75c-6.00977 -6.08984 -14.21 -9.50977 -22.7598 -9.50977h-274.63c-17.6699 0 -32 14.3301 -32 32v46.54l-69.7197 12.6904\\nc-15.2207 2.75977 -26.2803 16.0195 -26.2803 31.4795v94.9502c0 17.9795 14.6699 32.0098 31.9297 32.0098c1.61133 0 4.20605 -0.237305 5.79004 -0.530273l138.28 -25.1396h56v48h-56c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h160\\nc8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16h-56v-48h56.8896c8.33984 -0.00292969 21.1611 -3.03125 28.6201 -6.75977l50.4902 -25.2402zM96 159.33v62.4297l-48 8.73047v-62.4307zM549.33 74.6699c0 23.5605 42.6699 85.3301 42.6699 85.3301\\ns42.6699 -61.7598 42.6699 -85.3301s-19.0996 -42.6699 -42.6699 -42.6699s-42.6699 19.1104 -42.6699 42.6699z\\\" />\\n    <glyph glyph-name=\\\"poop\\\" unicode=\\\"&#xf619;\\\" \\nd=\\\"M451.36 78.8604c34.3301 -5.48047 60.6396 -34.9805 60.6396 -70.8604c0 -39.7598 -32.2402 -72 -72 -72h-368c-39.7598 0 -72 32.2402 -72 72c0 35.8799 26.3096 65.3799 60.6396 70.8604c-17.2998 13.1494 -28.6396 33.7295 -28.6396 57.1396\\nc0 39.7695 32.2402 72 72 72h14.0703c-13.4199 11.7305 -22.0703 28.7803 -22.0703 48c0 35.3496 28.6504 64 64 64h16c44.1797 0 80 35.8203 80 80c0 17.3799 -5.69043 33.3604 -15.1104 46.4805c4.95996 0.779297 9.94043 1.51953 15.1104 1.51953\\nc53.0195 0 96 -42.9805 96 -96c0 -11.2803 -2.30957 -21.9502 -5.87988 -32h5.87988c35.3496 0 64 -28.6504 64 -64c0 -19.2197 -8.65039 -36.2695 -22.0703 -48h14.0703c39.7598 0 72 -32.2305 72 -72c0 -23.4102 -11.3398 -43.9902 -28.6396 -57.1396z\\\" />\\n    <glyph glyph-name=\\\"shapes\\\" unicode=\\\"&#xf61f;\\\" \\nd=\\\"M128 192c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128s-128 57.3438 -128 128s57.3438 128 128 128zM507 246.86c14.2402 -24.3799 -3.58008 -54.8604 -32.0898 -54.8604h-213.82c-28.5098 0 -46.3301 30.4805 -32.0898 54.8604l106.93 182.85\\nc5.97266 10.0967 20.3398 18.291 32.0703 18.291s26.0977 -8.19434 32.0703 -18.291zM480 160c17.6641 0 32 -14.3359 32 -32v-160c0 -17.6641 -14.3359 -32 -32 -32h-160c-17.6641 0 -32 14.3359 -32 32v160c0 17.6641 14.3359 32 32 32h160z\\\" />\\n    <glyph glyph-name=\\\"star-of-life\\\" unicode=\\\"&#xf621;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M471.99 113.57c7.66016 -4.41992 10.2793 -14.2002 5.85938 -21.8506l-32.0195 -55.4297c-4.41992 -7.66016 -14.21 -10.2803 -21.8701 -5.86035l-135.93 78.4307v-156.86c0 -8.83984 -7.16992 -16 -16.0107 -16h-64.0391c-8.84082 0 -16.0107 7.16016 -16.0107 16\\nv156.85l-135.93 -78.4297c-7.66016 -4.41016 -17.4502 -1.79004 -21.8701 5.86035l-32.0195 55.4297c-4.41992 7.65039 -1.80078 17.4404 5.85938 21.8604l135.931 78.4297l-135.931 78.4297c-7.66016 4.41992 -10.2793 14.21 -5.85938 21.8604l32.0195 55.4199\\nc4.41992 7.65039 14.21 10.2803 21.8701 5.86035l135.93 -78.4307v156.86c0 8.83984 7.16992 16 16.0107 16h64.0391c8.84082 0 16.0107 -7.16016 16.0107 -16v-156.85l135.93 78.4297c7.66016 4.41992 17.4502 1.79004 21.8701 -5.86035l32.0195 -55.4297\\nc4.41992 -7.66016 1.80078 -17.4404 -5.85938 -21.8604l-135.931 -78.4297z\\\" />\\n    <glyph glyph-name=\\\"teeth\\\" unicode=\\\"&#xf62e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 448c53.0195 0 96 -42.9805 96 -96v-320c0 -53.0195 -42.9805 -96 -96 -96h-448c-53.0195 0 -96 42.9805 -96 96v320c0 53.0195 42.9805 96 96 96h448zM160 80v64c0 8.83984 -7.16016 16 -16 16h-64c-8.83984 0 -16 -7.16016 -16 -16v-64\\nc0 -26.5098 21.4902 -48 48 -48s48 21.4902 48 48zM160 208v64c0 26.5098 -21.4902 48 -48 48s-48 -21.4902 -48 -48v-64c0 -8.83984 7.16016 -16 16 -16h64c8.83984 0 16 7.16016 16 16zM304 88v56c0 8.83984 -7.16016 16 -16 16h-80c-8.83984 0 -16 -7.16016 -16 -16v-56\\nc0 -30.9297 25.0703 -56 56 -56s56 25.0703 56 56zM304 208v88c0 30.9297 -25.0703 56 -56 56s-56 -25.0703 -56 -56v-88c0 -8.83984 7.16016 -16 16 -16h80c8.83984 0 16 7.16016 16 16zM448 88v56c0 8.83984 -7.16016 16 -16 16h-80c-8.83984 0 -16 -7.16016 -16 -16v-56\\nc0 -30.9297 25.0703 -56 56 -56s56 25.0703 56 56zM448 208v88c0 30.9297 -25.0703 56 -56 56s-56 -25.0703 -56 -56v-88c0 -8.83984 7.16016 -16 16 -16h80c8.83984 0 16 7.16016 16 16zM576 80v64c0 8.83984 -7.16016 16 -16 16h-64c-8.83984 0 -16 -7.16016 -16 -16v-64\\nc0 -26.5098 21.4902 -48 48 -48s48 21.4902 48 48zM576 208v64c0 26.5098 -21.4902 48 -48 48s-48 -21.4902 -48 -48v-64c0 -8.83984 7.16016 -16 16 -16h64c8.83984 0 16 7.16016 16 16z\\\" />\\n    <glyph glyph-name=\\\"teeth-open\\\" unicode=\\\"&#xf62f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 448c53.0195 0 96 -42.9805 96 -96v-64c0 -35.3496 -28.6602 -64 -64 -64h-512c-35.3398 0 -64 28.6504 -64 64v64c0 53.0195 42.9805 96 96 96h448zM160 272v32c0 26.5098 -21.4902 48 -48 48s-48 -21.4902 -48 -48v-32c0 -8.83984 7.16016 -16 16 -16h64\\nc8.83984 0 16 7.16016 16 16zM304 272v56c0 30.9297 -25.0703 56 -56 56s-56 -25.0703 -56 -56v-56c0 -8.83984 7.16016 -16 16 -16h80c8.83984 0 16 7.16016 16 16zM448 272v56c0 30.9297 -25.0703 56 -56 56s-56 -25.0703 -56 -56v-56c0 -8.83984 7.16016 -16 16 -16h80\\nc8.83984 0 16 7.16016 16 16zM576 272v32c0 26.5098 -21.4902 48 -48 48s-48 -21.4902 -48 -48v-32c0 -8.83984 7.16016 -16 16 -16h64c8.83984 0 16 7.16016 16 16zM576 128c35.3398 0 64 -28.6504 64 -64v-32c0 -53.0195 -42.9805 -96 -96 -96h-448\\nc-53.0195 0 -96 42.9805 -96 96v32c0 35.3496 28.6602 64 64 64h512zM160 48v32c0 8.83984 -7.16016 16 -16 16h-64c-8.83984 0 -16 -7.16016 -16 -16v-32c0 -26.5098 21.4902 -48 48 -48s48 21.4902 48 48zM304 56v24c0 8.83984 -7.16016 16 -16 16h-80\\nc-8.83984 0 -16 -7.16016 -16 -16v-24c0 -30.9297 25.0703 -56 56 -56s56 25.0703 56 56zM448 56v24c0 8.83984 -7.16016 16 -16 16h-80c-8.83984 0 -16 -7.16016 -16 -16v-24c0 -30.9297 25.0703 -56 56 -56s56 25.0703 56 56zM576 48v32c0 8.83984 -7.16016 16 -16 16h-64\\nc-8.83984 0 -16 -7.16016 -16 -16v-32c0 -26.5098 21.4902 -48 48 -48s48 21.4902 48 48z\\\" />\\n    <glyph glyph-name=\\\"theater-masks\\\" unicode=\\\"&#xf630;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M206.86 202.85l-7.62988 -43.1797c-21.0908 -7.21973 -38.5 -18.2002 -49.9004 -30.9199c-2.41992 32.9004 21.6504 63.6504 57.5303 74.0996zM95.8096 153c5.87012 -33.1699 64.3203 -71.8096 111.931 -84.79c10.5596 -27.0996 25.9795 -50.5 39.5 -67.5801\\nc-3.25977 -0.339844 -6.41992 -0.799805 -10.0098 -0.799805c-68.1201 0 -190.221 61.5596 -204.45 142.08l-31.7305 179.51c-4.96973 28.0996 7.98047 56.0996 32.1504 69.5205c67.8193 37.6396 143.46 57.0596 220.12 57.0596c23.9199 0 47.9492 -1.88965 71.8594 -5.7002\\nc17.29 -2.76953 31.7803 -13.0498 41.7705 -27c-19.1299 -0.769531 -38.29 -2.2998 -57.1807 -5.31934c-19.8594 -3.1709 -37.6396 -12.5303 -51.5898 -26c-1.62012 0.0195312 -3.23926 0.189453 -4.84961 0.189453c-65.8896 0 -131.25 -16.9502 -189.01 -49.0098\\nc0.0400391 -0.0302734 -0.530273 -1.03027 -0.240234 -2.65039zM193.36 290.46c3.83984 -21.7002 -10.6904 -42.4004 -32.4404 -46.2197c-21.7598 -3.82031 -42.5 10.6699 -46.3398 32.3701c-0.730469 4.12012 -0.610352 8.15918 -0.0898438 12.0996\\nc10.8096 -5.57031 24.8301 -7.75 39.4795 -5.16992c14.6504 2.57031 27.0703 9.41016 35.3203 18.3203c1.83984 -3.53027 3.33984 -7.28027 4.07031 -11.4004zM606.8 327.1c24.1699 -13.4092 37.1201 -41.4092 32.1504 -69.5195l-31.7305 -179.51\\nc-15.3896 -87.0508 -156.83 -151.931 -219.859 -140.84c-63.0303 11.0791 -173.7 120.3 -158.311 207.35l31.7305 179.51c4.95996 28.1006 26.7295 50 54.04 54.3604c100.55 16.0596 203 -1.96973 291.979 -51.3506zM333.56 230.3\\nc-0.729492 -4.12012 -0.609375 -8.16016 -0.0791016 -12.1094c10.8096 5.56934 24.8291 7.75 39.4795 5.16992c14.6504 -2.57031 27.0703 -9.41016 35.3203 -18.3203c1.83984 3.53027 3.33984 7.28027 4.06934 11.4004c3.83008 21.6992 -10.6895 42.3896 -32.4492 46.2197\\nc-21.7607 3.83008 -42.5 -10.6602 -46.3408 -32.3604zM404.03 31.54c55.6699 -9.79004 108.2 23.7803 122.38 75.7197c-28.1104 -16.9697 -68.6504 -24.21 -111.93 -16.5996c-43.2803 7.60938 -78.8906 28.2402 -99.4902 53.7803\\nc-4.48047 -53.6309 33.3594 -103.11 89.04 -112.9zM534.33 182.88c1.83984 3.52051 3.33984 7.27051 4.07031 11.4004c3.83008 21.7002 -10.7002 42.3896 -32.4502 46.2197c-21.7598 3.82031 -42.5 -10.6699 -46.3398 -32.3701\\nc-0.730469 -4.12012 -0.610352 -8.16016 -0.0908203 -12.0996c10.8105 5.56934 24.8301 7.75 39.4805 5.16992c14.6504 -2.57031 27.0801 -9.41016 35.3301 -18.3203z\\\" />\\n    <glyph glyph-name=\\\"traffic-light\\\" unicode=\\\"&#xf637;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M384 256c0 -41.7402 -26.7998 -76.9004 -64 -90.1201v-37.8799h64c0 -42.8398 -28.25 -78.6904 -66.9902 -91.0498c-12.4297 -57.6699 -63.6094 -100.95 -125.01 -100.95s-112.58 43.2803 -125.01 100.95c-38.7402 12.3594 -66.9902 48.21 -66.9902 91.0498h64v37.8799\\nc-37.2002 13.2197 -64 48.3799 -64 90.1201h64v37.8799c-37.2002 13.2197 -64 48.3799 -64 90.1201h64v32c0 17.6699 14.3301 32 32 32h192c17.6699 0 32 -14.3301 32 -32v-32h64c0 -41.7402 -26.7998 -76.9004 -64 -90.1201v-37.8799h64zM192 32\\nc26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM192 160c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM192 288c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48\\ns-48 -21.4902 -48 -48s21.4902 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"truck-monster\\\" unicode=\\\"&#xf63b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 224c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-16.71c-29.21 38.6504 -75.0996 64 -127.28 64c-52.1797 0 -98.0693 -25.3496 -127.279 -64h-65.4502c-29.21 38.6504 -75.1006 64 -127.28 64s-98.0703 -25.3496 -127.28 -64h-16.7197\\nc-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h16v80c0 8.83984 7.16016 16 16 16h176v96c0 17.6699 14.3301 32 32 32h113.24c16.9795 -0.00195312 39.3701 -10.7627 49.9795 -24.0195l83.1807 -103.98h73.5996c17.6699 0 32 -14.3301 32 -32v-64h16z\\nM288 320h132.44l-51.2002 64h-81.2402v-64zM592 96c8.83984 0 16 -7.16016 16.0195 -16v-32c0 -8.83984 -7.15918 -16 -16 -16h-5.19922c-1.79688 -6.01074 -5.67188 -15.3691 -8.65039 -20.8896l3.66992 -3.66992c6.25 -6.25 6.25 -16.3809 0 -22.6309l-22.6299 -22.6299\\nc-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-3.66992 3.66992c-6.62012 -3.58008 -13.5703 -6.44922 -20.9004 -8.64941v-5.2002c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v5.2002c-7.33008 2.2002 -14.29 5.08008 -20.8994 8.64941\\nl-3.66992 -3.66992c-6.25 -6.25 -16.3809 -6.25 -22.6309 0l-22.6299 22.6299c-6.25 6.25 -6.25 16.3809 0 22.6309l3.66992 3.66992c-3.58008 6.60938 -6.44922 13.5596 -8.64941 20.8896h-5.2002c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h5.2002\\nc1.7959 6.01074 5.6709 15.3691 8.64941 20.8896l-3.66992 3.66992c-6.25 6.25 -6.25 16.3809 0 22.6309l22.6299 22.6299c6.25 6.25 16.3809 6.25 22.6309 0l3.66992 -3.66992c6.60938 3.58008 13.5596 6.44922 20.8896 8.64941v5.2002c0 8.83984 7.16016 16 16 16h32\\nc8.83984 0 16 -7.16016 16 -16v-5.2002c6.01074 -1.7959 15.3691 -5.6709 20.8896 -8.64941l3.66992 3.66992c6.25 6.25 16.3809 6.25 22.6309 0l22.6299 -22.6299c6.25 -6.25 6.25 -16.3809 0 -22.6309l-3.66992 -3.66992\\nc3.58008 -6.60938 6.44922 -13.5596 8.64941 -20.8896h5.2002zM480 16c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48s21.4902 -48 48 -48zM272 96c8.83984 0 16 -7.16016 16.0195 -15.9902v-32c0 -8.83984 -7.15918 -16 -16 -16h-5.19922\\nc-1.79688 -6.00977 -5.67188 -15.3691 -8.65039 -20.8896l3.66992 -3.66992c6.25 -6.25 6.25 -16.3799 0 -22.6299l-22.6299 -22.6299c-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-3.66992 3.66992c-6.62012 -3.58008 -13.5703 -6.4502 -20.9004 -8.65039v-5.2002\\nc0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v5.2002c-7.33008 2.2002 -14.29 5.08008 -20.8994 8.65039l-3.66992 -3.66992c-6.25 -6.25 -16.3809 -6.25 -22.6309 0l-22.6299 22.6299c-6.25 6.25 -6.25 16.3799 0 22.6299l3.66992 3.66992\\nc-3.58008 6.61035 -6.44922 13.5596 -8.64941 20.8896h-5.2002c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h5.2002c1.7959 6.01074 5.6709 15.3691 8.64941 20.8906l-3.66992 3.66992c-6.25 6.25 -6.25 16.3799 0 22.6299l22.6299 22.6201\\nc6.25 6.25 16.3809 6.25 22.6309 0l3.66992 -3.66992c6.60938 3.58008 13.5596 6.44922 20.8896 8.64941v5.2002c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-5.2002c6.01074 -1.7959 15.3691 -5.6709 20.8896 -8.64941l3.66992 3.66992\\nc6.25 6.25 16.3809 6.25 22.6309 0l22.6299 -22.6299c6.25 -6.25 6.25 -16.3809 0 -22.6309l-3.66992 -3.66992c3.58008 -6.60938 6.44922 -13.5596 8.64941 -20.8896h5.2002zM160 16c26.5098 0 48 21.4902 48 48s-21.4902 48 -48 48s-48 -21.4902 -48 -48\\ns21.4902 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"truck-pickup\\\" unicode=\\\"&#xf63c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 160c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-49.5996c0.759766 -5.26953 1.60938 -10.5195 1.60938 -16c0 -61.8604 -50.1396 -112 -112 -112c-61.8594 0 -112 50.1396 -112 112c0 5.48047 0.850586 10.7305 1.61035 16h-67.2305\\nc0.760742 -5.26953 1.61035 -10.5195 1.61035 -16c0 -61.8604 -50.1396 -112 -112 -112s-112 50.1396 -112 112c0 5.48047 0.849609 10.7305 1.61035 16h-49.6104c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h16v64c0 17.6699 14.3301 32 32 32h160v128\\nc0 17.6699 14.3301 32 32 32h113.24c16.9795 -0.00195312 39.3701 -10.7627 49.9795 -24.0195l108.78 -135.98h48c17.6699 0 32 -14.3301 32 -32v-64h16zM288 352v-96h158.04l-76.7998 96h-81.2402zM176 32c26.4697 0 48 21.5303 48 48s-21.5303 48 -48 48\\ns-48 -21.5303 -48 -48s21.5303 -48 48 -48zM464 32c26.4697 0 48 21.5303 48 48s-21.5303 48 -48 48s-48 -21.5303 -48 -48s21.5303 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"ad\\\" unicode=\\\"&#xf641;\\\" \\nd=\\\"M157.52 176l18.4805 53.2197l18.4805 -53.2197h-36.9609zM352 192c13.2305 0 24 -10.7695 24 -24s-10.7695 -24 -24 -24s-24 10.7695 -24 24s10.7695 24 24 24zM464 384c26.5 0 48 -21.5 48 -48v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288\\nc0 26.5 21.5 48 48 48h416zM250.58 96c11 0 18.7197 10.8496 15.1104 21.25l-53.6904 154.62c-3.08789 8.90332 -13.2422 16.1299 -22.666 16.1299h-0.00390625h-26.6602h-0.00390625c-9.41992 0 -19.5742 -7.22168 -22.666 -16.1201l-53.7002 -154.63\\nc-3.60938 -10.4004 4.11035 -21.25 15.1201 -21.25h16.9404h0.00585938c6.28125 0 13.0527 4.81641 15.1143 10.75l7.37988 21.25h70.29l7.36914 -21.25c2.24023 -6.42969 8.31055 -10.75 15.1201 -10.75h16.9404zM424 112v160c0 8.83984 -7.16016 16 -16 16h-16\\nc-8.83984 0 -16 -7.16016 -16 -16v-36.4199c-7.54004 2.68945 -15.54 4.41992 -24 4.41992c-39.7002 0 -72 -32.2998 -72 -72s32.2998 -72 72 -72c9.92969 0 19.4004 2.01953 28.0195 5.67969c2.94043 -3.41016 7.13086 -5.67969 11.9805 -5.67969h16\\nc8.83984 0 16 7.16016 16 16z\\\" />\\n    <glyph glyph-name=\\\"ankh\\\" unicode=\\\"&#xf644;\\\" horiz-adv-x=\\\"320\\\" \\nd=\\\"M296 192c13.25 0 24 -10.7402 24 -24v-32c0 -13.25 -10.75 -24 -24 -24h-96v-152c0 -13.25 -10.75 -24 -24 -24h-32c-13.25 0 -24 10.75 -24 24v152h-96c-13.25 0 -24 10.75 -24 24v32c0 13.2598 10.75 24 24 24h44.6201c-21.0801 33.9902 -36.6201 74.3496 -36.6201 112\\nc0 88.3701 57.3096 144 128 144s128 -55.6299 128 -144c0 -37.6504 -15.54 -78.0098 -36.6201 -112h44.6201zM160 368c-29.6104 0 -48 -24.5195 -48 -64c0 -34.6602 27.1396 -78.1504 48 -100.87c20.8604 22.7305 48 66.21 48 100.87c0 39.4805 -18.3896 64 -48 64z\\\" />\\n    <glyph glyph-name=\\\"bible\\\" unicode=\\\"&#xf647;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 89.5996c0 -9.59961 -3.2002 -16 -9.59961 -19.1992c-3.2002 -12.8008 -3.2002 -57.6006 0 -73.6006c6.39941 -6.39941 9.59961 -12.7998 9.59961 -19.2002v-16c0 -16 -12.7998 -25.5996 -25.5996 -25.5996h-326.4c-54.4004 0 -96 41.5996 -96 96v320\\nc0 54.4004 41.5996 96 96 96h326.4c16 0 25.5996 -9.59961 25.5996 -25.5996v-332.801zM144 304v-32c0 -8.83984 7.16016 -16 16 -16h48v-112c0 -8.83984 7.16016 -16 16 -16h32c8.83984 0 16 7.16016 16 16v112h48c8.83984 0 16 7.16016 16 16v32\\nc0 8.83984 -7.16016 16 -16 16h-48v48c0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-48h-48c-8.83984 0 -16 -7.16016 -16 -16zM380.8 0v64h-284.8c-16 0 -32 -12.7998 -32 -32s12.7998 -32 32 -32h284.8z\\\" />\\n    <glyph glyph-name=\\\"business-time\\\" unicode=\\\"&#xf64a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M496 224c79.5898 0 144 -64.4102 144 -144s-64.4102 -144 -144 -144s-144 64.4102 -144 144s64.4102 144 144 144zM560 73.71v12.5801c0 5.33984 -4.37012 9.70996 -9.70996 9.70996h-38.29v54.2803c0 5.33984 -4.37012 9.70996 -9.70996 9.70996h-12.5703\\nc-5.33984 0 -9.70996 -4.37012 -9.70996 -9.70996v-76.5703c0 -5.33984 4.37012 -9.70996 9.70996 -9.70996h60.5703c5.33984 0 9.70996 4.37012 9.70996 9.70996zM496 256c-37.5303 0 -72.2803 -11.9102 -100.88 -32h-395.12v80c0 25.5996 22.4004 48 48 48h80v48\\nc0 25.5996 22.4004 48 48 48h160c25.5996 0 48 -22.4004 48 -48v-48h80c25.5996 0 48 -22.4004 48 -48v-48.8096c-5.28027 0.479492 -10.5996 0.80957 -16 0.80957zM320 352v32h-128v-32h128zM326.82 128c-4.33984 -15.2803 -6.82031 -31.3398 -6.82031 -48\\nc0 -28.8203 7.09961 -55.96 19.4297 -80h-291.43c-25.5996 0 -48 22.4004 -48 48v144h192v-48c0 -8.83984 7.16016 -16 16 -16h118.82z\\\" />\\n    <glyph glyph-name=\\\"city\\\" unicode=\\\"&#xf64f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M616 256c13.25 0 24 -10.7402 24 -24v-264c0 -17.6699 -14.3301 -32 -32 -32h-576c-17.6699 0 -32 14.3301 -32 32v360c0 13.2598 10.7402 24 24 24h40v80c0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-80h64v80c0 8.83984 7.16016 16 16 16h16\\nc8.83984 0 16 -7.16016 16 -16v-80h64v72c0 13.2598 10.7402 24 24 24h144c13.2598 0 24 -10.7402 24 -24v-168h136zM128 44v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12z\\nM128 140v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM128 236v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40\\nc6.62988 0 12 5.37012 12 12zM256 44v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM256 140v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40\\nc0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM256 236v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM416 140v40c0 6.62988 -5.37012 12 -12 12h-40\\nc-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM416 236v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM416 332v40\\nc0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12zM576 44v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40\\nc6.62988 0 12 5.37012 12 12zM576 140v40c0 6.62988 -5.37012 12 -12 12h-40c-6.62988 0 -12 -5.37012 -12 -12v-40c0 -6.62988 5.37012 -12 12 -12h40c6.62988 0 12 5.37012 12 12z\\\" />\\n    <glyph glyph-name=\\\"comment-dollar\\\" unicode=\\\"&#xf651;\\\" \\nd=\\\"M256 416c141.38 0 256 -93.1201 256 -208s-114.62 -208 -256 -208c-38.4102 0 -74.71 7.07031 -107.4 19.3799c-24.6094 -19.6299 -74.3398 -51.3799 -140.6 -51.3799h-0.00195312c-4.41309 0 -7.99512 3.58203 -7.99512 7.99512\\nc0 1.76172 0.984375 4.22754 2.19727 5.50488c0.5 0.530273 42.2598 45.4502 54.8193 95.7598c-35.6094 35.7305 -57.0195 81.1807 -57.0195 130.74c0 114.88 114.62 208 256 208zM280 113.56c30.29 3.62012 53.3701 30.9805 49.3203 63.04\\nc-2.90039 22.96 -20.6602 41.3105 -42.9102 47.6699l-50.0703 14.3008c-3.59961 1.0293 -6.12012 4.35938 -6.12012 8.10938c0 4.64062 3.78027 8.41992 8.44043 8.41992h32.7803h0.0654297c2.94727 0 7.51367 -0.994141 10.1943 -2.21973\\nc4.7998 -2.20996 10.3701 -1.70996 14.1094 2.03027l17.5205 17.5195c5.26953 5.27051 4.66992 14.2705 -1.5498 18.3799c-9.5 6.27051 -20.3604 10.1104 -31.7803 11.46v17.7305c0 8.83984 -7.16016 16 -16 16h-16c-8.83984 0 -16 -7.16016 -16 -16v-17.5498\\nc-30.29 -3.62012 -53.3701 -30.9805 -49.3203 -63.0498c2.90039 -22.96 20.6602 -41.3203 42.9102 -47.6699l50.0703 -14.3008c3.59961 -1.0293 6.12012 -4.35938 6.12012 -8.10938c0 -4.64062 -3.78027 -8.41992 -8.44043 -8.41992h-32.7803\\nc-3.59961 0 -7.0791 0.759766 -10.2598 2.21973c-4.7998 2.20996 -10.3701 1.70996 -14.1094 -2.03027l-17.5205 -17.5195c-5.26953 -5.27051 -4.66992 -14.2705 1.5498 -18.3799c9.5 -6.27051 20.3604 -10.1104 31.7803 -11.46v-17.7305c0 -8.83984 7.16016 -16 16 -16h16\\nc8.83984 0 16 7.16016 16 16v17.5596z\\\" />\\n    <glyph glyph-name=\\\"comments-dollar\\\" unicode=\\\"&#xf653;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M416 256c0 -88.3701 -93.1201 -160 -208 -160c-40.9805 0 -79.0703 9.24023 -111.27 24.9805c-21.8008 -12.7305 -52.1504 -24.9805 -88.7305 -24.9805h-0.00195312c-4.41309 0 -7.99512 3.58203 -7.99512 7.99512c0 1.76172 0.984375 4.22754 2.19727 5.50488\\nc0.319336 0.339844 22.4102 24.2803 35.7695 54.5195c-23.8398 26.0303 -37.9697 57.7109 -37.9697 91.9805c0 88.3701 93.1201 160 208 160s208 -71.6299 208 -160zM192 160c0 -4.41992 3.58008 -8 8 -8h16c4.41992 0 8 3.58008 8 8v16.1201\\nc23.6201 0.629883 42.6699 20.54 42.6699 45.0703c0 19.9697 -12.9902 37.8096 -31.5801 43.3896l-45 13.5c-5.16016 1.54004 -8.76953 6.78027 -8.76953 12.7295c0 7.27051 5.2998 13.1904 11.7998 13.1904h28.1104c4.55957 0 8.94922 -1.29004 12.8193 -3.71973\\nc3.24023 -2.03027 7.36035 -1.91016 10.1299 0.729492l11.75 11.21c3.53027 3.37012 3.33008 9.20996 -0.569336 12.1406c-9.10059 6.83984 -20.0801 10.7695 -31.3701 11.3496v16.29c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-16.1201\\nc-23.6201 -0.629883 -42.6699 -20.5498 -42.6699 -45.0703c0 -19.9697 12.9893 -37.8096 31.5801 -43.3896l45 -13.5c5.15918 -1.54004 8.76953 -6.78027 8.76953 -12.7295c0 -7.27051 -5.2998 -13.1904 -11.7998 -13.1904h-28.1104\\nc-4.55957 0 -8.9502 1.2998 -12.8193 3.71973c-3.24023 2.03027 -7.36035 1.91016 -10.1309 -0.729492l-11.75 -11.21c-3.5293 -3.37012 -3.3291 -9.20996 0.570312 -12.1406c9.10059 -6.83008 20.0801 -10.7695 31.3701 -11.3496v-16.29zM538.01 36.0098\\nc13.3604 -30.2598 35.4707 -54.1699 35.7803 -54.5c2.20996 -2.33008 2.82031 -5.72949 1.5498 -8.66992c-1.25 -2.92969 -4.13965 -4.83984 -7.33984 -4.83984c-36.5801 0 -66.9297 12.25 -88.7305 24.9805c-32.1992 -15.7402 -70.2891 -24.9805 -111.27 -24.9805\\nc-86.2305 0 -160.2 40.3701 -191.73 97.8799c10.4102 -1.11035 20.9502 -1.87988 31.7305 -1.87988c132.34 0 240 86.1299 240 192c0 6.78027 -0.469727 13.4697 -1.33008 20.0703c75.8398 -23.8701 129.33 -81.1299 129.33 -148.07\\nc0 -34.2695 -14.1299 -65.96 -37.9902 -91.9902z\\\" />\\n    <glyph glyph-name=\\\"cross\\\" unicode=\\\"&#xf654;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M352 320c17.6699 0 32 -14.3301 32 -32v-64c0 -17.6699 -14.3301 -32 -32 -32h-96v-224c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32v224h-96c-17.6699 0 -32 14.3301 -32 32v64c0 17.6699 14.3301 32 32 32h96v96c0 17.6699 14.3301 32 32 32\\nh64c17.6699 0 32 -14.3301 32 -32v-96h96z\\\" />\\n    <glyph glyph-name=\\\"dharmachakra\\\" unicode=\\\"&#xf655;\\\" \\nd=\\\"M495 222.94c9.20996 0.569336 17 -6.74023 17.0098 -15.9707v-29.9395c0 -9.23047 -7.79004 -16.5498 -17 -15.9707l-17.2197 1.08008c-5.28027 -39.4795 -20.7998 -75.6299 -43.8604 -105.83l12.9502 -11.4297c6.91992 -6.09961 7.25977 -16.7803 0.730469 -23.3096\\nl-21.1699 -21.1699c-6.52051 -6.52051 -17.2002 -6.19043 -23.3105 0.729492l-11.4297 12.9502c-30.2002 -23.0703 -66.3506 -38.5898 -105.84 -43.8604l1.08008 -17.2197c0.569336 -9.20996 -6.74023 -17 -15.9707 -17h-29.9395c-9.23047 0 -16.5498 7.79004 -15.9707 17\\nl1.09082 17.2197c-39.4902 5.28027 -75.6406 20.7998 -105.841 43.8604l-11.4297 -12.9502c-6.09961 -6.91992 -16.7803 -7.25977 -23.3096 -0.729492l-21.1699 21.1699c-6.52051 6.51953 -6.19043 17.1992 0.729492 23.3096l12.9502 11.4297\\nc-23.0703 30.1904 -38.5898 66.3408 -43.8604 105.83l-17.2197 -1.08008c-9.20996 -0.569336 -17 6.74023 -17 15.9707v29.9395c0 9.23047 7.79004 16.5498 17 15.9707l17.2197 -1.08008c5.28027 39.4893 20.7998 75.6396 43.8604 105.84l-12.9502 11.4297\\nc-6.91992 6.10059 -7.25977 16.7803 -0.729492 23.3105l21.1699 21.1592c6.51953 6.52051 17.1992 6.19043 23.3096 -0.729492l11.4297 -12.9502c30.1904 23.0703 66.3408 38.5898 105.83 43.8604l-1.08008 17.2197c-0.569336 9.20996 6.74023 17 15.9707 17h29.9395\\nc9.23047 0 16.5498 -7.79004 15.9707 -17l-1.07031 -17.21c39.4795 -5.28027 75.6299 -20.7998 105.83 -43.8604l11.4297 12.9404c6.10059 6.91992 16.7803 7.25977 23.3105 0.729492l21.1592 -21.1592c6.52051 -6.52051 6.19043 -17.2002 -0.729492 -23.3105\\nl-12.9502 -11.4297c23.0703 -30.2002 38.5898 -66.3506 43.8604 -105.84zM281.84 349.39l-4.00977 -64.1201c10.2998 -2.40918 19.8896 -6.50977 28.6201 -11.9492l42.6201 48.29c-19.6006 14.1201 -42.4199 23.71 -67.2305 27.7793zM230.16 349.39\\nc-24.8105 -4.06934 -47.6299 -13.6592 -67.2305 -27.7793l42.6201 -48.29c8.73047 5.42969 18.3301 9.54004 28.6201 11.9492zM126.39 285.06c-14.1201 -19.5996 -23.71 -42.4092 -27.7793 -67.2197l64.1201 -4.00977c2.41992 10.29 6.51953 19.8896 11.96 28.6201z\\nM98.6104 166.16c4.06934 -24.8105 13.6592 -47.6299 27.7793 -67.2305l48.29 42.6201c-5.42969 8.73047 -9.54004 18.3301 -11.9492 28.6201zM230.16 34.6104l4 64.1201c-10.29 2.41992 -19.8906 6.51953 -28.6201 11.96l-42.6104 -48.3008\\nc19.6006 -14.1201 42.4199 -23.71 67.2305 -27.7793zM256 160c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM281.84 34.6104c24.8105 4.06934 47.6201 13.6592 67.2197 27.7793l-42.6094 48.3008\\nc-8.73047 -5.44043 -18.3301 -9.55078 -28.6201 -11.96zM385.61 98.9404c14.1201 19.5898 23.71 42.4092 27.7793 67.2295l-64.1201 4.00977c-2.40918 -10.2998 -6.50977 -19.8896 -11.9492 -28.6201zM349.27 213.83l64.1201 4\\nc-4.06934 24.8096 -13.6592 47.6299 -27.7793 67.2295l-48.3008 -42.6094c5.44043 -8.73047 9.55078 -18.3301 11.96 -28.6201z\\\" />\\n    <glyph glyph-name=\\\"envelope-open-text\\\" unicode=\\\"&#xf658;\\\" \\nd=\\\"M176 232c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h160c8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16h-160zM160 152v16c0 8.83984 7.16016 16 16 16h160c8.83984 0 16 -7.16016 16 -16v-16c0 -8.83984 -7.16016 -16 -16 -16\\nh-160c-8.83984 0 -16 7.16016 -16 16zM256 30.8701c16.4199 0 32.8398 5.07031 46.8604 15.1895l209.14 151.08v-213.14c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v213.14l209.14 -151.08c14.0205 -10.1299 30.4404 -15.1895 46.8604 -15.1895z\\nM493.61 285.05c11.6094 -9.09961 18.3896 -23.0303 18.3896 -37.7695v-10.6504l-96 -69.3496v184.72h-320v-184.72l-96 69.3496v10.6504c0.00195312 12.8945 8.24023 29.8154 18.3896 37.7695c8.85059 6.94043 17.2402 13.4805 29.6104 22.8105v44.1396\\nc0 26.5098 21.4902 48 48 48h77.5498c3.04004 2.2002 5.87012 4.25977 9.04004 6.55957c16.8203 12.2705 50.21 41.79 73.4102 41.4404c23.2002 0.349609 56.5996 -29.1699 73.4102 -41.4404c3.16992 -2.2998 6 -4.35938 9.04004 -6.55957h77.5498\\nc26.5098 0 48 -21.4902 48 -48v-44.1396c12.3701 -9.34082 20.7598 -15.8701 29.6104 -22.8105z\\\" />\\n    <glyph glyph-name=\\\"folder-minus\\\" unicode=\\\"&#xf65d;\\\" \\nd=\\\"M464 320c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h160l64 -64h192zM368 152v16c0 8.83984 -7.16016 16 -16 16h-192c-8.83984 0 -16 -7.16016 -16 -16v-16\\nc0 -8.83984 7.16016 -16 16 -16h192c8.83984 0 16 7.16016 16 16z\\\" />\\n    <glyph glyph-name=\\\"folder-plus\\\" unicode=\\\"&#xf65e;\\\" \\nd=\\\"M464 320c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h160l64 -64h192zM368 152v16c0 8.83984 -7.16016 16 -16 16h-72v72c0 8.83984 -7.16016 16 -16 16h-16\\nc-8.83984 0 -16 -7.16016 -16 -16v-72h-72c-8.83984 0 -16 -7.16016 -16 -16v-16c0 -8.83984 7.16016 -16 16 -16h72v-72c0 -8.83984 7.16016 -16 16 -16h16c8.83984 0 16 7.16016 16 16v72h72c8.83984 0 16 7.16016 16 16z\\\" />\\n    <glyph glyph-name=\\\"funnel-dollar\\\" unicode=\\\"&#xf662;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M433.46 282.06c-83.4102 -20.8896 -145.46 -96.2695 -145.46 -186.06c0 -54.3496 22.7998 -103.38 59.21 -138.35c-10.75 -20.54 -38.3604 -29.21 -59.2197 -13.5703l-79.9902 60c-10.0703 7.55957 -16 19.4102 -16 32v155.92l-182.66 201.93\\nc-19.9502 19.9502 -5.82031 54.0703 22.4004 54.0703h480.52c28.2207 0 42.3506 -34.1201 22.4004 -54.0703zM480 256c88.3701 0 160 -71.6299 160 -160s-71.6299 -160 -160 -160s-160 71.6299 -160 160s71.6299 160 160 160zM496 16.1201\\nc23.6299 0.629883 42.6699 20.54 42.6699 45.0703c0 19.9697 -12.9902 37.8096 -31.5801 43.3896l-45 13.5c-5.16016 1.54004 -8.76953 6.78027 -8.76953 12.7295c0 7.27051 5.2998 13.1904 11.7998 13.1904h28.1104c4.55957 0 8.94922 -1.29004 12.8193 -3.71973\\nc3.24023 -2.03027 7.36035 -1.91016 10.1299 0.729492l11.75 11.21c3.53027 3.37012 3.33008 9.20996 -0.569336 12.1406c-9.10059 6.83984 -20.0801 10.7695 -31.3701 11.3496v16.29c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-16.1201\\nc-23.6201 -0.629883 -42.6699 -20.5498 -42.6699 -45.0703c0 -19.9697 12.9893 -37.8096 31.5801 -43.3896l45 -13.5c5.15918 -1.54004 8.76953 -6.78027 8.76953 -12.7295c0 -7.27051 -5.2998 -13.1904 -11.7998 -13.1904h-28.1104\\nc-4.55957 0 -8.9502 1.2998 -12.8193 3.71973c-3.24023 2.03027 -7.36035 1.91016 -10.1309 -0.729492l-11.75 -11.21c-3.5293 -3.37012 -3.3291 -9.20996 0.570312 -12.1406c9.10059 -6.83008 20.0801 -10.7695 31.3701 -11.3496v-16.29c0 -4.41992 3.58008 -8 8 -8h16\\nc4.41992 0 8 3.58008 8 8v16.1201z\\\" />\\n    <glyph glyph-name=\\\"gopuram\\\" unicode=\\\"&#xf664;\\\" \\nd=\\\"M496 96c8.7998 0 16 -7.2002 16 -16v-128c0 -8.7998 -7.2002 -16 -16 -16h-80v160h-32v128h-32v96h-32v-96h32v-128h32v-160h-80v80c0 8.7998 -7.2002 16 -16 16h-64c-8.7998 0 -16 -7.2002 -16 -16v-80h-80v160h32v128h32v96h-32v-96h-32v-128h-32v-160h-80\\nc-8.7998 0 -16 7.2002 -16 16v128c0 8.7998 7.2002 16 16 16h16v112c0 8.7998 7.2002 16 16 16h16v80c0 8.7998 7.2002 16 16 16h16v112c0 8.7998 7.2002 16 16 16s16 -7.2002 16 -16v-16h64v16c0 8.7998 7.2002 16 16 16s16 -7.2002 16 -16v-16h64v16\\nc0 8.7998 7.2002 16 16 16s16 -7.2002 16 -16v-16h64v16c0 8.7998 7.2002 16 16 16s16 -7.2002 16 -16v-112h16c8.7998 0 16 -7.2002 16 -16v-80h16c8.7998 0 16 -7.2002 16 -16v-112h16zM232 272v-48h48v48c0 8.7998 -7.2002 16 -16 16h-16c-8.7998 0 -16 -7.2002 -16 -16z\\nM288 96v64c0 8.7998 -7.2002 16 -16 16h-32c-8.7998 0 -16 -7.2002 -16 -16v-64h64z\\\" />\\n    <glyph glyph-name=\\\"hamsa\\\" unicode=\\\"&#xf665;\\\" \\nd=\\\"M509.34 140.75c1.46875 -3.37012 2.66016 -9.08984 2.66016 -12.7656c0 -6.95703 -3.85254 -16.7295 -8.59961 -21.8145l-102.681 -110.03c-35.6895 -38.2197 -88.4102 -60.1396 -144.72 -60.1396s-109.03 21.9199 -144.71 60.1396l-102.69 110.03\\nc-4.74707 5.08496 -8.59961 14.8574 -8.59961 21.8145c0 3.67578 1.19141 9.39551 2.66016 12.7656c5.05957 11.6904 16.5898 19.25 29.3398 19.25h64v208c0 22 18 40 40 40s40 -18 40 -40v-134c0 -5.51953 4.48047 -10 10 -10h20c5.51953 0 10 4.48047 10 10v174\\nc0 22 18 40 40 40s40 -18 40 -40v-174c0 -5.51953 4.48047 -10 10 -10h20c5.51953 0 10 4.48047 10 10v134c0 22 18 40 40 40s40 -18 40 -40v-208h64c12.75 0 24.2803 -7.55957 29.3398 -19.25zM256 32c53.0195 0 96 64 96 64s-42.9805 64 -96 64s-96 -64 -96 -64\\ns42.9805 -64 96 -64zM256 128c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"bahai\\\" unicode=\\\"&#xf666;\\\" \\nd=\\\"M496.25 245.48c17.54 -2.46094 21.6797 -26.2705 6.04004 -34.6602l-98.1602 -52.6602l74.4805 -83.54c11.8594 -13.29 0.00976562 -34.25 -17.3506 -30.4902l-108.569 23.6504l4.10938 -112.55c0.430664 -11.6504 -8.87012 -19.2207 -18.4102 -19.2207\\nc-5.15918 0 -10.3896 2.20996 -14.1992 7.18066l-68.1807 88.8994l-68.1797 -88.8994c-3.81055 -4.9707 -9.0498 -7.18066 -14.2002 -7.18066c-9.54004 0 -18.8398 7.57031 -18.4102 19.2207l4.11035 112.55l-108.57 -23.6504\\nc-1.39941 -0.30957 -2.75977 -0.450195 -4.06934 -0.450195c-15.0107 0 -24.21 18.6807 -13.29 30.9307l74.4795 83.54l-98.1602 52.6592c-15.6494 8.40039 -11.5098 32.21 6.03027 34.6709l110 15.4297l-41.8203 104.34c-6.66016 16.6396 11.6006 32.1797 26.5898 22.6299\\nl94.04 -59.8896l34.0908 107.189c2.70996 8.55078 10.0293 12.8203 17.3496 12.8203s14.6396 -4.26953 17.3496 -12.8203l34.0908 -107.18l94.04 59.8896c14.9893 9.55078 33.2598 -5.98926 26.5898 -22.6299l-41.8203 -104.34zM338.51 136.32l-35.6094 39.9297\\nl46.9199 25.1699l-52.5703 7.37988l19.9902 49.8701l-44.9502 -28.6201l-16.29 51.2305l-16.3096 -51.2305l-44.9502 28.6201l19.9902 -49.8701l-52.5703 -7.37988l46.9199 -25.1699l-35.5996 -39.9297l51.8896 11.2998l-1.95996 -53.79l32.5898 42.4902l32.5898 -42.4902\\nl-1.96973 53.79z\\\" />\\n    <glyph glyph-name=\\\"jedi\\\" unicode=\\\"&#xf669;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M535.953 96c-42.6406 -94.1719 -137.641 -160 -247.984 -160c-4.26562 0 -8.54688 0.0986328 -12.8447 0.296875c-103.969 4.76562 -193.859 69.4688 -235.109 159.703h39.9219l-58.6094 58.5938c-2.22949 10.7744 -4.51758 28.4355 -5.10938 39.4219\\nc-0.109375 2.87891 -0.199219 7.55469 -0.199219 10.4365c0 5.40234 0.313477 14.1592 0.699219 19.5479h47.2188l-41.3906 41.375c12.4873 56.2656 60.8574 128.877 107.969 162.078c2.29785 1.64453 6.45605 2.98828 9.28125 3\\nc4.78613 -0.0263672 10.835 -3.27441 13.5 -7.25c1.54883 -2.25977 2.80566 -6.31836 2.80566 -9.05762c0 -1.72949 -0.529297 -4.43359 -1.18066 -6.03613c-5.43359 -13.626 -9.84375 -36.5908 -9.84375 -51.2598v-0.00585938\\nc0 -45.1094 21.0469 -86.5781 57.7188 -113.734c3.70312 -2.69531 6.70801 -8.59863 6.70801 -13.1787c0 -4.05469 -2.46582 -9.52637 -5.50488 -12.2119c-26.5469 -23.9844 -41.1719 -56.5 -41.1719 -91.5781c0 -60.0312 42.9531 -110.281 99.8906 -121.922l2.5 65.2656\\nl-27.1562 -18.4844c-1.13477 -0.728516 -3.15234 -1.31934 -4.50098 -1.31934c-1.73242 0 -4.19629 0.926758 -5.49902 2.06934c-1.38965 1.31152 -2.5166 3.92578 -2.5166 5.83691c0 1.2168 0.504883 3.05469 1.12598 4.10059l20.125 33.7656l-42.0625 8.73438\\nc-3.52734 0.720703 -6.39062 4.22754 -6.39062 7.82812s2.86328 7.10742 6.39062 7.82812l42.0625 8.71875l-20.1094 33.7344c-0.632812 1.05078 -1.14648 2.89844 -1.14648 4.12598c0 4.41113 3.58008 7.99121 7.99121 7.99121\\nc1.36523 0 3.38867 -0.626953 4.51465 -1.39844l30.3906 -20.6562l11.5166 287.969c0.15918 4.23535 3.72754 7.67188 7.96484 7.67188h0.0351562h0.046875c4.22266 -0.0322266 7.78516 -3.4834 7.95312 -7.70312l11.5312 -287.922l30.3906 20.6719\\nc1.12402 0.75 3.13477 1.35938 4.48633 1.35938c1.75781 0 4.22754 -0.972656 5.51367 -2.17188c1.38672 -1.30762 2.5127 -3.91504 2.5127 -5.82129c0 -1.21191 -0.50293 -3.04199 -1.12207 -4.08496l-20.1406 -33.7656l42.0781 -8.73438\\nc3.51855 -0.727539 6.375 -4.23438 6.375 -7.82812s-2.85645 -7.10059 -6.375 -7.82812l-42.0781 -8.71875l20.1094 -33.7344c0.637695 -1.05273 1.15625 -2.90625 1.15625 -4.13672c0 -1.8916 -1.11328 -4.48242 -2.48438 -5.78516\\nc-1.30176 -1.1748 -3.78125 -2.12891 -5.53418 -2.12891c-1.35059 0 -3.36523 0.59668 -4.49707 1.33203l-27.1719 18.4688l2.5 -65.3438c48.4844 9.40625 87.5781 48.1562 97.3125 96.5c1.41602 6.84082 2.56641 18.0625 2.56641 25.0488\\nc0 30.4727 -18.4258 71.7021 -41.1289 92.0293c-3.04688 2.6875 -5.52051 8.16602 -5.52051 12.2285c0 4.58691 3.0127 10.498 6.72363 13.1934c36.6562 27.1719 57.6875 68.6094 57.6875 113.734v0.0839844c0 14.6631 -4.41699 37.6133 -9.85938 51.2285\\nc-0.658203 1.60645 -1.19238 4.31934 -1.19238 6.05566c0 2.73438 1.25488 6.7832 2.80176 9.03809c2.66895 3.96875 8.7168 7.20996 13.5 7.23438c2.81445 -0.0107422 6.95898 -1.34863 9.25 -2.98438c47.0215 -33.3271 95.3633 -106.028 107.906 -162.281l-41.25 -41.2344\\nh46.9531c0.359375 -5.76562 1.04688 -11.4531 1.04688 -17.2656c-0.0273438 -14.4502 -2.32324 -37.6836 -5.125 -51.8594l-58.8906 -58.875h39.9688z\\\" />\\n    <glyph glyph-name=\\\"journal-whills\\\" unicode=\\\"&#xf66a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M438.406 70.4062c-3.20312 -12.8125 -3.20312 -57.6094 0 -73.6094c6.39062 -6.39062 9.58887 -12.792 9.59375 -19.2031v-16c0 -16 -12.7969 -25.5938 -25.5938 -25.5938h-326.406c-54.4062 0 -96 41.5938 -96 96v320c0 54.4062 41.5938 96 96 96h326.406\\nc16 0 25.5938 -9.59375 25.5938 -25.5938v-332.812c0 -9.59375 -3.19824 -15.9893 -9.59375 -19.1875zM380.797 64h-284.797c-16 0 -32 -12.7969 -32 -32s12.7969 -32 32 -32h284.797v64zM128.016 271.984c0 -0.515625 0.140625 -0.984375 0.140625 -1.5l37.1094 -32.4688\\nc1.50488 -1.31934 2.72656 -4.01465 2.72656 -6.01562c0 -4.41211 -3.58008 -7.99609 -7.99219 -8h-0.015625c-1.625 0.0820312 -3.97656 0.97168 -5.25 1.98438l-23.5938 20.6406c11.5469 -49.5781 55.7656 -86.625 108.859 -86.625s97.3125 37.0469 108.875 86.625\\nl-23.5938 -20.6406c-1.25 -1.08691 -3.60938 -1.96875 -5.26562 -1.96875v0h-0.015625c-1.9502 0.108398 -4.64551 1.32617 -6.01562 2.71875c-1.01074 1.27832 -1.89941 3.6377 -1.98438 5.26562c0.107422 1.9541 1.33203 4.64941 2.73438 6.01562l37.1094 32.4688\\nc0.015625 0.53125 0.15625 1 0.15625 1.51562c0 11.0469 -2.09375 21.5156 -5.0625 31.5938l-21.2656 -21.25c-1.29492 -1.2959 -3.83105 -2.34766 -5.66309 -2.34766c-4.41895 0 -8.00488 3.58594 -8.00488 8.00488c0 1.82812 1.04883 4.36133 2.33984 5.65527\\nl26.4219 26.4062c-8.47949 17.6582 -29.249 39.7295 -46.3594 49.2656c5.2959 -8.46484 9.59375 -23.4395 9.59375 -33.4248c0 -16.7217 -10.5977 -38.7705 -23.6562 -49.2158c8.64258 -8.95605 15.6562 -26.3262 15.6562 -38.7725\\nc0 -25.0283 -19.8799 -49.5117 -44.375 -54.6494l-1.42188 34.2812l12.6719 -8.625c0.557617 -0.379883 1.55762 -0.6875 2.23242 -0.6875h0.0175781h0.0253906c2.19727 0 3.98145 1.7832 3.98145 3.98047c0 0.609375 -0.254883 1.52832 -0.569336 2.05078l-8.53125 14.3125\\nl17.9062 3.71875c1.75977 0.367188 3.1875 2.12402 3.1875 3.92188s-1.42773 3.55469 -3.1875 3.92188l-17.9062 3.71875l8.53125 14.3125c0.314453 0.522461 0.569336 1.44141 0.569336 2.05078c0 2.19727 -1.78418 3.98047 -3.98145 3.98047h-0.0253906\\nc-0.668945 -0.0263672 -1.67676 -0.327148 -2.25 -0.671875l-14.1875 -9.65625l-4.6875 112.297c-0.0927734 2.11328 -1.88477 3.82812 -4 3.82812s-3.90723 -1.71484 -4 -3.82812l-4.625 -110.812l-12 8.15625c-0.561523 0.380859 -1.56836 0.69043 -2.24707 0.69043\\nc-2.20996 0 -4.00293 -1.79297 -4.00293 -4.00293c0 -0.607422 0.251953 -1.52441 0.5625 -2.04688l8.53125 -14.3125l-17.9062 -3.71875c-1.75977 -0.364258 -3.1875 -2.11719 -3.1875 -3.91406s1.42773 -3.5498 3.1875 -3.91406l17.9062 -3.73438l-8.53125 -14.2969\\nc-0.285156 -0.529297 -0.537109 -1.44629 -0.5625 -2.04688c0.0507812 -0.928711 0.611328 -2.23047 1.25 -2.90625c0.639648 -0.603516 1.87109 -1.09277 2.75 -1.09375c0.677734 0.00292969 1.68555 0.311523 2.25 0.6875l10.3594 7.04688l-1.35938 -32.7188\\nc-24.4951 5.14746 -44.375 29.6396 -44.375 54.6699c0 12.4482 7.01367 29.8232 15.6562 38.7832c-13.0586 10.4434 -23.6562 32.4893 -23.6562 49.21c0 9.99316 4.30469 24.9775 9.60938 33.4463c-17.1104 -9.53906 -37.8867 -31.6104 -46.375 -49.2656l26.4219 -26.4219\\nc1.28516 -1.29199 2.3291 -3.81934 2.3291 -5.64258c0 -4.41504 -3.58398 -7.99902 -7.99902 -7.99902c-1.82324 0 -4.35059 1.04395 -5.64258 2.3291l-21.2656 21.2656c-2.98438 -10.0938 -5.07812 -20.5625 -5.0625 -31.625z\\\" />\\n    <glyph glyph-name=\\\"kaaba\\\" unicode=\\\"&#xf66b;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M554.12 364.49c13.0703 -4.36035 21.8799 -16.5898 21.8799 -30.3604v-49.0098l-265 79.5098c-15.0596 4.5 -30.9502 4.5 -45.9805 0l-265.02 -79.5098v49.0098c0.000976562 12.7314 9.80273 26.332 21.8799 30.3604l235.771 78.5801\\nc8.15723 2.71973 21.7559 4.92676 30.3545 4.92676s22.1982 -2.20703 30.3555 -4.92676zM274.22 333.97c9 2.7207 18.5498 2.7207 27.5898 0l274.2 -82.2598v-228.39c0 -15 -10.4199 -27.9902 -25.0596 -31.2402l-242.12 -53.7998\\nc-5.67871 -1.2627 -15.0078 -2.28809 -20.8252 -2.28809s-15.1465 1.02539 -20.8252 2.28809l-242.12 53.7998c-14.6396 3.25977 -25.0596 16.2402 -25.0596 31.2402v228.38zM128 217.89v16.5801c0 5.28027 -5.01953 9.11035 -10.1104 7.7207l-80 -21.8203\\nc-3.47949 -0.950195 -5.88965 -4.11035 -5.88965 -7.71973v-16.5801c0 -5.27051 5.01953 -9.10059 10.1104 -7.7207l80 21.8203c3.47949 0.950195 5.88965 4.11035 5.88965 7.71973zM272 257.17v16.5801c0 5.28027 -5.01953 9.11035 -10.1104 7.71973l-96 -26.1797\\nc-3.47949 -0.950195 -5.88965 -4.11035 -5.88965 -7.71973v-16.5801c0 -5.28027 5.01953 -9.11035 10.1104 -7.7207l96 26.1807c3.47949 0.950195 5.88965 4.10938 5.88965 7.71973zM448 234.47v-16.5801v-0.00488281c0 -3.37109 2.63867 -6.82715 5.88965 -7.71484\\nl80 -21.8203c5.09082 -1.38965 10.1104 2.44043 10.1104 7.7207v16.5801c0 3.60938 -2.41016 6.76953 -5.88965 7.71973l-80 21.8203c-5.09082 1.38965 -10.1104 -2.44043 -10.1104 -7.7207zM304 273.74v-16.5801v-0.00585938c0 -3.37012 2.63867 -6.82617 5.88965 -7.71387\\nl96 -26.1807c5.09082 -1.38965 10.1104 2.44043 10.1104 7.7207v16.5791c0 3.61035 -2.41016 6.77051 -5.88965 7.7207l-96 26.1797c-5.09082 1.38965 -10.1104 -2.44043 -10.1104 -7.71973z\\\" />\\n    <glyph glyph-name=\\\"khanda\\\" unicode=\\\"&#xf66d;\\\" \\nd=\\\"M415.81 382c73.71 -40.2402 111.78 -123.85 90.1602 -207.51c-7.25 -28.0898 -22.3799 -53.5703 -41.25 -75.5898l-52.5098 -61.3105c-4.87012 -5.67969 -13.04 -7.22949 -19.6504 -3.70996l-79.3496 42.2305l-29.21 -20.3408l47.0801 -32.7793\\nc1.66992 0.370117 3.22949 1.00977 5.00977 1.00977c13.25 0 23.9902 -10.7402 23.9902 -24c0 -13.25 -10.7402 -24 -23.9902 -24c-12.0898 0 -21.6797 9.11035 -23.3301 20.7598l-40.9102 28.4805v-30.1504c9.38086 -5.58008 15.9902 -15.3896 15.9902 -27.0996\\nc0 -17.6699 -14.3203 -32 -31.9795 -32c-17.6602 0 -31.9805 14.3301 -31.9805 32c0 11.7197 6.60059 21.5293 15.9902 27.0996v29.9502l-40.6299 -28.2803c-1.64062 -11.6494 -11.2305 -20.7598 -23.3301 -20.7598c-13.25 0 -23.9902 10.75 -23.9902 24\\nc0 13.2598 10.7402 24 23.9902 24c1.78027 0 3.33984 -0.639648 5.00977 -1.00977l47.0801 32.7793l-29.21 20.3301l-79.3496 -42.2295c-6.61035 -3.52051 -14.7803 -1.96973 -19.6504 3.71973l-55.9697 65.3604c-12.5703 14.6797 -23.3906 31.0693 -30.46 49.0596\\nc-35.6602 90.6904 2.95996 186.391 81.4893 229.24c6.34082 3.5 15.0205 2.63965 20.0205 -2.7002c4.99023 -5.30957 6.45996 -12.9199 2.58984 -19.0801c-16.4902 -26.1602 -25.2002 -56.3896 -25.2002 -87.4697c0.180664 -53.1904 26.7598 -102.62 71.0303 -132.18\\nl76.5898 -53.3301v19.8994l-44.0498 36.0908c-3.91016 4.20996 -5 10.0996 -2.81055 15.2793l7.85059 17.2402c-33.8506 19.2598 -56.9404 55.2402 -56.9404 96.9902c0 40.79 22.0205 76.1396 54.5898 95.7197l-5.21973 11.4404\\nc-2.33008 5.5293 -0.929688 11.8301 3.57031 16.04l58.9902 52.8096l58.9893 -52.8203c4.5 -4.20996 5.91016 -10.5098 3.57031 -16.04l-5.21973 -11.4395c32.5693 -19.5801 54.5898 -54.9199 54.5898 -95.71c0 -41.7402 -23.0996 -77.7305 -56.9404 -96.9902\\nl7.85059 -17.2402c2.18945 -5.18945 1.10938 -11.0801 -2.81055 -15.2793l-44.0498 -36.0908v-20.0996l76.6299 53.3496c44.5 29.7207 71.0801 79.1602 71.2705 132.41c0 31.0205 -8.70996 61.25 -25.2002 87.4102c-1.36328 2.15723 -2.46973 5.97949 -2.46973 8.53223\\nc0 3.51465 1.96191 8.43652 4.37988 10.9883c4.99023 5.34961 12.9902 6.51953 19.3594 3.01953zM319.82 272c0 21.3203 -10.5801 40.1201 -26.6504 51.7695l-7.83008 -17.1797c-8.75 -24.5195 -8.75 -51.04 0 -75.5596l5.65039 -12.4102\\nc17.3398 11.46 28.8301 31.0801 28.8301 53.3799zM191.89 272c0 -22.2998 11.5 -41.9297 28.8408 -53.3896l5.64941 12.4092c8.75 24.5303 8.75 51.04 0 75.5605l-7.83008 17.1797c-16.0801 -11.6396 -26.6602 -30.4395 -26.6602 -51.7598z\\\" />\\n    <glyph glyph-name=\\\"landmark\\\" unicode=\\\"&#xf66f;\\\" \\nd=\\\"M501.62 355.89c6.24023 -2.33984 10.3799 -8.30957 10.3799 -14.9795v-36.9102c0 -8.83984 -7.16016 -16 -16 -16h-480c-8.83984 0 -16 7.16016 -16 16v36.9102c0 6.11914 4.65039 12.8301 10.3799 14.9795l234.39 90.0703\\nc2.99902 1.12598 8.03223 2.04004 11.2354 2.04004s8.23633 -0.914062 11.2354 -2.04004zM64 256h64v-160h96v160h64v-160h96v160h64v-160h16c8.83984 0 16 -7.16016 16 -16v-48h-448v48c0 8.83984 7.16016 16 16 16h16v160zM496 0c8.83984 0 16 -7.16016 16 -16v-32\\nc0 -8.83984 -7.16016 -16 -16 -16h-480c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h480z\\\" />\\n    <glyph glyph-name=\\\"mail-bulk\\\" unicode=\\\"&#xf674;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M160 0c25.5996 0 51.2002 22.4004 64 32c64 44.7998 83.2002 60.7998 96 70.4004v-134.4c0 -17.6699 -14.3301 -32 -32 -32h-256c-17.6699 0 -32 14.3301 -32 32v134.4c12.7998 -9.60059 32 -25.6006 96 -70.4004c12.7998 -9.59961 38.4004 -32 64 -32zM288 192\\nc17.6699 0 32 -14.3301 32 -32v-19.2002c-25.5996 -19.2002 -22.4004 -19.2002 -115.2 -86.3994c-9.59961 -3.2002 -28.7998 -22.4004 -44.7998 -22.4004s-35.2002 19.2002 -44.7998 25.5996c-92.7998 67.2002 -89.6006 67.2002 -115.2 86.4004v16\\nc0 17.6699 14.3301 32 32 32h256zM544 288c17.6699 0 32 -14.3301 32 -32v-192c0 -17.6699 -14.3301 -32 -32 -32h-192v134.4l-0.290039 -0.220703c-3.12012 32.4004 -30.5 57.8203 -63.71 57.8203h-96v32c0 17.6699 14.3301 32 32 32h320zM512 160v64h-64v-64h64zM160 256\\nv-32h-96v192c0 17.6699 14.3301 32 32 32h320c17.6699 0 32 -14.3301 32 -32v-96h-224c-35.29 0 -64 -28.71 -64 -64z\\\" />\\n    <glyph glyph-name=\\\"menorah\\\" unicode=\\\"&#xf676;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M144 320c8.83984 0 16 -7.16016 16 -16v-144h-64v144c0 8.83984 7.16016 16 16 16h32zM240 320c8.83984 0 16 -7.16016 16 -16v-144h-64v144c0 8.83984 7.16016 16 16 16h32zM432 320c8.83984 0 16 -7.16016 16 -16v-144h-64v144c0 8.83984 7.16016 16 16 16h32zM528 320\\nc8.83984 0 16 -7.16016 16 -16v-144h-64v144c0 8.83984 7.16016 16 16 16h32zM608 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64s-14.3301 -32 -32 -32zM512 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64s-14.3301 -32 -32 -32\\nzM416 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64s-14.3301 -32 -32 -32zM320 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64s-14.3301 -32 -32 -32zM224 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64\\ns-14.3301 -32 -32 -32zM128 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64s-14.3301 -32 -32 -32zM32 352c-17.6699 0 -32 14.3301 -32 32s32 64 32 64s32 -46.3301 32 -64s-14.3301 -32 -32 -32zM576 160v144c0 8.83984 7.16016 16 16 16h32\\nc8.83984 0 16 -7.16016 16 -16v-144c0 -53.0195 -42.9805 -96 -96 -96h-192v-64h176c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-416c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h176v64h-192c-53.0195 0 -96 42.9805 -96 96\\nv144c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-144c0 -17.6699 14.3301 -32 32 -32h192v176c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-176h192c17.6699 0 32 14.3301 32 32z\\\" />\\n    <glyph glyph-name=\\\"mosque\\\" unicode=\\\"&#xf678;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M0 -32v320h128v-320c0 -17.6699 -14.3301 -32 -32 -32h-64c-17.6699 0 -32 14.3301 -32 32zM579.16 160h-358.32c-17.8594 17.3896 -28.8398 37.3398 -28.8398 58.9102c0 52.8594 41.79 93.79 87.9199 122.899c41.9502 26.46 80.6299 57.7705 111.96 96.2207\\nl8.12012 9.96973l8.12012 -9.96973c31.3301 -38.4502 70.0195 -69.75 111.96 -96.2207c46.1299 -29.1094 87.9199 -70.04 87.9199 -122.899c0 -21.5703 -10.9805 -41.5205 -28.8398 -58.9102zM608 128c17.6699 0 32 -14.3301 32 -32v-128c0 -17.6699 -14.3301 -32 -32 -32\\nh-32v64c0 17.6699 -14.3301 32 -32 32s-32 -14.3301 -32 -32v-64h-64v72c0 48 -48 72 -48 72s-48 -24 -48 -72v-72h-64v64c0 17.6699 -14.3301 32 -32 32s-32 -14.3301 -32 -32v-64h-32c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32h416zM64 448\\nc0 0 64 -32 64 -96v-32h-128v32c0 64 64 96 64 96z\\\" />\\n    <glyph glyph-name=\\\"om\\\" unicode=\\\"&#xf679;\\\" \\nd=\\\"M360.6 387.06l-21.5801 21.5605c-1.68848 1.68652 -3.05957 4.99316 -3.05957 7.37988s1.37109 5.69336 3.05957 7.37988l21.5703 21.5605c4.08008 4.06934 10.6797 4.06934 14.7598 0l21.5801 -21.5605c1.68945 -1.68652 3.06055 -4.99316 3.06055 -7.37988\\ns-1.37109 -5.69336 -3.06055 -7.37988l-21.5693 -21.5605c-1.6875 -1.68848 -4.99316 -3.05957 -7.37988 -3.05957c-2.3877 0 -5.69336 1.37109 -7.38086 3.05957zM412.11 256c55.0898 0 99.8896 -44.7998 99.8896 -99.8799v-100.12c0 -48.5303 -47.4805 -88 -96.0195 -88\\nc-96.0205 0 -96.0205 64 -96.0205 64v37.8701c0 7.55957 9.42969 10.8896 14.2002 5.01953c15.1494 -18.6494 42.4199 -42.8896 81.8203 -42.8896c13.2393 0 32.0098 10.7695 32.0098 24v100.12c0 19.79 -16.1006 35.8799 -35.8799 35.8799\\nc-9.60059 0 -18.6006 -3.73047 -25.3799 -10.5l-24.25 -24.25c-18.8701 -18.8604 -43.9502 -29.25 -70.6406 -29.25h-21.6895c11.0293 -18.9004 17.8096 -40.5801 17.8096 -64c0 -70.5801 -57.4297 -128 -128.02 -128c-118.811 0 -160.03 96 -159.94 150.81\\nc0.0195312 8.80078 10.2598 12.7705 14.79 5.2207c22.7998 -38.0107 49.1299 -92.0303 145.15 -92.0303c35.2998 0 64.0098 28.7002 64.0098 64s-28.71 64 -64.0098 64h-33.0303c-5.57031 0.450195 -10.6406 3.49023 -13.1699 8.5498l-16.0898 32.1699\\nc-5.35059 10.7002 2.42969 23.2803 14.3896 23.2803h31.9004c26.4697 0 48.0098 21.5303 48.0098 48s-21.54 48 -48.0098 48c-11.25 0 -21.8203 -3.80957 -30.2705 -10.71c-5.54004 -4.53027 -13.4795 -4.50977 -19.2002 -0.209961l-26.1494 19.6299\\nc-8.08984 6.08008 -8.48047 17.9697 -1.12012 24.9297c25.1094 23.7402 59.8594 34.71 96.0098 28.7803c43.1602 -7.08008 79.4199 -40.6396 89.5205 -83.1895c6.43945 -27.1201 2.80957 -53.1309 -7.73047 -75.2305h46.8398c9.60059 0 18.6006 3.73047 25.3799 10.5\\nl24.25 24.25c18.8701 18.8604 43.9502 29.25 70.6406 29.25zM454.29 380.73c10.5596 7.95996 25.7002 0.489258 25.7002 -12.7305v-35.5195c0 -2.36035 -0.509766 -4.71094 -1.53027 -6.83008c-2.96973 -6.30078 -21.8301 -37.6602 -101.75 -37.6602\\nc-78.4297 0 -117.19 69.3896 -118.8 72.3398c-3.61035 6.62988 -2.08008 14.8799 3.66016 19.7998c5.69922 4.92969 14.1201 5.16992 20.1396 0.549805c3.53027 -2.69922 87.0303 -65.0693 172.58 0.0507812z\\\" />\\n    <glyph glyph-name=\\\"pastafarianism\\\" unicode=\\\"&#xf67b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624.54 100.33c12.4004 -4.71973 18.5996 -18.5801 13.8896 -30.9805c-4.69922 -12.4092 -18.5801 -18.6299 -30.9697 -13.8799c-8.11035 3.08984 -14.3398 0.19043 -31.3896 -11.3594c-13.5508 -9.15039 -30.8301 -20.8408 -52.4199 -20.8408\\nc-7.16992 0 -14.8301 1.28027 -22.9707 4.39062c-32.6602 12.4395 -39.9893 41.3301 -45.3301 62.4395c-2.20996 8.7207 -3.98926 14.4902 -5.94922 18.8701c-16.6201 -13.5996 -36.9307 -25.8701 -61.6201 -34.1602c10.0098 -37 32.2793 -90.8096 60.2197 -90.8096\\nc13.25 0 24 -10.75 24 -24s-10.75 -24 -24 -24c-66.7402 0 -97.0498 88.6299 -107.42 129.14c-6.69043 -0.599609 -13.4199 -1.13965 -20.5801 -1.13965s-13.8896 0.540039 -20.5801 1.13965c-10.3701 -40.5098 -40.6797 -129.14 -107.42 -129.14c-13.25 0 -24 10.75 -24 24\\ns10.75 24 24 24c28.0801 0 50.2998 53.7998 60.2598 90.7998c-24.6895 8.29004 -45.0195 20.5605 -61.6396 34.1699c-1.95996 -4.37988 -3.74023 -10.1494 -5.9502 -18.8701c-5.34961 -21.1094 -12.6699 -50 -45.3301 -62.4395\\nc-8.13965 -3.11035 -15.7998 -4.39062 -22.9697 -4.39062c-21.5898 -0.0195312 -38.8701 11.6807 -52.4199 20.8408c-17.0498 11.5498 -23.2305 14.4492 -31.3906 11.3594c-12.3594 -4.72949 -26.25 1.4707 -30.9697 13.8799\\nc-4.71973 12.3906 1.48047 26.25 13.8701 30.9707c32.6504 12.4697 57.3398 -4.25 75.3701 -16.4502c17.0801 -11.5303 23.2998 -14.4199 31.4102 -11.3604c8.12012 3.10059 10.8301 9.37988 15.8896 29.3799c3.33008 13.1504 7.44043 29.3203 17.9502 42.6504\\nc-2.24023 2.91016 -4.42969 5.78027 -6.37988 8.57031c-10.1699 -9.56055 -23.4102 -17.1104 -41.7002 -17.1104c-33.9502 0 -50.8701 25.7803 -62.0596 42.8301c-10.6006 16.1396 -15 21.1699 -21.9404 21.1699c-13.25 0 -24 10.75 -24 24s10.75 24 24 24\\nc33.96 0 50.8799 -25.7803 62.0596 -42.8301c10.6006 -16.1396 15 -21.1699 21.9404 -21.1699c17.1504 0 37.6797 61.5596 97.2695 101.9l-17.25 34.5c-33.46 2.09961 -60.0195 29.6191 -60.0195 63.5996c0 35.3496 28.6504 64 64 64s64 -28.6504 64 -64\\nc0 -13.0195 -3.94043 -25.0996 -10.5996 -35.21l18.1494 -36.2998c16.9697 4.59961 35.6006 7.50977 56.46 7.50977c20.8604 0 39.4805 -2.91016 56.46 -7.50977l18.1504 36.2998c-6.67969 10.1104 -10.6201 22.1904 -10.6201 35.21c0 35.3496 28.6504 64 64 64\\ns64 -28.6504 64 -64c0 -33.9805 -26.5703 -61.5 -60.0098 -63.5898l-17.25 -34.5c59.7793 -40.4805 79.9502 -101.91 97.2598 -101.91c6.94043 0 11.3398 5.03027 21.9404 21.1699c11.1895 17.0498 28.1094 42.8301 62.0596 42.8301c13.25 0 24 -10.75 24 -24\\ns-10.75 -24 -24 -24c-6.94043 0 -11.3496 -5.03027 -21.9404 -21.1699c-11.1895 -17.0498 -28.1094 -42.8301 -62.0596 -42.8301c-18.29 0 -31.5303 7.5498 -41.7002 17.1201c-1.9502 -2.78027 -4.13965 -5.66016 -6.37988 -8.57031\\nc10.5098 -13.3301 14.6201 -29.5 17.9502 -42.6494c5.05957 -20 7.76953 -26.29 15.8896 -29.3809c8.16016 -3.05957 14.3506 -0.169922 31.4102 11.3604c18.0098 12.2002 42.6699 28.9697 75.3701 16.4502zM448 400c-8.82031 0 -16 -7.17969 -16 -16s7.17969 -16 16 -16\\ns16 7.17969 16 16s-7.17969 16 -16 16zM192 400c-8.82031 0 -16 -7.17969 -16 -16s7.17969 -16 16 -16s16 7.17969 16 16s-7.17969 16 -16 16z\\\" />\\n    <glyph glyph-name=\\\"peace\\\" unicode=\\\"&#xf67c;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM432 192c0 90.5303 -65.7695 165.82 -152 181.03v-165.66l129.43 -103.54c14.3701 26.2002 22.5703 56.2402 22.5703 88.1699zM216 10.9697v114.46\\nl-89.29 -71.4395c24.7998 -21.8203 55.4297 -37.0498 89.29 -43.0205zM280 125.43v-114.449c33.8604 5.96973 64.4902 21.1992 89.29 43.0195zM216 373.03c-86.2305 -15.21 -152 -90.5 -152 -181.03c0 -31.9297 8.2002 -61.9697 22.5703 -88.1699l129.43 103.54v165.66z\\\" />\\n    <glyph glyph-name=\\\"place-of-worship\\\" unicode=\\\"&#xf67f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M620.61 81.4502c10.7031 -4.58887 19.3896 -17.7646 19.3896 -29.4102v-100.04c0 -8.83984 -7.16016 -16 -16 -16h-112v192zM0 52.04c0 11.6455 8.68652 24.8213 19.3896 29.4102l108.61 46.5498v-192h-112c-8.83984 0 -16 7.16016 -16 16v100.04zM464.46 201.32\\nc9.63965 -5.78027 15.54 -16.2002 15.54 -27.4404v-237.88h-96v96c0 35.3496 -28.6602 64 -64 64s-64 -28.6504 -64 -64v-96h-96v237.88c0 10.0029 6.96191 22.2959 15.54 27.4404l48.46 29.0801v114.97c0 8.49023 3.37988 16.6299 9.37988 22.6299l75.3105 75.3096\\nc6.23926 6.25 16.3691 6.25 22.6191 0l75.3105 -75.3096c6.00977 -6.00977 9.37988 -14.1396 9.37988 -22.6299v-114.97z\\\" />\\n    <glyph glyph-name=\\\"poll\\\" unicode=\\\"&#xf681;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM160 80v128c0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-128c0 -8.83984 7.16016 -16 16 -16h32\\nc8.83984 0 16 7.16016 16 16zM256 80v224c0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-224c0 -8.83984 7.16016 -16 16 -16h32c8.83984 0 16 7.16016 16 16zM352 80v64c0 8.83984 -7.16016 16 -16 16h-32c-8.83984 0 -16 -7.16016 -16 -16v-64\\nc0 -8.83984 7.16016 -16 16 -16h32c8.83984 0 16 7.16016 16 16z\\\" />\\n    <glyph glyph-name=\\\"poll-h\\\" unicode=\\\"&#xf682;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 16c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48v-352zM112 256h128c8.83984 0 16 7.16016 16 16v32c0 8.83984 -7.16016 16 -16 16h-128c-8.83984 0 -16 -7.16016 -16 -16v-32\\nc0 -8.83984 7.16016 -16 16 -16zM112 160h224c8.83984 0 16 7.16016 16 16v32c0 8.83984 -7.16016 16 -16 16h-224c-8.83984 0 -16 -7.16016 -16 -16v-32c0 -8.83984 7.16016 -16 16 -16zM112 64h64c8.83984 0 16 7.16016 16 16v32c0 8.83984 -7.16016 16 -16 16h-64\\nc-8.83984 0 -16 -7.16016 -16 -16v-32c0 -8.83984 7.16016 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"pray\\\" unicode=\\\"&#xf683;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M256 320c-35.3496 0 -64 28.6504 -64 64s28.6504 64 64 64s64 -28.6504 64 -64s-28.6504 -64 -64 -64zM225.37 150.25l-24.1504 28.7598l-34.7998 -64.8701l109.86 -109.859c25.4893 -25.4902 5.7998 -68.2803 -28.2803 -68.2803h-208c-22.0898 0 -40 17.9102 -40 40\\ns17.9102 40 40 40h91.5596l-44.8096 34.8896c-42.8799 27.3799 -57.5898 80.1104 -34.1904 123.75l49.3701 92.0303c11.1201 20.6504 32.1807 34.4404 56.3701 36.9199c24.7803 2.58984 48.5605 -6.93945 64 -25.3301l38.9102 -46.3096l57.4404 47\\nc17.1191 13.9697 42.3398 11.4902 56.3096 -5.62012c13.9697 -17.0898 11.4697 -42.2998 -5.62012 -56.2803l-88 -72.0195c-16.9697 -13.8701 -41.9102 -11.5 -55.9697 5.21973z\\\" />\\n    <glyph glyph-name=\\\"praying-hands\\\" unicode=\\\"&#xf684;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M272 256.09c17.5996 0 32 -14.3994 32 -32v-128c0 -51.8896 -34.8398 -98.0801 -84.75 -112.35l-179.19 -46.6201c-2.64941 -0.69043 -5.36914 -1.03027 -8.05957 -1.03027c-23.4805 0 -32 21.1797 -32 32v96v0.0117188c0 12.7285 9.80176 26.3203 21.8799 30.3389\\nl90.1201 30.04v80.2295c0 18.9805 5.55957 37.3896 16.1201 53.2305l117.26 175.899c0.169922 0.270508 0.589844 0.25 0.790039 0.480469c9.58008 13.5098 27.8496 17.8799 42.2998 9.20996c15.1602 -9.10059 20.0605 -28.75 10.9707 -43.9102l-77.75 -129.59\\nc-8.9707 -14.9199 -13.6904 -32 -13.6904 -49.3906v-76.5498c0 -8.83984 7.16016 -16 16 -16s16 7.16016 16 16v80c0 17.6006 14.4004 32 32 32zM618.12 94.3604c13.0703 -4.36035 21.8799 -16.5801 21.8799 -30.3506v-96c0 -10.8193 -8.51953 -32 -32 -32\\nc-2.67969 0 -5.40039 0.339844 -8.05957 1.03027l-179.19 46.6201c-49.9102 14.2598 -84.75 60.4502 -84.75 112.34v128c0 17.5996 14.4004 32 32 32s32 -14.4004 32 -32v-80c0 -8.83984 7.16016 -16 16 -16s16 7.16016 16 16v76.5498\\nc0 17.3906 -4.71973 34.4697 -13.6904 49.3906l-77.75 129.59c-9.08984 15.1602 -4.18945 34.8193 10.9707 43.9102c14.4502 8.66992 32.7197 4.2998 42.2998 -9.20996c0.200195 -0.240234 0.610352 -0.210938 0.790039 -0.480469l117.26 -175.89\\nc10.5605 -15.8408 16.1201 -34.25 16.1201 -53.2305v-80.2295z\\\" />\\n    <glyph glyph-name=\\\"quran\\\" unicode=\\\"&#xf687;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 89.5996c0 -9.59961 -3.2002 -16 -9.59961 -19.1992c-3.2002 -12.8008 -3.2002 -57.6006 0 -73.6006c6.39941 -6.39941 9.59961 -12.7998 9.59961 -19.2002v-16c0 -16 -12.7998 -25.5996 -25.5996 -25.5996h-326.4c-54.4004 0 -96 41.5996 -96 96v320\\nc0 54.4004 41.5996 96 96 96h326.4c16 0 25.5996 -9.59961 25.5996 -25.5996v-332.801zM301.08 302.18l-11.1904 -22.6494l-24.9893 -3.62988c-2.68066 -0.390625 -3.75 -3.66992 -1.81055 -5.56055l18.0898 -17.6299l-4.26953 -24.8896\\nc-0.360352 -2.11035 1.30957 -3.82031 3.20996 -3.82031c0.5 0 1.01953 0.120117 1.51953 0.379883l22.3604 11.75l22.3604 -11.75c0.5 -0.259766 1.01953 -0.379883 1.51953 -0.379883c1.90039 0 3.57031 1.70996 3.20996 3.82031l-4.26953 24.8896l18.0898 17.6299\\nc1.92969 1.89062 0.859375 5.16992 -1.81055 5.56055l-25 3.62988l-11.1797 22.6494c-0.599609 1.20996 -1.75977 1.82031 -2.91992 1.82031s-2.32031 -0.610352 -2.91992 -1.82031zM243.19 371.19c-63.5205 0 -115.19 -51.6709 -115.19 -115.19\\nc0 -63.5098 51.6699 -115.19 115.18 -115.18c13.6006 0 27.1201 2.46973 40.1904 7.33984c2.67969 0.910156 4.62012 3.43945 4.62012 6.41992c0 3.63965 -2.87012 6.78027 -6.7998 6.78027c-0.650391 0 -3.10059 -0.209961 -4.13086 -0.209961\\nc-52.3096 0 -94.8594 42.5596 -94.8594 94.8594c0 52.3105 42.5498 94.8604 94.8594 94.8604c1.04004 0 3.45996 -0.209961 4.13086 -0.209961c0.633789 -0.237305 1.69727 -0.429688 2.375 -0.429688c3.73926 0 6.77441 3.03516 6.77441 6.77441\\nc0 3.7373 -3.03223 6.77246 -6.76953 6.77539c-13.1201 4.91992 -26.71 7.41016 -40.3799 7.41016zM380.8 0v64h-284.8c-16 0 -32 -12.7998 -32 -32s12.7998 -32 32 -32h284.8z\\\" />\\n    <glyph glyph-name=\\\"search-dollar\\\" unicode=\\\"&#xf688;\\\" \\nd=\\\"M505.04 5.33984c9.2998 -9.39941 9.2998 -24.5898 -0.0996094 -33.9902l-28.3008 -28.2998c-9.2998 -9.39941 -24.5 -9.39941 -33.8994 0l-99.71 99.6904c-4.5 4.5 -7 10.5996 -7 17v16.2998c-35.2998 -27.5996 -79.71 -44 -128.011 -44\\nc-114.909 0 -208.02 93.0898 -208.02 207.979c0 114.891 93.1201 207.98 208.02 207.98c114.9 0 208.011 -93.0898 208.011 -207.98c0 -48.2998 -16.4004 -92.6895 -44 -127.989h16.2998c6.40039 0 12.5 -2.5 17 -7zM208.02 96.04c79.6504 0 144 64.4502 144 143.979\\nc0 79.6406 -64.46 143.98 -144 143.98c-79.6494 0 -144 -64.4502 -144 -143.98c0 -79.6396 64.4609 -143.979 144 -143.979zM235.13 248.58c18.6006 -5.58008 31.5898 -23.4199 31.5898 -43.3896c0 -24.5303 -19.0498 -44.4404 -42.6797 -45.0703v-16.1201\\nc0 -4.41992 -3.58008 -8 -8 -8h-16c-4.41992 0 -8 3.58008 -8 8v16.29c-11.29 0.580078 -22.2705 4.51953 -31.3701 11.3496c-3.90039 2.93066 -4.09961 8.77051 -0.570312 12.1406l11.75 11.21c2.77051 2.63965 6.89062 2.75977 10.1309 0.729492\\nc3.85938 -2.42969 8.25977 -3.71973 12.8193 -3.71973h28.1006c6.5 0 11.7998 5.91992 11.7998 13.1904c0 5.94922 -3.61035 11.1797 -8.77051 12.7295l-45.0098 13.5c-18.5898 5.58008 -31.5801 23.4199 -31.5801 43.3896c0 24.5205 19.0498 44.4404 42.6797 45.0703\\nv16.1201c0 4.41992 3.58008 8 8 8h16c4.4209 0 8 -3.58008 8 -8v-16.29c11.29 -0.580078 22.2705 -4.51953 31.3701 -11.3496c3.90039 -2.93066 4.10059 -8.77051 0.570312 -12.1406l-11.75 -11.21c-2.76953 -2.63965 -6.88965 -2.75977 -10.1299 -0.729492\\nc-3.86035 2.42969 -8.25977 3.71973 -12.8203 3.71973h-28.1094c-6.5 0 -11.8008 -5.91992 -11.8008 -13.1904c0 -5.94922 3.61035 -11.1797 8.77051 -12.7295z\\\" />\\n    <glyph glyph-name=\\\"search-location\\\" unicode=\\\"&#xf689;\\\" \\nd=\\\"M505.04 5.33984c9.2998 -9.39941 9.2998 -24.5898 -0.0996094 -33.9902l-28.3008 -28.2998c-9.2998 -9.39941 -24.5 -9.39941 -33.8994 0l-99.71 99.6904c-4.5 4.5 -7 10.5996 -7 17v16.2998c-35.2998 -27.5996 -79.71 -44 -128.011 -44\\nc-114.909 0 -208.02 93.0898 -208.02 207.979c0 114.891 93.1201 207.98 208.02 207.98c114.9 0 208.011 -93.0898 208.011 -207.98c0 -48.2998 -16.4004 -92.6895 -44 -127.989h16.2998c6.40039 0 12.5 -2.5 17 -7zM208.02 96.04c79.6504 0 144 64.4502 144 143.979\\nc0 79.6406 -64.46 143.98 -144 143.98c-79.6494 0 -144 -64.4502 -144 -143.98c0 -79.6396 64.4609 -143.979 144 -143.979zM208.04 336c40.7803 0 73.8398 -33.0498 73.8398 -73.8301c0 -32.9697 -48.2598 -93.0498 -66.75 -114.86\\nc-1.5293 -1.8291 -4.70508 -3.31445 -7.08984 -3.31445s-5.56055 1.48535 -7.08984 3.31445c-18.4902 21.8105 -66.75 81.9004 -66.75 114.86c0 40.7803 33.0596 73.8301 73.8398 73.8301zM208.04 240c13.25 0 24 10.75 24 24c0 13.2598 -10.75 24 -24 24\\ns-24 -10.7402 -24 -24c0 -13.25 10.7402 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"socks\\\" unicode=\\\"&#xf696;\\\" \\nd=\\\"M214.66 136.99c-52.7402 -39.5605 -69.0498 -110.021 -39.2002 -165.4l-21.8604 -16.3896c-17.2695 -12.9502 -37.4893 -19.2002 -57.5195 -19.2002c-32.8105 0 -65.6904 16.75 -83.9404 48.3301c-24.6494 42.6396 -10.1895 97.5 29.21 127.06l86.6504 64.6104v176h160\\nv-160zM288 416v-32h-160v32c0 17.6699 14.3301 32 32 32h128c2.84961 0 5.40039 -0.919922 8.01953 -1.62012c-4.94922 -9.08008 -8.01953 -19.3301 -8.01953 -30.3799zM480 448c17.6699 0 32 -14.3301 32 -32v-32h-192v32c0 17.6699 14.3301 32 32 32h128zM320 176v176h192\\nv-208v-0.00195312c0 -35.3271 -22.9375 -81.2021 -51.2002 -102.398l-115.2 -86.3994c-17.2695 -12.9502 -37.4893 -19.2002 -57.5195 -19.2002c-32.8105 0 -65.1699 16.75 -83.4199 48.3301c-24.6504 42.6396 -10.1904 97.5 29.21 127.06z\\\" />\\n    <glyph glyph-name=\\\"square-root-alt\\\" unicode=\\\"&#xf698;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M571.31 196.69c6.25 -6.25 6.25 -16.3809 0 -22.6309l-46.0596 -46.0596l46.0596 -46.0596c6.25 -6.25 6.25 -16.3809 0 -22.6309l-22.6191 -22.6191c-6.25 -6.25 -16.3809 -6.25 -22.6309 0l-46.0596 46.0596l-46.0596 -46.0596c-6.25 -6.25 -16.3809 -6.25 -22.6309 0\\nl-22.6191 22.6191c-6.25 6.25 -6.25 16.3809 0 22.6309l46.0596 46.0596l-46.0596 46.0596c-6.25 6.25 -6.25 16.3809 0 22.6309l22.6191 22.6191c6.25 6.25 16.3809 6.25 22.6309 0l46.0596 -46.0596l46.0596 46.0596c6.25 6.25 16.3809 6.25 22.6309 0zM552 448\\nc13.25 0 24 -10.7402 24 -24v-48c0 -13.25 -10.75 -24 -24 -24h-194.97l-97.8105 -374.52c-9.83984 -32.4805 -37.0098 -41.4805 -54.2793 -41.4805c-18.6406 0 -35.9502 8.5 -48.4404 28.2695l-88.8799 163.73h-43.6201c-13.25 0 -24 10.75 -24 24v48\\nc0 13.2598 10.75 24 24 24h81.4697c10.4385 -0.00292969 22.9961 -7.42578 28.0303 -16.5703l58.4102 -106.1l84.79 322.8c3.68945 14.0703 16.4102 23.8701 30.9502 23.8701h244.35z\\\" />\\n    <glyph glyph-name=\\\"star-and-crescent\\\" unicode=\\\"&#xf699;\\\" \\nd=\\\"M340.47 -18.3604c8.74023 0 15.1299 -6.96973 15.1299 -15.0596c0 -6.62012 -4.31934 -12.2402 -10.2793 -14.2598c-29.04 -10.8301 -59.0898 -16.3203 -89.3203 -16.3203c-141.16 0 -256 114.84 -256 256s114.84 256 256 256c30.3896 0 60.5801 -5.54004 89.75 -16.4805\\nc6.91992 -2.59961 10.9297 -9.83984 9.46973 -17.0898c-1.41992 -7.04004 -7.62012 -12.0693 -14.75 -12.0693c-1.47949 0 -6.85938 0.459961 -9.17969 0.459961c-116.25 0 -210.82 -94.5703 -210.82 -210.82s94.5703 -210.82 210.82 -210.82\\nc2.29004 0 7.72949 0.459961 9.17969 0.459961zM503.46 234.14c8.16992 -1.17969 11.4297 -11.2197 5.52051 -16.9893l-55.2705 -53.8701l13.0498 -76.0703c1.11035 -6.42969 -4.00977 -11.6602 -9.80957 -11.6602c-1.53027 0 -3.11035 0.370117 -4.64062 1.16992\\nl-68.3096 35.9102l-68.3301 -35.9102c-1.53027 -0.80957 -3.11035 -1.16992 -4.63965 -1.16992c-5.7998 0 -10.9199 5.21973 -9.81055 11.6602l13.0498 76.0703l-55.2695 53.8701c-5.91016 5.76953 -2.65039 15.8096 5.51953 16.9893l76.3809 11.1006l34.1592 69.21\\nc1.83008 3.7002 5.38086 5.5498 8.93066 5.5498s7.09961 -1.84961 8.92969 -5.5498l34.1602 -69.21z\\\" />\\n    <glyph glyph-name=\\\"star-of-david\\\" unicode=\\\"&#xf69a;\\\" horiz-adv-x=\\\"464\\\" \\nd=\\\"M405.68 192l53.2207 -89.3896c14.4092 -24.21 -3.41016 -54.6104 -32.0107 -54.6104h-106.93l-55.9502 -93.9805c-7.14941 -12.0098 -19.5801 -18.0195 -32.0098 -18.0195s-24.8604 6.00977 -32.0098 18.0195l-55.9502 93.9805h-106.93\\nc-28.6006 0 -46.4199 30.4004 -32.0107 54.6104l53.2207 89.3896l-53.2207 89.3896c-14.4092 24.21 3.41016 54.6104 32.0107 54.6104h106.93l55.9502 93.9805c7.14941 12.0098 19.5801 18.0195 32.0098 18.0195s24.8604 -6.00977 32.0098 -18.0195l55.9502 -93.9805h106.92\\nc28.6006 0 46.4199 -30.4004 32.0098 -54.6104zM392.9 280h-39.6006l19.7998 -33.2598zM340.51 192l-52.3896 88h-112.25l-52.3799 -88l52.3896 -88h112.24zM232 374.28l-22.7803 -38.2803h45.5703zM71.0996 280l19.8008 -33.2598l19.7998 33.2598h-39.6006zM71.0996 104\\nh39.6006l-19.7998 33.2598zM232 9.71973l22.7803 38.2803h-45.5703zM353.29 104h39.6104l-19.8105 33.2598z\\\" />\\n    <glyph glyph-name=\\\"synagogue\\\" unicode=\\\"&#xf69b;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M70 251.49c5.30957 6.00977 14.6904 6.00977 20 0l38 -43.0703v-272.42h-128v226.07v0.00683594c0 5.5625 2.98828 13.4629 6.66992 17.6328zM633.33 179.71c4.2998 -4.87012 6.66992 -11.1396 6.66992 -17.6396v-226.07h-128v272.42l38 43.0703\\nc5.30957 6.01953 14.6904 6.01953 20 0zM339.99 440.99l128 -102.4c7.58984 -6.07031 12.0098 -15.2695 12.0098 -24.9902v-377.6h-96v96c0 38.8701 -34.6602 69.6504 -74.75 63.1201c-31.4697 -5.12012 -53.25 -34.6699 -53.25 -66.5498v-92.5703h-96v377.6\\nc0 8.49023 5.38086 19.6865 12.0098 24.9902l128 102.4c11.6904 9.34961 28.29 9.34961 39.9805 0zM392.06 225.44l-19.1895 30.5596l19.2002 30.5703c1.97949 3.14941 -0.290039 7.23926 -4 7.23926h-38.9502l-25.1201 39.9805c-1.84961 2.9502 -6.15039 2.9502 -8 0\\nl-25.1201 -40h-38.9395c-3.70996 0 -5.98047 -4.08984 -4 -7.24023l19.1992 -30.5596l-19.1992 -30.5605c-1.98047 -3.14941 0.279297 -7.23926 4 -7.23926h38.9395l25.1201 -39.9805c1.84961 -2.9502 6.15039 -2.9502 8 0l25.1201 39.9902h38.9395\\nc3.70996 0 5.98047 4.08984 4 7.24023z\\\" />\\n    <glyph glyph-name=\\\"torah\\\" unicode=\\\"&#xf6a0;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M320.05 81.5195l-17.7402 29.6406h35.46zM419.26 247.52l-18.3994 -30.8193l-18.46 30.8193h36.8594zM48 448c26.5098 0 48 -14.3301 48 -32v-448c0 -17.6699 -21.4902 -32 -48 -32s-48 14.3301 -48 32v448c0 17.6699 21.4902 32 48 32zM220.74 136.5l18.3896 30.8203\\nl18.46 -30.8203h-36.8496zM382.45 136.5l18.4102 30.7998l18.4492 -30.7998h-36.8594zM128 -16v416h384v-416h-384zM194.77 262.13c-1.53711 -2.65625 -2.78516 -7.30176 -2.78516 -10.3711c0 -3.20312 1.35059 -8.02246 3.01562 -10.7588l29.3604 -49l-29.21 -48.8398\\nc-1.6709 -2.77344 -3.02637 -7.65234 -3.02637 -10.8906c0 -11.6523 9.45703 -21.1094 21.1104 -21.1094h0.015625h59.5l29.25 -48.8799c3.33105 -5.6416 11.3516 -10.2207 17.9023 -10.2207h0.0976562c6.64844 0.0136719 14.7842 4.67285 18.1602 10.4004l29.1299 48.7002\\nh59.4697h0.0224609c6.8125 0 15.082 4.80273 18.458 10.7197c1.53418 2.65332 2.7793 7.29297 2.7793 10.3584c0 3.2041 -1.35254 8.02539 -3.01953 10.7617l-29.3701 49l29.2402 48.8496c1.66602 2.77246 3.01758 7.64648 3.01758 10.8809\\nc0 11.6562 -9.46094 21.1182 -21.1182 21.1191h-59.5195l-29.25 48.8604c-3.3252 5.63574 -11.3359 10.21 -17.8799 10.21h-0.0703125h-0.0341797c-6.65137 0 -14.7988 -4.64551 -18.1855 -10.3701l-29.1299 -48.71h-59.4502h-0.0458984\\nc-6.80469 0 -15.0635 -4.79785 -18.4346 -10.71zM592 448c26.5098 0 48 -14.3301 48 -32v-448c0 -17.6699 -21.4902 -32 -48 -32s-48 14.3301 -48 32v448c0 17.6699 21.4902 32 48 32zM320 302.47l17.6797 -29.6201h-35.46zM257.55 247.47l-18.3701 -30.7998\\nl-18.4395 30.7998h36.8096zM287.13 136.47l-33.2295 55.5303l33.1699 55.5195h65.79l33.2295 -55.5195l-33.1699 -55.5303h-65.79z\\\" />\\n    <glyph glyph-name=\\\"torii-gate\\\" unicode=\\\"&#xf6a1;\\\" \\nd=\\\"M376.45 416c39.4961 0.00195312 100.223 14.3389 135.55 32v-96c0 -17.6699 -14.3301 -32 -32 -32h-32v-64h48c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-48v-240c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v240\\nh-256v-240c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v240h-48c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h48v64h-32c-17.6699 0 -32 14.3301 -32 32v96c35.3271 -17.6611 96.0537 -31.998 135.55 -32h240.9zM128 320v-64h96\\nv64h-96zM384 256v64h-96v-64h96z\\\" />\\n    <glyph glyph-name=\\\"vihara\\\" unicode=\\\"&#xf6a7;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M632.88 47.29c5.41992 -3.61035 7.7002 -9.62012 6.99023 -15.29c-0.620117 -5.00977 -3.56055 -9.75 -8.71973 -12.3301l-55.1504 -19.6699v-48c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v48h-160v-48c0 -8.83984 -7.16016 -16 -16 -16h-32\\nc-8.83984 0 -16 7.16016 -16 16v48h-160v-48c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v48l-55.1602 19.6699c-5.14941 2.58008 -8.09961 7.32031 -8.71973 12.3301c-0.700195 5.66016 1.58008 11.6699 7 15.29l88.8799 48.71v64\\nl-55.1602 17.6904c-11.79 5.89941 -11.79 22.7197 0 28.6191l119.16 49.6904v64l-27.3096 16.3096c-7.7207 7.7207 -5.61035 20.7402 4.15918 25.6201l183.15 86.0703l183.15 -86.0801c9.76953 -4.87988 11.8799 -17.9004 4.15918 -25.6201l-27.3096 -16.2998v-64\\nl119.16 -49.6904c11.79 -5.89941 11.79 -22.7197 0 -28.6191l-55.1602 -17.6904v-64zM224 320v-64h192v64h-192zM160 96h320v64h-320v-64z\\\" />\\n    <glyph glyph-name=\\\"volume-mute\\\" unicode=\\\"&#xf6a9;\\\" \\nd=\\\"M215.03 376.95c15.0098 15.0098 40.9697 4.49023 40.9697 -16.9697v-335.961c0 -21.4395 -25.9404 -32 -40.9697 -16.9697l-88.9707 88.9502h-102.06c-13.2598 0 -24 10.75 -24 24v144c0 13.2598 10.7402 24 24 24h102.06zM461.64 192l45.6406 -45.6396\\nc6.2998 -6.30078 6.2998 -16.5205 0 -22.8203l-22.8203 -22.8203c-6.2998 -6.2998 -16.5195 -6.2998 -22.8203 0l-45.6396 45.6406l-45.6299 -45.6299c-6.2998 -6.30078 -16.5205 -6.30078 -22.8203 0l-22.8193 22.8193c-6.30078 6.2998 -6.30078 16.5205 0 22.8203\\nl45.6299 45.6299l-45.6406 45.6396c-6.2998 6.30078 -6.2998 16.5205 0 22.8203l22.8203 22.8203c6.2998 6.2998 16.5195 6.2998 22.8203 0l45.6396 -45.6406l45.6396 45.6406c6.30078 6.2998 16.5205 6.2998 22.8203 0l22.8203 -22.8203\\nc6.2998 -6.2998 6.2998 -16.5195 0 -22.8203z\\\" />\\n    <glyph glyph-name=\\\"yin-yang\\\" unicode=\\\"&#xf6ad;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 64c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM248 192c53.0195 0 96 42.9805 96 96s-42.9805 96 -96 96\\nc-106.04 0 -192 -85.96 -192 -192s85.96 -192 192 -192c-53.0195 0 -96 42.9805 -96 96s42.9805 96 96 96zM248 320c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32s-32 14.3301 -32 32s14.3301 32 32 32z\\\" />\\n    <glyph glyph-name=\\\"blender-phone\\\" unicode=\\\"&#xf6b6;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M392 384c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h157.82l-17.46 -64h-140.36c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h131.64l-17.46 -64h-114.18c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h105.46\\nl-17.46 -64h-288v352h384l-17.46 -64h-166.54zM158.8 112.99c3.00977 -7.40039 0.200195 -15.8506 -6.68945 -20.0703l-39.4102 -24.1797c-12.5303 -7.68066 -31.7803 -6 -41.6504 4.7998c-94.0996 102.94 -94.6699 258.89 -2.09961 362.49\\nc11.1396 12.4697 29.5596 15.8398 43.8896 7.0498l39.2803 -24.0996c6.87988 -4.2207 9.7002 -12.6807 6.67969 -20.0703l-25.7803 -63.2598c-2.7793 -6.80078 -9.80957 -10.9902 -17.2393 -10.2607l-45.0303 4.41992c-17.6504 -47.9395 -17.2803 -100.779 0 -147.72\\nl45.0303 4.41992c7.43945 0.730469 14.46 -3.4502 17.2393 -10.2598zM480 64c35.3496 0 64 -28.6504 64 -64v-32c0 -17.6699 -14.3301 -32 -32 -32h-352c-17.6699 0 -32 14.3301 -32 32v32c0 35.3496 28.6504 64 64 64h288zM336 -32c17.6699 0 32 14.3301 32 32\\ns-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"book-dead\\\" unicode=\\\"&#xf6b7;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M272 312c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16s16 -7.2002 16 -16s-7.2002 -16 -16 -16zM448 89.5996c0 -9.59961 -3.2002 -16 -9.59961 -19.1992c-3.2002 -12.8008 -3.2002 -57.6006 0 -73.6006c6.39941 -6.39941 9.59961 -12.7998 9.59961 -19.2002v-16\\nc0 -16 -12.7998 -25.5996 -25.5996 -25.5996h-326.4c-54.4004 0 -96 41.5996 -96 96v320c0 54.4004 41.5996 96 96 96h326.4c16 0 25.5996 -9.59961 25.5996 -25.5996v-332.801zM240 392c-44.2002 0 -80 -28.7002 -80 -64c0 -20.9004 12.7002 -39.2002 32 -50.9004v-13.0996\\nc0 -8.7998 7.2002 -16 16 -16h64c8.7998 0 16 7.2002 16 16v13.0996c19.2998 11.7002 32 30 32 50.9004c0 35.2998 -35.7998 64 -80 64zM124.8 224.7c-1.7002 -4.10059 0.100586 -8.7998 4.2002 -10.5l70.5 -30.2998l-70.4004 -30.1006\\nc-4.09961 -1.7002 -5.89941 -6.39941 -4.19922 -10.5l6.2998 -14.7002c1.7002 -4.09961 6.39941 -5.89941 10.5 -4.19922l98.2998 42.1992l98.2998 -42.0996c4.10059 -1.7002 8.7998 0.0996094 10.5 4.2002l6.2998 14.7002c1.7002 4.09961 -0.0996094 8.7998 -4.19922 10.5\\nl-70.3008 30.0996l70.3008 30.2002c4.09961 1.7002 5.89941 6.39941 4.19922 10.5l-6.2998 14.7002c-1.7002 4.09961 -6.39941 5.89941 -10.5 4.19922l-98.3994 -42.0996l-98.3008 42.0996c-4.09961 1.7002 -8.7998 -0.0996094 -10.5 -4.19922zM380.8 0v64h-284.8\\nc-16 0 -32 -12.7998 -32 -32s12.7998 -32 32 -32h284.8zM208 312c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16s16 -7.2002 16 -16s-7.2002 -16 -16 -16z\\\" />\\n    <glyph glyph-name=\\\"campground\\\" unicode=\\\"&#xf6bb;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-608c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h24.6797l239.79 330.25l-53.4102 73.5498c-5.19922 7.15039 -3.60938 17.1602 3.54004 22.3506l25.8809 18.7998\\nc7.14941 5.18945 17.1592 3.59961 22.3496 -3.5498l41.1699 -56.7002l41.1602 56.6895c5.2002 7.16016 15.2002 8.74023 22.3496 3.55078l25.9004 -18.79c7.14941 -5.19043 8.72949 -15.2002 3.54004 -22.3506l-53.4102 -73.5498l239.78 -330.25h24.6797zM320 160\\nl-116.36 -160h232.721z\\\" />\\n    <glyph glyph-name=\\\"cat\\\" unicode=\\\"&#xf6be;\\\" \\nd=\\\"M290.59 256c11.8906 -58.3496 63.6006 -102.4 125.41 -102.4c11.1104 0 21.71 1.87012 32 4.54004v-206.14c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v144l-128 -96h32c17.6699 0 32 -14.3301 32 -32v-16c0 -8.83984 -7.16016 -16 -16 -16\\nh-176c-35.2998 0 -64 28.7002 -64 64v256c0 17.6396 -14.3604 32 -32 32c-17.6699 0 -32 14.3301 -32 32s14.3301 32 32 32c52.9404 0 96 -43.0596 96 -96v-85.9502c55.7695 83.9697 142.41 85.9502 162.59 85.9502zM448 352l64 64v-134.4c0 -53.0195 -42.9805 -96 -96 -96\\ns-96 42.9805 -96 96v134.4l64 -64h64zM376 272c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16zM456 272c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"chair\\\" unicode=\\\"&#xf6c0;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M112 320v-128h-48v128c0 70.7002 57.2998 128 128 128h64c70.7002 0 128 -57.2998 128 -128v-128h-48v128c0 29.5 -16.2002 55 -40 68.9004v-196.9h-48v208h-48v-208h-48v196.9c-23.7998 -13.9004 -40 -39.4004 -40 -68.9004zM446.3 106.1\\nc6.90039 -20.6992 -8.5 -42.0996 -30.2998 -42.0996v-112c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v112h-256v-112c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v112c-21.7998 0 -37.2002 21.4004 -30.4004 42.0996l10.7002 32\\nc4.40039 13.1006 16.6006 21.9004 30.4004 21.9004h362.5c13.7998 0 26 -8.7998 30.3994 -21.9004z\\\" />\\n    <glyph glyph-name=\\\"cloud-moon\\\" unicode=\\\"&#xf6c3;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M342.8 95.2998c40.9004 -3.5 73.2002 -37.3994 73.2002 -79.2998c0 -44.2002 -35.7998 -80 -80 -80h-240c-53 0 -96 43 -96 96c0 41.9004 27.0996 77.2002 64.5996 90.2998c-0.0996094 1.90039 -0.599609 3.7002 -0.599609 5.7002c0 53 43 96 96 96\\nc36.2002 0 67.4004 -20.2998 83.7002 -49.9004c11.5 11 27.0996 17.9004 44.2998 17.9004c35.2998 0 64 -28.7002 64 -64c0 -12 -3.5 -23.0996 -9.2002 -32.7002zM565.3 149.6c8.2002 1.60059 14 -8 8.7002 -14.5c-33.4004 -41.0996 -82.7002 -67 -137.1 -70.3994\\nc-11.1006 23.0996 -29.9004 41.7998 -53.5 52.5996c0.399414 3.5 0.599609 7.10059 0.599609 10.7002c0 52.9004 -43.0996 96 -96 96c-12.7002 0 -25 -2.5 -36.4004 -7.2002c-5.09961 5.2998 -10.7998 9.90039 -16.6992 14.2002c-1.10059 8.2002 -1.80078 16.5 -1.80078 25\\nc0 106.1 86 192 191.9 192c11.7002 0 23.4004 -1.09961 35.0996 -3.2002c8.2002 -1.59961 10.1006 -12.5996 2.80078 -16.7002c-47.1006 -26.7998 -76.1006 -76.5996 -76.1006 -130.8c0 -94 85.4004 -165.399 178.5 -147.7z\\\" />\\n    <glyph glyph-name=\\\"cloud-sun\\\" unicode=\\\"&#xf6c4;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M575.2 122.3c37.5996 -13 64.7998 -48.2998 64.7998 -90.3994c0 -53 -43 -96 -96 -96h-272c-53 0 -96 43 -96 96c0 50.5996 39.2998 91.5996 88.9004 95.2998c-0.200195 2.89941 -0.900391 5.7002 -0.900391 8.7002c0 61.8994 50.2002 112 112 112\\nc45.4004 0 84.2998 -27.2002 101.9 -66c9.89941 6.19922 21.5 10 34.0996 10c35.2998 0 64 -28.7002 64 -64c0 -1.90039 -0.599609 -3.7002 -0.799805 -5.60059zM144.8 144.9c10.6006 -10.6006 22.9004 -18.6006 36 -24c-9.59961 -9.80078 -17.5 -21.1006 -23.5996 -33.5\\nl-76.1006 -25.3008c-11.8994 -3.89941 -23.1992 7.30078 -19.1992 19.2002l29.2998 87.7998l-82.7998 41.4004c-11.2002 5.59961 -11.2002 21.5 0 27.0996l82.7998 41.5l-29.2998 87.8008c-3.90039 11.7998 7.39941 23.0996 19.1992 19.1992l87.9004 -29.2998\\nl41.4004 82.7998c5.59961 11.2002 21.5996 11.2002 27.0996 0l41.5 -82.7998l87.7998 29.2998c11.9004 3.90039 23.2002 -7.2998 19.2002 -19.1992l-29.7998 -88.9004c-10.6006 -1.5 -20.9004 -3.7998 -30.7002 -7.5c-5.40039 11.7998 -12.5996 23 -22.2998 32.7002\\nc-43.7002 43.7002 -114.7 43.7002 -158.4 0c-43.7002 -43.6006 -43.7002 -114.601 0 -158.3zM140 224.1c0 46.3008 37.7002 83.9004 84 83.9004c34 0 63.2998 -20.4004 76.5 -49.5c-36.4004 -22.5 -62 -60.7002 -67.4004 -105\\nc-8.89941 -2.90039 -17.1992 -7 -25.1992 -11.7002c-38.6006 7.5 -67.9004 41.5 -67.9004 82.2998z\\\" />\\n    <glyph glyph-name=\\\"dice-d20\\\" unicode=\\\"&#xf6cf;\\\" horiz-adv-x=\\\"480\\\" \\nd=\\\"M106.75 232.94l108.64 -190.101l-208.26 22.0703c-5.83008 0.639648 -9.00977 7.13965 -5.92969 12.1396zM7.41016 132.57c-2.12012 -3.44043 -7.41016 -1.94043 -7.41016 2.08984v162.81c0 3.11035 3.38965 5.03027 6.05957 3.43066l76.6406 -45.9805zM18.25 24.4004\\nc-4.03027 1.97949 -2.25 8.06934 2.2002 7.56934l203.55 -22.2998v-65.6699c0 -5.83008 -6.0498 -9.70996 -11.3496 -7.25977zM99.4697 282.18l-81.5293 48.6904c-2.52051 1.51953 -2.60059 5.16016 -0.130859 6.78027l150.811 98.6094\\nc7.18945 4.11035 15.1201 -4.08008 10.7803 -11.1396zM240 272h-109.21l95.5801 168.38c3.12988 5.08008 8.37988 7.62012 13.6299 7.62012s10.5 -2.54004 13.6299 -7.62012l95.5801 -168.38h-109.21zM473.94 300.9c2.66992 1.59961 6.05957 -0.320312 6.05957 -3.43066\\nv-162.81c0 -4.04004 -5.2998 -5.54004 -7.41016 -2.10059l-75.29 122.351zM380.53 282.18l-79.9307 142.94c-4.33984 7.05957 3.59082 15.25 10.7803 11.1396l150.811 -98.5996c2.46973 -1.62012 2.39941 -5.25977 -0.130859 -6.78027zM459.55 31.9697\\nc4.4502 0.5 6.23047 -5.58984 2.2002 -7.55957l-194.4 -87.6602c-5.2998 -2.4502 -11.3496 1.41992 -11.3496 7.25977v65.6699zM373.25 232.94l105.56 -155.891c3.08008 -5 -0.0996094 -11.4902 -5.92969 -12.1396l-208.26 -22.0703zM240 240h100.43l-100.43 -175.75\\nl-100.43 175.75h100.43z\\\" />\\n    <glyph glyph-name=\\\"dice-d6\\\" unicode=\\\"&#xf6d1;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M422.19 338.05c5.3291 -3.24023 5.2998 -11.2695 -0.0507812 -14.46l-198.14 -118.14l-198.13 118.14c-5.35059 3.19043 -5.37988 11.2305 -0.0605469 14.46l165.971 100.88c19.9102 12.1006 44.5195 12.1006 64.4297 0zM436.03 293.42\\nc5.33008 3.17969 11.9697 -0.839844 11.9697 -7.25v-197.7c0 -23.7598 -12.1104 -45.7393 -31.79 -57.7002l-152.16 -92.4795c-10.6602 -6.48047 -24.0498 1.5498 -24.0498 14.4297v223.82zM0 286.17c0 6.41016 6.63965 10.4297 11.9697 7.25l196.03 -116.88v-223.81\\nc0 -12.8906 -13.3799 -20.9102 -24.0498 -14.4307l-152.16 92.4697c-19.6797 11.9609 -31.79 33.9307 -31.79 57.7002v197.7z\\\" />\\n    <glyph glyph-name=\\\"dog\\\" unicode=\\\"&#xf6d3;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M298.06 224l149.94 -53.5498v-218.45c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v112h-160v-112c0 -8.83203 -7.16797 -16 -16 -16h-64c-8.83203 0 -16 7.16797 -16 16v213.91c-37.1602 13.25 -64 48.4297 -64 90.0898\\nc0 17.6641 14.3359 32 32 32s32 -14.3359 32 -32c0.0332031 -17.6309 14.3691 -31.9668 32 -32h170.06zM544 336v-32c0 -35.3281 -28.6719 -64 -64 -64h-32v-35.5801l-128 45.71v149.87c0 14.25 17.2197 21.3896 27.3096 11.3096l27.2803 -27.3096h53.6299\\nc10.9102 0 23.75 -7.91992 28.6201 -17.6904l7.16016 -14.3096h64c8.83203 0 16 -7.16797 16 -16zM432 336c0 8.83203 -7.16797 16 -16 16s-16 -7.16797 -16 -16s7.16797 -16 16 -16s16 7.16797 16 16z\\\" />\\n    <glyph glyph-name=\\\"dragon\\\" unicode=\\\"&#xf6d5;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M18.3203 192.22c-15.96 -2.2793 -24.8906 17.8105 -12.5107 28.1406l117.4 116.34c21.7705 18.5996 53.2402 20.4697 77.0596 4.58984l119.73 -87.5996v-42.2705c0 -28.9102 5.29004 -56.9795 14.7305 -83.3799h-222.7c-14.25 0 -21.3906 17.2295 -11.3105 27.3096\\nl91.2803 68.6904zM575.19 158.12c41.9092 -20.96 67.1592 -64.0801 64.6396 -111.36c-3.37988 -63.2002 -59.7002 -110.77 -122.99 -110.76h-499.08c-9.80957 0 -17.7598 8 -17.7598 17.7998c0 8.32031 5.78027 15.5303 13.9004 17.3301\\nc89.54 19.9004 238.51 54.1006 434.1 60.9102c-59.9697 39.9902 -96 107.3 -96 179.38v108.62l-59.5801 24.8496c-5.90039 2.9502 -5.90039 11.3604 0 14.3105l59.5801 24.8398l-61.6396 50.3496c-5.04004 5.04004 -1.4707 13.6104 5.65918 13.6104h237.45\\nc10.0703 0 19.5498 -4.7002 25.6006 -12.7598l74.5293 -99.3799c3.53223 -4.71094 6.39844 -13.3115 6.39844 -19.1992c0 -4.16992 -1.51367 -10.5811 -3.37793 -14.3115l-14.3105 -28.6191c-4.88086 -9.76465 -17.7031 -17.6895 -28.6191 -17.6904h-30.9707\\nc-8.48926 0 -16.6299 3.37012 -22.6299 9.37012l-28.0898 22.6299h-64v-36.6904c0.00195312 -16.3701 11.8877 -35.5986 26.5303 -42.9199zM489.18 381.75c-4.33008 -17.1396 8.56055 -28.96 21.5205 -29.6699c11.6602 -0.629883 21.3799 7.34961 24.1299 18.2598z\\\" />\\n    <glyph glyph-name=\\\"drumstick-bite\\\" unicode=\\\"&#xf6d7;\\\" \\nd=\\\"M462.8 398.43c34.3203 -34.2793 50.4307 -79.5996 49.1299 -124.56c-41.9795 22.6602 -94.3594 17.5596 -128.739 -16.7998c-40.8809 -40.8398 -40.6904 -107.181 -1.05078 -151.07c-16.2383 -5.52246 -43.3389 -10.0049 -60.4912 -10.0049\\nc-0.385742 0 -1.0127 0.00195312 -1.39844 0.00488281h-85.8896l-40.6104 -40.5596c-9.71973 -9.75 -11.0898 -24.0205 -6 -36.75c2.38477 -5.95898 4.32031 -16.0049 4.32031 -22.4229c0 -33.3135 -27.0371 -60.3496 -60.3506 -60.3496\\nc-13.8428 0 -33.0039 7.96191 -42.7695 17.7725c-15.2803 15.2695 -19.6006 36.5 -15.1006 56.0996c-19.6094 -4.49023 -40.8496 -0.179688 -56.1191 15.0703c-9.77148 9.75684 -17.7021 28.8828 -17.7021 42.6914c0 33.3018 27.0273 60.3301 60.3301 60.3301\\nc6.40234 0 16.4248 -1.92773 22.3721 -4.30176c12.7793 -5.07031 27.0791 -3.69043 36.7793 6l40.6201 40.5898v85.8301c0 64 27.6904 107 63.1699 142.43c27.3887 27.3604 81.0371 49.5664 119.75 49.5664c38.7139 0 92.3613 -22.2061 119.75 -49.5664z\\\" />\\n    <glyph glyph-name=\\\"dungeon\\\" unicode=\\\"&#xf6d9;\\\" \\nd=\\\"M128.73 252.68c6.58984 -4.12012 8.89941 -12.2393 6.33984 -19.5801c-3 -8.60938 -5.15039 -17.6094 -6.24023 -26.9395c-0.929688 -7.91016 -7.0498 -14.1602 -15.0098 -14.1602h-97.1299c-9.10059 0 -16.7402 7.62988 -16.1504 16.7197\\nc1.66016 25.7793 11.7178 65.7725 22.4502 89.2705c3.93945 8.62012 14.8896 11.4697 22.9297 6.4502zM319.03 440c9.16992 -2.36035 13.9102 -12.5996 10.3896 -21.3896l-37.4697 -104.03c-2.28027 -6.34961 -8.2998 -10.5801 -15.0498 -10.5801h-41.8008\\nc-6.2041 0.00195312 -12.9473 4.74219 -15.0498 10.5801l-37.4697 104.03c-3.52051 8.79004 1.21973 19.04 10.3896 21.3896c20.1699 5.17969 41.2607 8 63.0303 8s42.8604 -2.82031 63.0303 -8zM112 160c8.83984 0 16 -7.16016 16 -16v-64c0 -8.83984 -7.16016 -16 -16 -16\\nh-96c-8.83984 0 -16 7.16016 -16 16v64c0 8.83984 7.16016 16 16 16h96zM112 32c8.83984 0 16 -7.16016 16 -16v-64c0 -8.83984 -7.16016 -16 -16 -16h-96c-8.83984 0 -16 7.16016 -16 16v64c0 8.83984 7.16016 16 16 16h96zM189.31 315.67\\nc2.85059 -7.12012 -0.0195312 -14.8799 -6.2998 -19.29c-6 -4.2002 -11.6094 -8.89941 -16.79 -14.0498c-5.4502 -5.41016 -13.5996 -6.86035 -20.1094 -2.79004l-82.9307 51.8301c-8.06934 5.04004 -10.2793 16.2002 -4.21973 23.5195\\nc16.7148 20.1758 48.7969 47.0068 71.6104 59.8906c8.29004 4.67969 18.8896 0.519531 22.4199 -8.31055zM398.18 192c-7.95996 0 -14.0801 6.25 -15.0098 14.1602c-1.08984 9.32031 -3.22949 18.3301 -6.24023 26.9395c-2.55957 7.34082 -0.25 15.46 6.33984 19.5801\\nl82.8105 51.7607c8.04004 5.01953 18.9902 2.16992 22.9297 -6.4502c10.7334 -23.498 20.791 -63.4902 22.4502 -89.2705c0.589844 -9.08984 -7.0498 -16.7197 -16.1504 -16.7197h-97.1299zM453.03 354.89c6.06934 -7.31934 3.84961 -18.4795 -4.2207 -23.5098\\nl-82.9297 -51.8301c-6.50977 -4.06934 -14.6699 -2.62012 -20.1104 2.79004c-5.17969 5.15039 -10.7891 9.85059 -16.7891 14.0498c-6.28027 4.40039 -9.15039 12.1602 -6.30078 19.2803l36.3203 90.7998c3.54004 8.83008 14.1396 12.9902 22.4199 8.31055\\nc22.8135 -12.8838 54.8945 -39.7148 71.6104 -59.8906zM496 160c8.83984 0 16 -7.16016 16 -16v-64c0 -8.83984 -7.16016 -16 -16 -16h-96c-8.83984 0 -16 7.16016 -16 16v64c0 8.83984 7.16016 16 16 16h96zM496 32c8.83984 0 16 -7.16016 16 -16v-64\\nc0 -8.83984 -7.16016 -16 -16 -16h-96c-8.83984 0 -16 7.16016 -16 16v64c0 8.83984 7.16016 16 16 16h96zM240 270.38c5.23047 0.889648 10.5195 1.62012 16 1.62012s10.7695 -0.730469 16 -1.62012v-294.38c0 -4.41992 -3.58008 -8 -8 -8h-16c-4.41992 0 -8 3.58008 -8 8\\nv294.38zM176 228.87c8.16016 12.2998 19.2197 22.3203 32 29.7695v-282.64c0 -4.41992 -3.58008 -8 -8 -8h-16c-4.41992 0 -8 3.58008 -8 8v252.87zM304 258.64c12.7803 -7.44922 23.8398 -17.4697 32 -29.7695v-252.87c0 -4.41992 -3.58008 -8 -8 -8h-16\\nc-4.41992 0 -8 3.58008 -8 8v282.64z\\\" />\\n    <glyph glyph-name=\\\"file-csv\\\" unicode=\\\"&#xf6dd;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M224 312c0 -13.2002 10.7998 -24 24 -24h136v-328c0 -13.2998 -10.7002 -24 -24 -24h-336c-13.2998 0 -24 10.7002 -24 24v464c0 13.2998 10.7002 24 24 24h200v-136zM128 168v16c0 4.41992 -3.58008 8 -8 8h-8c-26.5098 0 -48 -21.4902 -48 -48v-32\\nc0 -26.5098 21.4902 -48 48 -48h8c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-8c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h8c4.41992 0 8 3.58008 8 8zM172.27 64c23.3906 0 42.4004 17.3301 42.3906 38.6201\\nc0 10.6602 -4.86035 20.9199 -13.3301 28.1396l-21.8896 18.7705c-1.37012 1.17969 -2.12012 2.54004 -2.12012 3.83984c0 3.12012 4.45996 6.62012 10.4102 6.62012h12.2695c4.41992 0 8 3.58008 8 8v16c0 4.41992 -3.58008 8 -8 8h-12.25\\nc-23.3896 0 -42.4102 -17.3203 -42.4102 -38.6201c0 -10.6602 4.86035 -20.9199 13.3301 -28.1396l21.8896 -18.7705c1.37012 -1.17969 2.12012 -2.54004 2.12012 -3.83984c0 -3.12012 -4.45996 -6.62012 -10.4102 -6.62012h-12.2695c-4.41992 0 -8 -3.58008 -8 -8v-16\\nc0 -4.41992 3.58008 -8 8 -8h12.2695zM256 184c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-20.7998c0 -35.4805 12.8799 -68.8906 36.2803 -94.0898c3.01953 -3.25 7.26953 -5.11035 11.7197 -5.11035s8.7002 1.86035 11.7197 5.11035\\nc23.4004 25.1992 36.2803 58.6094 36.2803 94.0898v20.7998c0 4.41992 -3.58008 8 -8 8h-16c-4.41992 0 -8 -3.58008 -8 -8v-20.7998c0 -20.2705 -5.7002 -40.1807 -16 -56.8799c-10.2998 16.71 -16 36.6094 -16 56.8799v20.7998zM377 343c4.5 -4.5 7 -10.5996 7 -16.9004\\nv-6.09961h-128v128h6.09961c6.40039 0 12.5 -2.5 17 -7z\\\" />\\n    <glyph glyph-name=\\\"fist-raised\\\" unicode=\\\"&#xf6de;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M255.98 288h-48.0303c-5.62988 0 -10.9502 -1.15039 -15.9697 -2.92969v146.93c0 8.83984 7.15918 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-144zM383.98 192.01l0.0195312 -88.2197v-0.0107422c0 -21.9551 -12.5977 -52.373 -28.1201 -67.8994l-35.9102 -35.9199\\nv-63.96h-255.979v64l-26.5 26.5098c-24.0098 24.0098 -37.4902 56.5605 -37.4902 90.5098v77.9307c5.03027 -1.7998 10.3604 -2.9502 16 -2.9502h32c12.3301 0 23.4805 4.80957 32 12.4902c8.50977 -7.66992 19.6602 -12.4805 32 -12.4805h32\\nc7.91016 0 15.2803 2.11035 21.8701 5.52051c7.46973 -16.3301 21.5996 -28.9404 38.8701 -34.4502c-17.1104 -14.8203 -31.5801 -34.4805 -47.3105 -58.0801l-6.30957 -9.46973c-0.742188 -1.1123 -1.34375 -3.09961 -1.34375 -4.43652\\nc0 -2.36328 1.59668 -5.34375 3.56348 -6.65332l13.3105 -8.88086c1.11133 -0.741211 3.09863 -1.34375 4.43555 -1.34375c2.36328 0 5.34473 1.59668 6.6543 3.56445l6.30957 9.46973c31.8906 47.8398 51.5303 70.2695 96.0498 72.5498\\nc4.29004 0.219727 7.88086 3.70996 7.88086 8v16.2002c0 4.41992 -3.52051 8 -13.2002 8h-35.2607c-26.2695 0 -47.5693 21.3203 -47.5693 47.5898v0.560547c0 8.7793 7.12012 15.8496 15.8994 15.8496h112.141c35.3301 0 63.9795 -28.6504 63.9902 -63.9902zM351.97 282.1\\nc-10.0596 3.59082 -20.7197 5.90039 -32 5.90039h-32v112c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-117.9zM16 224c-8.83984 0 -16 7.16016 -16 16v128c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-128\\nc0 -8.83984 -7.16016 -16 -16 -16h-32zM111.99 224c-8.83984 0 -16 7.16016 -16 16v160c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-160c0 -8.83984 -7.16016 -16 -16 -16h-32z\\\" />\\n    <glyph glyph-name=\\\"ghost\\\" unicode=\\\"&#xf6e2;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M186.1 447.91c108.73 3.25977 197.9 -83.9102 197.9 -191.91v-271.97c0 -14.25 -17.2305 -21.3906 -27.3096 -11.3105l-24.9209 18.5303c-6.65918 4.95996 -16 3.99023 -21.5098 -2.20996l-42.9502 -48.3496c-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-40.7197 45.8496\\nc-6.36035 7.16992 -17.5498 7.16992 -23.9199 0l-40.7197 -45.8496c-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-42.9502 48.3496c-5.50977 6.2002 -14.8506 7.16016 -21.5098 2.20996l-24.9209 -18.5303c-10.0791 -10.0801 -27.3096 -2.9502 -27.3096 11.3105v263.92\\nc0 105.13 81.0098 196.81 186.1 199.96zM128 224c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32zM256 224c17.6699 0 32 14.3301 32 32s-14.3301 32 -32 32s-32 -14.3301 -32 -32s14.3301 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"hammer\\\" unicode=\\\"&#xf6e3;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M571.31 254.06c6.25 -6.25 6.25 -16.3799 0.0205078 -22.6191l-90.5098 -90.5107c-6.25 -6.25 -16.3799 -6.25 -22.6299 0l-22.6309 22.6299c-6.25 6.25 -6.25 16.3809 0 22.6309l11.3105 11.3096l-28.9004 28.9004\\nc-21.3096 -5.63086 -44.8994 -0.360352 -61.6094 16.3496l-49.1406 49.1396c-12.0098 12 -18.75 28.2803 -18.75 45.25v18.75l-90.5098 45.25c62.4902 62.4805 163.8 62.4805 226.28 0l45.25 -45.25c16.71 -16.71 21.9795 -40.2998 16.3496 -61.6094l28.9004 -28.9004\\nl11.3096 11.3105c6.25 6.25 16.3799 6.25 22.6299 0zM284.59 269.26l49.1406 -49.1396c3.53906 -3.54004 7.47949 -6.5 11.4395 -9.41016l-238.13 -255.07c-23.8799 -25.5801 -64.2002 -26.2695 -88.9297 -1.5293c-24.7305 24.7393 -24.04 65.0498 1.5293 88.9297\\nl255.101 238.17c3.00977 -4.16016 6.14941 -8.25 9.84961 -11.9502z\\\" />\\n    <glyph glyph-name=\\\"hanukiah\\\" unicode=\\\"&#xf6e6;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M232 288h16c4.41992 0 8 -3.58008 8 -8v-120h-32v120c0 4.41992 3.58008 8 8 8zM168 288h16c4.41992 0 8 -3.58008 8 -8v-120h-32v120c0 4.41992 3.58008 8 8 8zM392 288h16c4.41992 0 8 -3.58008 8 -8v-120h-32v120c0 4.41992 3.58008 8 8 8zM456 288h16\\nc4.41992 0 8 -3.58008 8 -8v-120h-32v120c0 4.41992 3.58008 8 8 8zM544 280v-120h-32v120c0 4.41992 3.58008 8 8 8h16c4.41992 0 8 -3.58008 8 -8zM104 288h16c4.41992 0 8 -3.58008 8 -8v-120h-32v120c0 4.41992 3.58008 8 8 8zM624 288c8.83984 0 16 -7.16016 16 -16\\nv-112c0 -53.0195 -42.9805 -96 -96 -96h-192v-64h176c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-416c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h176v64h-192c-53.0195 0 -96 42.9805 -96 96v112c0 8.83984 7.16016 16 16 16\\nh32c8.83984 0 16 -7.16016 16 -16v-112c0 -17.6699 14.3301 -32 32 -32h192v192c0 8.83984 7.16016 16 16 16h32c8.83984 0 16 -7.16016 16 -16v-192h192c17.6699 0 32 14.3301 32 32v112c0 8.83984 7.16016 16 16 16h32zM608 320c-13.25 0 -24 11.9502 -24 26.6699\\ns24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699zM32 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699zM320 368\\nc-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699zM112 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699z\\nM176 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699zM240 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301\\nc0 -14.7295 -10.75 -26.6699 -24 -26.6699zM400 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699zM464 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301\\ns24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699zM528 320c-13.25 0 -24 11.9502 -24 26.6699s24 53.3301 24 53.3301s24 -38.5996 24 -53.3301c0 -14.7295 -10.75 -26.6699 -24 -26.6699z\\\" />\\n    <glyph glyph-name=\\\"hat-wizard\\\" unicode=\\\"&#xf6e8;\\\" \\nd=\\\"M496 0c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-480c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h480zM192 64l16 -32h-144l110.96 249.66c9.4043 21.1611 33.3545 47.6611 53.46 59.1494l187.58 107.19l-56.2998 -168.92\\nc-1.81543 -5.43945 -3.28809 -14.5078 -3.28809 -20.2412c0 -7.25098 2.31934 -18.5449 5.17773 -25.209l86.4102 -201.63h-208l16 32l64 32l-64 32l-32 64l-32 -64l-64 -32zM256 288l-32 -16l32 -16l16 -32l16 32l32 16l-32 16l-16 32z\\\" />\\n    <glyph glyph-name=\\\"hiking\\\" unicode=\\\"&#xf6ec;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M80.9502 -24.2305l34.5596 138.221l52.7803 -52.7803l-25.2402 -100.97c-3.64941 -14.5303 -16.6895 -24.2305 -31.0195 -24.2305c-2.58008 0 -5.19043 0.290039 -7.7998 0.950195c-17.1406 4.28027 -27.5605 21.6504 -23.2803 38.8096zM95.8398 171.89\\nc-2.18945 -8.41992 -11.0801 -13.54 -19.8701 -11.4395l-63.5596 15.25c-8.78027 2.10938 -14.1104 10.6396 -11.9199 19.0596l25.2695 98.1299c10.9707 42.1006 55.4404 67.6904 99.3203 57.1699c8.78027 -2.10938 14.1104 -10.6396 11.9199 -19.0596zM368 288\\nc8.83984 0 16 -7.16016 15.9902 -16v-320.01c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v240h-48c-8.48047 0 -16.6201 3.37988 -22.6201 9.37988l-22.4297 22.4297l-19.8906 -79.5693\\nc-0.129883 -0.520508 -0.469727 -0.910156 -0.620117 -1.41016l46.8203 -46.8203c12.0898 -12.0898 18.75 -28.1602 18.75 -45.25v-82.75c0 -17.6699 -14.3301 -32 -32 -32s-32 14.3301 -32 32v82.75l-86.6201 86.6201c-5.17383 5.1748 -9.37402 15.3154 -9.37402 22.6338\\nc0 2.17285 0.427734 5.64746 0.954102 7.75586l26.9199 107.721c6.56055 26.2197 30.0098 44.5195 57.0303 44.5195c15.7002 0 30.4697 -6.11035 41.5596 -17.2197l46.7803 -46.7803h34.75v16c0 8.83984 7.16016 16 16 16h16zM240 352c-26.5098 0 -48 21.4902 -48 48\\ns21.4902 48 48 48s48 -21.4902 48 -48s-21.4902 -48 -48 -48z\\\" />\\n    <glyph glyph-name=\\\"hippo\\\" unicode=\\\"&#xf6ed;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M581.12 351.8c34.0898 -0.189453 58.8799 -33.6895 58.8799 -67.7803v-92.0195c0 -17.6699 -14.3301 -32 -32 -32v-32c0 -8.83984 -7.16016 -16 -16 -16h-32c-8.83984 0 -16 7.16016 -16 16v32h-128v-176c0 -8.83984 -7.16016 -16 -16 -16h-64\\nc-8.83984 0 -16 7.16016 -16 16v70.79c-32.3496 -14.3604 -70.7197 -22.79 -112 -22.79s-79.6504 8.42969 -112 22.79v-70.79c0 -8.83984 -7.16016 -16 -16 -16h-64c-8.83984 0 -16 7.16016 -16 16v240c0 88.3604 85.96 160 192 160\\nc49.2402 0 94.0098 -15.5801 128 -40.9805v48.9805c0 13.2598 10.75 24 24 24h16c13.25 0 24 -10.7402 24 -24v-13.8799c10.0498 3.58008 20.7197 5.87988 32 5.87988c39.8301 0 73.9805 -24.2695 88.5195 -58.8203c24.1006 9.04004 48.9307 26.7705 76.6006 26.6201z\\nM448 272c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"horse\\\" unicode=\\\"&#xf6f0;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M575.92 371.4l0.0605469 -77.71v-0.0292969c0 -11.9609 -9.01465 -25.2715 -20.1201 -29.7109l-32.5508 -13.0205c-15.4395 -6.17969 -33.04 0.5 -40.4893 15.3701l-18.9004 37.7002l-16 7.11035v-102.471c0.00976562 -0.219727 0.0800781 -0.419922 0.0800781 -0.639648\\nc0 -30.4697 -12.2598 -58.0303 -32 -78.2197v-177.78c0 -8.83984 -7.16016 -16 -16 -16h-64c-8.83984 0 -16 7.16016 -16 16v150.4l-133.97 22.3301l-23.8398 -63.5908l26.3096 -105.26c2.53027 -10.0996 -5.11035 -19.8799 -15.5195 -19.8799h-65.9609h-0.000976562\\nc-6.89453 0 -13.8428 5.42969 -15.5088 12.1201l-24.8496 99.4102c-1.05664 4.2207 -1.91406 11.1777 -1.91406 15.5293c0 6.40332 1.8252 16.4648 4.07422 22.46l25.7197 68.6006c-18.7002 17.5195 -30.54 42.2402 -30.54 69.8799\\nc0 2.62988 0.570312 5.09961 0.780273 7.67969c-9.91016 -7.29004 -16.7803 -18.46 -16.7803 -31.6797v-56c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v56c0 48.5303 39.4697 88 88 88v-1.11035c17.5996 20.1299 43.1602 33.1104 72 33.1104\\nh159.92c0 70.6904 57.3105 128 128 128h119.98c5.05957 0 8.94922 -4.67969 7.92969 -9.63965c-2.67969 -13.1699 -11.1201 -23.8203 -22.1797 -30.6602c5.10938 -5.37988 9.90918 -10.4697 13.6895 -14.5c5.56055 -5.93066 8.57031 -13.6699 8.58008 -21.7998zM511.92 352\\nc8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"house-damage\\\" unicode=\\\"&#xf6f1;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 333.04l218.74 -192.94c1.54004 -1.37988 3.55957 -2.04004 5.25977 -3.19922v-184.9c0 -8.83984 -7.16016 -16 -16 -16h-176.19l-39.9199 55.25l104.11 64l-148.05 136.78l60.1602 -119.221l-104.11 -64l37.2305 -72.8096h-149.23c-8.83984 0 -16 7.16016 -16 16\\nv184.94c1.78027 1.20996 3.84961 1.88965 5.46973 3.34961zM570.69 211.72c6.5791 -5.89941 7.11914 -16.0195 1.21973 -22.5898l-21.4004 -23.8203c-5.91016 -6.56934 -16.0293 -7.10938 -22.5996 -1.20996l-229.32 202.271c-6.0498 5.33008 -15.1201 5.33008 -21.1699 0\\nl-229.32 -202.28c-6.58008 -5.91016 -16.6992 -5.35938 -22.5996 1.20996l-21.4004 23.8203c-5.90918 6.58008 -5.35938 16.6895 1.20996 22.5996l255.99 226.011c7.60059 6.85938 17.1406 10.2793 26.7002 10.2695s19.1201 -3.4502 26.75 -10.3096l101.25 -89.3809v51.6904\\nc0 8.83984 7.16016 16 16 16h64c8.83984 0 16 -7.16016 16 -16v-136.45z\\\" />\\n    <glyph glyph-name=\\\"hryvnia\\\" unicode=\\\"&#xf6f2;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M368 208h-99.7002l-34.6699 -32h134.37c8.83984 0 16 -7.16016 16 -16v-32c0 -8.83984 -7.16016 -16 -16 -16h-203.7l-29.4902 -27.2197c-4.3291 -4 -6.80957 -9.66992 -6.80957 -15.5801c0 -11.6807 9.50977 -21.2002 21.2002 -21.2002h83.6299h0.00195312\\nc4.79395 0 11.6748 2.49121 15.3584 5.55957l11.75 9.80078c10.1895 8.48926 25.3193 7.12012 33.8096 -3.07031l20.4902 -24.5898c8.49023 -10.1807 7.10938 -25.3105 -3.07031 -33.7998l-11.7695 -9.81055c-18.6807 -15.5596 -42.2207 -24.0898 -66.54 -24.0898h-78.8203\\nc-37.1396 0 -73.3799 17.8496 -92.0498 49.9502c-17.8701 30.7197 -17.54 65.4199 -4.12988 94.0498h-41.8604c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16h99.7002l34.6699 32h-134.37c-8.83984 0 -16 7.16016 -16 16v32c0 8.83984 7.16016 16 16 16\\nh203.7l29.4902 27.21c4.3291 4 6.80957 9.66992 6.80957 15.5801c0 11.6797 -9.50977 21.2002 -21.2002 21.2002h-83.6201c-5.62012 0 -11.0693 -1.9707 -15.3896 -5.57031l-11.7305 -9.78027c-10.1895 -8.48926 -25.3193 -7.12012 -33.8096 3.07031l-20.4902 24.5898\\nc-8.49023 10.1807 -7.10938 25.3105 3.07031 33.7998l11.7695 9.81055c18.6807 15.5596 42.2207 24.0898 66.54 24.0898h78.8203c37.1396 0 73.3799 -17.8398 92.0498 -49.9502c17.8701 -30.7197 17.54 -65.4199 4.12988 -94.0498h41.8604c8.83984 0 16 -7.16016 16 -16v-32\\nc0 -8.83984 -7.16016 -16 -16 -16z\\\" />\\n    <glyph glyph-name=\\\"mask\\\" unicode=\\\"&#xf6fa;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M320.67 384c449.09 0 348.32 -384 158.46 -384c-39.8994 0 -77.4697 20.6904 -101.41 55.8604l-25.7295 37.79c-15.6602 22.9893 -46.9707 22.9893 -62.6299 0l-25.7305 -37.79c-23.9502 -35.1699 -61.5195 -55.8604 -101.42 -55.8604c-199.11 0 -284.14 384 158.46 384z\\nM184 139.64c41.0596 0 67.7598 25.6504 80.0801 41.0508c5.22949 6.54004 5.22949 16.0996 0 22.6299c-12.3203 15.3896 -39.0098 41.0498 -80.0801 41.0498s-67.7598 -25.6504 -80.0801 -41.0498c-5.22949 -6.54004 -5.22949 -16.1006 0 -22.6299\\nc12.3203 -15.3906 39.0205 -41.0508 80.0801 -41.0508zM456 139.64c41.0596 0 67.7598 25.6504 80.0801 41.0508c5.22949 6.54004 5.22949 16.0996 0 22.6299c-12.3203 15.3896 -39.0098 41.0498 -80.0801 41.0498s-67.7598 -25.6504 -80.0801 -41.0498\\nc-5.22949 -6.54004 -5.22949 -16.1006 0 -22.6299c12.3203 -15.3906 39.0205 -41.0508 80.0801 -41.0508z\\\" />\\n    <glyph glyph-name=\\\"mountain\\\" unicode=\\\"&#xf6fc;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M634.92 -14.7002c2.80566 -4.3623 5.08301 -12.1133 5.08301 -17.3008c0 -4.50586 -1.75293 -11.374 -3.91309 -15.3291c-5.60938 -10.2803 -16.3799 -16.6699 -28.0898 -16.6699h-576h-0.00390625c-10.4795 0 -23.0615 7.46387 -28.0859 16.6602\\nc-2.16016 3.95605 -3.91309 10.8262 -3.91309 15.334c0 5.18848 2.27734 12.9414 5.08301 17.3057l288 448c5.88965 9.16016 16.0303 14.7002 26.9199 14.7002s21.0303 -5.54004 26.9199 -14.7002zM320 356.82l-102.06 -158.761l38.0596 -38.0596l64 64h85.3896z\\\" />\\n    <glyph glyph-name=\\\"network-wired\\\" unicode=\\\"&#xf6ff;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M640 184c0 -8.83984 -7.16016 -16 -16 -16h-104v-40h56c17.6699 0 32 -14.3301 32 -32v-128c0 -17.6699 -14.3301 -32 -32 -32h-160c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32h56v40h-304v-40h56c17.6699 0 32 -14.3301 32 -32v-128\\nc0 -17.6699 -14.3301 -32 -32 -32h-160c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32h56v40h-104c-8.83984 0 -16 7.16016 -16 16v16c0 8.83984 7.16016 16 16 16h280v40h-72c-17.6699 0 -32 14.3301 -32 32v128c0 17.6699 14.3301 32 32 32h192\\nc17.6699 0 32 -14.3301 32 -32v-128c0 -17.6699 -14.3301 -32 -32 -32h-72v-40h280c8.83984 0 16 -7.16016 16 -16v-16zM256 320h128v64h-128v-64zM192 0v64h-96v-64h96zM544 0v64h-96v-64h96z\\\" />\\n    <glyph glyph-name=\\\"otter\\\" unicode=\\\"&#xf700;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 416c17.6699 0 32 -14.3301 32 -32v-32c0 -53.0195 -42.9805 -96 -96 -96h-22.8604l-92.4697 -49.79l55.1104 -110.21h28.2197c17.6699 0 32 -14.3301 32 -32v-16c0 -8.83984 -7.16016 -16 -16 -16h-80l-74.5098 144.5l-149.49 -80.5h64\\nc17.6699 0 32 -14.3301 32 -32v-16c0 -8.83984 -7.16016 -16 -16 -16h-224c-8.83008 0 -16 -7.16992 -16 -16s7.16992 -16 16 -16h112c17.6699 0 32 -14.3301 32 -32s-14.3301 -32 -32 -32h-108.47c-39.3799 0 -75.5205 26.9004 -82.2803 65.7002\\nc-4.91016 28.1201 5 54.2197 23.1904 71.7998c23.5596 22.75 39.5596 52.1396 39.5596 84.8896v1.61035c0 106.04 85.96 192 192 192h56l153.25 87.5703c9.66992 5.51953 20.6104 8.42969 31.75 8.42969h20.4902h0.0126953c14.6328 0 34.9033 -8.40039 45.2471 -18.75\\nl13.25 -13.25h32zM512 400c-8.83984 0 -16 -7.16016 -16 -16s7.16016 -16 16 -16s16 7.16016 16 16s-7.16016 16 -16 16zM544 304c20.8301 0 38.4297 13.4199 45.0498 32h-77.0498l-118.57 -59.29l13.7705 -27.5498l101.84 54.8398h34.96z\\\" />\\n    <glyph glyph-name=\\\"ring\\\" unicode=\\\"&#xf70b;\\\" \\nd=\\\"M256 384c145.94 0 256 -61.9102 256 -144v-98.1299c0 -78.3506 -114.62 -141.87 -256 -141.87s-256 63.5195 -256 141.87v98.1299c0 82.0898 110.06 144 256 144zM256 320c-106.04 0 -192 -35.8203 -192 -80c0 -9.25977 3.96973 -18.1201 10.9102 -26.3896\\nc44.9395 26.1797 108.859 42.3896 181.09 42.3896s136.15 -16.21 181.09 -42.3896c6.94043 8.26953 10.9102 17.1299 10.9102 26.3896c0 44.1797 -85.96 80 -192 80zM120.43 183.36c34.7305 -14.4307 82.6406 -23.3604 135.57 -23.3604s100.84 8.92969 135.57 23.3604\\nc-34.6104 14.71 -81.21 24.6396 -135.57 24.6396s-100.96 -9.92969 -135.57 -24.6396z\\\" />\\n    <glyph glyph-name=\\\"running\\\" unicode=\\\"&#xf70c;\\\" horiz-adv-x=\\\"416\\\" \\nd=\\\"M272 352c-26.5098 0 -48 21.4902 -48 48s21.4902 48 48 48s48 -21.4902 48 -48s-21.4902 -48 -48 -48zM113.69 130.53c7.92969 -17.2402 20.6699 -32.3799 37.9893 -42.6104l10.6699 -6.2998l-8.79004 -20.5205c-7.5293 -17.6494 -24.8594 -29.0898 -44.1094 -29.0898\\nh-77.4502c-17.6699 0 -32 14.3301 -32 32s14.3301 32 32 32h66.8896zM384 224.01c17.6699 0 32 -14.3193 32 -31.9902c0 -17.6699 -14.3301 -32 -32 -32h-53.9902c-18.1895 0 -35.1094 10.5508 -43.1094 26.8906l-20.2705 41.4297l-31.3096 -78.2803l61.2393 -36.1396\\nc18.75 -11.3096 27.5508 -33.6201 21.6406 -54.3896l-31.6406 -101.061c-4.29004 -13.6797 -16.9092 -22.4502 -30.5195 -22.4502c-3.16992 0 -6.38965 0.480469 -9.58008 1.48047c-16.8604 5.28027 -26.25 23.2305 -20.9697 40.0898l27.4697 87.7305l-84.9795 50.1699\\nc-27.6104 16.2998 -38.9209 50.8301 -26.3008 80.3096l37.46 87.3906l-14.6992 4.36914c-7.83008 1.86035 -17.6006 -0.25 -25.2705 -6.13965l-39.6895 -30.4102c-14.0205 -10.7402 -34.0908 -8.10938 -44.8604 5.91992c-10.7705 14.0303 -8.11035 34.1104 5.91992 44.8604\\nl39.6699 30.4102c23.0703 17.6895 52.54 23.9395 80.8398 17.1396l71.0801 -21.1396c26.3301 -6.70996 49.2803 -25.3906 61.7803 -50.9404l26.0596 -53.25h44.0303z\\\" />\\n    <glyph glyph-name=\\\"scroll\\\" unicode=\\\"&#xf70e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M48 448c26.4697 0 48 -21.5303 48 -48v-80h-80c-8.83984 0 -16 7.16016 -16 16v64c0 26.4697 21.5303 48 48 48zM256 35.4297c0 -31.8896 -21.7803 -61.4297 -53.25 -66.5498c-40.0996 -6.53027 -74.75 24.25 -74.75 63.1201v368c0 18.0801 -6.25977 34.5898 -16.4102 48\\nh336.41c52.9404 0 96 -43.0596 96 -96v-256h-288v-60.5703zM288 64h336c8.83984 0 16 -7.16016 16 -16c0 -61.8604 -50.1396 -112 -112 -112h-336c52.9404 0 96 43.0703 96 96v32z\\\" />\\n    <glyph glyph-name=\\\"skull-crossbones\\\" unicode=\\\"&#xf714;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M439.15 -5.05957c7.89941 -3.9502 11.1094 -13.5605 7.15918 -21.4707l-14.3096 -28.6299c-3.95996 -7.89941 -13.5703 -11.0996 -21.4697 -7.14941l-186.53 90.7197l-186.52 -90.7197c-7.91016 -3.95996 -17.5205 -0.75 -21.4707 7.14941l-14.3096 28.6299\\nc-3.95996 7.91016 -0.75 17.5205 7.14941 21.4707l141.98 69.0596l-141.99 69.0596c-7.89941 3.9502 -11.0996 13.5605 -7.14941 21.46l14.3096 28.6309c3.95996 7.90918 13.5703 11.1094 21.4697 7.15918l186.53 -90.7197l186.53 90.7197\\nc7.91016 3.9502 17.5195 0.740234 21.4697 -7.15918l14.3096 -28.6309c3.95996 -7.89941 0.75 -17.5098 -7.14941 -21.46l-141.99 -69.0596zM150 210.72c-41.7803 22.4102 -70 62.75 -70 109.28c0 70.6904 64.4697 128 144 128s144 -57.3096 144 -128\\nc0 -46.5303 -28.2197 -86.8701 -70 -109.28l5.5 -25.8701c2.66992 -12.6191 -5.41992 -24.8496 -16.4502 -24.8496h-126.08c-11.0293 0 -19.1201 12.2305 -16.4502 24.8496zM280 336c-17.6504 0 -32 -14.3496 -32 -32s14.3496 -32 32 -32s32 14.3496 32 32\\ns-14.3496 32 -32 32zM168 336c-17.6504 0 -32 -14.3496 -32 -32s14.3496 -32 32 -32s32 14.3496 32 32s-14.3496 32 -32 32z\\\" />\\n    <glyph glyph-name=\\\"slash\\\" unicode=\\\"&#xf715;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M594.53 -60.6299l-588.351 454.729c-6.96973 5.41992 -8.22949 15.4707 -2.80957 22.4502l19.6396 25.2705c5.41992 6.97949 15.4805 8.23926 22.46 2.80957l588.351 -454.729c6.96973 -5.41992 8.22949 -15.4707 2.80957 -22.4502l-19.6396 -25.2705\\nc-5.41992 -6.97949 -15.4805 -8.22949 -22.46 -2.80957z\\\" />\\n    <glyph glyph-name=\\\"spider\\\" unicode=\\\"&#xf717;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M151.17 280.65l-27.1504 54.2998c-1.86035 3.72949 -3.37109 10.1387 -3.37109 14.3066c0 2.86719 0.735352 7.40234 1.6416 10.123l25.8896 77.6797c2.79004 8.39062 11.8604 12.9209 20.2402 10.1201l15.1699 -5.05957\\nc8.39062 -2.7998 12.9102 -11.8604 10.1201 -20.2402l-23.7998 -71.3896l20.29 -40.5801c-1.41016 -4.20996 -2.49023 -8.20996 -3.20996 -11.79l-5.2207 -26.1201h-4.66992zM573.31 98.6201c4.90039 -7.35059 2.9209 -17.2803 -4.43945 -22.1797l-13.3105 -8.88086\\nc-7.34961 -4.89941 -17.29 -2.90918 -22.1895 4.44043l-48 72h-47.0605l60.8301 -97.3301c3.16992 -5.08008 4.86035 -10.96 4.86035 -16.96v-77.71c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v73.1104l-74.0801 118.529\\nc1 -14.0498 2.08008 -28.1094 2.08008 -42.21c0 -53.0693 -40.7598 -101.43 -96 -101.43s-96 48.3604 -96 101.43c0 14.1006 1.07031 28.1602 2.08008 42.21l-74.0801 -118.529v-73.1104c0 -8.83984 -7.16016 -16 -16 -16h-16c-8.83984 0 -16 7.16016 -16 16v77.7002\\nv0.00976562c0 5.0625 2.17773 12.6562 4.86035 16.9502l60.8301 97.3301h-47.0605l-48 -72c-4.89941 -7.35059 -14.8398 -9.33984 -22.1895 -4.44043l-13.3105 8.87988c-7.36035 4.90039 -9.33984 14.8398 -4.43945 22.1904l52.7393 79.1299\\nc5.24707 7.86426 17.1768 14.248 26.6299 14.25h77.9404l-68.9902 24.3496c-5.75 1.91895 -13.1465 7.56738 -16.5098 12.6104l-53.5996 80.4102c-4.90039 7.36035 -2.91016 17.29 4.43945 22.1895l13.3105 8.88086c7.35938 4.89941 17.29 2.90918 22.1895 -4.44043\\nl50.5703 -75.8301l60.4902 -20.1699h36.0996l10.3701 51.8496c2.18945 10.9707 17.3701 60.1504 69.6299 60.1504s67.4404 -49.1797 69.6299 -60.1504l10.3701 -51.8496h36.0996l60.5 20.1699l50.5605 75.8301c4.89941 7.34961 14.8398 9.33984 22.1895 4.44043\\nl13.3105 -8.88086c7.34961 -4.89941 9.33984 -14.8398 4.43945 -22.1895l-53.5996 -80.4102c-3.36328 -5.04297 -10.7598 -10.6914 -16.5098 -12.6104l-68.9902 -24.3594h77.9404c9.45117 -0.00195312 21.377 -6.38672 26.6191 -14.25zM406.09 350.49l-23.7998 71.3896\\nc-2.79004 8.37988 1.74023 17.4404 10.1201 20.2402l15.1699 5.05957c8.37988 2.80078 17.4502 -1.73926 20.2402 -10.1201l25.8896 -77.6797c0.908203 -2.72168 1.64551 -7.25781 1.64551 -10.127c0 -4.16699 -1.5127 -10.5752 -3.375 -14.3027l-27.1504 -54.2998\\nl-25.9297 -8.65039h-4.66992l-5.2207 26.1201c-0.719727 3.58008 -1.7998 7.58008 -3.20996 11.79z\\\" />\\n    <glyph glyph-name=\\\"toilet-paper\\\" unicode=\\\"&#xf71e;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M128 448h284.44c-36.7705 -38.4805 -60.4404 -108.4 -60.4404 -192v-172.07c0 -53.6494 -11.8799 -87.5693 -24.71 -126.05c-4.36035 -13.0703 -16.5898 -21.8799 -30.3604 -21.8799h-280.92c-10.9199 0 -18.6299 10.7002 -15.1797 21.0596\\nc21.3701 64.1006 31.1699 85.75 31.1699 126.87v172.07c0 106.04 42.9805 192 96 192zM96 224c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16zM160 224c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16\\ns7.16016 -16 16 -16zM224 224c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16zM288 224c8.83984 0 16 7.16016 16 16s-7.16016 16 -16 16s-16 -7.16016 -16 -16s7.16016 -16 16 -16zM480 448c53.0195 0 96 -85.96 96 -192\\ns-42.9805 -192 -96 -192s-96 85.96 -96 192s42.9805 192 96 192zM480 192c17.6699 0 32 28.6504 32 64s-14.3301 64 -32 64s-32 -28.6504 -32 -64s14.3301 -64 32 -64z\\\" />\\n    <glyph glyph-name=\\\"tractor\\\" unicode=\\\"&#xf722;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M528 112c48.5996 0 88 -39.4004 88 -88s-39.4004 -88 -88 -88s-88 39.4004 -88 88s39.4004 88 88 88zM528 0c13.2305 0 24 10.7695 24 24s-10.7695 24 -24 24s-24 -10.7695 -24 -24s10.7695 -24 24 -24zM608 288c17.6699 0 32 -14.3301 31.9902 -32v-50.7598\\nc0 -8.49023 -3.37012 -16.6299 -9.37012 -22.6299l-50.8203 -50.8203c-15.7295 7.58984 -33.1602 12.2002 -51.7998 12.2002c-39.1396 0 -73.5498 -19.0098 -95.46 -48h-80.54v-6c0 -12.1504 -9.84961 -22 -22 -22h-7.16016\\nc-2.9502 -9.90039 -6.91992 -19.46 -11.9102 -28.7207l5.06055 -5.05957c8.58984 -8.58984 8.58984 -22.5195 0 -31.1104l-31.1104 -31.1094c-8.58984 -8.58984 -22.5195 -8.58984 -31.1104 0l-5.05957 5.05957c-9.25977 -4.99023 -18.8203 -8.95996 -28.7197 -11.9102\\nv-7.13965c0 -12.1504 -9.85059 -22 -22 -22h-44c-12.1504 0 -22 9.84961 -22 22v7.15039c-9.90039 2.94922 -19.46 6.91992 -28.7207 11.9092l-5.05957 -5.05957c-8.58984 -8.58984 -22.5195 -8.58984 -31.1104 0l-31.1094 31.1104\\nc-8.58984 8.58984 -8.58984 22.5195 0 31.1094l5.05957 5.06055c-4.99023 9.26953 -8.9502 18.8193 -11.9102 28.7295h-7.13965c-12.1504 0 -22 9.85059 -22 22v44c0 12.1504 9.84961 22 22 22h7.15039c2.94922 9.90039 6.91992 19.46 11.9092 28.7207l-5.05957 5.05957\\nc-8.58984 8.58984 -8.58984 22.5195 0 31.1104l31.1104 31.1094c7.92969 7.93066 20.2598 8.2002 28.8896 1.4707v146.52c0 26.4697 21.5303 48 48 48h133.45h0.046875c17.4834 0 37.2324 -13.0547 44.083 -29.1396l56.0898 -130.86h102.33v40.2002\\nc0 29.9902 10.5801 58.8994 29.5 81.7197c6.37988 7.7002 18.04 8.23047 24.7002 0.780273l21.6299 -24.1699c4.87012 -5.43066 5.74023 -13.6904 1.32031 -19.4902c-8.4502 -11.0801 -13.1504 -24.7197 -13.1504 -38.8398v-40.2002h64zM176 32c44.1797 0 80 35.8203 80 80\\ns-35.8203 80 -80 80s-80 -35.8203 -80 -80s35.8203 -80 80 -80zM198 288h110.04l-41.1504 96h-106.89v-96h38z\\\" />\\n    <glyph glyph-name=\\\"user-injured\\\" unicode=\\\"&#xf728;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M277.37 436.02l-90.6904 -68.0195h-81.1895c19.0098 46.8701 64.8193 80 118.51 80c19.1104 0 37.0801 -4.46973 53.3701 -11.9805zM342.51 368h-102.52l66.0293 49.5195c15.8203 -13.3193 28.5908 -30.0498 36.4902 -49.5195zM224 192c-70.6904 0 -128 57.3096 -128 128\\nc0 5.48047 0.94043 10.7002 1.61035 16h252.779c0.660156 -5.2998 1.61035 -10.5195 1.61035 -16c0 -70.6904 -57.3096 -128 -128 -128zM80 148.3c7.92676 3.51758 21.2812 7.64844 29.8096 9.21973l98.4502 -221.52h-128.26v212.3zM0 -16v41.5996\\nc0 41.1406 18.8799 77.5107 48 102.16v-191.76c-26.5098 0 -48 21.4902 -48 48zM256 32c26.4697 0 48 -21.5303 48 -48s-21.5303 -48 -48 -48h-12.71l-42.6699 96h55.3799zM313.6 160c74.2305 0 134.4 -60.1699 134.4 -134.4v-41.5996c0 -26.5098 -21.4902 -48 -48 -48\\nh-80.4102c10.1504 13.4102 16.4102 29.9199 16.4102 48c0 44.1104 -35.8896 80 -80 80h-69.5898l-42.6699 96h7.37012c22.2393 -10.1797 46.8799 -16 72.8896 -16s50.6504 5.82031 72.8896 16h16.71z\\\" />\\n    <glyph glyph-name=\\\"vr-cardboard\\\" unicode=\\\"&#xf729;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 384c17.6699 0 32 -14.3301 32 -32v-320c0 -17.6699 -14.3301 -32 -32 -32h-160.22c-25.1807 0 -48.0303 14.7695 -58.3604 37.7402l-27.7402 61.6396c-7.88965 17.54 -24.0293 28.6201 -41.6797 28.6201s-33.79 -11.0801 -41.6797 -28.6201l-27.7402 -61.6396\\nc-10.3301 -22.9707 -33.1699 -37.7402 -58.3604 -37.7402h-160.22c-17.6699 0 -32 14.3301 -32 32v320c0 17.6699 14.3301 32 32 32h576zM160 144c35.3496 0 64 28.6504 64 64s-28.6504 64 -64 64s-64 -28.6504 -64 -64s28.6504 -64 64 -64zM480 144\\nc35.3496 0 64 28.6504 64 64s-28.6504 64 -64 64s-64 -28.6504 -64 -64s28.6504 -64 64 -64z\\\" />\\n    <glyph glyph-name=\\\"wind\\\" unicode=\\\"&#xf72e;\\\" \\nd=\\\"M156.7 192c48.7002 0 92.2998 -35 98.3994 -83.4004c7.5 -58.5 -38.0996 -108.6 -95.1992 -108.6c-46.6006 0 -85.6006 33.5 -94.2002 77.5996c-1.7998 9.60059 6.09961 18.4004 15.8994 18.4004h32.8008c6.59961 0 13.0996 -3.7998 15.1992 -10.0996\\nc4.30078 -12.7002 16.3008 -21.9004 30.4004 -21.9004c19.5 0 34.9004 17.4004 31.5996 37.4004c-2.59961 15.6992 -17.5 26.5996 -33.3994 26.5996h-142.2c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h140.7zM16 224c-8.7998 0 -16 7.2002 -16 16v32\\nc0 8.7998 7.2002 16 16 16h334.2c16 0 30.7998 10.9004 33.3994 26.5996c3.30078 20 -12.1992 37.4004 -31.5996 37.4004c-14.0996 0 -26.0996 -9.2002 -30.4004 -21.9004c-2.09961 -6.2998 -8.5 -10.0996 -15.1992 -10.0996h-32.8008\\nc-9.69922 0 -17.6992 8.7002 -15.7998 18.2998c9.7998 50.6006 59.5 87.1006 114.9 75.5c36.2002 -7.59961 65.5 -36.8994 73.0996 -73.0996c13 -61.9004 -34.0996 -116.7 -93.7998 -116.7h-336zM400 192c70.5 0 126 -65.5 108.9 -138.7\\nc-9.60059 -41.0996 -43.5 -74 -84.7002 -82.7002c-58.9004 -12.5 -111.601 21.7002 -129.4 72.3008c-3.7002 10.2998 4.40039 21.0996 15.2998 21.0996h33.8008c5.7998 0 11.5996 -2.59961 14.5 -7.59961c8.2998 -14.5 23.6992 -24.4004 41.5996 -24.4004\\nc26.5 0 48 21.5 48 48s-21.5 48 -48 48h-116.5c-6.59961 25.2002 -20.5 47.4004 -39.7998 64h156.3z\\\" />\\n    <glyph glyph-name=\\\"wine-bottle\\\" unicode=\\\"&#xf72f;\\\" \\nd=\\\"M507.31 375.43c6.25 -6.25 6.25 -16.3799 0.0107422 -22.6201l-22.6299 -22.6299c-6.25 -6.25 -16.3809 -6.25 -22.6309 0l-76.6699 -76.6699c19.7002 -46.5801 10.7305 -102.41 -27.2295 -140.37l-158.391 -158.39c-24.9893 -24.9902 -65.5195 -24.9902 -90.5098 0\\nl-90.5098 90.5098c-24.9902 24.9902 -24.9902 65.5205 0 90.5098l158.38 158.381c37.9697 37.96 93.79 46.9297 140.37 27.2295l76.6699 76.6699c-6.25 6.25 -6.25 16.3799 0 22.6299l22.6299 22.6299c6.25 6.25 16.3799 6.25 22.6299 0zM179.22 24.71l122.04 122.04\\nl-90.5098 90.5098l-122.04 -122.04z\\\" />\\n    <glyph glyph-name=\\\"cloud-meatball\\\" unicode=\\\"&#xf73b;\\\" \\nd=\\\"M48 96c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48s21.5 48 48 48zM464 96c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48s21.5 48 48 48zM345 84.9004c13.5 -7 23 -20.7002 23 -36.9004s-9.5 -29.9004 -23 -36.9004\\nc4.59961 -14.5 1.7002 -30.7998 -9.7998 -42.2998c-8.2002 -8.2002 -18.9004 -12.2998 -29.7002 -12.2998c-4.2998 0 -8.5 1.2002 -12.5996 2.5c-7 -13.5 -20.7002 -23 -36.9004 -23s-29.9004 9.5 -36.9004 23c-4.09961 -1.40039 -8.2998 -2.5 -12.5996 -2.5\\nc-10.7998 0 -21.5 4.09961 -29.7002 12.2998c-11.5 11.5 -14.5 27.7998 -9.89941 42.2998c-13.5 7 -23 20.7002 -23 36.9004s9.5 29.9004 23 36.9004c-4.5 14.5 -1.60059 30.7998 9.89941 42.2998s27.7998 14.5 42.2998 9.89941c7 13.5 20.7002 23 36.9004 23\\ns29.9004 -9.5 36.9004 -23c14.5 4.5 30.7998 1.60059 42.2998 -9.89941c11.3994 -11.5 14.3994 -27.7998 9.7998 -42.2998zM512 224c0 -53 -43 -96 -96 -96h-43.4004c-3.5 8 -8.39941 15.4004 -14.7998 21.7998c-13.5 13.5 -31.5 21.1006 -50.7998 21.2998\\nc-13.5 13.2002 -31.7002 20.9004 -51 20.9004s-37.5 -7.7002 -51 -20.9004c-19.2998 -0.199219 -37.2998 -7.7998 -50.7998 -21.2998c-6.40039 -6.39941 -11.2002 -13.7998 -14.7998 -21.7998h-43.4004c-53 0 -96 43 -96 96c0 42.5 27.7998 78.2002 66.0996 90.7998\\nc-1.2998 6.90039 -2.09961 13.9004 -2.09961 21.2002c0 61.9004 50.0996 112 112 112c43.2998 0 80.4004 -24.7998 99 -60.7998c14.7002 17.5 36.4004 28.7998 61 28.7998c44.2002 0 80 -35.7998 80 -80c0 -5.59961 -0.5 -11 -1.59961 -16.2002\\nc0.5 0 1 0.200195 1.59961 0.200195c53 0 96 -43 96 -96z\\\" />\\n    <glyph glyph-name=\\\"cloud-moon-rain\\\" unicode=\\\"&#xf73c;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M350.5 222.5c37.2998 -6.7998 65.5 -39.2998 65.5 -78.5c0 -44.2002 -35.7998 -80 -80 -80h-256c-44.2002 0 -80 35.7998 -80 80c0 38.7998 27.5996 71.0996 64.2002 78.4004c0 0.5 -0.200195 1.09961 -0.200195 1.59961c0 53 43 96 96 96\\nc32.0996 0 60.2998 -15.9004 77.7002 -40c10.3994 5 22 8 34.2998 8c39.2002 0 71.5996 -28.2998 78.5 -65.5zM567.9 224.2c6.19922 1.2002 10.5996 -6 6.39941 -10.7998c-27 -33.1006 -67.8994 -53.3008 -112.6 -53.3008c-5.2002 0 -10.1006 1 -15.2002 1.5\\nc-6.2002 39.4004 -33.0996 72.5 -70.2002 86.8008c-10.7002 27.8994 -32.2002 49.7998 -58.8994 61.6992c3.2998 76.7002 66.5 137.9 144.399 137.9c8.90039 0 17.7998 -0.799805 26.5 -2.40039c6.2002 -1.09961 7.60059 -9.39941 2.10059 -12.5\\nc-35.6006 -20.0996 -57.5 -57.5 -57.5 -98.0996c0 -70.5 64.5996 -124.1 135 -110.8zM364.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008l-36.5996 -64c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961\\nc-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6zM268.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008l-36.5996 -64c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961\\nc-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6zM172.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008l-36.5996 -64\\nc-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6zM76.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008\\nl-36.5996 -64c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6z\\\" />\\n    <glyph glyph-name=\\\"cloud-rain\\\" unicode=\\\"&#xf73d;\\\" \\nd=\\\"M416 320c53 0 96 -43 96 -96s-43 -96 -96 -96h-320c-53 0 -96 43 -96 96c0 42.5 27.7998 78.2002 66.0996 90.7998c-1.2998 6.90039 -2.09961 13.9004 -2.09961 21.2002c0 61.9004 50.0996 112 112 112c43.2998 0 80.4004 -24.7998 99 -60.7998\\nc14.7002 17.5 36.4004 28.7998 61 28.7998c44.2002 0 80 -35.7998 80 -80c0 -5.59961 -0.5 -11 -1.59961 -16.2002c0.5 0 1 0.200195 1.59961 0.200195zM88 73.7998c2.5 8.5 13.7998 8.10059 16 0c12.7998 -44.5996 40 -56.2998 40 -87.7002\\nc0 -27.6992 -21.5 -50.0996 -48 -50.0996s-48 22.4004 -48 50.0996c0 31.3008 27.2002 43.3008 40 87.7002zM248 73.7998c2.5 8.5 13.7998 8.10059 16 0c12.7998 -44.5996 40 -56.2998 40 -87.7002c0 -27.6992 -21.5 -50.0996 -48 -50.0996s-48 22.4004 -48 50.0996\\nc0 31.3008 27.2002 43.3008 40 87.7002zM408 73.7998c2.5 8.5 13.7998 8.10059 16 0c12.7998 -44.5996 40 -56.2998 40 -87.7002c0 -27.6992 -21.5 -50.0996 -48 -50.0996s-48 22.4004 -48 50.0996c0 31.3008 27.2002 43.3008 40 87.7002z\\\" />\\n    <glyph glyph-name=\\\"cloud-showers-heavy\\\" unicode=\\\"&#xf740;\\\" \\nd=\\\"M183.9 77.9004c7.69922 -4.40039 10.3994 -14.2002 6 -21.8008l-64 -112c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.30078 -10.3994 14.1006 -6 21.8008l64 112\\nc4.40039 7.7998 14.2002 10.3994 21.8008 6zM279.9 77.9004c7.69922 -4.40039 10.3994 -14.2002 6 -21.8008l-64 -112c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.30078 -10.3994 14.1006 -6 21.8008\\nl64 112c4.40039 7.7998 14.2002 10.3994 21.8008 6zM87.9004 77.9004c7.69922 -4.40039 10.3994 -14.2002 6 -21.8008l-64 -112c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961\\nc-7.69922 4.30078 -10.3994 14.1006 -6 21.8008l64 112c4.40039 7.7998 14.2002 10.3994 21.8008 6zM471.9 77.9004c7.69922 -4.40039 10.3994 -14.2002 6 -21.8008l-64 -112c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961\\nc-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.30078 -10.3994 14.1006 -6 21.8008l64 112c4.40039 7.7998 14.2002 10.3994 21.8008 6zM375.9 77.9004c7.69922 -4.40039 10.3994 -14.2002 6 -21.8008l-64 -112\\nc-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.30078 -10.3994 14.1006 -6 21.8008l64 112c4.40039 7.7998 14.2002 10.3994 21.8008 6zM416 320c53 0 96 -43 96 -96s-43 -96 -96 -96h-320\\nc-53 0 -96 43 -96 96c0 42.5 27.7998 78.2002 66.0996 90.7998c-1.2998 6.90039 -2.09961 13.9004 -2.09961 21.2002c0 61.9004 50.2002 112 112 112c43.2998 0 80.4004 -24.7998 99 -60.7998c14.7002 17.5 36.4004 28.7998 61 28.7998c44.2002 0 80 -35.7998 80 -80\\nc0 -5.59961 -0.5 -11 -1.59961 -16.2002c0.5 0 1 0.200195 1.59961 0.200195z\\\" />\\n    <glyph glyph-name=\\\"cloud-sun-rain\\\" unicode=\\\"&#xf743;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M510.5 222.5c37.2998 -6.7998 65.5 -39.2998 65.5 -78.5c0 -44.2002 -35.7998 -80 -80 -80h-256c-44.2002 0 -80 35.7998 -80 80c0 38.7998 27.5996 71 64.2002 78.4004c0 0.5 -0.200195 1.09961 -0.200195 1.59961c0 53 43 96 96 96\\nc32.0996 0 60.2998 -15.9004 77.7002 -40c10.3994 5 22 8 34.2998 8c39.2002 0 71.5996 -28.2998 78.5 -65.5zM124.1 188.1c3.10059 -3.09961 6.60059 -5.59961 10.2002 -8.2998c-3.89941 -11.3994 -6.2002 -23.3994 -6.2002 -35.8994c0 -2.5 0.5 -4.80078 0.700195 -7.2002\\nl-59.2002 -19.7002c-10.1992 -3.2998 -19.8994 6.2998 -16.5 16.5l25.1006 75.2998l-71 35.5c-9.60059 4.7998 -9.60059 18.5 0 23.2998l71 35.5l-25.1006 75.3008c-3.39941 10.1992 6.2002 19.8994 16.4004 16.5l75.2998 -25.1006l35.5 71\\nc4.7998 9.60059 18.5 9.60059 23.2998 0l35.5 -71l75.3008 25.1006c10.1992 3.39941 19.8994 -6.2002 16.5 -16.4004l-8.90039 -26.7002c-0.700195 0 -1.2998 0.200195 -2 0.200195c-25.5996 0 -49.2002 -7.7998 -69.2002 -20.7002\\nc-37.5996 29.4004 -92.0996 27.2002 -126.7 -7.39941c-37.3994 -37.5 -37.3994 -98.4004 0 -135.801zM193.9 246.1c-18.2002 -8.2998 -33.5 -21.2998 -44.8008 -37.1992c-12.8994 11.6992 -21.0996 28.3994 -21.0996 47.0996c0 35.2998 28.7002 64 64 64\\nc12.4004 0 24 -3.7002 33.7998 -9.90039c-16.0996 -17.5996 -27.5996 -39.5 -31.8994 -64zM524.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008l-36.5996 -64c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961\\nc-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6zM428.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008l-36.5996 -64c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961\\nc-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6zM332.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008l-36.5996 -64\\nc-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6zM236.5 29.9004c7.7002 -4.40039 10.2998 -14.1006 6 -21.8008\\nl-36.5996 -64c-3 -5.19922 -8.40039 -8.09961 -13.9004 -8.09961c-2.7002 0 -5.40039 0.700195 -7.90039 2.09961c-7.69922 4.40039 -10.3994 14.1006 -6 21.8008l36.6006 64c4.39941 7.7998 14.2002 10.2998 21.7998 6z\\\" />\\n    <glyph glyph-name=\\\"democrat\\\" unicode=\\\"&#xf747;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M637.3 191.1c4.90039 -7.39941 2.90039 -17.2998 -4.39941 -22.2998l-26.6006 -17.7002c-7.39941 -4.89941 -17.2998 -3 -22.2002 4.40039c-21.7998 32.7002 -23.8994 38.0996 -40.0996 50.2998v-77.7998h-352l-54 108l-38.0996 -34.5996\\nc-6 -6 -14.1006 -9.40039 -22.6006 -9.40039h-31c-12.0996 0 -23.2002 6.90039 -28.5996 17.7002l-14.2998 28.5996c-5.40039 10.7998 -4.30078 23.7998 3 33.5l74.5996 99.2998c1.7002 2.30078 4.2002 3.7002 6.40039 5.40039c-4 2.2002 -8 4.2002 -11.3008 7.5\\nc-16.3994 16.4004 -18.3994 41.7998 -6.09961 60.4004c2.7998 4.19922 8.7998 4.7998 12.4004 1.19922l42.8994 -42.7998l41.7998 41.7998c4.40039 4.40039 11.8008 3.7002 15.2002 -1.5c15.1006 -22.7998 12.6006 -53.7998 -7.5 -73.8994l81.2002 -81.2002h235.6\\nc50.8008 0 97.9004 -25.2002 126.101 -67.5zM296.2 204.7c3 2.89941 1.39941 7.89941 -2.60059 8.5l-22.7998 3.2998l-10.2002 20.7002c-1.89941 3.7002 -7.19922 3.7002 -9 0l-10.1992 -20.7002l-22.8008 -3.2998c-4.09961 -0.600586 -5.7998 -5.60059 -2.7998 -8.5\\nl16.5 -16.1006l-3.89941 -22.6992c-0.700195 -4.10059 3.59961 -7.2002 7.19922 -5.30078l20.4004 10.7002l20.4004 -10.7002c3.59961 -1.89941 7.89941 1.2002 7.19922 5.30078l-3.89941 22.6992zM408.2 204.7c3 2.89941 1.39941 7.89941 -2.60059 8.5l-22.7998 3.2998\\nl-10.2002 20.7002c-1.89941 3.7002 -7.19922 3.7002 -9 0l-10.1992 -20.7002l-22.8008 -3.2998c-4.09961 -0.600586 -5.7998 -5.60059 -2.7998 -8.5l16.5 -16.1006l-3.89941 -22.6992c-0.700195 -4.10059 3.59961 -7.2002 7.19922 -5.30078l20.4004 10.7002\\nl20.4004 -10.7002c3.59961 -1.89941 7.89941 1.2002 7.19922 5.30078l-3.89941 22.6992zM520.2 204.7c3 2.89941 1.39941 7.89941 -2.60059 8.5l-22.7998 3.2998l-10.2002 20.7002c-1.89941 3.7002 -7.19922 3.7002 -9 0l-10.1992 -20.7002l-22.8008 -3.2998\\nc-4.09961 -0.600586 -5.7998 -5.60059 -2.7998 -8.5l16.5 -16.1006l-3.89941 -22.6992c-0.700195 -4.10059 3.59961 -7.2002 7.19922 -5.30078l20.4004 10.7002l20.4004 -10.7002c3.59961 -1.89941 7.89941 1.2002 7.19922 5.30078l-3.89941 22.6992zM192 -48v144h352v-144\\nc0 -8.7998 -7.2002 -16 -16 -16h-64c-8.7998 0 -16 7.2002 -16 16v80h-160v-80c0 -8.7998 -7.2002 -16 -16 -16h-64c-8.7998 0 -16 7.2002 -16 16z\\\" />\\n    <glyph glyph-name=\\\"flag-usa\\\" unicode=\\\"&#xf74d;\\\" \\nd=\\\"M32 448c17.7002 0 32 -14.2998 32 -32v-464c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v464c0 17.7002 14.2998 32 32 32zM299.9 144.4c31.0996 -8.2002 62.5996 -16.5 100 -16.6006c31.8994 0 68.5 6.7998 112.1 24.1006v-36\\nc0 -12.3008 -7.09961 -23.8008 -18.5 -28.8008c-175.8 -76.3994 -211.8 69.1006 -397.5 -23.0996v69.2998c92.2002 39.9004 146.7 26.2002 203.9 11.1006zM299.9 240.4c31.0996 -8.2002 62.5996 -16.5 100 -16.5c31.8994 0 68.5 6.7998 112.1 24.0996v-61.5\\nc-92.2002 -39.9004 -146.7 -26.2002 -203.9 -11.0996c-57.5 15.0996 -117.3 30 -212.1 -7.60059v61.5c92.2002 39.9004 146.7 26.2002 203.9 11.1006zM309.4 366.3c-7 2.10059 -14.1006 4.2002 -21.3008 6.2002v-33.2002c4 -1.09961 8.10059 -2.2998 12.1006 -3.5\\nc26.7002 -8.09961 52.8994 -15.8994 85.7002 -15.8994c32.7998 0 72.5 7.89941 126.1 31.3994v-68.8994c-92.2002 -39.8008 -146.7 -26.1006 -203.9 -11.1006c-57.5 15.1006 -117.3 29.9004 -212.1 -7.59961v151.899c209.4 94.6006 195.3 -59.0996 366.6 28.2002\\nc22.6006 11.5 49.4004 -1.5 49.4004 -26.5996v-30.7998c-105.2 -49.1006 -150.8 -35.7002 -202.6 -20.1006zM160 319.9c8.7998 0 16 7.09961 16 16c0 8.89941 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.90039 7.2002 -16 16 -16zM160 375.7c8.7998 0 16 7.2002 16 16\\nc0 8.89941 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.90039 7.2002 -16 16 -16zM224 327.8c8.7998 0 16 7.2002 16 16c0 8.90039 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.89941 7.2002 -16 16 -16zM224 383.7c8.7998 0 16 7.2002 16 16c0 8.89941 -7.2002 16 -16 16\\ns-16 -7.2002 -16 -16c0 -8.90039 7.2002 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"meteor\\\" unicode=\\\"&#xf753;\\\" \\nd=\\\"M511.328 427.197c-11.6074 -38.7021 -34.3076 -111.702 -61.3037 -187.701c6.99902 -2.09375 13.4043 -4 18.6074 -5.59277c6.28125 -1.91504 11.3789 -8.79785 11.3789 -15.3643c0 -2.21094 -0.842773 -5.58984 -1.88086 -7.54199\\nc-22.1055 -42.2969 -82.6904 -152.795 -142.479 -214.403c-0.999023 -1.09375 -1.99902 -2.5 -2.99902 -3.5c-31.501 -31.5098 -93.2285 -57.083 -137.784 -57.083c-107.546 0 -194.83 87.2842 -194.83 194.831c0 44.5391 25.5566 106.25 57.0469 137.748\\nc1 1 2.40625 2 3.49902 3c61.6006 59.9053 171.975 120.405 214.374 142.498c1.95215 1.03809 5.33008 1.88086 7.54102 1.88086c6.56641 0 13.4492 -5.09863 15.3613 -11.3809c1.59375 -5.09375 3.5 -11.5928 5.59277 -18.5928\\nc75.8955 26.999 148.978 49.7021 187.675 61.2959c1.26465 0.382812 3.36426 0.692383 4.68555 0.692383c8.93262 0 16.1826 -7.25 16.1826 -16.1826c0 -1.29785 -0.298828 -3.35938 -0.667969 -4.60352zM319.951 127.998\\nc-0.00976562 70.6348 -57.3457 127.962 -127.98 127.962c-70.6455 0 -127.98 -57.335 -127.98 -127.98c0 -70.6445 57.335 -127.979 127.98 -127.979h0.00488281c70.6426 0 127.976 57.333 127.976 127.976v0.0224609zM191.971 159.997\\nc-0.00292969 -17.6582 -14.3359 -31.9902 -31.9951 -31.9902c-17.6611 0 -31.9951 14.334 -31.9951 31.9951s14.334 31.9951 31.9951 31.9951h0.0361328c17.6416 0 31.959 -14.3174 31.959 -31.959v-0.0410156zM223.966 79.998\\nc-0.000976562 -8.8291 -7.16797 -15.9951 -15.998 -15.9951s-15.9971 7.16699 -15.9971 15.998c0 8.83008 7.16699 15.9971 15.9971 15.9971c8.80371 -0.0283203 15.9707 -7.19629 15.998 -16z\\\" />\\n    <glyph glyph-name=\\\"person-booth\\\" unicode=\\\"&#xf756;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M192 -48v176h64v-176c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16zM224 224c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32h-57.5c-12.7998 0 -24.7998 5 -33.9004 14.0996l-20.8994 20.9004v-80.5996l41.2002 -61.3008\\nc4.39941 -8.7998 6.69922 -18.6992 6.69922 -28.5996v-56.5c0 -17.7002 -14.2998 -32 -32 -32c-17.6992 0 -32 14.2998 -32 32v56l-29.0996 43c-0.900391 0.400391 -1.59961 1.2002 -2.5 1.7002l-0.0996094 -100.7c0 -17.7002 -14.4004 -32 -32 -32\\nc-17.6006 0 -31.9004 14.2998 -31.9004 32l0.200195 160l-0.200195 95.9004c0 17.0996 6.7002 33.1992 18.7002 45.2998c12.0996 12.0996 28.2002 18.7998 45.2998 18.7998h18.7002c17 0 33.0996 -6.59961 45.2002 -18.7002l45.1992 -45.2998h50.9004zM64 320\\nc-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM288 416v32h192v-416c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32c0 -17.7002 -14.2998 -32 -32 -32c-17.0996 0 -30.7998 13.5 -31.7002 30.4004\\nc-4.2998 -21.3008 -17.0996 -30.4004 -32.2998 -30.4004c-18.4004 0 -35.7002 16.7002 -31.4004 38.2998l30.9004 154.601zM192 416c0 17.7002 14.2998 32 32 32h32v-192h-64v160zM544 448c17.7002 0 32 -14.2998 32 -32v-464c0 -8.7998 -7.2002 -16 -16 -16h-32\\nc-8.7998 0 -16 7.2002 -16 16v496h32z\\\" />\\n    <glyph glyph-name=\\\"poo-storm\\\" unicode=\\\"&#xf75a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M308 112c9.2002 0 15 -10 10.4004 -18l-88 -152c-2.2002 -3.7998 -6.2002 -6 -10.4004 -6c-7.7002 0 -13.5 7.2002 -11.7002 14.7998l23 97.2002h-59.2998c-7.2998 0 -12.9004 6.40039 -11.9004 13.5996l16 120c0.800781 5.90039 5.90039 10.4004 11.9004 10.4004h68\\nc7.90039 0 13.5996 -7.5 11.5996 -15.0996l-17.2998 -64.9004h57.7002zM374.4 223.3c41 -3.2998 73.5996 -37.5 73.5 -79.2998c0 -44 -36 -80 -80 -80h-30l8.09961 14c7.7998 13.5 7.7998 30.4004 0 44s-22.4004 22 -38.0996 22h-16l6.59961 24.7002\\nc3.59961 13.2998 0.799805 27.2002 -7.59961 38.0996c-8.40039 10.9004 -21.1006 17.2002 -34.9004 17.2002h-68c-22 0 -40.7002 -16.4004 -43.7002 -38.2002l-16 -120c0 -0.599609 0.100586 -1.2002 0 -1.7998h-48.2998c-44 0 -80 36 -80 80\\nc0 41.7998 32.5996 76 73.5996 79.2998c-5.89941 9.60059 -9.59961 20.6006 -9.59961 32.7002c0 35.2998 28.7002 64 64 64h16c44.2002 0 80 35.7998 80 80c0 17.4004 -5.7002 33.4004 -15.0996 46.5c4.89941 0.799805 9.89941 1.5 15.0996 1.5c53 0 96 -43 96 -96\\nc0 -11.2998 -2.2998 -21.9004 -5.90039 -32h5.90039c35.2998 0 64 -28.7002 64 -64c0 -12.0996 -3.7002 -23.0996 -9.59961 -32.7002z\\\" />\\n    <glyph glyph-name=\\\"rainbow\\\" unicode=\\\"&#xf75b;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M268.3 415.3c167.7 11.2998 307.7 -122 307.7 -287.3v-144c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v136.2c0 113.8 -81.5996 215.399 -194.5 229.899c-136.6 17.6006 -253.5 -88.8994 -253.5 -222.1v-144c0 -8.7998 -7.2002 -16 -16 -16h-32\\nc-8.7998 0 -16 7.2002 -16 16v133.8c0 153.3 115.4 287.3 268.3 297.5zM262.7 318.4c117.1 15 217.3 -76.2002 217.3 -190.4v-144c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v138.3c0 66.9004 -48.7002 126.601 -115.2 133.101\\nc-76.2998 7.39941 -140.8 -52.6006 -140.8 -127.4v-144c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v137.3c0 97.6006 70 184.7 166.7 197.101zM268.9 222.1c61.2998 11.9004 115.1 -34.8994 115.1 -94.0996v-144c0 -8.7998 -7.2002 -16 -16 -16h-32\\nc-8.7998 0 -16 7.2002 -16 16v144c0 17.5996 -14.2998 32 -32 32s-32 -14.4004 -32 -32v-144c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v140.2c0 46.3994 31.2998 89 76.9004 97.8994z\\\" />\\n    <glyph glyph-name=\\\"republican\\\" unicode=\\\"&#xf75e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M544 256v-64h-544v64c0 88.4004 71.5996 160 160 160h224c88.4004 0 160 -71.5996 160 -160zM176.3 277.6c3.5 3.5 1.60059 9.5 -3.39941 10.2002l-27.4004 4l-12.2002 24.7998c-2.09961 4.40039 -8.5 4.5 -10.7002 0l-12.1992 -24.7998l-27.4004 -4\\nc-4.90039 -0.700195 -6.90039 -6.7002 -3.2998 -10.2002l19.7998 -19.2998l-4.7002 -27.2998c-0.799805 -4.90039 4.40039 -8.59961 8.7002 -6.2998l24.5 12.8994l24.5 -12.8994c4.40039 -2.2998 9.5 1.39941 8.7002 6.2998l-4.7002 27.2998zM320.3 277.6\\nc3.5 3.5 1.60059 9.5 -3.39941 10.2002l-27.4004 4l-12.2002 24.7998c-2.09961 4.40039 -8.5 4.5 -10.7002 0l-12.1992 -24.7998l-27.4004 -4c-4.90039 -0.700195 -6.90039 -6.7002 -3.2998 -10.2002l19.7998 -19.2998l-4.7002 -27.2998\\nc-0.799805 -4.90039 4.40039 -8.59961 8.7002 -6.2998l24.5 12.8994l24.5 -12.8994c4.40039 -2.2998 9.5 1.39941 8.7002 6.2998l-4.7002 27.2998zM464.3 277.6c3.5 3.5 1.60059 9.5 -3.39941 10.2002l-27.4004 4l-12.2002 24.7998c-2.09961 4.40039 -8.5 4.5 -10.7002 0\\nl-12.1992 -24.7998l-27.4004 -4c-4.90039 -0.700195 -6.90039 -6.7002 -3.2998 -10.2002l19.7998 -19.2998l-4.7002 -27.2998c-0.799805 -4.90039 4.40039 -8.59961 8.7002 -6.2998l24.5 12.8994l24.5 -12.8994c4.40039 -2.2998 9.5 1.39941 8.7002 6.2998l-4.7002 27.2998z\\nM624 128c8.7998 0 16 -7.2002 16 -16v-64c0 -46.9004 -40.5996 -84.5 -88.4004 -79.5996c-41.5996 4.19922 -71.5996 42.5 -71.5996 84.2998v43.2998h-32v-112c0 -8.7998 -7.2002 -16 -16 -16h-96c-8.7998 0 -16 7.2002 -16 16v80h-192v-80c0 -8.7998 -7.2002 -16 -16 -16\\nh-96c-8.7998 0 -16 7.2002 -16 16v176h544v-112c0 -8.7998 7.2002 -16 16 -16s16 7.2002 16 16v64c0 8.7998 7.2002 16 16 16h32z\\\" />\\n    <glyph glyph-name=\\\"smog\\\" unicode=\\\"&#xf75f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 80c8.7998 0 16 -7.2002 16 -16v-16c0 -8.7998 -7.2002 -16 -16 -16h-544c-8.7998 0 -16 7.2002 -16 16v16c0 8.7998 7.2002 16 16 16h544zM144 -16c8.7998 0 16 -7.2002 16 -16v-16c0 -8.7998 -7.2002 -16 -16 -16h-128c-8.7998 0 -16 7.2002 -16 16v16\\nc0 8.7998 7.2002 16 16 16h128zM560 -16c8.7998 0 16 -7.2002 16 -16v-16c0 -8.7998 -7.2002 -16 -16 -16h-336c-8.7998 0 -16 7.2002 -16 16v16c0 8.7998 7.2002 16 16 16h336zM144 160c-79.5 0 -144 64.5 -144 144s64.5 144 144 144c41 0 77.7998 -17.2998 104 -44.7998\\nc26.2002 27.5 63 44.7998 104 44.7998c54.7998 0 102 -31 126.3 -76.0996c15 7.5 31.7002 12.0996 49.7002 12.0996c61.9004 0 112 -50.0996 112 -112s-50.0996 -112 -112 -112h-60.0996c-22.6006 -19.7002 -51.6006 -32 -83.9004 -32s-61.4004 12.2998 -83.9004 32h-156.1z\\n\\\" />\\n    <glyph glyph-name=\\\"temperature-high\\\" unicode=\\\"&#xf769;\\\" \\nd=\\\"M416 448c52.9004 0 96 -43.0996 96 -96s-43.0996 -96 -96 -96s-96 43.0996 -96 96s43.0996 96 96 96zM416 320c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM256 336v-166.5c19.7002 -24.5996 32 -55.5 32 -89.5\\nc0 -79.5 -64.5 -144 -144 -144s-144 64.5 -144 144c0 34 12.2998 64.7998 32 89.5v166.5c0 61.9004 50.0996 112 112 112s112 -50.0996 112 -112zM144 0c44.0996 0 80 35.9004 80 80c0 25.5 -12.2002 49 -32 63.7998v192.2c0 26.5 -21.5 48 -48 48s-48 -21.5 -48 -48v-192.2\\nc-19.7998 -14.8994 -32 -38.2998 -32 -63.7998c0 -44.0996 35.9004 -80 80 -80zM160 125.1c18.5996 -6.59961 32 -24.1992 32 -45.0996c0 -26.5 -21.5 -48 -48 -48s-48 21.5 -48 48c0 20.9004 13.4004 38.5 32 45.0996v210.9c0 8.7998 7.2002 16 16 16s16 -7.2002 16 -16\\nv-210.9z\\\" />\\n    <glyph glyph-name=\\\"temperature-low\\\" unicode=\\\"&#xf76b;\\\" \\nd=\\\"M416 448c52.9004 0 96 -43.0996 96 -96s-43.0996 -96 -96 -96s-96 43.0996 -96 96s43.0996 96 96 96zM416 320c17.7002 0 32 14.2998 32 32s-14.2998 32 -32 32s-32 -14.2998 -32 -32s14.2998 -32 32 -32zM256 336v-166.5c19.7002 -24.5996 32 -55.5 32 -89.5\\nc0 -79.5 -64.5 -144 -144 -144s-144 64.5 -144 144c0 34 12.2998 64.7998 32 89.5v166.5c0 61.9004 50.0996 112 112 112s112 -50.0996 112 -112zM144 0c44.0996 0 80 35.9004 80 80c0 25.5 -12.2002 49 -32 63.7998v192.2c0 26.5 -21.5 48 -48 48s-48 -21.5 -48 -48v-192.2\\nc-19.7998 -14.8994 -32 -38.2998 -32 -63.7998c0 -44.0996 35.9004 -80 80 -80zM160 125.1c18.5996 -6.59961 32 -24.1992 32 -45.0996c0 -26.5 -21.5 -48 -48 -48s-48 21.5 -48 48c0 20.9004 13.4004 38.5 32 45.0996v18.9004c0 8.7998 7.2002 16 16 16s16 -7.2002 16 -16\\nv-18.9004z\\\" />\\n    <glyph glyph-name=\\\"vote-yea\\\" unicode=\\\"&#xf772;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 128c17.7002 0 32 -14.2998 32 -32v-96c0 -17.7002 -14.2998 -32 -32 -32h-576c-17.7002 0 -32 14.2998 -32 32v96c0 17.7002 14.2998 32 32 32h64v-64h-22.4004c-5.2998 0 -9.59961 -3.59961 -9.59961 -8v-16c0 -4.40039 4.2998 -8 9.59961 -8h492.801\\nc5.2998 0 9.59961 3.59961 9.59961 8v16c0 4.40039 -4.2998 8 -9.59961 8h-22.4004v64h64zM512 64h-384v319.7c0 17.7998 14.5 32.2998 32.4004 32.2998h319.3c17.7998 0 32.2998 -14.4004 32.2998 -32.2998v-319.7zM211.2 246c-4.2002 -4.2002 -4.2998 -11 0 -15.2002\\nl74.0996 -74.7002c4.2002 -4.2998 11 -4.2998 15.2002 -0.0996094l128.3 127.2c4.2998 4.2002 4.2998 11 0.100586 15.2002l-25.3008 25.5c-4.19922 4.2998 -11 4.2998 -15.1992 0.0996094l-95.2002 -94.4004l-41.2998 41.6006\\nc-4.2002 4.2998 -11 4.2998 -15.2002 0.0996094z\\\" />\\n    <glyph glyph-name=\\\"water\\\" unicode=\\\"&#xf773;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M562.1 64.0996c8.10059 -0.899414 13.9004 -8.2998 13.8008 -16.2998v-31.5996c0 -9.10059 -7.60059 -16.7998 -16.7002 -16c-28.2002 2.5 -55.7998 11.5996 -79.1006 25.7998c-55 -34.0996 -135.5 -34.5996 -192 0c-55 -34.0996 -135.5 -34.5996 -192 0\\nc-23.2998 -14.5 -50.5996 -23.4004 -79.3994 -25.9004c-9.10059 -0.799805 -16.7002 6.90039 -16.7002 16v32.2002c0 7.90039 5.7002 14.9004 13.5996 15.7002c21.7002 2.2998 42.2002 10.2002 57.7002 22.4004c13.7998 10.8994 33.6006 13.1992 47.1006 2\\nc38.2998 -31.7002 107.199 -31.8008 145.199 -1.7002c13.7002 10.8994 33.2002 13 46.7002 1.7998c38.5 -31.9004 107.8 -31.9004 145.7 -1.5c14 11.2998 34.0996 11.0996 48.2002 0c15.7998 -12.4004 36.3994 -20.5 57.8994 -22.9004zM562.1 208.1\\nc8.10059 -0.899414 13.9004 -8.2998 13.8008 -16.2998v-31.5996c0 -9.10059 -7.60059 -16.7998 -16.7002 -16c-28.2002 2.5 -55.7998 11.5996 -79.1006 25.7998c-55 -34.0996 -135.5 -34.5996 -192 0c-55 -34.0996 -135.5 -34.5996 -192 0\\nc-23.2998 -14.5 -50.5996 -23.4004 -79.3994 -25.9004c-9.10059 -0.799805 -16.7002 6.90039 -16.7002 16v32.2002c0 7.90039 5.7002 14.9004 13.5996 15.7002c21.7002 2.2998 42.2002 10.2002 57.7002 22.4004c13.7998 10.8994 33.6006 13.1992 47.1006 2\\nc38.2998 -31.7002 107.199 -31.8008 145.199 -1.7002c13.7002 10.8994 33.2002 13 46.7002 1.7998c38.5 -31.9004 107.8 -31.9004 145.7 -1.5c14 11.2998 34.0996 11.0996 48.2002 0c15.7998 -12.4004 36.3994 -20.5 57.8994 -22.9004zM562.1 352.1\\nc8.10059 -0.899414 13.9004 -8.2998 13.8008 -16.2998v-31.5996c0 -9.10059 -7.60059 -16.7998 -16.7002 -16c-28.2002 2.5 -55.7998 11.5996 -79.1006 25.7998c-55 -34.0996 -135.5 -34.5996 -192 0c-55 -34.0996 -135.5 -34.5996 -192 0\\nc-23.2998 -14.5 -50.5996 -23.4004 -79.3994 -25.9004c-9.10059 -0.799805 -16.7002 6.90039 -16.7002 16v32.2002c0 7.90039 5.7002 14.9004 13.5996 15.7002c21.7002 2.2998 42.2002 10.2002 57.7002 22.4004c13.7998 10.8994 33.6006 13.1992 47.1006 2\\nc38.2998 -31.7002 107.199 -31.8008 145.199 -1.7002c13.7002 10.8994 33.2002 13 46.7002 1.7998c38.5 -31.9004 107.8 -31.9004 145.7 -1.5c14 11.2998 34.0996 11.0996 48.2002 0c15.7998 -12.4004 36.3994 -20.4004 57.8994 -22.9004z\\\" />\\n    <glyph glyph-name=\\\"baby\\\" unicode=\\\"&#xf77c;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M192 288c-44.2002 0 -80 35.7998 -80 80s35.7998 80 80 80s80 -35.7998 80 -80s-35.7998 -80 -80 -80zM138.6 39.2002l29.4004 -39.2002c13.2002 -17.7002 9.7002 -42.7998 -8 -56c-7.2002 -5.40039 -15.7002 -8 -24 -8c-12.0996 0 -24.0996 5.5 -32 16l-48 64\\nc-10.9004 14.5996 -10.5996 34.7998 0.799805 49l45.9004 57.4004l61.5 -51.2002zM281.3 122.4l45.9004 -57.4004c11.3994 -14.2002 11.7002 -34.4004 0.799805 -49l-48 -64c-7.7998 -10.5 -19.7998 -16 -32 -16c-8.40039 0 -16.7998 2.59961 -24 8\\nc-17.7002 13.2002 -21.2002 38.2998 -8 56l29.4004 39.2002l-25.6006 32zM376.7 303c12.7002 -18.0996 8.39941 -43 -9.7002 -55.7998l-40.5996 -28.5c-17 -11.9004 -35.4004 -20.9004 -54.4004 -27.9004v-30.7998h-160v30.9004c-19 7 -37.4004 16 -54.4004 27.8994\\nl-40.5996 28.5c-18 12.7002 -22.4004 37.6006 -9.7002 55.7002c12.7002 18 37.6006 22.4004 55.7002 9.7002l40.5996 -28.4004c52.6006 -37 124.101 -37 176.801 0l40.5996 28.5c18.0996 12.6006 43 8.2998 55.7002 -9.7998z\\\" />\\n    <glyph glyph-name=\\\"baby-carriage\\\" unicode=\\\"&#xf77d;\\\" \\nd=\\\"M144.8 431l111.2 -175h-256c0 74 35.2998 140.1 90.7998 184.4c16.7998 13.3994 42.7002 8.39941 54 -9.40039zM496 352c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-48v-64c0 -50.5996 -23 -96.4004 -60.2998 -130.7\\nc34.5996 -8.89941 60.2998 -40 60.2998 -77.2998c0 -44.2002 -35.7998 -80 -80 -80s-80 35.7998 -80 80c0 8.90039 1.7002 17.2002 4.40039 25.2002c-21.5 -5.90039 -44.6006 -9.2002 -68.4004 -9.2002s-46.7998 3.2998 -68.4004 9.2002\\nc2.60059 -8 4.40039 -16.2998 4.40039 -25.2002c0 -44.2002 -35.7998 -80 -80 -80s-80 35.7998 -80 80c0 37.2998 25.7002 68.4004 60.2998 77.2998c-37.2998 34.2998 -60.2998 80.1006 -60.2998 130.7h384v64c0 35.2998 28.7002 64 64 64h48zM80 -16\\nc17.5996 0 32 14.4004 32 32s-14.4004 32 -32 32s-32 -14.4004 -32 -32s14.4004 -32 32 -32zM400 16c0 17.5996 -14.4004 32 -32 32s-32 -14.4004 -32 -32s14.4004 -32 32 -32s32 14.4004 32 32z\\\" />\\n    <glyph glyph-name=\\\"biohazard\\\" unicode=\\\"&#xf780;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M287.9 336c-18.5 0 -36 -3.7998 -52.5 -9.5c-13.3008 10.2998 -23.6006 24.2998 -29.5 40.7002c25.1992 10.8994 53 16.8994 82.0996 16.8994c29.2002 0 57 -6.09961 82.2002 -17c-5.90039 -16.3994 -16.2002 -30.3994 -29.5 -40.6992\\nc-16.6006 5.7998 -34.2002 9.59961 -52.7998 9.59961zM163.6 9.2998c-47.5 35.5 -79.1992 90.7002 -83.2998 153.5c7.2998 2.10059 14.9004 3.10059 22.5 3.10059c9.2002 0 17.9004 -1.80078 26.4004 -4.60059c4.09961 -44.2998 26 -83.2002 58.8994 -109.6\\nc-4.09961 -16 -12.5 -30.6006 -24.5 -42.4004zM387.8 51.9004c32.7002 26.3994 54.6006 65.0996 58.7002 109.3c8.59961 2.7998 17.4004 4.7002 26.5996 4.7002c7.5 0 15 -1 22.2002 -3c-3.89941 -62.8008 -35.5996 -118 -83 -153.5c-12 11.7998 -20.3994 26.5 -24.5 42.5z\\nM501.3 256.9c34.6006 -20.4004 61 -53.3008 74.1006 -92.4004c1.2998 -3.7002 -0.200195 -7.7998 -3.5 -9.7998c-3.30078 -2 -7.5 -1.2998 -10 1.59961c-9.40039 10.7998 -19 19 -29.2002 25.1006c-57.2998 33.8994 -130.8 13.6992 -163.9 -45\\nc-33.0996 -58.7002 -13.3994 -134 43.9004 -167.9c10.2002 -6.09961 21.8994 -10.5 35.7998 -13.4004c3.7998 -0.799805 6.40039 -4.19922 6.40039 -8.09961c-0.100586 -4 -2.7002 -7.2998 -6.5 -8c-39.7002 -7.7998 -80.6006 -0.799805 -115.2 19.7002\\nc-18 10.5996 -32.9004 24.5 -45.2998 40.0996c-12.4004 -15.5996 -27.3008 -29.5 -45.3008 -40.0996c-34.5996 -20.5 -75.5 -27.5 -115.199 -19.7002c-3.80078 0.700195 -6.40039 4 -6.5 8c0 3.90039 2.69922 7.2998 6.39941 8.09961\\nc13.7998 3 25.6006 7.30078 35.7998 13.4004c57.3008 33.9004 77 109.2 43.9004 167.9c-33.0996 58.6992 -106.6 78.8994 -163.9 45c-10.1992 -6 -19.7998 -14.3008 -29.1992 -25.1006c-2.5 -2.89941 -6.7002 -3.59961 -10 -1.59961\\nc-3.30078 2.09961 -4.80078 6.09961 -3.5 9.7998c13.2998 39.0996 39.6992 71.9004 74.2998 92.4004c17.5996 10.3994 36.3994 16.5996 55.2998 19.8994c-6.09961 17.7002 -10 36.4004 -10 56.2002c0 41 14.5996 80.7998 41 112.2c2.5 3 6.59961 3.7002 10 1.7998\\nc3.2998 -1.90039 4.7998 -6 3.59961 -9.7002c-4.39941 -13.7998 -6.59961 -26.3994 -6.59961 -38.5c0 -67.7998 53.7998 -122.899 120 -122.899s120 55.0996 120 122.899c0 12.2002 -2.09961 24.7002 -6.59961 38.5c-1.2002 3.7002 0.299805 7.7998 3.59961 9.7002\\nc3.40039 1.90039 7.5 1.2002 10 -1.7998c26.5 -31.4004 41 -71.2002 41 -112.2c0 -19.7998 -4 -38.5 -10 -56.2002c19 -3.2998 37.7002 -9.5 55.2998 -19.8994zM287.9 127.9c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"blog\\\" unicode=\\\"&#xf781;\\\" \\nd=\\\"M172.2 221.2c75.5 -15 129.899 -89.2998 112.5 -172.2c-11.4004 -54.2998 -55.2998 -98.2998 -109.7 -109.7c-92.9004 -19.5 -175 51.2002 -175 140.7v248c0 13.2998 10.7002 24 24 24h48c13.2998 0 24 -10.7002 24 -24v-248c0 -26.5 21.5 -48 48 -48s48 21.5 48 48\\nc0 20.5996 -13.0996 38.2002 -31.2998 45c-9.60059 3.59961 -16.7002 11.7998 -16.7002 22v50.4004c0 14.8994 13.5996 26.6992 28.2002 23.7998zM209 448c163.2 -8.59961 294.4 -139.8 302.9 -303c0.5 -9.2002 -6.80078 -17 -16 -17h-32.1006\\nc-8.39941 0 -15.3994 6.59961 -15.8994 15c-7.5 129.5 -111.5 234.5 -240.9 241.5c-8.40039 0.400391 -15 7.40039 -15 15.9004v31.5996c0 9.2002 7.7998 16.5 17 16zM209.3 352c110.101 -8.5 198.2 -96.5996 206.601 -206.7\\nc0.699219 -9.2998 -6.80078 -17.2998 -16.1006 -17.2998h-32.2002c-8.2998 0 -15.0996 6.40039 -15.8994 14.7002c-6.90039 77 -68.1006 138.899 -144.9 145.2c-8.2998 0.599609 -14.7998 7.5 -14.7998 15.8994v32.1006c0 9.39941 8 16.7998 17.2998 16.0996z\\\" />\\n    <glyph glyph-name=\\\"calendar-day\\\" unicode=\\\"&#xf783;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0 -16v272h448v-272c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48zM64 176v-96c0 -8.7998 7.2002 -16 16 -16h96c8.7998 0 16 7.2002 16 16v96c0 8.7998 -7.2002 16 -16 16h-96c-8.7998 0 -16 -7.2002 -16 -16zM400 384c26.5 0 48 -21.5 48 -48v-48h-448v48\\nc0 26.5 21.5 48 48 48h48v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48h128v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48h48z\\\" />\\n    <glyph glyph-name=\\\"calendar-week\\\" unicode=\\\"&#xf784;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M0 -16v272h448v-272c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48zM64 176v-64c0 -8.7998 7.2002 -16 16 -16h288c8.7998 0 16 7.2002 16 16v64c0 8.7998 -7.2002 16 -16 16h-288c-8.7998 0 -16 -7.2002 -16 -16zM400 384c26.5 0 48 -21.5 48 -48v-48h-448\\nv48c0 26.5 21.5 48 48 48h48v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48h128v48c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-48h48z\\\" />\\n    <glyph glyph-name=\\\"candy-cane\\\" unicode=\\\"&#xf786;\\\" \\nd=\\\"M497.5 356c35.7002 -75.5 2.7998 -166.1 -68.9004 -209l-347.3 -206.5c-5.2002 -3 -10.7998 -4.5 -16.3994 -4.5c-10.9004 0 -21.5 5.59961 -27.5 15.5996l-32.8008 54.9004c-9.09961 15.2002 -4.19922 34.7998 11 43.9004l353.601 210.1\\nc15.0996 9.09961 20.0996 28.7998 11 43.9004c-6 10 -16.6006 15.5996 -27.5 15.5996c-5.60059 0 -11.2998 -1.40039 -16.4004 -4.5l-27.5 -16.4004c-5.2002 -3 -10.7998 -4.5 -16.3994 -4.5c-10.9004 0 -21.5 5.60059 -27.5 15.6006l-32.8008 54.8994\\nc-9.09961 15.2002 -4.19922 34.8008 11 43.9004l27.5 16.4004c25.6006 15.2998 53.9004 22.5996 81.8008 22.5996c59.3994 0 117.199 -33.0996 145.1 -92zM319.8 343c8.5 5.09961 18.1006 7.59961 27.9004 8.40039l-20.6006 61.7998\\nc-10.5 -2.10059 -20.5996 -5.5 -30.2998 -10.2002l20.5 -61.5zM145.9 16.2002l30.7998 18.2998l-60.5 38.5l-30.7998 -18.2998zM253.4 80.0996l30.7998 18.3008l-60.5 38.5l-30.7998 -18.3008zM364.3 146l30.7998 18.2998l-60.5 38.5l-30.7998 -18.2998zM384.7 343.3\\nc9.2002 -5.39941 17.2002 -13 22.8994 -22.2998l45.7002 45.7002c-6.59961 8.5 -14.2002 16.0996 -22.5996 22.5996zM466.8 235.5c4.60059 9.7998 8 20 10.1006 30.4004l-60.4004 20.0996c-0.0996094 -4.5 -0.700195 -9.09961 -1.7998 -13.5996\\nc-1.60059 -6.2002 -4.2002 -11.8008 -7.40039 -17.1006z\\\" />\\n    <glyph glyph-name=\\\"carrot\\\" unicode=\\\"&#xf787;\\\" \\nd=\\\"M298.2 291.4c61.7002 -30.1006 87.2998 -104.5 57.2002 -166.2c-12.6006 -25.7998 -33.1006 -45.4004 -57.1006 -57.1006l-102 -49.7998l-57 57c-6.2002 6.2002 -16.2998 6.2002 -22.5996 0s-6.2998 -16.3994 0 -22.5996l49.2002 -49.2002l-133.601 -65.2002\\nc-11.0996 -5.39941 -24.5996 -0.799805 -30 10.2998c-3.09961 6.40039 -2.89941 13.7002 0 19.7002l128.101 262.7l50.1992 -50.2002c3.10059 -3.09961 7.2002 -4.7002 11.3008 -4.7002c4.09961 0 8.19922 1.60059 11.2998 4.7002c6.2998 6.2002 6.2998 16.2998 0 22.6006\\nl-55.2002 55.1992c35.7002 43.3008 97.5 58.5 150.2 32.8008zM390.3 326.3c40.7002 19.5 88.7998 9.40039 121.7 -30.2998c-41.5996 -50.2998 -107.5 -52.5 -151.9 -7.90039l-8 8c-44.5996 44.4004 -42.3994 110.2 7.90039 151.9\\nc39.7002 -32.9004 49.7998 -81 30.2998 -121.7z\\\" />\\n    <glyph glyph-name=\\\"cash-register\\\" unicode=\\\"&#xf788;\\\" \\nd=\\\"M511.1 69.2002c0.600586 -3.5 0.900391 -7 0.800781 -10.5v-90.7002c0 -17.7002 -14.3008 -32 -32 -32h-448c-17.7002 0 -32 14.2998 -32 32v90.7998c0 3.5 0.299805 7 0.899414 10.5l26.7002 160c2.59961 15.4004 16 26.7002 31.5996 26.7002h84.9004v64h-96\\nc-8.7998 0 -16 7.2002 -16 16v96c0 8.7998 7.2002 16 16 16h256c8.7998 0 16 -7.2002 16 -16v-96.0996c0 -8.80078 -7.2002 -16 -16 -16h-96v-64h244.8c15.7002 0 29 -11.3008 31.6006 -26.7002zM280 200v-16c0 -8.7998 7.2002 -16 16 -16h16c8.7998 0 16 7.2002 16 16v16\\nc0 8.7998 -7.2002 16 -16 16h-16c-8.7998 0 -16 -7.2002 -16 -16zM248 136c-8.7998 0 -16 -7.2002 -16 -16v-16c0 -8.7998 7.2002 -16 16 -16h16c8.7998 0 16 7.2002 16 16v16c0 8.7998 -7.2002 16 -16 16h-16zM216 216h-16c-8.7998 0 -16 -7.2002 -16 -16v-16\\nc0 -8.7998 7.2002 -16 16 -16h16c8.7998 0 16 7.2002 16 16v16c0 8.7998 -7.2002 16 -16 16zM80 368h192v32h-192v-32zM120 168c8.7998 0 16 7.2002 16 16v16c0 8.7998 -7.2002 16 -16 16h-16c-8.7998 0 -16 -7.2002 -16 -16v-16c0 -8.7998 7.2002 -16 16 -16h16zM136 104\\nc0 -8.7998 7.2002 -16 16 -16h16c8.7998 0 16 7.2002 16 16v16c0 8.7998 -7.2002 16 -16 16h-16c-8.7998 0 -16 -7.2002 -16 -16v-16zM352 -8v16c0 4.40039 -3.59961 8 -8 8h-176c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h176c4.40039 0 8 3.59961 8 8\\nzM376 104v16c0 8.7998 -7.2002 16 -16 16h-16c-8.7998 0 -16 -7.2002 -16 -16v-16c0 -8.7998 7.2002 -16 16 -16h16c8.7998 0 16 7.2002 16 16zM424 184v16c0 8.7998 -7.2002 16 -16 16h-16c-8.7998 0 -16 -7.2002 -16 -16v-16c0 -8.7998 7.2002 -16 16 -16h16\\nc8.7998 0 16 7.2002 16 16z\\\" />\\n    <glyph glyph-name=\\\"compress-arrows-alt\\\" unicode=\\\"&#xf78c;\\\" \\nd=\\\"M200 160c13.2998 0 24 -10.7002 24 -24v-112c0 -21.4004 -25.7998 -32.0996 -40.9004 -17l-31.0996 33l-99.2998 -99.2998c-6.2002 -6.2002 -16.4004 -6.2002 -22.6006 0l-25.3994 25.3994c-6.2002 6.2002 -6.2002 16.4004 0 22.6006l99.2002 99.2998l-32.9004 31\\nc-15.0996 15.2002 -4.40039 41 17 41h112zM312 224c-13.2998 0 -24 10.7002 -24 24v112c0 21.4004 25.7998 32.0996 40.9004 17l31.0996 -33l99.2998 99.2998c6.2002 6.2002 16.4004 6.2002 22.6006 0l25.3994 -25.3994c6.2002 -6.2002 6.2002 -16.4004 0 -22.6006\\nl-99.2998 -99.2998l33 -31c15.0996 -15.0996 4.40039 -41 -17 -41h-112zM408 88l99.2998 -99.4004c6.2002 -6.19922 6.2002 -16.3994 0 -22.5996l-25.3994 -25.4004c-6.2002 -6.19922 -16.4004 -6.19922 -22.6006 0l-99.2998 99.3008l-31 -32.9004\\nc-15.0996 -15.0996 -41 -4.40039 -41 17v112c0 13.2998 10.7002 24 24 24h112c21.4004 0 32.0996 -25.7998 17 -40.9004zM183 376.9c15.0996 15.0996 41 4.39941 41 -16.9004v-112c0 -13.2998 -10.7002 -24 -24 -24h-112c-21.4004 0 -32.0996 25.7998 -17 40.9004\\nl33 31.0996l-99.2998 99.2998c-6.2002 6.2002 -6.2002 16.4004 0 22.6006l25.3994 25.3994c6.2002 6.2002 16.4004 6.2002 22.6006 0l99.2998 -99.2998z\\\" />\\n    <glyph glyph-name=\\\"dumpster\\\" unicode=\\\"&#xf793;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M560 288h-97.2998l-25.6006 128h98.9004c7.2998 0 13.7002 -5 15.5 -12.0996l24 -96c2.5 -10.1006 -5.09961 -19.9004 -15.5 -19.9004zM272 416v-128h-126.1l25.5996 128h100.5zM404.5 416l25.5996 -128h-126.1v128h100.5zM16 288c-10.4004 0 -18 9.7998 -15.5 19.9004\\nl24 96c1.7998 7.09961 8.2002 12.0996 15.5 12.0996h98.9004l-25.6006 -128h-97.2998zM560 224c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-28l-20 -160v-16c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v16h-320v-16\\nc0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v16l-20 160h-28c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h20l-4 32h512l-4 -32h20z\\\" />\\n    <glyph glyph-name=\\\"dumpster-fire\\\" unicode=\\\"&#xf794;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M418.7 343.9c-19.7002 -17.6006 -37.7002 -36.5 -53.9004 -55.8008h-60.7998v128h100.5l14.4004 -72zM272 416v-128h-126.1l25.5996 128h100.5zM461.3 343.9l-11.8994 10.5996l-12.3008 61.5h98.9004c7.2998 0 13.7002 -5 15.4004 -12.0996l24 -96\\nc0.199219 -0.800781 -0.100586 -1.5 0 -2.30078c-1 1 -2 2.2002 -3.10059 3.10059l-21.2998 19l-21.2998 -19c-5.90039 -5.2002 -11.6006 -10.7002 -17.2998 -16.2998c-15.6006 17.7998 -32.9004 35.1992 -51.1006 51.5zM16 288c-10.4004 0 -18 9.7998 -15.5 19.9004l24 96\\nc1.7998 7.09961 8.2002 12.0996 15.5 12.0996h98.9004l-25.6006 -128h-97.2998zM340.6 256c-32.6992 -46.7002 -52.5996 -93.7002 -52.5996 -129.6c0 -48.5 18.5996 -92.7002 48.7998 -126.4h-208.8v-16c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v16\\nl-20 160h-28c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h20l-4 32h308.6zM551.1 284.8c51.8008 -46.2002 88.9004 -121.8 88.8008 -158.399c0 -87.5 -71.6006 -158.4 -160 -158.4c-88.4004 0 -160 70.9004 -160 158.4c0 49.2998 49.7998 130.899 120 193.6\\nc27.3994 -24.4004 51.5 -50.5996 71 -76.4004c11.8994 14 25.2998 27.9004 40.1992 41.2002zM532.5 55.4004c33.4004 24.1992 41.2002 71.0996 22.5996 107.8c-2.2998 4.5 -4.89941 9.2002 -7.69922 14l-39.8008 -47s-62.3994 82.5 -67.0996 88.0996\\nc-32.9004 -40.8994 -49.4004 -64.7998 -49.4004 -91.8994c0 -54.5 39.9004 -88 88.9004 -88c19.5996 0 37.7998 6.2998 52.5 17z\\\" />\\n    <glyph glyph-name=\\\"ethernet\\\" unicode=\\\"&#xf796;\\\" \\nd=\\\"M496 256c8.7998 0 16 -7.2002 16 -16v-224c0 -8.7998 -7.2002 -16 -16 -16h-80v128h-32v-128h-64v128h-32v-128h-64v128h-32v-128h-64v128h-32v-128h-80c-8.7998 0 -16 7.2002 -16 16v224c0 8.7998 7.2002 16 16 16h48v48c0 8.7998 7.2002 16 16 16h48v48\\nc0 8.7998 7.2002 16 16 16h224c8.7998 0 16 -7.2002 16 -16v-48h48c8.7998 0 16 -7.2002 16 -16v-48h48z\\\" />\\n    <glyph glyph-name=\\\"gifts\\\" unicode=\\\"&#xf79c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M240.6 253.9c-27.7998 -6.90039 -48.5996 -32 -48.5996 -61.9004v-224c0 -11.7002 3.40039 -22.5 8.90039 -32h-168.9c-17.7002 0 -32 14.2998 -32 32v352c0 17.7002 14.2998 32 32 32h29.4004l-30.7002 22c-7.2002 5.09961 -8.7998 15.0996 -3.7002 22.2998l9.2998 13\\nc5.10059 7.2002 15.1006 8.7998 22.2998 3.7002l32.1006 -22.7998l-11.5 30.5996c-3.2002 8.2002 1 17.5 9.2998 20.6006l15 5.59961c8.2998 3.09961 17.5 -1.09961 20.5996 -9.40039l19.9004 -53.0996l19.9004 53c3.09961 8.2998 12.2998 12.5 20.5996 9.40039l15 -5.60059\\nc8.2998 -3.09961 12.5 -12.2998 9.40039 -20.5996l-11.5 -30.6006l32 22.9004c7.19922 5.2002 17.1992 3.5 22.2998 -3.7002l9.2998 -13c5.2002 -7.2002 3.5 -17.2002 -3.7002 -22.2998l-30.7002 -22h29.4004c12.7002 0 23.4004 -7.5 28.5996 -18.2998\\nc-26.6992 -18.6006 -42.0996 -49 -44 -79.7998zM224 -32v96h192v-128h-160c-17.7002 0 -32 14.2998 -32 32zM448 -64v128h192v-96c0 -17.7002 -14.2998 -32 -32 -32h-160zM608 224c17.7002 0 32 -14.2998 32 -32v-96h-192v128h-15.2998l-0.700195 0.200195\\nl-0.700195 -0.200195h-15.2998v-128h-192v96c0 17.7002 14.2998 32 32 32h20.4004c-2.7002 7.59961 -4.40039 15.5 -4.40039 23.7998c0 35.5 27 72.2002 72.0996 72.2002c48 0 75.8008 -47.7002 87.9004 -75.2998c12 27.5996 39.7998 75.2998 87.9004 75.2998\\nc45.0996 0 72.0996 -36.7002 72.0996 -72.2002c0 -8.2998 -1.7998 -16.2002 -4.40039 -23.7998h20.4004zM336 224h52.5996c-8.89941 20.5996 -25.7998 48 -44.5 48c-17.6992 0 -24.0996 -14.5 -24.0996 -24.2002c0 -5.2002 1.5 -12.5996 8.7998 -19\\nc2.10059 -1.7998 4.5 -3.39941 7.2002 -4.7998zM535.2 228.8c7.2998 6.40039 8.7998 13.7998 8.7998 19c0 9.7002 -6.40039 24.2002 -24.0996 24.2002c-18.7002 0 -35.7002 -27.7002 -44.5 -48h52.5996c2.7002 1.40039 5.09961 3 7.2002 4.7998z\\\" />\\n    <glyph glyph-name=\\\"glass-cheers\\\" unicode=\\\"&#xf79f;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M639.4 14.4004c1.69922 -4.10059 -0.300781 -8.7002 -4.30078 -10.4004l-162.399 -67.4004c-4 -1.69922 -8.7002 0.200195 -10.4004 4.30078c-8.5 20.3994 1.2002 43.7998 21.6006 52.2998l22.0996 9.2002l-39.2998 103.6\\nc-4.40039 -0.5 -8.7998 -1.2998 -13.1006 -1.2998c-51.6992 0 -99.3994 33.0996 -113.399 85.2998l-20.2002 75.4004l-20.2002 -75.4004c-14 -52.2002 -61.7002 -85.2998 -113.399 -85.2998c-4.30078 0 -8.7002 0.799805 -13.1006 1.2998l-39.3994 -103.6l22.0996 -9.2002\\nc20.4004 -8.5 30 -31.9004 21.5996 -52.2998c-1.69922 -4.10059 -6.2998 -6 -10.3994 -4.30078l-162.3 67.4004c-4.10059 1.7002 -6 6.40039 -4.30078 10.5c8.5 20.4004 31.8008 30.0996 52.2002 21.5996l22.1006 -9.19922l38.6992 101.899\\nc-47.8994 34.9004 -64.6992 100.2 -34.5 152.7l86.6006 150.5c8 13.9004 25.0996 19.7998 40 13.5996l114.3 -47.3994l114.3 47.3994c14.9004 6.10059 32 0.300781 40 -13.5996l86.6006 -150.5c30.2998 -52.5 13.3994 -117.8 -34.5 -152.8l38.6992 -101.9l22.1006 9.2002\\nc20.3994 8.5 43.7998 -1.2002 52.2002 -21.5996zM275.9 285.9l18.8994 70.6992l-94.5 39.2002l-36.5 -63.3994zM364.1 285.9l112.101 46.5l-36.5 63.3994l-94.5 -39.2002z\\\" />\\n    <glyph glyph-name=\\\"glass-whiskey\\\" unicode=\\\"&#xf7a0;\\\" \\nd=\\\"M480 416c19.5 0 34.4004 -17.2002 31.7002 -36.5l-55.6006 -356.5c-4.5 -31.5 -31.5996 -54.9004 -63.3994 -54.9004h-273c-31.9004 0 -58.9004 23.4004 -63.4004 54.9004l-56 356.5c-2.7002 19.2998 12.2002 36.5 31.7002 36.5h448zM442.6 352h-373.199l30.1992 -192\\nh313z\\\" />\\n    <glyph glyph-name=\\\"globe-europe\\\" unicode=\\\"&#xf7a2;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM448 192c0 110.3 -89.7002 200 -200.2 200c-1.89941 0 -3.7998 -0.200195 -5.7002 -0.299805l-28.8994 -21.7002c-2 -1.5 -3.2002 -3.90039 -3.2002 -6.40039v-20\\nc0 -4.39941 3.59961 -8 8 -8h16c4.40039 0 8 3.60059 8 8v8l16 16h20.7002c6.2002 0 11.2998 -5.09961 11.2998 -11.2998c0 -3 -1.2002 -5.89941 -3.2998 -8l-26.7998 -26.7998c-1.2002 -1.2002 -2.7002 -2.09961 -4.40039 -2.7002l-40 -13.2998\\nc-3.2998 -1.09961 -5.5 -4.2002 -5.5 -7.59961c0 -6.60059 -2.59961 -12.9004 -7.2002 -17.5l-20.0996 -20.1006c-3 -3 -4.7002 -7.09961 -4.7002 -11.2998v-25.2998c0 -8.7998 7.2002 -16 16 -16h22.0996c6.10059 0 11.6006 3.39941 14.3008 8.7998l9.39941 18.7002\\nc1.40039 2.7002 4.2002 4.39941 7.2002 4.39941h3.09961c4.40039 0 8 -3.59961 8 -8c0 -4.39941 3.60059 -8 8 -8h16c4.40039 0 8 3.60059 8 8v2.2002c0 3.5 2.2002 6.5 5.5 7.60059l31.6006 10.5c6.5 2.19922 10.8994 8.2998 10.8994 15.1992v4.5\\nc0 8.80078 7.2002 16 16 16h36.7002c6.2002 0 11.2998 -5.09961 11.2998 -11.2998v-9.39941c0 -6.2002 -5.09961 -11.3008 -11.2998 -11.3008h-32c-3 0 -5.89941 -1.19922 -8 -3.2998l-9.39941 -9.39941c-2.10059 -2.10059 -3.30078 -5 -3.30078 -8\\nc0 -6.2002 5.10059 -11.3008 11.3008 -11.3008h16c3 0 5.89941 -1.19922 8 -3.2998l9.39941 -9.39941c2.10059 -2.10059 3.2998 -5 3.2998 -8v-8.7002l-12.5 -12.5c-4.59961 -4.60059 -4.59961 -12.1006 -0.0996094 -16.7002l32 -32.5996\\nc3 -3.10059 7.09961 -4.80078 11.4004 -4.80078h20.2998c6.89941 20.2002 10.7998 41.9004 10.7998 64.4004zM130.1 298.9c0 -6.2002 5.10059 -11.3008 11.3008 -11.3008h16c3 0 5.89941 1.2002 8 3.30078l9.39941 9.39941c2.10059 2.10059 3.2998 5 3.2998 8v16\\nc0 6.2002 -5.09961 11.2998 -11.2998 11.2998c-3 0 -5.89941 -1.19922 -8 -3.2998l-25.3994 -25.3994c-2.10059 -2.10059 -3.30078 -5 -3.30078 -8zM258.1 -7.5c71.1006 3.59961 132.5 44.2002 164.9 103.1h-13.4004c-4.7998 0 -9.5 1.90039 -12.8994 5.30078\\nl-17.2998 17.2998c-6 6 -14.1006 9.39941 -22.6006 9.39941h-18.2998l-43.2002 37.1006c-8.2002 7 -18.7002 10.8994 -29.5996 10.8994h-31.2002c-8.2002 0 -16.2998 -2.2998 -23.4004 -6.5l-42.8994 -25.6992c-13.7002 -8.2002 -22.1006 -23 -22.1006 -39v-23.9004\\nc0 -14.2998 6.7002 -27.7998 18.2002 -36.4004l22.2002 -16.6992c8.7002 -6.5 24.5996 -11.8008 35.4004 -11.8008h20.1992c8.80078 0 16 -7.19922 16 -16v-7.09961z\\\" />\\n    <glyph glyph-name=\\\"grip-lines\\\" unicode=\\\"&#xf7a4;\\\" \\nd=\\\"M496 160c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-480c-8.7998 0 -16 7.2002 -16 16v32c0 8.7998 7.2002 16 16 16h480zM496 288c8.7998 0 16 -7.2002 16 -16v-32c0 -8.7998 -7.2002 -16 -16 -16h-480c-8.7998 0 -16 7.2002 -16 16v32\\nc0 8.7998 7.2002 16 16 16h480z\\\" />\\n    <glyph glyph-name=\\\"grip-lines-vertical\\\" unicode=\\\"&#xf7a5;\\\" horiz-adv-x=\\\"256\\\" \\nd=\\\"M96 -48c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v480c0 8.7998 7.2002 16 16 16h32c8.7998 0 16 -7.2002 16 -16v-480zM224 -48c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v480c0 8.7998 7.2002 16 16 16h32\\nc8.7998 0 16 -7.2002 16 -16v-480z\\\" />\\n    <glyph glyph-name=\\\"guitar\\\" unicode=\\\"&#xf7a6;\\\" \\nd=\\\"M502.63 409c5.15625 -5.1709 9.33984 -15.293 9.33984 -22.5947c0 -7.31543 -4.19727 -17.4521 -9.37012 -22.625l-46.3301 -46.3203c-3.24707 -3.25684 -9.4248 -7.07812 -13.7891 -8.53027l-36.4805 -12.1602l-76.2402 -76.2393\\nc8.79004 -12.2002 15.7705 -25.5605 19.1602 -40.2002c7.74023 -33.3896 0.870117 -66.8701 -22 -89.75c-7.87793 -7.8418 -22.877 -16.9141 -33.4795 -20.25c-18.54 -6.00977 -32.6709 -23.29 -34.4307 -42.1396c-2.29004 -23.8105 -11.4502 -45.8301 -28.4502 -62.71\\nc-45.5596 -45.4805 -127.5 -37.3809 -182.979 18.0693c-55.4805 55.4502 -63.6904 137.45 -18.0498 182.96c16.8799 16.9902 38.9102 26.1699 62.6094 28.4404c18.9404 1.76953 36.1504 15.8994 42.1504 34.46c3.33105 10.6016 12.3984 25.5957 20.2402 33.4697\\nc22.8799 22.8799 56.4297 29.7803 89.8799 22c14.5996 -3.39941 27.9395 -10.3799 40.0996 -19.1396l76.2598 76.2598l12.1602 36.5098c1.45215 4.36426 5.27344 10.542 8.53027 13.79l46.2803 46.3301c5.17383 5.1748 15.3115 9.375 22.6299 9.375\\nc7.31738 0 17.4561 -4.2002 22.6299 -9.375zM208 96c26.4961 0 48 21.5039 48 48s-21.5039 48 -48 48s-48 -21.5039 -48 -48s21.5039 -48 48 -48z\\\" />\\n    <glyph glyph-name=\\\"heart-broken\\\" unicode=\\\"&#xf7a9;\\\" \\nd=\\\"M473.7 374.2c48.7002 -49.7998 50.7998 -129.101 7.2998 -182.101l-212.2 -218.699c-7.09961 -7.30078 -18.5996 -7.30078 -25.7002 0l-212.1 218.6c-43.5 53.0996 -41.4004 132.4 7.2998 182.2l2.40039 2.39941c46.2998 47.4004 119 51.8008 170.7 14l28.5996 -86.5\\nl-96 -64l144 -144l-48 128l96 64l-34.2998 103.4c51.5996 36.9004 123.6 32.2002 169.6 -14.7998z\\\" />\\n    <glyph glyph-name=\\\"holly-berry\\\" unicode=\\\"&#xf7aa;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M144 256c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM256 304c0 26.5 21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48zM224 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48z\\nM207.8 212.9c-0.399414 -39.8008 7.40039 -78.1006 22.9004 -112.301c4 -8.89941 -2 -19.1992 -11.7002 -20.1992c-15.2002 -1.5 -30.4004 -4.60059 -45.2998 -9.10059c-14.9004 -4.5 -23.7998 -19.8994 -20.2002 -35.0996s8.5 -29.9004 14.7002 -43.7998\\nc4 -8.90039 -1.90039 -19.3008 -11.6006 -20.2002c-35.8994 -3.40039 -71.5996 -14.9004 -104.8 -33.9004c-12.3994 -7.09961 -27.5 1.60059 -27.5996 16c-0.100586 38.2002 -8 74.9004 -23 107.7c-4 8.90039 2 19.2002 11.7002 20.2002\\nc15.1992 1.5 30.3994 4.59961 45.2998 9.09961c14.8994 4.5 23.7998 19.9004 20.2002 35.1006c-3.60059 15.1992 -8.5 29.8994 -14.7002 43.7998c-4 8.89941 1.89941 19.2998 11.5996 20.2002c37.2998 3.5 74.4004 15.8994 108.7 36.1992\\nc10.7002 6.40039 23.9004 -1.2998 23.7998 -13.6992zM435 82.4004c9.7002 -1 15.7998 -11.4004 11.5 -20.1006c-15 -32.7002 -22.7998 -69.5 -23 -107.7c0 -14.3994 -15.0996 -23.0996 -27.5996 -16c-33.2002 19 -68.9004 30.5 -104.801 33.9004\\nc-9.69922 0.900391 -15.5996 11.2998 -11.5996 20.2002c6.2002 14 11.0996 28.5996 14.7002 43.7998c3.59961 15.2002 -5.2998 30.5996 -20.2002 35.0996c-4.90039 1.5 -9.90039 2.5 -14.7998 3.7002c5.7998 12.2998 6.2998 26.5 0.599609 38.9004\\nc-12.8994 28.2998 -19.7002 60.7002 -19.8994 94c0 1.7002 0.199219 3.2998 0.199219 4.89941c-0.0996094 12.3008 13.1006 20 23.8008 13.7002c34.2998 -20.2998 71.3994 -32.7002 108.699 -36.2002c9.7002 -0.899414 15.6006 -11.2998 11.6006 -20.1992\\nc-6.2002 -14 -11.1006 -28.6006 -14.7002 -43.8008c-3.59961 -15.1992 5.2998 -30.5996 20.2002 -35.0996c15 -4.40039 30.0996 -7.5 45.2998 -9.09961z\\\" />\\n    <glyph glyph-name=\\\"horse-head\\\" unicode=\\\"&#xf7ab;\\\" \\nd=\\\"M509.8 115.5c4.60059 -11.7998 1.7998 -25.2998 -7.09961 -34.4004l-45.2998 -39.7998c-6 -6 -14.1006 -9.39941 -22.6006 -9.39941h-50.2998c-10.2998 0 -20 4.89941 -26 13.2998l-46 63.8994c-13.7998 -8.09961 -29.5996 -13.1992 -46.7998 -13.1992\\nc-39.2002 0 -72.6006 23.6992 -87.4004 57.3994c-2.2998 5.10059 -9 6.2998 -12.8994 2.40039l-12.1006 -12.1006c-2.5 -2.39941 -3.2002 -6.19922 -1.59961 -9.2998c19.7002 -38.8994 58.7002 -66.0996 104.3 -69.5996v-0.700195l40.7998 -81.7002\\nc10.7002 -21.2998 -4.7998 -46.2998 -28.5996 -46.2998h-236.2c-17.7002 0 -32 14.2998 -32 32v81.2002c0 159.899 35.9004 275.399 166.9 322.5l202.199 75.7002c4.90039 1.7998 10.7002 -1.10059 12 -6.10059c12.1006 -46.3994 -16.1992 -71.7002 -34.1992 -82.2998\\nc42.5996 -8.2002 78.0996 -38 93 -79.2002zM328 224c13.2998 0 24 10.7002 24 24s-10.7002 24 -24 24s-24 -10.7002 -24 -24s10.7002 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"icicles\\\" unicode=\\\"&#xf7ad;\\\" \\nd=\\\"M511.4 410.1l-87.5 -467.699c-1.7002 -8.60059 -14 -8.60059 -15.7002 0l-66.7002 363.8l-45.7998 -172.5c-2.2998 -7.60059 -13 -7.60059 -15.2998 0l-34.1006 133.399l-46.5 -196.899c-1.89941 -8.2998 -13.7002 -8.2998 -15.5996 0l-44.2002 187.3l-36.4004 -124.1\\nc-2.39941 -7.2002 -12.5996 -7.2002 -15.0996 0l-87.0996 273.399c-6.2002 20.5 9.19922 41.2002 30.5996 41.2002h448c20 0 35.0996 -18.2002 31.4004 -37.9004z\\\" />\\n    <glyph glyph-name=\\\"igloo\\\" unicode=\\\"&#xf7ae;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M320 414.1v-126.1h-271.4c51.6006 77.2002 139.601 128 239.4 128c10.7998 0 21.5 -0.700195 32 -1.90039zM96 256v-128h-96c0 46 11.0996 89.4004 30.2998 128h65.7002zM352 408.6c72.7998 -16.5 135.2 -60.5 175.4 -120.6h-175.4v120.6zM480 128v128h65.7002\\nc19.2002 -38.5996 30.2998 -82 30.2998 -128h-96zM416 64c0 11.0996 -1.90039 21.7002 -4.5 32h164.5v-96c0 -17.7002 -14.2998 -32 -32 -32h-128v96zM448 256v-128h-49.7998c-22.2002 38.0996 -63 64 -110.2 64s-88 -25.9004 -110.2 -64h-49.7998v128h320zM0 0v96h164.5\\nc-2.59961 -10.2998 -4.5 -20.9004 -4.5 -32v-96h-128c-17.7002 0 -32 14.2998 -32 32zM288 160c53 0 96 -43 96 -96v-96h-192v96c0 53 43 96 96 96z\\\" />\\n    <glyph glyph-name=\\\"mitten\\\" unicode=\\\"&#xf7b5;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M368 32c8.7998 0 16 -7.2002 16 -16v-64c0 -8.7998 -7.2002 -16 -16 -16h-320c-8.7998 0 -16 7.2002 -16 16v64c0 8.7998 7.2002 16 16 16h320zM425 241.1c27.0996 -22.5996 30.7998 -62.8994 8.09961 -90.0996l-72.5 -87h-309l-47.8994 207.6\\nc-17.9004 77.5 30.5 154.801 107.899 172.7c77.4004 17.9004 154.801 -30.5 172.801 -108l29.5996 -128.399l20.9004 25c22.5996 27.1992 62.8994 30.7998 90.0996 8.19922z\\\" />\\n    <glyph glyph-name=\\\"mug-hot\\\" unicode=\\\"&#xf7b6;\\\" \\nd=\\\"M127.1 301.5c-2.69922 16.5996 -10.3994 31.9004 -22.3994 44.0996c-22.6006 23.1006 -36.7002 52.5 -40.6006 84.4004c-1.09961 9.5 6.5 18 16.3008 18h16.3994c8.2002 0 15 -5.90039 16.1006 -13.7998c2.7998 -20.2002 12 -38.7998 26.3994 -53.5\\nc20.2002 -20.5 32.7998 -46.5 36.6006 -74.7002c1.2998 -9.5 -6.5 -18 -16.3008 -18h-16.5c-8 0 -14.6992 5.7998 -16 13.5zM239.1 301.5c-2.69922 16.5996 -10.3994 31.9004 -22.3994 44.0996c-22.6006 23.1006 -36.7002 52.5 -40.6006 84.4004\\nc-1.19922 9.5 6.5 18 16.3008 18h16.3994c8.2002 0 15 -5.90039 16.1006 -13.7998c2.7998 -20.2002 12 -38.7998 26.3994 -53.5c20.2002 -20.5 32.7998 -46.5 36.6006 -74.7002c1.2998 -9.5 -6.5 -18 -16.3008 -18h-16.5c-8 0 -14.6992 5.7998 -16 13.5zM400 256\\nc61.7998 0 112 -50.2002 112 -112s-50.2002 -112 -112 -112h-16c0 -53 -43 -96 -96 -96h-192c-53 0 -96 43 -96 96v192c0 17.7002 14.2998 32 32 32h368zM400 96c26.5 0 48 21.5 48 48s-21.5 48 -48 48h-16v-96h16z\\\" />\\n    <glyph glyph-name=\\\"radiation\\\" unicode=\\\"&#xf7b9;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M328.2 192.2c0 28.5996 -15.2002 53.5 -37.7998 67.7998l80.3994 128.4c4.7998 7.69922 15.2998 10.0996 22.7002 4.7998c58.0996 -42 97.4004 -108.4 102.5 -184.2c0.599609 -9.09961 -7.09961 -16.7998 -16.2002 -16.7998h-151.6zM290.4 124.5l80.3994 -128.5\\nc4.7998 -7.59961 2.40039 -18.0996 -5.59961 -22.4004c-34.9004 -18.7998 -74.7998 -29.5996 -117.2 -29.5996s-82.2998 10.7998 -117.2 29.5996c-8 4.30078 -10.3994 14.7002 -5.59961 22.4004l80.3994 128.5c12.4004 -7.7002 26.8008 -12.4004 42.4004 -12.4004\\ns30.0996 4.7002 42.4004 12.4004zM248 144.2c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM16.2002 192.2c-9.10059 0 -16.7998 7.7002 -16.2002 16.7002c5.09961 75.7998 44.4004 142.199 102.5 184.199\\nc7.40039 5.40039 17.9004 2.90039 22.7002 -4.7998l80.3994 -128.399c-22.5996 -14.2002 -37.7998 -39.1006 -37.7998 -67.7002h-151.6z\\\" />\\n    <glyph glyph-name=\\\"radiation-alt\\\" unicode=\\\"&#xf7ba;\\\" horiz-adv-x=\\\"496\\\" \\nd=\\\"M312 192c0 22.7998 -12.0996 42.7998 -30.0996 54l41.6992 66.7998c5.2002 8.2998 16.4004 9.90039 24 3.7998c32.5 -26 54.9004 -64.1992 59.5 -107.8c0.900391 -9.09961 -6.7998 -16.7998 -16 -16.7998h-79.0996zM214.2 137.9\\nc9.7998 -6.2002 21.5 -9.90039 33.8994 -9.90039c12.4004 0 24 3.7002 33.8008 9.90039l41.7998 -66.9004c4.7998 -7.7998 2.39941 -18.4004 -5.7998 -22.5c-21.2002 -10.4004 -44.8008 -16.5 -69.9004 -16.5s-48.7002 6.09961 -69.7998 16.5\\nc-8.2002 4.09961 -10.7002 14.7002 -5.7998 22.5zM104.9 192c-9.2002 0 -17 7.7002 -15.9004 16.9004c4.59961 43.5996 26.9004 81.7998 59.5 107.8c7.59961 6.09961 18.7998 4.5 24 -3.7998l41.7002 -66.8008c-18.1006 -11.2998 -30.2002 -31.2998 -30.2002 -54.0996\\nh-79.0996zM248 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM248 376c-101.5 0 -184 -82.5 -184 -184s82.5 -184 184 -184s184 82.5 184 184s-82.5 184 -184 184zM248 160c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32\\ns32 -14.2998 32 -32s-14.2998 -32 -32 -32z\\\" />\\n    <glyph glyph-name=\\\"restroom\\\" unicode=\\\"&#xf7bd;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M128 320c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM512 320c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM639.3 93.5c3.7002 -15.0996 -8.2998 -29.5 -24.5 -29.5\\nh-54.7998v-104c0 -13.2998 -10.7002 -24 -24 -24h-48c-13.2998 0 -24 10.7002 -24 24v104h-54.7998c-16.2002 0 -28.2002 14.4004 -24.7002 29.5l45.5996 185.8c3.30078 13.5 15.5 23 29.8008 24.2002c15 -9.7002 32.7998 -15.5 52 -15.5c19.1992 0 37 5.7998 52 15.5\\nc14.2998 -1.2002 26.5 -10.7002 29.7998 -24.2002zM336 448c8.7998 0 16 -7.2002 16 -16v-480c0 -8.7998 -7.2002 -16 -16 -16h-32c-8.7998 0 -16 7.2002 -16 16v480c0 8.7998 7.2002 16 16 16h32zM180.1 303.6c24.6006 -2.09961 43.9004 -22.5 43.9004 -47.5996v-136\\nc0 -13.2998 -10.7002 -24 -24 -24h-8v-136c0 -13.2998 -10.7002 -24 -24 -24h-80c-13.2998 0 -24 10.7002 -24 24v136h-8c-13.2998 0 -24 10.7002 -24 24v136c0 25.0996 19.2998 45.5 43.9004 47.5996c15 -9.7998 32.8994 -15.5996 52.0996 -15.5996\\ns37.0996 5.7998 52.0996 15.5996z\\\" />\\n    <glyph glyph-name=\\\"satellite\\\" unicode=\\\"&#xf7bf;\\\" \\nd=\\\"M502.609 137.958l-96.7041 -96.7168c-5.15039 -5.13184 -15.2324 -9.29785 -22.5029 -9.29785c-7.27148 0 -17.3535 4.16602 -22.5039 9.29785l-80.3262 80.418l-9.89258 -9.9082c9.41016 -20.7256 17.0469 -56.0186 17.0469 -78.7803\\nc0 -26.3193 -10.0596 -66.5244 -22.4541 -89.7422c-4.50098 -8.50098 -16.3936 -9.59473 -23.207 -2.79785l-107.519 107.515l-17.7998 -17.7988c0.703125 -2.60938 1.60938 -5.00098 1.60938 -7.79785v-0.000976562c0 -17.667 -14.3379 -32.0059 -32.0049 -32.0059\\ns-32.0059 14.3389 -32.0059 32.0059s14.3389 32.0049 32.0059 32.0049c2.79688 0 5.18848 -0.90625 7.79785 -1.60938l17.7998 17.7998l-107.518 107.515c-6.79883 6.8125 -5.7041 18.6113 2.79688 23.2061c23.2197 12.3936 63.4248 22.4531 89.7451 22.4531\\nc22.7627 0 58.0576 -7.63672 78.7832 -17.0469l9.79883 9.79883l-80.3105 80.417c-5.13086 5.16602 -9.29395 15.2686 -9.29395 22.5498s4.16309 17.3838 9.29395 22.5498l96.7197 96.7168c5.11621 5.13281 15.1514 9.29785 22.3984 9.29785h0.105469h0.0449219\\nc7.28223 0 17.3857 -4.16602 22.5527 -9.29785l80.3262 -80.3076l47.8047 47.8965c5.43262 5.42773 16.0742 9.83398 23.7539 9.83398s18.3213 -4.40625 23.7539 -9.83398l47.5088 -47.5059c5.42188 -5.43555 9.82129 -16.0771 9.82129 -23.7539\\ns-4.39941 -18.3184 -9.82129 -23.7529l-47.8057 -47.8975l80.3105 -80.417c5.12305 -5.13672 9.28125 -15.1934 9.28125 -22.4482c0 -7.30469 -4.20703 -17.4111 -9.39062 -22.5576zM219.562 250.567l73.8252 73.8223l-68.918 68.8994l-73.8096 -73.8066zM457.305 160.461\\nl-68.9023 68.916l-73.8242 -73.8232l68.918 -68.8994z\\\" />\\n    <glyph glyph-name=\\\"satellite-dish\\\" unicode=\\\"&#xf7c0;\\\" \\nd=\\\"M305.449 -14.5898c7.3916 -7.29785 6.18848 -20.0967 -3 -25.0039c-77.7129 -41.8027 -176.726 -29.9102 -242.344 35.708c-65.6016 65.6035 -77.5098 164.523 -35.6914 242.332c4.89062 9.09473 17.6895 10.2979 25.0029 3l116.812 -116.813l27.3945 27.3945\\nc-0.6875 2.60938 -1.59375 5.00098 -1.59375 7.81348c0 17.666 14.3379 32.0039 32.0039 32.0039s32.0039 -14.3379 32.0039 -32.0039s-14.3379 -32.0039 -32.0039 -32.0039c-2.79785 0 -5.2041 0.890625 -7.79785 1.59375l-27.4102 -27.4102zM511.976 144.933\\nc0.0136719 -0.248047 0.0253906 -0.650391 0.0253906 -0.899414c0 -8.84668 -7.18066 -16.0615 -16.0273 -16.1025h-32.1133c-8.27148 0.0244141 -15.3916 6.74512 -15.8926 15.002c-7.50098 129.519 -111.515 234.533 -240.937 241.534\\nc-8.28125 0.441406 -15.0029 7.5293 -15.0029 15.8223c0 0.0234375 0 0.0625 0.000976562 0.0859375v31.5986c0.0361328 8.84766 7.24609 16.0273 16.0938 16.0273c0.250977 0 0.657227 -0.0107422 0.908203 -0.0253906c163.224 -8.59473 294.443 -139.816 302.944 -303.043\\nzM415.964 145.229c0.0195312 -0.299805 0.0361328 -0.788086 0.0361328 -1.08887c0 -8.91309 -7.23438 -16.1758 -16.1475 -16.21h-32.208c-8.08594 0.0585938 -15.2061 6.64648 -15.8926 14.7051c-6.90625 77.0107 -68.1172 138.91 -144.924 145.224\\nc-8.16602 0.585938 -14.7959 7.70605 -14.7988 15.8926v32.1143v0.00390625c0 8.90625 7.22754 16.1338 16.1338 16.1338c0.322266 0 0.84375 -0.0185547 1.16504 -0.0419922c110.123 -8.50098 198.229 -96.6074 206.636 -206.732z\\\" />\\n    <glyph glyph-name=\\\"sd-card\\\" unicode=\\\"&#xf7c2;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M320 448c35.2998 0 64 -28.7002 64 -64v-384c0 -35.2998 -28.7002 -64 -64 -64h-256c-35.2998 0 -64 28.7002 -64 64v320l128 128h192zM160 288v96h-48v-96h48zM240 288v96h-48v-96h48zM320 288v96h-48v-96h48z\\\" />\\n    <glyph glyph-name=\\\"sim-card\\\" unicode=\\\"&#xf7c4;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M0 384c0 35.2998 28.7002 64 64 64h192l128 -128v-320c0 -35.2998 -28.7002 -64 -64 -64h-256c-35.2998 0 -64 28.7002 -64 64v384zM224 192v64h-64v-64h64zM320 192v32c0 17.7002 -14.2998 32 -32 32h-32v-64h64zM256 64v-64h32c17.7002 0 32 14.2998 32 32v32h-64z\\nM160 64v-64h64v64h-64zM64 64v-32c0 -17.7002 14.2998 -32 32 -32h32v64h-64zM64 160v-64h256v64h-256zM64 224v-32h64v64h-32c-17.7002 0 -32 -14.2998 -32 -32z\\\" />\\n    <glyph glyph-name=\\\"skating\\\" unicode=\\\"&#xf7c5;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 448c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48s21.5 48 48 48zM400 0c8.7998 0 16 -7.2002 16 -16c0 -26.5 -21.5 -48 -48 -48h-96c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16h96c8.7998 0 16 7.2002 16 16s7.2002 16 16 16zM117.8 -8.59961\\nc6.2998 6.2998 16.5 6.19922 22.7002 0c6.2002 -6.2002 6.2002 -16.4004 0 -22.6006c-9.2998 -9.2998 -21.5996 -14 -33.9004 -14c-12.2998 0 -24.5996 4.60059 -34 14l-67.8994 67.9004c-6.2002 6.2002 -6.2002 16.3994 0 22.5996s16.3994 6.2002 22.5996 0\\nl67.9004 -67.8994c6.2002 -6.30078 16.3994 -6.2002 22.5996 0zM173.9 171.2c3.7998 -6.10059 8.19922 -11.7998 13.1992 -16.7998l30.2002 -30.2002l-91.8994 -91.9004c-6.2002 -6.2998 -14.4004 -9.39941 -22.6006 -9.39941s-16.3994 3.19922 -22.5996 9.39941\\nc-12.5 12.4004 -12.5 32.7002 0 45.2002zM128 288c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32h204.6c16.3008 0 30.8008 -9.7002 37 -24.7002c6.2002 -15 2.80078 -32.0996 -8.69922 -43.5996l-82.3008 -82.2998c-0.5 -0.5 -1.19922 -0.700195 -1.69922 -1.10059\\nl61 -61c9 -8.89941 14.0996 -21.2998 14.0996 -33.8994v-89.4004c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32v82.7998l-78.2002 78.2002c-12.5996 12.5 -19.3994 29.9004 -18.7002 47.7002c0.700195 17.7002 8.80078 34.5996 22.3008 46.0996l20.0996 17.2002\\nh-105.5z\\\" />\\n    <glyph glyph-name=\\\"skiing\\\" unicode=\\\"&#xf7c9;\\\" \\nd=\\\"M432 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM505 -4.09961c9.2998 -9.30078 9.2998 -24.5 0 -33.8008c-17 -17 -39.7998 -26 -63 -26c-12.5996 0 -25.2002 2.60059 -37.0996 8.10059l-391.9 202.5\\nc-11.7998 6 -16.4004 20.5 -10.2998 32.2998c6.09961 11.7998 20.5996 16.2998 32.2998 10.2998l197.9 -102.3l45.8994 68.7998l-75.0996 75.2002c-14.2998 14.4004 -20.6006 34.5 -17.7002 54.4004l107 -53.1006l40.4004 -40.5\\nc16.1992 -16.0996 18.6992 -41.5996 6 -60.5996l-49.2002 -73.7998l135.8 -70.2002c14.5996 -6.7002 33 -3.40039 45.0996 8.7002c9.30078 9.39941 24.5 9.39941 33.9004 0zM120 356.4l-26.2002 23c-2.2002 1.89941 -2.39941 5.19922 -0.5 7.39941\\nc1.2998 1.5 3.2002 2.10059 5 1.7002l34.4004 -7h0.200195l11.0996 21.7002c13.7002 -7 21.2002 -21.1006 20.9004 -35.6006l62.5 -31l81.1992 32.5c43.6006 17.4004 76.4004 -15 84.5 -39.1992l17.1006 -51.2002l52.0996 -26.1006\\nc15.7998 -7.89941 22.2002 -27.0996 14.2998 -42.8994c-7.89941 -15.7998 -27 -22.2002 -42.8994 -14.2998l-58.1006 29c-11.3994 5.69922 -20 15.5996 -24 27.6992l-6.39941 19.1006l-32.4004 -13l-114.5 56.7998c0.100586 0.0996094 0.100586 0.200195 0.200195 0.299805\\nl-47.2002 23.4004c-11.5996 -9.7002 -28.3994 -12.1006 -42.7998 -4.7998z\\\" />\\n    <glyph glyph-name=\\\"skiing-nordic\\\" unicode=\\\"&#xf7ca;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M336 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM552 32c13.2002 0 24 -10.7998 24 -24c0 -39.7002 -32.2998 -72 -72 -72h-480c-13.2002 0 -24 10.7002 -24 24s10.7998 24 24 24h42.9004l54.0996 270.8\\nc-0.700195 0.799805 -1.7002 1.2002 -2.40039 2.10059c-10.7998 14.0996 -8.09961 34.1992 5.90039 44.8994l39.7002 30.4004c23 17.5996 52.5 23.8994 80.7998 17.0996l71.2002 -21.2002c26.2998 -6.69922 49.2998 -25.3994 61.7998 -50.8994l26.0996 -53.2002h44\\nc17.7002 0 32 -14.2998 32 -32c0 -13.4004 -8.39941 -24.9004 -20.0996 -29.5996l-25.5 -178.4h69.5c13.2002 0 24 10.7998 24 24c0 13.2998 10.7998 24 24 24zM291.5 -16l25.5 81.2002l-85 50.2002c-27.5996 16.2998 -38.9004 50.7998 -26.2998 80.2998l37.5 87.3994\\nl-14.7002 4.40039c-7.90039 1.90039 -17.5996 -0.200195 -25.2998 -6.09961l-39.7002 -30.4004c-3.59961 -2.7002 -7.59961 -4.59961 -11.7002 -5.59961l-52.2998 -261.4h24.2002l62.5 131.8c7.59961 -10.8994 17.3994 -20.5996 29.5 -27.7998l22 -13l-43.1006 -91h96.9004z\\nM402.1 -16l25.2002 176h-33.2998c-18.2002 0 -35.0996 10.5996 -43.0996 26.9004l-20.3008 41.3994l-31.2998 -78.2998l61.2002 -36.0996c18.7002 -11.3008 27.5 -33.6006 21.5996 -54.4004l-23.5996 -75.5h43.5996z\\\" />\\n    <glyph glyph-name=\\\"sleigh\\\" unicode=\\\"&#xf7cc;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M612.7 97.2998c18.5 -14.7002 28.5996 -37.2002 27.2002 -61c-2.2002 -39 -36.9004 -68.2998 -75.9004 -68.2998h-516c-8.7998 0 -16 7.2002 -16 16v16c0 8.7998 7.2002 16 16 16h519.3c13.6006 0 24.6006 11 24.6006 24.5996c0 7.5 -3.30078 14.5 -9.2002 19.2002\\nl-9.2998 7.40039c-6.90039 5.5 -8 15.5996 -2.5 22.5l10 12.5c5.5 6.89941 15.5996 8 22.5 2.5zM32 224v128c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32h20.7002c65.7002 0 125.899 -37.2002 155.3 -96s89.5 -96 155.3 -96h20.7002c35.2998 0 64 28.7002 64 64v64h96\\nc17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32v-96c0 -53 -43 -96 -96 -96v-48h-64v48h-192v-48h-64v52.5c-55.0996 14.2998 -96 63.9004 -96 123.5z\\\" />\\n    <glyph glyph-name=\\\"sms\\\" unicode=\\\"&#xf7cd;\\\" \\nd=\\\"M256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-38.4004 0 -74.7002 7.09961 -107.4 19.4004c-24.5996 -19.6006 -74.2998 -51.4004 -140.6 -51.4004c-3.2002 0 -6 1.7998 -7.2998 4.7998s-0.700195 6.40039 1.5 8.7002\\nc0.5 0.5 42.2998 45.4004 54.7998 95.7998c-35.5996 35.7002 -57 81.1006 -57 130.7c0 114.9 114.6 208 256 208zM128.2 144c23.3994 0 42.5 17.2998 42.3994 38.5996c0 10.6006 -4.7998 20.9004 -13.2998 28.1006l-21.8994 18.7998\\nc-1.30078 1.09961 -2.10059 2.5 -2.10059 3.7998c0 3.10059 4.40039 6.60059 10.4004 6.60059h12.2998c4.40039 0 8 3.59961 8 8v16c0 4.39941 -3.59961 8 -8 8h-12.2002c-23.3994 0 -42.3994 -17.3008 -42.3994 -38.6006c0 -10.5996 4.7998 -20.8994 13.2998 -28.0996\\nl21.8994 -18.7998c1.30078 -1.10059 2.10059 -2.5 2.10059 -3.80078c0 -3.09961 -4.40039 -6.59961 -10.4004 -6.59961h-12.2998c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h12.2002zM320 152v104c0 8.7998 -7.2002 16 -16 16h-16\\nc-6 0 -11.5996 -3.40039 -14.2998 -8.7998l-17.7002 -35.4004l-17.7002 35.4004c-2.7002 5.39941 -8.2002 8.7998 -14.2998 8.7998h-16c-8.7998 0 -16 -7.2002 -16 -16v-104c0 -4.40039 3.59961 -8 8 -8h16c4.40039 0 8 3.59961 8 8v68.2002l24.9004 -55.7998\\nc2.89941 -5.90039 11.3994 -5.90039 14.2998 0l24.7998 55.7998v-68.2002c0 -4.40039 3.59961 -8 8 -8h16c4.40039 0 8 3.59961 8 8zM368.3 144c23.4004 0 42.4004 17.2998 42.2998 38.5996c0 10.6006 -4.7998 20.9004 -13.2998 28.1006l-21.8994 18.7998\\nc-1.30078 1.09961 -2.10059 2.5 -2.10059 3.7998c0 3.10059 4.40039 6.60059 10.4004 6.60059h12.2998c4.40039 0 8 3.59961 8 8v16c0 4.39941 -3.59961 8 -8 8h-12.2002c-23.3994 0 -42.3994 -17.3008 -42.3994 -38.6006c0 -10.5996 4.7998 -20.8994 13.2998 -28.0996\\nl21.8994 -18.7998c1.30078 -1.10059 2.10059 -2.5 2.10059 -3.80078c0 -3.09961 -4.40039 -6.59961 -10.4004 -6.59961h-12.2998c-4.40039 0 -8 -3.59961 -8 -8v-16c0 -4.40039 3.59961 -8 8 -8h12.2998z\\\" />\\n    <glyph glyph-name=\\\"snowboarding\\\" unicode=\\\"&#xf7ce;\\\" \\nd=\\\"M432 352c-26.5 0 -48 21.5 -48 48s21.5 48 48 48s48 -21.5 48 -48s-21.5 -48 -48 -48zM460.8 198.4l-83.5 62.8994l-66 -30.5l52 -39c14.9004 -11.2002 22 -30.2002 18.1006 -48.3994l-21.9004 -102c-2.2002 -10.1006 -9.09961 -17.8008 -17.7998 -21.9004\\nl90.7998 -33.0996c9.7002 -3.5 20.2002 -3.10059 29.5 1.2998c12 5.59961 26.2998 0.399414 31.9004 -11.6006c5.59961 -12 0.399414 -26.2998 -11.6006 -31.8994c-11.5996 -5.5 -24 -8.2002 -36.5 -8.2002c-10 0 -20 1.7998 -29.7002 5.2998l-364.8 132.7\\nc-21.7998 7.90039 -39.0996 23.7998 -48.8994 44.7998c-5.60059 12 -0.400391 26.2998 11.5996 31.9004c12 5.59961 26.2998 0.399414 31.9004 -11.6006c4.39941 -9.39941 12.0996 -16.5 21.7998 -20l38.7002 -14.0996c-3.80078 3.5 -7 7.7002 -8.7002 12.9004\\nc-5.60059 16.7998 3.39941 34.8994 20.2002 40.5l74.0996 24.6992v53.1006c0 24.3994 13.5996 46.2998 35.4004 57.2002l41.1992 20.5996l-16.3994 5.5c-12.1006 4.09961 -22 12.5996 -27.7002 24l-29.0996 58.0996c-7.90039 15.8008 -1.5 35 14.2998 42.9004\\ns35 1.5 42.8994 -14.2998l26.1006 -52.1006l63.7002 -21.1992c16.2998 -5.40039 31.5996 -13.5 45.3994 -23.8008l111.4 -83.5c14.2002 -10.5996 17 -30.6992 6.39941 -44.7998c-6.2998 -8.39941 -15.8994 -12.7998 -25.5996 -12.7998\\nc-6.7002 0 -13.4004 2.09961 -19.2002 6.40039zM316.4 146.7l-60.5 45.2998v-20.5c0 -20.7002 -13.2002 -39 -32.8008 -45.5l-85 -28.4004c-2.59961 -0.899414 -5.2998 -1.09961 -8 -1.2998l169.4 -61.5996c-2.90039 6.09961 -4.2998 12.8994 -2.7998 20z\\\" />\\n    <glyph glyph-name=\\\"snowman\\\" unicode=\\\"&#xf7d0;\\\" \\nd=\\\"M510.9 295.7c3.19922 -8.10059 -0.800781 -17.2002 -8.90039 -20.2998l-135.2 -55.2002c0.400391 -4.10059 1.2002 -8 1.2002 -12.2002c0 -10 -1.7002 -19.5 -4.2002 -28.7002c21.1006 -21.3994 36.1006 -48.7998 41.6006 -79\\nc11.5 -63.2002 -16.4004 -120.3 -62.9004 -152.6c-10.9004 -7.60059 -23.9004 -11.7002 -37.2002 -11.7002h-99.2002c-11 0 -22 2.2998 -31.2998 8.2002c-42.3994 26.8994 -70.7998 73.7998 -70.7998 127.8c0 41.7998 16.9004 79.5996 44.2998 107.1\\nc-2.5 9.30078 -4.2002 18.8008 -4.2002 28.9004c0 4.2002 0.800781 8.2002 1.2002 12.2002l-135.2 55.2002c-8.19922 3.19922 -12.1992 12.2998 -8.89941 20.2998l5.89941 14.5c3.30078 8 12.6006 11.8994 20.8008 8.7002l28.0996 -11.5v29\\nc0 8.59961 7.2002 15.5996 16 15.5996h16c8.7998 0 16 -7 15.7998 -15.5996v-46.9004c0 -0.5 -0.200195 -1 -0.299805 -1.5l56.4004 -23c6 10 13.2998 18.9004 22 26.5996c-13.5 16.6006 -22 37.4004 -22 60.5c0 53 43 96 96 96s96 -43 96 -96\\nc0 -23.0996 -8.40039 -43.8994 -22 -60.5c8.69922 -7.69922 16.0996 -16.5996 22 -26.5996l56.3994 23c0 0.5 -0.299805 1 -0.299805 1.5v46.9004c0 8.59961 7.2002 15.5996 16 15.5996h16c8.7998 0 16 -7 16 -15.5996v-29l28.2002 11.5\\nc8.2002 3.19922 17.5 -0.700195 20.7998 -8.7002zM224 352c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM256 80c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM256 144\\nc8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM256 208c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16zM256 296c0 0 16 23.2002 16 32s-7.2002 16 -16 16s-16 -7.2002 -16 -16s16 -32 16 -32z\\nM288 352c8.7998 0 16 7.2002 16 16s-7.2002 16 -16 16s-16 -7.2002 -16 -16s7.2002 -16 16 -16z\\\" />\\n    <glyph glyph-name=\\\"snowplow\\\" unicode=\\\"&#xf7d2;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M120 72c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM200 72c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM280 72c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24\\ns-24 10.7002 -24 24s10.7002 24 24 24zM360 72c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM598.6 22.5996l36.7002 -36.6992c6.2002 -6.2002 6.2002 -16.4004 0 -22.6006l-22.5996 -22.5996\\nc-6.2002 -6.2002 -16.4004 -6.2002 -22.6006 0l-36.6992 36.7002c-26.5 26.5 -41.4004 62.3994 -41.4004 99.8994v18.7002h-43.2002c7 -14.5996 11.2002 -30.7002 11.2002 -48c0 -61.9004 -50.0996 -112 -112 -112h-256c-61.9004 0 -112 50.0996 -112 112\\nc0 44.5996 26.2998 82.7998 64 100.8v91.2002c0 26.5 21.5 48 48 48h16v112c0 26.5 21.5 48 48 48h144.3c19.2998 0 36.6006 -11.4004 44.2002 -29.0996l78.2998 -182.801c3.40039 -8 5.2002 -16.5 5.2002 -25.1992v-50.9004h64v18.7002\\nc0 37.5 14.9004 73.3994 41.4004 99.8994l36.6992 36.7002c6.2002 6.2002 16.4004 6.2002 22.6006 0l22.5996 -22.5996c6.2002 -6.2002 6.2002 -16.4004 0 -22.6006l-36.7002 -36.6992c-14.5 -14.5 -22.5996 -34.1006 -22.5996 -54.6006v-101.6\\nc0 -20.5 8.09961 -40.1006 22.5996 -54.6006zM192 384v-96l64 -64h122.4l-68.6006 160h-117.8zM368 0c26.5 0 48 21.5 48 48s-21.5 48 -48 48h-256c-26.5 0 -48 -21.5 -48 -48s21.5 -48 48 -48h256z\\\" />\\n    <glyph glyph-name=\\\"tenge\\\" unicode=\\\"&#xf7d7;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M372 288c6.59961 0 12 -5.40039 12 -12v-56c0 -6.59961 -5.40039 -12 -12 -12h-140v-228c0 -6.59961 -5.40039 -12 -12 -12h-56c-6.59961 0 -12 5.40039 -12 12v228h-140c-6.59961 0 -12 5.40039 -12 12v56c0 6.59961 5.40039 12 12 12h360zM372 416\\nc6.59961 0 12 -5.40039 12 -12v-56c0 -6.59961 -5.40039 -12 -12 -12h-360c-6.59961 0 -12 5.40039 -12 12v56c0 6.59961 5.40039 12 12 12h360z\\\" />\\n    <glyph glyph-name=\\\"toilet\\\" unicode=\\\"&#xf7d8;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M368 400h-16v-156.7c20.2002 -10.0996 32 -22.2002 32 -35.2998c0 -67.2002 -34.5996 -126.2 -86.7998 -160.5l21.3994 -70.2002c6.30078 -20.5 -9.09961 -41.2998 -30.5996 -41.2998h-192c-21.5 0 -36.9004 20.7998 -30.5996 41.2998l21.3994 70.2002\\nc-52.2002 34.2998 -86.7998 93.2998 -86.7998 160.5c0 13.0996 11.7998 25.2002 32 35.2998v156.7h-16c-8.7998 0 -16 7.2002 -16 16v16c0 8.7998 7.2002 16 16 16h352c8.7998 0 16 -7.2002 16 -16v-16c0 -8.7998 -7.2002 -16 -16 -16zM80 376v-16\\nc0 -4.40039 3.59961 -8 8 -8h48c4.40039 0 8 3.59961 8 8v16c0 4.40039 -3.59961 8 -8 8h-48c-4.40039 0 -8 -3.59961 -8 -8zM192 176c77.0996 0 139.6 14.2998 139.6 32s-62.5 32 -139.6 32s-139.6 -14.2998 -139.6 -32s62.5 -32 139.6 -32z\\\" />\\n    <glyph glyph-name=\\\"tools\\\" unicode=\\\"&#xf7d9;\\\" \\nd=\\\"M501.1 52.2998c14.5 -14.5 14.5 -38.0996 0 -52.7002l-52.6992 -52.6992c-14.5 -14.6006 -38.1006 -14.6006 -52.7002 0l-117.101 117.1c-23.0996 23.0996 -27.5 57.5996 -13.8994 85.4004l-106.601 106.6h-62.0996l-96 128l64 64l128 -96v-62.0996l106.6 -106.601\\nc27.8008 13.7002 62.3008 9.2002 85.4004 -13.8994zM331.7 223c-8.2002 0 -16.6006 -1 -24.7002 -2.90039l-82.0996 82.1006c-0.700195 37.5 12.6992 75.0996 41.1992 103.6c37 37 89.2002 49.6006 136.601 37.9004c9.09961 -2.2998 12.2998 -13.6006 5.7002 -20.2002\\nl-74.4004 -74.4004l11.2998 -67.8994l67.9004 -11.2998l74.3994 74.3994c6.60059 6.60059 17.9004 3.5 20.1006 -5.5c11.7998 -47.3994 -0.799805 -99.5996 -37.9004 -136.7c-13 -13 -28 -22.5996 -43.7998 -29.5l-19.4004 19.4004c-20 20 -46.5996 31 -74.8994 31z\\nM227.8 141c-4.89941 -21.0996 -2.59961 -42.7998 5 -62.7002l-123.6 -123.6c-25 -25 -65.5 -25 -90.5 0s-25 65.5 0 90.5l152.399 152.5zM64 -24c13.2998 0 24 10.7998 24 24c0 13.2998 -10.7002 24 -24 24s-24 -10.7002 -24 -24c0 -13.2002 10.7998 -24 24 -24z\\\" />\\n    <glyph glyph-name=\\\"tram\\\" unicode=\\\"&#xf7da;\\\" \\nd=\\\"M288 384c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM511.5 396.1c2.2002 -8.5 -2.7998 -17.2998 -11.4004 -19.5996l-228.1 -60.7998v-91.7002h176c17.7002 0 32 -14.2998 32 -32v-224c0 -17.7002 -14.2998 -32 -32 -32\\nh-384c-17.7002 0 -32 14.2998 -32 32v224c0 17.7002 14.2998 32 32 32h176v83.2002l-219.9 -58.7002c-1.2998 -0.299805 -2.69922 -0.5 -4.09961 -0.5c-7.09961 0 -13.5 4.7002 -15.4004 11.7998c-2.2998 8.60059 2.80078 17.2998 11.3008 19.6006l480 128\\nc8.59961 2.2998 17.2998 -2.7002 19.5996 -11.3008zM176 64v96h-96v-96h96zM336 160v-96h96v96h-96zM304 160h-96v-96h96v96zM192 352c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z\\\" />\\n    <glyph glyph-name=\\\"fire-alt\\\" unicode=\\\"&#xf7e4;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M323.56 396.8c72.46 -67.2598 124.44 -177.13 124.44 -230.399c0 -127.25 -100.29 -230.4 -224 -230.4s-224 103.15 -224 230.4c0 71.6396 69.7402 190.43 168 281.6c38.2803 -35.5303 72.0801 -73.6201 99.3398 -111.17\\nc16.6406 20.3799 35.4199 40.6699 56.2197 59.9697zM304.09 56.1504c49.2402 34.4492 60.7803 101.229 33.4297 153.42c-3.35938 6.41992 -7.12988 13.1201 -11.2695 19.9697l-58.6299 -66.8799s-91.9004 117.359 -98.8301 125.34\\nc-48.4805 -58.1201 -72.79 -92.1396 -72.79 -130.75c0 -77.5098 58.71 -125.25 130.86 -125.25c28.8594 0 55.5693 8.99023 77.2295 24.1504z\\\" />\\n    <glyph glyph-name=\\\"bacon\\\" unicode=\\\"&#xf7e5;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M218.92 111.61c-34.8604 -34.8799 -59.6504 -44.1602 -85.9199 -54c-26 -9.76074 -53 -20.1299 -88.1699 -52.7305l-35.7598 35.5098c-12.7002 12.6104 -12.0703 33.6104 1.79004 45.0605c36.3398 29.9795 66.21 41.0996 91.0693 50.3594\\nc9.16992 3.41016 68.9707 19.2607 98.7207 98.0908c8.60938 22.8096 46.3496 134.58 188.979 187.72c15.8506 5.91016 27.3604 10.2002 41 20.2998c4.53516 3.35449 12.7939 6.07617 18.4346 6.07617c7.00879 0 16.751 -3.98926 21.7451 -8.90625l37.6709 -37.3896\\nc-30.1504 -27.6904 -52.9102 -36.3701 -76.79 -45.3701c-28.3008 -10.6104 -57.5703 -21.5801 -97.3506 -61.3799s-50.7598 -69.0498 -61.3701 -97.3398c-9.84961 -26.3008 -19.1602 -51.1104 -54.0498 -86zM566.92 343.61\\nc12.7002 -12.5996 12.0801 -33.6602 -1.80957 -45.0605c-36.3701 -30.0098 -66.2402 -41.1396 -91.1104 -50.4102c-9.2002 -3.43945 -69 -19.3193 -98.7305 -98.1094c-8.93945 -23.5898 -46.7393 -134.69 -188.939 -187.69\\nc-15.8496 -5.89941 -27.3398 -10.1797 -40.9404 -20.2402c-4.53613 -3.35645 -12.7969 -6.08008 -18.4395 -6.08008c-7.00586 0 -16.7461 3.9873 -21.7402 8.90039l-37.6797 37.4297c30.1094 27.6699 52.8594 36.3301 76.7197 45.3301\\nc28.2998 10.5898 57.5098 21.54 97.2998 61.3203s50.7803 69 61.4199 97.3301c9.81055 26.3096 19.1104 51.1602 54 86c34.8906 34.8398 59.6904 44.1504 85.9502 54c26.0703 9.79004 53.0605 20.1602 88.25 52.79z\\\" />\\n    <glyph glyph-name=\\\"book-medical\\\" unicode=\\\"&#xf7e6;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M448 89.5996c0 -9.59961 -3.2002 -15.999 -9.59961 -19.1992c-3.2002 -12.8008 -3.2002 -57.6006 0 -73.6006c6.39941 -6.39941 9.59961 -12.7998 9.59961 -19.2002v-16c0 -16 -12.7998 -25.5996 -25.5996 -25.5996h-326.4c-54.4004 0 -96 41.5996 -96 96v320\\nc0 54.4004 41.5996 96 96 96h326.4c16 0 25.5996 -9.59961 25.5996 -25.5996v-332.801zM144 280v-48c0 -4.41602 3.58398 -8 8 -8h56v-56c0 -4.41602 3.58398 -8 8 -8h48c4.41602 0 8 3.58398 8 8v56h56c4.41602 0 8 3.58398 8 8v48c0 4.41602 -3.58398 8 -8 8h-56v56\\nc0 4.41602 -3.58398 8 -8 8h-48c-4.41602 0 -8 -3.58398 -8 -8v-56h-56c-4.41602 0 -8 -3.58398 -8 -8zM380.8 0v64h-284.8c-16 0 -32 -12.7998 -32 -32s12.7998 -32 32 -32h284.8z\\\" />\\n    <glyph glyph-name=\\\"bread-slice\\\" unicode=\\\"&#xf7ec;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 448c180 0 288 -93.4004 288 -169.14c0 -30.3008 -24.2402 -54.8604 -64 -54.8604v-256c0 -17.6699 -16.1201 -32 -36 -32h-376c-19.8799 0 -36 14.3301 -36 32v256c-39.7598 0 -64 24.5596 -64 54.8604c0 75.7393 108 169.14 288 169.14z\\\" />\\n    <glyph glyph-name=\\\"cheese\\\" unicode=\\\"&#xf7ef;\\\" \\nd=\\\"M0 160h512v-160c0 -17.6641 -14.3359 -32 -32 -32h-448c-17.6641 0 -32 14.3359 -32 32v160zM299.83 416c118.17 -6.2002 212.17 -104.11 212.17 -224h-512l278.7 217c4.83984 3.875 13.7998 7.01953 20 7.01953c0.311523 0 0.818359 -0.00878906 1.12988 -0.0195312z\\n\\\" />\\n    <glyph glyph-name=\\\"clinic-medical\\\" unicode=\\\"&#xf7f2;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M288 333l218.74 -192.9c1.54004 -1.37988 3.55957 -2.04004 5.25977 -3.19922v-184.9c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v184.94c1.78027 1.20996 3.84961 1.88965 5.46973 3.34961zM384 72v48c0 4.41602 -3.58398 8 -8 8h-56v56\\nc0 4.41602 -3.58398 8 -8 8h-48c-4.41602 0 -8 -3.58398 -8 -8v-56h-56c-4.41602 0 -8 -3.58398 -8 -8v-48c0 -4.41602 3.58398 -8 8 -8h56v-56c0 -4.41602 3.58398 -8 8 -8h48c4.41602 0 8 3.58398 8 8v56h56c4.41602 0 8 3.58398 8 8zM570.69 211.72\\nc2.93066 -2.63184 5.31055 -7.96484 5.31055 -11.9053c0 -3.38086 -1.83301 -8.16797 -4.09082 -10.6846l-21.4004 -23.8203c-2.63184 -2.93066 -7.96484 -5.30957 -11.9043 -5.30957c-3.38574 0 -8.17773 1.83691 -10.6953 4.09961l-229.32 202.271\\nc-2.50391 2.20898 -7.24609 4.00195 -10.585 4.00195s-8.08105 -1.79297 -10.585 -4.00195l-229.32 -202.28c-2.51758 -2.2627 -7.30957 -4.09961 -10.6953 -4.09961c-3.93848 0 -9.27246 2.37891 -11.9043 5.30957l-21.4102 23.8203\\nc-2.2627 2.51758 -4.09961 7.30957 -4.09961 10.6953c0 3.93945 2.37891 9.27246 5.30957 11.9043l256 226c6.2832 5.68066 18.2559 10.29 26.7256 10.29c8.46875 0 20.4424 -4.60938 26.7246 -10.29z\\\" />\\n    <glyph glyph-name=\\\"comment-medical\\\" unicode=\\\"&#xf7f5;\\\" \\nd=\\\"M256 416c141.39 0 256 -93.1201 256 -208s-114.61 -208 -256 -208h-0.473633c-30.4814 0 -78.3838 8.68164 -106.927 19.3799c-24.5996 -19.6299 -74.3398 -51.3799 -140.6 -51.3799c-4.41113 0.00488281 -7.99023 3.58887 -7.99023 8\\nc0 1.75879 0.981445 4.22266 2.19043 5.5c0.5 0.5 42.2598 45.4502 54.7998 95.7598c-35.5898 35.7402 -57 81.1807 -57 130.74c0 114.88 114.62 208 256 208zM352 184v48c0 4.41602 -3.58398 8 -8 8h-56v56c0 4.41602 -3.58398 8 -8 8h-48c-4.41602 0 -8 -3.58398 -8 -8\\nv-56h-56c-4.41602 0 -8 -3.58398 -8 -8v-48c0 -4.41602 3.58398 -8 8 -8h56v-56c0 -4.41602 3.58398 -8 8 -8h48c4.41602 0 8 3.58398 8 8v56h56c4.41602 0 8 3.58398 8 8z\\\" />\\n    <glyph glyph-name=\\\"crutch\\\" unicode=\\\"&#xf7f7;\\\" \\nd=\\\"M507.31 262.29c2.56348 -2.58301 4.64355 -7.63184 4.64355 -11.2695c0 -3.66602 -2.10742 -8.74219 -4.70312 -11.3301l-22.6201 -22.6309c-2.58691 -2.58691 -7.65625 -4.6875 -11.3145 -4.6875c-3.65918 0 -8.72852 2.10059 -11.3154 4.6875l-181 181\\nc-2.58789 2.58691 -4.6875 7.65625 -4.6875 11.3154s2.09961 8.72852 4.6875 11.3154l22.6904 22.5996c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262zM327.77 195.88l55.1006 55.1201l45.25 -45.2695l-109.68 -109.681\\nc-10.7441 -10.748 -31.4814 -22.2393 -46.29 -25.6494l-120.25 -27.75l-102 -102c-2.58691 -2.58789 -7.65625 -4.6875 -11.3154 -4.6875s-8.72754 2.09961 -11.3154 4.6875l-22.6191 22.6191c-2.58789 2.58789 -4.6875 7.65625 -4.6875 11.3154\\ns2.09961 8.72852 4.6875 11.3154l102 102l27.7393 120.26c3.4248 14.8057 14.9248 35.5439 25.6699 46.29l109.671 109.67l45.25 -45.25l-55.1006 -55.1006zM273.2 141.31l9.30957 9.31055l-67.8896 67.8896l-9.31055 -9.30957\\nc-3.57715 -3.59082 -7.41211 -10.5127 -8.55957 -15.4502l-18.2998 -79.2998l79.2998 18.3193c4.94043 1.13379 11.8623 4.95996 15.4502 8.54004z\\\" />\\n    <glyph glyph-name=\\\"egg\\\" unicode=\\\"&#xf7fb;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M192 448c106 0 192 -214 192 -320s-86 -192 -192 -192s-192 86 -192 192s86 320 192 320z\\\" />\\n    <glyph glyph-name=\\\"hamburger\\\" unicode=\\\"&#xf805;\\\" \\nd=\\\"M464 192c26.4961 0 48 -21.5039 48 -48s-21.5039 -48 -48 -48h-416c-26.4961 0 -48 21.5039 -48 48s21.5039 48 48 48h416zM480 64c8.83203 0 16 -7.16797 16 -16v-16c0 -35.3281 -28.6719 -64 -64 -64h-352c-35.3281 0 -64 28.6719 -64 64v16\\nc0 8.83203 7.16797 16 16 16h448zM58.6396 224c-34.5693 0 -54.6396 43.9102 -34.8193 75.8896c40.1797 64.9102 128.64 116.011 232.18 116.11c103.55 -0.0996094 192 -51.2002 232.18 -116.12c19.8008 -31.9795 -0.25 -75.8799 -34.8193 -75.8799h-394.721zM384 336\\nc-8.83203 0 -16 -7.16797 -16 -16s7.16797 -16 16 -16s16 7.16797 16 16s-7.16797 16 -16 16zM256 368c-8.83203 0 -16 -7.16797 -16 -16s7.16797 -16 16 -16s16 7.16797 16 16s-7.16797 16 -16 16zM128 336c-8.83203 0 -16 -7.16797 -16 -16s7.16797 -16 16 -16\\ns16 7.16797 16 16s-7.16797 16 -16 16z\\\" />\\n    <glyph glyph-name=\\\"hand-middle-finger\\\" unicode=\\\"&#xf806;\\\" \\nd=\\\"M479.93 130.88l0.0703125 -82.8799v0c0 -61.7969 -50.1533 -111.973 -111.95 -112h-215c-25.6074 0.00292969 -61.084 14.7012 -79.1895 32.8096l-30.9307 30.9307c-6.0332 6.03223 -10.9297 17.8525 -10.9297 26.3838v0.00585938v73.4697v0.00292969\\nc0 12.7383 9.24707 27.7002 20.6396 33.3975l27.3604 15v-76c0 -4.41602 3.58398 -8 8 -8s8 3.58398 8 8v147.04c0 15.2598 12.8701 28.3799 30.8701 31.3799l30.6797 5.12012c17.8203 2.96973 34.4502 -8.38965 34.4502 -23.54v-32c0 -4.41602 3.58398 -8 8 -8\\ns8 3.58398 8 8v200v0.0224609c0 26.4961 21.5039 48 48 48c0.408203 0 1.07129 -0.00976562 1.48047 -0.0224609c26.2695 -0.799805 46.5195 -23.7197 46.5195 -50v-198c0 -4.41602 3.58398 -8 8 -8s8 3.58398 8 8v32c0 15.1396 16.6299 26.5 34.4502 23.5303\\nl38.3994 -6.40039c13.46 -2.25 23.1504 -12.0996 23.1504 -23.54v-49.5898l35.6504 -8.92969c15.5986 -3.89844 28.2686 -20.1113 28.2793 -36.1904z\\\" />\\n    <glyph glyph-name=\\\"hard-hat\\\" unicode=\\\"&#xf807;\\\" \\nd=\\\"M480 160v-64h-448v64c0 80.25 49.2803 148.92 119.19 177.62l40.8096 -81.6201v112c0 8.83203 7.16797 16 16 16h96c8.83203 0 16 -7.16797 16 -16v-112l40.8096 81.6201c69.9102 -28.7002 119.19 -97.3701 119.19 -177.62zM496 64c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-480c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h480z\\\" />\\n    <glyph glyph-name=\\\"hotdog\\\" unicode=\\\"&#xf80f;\\\" \\nd=\\\"M488.56 424.56c12.9297 -12.9326 23.4238 -38.2715 23.4238 -56.5596s-10.4941 -43.627 -23.4238 -56.5596l-352 -352c-13.0205 -13.4824 -38.7998 -24.4238 -57.543 -24.4238c-44.1592 0 -80 35.8408 -80 80c0 18.7432 10.9414 44.5225 24.4238 57.543l352 352\\nc12.9326 12.9297 38.2715 23.4238 56.5596 23.4238s43.627 -10.4941 56.5596 -23.4238zM438.63 329.37c2.58691 2.58691 4.68652 7.65625 4.68652 11.3145c0 8.83301 -7.16797 16.002 -16.001 16.002c-3.65918 0 -8.72852 -2.09961 -11.3154 -4.68652\\nc-12.4102 -12.4102 -21.7598 -14 -34.71 -16.2305c-14.4004 -2.46973 -32.3203 -5.55957 -51.9199 -25.1494c-19.6006 -19.5898 -22.6699 -37.5205 -25.1396 -51.9199c-2.24023 -12.9502 -3.84082 -22.3105 -16.2402 -34.71\\nc-12.4004 -12.4004 -21.7002 -14.0098 -34.7002 -16.2305c-14.4004 -2.46973 -32.3203 -5.5498 -51.9199 -25.1396c-19.6006 -19.5898 -22.6699 -37.5205 -25.1504 -51.9199c-2.21973 -12.9502 -3.80957 -22.29 -16.2197 -34.7002s-21.71 -14.0098 -34.71 -16.2305\\nc-14.4004 -2.46973 -32.3203 -5.5498 -51.9199 -25.1396c-2.58691 -2.58691 -4.68652 -7.65625 -4.68652 -11.3145c0 -8.83301 7.16797 -16.002 16.001 -16.002c3.65918 0 8.72852 2.09961 11.3154 4.68652c12.4004 12.4004 21.7598 14 34.7002 16.2305\\nc14.3994 2.46973 32.3301 5.55957 51.9297 25.1494c19.6006 19.5898 22.6699 37.5205 25.1396 51.9199c2.23047 12.9502 3.83008 22.2998 16.2305 34.7002s21.75 14 34.7002 16.2197c14.3994 2.48047 32.3193 5.56055 51.9199 25.1504\\nc19.5996 19.5898 22.6699 37.5195 25.1494 51.9199c2.23047 12.9502 3.83008 22.3096 16.2305 34.71s21.7598 14 34.7002 16.2305c14.4102 2.46973 32.3301 5.5498 51.9297 25.1396zM31.4404 125.82l-11.5508 11.5498c-24.9893 24.9902 -26.6592 63.8398 -3.71973 86.7803\\nl207.68 207.68c22.9404 22.9395 61.79 21.2803 86.79 -3.71973l11.54 -11.5508zM480.56 258.18l11.5508 -11.54c24.9893 -25 26.6592 -63.8496 3.71973 -86.79l-207.68 -207.68c-22.9404 -22.9395 -61.79 -21.2803 -86.79 3.71973l-11.54 11.5508z\\\" />\\n    <glyph glyph-name=\\\"ice-cream\\\" unicode=\\\"&#xf810;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M368 288c26.4961 0 48 -21.5039 48 -48s-21.5039 -48 -48 -48h-288c-26.4961 0 -48 21.5039 -48 48s21.5039 48 48 48h0.94043c-0.519531 4.51855 -0.94043 11.8779 -0.94043 16.4268c0 79.4883 64.5117 144 144 144s144 -64.5117 144 -144\\nc0 -4.54883 -0.420898 -11.9082 -0.94043 -16.4268h0.94043zM195.38 -45.6904l-99.3799 205.69h256l-99.3799 -205.69c-4.66504 -10.1084 -17.4863 -18.3135 -28.6201 -18.3135s-23.9551 8.20508 -28.6201 18.3135z\\\" />\\n    <glyph glyph-name=\\\"laptop-medical\\\" unicode=\\\"&#xf812;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M232 224c-4.41602 0 -8 3.58398 -8 8v48c0 4.41602 3.58398 8 8 8h56v56c0 4.41602 3.58398 8 8 8h48c4.41602 0 8 -3.58398 8 -8v-56h56c4.41602 0 8 -3.58398 8 -8v-48c0 -4.41602 -3.58398 -8 -8 -8h-56v-56c0 -4.41602 -3.58398 -8 -8 -8h-48\\nc-4.41602 0 -8 3.58398 -8 8v56h-56zM576 400v-336h-512v336c0.0771484 26.4189 21.5811 47.9229 48 48h416c26.4189 -0.0771484 47.9229 -21.5811 48 -48zM512 128v256h-384v-256h384zM624 32c8.83203 0 16 -7.16797 16 -16v-16\\nc-0.104492 -35.2236 -28.7764 -63.8955 -64 -64h-512c-35.2236 0.104492 -63.8955 28.7764 -64 64v16c0 8.83203 7.16797 16 16 16h239.23c-0.230469 -14.5303 14.0791 -32 32.7695 -32h60.7998c18.0303 0 32 12.1904 32.7402 32h242.46z\\\" />\\n    <glyph glyph-name=\\\"pager\\\" unicode=\\\"&#xf815;\\\" \\nd=\\\"M448 384c35.3281 0 64 -28.6719 64 -64v-256c0 -35.3281 -28.6719 -64 -64 -64h-384c-35.3281 0 -64 28.6719 -64 64v256c0 35.3281 28.6719 64 64 64h384zM160 80v48h-80c-8.83203 0 -16 -7.16797 -16 -16v-16c0 -8.83203 7.16797 -16 16 -16h80zM288 96v16\\nc0 8.83203 -7.16797 16 -16 16h-80v-48h80c8.83203 0 16 7.16797 16 16zM448 224v64c0 17.6641 -14.3359 32 -32 32h-320c-17.6641 0 -32 -14.3359 -32 -32v-64c0 -17.6641 14.3359 -32 32 -32h320c17.6641 0 32 14.3359 32 32z\\\" />\\n    <glyph glyph-name=\\\"pepper-hot\\\" unicode=\\\"&#xf816;\\\" \\nd=\\\"M330.67 184.88h107.46l37.0498 -38.54c-48.5293 -87.4697 -206.54 -210.34 -419.18 -210.34c-30.9121 0 -56 25.0879 -56 56s25.0879 56 56 56c141.58 0 163.44 181.24 221.92 250.82l52.75 -24.2207v-89.7197zM461.76 313.25\\nc27.7324 -25.2861 50.2402 -76.2676 50.2402 -113.798v-0.142578c0 -13.6797 -2.2998 -26.6895 -5.55957 -39.3096l-54.6807 56.8799h-89.0898v78.2402l-74.6699 34.29c22.3398 14.0498 48.3398 22.5898 76.3398 22.5898\\nc16.4658 -0.00683594 42.0732 -5.36523 57.1602 -11.96c18.4502 37.2197 8.25977 61.96 1.40039 72.3203c-0.787109 1.14062 -1.42578 3.19043 -1.42578 4.57617c0 1.82227 1.03711 4.35449 2.31543 5.65332l22.9004 23c1.29688 1.31836 3.85156 2.38867 5.70117 2.38867\\nc2.1123 0 4.90234 -1.33398 6.22852 -2.97852c18.5596 -23.4805 35.2998 -71.9102 3.13965 -131.75z\\\" />\\n    <glyph glyph-name=\\\"pizza-slice\\\" unicode=\\\"&#xf818;\\\" \\nd=\\\"M158.87 447.85c181.91 -17.1699 332.02 -164.93 352.899 -345.71c1.87012 -16.2197 -7.89941 -31.54 -23.6191 -35.8994l-56.9404 -15.7803c-7.94043 186.39 -134.86 311.51 -322.479 317l14.8096 56.2705c4.12988 15.6992 19.1699 25.6396 35.3301 24.1191z\\nM100.4 335.85c176.069 -1.95996 294.88 -119.25 299.149 -294.14l-379 -105.1c-1.1709 -0.324219 -3.1084 -0.587891 -4.32422 -0.587891c-8.94824 0 -16.21 7.26172 -16.21 16.21c0 1.1582 0.239258 3.00781 0.53418 4.12793zM128 32c17.6641 0 32 14.3359 32 32\\ns-14.3359 32 -32 32s-32 -14.3359 -32 -32s14.3359 -32 32 -32zM176 184c17.6641 0 32 14.3359 32 32s-14.3359 32 -32 32s-32 -14.3359 -32 -32s14.3359 -32 32 -32zM280 80c17.6641 0 32 14.3359 32 32s-14.3359 32 -32 32s-32 -14.3359 -32 -32s14.3359 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"trash-restore\\\" unicode=\\\"&#xf829;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M53.2002 -19l-21.2002 339h384l-21.2002 -339c-1.55469 -24.8369 -23.0146 -44.9971 -47.8994 -45h-245.801c-24.8848 0.00292969 -46.3447 20.1631 -47.8994 45zM123.31 156.8c-10.0791 -10.6201 -2.93945 -28.7998 11.3203 -28.7998h57.3701v-112\\nc0 -8.83203 7.16797 -16 16 -16h32c8.83203 0 16 7.16797 16 16v112h57.3701c14.2598 0 21.3994 18.1797 11.3203 28.7998l-89.3809 94.2598c-2.52441 2.72949 -7.5918 4.94336 -11.3096 4.94336s-8.78516 -2.21387 -11.3096 -4.94336zM432 416\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h120l9.40039 18.7002c3.58984 7.3418 13.1357 13.2998 21.3086 13.2998h0.0908203h114.3h0.0175781\\nc8.20215 0 17.8262 -5.95801 21.4824 -13.2998l9.40039 -18.7002h120z\\\" />\\n    <glyph glyph-name=\\\"trash-restore-alt\\\" unicode=\\\"&#xf82a;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M32 -16v336h384v-336c0 -26.4961 -21.5039 -48 -48 -48h-288c-26.4961 0 -48 21.5039 -48 48zM123.31 156.8c-10.0791 -10.6201 -2.93945 -28.7998 11.3203 -28.7998h57.3701v-112c0 -8.83203 7.16797 -16 16 -16h32c8.83203 0 16 7.16797 16 16v112h57.3701\\nc14.2598 0 21.3994 18.1797 11.3203 28.7998l-89.3809 94.2598c-2.52441 2.72949 -7.5918 4.94336 -11.3096 4.94336s-8.78516 -2.21387 -11.3096 -4.94336zM432 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-416c-8.83203 0 -16 7.16797 -16 16\\nv32c0 8.83203 7.16797 16 16 16h120l9.40039 18.7002c3.58984 7.3418 13.1357 13.2998 21.3086 13.2998h0.0908203h114.3h0.0175781c8.20215 0 17.8262 -5.95801 21.4824 -13.2998l9.40039 -18.7002h120z\\\" />\\n    <glyph glyph-name=\\\"user-nurse\\\" unicode=\\\"&#xf82f;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M319.41 128c71.4902 -3.09961 128.59 -61.5996 128.59 -133.79c0 -32.1318 -26.0781 -58.21 -58.21 -58.21h-331.58c-32.1318 0 -58.21 26.0781 -58.21 58.21c0 72.1904 57.0996 130.69 128.59 133.79l95.4102 -95.3896zM224 144c-70.6562 0 -128 57.3438 -128 128\\nv110.18c0 12.2393 9.30078 25.6611 20.7598 29.96l84.7705 31.79c5.99707 2.24902 16.0645 4.07422 22.4697 4.07422s16.4727 -1.8252 22.4697 -4.07422l84.7705 -31.75c11.459 -4.29883 20.7598 -17.7217 20.7598 -29.9609v-0.0390625v-110.18\\nc0 -70.6562 -57.3438 -128 -128 -128zM184 376.33v-16.6602c0 -2.75977 2.24023 -5 5 -5h21.6699v-21.6699c0 -2.75977 2.24023 -5 5 -5h16.6602c2.75977 0 5 2.24023 5 5v21.6699h21.6699c2.75977 0 5 2.24023 5 5v16.6602c0 2.75977 -2.24023 5 -5 5h-21.6699v21.6699\\nc0 2.75977 -2.24023 5 -5 5h-16.6602c-2.75977 0 -5 -2.24023 -5 -5v-21.6699h-21.6699c-2.75977 0 -5 -2.24023 -5 -5zM144 288v-16c0 -44.1602 35.8398 -80 80 -80s80 35.8398 80 80v16h-160z\\\" />\\n    <glyph glyph-name=\\\"wave-square\\\" unicode=\\\"&#xf83e;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M476 -32h-152c-19.8721 0 -36 16.1279 -36 36v348h-96v-156c0 -19.8721 -16.1279 -36 -36 -36h-140c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h112v156c0 19.8721 16.1279 36 36 36h152c19.8721 0 36 -16.1279 36 -36v-348h96v156\\nc0 19.8721 16.1279 36 36 36h140c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-112v-156c0 -19.8721 -16.1279 -36 -36 -36z\\\" />\\n    <glyph glyph-name=\\\"biking\\\" unicode=\\\"&#xf84a;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M400 352c-26.4961 0 -48 21.5039 -48 48s21.5039 48 48 48s48 -21.5039 48 -48s-21.5039 -48 -48 -48zM396 231l-41.3604 33.1104l-58.25 -49.9199l41.3604 -27.5703c7.86426 -5.24316 14.248 -17.1689 14.25 -26.6201v-128c0 -17.6641 -14.3359 -32 -32 -32\\ns-32 14.3359 -32 32v110.88l-81.7305 54.5205c-7.86621 5.24316 -14.251 17.1719 -14.251 26.626c0 8.12305 5.00488 19.0068 11.1719 24.2939l112 96c4.95508 4.25781 14.2803 7.71289 20.8135 7.71289c6.20215 0 15.1602 -3.15039 19.9961 -7.0332l71.2197 -57h52.7803\\nc17.6641 0 32 -14.3359 32 -32s-14.3359 -32 -32 -32h-64h-0.0595703c-6.18262 0 -15.1152 3.13574 -19.9404 7zM512 192c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128s-128 57.3438 -128 128s57.3438 128 128 128zM512 0c35.3281 0 64 28.6719 64 64\\ns-28.6719 64 -64 64s-64 -28.6719 -64 -64s28.6719 -64 64 -64zM128 192c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128s-128 57.3438 -128 128s57.3438 128 128 128zM128 0c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64s-64 -28.6719 -64 -64\\ns28.6719 -64 64 -64z\\\" />\\n    <glyph glyph-name=\\\"border-all\\\" unicode=\\\"&#xf84c;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M416 416c17.6641 0 32 -14.3359 32 -32v-384c0 -17.6641 -14.3359 -32 -32 -32h-384c-17.6641 0 -32 14.3359 -32 32v384c0 17.6641 14.3359 32 32 32h384zM384 352h-128v-128h128v128zM192 352h-128v-128h128v128zM64 32h128v128h-128v-128zM256 32h128v128h-128v-128z\\n\\\" />\\n    <glyph glyph-name=\\\"border-none\\\" unicode=\\\"&#xf850;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M240 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM336 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h32zM432 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM144 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM240 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM336 32c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 128\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 320c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h32zM240 128c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM240 320c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM144 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM240 416c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM336 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 416\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM48 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h32zM48 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM48 128c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM48 320c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM48 416c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM144 416c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32z\\\" />\\n    <glyph glyph-name=\\\"border-style\\\" unicode=\\\"&#xf853;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M240 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM144 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32\\nc0 8.83203 7.16797 16 16 16h32zM336 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 224c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32\\nc-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 128c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 32c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 320c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32zM432 416\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-368v-368c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v400c0 17.6641 14.3359 32 32 32h400z\\\" />\\n    <glyph glyph-name=\\\"fan\\\" unicode=\\\"&#xf863;\\\" \\nd=\\\"M352.57 320c81.79 0 149.3 -61.6299 159.3 -141.33c1.30957 -10.4795 -7.17969 -19.6396 -17.6201 -18.5898l-123.11 12.4102c8.34082 -22.9707 12.8604 -48.9707 12.8604 -77.0605c0 -81.79 -61.6299 -149.3 -141.33 -159.3\\nc-10.4795 -1.30957 -19.6396 7.19043 -18.5898 17.6201l12.4102 123.11c-22.9707 -8.34082 -48.9707 -12.8604 -77.0605 -12.8604c-81.79 0 -149.3 61.6299 -159.3 141.33c-1.30957 10.4795 7.17969 19.6699 17.6201 18.5898l123.11 -12.4102\\nc-8.34082 22.9707 -12.8604 48.9707 -12.8604 77.0605c0 81.79 61.6299 149.3 141.33 159.3c10.4795 1.30957 19.6699 -7.17969 18.5898 -17.6201l-12.4102 -123.11c22.9707 8.34082 48.9707 12.8604 77.0605 12.8604zM256 160c17.6641 0 32 14.3359 32 32\\ns-14.3359 32 -32 32s-32 -14.3359 -32 -32s14.3359 -32 32 -32z\\\" />\\n    <glyph glyph-name=\\\"icons\\\" unicode=\\\"&#xf86d;\\\" \\nd=\\\"M116.65 228.65l-96.79 99.8301c-28 29.0293 -26.4102 77.0996 5 103.88c27.3896 23.3398 68.1895 19.1396 93.29 -6.80078l9.84961 -10.1396l9.86035 10.1396c25.1396 25.9404 65.8896 30.1406 93.2793 6.80078c31.4102 -26.7803 33.0605 -74.8799 4.91016 -103.88\\nl-96.75 -99.8301c-2.55566 -2.66992 -7.62891 -4.83594 -11.3252 -4.83594c-3.69531 0 -8.76855 2.16602 -11.3242 4.83594zM260.57 128.16c15.1406 -0.0107422 27.4297 -12.3086 27.4297 -27.4502v-0.00976562v-137.25v0c0 -15.1416 -12.2891 -27.4395 -27.4297 -27.4502\\nh-233.141c-15.1406 0.00585938 -27.4297 12.2988 -27.4297 27.4404v0.00976562v137.25v0.00976562c0 15.1523 12.2979 27.4502 27.4502 27.4502h0.00976562h48l7 14.2402c3.67773 9.81445 15.168 17.7793 25.6484 17.7793h0.0117188h71.71h0.0107422\\nc10.4814 0 21.9717 -7.96484 25.6494 -17.7793l7.08008 -14.2402h48zM144 -20c28.7041 0 52 23.2959 52 52s-23.2959 52 -52 52s-52 -23.2959 -52 -52s23.2959 -52 52 -52zM499.4 95.9004c9.70996 0 15.75 -8.79004 10.8691 -15.7002l-92.3994 -138.91\\nc-2.19629 -2.90039 -6.93262 -5.25488 -10.5713 -5.25488c-0.0957031 0 -0.25293 0.00195312 -0.348633 0.00488281c-8.03027 0 -14.1201 6.25 -12.2305 12.9004l24.2002 83h-62.3096c-7.62012 0 -13.5 5.58984 -12.5 11.8896l16.7998 106.93\\nc0.839844 5.2002 6.2002 9.10059 12.5 9.10059h75.5898c8.25 0 14.2803 -6.56055 12.1797 -13.21l-22.3594 -50.75h60.5801zM478.08 447.67c17.9199 2.75 33.9199 -12.1895 33.9199 -31.6699v-144.26c-0.269531 -26.3398 -28.7998 -47.6602 -64 -47.6602\\nc-35.3496 0 -64 21.4795 -64 48c0 26.5195 28.6504 48 64 48c4.46191 -0.0400391 11.6299 -0.801758 16 -1.7002v47.1797l-112 -17.2197v-108.58c-0.269531 -26.3398 -28.7998 -47.6602 -64 -47.6602c-35.3496 0 -64 21.4805 -64 48c0 26.5205 28.6504 48 64 48\\nc4.46191 -0.0400391 11.6299 -0.801758 16 -1.69922v106.77c0 15.9102 10.8701 29.4102 25.5098 31.6602z\\\" />\\n    <glyph glyph-name=\\\"phone-alt\\\" unicode=\\\"&#xf879;\\\" \\nd=\\\"M497.39 86.2002c8.06055 -3.50586 14.6016 -13.4844 14.6016 -22.2744c0 -1.48828 -0.264648 -3.87402 -0.59082 -5.32617l-24 -104c-2.37109 -10.2666 -12.8477 -18.5996 -23.3848 -18.5996h-0.015625c-256.1 0 -464 207.5 -464 464v0.00585938\\nc0 10.5371 8.33301 21.0137 18.5996 23.3838l104 24c1.45996 0.332031 3.8584 0.601562 5.35547 0.601562c8.73242 0 18.6533 -6.49707 22.1445 -14.501l48 -112c1.06836 -2.49219 1.93457 -6.71582 1.93457 -9.42773c0 -6.28613 -3.95801 -14.6064 -8.83398 -18.5723\\nl-60.6006 -49.6006c31.3398 -66.4688 110.721 -145.85 177.19 -177.189l49.5996 60.5996c3.97559 4.86914 12.3047 8.82129 18.5908 8.82129c2.70508 0 6.9209 -0.860352 9.40918 -1.9209z\\\" />\\n    <glyph glyph-name=\\\"phone-square-alt\\\" unicode=\\\"&#xf87b;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M400 416c26.4961 0 48 -21.5039 48 -48v-352c0 -26.4961 -21.5039 -48 -48 -48h-352c-26.4961 0 -48 21.5039 -48 48v352c0 26.4961 21.5039 48 48 48h352zM383.61 108.63c0.198242 0.919922 0.373047 2.42969 0.389648 3.37012\\nc-0.262695 5.28613 -4.33496 11.4648 -9.08984 13.79l-70 30c-1.57422 0.613281 -4.22168 1.15527 -5.91016 1.20996c-3.82422 -0.209961 -9.02539 -2.67383 -11.6104 -5.5l-31 -37.8896c-41.5469 19.6025 -91.1768 69.2324 -110.779 110.779l37.8896 31\\nc2.82617 2.58496 5.29004 7.78613 5.5 11.6104c-0.0546875 1.68848 -0.597656 4.33594 -1.20996 5.91016l-30 70c-2.32812 4.75098 -8.50586 8.82324 -13.79 9.08984c-0.94043 -0.0205078 -2.4502 -0.195312 -3.37012 -0.389648l-65 -15\\nc-6.19238 -1.6582 -11.4033 -8.20312 -11.6299 -14.6104c0 -160.29 130 -290 290 -290c6.58496 0.00292969 13.1309 5.21289 14.6104 11.6299z\\\" />\\n    <glyph glyph-name=\\\"photo-video\\\" unicode=\\\"&#xf87c;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M608 448c17.6641 0 32 -14.3359 32 -32v-320c0 -17.6641 -14.3359 -32 -32 -32h-128v320h-192v-64h-160v96c0 17.6641 14.3359 32 32 32h448zM232 345v30c0 4.96777 -4.03223 9 -9 9h-30c-4.96777 0 -9 -4.03223 -9 -9v-30c0 -4.96777 4.03223 -9 9 -9h30\\nc4.96777 0 9 4.03223 9 9zM584 137v30c0 4.96777 -4.03223 9 -9 9h-30c-4.96777 0 -9 -4.03223 -9 -9v-30c0 -4.96777 4.03223 -9 9 -9h30c4.96777 0 9 4.03223 9 9zM584 241v30c0 4.96777 -4.03223 9 -9 9h-30c-4.96777 0 -9 -4.03223 -9 -9v-30\\nc0 -4.96777 4.03223 -9 9 -9h30c4.96777 0 9 4.03223 9 9zM584 345v30c0 4.96777 -4.03223 9 -9 9h-30c-4.96777 0 -9 -4.03223 -9 -9v-30c0 -4.96777 4.03223 -9 9 -9h30c4.96777 0 9 4.03223 9 9zM416 288c17.6641 0 32 -14.3359 32 -32v-288\\nc0 -17.6641 -14.3359 -32 -32 -32h-384c-17.6641 0 -32 14.3359 -32 32v288c0 17.6641 14.3359 32 32 32h384zM96 224c-17.6641 0 -32 -14.3359 -32 -32s14.3359 -32 32 -32s32 14.3359 32 32s-14.3359 32 -32 32zM384 0v96l-96 96l-128 -128l-32 32l-64 -64v-32h320z\\\" />\\n    <glyph glyph-name=\\\"remove-format\\\" unicode=\\\"&#xf87d;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M336 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h32.4902l26.5098 79.5996l67.0898 -51.8301l-9.25977 -27.7695h11.1699zM633.82 -10.0996\\nc3.41309 -2.65234 6.18359 -8.3125 6.18359 -12.6357c0 -3.02734 -1.50684 -7.42383 -3.36426 -9.81445l-19.6396 -25.2705c-2.65234 -3.41211 -8.31152 -6.18262 -12.6338 -6.18262c-3.03125 0 -7.43359 1.51172 -9.82617 3.37305l-588.36 454.72\\nc-3.41016 2.65234 -6.17773 8.31055 -6.17773 12.6309c0 3.02832 1.50879 7.42773 3.36816 9.81934l19.6299 25.2695c2.65234 3.41309 8.31152 6.18262 12.6338 6.18262c3.03125 0 7.43359 -1.51074 9.82617 -3.37207l114.54 -88.5205v43.9004c0 8.83203 7.16797 16 16 16\\nh416c8.83203 0 16 -7.16797 16 -16v-96c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v32h-117.83l-49.1699 -147.59zM309.91 240.24l31.9199 95.7598h-117.83v-29.3604z\\\" />\\n    <glyph glyph-name=\\\"sort-alpha-down-alt\\\" unicode=\\\"&#xf881;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M176 96c14.2197 0 21.3496 -17.2598 11.3301 -27.3096l-80 -96c-2.58691 -2.58496 -7.65332 -4.68262 -11.3105 -4.68262c-3.65625 0 -8.72266 2.09766 -11.3096 4.68262l-80 96c-10.0703 10.0693 -2.90039 27.3096 11.29 27.3096h48v304c0 8.83203 7.16797 16 16 16h32\\nc8.83203 0 16 -7.16797 16 -16v-304h48zM288 224c-8.83203 0 -16 7.16797 -16 16v17.6299v0.00292969c0 7.93262 4.81152 18.6475 10.7402 23.917l61.2598 70.4502h-56c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128c8.83203 0 16 -7.16797 16 -16\\nv-17.6299v-0.00292969c0 -7.93262 -4.81152 -18.6475 -10.7402 -23.917l-61.2598 -70.4502h56c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128zM447.06 -10.6201c0.514648 -1.44043 0.931641 -3.85059 0.931641 -5.37988\\nc0 -8.82715 -7.16406 -15.9951 -15.9912 -16h-24.8398h-0.0449219c-6.42773 0 -13.249 4.96387 -15.2256 11.0801l-4.40918 12.9199h-71l-4.4209 -12.9199c-1.97559 -6.11621 -8.79688 -11.0801 -15.2246 -11.0801h-0.00488281h-24.8301\\nc-8.82715 0.00488281 -15.9912 7.17285 -15.9912 16c0 1.5293 0.416992 3.93945 0.931641 5.37988l59.2695 160c2.09277 5.8623 8.84375 10.6201 15.0684 10.6201h0.00195312h41.4395h0.00195312c6.22461 0 12.9756 -4.75781 15.0684 -10.6201zM335.61 48h32.7793\\nl-16.3896 48z\\\" />\\n    <glyph glyph-name=\\\"sort-alpha-up-alt\\\" unicode=\\\"&#xf882;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M16 288c-14.2197 0 -21.3496 17.2598 -11.3096 27.3096l80 96c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262l80 -96c10.0703 -10.0693 2.90039 -27.3096 -11.3096 -27.3096h-48v-304c0 -8.83203 -7.16797 -16 -16 -16h-32\\nc-8.83203 0 -16 7.16797 -16 16v304h-48zM288 224c-8.83203 0 -16 7.16797 -16 16v17.6299v0.00292969c0 7.93262 4.81152 18.6475 10.7402 23.917l61.2598 70.4502h-56c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128c8.83203 0 16 -7.16797 16 -16\\nv-17.6299v-0.00292969c0 -7.93262 -4.81152 -18.6475 -10.7402 -23.917l-61.2598 -70.4502h56c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-128zM447.06 -10.6201c0.514648 -1.44043 0.931641 -3.85059 0.931641 -5.37988\\nc0 -8.82715 -7.16406 -15.9951 -15.9912 -16h-24.8398h-0.0449219c-6.42773 0 -13.249 4.96387 -15.2256 11.0801l-4.40918 12.9199h-71l-4.4209 -12.9199c-1.97559 -6.11621 -8.79688 -11.0801 -15.2246 -11.0801h-0.00488281h-24.8301\\nc-8.82715 0.00488281 -15.9912 7.17285 -15.9912 16c0 1.5293 0.416992 3.93945 0.931641 5.37988l59.2695 160c2.09277 5.8623 8.84375 10.6201 15.0684 10.6201h0.00195312h41.4395h0.00195312c6.22461 0 12.9756 -4.75781 15.0684 -10.6201zM335.61 48h32.7793\\nl-16.3896 48z\\\" />\\n    <glyph glyph-name=\\\"sort-amount-down-alt\\\" unicode=\\\"&#xf884;\\\" \\nd=\\\"M240 352c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h64c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-64zM240 224c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-128zM496 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-256c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h256zM240 96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h192\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-192zM176 96c14.2197 0 21.3496 -17.2598 11.3301 -27.3096l-80 -96c-2.58691 -2.58496 -7.65332 -4.68262 -11.3105 -4.68262c-3.65625 0 -8.72266 2.09766 -11.3096 4.68262l-80 96\\nc-10.0801 10.0693 -2.90039 27.3096 11.29 27.3096h48v304c0 8.83203 7.16797 16 16 16h32c8.83203 0 16 -7.16797 16 -16v-304h48z\\\" />\\n    <glyph glyph-name=\\\"sort-amount-up-alt\\\" unicode=\\\"&#xf885;\\\" \\nd=\\\"M240 352c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h64c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-64zM240 224c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h128c8.83203 0 16 -7.16797 16 -16v-32\\nc0 -8.83203 -7.16797 -16 -16 -16h-128zM496 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-256c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h256zM240 96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h192\\nc8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-192zM16 288c-14.2197 0 -21.3496 17.2598 -11.3096 27.3096l80 96c2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262l80 -96\\nc10.0801 -10.0693 2.90039 -27.3096 -11.3096 -27.3096h-48v-304c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v304h-48z\\\" />\\n    <glyph glyph-name=\\\"sort-numeric-down-alt\\\" unicode=\\\"&#xf886;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M176 96c14.2197 0 21.3496 -17.2598 11.3301 -27.3096l-80 -96c-2.58691 -2.58496 -7.65332 -4.68262 -11.3105 -4.68262c-3.65625 0 -8.72266 2.09766 -11.3096 4.68262l-80 96c-10.0703 10.0693 -2.90039 27.3096 11.29 27.3096h48v304c0 8.83203 7.16797 16 16 16h32\\nc8.83203 0 16 -7.16797 16 -16v-304h48zM400 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h16v64h-16c-8.82422 0.0078125 -15.9863 7.17578 -15.9863 16\\nc0 2.08984 0.759766 5.30176 1.69629 7.16992l16 32c2.44141 4.87012 8.84277 8.8252 14.29 8.83008h48c8.83203 0 16 -7.16797 16 -16v-112h16zM330.17 413.09c53.4502 14.25 101.83 -25.8799 101.85 -77.0898v-10.7695c0 -70.3906 -28.25 -107.23 -86.25 -132\\nc-8.36914 -3.58008 -18.0293 1.2793 -20.8994 9.90918l-9.90039 20c-2.62012 7.87012 0.610352 16.9404 8.18066 20.3408c6.2793 2.71387 15.6201 8.49805 20.8496 12.9092c-47.6396 4.76074 -83.0996 51.4805 -68.8301 102.53c6.80762 23.4512 31.4482 47.7197 55 54.1699z\\nM352 316c11.04 0 20 8.95996 20 20s-8.95996 20 -20 20s-20 -8.95996 -20 -20s8.95996 -20 20 -20z\\\" />\\n    <glyph glyph-name=\\\"sort-numeric-up-alt\\\" unicode=\\\"&#xf887;\\\" horiz-adv-x=\\\"448\\\" \\nd=\\\"M107.31 411.31l80 -96c10.0703 -10.0693 2.90039 -27.3096 -11.3096 -27.3096h-48v-304c0 -8.83203 -7.16797 -16 -16 -16h-32c-8.83203 0 -16 7.16797 -16 16v304h-48c-14.2197 0 -21.3496 17.2598 -11.3096 27.3096l80 96\\nc2.58594 2.58496 7.65332 4.68262 11.3096 4.68262s8.72363 -2.09766 11.3096 -4.68262zM400 32c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-96c-8.83203 0 -16 7.16797 -16 16v32c0 8.83203 7.16797 16 16 16h16v64h-16\\nc-8.82422 0.0078125 -15.9863 7.17578 -15.9863 16c0 2.08984 0.759766 5.30176 1.69629 7.16992l16 32c2.44141 4.87012 8.84277 8.8252 14.29 8.83008h48c8.83203 0 16 -7.16797 16 -16v-112h16zM330.17 413.09c53.4502 14.25 101.83 -25.8799 101.85 -77.0898v-10.7695\\nc0 -70.3906 -28.25 -107.23 -86.25 -132c-8.36914 -3.58008 -18.0293 1.2793 -20.8994 9.90918l-9.90039 20c-2.62012 7.87012 0.610352 16.9404 8.18066 20.3408c6.2793 2.71387 15.6201 8.49805 20.8496 12.9092c-47.6396 4.76074 -83.0996 51.4805 -68.8301 102.53\\nc6.80762 23.4512 31.4482 47.7197 55 54.1699zM352 316c11.04 0 20 8.95996 20 20s-8.95996 20 -20 20s-20 -8.95996 -20 -20s8.95996 -20 20 -20z\\\" />\\n    <glyph glyph-name=\\\"spell-check\\\" unicode=\\\"&#xf891;\\\" horiz-adv-x=\\\"576\\\" \\nd=\\\"M272 192c-8.83203 0 -16 7.16797 -16 16v224c0 8.83203 7.16797 16 16 16h75c42.2998 0 80.9004 -30.5703 84.6699 -72.6797c0.186523 -2.02051 0.337891 -5.30762 0.337891 -7.33691c0 -11.0186 -4.20996 -27.8516 -9.39746 -37.5732\\nc14.0186 -13.0674 25.3965 -39.2256 25.3965 -58.3906c0 -1.29199 -0.0615234 -3.38867 -0.136719 -4.67969c-2.50977 -43.1396 -41.3105 -75.3398 -84.5098 -75.3398h-91.3604zM312 392v-48h40c13.248 0 24 10.752 24 24s-10.752 24 -24 24h-40zM312 296v-48h56\\nc13.248 0 24 10.752 24 24s-10.752 24 -24 24h-56zM155.12 425.75l68.2998 -213.48c0.320312 -1.15625 0.580078 -3.06934 0.580078 -4.26953c0 -8.83203 -7.16797 -16 -16 -16v0h-24.9297h-0.000976562c-6.71875 0 -13.626 5.25488 -15.4189 11.7305l-11.9404 36.2695\\nh-87.4199l-11.9404 -36.2695c-1.79297 -6.47559 -8.7002 -11.7305 -15.4189 -11.7305h-0.000976562h-24.9297c-8.82617 0.00488281 -15.9902 7.17383 -15.9902 16c0 1.2002 0.259766 3.11328 0.580078 4.26953l68.29 213.48c3.92871 12.2822 17.583 22.25 30.4785 22.25\\nh0.00195312h25.2793h0.00195312c12.8955 0 26.5498 -9.96777 30.4785 -22.25zM89.3701 304h45.2598l-22.6299 68.7002zM571.37 171.52c2.58203 -2.58594 4.65723 -7.65039 4.65723 -11.3047c0 -3.64551 -2.08594 -8.70117 -4.65723 -11.2852l-208 -208.21\\nc-2.5752 -2.60449 -7.6377 -4.71777 -11.2998 -4.71777c-3.66309 0 -8.72559 2.11328 -11.3008 4.71777l-112 112.21c-2.57617 2.58496 -4.66699 7.64551 -4.66699 11.2949c0 3.65039 2.09082 8.70996 4.66699 11.2949l45.3008 45.3008\\nc2.57324 2.60352 7.63379 4.71777 11.2949 4.71777s8.72168 -2.11426 11.2949 -4.71777l55.4102 -55.5l151.5 151.5c2.57324 2.60352 7.63379 4.71777 11.2949 4.71777s8.72168 -2.11426 11.2949 -4.71777z\\\" />\\n    <glyph glyph-name=\\\"voicemail\\\" unicode=\\\"&#xf897;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M496 320c79.4883 0 144 -64.5117 144 -144s-64.5117 -144 -144 -144h-352c-79.4844 0.00390625 -143.993 64.5156 -143.993 144c0 79.4883 64.5117 144 144 144s144 -64.5117 144 -144c0 -24.1113 -10.8711 -59.9512 -24.2666 -80h112.52\\nc-13.3955 20.0488 -24.2666 55.8887 -24.2666 80c0 79.4883 64.5117 144 144 144h0.00683594zM64 176c0 -44.1602 35.8398 -80 80 -80s80 35.8398 80 80s-35.8398 80 -80 80s-80 -35.8398 -80 -80zM496 96c44.1602 0 80 35.8398 80 80s-35.8398 80 -80 80\\ns-80 -35.8398 -80 -80s35.8398 -80 80 -80z\\\" />\\n    <glyph glyph-name=\\\"hat-cowboy\\\" unicode=\\\"&#xf8c0;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M490 151.1c-38.7695 -12.5898 -93.7305 -23.0996 -170 -23.0996s-131.19 10.5303 -169.99 23.1201c9.50977 57.4102 39.5098 232.88 97.71 232.88c14 0 26.4902 -6 37 -14c8.62988 -6.57812 24.4395 -11.917 35.29 -11.917s26.6611 5.33887 35.29 11.917\\nc10.5098 8.07031 23 14 37 14c58.21 0 88.21 -175.51 97.7002 -232.9zM632.9 188.28c3.90625 -2.625 7.08594 -8.57422 7.08594 -13.2803c0 -1.5752 -0.442383 -4.05273 -0.986328 -5.53027c-0.730469 -2.01953 -77.3203 -201.47 -319 -201.47s-318.27 199.45 -319 201.47\\nc-0.537109 1.46973 -0.973633 3.93164 -0.973633 5.49512c0 8.83203 7.16797 16 16 16c3.39844 0 8.20215 -1.84766 10.7236 -4.125c1.01953 -0.899414 102.42 -90.8398 293.24 -90.8398c191.89 0 292.16 89.8799 293.16 90.7803\\nc2.53418 2.3291 7.38477 4.21875 10.8262 4.21875c2.69141 0 6.68945 -1.21777 8.92383 -2.71875z\\\" />\\n    <glyph glyph-name=\\\"hat-cowboy-side\\\" unicode=\\\"&#xf8c1;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M260.8 156.94l98.0098 -84.4805c78.1904 -67.3896 129.98 -104.46 233.19 -104.46h-546.12c-14.0498 0 -27.1299 7.53027 -35.8799 20.6396c-9 13.4707 -12.1201 30.7002 -8.57031 47.3008c20.04 93.3398 85.5703 156.06 162.971 156.06\\nc34.3994 0 67.7695 -12.1201 96.3994 -35.0596zM495.45 175.23c114.95 -7.90039 144.55 -101.841 144.55 -127.23c0 -26.4961 -21.5039 -48 -48 -48c-97.0996 0 -141.24 35.46 -212.31 96.7002l-98 84.4795c-35.29 28.2705 -75.5 42.8203 -117.29 42.8203\\nc-7.09082 0 -13.8906 -1.16992 -20.79 -2l6.88965 65.21c2.72852 25.4766 25.2852 50.4707 50.3496 55.79l191.15 40.5898c3.63574 0.773438 9.60254 1.40137 13.3193 1.40137c29.7891 0 58.0498 -23.8301 63.0811 -53.1914z\\\" />\\n    <glyph glyph-name=\\\"mouse\\\" unicode=\\\"&#xf8cc;\\\" horiz-adv-x=\\\"384\\\" \\nd=\\\"M0 96v128h384v-128c0 -88.3203 -71.6797 -160 -160 -160h-64c-88.3203 0 -160 71.6797 -160 160zM176 448v-192h-176v32c0 88.3203 71.6797 160 160 160h16zM224 448c88.3203 0 160 -71.6797 160 -160v-32h-176v192h16z\\\" />\\n    <glyph glyph-name=\\\"record-vinyl\\\" unicode=\\\"&#xf8d9;\\\" \\nd=\\\"M256 296c57.4082 0 104 -46.5918 104 -104s-46.5918 -104 -104 -104s-104 46.5918 -104 104s46.5918 104 104 104zM256 168c13.248 0 24 10.752 24 24s-10.752 24 -24 24s-24 -10.752 -24 -24s10.752 -24 24 -24zM256 440c137 0 248 -111 248 -248s-111 -248 -248 -248\\ns-248 111 -248 248s111 248 248 248zM256 64c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128s-128 -57.3438 -128 -128s57.3438 -128 128 -128z\\\" />\\n    <glyph glyph-name=\\\"caravan\\\" unicode=\\\"&#xf8ff;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M416 240c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16s-16 7.16797 -16 16s7.16797 16 16 16zM624 128c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-336c0 -52.9922 -43.0078 -96 -96 -96s-96 43.0078 -96 96h-32\\nc-35.3281 0 -64 28.6719 -64 64v256c0 35.3281 28.6719 64 64 64h352c88.3203 0 160 -71.6797 160 -160v-160h48zM192 16c26.4688 0.0273438 47.9727 21.5312 48 48c0 26.4961 -21.5039 48 -48 48s-48 -21.5039 -48 -48s21.5039 -48 48 -48zM256 256v64\\nc0 17.6641 -14.3359 32 -32 32h-128c-17.6641 0 -32 -14.3359 -32 -32v-64c0 -17.6641 14.3359 -32 32 -32h128c17.6641 0 32 14.3359 32 32zM448 128v192c0 17.6641 -14.3359 32 -32 32h-64c-17.6641 0 -32 -14.3359 -32 -32v-192h128z\\\" />\\n    <glyph glyph-name=\\\"trailer\\\" unicode=\\\"&#xf941;\\\" horiz-adv-x=\\\"640\\\" \\nd=\\\"M624 128c8.83203 0 16 -7.16797 16 -16v-32c0 -8.83203 -7.16797 -16 -16 -16h-337.61c-7.83008 54.21 -54 96 -110.39 96s-102.56 -41.79 -110.39 -96h-49.6104c-8.83203 0 -16 7.16797 -16 16v288c0 8.83203 7.16797 16 16 16h512c8.83203 0 16 -7.16797 16 -16v-240\\nh80zM96 204.32v107.68c0 4.41602 -3.58398 8 -8 8h-16c-4.41602 0 -8 -3.58398 -8 -8v-128.39c8.20996 6.67578 22.5469 15.9541 32 20.71zM192 222.86v89.1396c0 4.41602 -3.58398 8 -8 8h-16c-4.41602 0 -8 -3.58398 -8 -8v-89.1396\\nc5.30957 0.489258 10.5703 1.13965 16 1.13965s10.6904 -0.650391 16 -1.13965zM288 183.61v128.39c0 4.41602 -3.58398 8 -8 8h-16c-4.41602 0 -8 -3.58398 -8 -8v-107.68c9.45312 -4.75586 23.79 -14.0342 32 -20.71zM384 128v184c0 4.41602 -3.58398 8 -8 8h-16\\nc-4.41602 0 -8 -3.58398 -8 -8v-184h32zM480 128v184c0 4.41602 -3.58398 8 -8 8h-16c-4.41602 0 -8 -3.58398 -8 -8v-184h32zM176 128c44.1602 0 80 -35.8398 80 -80s-35.8398 -80 -80 -80s-80 35.8398 -80 80s35.8398 80 80 80zM176 16c17.6641 0 32 14.3359 32 32\\ns-14.3359 32 -32 32s-32 -14.3359 -32 -32s14.3359 -32 32 -32z\\\" />\\n  </font>\\n</defs></svg>\\n\"\nvar _Assetsb289e24e7683deca2454781b8d3914d88103d97a = \"package gateway\\n\\nimport (\\n\\t\\\"context\\\"\\n\\t\\\"errors\\\"\\n\\t\\\"fmt\\\"\\n\\t\\\"html/template\\\"\\n\\t\\\"io/ioutil\\\"\\n\\t\\\"net/http\\\"\\n\\t\\\"net/url\\\"\\n\\t\\\"strings\\\"\\n\\t\\\"time\\\"\\n\\n\\t\\\"github.com/gin-contrib/location\\\"\\n\\t\\\"github.com/gin-contrib/static\\\"\\n\\t\\\"github.com/gin-gonic/gin\\\"\\n\\t\\\"github.com/ipfs/go-cid\\\"\\n\\tlogging \\\"github.com/ipfs/go-log\\\"\\n\\tiface \\\"github.com/ipfs/interface-go-ipfs-core\\\"\\n\\tisd \\\"github.com/jbenet/go-is-domain\\\"\\n\\t\\\"github.com/libp2p/go-libp2p-core/peer\\\"\\n\\tma \\\"github.com/multiformats/go-multiaddr\\\"\\n\\tmbase \\\"github.com/multiformats/go-multibase\\\"\\n\\t\\\"github.com/rs/cors\\\"\\n\\tgincors \\\"github.com/rs/cors/wrapper/gin\\\"\\n\\tthreadsclient \\\"github.com/textileio/go-threads/api/client\\\"\\n\\t\\\"github.com/textileio/go-threads/broadcast\\\"\\n\\t\\\"github.com/textileio/go-threads/core/thread\\\"\\n\\ttutil \\\"github.com/textileio/go-threads/util\\\"\\n\\tbucketsclient \\\"github.com/textileio/textile/v2/api/bucketsd/client\\\"\\n\\t\\\"github.com/textileio/textile/v2/api/common\\\"\\n\\tmdb \\\"github.com/textileio/textile/v2/mongodb\\\"\\n\\t\\\"go.mongodb.org/mongo-driver/mongo\\\"\\n\\t\\\"google.golang.org/grpc\\\"\\n)\\n\\nvar log = logging.Logger(\\\"gateway\\\")\\n\\nconst handlerTimeout = time.Minute\\n\\nfunc init() {\\n\\tgin.SetMode(gin.ReleaseMode)\\n}\\n\\n// link is used for Unixfs directory templates.\\ntype link struct {\\n\\tName  string\\n\\tPath  string\\n\\tSize  string\\n\\tLinks string\\n}\\n\\n// Gateway provides HTTP-based access to Textile.\\ntype Gateway struct {\\n\\tserver        *http.Server\\n\\taddr          ma.Multiaddr\\n\\turl           string\\n\\tsubdomains    bool\\n\\tbucketsDomain string\\n\\n\\tcollections *mdb.Collections\\n\\tapiSession  string\\n\\tthreads     *threadsclient.Client\\n\\tbuckets     *bucketsclient.Client\\n\\thub         bool\\n\\n\\tipfs iface.CoreAPI\\n\\n\\temailSessionBus *broadcast.Broadcaster\\n}\\n\\n// Config defines the gateway configuration.\\ntype Config struct {\\n\\tAddr            ma.Multiaddr\\n\\tURL             string\\n\\tSubdomains      bool\\n\\tBucketsDomain   string\\n\\tAPIAddr         ma.Multiaddr\\n\\tAPISession      string\\n\\tCollections     *mdb.Collections\\n\\tIPFSClient      iface.CoreAPI\\n\\tEmailSessionBus *broadcast.Broadcaster\\n\\tHub             bool\\n\\tDebug           bool\\n}\\n\\n// NewGateway returns a new gateway.\\nfunc NewGateway(conf Config) (*Gateway, error) {\\n\\tif conf.Debug {\\n\\t\\tif err := tutil.SetLogLevels(map[string]logging.LogLevel{\\n\\t\\t\\t\\\"gateway\\\": logging.LevelDebug,\\n\\t\\t}); err != nil {\\n\\t\\t\\treturn nil, err\\n\\t\\t}\\n\\t}\\n\\n\\tapiTarget, err := tutil.TCPAddrFromMultiAddr(conf.APIAddr)\\n\\tif err != nil {\\n\\t\\treturn nil, err\\n\\t}\\n\\topts := []grpc.DialOption{\\n\\t\\tgrpc.WithInsecure(),\\n\\t\\tgrpc.WithPerRPCCredentials(common.Credentials{}),\\n\\t}\\n\\ttc, err := threadsclient.NewClient(apiTarget, opts...)\\n\\tif err != nil {\\n\\t\\treturn nil, err\\n\\t}\\n\\tbc, err := bucketsclient.NewClient(apiTarget, opts...)\\n\\tif err != nil {\\n\\t\\treturn nil, err\\n\\t}\\n\\treturn &Gateway{\\n\\t\\taddr:            conf.Addr,\\n\\t\\turl:             conf.URL,\\n\\t\\tsubdomains:      conf.Subdomains,\\n\\t\\tbucketsDomain:   conf.BucketsDomain,\\n\\t\\tcollections:     conf.Collections,\\n\\t\\tapiSession:      conf.APISession,\\n\\t\\tthreads:         tc,\\n\\t\\tbuckets:         bc,\\n\\t\\thub:             conf.Hub,\\n\\t\\tipfs:            conf.IPFSClient,\\n\\t\\temailSessionBus: conf.EmailSessionBus,\\n\\t}, nil\\n}\\n\\n// Start the gateway.\\nfunc (g *Gateway) Start() {\\n\\taddr, err := tutil.TCPAddrFromMultiAddr(g.addr)\\n\\tif err != nil {\\n\\t\\tlog.Fatal(err)\\n\\t}\\n\\trouter := gin.Default()\\n\\n\\ttemp, err := loadTemplate()\\n\\tif err != nil {\\n\\t\\tlog.Fatal(err)\\n\\t}\\n\\trouter.SetHTMLTemplate(temp)\\n\\n\\trouter.Use(location.Default())\\n\\trouter.Use(static.Serve(\\\"\\\", &fileSystem{Assets}))\\n\\trouter.Use(serveBucket(&bucketFS{\\n\\t\\tclient:  g.buckets,\\n\\t\\tkeys:    g.collections.IPNSKeys,\\n\\t\\tsession: g.apiSession,\\n\\t\\thost:    g.bucketsDomain,\\n\\t}))\\n\\trouter.Use(gincors.New(cors.Options{}))\\n\\n\\trouter.GET(\\\"/health\\\", func(c *gin.Context) {\\n\\t\\tc.Writer.WriteHeader(http.StatusNoContent)\\n\\t})\\n\\n\\trouter.GET(\\\"/thread/:thread/:collection\\\", g.subdomainOptionHandler, g.collectionHandler)\\n\\trouter.GET(\\\"/thread/:thread/:collection/:id\\\", g.subdomainOptionHandler, g.instanceHandler)\\n\\trouter.GET(\\\"/thread/:thread/:collection/:id/*path\\\", g.subdomainOptionHandler, g.instanceHandler)\\n\\n\\trouter.GET(\\\"/ipfs/:root\\\", g.subdomainOptionHandler, g.ipfsHandler)\\n\\trouter.GET(\\\"/ipfs/:root/*path\\\", g.subdomainOptionHandler, g.ipfsHandler)\\n\\trouter.GET(\\\"/ipns/:key\\\", g.subdomainOptionHandler, g.ipnsHandler)\\n\\trouter.GET(\\\"/ipns/:key/*path\\\", g.subdomainOptionHandler, g.ipnsHandler)\\n\\trouter.GET(\\\"/p2p/:key\\\", g.subdomainOptionHandler, g.p2pHandler)\\n\\trouter.GET(\\\"/ipld/:root\\\", g.subdomainOptionHandler, g.ipldHandler)\\n\\trouter.GET(\\\"/ipld/:root/*path\\\", g.subdomainOptionHandler, g.ipldHandler)\\n\\n\\tif g.hub {\\n\\t\\trouter.GET(\\\"/dashboard/:username\\\", g.dashboardHandler)\\n\\t\\trouter.GET(\\\"/confirm/:secret\\\", g.confirmEmail)\\n\\t\\trouter.GET(\\\"/consent/:invite\\\", g.consentInvite)\\n\\t}\\n\\n\\trouter.NoRoute(g.subdomainHandler)\\n\\n\\tg.server = &http.Server{\\n\\t\\tAddr:    addr,\\n\\t\\tHandler: router,\\n\\t}\\n\\tgo func() {\\n\\t\\tif err := g.server.ListenAndServe(); err != nil && err != http.ErrServerClosed {\\n\\t\\t\\tlog.Fatalf(\\\"gateway error: %s\\\", err)\\n\\t\\t}\\n\\t\\tlog.Info(\\\"gateway was shutdown\\\")\\n\\t}()\\n\\tlog.Infof(\\\"gateway listening at %s\\\", g.server.Addr)\\n}\\n\\n// loadTemplate loads HTML templates.\\nfunc loadTemplate() (*template.Template, error) {\\n\\tt := template.New(\\\"\\\")\\n\\tfor name, file := range Assets.Files {\\n\\t\\tif file.IsDir() || !strings.HasSuffix(name, \\\".gohtml\\\") {\\n\\t\\t\\tcontinue\\n\\t\\t}\\n\\t\\th, err := ioutil.ReadAll(file)\\n\\t\\tif err != nil {\\n\\t\\t\\treturn nil, err\\n\\t\\t}\\n\\t\\tt, err = t.New(name).Parse(string(h))\\n\\t\\tif err != nil {\\n\\t\\t\\treturn nil, err\\n\\t\\t}\\n\\t}\\n\\treturn t, nil\\n}\\n\\n// Addr returns the gateway's address.\\nfunc (g *Gateway) Addr() string {\\n\\treturn g.server.Addr\\n}\\n\\n// Stop the gateway.\\nfunc (g *Gateway) Stop() error {\\n\\tctx, cancel := context.WithTimeout(context.Background(), time.Second)\\n\\tdefer cancel()\\n\\tif err := g.server.Shutdown(ctx); err != nil {\\n\\t\\treturn err\\n\\t}\\n\\tif err := g.threads.Close(); err != nil {\\n\\t\\treturn err\\n\\t}\\n\\tif err := g.buckets.Close(); err != nil {\\n\\t\\treturn err\\n\\t}\\n\\treturn nil\\n}\\n\\n// subdomainOptionHandler redirects valid namespaces to subdomains if the option is enabled.\\nfunc (g *Gateway) subdomainOptionHandler(c *gin.Context) {\\n\\tif !g.subdomains {\\n\\t\\treturn\\n\\t}\\n\\tloc, ok := g.toSubdomainURL(c.Request)\\n\\tif !ok {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\n\\t// See security note https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L105\\n\\tc.Request.Header.Set(\\\"Clear-Site-Data\\\", \\\"\\\\\\\"cookies\\\\\\\", \\\\\\\"storage\\\\\\\"\\\")\\n\\n\\tc.Redirect(http.StatusPermanentRedirect, loc)\\n}\\n\\n// dashboardHandler renders a dev or org dashboard.\\nfunc (g *Gateway) dashboardHandler(c *gin.Context) {\\n\\trender404(c)\\n}\\n\\n// confirmEmail verifies an emailed secret.\\nfunc (g *Gateway) confirmEmail(c *gin.Context) {\\n\\tif err := g.emailSessionBus.Send(c.Param(\\\"secret\\\")); err != nil {\\n\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\treturn\\n\\t}\\n\\tc.HTML(http.StatusOK, \\\"/public/html/confirm.gohtml\\\", nil)\\n}\\n\\n// consentInvite marks an invite as accepted.\\n// If the associated email belongs to an existing user, they will be added to the org.\\nfunc (g *Gateway) consentInvite(c *gin.Context) {\\n\\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\\n\\tdefer cancel()\\n\\tinvite, err := g.collections.Invites.Get(ctx, c.Param(\\\"invite\\\"))\\n\\tif err != nil {\\n\\t\\tif errors.Is(err, mongo.ErrNoDocuments) {\\n\\t\\t\\trender404(c)\\n\\t\\t} else {\\n\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t}\\n\\t\\treturn\\n\\t}\\n\\tif !invite.Accepted {\\n\\t\\tif time.Now().After(invite.ExpiresAt) {\\n\\t\\t\\tif err := g.collections.Invites.Delete(ctx, invite.Token); err != nil {\\n\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t} else {\\n\\t\\t\\t\\trenderError(c, http.StatusPreconditionFailed, fmt.Errorf(\\\"this invitation has expired\\\"))\\n\\t\\t\\t}\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t\\tdev, err := g.collections.Accounts.GetByUsernameOrEmail(ctx, invite.EmailTo)\\n\\t\\tif err != nil {\\n\\t\\t\\tif errors.Is(err, mongo.ErrNoDocuments) {\\n\\t\\t\\t\\tif err := g.collections.Invites.Accept(ctx, invite.Token); err != nil {\\n\\t\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else {\\n\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t\\treturn\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\tif dev != nil {\\n\\t\\t\\tif err := g.collections.Accounts.AddMember(ctx, invite.Org, mdb.Member{\\n\\t\\t\\t\\tKey:      dev.Key,\\n\\t\\t\\t\\tUsername: dev.Username,\\n\\t\\t\\t\\tRole:     mdb.OrgMember,\\n\\t\\t\\t}); err != nil {\\n\\t\\t\\t\\tif err == mongo.ErrNoDocuments {\\n\\t\\t\\t\\t\\tif err := g.collections.Invites.Delete(ctx, invite.Token); err != nil {\\n\\t\\t\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\n\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\trenderError(c, http.StatusNotFound, fmt.Errorf(\\\"org not found\\\"))\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\treturn\\n\\t\\t\\t}\\n\\t\\t\\tif err = g.collections.Invites.Delete(ctx, invite.Token); err != nil {\\n\\t\\t\\t\\trenderError(c, http.StatusInternalServerError, err)\\n\\t\\t\\t\\treturn\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\tc.HTML(http.StatusOK, \\\"/public/html/consent.gohtml\\\", gin.H{\\n\\t\\t\\\"Org\\\":   invite.Org,\\n\\t\\t\\\"Email\\\": invite.EmailTo,\\n\\t})\\n}\\n\\n// render404 renders the 404 template.\\nfunc render404(c *gin.Context) {\\n\\tc.HTML(http.StatusNotFound, \\\"/public/html/404.gohtml\\\", nil)\\n}\\n\\n// renderError renders the error template.\\nfunc renderError(c *gin.Context, code int, err error) {\\n\\tc.HTML(code, \\\"/public/html/error.gohtml\\\", gin.H{\\n\\t\\t\\\"Code\\\":  code,\\n\\t\\t\\\"Error\\\": formatError(err),\\n\\t})\\n}\\n\\n// formatError formats a go error for browser display.\\nfunc formatError(err error) string {\\n\\twords := strings.SplitN(err.Error(), \\\" \\\", 2)\\n\\twords[0] = strings.Title(words[0])\\n\\treturn strings.Join(words, \\\" \\\") + \\\".\\\"\\n}\\n\\n// subdomainHandler handles requests by parsing the request subdomain.\\nfunc (g *Gateway) subdomainHandler(c *gin.Context) {\\n\\tc.Status(200)\\n\\n\\tparts := strings.Split(c.Request.Host, \\\".\\\")\\n\\tkey := parts[0]\\n\\n\\t// Render buckets if the domain matches\\n\\tif g.bucketsDomain != \\\"\\\" && strings.HasSuffix(c.Request.Host, g.bucketsDomain) {\\n\\t\\tg.renderWWWBucket(c, key)\\n\\t\\treturn\\n\\t}\\n\\n\\tif len(parts) < 3 {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\tns := parts[1]\\n\\tif !isSubdomainNamespace(ns) {\\n\\t\\trender404(c)\\n\\t\\treturn\\n\\t}\\n\\tswitch ns {\\n\\tcase \\\"ipfs\\\":\\n\\t\\tg.renderIPFSPath(c, \\\"ipfs/\\\"+key, \\\"/ipfs/\\\"+key+c.Request.URL.Path)\\n\\tcase \\\"ipns\\\":\\n\\t\\tg.renderIPNSKey(c, key, c.Request.URL.Path)\\n\\tcase \\\"p2p\\\":\\n\\t\\tg.renderP2PKey(c, key)\\n\\tcase \\\"ipld\\\":\\n\\t\\tg.renderIPLDPath(c, key+c.Request.URL.Path)\\n\\tcase \\\"thread\\\":\\n\\t\\tthreadID, err := thread.Decode(key)\\n\\t\\tif err != nil {\\n\\t\\t\\trenderError(c, http.StatusBadRequest, fmt.Errorf(\\\"invalid thread ID\\\"))\\n\\t\\t\\treturn\\n\\t\\t}\\n\\t\\tparts := strings.SplitN(strings.TrimSuffix(c.Request.URL.Path, \\\"/\\\"), \\\"/\\\", 4)\\n\\t\\tswitch len(parts) {\\n\\t\\tcase 1:\\n\\t\\t\\t// @todo: Render something at the thread root\\n\\t\\t\\trender404(c)\\n\\t\\tcase 2:\\n\\t\\t\\tif parts[1] != \\\"\\\" {\\n\\t\\t\\t\\tg.renderCollection(c, threadID, parts[1])\\n\\t\\t\\t} else {\\n\\t\\t\\t\\trender404(c)\\n\\t\\t\\t}\\n\\t\\tcase 3:\\n\\t\\t\\tg.renderInstance(c, threadID, parts[1], parts[2], \\\"\\\")\\n\\t\\tcase 4:\\n\\t\\t\\tg.renderInstance(c, threadID, parts[1], parts[2], parts[3])\\n\\t\\tdefault:\\n\\t\\t\\trender404(c)\\n\\t\\t}\\n\\tdefault:\\n\\t\\trender404(c)\\n\\t}\\n}\\n\\n// Modified from https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L251\\nfunc isSubdomainNamespace(ns string) bool {\\n\\tswitch ns {\\n\\tcase \\\"ipfs\\\", \\\"ipns\\\", \\\"p2p\\\", \\\"ipld\\\", \\\"thread\\\":\\n\\t\\treturn true\\n\\tdefault:\\n\\t\\treturn false\\n\\t}\\n}\\n\\n// Copied from https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L260\\nfunc isPeerIDNamespace(ns string) bool {\\n\\tswitch ns {\\n\\tcase \\\"ipns\\\", \\\"p2p\\\":\\n\\t\\treturn true\\n\\tdefault:\\n\\t\\treturn false\\n\\t}\\n}\\n\\n// Converts a hostname/path to a subdomain-based URL, if applicable.\\n// Modified from https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L270\\nfunc (g *Gateway) toSubdomainURL(r *http.Request) (redirURL string, ok bool) {\\n\\tvar ns, rootID, rest string\\n\\n\\tquery := r.URL.RawQuery\\n\\tparts := strings.SplitN(r.URL.Path, \\\"/\\\", 4)\\n\\tsafeRedirectURL := func(in string) (out string, ok bool) {\\n\\t\\tsafeURI, err := url.ParseRequestURI(in)\\n\\t\\tif err != nil {\\n\\t\\t\\treturn \\\"\\\", false\\n\\t\\t}\\n\\t\\treturn safeURI.String(), true\\n\\t}\\n\\n\\tswitch len(parts) {\\n\\tcase 4:\\n\\t\\trest = parts[3]\\n\\t\\tfallthrough\\n\\tcase 3:\\n\\t\\tns = parts[1]\\n\\t\\trootID = parts[2]\\n\\tdefault:\\n\\t\\treturn \\\"\\\", false\\n\\t}\\n\\n\\tif !isSubdomainNamespace(ns) {\\n\\t\\treturn \\\"\\\", false\\n\\t}\\n\\n\\t// add prefix if query is present\\n\\tif query != \\\"\\\" {\\n\\t\\tquery = \\\"?\\\" + query\\n\\t}\\n\\n\\t// Normalize problematic PeerIDs (eg. ed25519+identity) to CID representation\\n\\tif isPeerIDNamespace(ns) && !isd.IsDomain(rootID) {\\n\\t\\tpeerID, err := peer.Decode(rootID)\\n\\t\\t// Note: PeerID CIDv1 with protobuf multicodec will fail, but we fix it\\n\\t\\t// in the next block\\n\\t\\tif err == nil {\\n\\t\\t\\trootID = peer.ToCid(peerID).String()\\n\\t\\t}\\n\\t}\\n\\n\\t// If rootID is a CID, ensure it uses DNS-friendly text representation\\n\\tif rootCid, err := cid.Decode(rootID); err == nil {\\n\\t\\tmulticodec := rootCid.Type()\\n\\n\\t\\t// PeerIDs represented as CIDv1 are expected to have libp2p-key\\n\\t\\t// multicodec (https://github.com/libp2p/specs/pull/209).\\n\\t\\t// We ease the transition by fixing multicodec on the fly:\\n\\t\\t// https://github.com/ipfs/go-ipfs/issues/5287#issuecomment-492163929\\n\\t\\tif isPeerIDNamespace(ns) && multicodec != cid.Libp2pKey {\\n\\t\\t\\tmulticodec = cid.Libp2pKey\\n\\t\\t}\\n\\n\\t\\t// if object turns out to be a valid CID,\\n\\t\\t// ensure text representation used in subdomain is CIDv1 in Base32\\n\\t\\t// https://github.com/ipfs/in-web-browsers/issues/89\\n\\t\\trootID, err = cid.NewCidV1(multicodec, rootCid.Hash()).StringOfBase(mbase.Base32)\\n\\t\\tif err != nil {\\n\\t\\t\\t// should not error, but if it does, its clealy not possible to\\n\\t\\t\\t// produce a subdomain URL\\n\\t\\t\\treturn \\\"\\\", false\\n\\t\\t}\\n\\t}\\n\\n\\turlparts := strings.Split(g.url, \\\"://\\\")\\n\\tif len(urlparts) < 2 {\\n\\t\\treturn \\\"\\\", false\\n\\t}\\n\\tscheme := urlparts[0]\\n\\thost := urlparts[1]\\n\\treturn safeRedirectURL(fmt.Sprintf(\\\"%s://%s.%s.%s/%s%s\\\", scheme, rootID, ns, host, rest, query))\\n}\\n\"\nvar _Assets5e70439c4378bfd4d8fad0377484821d8d3176bb = \"ASSET_DIRS = $(shell find ./public/ -type d)\\nASSET_FILES = $(shell find ./public/ -type f -name '*')\\n\\nassets.go: ./public/ $(ASSET_DIRS) $(ASSET_FILES)\\n\\tgo-assets-builder . -p gateway -o assets.go\"\nvar _Assets86cd0824fababa1fde259c0e52ec8ca0455e8965 = \"{{template \\\"header\\\" \\\"Oops!\\\"}}\\n<div class=\\\"aligner\\\">\\n    <div class=\\\"aligner-item\\\">\\n        <i class=\\\"fas fa-grimace icon-big\\\"></i>\\n    </div>\\n    <div class=\\\"aligner-item\\\">\\n        <p>{{.Code}} Error: {{.Error}}</p>\\n    </div>\\n</div>\\n{{template \\\"footer\\\"}}\\n\"\nvar _Assetsee5a7899492dd689fa51716a10baa72c11b0a277 = \"{{template \\\"header\\\" \\\"Invite Accepted\\\"}}\\n<div class=\\\"aligner\\\">\\n    <div class=\\\"aligner-item\\\">\\n        <i class=\\\"fas fa-laugh-beam icon-big\\\"></i>\\n    </div>\\n    <div class=\\\"aligner-item\\\">\\n        <p><b>{{.Email}}</b> is now a member of the <b>{{.Org}}</b> organization.</p>\\n        <p>If you haven't already, <a href=\\\"https://github.com/textileio/textile/releases\\\">download the Hub CLI</a> and initialize a new account. Check out <a href=\\\"https://github.com/textileio/textile\\\">the docs</a> for more. You may now close this window!</p>\\n    </div>\\n</div>\\n{{template \\\"footer\\\"}}\\n\"\nvar _Assetsc8a0243f5b1b2cb8a698f03d938b8a2276eb3240 = \"\\x00\\x00\\x00\\x01Bud1\\x00\\x00\\x10\\x00\\x00\\x00\\b\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\b\\x00\\x00\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\b\\v\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00 \\x00\\x00\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x01\\x00\\x00 \\x00\\x00\\x00\\x00\\x01\\x00\\x00@\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x01\\x00@\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x01 \\x00\\x00\\x00\\x00\\x00\\x00\\x01@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\v\\x00\\x00\\x00E\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04DSDB\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00`\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00 \\x00\\x00\\x00\\x00\\x01\\x00\\x00@\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x80\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\b\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x01\\x00 \\x00\\x00\\x00\\x00\\x00\\x01\\x00@\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x80\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\b\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x01 \\x00\\x00\\x00\\x00\\x00\\x00\\x01@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\nvar _Assetsaf1761e86eb6c63bb3e05e2d74c4e2f792ae10b3 = \"\\x00\\x01\\x00\\x00\\x00\\r\\x00\\x80\\x00\\x03\\x00PFFTM\\x8d\\x96\\xb6\\x16\\x00\\x00\\x85\\x10\\x00\\x00\\x00\\x1cGDEF\\x00*\\x00\\xa0\\x00\\x00\\x84\\xf0\\x00\\x00\\x00\\x1eOS/2A\\x92S\\x1b\\x00\\x00\\x01X\\x00\\x00\\x00`cmapǠ\\xc8\\xf4\\x00\\x00\\x04\\f\\x00\\x00\\x03\\xdagasp\\xff\\xff\\x00\\x03\\x00\\x00\\x84\\xe8\\x00\\x00\\x00\\bglyfDڭ\\xd9\\x00\\x00\\t \\x00\\x00n\\xc0head\\x17\\a\\x91\\x1e\\x00\\x00\\x00\\xdc\\x00\\x00\\x006hhea\\x045\\x02\\xd1\\x00\\x00\\x01\\x14\\x00\\x00\\x00$hmtx\\x12\\xb0\\x00t\\x00\\x00\\x01\\xb8\\x00\\x00\\x02Tloca\\xe8\\x01\\xcbF\\x00\\x00\\a\\xe8\\x00\\x00\\x016maxp\\x00\\xea\\x00\\xaf\\x00\\x00\\x018\\x00\\x00\\x00 name2\\xd74(\\x00\\x00w\\xe0\\x00\\x00\\x05[post\\xfciA\\xbb\\x00\\x00}<\\x00\\x00\\a\\xab\\x00\\x01\\x00\\x00\\x01J\\xc0\\x83l\\xd9Ϊ_\\x0f<\\xf5\\x00\\v\\x02\\x00\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\\xff\\xec\\xff\\xb9\\x02\\x87\\x01\\xc9\\x00\\x00\\x00\\b\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x01\\xc0\\xff\\xc0\\x00\\x00\\x02\\x80\\xff\\xec\\x00\\x00\\x02\\x87\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x90\\x00\\x01\\x00\\x00\\x00\\x9a\\x00\\xac\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00@\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x01\\xed\\x01\\x90\\x00\\x05\\x00\\x00\\x01L\\x01f\\x00\\x00\\x00G\\x01L\\x01f\\x00\\x00\\x00\\xf5\\x00\\x19\\x00\\x84\\x00\\x00\\x02\\x00\\x05\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00PfEd\\x00\\x80\\xf0\\x04\\xf5\\xc8\\x01\\xc0\\xff\\xc0\\x00.\\x01\\xcc\\x00T\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x01:\\x01\\xa5\\x00\\x00\\x00 \\x00\\x01\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xaa\\x00\\x00\\x02\\x00\\xff\\xfb\\x02@\\x00\\x0f\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02@\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\xff\\xfc\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\xff\\xfc\\x02@\\x00\\x0f\\x02\\x00\\xff\\xfd\\x02@\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01`\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x17\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\xff\\xff\\x01\\xf0\\xff\\xed\\x02@\\x00\\x00\\x02\\x80\\xff\\xfa\\x02\\x00\\x00\\b\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x01\\xc0\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfd\\x02\\x00\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfd\\x01\\xc0\\xff\\xfb\\x02\\x00\\x00\\b\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\x80\\x00\\x00\\x02@\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\xc0\\xff\\xfb\\x01\\xc0\\x00\\x00\\x02@\\x00\\x00\\x01\\x80\\x00\\x00\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02\\x00\\x00\\b\\x02@\\xff\\xfe\\x02\\x80\\x00\\x00\\x02\\x00\\x00\\x00\\x02\\x00\\xff\\xfc\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x02\\x00\\xff\\xff\\x01\\xf0\\x00\\x00\\x02\\x80\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf0\\x00\\x00\\x01\\xf8\\x00\\x00\\x01\\xf0\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x1c\\x00\\x01\\x00\\x00\\x00\\x00\\x02\\xd4\\x00\\x03\\x00\\x01\\x00\\x00\\x00\\x1c\\x00\\x04\\x02\\xb8\\x00\\x00\\x00\\xaa\\x00\\x80\\x00\\x06\\x00*\\xf0\\x05\\xf0\\a\\xf0\\x17\\xf0\\\"\\xf0$\\xf0.\\xf0>\\xf0D\\xf0Y\\xf0n\\xf0p\\xf0s\\xf0u\\xf0|\\xf0\\x80\\xf0\\x86\\xf0\\x89\\xf0\\x94\\xf0\\x9d\\xf0\\xa0\\xf0\\xa7\\xf0\\xc5\\xf0\\xc8\\xf0\\xe0\\xf0\\xeb\\xf0\\xf3\\xf0\\xf8\\xf0\\xfe\\xf1\\x11\\xf1\\x1a\\xf1\\x1c\\xf13\\xf1D\\xf1F\\xf1J\\xf1N\\xf1R\\xf1\\\\\\xf1e\\xf1\\x86\\xf1\\x92\\xf1\\xad\\xf1\\xc9\\xf1\\xcd\\xf1\\xd8\\xf1\\xe3\\xf1\\xea\\xf1\\xf6\\xf1\\xf9\\xf2\\n\\xf2I\\xf2M\\xf2[\\xf2]\\xf2t\\xf2z\\xf2\\x8b\\xf2\\x8d\\xf2\\xb6\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc2\\xf2\\xd2\\xf2\\xdc\\xf2\\xed\\xf3\\x02\\xf3(\\xf3[\\xf3\\xa5\\xf3\\xd1\\xf4\\x10\\xf4\\xad\\xf4\\xda\\xf5V\\xf5g\\xf5z\\xf5\\x8c\\xf5\\x9c\\xf5\\xa5\\xf5\\xb4\\xf5\\xb8\\xf5\\xc2\\xf5\\xc8\\xff\\xff\\x00\\x00\\xf0\\x04\\xf0\\a\\xf0\\x17\\xf0\\\"\\xf0$\\xf0.\\xf0>\\xf0D\\xf0W\\xf0n\\xf0p\\xf0s\\xf0u\\xf0{\\xf0\\x80\\xf0\\x86\\xf0\\x89\\xf0\\x94\\xf0\\x9d\\xf0\\xa0\\xf0\\xa4\\xf0\\xc5\\xf0\\xc7\\xf0\\xe0\\xf0\\xeb\\xf0\\xf3\\xf0\\xf8\\xf0\\xfe\\xf1\\x11\\xf1\\x18\\xf1\\x1c\\xf13\\xf1D\\xf1F\\xf1J\\xf1M\\xf1P\\xf1[\\xf1d\\xf1\\x85\\xf1\\x91\\xf1\\xad\\xf1\\xc1\\xf1\\xcd\\xf1\\xd8\\xf1\\xe3\\xf1\\xea\\xf1\\xf6\\xf1\\xf9\\xf2\\n\\xf2G\\xf2M\\xf2T\\xf2]\\xf2q\\xf2y\\xf2\\x8b\\xf2\\x8d\\xf2\\xb5\\xf2\\xb9\\xf2\\xbb\\xf2\\xbd\\xf2\\xc1\\xf2\\xd0\\xf2\\xdc\\xf2\\xed\\xf3\\x02\\xf3(\\xf3X\\xf3\\xa5\\xf3\\xd1\\xf4\\x10\\xf4\\xad\\xf4\\xda\\xf5V\\xf5g\\xf5y\\xf5\\u007f\\xf5\\x96\\xf5\\xa4\\xf5\\xb3\\xf5\\xb8\\xf5\\xc2\\xf5\\xc8\\xff\\xff\\x0f\\xff\\x0f\\xfe\\x0f\\xef\\x0f\\xe5\\x0f\\xe4\\x0f\\xdb\\x0f\\xcc\\x0f\\xc7\\x0f\\xb5\\x0f\\xa1\\x0f\\xa0\\x0f\\x9e\\x0f\\x9d\\x0f\\x98\\x0f\\x95\\x0f\\x90\\x0f\\x8e\\x0f\\x84\\x0f|\\x0fz\\x0fw\\x0fZ\\x0fY\\x0fB\\x0f8\\x0f1\\x0f-\\x0f(\\x0f\\x16\\x0f\\x10\\x0f\\x0f\\x0e\\xf9\\x0e\\xe9\\x0e\\xe8\\x0e\\xe5\\x0e\\xe3\\x0e\\xe2\\x0e\\xda\\x0e\\xd3\\x0e\\xb4\\x0e\\xaa\\x0e\\x90\\x0e}\\x0ez\\x0ep\\x0ef\\x0e`\\x0eU\\x0eS\\x0eC\\x0e\\a\\x0e\\x04\\r\\xfe\\r\\xfd\\r\\xea\\r\\xe6\\r\\xd6\\r\\xd5\\r\\xae\\r\\xac\\r\\xab\\r\\xaa\\r\\xa7\\r\\x9a\\r\\x91\\r\\x81\\rm\\rH\\r\\x19\\f\\xd0\\f\\xa5\\fg\\v\\xcb\\v\\x9f\\v$\\v\\x14\\v\\x03\\n\\xff\\n\\xf6\\n\\xef\\n\\xe2\\n\\xdf\\n\\xd6\\n\\xd1\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x06\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x02\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00@\\x00|\\x00\\xc4\\x00\\xf8\\x01n\\x01\\xbe\\x01\\xe2\\x02*\\x02\\x84\\x02\\xce\\x03\\x04\\x03b\\x03\\xac\\x04\\x1a\\x04\\xa2\\x04\\xe0\\x05\\f\\x05H\\x05\\xb6\\x06*\\x06N\\x06\\xcc\\a\\x1a\\ab\\a\\xe2\\bb\\b\\xe2\\t^\\t\\xb8\\n\\x0e\\n:\\n\\x88\\n\\xe8\\v:\\v\\xce\\f\\x18\\f6\\f\\x82\\f\\xd0\\r\\x14\\r\\xe6\\x0e\\x1e\\x0eN\\x0e\\x88\\x0e\\xc6\\x0fD\\x0f\\x84\\x0f\\xc2\\x10\\x00\\x10>\\x10n\\x10\\xba\\x118\\x11\\xb6\\x12(\\x12f\\x12\\xa4\\x12\\xce\\x13L\\x13\\xce\\x14D\\x14\\xa8\\x15\\x00\\x15L\\x15\\xbe\\x16\\x1c\\x16l\\x16\\xe4\\x17.\\x17l\\x17\\xc8\\x18D\\x18\\xa6\\x18\\xf4\\x19f\\x19\\xf0\\x1a\\x98\\x1a\\xca\\x1b\\x14\\x1bZ\\x1b\\xec\\x1ch\\x1c\\xea\\x1dD\\x1d\\xdc\\x1e\\x94\\x1f\\x18\\x1ff\\x1f\\xbc \\x02 f \\xb8!\\b!H!\\x8e!\\xc0\\\"d\\\"\\xec#L#\\xbe$\\x0e$h$\\xd4$\\xfc%\\x14%N&@&\\xa4'\\b'N'\\x84'\\xba'\\xf0(&(j(\\xca)\\\")\\x80)\\xdc*L*\\xc4+4+|+\\xfc,H,\\xa4-\\x10-\\x98.\\x06.d/\\x06/\\x860*0\\x9a1\\x1e1\\xb42\\n2n2\\xee3\\x8e3\\xd6484\\x924\\xea5\\x1e5\\x906\\x006X6\\xc67\\x047`\\x00\\x00\\x00\\x02\\xff\\xfa\\xff\\xdf\\x02\\x06\\x01\\xa5\\x00\\x12\\x00$\\x00\\x00\\x01\\x1e\\x01\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01676\\x16\\x17>\\x01\\x1764'&\\x06\\x0f\\x01'.\\x01\\a\\x06\\x14\\x1f\\x01\\x167\\x01\\xca$\\x18\\x16\\x1b\\xaf\\x10,\\x10\\xaf\\x1b\\x16\\x18$+u**u\\x14\\x1d$\\x1eO\\x1c##\\x1cO\\x1e$\\x1d\\xb0\\x03\\x03\\x01\\x80\\x1fUN\\x1c\\xb2\\x10\\x10\\xb2\\x1cOT\\x1f$\\t**\\t\\xe0\\x1eW\\\"\\x18\\x06\\x1d##\\x1d\\x06\\x18\\\"W\\x1e\\xb2\\x04\\x04\\x00\\x00\\x00\\x02\\x00\\x0f\\xff\\xba\\x021\\x01\\xc1\\x00\\x18\\x00\\\"\\x00\\x00\\x01\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06&?\\x01'&6?\\x0262\\x1f\\x027/\\x01\\x0f\\x01\\x17\\a7\\x17\\x02\\x10\\x14\\f\\x0ej\\x19\\x03 \\x11\\x83\\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92A\\t(\\tA\\ad\\x8b>>\\x8bd\\x17||\\x01\\x14\\x02&\\x0eg\\x92\\x13\\x17\\tDD\\n\\x18\\x13\\x92g\\x0e&\\x02\\x16\\x84\\x12\\x12\\x84\\xa2b\\x14~~\\x14b\\x8bBB\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x13\\x00\\\"\\x00*\\x002\\x00\\x00%2\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014632\\x1626\\x1754&#\\\"\\x06#\\\"&#\\\"\\x06\\x1d\\x016\\\"&462\\x16\\x14&\\\"\\x06\\x14\\x16264\\x01:7O\\x1c\\x14\\xfe\\xa0\\x14\\x1cO7\\r344b3#\\x039\\x1e\\x1e9\\x03#3\\xecxTTxThP88P8\\x90O7\\x1a\\x14\\x1c\\x1c\\x14\\x1a7O\\x10\\x10\\xa0\\x1a#3\\x10\\x103#\\x1a\\xb0TxTTx\\x9c8P88P\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x05'&=\\x014;\\x012\\x1d\\x01\\x17\\x16\\x0f\\x01\\x06\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x06U\\x05\\f \\fC\\t\\a\\x12\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\r>\\x04\\x06\\xa4\\f\\f\\x8e0\\a\\n\\x1a\\n\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00G\\x00O\\x00W\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x143%\\x15\\x14+\\x01\\\"=\\x014;\\x0125\\x15\\x14+\\x01\\\"=\\x014;\\x0125\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x06\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x9a\\x06\\x06\\xfel\\x06\\x06\\x01j\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\f\\xc8\\f\\xfc\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x15\\x15\\x1e\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x06\\x01T\\x06\\x06\\xfe\\xac\\x06\\\\\\x18\\f\\f\\x18\\fT\\x18\\f\\f\\x18\\fT\\x18\\f\\f\\x18\\f\\t\\x1e\\x15\\x15\\x1e\\x15u\\x1e\\x15\\x15\\x1e\\x15u\\x1e\\x15\\x15\\x1e\\x15\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc2\\x00(\\x008\\x00\\x00\\x01276\\x16\\x1d\\x01\\x14\\a\\x06#\\\"&#\\\"\\a\\x15\\x14\\x06+\\x01\\\"&5\\x11&546\\x17\\x1e\\x01\\x17\\x14\\x15\\x14\\a632\\x16\\x135\\x06#\\\"&#\\\"\\a\\x15632\\x1632\\x01P,A\\x18+\\x16=C%g\\x16A?\\t\\a\\x10\\a\\t\\x18\\x1e\\x15\\x11\\x1a\\x02\\x02')%g\\x96E;\\x1ef\\x1e9-4L\\x1ef\\x1e9\\x01p\\x1c\\n\\x1c\\x1a\\xf0\\x1a\\x0e( \\x1dS\\a\\t\\t\\a\\x01\\x96\\x0e\\x1c\\x15\\x1c\\x01\\x01\\x18\\x11\\x03\\x03\\b\\a\\x0f \\xff\\x00\\xf0   \\xe8\\x18 \\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\n\\x00\\x13\\x00\\x00\\x012\\x16\\x15\\x11'\\a\\x11463\\x01\\x114#!\\\"\\x15\\x117\\x01P\\x14\\x1c\\xc0\\xc0\\x1c\\x14\\x01 \\x06\\xfe\\xec\\x06\\x90\\x01\\xc0\\x1c\\x14\\xfe0pp\\x01\\xd0\\x14\\x1c\\xfeT\\x01v\\x06\\x06\\xfe\\x8aT\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00#\\x00.\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x14362\\x16\\x14\\x06\\\"&4\\x17576\\x1f\\x0176\\x1f\\x01\\x15\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x9a\\x06\\x06\\xfel\\x06\\x069\\\"\\x17\\x17\\\"\\x17\\b(\\b\\b(x\\b\\bX\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xb0\\x06\\x01\\x14\\x06\\x06\\xfe\\xec\\x06\\xf8\\x17\\\"\\x17\\x17\\\"\\xb10(\\b\\b(x\\b\\bXP\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc1\\x00\\x1c\\x00*\\x00/\\x007\\x00\\x00%76\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x0f\\x01\\x06+\\x01\\x11!547\\x01\\a\\x06&?\\x01\\x0162\\x1f\\x01\\x16\\x14\\a'\\x0f\\x017\\x13'&\\x0f\\x01\\x1776\\x01\\x92 \\x04\\n\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\x12\\x05\\x04\\x04 \\x02\\x03\\xf2\\x01`\\x9f\\xfe\\xf9Z\\x14\\x1c\\x02\\n\\x01\\a\\x110\\x12+\\x11t:\\xba\\aA\\xfb+\\b\\a\\x1f:\\x1f\\ag \\x04\\x04\\x06\\x91\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\n\\x04 \\x02\\xfe\\xa0r\\x03\\xcc\\xfe\\xf9\\n\\x02\\x1c\\x14Z\\x01\\a\\x11\\x11+\\x1110:\\xbaA\\a\\x01\\n+\\a\\a\\x1f:\\x1f\\a\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00+\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01.>>\\b\\b\\x17\\b\\t>>\\t\\b\\x17\\b\\b>>\\b\\b\\x17\\b\\t>>\\t\\b\\x17\\b\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x91>>\\t\\b\\x17\\b\\b>>\\b\\b\\x17\\b\\t>>\\t\\b\\x17\\b\\b>>\\b\\b\\x17\\b\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4$\\\"\\x06\\x14\\x16264\\a\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x1f\\x0176\\x17\\x99Α\\x91Α\\x01K\\xa6uu\\xa6u<\\t\\t\\xac\\t\\b[\\t\\t\\x17\\b\\t;\\x8e\\b\\t\\x01\\xb8\\x91Α\\x91\\xceau\\xa6uu\\xa6\\r\\t\\b\\xab\\t\\t[\\t\\b\\x17\\b\\b=\\x8d\\b\\t\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x008\\x00@\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x14\\x0e\\x02\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014>\\x027>\\x0354&#\\\"\\x0e\\x01\\a\\x06/\\x01&7632\\x16\\x06\\x14\\x06\\\"&462\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x013\\x16\\x1c\\x16\\a\\x05.\\x05\\a\\b\\x12\\n\\f\\b\\b\\t\\x03\\x19\\x0f\\v\\x11\\f\\t\\a\\t\\x1c\\t\\x06%@&?A\\x19\\\"\\x19\\x19\\\"\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x8a\\x17 \\x0e\\x10\\b\\x06\\x05\\a\\a\\x05\\t\\f\\x14\\x10\\a\\x06\\x05\\x05\\a\\b\\x05\\f\\x10\\a\\f\\v\\t\\a\\x15\\a\\n64\\xbb\\\"\\x19\\x19\\\"\\x19\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x11\\x00#\\x00/\\x00\\x00\\x012\\x16\\x14\\x06\\\"&547\\x1632654'6\\x05\\x16\\x14\\a\\x0e\\x01#\\\".\\x01'&47>\\x012\\x16\\a267.\\x01\\\"\\x06\\a\\x1e\\x02\\x01 /AA]A\\x04\\r\\x0e\\x17!\\a\\x0f\\x01-\\x03\\x03*\\x98[<oV\\x1c\\x03\\x03*\\x98\\xb6\\x98\\xf3J\\u007f%%\\u007f\\x94\\u007f%\\x18J[\\x010A]AA.\\x10\\x0f\\a!\\x17\\x0e\\r\\x05a\\a\\x10\\aPa-O5\\a\\x10\\aPaa\\xefMCCMMC,A#\\x00\\x05\\xff\\xff\\xff\\xc0\\x02\\x81\\x01\\xc0\\x00\\x13\\x00\\x19\\x00\\x1f\\x003\\x00F\\x00\\x00\\x05\\x16\\x15\\x14\\x0f\\x01\\x06#\\\"'\\x01&54?\\x01632\\x17\\x05632\\x16\\x17\\a\\x06#\\\"&'7\\\"\\a'632\\x1e\\x01\\x17\\x16\\x14\\a\\x06\\a'67.\\x01\\x0327\\x17\\x06#\\\"&'&4767\\x17\\x06\\a\\x1e\\x01\\x02z\\x06\\x04\\n\\x04\\b\\x06\\x04\\xfd\\xaa\\x06\\x04\\n\\x04\\b\\x06\\x04\\x01\\x05\\v\\f-A\\x02Y\\v\\f-A\\x02p\\x1b\\x1f/54<oV\\x1c\\x03\\x03\\x16\\x1f&\\x1a\\x12%\\u007fJ\\x1b\\x1f/54[\\x98*\\x03\\x03\\x16\\x1f&\\x1a\\x12%\\u007f\\x17\\x05\\a\\x06\\x05\\f\\x06\\x04\\x01\\xd3\\x05\\a\\x06\\x05\\f\\x06\\x04\\x8e\\x02?-r\\x02?-\\x94\\a$\\x13-O5\\a\\x10\\a)\\\"\\x1e\\x1b!CM\\xfe\\xe0\\a$\\x13aP\\a\\x10\\a)\\\"\\x1e\\x1b!CM\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00/\\x00;\\x00G\\x00g\\x00o\\x00\\x007#\\\"=\\x014;\\x012\\x1d\\x01\\x147\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x157\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2\\x94(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\xc0\\f(\\f\\f(\\f`\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06\\xa0\\f(\\f\\f(\\f\\f\\f\\f(\\f\\f(\\f\\f(\\f\\f\\x88\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f(\\f\\f\\xdc\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x02\\xff\\xfb\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x13\\x00&\\x00\\x00\\x122\\x16\\x14\\x06#\\\"'\\x06#\\\"&7>\\x027&54\\x05264&\\\"\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\a6?\\x01\\x17\\x16\\x96Ԗ\\x96j/.AJ\\x10\\f\\n\\x02\\x0f\\x17\\a5\\x01\\x00Vzz\\xacz(\\x14\\n\\b\\f\\x1e\\x1b\\x14\\x17&\\x01\\xa0z\\xacz\\x0e.\\x1d\\v\\x02\\x11%\\x128FV\\xf6^\\x84^^B3*\\x16\\x1c\\x14\\x15\\n\\x14\\r\\a\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x13\\x00\\x1b\\x00\\x00\\x012\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01\\x135#\\\"/\\x01#\\x11\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x93\\r\\t7\\xc0\\xc7\\r\\t7\\x8c\\x01@\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\t7\\xfe\\xf0\\xe0\\t7\\xfe\\xe0\\x00\\x03\\x00\\x00\\x00\\x00\\x02H\\x01\\x80\\x00\\x15\\x00\\\"\\x00&\\x00\\x00%2\\x16\\x0f\\x01\\x06#!\\\"&5\\x1146;\\x01\\x1732\\x16\\x1d\\x01%\\x15763!54+\\x01'#\\\"\\x017!\\a\\x02\\x10\\x1c\\x1c\\x0fP\\x0e\\x1b\\xfep\\x14\\x1c\\x1c\\x14\\xa0@\\xa0\\x14\\x1c\\xfeP?\\x0e\\x1b\\x01\\x18\\x06\\xae@\\x86\\x06\\x01\\x90P\\xfe\\x85M\\xe01\\x18\\x80\\x17\\x1c\\x14\\x01 \\x14\\x1c@\\x1c\\x140j\\xe9h\\x17*\\x06@\\xfe\\xe0\\x80\\x80\\x00\\x05\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1f\\x00/\\x00D\\x00T\\x00\\x00%\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#3\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x172\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x16\\x15\\x117\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\x06#\\x01\\x8d\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05\\xd6\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05J\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05\\xad\\a\\t\\t\\a\\xfe0\\r\\x13\\t\\a\\x10\\a\\t=\\x05\\b\\b\\x05\\x16\\x05\\b\\b\\x05`\\b\\x05\\xe6\\x05\\b\\b\\x05\\xe6\\x05\\b\\b\\x05\\xc6\\x05\\b\\b\\x05\\xc6\\x05\\b\\b\\x05\\x86\\x05\\b\\b\\x05\\x86\\x05\\b0\\t\\a\\x10\\a\\t\\x13\\r\\x01P\\a\\t\\t\\a\\xfe\\xc00\\b\\x05F\\x05\\b\\b\\x05F\\x05\\b\\x00\\x03\\xff\\xfb\\xff\\xe0\\x02E\\x01\\xa0\\x00#\\x006\\x00M\\x00\\x00%\\x1e\\x02\\x17\\x16\\x06#\\\"'\\x06#\\\"&'&'\\x06#\\\"&767&54632\\x16\\x17\\x1e\\x01\\x15\\x14%\\x17\\x163264&\\\"\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\a67\\x05654&'\\x16\\x15\\x14\\x0e\\x01\\a\\x1632?\\x01\\x17\\x16\\x17&/\\x01\\x02\\x14\\a\\x13\\v\\x01\\n\\f\\x0fA<\\x1e\\x1e@g\\x18\\x0f\\x0e;B\\x0f\\f\\n\\x15\\x11,zV@h\\x18Ke\\xfeK\\x14\\x18\\x19A__\\x82_\\x1e\\x18\\x0f\\x04\\x04\\x16\\x15\\x01x\\x1e@1\\x01/R21R\\x19\\x18\\x14\\x11\\x15\\x16\\x04\\x04\\x0f>\\x0e\\x1b\\r\\x01\\v\\x1c'\\a6,\\x02\\x03'\\x1c\\v\\x14#+7B^6,\\tY<71\\x04\\x06B\\\\BB.#\\x1d\\x18 \\a\\a\\a\\x0e/\\x1d#$;\\v\\b\\x02(E,\\x052\\x06\\x04\\v\\x0e\\a\\a\\a \\x00\\x00\\x00\\x01\\x00\\x0f\\xff\\xba\\x01 \\x01\\xc0\\x00\\x13\\x00\\x00%\\x15\\a\\x06&?\\x01'&6?\\x0263\\x15\\x0f\\x01\\x17\\a\\x01 \\x83\\x11 \\x03\\x19j\\x0e\\f\\x14\\x92A\\t\\x14>\\x8bd\\x17?7D\\t\\x17\\x14\\x91g\\x0e&\\x03\\x15\\x84\\x12D~\\x14b\\x8b\\x00\\x00\\x03\\xff\\xfc\\xff\\xbc\\x02\\x04\\x01\\xc4\\x00#\\x00A\\x00Q\\x00\\x00\\x00\\x1e\\x01\\a\\x0e\\x01\\x16\\x0e\\x06&\\x06\\a\\x06.\\x027>\\x01&>\\x06\\x16676\\x176&\\a\\x0e\\x01&\\x0e\\x04\\x16\\x06\\a\\x06\\x167>\\x01\\x162>\\x017>\\x02&6&\\x16\\x06\\a\\x0e\\x01\\a\\x0e\\x01.\\x017>\\x0176\\x01\\xcf*\\v\\r\\x04\\x02\\b\\x04\\n'>D88(%\\b\\x166*\\v\\r\\x04\\x02\\b\\x04\\n'>D88(%\\b\\x165\\n,\\x11\\x1136<FD \\x03\\x06\\x01\\v\\n,\\x11\\x0f*(32;\\x1d\\\" \\x03\\x06\\x01\\xa0\\x02\\n\\t)`\\x05\\x01\\r\\x11\\n\\x01\\at7\\b\\x01\\xb9*6\\x16\\b%(88D>&\\v\\x04\\b\\x02\\x04\\r\\v*6\\x16\\b%(88D>&\\v\\x04\\b\\x02\\x04\\ri\\x12+\\n\\v\\x01\\x06\\x03 DF<63\\x11\\x12+\\n\\t\\x04\\x06\\a!\\x1c\\\"F<63\\x11\\x11\\r\\x01\\x05`)\\t\\n\\x02\\r\\b7t\\a\\x01\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x10\\x00\\x18\\x00 \\x00,\\x008\\x00\\x00\\x012\\x1e\\x01\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x17\\\"\\x1d\\x01!54#\\x112=\\x01!\\x15\\x1437\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x17\\x15\\x14+\\x01\\\"=\\x014;\\x012\\x02\\x10\\r\\x16\\r\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x06\\x06\\x01\\xe0\\x06\\x06\\xfe \\x06\\x8a\\fH\\f\\fH\\f\\xc0\\f\\x88\\f\\f\\x88\\f\\x01\\xa0\\r\\x16\\r\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06**\\x06\\xfe\\xa0\\x06\\xaa\\xaa\\x06d(\\f\\f(\\f\\f(\\f\\f(\\f\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x15\\x00\\x19\\x00\\x1d\\x00%\\x00-\\x00\\x00%\\x16\\x1d\\x01\\x14\\x06#!\\\"&=\\x014?\\x01>\\x013!2\\x16\\x17\\x05\\a!'\\x135!\\x15$\\x14\\x06\\\"&462\\x06\\x14\\x06\\\"&462\\x027\\t\\x1c\\x14\\xfe \\x14\\x1c\\ti\\x06\\x17\\n\\x01\\x0e\\n\\x17\\x06\\xfe\\xcbN\\x01\\xaaNi\\xfe \\x01\\xc0\\x13\\x1a\\x13\\x13\\x1aM\\x13\\x1a\\x13\\x13\\x1a\\xd4\\f\\x0f\\x89\\x14\\x1c\\x1c\\x14\\x89\\x0f\\f\\x97\\t\\f\\f\\t\\x1bpp\\xfe\\xe0\\x80\\x80M\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x002\\x00U\\x00]\\x00\\x00\\x012\\x16\\x15\\x14\\x0e\\x02+\\x01\\x06\\a\\x16\\a\\x0e\\x01+\\x01\\\"&+\\x01\\x06+\\x01\\\"&=\\x0146;\\x012\\x17327167>\\x0332\\x16\\x15\\x14\\a\\x172654&+\\x014654#\\\"\\x0e\\x01\\a\\x06\\a\\x06\\a\\x15\\x1e\\x02;\\x012'>\\x01'>\\x01'\\x064&\\\"\\x06\\x14\\x162\\x01\\xad\\\"1\\r\\x17\\x1e\\x11$\\x02\\x06\\x04\\x14\\x015.\\x15\\\"S\\n\\x03\\t\\r@\\r\\x13\\x13\\r@\\r\\t\\x03\\t\\x15\\x11\\t\\x04\\x12\\f\\x1a\\x10*2\\x02V\\x0e\\x15\\x15\\x0e\\x9f\\x1b,\\x04\\n\\x10\\x05\\v\\x14 \\x1b\\x11**\\x13\\x15=\\n\\f\\t\\b\\x0e\\x01\\n\\xfa\\x0e\\x14\\x0e\\x0e\\x14\\x0161\\\"\\x11\\x1e\\x17\\r\\f\\n\\\"\\x1d(3(\\b\\x11\\f\\xe6\\f\\x11\\b\\x18\\x13\\x0e\\x06$\\x13\\x12/$\\f\\vv\\x15\\x0e\\x0e\\x15\\a,\\x14#\\x11\\x1f\\b\\x12\\x16$\\x04\\xb0\\x02\\x14\\x12=\\a \\x0f\\r&\\n\\x8a\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x002\\x00V\\x00^\\x00\\x00546;\\x01&54632\\x1e\\x02\\x17\\x16\\x171\\x16;\\x016;\\x012\\x1e\\x02\\x1d\\x01\\x14\\x06+\\x01\\\"'#\\\"\\x06+\\x01\\\"&'&7&'#\\\"&7\\x14\\x16;\\x01\\x06\\x16\\x17\\x06\\x16\\x17\\x06;\\x012675&'&'.\\x02#\\\"\\x15\\x14\\x16\\x15#\\\"\\x0e\\x02\\x04\\\"\\x06\\x14\\x162641\\\"V\\x022*\\x10\\x1a\\f\\x12\\x04\\t\\x11\\x15\\t\\x03\\t\\r@\\a\\v\\t\\x05\\x13\\r@\\r\\t\\x03\\nS\\\"\\x15.5\\x01\\x14\\x04\\x06\\x02$\\\"10\\x15\\x0e[\\n\\x01\\x0e\\b\\t\\f\\n=\\x15\\x18L\\x14\\x1b \\x14\\v\\x05\\x10\\n\\x04,\\x1b\\x9f\\a\\r\\t\\x06\\x01\\x9a\\x14\\x0e\\x0e\\x14\\x0e\\xe3\\\"1\\v\\f$/\\x12\\x13$\\x06\\x0e\\x13\\x18\\b\\x05\\a\\v\\x06\\xe6\\f\\x11\\b(3(\\x1d\\\"\\n\\f1\\\"\\x0e\\x15\\n&\\r\\x0f \\a=&\\x02\\xb0\\x04$\\x16\\x12\\b\\x1f\\x11#\\x14,\\a\\x05\\n\\r\\x92\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x003\\x00U\\x00]\\x00\\x00\\x134632\\x1e\\x01\\x1d\\x01\\x16\\x176\\x17\\x1e\\x01\\x1d\\x01\\x14\\x06\\x1d\\x01\\x16\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x014754'1&'.\\x0454632\\x1774&#\\\"\\x06\\x1d\\x01\\\"&#\\\"\\x15\\x14\\x1e\\x01\\x17\\x16\\x17\\x16\\x173>\\x01=\\x014\\a.\\x01\\a.\\x01\\a\\x16\\\"\\x06\\x14\\x16264j1\\\"\\x16'\\x16\\f\\n\\\"\\x1d(3(\\b\\b\\r\\b\\xe6\\f\\x11\\b\\x18\\x13\\x0e\\a\\x1a\\x11\\x13\\n/$\\f\\vv\\x15\\x0e\\x0e\\x15\\a,\\x14#\\x11\\x1f\\b\\x12\\x16$\\x04\\xb0\\x02&=\\a \\x0f\\r&\\n\\x8a\\x14\\x0e\\x0e\\x14\\x0e\\x01m\\\"1\\x16'\\x16$\\x02\\x06\\x04\\x14\\x015.\\x15\\\"S\\n\\x03\\t\\r@\\t\\x0e\\t\\x13\\r@\\r\\t\\x03\\t\\x15\\x11\\t\\x04\\r\\n\\x0f\\x15\\r*2\\x02V\\x0e\\x15\\x15\\x0e\\x9f\\x1b,\\x04\\n\\x10\\x05\\v\\x14 \\x1b\\x14L\\x18\\x15=\\n\\f\\t\\b\\x0e\\x01\\n\\xfa\\x0e\\x14\\x0e\\x0e\\x14\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x001\\x00S\\x00[\\x00\\x00\\x17\\\"&=\\x01\\x06#\\\"&54>\\x0376716=\\x01&=\\x0146;\\x012\\x16\\x1d\\x01\\x14\\a\\x15\\x14\\x16\\x1d\\x01\\x14\\x06\\a\\x06'\\x06\\a\\x15\\x14\\x06'26=\\x01\\x1667\\x1667\\x16=\\x014&'#\\x06\\a\\x06\\a\\x0e\\x02\\x15\\x143263\\x15\\x14\\x16\\x12\\x14\\x16264&\\\"\\xbd\\\"1\\v\\f$/\\n\\x13\\x11\\x1a\\a\\x0e\\x13\\x18\\b\\x11\\f\\xe6\\f\\x11\\b(3(\\x1d\\\"\\n\\f1\\\"\\x0e\\x15\\n&\\r\\x0f \\a=&\\x02\\xb0\\x04$\\x16\\x12\\b\\x1f\\x11#\\x14,\\a\\x15\\x99\\x0e\\x14\\x0e\\x0e\\x14@1\\\"V\\x022*\\r\\x15\\x0f\\n\\r\\x04\\t\\x11\\x15\\t\\x03\\t\\r@\\r\\x13\\x13\\r@\\r\\t\\x03\\nS\\\"\\x15.5\\x01\\x14\\x04\\x06\\x02$\\\"10\\x15\\x0e[\\n\\x01\\x0e\\b\\t\\f\\n=\\x15\\x18L\\x14\\x1b \\x14\\v\\x05\\x10\\n\\x04,\\x1b\\x9f\\x0e\\x15\\x01\\x9a\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00*\\x009\\x00B\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06+\\x01\\x15\\x14\\x06+\\x01\\\"&5\\x1146;\\x01546;\\x012\\x17\\x032=\\x01#\\\"&=\\x01#\\\"\\x15\\x11\\x143%2=\\x01#\\\"&=\\x01#\\\"\\x15\\x11\\x143\\x1354/\\x01&+\\x01\\x15\\x01\\xb2\\x0e\\x1c\\x14P\\x1c\\x14\\xe0\\x14\\x1c\\x1c\\x14P\\x1c\\x14\\xac\\x14\\x0et\\x06`\\x14\\x1cJ\\x06\\x06\\x01T\\x06X\\n\\x0ej\\x06\\x06\\xda\\x020\\x02\\x02\\n\\x01~\\x0e\\x14\\xfe\\xf4\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c0\\x14\\x1c\\x0e\\xfe>\\x06*\\x1c\\x14\\xe0\\x06\\xfe\\xcc\\x06`\\x06\\xca\\x0e\\nX\\x06\\xfe\\xcc\\x06\\x01\\x00\\n\\x02\\x020\\x02@\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x15\\x00+\\x003\\x00;\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x17\\a#\\x153\\x1325\\x114/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01#\\\"\\x15\\x11\\x14362\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01\\xb2\\x0e\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01\\f\\x14\\x0eN\\x80\\x80z\\x06\\x02N\\x0e\\n\\xb0\\n\\x0e*\\x06\\x06\\x86H44H4G\\\"\\x17\\x17\\\"\\x17\\x01>\\x0e\\x14\\xfe\\xf4\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x0e\\\"P\\xfe\\xf0\\x06\\x01\\x04\\x02\\x02Nd\\n\\x0e\\x0e\\nh\\x06\\xfe\\xac\\x06\\xc84H44HL\\x17\\\"\\x17\\x17\\\"\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x143\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01Z\\x06\\x06\\xfe\\xac\\x06\\x06\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x06\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x03\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00 \\x002\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x05!\\x15\\x16\\x17\\x14\\x1e\\x0232>\\x02567\\x05!5\\x06\\a\\x0e\\x04\\\".\\x03'&'\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\xfe`#d\\x1c\\x0e\\x17\\b\\b\\x17\\x0e\\x1cd#\\xfe`\\x01\\xa0#F\\x02\\x19\\x0e\\x1a\\x18\\x18\\x19\\x19\\x0e\\x19\\x02F#\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c0)\\x1cN\\x01\\x17\\t\\f\\f\\t\\x17\\x01N\\x1c\\xf7\\xba\\x1c7\\x01\\x16\\n\\x0f\\a\\a\\x10\\n\\x15\\x017\\x1c\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01`\\x01\\xc0\\x00\\x0f\\x00\\x1d\\x00B\\x00\\x00\\x132\\x16\\x14\\x06#\\\"\\x06\\x15\\x14\\x06\\\"&546\\x0353\\x15\\x14\\x0f\\x01\\x06+\\x01\\\"/\\x01&\\x132\\x16\\x15\\x14\\a\\x0e\\x01\\a#4767654&#\\\"\\x06\\x15\\x14\\x17\\x16\\x17\\x16\\x15#.\\x02'&546\\xb0\\a\\t\\t\\a\\x1a&\\t\\x0e\\t8(\\xa0\\x03\\x18\\x05\\tN\\t\\x05\\x18\\x03PIg,\\x0e\\x1f\\a0\\x02\\x13+ K54L +\\x13\\x020\\x05\\x13\\x14\\b,e\\x01p\\t\\x0e\\t&\\x1a\\a\\t\\t\\a(8\\xfe\\x85++\\x05\\x04%\\a\\a%\\x04\\x01\\xd0gIB2\\x105\\x17\\a\\a=1$05KJ60$1=\\a\\a\\x10%\\x1d\\n2BGi\\x00\\x00\\x00\\x03\\xff\\xff\\xff\\xc0\\x01\\xc1\\x01\\xc0\\x00%\\x003\\x009\\x00\\x00%\\x16\\x15\\x14\\x06#!\\\".\\x0154767>\\x0254675462\\x16\\x1d\\x01\\x1e\\x02\\x15\\x14\\x1e\\x01\\x17\\x16\\x05!&5414&\\\"\\x06\\x150\\x15\\x14\\x16\\\"&53\\x14\\x01\\xb7\\t\\x12\\x0e\\xfe\\x80\\t\\x0f\\b\\t\\x01\\x02\\x0f\\x11\\x14H8\\x13\\x1a\\x13%:!\\x14\\x11\\x0f\\x02\\xfe\\x8e\\x018,B\\\\B\\x8a4&\\x80V\\n\\f\\r\\x13\\t\\x0f\\b\\f\\n\\x01\\x03\\x0f\\x18C,:V\\v\\x15\\r\\x13\\x13\\r\\x15\\a,B&,C\\x18\\x0f\\x03\\a;d\\x01.BB.\\x01d\\xcb%\\x1b\\x1b\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00/\\x00K\\x00a\\x00}\\x00\\x00754;\\x012\\x1d\\x01\\x14+\\x01\\\"3\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x17\\x15!54;\\x01\\x1146;\\x01546;\\x012\\x16\\x1d\\x0132\\x16\\x15\\x1132%354;\\x012\\x1d\\x013\\x11#\\x15\\x14\\x06+\\x01\\\"&=\\x01#7#54+\\x01\\\"\\x1d\\x01#\\\"\\x1d\\x01\\x14;\\x01\\x15\\x14;\\x012=\\x0132=\\x014\\x80\\f(\\f\\f(\\f\\x8c\\f\\f(\\f\\ft\\f(\\f\\f(\\fL\\f\\f(\\f\\f\\x8c\\xfe@\\f\\x14\\x0e\\nX\\x0e\\np\\n\\x0eX\\n\\x0e\\x14\\f\\xfe\\x90p\\f(\\fp@\\x0e\\np\\n\\x0e@\\xba\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\xcc(\\f\\f(\\f\\f(\\f\\f(\\fT\\f\\f(\\f\\f4\\f(\\f\\f(\\f|$$\\f\\x01{\\t\\f(\\n\\x0e\\x0e\\n(\\f\\t\\xfe\\x85\\x01C\\f\\fC\\x01_\\x18\\n\\x0e\\x0e\\n\\x180\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x1a\\x06\\x06\\x1a\\x06\\x14\\x06\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x1b\\x00+\\x007\\x00\\x00%\\x15\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x0154;\\x012\\x1d\\x01327\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\x01`\\fX\\f \\fX\\f\\fX\\f \\fX\\f`\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\xd0 \\fX\\f\\fX\\f \\fX\\f\\fX\\x94\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x02\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x14\\x16\\\"&462\\x16\\x14\\a>\\x01\\x1e\\x01\\a\\x06\\\"'&>\\x01\\x16\\x17\\x162\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13\\x1c\\x06\\x14\\x0f\\x02\\x06/\\x94/\\x06\\x02\\x0f\\x14\\x06!f\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\\\\\b\\x02\\r\\x14\\a99\\a\\x14\\r\\x02\\b'\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x000\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x1462\\x16\\x14\\x06\\\"&4\\x062\\x17\\x16\\x06\\a\\x06&'&\\\"\\a\\x0e\\x01.\\x017\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13o~)\\x06\\x02\\a\\b\\x14\\x06\\x1aR\\x1a\\x06\\x14\\x0f\\x02\\x06\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1am1\\a\\x14\\x06\\a\\x02\\b\\x1f\\x1f\\b\\x02\\r\\x14\\a\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00+\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x1462\\x16\\x14\\x06\\\"&4\\x172\\x16\\x14\\x06+\\x01\\\"&463\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13(\\n\\x0e\\x0e\\n\\xb0\\n\\x0e\\x0e\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1a}\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x0f\\x00\\x1b\\x00'\\x003\\x00?\\x00K\\x00W\\x00c\\x00o\\x00{\\x00\\x87\\x00\\x93\\x00\\x9f\\x00\\xab\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x114#!\\\"\\x15\\x11\\x143!2%\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x05\\x14+\\x01\\\"=\\x014;\\x012\\x15%\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\x14+\\x01\\\"=\\x014;\\x012\\x15\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe8\\b\\xfe \\b\\b\\x01\\xe0\\b\\xfe\\x92\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f\\xfe\\xb0\\f\\x1c\\f\\f\\x1c\\f\\x01\\x80\\f\\x1c\\f\\f\\x1c\\f\\xfe\\x80\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\f`\\f\\x1c\\f\\f\\x1c\\fb\\f\\xd8\\f\\f\\xd8\\f\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xb0\\x01 \\b\\b\\xfe\\xe0\\b\\x8a\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\fn\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x88\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\x1c\\f\\f\\xba\\f\\f\\x10\\f\\f\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1f\\x00'\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x1325\\x11!\\x11\\x143\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f*\\x06\\xfe\\xa0\\x06\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\xfep\\x06\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\f\\x00\\x14\\x00\\x1c\\x00\\x00%\\x16\\x14\\x0f\\x01\\x06.\\x01=\\x0146\\x17\\x04\\x14\\x06\\\"&462\\x04\\x14\\x16264&\\\"\\x01t\\f\\f\\xb0\\t\\x10\\v\\x18\\f\\x014\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xd2\\a\\x1c\\ae\\x04\\x03\\r\\t\\xd0\\x0e\\x0e\\a\\x16Α\\x91Α\\xa5\\xa6uu\\xa6u\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\v\\x00\\x1b\\x00'\\x00\\x007\\\"=\\x014;\\x012\\x1d\\x01\\x14#7\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2l\\f\\f\\xe8\\f\\fl\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\xa4\\f \\f\\f \\f\\xcc\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00#\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x11%\\a\\x06/\\x01&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\xfe\\xa0\\x01<\\xac\\t\\b[\\t\\t\\x17\\b\\t;\\x8e\\b\\t\\x16\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x01`\\xfe\\xa0\\xf2\\xab\\t\\t[\\t\\b\\x17\\b\\b=\\x8c\\t\\t\\x16\\t\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02A\\x01\\xc9\\x00\\x1c\\x002\\x00Y\\x00\\x00\\x01\\x16\\x14\\x0f\\x01\\x06&=\\x01\\x0e\\x01\\x14\\x17\\x16\\x06'.\\x015476767546\\x17\\x037'\\x15\\\"\\x0e\\x04\\x15\\x14\\x17.\\x01>\\x057\\x17676\\x16\\x1d\\x01\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1d\\x01\\x14\\a\\x06\\a\\x06+\\x01\\\"\\x15\\x11\\x143!2=\\x014\\x022\\x0e\\x0e\\x90\\x17;1+\\b\\v6\\x1c(-$\\x1e50I;\\x17\\\"\\x90\\x90!0<*&\\x13>\\a\\x04\\b\\x10\\x1a\\x1f))\\x1a\\x19\\v\\n\\x06\\f\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x84\\f\\b\\x14\\x12\\x03\\x03V\\x06\\x06\\x01T\\x06\\x01\\\"\\x0e(\\x0e\\x90\\x17\\x19 6\\x04\\x13 \\x18 )\\x11\\x19K-;(!\\x11\\x0f\\x039 \\x18\\x16\\xfe\\xbe\\x90\\x90h\\x03\\b\\x11\\x19)\\x1aA'\\x16%\\x1c\\x16\\x0f\\n\\a\\x02\\x01\\xbc\\x03\\x06\\x04\\a\\a+\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\f\\x04\\t\\x03\\b\\n\\x02\\x06\\xfe\\xac\\x06\\x06\\x1a\\t\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\r\\x00\\x15\\x00\\x1d\\x00%\\x00\\x00\\x016\\x16\\x0f\\x01\\x06\\x0f\\x01\\x06&?\\x0167\\x1664&\\\"\\x06\\x14\\x16\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x01\\\\\\f\\x14\\x06B\\x05\\v\\x90\\f\\x14\\x06B\\x05\\v9\\x13\\x13\\x1a\\x13\\x13ZΑ\\x91Α\\xa5\\xa6uu\\xa6u\\x01>\\x06\\x14\\f\\x90\\v\\x05B\\x06\\x14\\f\\x90\\v\\x05\\\\\\x13\\x1a\\x13\\x13\\x1a\\x13\\x01\\x18\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00732\\x16\\x0f\\x01\\x06/\\x01&6%\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2}\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06\\x01K\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\xf0\\x0f\\x05c\\b\\bc\\x05\\x0f\\x80\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00%#\\\"&?\\x016\\x1f\\x01\\x16\\x067\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\x01C\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06u\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\x90\\x0f\\x05c\\b\\bc\\x05\\x0f\\xe0\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x007546\\x1f\\x01\\x16\\x0f\\x01\\x06&\\x01\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\xb0\\x0f\\x05c\\b\\bc\\x05\\x0f\\x01\\x10\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06]\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06\\x01\\x1b\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\v\\x00\\x17\\x00)\\x00,\\x005\\x00\\x00%\\x15\\x14+\\x01\\\"=\\x014;\\x012\\a2\\x1d\\x01\\x14+\\x01\\\"=\\x0143%\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01\\x16'\\x153\\x13\\x11#\\\"&=\\x01#\\x11\\x01 \\f\\xa8\\f\\f\\xa8\\f\\f\\f\\f\\xa8\\f\\f\\x01\\x14\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0eT\\x0e\\x80L\\x04h\\n\\x0e\\xa0\\xc8\\x1c\\f\\f\\x1c\\fT\\f\\x1c\\f\\f\\x1c\\f\\xbc\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0eT\\x0e<L\\xfe\\xb0\\x01 \\x0e\\nh\\xfe`\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xe0\\x01\\xc0\\x00.\\x00T\\x00\\\\\\x00\\x00%\\x16\\a\\x16\\a\\x0e\\x02#*\\x01#\\\".\\x01#\\x0e\\x01+\\x01\\\"&=\\x0146;\\x01>\\x027>\\x0232\\x16\\x15\\x14\\a32\\x1e\\x01\\x15\\x14\\a>\\x01'2654&+\\x014654.\\x03#\\x0e\\x01\\a\\x0e\\x03+\\x01\\x152\\x16;\\x012'>\\x01\\x044&\\\"\\x06\\x14\\x162\\x01\\xd2\\a\\x10\\x05\\x16\\x01\\x173&\\x03\\x10\\x03-E/\\x11\\x03\\x11\\v@\\r\\x13\\x13\\rc\\b\\x18\\x1b\\n\\x03\\f\\x1d\\x1b-3\\t$\\x18(\\x16K\\x0f\\x01\\v\\a\\x0f\\x16\\x10h\\x1d\\x01\\x05\\t\\x13\\x0e\\b\\x0e\\x10\\a\\x1c\\x16\\x1b\\n\\v\\x19m&%@\\n\\f\\n\\xfe\\xbb\\x0e\\x14\\x0e\\x0e\\x14\\xa1!\\x1e$\\x1f\\x1c*\\x19\\x14\\x14\\n\\x0e\\x13\\r\\xf0\\r\\x13\\a #\\t\\x04:/45\\x17\\x17\\x19'\\x16\\x1aN\\x0f)\\n\\x18\\x0e\\x0e\\x18\\x129\\x13\\n\\v\\x12\\n\\b\\bG\\x10\\a%\\x1d\\x18\\xba&B\\a\\\"U\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xe0\\x01\\xc0\\x00.\\x006\\x00[\\x00\\x00%\\x16\\x15\\x14\\x06+\\x01\\x16\\x15\\x14\\x06#\\\".\\x01'.\\x01'#\\x06+\\x01\\\"&=\\x0146;\\x012\\x1732>\\x013:\\x0132\\x16\\x17\\x16\\a\\x16\\x04264&\\\"\\x06\\x14\\x052>\\x0154&#6&'6&'6+\\x01\\\"\\x06#\\x1532\\x1e\\x01\\x17\\x1e\\x01\\x172>\\x0254&5\\x01\\xd2\\x0e2$$\\t3-\\x1b\\x1d\\f\\x03\\v0\\n\\a\\n\\x12@\\r\\x13\\x13\\r@\\f\\t\\v\\x0f.G-\\x03\\x10\\x0388\\x01\\x16\\x05\\x10\\xfe]\\x14\\x0e\\x0e\\x14\\x0e\\x01b\\n\\x12\\n\\x0f\\a\\v\\x01\\x0f\\b\\n\\f\\n@%&m\\x19\\v\\f\\\"(\\b\\x10\\x0e\\b\\x11\\x15\\b\\x02\\x1d\\xdf\\x18\\x1a\\\"4\\x17\\x1754/:\\x04\\v?\\t\\x10\\x13\\r\\xf0\\r\\x13\\b\\x14\\x143,\\x1f$\\x1eh\\x0e\\x14\\x0e\\x0e\\x14\\x1f\\v\\x12\\t\\x0e\\x18\\n)\\x0f\\x10\\\"\\aB&\\xba#6\\b\\x10G\\b\\n\\x14\\x0e\\r\\x139\\x12\\x00\\x04\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc1\\x00(\\x008\\x00@\\x00H\\x00\\x00%\\x16\\x14\\x0f\\x01\\x17\\x16\\a\\x06/\\x01\\a\\x06\\\"/\\x01\\a\\x06&?\\x01'&4?\\x01'&6\\x1f\\x01762\\x1f\\x0176\\x16\\x0f\\x027'7\\a'\\a'\\x17\\a\\x17\\a7\\x177\\x17&2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14\\x01\\xee\\x12\\x12<\\x0e\\x04\\x0f\\x0f\\x15G(\\r+\\f(G\\x15\\x1e\\x04\\x0e<\\x12\\x12<\\x0e\\x04\\x1e\\x15G(\\f,\\f(G\\x15\\x1e\\x04\\x0e5MM\\x12[44[\\x12MM\\x12[44[\\xbaV==V=Q.!!.!\\xe2\\f+\\f)G\\x15\\x0f\\x0f\\x04\\x0e<\\x12\\x12<\\x0e\\x04\\x1e\\x16F)\\f+\\f)G\\x15\\x1e\\x04\\x0e<\\x11\\x11<\\x0e\\x04\\x1e\\x15G\\u007f54[\\x12MM\\x12[44\\\\\\x12MM\\x12\\xf7=V==Vc!.!!.\\x00\\x00\\x02\\x00\\x17\\xff\\xc0\\x01\\xf4\\x01\\xc0\\x00\\x16\\x00&\\x00\\x00\\x05\\\"&4632\\x17\\x1e\\x01\\x06\\a\\x0e\\x01\\x15\\x14\\x1676\\x16\\a\\x0e\\x01\\x03\\\"\\x06\\x14\\x163267\\x06&5467&\\x01\\x17j\\x96\\x96j\\x18\\x17\\x15\\x16\\t\\x13\\x1f%a>!\\\"\\x15$h;VzzV0U\\x1dT\\x842*\\x13@\\x96Ԗ\\x04\\x04#(\\n\\x12>$?P\\f\\x069\\x1a-2\\x01\\xd0z\\xacz)$\\x10mU2T\\x18\\x03\\x00\\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\n\\x00\\x1a\\x00&\\x00\\x00\\x01\\x15\\x14\\x06/\\x01&?\\x016\\x167\\x11\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x03\\x114#!\\\"\\x15\\x11\\x143!2\\x01\\x10\\x0f\\x05c\\b\\bc\\x05\\x0f\\xb0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c0\\x06\\xfe\\xac\\x06\\x06\\x01T\\x06\\x01#\\xc6\\b\\x06\\x06c\\b\\bc\\x06\\x06E\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\xfe\\x92\\x01T\\x06\\x06\\xfe\\xac\\x06\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x00\\x00\\\"\\x06\\x14\\x16264$2\\x16\\x14\\x06\\\"&4\\x162\\x16\\x14\\x06\\\"&4\\x01S\\xa6uu\\xa6u\\xfe\\xd1Α\\x91Α\\xd7B//B/\\x01\\x88u\\xa6uu\\xa6\\xa5\\x91Α\\x91\\xce\\x17/B//B\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00\\x17\\x00#\\x00/\\x00;\\x00G\\x00Y\\x00e\\x00\\x00\\x1354;\\x012\\x1d\\x01\\x14+\\x01\\\"3\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\a\\\"=\\x014;\\x012\\x1d\\x01\\x14#3\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\a\\x14+\\x01\\\"=\\x014;\\x012\\x15\\x17\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x17\\x15!54;\\x01\\x11463!2\\x16\\x15\\x1132%354;\\x012\\x1d\\x013\\x11%\\x80\\f(\\f\\f(\\f\\x8c\\f\\f(\\f\\f\\xa8\\f\\f(\\f\\fX\\f\\f(\\f\\ft\\f(\\f\\f(\\fL\\f\\f(\\f\\f\\x8c\\xfe@\\f\\x14\\x0e\\n\\x01P\\n\\x0e\\x14\\f\\xfe\\x90p\\f(\\fp\\xfe\\xe0\\x01,(\\f\\f(\\f\\f(\\f\\f(\\f`\\f(\\f\\f(\\f\\f(\\f\\f(\\fT\\f\\f(\\f\\f4\\f(\\f\\f(\\f|$$\\f\\x01\\xb8\\n\\x0e\\x0e\\n\\xfeH\\x01C\\f\\fC\\x01\\x9e\\x01\\x00\\x00\\x00\\x00\\b\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x007\\x00=\\x00D\\x00J\\x00Q\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x13\\x16\\x06#\\\"'\\x06\\a\\x06'&76767&76\\x16\\x17\\x16\\a\\x16\\x176\\a\\x14>\\x017\\x067\\\"\\x14\\x16\\x1764\\a67&'\\x06\\x176&\\a\\x1e\\x017\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xfa\\n\\n\\x11\\x19\\x1f\\x0f6'\\x1b\\f\\x02\\x05.\\x10\\x14\\r\\x06\\x03$\\x03\\x05\\n\\f\\x193\\xb9\\a\\x0f\\b\\x1aN\\x02\\x01\\x03\\x03\\x1e-\\n\\x12\\f\\rx\\x05\\x15\\x15\\x0e\\x13\\x02\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\xf0\\b\\x1f\\x11\\x03\\x11D\\x11\\a\\r\\x16\\x18\\x1c.0\\x13\\x0f\\x02\\x13\\x0e*\\x1f\\x0f\\a[\\x01\\x05\\x11\\x0e\\x19\\xb4\\x0e\\x14\\x06\\x06\\\"\\x88\\x11\\x02\\r\\x17#\\x0f\\x03\\x06\\x01\\x06\\x04\\x01\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00R\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x1732\\x1e\\x01\\x15\\x06\\a\\x06+\\x01\\\"'&/\\x01\\x14\\x0f\\x01\\x06+\\x01\\\"'.\\x02'&6;\\x012\\x17\\x16\\x15\\x14\\x17476;\\x012\\x17\\x16\\x17\\x1c\\x011676\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xdc\\x10\\x04\\x06\\x02\\n\\x19\\x02\\n\\x18\\n\\x02\\a\\v\\x03\\x03\\x12\\x02\\t\\x19\\n\\x02\\x03\\r\\x0e\\x03\\x02\\b\\x05\\x11\\n\\x02\\x13\\x01\\x18\\x03\\t\\r\\n\\x02\\x17\\x01\\x01\\x14\\x02\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xd0\\x04\\a\\x04&b\\t\\t\\x1d+\\x11\\b\\tH\\t\\t\\v78\\x0e\\x06\\t\\n`\\x03\\x01\\x03\\x06b\\t\\ta\\x03\\x01\\x03\\x06a\\n\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00B\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x172\\x16\\a\\x06\\a\\x17\\x16\\x06+\\x01\\\"'&'\\x06\\a\\x06+\\x01\\\"&?\\x01'&6;\\x012\\x17\\x16\\x176763\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xd4\\a\\a\\x04#\\v.\\x04\\a\\a\\x1d\\a\\x03\\x02\\x1b\\f\\x11\\x03\\a\\x1d\\a\\a\\x04..\\x04\\a\\a\\x1d\\a\\x04\\t\\x13\\t\\x14\\x03\\a\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xb0\\f\\x06=\\x11N\\x06\\f\\x06\\x037\\x1b\\x1f\\x06\\f\\x06NN\\x06\\f\\x06\\x12(\\x16$\\x06\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x006\\x00>\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x1354;\\x012\\x16\\x15\\x14\\x0e\\x06*\\x01#\\x15\\x14\\x06+\\x01\\\"73264&+\\x01\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0H\\fE\\x1c#\\x04\\x06\\v\\t\\x0f\\n\\x10\\b\\x0f\\x02\\a\\x05\\x18\\f0\\x18\\v\\r\\r\\v\\x18\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\x9c\\xa8\\f%\\x1d\\v\\x12\\r\\v\\x06\\x05\\x02\\x01/\\x05\\ac\\x0f\\x17\\x0e\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x11\\x00\\x14\\x00\\x1d\\x00(\\x000\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x13576\\x1f\\x0176\\x1f\\x01\\x15&2\\x16\\x14\\x06\\\"&4\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0 (\\b\\b(X\\b\\b\\x18\\xc4(\\x1c\\x1c(\\x1c\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\x90@(\\b\\b(X\\b\\b\\x18\\x80\\xf0\\x1c(\\x1c\\x1c(\\x00\\n\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x03\\x00\\a\\x00\\v\\x00\\x0f\\x00!\\x00$\\x001\\x00@\\x00L\\x00P\\x00\\x00\\x133\\x15#7\\x15#5\\a3\\x15#3\\x15#57\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x17\\a\\x153\\x13\\x11#\\\"&=\\x01#\\x15#5#\\x117\\x17\\x16\\x0e\\x01#\\\"&?\\x0153\\x1532\\x062654.\\x01\\\"\\x0e\\x01\\x15\\x147\\x15#5\\x80  @    @ \\xd2\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e\\x1eL\\x04h\\n\\x0e0 P\\x92\\x12\\x03\\r\\x1a\\x10\\x19\\x1f\\x05\\x13 \\x16\\n-\\x1b\\x13\\t\\x0f\\x12\\x0e\\t@ \\x01  \\x80      \\x1e\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0e&L\\xfe\\xb0\\x01 \\x0e\\nh\\x10\\x10\\xfe`\\xc6W\\x10\\x1d\\x12'\\x18a  \\x86\\x10\\v\\a\\r\\a\\a\\r\\a\\v\\xb6  \\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x14\\x00\\x1d\\x00/\\x00=\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x13\\x14\\x06/\\x01#\\\"&=\\x0146;\\x0176\\x16\\x15\\x1764'&>\\x01\\x17\\x16\\x14\\a\\x06.\\x01\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\x90\\x0f\\x05$\\x1c\\x05\\a\\a\\x05\\x1c$\\x05\\x0f)\\a\\a\\n\\t\\x18\\f\\x14\\x14\\v\\x1a\\a\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xfe\\xac\\b\\x06\\x06$\\a\\x058\\x04\\b$\\x06\\x06\\bY\\a\\x14\\a\\n\\x1b\\x06\\n\\x15:\\x15\\v\\b\\x18\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x11\\x00\\x14\\x00\\x1d\\x007\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x1f\\x01'\\x15\\x03!\\x11#\\\"&=\\x01#\\x176\\x16\\x1d\\x01\\x14\\x06/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x1d\\x01\\x01r\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e.L\\xd0\\x01 h\\n\\x0e\\xa0\\xe5\\a\\x14\\x14\\a5\\f\\bh\\b\\f\\f\\bh\\b\\f\\x01^\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0erLL\\xfe\\xb0\\x01 \\x0e\\nh\\xcd\\b\\b\\vp\\v\\b\\b4%\\b\\f\\f\\bh\\b\\f\\f\\b%\\x00\\x06\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc1\\x00\\x12\\x00$\\x00'\\x000\\x00<\\x00M\\x00\\x007\\x16\\x0f\\x01\\x06#\\\"/\\x01&?\\x016\\x1f\\x01\\x15\\x16\\x0f\\x017\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x012\\x17\\a\\x153\\x13\\x11#\\\"&=\\x01#\\x117\\x17\\x16\\x0f\\x01\\x06/\\x01&?\\x016\\x17&?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x06/\\x015&?\\x01\\x96\\x06\\x06\\x11\\x03\\x04\\x03\\x039\\a\\a9\\a\\x06\\x11\\x06\\x06!\\xfd\\x0e\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\xcc\\x14\\x0e\\x1eL\\x04h\\n\\x0e\\xa0\\xa2\\x18\\t\\x037\\x02\\t\\x18\\t\\x037\\x02!\\x06\\x06\\x11\\x06\\a9\\a\\a9\\a\\x06\\x11\\x06\\x06!c\\x06\\a\\x12\\x03\\x036\\x06\\x066\\a\\a\\x12\\x01\\x06\\x06\\x1d\\xde\\x0e\\x14\\xfe\\xb4\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x0e&L\\xfe\\xb0\\x01 \\x0e\\nh\\xfe`\\xfa\\a\\x02\\t\\xbc\\t\\x03\\a\\x02\\t\\xbc\\bO\\x06\\a\\x12\\a\\a6\\x06\\x066\\a\\a\\x12\\x01\\x06\\x06\\x1d\\x00\\x00\\x06\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0e\\x00\\x16\\x00\\x1d\\x00$\\x00+\\x00\\x00\\x04\\\"&462\\x16\\x14\\x05\\x1627'\\x06'64&\\\"\\x06\\x14\\x162\\x1764'\\a\\x16\\a'&\\\"\\a\\x176\\x17\\a\\x06\\x14\\x177&7\\x01gΑ\\x91Α\\xfe\\xa1/p/522\\x82/B//B\\x8a\\x1d\\x1d5\\x15\\x15\\x0f/p/522\\xdd\\x1d\\x1d5\\x15\\x158\\x91Α\\x91\\xceD\\x1d\\x1d5\\x15\\x15UB//B/\\x17/p/522\\xdd\\x1d\\x1d5\\x15\\x15\\x0f/p/522\\x00\\x00\\x00\\x03\\xff\\xfe\\xff\\xbe\\x02\\x05\\x01\\xc9\\x00\\x15\\x00\\x18\\x00!\\x00\\x00\\x016\\x16\\a\\x03\\x06\\a\\x06#\\\"/\\x01\\a\\x0e\\x01&=\\x01'.\\x017\\x177'\\x17\\x13\\x05\\x1776\\x16\\x0f\\x01\\x01\\xb8\\x1a2\\x04<\\x04\\x14\\v\\f\\n\\tp+\\x0e) r\\x1c\\x04\\x1a\\xa8%%\\xd5;\\xfe`l\\xd3\\v\\x15\\b\\x8c\\x01\\xba\\x0e!\\x1e\\xfe|\\x17\\v\\x06\\x03.;\\x11\\x04\\x1c\\x16T0\\v<\\x0f\\xda2\\x0f$\\x01\\x83\\xf0-\\xb9\\t\\x13\\f\\xca\\x00\\x00\\x00\\x00\\x06\\xff\\xec\\xff\\xc8\\x02\\x04\\x01\\xb8\\x00\\x10\\x00\\x19\\x00 \\x00'\\x00.\\x005\\x00\\x00\\x01\\x16\\x06\\a\\x06#\\\"&'&67632\\x1e\\x01\\a6767'\\x0f\\x01\\x177&'\\a\\x15\\x177'\\x06\\a\\x1f\\x0175\\x037/\\x01\\a\\x16\\x1f\\x01\\x16?\\x01'#\\a\\x01\\xe4 ^a&'O\\x84\\x19 ^a&'4_H:\\f\\x05\\x15\\x01'G\\x19,4%=/@G\\xd6<&\\nG@]+\\x18G'\\x01%e:@\\x16,O+\\x01\\rb\\xb7 \\f^Mb\\xb7 \\f*N\\xf5\\x10\\n*/%\\x16L=\\xf24\\x14\\x1aJ/\\x16}\\x1445\\x16/J\\xfe\\xe0>J\\x17%?4I\\x13\\x130==\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x02@\\x01\\x80\\x00\\x13\\x00\\x19\\x00\\x1f\\x00+\\x00/\\x00;\\x00G\\x00S\\x00_\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01>\\x013\\x03\\x142=\\x01#\\x01\\x11!\\x11\\x14\\a7\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\x1535\\a54;\\x012\\x1d\\x01\\x14+\\x01\\\"754;\\x012\\x1d\\x01\\x14+\\x01\\\"=\\x014;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x1554;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x02(\\n\\x0e\\x0e\\n\\xfe\\x10\\x17!\\x0e\\n+\\x05\\x19\\x0f@\\x10\\x10\\x01\\xe0\\xfe`\\x01=\\f\\f\\x88\\f\\flPx\\f\\x88\\f\\f\\x88\\f\\xc0\\fh\\f\\fh\\f\\fh\\f\\fh\\f\\fh\\f\\fh\\f\\x01\\x80\\x0e\\n\\xfe\\xb0\\n\\x0e!\\x17\\x01\\x10\\n\\x0e\\x0e\\x12\\xfe\\xb8\\b\\b\\xf8\\xff\\x00\\x01 \\xfe\\xe8\\x04\\x04x\\f`\\f\\f`\\fP((\\x8c\\x18\\f\\f\\x18\\f\\f\\x18\\f\\f\\x18\\f\\x9c\\x18\\f\\f\\x18\\f<\\x18\\f\\f\\x18\\f\\x00\\x00\\x04\\xff\\xf9\\xff\\xb9\\x02\\x87\\x01\\xc7\\x00\\v\\x00\\x1e\\x008\\x00@\\x00\\x00\\x05\\x16\\x0f\\x01\\x06'\\x01&?\\x016\\x17\\x133\\x17!\\\"&54767>\\x045\\x17\\x067\\\"\\a'675462\\x16\\x1d\\x01\\x1e\\x02\\x15\\x14\\x17'&5414&\\x03\\\"&53\\x14\\x0e\\x01\\x02z\\f\\n\\n\\n\\f\\xfd\\xaa\\f\\n\\n\\n\\f\\x80\\xb6>\\xfe\\xe8\\x0e\\x12\\t\\x01\\x02\\b\\t\\x10\\t\\t.\\t|\\\"\\x1d&\\x1f&\\x13\\x1a\\x13%:!\\x0e;\\x03B.\\x1a&\\x80\\x11\\x1e\\x17\\n\\r\\f\\f\\n\\x01\\xd3\\n\\r\\f\\f\\n\\xfe\\x940\\x13\\r\\f\\n\\x01\\x02\\t\\n\\x1a\\x1a*\\x18#D\\xe5\\x13\\x1d\\x19\\b\\x15\\r\\x13\\x13\\r\\x15\\a,B&7&/\\x17\\x16\\x01.B\\xfe`%\\x1b\\x11\\x1e\\x11\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x004\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x05\\x06#\\\"&54>\\x0132\\x17\\x16\\x15\\x14\\x0f\\x01\\x06'&#\\\"\\x0e\\x01\\x15\\x14\\x163276\\x16\\x1f\\x01\\x16\\x15\\x14\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x013)?=O$@(;&\\x04\\x02\\x12\\a\\v\\x1c!\\x18$\\x12*$$\\x1e\\x04\\n\\x04\\x14\\x02\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x10)Q<'@%#\\x04\\x05\\x03\\x03\\x1d\\v\\t\\x16\\x15%\\x16\\\"2\\x1b\\x04\\x01\\x04\\x1b\\x04\\x04\\x04\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x00\\x01\\x80\\x00\\x0f\\x00\\x1b\\x003\\x00K\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x0125\\x114#!\\\"\\x15\\x11\\x1437\\x16\\a\\x0e\\x01&546\\x16\\x17\\x16\\x0f\\x01\\x06'&\\x06\\x15\\x14\\x1676\\x1f\\x01\\x16\\a\\x0e\\x01&546\\x16\\x17\\x16\\x0f\\x01\\x06'&\\x06\\x15\\x14\\x1676\\x17\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\x9a\\x06\\x06\\xfel\\x06\\x06\\xc1\\x03\\x04\\x1aR@AR\\x19\\x03\\x02\\x11\\x04\\x06\\x1e@=\\x1f\\x05\\x04\\xd2\\x03\\x03\\x1bR@AR\\x19\\x03\\x01\\x12\\x04\\x05\\x1f@>\\x1e\\x06\\x04\\x01\\x80\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\x14\\x1c\\xfe\\xb0\\x06\\x01\\x14\\x06\\x06\\xfe\\xec\\x06V\\x04\\x04\\x1c\\x056/.4\\x03\\x19\\x03\\x03\\x1e\\x06\\x04\\x18\\x15\\\"%\\x17\\x1b\\x05\\x06\\x1b\\x04\\x04\\x1c\\x056/.4\\x03\\x19\\x03\\x03\\x1e\\x06\\x04\\x18\\x15\\\"%\\x17\\x1b\\x05\\x06\\x00\\t\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00+\\x00/\\x003\\x007\\x00;\\x00O\\x00c\\x00g\\x00o\\x00\\x00\\x01#\\x1132\\x1d\\x01\\x14+\\x01\\\"=\\x01!\\x15\\x14+\\x01\\\"=\\x014;\\x01\\x11#\\\"=\\x014;\\x012\\x1d\\x01!54;\\x012\\x1d\\x01\\x14'\\x1535!\\x1535\\x115#\\x15!5#\\x15'\\x11#\\\"=\\x01!\\x15\\x14+\\x01\\x1132\\x1d\\x01!543'2\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x012\\x1d\\x01'\\x1535\\x175#\\x15\\x14+\\x01\\x15\\x01\\xf4\\f\\f\\f\\fH\\f\\xfe\\xc0\\fH\\f\\f\\f\\f\\f\\fH\\f\\x01@\\fH\\f@ \\xfe@  \\x01\\xc0 \\b\\f\\f\\xfe\\xc0\\f\\f\\f\\f\\x01@\\f\\x18\\f\\f\\xc8\\fT\\f\\f\\xc8\\f\\xb8\\x90`8\\fL\\x01@\\xff\\x00\\fH\\f\\f\\f\\f\\f\\fH\\f\\x01\\x00\\fH\\f\\f\\f\\f\\f\\fH\\f@    \\xfe\\x80    @\\x01\\x00\\f\\f\\f\\f\\xff\\x00\\f\\f\\f\\f\\xc0\\f\\xa8\\f\\f4\\f\\xa8\\f\\f4\\x18pp\\xb0pL\\f\\x18\\x00\\x00\\x00\\x00\\n\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00C\\x00G\\x00K\\x00O\\x00S\\x00g\\x00k\\x00\\x87\\x00\\x8b\\x00\\x8f\\x00\\x00%#\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\x15\\x14+\\x01\\\"=\\x014;\\x015#\\x15\\x14+\\x01\\\"=\\x014;\\x015#\\\"=\\x014;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x14+\\x01\\x15354;\\x012\\x1d\\x01\\x14'\\x1535\\x03\\x1535\\x055#\\x15\\x135#\\x15\\x17354;\\x015#\\\"=\\x01#\\x15\\x14+\\x01\\x1532\\x15\\x175#\\x15%5#\\\"=\\x01#\\x1532\\x1d\\x01\\x14+\\x01\\\"=\\x01#\\x1532\\x1d\\x013543\\x175#\\x15\\x135#\\x15\\x024\\f\\f\\f\\fH\\f\\xe0\\fH\\f\\f\\fX\\fH\\f\\f\\f\\f\\f\\fH\\f\\xe0\\fH\\f\\f\\fX\\fH\\f\\xe0   \\xfe\\xc0   @\\xe0\\f\\f\\f\\f\\xe0\\f\\f\\f\\f\\x80 \\x018\\f\\fX\\f\\f\\fH\\fX\\f\\f\\xe0\\f4   \\xe0\\xa0\\fH\\f\\f\\f\\f\\f\\fH\\f\\x18\\f\\f\\fH\\f\\xa0\\fH\\f\\f\\f\\f\\f\\fH\\f\\x18\\f\\f\\fH\\f\\xa0  \\xff\\x00     \\x01\\x00  \\xd8\\f\\f\\xa0\\f\\f\\f\\f\\xa0\\f\\x94  @\\xa0\\f\\fX\\fH\\f\\f\\f\\x18\\f\\f\\f\\f@  \\x01\\x00  \\x00\\x03\\x00\\x00\\xff\\xe0\\x01\\xc0\\x01\\xa0\\x00\\x11\\x00\\x14\\x00\\x1d\\x00\\x00%\\x14\\x0f\\x01\\x06#!\\\"&5\\x11463!2\\x16\\x15\\x037#\\x13!\\x113546;\\x01\\x01\\xc0\\x0eT\\x0e\\x14\\xfe\\xf4\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x80LLP\\xfe\\xa0\\xe0\\x0e\\nhd\\x14\\x0eT\\x0e\\x1c\\x14\\x01`\\x14\\x1c\\x1c\\x14\\xfe\\xa4L\\x01\\x10\\xfe\\xa0h\\n\\x0e\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00(\\x004\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x015463\\x132=\\x01#\\\"&=\\x01#\\\"\\x15\\x11\\x143%25\\x114#!\\\"\\x15\\x11\\x143\\x01\\xd0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xda\\x06\\xe0\\x14\\x1c*\\x06\\x06\\x01\\x94\\x06\\x06\\xfe\\xcc\\x06\\x06\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c0\\x14\\x1c\\xfe0\\x06*\\x1c\\x14\\xe0\\x06\\xfe\\xcc\\x06`\\x06\\x014\\x06\\x06\\xfe\\xcc\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00%\\x00+\\x001\\x00\\x00\\x01\\x14\\x06\\a\\x1e\\x01\\x1532\\x1d\\x01\\x14#!\\\"=\\x014;\\x01467.\\x015#\\\"=\\x0143!2\\x1d\\x01\\x14#!\\x14\\x16265\\x114&\\\"\\x06\\x15\\x01p2//2\\x04\\f\\f\\xfe\\x98\\f\\f\\x042//2\\x04\\f\\f\\x01h\\f\\f\\xfe\\xccKjKKjK\\x01\\x90?s\\x1e\\x1es?\\f\\x18\\f\\f\\x18\\f?s\\x1e\\x1es?\\f\\x18\\f\\f\\x18\\fLllL\\xfe`LllL\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa1\\x00)\\x00p\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x06\\x15\\x14\\x06+\\x01\\\"&5<\\x05&4&/\\x01&=\\x0146\\x17>\\x01\\x1762\\x176\\x16\\x1754&\\x06\\x15\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06#\\\"/\\x01&=\\x014&\\x06\\x1d\\x01\\x14\\x1f\\x01\\x16\\x1d\\x01354?\\x016\\x01\\x99$C\\t+\\x04\\x13\\r\\xfc\\r\\x13\\x01\\x01\\x01b'8#\\x02I$\\x16@\\x16\\x18:H\\x1a\\x1a\\t\\a\\a\\a\\t\\x1a\\x1a\\t\\a\\a\\a\\t\\x1a\\x1a\\t\\a\\a\\a\\t\\x1a\\x1a\\t\\a\\x06\\x05\\a\\x05\\x1a\\x1a\\x17a\\x14\\xdc\\b+\\x05\\x01q\\x10,(r\\x18\\x15d\\t!\\r\\x13\\x13\\r\\x04\\b\\x05\\x05\\x03\\x03\\x02\\x01\\x01\\x01U\\\"49#,\\b)(\\x14\\x17\\x17\\x0e\\r\\xcfr\\x10\\r\\r\\x0f\\a\\t\\t\\a\\x1a\\x11\\r\\r\\x10\\x1b\\a\\t\\t\\a(\\x10\\x0e\\r\\x10)\\a\\t\\t\\a\\x1a\\x11\\r\\r\\x10t\\a\\t\\x04\\x06\\x04\\b)\\x10\\r\\r\\x0f9\\x1e\\x14U\\x11\\x1a\\n\\a\\x14\\x12d\\f\\x00\\x00\\x00\\x00\\x02\\xff\\xfc\\xff\\xbf\\x01\\xc0\\x01\\xc1\\x00\\x1d\\x00Y\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&676\\x17546\\x17>\\x01\\x176\\x16\\x15\\x1754&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06/\\x01.\\x01\\x0e\\x01\\x14\\x1f\\x01376\\x01u\\x1d.\\x05\\x1e\\x03\\x11\\f\\xde\\x11\\nw\\x10\\b\\x16\\x1d!3 \\x12P\\x14\\x1f4\\x1b\\x12\\x13\\t\\a\\x06\\a\\t\\x13\\x12\\t\\a\\a\\x06\\n\\x12\\x12\\n\\x06\\a\\a\\t\\x13\\x12\\x16\\a\\x1b\\x04\\f\\n\\a\\x04s\\xca\\x1b\\x04\\x01O\\x05)\\x1e\\x84\\x17\\x16\\x83\\v\\x0e\\r\\xa9\\x167\\x10\\x15\\f~!(\\b$\\x02%\\b)!ф\\f\\n\\n\\rL\\a\\t\\t\\a\\x9a\\f\\v\\n\\f\\x9b\\a\\t\\t\\a\\xbc\\f\\v\\n\\f\\xbd\\a\\t\\t\\a\\x99\\f\\v\\n\\f\\xce\\f\\a\\t&\\x06\\x03\\x04\\t\\f\\x06\\xa2w\\x11\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa6\\x00 \\x00]\\x00\\x00\\x05\\\"&7.\\x017#\\\"&463\\x17'.\\x01>\\x01\\x1f\\x016\\x1f\\x01\\x16\\x1d\\x01\\x14\\x06\\x0f\\x01\\x06#'32?\\x016=\\x014/\\x01&\\x0f\\x01\\x06#\\\"/\\x01&\\a\\x06\\x17\\x16\\x1f\\x01\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x16;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"\\x06\\x16;\\x012\\x16\\x1d\\x01\\x14\\x06#\\\"\\x06\\x16\\x01\\x00\\\"(\\n\\x10\\x11\\x03X\\x1f++\\x1f^O\\x1d\\x18\\x168\\x1d\\x91+1b\\\"\\x1d\\x17w\\a\\bFF\\x02\\x02w\\x0f\\tb\\x0f\\n\\x16\\x05\\a\\x03\\x03\\xa6\\x17\\n\\v\\x13\\x03\\x02\\x9c\\n\\t\\a\\xb6\\x10\\x0e\\x0e\\x10\\xb6\\a\\t\\t\\a\\x1c\\f\\n\\n\\f\\x1c\\a\\t\\t\\a\\f\\n\\n 6 \\n#\\x14+<+\\t\\x13\\v88\\x18\\v85\\x1c7\\x13'\\xcd\\x17%\\x05\\x1b\\x020\\x01\\x1b\\x03\\x0f\\xcd\\v\\x057\\b\\f\\x1b\\x06\\x01@\\t\\x14\\x15\\f\\x01\\x02;\\x04\\v\\f\\x06\\n\\x19\\x19\\n\\x06\\a\\a\\t\\x12\\x13\\t\\a\\x06\\a\\t\\x13\\x12\\x00\\x02\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x1c\\x00A\\x00\\x00%\\x16\\x1d\\x01#5'&+\\x01\\\"&546;\\x017#\\\"&=\\x01463!2\\x17\\x1354/\\x01&#!\\\"\\x1d\\x01\\x14\\x16;\\x012\\x16\\x0f\\x01\\x0e\\x02+\\x01\\\"\\x06\\x15\\x14;\\x012\\x1f\\x01\\x1e\\x01\\x1d\\x01\\x02-\\x13\\xe0d\\x04\\x04\\x84\\x17!4$r\\x12\\xc4!/!\\x17\\x01&'\\x15v\\f\\x92\\a\\r\\xfe\\xda\\b\\x13\\r\\xd5\\x13\\x16\\a\\x18\\x04\\x0e\\x12\\tr\\x11\\x17\\b\\x84\\r\\rc\\x0e\\x11\\x9d\\x1d$|H&\\x02!\\x17$40/!\\b\\x17!!\\xfe\\x91L\\x15\\x12\\xe2\\v\\b\\b\\r\\x13\\x1f\\x12@\\t\\x0e\\b\\x17\\x11\\b\\x05'\\x05\\x18\\x0f\\x18\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x01\\x01\\xc3\\x003\\x00g\\x00\\x00\\x01\\x16\\x15\\x14\\x0f\\x01\\x0e\\x01+\\x02\\\".\\x02/\\x01.\\x025476\\x17'&5467&54676\\x1e\\x01\\x1f\\x017>\\x0232\\x1e\\x02\\x176\\a6&\\x06\\x0f\\x01\\x06&?\\x016&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x06\\x1f\\x01\\x16\\x06/\\x01.\\x01\\x06\\x1f\\x01\\x16\\x15\\x14\\x06/\\x01&\\x0e\\x01\\x1f\\x01\\x1e\\x01;\\x02267\\x01\\xf5\\v\\x02:\\tI*k\\x01\\f\\x1e\\x1c\\x1a\\t\\\\\\x06\\v\\x06\\x14\\x1c(\\x18\\x03(\\x1c\\x01!\\x17\\x15&\\x1a\\x04\\x0e\\x05\\x03\\x16\\x1f\\x10\\x06\\x0f\\x18\\x15\\x05+\\x0f\\x04\\x16\\x1c\\x04\\x19\\x03\\x1b\\x02\\x1d\\x03\\x16\\x1c\\x03 \\x03\\x1a\\x04/\\x04\\x1c\\x16\\x04+\\x03\\x1c\\x04 \\x04\\x1d\\x15\\x05$\\n\\t\\x044\\v\\x1c\\x06\\n[\\r+\\x11\\x01k\\x1a.\\x06\\x01L\\x12\\x15\\b\\t\\xf2(:\\a\\v\\x0f\\tV\\x06\\x13\\x14\\t\\x1d\\x15\\x1e\\bR\\v\\n\\x1c+\\x03\\x03\\x04\\x18*\\x06\\x05\\r\\x1c\\x116\\x17\\x10\\x1b\\x10\\x03\\t\\x19\\x11\\x02R\\x10\\x13\\a\\x10h\\x0e\\a\\r\\x8b\\x11\\x13\\b\\x10\\x9b\\r\\r\\xb8\\x0f\\a\\x14\\x0f\\xa5\\x0e\\b\\x0ei\\x10\\x05\\x14\\x0fz\\\"$\\x05\\x04\\x030\\f\\v\\x1a\\fV\\f\\x11$\\x19\\x00\\x00\\x05\\xff\\xfc\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1e\\x00^\\x00p\\x00\\x80\\x00\\x8c\\x00\\x00\\x016\\x16\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&676\\x175462\\x16\\x1d\\x016\\x176\\x16\\x05&\\x0e\\x01\\x1f\\x01\\x16;\\x012?\\x016=\\x014&\\x06\\x15\\x14\\x0e\\x01+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\".\\x01=\\x014&\\x06\\x1d\\x01\\x14\\x0e\\x01+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06'\\x17546;\\x012\\x16\\x1d\\x01\\x14\\x0e\\x02+\\x01\\\"&7546;\\x012\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&754;\\x012\\x1d\\x01\\x14+\\x01\\\"\\x01f!9\\x02\\x1b\\x05%\\x17\\xb2\\\"\\x14m\\x10\\b\\x16\\x1d!'7'!\\x17\\x15-\\xfe\\xf9\\a\\x15\\a\\x06m\\x06\\t\\xb2\\x0f\\x03\\x1b\\x01\\x12\\x13\\x04\\a\\x05\\x06\\a\\t\\x13\\x12\\t\\a\\a\\x04\\b\\x04\\x12\\x12\\x05\\a\\x04\\a\\a\\t\\x13\\x12\\x16\\aD\\b\\x06\\x06\\x06\\b\\x02\\x04\\x05\\x03\\x06\\x06\\bL\\b\\x06\\x06\\x05\\t\\t\\x05\\x06\\x06\\bK\\x0e\\x06\\x0e\\x0e\\x06\\x0e\\x01\\r\\f(#T\\b\\aw\\x17\\x1d\\x1c\\x9a\\x167\\x10\\x15\\f\\xa1\\x1c''\\x1cJ\\x05\\x18\\n\\vw\\n\\x04\\x12\\n\\x9a\\b\\x0fw\\x02\\x02T\\f\\n\\n\\f\\x04\\b\\x04\\t\\a\\x15\\f\\n\\n\\f\\x15\\a\\t\\x04\\b\\x04#\\f\\n\\n\\f#\\x04\\b\\x04\\t\\a\\xaf\\f\\n\\n\\f\\xf1\\f\\a\\tR`\\a\\t\\t\\a`\\x03\\x06\\x04\\x03\\t\\a`\\a\\t\\t\\a`\\a\\t\\t\\a`\\x10\\x10`\\x10\\x00\\x02\\xff\\xfa\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00#\\x00^\\x00\\x00\\x016\\x1e\\x01\\x1d\\x01\\x14\\x0f\\x01\\x0e\\x01+\\x01\\\"/\\x01&7'&676\\x1e\\x01\\x1f\\x01'462\\x16\\x1d\\x016\\x16\\x1754&\\x06\\x15\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x014&\\x06\\x1d\\x01\\x14\\x06+\\x01\\\"/\\x01.\\x01\\x06\\x1f\\x01\\x16\\x15\\x14\\x0f\\x01\\x06\\x1f\\x01\\x16;\\x012?\\x016\\x01j\\x15(\\x19\\x02\\x1b\\x05%\\x17\\xcd'\\x137\\x1c58\\v\\x18\\x1c\\x14%\\x1f\\a\\x13\\t+<+\\x14#0\\x12\\x13\\t\\a\\x06\\a\\t\\x13\\x12\\t\\a\\a\\x06\\n\\x19\\x19\\n\\x06\\f\\v\\x04;\\x06\\x1c\\x13\\x06@\\x01\\x06\\x1b\\f\\b7\\x05\\v\\xcd\\x0f\\x03\\x1b\\x01\\x01\\x00\\a\\x0e#\\x16F\\b\\aw\\x17\\x1d\\\"b1+\\x91\\x1d8\\v\\a\\x05\\x19\\x13O^\\x1f++\\x1fX\\x03\\x11\\x96F\\f\\n\\n\\f\\a\\t\\t\\a\\x1c\\f\\n\\n\\f\\x1c\\a\\t\\t\\a\\xb6\\x10\\x0e\\x0e\\x10\\xb6\\a\\t\\n\\x9c\\x0f\\x03\\x16\\x10\\xa6\\x03\\x03\\a\\x05\\x16\\n\\x0fb\\t\\x0fw\\x02\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00,\\x005\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x05\\x16\\x14\\x0e\\x01+\\x01\\\"/\\x01#\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x15\\x14\\a\\x16'254.\\x01+\\x01\\x15\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x016\\x02\\x03\\x06\\x03+\\a\\x030 \\a\\x05'\\x04\\b\\b\\x04Of(\\x02: \\x05\\x12\\x10\\x1b\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6#\\x03\\a\\x05\\x03\\x06ZT\\x05\\a\\a\\x05\\xf8\\x05\\aU3\\x16\\x03)!\\n\\r\\b@\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00;\\x00C\\x00\\x00%\\x15\\x14+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"=\\x014;\\x0154;\\x012\\x1d\\x01327\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2\\x01P\\fL\\f\\x18\\fL\\f\\fL\\f\\x18\\fL\\fp\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06\\x9c\\x18\\fL\\f\\fL\\f\\x18\\fL\\f\\fL\\xa8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x00+\\x003\\x00\\x007\\\"=\\x014;\\x012\\x1d\\x01\\x14#7\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2|\\f\\f\\xc8\\f\\f|\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06x\\f\\x18\\f\\f\\x18\\f\\xd8\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1b\\x00;\\x00C\\x00\\x00%\\a\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x17\\x167\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x0132\\x16\\x03\\x11!\\x11\\x143!2\\x018\\x11\\t\\b66\\b\\t\\x11\\b\\b66\\b\\b\\x11\\t\\b66\\b\\t\\x11\\b\\b66\\b\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f0\\x14\\x1c0\\xfe\\xa0\\x06\\x01T\\x06I\\x11\\b\\b66\\b\\b\\x11\\t\\b66\\b\\t\\x11\\b\\b66\\b\\b\\x11\\t\\b66\\b\\xfe\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\x1c\\xfe\\x92\\x01*\\xfe\\xd6\\x06\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\x1f\\x00'\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x0154;\\x012\\x1d\\x01354;\\x012\\x1d\\x01\\x1325\\x11!\\x11\\x143%\\a\\x06/\\x01&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x01\\x90\\x14\\x1c\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\x80\\f(\\f*\\x06\\xfe\\xa0\\x06\\x01\\x1f\\x8e\\t\\bK\\t\\t\\x17\\b\\t,o\\b\\t\\x16\\t\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c4\\f\\f44\\f\\f4\\xfep\\x06\\x01*\\xfe\\xd6\\x06Ɏ\\b\\tK\\t\\b\\x17\\b\\b-n\\t\\t\\x16\\t\\x00\\x00\\x00\\x04\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00!\\x00%\\x00*\\x00/\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x0e\\x01\\x0f\\x01\\x06#\\\"/\\x01\\a\\x06#\\\"&5\\x114>\\x01?\\x01632\\x1f\\x0176\\x05\\x11\\x17\\x11\\x0173\\x11\\a\\x05\\x11\\a#\\x11\\x020\\x06\\n\\x05\\n\\x05\\x98\\n\\n\\n\\n\\xac\\xaa\\x03\\x03\\x06\\n\\x05\\n\\x05\\x98\\n\\n\\n\\n\\xac\\xaa\\x03\\xfe\\xb3\\x80\\xfe\\xd0\\u007f\\x01\\x80\\x01\\xe0\\u007f\\x01\\x01\\xa0\\t\\a\\xfe\\xa6\\x06\\f\\n\\x025\\x03\\x03=?\\x01\\t\\a\\x01Z\\x06\\f\\n\\x025\\x03\\x03=?\\x01:\\xfe\\xe2.\\x01\\x1e\\xfe\\xe6/\\x01\\x1e,\\xfe\\x01!/\\xfe\\xe2\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x16\\x00*\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\a\\x06#\\\"=\\x01#\\\"&5\\x11463\\x01\\x114&#!\\\"\\x06\\x15\\x11\\x14\\x16;\\x01\\x15?\\x01326\\x01\\xc0\\x1a&&\\x1a\\x90}\\x03\\x04\\f`\\x1a&&\\x1a\\x01\\x90\\t\\a\\xfe\\x80\\a\\t\\t\\a\\x90C\\r\\xa0\\a\\t\\x01\\xc0&\\x1a\\xfe\\xe0\\x1a&^\\x02\\fT&\\x1a\\x01 \\x1a&\\xfe\\xa0\\x01 \\a\\t\\t\\a\\xfe\\xe0\\a\\t<2\\n\\t\\x00\\x00\\x00\\x00\\x04\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\a\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01(\\t\\a0\\a\\t\\t\\a0\\a\\tp\\t\\a0\\a\\t\\t\\a0\\a\\t\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xa3\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00\\x00\\x00\\x14\\x06\\\"&462\\x04\\x14\\x16264&\\\"\\x17\\x15\\x14\\x06+\\x01\\\"&=\\x0146;\\x012\\x16\\x01\\xf8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xb3\\t\\a\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\x01'Α\\x91Α\\xa5\\xa6uu\\xa6ux\\xa0\\a\\t\\t\\a\\xa0\\a\\t\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xff\\x02\\x80\\x01\\x80\\x00#\\x00+\\x00L\\x00f\\x00n\\x00\\x00\\x013\\x11#\\\"&5#\\x06\\x0f\\x01\\x0e\\x01'\\x06#\\\"'\\x06&/\\x01#\\x14\\x0e\\x01+\\x01\\x11376;\\x012\\x17\\x00264&\\\"\\x06\\x14\\x056/\\x01\\a\\x0e\\x01&'&6?\\x01#\\\"\\x06#\\a#\\x153\\x17\\x166?\\x01\\x17\\x16?\\x01\\x17\\x16?\\x015#'&+\\x01\\\"\\x0f\\x01\\x06\\x14\\x17\\x166?\\x016\\x1f\\x01\\x16\\x0f\\x01\\x17\\x16\\x17\\x16264&\\\"\\x06\\x14\\x02\\ay@\\r\\x13:\\x03\\b\\x1a\\f#\\x11\\x13\\x1e\\x16\\x13\\x17;\\x17U\\t\\t\\x0e\\t@v0\\x10\\x17\\xe3\\x17\\x11\\xfeQ\\x0e\\t\\t\\x0e\\t\\x01\\x96\\x05\\x06l\\t\\x12-\\x1d\\t\\x14\\x02\\x16'9\\x01\\x03\\x01>*\\x1ca\\f!\\n\\x10%\\t\\t\\x1e\\x18\\x06\\x05\\x84-=\\x03\\x03T\\x0f\\fA\\b\\a\\x06\\x15\\a7\\f\\v\\v\\v\\f\\rg\\x04\\x04n\\x0e\\t\\t\\x0e\\t\\x01@\\xff\\x00\\x13\\r\\r\\n \\x0f\\t\\a\\x18\\x10\\x11\\x02\\x13L\\t\\x0e\\t\\x01\\x000\\x10\\x10\\xfe\\xf0\\n\\r\\t\\t\\r\\x03\\a\\x05W\\a\\x11\\x03\\x0f\\t\\x16;\\x15#\\x02>\\x80X\\n\\x04\\r\\x13 \\a\\n$\\x13\\x05\\x06I\\x80>\\x02\\v<\\x06\\x14\\b\\a\\x01\\x063\\v\\f\\f\\f\\n\\fS\\x04\\x040\\n\\r\\t\\t\\r\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x1d\\x005\\x00`\\x00\\x00\\x01\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x114767>\\x052\\x1e\\x04\\x17\\x16\\x1354'&'\\\".\\x02\\\"\\x0e\\x02#\\x06\\a\\x06\\x1d\\x01\\x143!2'\\x16\\a\\x06\\a\\x0e\\x05#\\\".\\x03'&'&?\\x016\\x17\\x16\\x172\\x1e\\x0232>\\x047676\\x17\\x01\\xef\\x11\\x1c\\x14\\xfe`\\x14\\x1c\\x12(_\\x03\\x12\\f\\x15\\x11\\x16\\x14\\x16\\x12\\x14\\f\\x12\\x03d\\x05\\x02Q4\\x01\\x1b\\x0e\\x17\\x10\\x17\\x0e\\x1b\\x01/V\\x02\\x06\\x01\\x94\\x06 \\b\\n7\\x10\\x03\\x12\\f\\x15\\x11\\x16\\n\\f\\x19\\x19\\x0e\\x1a\\x01\\x107\\n\\b\\x0f\\b\\t7\\x10\\x01\\x1b\\x0e\\x17\\b\\x06\\r\\f\\x0f\\v\\r\\x03\\x107\\t\\b\\x01\\x1b\\x0e\\x17\\xfe\\xfa\\x14\\x1c\\x1c\\x14\\x01\\a\\x16\\x0f!K\\x03\\x0f\\n\\x0e\\b\\x06\\x06\\b\\x0f\\t\\x0f\\x03O\\xfe\\xbd\\xfe\\x02\\x02B)\\x17\\n\\f\\f\\t\\x18%F\\x01\\x03\\xfe\\x06\\xc2\\n\\a-\\f\\x03\\x0f\\n\\x0e\\b\\x06\\a\\x10\\n\\x15\\x02\\f-\\a\\n\\x12\\t\\a,\\r\\x17\\n\\f\\x05\\a\\v\\b\\f\\x02\\r,\\a\\t\\x00\\x00\\x04\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00'\\x00+\\x003\\x00H\\x00\\x00\\x01#\\x1532\\x1d\\x01\\x14+\\x01\\x1532\\x1d\\x01\\x14+\\x01\\x15\\x14\\x06#!\\\"&5\\x11463!2\\x16\\x1d\\x0132\\x1d\\x01\\x14\\x03\\x11!\\x116\\\"&462\\x16\\x14\\a\\\"&=\\x014632\\x1632632\\x16\\x1d\\x01\\x14\\x06#\\x01\\xb4\\x14\\x14\\f\\f\\x14\\x14\\f\\f\\x14\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c\\x14\\fP\\xfe\\xc0\\xba4&&4&\\x9a\\t\\r'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\r\\t\\x01 @\\f(\\f@\\f(\\f0\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\x1c\\x140\\f(\\f\\xfe\\xd0\\x01\\xa0\\xfe`\\xd0&4&&4\\xa6\\v\\b\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\x00\\a\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x0f\\x00\\x13\\x00\\x1b\\x000\\x00<\\x00H\\x00T\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x116\\\"&462\\x16\\x14\\a\\\"&=\\x014632\\x1632632\\x16\\x1d\\x01\\x14\\x06#7\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\xfe \\xba4&&4&\\x9a\\t\\r'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\r\\t>\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\b\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x01`\\xfe\\xa0\\xb0&4&&4\\xa6\\v\\b\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\\"\\x004\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x14&2\\x16\\x14\\x06\\\"&4\\x1227&'\\x06#\\\"'\\x06\\a%654&\\\"\\x06\\x15\\x14\\x17632\\x162632\\xd0P88P8L(\\x1c\\x1c(\\x1c7Α\\x91Α\\xae\\x948\\x18.\\x1e\\x1e\\x1d\\x1f-\\x19\\x01%%u\\xa6u%)@\\x03%$%\\x03@\\x01X8P88PX\\x1c(\\x1c\\x1c(ԑΑ\\x91\\xce\\xfe\\xd10&\\x02\\n\\n\\x01'$4@SuuS@44\\n\\n\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x0f\\x00\\x13\\x00\\x1f\\x00'\\x00<\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x11\\x13\\\"&46;\\x012\\x16\\x14\\x06#\\x06\\\"&462\\x16\\x14\\a\\\"&=\\x014632\\x1632632\\x16\\x1d\\x01\\x14\\x06#\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14\\x01 \\xfe\\xe0`\\a\\t\\t\\a`\\a\\t\\t\\a\\x164&&4&\\x9a\\t\\r'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\r\\t\\x01\\xc0\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x14\\x1c\\xfe0\\x01\\xa0\\xfe`\\x01`\\t\\x0e\\t\\t\\x0e\\t\\xb0&4&&4\\xa6\\v\\b\\x13\\x18\\\"\\b\\b\\\"\\x18\\x13\\b\\v\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x0f\\x00$\\x000\\x00<\\x00H\\x00P\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x11!\\x113&54632\\x1632632\\x16\\x15\\x14\\a7\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#'\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x06\\\"&462\\x16\\x14\\x02\\x10\\x14\\x1c\\x1c\\x14\\xfe \\x14\\x1c\\x1c\\x14\\x01\\xe0\\xfe !\\x01'\\x1c\\x04\\x1a\\x0f\\x0f\\x1a\\x04\\x1c'\\x019\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\bp\\b\\b\\xfe4&&4&\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfep\\x01 \\xfe\\xe0\\x04\\x12\\x18\\\"\\b\\b\\\"\\x18\\x12\\x04P\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b@\\b\\x10\\b\\b\\x10\\b`&4&&4\\x00\\x00\\x02\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x17\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x015!\\x15\\x143!2\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\xfe`\\x06\\x01\\x94\\x06\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfev\\xea\\xea\\x06\\x00\\x00\\x01\\x00\\x00\\xff\\xe0\\x02\\x00\\x00 \\x00\\v\\x00\\x00\\x05!\\\"&463!2\\x16\\x14\\x06\\x01\\xe0\\xfe@\\r\\x13\\x13\\r\\x01\\xc0\\r\\x13\\x13 \\x13\\x1a\\x13\\x13\\x1a\\x13\\x00\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x02\\x00\\x01\\xc0\\x00\\x19\\x00\\x1d\\x00&\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06+\\x01\\x15\\x14\\x06#!\\\"&5\\x1146;\\x015463\\x135!\\x15%\\x11!\\x1532\\x16\\x1d\\x01\\x01\\xd0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xfe\\xc0\\x14\\x1c\\x1c\\x140\\x1c\\x14\\xe0\\xfe\\xc0\\x01\\xa0\\xfe\\xc0\\xe0\\x14\\x1c\\x01\\xc0\\x1c\\x14\\xfe\\xc0\\x14\\x1c0\\x14\\x1c\\x1c\\x14\\x01@\\x14\\x1c0\\x14\\x1c\\xfe0\\xd0\\xd0`\\x01@0\\x1c\\x14\\xe0\\x00\\x01\\xff\\xfa\\xff\\xc0\\x01\\xc6\\x01\\xc0\\x00\\xa2\\x00\\x00%\\x1e\\x01\\x0f\\x01\\x06/\\x01\\x17\\x16\\x0e\\x01\\x0f\\x01\\x06&/\\x02\\x15\\x17\\x16\\x0f\\x01\\x06/\\x01\\x15\\x14\\x06+\\x01\\\"&=\\x01\\a\\x06/\\x01&4?\\x015\\x0f\\x01\\x0e\\x01/\\x01.\\x01?\\x01\\a\\x06&/\\x01&?\\x01'.\\x01?\\x01>\\x01\\x1f\\x017'\\a\\x06&/\\x01&6?\\x01'&?\\x016\\x1f\\x01'&6?\\x016\\x16\\x1f\\x025'&?\\x016\\x1f\\x01546;\\x012\\x16\\x1d\\x0176\\x1f\\x01\\x16\\x0f\\x01\\x15?\\x01>\\x01\\x1f\\x01\\x1e\\x01\\x0f\\x0176\\x16\\x1f\\x01\\x16\\x0f\\x01\\x17\\x1e\\x01\\x0f\\x01\\x0e\\x01/\\x01\\a\\x1776\\x16\\x1f\\x01\\x16\\x06\\x0f\\x01\\x01\\xb8\\x06\\x03\\x03\\b\\b\\x0e'\\t\\x01\\x02\\x06\\x04\\x0f\\x06\\f\\x02\\x15H;\\v\\v\\f\\v\\v\\x19\\t\\x06\\x10\\a\\t\\x19\\v\\v\\v\\x04\\x04:H\\x15\\x02\\v\\x06\\x0f\\a\\x06\\x02\\t'\\x06\\r\\x03\\b\\b\\x0e'\\\"\\x06\\a\\x02\\x04\\x02\\v\\x06PHHP\\x06\\v\\x02\\x04\\x02\\a\\x06\\\"'\\x0e\\b\\b\\b\\x0e'\\t\\x02\\x06\\a\\x0f\\x06\\f\\x01\\x15H:\\v\\v\\f\\v\\v\\x19\\t\\x06\\x10\\a\\t\\x19\\v\\v\\v\\v\\v:H\\x15\\x02\\v\\x06\\x0f\\a\\x06\\x02\\t(\\x05\\r\\x03\\b\\b\\x0e'\\\"\\x06\\a\\x02\\x04\\x02\\v\\x06PHHP\\x06\\v\\x02\\x04\\x02\\a\\x06\\\"]\\x04\\f\\x06\\x0e\\x0e\\b\\x17\\\"\\x05\\b\\x06\\x01\\x04\\x02\\a\\x06Q*T;\\f\\v\\v\\f\\f\\x19.\\a\\t\\t\\a.\\x1a\\v\\v\\f\\x04\\x0e\\x04<T*Q\\x06\\a\\x02\\x04\\x02\\v\\x06#\\x17\\x03\\x03\\x06\\x0e\\x0e\\b\\x17\\t\\x02\\v\\a\\x0f\\a\\x06\\x01\\x16**\\x16\\x01\\x06\\a\\x0f\\a\\v\\x02\\t\\x17\\b\\x0e\\x0e\\x0e\\b\\x17\\\"\\a\\v\\x02\\x04\\x02\\a\\x06Q*T;\\f\\v\\v\\f\\f\\x19.\\a\\t\\t\\a.\\x1a\\v\\v\\f\\v\\v<T*Q\\x06\\a\\x02\\x04\\x02\\v\\x06#\\x17\\x03\\x03\\x06\\x0e\\x0e\\b\\x17\\t\\x02\\v\\a\\x0f\\a\\x06\\x01\\x16**\\x16\\x01\\x06\\a\\x0f\\a\\v\\x02\\t\\x00\\x00\\x05\\x00\\x00\\xff\\xc0\\x01\\xc0\\x01\\xc0\\x00\\v\\x000\\x008\\x00<\\x00H\\x00\\x00%\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x132\\x16\\x1d\\x01\\x14\\x06+\\x01\\x11\\x14\\x06#!\\\"&5\\x11#\\\"&=\\x0146;\\x017>\\x01;\\x012\\x1e\\x01\\x1f\\x01'\\a3'&+\\x01\\\"\\x13\\x11!\\x117\\\"=\\x014;\\x012\\x1d\\x01\\x14#\\x01\\f\\f\\f\\x18\\f\\f\\x8c\\a\\t\\t\\a\\x10\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x10\\a\\t\\t\\aR\\\"\\x06\\x18\\fd\\b\\x10\\x0e\\x04\\\"\\xb2\\x12\\x8c\\x12\\x02\\x03^\\x03\\xc2\\xfe\\xe0L\\f\\f\\x18\\f\\f \\f\\xd8\\f\\f\\xd8\\f\\x01P\\t\\a\\x10\\a\\t\\xfe\\xb0\\x14\\x1c\\x1c\\x14\\x01P\\t\\a\\x10\\a\\t9\\t\\x0e\\x06\\v\\x069\\x1d\\x1d\\x1d\\x03\\xfe`\\x01P\\xfe\\xb00\\f\\xd8\\f\\f\\xd8\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xe0\\x02@\\x01\\xa0\\x00\\x18\\x00$\\x004\\x00<\\x00G\\x00\\x00%\\x15\\x14\\x06#!\\\"&5\\x1146;\\x01\\x15#\\\"\\x1d\\x01\\x143!2=\\x01\\x13!\\\"\\x1d\\x01\\x143!2=\\x01452\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x16\\x14\\x06\\\"&462\\a76\\x1f\\x0176\\x1f\\x01\\x15!\\x01\\xe0\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14\\x10\\n\\x06\\x06\\x01t\\x06Z\\xfe\\x8c\\x06\\x06\\x01t\\x06\\x14\\x1c\\x1c\\x14\\xfe\\x80\\x14\\x1c\\x1c\\x14x\\x17\\\"\\x17\\x17\\\"1(\\b\\b(h\\b\\bH\\xfe\\xe0 \\x10\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c0\\x06\\xf4\\x06\\x06\\n\\x01P\\x06\\xf4\\x06\\x06\\xf4\\x060\\x1c\\x14\\xff\\x00\\x14\\x1c\\x1c\\x14\\x01\\x00\\x14\\x1c_\\\"\\x17\\x17\\\"\\x17\\x88(\\b\\b(h\\b\\bHP\\x00\\x00\\x03\\x00\\x00\\xff\\xc0\\x01\\x80\\x01\\xc0\\x00\\x15\\x00\\x1d\\x001\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x1146;\\x01462\\x16\\x15&\\\"\\x06\\x14\\x16264\\x13\\x114+\\x01\\x15\\x14+\\x01\\\"=\\x01#\\\"\\x15\\x11\\x143!2\\x01P\\x14\\x1c\\x1c\\x14\\xfe\\xe0\\x14\\x1c\\x1c\\x14P&4&6\\x14\\x0e\\x0e\\x14\\x0ex\\x06*\\f\\xa8\\f*\\x06\\x06\\x01\\x14\\x06\\x01\\x80\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\x1a&&\\x1a\\x18\\x0e\\x14\\x0e\\x0e\\x14\\xfel\\x01T\\x06$\\f\\f$\\x06\\xfe\\xac\\x06\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1474;\\x012\\x1d\\x0132\\x16\\x0f\\x01\\x06/\\x01&6;\\x01\\x99Α\\x91Α\\xa5\\xa6uu\\xa6u\\xa8\\f(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xc7\\f\\ft\\x0f\\x05d\\b\\bd\\x05\\x0f\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x006462\\x16\\x14\\x06\\\"$4&\\\"\\x06\\x14\\x1627\\x15\\x14+\\x01\\x15\\x14\\x06/\\x01&?\\x016\\x16\\x1d\\x0132\\b\\x91Α\\x91\\xce\\x01/u\\xa6uu\\xa6-\\ft\\x0f\\x05d\\b\\bd\\x05\\x0ft\\fYΑ\\x91Α\\xa5\\xa6uu\\xa6u\\xdc(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC\\x00\\x00\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x00\\x00\\x14\\x06\\\"&462\\x04\\x14\\x16264&\\\"\\a54;\\x01546\\x1f\\x01\\x16\\x0f\\x01\\x06&=\\x01#\\\"\\x01\\xf8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6-\\ft\\x0f\\x05d\\b\\bd\\x05\\x0ft\\f\\x01'Α\\x91Α\\xa5\\xa6uu\\xa6u\\xdc(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC\\x00\\x03\\x00\\b\\xff\\xc8\\x01\\xf8\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\\"\\x00\\x00\\x04\\\"&462\\x16\\x14\\x02\\\"\\x06\\x14\\x16264\\a#\\\"=\\x01#\\\"&?\\x016\\x1f\\x01\\x16\\x06+\\x01\\x15\\x14\\x01gΑ\\x91Α\\xa5\\xa6uu\\xa6u\\xb4(\\fC\\b\\x06\\x05d\\b\\bd\\x05\\x06\\bC8\\x91Α\\x91\\xce\\x01/u\\xa6uu\\xa6\\xd3\\ft\\x0f\\x05d\\b\\bd\\x05\\x0ft\\f\\x00\\x00\\a\\xff\\xfd\\xff\\xbf\\x02C\\x01\\xc0\\x00\\x0f\\x00\\x13\\x00\\x17\\x00\\x1b\\x00\\x1e\\x00!\\x00$\\x00\\x00\\x012\\x1f\\x01\\x16\\a\\x01\\x06\\\"'\\x01&?\\x0163\\x05#\\x173%\\a3'#\\a37\\a\\x17'3\\x177\\a7#\\x01\\xd0\\x06\\x04d\\x05\\x06\\xfe\\xec\\x03\\f\\x03\\xfe\\xec\\x06\\x05d\\x03\\a\\x01M94D\\xfe\\xf74\\xc24\\xca?D4dxD3aa\\x11x4\\x01\\xc0\\x05\\x94\\a\\a\\xfe\\xab\\x04\\x04\\x01U\\a\\a\\x94\\x050``````\\x90\\xa0\\xa0\\xf3\\xf3\\xa0\\xa0\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x02\\x80\\x01\\x80\\x00\\a\\x00%\\x005\\x00E\\x00\\x00\\x002\\x16\\x14\\x06\\\"&4\\x1754+\\x0154+\\x01\\\"\\x0f\\x01\\x06\\x15\\x14\\x1f\\x01\\x16327\\x15#\\\"\\x1d\\x01\\x14;\\x012\\x132\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x015\\\"&5!\\x14\\x06#\\x152\\x16\\x15!46\\x01\\x18P88P8\\x88\\b\\x10\\b\\x0e\\a\\x06\\x0f\\x04\\x02\\b\\x03\\x04\\x03\\x02\\x10\\b\\b@\\b\\xf8\\r\\x13\\x13\\r\\xfd\\xc0\\r\\x13\\x13\\r\\x020\\x1b%\\xfe`%\\x1b\\x1b%\\x01\\xa0%\\x010B\\\\BB\\\\f\\x10\\bX\\b\\x04\\n\\x03\\x04\\x02\\x02\\x0e\\x03\\x017\\b\\x10\\b\\x01\\x00\\x13\\r\\xfe\\xc0\\r\\x13\\x13\\r\\x01@\\r\\x13\\xfe\\xf0\\xa0%\\x1b\\x1b%\\xa0%\\x1b\\x1b%\\x00\\x03\\x00\\x00\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\x0f\\x00\\x1b\\x007\\x00\\x00\\x012\\x16\\x15\\x11\\x14\\x06#!\\\"&5\\x11463\\x01\\x114#!\\\"\\x15\\x11\\x143!2'\\a\\x17\\x16\\x0f\\x01\\x06/\\x01\\a\\x06/\\x01&?\\x01'&?\\x016\\x1f\\x0176\\x1f\\x01\\x16\\x01\\xd0\\x14\\x1c\\x1c\\x14\\xfe`\\x14\\x1c\\x1c\\x14\\x01\\xa0\\x06\\xfel\\x06\\x06\\x01\\x94\\x06l==\\t\\t\\x16\\b\\t==\\t\\b\\x16\\t\\t==\\t\\t\\x16\\b\\t==\\t\\b\\x16\\t\\x01\\xa0\\x1c\\x14\\xfe\\xa0\\x14\\x1c\\x1c\\x14\\x01`\\x14\\x1c\\xfev\\x01T\\x06\\x06\\xfe\\xac\\x06\\xed==\\t\\b\\x16\\t\\t==\\t\\t\\x16\\b\\t==\\t\\b\\x16\\t\\t==\\t\\t\\x16\\b\\x00\\x00\\x05\\xff\\xfb\\xff\\xe0\\x02\\x00\\x01\\xa0\\x00\\a\\x00\\x0f\\x00\\x17\\x00+\\x00>\\x00\\x0062\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06#\\\"'\\x06#\\\"&7>\\x027&54\\x05264&\\\"\\x06\\x15\\x14\\x1f\\x01\\a\\x06\\a6?\\x01\\x17\\x16\\x83\\x1a\\x13\\x13\\x1a\\x13\\x83\\x1a\\x13\\x13\\x1a\\x13\\x83\\x1a\\x13\\x13\\x1a\\x13\\xbaԖ\\x96j/.AJ\\x10\\f\\n\\x02\\x0f\\x17\\a5\\x01\\x00Vzz\\xacz(\\x14\\n\\b\\f\\x1e\\x1b\\x14\\x17&\\xf0\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\xc3z\\xacz\\x0e.\\x1d\\v\\x02\\x11%\\x128FV\\xf6^\\x84^^B3*\\x16\\x1c\\x14\\x15\\n\\x14\\r\\a\\f\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00'\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$\\x1e\\x01\\a\\x06\\\"'&>\\x01\\x16\\x17\\x16276&\\\"&462\\x16\\x1472\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x02\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x016\\x0f\\x02\\x06/\\x94/\\x06\\x02\\x0f\\x14\\x06!f!\\x06\\x9d\\x1a\\x13\\x13\\x1a\\x13\\x80\\x14%\\x03\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x0f\\x01\\x02\\x13\\x1a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6$\\r\\x14\\a99\\a\\x14\\r\\x02\\b''\\bA\\x13\\x1a\\x13\\x13\\x1a)\\x18\\x12\\b\\b\\x05\\t\\t\\t\\t\\x05\\b\\b\\f\\x14\\n\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00 \\x003\\x00H\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x17\\x16\\x06\\a\\x06&'&\\\"\\a\\x0e\\x01.\\x01?\\x01\\x14\\x06\\\"&547'.\\x01>\\x01\\x1f\\x01\\x1e\\x01\\a\\x066\\x16\\x06\\x0f\\x01\\x16\\x15\\x14\\x06\\\"&5\\\"'&>\\x02?\\x016\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x93j\\\"\\x06\\x02\\a\\b\\x14\\x06\\x13>\\x13\\x06\\x14\\x0f\\x02\\x06'\\x13\\x1a\\x13\\x05\\x1c\\t\\n\\x06\\x11\\nP\\t\\n\\x03\\x05\\xb2\\x06\\n\\t\\x1c\\x05\\x13\\x1a\\x13\\x12\\x05\\x02\\x02\\x04\\a\\x05P\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x1b)\\a\\x14\\x06\\a\\x02\\b\\x16\\x16\\b\\x02\\r\\x14\\aq\\r\\x13\\x13\\r\\b\\b\\t\\x03\\x11\\x13\\n\\x03\\x18\\x03\\x11\\n\\x11@\\x13\\x11\\x03\\b\\t\\b\\r\\x13\\x13\\r\\x11\\x05\\t\\b\\a\\x01\\x18\\x03\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00+\\x00G\\x00O\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\x06\\\"/\\x01\\a\\x06\\\"&4?\\x01'&462\\x1f\\x01762\\x16\\x14\\x0f\\x01\\x17\\x166\\x16\\x14\\x0f\\x01\\x17\\x16\\x14\\x06\\\"/\\x01\\a\\x06\\\"&4?\\x01'&462\\x1f\\x0176\\x062\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\xac\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\x94\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x824&&4&\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6k\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06L\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\f\\x10\\x06\\x12\\x12\\x06\\x10\\f\\x06\\x12\\x12\\x06\\x84&4&&4\\x00\\x00\\x00\\t\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00/\\x007\\x00?\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4&\\x14\\x06\\\"&462\\x06264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4\\x172\\x16\\x14\\x06+\\x01\\\"&463\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\aB//B/<(\\x1c\\x1c(\\x1c&\\x14\\x0e\\x0e\\x14\\x0eX/B//B5(\\x1c\\x1c(\\x1c&\\x14\\x0e\\x0e\\x14\\x0e\\xb8\\n\\x0e\\x0e\\n\\x80\\n\\x0e\\x0e\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xc3/B//BQ\\x1c(\\x1c\\x1c(,\\x0e\\x14\\x0e\\x0e\\x14\\x17B//B/\\x80\\x1c(\\x1c\\x1c(,\\x0e\\x14\\x0e\\x0e\\x14\\x82\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00-\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\x14\\x06\\\"&46:\\x02\\x16\\x14\\x06\\\"&4\\x062\\x16\\x17\\x16\\x06'&\\\"\\a\\x06&76\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x98\\x13\\x1a\\x13\\x13\\x1a\\x86\\x1a\\x13\\x13\\x1a\\x13N<=\\x05\\x01\\r\\t141\\t\\r\\x01\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x90\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a]\\\"\\x1b\\t\\f\\x03\\x0f\\x0f\\x03\\f\\t\\x1b\\x00\\x00\\x00\\r\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00/\\x006\\x00=\\x00A\\x00E\\x00I\\x00M\\x00T\\x00[\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x146\\\"&462\\x16\\x14\\x16\\\"&462\\x16\\x14\\a2\\x16\\x1d\\x01\\x14\\x06+\\x01\\\"&=\\x01463\\x175#\\x15\\x14\\x16375#\\\"\\x06\\x1d\\x01\\x175#\\x1575#\\x15\\x175#\\x1575#\\x15\\x175#\\x15326=\\x014&+\\x01\\x15\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x85\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13\\x10\\x14\\x1c\\x1c\\x14\\xc0\\x14\\x1c\\x1c\\x14\\x18(\\t\\a\\x18\\x18\\a\\th000p000h(\\x18\\a\\t\\t\\a\\x18\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6c\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a#\\x1c\\x14 \\x14\\x1c\\x1c\\x14 \\x14\\x1c`\\x18\\b\\a\\t(\\x18\\t\\a\\b(\\x18\\x18(\\x18\\x18(\\x18\\x18(\\x18\\x18\\x18\\b\\x18\\t\\x1f\\b\\a\\t\\x18\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00'\\x00/\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01#\\\".\\x01'&6\\x17\\x162&\\\"&462\\x16\\x14\\x16\\\"&462\\x16\\x14\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05M)\\x1a6(\\x03\\x02\\f\\a)\\x82\\x84\\x1a\\x13\\x13\\x1a\\x13\\x8d\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\".\\x14&\\x16\\b\\n\\x03\\rN\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\r\\x00\\x1b\\x00#\\x00+\\x009\\x00\\x007\\x06\\\"'&'6762\\x17\\x16\\x17\\x06\\x17\\x06\\\"'&'6762\\x17\\x16\\x17\\x06&2\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162\\xc8\\x05\\x15\\x06\\x0f\\x01\\x01\\x0f\\x05\\x15\\x06\\x0f\\x01\\x01q\\x05\\x15\\x06\\x0f\\x01\\x01\\x0f\\x05\\x15\\x06\\x0f\\x01\\x01\\xc6Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82\\xc8\\t\\t\\x16\\\"\\\"\\x16\\t\\t\\x16\\\"\\\"\\x16\\t\\t\\x16\\\"\\\"\\x16\\t\\t\\x16\\\"\\\"ڑΑ\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\r\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x004\\x00E\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01#\\\".\\x01'&6\\x17\\x162'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x067&7>\\x012\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05M)\\x1a6(\\x03\\x02\\f\\a)\\x82\\xc3\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\r&\\r\\t\\x03\\x9a\\a\\x01\\x02#&#\\x02\\x01\\r\\x03\\t\\r&\\r\\t\\x03\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\".\\x14&\\x16\\b\\n\\x03\\rV\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e))\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x06\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xc7\\x00\\n\\x00\\x1a\\x00+\\x00E\\x00Z\\x00\\x00\\x00\\\"&5476\\x17\\x16\\x15\\x14\\x03\\\".\\x01'&6\\x17\\x16276\\x16\\a\\x0e\\x016\\x06/\\x01&\\\"\\x0f\\x01\\x06'&7>\\x012\\x16\\x177\\x16\\x15\\x14\\x06\\\"&4632\\x17\\x06\\a&#\\\"\\x06\\x14\\x162654'2$\\\"\\x0f\\x01\\x06'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01\\x01\\xce,\\x1f.\\a\\a.\\xf5\\x1a6'\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x05M`\\r\\x03\\t\\r&\\r\\t\\x03\\x06\\a\\x01\\x02#&#\\x02d\\f\\x91Α\\x91gC:\\x0e\\x032:Suu\\xa6u\\v\\x1a\\xfe\\xec&\\r\\t\\x03\\x06\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\x01 \\\"\\x19\\x1cE\\v\\vE\\x1c\\x19\\xfe\\xee\\x14%\\x17\\b\\n\\x03\\r\\r\\x03\\v\\a\\\".\\xaa\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e))\\x1e,%(g\\x91\\x91Α\\\"\\x1c\\x12 u\\xa6uuS!\\x1f\\x03\\x16\\x11\\x06\\x02\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\r\\x00\\x1f\\x004\\x00<\\x00D\\x00\\x00%6\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162/\\x01.\\x017>\\x01\\x1f\\x017>\\x01\\x17\\x1e\\x01\\x0f\\x01\\x067\\x16\\x06\\x0f\\x01\\x06/\\x01&676\\x1e\\x01\\x1f\\x0176\\x1e\\x02&2\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x01b\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82pF\\x10\\x0e\\x05\\x05\\x1a\\x0e\\a\\x02\\x04\\x18\\x0e\\x10\\x11\\x04\\x14\\x02\\xb5\\x05\\x0e\\x10F\\b\\x02\\x14\\x04\\x11\\x10\\t\\x12\\f\\x03\\x02\\a\\x06\\x0e\\f\\n\\xf2Α\\x91Α\\xa5\\xa6uu\\xa6u\\x8f\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\r>\\x12\\x04\\x1d\\x0f\\r\\f\\x03\\x02\\a\\x0e\\x10\\x02\\x03\\x1a\\x10F\\bD\\x0f\\x1d\\x04\\x12\\x02\\bF\\x10\\x1a\\x03\\x01\\x06\\x0e\\t\\a\\x02\\x01\\x01\\x06\\n\\xb0\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00,\\x00:\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01#\\\".\\x01'&6\\x17\\x162.\\x01?\\x01'&6\\x1f\\x01\\x16\\x14\\x0f\\x013'&4?\\x016\\x17\\x16\\x0f\\x01\\x17\\x16\\x06\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05M)\\x1a6(\\x03\\x02\\f\\a)\\x82\\xbc\\r\\a!!\\a\\x0e\\bP\\x06\\x06P\\xe4P\\x06\\x06P\\t\\x06\\a\\a!!\\a\\r\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\".\\x14&\\x16\\b\\n\\x03\\r/\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x0300\\x03\\x0e\\x030\\x05\\a\\b\\b((\\b\\x0f\\x00\\a\\xff\\xfe\\xff\\xbf\\x02\\x02\\x01\\xc1\\x00\\v\\x00\\x1d\\x00/\\x00;\\x00J\\x00Y\\x00h\\x00\\x0076\\x16\\a\\x06\\a\\x06\\\"&4767\\x06\\a&67632\\x17\\x06\\a&#\\\"\\a\\x0e\\x01%67\\x16\\x06\\a\\x06#\\\"'67\\x16327>\\x01'\\x06&76762\\x16\\x14\\a\\x06\\x04\\x16\\x0f\\x01\\x06+\\x01&/\\x02.\\x01?\\x02\\\"'&?\\x0163\\x16\\x1f\\x02\\x1e\\x01\\x0f\\x0167>\\x01\\x17\\x16\\x0e\\x02'&676u\\x05\\a\\x01\\f\\x13\\x10/\\\"\\x10\\x13)\\x1b\\x14\\x1f\\x1c7Hg<5\\a\\x05/6S:.\\x14\\x01{\\x1d\\x14$\\x189Ig30\\a\\x06)-S:1\\x10C\\x05\\a\\x01\\f\\x13\\x10/\\\"\\x10\\x13\\xfe\\xee\\n\\x02\\x17\\x02\\t\\x01\\n\\x01\\x054\\n\\x02\\nZ4\\t\\x03\\x05\\x02\\x17\\x02\\n\\n\\x01\\x054\\n\\x02\\n&.\\x13\\x04\\x0f\\x04\\x13\\x14:T\\x1f\\x06\\x01\\a&@\\x01\\a\\x05R\\x13\\x10\\\"/\\x10\\x136\\x06\\aD\\x986I\\x1b\\x15\\x1c\\x1c;-\\u007f\\x84\\x06\\x06E\\xa29I\\x15\\x13\\x1c\\x14;0\\x89T\\x01\\a\\x05R\\x13\\x10\\\"/\\x10\\x13s\\n\\aZ\\t\\x01\\n4\\x05\\x01\\x14\\x02\\x17\\x16\\x03\\x05\\aZ\\t\\x01\\n4\\x05\\x01\\x14\\x02p/%\\a\\x01\\x06\\x1fT:\\x15\\x14\\x04\\x0f\\x04\\x14\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1d\\x006\\x00P\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%6\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162'7'&6?\\x0262\\x1f\\x02\\x1e\\x01\\x0f\\x01\\x17\\x16\\x06/\\x01\\a\\x06&%\\x1e\\x01\\x0f\\x01\\x17\\x16\\x0e\\x01/\\x01\\a\\x06&?\\x01'&6?\\x0262\\x1f\\x01\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x012\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82\\xbb\\x06\\x1a\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0f#\\x05\\x03\\x03\\x1a\\x06\\x01\\b\\x04\\x1f\\x1f\\x04\\b\\x01\\x04\\x05\\x03\\x03\\x1a\\x06\\x01\\x03\\x06\\x03\\x1f\\x1f\\x04\\b\\x01\\x06\\x1a\\x03\\x03\\x05#\\x0f\\x02\\n\\x02\\x0f\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\\"\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\rG#\\x18\\x04\\t\\x01\\x05\\x1f\\x05\\x05\\x1f\\x05\\x01\\t\\x04\\x18#\\x05\\x05\\x02\\x10\\x10\\x02\\x05N\\x01\\t\\x04\\x18#\\x03\\x05\\x01\\x01\\x10\\x10\\x02\\x05\\x05#\\x18\\x04\\t\\x01\\x05\\x1f\\x05\\x05\\x1f\\x00\\x00\\x00\\a\\xff\\xff\\xff\\xc8\\x02\\x81\\x01\\xb8\\x00\\v\\x00\\x17\\x00%\\x005\\x00C\\x00T\\x00i\\x00\\x0076\\x16\\a\\x06\\a\\x06\\\"&476\\x05\\x16\\x14\\x06\\\"'&'&6\\x17\\x16\\a\\x16\\x17\\x0e\\x01\\\"&'67\\x1e\\x0126%&\\a>\\x022\\x1e\\x01\\x17&\\a.\\x01\\\"\\x06\\x16\\\"&'&6\\x17\\x16276\\x16\\a\\x066\\x06/\\x01&\\\"\\x0f\\x01\\x06'&7>\\x012\\x16\\x17&\\\"\\x0f\\x01\\x06'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01u\\x05\\a\\x01\\f\\x13\\x10/\\\"\\x10\\x13\\x02M\\x10\\\"/\\x10\\x13\\f\\x01\\a\\x05Rl\\v\\x12#l~l#\\x12\\v\\x19_r_\\xfe\\xa3\\v'\\x06Em~mE\\x06&\\f\\vp\\x94p\\xe3RM\\x05\\x02\\f\\a)\\x82)\\a\\f\\x02\\x05\\x13\\r\\x03\\t\\r&\\r\\t\\x03\\x06\\a\\x01\\x02#&#\\x02\\xc5&\\r\\t\\x03\\x06\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\xc0\\x01\\a\\x05R\\x13\\x10\\\"/\\x10\\x13\\x13\\x10/\\\"\\x10\\x13R\\x05\\a\\x01\\fP \\x0f2;;2\\x0f 1;;\\xad\\x01\\b>f;;f?\\t\\x01H``\\xf8.\\\"\\b\\n\\x03\\r\\r\\x03\\v\\a\\\"|\\x03\\x05\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e))\\x1e\\\"\\x16\\x11\\x06\\x02\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00;\\x00C\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x055'&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x0f\\x01\\x15\\x14\\x1632>\\x01\\x17>\\x0154&\\\"\\x06\\x15\\x14\\x16\\x17&=\\x01&'&6\\x17\\x16276\\x16\\a\\x06\\a\\x15\\x14&2\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\x018\\x12\\v\\x15\\x02\\x03\\x02\\x0e\\x02\\x02\\x03\\x15\\v\\x12%\\x1a\\x12\\x1e\\x11\\x1c1;u\\xa6u;1\\x04\\x17\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x04\\x17\\xbd\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xff,\\t\\x05\\v\\v\\f\\a\\a\\f\\v\\v\\x05\\t+\\x1a'\\x11\\x1d\\a\\x19_9SuuS9_\\x19\\x0e\\v,\\x14\\x18\\b\\n\\x03\\r\\r\\x03\\v\\a\\x18\\x14,\\v\\xf3\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x1d\\x00;\\x00H\\x00U\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x055'&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x0f\\x01\\x15\\x14\\x1632>\\x01\\x17>\\x0154&\\\"\\x06\\x15\\x14\\x16\\x17&=\\x01&'&6\\x17\\x16276\\x16\\a\\x06\\a\\x15\\x14\\x12\\x16\\x0f\\x01\\x17\\x16\\x06/\\x01&4?\\x01\\a\\x16\\x14\\x0f\\x01\\x06&?\\x01'&6\\x17\\x91Α\\x91Α\\x018\\x12\\v\\x15\\x02\\x03\\x02\\x0e\\x02\\x02\\x03\\x15\\v\\x12%\\x1a\\x12\\x1e\\x11\\x1c1;u\\xa6u;1\\x04\\x17\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x04\\x17\\x1a\\x0e\\a!!\\a\\r\\tP\\x06\\x06P\\x94\\x06\\x06P\\t\\r\\a!!\\a\\x0e\\b\\x01\\xb8\\x91Α\\x91\\xce\\xff,\\t\\x05\\v\\v\\f\\a\\a\\f\\v\\v\\x05\\t+\\x1a'\\x11\\x1d\\a\\x19_9SuuS9_\\x19\\x0e\\v,\\x14\\x18\\b\\n\\x03\\r\\r\\x03\\v\\a\\x18\\x14,\\v\\x01\\x12\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x0300\\x03\\x0e\\x030\\x05\\x0f\\b((\\b\\x0f\\x05\\x00\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x11\\x00\\x19\\x00!\\x00)\\x001\\x00G\\x00e\\x00\\x00\\x132\\x1e\\x01\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x022\\x16\\x14\\x06\\\"&4\\x16264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&4&2\\x16\\x14\\x06\\\"&4\\x055'&\\x06\\x0f\\x01\\x06\\\"/\\x01.\\x01\\x0f\\x01\\x15\\x14\\x1632>\\x01\\x17>\\x0154&\\\"\\x06\\x15\\x14\\x16\\x17&=\\x01&'&6\\x17\\x16276\\x16\\a\\x06\\a\\x15\\x14\\x98\\r\\x1a\\x13\\x02\\x01\\x0f\\x06\\n\\v&\\v\\n\\x06\\x0f\\x01\\x03%\\xa3B//B/<(\\x1c\\x1c(\\x1c&\\x14\\x0e\\x0e\\x14\\x0e\\x9fΑ\\x91Α\\x018\\x12\\v\\x15\\x02\\x03\\x02\\x0e\\x02\\x02\\x03\\x15\\v\\x12%\\x1a\\x12\\x1e\\x11\\x1c1;u\\xa6u;1\\x04\\x17\\x04\\x02\\f\\a)\\x82)\\a\\f\\x02\\x04\\x17\\x01\\f\\n\\x14\\f\\b\\b\\x05\\t\\t\\t\\t\\x06\\t\\b\\x12\\x184/B//BQ\\x1c(\\x1c\\x1c(,\\x0e\\x14\\x0e\\x0e\\x14\\xbe\\x91Α\\x91\\xce\\xff,\\t\\x05\\v\\v\\f\\a\\a\\f\\v\\v\\x05\\t+\\x1a'\\x11\\x1d\\a\\x19_9SuuS9_\\x19\\x0e\\v,\\x14\\x18\\b\\n\\x03\\r\\r\\x03\\v\\a\\x18\\x14,\\v\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x0f\\x00\\x17\\x00%\\x00-\\x005\\x00\\x00\\x002\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\x06\\\"&462\\x16\\x14\\x176\\x16\\a\\x0e\\x01\\\"&'&6\\x17\\x162\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14\\x014(%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\n\\x06\\x0f\\x01\\x03Z\\x1a\\x13\\x13\\x1a\\x13\\x9a\\a\\f\\x02\\x05MRM\\x05\\x02\\f\\a)\\x82\\xa8Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\f\\x18\\x12\\b\\t\\x06\\t\\t\\t\\t\\x06\\b\\t\\x12$\\x13\\x1a\\x13\\x13\\x1aT\\x03\\n\\b\\\"..\\\"\\b\\n\\x03\\r\\x016\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00)\\x001\\x009\\x00A\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x17\\x14\\a\\x16\\x15\\x14\\x06\\a#\\\"'&?\\x0164/\\x01&4?\\x0164/\\x01&76\\x17\\x1e\\x03\\x022\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x9b\\x1a\\x13\\x13\\x1a\\x13\\xa8##)\\x1e\\x01\\x06\\x02\\x01\\x06\\x11\\x15\\x15\\x11\\x04\\x04\\x11\\x15\\x15\\x11\\x06\\x01\\x02\\x06\\x10\\x1b\\x12\\v\\x9fΑ\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\v\\x1a\\x13\\x13\\x1a\\x13\\x01\\x10\\x13\\x1a\\x13\\x13\\x1aq\\x16\\x0e\\x0e\\x16\\x10\\x1b\\x01\\x06\\x06\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\a\\a\\x01\\x01\\t\\f\\x0f\\x01%\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xa3\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\x13\\x00\\x1b\\x00#\\x00E\\x00U\\x00\\x00\\x132\\x16\\x17\\x14\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x04&2\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%\\x14\\a\\x16\\x15\\x14\\x06\\a#\\\"'&?\\x0164/\\x01&4?\\x0164/\\x01&76\\x17\\x1e\\x0362\\x16\\x17\\x14\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\xa8\\x13#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x01\\b\\v\\x0e\\x0f\\x10Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x00##)\\x1e\\x01\\x06\\x02\\x01\\x06\\x11\\x15\\x15\\x11\\x04\\x04\\x11\\x15\\x15\\x11\\x06\\x01\\x02\\x06\\x10\\x1b\\x12\\v\\x05&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\x01()\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x05\\x03\\a\\f\\x16\\x12\\f\\a\\x90\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x1f\\x16\\x0e\\x0e\\x16\\x10\\x1b\\x01\\x06\\x06\\x03\\a\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x1a\\b\\b\\x02\\a\\a\\x01\\x01\\t\\f\\x0f\\x95)\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xfc\\x01\\xb8\\x00!\\x004\\x00<\\x00O\\x00l\\x00\\x00%\\x14\\a\\x16\\x15\\x14\\x06\\a#\\\"'&?\\x0164/\\x01&4?\\x0164/\\x01&763\\x1e\\x037&\\\"\\x0f\\x01\\x06&7>\\x0332\\x16\\x17\\x16\\x06'&462\\x16\\x14\\x06\\\"\\x05\\x16\\x06\\x0f\\x01\\x06/\\x01&>\\x0176\\x16\\x1f\\x0176\\x16\\a\\x16\\x17\\x06#\\\"&4632\\x16\\x15\\x14\\a&#&'654&\\\"\\x06\\x14\\x1632\\x010##)\\x1e\\x01\\x06\\x02\\x01\\x06\\x11\\x15\\x15\\x11\\x04\\x04\\x11\\x15\\x15\\x11\\x06\\x01\\x02\\x06\\x10\\x1b\\x12\\vF\\v&\\v\\n\\x06\\x0f\\x01\\x02\\f\\x10\\x14\\n\\x14%\\x03\\x01\\x0f\\x06\\xf8\\x13\\x1a\\x13\\x13\\x1a\\x01Z\\a\\x11\\x12S\\n\\x03\\x17\\x03\\a\\x12\\f\\x11\\x1c\\x04\\x03\\b\\x10\\x1f\\xa1\\v\\x02/4g\\x91\\x91gg\\x91\\x11\\v\\b\\a\\x0f\\nu\\xa6uuS-\\x8c\\x16\\x0f\\x0e\\x16\\x0f\\x1b\\x02\\x06\\a\\x02\\b\\t\\x19\\t\\a\\x02\\v\\x02\\a\\t\\x19\\t\\a\\x03\\x06\\a\\x01\\t\\f\\x0fL\\n\\n\\t\\x05\\b\\b\\t\\x10\\v\\x06\\x18\\x12\\b\\b\\x05\\f\\x1b\\x13\\x13\\x1b\\x12\\xa2\\x12!\\x05\\x16\\x02\\tS\\f\\x17\\x10\\x02\\x02\\x13\\x10\\t\\x02\\x05\\x0f1(\\a\\x15\\x91Α\\x91g.,\\x03\\r\\v\\x1f Suu\\xa6u\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00-\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x166\\\"&462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\xb0\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\xa2\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\xe8\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1aS\\t\\x06-<<-\\x06\\t\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x00/\\x00=\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x16\\x122\\x16\\x17\\x14\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\a\\x06&7>\\x012\\x16\\x17\\x14\\x06/\\x01&\\\"\\a\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\x90&#\\x02\\f\\x03\\n\\f&\\r\\t\\x03\\r\\x01\\x02\\x93\\x03\\r\\x01\\x02#&#\\x02\\f\\x03\\t\\r&\\r\\xe2\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\x010)\\x1e\\a\\x03\\x05\\x11\\x16\\x16\\x11\\x05\\x03\\a\\x1e#\\x05\\x03\\a\\x1e))\\x1e\\a\\x03\\x05\\x11\\x16\\x16M\\t\\x06-<<-\\x06\\t\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1c\\x00)\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x16\\x13\\x17\\x16\\x06/\\x01&4?\\x016\\x16\\x0f\\x01\\x06&?\\x01'&6\\x1f\\x01\\x16\\x14\\a\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\xb3!\\a\\x0e\\bP\\x06\\x06P\\b\\x0e\\a\\xf3\\t\\r\\a!!\\a\\x0e\\bP\\x06\\x06\\x94\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\x01\\x04(\\b\\x0f\\x050\\x03\\x0e\\x030\\x05\\x0f\\bb\\x05\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x03R\\t\\x06-<<-\\x06\\t\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00!\\x00)\\x007\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x0064&\\\"\\x06\\x14\\x16\\x122\\x1e\\x01\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x01\\x06\\\"&462\\x16\\x14\\x172\\x16\\a\\x0e\\x01+\\x01\\\"&'&63\\x91Α\\x91Α\\x01Kuu\\xa6uu\\x96\\x1a\\x1a\\x13\\x02\\x01\\x0f\\x06\\n\\v&\\f\\t\\x06\\x0f\\x01\\x02\\x13l\\x1a\\x13\\x13\\x1a\\x13\\xa2\\a\\b\\x01\\x06E.\\x0e.E\\x06\\x01\\b\\a\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6u\\x01$\\n\\x14\\f\\b\\b\\x05\\t\\t\\t\\t\\x05\\b\\b\\f\\x142\\x13\\x1a\\x13\\x13\\x1aS\\t\\x06-<<-\\x06\\t\\x00\\x04\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&462\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xa5\\xa6uu\\xa6uk\\x1a\\x13\\x13\\x1a\\x13\\xb3\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xa3\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\a\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00)\\x001\\x00C\\x00O\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$2\\x16\\x14\\x06\\\"&4\\x162654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x15\\x14&\\x14\\x06\\\"&462\\a\\x14\\x162654'\\x16\\x15\\x14\\x06\\\"&547\\x06\\x172\\x16\\x14\\x06+\\x01\\\"&463\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x02<**<*7\\\"\\x17\\x12\\x02\\x0e\\x14\\x0e\\x02\\x12@*<**<F\\x17\\\"\\x17\\x12\\x02\\x0e\\x14\\x0e\\x02\\x12\\xc0\\n\\x0e\\x0e\\n\\x80\\n\\x0e\\x0e\\n\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xbb*<**<F\\x17\\x11\\x14\\f\\x04\\x04\\n\\x0e\\x0e\\n\\x04\\x04\\f\\x14\\x11/<**<*H\\x11\\x17\\x17\\x11\\x14\\f\\x04\\x04\\n\\x0e\\x0e\\n\\x04\\x04\\f\\x94\\x0e\\x14\\x0e\\x0e\\x14\\x0e\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00!\\x003\\x00C\\x00K\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x05654&\\\"\\x06\\x15\\x14\\x175462\\x16\\x1d\\x01\\x16275462\\x16\\x15&\\x06/\\x01&\\\"\\x0f\\x01\\x06&7>\\x0232\\x16\\x1762\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06&76\\x062\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\x01\\x888u\\xa6u8\\x0e\\x14\\x0e-f-\\x0e\\x14\\x0e\\xb3\\x0f\\x06\\t\\f&\\v\\n\\x06\\x0f\\x01\\x02\\x13\\x1a\\r\\x14%\\x03p(%\\x03\\x01\\x0f\\x06\\n\\v&\\v\\n\\x06\\x0f\\x01\\x03>.!!.!\\x01\\xb8\\x91Α\\x91\\xce\\xf1:PSuuSP:r\\n\\x0e\\x0e\\n\\x97\\x19\\x19\\x97\\n\\x0e\\x0e\\n2\\t\\x06\\t\\t\\t\\t\\x06\\t\\b\\f\\x14\\n\\x18\\x12*\\x18\\x12\\b\\b\\x05\\t\\t\\t\\t\\x05\\b\\b\\x12D&4&&4\\x00\\x00\\x06\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1e\\x00&\\x00.\\x009\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1472\\x17\\x16\\x06\\a\\x06&'&#\\\"&46&\\\"&462\\x16\\x1462\\x16\\x14\\x06\\\"&4\\a6\\x17\\x16\\x15\\x14\\x06\\\"&54\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\xd0<&\\a\\x02\\b\\b\\x13\\x06\\x18&\\n\\x0e\\x0eA\\x1a\\x13\\x13\\x1a\\x13s\\x1a\\x13\\x13\\x1a\\x13\\x86\\x06\\x06$\\x19\\\"\\x19\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6#.\\b\\x14\\x06\\x06\\x02\\a\\x1d\\x0e\\x14\\x0e@\\x13\\x1a\\x13\\x13\\x1a-\\x13\\x1a\\x13\\x13\\x1aP\\b\\b1\\x13\\x11\\x18\\x18\\x11\\x13\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1f\\x004\\x00E\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14%>\\x01\\x1e\\x01\\a\\x06\\\"'&>\\x01\\x16\\x17\\x162'\\a\\x06'&7>\\x0432\\x16\\x17\\x16\\x06/\\x01&\\\"62\\x16\\x17\\x16\\x06/\\x01&\\\"\\x0f\\x01\\x06'&76\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01\\x1c\\x06\\x14\\x0f\\x02\\x06/\\x94/\\x06\\x02\\x0f\\x14\\x06!f\\xa3\\t\\x03\\x06\\a\\x01\\x01\\b\\v\\x0e\\x0f\\a\\x13#\\x02\\x01\\r\\x03\\t\\r&\\xa0&#\\x02\\x01\\r\\x03\\t\\r&\\r\\t\\x03\\x06\\a\\x01\\x02\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\x1a\\b\\x02\\r\\x14\\a99\\a\\x14\\r\\x02\\b'\\x8d\\x11\\x06\\x02\\x02\\a\\f\\x16\\x12\\f\\a)\\x1e\\a\\x04\\x06\\x11\\x16%)\\x1e\\a\\x04\\x06\\x11\\x16\\x16\\x11\\x06\\x02\\x02\\a\\x1e\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x17\\x00\\x1f\\x00'\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x1462\\x16\\x14\\x06\\\"&46\\x14\\x06\\\"&46:\\x02\\x16\\x14\\x06\\\"&4\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\xae4&&4&\\x10\\x13\\x1a\\x13\\x13\\x1a\\x86\\x1a\\x13\\x13\\x1a\\x13\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6;&4&&4{\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x13\\x13\\x1a\\x00\\x00\\x00\\x05\\x00\\x00\\xff\\xc8\\x01\\xf0\\x01\\xb8\\x00\\a\\x00\\x0f\\x00\\x1c\\x00)\\x008\\x00\\x00\\x122\\x16\\x14\\x06\\\"&4\\x12264&\\\"\\x06\\x14$\\x16\\x0f\\x01\\x17\\x16\\x06/\\x01&4?\\x01\\x06\\x14\\x0f\\x01\\x06&?\\x01'&6\\x1f\\x01\\x062\\x16\\x17\\x16\\x06'&\\\"\\a\\x06.\\x0176\\x91Α\\x91Α\\xa5\\xa6uu\\xa6u\\x01C\\r\\a!!\\a\\r\\tP\\x06\\x06P\\x8e\\x06P\\t\\r\\a!!\\a\\x0e\\bP\\x02HC\\x05\\x01\\n\\a#r#\\x04\\b\\x05\\x01\\x05\\x01\\xb8\\x91Α\\x91\\xce\\xfe\\xd1u\\xa6uu\\xa6\\xc2\\x0f\\b((\\b\\x0f\\x050\\x03\\x0e\\x0303\\x0e\\x030\\x05\\x0f\\b((\\b\\x0f\\x050J6'\\t\\f\\x03\\x0f\\x0f\\x02\\x04\\n\\x06'\\x00\\x00\\x00\\x1c\\x01V\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x006\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x1b\\x00\\x89\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\a\\x00\\xb5\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\\"\\x01\\x03\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x1b\\x01^\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x05\\x00&\\x01\\xc8\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x18\\x02!\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\n\\x00,\\x02\\x94\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\v\\x00\\x17\\x02\\xf1\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x13\\x031\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\a\\x03U\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x1b\\x03\\x95\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x13\\x03\\xd9\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\a\\x03\\xfd\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x00\\x004\\x00\\x00\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x01\\x006\\x00Q\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x02\\x00\\x0e\\x00\\xa5\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x03\\x00D\\x00\\xbd\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x04\\x006\\x01&\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x05\\x00L\\x01z\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x06\\x000\\x01\\xef\\x00\\x03\\x00\\x01\\x04\\t\\x00\\n\\x00X\\x02:\\x00\\x03\\x00\\x01\\x04\\t\\x00\\v\\x00.\\x02\\xc1\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x10\\x00&\\x03\\t\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x11\\x00\\x0e\\x03E\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x12\\x006\\x03]\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x15\\x00&\\x03\\xb1\\x00\\x03\\x00\\x01\\x04\\t\\x00\\x16\\x00\\x0e\\x03\\xed\\x00C\\x00o\\x00p\\x00y\\x00r\\x00i\\x00g\\x00h\\x00t\\x00 \\x00(\\x00c\\x00)\\x00 \\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00\\x00Copyright (c) Font Awesome\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Free Regular\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00-\\x005\\x00.\\x001\\x002\\x00.\\x000\\x00\\x00Font Awesome 5 Free Regular-5.12.0\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Free Regular\\x00\\x003\\x003\\x000\\x00.\\x007\\x005\\x002\\x00 \\x00(\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x00v\\x00e\\x00r\\x00s\\x00i\\x00o\\x00n\\x00:\\x00 \\x005\\x00.\\x001\\x002\\x00.\\x000\\x00)\\x00\\x00330.752 (Font Awesome version: 5.12.0)\\x00\\x00F\\x00o\\x00n\\x00t\\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x005\\x00F\\x00r\\x00e\\x00e\\x00-\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00FontAwesome5Free-Regular\\x00\\x00T\\x00h\\x00e\\x00 \\x00w\\x00e\\x00b\\x00'\\x00s\\x00 \\x00m\\x00o\\x00s\\x00t\\x00 \\x00p\\x00o\\x00p\\x00u\\x00l\\x00a\\x00r\\x00 \\x00i\\x00c\\x00o\\x00n\\x00 \\x00s\\x00e\\x00t\\x00 \\x00a\\x00n\\x00d\\x00 \\x00t\\x00o\\x00o\\x00l\\x00k\\x00i\\x00t\\x00.\\x00\\x00The web's most popular icon set and toolkit.\\x00\\x00h\\x00t\\x00t\\x00p\\x00s\\x00:\\x00/\\x00/\\x00f\\x00o\\x00n\\x00t\\x00a\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00.\\x00c\\x00o\\x00m\\x00\\x00https://fontawesome.com\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00 \\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Font Awesome 5 Free Regular\\x00\\x00F\\x00o\\x00n\\x00t\\x00 \\x00A\\x00w\\x00e\\x00s\\x00o\\x00m\\x00e\\x00 \\x005\\x00 \\x00F\\x00r\\x00e\\x00e\\x00\\x00Font Awesome 5 Free\\x00\\x00R\\x00e\\x00g\\x00u\\x00l\\x00a\\x00r\\x00\\x00Regular\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xdb\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x9a\\x00\\x00\\x00\\x01\\x00\\x02\\x01\\x02\\x01\\x03\\x01\\x04\\x01\\x05\\x01\\x06\\x01\\a\\x01\\b\\x01\\t\\x01\\n\\x01\\v\\x01\\f\\x01\\r\\x01\\x0e\\x01\\x0f\\x01\\x10\\x01\\x11\\x01\\x12\\x01\\x13\\x01\\x14\\x01\\x15\\x01\\x16\\x01\\x17\\x01\\x18\\x01\\x19\\x01\\x1a\\x01\\x1b\\x01\\x1c\\x01\\x1d\\x01\\x1e\\x01\\x1f\\x01 \\x01!\\x01\\\"\\x01#\\x01$\\x01%\\x01&\\x01'\\x01(\\x01)\\x01*\\x01+\\x01,\\x01-\\x01.\\x01/\\x010\\x011\\x012\\x013\\x014\\x015\\x016\\x017\\x018\\x019\\x01:\\x01;\\x01<\\x01=\\x01>\\x01?\\x01@\\x01A\\x01B\\x01C\\x01D\\x01E\\x01F\\x01G\\x01H\\x01I\\x01J\\x00\\x8b\\x01K\\x01L\\x01M\\x01N\\x01O\\x01P\\x01Q\\x01R\\x01S\\x01T\\x01U\\x01V\\x01W\\x00\\x8a\\x01X\\x01Y\\x01Z\\x01[\\x01\\\\\\x01]\\x01^\\x01_\\x01`\\x01a\\x01b\\x01c\\x01d\\x01e\\x01f\\x01g\\x01h\\x01i\\x01j\\x01k\\x01l\\x01m\\x01n\\x01o\\x01p\\x01q\\x01r\\x01s\\x01t\\x01u\\x01v\\x01w\\x01x\\x01y\\x01z\\x01{\\x01|\\x01}\\x01~\\x01\\u007f\\x01\\x80\\x01\\x81\\x01\\x82\\x01\\x83\\x01\\x84\\x01\\x85\\x01\\x86\\x01\\x87\\x01\\x88\\x01\\x89\\x01\\x8a\\x01\\x8b\\x01\\x8c\\x01\\x8d\\x01\\x8e\\x01\\x8f\\x01\\x90\\x01\\x91\\x01\\x92\\x01\\x93\\x01\\x94\\x01\\x95\\x01\\x96\\x05heart\\x04star\\x04user\\x05clock\\blist-alt\\x04flag\\bbookmark\\x05image\\x04edit\\ftimes-circle\\fcheck-circle\\x0fquestion-circle\\x03eye\\teye-slash\\fcalendar-alt\\acomment\\x06folder\\vfolder-open\\tchart-bar\\bcomments\\tstar-half\\x05lemon\\vcredit-card\\x03hdd\\x10hand-point-right\\x0fhand-point-left\\rhand-point-up\\x0fhand-point-down\\x04copy\\x04save\\x06square\\benvelope\\tlightbulb\\x04bell\\bhospital\\vplus-square\\x06circle\\x05smile\\x05frown\\x03meh\\bkeyboard\\bcalendar\\vplay-circle\\fminus-square\\fcheck-square\\fshare-square\\acompass\\x11caret-square-down\\x0fcaret-square-up\\x12caret-square-right\\x04file\\bfile-alt\\tthumbs-up\\vthumbs-down\\x03sun\\x04moon\\x11caret-square-left\\ndot-circle\\bbuilding\\bfile-pdf\\tfile-word\\nfile-excel\\x0ffile-powerpoint\\nfile-image\\ffile-archive\\nfile-audio\\nfile-video\\tfile-code\\tlife-ring\\vpaper-plane\\x06futbol\\tnewspaper\\nbell-slash\\x11closed-captioning\\fobject-group\\x0eobject-ungroup\\vsticky-note\\x05clone\\thourglass\\thand-rock\\nhand-paper\\rhand-scissors\\vhand-lizard\\nhand-spock\\fhand-pointer\\nhand-peace\\rcalendar-plus\\x0ecalendar-minus\\x0ecalendar-times\\x0ecalendar-check\\x03map\\vcomment-alt\\fpause-circle\\vstop-circle\\thandshake\\renvelope-open\\faddress-book\\faddress-card\\vuser-circle\\bid-badge\\aid-card\\x0fwindow-maximize\\x0fwindow-minimize\\x0ewindow-restore\\tsnowflake\\ttrash-alt\\x06images\\tclipboard\\x15arrow-alt-circle-down\\x15arrow-alt-circle-left\\x16arrow-alt-circle-right\\x13arrow-alt-circle-up\\x03gem\\x0emoney-bill-alt\\fwindow-close\\fcomment-dots\\nsmile-wink\\x05angry\\x05dizzy\\aflushed\\nfrown-open\\agrimace\\x04grin\\bgrin-alt\\tgrin-beam\\x0fgrin-beam-sweat\\vgrin-hearts\\vgrin-squint\\x11grin-squint-tears\\ngrin-stars\\ngrin-tears\\vgrin-tongue\\x12grin-tongue-squint\\x10grin-tongue-wink\\tgrin-wink\\x04kiss\\tkiss-beam\\x0fkiss-wink-heart\\x05laugh\\nlaugh-beam\\flaugh-squint\\nlaugh-wink\\tmeh-blank\\x10meh-rolling-eyes\\asad-cry\\bsad-tear\\nsmile-beam\\bsurprise\\x05tired\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x00\\x99\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\xd9k%\\xf9\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\v\\x00\\x00\\x00\\x00\\xda\\x15\\xc8\\x11\"\nvar _Assets2b8ba0ba9ee6d47753727f8c81b09020b5f9249c = \"wOFF\\x00\\x01\\x00\\x00\\x00\\x01\\\\\\f\\x00\\r\\x00\\x00\\x00\\x02\\x02(\\x01J\\xc0\\x83\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00FFTM\\x00\\x00\\x010\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x1c\\x8d\\x96\\xb6\\x16GDEF\\x00\\x00\\x01L\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x1e\\x00*\\x01\\xbfOS/2\\x00\\x00\\x01l\\x00\\x00\\x00L\\x00\\x00\\x00`B\\x0fV\\x9acmap\\x00\\x00\\x01\\xb8\\x00\\x00\\x03;\\x00\\x00\\x05\\xda\\xf2\\xaa\\xef\\xe1gasp\\x00\\x00\\x04\\xf4\\x00\\x00\\x00\\b\\x00\\x00\\x00\\b\\xff\\xff\\x00\\x03glyf\\x00\\x00\\x04\\xfc\\x00\\x01A\\xbb\\x00\\x01\\xd5\\xe4\\x94:\\x85ahead\\x00\\x01F\\xb8\\x00\\x00\\x003\\x00\\x00\\x006\\x17\\a\\x912hhea\\x00\\x01F\\xec\\x00\\x00\\x00!\\x00\\x00\\x00$\\x046\\x03\\xebhmtx\\x00\\x01G\\x10\\x00\\x00\\x02v\\x00\\x00\\x06\\xe4Kc\\x06\\x89loca\\x00\\x01I\\x88\\x00\\x00\\x03t\\x00\\x00\\x03t\\xa2\\xe5\\x11Vmaxp\\x00\\x01L\\xfc\\x00\\x00\\x00\\x1f\\x00\\x00\\x00 \\x02\\\"\\x03Oname\\x00\\x01M\\x1c\\x00\\x00\\x02\\x11\\x00\\x00\\x05\\x85\\x8e\\x97\\xb2\\xcdpost\\x00\\x01O0\\x00\\x00\\f\\xdc\\x00\\x00\\x14\\x89\\x13,\\xe7\\x97x\\x9cc```d\\x00\\x82\\x9b٪?A\\xf4-\\xd1\\x13\\xdcPZ\\x10\\x00D\\xd7\\x05\\xee\\x00\\x00\\x01\\x00\\x00\\x00\\f\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x02\\x00\\x01\\x00\\x03\\x01\\xb8\\x00\\x02\\x00\\x04\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00x\\x9cc`a|\\xcd8\\x81\\x81\\x95\\x81\\x81ч1\\x8d\\x81\\x81\\xc1\\x1dJ\\u007fe\\x90dha``b`ef\\xc0\\n\\x02\\xd2\\\\S\\x18\\x1a>4\\xfe\\xf4d<\\xf0\\xff\\x00\\x83\\x1e\\xe3\\x19\\x86\\x10\\xa00#H\\x8eъq)\\x90R``\\x04\\x00{\\xb3\\x0e6x\\x9c\\xed\\xd3\\u007fh\\x95e\\x14\\a\\xf0\\xf7nW\\xf7\\xfe\\xb8\\xe7\\xdc\\xe9B3,\\x8a\\x14la\\xb8Uj\\xea4F\\x11QAI\\x91EE\\u007f\\x18m\\xac\\x96\\x91\\xe1\\x8fJ\\xb7\\xe5\\xa2URNӮ\\xe6L͙\\x9aZ6\\xd3p\\xb3 [\\xb6nu\\x9b\\xcd\\xc0\\x96\\xeb\\xe2\\xd2\\x04\\u007f\\xbc\\xe7\\x9c\\xe7}\\x9f\\xf7jh\\x0f\\xd7\\x11\\x11\\x04\\xfeU\\xff\\xf4\\x85s\\xe0\\v\\xcf\\x1f\\x87\\x0f<\\x96e\\x15Z\\x17f\\xa4\\x153ۊ\\xff`Z,\\xdf\\xe3\\xf1ݖ\\x15+5\\xa5\\xc8*\\xf5\\x1b\\xfc\\xd7\\xfcf\\u007f\\x95\\xdf\\xe3g\\xa9\\x84\\xc6\\xd3\\x14z\\x90\\xaa\\xa9\\x96\\x9e\\xa6ٴ\\x80\\xeai\\x11-\\xa6e\\xf4\\x16\\xad\\xa2\\x16\\xdaL\\xbbh/\\xa5\\xe9G:N\\xa7(\\xe0Bv\\x18y\\x18\\x97\\xf3\\x04\\x9e\\xcaw\\xf2#\\\\õ<\\x8b\\x17p\\x03\\xbf\\xc2\\xcb8ŭ\\xbc\\x8d\\xdbx7w\\xf2!>̿\\xc8C\\xf2\\xac\\xbc u\\xd2(/\\xcb\\xeb\\xb2BV\\xca\\x1ayWvH\\x87|&\\xfbd\\xbf\\xa4%#\\xbd\\xd2'\\xfdrBN\\x8bHNΩA\\n\\xd4pu\\x95\\xbaZ\\x95\\xa9\\xbb\\xd4tu\\xbfz@\\xf5\\xa8_U.\\xb8$h\\x0eZ\\x82\\xf5\\xc1{\\xc1\\x8e`g\\xb07\\xe8\\f\\xd2\\xc1w\\x01\\x05:8\\x13&áᴰ2\\\\\\x1dn\\x0f\\xbb\\xc2tث\\xe3\\xbaL?\\xac\\xe7\\xea\\xe7t\\xa3nҋ\\xf5\\x12\\x9d\\xd2\\x1f\\xea\\x8ft\\xbb\\xee\\xd4\\a\\xf4A\\x9d\\xd5G\\xa2\\x8a\\xa82j\\x89Z\\xa3\\xae\\xa8;\\xcaF\\xbf\\xe5\\x8ar%\\xb9\\xcbrW\\xe4n?\\u007f\\u07b2\\xfc\\xfa\\xbcU\\xca\\xef\\x1e\\xb0\\x9al\\xac\\x1e\\xa7\\x1a\\x9aE\\xcf\\xd0<\\xaa3VMy\\xab\\x95\\xc6\\xea\\x1dj\\xa3v\\xea\\xa2\\f\\x1d\\xa3\\x93\\xe4s\\x01\\xdb\\f\\\\\\xcce\\xc6j\\x12\\xdfa\\xac\\x1e\\xe5'\\x8d\\xd5\\xf3\\\\ǋx)/\\xe7\\r\\xbc\\x89?0V\\xfb\\xb8\\x87\\u007f\\xce[U\\xc9\\\\Y(/\\x1a\\xabWe\\x89\\xa4d\\xb5\\xac\\x95Vi3V\\x9fK\\xa7t\\x19\\xabnc\\x95\\x95\\xa3r\\xcaX\\x05ƪ@\\x15\\xa9!j\\x84\\xb1\\x1a\\xfd\\x17\\xab~u,p/\\xd2\\xea\\xab\\x01\\xabqy\\xab\\xf9\\x03Vo\\xe8\\x15z\\xbb\\xb1\\xda3`\\xd5g\\xacn\\x88\\xa6\\xfd\\x93U\\xb2!9/9;Y\\x9b\\x9c\\x98\\x1c\\x8b\\xbf\\xe3!<\\x88\\x9f\\xe0V|\\x1f\\xb7\\xe0fl\\xc5\\r\\xb8\\x1e\\xd7`\\n\\x97㛸\\x14\\x9b\\xb1\\t\\x1bq>\\xce\\xc1*|\\fg\\xe2\\f\\xbc\\x17\\xef\\xc1\\xbbq<\\x96\\xe38\\x1c\\x85%8\\x14\\x87`1\\x0e\\xc28\\x16\\xc2Y8\\x03\\xa7\\xe1$\\x9c\\x80\\xe3p\\x182\\xf0-|\\x03\\xd3\\xe16\\xb8\\x15n\\x81J\\xb8\\x19\\xa6B\\x05L\\x81Ip\\x13L\\x84\\tp#\\\\\\x0f\\xe5P\\x06\\xd7\\xc1X\\xb8\\x16J\\xe1\\x1a\\x18\\x03\\xa3a\\x14\\\\\\t\\x97\\xc3H\\x18\\x01\\x97\\xc2p\\x18\\x968\\x9b\\xd0\\tIpbN\\xa2:Q\\x95\\x98\\xe1\\xfd\\xe4e\\xbc\\xb4\\xb7\\xdf\\xfb\\xd4\\xeb\\xf0vzۼM\\xdeF\\xef%\\xaf\\xde[\\xe8\\xd5x\\xd5^\\x857\\xd9ͺ\\x19w\\x97\\xfb\\xb1\\xbbѭs\\xefsK\\xddb7\\xe9\\x0ev\\v]\\xcb9\\xe7\\xe4\\x9c~\\xe7\\x88\\xd3\\xeb\\x1cp\\xbet\\xbep:\\x9cv\\xe7\\t\\xa7\\xc6)v\\x1c\\xfb\\xa8\\xddg\\u007fo\\u007fmo\\xb5\\xd7\\xd9o\\xdb)\\xfb\\xa9\\v\\u007f\\xf3\\xff\\\\\\\\b\\x83\\xad?\\xc1b\\x05f\\x15\\xfc\\xfd\\xc1\\xbf|\\xd0\\u007f\\x90?\\x00\\xb6\\x15\\x13\\n\\x00\\x00\\x00\\x00\\x01\\xff\\xff\\x00\\x02x\\x9c\\x84\\xbc\\t\\x9c\\x1dGy/\\xdaU\\xd5]\\xd5\\xfbrz;\\xfb\\xd6g\\x9b\\xed\\xcc\\xcc\\xd9z6͌fF\\x96dK\\xb24\\x92lk\\xf3n\\xcb\\v6\\xc6\\v\\x18\\xb0A\\x18\\x1b\\x83\\x8d\\x01\\x83\\x93@0\\xc1\\x84\\x04\\xc3#\\xc4f\\xbd\\xc6/\\x80}\\xc3K\\xc8\\xc2\\xf2\\x1e\\xf7\\xf1\\xc8\\r\\t\\xce\\xcdF\\xf2\\xf2\\xbb\\x8f$\\xdc@nrG\\xf7\\xab>gdIp\\u007f\\xef̜>\\xdd\\xd5\\xdd\\xd5\\xd5U_}\\xdf\\xff\\xff\\xd5W%`A8\\xfb\\nz\\t=#X¢ \\xa0N\\xe0;\\x1e\\x8d*\\xd5F\\xdf\\xe9\\r\\xba\\xd2 \\xa6\\x8c\\u007f\\x1bQ\\x95\\x86\\x8d&\\xf5\\xbd\\\"\\x82_\\xdf\\vB\\xda,\\xa2.\\x8d\\xaa͠\\xdbYF\\xfd\\x1ez\\x9f\\x97\\xcf{[\\xcf\\xf0-\\x9avM\\xd7\\xf5e/p\\xf3\\xa5\\x16;\\xdcWdS\\xb6\\xcdbhڴ\\xeaצ\\x14֎\\xe7\\xaf\\x1aCϜ\\xbb\\xe1Z/\\xffQӓ\\xb1\\x11\\xea\\xa2?S\\x91V\\xad\\x94\\xea\\xa7(\\x92Q\\xba&\\x11\\xece\\xf2\\xa8\\xb8pdJ\\x12\\xa0\\x90\\xe7\\xca\\\\;W\\xe2\\t\\xd4\\xef\\xc6Q\\xbf\\xb7\\x88\\xfaPT\\x13\\x15P\\xe4w\\xfdh\\xf4\\x1aâ\\xbdkA\\xdb\\xd5*\\xe5s\\x85\\xb1\\xf4\\xcaʻ\\x92\\xa7\\x8e\\x9e\\xff\\xc1=Ӎ\\x1dR0Y\\x8c\\xf7|pX\\x16x\\x8c \\x9eW7\\x9e\\x90\\x17\\xfa?_?n\\xb7\\x1f\\xf9\\x83ΠרR\\x0fꠍ\\xa1\\x9eX\\x04\\x89\\xdd>\\x9c\\xee\\x14q\\x01\\xa1g\\f\\xd75\\xb6\\xce\\xf0\\xedi\\xb4\\xee\\x94ð\\x1c\\xa0UjW\\xd2a\\x85\\xa1\\xd5u;\\xd4m\\t\\xa3g\\xb6/B\\xb0\\xdd:\\xf3\\xbd\\xef\\xfdsX\\n\\xc3\\xd2ֿܗ\\xae\\x16,\\xcf,|\\xef\\xb6LQ\\xf5,\\xfd\\x16(\\x9br^ٮ\\x10N\\b7\\b\\xb7\\nw\\to\\x10\\x1e\\x14\\x1e\\xf9\\x05\\xa5\\xe4\\xcd\\xc3[\\x907[\\x00\\xbb}\\x13Uۨ\\xd9h\\xce4{]H\\x8a\\aq\\x9b\\xf4{q#\\x1e\\x04%4\\xe8\\x84\\xcb8\\fX\\xe0{&\\x86m\\x1e\\xf9^\\x836\\xba\\x03\\u058b\\xaa\\xbe\\xd7\\xed4h\\xb31\\b\\x9b\\x83\\x06\\xa3a\\xd0\\x1c4\\xe17h\\xc0\\x0f\\x85\\xb4f\\x95'\\x9e/\\v\\u007f\\xdd\\xd9qݮ]\\xa7\\x96;:\\xc2\\xd41M\\xc24&ۊS\\xc6r\\xca\\xcbh\\xb6\\xa2\\xd2P\\x91\\xbd\\tO\\xd42T\\x95\\x1d=르\\xc3\\f\\x11Q\\x17\\xe1c`\\\"b\\xa2 \\xa8!L\\x18\\xe6\\x1f\\x91\\x12\\x8c\\t\\x16\\x11\\xc6\\b\\x11|\\xa1\\x14m\\x9dq\\xae\\x8c7N\\x9dڈ\\xaft\\xb0\\x8a\\xca2\\\\\\xa2*\\xae\\xc4\\b\\xb2\\v\\x96Űd\\x16\\x83\\xc0\\xf12X\\x91\\xe0\\x83\\x99\\x8a\\xd3~\\xca\\x0f\\x8a\\xa6\\x84\\x15\\xdf\\x1cC\\xea*\\x92\\x90D\\b\\xa6\\x12\\x82=\\x8c(\\u007f\\x98\\x86 \\x05IJ\\xf2d\\x06\\xa9\\b\\xe1\\x91,\\xfe\\x18\\v\\xe8}\\xc2\\f\\x1c$56\\xec\\x11q\\xb5\\x91\\xfc\\xb4\\xf1\\x0e\\x14\\x84\\r\\xa8\\\\\\xdeq\\x12\\xa1\\bG\\x9d\\n\\xfd\\x11j\\xed\\xbd\\xf7\\x92\\xab\\xf6j\\xe6ޅ\\xa8\\xaf\\xaa\\x8ai\\xa6\\x1bA\\x90\\x99\\xb6\\x9a\\xaf[\\xc5;&ڥZI\\xaf\\x16\\x8b\\x01j\\x89J\\xff\\xd6+\\a\\xd3hj\\xac\\x84\\x88T\\x9c\\xc8`\\x03\\x95\\xe7\\xf2\\x99\\xd9\\x05\\xa2\\xeb\\x13\\xcb\\x15\\x96\\xaa\\xfb\\xa2Q\\x86\\xf2\\xc8g\\xff\\b\\xfd\\f\\xbd \\x14\\x05\\xa1\\xeeQ\\xf6\\x8b\\xbaE\\x1b\\xc4a\\xd0\\t\\xd0\\xcf\\xee?v~\\x978v\\xff\\x93\\xdfz\\U000a54cf\\x9b\\x9fy\\xb5;|\\xc6|\\xfc\\xe4\\xe9'\\x9f\\x14dx\\xcf\\xef\\xa2\\x1fC\\xbeL0\\xa17\\xdc$\\xdc!\\xdc\\a\\xd2\\xf6\\xb0 \\xc4^D\\xfb\\xbd\\xee\\x80\\x0e@fh3\\xee\\xc0\\xb6\\xe1v\\x8a 5\\x14\\xf6\\xfaK\\xf0\\xb4\\xe6\\xb2\\bb\\xc7E\\x85Z\\xa8Qem\\fR\\u0095\\t\\t)3Q\\xa3\\xd9FӨ\\x1a\\x16Q\\t\\x15qg\\x05yP\\x93\\xb4\\x99\\x94\\x93\\f\\xb3\\x85\\x9b\\x87\\xbf\\xe1\\x05ǍOHT\\xa2\\x15\\\"\\xf1\\xb6jA\\xbbIh\\xf7ƽ\\xeb\\xa7.\\x93\\x15'H\\xd7\\\\S\\x87?\\xb5j襝E)UW,=4SՌo\\x10\\xd5/\\xab\\xd4\\x05\\xc9\\xf5\\x98ID\\xd1K\\a\\x8c!E\\xdew\\xf5\\x13\\x93\\x98\\xf0V&\\n|Ax\\xc4*\\x16A\\x02EQ!\\xfc#uE\\x90\\x0e$\\xca\\x18A2\\xa3\\x18Tԙջ6\\x0e\\xbf=\\x83e\\x8aV\\xbc2dg\\x06\\xad\\xbc\\x9b\\xb6JubȊ\\xa2\\x88\\x9aE\\xea\\xa5L%\\xdf\\n@\\xca\\xf4@\\x14uG3\\x10\\xb2\\xc4\\x14\\x93u[DH\\x9fATƙ\\xb7\\x1f\\xbe\\xe5\\xdd[ώ\\x9e\\xaf\\x82ă\\xb0\\xe1\\n<\\x9b\\xc0\\xd7!\\x92\\x88\\xb1\\x92\\xc8\\xdc7\\x92\\xb6\\xb8\\x14$\\xd0\\xe3*x\\xb0\\x82@\\x19w\\x06\\xe7u\\xf3x\\x19\\xc5P߉\\xc4q\\xb9D\\xa0\\f\\xe3e\\f:\\n%\\x97\\x14E\\x1fꞆCa@?~\\xf2t#JS\\x9b\\x96\\xddx\\xefU;\\xf7]\\x99\\x0f\\x18\\x17\\u007fDR;\\xba\\xed\\x05\\xbf滁\\x88uJ-\\xd5͂\\xec\\xc3_\\x06\\xba\\xcf\\xee+\\x9f\\xfc\\x16j~\\xebI\\xad\\x95Y\\xd4\\xedc;wl^\\xb5\\\\\\x98W\\t\\xc5!\\x11IX\\x9d\\xd89?Y\\xe9\\x15r)\\xb5\\x96S\\x15[\\xa9fE\\x851\\x11\\xde\\xf8\\xb4\\x97i\\xe7\\xder\\xe0\\xf4\\x93\\xe7\\xe9\\xf3M\\xe8C\\x892\\x1f\\xbd\\xcf\\x05z+\\xee\\r~\\xf1\\vq\\xfd\\x03\\xef\\x83KȔ@}m+\\xfd\\nH\\xf8Ky\\xef_\\x02j\\xd1r\\xaa\\xbeP\\xb9r\\xe7e\\xc9[\\xd1\\xe4\\xa5:S\\v~\\x14\\xa4\\xe0\\xa54\\x96\\xc9Yr\\xa2L$C\\x82\\xb7\\x86\\xf3Ƕ\\xd5\\t\\xba\\x8b\\xab\\x96Z\\bo\\u05fad|ǡ+\\x97\\xf3s\\x1aa\\bڐ\\x84\\x95\\x89չ\\xc9r/\\x9fMiQN)\\x8ab\\xde\\U000a8b80\\xc2\\xf0c\\xaf\\xac\\a\\x8e\\x81\\x86\\xb9$\\xf6\\x84\\x9c\\xa7\\xb3'\\x84\\xf8\\x17\\xe8iހM\\xe8\\xa1\\xfcݒv\\x01e\\x11\\xf3\\n\\xf0\\x82z\\x9f[\\x15\\xde{\\xbb\\xfd\\xf3\\xb5\\xeb\\xbd\\x13}|\\xf5<\\xc9g\\x9d\\xbcS˦\\xed\\\\\\xbe9\\xb6\\xb8\\x88\\xa4\\x02\\xff\\\\\\xa4\\x19\\u007fg0)\\xcbU+\\xef\\x14\\x9cl\\xdd\\xcaf\\x177\\x177\\x93\\xeb\\n\\x02\\x16tA\\xc0\\xf7\\xa23BNh\\x82\\xe6\\xe0\\xfd\\x0f*2)\\x01KT\\a\\xb4\\x01\\b\\x18(\\x13\\t\\xec\\xaa\\x0f\\x85\\xe9w\\xfb]\\xf4\\x10\\xb9y\\xf3\\xe0]w\\x1d\\xbc\\xac\\xdf+\\xb6\\xcbq\\xf9\\x92\\xd9\\xce@\\xba\\x03\\xdd977\\x17\\xc7s?p\\xac÷\\xde\\xf5\\xcc]\\x9dN\\xa1<W\\xe9\\xec\\x1e\\xe4\\xd7\\xd9\\x1c\\xff\\xf0\\xba\\x80\\xf7\\u007f\\t\\xbd\\x04{\\x96\\xd0\\x12\\x84n\\xe4t\\x9b\\xc3\\a\\x16\\x114.\\x8aF\\xd6\\x14T\\x96\\x03/\\xbd\\x8c\\xb85\\xf5o<u\\xaa\\x1d\\x94ˁ\\x99\\xb1\\xac\\fz\\xe0\\x14\\x96}\\xa7\\x12\\x9e:\\x8e\\xd4v\\xb9:\\x15*hb\\xac<Y63\\x85\\x8c\\xb5\\xf5[\\xefw\\xfc\\x9c9\\x1e=\\x05\\x89^\\xc1\\x1f\\x9b\\xa9$6\\x1d\\x9e\\xfb\\n\\xbc\\xa7*t\\x85}\\xc2\\x11A\\x18\\xf07\\x1d\\xf6\\x02\\tt\\x81\\x14\\x8d\\xa3\\xb6\\xc8\\xe5,\\xe6\\xdfN\\x10\\xf2:\\x80\\xc7C\\x95\\xb0\\x80qyd\\xb4\\xda\\x1c\\x8ae\\x91,\\xa2\\xce2nt\\x02\\x8fB\\xe1_tS\\xba\\xc3\\xdc\\bͧ\\x94\\xdcX9N\\xe7\\xf3\\xd6 =\\x95\\xce\\xcb\\u07b8lF\\xb3\\x99\\xf1\\xe9\\xf1Ff\\xb6j\\xc9\\xcd\\xd5VU\\x9f\\xf4g\\xfc\\t\\xa3\\xdar\\xf3\\xe3\\x8d\\xf4Lqf:{c云\\xf7X\\xa3\\xe6\\xa55\\xb7&.\\xd6ܜ\\xad\\x10\\xd0A\\x9a\\x9d\\xb1[\\xf1Ιt&,؞\\xaaxV!̄\\xed7D3\\x94\\x10:\\x13e\\x1a\\xbe!2o\\xe2\\x8aZ\\xa3Vk$vI\\x90\\xc0\\xfc\\xbdYp\\xa15\\xa3xИ@$r#\\xf86+\\x1dМ\\xe8\\x9b\\xd7\\xf5\\x88m\\xcf.]\\xb7xx麥)t\\xefr\\xadnH\\xffl\\xbb[\\u007f\\x8f\\x02\\xfe\\xbdvjj\\x870ćg@fE\\xc1\\x17\\x04\\xa7BX\\x13\\xc5Qص@aG%\\xd4]AQ\\x13\\x9d\\x89>\\xf2\\x11\\xe4H\\xff\\xa8?K\\xfb\\x03q\\x9aހ\\xae3\\x9f\\x17\\xd13[\\xf7\\xf6z\\xa0\\xda\\u07bfl\\x9a\\x8d}\\xb9\\xdc/͎\\xfa\\xfa+I\\x1f\\x10\\x10d\\x16wY\\xb8\\x82*1\\xffC\\xaf\\xac\\xfe\\xf0eoS\\xbe\\xf7\\x1d\\xee\\xd6\\xe7m\\xb4_\\xdb\\xfa\\x9c\\x03\\x99\\xbc\\xef\\xe0\\xc1k\\xc6&'\\xaf\\xdb\\xeco\\x82\\xb4\\x90\\xb3/\\xa1\\x87An\\xda\\xc2N\\xdez\\xf5\\x00\\xec\\a\\x03y\\xacF\\xc9&\\xeet\\x03\\xd0|\\xfd6bը\\x1f\\xc4\\xfd\\xae?\\x00A\\xf5\\x8b\\\"@\\x15\\xbf\\x13\\f:\\xdc\\x14\\xb5E\\xca:\\xc12M\\xf6\\\"4\\xd8\\xcf\\xe8\\xee\\xb5ٌ1\\xab\\\\\\xa5\\x12\\xe6\\x18:\\\"aA\\\"G\\f\\x9e\\xe6\\x96\\v\\x9e\\x81跐\\xab\\xfa\\xa6\\xabkTI99\\v\\x94`\\xa8g\\xec\\xc04\\x98\\xe6\\xbb\\x15\\xbb\\x8c\\xbe\\x99\\xda\\xecO\\x8a\\x1b\\xeb\\xeb\\x1b\\v\\b\\xc9\\xf2\\x9f\\xd8\\f\\xf5\\x10\\xba\\xfc\\x00\\xda\\u007f9fz*g/\\x1c\\xb9\\x96\\xdb\\x13Y5\\x15\\xd0\\xff`9пq]#*\\xaa\\xad\\x1a\\xae\\x06\\x16\\x857\\x1bԹ\\t\\x9b\\x0e\\xc8h\\x8d\\xf7ET$\\x05\\xe4\\xf1\\xb7\\x84\\u007f\\xd0\\xf5\\xdcX6A2\\xe1-\\xe1\\x1fd\\xb3\\x88\\xa4\\xb8\\x89\\x1b\\x04\\x10\\x92&eS\\xeem\\x93\\x93\\x9f\\x1eo\\xaa`\\n_=Le\\xb7~\\xff\\xbd\\xefE\\x1bz-*\\xaa\\xca\\xf1\\t'+\\xf1\\xf3Z\\xdd]\\x0f\\xd3\\xc7&R\\xc3C)\\xfb\\xa3\\xcdC\\x02>\\xbbu\\xf6\\x87\\xe8!h#[\\x88\\xc0\\xbe\\xcf0\\xd0\\xc8\\xd5\\xc6\\n\\x00\\xc6\\x01\\x88{Xga\\xc0S\\xa6\\xd12\\x8eyJ\\xf0\\xf1Kdu'\\x95\\xf0\\xaeIB\\xe9N\\r\\xec\\xe8\\xfbN\\x10\\x89\\xaei\\xec$*\\xed\\x19c\\xea\\x1a\\x95\\xfe\\xeb\\x03\\xba\\\"\\xbdi\\x9f\\xa4\\xe8W\\xfc\\x8fga\\xfb)<x\\xeb\\x1e]\\xb9H/\\x96\\x85\\xd9_\\xa4\\x17\\x01\\xa06A\\x82\\xab\\xb4\\x84\\xc0bw\\xeb\\\\\\x9c\\xa1\\x1bBA\\xe0\\xf1\\x00\\x8b\\xce\\u05c8'ei\\x06\\x97%\\xb9\\r\\xb4\\xa14\\v\\xb6\\x1b\\xa9\\xb0\\x99f\\xd2\\xcdxM\\x92\\xa7\\xc1h\\xaf]\\xa4\\x17_Q\\x8e\\x92X\\xa1\\xe2\\xe0J\\x91~O\\xa4\\xca\\xe7\\xc9\\xfdp\\xf4\\x86s:\\x1b\\xdbP6&h\\xbc/!\\x16\\x82\\xd06c'\\x0eY\\x1f~C8F\\xf2\\xc3\\x17\\u007fо\\xa3G\\x8e\\xc0\\xff\\x91\\xad\\xa7\\x8e\\x1e=\\xf2u\\xd8\\xe1G\\x82@\\xa1v_Ao\\x81\\xfcH\\x92\\xa3\\x05y\\xe6@\\x8aYs\\x051\\x9e\\x1b\\xfc\\xc2\\xc6\\x05Y\\x0eAj+\\xf0E\\x91\\xf2\\xbb\\xf2O\\xb3\\x1fʼ\\xc9\\xfe\\x92\\xf3\\xc8\\x1b\\xcao\\xe8}\\xe3ǭ\\xad\\x0f\\xb5\\xde\\xd5\\x1ck\\xb6Ko+~\\xb2v\\xa4\\xfe\\x81g\\xd2\\xcfl}\\xa7\\xd5:x\\xff3\\xcf\\xdc\\xcf\\xcb-\\x9d=\\v\\xcfy\\x19}\\f\\x9eb\\t!\\xe8\\xba\\xdb\\x05!5RS\\xc1\\x88\\xb0\\f\\x92#\\x80\\xfbA\\\"^4\\x91-\\xdco\\xf4\\xa0\\xba\\xe1\\x8fK\\x16Y\\xc6KbB\\x15\\xdax\\x1cE\\xe3\\x98_\\xc7L\\f\\x9c \\x8f\\x8b\\xc0\\x12\\xc2\\\"^@\\xdd\\x05\\xcc\\xd1\\xc6\\xf3\\u05ee\\xaf_\\xbb~dyrry\\xf2Ϭ\\xc0\\xb6\\x83\\x93 \\xde\\xeb;r\\x0f\\xe5vT\\f\\x1b\\xc0;\\xa9T\\x92\\xa3\\xf5)\\x00\\xf5X$zI\\xceD\\xfe\\x18ƭ \\xca\\xc8%\\x1dR\\x11\\x16\\xb1Q\\x1c&\\x93f\\x92\\x8c\\xba\\xeb<\\xe77O\\xf2\\x9c\\u007f\\x9d\\xe7k\\r\\x92\\\\0\\xcfQ/\\x17\\xbd\\xdcC\\xf9\\xa5J\\x95\\xa3\\xb5\\xf5\\xad\\xbf\\x84{\\x83\\x96\\xd4<\\x97\\xe3y\\xcf\\x11\\vn\\xd1\\x0f\\xd8v\\xb2q\\x81\\xec\\x85B\\xe9\\xe7e/5\\xaa\\xab\\xed:;_\\xd2.\\xe9\\xd7\\xeb\\xfd\\xfaד\\xedE\\\"\\xf5\\x17\\xf5$5\\xf9ߖ\\xa3!f\\xc3`y\\x1cApè6\\xaa~\\xb7ɺq7\\xfc\\xd9·\\xd0< \\xf0'\\xbf5\\xf5\\xd4S\\xc5\\xea'\\xab(}\\xfd\\xeb\\xf8\\xe1\\x93[_\\xfc\\xe1\\x0f{=\\xb8\\x93B\\xbf\\xfc\\xefЦ!\\x97\\x19\\xb7\\xd2\\xe9\\x16\\x89\\xef\\xf9\\x04\\xe0\\x02\\x14\\xb7Iz`ør\\x0e\\xd0w\\x11\\a\\xacx\\x03)t\\xebEf\\xa0\\r\\x05\\xd53\\x1fɣg@\\xdb\\x00x\\xc5[\\xd7H2tӧ1b\\xca\\xd6\\xf7>\\xf0\\x01\\xd0\\xcb\\f\\xf4\\xea\\x02\\xe8\\xd51\\x10\\x9e\\x04\\u007f\\x00q\\x89\\xaa;P\\xa2hx//\\x80\\x05\\x06E4\\xc1\\x91@\\fໄ\\x024\\xd0\\xfb\\x95\\xf1\\xe5\\xa21\\xadj\\xe3-\\x82\\xacK\\xd4#\\xaaz$\\xaa(\\xa2\\x84\\x03\\xb1l\\xb8\\xf9\\xf6d\\xf8>uC\\x17͵\\xba\\xadޣn\\xaa\\x8f\\xe4|\\x1dZ\\x99\\xad\\xaaC]\\xf7j\\xfd\\xff\\x02D\\x84\\xa0o78\\xbek쀧Ca\\x80\\xe7\\xf7\\x86]\\x1f\\x80\\x81\\xb7\\x888\\xee\\xebv.p=\\x98\\x18\\x84\\x14p\\xba\\x1f\\xf4(\\xed\\xd1I\\x05\\x89\\xb3\\x8c\\x16e\\xb7\\x91\\x1b\\xbf\\xa8\\x95\\x9e¬\\x05P\\x14ˆs\\x18.\\xddC\\xd59\\x87\\xb0\\tz\\xdc\\xcc\\xe7SP6\\x02\\xf5\\xfd \\x94\\xad\\xc4\\x11J\\xdd\\vA\\xf8\\xab\\xdc\\xf0G\\x94w\\t\\xa8m\\x80\\a\\x80Ry7\\xa0M\\xe0$\\xbc\\xaa\\x02\\xb4\\xb2C_(\\x9bmǙւقl\\xeej[sT\\xf4\\x83\\x82>\\x9f\\xefΕ\\xebbAo\\xa4\\xc8\\xe7W\\n\\x8d\\x83(\\x95\\x02\\xfd\\x15\\x8c7W.\\x01\\x15\\xafP\\xe00\\xc5;\\x1b\\xa4U6=Ժ\\xd0\\a\\xb1\\xad/\\x04'\\x06\\xfc\\x05z\\x81\\xeb\\a\\x02\\xfb/\\xbc\\xf0\\x82\\xf7\\x13\\xf8\\xa0볟\\xfb\\xad_~\\x1e\\u007f\\xee?\\xa1_\\xab~o(s\\xc2*^E\\xefHt\\xc0\\x94 \\xd4\\x12q\\v<q\\xf4\\xbb\\x82\\x00oFU\\v\\r\\xdd\\x16\\x1c\\xd3\\xf8\\x1e\\xa0h\\xc4*m\\x84~\\xdb5M\\xd7\\xda\\xfa\\x91kY\\xae\\xf9\\xdfg\\xb0Jɬ=9\\x95\\xca\\xedI\\xcf\\x12\\xaa♕\\x03\\x14\\xaf\\xd2\\x03\\xef7=s\\xfb\\xff\\xed\\x871Q\\xa5\\xa3\\xb2\\xcel\\xed\\xa8\\xa4\\x12|\\xb8z\\xff\\u07bd\\xa0\\x91TA9\\xfb\\x15\\xf4E\\xf42\\xbcC\\x06t\\xd1[\\x84\\xf7\\t\\x9f\\x14\\xbe\\x8eT4\\x86\\xd6A\\x96\\xa3f\\x8f˔\\a\\x98\\x93U\\xfb|\\xbfCYuv\\x86\\xba\\x81\\xcf\\xf5\\ropPB\\x14\\xce\\x02\\xc3\\xe6\\am\\fǍ!#H\\xf4\\x15\\xd4}#\\xd9\\x01\\x86\\xb3\\x8c9Z\\x04\\x8a\\t\\xa4;\\u0b8c0\\xf9#\\x14\\xb6\\x8dA\\xb7\\b\\xed\\bipo\\x95Ui8\\x98\\x01\\xcb\\x16s\\xc6\\n\\xb7'N\\r\\xd0j\\xdd Q\\x82\\xdc\\xd8r\\xc8W%\\x83\\xc6P\\x16\\x13\\rș\\x13\\xd0ϐ\\xab\\xc0A\\x9f_\\xdaO.\\x87\\xc4\\xee\\x80\\xf3\\xdc&g\\xb3\\x80\\x9c\\x1b\\xbc\\xd4\\xc9\\v$95M\\x11\\xee\\x85r\\x0esH\\nG\\xa3\\xa0\\xdeK\\xde\\a\\xf2\\xe6w\\xce\\xf2\\xfc=~\\x9e\\xbf\\x16&\\r\\x10\\xb3Y\\xb8\\xb2\\xdbI^3\\xec\\xf0\\x9b9\\x12\\xf83\\xcc\\xd5%\\xb0T\\x1c\\x10\\xae:9-\\xfb\\x81\\x8d\\f)th\\x90\\xcb\\x01\\xc3\\xd4\\xeb\\x8cY\\xaa.27S\\x92\\xfd4\\xb5$\\x89a\\x00\\x94\\x92a\\x8aH\\x13E՚\\xf0\\bPX\\xab\\x92\\tˆ\\fpDW\\xf5\\x8a\\xe1\\x18\\xdc\\xcf\\x02<\\xede\\t\\xcb\\xf0O)\\x85\\x9b\\x14b\\xa9raƤ:\\b*\\xa2\\x008D\\x8a\\xf4\\x80b\\xa2\\x03ϥj\\x16\\xa7D\\xc9\\x12-\\xd1\\xd4u\\v\\x9a\\xb6\\x85=UWe\\xac\\x10jh\\\"\\xe1\\x8e\\x13\\x91djz\\xbaS\\x9a\\xcf\\xc1]\\x92M\\xa2\\xbc$Ѻ(\\xc99\\x91\\x19\\xaeB%)\\x951\\x98\\x85\\xa1\\x94\\xe9\\x14R\\xb8\\x93G\\xd2d\\x1d\\x1b(\\x9d\\xd3\\xc5\\x00P\\nu3\\x86FDCE\\xd4\\x14%Qd6\\r\\x15\\a#\\x154\\xbaJ%-L{J\\xd9?+\\xf2\\x97$\\xba\\xae\\xa7\\xb0\\x0e/,2&{\\x9ai\\x12\\xb4\\x8b\\xf3;\\x8c\\b\\xaf\\xba\\x84\\xf3\\u1b7fK\\xf1Rj:\\xcbb\\x9c!\\\"\\x10D8k\\x8b\\xd4\\x11y.\\x8a\\xe6K\\xb6,2\\t\\x10\\x15\\xc1\\x16I\\x17\\xda\\xdd|]*g\\xaa\\xa1\\xed\\x16\\x80\\x1a\\x99y\\xdblE\\xe3u\\x9e\\xaf\\xe4\\xd8h^\\xd30Q,\\x94R\\xe0\\x9d\\x9dЖ\\xc64\\tI\\x01\\xa2\\n\\xdco\\xbaK\\x92,3\\xac\\x89\\xc8\\x02\\xba\\xa9S,a\\xc5\\xdc\\xfa\\xa4\\xd6\\x17k\\xa0\\xb9\\x14l\\x10I\\x02\\x191Sԕ\\xa9(QK\\xee8\\xd4\\xf5\\xe5\\xbc\\xeeӼ\\xad\\x9b\\x9e\\xe5\\xb8Q\\x9a\\xe9\\xb3i\\\\\\xaa\\xb4;\\xaa\\x04\\x0fE\\xa6\\x85\\x80\\xc0\\x12-\\x93\\xf5rb\\xa9T\\xee\\x06\\xa8\\x96v\\xed\\x94n\\xa6,U\\xd1E\\xc5\\x16S6\\xa1\\x88iX\\xccH\\xb6\\x96'\\x8d\\xd0\\xf01\\x0e5GG\\x91\\b\\x8fĪ\\x8aeުLTU\\xaekd\\xb0W?K\\xfc=\\x8e\\x90\\x15\\xaa\\x80\\xb7\\a\\xc2ҫ\\x18\\xa2\\xce]\\x83\\xe1 \\xe4h\\x14v\\x96q\\x93'\\xc4\\r\\xe6\\xc1~\\f2\\xdf\\xf4\\xa0\\x03\\xc0\\x8e\\x89\\xc2\\x01$\\a\\x1fJL\\x19z\\x9a\\xba\\v\\x91\\xa2\\xec\\xbd\\f\\xedn\\xde\\u061d\\xa8Uc\\xe7/\\x8a3\\x15z\\xf5M\\xb5߈\\x9d\\xc1\\x9e:S_s\\xe7f\\xfbޮQ\\xdeq\\xeco\\xf6\\x9b+\\xbb\\n\\xe8\\x85\\xc4*\\x96\\x80D\\x99^\\xa0ڗnF\\x19}~]o\\xb8-sr\\xbe\\x82r;߱\\xb9T\\x9ck\\xab\\xa9T\\x19\\x93\\xff\\xadn\\x86\\xfb\\x0f{\\x97\\xb5{\\xc7=\\xed\\xe0\\xab6\\xe6eС9\\xe1\\xf09n\\xdb\\xe4\\xfcvH\\xf2\\x12\\x9f\\\\\\xe2T`\\t\\x03\\x87w\\\"\\xfd\\x1e'\\xa2\\\\\\xb9\\xf7\\xb9\\xdd\\a;à\\xb3'w&\\xda\\x12\\x8c \\xfaT\\xb8\\xd6n\\x14\\x83\\xe0\\xe8\\xfd\\u2e7dߟZ?!i\\x8e\\xe9H\\xe3^\\xc6\\u0558Τ\\x8d+w\\x12EN)\\x19\\xb5$9\\xba\\x91vSy\\xc3UMk\\xf7S\\xc5F{-\\x14\\xef?\\xea\\x87\\xe7\\xf6\\xee\\x9e\\x1a\\x9b\\xf7\\xa1S\\x8bLf\\x81\\xedH\\x8a\\xc6ҥ֘\\x962U\\x952\\u0090D4E\\xb7Lx\\x82\\x91k$\\xef\\xf6%t/\\xfa\\x8a\\x10\\b+\\x89\\xfd\\xb4\\x90IF\\x16\\xb2\\xb9\\xed\\xc4O\\xa03\\x18\\xd6\\x15\\xb4\\x8c8aE\\\\U\\xf1D0\\xab\\xbde\\x9cp\\xd8>Z/xl\\x06\\x8b\\x8ac\\x1c\\x06\\xc1}\\x9b\\xe1\\xa52\\x19\\x90i\\x99\\xfd)S\\xf01\\xa6h{%&BO\\xc2*;\\xaehD\\x92\\xc5\\xdb\\b\\x054\\xf1\\x95r\\xe5\\x9f\\x15\\xd9f\\x84\\xfc\\x92%\\xb3\\x10}\\xce)\\\\\\xca4\\x8dn}\\x06\\xe3\\xd7\\xc8\\xd0cqPg\\x9a\\xae\\x18\\xa2,q\\a\\x1a\\xb7K$\\xc1\\xa7ܮ\\xa5\\x80c\\x9c\\xf3\\xac\\x0f\\x91L\\xbf\\a\\xc5\\x02\\xd8\\x0f5\\xcf\\v\\x0e\\x86\\xbeȋ=\\x88\\x87\\t܍9JA\\xef\\f+V\\xd6\\xdaz>\\xacT\\xc2'l\\xed\\xb0f\\x83\\xed\\x81\\xed˶v\\x88\\x19\\f\\x0e\\x0ei\\x80\\xde+\\xe1\\xd6\\xf3p]%\\xfc\\U00103b70\\xb2\\xf5\\x99-Ͷ\\xb5-n\\xa6\\xde\\xfc\\x9e\\xe4\\x96\\xf7\\xf0\\xfd\\x91\\xac|c\\xe4\\xe7̽*\\xed\\x12p\\xfcf\\x83\\xbb*\\xb9\\xb8\\x9b\\b\\xc0ϓCy\\xbe\\x9dHH\\xd7\\u008a\\xae7t\\xbd\\x1a\\x9a\\xa0\\x82^7\\x12\\xd8C\\x92\\xed\\a\\xb2\\xa6\\x98\\x062MES\\xcb!\\xfbP\\xe2~\\x80w.\\xe3\\x1e\\xbaV\\xd8\\x0f\\a\\xdc4x\\xe1\\f\\xe7\\xa7\\xf0nm2\\xf4,\\x8c\\xfc/\\x1c\\x8e\\xf78\\xc3\\n\\x13\\xf7\\xde\\x0e\\xc4\\x053iC\\xa8\\x82\\x0e\\xd8\\x020\\xe1p\\x80+d\\xac\\x8a(5R\\x81k\\x11\\x96[d\\xa0w=\\xb5\\xe5\\xea\\\"\\xb2s\\xd3\\xd7֪S\\xa6\\xb7\\xa8i\\xa2\\xbfæ\\x12pS&2\\xf1\\x94\\xed\\xa6ܚ\\xa2\\xb0\\xd4b\\x1a]jmt\\x91\\x02\\xcc4\\x95\\x0e\\xd3rFT\\xf5@m\\x98\\x15[յ\\xb9^\\xfbČ\\xea\\xa8Ǝk\\x15\\xe3J\\xd3STQ\\xa4bp\\xaf\\x93\\xf2\\x97<\\x17\\xa0,\\xe3\\xef\\x84\\x15\\xf4I\\xc1\\x10\\x1a\\u008c\\xb0,\\\\\\n\\xcc\\xfc$$rc\\n\\x96u\\xc09z\\x83TG\\x96\\x9a\\x9b<\\x9eF\\x13\\xe3\\xc7\\xe8 \\xa9RP\\x16\\x03w\\x006\\x936\\xe2\\xe1}$\\xa9mn\\xf0\\x8a\\x88W>\\x18\\xf3eԈ\\x1bCÈ~\\x85fR\\x9a.\\xa9\\x8d\\xaeN\\\\\\xe3+G\\x1fڷgi\\x92\\x80Y\\xb2\\x96\\xf6\\xba`\\x99\\xd6D\\xb2\\xba\\xd1S\\xaeY]=,\\xc3fW\\xe7hæu\\xea\\\\\\x1a\\xeb&]\\xd7w\\x96\\x8b\\xa1a,\\x15˹\\x1bԀR\\xc9\\vu0$TR8q6Sy\\x11T5\\x96\\xe7k*1\\xb6\\xfeǾ\\x1d\\xeb\\xfb\\xf6\\x88\\xa4iz\\x9a\\x94+̂\\x19\\xf3\\xfa\\xfd\\x89\\xf6\\xad\\x87\\xbb\\x8cn\\xf0\\rz\\x83\\xda>>\\xe3\\xean\\u007fS#\\x8e\\xbf\\xf5ǅ\\xbc\\xa6\\xf4s\\xb9\\xac,w\\x91(+\\xaa\\xabʞ\\xe7\\x10Y\\x11\\x81\\xeesl6ԯ_\\x10\\x14`\\x80E@@\\x1e\\xc0\\x02\\u07b6\\xb1[m\\xc2\\x16\\x80\\v\\x8d\\xdbd\\a\\xe2~\\xf4\\xefm\\xae-\\f\\xae^\\x18[\\x99\\x9bZѴ\\x95\\xa9\\xf8\\xad\\x95A3\\xb8\\xea\\xf5(\\xdc|\\xa4\\xbc\\xeb\\xf8\\x8e[w\\xa9[^1\\u007f\\xa8\\xdd>\\x94/^euW\\xf6\\x8f}\\xc4z\\xec\\xe4qh\\x02\\xe8g\\u007f\\x88Π/q\\xdf*\\xe8l\\xc00\\x1c\\xdc\\xf7\\xb8+\\xcfD\\x80H\\x96\\x11@\\x18\\xbe_mK\\xcd\\x01w\\xa2\\x0e\\xfam2\\x88\\x01=Y\\bX^oY\\xec\\x84&\\x99\\x06ðL\\x02t\\xc6\\xea\\xccN\\x99f\\xe9\\xbay]\\x9f9Tp\\xebӓV)\\xae\\x97\\x1cf1L]7\\x1b\\x86)\\x1d\\xd7z\\x91\\x0f<C4\\v\\x96\\xe4F\\rP\\x01\\x92hX\\xe9l\\xe4\\xa2\\xe2\\xf8\\x98i2\\x83\\x18\\x8dF\\xfch\\xa3\\x89U\\x99-\\xefI/v\\x99\\xa8L5\\r\\xaa\\xfa\\xbe^\\x9b\\x04\\xad#ʶW\\xf2\\f\\x9a/\\x19z\\xd5%Z\\xad6\\xc8\\x1a\\xe3\\x13-\\xdd@\\x19x\\x92c\\xd92\\xab\\x83e\\xc4x\\xac.ꡦr\\xac\\xec\\x00\\x87y\\x0e8\\x8c.\\u0602\\xc7k5\\xae\\xf8ܝ\\xcc\\xfaЗv\\xe0\\x8a_\\xefW\\xfcf'(\\xa0\\n\\xd7\\xfa)\\xf4t#\\xe7^\\xf9|\\xae\\x81\\x9e\\u07ba\\x11=\\xbd3\\xd7غ\\xb1\\x91\\xbb7(4\\x8f\\x1fo\\x16\\xa6\\x8e\\x1e\\xbd\\xf3\\xe8\\xd1\\xdfo\\xe5\\x83 ߺ\\x88\\xab\\xf4~\\xd1X)\\x00\\xb8A\\\"щQ\\xac\\x9a\\x84\\x85\\xc9\\x18`8\\xc2n\\x17Д\\x83\\xa4\\xb3\\x96\\xb6*\\x04y\\xb9\\xb4-\\x86.\\xb5}\\xab\\xc0,_\\x84\\xbe\\xab@\\au\\xf3S;W/\\xe4+\\xbf\\xbc\\x82\\xc8\\x01E\\t\\xec\\xf2x\\xf1\\xe6|\\x06ˎ\\x91\\xa5\\xae\\xa5G\\xf9J\\xc6\\xec\\x1e\\x81\\x16N\\xc6i\\x86e\\x94\\xa1\\x06\\n\\xc2\\x04\\x94tM\\xb8L\\xb8\\x92\\x8f\\xd3$ts\\x11\\x85\\x1c\\xfc\\x83\\xfe\\x80þ;\\xa4\\x02\\x05ĸ\\xa6\\xe3\\x16\\x81\\xcb`WJ\\xf8\\x01\\x1c7\\xf9U\\x896\\xe6\\xf0\\x98\\f\\xd5\\xe1\\x0e\\x14\\x0fs\\xe2\\x87\\xd1\\xd5\\xf9F>\\xefN\\xa7s\\xcd|\\xbe\\x99\\x9b\\xf6r\\xb03\\xedB\\xd2\\xebݼ\\xe1\\x1b\\xa8{\\xdey\\xd7\\b\\xf4\\v\\xafȻ\\x8f\\\\t\\xfc\\xffs\\x03d\\xb9\\xf5\\xcd\\v\\x1e\\xc9u*=\\x87W$a\\x1a\\x98\\xe4Na\\xafpH\\x10r\\x88;v%\\xcfB\\xcdD\\xa9D\\xa0G\\x82n\\xd0\\xe5>\\x9c\\xe4\\xb8\\x1aq\\xc7rXM,:\\xa8#\\xce\\xe4\\x00\\x1b\\xb8\\\\\\xff2\\x00\\xf5\\xbdm\\x1fIj\\xe4\\x05X\\xbei\\xb0\\x86n\\xb2\\x83}i\\x19)\\xd5`\\x0e$[\\xd2\\xf4\\xca\\xf4\\xfe\\xb4\\x82\\xe5(\\xa0r\\xe1\\xea\\xf8\\xf0\\x0e\\x8c,\\xdfO\\xbd{'BQ\\xadX\\xfcivaf\\xa7\\xbd\\x94\\x18\\x85w<\\xfe\\xf5\\xc7\\x1f\\xff:\\n\\xb7\\xfe>{zy\\xaa\\xea\\xf4v\\xff5F\\x0e\\a\\xa2\\x8a\\x82O\\xbc\\xfbo\\x93\\x83\\xc9\\xde\\\\h\\xd9\\xd5\\xe2\\xc2\\xe7\\x11\\xd6\\x15ԙ\\x8e\\x17\\xae\\xcf\\xffN\\xab\\xa6kC\\u007f\\xc0'x\\x1e\\x8foc\\x9b\\x1fC{\\xbf/AiB\\x9d%\\x8e\\xec\\xd8O\\xfc\\xf5\\xa1\\x13;q\\x130X?\\bcdo\\\\y\\xdf\\x1d\\x87\\xe3]\\xfb\\x176>\\xfb\\xf6z\\xb1\\xb5\\xab\\x1b\\xd9eys\\xae\\u007fH\\x9dP\\xe6j\\x8d\\x05\\x86\\x8eT\\xb6\\xce<Q\\xf0RlB.\\xb9`\\xa7|\\xe8O\\x9f\\x86\\xfe\\x94\\a\\xe9\\t9\\v\\x8aAIpQ\\xe6\\x80/\\xe6;\\xf4\\xdf\\xc5PQҢVN\\x97se\\xdb\\x02\\xccY>\\xad,N{Vʵ\\xeaO\\xff@\\x14\\u007f\\xe0Ώ\\xc7S\\xddP\\x14\\xe7?e]{yM\\x14{\\xa3q\\xd3o\\xa0\\x1fA{\\xe5\\x93q\\xcasc\\rm4\\x1aj\\x80\\aD}\\xc0\\xb1?z\\xe4\\xf6\\xd3O>y\\xfa\\xba]\\xeb\\xe5c\\xfb\\xe3\\xe3\\xabQ\\\\r\\xc8\\x13\\xff \\xbex\\xdb;\\xa1*v\\xee,i\\x95\\xfd\\x9d\\x9d'C\\xe0\\xb1W\\x04\\xd0\\xfa\\xdbr \\x83\\x0eX\\x04)8*\\b\\x03.\\xd5\\\\\\xa0\\xb7=.a\\x955\\x9aq8t\\xea\\xc0k5\\x1b\\x16\\x1a\\xc68\\x04|T2\\x18\\xc2>ЍС\\xb9\\x8d\\xaar\\xa2\\xc9\\xe1,ǈt\\xd8G\\xfe\\x93o\\x9aP\\xcdAҪ\\x86\\xa9\\xd6:\\xce\\x1c$\\x98\\x9a\\xc5vH\\xd8\\xed\\xd4\\x14\\xcbv\\xa9\\x85\\x0f\\fr\\xb35\\x0f\\x81\\\"<*\\x8a\\x92\\xe4\\xecs\\x00ߋƺ\\xaf\\xf1\\xfb\\xa9\\xfe\\x1eKU-\\xcb{,i\\xd9o\\xab\\x19|@\\xd7L˳L\\x13\\xd1+pFM\\x97d&\\xb7b+Ss\\xc1n\\x97\\xd2\\xf7B.\\xa2\\xe3p\\xeac\\xa0c\\xc9\\xcd*Ӹ\\r\\x96\\xce\\xf5}\\x038v\\x1dPյ\\x89\\u007f|T\\xfc\\x004P\\xd3\\x1b\\xa2^\\x8ev\\x87/3<\\x8c\\xcfWd\\x95N\\xc0F\\x15\\x94\\xa0\\x8e\\xffE\\x15\\r\\x865\\x84r\\xc0\\xd96S\\xf0R\\x92\\xb9ǔ\\xae\\xb45Ͳ4\\xcd>1\\xfc\\xb1\\x9f?_\\x83\\xddhj́\\xbb\\b`\\x8b\\x030[^\\x93\\xb07hhV\\xcag6>\\xb2\\xb0x\\x18\\xdb̿Y\\x94R)\\xc8N2Miv\\x94\\x8b\\xbd\\x9d\\xed\\x97_\\xcd,\\xff15\\x87\\x8e\\x9a\\x00\\xb1\\xad\\xc0\\xb6\\xa0x\\xa7pN\\xcbVdY\\x19_Z\\x1aW\\x99\\\\ɞ\\xb3\\xb3\\x1c\\xcfՅ\\xf9\\xf3}\\xa0\\xa0\\xf4\\xc28\\x01\\xf7C]\\xb8\\x03E\\xc3\\xf7\\x02u\\x17\\xce\\xf4#\\u007f\\x98ȚC\\x81@C\\x02\\xf3\\x8f\\xa6\\x16V'\\x97'UK]\\x98,\\x95&_\\\\\\x80\\xbdj8Y\\xf2\\\"o\\x84\\xfb**\\xf3U5,N\\x8c\\x17_#\\xab\\xaa<\\xd5.MN\\x94ng\\xafk\\xcf0UeӪ6]\\x9a\\xf0\\xa2\\xa4\\xef\\x9eE?Eg@Rg\\xa1\\xa5F\\x0f\\fc\\x9f\\v\\xe6\\x0e\\xee\\xe4\\x1f\\x15\\x8e[/\\xd4\\x1d\\t&\\xd7Ɖ\\xc6F?];\\xb5V\\xed\\xc1\\xcb?n\\x85\\xd6\\xdat{\\xed\\n[\\x93T&\\xae\\x9fX\\xef}\\xe9\\x92\\xf6\\xda\\xce\\xf6%\\xb6\\xbd\\x9b\\xd7۞\\x85\\x12\\xaf\\xf0g\\xda;\\xd7ڗ\\xec\\xd2,02\\xd2ǧVV\\xa7j\\xd6P\\x87\\xfc0\\xe1Gu\\xa1\\x9bD1\\f\\xa5\\x81\\xfbW8\\x00\\x1d\\xcaD\\x98\\x80\\xd0pۓ\\u0087#y\\xe1\\xba>\\xd4\\x18\\xfa*\\xe6\\xadL\\xa9\\xa6`L(\\xe1\\xedC) }\\xa0\\xef\\\"\\x1f\\xccF\\xa8\\xf8\\xd2\\xf3L\\xe1_\\xf4\\x80\\xc4x\\x1b\\\"\\\"c\\f8\\x93\\xf2\\xa6\\xc4p\\t\\x1f\\xe6\\x02\\xde#\\x92\\xad\\x0f<\\xff\\x92\\xc2\\xe0;\\xb4g\\x80\\x95\\x05\\xc0\\xca\\x12 %G\\xf0\\xc1\\xa6U\\xa0\\x9cc\\x80\\x98\\xfa\\xdd\\xc4K\\x1e\\xf9u\\xbe\\xd3\\xedG1\\xec\\xb3\\xfe\\xf0\\xa0\\xe9÷\\x9b\\f\\x98F\\x9b\\xddG6Kh\\xcf#\\x8flnn\\x96\\xbe\\t?\\xa5ү\\xf6\\xe0\\x83\\xbc}\\xff\\xf6\\xdc;N\\x9dz\\xc7O\\xc6\\xf2c\\xa7N\\x8d=\\a\\xbfpx_7\\xf3\\x9cpA\\u007f\\xe2\\x18-\\x12:`I\\x85T\\xc2\\x1d\\xfb\\\\W%֏\\xef_\\xdc{$\\xde7\\xf80;\\x8b\\xfc\\xb8_D\\xc31C\\xf8\\x83#h\\xc2o\\xa6\\f\\x8d1\\xcd\\xd8̓}4ʾq\\x81O\\xf2_A6\\xaa^ʙꚟ\\x99(R\\x91\\x1aA\\xb1\\xa7\\xdb%T)\\x85\\xe2\\x86xk\\x90\\xfc\\xfc\\xfay\\xdd\\xe0w\\xa7\\xcbA\\xddW\\xbe\\xa5v\\xa5\\x85\\xb56r\\xcd\\x10?\\r\\xfbPw\\xec\\xec\\x97\\xf1<\\xe8o\\n\\x8ccU\\xd8\\x10\\xbe$\\xbc(|U\\xf8#\\xd0\\xe6\\xac\\xd9I^\\x81\\a`L\\x03\\xac&\\r\\x1e\\x92\\xb2L\\x00\\xf7\\xc5~\\x17\\xf6\\xe4\\x15\\xc4K\\xccA\\fG\\xa0\\xac\\x113\\xbfO\\x00\\xcb\\x00_i\\x93\\x88\\x02\\xe7/*\\x05\\x14\\xb0\\x06m.\\xa1\\xb87\\xe8s\\xef\\x15'\\xc7\\xdc\\xe1\\x95h\\x95\\x154t\\xc4m\\xd3k\\vm\\xeb\\r\\xcej\\xe2\\xe6\\xa0\\xc9Q\\x05\\tc\\x13\\x17РHXb\\x96C\\x06\\xb6\\xa5\\x1b\\xccz&\\x89~\\x02R\\xa2\\x8b\\xd2\\x13\\x84)\\x94\\xa1n̴A\\x9a\\xec\\r唚\\x92=>n&\\xb3ݑl\\xe8L\\x15U\\xa2\\x13\\x8c\\xf4\\xc9\\xd3D\\x065I\\x90\\xceR\\xff\\x17ZT\\xb3\\xc0)\\xa3I5\\xe5+\\xd5\\\"\\xe1>-E\\xa4<\\x9e\\b\\x10\\xa6\\xc6VdTaT\\x9dt\\xb8\\xed\\xa7\\x98\\xbeK\\x13\\x99\\xf2n\\x8ceICн\\x14i\\x06kX\\xedOSs̰\\r\\xec\\xdaR\\x98J\\xa5\\f\\xa2\\x8a&J\\xd9A\\xb3Pp_P\\x88\\xbe\\xcb,yK,H\\xe9H\\xb5-\\x1b\\xfd!@\\x82?Pl\\xddA\\xae2%\\xebH\\x13\\t\\xd8\\x04b\\xca!!\\x86\\x8c\\x82\\\\\\x8e\\xa9\\x1a3DG\\nDb\\xa7Of\\x92 &\\xc9¢\\xe4}\\x1eʵ\\xf5v\\xbbd\\xa5\\x14\\xe0\\xfe\\xd6\\xc1˖\\xf8\\x00!fЧ(waQ\\xc5\\x00\\x9a&ќB*\\f\\xc9V.\\x9d/\\x8a\\x98\\x95\\xa9\\xa4\\xe2\\\"\\xa0l\\xe8Q\\xa6\\xeaa]\\x94{mSU\\x91\\xc4\\x00{\\xdbU\\t({Na\\xa6\\x8a%\\x8a\\f/ʭ\\xa7\\xc9gŮy5\\x12\\xb1\\xc4\\x1d\\x88x\\xe8k.\\x83\\xbc?\\x03\\xf2\\x9e\\x16Z\\xc2\\x02\\x1f]E|\\x80aؚ|\\xac\\x0f\\xfe\\xb8\\x12p\\x93\\x90/H\\x9d\\x06v\\x1e\\x06\\x03\\xee\\xe3\\x01Fơ.\\xa0\\xaaf\\xa3ʏ\\x12\\x1e\\xcb\\a\\xd6y\\xf0\\x00h\\x8ce\\f\\x1d\\x06\\xad*\\xe9F\\xe6\\xae\\x03\\a\\xee\\xcd6\\xf2J\\xcbpI\\xd9\\xd2&\\f\\tZĭY|\\x10R\\\"\\xfe\\xc1\\x86\\xec\\x8a\\x04h\\xb3\\xa2b\\x82)\\xbcB\\xe6\\x8aаl\\xa6\\xab;4\\xb5:\\xe1\\xa7#\\x93\\x99n\\xb75\\xae\\xa83h\\xbf\\x14L\\xeejn\\xderǡ\\xfa\\xc6x(\\x05\\x9a\\x195T\\xe6m}A\\x12\\x116\\x19H\\tI\\xd1\\rbS\\\"C_\\x13\\x91d\\x13\\xd1\\xc3\\xf5q_\\x1eOg\\xb2՚j\\xaaa\\x1a͞\\xe7k\\xff\\x18\\xbc\\xff,p؛@\\xc7$\\x962\\x1c\\x84\\x8c\\xa3\\xbf\\x12\\x02x\\xc2)i\\x9b\\xfb\\xb4\\x80\\x97r\\xec\\x98 ŀ5\\xf9\\xf0\\x10\\x1f\\x91L\\xe2\\x9e\\xf8{7\\x81\\x06\\xc4\\x1caL\\xa3\\x983]\\xee7n\\xf2\\xf0\\xb0\\xc4\\xe06\\xe2\\x10h?\\xb7\\xc91\\x8a\\xd2aE\\x1c\\x8cO:y_\\xbdq\\xb2[\\xb1=C\\xf6\\xb2o\\xbb\\xc2t\\a\\x19R\\r\\xd3Q1\\xb0\\xa7&\\xad\\xa0\\xa8\\xa9\\xc7\\xff<(F\\x193\\xe3\\x90̼7i\\xe7\\x03\\xedƩ\\x13r\\xeb\\xfa\\x99\\xa6ފ\\x89\\rg\\xa2\\xacgNN\\x9a\\xaaVR\\x8fi\\xe8\\xc6LT\\xf0\\xf5\\xf1I\\x13n\\xbeq\\xb2S\\xb5\\xddAV\\xac\\\\sԄG\\xf0\\x9c\\xe0\\xc1sSS<\\x1f\\xf5\\xf8kH%\\xccDF`\\xc8f0\\xba\\xe1\\x84\\xd2B<k\\x80*z\\x94\\xf1+b<\\t\\x17k\\x9av\\x95\\xce1\\xb7 hx\\x15\\xdd'h\\xa0_2\\xa0\\x99\\xbb\\xdc\\xc2\\xc6A¹\\x9cn\\xc7\\xf7@\\vw\\xfa\\xbd(\\xec\\xf0Q\\x1b\\xbf\\x0e\\x8a9\\xf4X4\\xb4\\xa7q\\xf7U,º\\\\Z~\\xb4sO\\xff\\xb7\\x9e}\\xdd\\x1f^>\\xddW\\x17探\\x17\\xdf\\xf7\\xbe9\\xf4\\xe5JQ\\v]\\xb2\\x9c?\\xb9\\xb4{\\xef\\xc2\\xc2\\xfa\\x8b\\xf7H\\xddL\\xf9\\xbb\\xa9=\\xdd\\x1e\\xba\\xe1\\xaa\\xee\\x81\\xc3\\x13\\xad\\xbf\\x9f\\xee^\\xff\\x8f\\xd1w%\\xb9\\\\\\x95-\\xed\\x8aK\\x97\\x16\\xf7\\x1f\\xcc\\xc7E.\\xd3\\xec\\x9c\\x0e\\xa7\\x80\\x8a\\xb8\\x16oB)\\xf7p6\\xc4CF;\\xcd\\xe1O\\xd8\\t\\x81\\b\\xfc\\x1c\\n\\x02\\x9b\\xc2z\\xcdARxΘG\\x9e@\\xd0iqĕ]\\xbf\\xdb{\\xb14\\xd5.\\xb2\\xecD\\xab\\xf0p\\x9e\\xac \\xe7W\\xceW\\xe6\\xcf\\x1f80\\x11e\\x97\\x8f\\x9f*4\\u007f\\xa5\\xb6\\xd2RS9\\xbbcWIJ\\xa9\\xde\\xf8\\xe1L/\\x0e\\xa7\\xa6\\x8a\\xa6\\xfd\\xab\\xe7\\xa9\\xf2\\aݷ\\x8d\\xa9Fz\\xe6\\xa5\\xfcDyb\\xbcl\\xe7\\\\mZV#\\x96\\xc8\\xe6\\xd0/U\\x01;\\xb4\\xc0-Q}\\x18\\x02\\xd5\\x1c\\xba\\x86@\\xd4\\x06#\\xbc\\xc0\\x1a\\xac\\x99H\\xa6\\x14\\x00>\\x9bF\\x03n\\xb0\\x93\\x91\\x85\\xc1h\\xe0\\x87n\\x0ff\\xfex\\xed\\x9e\\xf5\\xa3\\x0f\\a\\xd7H\\x8dla\\x1c\\x1di\\xcd\\xc5\\xfb\\xe3Ŵ\\xf7\\x88\\xfc\\x9e\\xebO?\\xb9\\xf5[V\\xc10̲\\xe7z\\x8a\\xec\\xb4\\xfc\\x94\\xf27\\xddz\\xbd[\\xdfl\\x02\\x1f˽\\xb4~\\xcf\\xdaM\\x977\\xd3\\xe5\\x89\\xe2\\x12\\x9ak6\\a\\x83&\\xba\\x02\\x19\\xf1\\xb5\\x0f?\\xf9\\xb7T/\\x16\\xa8\\x01@\\xcc\\xf3Z\\x8e,\\xa7^_\\xeb\\xd5j=\\x9f\\xb3\\xb6ƅq\\xb5\\x03a\\x190\\xba0*g\\x11%\\xc5\\f\\x03\\xf7Un\\r\\x80\\x88W\\xf8\\xc5/\\xc8\\xe5f{\\x1c\\x8b\\r_\\x87\\xc7&\\u007f\\x1e\\xc0s1\\x95rm\\xbb\\xe1:r\\xc1\\xfc\\xd96\\xe3>FRy;\\xd7D\\x97\\xd7\\xfbݽݹ u\\x1fT\\xb97S\\xad\\xceD\\x8bn&S\\xcf\\xeaށ\\\\\\x9e\\xea\\xa0d\\x1b\\rKf\\x0e\\x00\\x93\\xab\\xb7\\xdb\\xf2uu+m\\xb6\\ns\\xa8W\\xafu\\xbb5t\\b\\x1b3\\x1f\\xf3\\xf2\\u007f^\\xe5\\xf7{\\xd9Z6\\x9b\\xd2=}{\\xbcn\\xdb\\u007f\\x98\\x11\\xda\\xc2\\xfay>ġo\\x99\\r\\xd13\\a\\xe4\\xf10\\x85\\x83\\x83QZ\\xf0\\xbfH\\x1c9\\x1bOQE\\xbd\\xf6\\tCfX}\\xe00-˚\\xb6\\xff\\xc6Ό\\xad\\xcbX]y\\xeb\\x8c\\\\\\x03\\x9d\\xb9\\xf9浞c\\xa8D]\\xfad\\x9f\\x8e\\x00\\xe9\\x0f\\x14\\xaa\\xd1\\xf9\\x121\\xa9\\x82\\xb3\\x1dqM\\x93\\r6eH\\xb6\\xaca\\xdbɋ\\xfb\\fՒgl)\\xa5\\x9a8e\\x97\\x86!R\\xf0\\x1e/\\xa1U\\xc0\\x0e^\\x12\\xf3\\x00(\\xcaB3,\\xea\\xc7M\\xe8\\xc4+\\xb8\\x8bV\\xafg'>fL*\\xa7N\\xb1+\\x9e6'\\x94\\xeb\\xd1\\r\\x9fW\\xcf(G\\x94S_P\\xf8\\x8f\\xc0\\xa3X\\x84>>\\x83.\\x03\\xfd\\x10Bϛ\\x02\\xed\\xb0!\\x1c\\x00Vr\\x9fpF\\xf8\\x80\\xf0Q\\xe1ӀH\\x80Y2\\x0f\\xbaR3\\xee\\xc1\\xcbv\\xfcsG\\xe7\\xef\\xd3\\x0e\\x0f\\xfc\\x80\\xdd\\x15\\x94\\xec\\rS\\a\\xaf^1\\xdcM.\\bF\\x89\\xa0v\\xb9\\xbf\\xb1\\xdba<\\x05 L2dƯ\\x80\\xd4\\x0e}5\\x1f\\xa93\\xd4X\\xdc\\xcf\\x11\\x0f\\xf5}\\xfd\\xbcg7\\xcf{b\\xf0j\\xfak)\\x15E\\xfe\\xe5\\x83R\\xfcS\\xa4\\xdc\\xcf%IO\\x89<\\n\\x15\\xe8K\\x16#\\xc6\\x10\\xe0a\\x9a\\xa1\\x8c\\x11\\xfe\\xcb\\xe0C\\xe9\\u007f\\x03\\x94++<\\x00\\x01\\x8b8\\x03\\xe6\\x97`\\xc2G\\x9a\\x00\\x03\\x13\\xf1\\x1e\\x8d\\xdf\\xcesBo\\xa9\\xb4ە\\xff\\xac\\xc8\\xe9l|\\xb9dm\\xfd-\\xe3\\xa3\\x02\\x84\\xb4)\\x12E\\xc4\\x1f\\x9d5!\\x05R_ڹK\\x14w\\xed\\x14Ǥ[wIҮ[\\xa5\\xb4\\xf4І$m<$]K\\xa2\\x88\\xc07C\\xe6\\xe71\\x99\\x9b'\\x1a\\xd9X#dmC\\\"\\x97l\\x88\\xe2\\xc6%wc\\xe9s\\xab\\xb2\\\\.\\u007f\\x16\\xf1\\xd1*,}|\\x81\\x11\\x1e\\x80J\\xd6>\\xc6c\\xae\\xd3\\xf4\\xdd딮\\xbf{n\\xba\\\\i#\\xe5_\\x19Q\\xf6\\x0eؒ\\xfc\\xae\\x9d\\xb2\\xbc\\xf3]\\x00\\xb5\\x9e\\\\gl\\xfdI&\\xb2'\\xf8\\xce\\x13#\\xd9\\xf9s\\xf4\\x10zZ\\x98ଆF&n\\xb6\\xc5f\\xb7ȭ\\xe6(\\xac\\xb1\\x88\\x86q\\xbf\\xc9\\x00t2\\x98r&\\x97\\xc9\\\\>\\x1eh\\xb9\\x89zM\\xbd\\xd4X\\x9c\\x98*\\xd5'\\xe2\\xe9\\u058cJU\\x800\\xb2\\x9c7\\x9d}/\\xf7h\\xefdڠ\\xe9\\xc5\\xcb\\xder\\xd9\\x1d\\x8f\\xf7'\\x97\\xdd\\x03\\xb3\\x9d\\x9dcK\\v\\x01ª\\x91\\v\\xda\\xd9\\xf4\\xc2\\xfc\\xc8\\x0f\\xf6;\\x00\\xac\\xbe\\x9ep\\x86\\x8c\\x90\\x17\\xcaB\\rP\\xcd\\x04\\xe77@\\xa9\\x80-N'\\r\\xbe\\x82\\x06%\\xe4\\x87q\\x93\\x85\\x80p\\xe3\\xb0\\xdfd+\\x88\\x1f4Y\\xdcg\\xe8_T\\xf5\\xefu\\xfd\\uf4edz\\xcd\\xfe\\xef\\xff\\xd6\\xfek\\xbe\\x1a?z\\xcd\\xfe\\xffx\\xe0\\xc0\\x81\\x1b\\x93\\x03T\\xa6\\xfa\\xd3:}Z\\x96\\x9f\\xde\\xdeY<\\xbdҽ\\xe7\\x9e\\xeeJ\\xff\\xd2\\xfa˰\\x9b\\x05\\xaa\\xf1\\xf2\\xf0\\x90\\x8f{\\x00\\xe1ډ\\x1e\\x82\\xd2\\xec\\x15\\xde\\n\\xf5SD\\f\\x90.\\x97M>>\\x9c\\x84\\xb8\\x82n\\x98I\\x00ƈoqL\\xd5\\xe7!k\\xbc\\xceƇ\\x01\\x11\\t\\xa0\\b\\x83n\\xd0\\xeft9\\x00\\x1bݟ8ғ\\xb1\\xf0\\xc4\\xe9\\xceC\\xa8\\a\\x89\\xeb\\\"\\xe4c\\xd4m\\x9c\\xa0\\x90\\xa13\\x03\\x9d\\xad\\x96\\x14\\xd1\\xcb\\u05fc\\xe8O.uj\\x8b\\xaa\\x16\\x16(\\xa2\\xcdƴ\\x9ciU\\xf7oĆ(\\xa1\\\\\\xc1\\x9fP\\x91_\\x9d\\xee\\f\\u0096\\x0f\\x10\\x15˨Q\\x8ddb\\x14\\\\3\\xb7\\xf1\\x1b\\xbfjO,\\x8a\\xcdtƕ\\xf7ZŢI\\xadt\\xc5\\xc22\\xa1\\xbadL\\x06A\\x8eT\\xea\\xc5\\xec\\x9a\\xe565U\\xce\\xd7\\x1c$cY\\x11\\xab\\xb3\\xe9\\xf4wݍ\\x9a[\\x0e\\r\\x80\\xb7\\xedj\\xb4\\x1e\\x8a\\xd2l>\\xef\\x8ac\\xa1+e\\x06u\\xa5%\\u007f\\xb4v\\x95'i\\xc5A=\\xa3(F\\xd0\\x12\\xa1,^\\x98nZ\\xb2\\xbbVZ\\x02\\xb6xOXN\\xb1}j\\x98\\xd3+9\\x17\\x19X\\xc1\\x12S\\\\\\x87\\xb1F\\xa6\\x91\\xf2Co\\x8f\\xa2\\xab.\\x0f\\x8aw\\x90\\x82$U\\x9av\\xe5\\xc9D6U\\xd0\\xcf\\xff\\r\\xf4\\xf3\\t x\\xd5$b\\xa33k\\x12>⿌W\\x80\\xaf\\xb4\\xf14\\xe2\\xd1\\xe8q\\x91\\x94\\x10\\x1f\\xf3\\x8fy؇\\xbf,\\xad ر\\x10\\a\\xb3\\xa3k\\x93\\xeb\\x06}\\xa00\\x01E\\xc2\\xe9\\xf7\\x12\\xbc\\x14#\\xd1\\xcdhN^\\xf5\\x1d[W0\\x90\\x11D$\\n]=T\\xd4\\x02\\x00p\\xe0\\xbcH\\xa3tjR\\xd1\\x10\\x06\\x03\\xc9(\\xc2\\x05#\\xa0\\x92\\xacR\\x83:\\xb6cj\\x84@\\xd5\\x06\\x9a\\x862Ŗ\\x87\\xd0;\\xe7~\\xf9\\x96\\xa5[#1\\xd3\\x1d\\xac\\xe5T\\r\\xd4\\t\\xc3D̈́i\\xcf\\x12%\\xcd\\x13\\xa52Q5\\x05\\xa8EI\\x91\\xbb\\x1dت\\x92\\\"3\\x00\\xbf\\xa8,z\\xb2lOt\\x1dUA\\\"\\xa3\\x04gw\\xceϚ&F\\xa9\\xdc\\xec\\xc6\\xc4\\x1d\\xef\\x16F\\xf3H\\x86\\xf6J\\x87>2\\x06\\xf6x]\\xb8L8,\\\\/<\\x0e\\x95Ո\\x80\\xbd\\x02\\xf6m\\xf2\\xff \\xe4\\x03\\x14\\x00[\\x19w\\x00\\x81N\\f\\xf8L\\x020\\xcba\\x1c@\\xa1\\xf8\\xa0\\x85_\\x85sL\\x1a$U\\xd6\\xef\\x00ŋ/\\xf6\\x9f\\xba`\\xae!\\x99w|\\ue644\\xeb\\xab\\xc9/`\\xe5\\x06\\xe7\\x84q\\xc8OrO \\xcf\\x17\\xb6\\x1eϲIQ\\xd9N-\\\\W\\xb4U55\\xb6\\xe3o\\x18\\xb3s9[\\xa6\\xa1\\xaa\\xbeKr\\xad\\x85\\xeb\\v\\xb6\\xac\\xa7\\xc6\\x16U\\xd5.^\\xb7\\x90\\xb2\\xa5\\x1dc\\xa8\\xa6\\xcbv\\xe1\\xfa\\x05˅\\x83\\xd7&v\\xf0\\x91Ǿ\\xfe\\xd8c_\\xbfa\\xfbΐ\\xca\\xcf\\x1af\\xd642V/\\xa5\\xac\\x12\\xb2\\xaa\\xa4zv\\xda\\xd0-\\xd30\\xd2\\xf6yi\\xe81\\xe2\\xe2\\xf9\\x19\\xc5֬\\xb6\\xfe\\x13\\xc7R:\\xf3\\xf3\\xb3\\n0\\x92|\\xa9XxCzx\\xd20\\xedi4\\xa5\\xd9\\xca\\xcc<vIZo\\x9f\\x05\\x063ڟ\\xfe\\xf3m\\xc7-\\x14\\xe01te\\xe7\\xeeY\\xc5tX\\xa1X\\xca3\\xdb\\xfe\\xd4:!\\xebRj\\xd2\\xcf\\x04zZ\\x0f2\\xfedJ\\xfa\\xf9\\xa4\\xf3\\xb0\\xac\\nx\\xbb*\\x8cCK\\x9d\\x12\\x1e\\xe4\\x88{\\xc8:\\x86\\xf1\\xca\\x1cU\\x0f\\xea\\x17CY/\\x01\\xe2U\\x16\\xb5Q\\xc2v\\x87\\xdfQ\\x88=\\xc0\\x8d\\xb8\\x88\\x92&\\t\\x9b\\xd5\\x1d(\\xe2잏\\xb2R\\xe6w㦙x\\xd1g\\xb9\\x8b\\xa5\\xda\\xef\\xf5#\\xde\\x1f:\\xddN\\x01s|r\\x1332f\\xa5\\x12\\xf1\\x98\\x0f[7\\xd0\\xe5\\xe7\\x03\\xe0\\xbf\\f\\xe1\\x13\\xccZ\\xb5R\\x10j\\xe6jP\\xb2\\xcb3\\n\\xc8z\\xa5\\xa4\\x84G\\r\\xa9\\a\\xf6\\x0e\\f\\xa3\\xb9\\xe7&f\\xda\\f5j8\\x8d-G\\xa4\\xaa\\x1bzws\\xe6KU`\\xf3\\xf4\\x81\\x00>\\x8f\\x9d\\a\\x93\\x8fA\\xa6\\x1b\\x18e\\xd39\\xcdWu\\xd1\\xd4˚g\\x85:\\x81Ή\\x01\\xea\\xea\\xe8*,\\xdd\\xeaq\\xe6L.\\x03\\x16\\xe8\\xa9\\x01\\xc1\\x1a\\x15ю\\x8cm\\xa8\\xbe\\x8b\\x03\\x8c\\xd6\\x02w8n \\x9c\\xfdG,\\xa0\\xf7\\x02/\\xe8\\tK\\xc2&\\xd4(he\\xd7\\x1f\\xce~Jľ(%\\x8cn\\x14+\\x10'\\\\\\xb8\\x84\\xa0֪\\x8d*\\x9f\\x11\\a\\x04\\xb83\\x18zFA\\xe6\\x97\\xc5\\x1d\\xfc\\\\\\x9c\\xb8\\xebB\\xbf\\x99\\x84\\x96s.D\\xc3ď\\x87{\\r\\x1e\\x99\\xbcL\\xe2n\\xb0\\x88\\xfcȟ\\xe1\\x8cb\\x10\\u007f\\xbfny\\xf9jN5d+\\x9f\\xad[\\x8e\\xb4п9p\\xac *\\x8cMYvТ\\xb2!i\\xbd~7\\xe3\\xba\\xe9\\xb4\\xef\\xfe\\x9a\\x04\\x00\\x80Oz\\t\\xa5#X\\xf2Vt[\\xa9\\u05fdoW*\\xb5\\x92\\xa8\\x03\\xd5w\\r\\x86\\x1b\\x18\\xcf\\xef@TˤP5\\\"n\\x10\\x94L\\tc?\\x89S\\x91\\r\\u05c8\\x1a\\x1d\\xdfg\\x9e\\xeaz\\xced\\xa1\\xa1\\x12\\xe9\\x9f\\x14\\x89 d(\\xa6f\\xfcR-\\x8aj7\\x96\\x93`\\x19L\\xde\\x00\\xec\\xb9\\xf2)\\x89\\x90\\xf2O\\x14[\\x8f\\xa2\\x94\\xfbWN)\\xba\\r\\xc1\\xd5u\\xa4ء\\xb3<v\\x1d\\x92d\\x13\\xec\\xc7\\xf9\\xf1\\xbc\\x04\\xf0\\xb0ǣƝJ\\x1c\\x02e⮣f\\x14\\xfa]\\xf4\\xd2֪\\xff\\x9f\\x0f\\x01\\xf1\\xd50VX\\xe8\\xd6\\x0f\\x96\\xd03[\\xab\\xff6\\xf8\\xf0\\xd4t\\x9eJ\\x813S\\xfd\\xd0\\xe9d|\\xc3?\\xfbUt\\x1ap\\xa8\\xcd#\\xd8@\\xd1r\\x1b\\xd9\\x18Fk\\xd0&u\\x87\\xbf\\x8dA\\x18\\f'\\xbf\\x98 \\x00\\xdcὌ\\xf7\\x80\\x00+q\\xac\\x97KAe1\\u007f\\xfb;w]\\xff\\xe6C\\x163\\x97o;8__\\xae\\xb2\\x94\\xa8ڠ\\x95\\x9b\\xfbg,l^\\xf3\\xb1\\xf9\\\\\\xb7\\x12VJ\\xee=h\\xe3\\xfa]\\anr\\xc4<\\xb17\\xd7\\xe7\\x0f\\xd6\\xe6wG\\xb2\\xa9\\xb4\\xae\\xd8=5\\xc4\\xc5\\xec\\xec\\xd7З\\xa1<\\x1dA\\xa8Qn,\\xa0\\x93\\x14\\tw\\xb2\\xf3\\xc7&\\x00Ǥ \\x1a\\xdcY\\x92\\x943\\xe9K\\xe8\\x8bT\\xd75\\x91d3\\xb2\\x95\\x92\\x89ug\\x14\\xddaӲ\\x97\\xc9\\\"\\xccdPؼ'\\xa8\\xacB\\x0em\\x1e\\xda$\\x15\\xd8\\xcd#Ͳ\\xa9\\x94\\x89}B\\x15]\\x92\\x012\\xaa)@(\\x19$j\\xaa\\xaeP\\xe4Δ3\\x87\\xae~\\xe3\\xfd\\xd7\\x1cʔg\\x86\\xb2l\\x9c\\xfd! \\xf3g\\x92\\xb1\\xcf\\x16\\xe8\\xf2\\xdd<\\xde\\x05%C[\\x1c`\\xb0Q\\xb0K\\x10\\x82\\xec\\xd2\\xc4\\x17\\a\\xc28t\\xf0á\\x04\\xaa\\xb6\\xb9=\\x12\\x13\\xb0D5\\x8cb]8\\x03۞\\x8c\\x03X\\xedm\\xbb\\xae\\x85\\x9e\\xe9\\xcen\\xb8\\a\\xee>\\xb4\\xfbu\\xbar\\xb7\\x9eJ\\xe9\\x9aa<\\xa5\\x99\\xa6\\xa6\\xa5R\\xe8\\xb77\\xacA+uɵ\\xd7^\\xb2vß2\\x8dBO\\x96\\x98N$\\xf6Z80U\\xa6\\xeb(}|\\xd5\\xf3\\x90R]\\x8c\\xf7\\xef\\xba\\xf6\\xc0\\\"\\xea\\x1b\\x81\\x01\\xff3ß\\xa7w\\xf4f\\n\\xea\\xe1\\xfb\\x0e\\x1f\\xa9\\xf0\\xb8)0_:\\xe3F\\f\\x0e\\xe0fKO\\xb8\\x16:\\xfb\\x1f\\xd0Yh\\v\\x1e\\xdfx\\x89p\\xf5\\xab\\\\k0\\xfa\\r\\x93\\xf1\\xd8d\\xbeX\\xbcD\\xfb\\xd5F\\x94\\xa7\\xfe\\xf0\\xb0\\xc1\\x85\\x06\\xaa\\xa2\\x9f(H\\xae\\xedXⴭp\\x86\\tʰ\\xcbi3\\xbfb\\xf0\\xeb\\xddZ\\xad[\\xfb\\x02\\xdf\\xd6\\xffT\\xd3Y\\xb4\\xbb8\\xa8\\xb6\\x1a\\x88(\\x185Z\\xd5AiO\\xc4t@\\xed\\b\\x80\\xc8i\\xdd72\\xb2co\\xfdn\\xda)\\xad\\x8dy\\xae\\xac\\xaa\\xb8\\xec\\x8eo\\xa0F\\x85\\x93\\xc5J\\xb2\\x9d\\x97-m\\xbcxs\\xaf\\xa2\\xa9\\xe3\\xd0?M'\\xe5\\xcaDvS)\\vX瘦Uz\\xa7\\v\\x13@\\xca\\b\\xfa=\\xbf`\\x84\\xe6\\xefY_\\xb3=\\xc5;l\\x83\\xf5\\x96U9\\x87\\xb1\\xc5\\xdf?\\r\\x1c\\xedG\\xc9\\x1c\\x1a\\x06\\xfd#\\rm\\xed'\\xb3\\x84\\xfa͊\\xc3\\\"֏\\x1c\\xa9_q\\xba~\\xdcE\\x8f66\\x9a\\x0f\\xa2\\xd7\\xfe\\xf6\\xfe\\xeb\\xeeE\\x9f\\xda\\xfa\\xa3+7\\xf6\\xa3cw\\xc2\\xe7\\xf4Y\\xe17O\\x9c@\\x97~\\xe0\\x0f\\xb6\\xfe\\xeb\\xea\\xaa A\\x9d~\\r\\xbd\\x15\\xf2\\xe4\\x16\\xa6\\v\\xb5z\\x05gh\\x01\\x05\\xc0̝\\r\\x8dd\\xe2\\x01\\x98\\xe7Ŀ;\\b@}\\xf0AT\\xa8N\\x80щ\\xa3\\xd8L\\xc8R3N\\xf4'\\xdcՀ˒I\\n\\xf5A\\fF#\\x19x\\x06\\xe8\\xdd\\xefM\\xdch\\x12\\xfb5\\x98(\\x00\\x02Ul0iV\\xa5\\x97j\\x05\\xd1\\x04f4q\\x87\\xecY\\xb72\\x05\\xcb% \\xad:;\\x8e\\x01E\\x91\\xdb-WYf \\xfbfa\\xeb\\x0f\\xfa\\x8bp\\x9bQUn!ߙee1\\x8btY\\xd3\\xcbE\\xa6\\xfc\\x13\\\\\\xc16u\\xdd~\\xadb\\xc8\\xef03R\\x95g.\\xd9-MR\\xffR\\xe2\\xa2$\\xa1\\xa2\\x945OhT\\x1f\\xfbZF2\\xd4\\xef\\xa4\\x14\\xeb\\x8b\\x12\\xb5\\xb8\\xbe9{\\xf6쟡\\xc7\\xd0\\xc7\\xe1\\xed/\\xe3^\\\"\\x1e\\xafɇ\\xc5c\\x97\\xbf\\xf6\\x80\\x8f\\xe6\\xf3\\x18\\x15Vm\\x988汛\\xe3\\xc4\\x14}:\\xba\\b:=\\x8f\\x85\\xa7|\\xe7\\xb5|\\xf6*\\x8f.\\xbeL\\x92\\xd1\\\"\\xd2\\xe4\\xfc\\x9eL\\xcdJ\\xa9\\xe3^\\xaat\\x87\\\\\\xd2\\x1c\\xf6\\x93\\x9a\\x1e\\xbc\\x111L\\x81\\x06\\x12\\x1e\\xb4l\\xaeJ\\xc0\\xedB\\xa4\\xa2\\xb2V\\xb6\\x8b\\xa9\\x8c\\xed\\xf0\\xc0\\xcb\\x0f\\x8a~\\xa6\\x90\\r)\\x9f_x\\x8f\\xac\\xf0)#\\xa2s\\xf9\\xe41\\xe07\\xa2\\xf6hn\\xed.\\x1e\\xedM\\xc5+EK\\x96\\x8a\\xefV\\xb0\\xc84\\xcb\\xcf9)\\x9b\\xeb_\\n\\xba\\xf8\\x85\\x043\\xf8B.\\x197\\t\\x00P5\\xf8\\xd0]\\x8fu@\\xc6y\\x88\\xea\\xa0\\v\\xd6\\b\\xf6\\xf8\\xb87\\xe3\\xc3>\\xc9L\\x8f\\x8f\\xf4K\\xba\\x9b)\\x01d\\x9d\\x91\\xa58\\u007fKi\\x89\\x88\\xd2\\x13w\\xbcŹ[}\\xa0\\x94q.\\xa5\\x1e\\x10\\xd1c:\\xdayt\\u007fg\\xf6\\x86\\x8eQLW\\x97\\xe9\\xbe\\xd7߹_T\\xae\\xfa\\xed\\xff\\xf8\\td\\xdey\\xf3m\\xd7=\\xf6ȥ{D\\xbamk_\\xc1\\xabIlB:\\x19\\xc3\\xd93\\x8c\\xc7\\v\\xa3x\\x86\\x872]\\x84YP\\x1c1\\x1er\\vh\\xa4\\x84\\xbap\\x00\\\\\\xbcч\\x8eYB\\xf1pJ\\x1a\\xb0 \\xa0\\x97\\xd5i\\x1e\\x81\\b\\x04\\xa5\\xc9c\\x99\\xbb\\x83\\xb8\\x1b\\xa2\\xefɨbC\\xc1\\xef\\x004RNp\\xc3+^~\\xeb\\xaaՉ\\xa6\\bR\\xb7\\x8aB\\xb7\\xf6\\xaeL+\\xf3\\x85j\\x88B\\xcb\\x14%\\xdbsK\\x0e\\xaa\\xf9p\\u0095\\xa8\\x93/5\\x9f(\\x97-ii\\x9c\\xa1\\x9e\\xf4'\\r6!\\xc9\\xf8|\\x04\\xb2\\xf5\\x8f\\x1f\\xbe-ح\\x03B\\xd1\\x1e\\xfd\\xf0\\x87;YG\\x93\\r\\xc4P\\x85\\x19i3\\x93R\\x15軑\\x8c\\n\\xd9\\x0f\\x1b\\xefq\\xc5\\x10\\f\\x17\\x1fc\\x83w\\xff(\\xf4U%\\xf1D\\xf2\\xb8\\x8cM\\xd0Y7\\nO\\b\\x1f\\x16\\x9e\\x13^\\x12\\xbe)|_\\xf8k\\xe1\\xc7¿\\x81*1\\xd0\\x14\\x9aG\\x97\\x80\\x8d\\xf1\\xaa\\xbdJǋ\\xaa|\\xd8:\\x8a\\x93\\xbd\\xb0\\xe3\\xcf\\xd0Yo\\xb6:\\xfak\\xcc.\\xa1\\xd9^\\xb77\\u06dd\\x81\\xbf`v\\x86\\xc1oov\\x86{-\\xfba\\u05fd\\xa8^\\xc5ĭ\\xc4\\xcdhT\\r\\a\\xbd&\\xf5\\xf8\\xc4n>\\xb6\\xcb\\xf8\\xc4\\xf5%\\xc2\\am@\\x10`\\x17/\\x93\\xd1n\\x1c\\xf9C\\xe5\\x0f\\xb7\\xc2Q\\x0f:0\\x9f\\x9b\\xc8\\xe1\\x8f\\xef\\x81i\\t\\x06\\xdd&݁\\xba\\xe7\\xa6)zA\\xdc\\x1dq\\xfb\\xb8Iy\\xd8\\xd6hV|\\x18\\xc0wx'\\x9c\\xe0\\xf9&\\xbb\\x90髗$\\xa9\\xc3DH\\xe0\\x93\\xec\\xc3^\\xbf1ۘ\\x89\\xaa3\\x11\\x9d\\x85\\x97\\xf7\\xbdY\\xaf\\x1b\\x80B\\x99\\x9d\\x19\\xcc\\ffg@<\\x9a\\x91\\x0fo;,\\x1d\\xbcK\\x913\\x94\\xce\\x00\\xfde\\xb8\\xf5\\x8a\\xa6i\\xf7;Ƚ\\x0fl\\xf0}\\xe8\\xbcO\\x122\\x8dХ\\x17H\\x89ph~<\\x8a\\xd1 \\x1a\\x9f\\u007fo\\xbf\\xdf?f)`{\\x99(\\xcb|6.%\\f\\xee\\xe1Q\\x8c\\xf2\\x94,1>\\xbe+\\x8br+4A\\xb1\\x84\\xa1-\\x89J:ºa\\x00nu\\x9d\\x9c#\\xab\\x19E\\xa4ւ*ɲ\\x8aM\\x83\\xc1\\xf9\\x8c,\\xb2\\xbeL\\xd3i*W\\x93t2\\x0eG\\x19\\xd8\\xe3aO肏\\x98D)\\xc3\\x13E^(>\\xbbc|\\xfe\\xd0,G\\xd5H\\x91\\xc30\\xfb\\xea\\x9b$cZ\\xc7\\xcf\\x13ћ\\xef9\\x14N=1\\x99\\xfe\\xe9أcc\\x8f\\xbe\\xdeb@\\n\\xebD\\x01=J\\xb0\\xaa\\xc3\\xf6\\xd5\\xdd:0IG\\xa3\\x92\\xa6\\x88D$\\x00,UY\\xc2\\x12\\xf7n1\\x06zJӘ\\xa3\\x13'\\xd4dKV@!\\x15DY\\xac\\xfb2!\\xae#I\\x8c\\x01\\xf3Qd*\\x95E\\x99\\xef)R]R\\xe04\\x13I\\xe8\\xcaJ\\x0e\\x12\\xde\\xcagg?p\\xc1{\\xbd\\x85G1\\xc0\\xe7\\xe8\\x02/\\xe4Tx\\b\\xf4\\x83~N?P!H\\xfc\\xf4\\xdc\\xcf}X\\xb8]\\xb8Ox\\xa3\\xf06\\xceH\\xebCw}|q\\xe8\\x15\\x17\\x92\\xb0\\xcbIe\\x9b\\x8c\\xf39\\xee\\xc9\\xf4T\\xfe\\x9d@!W\\x1d\\xdbSx\\x9a\\r3\\x993\\x12\\xf79[\\x1a\\x84,\\x11݄\\x02\\xf5\\xb7\\xc52\\xe4Ω\\xe1\\x10n҃\\\"_\\xea\\xf39\\x11\\x9dA\\x1d\\xd8h\\xb2\\xd4D\\a˖$Yr\\xe2]\\x1eJ\\xce\\x17l\\x1cxY\\x97\\xc8Ԑ셩B>_\\xb8ۉ\\xe4Z*X\\xacg\\xb3\\xf5\\xec\\xd5v\\xde\\xd5R\\xc0\\x82*e\\xeb:\\x9d\\xaaƤj\\xea\\x8e,\\x9b5_\\xa3\\xf2k\\x82P\\xf7\\x8c\\xf0\\x84\\x8d\\xbe\\xd8\\xfd\\xe77\\xa1'\\xa9\\xb25\\xae(\\xcc\\x12E\\xebߍ\\xcc\\a\\xcf\\xe7T\\x8fo\\x02\\xdb\\\"\\x1e\\x95\\xc12l\\x9a\\x81\\x992\\x8f\\x1c\\x89\\x17\\xb2\\xfc!P\\xba\\xb4\\xa5{*\\xa6|\\xeeF\\xca2\\xa7U\\xd5U\\x02U\\x95$ʈ\\xac\\x19\\xaac3Q\\x97\\x8d\\x8c\\xad\\xbb\\xea\\xe6\\xe6\\xe6\\x17\\x9e,\\xdf\\x1a*?eY\\x99\\x0e\\x00i\\x9f\\x85\\xfa\\xdf\\t\\xf5\\xef\\nY\\xa1-\\xc4P\\xff;\\x85\\xfd\\x89\\xc7\\xf6\\xb4\\xf0f\\xe1-h\\x16\\xedEס;\\xd0\\xfd\\xe8\\x8d\\xe8i\\xf4Q\\xb0\\x92\\x02\\xf2\\x18\\x98\\xf4h\\t\\xb7\\xf1\\x04G\\x1f\\xdd\\x0e\\x1b\\x0e\\xf6\\x80\\x92\\xf2̤1\\xa2&\\xe3\\x03?1\\x8b\\x9b\\xc9p\\xbc\\x1f\\xf6Y<\\xbch\\x94\\x90\\f\\xd9Kl\\x98հ\\xde\\xd9yY5\\xa3>\\x8b\\x9a\\x90O\\xc4\\\"P\\xee<\\xaf.\\xeb6\\xa5d֙\\xbf=L\\xc0\\x15\\u007f\\x10v\\xfb\\xf0]\\xe6\\x83\\xd8\\xfdN\\xd7㇋\\x88\\x9f\\xf0;\\xfc\\\\\\x11\\xa4\\x01\\xda\\x13l\\n\\xffVg\\x87*\\xaf-\\x8e\\x93\\tL\\xf9\\xe0^\\xc4]\\x1a\\x9c\\xe0\\x0ea!\\x94\\xa7ʯ\\x19\\xc7\\xc0]\\xf8\\x95\\xb8\\xda\\x18\\xc7p\\xf3\\x042IBf\\xf8`9ϵ7\\x00\\xee\\x97\\aqYB\\xfc\\xc1\\xa02AJWP5Y0\\xc5\\a\\xa1\\x899\\x01o\\xf0\\x01/`}\\xfc\\xc5\\x1at\\xb8\\xcf'\\xdd\\x04\\x80\\xa4\\xb8hoW\\x10\\xaf\\x8f\\xe6\\xa0;\\xd3邀r\\xbfH\\xd7\\a\\x9cA|o\\x11\\r+\\x80G9\\x8cj\\x04\\x88i\\b\\xb5\\x01\\th\\x97\\xae٘P1e7s\\x05M\\xf3\\x81\\xc4@\\a\\xa6\\x06\\xaex\\xfe\\xda:hq75V\\xabݖYQU_k6\\x80\\xa5\\xc6h\\xef\\xefj\\xaa\\r}\\xdeAÛ\\xbc\\x0f\\xd9i+\\xcd\\xe78\\xa5\\x8a\\xe9|.\\xf0rO\\x85:\\xfa.M\\x03\\x1e\\x15\\x87Ҟâ+\\x92>\\x12\\v\\\\5\\xbd\\x13T֚\\xe6\\xf2DPA\\xb8\\xc7$<֒\\xe8\\x04\\xa1e\\x92s\\xf5\\x16@7\\xc2$\\x8dْ~ZbXCm \\x99-lKCu+\\xd2HQ\\x02Y\\x87S\\x97cQb\\xd4P=Y\\xb5\\x16\\x10(\\b$R\\x8c\\xf1\\xe1M\\xaa\\x02\\xf2\\x9fA\\xa1֔\\xf1\\a(\\\"5\\xc5\\xf2D\\xea\\x94QY6l3]\\xb9R1m#])\\xf1\\x9flY\\xe5o677\\x0f\\xc8\\n\\xf19\\xb5\\x81mcEd|~\\xac\\xcd\\xd2\\xe9|\\xb6\\xe0\\xa4K|\\xe2\\x8f[٧\\x87w9\\x0eJ\\x9b\\xd0\\xcf\\f\\xb8H\\\"8\\xb3\\xab(3\\xebx\\xc0Y\\a\\x02=\\xbb+\\b\\x06\\x9e\\xa7[\\x862\\x97#\\x8a\\xec\\xbcS7Ms\\xd7meS\\x12MS\\x97(\\xdcP\\x80\\x1b\\x0e\\x0e\\xe0cY\\xbb\\xd6֦\\xa7[\\xf9\\xff\\x1d\\x11|\\x9cw\\xd8?\\xa6\\x8aB5\\xac\\xf0EL\\xb4\\x8c\\x06\\xea\\x91*\\f\\x89$\\xd0\\x199\\xe9*\\xaa/\\x1b\\xa0 \\x13\\x95\\xa8\\xa7H\\x9a\\xf8*\\x13ņ~'\\xbf\\xf79\\xae6q\\xb2\\f\\tF\\x94r\\x85\\x8c\\xe0y\\x04\\x9fb\\x1a\\x10FYfL\\xb6\\xa1j\\x14`\\\"\\x06\\xc1K\\f.\\xa4YŢ\\x12V5\\xcfl\\xf1\\xd8|U\\xf3-\\x06FD\\xd5\\x02\\xab\\x05/\\x81\\xcc]W#\\a8\\xbenYP&&z\\xf1\\xda\\xda\\xec\\xec\\xae^ϲ\\xaa\\x91\\x9eo\\xed\\x12\\x04\\xed\\x9c\\x1e\\xe6q/ya\\x12\\xb4\\xc0U\\xc2\\xdd£¯\\t\\x9f\\x16\\xbe\\x98D\\x92r\\xa9\\x03X\\xdf\\xe4\\x8b}\\x80l\\xf7x\\x80\\x90\\x97\\xec\\xfc\\\\0\\f\\x9f\\xaf\\a<\\x00\\xf0\\xe4\\n\\xea\\r\\x16p\\xb2\\x8a@\\x027F\\x03\\\\\\x94\\x8b5?\\x19ƽ\\xfe\\xf0\\xead\\xb2\\xaf?Ã\\xa0\\x93\\x93\\xf10yx\\xdd2Z\\xc0\\xb3\\x17g\\xe2mg\\x92\\\\\\xea\\xb3\\xe1m\\xcd\\xce\\xc8u3xQWmC\\xb1o\\xe3\\x11J\\x9e\\f5SN\\xa1@\\x16\\xc9\\xf7/0\\xfd\\xabՖ\\x84l$\\xba\\x12\\xb4\\x91$J(H\\x1fI\\x89\\x88٩lʴ5D\\x1c\\x11\\xab\\xf5U\\xe2\\x12\\x9cհ\\x98\\x12U\\r\\xf9p\\xf4\\xb1\\xe4>\\xe2\\x13$rpN\\x87\\xb7Q\\xc7\\xcd8\\x96\\xad&wM\\xc2e6\\xec\\xa1Km^\\x94\\xaf*\\x86\\xa5\\x18\\x15I5sXK\\xe5\\xf0C\\xe7Y\\xee\\x0f祛E\\x9a\\xc5$m\\xc8j\\xce5S:\\x01|\\xbf*^\\u007f\\x12\\x00\\x01i6D\\xb1P\\xc2\\x05B\\xee\\xe4ב\\xc2y\\xd7A\\xb1ẊHn\\x01d:\\v\\x0f\\xb0T\\x1d\\x90\\xffv{\\xb2d\\x04|U8(\\x1c\\a\\xe4y\\xbd\\xf0:hS\\xa1\\x0e\\xc64\\xea-#\\xd6\\x19\\x85.\\xf0\\x88\\xa6\\x8b\\fl\\xd8\\x1bz\\xb1\\xc2\\xfeh-\\b~)\\\\\\xe9'kB\\x80\\xa1e\\xc3V\\xe8\\xf3\\x89\\x9ap\\x11\\xc7b\\xdd\\xfe\\x80\\ag\\xc5p.\\x1c\\xadL\\u0093\\xe3~\\xc0\\x9b9q\\xd5\\xf8I\\x80!\\xdc\\x05Y\\xa1\\u007f\\x90՚\\xa4\\xbc\\x8e\\xaaTW\\xa1\\xbf\\xffƫ\\xb6\\xf5\\xd2\\\\NO9\\xb6k\\x06z.g:~\\xca\\vs\\xbbr\\x91o;2I\\xdf\\x04\\xe6\\xaeTSw\\xd4j\\xb5;\\xfd|\\xc1\\xb3t\\\\\\xae\\x19\\x9fɥ\\rϔ\\xed\\xac\\x13\\u008dY\\xfc\\x97\\x1a\\xd0C\\x11+\\x96b\\xb9\\xacϾv\\xbeA\\xfdW`ߔ)U\\xaa\\xb8\\xba\\x93\\x82\\x0e\\xaaWe\\u007f_\\xb1$\\xdfm\\xf9R\\x9e\\x10\\xa3K*,\\xa5=xԸ\\xfe\\xc1\\a\\xdf[`\\x85\\xc7*\\xe5bUS>!\\xb7\\x94\\xae,\\x15j\\xaa\\x936\\xfd\\x82\\xa9\\x14d\\u007f4v*\\xccb\\x01]\\x0e\\xbdF\\x88Mq;ʡ(\\r'\\x16\\x82\\xeeoK\\xa3\\x85L^]\\\\#,*\\xbcJ\\x1b\\xcd6\\x1b\\xba\\\\Pg\\xb0\\x82\\xfe\\v\\xa2)/J-\\xafm\\xac\\x86\\xf5lhڌO\\xc7\\xf3\\xc7\\xf2;\\x88*\\xa7Ԭ\\xb4\\xb14u5[$\\x13FJ5]\\x9c\\x972@\\xc8\\rI|\\xd3%\\xbblb\\x80\\xa97-O/\\x8d9\\xe5VCQ\\x0e!I\\x95\\xd9%\\xeb\\x97\\xecgZ\\xe8ԃ\\xb4)\\x87%\\xafD5Y\\xe2\\x93\\xf9쥩\\xe6\\xa5,b\\xa6j\\xda|\\x12\\x1c`U\\xd90]\\xf5\\xd0`Fi\\x99%եt\\xba\\x9b\\x1b\\x0f\\x1cY\\xb9 \\x16\\xfe\\xf4/\\x98\\xb7\\xcb\\xdfQ\\x9em$2\\x13\\x0f{i\\xd8)ʉд\\x95\\xd1\\vv\\xf9\\x1b6\\xcfE\\x81\\x14iX\\x14/\\x88\\x91\\x17\\xf7\\x11Pʺh\\x13\\xd7\\xcf\\xe6pM\\\\(\\xd4'\\x88J\\xa1\\xbc\\xa2\\x88q\\xa3m#\\x05.Pe\\xd3Li\\xad\\t7ʦJ\\x94j^\\xdeMg]\\xc65+\\xa8ILT˿x)\\x94\\xdf\\xefR]\\x81lx\\x80\\\"\\x90\\xbf@\\x9c\\xce\\xe4\\xebZ\\xb2\\xba\\x14\\xe1S\\xa4\\xdd6\\xc9\\xd3PrD\\x95\\x90\\x99\\xc9|\\xc3S%\\xb1엲\\xe5\\xa2(\\xea̕\\xb3\\x92\\x96r46\\x9c\\u05cdϠ\\x17\\x84\\x82\\xb0(\\xecNj\\x82\\x8f%o\\xcf߉\\x86\\x81\\xf2\\xdb~7\\xd6kV\\x12\\xffZe\\xb4\\nOXI\\xa2\\b+IeԻ\\xdbA\\xf8\\xbd\\x01\\xbeE5M\\xb5/=yz\\xdf\\x03\\x85\\xf5\\xf3\\xf6\\vt\\xeb{\\xfc\\x10\\xa5\\xb3W\\xcf\\x1d\\xbe\\x8f\\xa2q~\\xb4\\xf5\\xa3\\xe4h\\xeb;\\xdf\\xe1G|\\x83ʦg\\x86\\x99\\xd3O\\x1e\\xd98\\xb7sm:\\r\\xfb\\xd3\\xf3\\xf7\\x1d\\xde\\u07b9}8s\\x17\\x10w\\xfb\\xecK\\xe8\\xfd\\xe8%\\xc0\\xdd\\xd3\\u009c\\xb0\\v\\xf0\\xf6\\xa3\\xc9\\xe8\\xe4v\\xfc\\xd7\\xf6D\\xb9\\xc4\\xfd\\xdd厃e1\\xe1\\x86\\x16\\n\\x93Q\\\\\\xe6\\x85@\\xc1\\x1bI\\xd0\\xe0\\xb9H\\xbfF\\xb8\\x9c\\xac\\xee4\\x14r\\xee\\x00\\n\\x87Ø\\x9c7\\x02\\x89m4\\xabQ2b\\x11\\x17\\xc5s\\xeb\\x17%\\x11-̀\\xcf\\x1bD'*\\xc1\\xadW\\\\rMW.\\xa5d}\\x9aj\\x8e^\\x8f\\xc1\\xa6\\xa7\\xec0kx\\xe1\\xc1JuZ\\xb3\\xbf֦\\x85jh\\xcbXT\\xd8\\x0eK\\xa23\\xbf\\x99\\xf5\\xa9j\\x1f\\xab\\x00\\xa3\\xba[\\xc4\\x16\\x96]Wv3\\x1ana\\xac\\x8a\\xa1[\\x9c\\xf5\\xa9\\xcdT&\\x11\\xa5\\xadX\\xb6\\xe6\\xacO\\xed\\x1c\\x002Q\\n\\u007f'\\xcf4\\xae\\xba\\xe7\\xe4\\xfc\\xbc\\x19ȩHz\\xa4\\xa0\\xb9\\xa6\\xfc\\t\\t\\xe1n}:\\x9b\\xf7K\\xee\\xd5\\xf4\\xa1\\x94-\\x16\\xee\\x17\\xc9M\\xeb\\x12\\xfe?\\x99*:\\x87d\\xd1:\\xf9b\\xfe\\xe0\\x82l\\x02\\xfd\\x93Z\\xc8\\a\\xcbL\\x8d\\xa6'W\\x14\\x86\\x17\\xcd\\xfc\\xce@\\xf1\\x15\\x15̉\\xbaR\\xab\\x8cM?\\xe7I:\\xa3\\x17\\xac{\\x81\\x93\\xf8)\\xbe&\\xc0\\xc5\\xe36\\x1a\\x8aH7\\x0e_\\x99\\xb8\\x02i\\xe7\\v\\xf0\\xcek\\xce\\\\s\\xe2\\xae4\\x1a{\\xe6o\\xcf\\xf7J<\\x8bƷ\\xbew\\xe2\\x04\\xf77\\x18g\\xbf\\x8d\\xbb\\xe8\\xb3¥\\x80\\xe07\\x85k\\x84\\x9b\\x85[\\x85;A\\xe3\\xdf'\\xbcIx;\\xb4\\xed{\\x84\\xa7\\x84\\x0f\\tO\\v\\x1f\\x13>)</|I\\xf8\\xb2\\xf0U\\xe1\\x1b\\xc3ّ\\x16\\xda\\xde$\\xe3\\xca\\x11\\xe5ߡ\\x104\\xb77`i\\x1b\\xb3\\xb0\\x1d\\xce\\x17\\xe9\\x84\\xdd\\x01\\xff&\\xb3D<\\x16&s)\\x11\\x8f\\xc8e\\x01h|\\xe8\\xe3\\xcc\\xe3\\xe93!\\xa4\\x00s\\xe7c\\xebR\\x9f\\x85\\xb1\\x85\\xba\\u0378ɸ\\u007f\\xa7\\x19\\xc31\\x98\\x8f&\\xf7\\xf8\\x84\\xcd(\\x8c\\xe1\\xc1̏\\x9b`\\xf8\\x93\\x01z?NF\\xa3\\x18\\xf7E\\x80\\xf8u\\xe12x\\xea\\n\\x8a\\xc2\\xc1\\n\\x8e\\xe2\\x1e\\x1f\\xb2\\xef\\xf1\\xe21\\x90\\x1c\\xdc\\xd0\\xf5\\x18\\xe9=$\\xf2\\xb9n\\xb7K\\xa6t\\x1b`K\\x05\\xf5t\\x14\\xeb\\xfa\\x00)sH\\xe2gn\\x1b\\x9e\\x81=4Ge\\xbc\\xf5\\x89\\xc9\\xc9)4\\xd9%b\\x0f͉\\xddIܞDw_\\xbf\\x1a}E\\x0f\\xf5\\x83\\x87\\x0f\\x1es\\x1e\\xa0\\x1b\\xd5\\xfb\\x0e_\\x8f\\x17\\x90.~b^\\xbd\\xa5\\xfb\\xd4e\\xa2~?h<\\x84\\xc6._Z\\xaa\\xd5nw6#t\\xe2\\x06D\\x1e\\xbe\\xf5d\\xe3\\xe4u\\xa2\\xfe@\\xea\\x9e\\xe3\\x189Q\\x10 G\\xbc\\x02\\xb5#\\x1f\\x91ocC'\\xd7\\x10\\xac\\x93\\xe3\\x18óEI\\x92\\x14PFǈ\\x8e!]70\\x98zU\\xbc\\x8e\\xf0\\x93\\x94r\\\".br\\xadB\\x89\\xb8\\xf5\\xff쓻3\\x18\\xad\\x9c\\xec\\xe1\\xe3|\\xa2\\xf2\\xb5\\xf8\\xe9=\\x00Y\\xc4\\xca\\xd2eit\\xf3\\xfa\\xb3/\\xeb\\xe1\\xe6UGN:\\xf9ݯ<p\\xd5M\\xa2\\x88nDdi\\xc7\\x1b\\a\\x03\\t\\xed\\xf6\\x06\\xe8\\xd0ባ+\\xf7\\xeckt\\x16SW|\\xfb\\x9a\\xe3\\b\\x91k\\xae\\x91\\xd8ax^a\\a\\xa0\\xe5\\x94\\xff\\x1a\\xeeV\\xbc\\xfc7\\x82d1\\x1a,\\xb8\\xa0\\x17>\\x03z\\xc1\\x00\\r'$!r\\xa3y\\xa3\\x83\\xae\\xebw\\x9bC\\xb6\\x96\\x84\\xa9\\ah\\xf7\\xcd\\xfd\\xc6_5\\xfa\\xfd\\xc6\\xe4+]Œ\\x9f0\\\\\\x17]u\\xcb\\xd6\\xd1\\xfa\\xccL\\xfd\\xaf\\x9b\\xf1\\xd67P\\xff\\xcd`\\x82=㽆;\\x8c\\x95\\xfa3\\x90\\xff\\x8f$8\\xb3\\xc0\\u05fa\\xd9V2&\\xaa\\x03\\a\\xe3N\\xca8p\\xf9pE\\xb2`^|.\\x8dҷ\\x9fLgN\\xbe\\x1b\\x9d~ݳ\\x95\\xb4_\\xf9ͻr\\xb5\\x94\\x1d\\xf7ZS\\xebo\\xa4\\xf4\\xe8CQ)[\\xfd\\xd5\\xd3\\xfac\\xd9\\xecɷK\\xb5'\\xae\\xab|\\xean\\xb7x׳\\x15w\\xeb\\xeff\\x96M/\\xc3\\x1e\\\\\\x9b\\xba=z\\xf8\\nQ\\xbb\\xe5#\\xd5\\\\\\xd2\\x17\\xa1GB\\xa3\\x9e\\x11L\\xa1\\x0e\\xbcW@a\\xd4H\\\\bn\\x12\\xbe\\xec&+>%\\t\\xf0\\xfe\\xee(\\xa49\\xd4\\xd0vj\\xe24K\\u009c\\xd1\\xdb-mnzjan\\xbd49\\xb3c|\\xecǵj\\xdc_\\x1e\\x1b[\\xee\\x03bE\\xe3˻W\\xc7\\xc7Ww/\\xa3\\xea\\xf4\\x80\\xa7\\x0e\\xa6\\xab\\x85\\xcalznzz.\\x9aG\\x87\\xfe\\x15\\x15\\xf2y\\x84݉\\xb1\\xad\\xcfڙ\\xb1\\xb1\\x8c\\x8dNE\\x85B\\xb4\\xf5\\x1d\\x94\\xf6\\x1b\\r\\u007f\\xebG\\xba\\xae\\x14\\nv\\x12\\x9fN\\x01\\u05fd\\t\\xf4\\a\\xc7\\xe8K\\xd0\\xcfO\\x9d\\xd3ؕ깱J4\\\\\\xbe\\x8awI\\xe9\\xd5\\x19\\xb5\\xc1y\\x13j\\xcf?~\\xb55\\u007f\\xd1\\x058?\\xd6\\xdf\\xdb\\xd9z\\xa8\\xb3\\xb7Y&A3,\\xa5\\xcd\\x13\\v\\xbbn\\xd8\\xfa\\xa4BKLQX\\x89*\\xc7`\\x97\\x93\\x1e\\xd8\\x1c\\a\\xa9\\xddN\\xbeR\\xa1\\x05\\x9e\\f\\x9b\\xef\\xaa\\xeb\\x13\\xdd={\\xba\\xb5%K\\xd3\\xc3F\\xe8\\xcf\\xed\\xb9a\\x97\\xf7\\xa5\\xd7\\xf2+_˯y\\xf8\\xdc\\xe6\\xe3\\x90\\x03l\\xf9\\xee_PU\\x85\\x8d\\xa2p99\\xfb\\xbb 7_9o\\r\\x1d\\xbe\\\"J)\\x89\\xee\\x9c\\x00\\xfb\\xd5\\x15b\\xb0\\xc6+\\xc2:X\\xe4\\xfd\\xc2\\xd1\\xc4\\u007f\\xf4 X\\xb4w\\b\\x8f\\v\\xef\\x15> \\xfc\\x8a\\xf0a\\xe1\\xa3\\xc2ǅg\\x81\\xcf<'|^\\xf8\\x0f\\xc2W\\x84\\x97\\x05\\x81/\\xbd\\x13\\xc6!\\x83_\\vţ`\\xf4x\\xb8\\xcfϑ\\xd1\\xe8\\n\\xffv\\xcf\\xfbn\\x1fs\\xffG\\xecs0̏\\x83\\xd18Ts\\xc8\\xee\\xf9\\xf8\\xdb\\xc8&\\xd2!.\\xea\\x0e\\xbd\\xd8@\\xe3\\xfb\\x12\\\\_\\x87_RqX\\xb3\\xeeT\\x9c\\xd0\\xedW\\x127@8ʓ_\\xd1\\xe4\\xdf\\xd1\\xca@l\\xb4?\\x9a\\x031:\\xbaQ,\\x89\\xb2T\\x14\\xdfS\\x14\\x8b\\uf48a\\xd2/\\xc1\\xfe\\x17\\x8bRi\\xb2$\\x95\\xee.\\x89\\xa5/W\\r\\xf8{\\xaer\\xa6z\\xa8\\xba\\xa3\\xf2\\\\u\\xebe\\xedP\\xb5\\xa6U_\\xd87\\x18\\xec\\xeb?\\x9e.\\xa4+yYq\\xf3n9S\\xc8\\x14s\\n\\x92\\v\\x96\\xee9o\\xd4\\xd0u\\xda\\xd6G\\xb5q\\xf4\\xd2\\u007f\\xf9s\\xf4\\xf1\\xad7\\xbd\\xfc\\u007fl\\xbd)\\xadiڙ*\\\"\\xf0\\xf3\\x95\\xcawa\\xfb\\x9eʡ\\xea}au\\xba\\xdaPMUT\\r5\\aH҇\\xfd5\\xd5T2\\x86j\\xc8p\\xbcl\\xaa\\x06:\\xad^\\xf4\\xd9\\xfaN\\xb5\\xfa}\\xc8\\\"\\xacj\\u007f\\xd5\\xdf\\xd7\\xef\\xef[\\x00\\x18/ɖ\\x95\\xd2M\\xc761a\\x96a뢵\\xb7Z\\xfdv\\xb5\\xba\\xbfRA3[\\xb7]\\u007f\\xbd\\x8b̭\\u007f:\\x8a\\xce,.>T\\xa9LT*\\x0fi\\xdaǓ\\x9d\\xfb5m\\u007f\\xb5\\xfa\\x10\\\\\\r\\x99j\\xd5P\\xabV5m\\xb8\\x0e\\x0fh\\x1d\\xf4\\xef\\xd0ϳI\\x04\\xc5\\xc5\\xc8\\x15\\x84\\x9c\\x0f\\x05&\\xab\\xb7⋗\\xfe\\xf9\\x8bd\\xd6\\xf82\\xdf\\xde\\xc6t\\xf6\\xa2\\xa5\\xfd\\x8f\\xb8\\t\\xe6\\xebߓ-:ci[_\\xe0\\xb3m\\xd0>͂\\xf3\\xad\\x96fm\\xfd\\xa0\\x99\\x9cL\\xfeG\\xdc@\\x04\\xbc\\xf8\\x80pl4\\xef\\xadM\\xb9\\x10$<h\\xe4lO\\xe6Q\\x8czn\\x91\\xf2\\x81\\xd7\\x04,\\x0ea\\xf2\\x909\\r/\\x18\\x86\\xdc\\xc3\\r\\\\\\xed\\xe03\\x1b\\x9d\\u00a05V\\x19k\\xf6\\v\\xe3\\xf3\\x86\\xb94\\xb1\\xbe\\x88\\x18\\xf7\\x1b\\xd0T\\xf9pk\\xf5\\xf8\\xd8%㕥\\xc9\\xc9j\\xb3\\xde\\xce\\xe4\\x81\\x0eԳJE\\x02\\xba\\xb5\\xdeI\\xb7B\\xb8Jn\\xac\\x16\\xbbu\\x1f\\xa5R\\xed\\xb57̮\\x05\\xd1\\xd4\\xf4d͟\\\\^\\x9e\\x1cGL\\x82\\x9e(\\xdb\\xf9\\xea\\xe6\\xca\\xf8\\xae\\x86_\\x9d\\x9c\\x9e\\xac\\x06\\x85\\xb1\\xb1\\x82\\xa6P\\x9a\\xa6\\x9d\\x9d)\\x97\\x81\\t\\x9b\\xf4\\xeb݂\\xaeH\\xcb\\xdb1\\xa4\\xbf\\x87Π\\x17\\x81q\\n\\xc9@}\\x12\\xfd\\xde4i2%-\\x99으E\\xc8\\xd1\\xf2\\xb9iw#N\\u007fnn\\xda\\x1f\\xef\\xbdݭ\\xedhx-\\x85hDa\\x86\\xa5\\xf1\\x99BF\\x0e\\x88x1\\xa5dsn\\xba\\xe1*;\\xfbK\\aC\\x85\\xfa\\x13oF/\\x9e\\xdc[\\xdbX\\xa8\\xba\\x8e>i\\x14\\x8dt`a2\\xa3\\xe4vݢ\\xb8\\xe5\\x19\\xdb\\b\\xf4\\x94{\\x99\\xebfʝ٠\\xb7p`)\\x9cDrny\\xe6\\xe0\\x8d\\x17\\xafC\\xb6g\\xb8\\x9e\\xeb\\xf9\\xe3\\xe6\\x04z/_3f\\x18\\xfe\\x14\\x87\\xc1\\xabq\\xfdÑQ\\xb8\\x86#\\xe3YH\\xc4I\\xcc\\xddp\\xba;zp\\xfd\\xe1\\x93\\xf3\\xb3\\xaf/\\x17\\x1f:y\\xf2\\xe4\\xbe;\\xd1\\xfc\\xe0\\x83w\\x14D\\xf7\\x126\\xf1A\\x15\\x11F2Jvlv*t\\x99,\\x13\\x858`\\xf5u\\x8cM\\xe8\\x8a\\\"P9\\x00\\xb1\\u05ec\\x1f?\\xf9P\\xaetOw\\xe9\\xe4C[\\xb7ޱ\\xefҹ\\xc1k\\xf6\\xf5\\xa7\\xd8FJ\\xcc>.a\\xea\\xcb\\x0e\\x12S\\xfeJ)\\x9b\\t\\xa82FE\\xc5\\xc04\\x9b5E\\xc9b\\x94\\x90ss\\x97\\xf9:~\\x01G\\x9a\\x88\\x81\\xdeH\\xbe<\\x9c7\\xf9vA\\x1f\\x918Bgff6\\xcc\\xcd\\xd3ǎ\\x9d\\xde47ffV\\x0f]}\\xe8Ln\\x80\\x9e\\xb9k\\xa6<\\xf3\\x9d\\xef\\xc0殗^\\xda\\xfa\\xce\\xea\\x05\\xf3\\xa1\\t_\\x1f\\x89Gy\\x00\\xe4\\xe3\\x1c\\x1fj\\xc5\\xe7\\xd3}\\xba\\xfdf#N\\xc6d\\xbcsG\\x8d\\x98\\a\\u007f\\xa0{\\x0f/n\\\\\\x99\\xe7\\x01,\\xe5\\xe3e\\t]\\xae\\xac\\xe3\\xf4\\xeb\\xd3|\\x05/\\x1e\\a\\x82\\xae\\x90\\x9ezJ\\xaa\\x8a\\xf4\\x11F\\x1b\\x92Ԡ\\xec\\x9eO\\u007f\\xfa]\\\"NKRH\\xc4O\\x89D\\xb8\\xe8\\xf9|5A(\\x80\\x1bG\\xc0.\\xa6\\xd1v\\x8c\\xc9?\\x1c\\xa8\\xb4\\x19է\\xa2}\\xc5$ۗ\\xce\\n\\xef?a\\x1a\\xb9\\x13\\xef\\xbbZ\\x10\\xd2g\\xb7\\xce~\\x13\\xaf\\x01w{B\\xf8\\xa0\\xf0\\xeb\\x89o\\xebk\\xc2\\x1f\\b\\xff\\xb7\\xf0\\x8a\\xf0\\xff\\n?C\\x185\\xd1\\x1cڋN\\xa0;ћ\\xd0\\xdb\\xd0{\\xd0\\xd3\\xe8\\x93\\xe8\\v\\xe8kɬʀ/\\xb0\\xc1\\xff\\x92\\x10\\xcbƀ\\xb3\\x15\\xf8\\xf6`'\\xec'\\xab+'Q\\x98a'\\xec\\f\\xba|H\\xb5\\xd7o$\\xf1\\x9dA\\xc8\\xe3}\\xc0&$\\xb7\\xb0$N\\xa4\\x99\\xc4\\xe8/\\xa0e\\xb1\\xbf<\\\\\\xb1\\x882\\x9fO'\\xe9\\x04]\\x1e\\x890Z\\xc6\\b\\xfa\\xbd\\xe7\\xc3m\\x81\\x1f\\xf0\\xc8\\x06\\xbei&\\xe1\\xa1IPW\\x12\\xe90\\xcc\\x0eHU؉\\a\\r)\\x81\\x00\\x8d$T4\\xe41\\x0f|\\xde\\x16 )\\v\\xf5\\xf9\\\"\\nC\\xa26\\xe4i\\x8dh8K}\\x19\\xc1\\xdd|i\\x06\\xb8\\xbf\\xc7\\x06\\xbd\\xe68\\xa2\\x91\\x99\\xac\\xc1@G\\xcb\\xca\\xf2\\xe7\\x00\\xfd\\xe3\\xeb-\\xb5\\x87\\x8b1\\xf1\\x8c\\xf9䖤J\\x86K\\x1e\\r\\xfa|*\\x18p9\\x02\\x150$s\\xfc\\xa2`\\xb8x\\x92\\xd4\\x16\\x9b\\xdb7\\xfa}\\xdeO\\xa2A?\\x19x\\x86\\x02\\x8f\\x8a\\x99,\\xb5\\x04Za\\x19\\x916b\\xcb|\\xb9\\xb1 YI)\\x816@\\x19\\xf9\\xc0Ms\\x90L\\xc0\\xe9\\r#^\\xf9\\xdc\\xfb!\\x02\\x1aF\\xd3\\xf2A@/)\\xd1\\x00\\xef\\x00\\\\\\xdb\\r\\x8bƗ?l\\x16\\xc2.\\x1fZ\\x93A\\xa7YL1D[cn\\n\\xcb\\x15\\xa4H@\\xe8D\\xd03\\xa2\\xc8R-˖}\\xa8\\xaadAX>*f\\x98Z%_h֍\\xe9\\x8f\\x1d\\xc9ڲ&K\\x84\\x8f\\x1eZ̕$\\xc7j\\xba\\x80\\xe3\\xe1V\\x92\\x12UIA>_a\\xae\\xa8k\\xb6h(\\x89ӆ\\xc8\\xf8@ #&\\x13\\xce6T_Nɀ\\xde{\\xb2\\xa8\\x13\\x89J\\xca\\xd6A9 2e\\x90m\\x8ay\\xaa\\x98#\\xa4#ڒ\\xaa\\x1bL\\xfe\\x8a\\x1fyS+\\x93\\x93Gh\\x95\\xe7\\x8a\\xc1\\xe6\\xf6\\v\\x80\\x12\\x89\\x1c\\xc9\\xe4R\\x82X\\xe8\\xc9|q\\xea\\xdau\\x92n\\xc9|Y#gN2.;4}ٸ\\n\\xa4X%\\xaa\\xa7QL\\x88_\\x00.\\xcc\\xd4Y\\x8a\\xd2&\\x95\\xb0]@D5Y\\xaa\\x83%\\xd3v\\x98\\x19R\\v\\xf7\\xfb\\x131\\xa2H\\xe6k:A\\xef<lx\\xe9 \\xa3{\\x01d\\x99\\x9a\\x9f{\\xefg1ԇ(jPyH$\\xf1l\\xfcq\\xdcI\\xa9\\xae\\x94\\xb1\\xcd\\xda\\xe7rk\\x15}\\xa9\\xb7\\xf5}M\\x97\\xb0nK\\x86W\\xff\\xebtYR\\xebNf\\xa6\\xf4\\x13\\xcd\\x04\\\"\\x83\\xa9\\xc6,\\xf4Y\\xa3\\xee\\x19J(\\x8a\\xba\\xc6BdQ\\x03TX\\x8e\\x89\\xe1\\x18\\xc2\\x19\\xb0&\\xc0\\xa4B*1F\\x18sdI\\xd4\\x10%\\x8a';Z\\xd5\\x14U̧\\xd0\\xf1ո\\xe1\\xe3\\xa4v[\\\"p6@)\\x88{Ǳ.#)o\\xb9\\xa2\\xa4Uw\\x87u\\xd0$2V1c\\x92Y\\xad\\xb9\\x0e\\x00\\x15L\\xb0\\xa2c\\x04\\xad\\xe3h\\x9a\\xe3B\\xc5b\\x8a4Q\\x12\\xa1\\xd6)a?UrjE\\xe6\\xc1\\xef\\xb2\\x01\\xaa\\xa6)ʢ\\xd8¥\\nJՌ\\x9c\\x02\\xf9 I\\xae4d\\xb1\\x99\\x86:mIN\\xb5\\x80D\\te\\xf2\\xe8\\xe3\\xd0<婩ri\\xea9\\x94J;\\xd0_R\\xac\\x8cE\\\"\\x15ڴ\\xa1\\\"\\xb5&\\x89h`\\x97\\x01ʊ-\\x19\\x95e\\xe9\\xf2\\x9c\\xd1\\x1b\\x17\\xf9J\\xc3\\x15\\n\\xcdo0\\f旂.\\xb4\\xd3\\x06\\xd3d\\x15\\xff\\xb6(\\x1a\\x81\\x83i\\x03\\x04^\\xa1Ⱦ<\\x97)\\xd9\\xe1\\x00\\xf15\\xb9@\\xa1\\x93p\\x93i\\xba\\xaa\\x88\\n_\\xa3Y\\xb6\\xab\\b\\xd1T.\\xe3{\\x18j\\x92\\x8f\\x17 \\xdc\\xcd8\\xf5\\xa0AI\\xd9u<\\xe4\\xa3\\xc7\\n\\x86\\x9b\\xb7\\xca[\\xefG\\xa1\\\"i*\\x12UE/~6\\xcaت\\xe3Hj>\\xeb\\xe7\\xffY\\xd4\\x14\\x84L\\tڎ\\xedAE]QE\\x9cbJ8\\x81R\\xd0\\x18\\x18\\xd2͑\\xcf\\xe2O\\xf0\\xc3\\xe8\\xd9$\\xe6j\\x86\\xc7'\\f㭪\\xa3\\x88+\\xc0O\\xa2I\\x18_-\\x04:-m\\xd3f\\x11\\xa3g\\xb3\\x8d\\\\\\xae\\xf1S\\xbeɢC\\xcd\\xc5VQ\\xa6)\\xbd\\x99\\xceu\\xf3z\\xb7\\xe1\\x85W\\x1dZ\\xb8nm\\xbeT\\xd4]2~ӯe\\x1b\\xd9\\xe4zآ1,SG\\xcb\\xda`S&3\\xc1\\\\\\xbd\\xc9C\\xc6e=L\\x15\\x9d\\xb249fn\\xcf\\xf1ڞs\\x13\\x01\\xf6_\\x11.\\x17\\xae\\x14\\xaey5\\x1a,\\x8c\\x92\\xd1\\x00\\xbe\\xd6\\x11J\\xc2Z\\x87\\a\\t\\x90\\n/b8M>\\x0eǗ=\\xe4+\\x9dzlt4\\\\?\\x00\\x8f\\xf2\\xdb^\\x13\\xf2\\x99\\xe7\\x1f|\\xf0\\xf9\\a\\xefEJJ\\xc9\\xd4kY\\xc5Q\\xe6[٩\\xec\\xff\\xa7\\xb1\\x9f\\xf11s\\xd8\\xfcL\\xe2\\xeb\\xbdHO8pI\\xca/\\x8ef\\xf9\\u007f諏>\\xfa\\xd5G\\xd1/=\\xc8\\xef\\x97s\\x8a\\x92\\v˲\\\\\\x0e\\xf9^k>;\\xf57\\xef\\xe1\\xf3\\xc4\\xdf\\x03y\\xbc\\xef\\x11Q|D\\xea\\xfbjIQJ\\xaao\\xfa>2\\x92P\\xe6\\xad\\xcf?\\xca3\\xb9 \\xa6\\xc6\\x06Բ(\\x1c\\x10n\\x00\\xfb\\xd4\\xef\\xcer$Y\\xe5K{Ҩ\\xdf\\xf9\\xb9Q\\x99\\xc8\\v\\xf8\\f\\xdbj\\xd3/\\xe2N7\\xec,\\x8b=\\xd0\\xe6h\\xe8\\xdb\\a\\xdeg\\\"hՠ\\x84z\\xa0\\xa8\\x93@@\\xd4\\x1cN\\x82C\\xcf7\\f\\x03I\\xa6\\x89[\\xad[.\\x18<y\\xfd<\\x8f_0\\xd5\\\\Q\\xf6mK\\x14S\\xb9\\x94N1\\xfa\\\\&\\xeeV\\xaa\\x83~\\x98\\x9e\\xadVg\\xd3/\\x10\\x91)*(\\x1c\\xe8\\x84\\xf7\\x917\\xa7\\xd2\\u007f\\\\&\\x86\\x89=R\\xc0(z\\xe1<g\\xd6\\xc3Z\\xd9\\t5M\\xb2\\xf2|\\xe5}Jm=\\xe7\\xd4)\\xc3J%\\x9b\\x83nJ\\xf3\\x86\\b\\xc6U4v\\x882\\xa3<N\\xc2\\xd1@\\x99\\xa1\\xffIٛ\\xc0YvU\\xf5\\xc2w\\xefs\\xce>\\xf3t\\xcft\\xe7y\\xa8\\xb9\\xee|\\xab\\xba\\xba\\xab\\xaa\\xe7\\xae\\xea\\xb9\\xd3\\xe9)\\xe9t'餓\\x90y\\\"\\x04\\bM\\x06 \\x8caV\\x04\\x8c\\nA\\x01\\x05\\xe4)aP\\x82\\f\\xe2\\xfb\\x14QP\\x1f\\x83\\x8f\\b\\x8a\\xfa=\\x9f\\xfa\\xfc\\xa9_\\x9eH\\xf5\\xb7\\xd6>\\xb7\\xba\\xab\\x03\\xbc\\xef\\xf7\\xd5p\\xcf=\\xf3\\xb4\\xf7Z\\xff\\xb5\\xf6Z\\xffu!y)w{4\\xe6a\\x82u\\xd8L\\f6\\xb4\\a\\xb8;\\x1f\\x15\\x18\\x86\\v4_<\\xd6A\\xb8>\\xe4<S\\x88I?\\xf4\\xb6\\xf3\\xe7\\xdfv\\xfeu\\xa5\\xb1\\xb1\\xbb\\x8bc\\xb2\\x91\\f\\x8d\\x176\\x8c\\xfag\\x0e\\xbe쥇\\xaf\\xe9\\x9f\\xe8\\xdd{\\x90\\xdc}\\xfe\\xad\\xb7\\xdc\\xf2\\xd6O|ݘ\\xdf5g\\x9asU+\\x1b\\xf9\\x8e\\xf8\\xd0\\x15~\\xe7\\xb3\\xf7\\xec?zg\\xeb\\xd4܁\\xbbc\\xff\\xc7\\xef\\xf3v\\xeb'\\xc6\\x13s\\x89\\x1d\\x98\\x97\\r\\x8d\\xd2\\a-\\x1cq\\x9e\\xb1\\xcbC\\x04/Zּ\\x84\\xa6\\x11E{\\x1b\\x88\\xdf\\xff\\xbd\\xac%\\xcb\\xe5P-\\x04SZ\\x98q\\xa6s3\\xbfRV=\\\\R\\f'\\xf50\\xedLgg^v\\xeb[\\xc6w\\x9ej\\xdd\\xfc\\xb6\\xa5\\xfbv\\x1d~\\xf8\\xc1\\xab\\x8f=\\xf0ҿw\\xfd\\x13\\x81\\xdddV%\\x1a\\xab\\xd7\\xd6gʩ\\xb1\\xfaG\\x9e\\xbaep\\xddR\\xfd\\xad\\xe7\\xb7ݻcm\\xcb}'\\xae~\\xf0\\xe1\\xc3W=4\\xc2_\\t\\x83&\\xc8\\xfd<\\xbf+12\\x98y\\xeeL\\xfc\\x1d=qr\\xf3\\x93\\xe7\\xcf\\u007f\\xf2\\x93\\xd3\\x19\\xef\\u0085\\xde\\xfeO^\\xfa\\x96>\\xff\\xed\\xf37\\xc3\\\\\\x1a\\xe7\\xf6}\\xf2ҷ\\xccy\\x8c\\x90\\x82\\xfe\\xfc\\xbfy\\u007f\\xf6\\x90\\x93\\xf5\\xd2{\\x8b\\x0f\\x18\\x1fxx\\xe9D\\xf2{x\\xaf\\xfa\\xfd\\xd5\\xfd\\xa9~v\\xff~=]}\\xe4\\xf9G\\x1e\\xc1\\xb9́\\x03zj\\x94\\x04\\xf7ý\\a\\xd2\\xfd\\f\\xacN\\xd5\\x1ey\\xc5#\\x8f\\\\\\x9aK$\\xb4\\x8b/$l\\xba\\x9b\\xbc\\x84\\xc7\\xc8u\\xa1\\x0f\\xa1\\xcf\\xe0t\\xe26^\\xe1\\x00c\\x00I5\\xb6\\xe5\\xeb\\xf1\\x10\\x19\\xceD\\xacє\\x9b1CU\\xa3\\xc9\\xe9\\xc9\\xf17\\x8c\\xba\\x80]Xmd8\\\"ZB\\xe3\\r\\u007f\\x01\\xcc\\x15\\xa8\\x88]\\f:\\xd8%&\\x92\\x91=\\xc7aX\\xfd\\xf2\\x99\\xd8\\xe8\\x00π\\xc2T\\x91\\x80\\x93\\xa8\\x188\\xeb[ֹٗ\\u058b\\x85\\xda}\\xb3\\xaddU\\xf5N\\xd5\\xee\\x9a\\xc4\\xf2\\x00\\xe3w\\xd4\\xcezZ\\xd5^\\xfb\\xc3\\xedgv\\xec8sV<4\\xcc\\x1e(P\\x81\\xd0¡l\\xaeSO\\x11\\xab|\\xec\\xd4X\\xf9\\xf8ɵ?\\x9dX\\x98\\x98Xp\\xb3\\xbe\\x11\\x1a\\xd9f\\x96l\\xf2K~\\x1e\\x96\\x8c\\xa7\\xb2\\x98\\xd8\\xf9!\\x06\\xe7\\xf1,\\xcb\\xc23[\\xf0\\xed\\ru{vvfڮT\\x1fl\\x15\\xb3H\\xbe\\x9e)\\xce>P<\\xb3\\x1d\\xce\\xf4\\xc8p\\x1f\\xd5]\\xc7\\b\\xab\\xedɓc\\xfc\\f/ǣO\\xec!^\\xd6\\bM/\\x9b\\xf5\\xbc\\xb2\\x87gl\\xf3\\xac\\xd1\\xd8\\x06'\\x17?K6\\x93\\xe7\\xc0j\\xe8\\xa1m\\b\\xbd\\xbaH\\xe2\\fU\\xd0\\x18\\x00\\xe4\\xda\\xc3\\xc6:\\xf3\\x17\\xc51\\xa2A\\xc8SC\\xeb#\\x1a\\\"|v\\xc3\\x11nŇG\\xbc\\xf2|\\xb0\\xcf4\\x8a\\xb6?\\xbfϬ\\xaaƾ`\\xa1\\x94uT\\x96\\rD\\xa7\\xddkiz\\x90\\x95\\x05jXk?\\xde7\\xa8n\\xae\\xee\\xbb}߶F\\xaf\\xd1ȸ\\x05\\xf7ހ\\x05\\xb8\\x8f\\x8e\\xbb\\xc2\\x11\\xf6\\x83%\\x9a\\x8c\\x92\\xa6l\\t\\x9ac)\\xb2%\\x9b\\xba\\xe1\\xe8_\\x1c\\xec\\xab.\\xd4\\xfa\\xfb\\xf6\\xf53\\xf5z&[w\\xf3\\x1b\\xf3Xe\\xce\\x1d\\f\\xfdw0\\x8a<~\\xb1\\xb8\\x15GN\\x84h\\x86\\x8c\\x12\\xe7c>3@\\xe5H\\xf4\\x19.a\\x86\\xfc`\\x96b\\xe6ֳ\\xa9R*U\\xfa\\xe7+\\xc4\\xc6\\x1f\\xcf\\ue61d\\xdd\\xf1*ѱºS\\x90\\x99\\xe5\\x00\\x98R\\r\\xbfn\\xb6̜٪\\x19\\xf09kV\\x03W[+\\xa7R\\xe5\\xe8\\xc9\\rr\\xf4*\\xd8u{룊\\xa8$UQ\\x82\\x89l)\\x00p\\f2k\\xe6\\xe3]\\xad\\x96!\\x9a\\xba\\xbd\\x91O\\b\\xfd\\xa0\\x93\\xdc;r\\x89\\u007f\\x04\\x1d\\xbex}\\xb1\\xa8A\\x16\\xd3\\xe6h\\x10\\x8b3\\x82t\\xc8Ϲ\\xd1c\\xa7O?\\x96r\\xff(U\\x19\\xb7\\x93\\x86\\xe6T\\xe0\\xed\\xe7J\\x8ef&\\xed\\x89JJM\\x91\\v)\\xf7\\xb5\\xa7\\x1f{\\xec\\xf4k\\xdd\\xd4ڿF\\xa5fR7\\x92F9\\x93\\xf4\\xb2E\\xf8\\xa2\\xbbc\\xa5H\\xe5\\x9ce\\xff\\x8b^ oI\\xecÈf\\x06\\xafB\\xae6\\xd1\\x16h\\xb4y\\xfe\\xbd\\xbc\\x99\\xf4\\xbb\\x01\\xb7I\\x90\\x87\\x883\\xb4^Z\\x80in\\xa4\\n[l\\xa2]D\\xef\\xb0ȃ\\x05}z\\xa1\\xe9\\xb2\\xc9F'i\\x1d\\x91W\\x93vt}\\xa4\\xb5\\x92\\xbf\\x9c,1\\xf96SΗ\\x99\\xb4\\xa0\\xe8\\xd3ov<\\xa6\\x16Լ'1\\xdfu7\\x8fK\\r\\u007fAX\\xa6\\x0fK\\x05\\x83\\xbc\\xc9 c捧\\xee\\x1b\\xff\\x82\\xf5\\xe6:!\\xc3oυ-\\x02\\x00\\xd3$\\xd0+\\xff=g\\xcem1\\xb5\\xd7BO5\\x89i\\xf8ۼ\\xe1\\x8cf2\\\\M\\v/W\\xdf\\\"\\x92\\x8cm\\x02Zq/\\xf1\\xd1 \\x0ft\\x8e\\xb3j\\xeeJ\\x1cI\\x9cJܞx$\\xf1\\xc6\\xc4;\\x12\\xcf$~3\\xf1ۉ\\xaf&\\xbe\\x8elN\\xc3\\xf5\\xca\\x02\\x12\\xa7\\xa7\\x02\\t3\\\\\\xcf\\x0en\\xfa\\xf1\\x12N\\xe2\\x1b;\\xa7+H\\n\\xb8\\x85\\xc8\\xdc?\\x11\\xe28s\\xbf\\xc9;\\b\\xcer\\\"\\x82\\x06C\\xecӛ\\xe4Cv\\xb8\\xae*\\xb3\\r\\x87\\x99%\\xa3\\xbc\\xe3\\\"AGF/f\\a\\xe6yBC\\x90T\\xfc\\xf8Í\\xdb\\x05\\x11O\\xe5\\xc7\\x05\\x9c\\x1f!l\\x0emR\\xe7[T֏\\x84F%\\x9e\\x12t\\x18\\xf1\\xee\\xd8}4Ne~\\a\\xf2\\x96RbǓ{\\xf8\\x04Yea2\\xef8WI\\x88\\xe8\\x15\\x80\\x9dt\\x11l\\t@\\xbdT\\x17\\xb6)\\x8e\\xa28\\xa5+v\\xf4\\x88d\\xf3/|rV\\xc1\\x83\\xc0Ǌ\\xe3l燀\\x15W\\x1e\\xe4\\xdc\\xfd\\x1f\\xbf\\x9f\\xec\\xbeb/U\\xc1\\x03\\xff\\xfa\\xee;\\xfe\\x86+\\x8a¥\\xbd\\xe0r\\xae\\xba\\xbc\\x19L<~\\x05r|~\\x85P[\\x1a\\x97\\x18\\xd8\\x15\\xa2\\f\\x87\\u007f\\xc2q\\x0eo\\xdc\\xf5\\xcd\\x1bnI\\xfe.\\x85˂\\xa3(\\x92\\x8e\\x87P\\xec\\r\\xf7p\\xc5Q\\xee\\xfa\\xf8\\xfd\\x1f\\xdf\\xcdw\\x19=\\x92=\\x8e3\\xca+\\xff\\x12\\x18\\x9b\\x9f\\x064\\x93JT\\x12S\\xa0\\x97x\\x92?t\\xbdfâ\\x11\\xf7\\x16\\xf2\\xb6R\\xe7\\x9e\\t$\\xe2\\x00\\xebw\\xc8\\t\\xc1\\x86\\x8f\\xef\\xaf\\xde<ܾi\\xb9\\xfcG\\xe1x5\\x9b\\x8e\\x1aQ\\xb5\\xdd\\xde\\xd5&\\v\\xe5͇\\x96W\\xefN\\v\\xb9\\xaf\\xf9\\xfb'\\x96N=4\\xf6\\xc3\\a\\xa7Z\\xe5\\xfa6\\x9d\\xe8Ay\\x01\\xb6\\x83\\xadگ\\xb8\\xeac3u\\xf1\\xd7k'ʏ6ǕWZo\\xb8vu\\x91\\xfb\\xf7\\xe8\\xa8-\\u007f\\x14}\\x99\\xa3\\x92,\\xcd\\x1e\\x18\\U000315c0sdĮ\\a\\xfe\\x15\\xa5\\x06\\xa6;\\x85<\\x19\\x95\\xf3\\xac\\x12\\xb9\\x05\\xed\\xa4\\x85^\\x9bya\\x11c\\xf8x\\x89\\x81V\\xa7\\xdb\\n\\xbbat\\xf9\\xb7\\x05\\u007fЖ|dB\\x0e\\\"?j\\xc1\\xaf\\xdf\\xc1Y\\x1fPj\\x10\\x06!\\x00\\xda\\xc8G\\x9a\\xe4\\bN\\xd0\\nZ!\\x00\\xd96\\xach\\xc1&\\x11\\x9e\\xd5o\\xc3\\x01\\xa2\\xc0'/l\\xbbo\\xfb\\xb5\\xaf\\xb7\\x89\\x92R\\xf2f$\\xb8\\xd3\\xf5k\\xbd\\x89-\\xaa\\xa0\\\"\\tp\\xd1\\x00\\x8b\\x8c\\xd9z\\xedl\\x16\\xb0\\x9e]\\xbd\\x1e:\\xb9@X\\x1eӦ\\x8a\\xbd0\\xd2=\\x8f\\x12\\x91\\xe4\\xb3\\x125\\r\\xc64\\xc5\\xd4\\xe9\\xe5h\\xe2+~\\x84\\x8d\\v$\\xfaǒ\\xba\\xfd\\xbem\\x0f\\x9c\\xa4\\x8cn\\x9f\\xf7\\xebljl\\xbe\\x92\\x95=\\xeb\\x86M\\x81\\x97l\\xbb\\xaeI=\\x10\\xecĪjew<s\\xac\\x96\\xb4*9\\x95P\\x06\\x16O^\\x03\\x13R6)e\\xaa\\xc4\\xc3l\\x85\\xf5\\xd8\\xe5\\xd1\\x1f\\xbd\\xf2\\xe4`\\x05\\x8e\\xd6\\b1\\xc71\\xfe\\x89\\xc4\\x0f$\\x12\\xcb\\xf8\\xaf\\x93\\xff\\x05\\xfa7J\\xd41?\\x88\\xf3\\xb3` \\x16\\xc8\\x03\\x9e\\x9f\\x8d\\xaf\\xa0\\xe11\\x1ck\\xeb\\xe1\\aX\\x11dӖ\\xb3\\x13fc\\xcb\\xf1\\xfe̮3\\x8ax\\xe3\\x93o=O\\xae\\xdb5\\xdd*\\xee.L\\f\\a\\x93\\xc5\\xddŃ\\xe4\\x17W_\\xf2HkoaIz˹\\xf3o]*\\xac\\xdd\\xe7\\t\\x81s\\xc3#78\\x81\\xe0\\xad~\\x8b\\xb7\\xe1\\xdf\\x05k\\xfd\\xbf&ʉ\\x89D\\aلI(\\x97\\xb9\\xbd\\xc1Kތ\\x12\\rх\\x05\\xf6#A?\\x97/\\x01\\\\\\xa2H\\x97ҍ\\v\\x17\\r\\xc3hD\\xaeD~\\xd0\\xd0\\xd7>5\\xbb\\xb4\\xc3{Yꥫ\\xbbJ\\x95\\xc5~1\\x93\\x9c?\\xd8\\xdf\\xe9=y\\xf8\\xfa\\xbb\\xd7V\\x92\\xa6\\x1aUǣ\\x95\\x93\\u007f\\\\\\x98\\xcdLl\\xf9\\xd4\\xf6i\\xdbJ\\xdbYRڱR\\xeb:\\xa9Ҏ\\x03\\xb6\\xeb\\n\\x8dj\\xe9p\\xe9\\xfc\\xae\\xf0\\xe0\\xd5/\\x91&\\xd3\\xf3\\xcd\\u007f\\xa8ϗ=j\\x98\\x13\\xbf\\x9b\\x9dJ\\rޞYm\\x14\\x9c\\x94\\xb5\\xae\\x1b\\xbf\\ax\\x17\\xf3\\xab:\\xd0\\xff\\n4\\xaa\\xae\\x8f\\x1a \\xc5w\\x81\\xd4\\u05cb\\xd1\\r\\x9a\\x9c\\u007f\\x97k\\xab\\x98\\x17\\x1c\\x10ʹ\\xae\\xe5\\xfcC\\x96\\xef[\\x9b\\x02\\xc7D#\\x99<\\x8bs\\xbdE\\xe9IaX\\x8d\\xac\\xc0\\xd2dA2k\\x83ܓ~\\xe9-\\xb3\\x13[\\xb1K\\xbd\\xc2\\xf2\\xbd\\xb4ߪ.f\\xff\\xc1\\xb7\\xd6\\x1e\\xb7\\xfc-\\xe7\\v\\x8b\\xba\\xe2\\x19ݝ\\xb3\\v\\x91\\x9e\\x95\\x8da\\xbe[\\x8e\\xb9'\\x8a\\x17\\xbf@~\\x85|*\\xb1\\n\\xd6\\xef=\\x897\\xe1x*\\x9c\\x1b4`\\u007f\\x9d\\xa9\\x86'=q\\x1d\\x8ej5G\\x83QO\\xe4\\x04UUX\\x1d[\\xbe\\xc8\\xf2\\xdf]\\xe4\\t=\\x16\\x9d!^o\\x91\\x17{\\x88\\t\\x9e\\xd0\\xc9\\xe6\\xf1\\xf4r\\xeec\\v\\x83\\x820hbT\\x00\\x97G\\xc3AhC\\x83\\xe1\\f\\xcb1\\xe5\\xc2y\\x89\\x82\\x19gZd~ll\\xd3\\xc1\\x8e\\xa2*\\xf9Zjb\\xceC\\xbe\\xa2\\xe6\\xa9\\x12\\x0fCm،0\\xcb\\xd2\\xfeEQ\\x9e'\\xf5\\x9b\\xae^\\xa8\\xcf\\xefٱ\\xb9\\x95\\xccק\\xa6g<\\x91i\\x94\\x84\\xf5\\xd6\\xf6*S\\u007f\\xc0|\\xa9\\xfd껎\\xaaĶ\\xb5\\xfeʑ#o\\xf7\\x93\\x82\\x88Q}I\\xd1\\x11\\x93\\xae\\xa4K\\xd4\\x17\\x99*\\x88\\x92t\\x8b\\xa6\\x8a\\x02+8\\xd7Շ\\xf3c\\xed\\x05[\\xc8\\tj!\\x93o\\x90\\x90\\xa9\\xb6\\x91\\rg\\xbd\\x94Qj\\xdc\\xd1l4lU\\x13D\\xe5\\xb3Z\\xe1\\x891\\xafr\\xb8?\\xb1\\xb3iZm2\\x01*H\\x90\\x8c\\xb4'j\\x8a\\x1b\\xb8\\xd4\\x14\\x92k\\x9fa>kg\\x1ag\\x96$X\\xd5Z\\xad+\\x857\\np\\x05\\x8a\\xec'%GJ\\xbā\\xb3k\\x92\\x94\\x18\\xe5\\xde|\\x16\\xda\\xcb4h\\xf9\\x03\\x89s\\xd0\\xde7\\v3X`Ȣrs\\xbd> \\xca/\\xc0R\\xf8\\x9c\\xc1\\x98\\x13\\xa2>\\xd7\\xc8\\xd0dо\\xe3O\\xb8\\x13\\x15D\\xee\\xdf\\xf41x\\x06\\x85+/\\x89\\xb0(\\xe0\\xe0\\x02\\xc3\\xee\\x0e\\xb8N\\x05mg\\x9b\\xb6\\xb8\\xba\\xb2X\\x9cI\\xa1\\x96\\x99o\\xc8\\xe6Lg:\\x9f\\xa9w\\xebɣ\\xb9\\xbc\\xab\\xbdN\\xae\\x1d\\x9dm]\\xd7u\\x04\\x10G\\xa9p\\xd8X\\x9e_m\\n\\xac\\xa6\\x1a\\\"\\xa8\\x1a]d\\x13&h]M\\x97\\x1a\\n\\x05\\x11'ڲ\\t\\x02\\x87\\xa1\\xd8\\xf1-yl9\\x99K\\xebo73\\xb2<WӃ4u&K\\xf9\\xa9\\x94-\\x1d\\x1f\\x17\\x86yU\\xcb\\xd8oP\\xb3\\xc5\\xf1qO\\x94\\x88ef4t\\xaa\\x12\\\"ˁ&\\n\\x92\\xde@\\xf2%\\x01\\xf9݈\\xa8\\x89Y\\xae?\\\\x>\\x1f\\xe7q\\xa6\\x89z5\\xc0:O\\x92[%\\xfe\\xad﹃t\\xde\\xfb\\xc0;\\xc9s\\xb7\\x1c[[\\xe3\\xe3H\\xffI\\xbeD\\x1eK`a\\xa3Q\\xa3j\\xce\\b\\b\\x82\\x16\\xc5!w\\x9d/a7C\\x0e\\xb3($\\xcf\\t'\\xafYjf\\x01\\x1f\\x1b\\xae\\xadJ\\x85@\\x1b\\v\\n\\xa1\\xda3RI\\xa7Bs\\x94\\x06y\\xbb|z'il\\xbd\\xf7\\xa5+^uz\\xbc\\xe5\\x06Y\\xa5\\x9eLiD\\xda\\xf7n\\xc7\\xee\\xd3\\xe9(\\xf0\\x04v\\xbb@\\xaf\\x18c\\xd0\\xe21\\x8ez\\x13\\xfa\\xaa\\x1c\\xf1Q\\x8c\\xcd\\xcb\\xcb\\xcf./_\\x8bc\\v/\\u007f\\xf6رgO\\xbe\\xb8f\\xc3Tb\\t\\xde<ߏ\\x97\\xc4\\x1b\\xf6.\\xd7\\xe1\\xebp\\x1e\\x8axX\\xa4\\xb7\\x053\\x9czC4\\xe7#XR\\xe9!\\tvU\\x8eb\\xb2\\x8a%\\xd2\\xe4\\xb1\\xde2\\x1f\\x90\\xe6#(\\x9fe\\xb2Э\\x162\\xe5d\\x0e\\x14~\\xf0ؔH\\xe6\\xf4\\x1d\\x800\\xae:\\xef\\b\\x87\\xe44,;\\x1c\\x8a`\\x059Y1T\\xe5RQ\\xe6# ]QSY1\\xb4\\x8a\\xe9\\xa0.\\xdc%\\x13\\x9aI\\x8b\\x18ErO\\x9dҔ\\xa6\\xc9\\xff\\x92F\\x1a\\x12\\xf2s\\x05F\\xd9\\xed\\x8c\\b\\u007f\\x9b\\xd2r9-UV\\\\W\\xe1\\xf7f\\xc1\\xbd\\xfd\\v\\xf9e\\x90\\xe0\\xf3\\x89ݼ\\x02\\x13X\\xabr\\x18\\xacW\\xd1\\x028Σ#8\\xb1Ơ\\x1b\\x93\\xe45\\xfa\\x98H=\\x906\\x8c\\xf1!/<6\\xe3J\\xccf\\x01\\x18qC\\xb57\\xf2l\\xb6\\xa0\\xa6\\x84\\x97\\x9f\\x98\\xbf~NH\\xab\\x85l\\xe8\\xcc\\x1f,R\\xf5z#r\\xa3\\xc8u\\xa2\\x13\\xb9C\\xf3\\xce\\xda\\xf7R\\x80\\xa44\\x169zR\\xff\\v\\xe4V\\t^\\x02\\xe6\\x82,g_\\x96\\x85%)ǉ\\xa2\\u007fm\\xb4\\r\\xddZ:9\\xbes\\xc2\\xd4\\xcdV\\xd3\\x19\\x13^\\xaf\\xd20\\x8c\\xcaQ\\xe4\\xf8\\xaf\\x14\\x9a\\xf6\\xadN\\xc4tKq#=y\\v\\xee\\x1c\\x04HҒ;\\xa2%u7\\xc2cĲ?\\rX\\xe7o\\x01\\u007fQ\\x1e\\xa7\\xd2jKA\\x19\\x15\\x13X\\x1dȼ\\x01\\x90\\x87\\xc9\\xdd\\xc1\\f\\xe5\\xc9\\x03\\\\\\xdaFa\\x86\\xfc\\xe1\\xdaW\\xc8\\xe2\\xf1k\\v\\xe9\\x0374{;\\xe8\\xc3\\x19\\xe5\\xe3\\x82W(\\xea\\xc6\\xee{j\\xc6\\xc37.\\xdfR\\xc8\\u007f\\xd7\\xe9M\\x0fT/\\xbc\\xd5\\x0el\\xff\\x86\\xc1c\\xf3\\xe5\\x99¤\\xaf\\x13\\xba\\xbbw\\xfaU\\v\\x83\\xdez\\xed\\x98\\xff\\xc69MĈ\\xc6'Γ-\\xb8\\x88h\\x8cB\\v\\xa3ˑ\\x94\\x11w:\\xc4\\x19\\xbe\\xe4\\x19\\xdb\\x04\\x036s<\\xd8z\\xa2\\x83L\\xaa\\xbb\\xef\\xae~\\xe6=[&\\x0f.\\x1e?\\xbe\\xb8gz\\xa1xzxͫ_}ͦ\\x1b\\xfe-\\x93\\x9d\\xba\\xfe]3\\xdb\\x1b\\x80\\x82W\\xb6\\xdeqgq\\xcf\\xf1\\xc5\\xc5\\xe3K\\xd5\\xd9\\xfe\\xab\\u007f\\xfb\\xd5\\v\\xfc\\xdd+\\xa3\\\\\\xc2K\\xb5H\\xeaQ\\xd0\\xf4b\\xb7O\\xdf\\x1b\\xcaUr\\xae\\xfe\\xc4\\u007f\\xb9\\xea=\\xd1+\\xffcf\\xe2?^\\xf9\\xe7_K\\xfd\\xf9Q\\xb2\\xf55g\\x1bo\\xd9T\\xf8\\xf3\\xb5\\xff\\xd8\\xf4\\a\\xb0g\\xf2\\xe2s\\xe4\\x1f\\xc9\\x17\\x13'\\x137\\x81\\x8e\\x82{\\xe1)\\x1f\\x9c\\u05c9\\x17\\xaa\\xec\\xf0\\xd1\\xf7\\x17O\\xbb}tG\\xfar\\x80\\xf7\\xca)\\x05\\xa1_T\\xb1\\x18\\x8b\\x1c\\xfc\\x8c=\\xea<\\x96<\\xf6\\xf6\\x0e7|'\\u007f/}\\xaa2Q\\xf9\\x94\\x94\\x95j\\xa3\\xff\\xba\\xae:`\\xa5\\xea,\\x94$\\x97\\x8aY\\x10\\xf1\\xbam\\xd4ŜX\\xe7[\\xac\\xfd\\b&\\xf0\\xf7\\xf6x\\xf2\\xb4\\xf8ݳ\\x99|>s\\xf6\\xbb\\xa2X\\xfaM\\xf8/\\xf1\\xff\\xbb\\x91o\\xc3G\\xdekQܬ\\x88bc}\\x85\\xf8\\x9b%QZ\\x16\\xc5e)\\xfe\\x1c\\x8d\\x8d\\xff'}\\x94<\\x8eq\\x005\\x9fgע\\xf2\\xad\\x16\\xe8\\x02\\x19\\xddD\\xeczF\\x8d;IF\\x8e!|ѝpQ\\x1a\\x82\\x9e\\xe8\\xac\\xd7\\xc4\\x1b\\xe1n\\xecR2\\xf2Z\\x17\\t}T:\\x89l\\x87\\xd2?*\\x99\\xd0̪'U\\xf8˦\\x9b~ƺ\\x895\\xd2\\xf9\\x89\\x89|\\xba\\xc1$W2D\\x15\\x14\\x87\\x15\\xa4\\x93\\xbe,\\xb2\\xac\\xab\\xfb\\x96j\\xa7l7\\xcb\\nf\\x98Q\\xc9@\\x95N~Y\\x13\\xfa\\xc8\\x18P37W\\xb2x 5;5\\x98\\x8a\\n\\x13\\x9b&\\n\\x11\\x02[\\xc5\\xf2\\xccb\\xc5\\x16\\x88㫖\\xaf[i˷˛\\xcd*\\x185\\x83\\xd8\\xdfs\\x99\\x83\\xd5\\xc6\\xd1\\xe7Z\\\\\\xaf\\xb7\\xb3\\xce\\r\\x12\\xa2\\xbb\\x15S\\xb8:dWh\\xef\\xdae\\u007f\\x95\\x1bbn\\xb7\\xf6PgW\\xedߊ\\xe1j\\x9e\\x1b\\x8d\\xffϞ\\xee\\v\\xab<\\xef{\\x14C\\xe1%\\x86`=_\\x8dQOtC\\xd4\\x13\\xef~r,h\\x9a\\x9cgh8r\\x90\\xca#&\\xb4\\xb8s\\xd48'T\\x83\\x03 \\x10\\xbb\\xec\\xcaY\\xf2\\xabAşk\\xae\\xfd\\xf7\\xd9m\\xc3\\t\\xf7\\xc4`\\xebYK\\xf7,ճ\\xa9(\\xa6\\\\\\x89\\xad\\xf6\\xeaKv!Ԕ@\\x0f\\xf2\\xf8H\\xa9\\x89e\\x0e\\f\\xb9PP\\x8cP\\xadd\\x99n\\x1a\\xb2\\xef\\xcbF\\xa0\\xfe\\xb5\\x98m\\x86\\u0379\\xed3\\x93K\\xac\\xbbt\\xe2\\xeb\\xf0\\xc8t'\\xcbL\\xd3\\x10\\x1d\\xd3\\xf7{\\xab\\xe3e%T#\\xa6\\x04\\xe3\\v\\xe3\\x0f\\xbdvN\\r\\xf5\\xe9ۧ\\xf5\\x80\\xea+\\u05cf\\xc1LnO^\\v\\x89\\x16c\\xd0o\\x90Gɯ'\\xb2\\x18\\xa5\\x16\\a&\\f\\x00\\x9bA'l\\xc8(;9&\\xe0à\\xbcVW\\x95!\\x83\\x8d̉\\xc4\\xfa=\\x9e\\xf9\\x8eC\\xd4\\x13\\xa9\\xebV*\\x9b\\xfb\\xae߭g綏\\xefΗ#\\x8fx\\xe1n2\\xa6\\x99T\\x0e\\x9dޑ;\\x8e\\xd8[\\xaa\\xe5\\xe5Cg24_\\x01\\xfc?\\x91o|1\\xdf]9D̢a\\xefI5\\xebd\\xa2\\x9aR\\xe5\\xc0\\x1bx\\x91\\xe4\\x1b\\xb5\\x89\\xc9q{\\x8a\\xacX{r\\xcd\\xd6V\\xc6R\\x8a\\x12&\\xb3\\xf91J8\\xaf$hC\\xb07hBJd\\xb8\\x16\\x97\\x9b.\\xe81\\x1f\\x83\\xe3gh/.\\xd7#\\x0f\\x9bAs]\\xc3\\xd5'\\t\\x99x\\x85\\x9e*L\\xcd\\x14f\\xb6\\xcf\\xe7\\xf3\\xc3\\x1d\\xd3Sۺ\\x99\\xf7\\x1f|\\xe5j\\xf6\\xf4\\xe9\\xec*}\\x15\\t&\\x8f\\xad\\xfd\\xefc\\x93'\\xbb\\a\\x87\\x8d@\\r\\a7\\xbf\\xf3ֹTj\\xfe\\xfc\\xde\\x13\\xaf\\xfd\\xc4J\\xe6\\xbak\\xb3+\\x1f\\xbe\\xc0\\xdb_\\x1a\\xce߄\\xf3\\xeb\\t\\vkoq\\xa71\\x16q\\x8b\\xfaQ\\xb5\\x99\\xa7\\xc3/\\xdd\\xf0\\x0e\\xe1X\\xf1\\xf6ۋ\\xc7\\xde\\xd6\\xebt>w\\xfe\\x9d_9V\\xba\\xfd\\xf6ұ\\xaf\\xbd\\xafs\\xee\\xb6s\\x1d^O\\xed?/\\xfe)`\\xa2\\xdfH0~\\x14\\x8f\\xc7\\xeb\\x86\\xed\\xeap\\xd0\\x11\\x86\\x1e<ծP\\a\\xe0\\xeb5#\\\\t\\xeb\\xfc\\xe3s\\x82us\\xfe\\xfb/\\xe8\\x1f\\xfc\\xdcu\\x89\\x8b\\xa2\\xfe\\xc2\\xf7\\xe7\\xe6\\x1e\\x9f\\x87W\\xf2\\xa1\\x8f}L^\\xfb\\x97\\x13k\\xdf~V\\xbdi\\xed\\xdb_3\\xd5gI\\xe3c\\xb0\\f۵\\x0f\\xf2\\xf5\\x1f@\\xbe\\\"\\xc7\\xed8\\x97\\xf4\\x85\\xb8\\xe77'H5.\\n\\x8a\\x04\\x13\\x8b\\x14\\x8b\\x1bջ\\xfd*\\x80\\xc5F3(\\x90&|'\\u007f싙a\\xb50\\xb4%_\\xb2\\x87\\x85\\xea0#\\xfa\\x91T\\xder\\xea\\xe6S[\\xca\\xd2\\xda;'&\\xbe5}\\xd3x\\xe3\\xf6;\\x9ey\\xe6\\x91\\xd4\\xdcl1\\x93Je\\x8a\\xb3s\\xa9\\xc6\\xd1Յjua\\xf5\\xe8\\xf4\\xa6\\xa7\\\"'YJW\\x92\\xb7m\\x1aq\\x03}\\xefR<L̞\\x85\\xb1u\\x03\\x1e\\x1f\\xf9\\\"\\x0f\\xa7\\xe0\\x82\\x84\\xc5\\xc7Z\\xad\\x80\\t\\x04K\\xc8(xm\\x89T\\xa5\\xcb_\\xb1\\xb0\\x1dy.\\x9d\\\\{W2\\x9dN\\x92ے\\xe9:S\\xefڲ\\xe5.\\x15,\\xd6\\xdb\\xd8ڏVVV\\x8e\\x0e\\x1e$\\xc9/}\\xe9Kw/?\\xf8\\xfa\\x1b\\xc9\\x03\\x977M\\xaf=\\x0e\\xdb\\xec\\xedt\\xf6\\xb2\\xb5w\\x01\\xee\\xad\\xd7W\\x1b\\x8d\\xb7O=0\\x9a\\xae\\xfd{\\xbd~e\\\\H\\x1ay\\x95]\\x1c\\x91$\\x01\\xbc\\xe9\\n`l\\xa4\\\"\\x8b\\x1a\\f\\xeb\\f#n\\xc4x\\x1e\\x04\\x93\\xe2\\xb1'\\x0e\\xf5\\x03\\xb0\\x81\\x0egv\\xb1lT.\\xd5\\x1b^\\xa6\\x9a\\xb22;\\\"\\xaa\\xa9a\\xcdN\\xee^i\\x10Ӕ\\xeb\\x03\\xcbȧ\\xc7\\xc8ӹ\\xa9\\xc5-;\\xdb-\\xe9\\xc8nI\\x00\\xfb÷\\x83\\x99\\xad\\xf3\\xb7\\v\\x9a\\xa8\\xc8\\xf6T\\xae\\xfcd\\xd1!DUX\\xf6|&\\x98J\\x17/\\xd5\\x12\\x1c=\\xcfb\\xe2V\\xac\\xf9\\x10\\x17r\\xe2B\\vd\\xfb\\x8b\\xbdƌ3\\xf3T,I\\xe6Cp\\x981Ù8\\xba\\x9d\\x80a\\x8d\\xa8Y\\x02\\xf6B{c*\\r\\xc8>\\x91\\x87B\\x00\\x06\\xf81\\xc8vb:\\x96\\xe7)\\xcc\\xfc\\xe2Fw\\xf2r(J\\xa2\\x84\\x89i\\\"\\x12pY;ғ\\x19\\xcb\\bKXw\\x86\\xc8y\\xb0\\x0e\\x98\\xa2\\xb0\\xbc\\xac\\x98\\x8ah\\xa6\\x9cJWŁ\\x04t!\\x94\\xd3R\\x89Lj\\xceԘ\\x94K\\xa6[\\x9a\\xd8\\xdd\\xe0h\\xfe\\x86RA\\x12g\\xf4\\xc0\\x01\\xec_r\\x97R\\xf5\\x89\\xf1R`\\x10\\xb2Yg\\x96(\\x9bX\\xcf\\xc8\\xd0\\x1cWv\\xd2\\xd6\\\\\\x8d\\x190\\x8fIˮ\\x84\\xef\\fe\\x04փݓ\\xb8~\\x14\\xc5ZE\\xed\\x8e.xr\\x89'\\x14t\\x9d\\x18[G\\xc3^\\xe5r\\x90\\x1c/5\\x1d-\\xca\\xdd\\x0eO\\x01\\xa6\\xb8\\x1f\\x1f\\xc8D2\\x06\\xcak\\x85T\\xe5\\x8e:֏}!\\x98\\x8cg\\x1f\\x19\\x8c\\xcd\\xe4#c\\x16K\\xa50/\\x17:\\x8c\\xaa\\xdbV\\xeaG\\x06\\xb5V:\\x04\\b\\xec2\\x1b\\xe3\\x15e\\xf6\\x8cD\\x04U\\xd6\\xf5bQ\\x89\\x92\\x84a\\x8e 1\\xff'\\x1dʒ\\x92E\\x1f\\x0fc\\x9a\\xe1js'\\xdb\\xcd\\xf4\\xc0S\\x88\\b:\\xc0U}J&\\n\\xd3\\xe2\\xeem\\xd3'\\xb6\\xfaӵ\\xdc\\xcd\\x1a\\xa1\\xaa\\xa8\\b\\x12\\xa5\\x872.SU\\x91\\xb9\\xfbǒ\\x854\\x86\\x96,a=\\x9c\\xb5\\x8b\\x9f'\\xbf\\x03\\xf7/A\\x9b݅~\\xefF\\x93{\\xb31\\x19\\x99!\\xc4\\xe4\\xd65\\x1b\\xa5\\xbc\\xa1\\xe7[\\xe8\\xf7\\x9aq\\xa0>ܴW\\xe0\\x10\\x02\\x9d\\r\\x18%\\x8d4\\x1d\\x94\\xf8\\xe9\\x99b\\xbd\\x16\\xfa\\xa6\\x90\\xcev\\xdf\\xdf\\x1ds\\x1a'\\x17\\xcay\\x9dF\\x99M\\ar\\xddr\\xb5\\x1d\\xa9ĻC\\\\8xC\\x9a\\xce6rٽiF\\xecmu\\xc37[\\x13d\\x82\\xac\\xee\\xf7O|@4\\x8b\\xdbW\\xf3ss\\x13w_\\xb7M\\x0fB\\xf5\\xe8\\xa6\\xcaB\\x93Y[\\xaf\\xde\\xdfL\\x19\\xc3\\xf9'w\\x10rd\\xa1@\\x8a\\xb5\\x1bW2㓦\\\\\\xee(\\x9e_\\xf0\\r+\\xfd\\xe26\\xbf\\x8c\\x9a\\xfa\\xa7Ԧo\\xc6\\xe6C\\xb3\\x8b>i\\x8c\\x1a\\n#\\x9f\\x97\\x9e_/\\x81<\\x88\\x03eyLRg\\xd0\\xe0qF\\xd0\\n\\xa0\\x9d\\U000d89cd)C\\u007f\\x9f\\xd6\\fӒ\\xdbu\\xbaC\\xa7\\x9ao\\xe6\\x1df\\x15\\xc3B\\xb3]s`/ϯϥ\\xf4T\\xe9\\xc6ͩ<q\\x94L\\x01Zx4\\xae\\x8aΌ\\xf3\\xa2\\xfc\\xa0_\\xc9\\xee\\xc9Ȃ\\xe3\\u05fbd\\xf2\\xeaZ\\x85\\xb8ղڞ\\x91\\xed\\xf4\\xec`Le\\xadR\\xad\\xcf,S\\x1e_ؕ\\xa9\\xfe\\xf6\\xccb\\xe4٪lz\\xa6.\\x15}Q\\xc9f\\x9c+\\xea\\bݲ\\x81\\x03t\\x80L\\x88\\u0558(dD\\a*\\xc3[kB\\x9bmU\\xda\\x15\\x8b\\xd7EG(\\xc8\\xd9-\\x90YNF\\x06\\x92 \\xe4\\xdfc.\\xedp\\xc8ɖy\\xb0\\x164\\xee\\x117\\xe8/\\v\\x8a\\x99\\xb2L\\x8c\\xa0\\xa3\\xd4\\x15\\x89\\xab)LA*GYɖ\\x92Lq\\xb3iY\\x11q\\xf0\\x1d\\xe4\\x82\\xe0\\x13\\x10\\xb8\\x14\\xb3\\x9f\\f;2\\x19\\x99\\x8a\\xfd\\x862u夗\\v¬\\x97T\\x1c*s\\xcfas4\\x82\\xfa{*\\xa5\\x96\\x99\\x94\\x05\\x05=7\\xb2\\xa6`,\\x12\\xa1\\x9b\\xddd\\xca\\x10\\xb4\\x94\\xebn\\xa6\\xb0\\x84\\x89\\xba\\x8c|\\xd6TR\\x049i\\x99\\x94\\xc8\\x16,\\x90$\\xca\\x04\\xcb#ĳ\\x04F\\x15\\x890>\\xce\\xf3G\\xd0#?\\x91\\xb8\\x9d\\x8f\\x01\\xfa1uL<\\xba\\xc4\\x03\\xebx\\xd4+R\\xd0C\\xa3ha\\x93f\\xc3\\x16Hl,\\x92\\x84\\xfedNc\\xd1ð\\xd9V\\a\\xa5\\x00\\x06;\\x8c\\xa8Uy4\\x1c\\x96\\xd8\\xf3\\xdb\\x05\\x91\\x93\\x1d*\\x9b\\xb1\\xee\\x9d*\\xa6t\\xcfO\\x8eU\\n\\x13I\\xdf\\xd32\\x02VW\\xa6N*GT\\v\\xeeYW\\xb1\\x80\\x10H|0\\xd1\\x05\\x1a\\x81\\x00\\x00\\x11\\xa5\\x18\\xf5\\xb1\\x8c\\xa1\\x92\\xec측\\b\\xa2\\x04\\x02C\\xb73TJ\\x8b\\x02#\\xcc\\vj\\x9e$\\r\\x93*QtQ\\x95T#O\\x85\\x82\\x01_\\x04C!\\x94\\xd9*Q\\x89\\xa0\\xdbI\\x1b\\x04\\f\\xd1eI\\x16Db8\\xaa&2\\x9aZ\\xf125[Jֳ\\xdeJ\\x8a\\\"w\\xa8i\\xe9\\x84(\\x9a\\xac\\x13Q\\xcf\\x04\\x81@\\xd4\\x17՝\\xb9\\xf3\\xa7\\xd5\\xc8lΰ\\xfeOkS\\xe4Em\\n\\x9f\\a\\xe6\\xd4^nS\\xf4g\\xb4\\xa9+\\xb2\\xf0N\\t\\x8a\\x96\\x04\\\\+ӟhZ\\xc6Lvc˒l\\\"\\xf8\\x96re\\xbb\\xa2?\\xb3Y]\\xd9徬\\\"\\xb7\\x11<[\\x81\\xbe\\xb8\\x81er\\xeb\\xedK\\x90\\x19<CI\\xb8\\xa2qI\\xcaO\\xb4-ʹ\\xcc\\xff\\x8c|\\x84W\\xa4J\\x10\\x1e\\x1b\\bw͕$\\x9a\\x05X\\xe1h4\\x94ϛ\\u0380\\f\\x86\\xeb·\\xafʌ\\xddek\\xb9Z\\xa3\\x1b\\xba=o喌'kN\\xd6y\\xf8\\xa3\\x0f?|̮\\u05cdmk?\\xbc\\xf6\\\\}l\\xe5\\x96\\x1a\\xf95j\\x89\\xab\\xc7\\x06Ky\\xb7\\x9aW\\xad[Vr;}\\xdbt;\\xc3\\xe8\\xd8ð\\xb9l(õ7\\xff\\xfeu\\xc9[V*\\ac\\x0e\\x1c\\x11\\xf4\\xdc\\xe7@\\xce'xn\\xc2U`\\xff݈\\x99\\a\\x9dHF\\xba\\xc3\\xcb\\xffЂ\\x9b\\xc8|x\\xf9\\xbf\\xd2\\x1c\\\"M\\xe2\\xe5\\u007fdcD\\xc6\\xc4\\xcb\\xff\\x91ˁuS\\x0e\\xa2\\xa1\\x10\\x05`\\x95\\xd7\\xf8-\\xe1=\\x9b\\xdf041\\f\\xbc\\xfc\\xb4kv\\xb6hl\\x19$\\xf7\\xf6e\\xa6o\\xe9\\x18\\xc9\\xe9\\xbc\\x1b\\x85\\xa2\\x1e\\xea\\xb8Aaڵ\\xba[\\f\\t7ر,\\x19[\\xbafr\\xba\\xe0\\x05\\xa1\\xa0\\xfd\\xf0;\\xdf\\xf9\\xce\\u007f\\xe5?\\x9f\\xfb\\xdc\\xe7\\by\\xfd\\r7\\xbc\\xfe\\x86\\xef<\\xbea\\xab$\\x1cF5Mut\\\"8\\x8eζ\\xee\\\\?\\x8e\\xe1M\\x17\\xfc \\x14MU\\xd7\\xc5\\xc8\\xf7\\xf9\\x99\\x16u<S\\xf1b\\xe2\\xc2\\x05\\x92\\xb8\\xf0\\xfa\\a\\x1e\\xf8\\x1f\\x0f>H\\x0e\\xdd\\xf1\\x9d;\\xef\\xfc\\xf6\\xc2\\r\\xbbv\\xdex\\xe3\\xce]\\xb1\\x1e\\xf9&\\xf4\\x81\\x8f\\x02\\xf2\\x9eA\\x96q\\xaf+W㨭n\\x10\\x0fO#\\xa3\\xb8\\xa5\\xc2k\\xee\\x03X\\x1a\\\"tjv\\xa3\\xa1[\\x1d\\f\\xbbn\\xaf9\\f\\xaf\\xf9\\x8c\\xfc\\xc9\\xfc\\xe4\\xe4\\xb8Q\\x1f\\xa4&ֶ{c\\xa9\\x8c\\xedh\\x9a\\xaaʅV\\xb9H\\xb4\\\\\\xc6[\\xec\\xfc\\xf0\\xcf5\\xfa\\xa9\\xb6\\xbc\\x85\\xdc\\xef\\x8d翖\\x1f\\xf7\\xfa\\xf5?J\\x8d\\xa7\\xe6:\\xb7.\\xefl\\x8c\\x05\\x81i\\xb0\\\"\\xedJ3)\\xa2gwom\\xbf\\xefɵ?\\xb7$\\x12\\u0378I\\x9f\\xe7Y?G\\x13\\xf0n\\xb5\\xc4\\tx\\xab\\x0f$\\x1eO\\xbc-\\xf1\\xfeć\\x13\\u007f\\x90\\xf8o\\xa0\\x03\\xd0ҍ\\x8du\\xc9g\\xbc\\x98\\xf7(\\xc1.掋\\xfdg\\xb1\\x12o4\\xc3!\\x0f)\\x8f\\xb3\\x8ax$q\\x9b\\x03\\x00\\xdeY}\\x99\\x17\\xa3\\x8fgj\\xf1\\xebEi\\x19\\xf5\\x86\\xa3T\\x828#\\x935\\xe4Q\\t\\x11N\\xa1\\xdd\\x1f\\xc6c(\\xf8\\xd4\\xf8\\\\\\xe3\\xa7\\u007f\\x1f\\x05\\x16\\r\\xf9\\xd0>W\\xc0\\xf1\\x1fO$\\x8a\\xc9uxZB\\x81ȃ\\xafk\\x0e\\xe0\\x1aI!\\r\\xcfu\\x0fd\\bhTGUK\\xaaRRUG5\\xe5L\\xb1\\x92\\xb1\\xed\\x92_+\\x0e,YM\\xd6\\\"\\x97\\x01\\xd2g$H\\xefnj\\x8a\\x9b\\x8e\\\\\\xc0\\xa8Ҵ!k\\xa6\\x9dY\\xfb\\\\2\\xe7)\\xb6f\\x95\\x14O\\xf6\\xa7\\v\\xa5\\x9c\\x18HJo8n\\xb8\\x86\\xc0dQ5ڒ&\\xa1_\\xd7h\\xeb.L\\U0010e061\\x9c\\xc6~gv\\xa9\\xbc\\xeb\\x14+\\xd4+\\xaa\\x8b\\xe7WT<\\xbf\\xab\\x94\\x1aFw|\\xba2~\\x84\\x15\\x82H\\x11\\xa6\\xc9\\x19\\xd7\\x04\\x1c\\xaaʯ/\\x1d\\xf4\\x92\\xd3p\\x95\\x96b\\xf1\\x1f\\xccK\\x8b\\x88\\xa4f\\x15oXv\\nA\\xa7_\\xb3\\x15\\x19\\xae\\xb4Rj\\x90\\xa4CE\\v\\av\\xc7v(Vx\\u007f>\\x8al\\xd5\\xd1ߔ.\\xe7\\xb7\\r\\xaa \\xf1B\\xaae\\xfe\\x18\\xaeK-I2\\x83\\xe6]b*\\x83\\x19\\xec\\t%\\xbe\\xf8\\xcao_,\\xccdoݓNw\\x16g\\x8e\\xe5]\\x9b\\xff8\\xd9\\x03o\\x99X\\xaa=\\t\\x8a\\xd3\\xf7Ư\\xac\\x19\\x8d\\xb5k\\xda\\x1b⠸\\xab\\x14S\\xec\\xe3\\x01\\x99\\x91\\xcf/\\xf6j\\xd4/S0uch\\xf0\\x89\\xea0O\\x1f\\xd8%\\x8cg\\x9c\\\\`L\\x97\\n~\\xb9\\xd2\\uebac\\x90L\\xb5Z\\x83\\x9f\\x91z\\xffAqXյ\\xc9T\\xde\\frNi\\xc6+\\x97Vn^\\xb9\\ri \\xabW\\xea\\xa0-?E\\aq\\x1a\\xe7je4\\x90\\xd4\\x1f\\x8c\\x8afF#Z\\x80\\xc1\\x162\\xe8\\xac+\\x98\\x01y\\xb3_(\\xf8k\\x1f\\xc0O2\\xa3\\x901S\\x91\\xea\\xa9\\\\\\x85\\n\\xa6\\x9f\\xf3LC\\xb1\\x916\\x8d4\\xf2\\xee\\x84\\x19\\x96d\\xf2\\xf4\\xa5\\x8d\\xaf\\xf5\\vk\\u007f\\xfdFP!Hc\\xeb\\xa9.\\x187\\x96\\xa3}G1,B\\xc4i0%\\\\K\\x00\\xfb\\\\\\x03\\x19\\xfb\\xdb\\xd0\\x0f\\xb7\\x01\\x92^M\\x1cH\\x1cI\\x1cK\\x9c\\x82\\x1ey>qW\\xe2>\\x1e\\xbd\\xefW\\xd1|\\x1aM\\\"\\x9cT\\x1bm4\\x051\\xa3\\x95\\u007f\\xce\\x12\\xf8\\xect#\\x1cm\\xb6I\\xd4\\x01\\x89\\x8a\\xc4c1a4\\x0eq\\r\\x05\\f@\\x8bf\\x89\\a\\xffE\\x02\\x87\\xc1\\x04Ԩ\\xdf\\xc4\\xcd\\xc3%\\\"G\\x9cH:D\\xef\\xbdM\\xc8o\\x11\\x8d\\f)\\x05\\xc3`;\\xa59J\\x8e\\xc2-n\\xa56\\xa1\\xc9l@\\x84l\\x83d\\x89\\xf0rJNQF+5J\\xaa\\x84\\xa6\\bY\\xa0d\\x17\\xf9Û\\xack\\x8c\\x97\\xf9\\xb7}f\\xc5;4\\xbfl\\xee\\x9aܤ-\\x1e8(^}m\\xb6@\\xc2\\x14=#n#'\\xd82\\x19\\a\\xc3fU\\xe9J\\xff\\x9d졠v\\xad2\\x1dP\\x9a\\x9a\\xa1\\xdb\\t\\xd9I\\x0e\\x00\\xf6H\\x93s\\x94\\x9ay\\xfa\\x04%\\xcd)B\\x1f\\xa7\\xc4M\\xd3j@\\x88S\\\"\\xa4FH\\x83J\\xf3\\xd7o!\\xee\\xeck\\x86\\xe2\\xfc\\x13\\xed\\xb5\\u007f\\xdarݦ?ٲc\\xf3c\\x8b\\xbb\\xb6LE;\\\"\\x99\\xd8>\\xa8\\x8c\\xd9\\x1d\\xab\\xdb\\xc7\\nYB+٥\\xdaV\\x8eOdh\\x1b\\x9f\\x81\\xb6\\x91\\xc1\\xbax\\xf5\\x10\\xe5G\\x93\\x8d\\xd0;\\x97T\\xdc\\xeb\\u07fc\\x1c\\xa5\\b\\xad \\x1e\\xbf\\xe1\\t\\x93\\xcf\\x12\\xc9\\x19\\xcb-\\xd47ݿ\\xf7\\xa1\\x03\\a_\\xba\\x1ae\\x14S\\x96\\xeeu\\xfbss\\xdd\\xee\\x9cgɆ\\x1b\\x98\\xbabf'\\xcb\\xe3[\\xd4l%Zt\\xc6\\xcem\\xbd\\xfa\\ueece\\x9d\\xd9Tc\\x9a&m\\xaa/\\x1d:p\\xe0\\xd0\\xc1\\x03\\x92\\x99\\xf451\\x15e\\xe3\\x18Ph\\xb5t\\x91\\\\H\\xa4\\xe0\\xcar\\x89㉻Ao \\xee\\t\\xd7\\xd9\\xe0\\x9b\\xb1\\xe1\\x8d\\v\\xbc\\xa8\\xdb\\x1f\\x86\\xbc\\xf2\\\" &\\xb0JZ\\x16\\x99\\x11\\x861ɳ\\x85\\xc4\\xd9htai\\xc4Ei\\x96\\x14\\x04\\x8b\\u0096\\xc1h4\\x8a\\x17\\xb6\\xec\\xad\\xe7\\x00]\\xbf\\x95l7EA\\xb2\\xf3=Z(E\\xa6$\\x88\\x8f\\x90ӂ\\xa2k$\\xa5[EG\\xd62\\x96\\xa2[\\x86\\x8a\\x95\\x91\\xb0n\\xb3\\xe2:\\x82c\\xa9\\x8a(\\xbb9S\\v\\x9c\\x94\\x89\\xbc5$U6\\x98$\\b\\x9f,\\x15h/o\\xc3Q\\xcc\\xedd\\xab\\x03\\a6\\xc9٥knZ\\x86\\x03Hbm\\xeb\\xf5\\xed\\xd5z\\x06y\\xbb\\xd6>J\\xc8\\xfb\\xa9\\x91\\xa4\\xc5ű\\xa6!\\xca=\\x17\\x0e\\u008c\\xc0A\\xbe'*\\xb8\\x99\\x94\\x94\\x9d\\xca\\x06\\n\\x15\\xcdj}>\\x1fM\\x14\\xb3IS\\x10\\xbc\\xf1R)\\xf2\\x95\\x0f\\xd7W\\xdb7,\\xd7\\xc0\\xbeU\\x8d囮Yr\\x98p9\\xcff]\\x0e\\xe57\\xda2\\rd\\xc3.b\\x92Kh\\xd3\\xce\\x12\\xe6;\\x8d\\x8c\\x91{\\xa9\\xae\\xfc\\x93I\\xf4-of\\x02\\xa1\\xf7\\x81P,,&ő\\xa0I\\x1b\\xbapZ4\\x04\\xef$\\x98\\xff\\xf4\\x96%\\x96\\x9f\\xd1\\xfc\\x17\\x9dG\\xdfp\\x9eaU\\x1e\\x1dv\\xec\\xeaߺzt\\x90\\xdfz\\xef{\\xe3\\xd8\\xefu߲\\x0e\\xc8 \\xcb\\xe3\\xa9\\x16\\x13\\xbf\\x89\\xad0\\xa6x\\x87\\xee\\x1a\\xf1\\xd2\\xecXȍ\\x17skb\\x9c3&\\xe6\\x14\\x98\\x85\\x85G\\x87\\x8d\\xb8|\\xcd:s\\xa8\\xc7\\xf3id\\xac\\xb2\\xda\\xe3\\x01\\x10}\\xb4\\xaa\\x1bh\\x92qv\\xf5\\x88\\xe7\\xf64\\x9a\\x15\\x1c\\xe6\\xc1\\x97^\\x91{m\\xac\\x8a&[\\x02>\\x90\\x88\\x8fҢ\\x8b\\xa2\\x05\\xdav\\xd0\\r\\xb1\\xa0X\\x13D\\x0e4\\xa2\\xaa%\\xf1lf\\x1e\\x00\\x83\\xd9cdZQ4E\\xd1e@\\xbb\\xaa/\\xc5%\\x04\\x8a\\xf0\\x89\\xdf\\x0e8\\x9a\\x9d)\\xf30&\\x91S\\xbc\\xa9\\xe3eQ\\x17E\\xa6)\\x8f\\xf2\\x87p\\x90\\xa4\\xa1[{\\x92!\\x88\\x1a\\x9ao\\x19\\x91\\xe6#=p%\\x95j\\x96jF\\xa2\\xe2J\\x82\\xa5K\\xd0\\x18\\x051d\\xa0?\\x01\\xd9:`$\\x8a\\xe9\\x8eD\\x05\\xb0d\\x9c\\xc8\\x04s\\xae)\\x8b\\xa2\\x9e'\\xa2\\x885\\xc4\\x15Ya\\\"\\xd6s\\x9d\\x8d\\xbc\\xd3\\xd6L29\\xd6\\xfc\\a\\xb8HU\\xd5T\\xbcT\\x15k\\x1d\\xc0\\xe5\\xe9x\\x89\\xf0\\xe3\\x195\\xbfPd \\xb6d\\x01\\xad\\x9b\\xa41\\x94$]R\\x98Lc\\xce\\xeb\\xbf\\xd4,\\xea\\xdbp\\x05\\x064I\\xa44\\xb2\\xf2Q] \\x92\\xa9Z9XN\\x92v\\xa1\\x04\\x80^\\x96\\x89\\xa9\\xa8\\x06\\x91\\x17\\x02\\x91\\t\\xb6\\xe3HL\\xedz\\xd0\\xfc%=\\x90u\\x1fn\\x9e\\xb8\\xaa\\x963se\\t\\xe9{\\xa8e\\xb8n2\\xa9XJ\\xdf\\xd0\\xee\\x9c\\xc8ի\\xe9h4\\xae\\x12繝\\xe06e\\x03Р\\x02&coFi\\xf6š\\\\\\x9dQ\\xe2h\\xffagQ\\x19v\\x99\\x1fUg\\xa0E\\xc4\\t\\x02`^\\x92\\v\\x1a\\xfbȗ%\\x17\\xf9\\xa8\\x04\\x01+1P\\x01٫\\x14G\\\"\\xc2-\\n\\x00\\x04\\x01y\\xf1T\\x8d=)\\v'\\xf09`\\xa9\\x04,\\xe3 \\xd0\\f\\x81\\xf7$*\\xaa\\x1cl\\x9f>ix\\xa6\\xc5\\f\\xc9\\x16\\xcem\\xde\\xc3X\\x86;Ơ\\x8b\\xca\\xd2\\xd7\\uf167\\x80\\xec%\\xc8ؗV\\x8cGD_M\\x02P\\x02\\xbb\\x90}@\\x88ӒL%\\xc9\\xf6\\x1a+R\\xa0\\x80\\xc9\\x02b\\xfd\\rM\\x91\\x9aRJ\\xada\\x99\\xbf\\r5>m^\\xe7\\x14yZ\\xb7'\\x0e#\\xa3\\xfd\\x8b\\xf5\\xb2\\x1cqFŪ\\xdc\\xe0\\x84<\\x9c\\x1d\\xb1\\x83\\xc5Tz}\\xac8_\\xadLb\\x02\\x04/U\\x86\\x1bbI\\xc7f\\xe0\\a9\\x829\\x03\\xe8V\\x8b8'\\r\\xa6+o4\\t\\xb3\\xfb\\xcao\\x9b\\x94\\x990\\x997\\x02cL\\xd2flL9\\xb2\\f\\x81\\xa4\\x9e&\\xc8N\\\\,\\x10\\xd5\\b\\x1f\\x80\\xe6!\\x92\\xab\\xb1\\xd2;\\xbb\\xd2\\xd8\\xfb\\xf25\\x17.\\\\\\xd8<\\xee]\\xb8\\xfa\\xea\\xe3ǭ\\tWK\\x82\\x18'7\\xd6t]\\xd5&.(ڵm\\xf4\\x18HGEQ\\xa2ٲ%M\\x98\\xa3\\x98\\xfe\\xefS\\x06}}\\n\\xd0\\xd0&\\xb0\\x9f\\xee\\xc6\\nU\\x84\\xf3\\x89\\xf0x\\x9b\\xca\\xc8U\\xceB\\x8c\\xf4B\\xc1\\r@:\\xe2u\\xab\\xf8\\xaf\\x8c1i\\xc8&\\x8a\\xab\\x18\\x18\\x83Q\\x05\\xfd1\\x8dh4\\xf4\\x8ci+ а\\xa8\\x19\\x8e\\x14\\xe1\\x18v\\\\\\xa2\\xb8\\x89\\xc5\\x00B\\xf2\\xee\\xc1\\x1c\\x13\\x99;\\xec\\x1aJ2T\\xd5]w$\\xb1[B\\xb3\\xa5z\\xae$\\xd0\\x1d\\xca8\\xa8\\xed@+˦l\\xbe\\xfcC:t\\x97\\x02\\x11ƙB\\x88O\\x9c\\xab\\x86 \\xec\\x8db&/K\\u007f\\xd7Z\\xb8\\xe7\\xd0\\xea@\\x11S+\\xe9TH\\x16Vkj\\xb2u&\\x15y \\x99\\xbb\\xcb\\xe5i\\xadR.jj\\x8d<\\x9a\\xbbc\\xb1\\xec\\xf5v\\xe4\\x14\\xb0k\\xaf\\xde\\xe6\\xf5@O\\xb8\\xf6\\xd6L:c\\x84\\x92R\\xaft\\xc6\\xf2)\\x93Ϳ\\xc7\\ttv\\xb3m\\xca\\u07b4i\\xfa\\az\\xab\\n\\xa1r:;\\x1e\\x92\\xdbS\\xd7\\xcd\\x1d\\xba\\xb7m\\xa5=\\x17\\x00UV\\xca\\x16\\x0f\\x94hƶ\\xacd\\x8a\\xa5T\\x89\\xa4\\x9a\\x91#\\b\\x978\\xbb\\xb1\\x06\\xa0\\x93\\x18\\xf2\\xda\\xcd\\xf8\\xfa76\\xa5$\\x17\\x8b\\xed\\x1e\\x92\\x00\\xb3(\\x0eȆ\\x05\\x95\\x16ZZH\\x0f̽\\xb2!HϊM\\x1a\\xbcJ\\x02\\xe9\\xfa-\\x1e\\u05cc\\x85\\xe008\\xb7\\xdd\\xc1\\xd8?\\x00\\x80\\xd7g\\xa6\\xd2s͵\\xb5\\xe6\\xdc\\\\\\xf3\\xb3\\x13!(\\x1d\\x10>^\\x90T5\\xdfL\\xcd\\xfa\\xd0j$\\x90]\\xa2\\xa3ZI\\xd0a\\xb5W\\xc8V\\b\\x10\\xf1\\xf0xP\\x17q\\x15l\\xe9\\x05F\\xbc\\xa1(\\xd9:%O\\xa7\\xa72\\xf1\\xe1\\bmέ\\xfd\\xe2\\xca\\xe1@@G\\xaf\\xde\\xd0%ɘ\\x1d7\\r>\\v\\xdd3\\xeb\\xa2\\xf3\\x06^\\x88f\\x04\\xba\\xe2\\x87{.o\\xa9]\\xdeP\\xd67\\xc6~$1\\v\\x81\\xc8<\\xd7\\x17\\xa4\\xf8\\x90\\xc77.\\x82\\xf5\\x13k\\x05̋\\x1c\\x90\\xe7\\x8e/1\\xf1\\xcc\\xce\\xea\\xa9S\\xd5\\xe3K\\x92xvg\\xeb7z\\xe2\\xa1\\xcd\\xcd\\x1dST8\\xb4y\\xe1\\x14y\\xfa\\xf8\\xe2\\xb1]7\\xa9\\x92\\xa1KǷ\\x1c\\x87o,\\xfa\\xeb\\x85\\x13\\\"\\xad,77\\x1f\\x17\\x85\\x03\\xeb\\x1c\\xb9\\xb1\\r)\\xf3\\xbe\\x1ds\\x1a$\\x12\\xeb\\xbai=!\\xbd\\x1e\\xc9\\xcd\\\"Af\\xc58\\ab\\x94{A\\x13\\xef\\xfa\\xe6\\xbb\\xde\\xf5\\xcd\\a\\x1f\\xfb\\xccc\\xf0\\xb7\\xf6\\x85\\xe3\\xf5\\xe3o\\x9f\\xb5;m\\xab\\x1b\\xb2\\x1d,\\xb7\\xb3\\xb0\\xe3\\x0e\\x1c\\\\\\x9b\\xc0\\x8d\\xdeu1q\\xed\\xe3\\xb8\\xe1\\xf3\\xf5\\xe3\\xf5#ם;\\xf7\\x12\\xcd\\xcaۯ(\\xec\\xc8g\\xa2!\\xcaR\\xe3\\xe2\\xda\\xc5\\xcf\\xd0$\\xf9BBL\\x18\\xbc\\x9ap3\\xd1\\x02\\xf4\\xbf#\\xb1?qGⓉ\\xdfI$\\x06!k\\f\\xa3\\x91Z\\xa5\\\\͂\\\"Ħ\\x81*\\xb6\\xc6\\x1a8\\x92\\xca\\xc7\\\\y\\x1c\\\\\\x81HX͈WHn \\x8f\\a\\xee6h\\f\\xb8\\x8f{\\x86\\xf05\\x98S\\xd1b\\x01\\xe3\\xc32\\xe8\\x94ᡣ\\x83\\x10S9y4T\\x13U/\\xca\\xecF\\x9cw\\x8d\\xefD\\f\\xb8\\xc2\\xe5\\t\\xb7\\xa0iQ\\xff\\xf2j\\x86X\\xfdǏ#\\xed\\v\\x14\\x13gG\\x97r\\xbd\\xe8\\x8b\\xda/\\x18\\x8ab誼\\x14\\t\\x14\\x14\\x16y\\xbd-hI\\x1b\\xe4\\x0ei\\xdbIQ\\x12\\x1dW\\x92\\xbe\\xa2[\\nH/K&wH\\xa0bA\\xdek\\x18]9)h:`\\xf9\\xa3\\x86\\xad\\n\\xa0Q\\x15\\xc1w\\x8a颺++\\x14v\\x06\\x80\\x89\\x1ab*\\xa86\\xfd\\x9b'\\xbaGŢy\\x1d\\x1d#t\\x92\\x88\\x05S\\x91%C6-\\x8b٪\\xe2\\x81n\\xd6tU\\x91S\\xbe\\xa3\\xd2q\\x8cC\\xa69Ў>#\\xb6\\v\\xfd\\x89\\xa9\\xb4N)\\xa8I\\xc9\\x0f,Q\\xf1@\\xd58\\x9e.N\\x05b@\\x0f\\x81)\\t\\xca\\xd2 ߂քj\\xea\\x9bz\\xd2\\x16\\xf5\\xa4\\\"\\xff\\x06X\\xe3\\x18\\xe8\\xaf(\\xfb\\x14jX\\\"\\xdc\\xdao\\x10Yb\\xfc\\xe2A\\xf3\\xcc\\x03\\xe8\\xd44q\\xb3*\\x98\\x0eh!\\xf3\\xa5\\xe5\\xbdA\\x92Ԃ\\x14t\\t3\\x1fd\\xa4\\xceRX]e\\x9dZ\\xc9\\xdd\\xdaז\\xcfjLwo0\\xf3\\xd0\\xe9\\x00e\\x18\\x86 \\xa3\\\"WX\\xae\\x92\\xcbR\\x1f.\\xd7\\x11_B5Iԥ]\\x82\\x0e\\xdb\\xd2b\\xa5@\\x15]ګh\\xbe\\x83\\xb0E\\xbd\\x8a\\xc1\\xb5\\xc0u\\xdb\\xfe\\x95\\xe3\\x01\\xd3В\\xf6s\\x8d5\\xaa\\xcd\\xc4\\xe5/(b9\\x88\\xf3\\r\\xe2\\x9c;\\x9c\\xef\\xc4\\x18\\x1d\\x87\\xb7^lw\\xba \\xb6\\xcb`R\\xb8`S\\x94;\\x03r\\x15H\\x12\\xb9\\x10\\x9acn\\xa6\\x89!\\xaf\\x96b\\x98^\\xd63\\x88PM\\xa7+L6\\x1b\\x9b7؞\\xb7)l\\xed\\x038\\xd6E\\xae\\x05!\\x1d\\x88\\xc2kE\\xc1r\\\\2\\x052\\xc02\\x94oj\\x0e\\x96\\xe8t\\xd5$5M\\xc1y\\xc3\\x15f轸\\x0f\\xee\\x0f\\xef\\r\\xef+u\\xf1\\xb3\\xe4\\xc3\\xd0o\\xc7\\xc1\\x06ډ\\xb1\\xfb\\x16\\x82O\\xee\\xa8i\\xc6\\f\\x0e`\\xed\\xa0E\\b\\r\\x9d\\xeb\\x95v\\x01\\xccB\\xe8/\\x8du\\x1fd\\xe0\\v\\x1d\\xac\\x9c«cF\\b5ɯ\\x9a\\xb4\\x98'ڸ3\\xd1\\xf4\\x95\\xb0]l\\xe6\\x9bՙ}\\x93]\\xbb$\\x9b;\\x1c\\uf346\\xa4o\\xba\\xcd\\xf2\\xa6'\\n\\x85\\xc0\\x8a\\xac\\x1f\\x162\\xcd\\xfc\\xae\\xad\\x83ry̡\\xa9\\xd9\\xe7\\xde\\xe7\\x99I\\xefaZ\\xaa-N7\\xa3͝j\\xa6YR\\x8e\\xa5gL\\xb3hm\\xb1\\xf4\\xc3J\\xc9\\xd8Έ\\xff\\xc6\\xc2D\\x01v\\x0e\\xd6.\\xb8c\\x91\\x95lnm\\xf4'\\x9a\\xa9\\xb9\\x19,\\xa0'\\\\\\xbcx\\xf1\\x9f\\xe8\\x13\\xe4\\xad`A\\xb59[7\\x98Em^\\x9a\\f^\\x13\\x8b}\\xf2\\xdd\\\"؎\\xd8Y;]\\x1e\\xa1\\xb2Ί\\xd0\\x18\\xc6\\x12\\x13\\xee\\xa8\\n\\u007f\\x18\\x17\\xdeB=\\xdc\\x01]\\xbaD\\n\\x94l\\x9b\\x99:-\\x93{I\\x92\\x92\\a_\\xa6\\xc8L\\xa2\\xa4\\xfb\\xb4\\xf0\\xf7\\xf0\\x0e\\x01pn\\xda\\xe4\\x19\\xb2\\xfby[\\xa1\\xf7\\b\\xb2\\xfd\\x94\\xa6Ї\\xa1\\x8f\\xd8,I\\x84\\x9f\\u007f7\\x11\\x89\\xf1vAR\\xe5\\x85y\\xcf}P\\xf2\\xcc/M\\x8cW\\x04FRB\\x9d!\\t\\xe3\\xfd\\x0fa\\xc1\\x1b\\xb2\\xede\\x02\\x99\\x14\\x01[\\x11Q\\r~\\xe0\\x89\\xa0\\xf6\\xc1\\xbc\\x01\\f\\xb1\\x8f\\x87E\\x8b\\xa4R\\x01\\x18&\\x0e\\xa0\\xa9h\\xab\\xa1\\xd2#h\\xf1\\xc49\\x95\\t\\x8e\\xaf\\x90\\xf9\\xf2\\x15\\x89\\xd7%\\xde\\xff\\x93\\xd8*\\xe2\\xc9\\xe8<\\xe9dTb\\xa9\\x00\\xaf\\x13\\x1fCs3ET\\x81$\\x10<\\xd4}\\x91H\\xbd\\xc6\\x04O\\x03\\xe3\\xe3:X]\\xa0\\xdc\\x01)\\xee\\xf5{\\xf2\\x04\\xe5\\x1e\\xb9\\x19\\xc2\\xfd\\xf4\\x18R\\x06\\xbfȗ\\x0f\\x8f\\xb2\\xdf\\xc4\\x1aY|\\xac\\x03Dg\\xabQ\\x99\\x91\\xfa\\xdcϏ\\x94\\xdc!#\\xdfO\\x1aFrm!\\xa9\\x1b\\xee;-\\xb0\\xea\\x17\\xec \\xa0B{{N\\x01\\x00O\\xa4\\xaa,\\tL\\x88\\xcb}\\xe8\\xca\\xf2\\x165T,\\xd9a\\x8a\\xa0\\x0eIW\\x14T\\xf2\\x95\\xaf\\x10U\\x00\\x15*\\xaa\\x84\\xbc\\x81\\xa8\\x80\\xff-\\xb0G\\x89Ϣ\\x89|\\xda\\x14\\xd3*+\\x8dO\\xfb\\xf0\\xa8\\xc0\\xf6ԓ\\x82\\xd2S\\xebU5J\\x19}\\xc7\\\"k\\xdf`\\x82,0\\x100\\xd0qv\\x02\\\"o\\x90\\xa7\\xe1b^\\xe1\\xe9z\\x92\\xbc\\xc65>\\xa7\\x814Rd\\xbd\\x19\\x16\\xcbB\\x92\\x81\\x82\\a1\\x04\\xd8٪dl\\xb5h\\xa5uWU\\xc5LQ\\xcad\\x19\\x80aAN\\xd9\\xff\\x13\\x8d\\x034)0\\xa8\\x88\\x9c\\x82\\xde!{\\xbbMYq]\\xb5\\xd3)\\xcfx\\x98\\xf5M1\\x1a\\xd5Z\\x88\\x1c\\xdb\\xebv24\\xf2\\xf6L#\\xf5\\xb5(11\\x90@\\xed\\xa0\\x05\\x93\\xae \\x8f\\xff\\v\\xf0\\x0e\\xe1\\xae@\\x8f\\xa6\\xc0\\x96\\x84\\xe7\\xb8HC)\\\\\\x0f\\x96Z\\xe459\\a_\\xd9\\u007f\\xf5T\\n\\xfeI\\x99\\xac\\xbcru\\xcb\\xed\\x8d\\xfe\\xb1\\xb4Y\\x1b\\xfe\\x02Q^\\xd2+\\xdfp[\\xaft\\x9di\\xec}d\\xb57m\\xedjw\\xa3\\xf2Ѹm\\x8cr\\xbe\\\\@\\xde\\xd8\\xd7\\xf7o\\xf0\\xccq\\xed\\x94'\\xfe\\xd2O২\\x8b\\xb19(\\xc70\\xf5\\x18\\x8d\\x10\\x99g\\xcc\\xc4\\xc8\\x14\\x13h\\xe4u\\xa2\\x99\\xe7V{\\xbd\\xd5\\xdeρD\\x1e\\x17\\xc4\\xf7:Y\\xa7\\x9aZ\\xfb\\xedT\\xb5\\x9az\\x15\\x11<\\xdf\\xf7@\\x00O+\\xc6Q\\xc6\\x14J\\xe1\\x11k`\\xa10\\x87m\\xbbuu\\xf5\\xd6U\\xa2\\xf6pox\\xff5*l\\x17\\xe9?\\xc2\\xee\\xf1\\xced5U\\xbdڎ\\x8b\\xd3يaLK\\xd0\\x14\\xa8\\xa0*\\x8a\\x8c%o\\xa5\\xb5U<\\x00\\xb7\\xc3\\x1d\\xb8\\xc7O\\xc0=v\\xb16c\\\\\\x8bQ\\xae\\xc4\\x01j\\xdc\\xe3(\\xf47\\xd3E\\x11\\xd5\\xed\\xa8B\\bW\\xe8\\xa8\\xfd=dʶX\\x8e\\xc65C\\xfe\\xf9\\xfa3\\x92\\xb0\\xdcgr\\xf1D\\xa5\\xd8J;\\x98\\xd3\\xc249\\xfc\\xf9\\x1dTO\\x05cǲ\\\"آL\\xd0\\xf6\\xbd\\xbf\\xb8\\xd3\\x17Ж\\u0092\\x06\\x99\\xe4\\x18yzei\\xed/\\xe0\\u0088\\x92v\\xd3\\xc9L1\\x94\\x89c\\xf8\\xb6\\aF\\x86ZP\\x1b`\\x99\\xa8\\xf9\\xa4(\\xc8X b\\xb8\\xf6\\x81\\x97\\b\\xbe\\x0e:\\n\\fP,y\\vZ\\xd3\\xd1\\x12\\xfa\\xc5\\x1f'Z\\xf4\\x029\\xc0k\\xc0\\xedN\\x1cK\\x9cIܘ\\xb89\\xf1L\\xe2c\\x89/%~\\x1fd\\x99M\\x87\\xf8G\\xe0\\x0f\\xb3Je\\x90\\xd7R\\xd3\\xc6\\xd4\\x15\\x16W\\x06+Hm\\x94\\xd5K$\\xde\\x12Y\\xa0\\xf0\\xc3\\x16`\\xab&\\x18\\x97|p\\r^\\xe1\\x12EgHg\\x91F\\xb0\\xef\\xb0)\\xcf\\xc2\\x0e\\xb0-\\xff\\x93q@\\xad \\xf3\\x03\\xc1Y\\xf8\\xb1\\x9a!&\\xb2\\u0099,\\x10\\xa2\\xfcXq3\\xc0*\\xebq\\x8b\\x90\\x97(\\x16b\\xa8\\xf2QL8$\\xbd Ti\\x15\\xfe+²1[J\\x15\\xcd\\xd2Cf\\xce\\\\\\xfb\\x8e'愠\\x96)SZ\\xcf+&\\x12%\\x8bB\\xb3.\\t[\\x85\\x1a4\\x81:\\xfc\\x0eR%5\\x14\\xf6\\n)m\\x938\\xa6|8\\xab\\xbaXC\\x83\\x10\\xdbv\\xcc\\xec\\x021lA\\x965\\x11\\x83\\x88ߧ\\xd8o\\x87MJ\\U000e9896m\\xb0\\xbc\\xc8\\xd4B\\x126V\\x00{@/kft\\xa9dF\\xc5I)/9\\xb4\\x92\\xa9\\xe3\\xb9\\x11\\xa9+\\xba\\xa5\\x8e[b\\xba\\xc1\\xbek3\\x19^!s\\xefVL\\x99)rEX\\\"E,ܢ\\xeb\\x80ҿ\\x90R\\xfe4'$\\x85<\\xf5iF\\xbc\\xe7>\\xfa =tՅ\\x87\\xe8C\\xc9Z\\x83\\xe4+\\x94\\x94\\xb2\\xa91\\x8a,\\xd0\\x12+R!\\x9b\\x15s4I\\xb3\\x82/\\x04\\x0fл\\x8eќ\\x94\\xa3\\xd7\\n6u\\x16\\xa9K\\x98\\xa63\\xd3#$I\\x1a\\xaaHrD\\x90\\xb7mN\\xaaFcl\\xbfK=\\xd0\\x157\\xdfB\\x97\\xb6\\xd1q\\xc3\\f\\x90\\xb0\\x1f\\x19\\xf6D\\x01\\x8c4à\\x933\\xf4\\xc04\\x9d\\x9e\\xacYMZo\\xd2\\x12Q$\\x05\\xc0\\x9101\\x06{\\x1c\\x04\\t\\xa8(`\\xfb/c\\xa1\\rI\\xa5)Ѡ`\\xc2\\x12E\\xb3-\\x974\\xd0\\x0e]\\xf79\\xa5A\\x02\\f\\x13KX)\\x84\\xf0r}6\\x8f<\\x1c\\x91~\\x0ec\\xf0ks4\\x8c\\x01\\xea#zOĠ\\x8dQ\\xb5\\xbf\\xf0R\\x82\\xdfe\\xd7\\xe8\\x80$Tѵ$\\xe9\\xf8\\x92m˟\\xc6Q\\x83\\xde6_\\x92,W\\xdc\\xe5I\\x98Yo\\xa7>\\xdd\\xc7\\xc5y_ĥnG\\xd1e\\xdd\\x189ɾ\\xfe\\xaa\\x93\\xa7\\x1e\\xc1\\u007f\\xb2ۑ%\\xd5Qޝ3\\r\\u05f8\\xaf\\xa68\\xaa$\\xff\\xdf\\x15\\xbe,-O²\\n_T<fEu5\\xf8\\f\\xdf\\xff|\\xbc\\xef\\xab\\x12W\\xd6iM%:#v\\xd3+\\xa37\\x86\\xd0`\\x19W\\x80 \\xd20\\xf3\\x12,\\xc1\\xe6\\fw\\v\\xcaq\\x90e\\x19\\x85\\xda$\\xdcp\\x9c\\x9eY\\x00Kp\\x96lt&\\x1c\\xf4\\xec\\x94\\r\\xf7\\xe1\\xbcE\\xb6\\xed\\xc5cpw\\x8e\\b\\xaa\\xc1\\xb1D\\xd1\\xdf\\xda\\x05A\\xa5\\x90\\x14~\\xf6\\x9cI\\xb8K\\xb5k\\xc1*I\\xf4_4z\\xfct\\xd9SR\\x8a\\xa3\\x88[\\xcc\\xec;e\\x98\\xc2\\xc1\\x90\\xb1J\\xae\\xde\\x1b\\x8f\\x14\\xe5V\\x95Z\\xe4\\x9cH)\\xb0P)\\x8fj\\xdf%\\x8e\\x81|H$ʜ\\xe3z\\u007f\\xe2\\xfaĝ\\x89\\xd7'ޑ\\xf8H\\\"1䥁0\\xb2J\\xae\\xf6b\\xb9\\x9d'U\\xaca\\x15\\a#\\xadS\\x1a\\xf3:\\x17r7N\\xc5\\x1b\\x01\\xd9f5\\xa8\\x0e7\\xbcO\\xd8\\xe0g\\xae\\x8f\\xa3\\xb6⺣y\\xa4\\xf7\\x89\\x97\\xf4\\xbb\\xeb.\\xea\\x11Y2\\x16\\x8f\\x87\\xf3\\xc4\\x0e\\xf5\\xa0\\xda\\x1b\\xf9+`\\x97\\t\\xd7\\x14\\xd1\\\\!\\xa4\\xc1\\xd4\\xfa\\x94&6)\\x11\\x14K\\x8f\\x92~S\\x93\\x15\\xc3UN5\\x00\\xfc\\xdbN\\xa0C\\x93I٠\\x02\\x9a\\x87\\x15\\xacP\\x01\\x10wS\\x83ȰF3a\\x8dc\\v\\xa35\\x98b\\xa6\\xf4M\\xa3\\\\J\\xed\\xc3\\xde\\r\\x92N\\xab6\\fc?\\xd8K\\x8c\\x9c\\x86\\x13\\xa8\\xbekUE\\xa6\\xc1\\x1e\\u007f\\xc2\\xd4ȁ\\x9e\\\"&\\x99\\xe1\\xa9\\xf6>OQD\\xd7\\xf7ܖ\\x84֎\\\"\\x9d\\tLE\\xd5\\xebc\\xa6\\xa6\\x1a\\xbbn\\x0f\\f=\\x19\\x98\\xc6\\xc1\\x9fXh\\x9b\\xcc\\b\\xab\\xba\\x9e*\\xe9TP4$vqT\\xd3л\\x94\\xaa`\\v\\x893\\xa0\\xf8R \\xda)\\x18>\\xa2\\xbac\\xe4/\\xfeW\\xba\\x95\\xbc31\\v\\xbd\\x10\\xbd}Q\\xb5\\x89\\x1fC\\x86vq\\x03\\x9f\\xea\\x90\\xcb\\xcf0\\xf2\\xa2؇\\xcb=<\\x80\\xb2\\x02\\xf4\\x045e\\x80\\xa1\\x94\\x05\\xb9\\x95\\x9bg\\xd2\\xf9\\xf2\\xeb\\xa2Z9\\xbc\\xa9\\xb2\\x93L,ܜ/\\xb7\\v\\x93F\\xe7w\\xdf\\xed9+\\x9b\\xee}ɽG\\x8f\\x9f\\xfa˳\\x83\\xfd\\r\\xf2o\\xd9\\xec\\xc1\\x9b˵\\xf2\\x1b\\xc2䝻5\\xa5_\\a\\f\\xd9\\xcd\\r\\xc7'\\xb6\\x94\\xb4 ]\\x9e\\xb9*$\\x85\\x1f\\xd8\\u0381\\u05f9nњ\\xea\\xccXJsX\\x9e\\u007f\\xa3b<\\xfc\\x8b\\x84\\xf5\\xb9\\x0f\\xeb?\\xa0ͽ\\x06\\xbe!\\xb7\\xfaD\\\\#U\\xaa\\xf7\\xa5!\\xe6\\x86\\xcb\\xd58\\xa0-\\x92֙\\x1f\\x9al\\x94N #˓D/\\xac=\\xb7\\xf6\\x1cY~d\\xf0k;\\x00.\\xe7\\xaf\\xe9W\\xb7\\xf5\\xbd\\xb5\\u007f\\xadn\\xde\\\\\\x9d\\xa9\\xf4\\x8aﰂ\\xf1'\\xf6\\xef\\u007fb\\xbcM\\xdao{?y\\xfb\\v\\x83\\xaf~u\\xf0\\xd5\\v\\xbb\\x839\\x91Nt\\xa2\\xf1\\\\\\xbb\\xddη\\xee\\xd2å\\x95\\x95\\xa5\\x02ٱ\\xd5?\\xca}\\xfc\\x17\\u007f\\x04xI\\xe2}\\xbd\\x15[e\\x82\\x85Ű\\xe2\\xc2G\\xdep\\x96,\\nm, \\x8a\\xf4Z6to&#m+\\xaf\\xd8H\\xbe\\x9c\\xafH\\xf3R;\\xbf\\xf6\\xd5\\xf5/\\xec\\f\\xc6\\xfbɌZI\\xc9\\xf6\\xa4\\xf3\\xaa\\xb73\\b\\x8cMNo<\\x19\\xba\\xe9\\xfb\\xc8\\xd3\\xe3\\xf9\\xb5?D\\xfe8\\xd2ˏ\\xaf}Py\\xa9,iL\\x92\\x92\\x0e\\x88\\xb9\\xa4x\\x8f\\x94?\\x97\\x0f͢\\xd3\\xdab.\\xebΝ\\x80\\xc9/\\xfe\\xf8\\xe2E\\xb0C^\\rV\\xc8\\\"\\xe8\\xf0_I<\\x8bl\\xb5CND\\x8e\\xd1\\xf3X\\x16\\x15\\xfbf\\x1bK\\xcd \\xebV\\u007f\\x00\\xea\\x19\\x87\\xf5\\xe2\\x82Uq\\xf7\\xb3\\x91\\xd3r\\xd0oT\\x1b,B\\x97=\\x16\\xa2\\xaa`\\xb8\\xfd\\x80\\x0fctG\\x93M$đ\\x9d&\\x06O\\xc3D\\xe2ȧ\\x17\\xc5\\xf4W\\xcd\\x19\\x86!I\\x8d8n\\x04\\xf3sи\\xe1!\\x98Q\\x81q\\u007f\\xa1\\x15c}L\\xb6+\\x10Σ9\\b\\a\\x8d\\x18T\\x8c\\xfc\\x1f\\xc3\\xff\\x02\\x90դ\\xa0VuƂ\\x94F\\xbcqJ\\xa7rAFH\\x87A\\x9a!\\x86\\x19\\v\\x041\\x1b&ɱ0%P߳\\xc1\\xdav?\\xad\\t\\x1dЯ\\x91Fke\\xaa\\xbb:-ש\\xeea\\x86j\\x8f\\xeaI\\x98\\x85\\xa5\\x89\\x8b唢zZ5T\\x05\\x99\\\"\\xbc\\x02t(\\xdb!i\\x16\\x95 \\x12\\xa9D\\xad\\xc0\\x10u[-\\x88\\xbed\\x8a\\xaa$\\xf8vR\\xef\\xbei;%{\\x9f\\x1dJ\\x8cm\\xf9\\xf4.\\xd2{\\xf3\\xac\\x06\\xca\\u007f\\x05\\xc0\\xa2\\xd7kHr\\x98\\x16e\\xfao\\x9a\\xa3S\\x91\\xaa\\xd44\\x14S!\\x99b\\xaeB\\x99\\xe3g\\x04\\x8d\\x12O\\x94L\\xd7\\xcf\\n\\xc2M\\x9e\\xaex\\x12\\xb1\\x93f2$\\xfa\\aE\\xb0/\\x88\\xfe\\xa67\\x01x\\xd7\\xdf\\xf2\\x16\\x1d\\x11\\xfa\\xaf\\x1a\\x84\\x18O>\\tj\\xd5\\x10\\x15]\\x15\\x14*\\x1bR$cy\\x1d\\f\\x1c#J\\xc6\\r+X\\xf2M\\xd4d\\x0eWu\\xd5S\\b#\\xf0L\\x98\\x90.Voi\\x8c\\xef\\ue20aPm\\x83\\x02\\xb4\\x9cH%\\xb2\\b\\x88FR\\xf7\\a\\x82 ^\\x11sX\\xc5\\x11ɟ2Z\\x8d\\x00\\\\\\xaer\\xe7xw\\x9d\\xf7\\a\\x89mg\\b\\x12\\x1d\\xc0\\x82\\x90<\\x8d\\xb6\\xff\\xda\\x05\\xfc$\\xcbc\\xcb\\xee2#\\xcb\\xcbĜwa\\xc6J\\xcd\\xc0#\\v\\xa2\\x99\\x94E\\x9e\\xbe\\xb4\\x15|\\xae]\\xacN\\x8c5\\xf7\\xfe]\\xb59\\xb6'\\xf2lɱ|߶\\xe3ܙ\\xf5\\x1c\\x88\\xa5\\xc4\\x11\\xe4L_\\xf7\\xe9\\x81\\xcd0\\xe4\\xf5O\\xe1\\x03\\x9a[\\xabS\\xa0\\x9dv\\b8\\xb0۪4\\xd1\\xc5Ֆ\\xa3\\x82Еy9T\\xf8@\\x988\\x90-\\x01`x\\x15\\x11\\xea\\xd0\\x12\\xc10\\xa4M\\xf8\\xce\\xc8\\v\\\\\\x89\\v\\xf2\\x16=\\xab\\x83\\x0e\\xc8\\xea\\x06\\xab\\xcb\\x14\\xb0\\x0f\\xb5\\x88\\x89I\\xc2IA\\xf5\\xcd*e\\xa2D\\xf5\\xac\\xa1\\xe9\\xf0Q\\xe9\\xea\\xf6X~\\x9e0U35K6\\xa1{'\\xb5\\xa4\\xa6\\xf3\\xc6\\x03\\x86\\xb8\\xac1\\x154\\xba!\\x9bX\\xc1\\x8f49\\xcc\\xf8\\xb3\\x89`\\x9aMRaJ\\x9e\\x06\\x01\\x9d\\xc7\\x1cD\\xa3K\\xc8\\x1e\\x85JE\\x15M\\xceiy\\x8a\\n\\xd3lZu\\xf2Ӂ<\\x90\\x14^\\xe1Z،\\x83 \\xaay\\x18#\\xbcxv2\\x19\\b\\x14\\xabX\\xeb\\t\\xe9\\xe2?]\\xfc\\v\\xb0\\xbb\\xbf\\x900y\\xa5\\xb2~\\xe2 X\\x1f\\xf0\\x80x\\xcaF\\x05\\x1d'\\x1eg\\x05\\tQ\\xa2\\x17\\b\\x1b2\\xee\\x1c\\xc4\\x1cT,\\f\\x89\\xcf\\x13\\xdf\\x1e\\xbc\\xedao\\xb0\\x91\\xb8\\x02z3\\xaf`H\\x0f\\xec\\xfe\\xea\\n\\x93\\x1ce\\xe97\\x16eW\\xbc\\xf5\\xec\\ri\\xea\\x9a4\\xbc\\xfa\\xa8&\\x9aoP\\rA;x$)X.\\r\\xae\\xfb\\x05\\xc5PUC\\xdd\\xed8;\\xdb흎C\\xa8U\\xaf\\x94\\xc1b \\xafܾ\\x1b\\xf6\\x95\\xb7l\\x92\\x99\\xbdvS\\xfe\\xd7\\xcfj\\xd0\\xf8\\x8e\\xbe;#\\xb8\\xa6$\\x18I!\\xf3\\xb6Ú!j\\xa7\\u007f\\xb5\\x8d\\xb4\\xb5{\\xf0\\xe3\\xcb\\x1a<\\xc6ݭ\\xc9\\xc9\\xd6n\\xfcVn\\x97]\\xa7\\xd4\\x19qW%L\\xb8\\xe7\\xfb\\x12\\nX)i\\x1e\\xf7\\xdf\\xc1\\xf8zϏkƄ\\xc3Qu\\xf2\\xa1\\xdc\\xe15b\\x86\\xddѴ>\\x9aF\\xdcu\\x14o \\xe3\\xf4\\x99Jcw\\xb0#\\x9f~$\\x9f.\\xd7w%_\\x9bˬ\\xec\\n^\\xc8ev\\xef\\x02\\xb4\\x9cO\\xefڕ\\x1c\\xf3\\xd3*L^\\x96ː]\\xb0p\\xaf\\x9f?\\x99N\\xa7m\\x98<\\x96\\xb6\\xdb'\\xf1\\u007f\\x80\\x1f\\xaf\\xb7\\\\\\x15\\xbe\\xa6\\x9c\\xf6\\xc9\\x11\\x1e\\xfc\\x1e\\xf9\\x02\\xf9\\xa5\\x84\\x93(\\x82\\x14>\\v\\xf2w\\x91vց\\r\\xc6(cAŐ\\xd9\\x14\\xbf\\x0f\\a\\x12ZG|\\x98\\xbd\\xd1\\\\/\\x1d8\\x1c\\x94\\xa2\\xb8\\\\m3\\xc6\\xc0\\x18\\xb0\\x18\\xbbt\\xe1\\xd7_w\\xa3pg\\xee/\\x83u\\xaa\\x999Q\\x91\\x85yA\\x11\\xb7\\x8f\\xdb\\\"\\xa3\\xb2\\xda\\xea\\x89ȡG\\\"j\\x86\\x96\\xf2\\xc1\\x0f\\xcaЌ\\x99\\f\\x92Tʂ\\xdcYae[\\xa2\\xc7\\x00\\xb2gE%\\xed\\x85R\\xa5\\xe3N\\x82\\xf0\\x11\\xe5z ?\\xa8\\xe6\\x03\\x8c\\xc3\\xfcOL\\x98\\xe7U\\xae\\buOPAr0\\xe2Dp%\\xe91+r\\xd1֑eU3\\xe4\\x0f=#{\\x19\\x89\\x10\\xb9\\xa0\\x97\\x9e\\xfc\\xe5O(\\x18]+Z\\xc5L\\x12\\x8c\\x1cٙa\\x9bv[a\\t\\xc7f\\xc5Љ\\xe4\\xabb\\u007fY\\xfc\\x8c\\x1a\\xbc\\xfef\\x82\\xb31p\\xd6\\xc2J\\x9c\\x0e\\xde\\x1fă\\a#v\\x03~\\xc7a\\x9d\\xc5\\x19\\xf8#V\\x0e\\x16\\xa1\\x9a!ܰ\\x8e\\xb3[\\xc9\\xe7\\xe1\\xccZ\\xdaH\\xe7\\x1d\\xeb\\xf3zeA\\xc7+W\\xa7K\\xc9foN\\xae\\xe7ǠwN\\t\\xda\\xdas\\xaab\\xb0\\xe9i\\xc90\\xd9L\\xcd\\xfd\\x8c.\\xa8,\\xb5}[\\x86i\\x94\\x9a\\xf2\\xd1\\xfd\\u007f%\\xbdƨ\\xa7M\\x17f\\xa9ܭ\\xdb\\xd3\\xfb\\xaeӪ}S\\x86n\\xa8\\x17ơ\\xf9\\xa0}\\xdeQs\\\"\\x02H\\x1b\\x1e\\xe9\\xd7XZ\\xc10aʹ\\xb02,\\xf2\\x97\\\\\\xcem\\xfd\\xff\\xe2^N\\xb8]\\xc0\\xb9X\\x02\\xe4ES\\xe9\\xff\\xc7\\xf2\\v\\x17\\x1e\\xba\\xfb\\xe7.}\\xac=\\xfb\\u007f\\x9a'O_P\\xee\\xbe\\xfb\\xa1K\\x1fc?{v\\x9d\\x87\\xe8\\xf7ȏ\\xc8g9\\u007fO5\\x91\\xa8Y|\\xa0*\\x14fh\\xfc\\x8e0>\\x96\\x81U#\\xa0\\xf1\\x12\\x0e\\xc8>6\\xde/\\xc3\\xff\\xdc\\xee\\xfb\\xe6Te\\xef\\xdc\\xec\\xcd'\\xf7\\x80\\f|\\xef\\x1e\\xa5\\xd0\\u07fb\\x90\\x9bt3ݷ|\\xad_\\x96&`\\xab\\xb5?\\x11\\x0f=\\xb2k\\xf9\\xa6l(\\xd6\\x16O\\xf7\\xeex\\xf7\\xa7+\\xdb;3Ym\\xfc3\\x0f\\x18\\v\\x1bl+|vXs!A\\x06h?\\x82l\\x03\\xad\\xc0\\t\\x03\\xb0\\x1d\\x8c\\xf29٠\\xc1\\xd6-\\xc5Ktċ \\xa0\\xe9>\\xaa)\\x91\\xabhf&[k\\x0e\\t\\xd9ןn^\\xed\\xfb\\xfe\\n\\x1f\\x01z\\xff\\xe3\\xd7]\\xf7\\xf8u\\xa4!PY<ai\\x8a\\x1b)\\x1a\\xf1\\xd3s\\x13\\xaa>8P\\xb9\\a\\xb6\\xfb\\x1e\\x1f*\\xfa\\xf1u\\xb8\\xe1\\xa5\\x18\\x8c\\xfd\\xa0\\xa7\\xb4D\\tY=.1R5\\xd1Za\\xa3D\\x8cA\\x1c\\xda\\xe33\\xb2/lF\\x95Ngg\\xfbhe\\xa6\\xb5\\xbbݩT\\xc7\\xfb\\xd5\\xea\\xf4tn\\xc4\\x1d\\xf2'\\xd3\\xd5\\xca\\xccL\\xa5\\xda\\x1f\\xafV:\\xb0`4\\xc6u\\x91\\xdeC\\x1e\\x05Yw\\\"qK\\xe2\\x81ī\\x13O\\x81,\\x19\\t\\xeb\\x05\\x12\\x0fƣ&\\xae\\xc6c:q\\xd1M\\vs\\xa0\\xb0\\x94`\\x81\\xf0\\xa5\\xb3\\x04\\xfaրW\\xbd\\xc7\\xc1^\\xc6}\\xb1\\nr\\x8d\\x80\\xb4\\x1f\\xf2\\xda\\x1b\\xeb\\xca\\x1cuAs\\xc4\\xea\\xc7\\x11\\xdbpC\\x8e\\xa5\\x1c\\\\洇\\x85\\xeflK\\xb2,\\u0382\\x00V%;\\x99\\xd5g&\\xfca\\u007fV\\x1ft\\fmw\\xa7vO}\\xe1\\xf0_\\xb2\\xf9|~JV\\x92\\x1aI\\xa7\\x8aʰ\\xb6\\xd8;\\xe2[\\x83V2[\\x02ӋI\\x9a\\xa4K:\\x91\\x8c\\xd0T\\x1a\\x8bc;\\xfe\\xc7\\x18R\\x97\\x8fɪ\\xfaJMˁ\\xd1\\xf4\\xa8\\x1a\\xaa\\xf0w\\xb7,f@\\xf1\\x89i\\xe3)Y\\x1a\\x83\\x93:\\x92*\\x05\\x9e\\xadN\\xf5\\xc1\\x04\\xb3'\\x8b\\xee\\xc9\\xf6\\xe4|\\x9dV\\x84ũz\\x8e\\xb1\\xf1|\\xa3\\xe2\\xfb3zuyVT{\\xca\\xf6(C\\x99\\xd5̓\\x19\\a\\x87\\a\\x83\\x97\\x84\\xf3Vح\\xd9f\\xe1\\x97\\xe0t\\xfc\\x9cL\\x1b\\xd3r\\x1a\\x13sZ\\x9a\\x9f\\xf2h\\nN#\\xc1\\a\\x1fk\\xbc\\xf8\\xa3ī諉\\tvH'qU\\xe2\\xba\\xc4K\\x13\\xbf\\x80\\xd5\\xc4-\\x8a\\xb6<GE\\x80\\x93x\\x81'N\\x8cM\\xe5\\n\\v9Cv\\x80>\\x8e!\\x86Ȁ\\x80\\a\\r\\x05\\b\\x9c\\x83\\xa7x\\tr\\xfd\\xf0bL\\x03|\\xacK\\x9c\\x16\\x03\\xdf\\x1e\\x18\\xb9Xd(\\u07b8\\xd1\\xe7>\\x83\\xb8p\\xea\\x12\\x89\\xba\\xeb\\xdf\\x16)\\xbe$\\xbe\\x11?m|\\x18\\x98\\xffSA\\xb2B\\xb3\\xc4\\x04]W\\xc1F\\xb4\\x01w\\xea骠\\xd7U\\xd7\\xd4\\xde\\x03\\x0f\\xc1\\x00pJ\\x14#]\\x92\\xa5\\\\r\\x8c\\t\\xc6\\xdfخ`I\\u07bc\\xe1\\b\\xa2c\\xb4DA\\x0fD\\xb1*bD\\xfe&\\x19\\x93\\x9a\\xde\\x03\\b[L;5\\xaa|\\xcb\\xcd\\x18\\x92J\\x15O\\x10u\\xc1\\x00\\xf3\\x16\\xbe\\x02tͼ}E\\x12\\xf5m6\\x16\\x82\\xd1\\x1du\\x16\\xbe\\b\\xa2\\xd7\\x17\\x04=DǺT\\x96\\x89B\\xffZ\\x8f<3\\xa5[\\xaauF\\u007fTg\\xba]\\xf7<\\x80ə\\xb1\\xb4\\x1fDz5\\xb2zI+陦\\xae\\xb0\\\"\\xd3e\\xab\\\"\\t7\\xda\\xde\\x13J5Ytʊ$\\x8c\\xa9\\xf62LnX\\r\\xf4\\xc8\\x1aS,9\\xb4\\x8c\\xa4\\xa9\\x03\\x16f\\x05\\xb6\\x91\\xbbYD_\\xb6[\\x16\\xe4&\\xa9F]\\x9bD\\xed\\xc8&\\xb3\\xa4Z$K\\xf0tɅ\\xea\\xfb\\xdeG\\xc2\\u007fa/\\x97\\xef\\x16\\x9f\\x11\\a}\\xa1\\xcdn\\xbc\\xc1\\xbc\\v\\xac\\xad\\xb5\\xfb{=\\xb2yV\\x98\\x05|k\\x9b\\x8d\\xd5|\\xfem\\x1d\\x1e+\\xf3U\\xf21\\xe8\\xeb\\x19^\\x85uC\\x8e1\\xd6\\xc2\\x1b%\\x90/\\x12r\\\"\\xdcZ=\\xd3\\xc7\\xdc\\xf1\\xfe\\x99\\xea\\xd6\\xd0\\x1c\\xe4'\\x16\\x17'\\xbcF\\xe1\\xcdG\\xaa\\x8dI\\x00\\x83\\x93\\x8dꑨ\\xb8xt\\x91'\\xfd\\xb0Dx\\xf1\\xb3t\\x82|11\\x93xY\\xe2#\\xc4 \\xef\\\"\\xef\\x05D\\xd3\\x18r\\xee\\xe1h\\x10S6ȼ\\xe0\\x1e\\xf7\\x1a\\xe3'O\\xd6\\bX\\xd4\\xca\\x13\\f\\x90jH\\xad\\xa8!\\xc74c0\\xb5\\x89\\x8f\\xdc_\\x9d^\\x9b\\x0f \\r+\\xdc1ڒ[`\\u007f\\x86m\\x86\\xd6\\x1a\\xa6.\\x88\\xc3N\\xbbˡ\\xc4ȯ\\x0e\\xa7\\x89\\x038\\x1aM,a\\x05\\x87oǞj\\xb4\\xffa\\r^\\x90<\\x88\\xb8\\x9eE\\xfd;\\x1c\\xb49\\xabw\\x1cM\\x12\\x0e}\\xee?h4[\\xa8\\x01*M\\xe4\\xc7A?\\x02f\\xa0\\xe0!\\x9b\\xc8q\\fۃ\\xc18\\xd2\\xe7\\xadN4ʫ\\b1\\xca&\\f@pUd\\x98\\xe3@\\xb59\\xa8#\\xd73\\xee\\xc2\\xc9ߐ+\\xa9و\\xc7t\\x86\\xebTG#\\xb8\\x84K\\xda1\\xf13\\x8ei\\x03\\xc8\\x1a`ה\\xf1i\\r\\xf0y\\x81Z\\xc0a\\xefΠ\\xcb\\v\\xa8\\x82lě\\x19\\x05\\xabɜUz\\x88b\\x11_go\\x91Ʃ\\x8er\\xa5\\x8a\\xfe\\xe8\\b%\\xe4\\x11@\\xf5\\x82Z\\x11I\\x10\\x05\\xc1\\x9c%۪\\x01\\xb6ZN\\xa5ԠTӋ\\xba\\x03\\xf6VI7A\\xd7|\\x93&\\xb3\\xb6\\x0e\\xc6\\x1e\\xad\\xa7\\xb3>\\xa1\\x19\\x95T\\xc63\\x19\\x81\\x1a$W\\x04|N\\x9cq\\x1c9\\x02$\\xcf\\x04S\\x06у\\xa5\\xe1M\\xca\\v\\xa5b\\x86s\\xf4mJ\\xa6\\xf6LV\\vIL%T\\x89+\\x1b\\xben\\xda\\xe3Xg*[\\xd7H\\x14\\x95p\\xa0\\xa7\\x84\\x85\\xd6(\\xfb\\x93\\x12\\xb2\\x1e\\xa6ʄ\\xa4\\xb2\\x12q3\\x85\\x96LԘ\\xf4\\xd7I\\xc2I\\xb0\\x84\\xb8-!\\t\\x92\\x02&\\nq\\x14\\xd1#Lī&T\\xd1\\x05]U\\xbd\\x14\\xe07\\xd3\\x16\\xc0v\\x91\\t\\x80\\xb5\\xc81\\x00\\v\\x99\\xc6\\xda\\x1b\\x98\\x13\\xb9\\x9a$\\xbb\\xac\\xc2\\xe0\\x98\\xb2#H\\\"\\x06g\\t\\xae\\x92\\xf1\\x98@X\\xd2p\\xe1>\\x90UEHFH\\x81\\xabP\\xa2\\xa9`\\n\\xc9\\x06\\xa3\\x1e\\rt\\xcd/1\\aP\\x11\\x03\\xb0D\\x04]$%\\x03\\xe0>ڠ\\xccvl]\\x8d\\f\\xc3\\xcbJAE\\x13\\xbdR!fcrU\\xb0\\x1bd/`\\xca+\\b\\\\\\x91BN\\x17\\x92\\xa62\\x9e\\xd2YR\\x04\\xb3y\\xa1P\\xf7\\x1cx\\xf2Y\\xc0eA\\xe4h\\x06ѓ\\x19\\x81\\x84>\\xdcn-\\x97\\xf1OP\\xcc\\xd7$p\\xa7J\\xae0\\x8d\\x15\\r\\x052\\x93\\xb6\\xe1\\xaa]ӥd:\\x0f\\xfb\\x82\\xdd\\x05\\xe2Mb\\x00FU\\x01\\x99\\x9b\\xe1\\xc1\\x12U\\xfd\\x02\\x11\\x8e\\x99\\xb2cF\\x98ک\\x19*\\t\\x8a\\xed>\\xd3''\\x04\\xa9h\\xe6\\x1c'\\f\\x95r\\xb1\\x96\\xcd\\xea\\xc9\\x02\\x80`=\\xe7\\xd6\\r\\x9f\\xba`u\\x13[\\x92\\n%Y.\\xdaD\\xce&\\x9d\\x82\\x86eCE\\xddB\\xfa\\x10\\xb4\\xe1M7\\t/\\xd2@\\xeee\\x80\\u008a\\xe3\\xc1]\\xf9&\\x0e\\xdcieS\\x03<\\xa9du\\xc6\\xe8\\x87t\\x8dH\\xc9\\xc0\\xd1E\\xc0\\n\\x1a\\\\\\xa7\\xad\\x01\\xcc\\xf6%]\\x14rI%\\x9dTDx\\xa3\\xba#ʎ\\x05\\xfb\\xd8a Rײ\\x91c\\x1a䭜tM!\\x05\\xa7\\xf1\\x01\\x82\\nB\\x92\\x80\\x11I\\x1d\\n\\xa8GM\\x12\\x002\\x14\\xb9\\x8f#\\xb8\\xd3\\xd0\\x10\\x05\\x03\\x9e\\x8b\\xa1C{\\xce¶\\\"\\xe0mx䂬\\xc3#I*:#.\\xc7\\x1d(L\\xc9\\x05\\xb0_\\x90yoSb5q\\np\\x17\\x96\\xd0\\xe0\\xb1L<\\r\\x17\\x19\\x19/SK6\\xd7W\\xd2+Wr\\xf1X\\xdf\\x10y\\xd0w{\\x8d\\xe6\\x8b\\xfd\\f\\x8f\\xf4zִ\\xed\\xa7\\\"ߚ\\xb1\\x97\\x93yσv\\xab<\\xda\\xeb\\x993\\x96\\xe9\\x1bQ\\x00k\\x97\\xbd\\x9c\\xa78\\xaa\\xe5\\x91\\x1d\\x97\\xdd\\b\\x9e\\x99i42k\\x17\\xf0\\x93\\xcc\\xfds\\xe02Em\\xa4\\xa3\\xa6\\xaaH\\xce&\\xcb\\xf3M\\xd3\\xd7\\xec\\xf7\\xf0\\xe5,\\xc8;\\x1bV(\\xb6\\xe6\\xff\\x8eg^L\\xf0C\\xc1g\\xa9\\x91\\xb9\\x98\\xe0ǁτ\\xc8\\xf3L\\x9f\\a\\x1b;\\x95ȃ}\\xb2/\\x91\\xc0\\xf8\\xb8E)\\x0e\\blv\\xe3\\x02\\xee\\xc3\\xea\\xb0˚\\x01V\\x17\\x9d\\x11\\xfa<\\xde\\v\\x13\\r\\x005\\r9\\x10\\b\\xfc\\x0elϓ\\xf6#\\x80\\xa6_+F\\x16\\xa6\\xf7Rj\\t\\x02\\x13\\x0ejj\\xaf\\xa2?\\xfdR\\xf7\\xe3\\xd9S\\xabef\\x87\\x86\\x8c\\x01WBt\\x8dQn\\xa4\\x89}\\x84\\b\\xa6o\\xf9\\xce\\xd1\\xc6 \\xad=\\xb1,\\xa7j\\xcb\\r迺nj*4sPֲ\\xd0M\\a\\x93\\x12\\xf9\\xd5b\\xf1\\xf9_\\x1b\\x1a\\xb6\\xaf\\n\\x1aժ\\xa1\\x91\\x9a-\\xfe\\x99\\x03\\r\\xcew4-\\xeb\\xa6\\xc7k\\xab\\x85\\xb0(\\x8c\\xfc+\\xd0\\x02\\xbe\\xc0\\xed\\x92\\n\\xc6La\\x95\\x14|}<\\x1e\\xbd\\xdf\\xeep\\x93\\x8a'VVA\\x1a\\x82\\xfc\\x15\\xda\\xd5~\\xf7\\xf8\\xea\\xeb\\x16\\x17\\xc97\\x82\\xf4\\xb6\\xdb6w\\x0f\\xe5\\\\}\\xba0<\\xbd\\xf9\\xec\\xe0\\x9a\\a\\x97\\xe7\\xae\\xfa\\xf6\\x993\\x95\\xd5\\xd5\\xd7n\\xf9\\xdb\\xe5\\a\\xaf\\x19\\x9c\\xdd|zX\\x98\\xd6\\xdd\\xdc\\xe1\\xce\\xe6۶\\xa5\\x83\\xe4Uk\\u007fuf\\x9d\\xef'\\xce]6\\x13A\\xa2\\x8eUxj\\xebl8\\x98\\xbf\\xb3N\\x8d]w\\x1b\\xcdhc\\xca|\\xaf1Kf\\x04\\xc0@\\x05\\x82!\\x896\\x19\\f\\xc1\\x0e\\xb6hP\\xa0]\\x14ݳ`\\x80\\xb4\\xb95\\xcc\\xe4\\xa8\\x03b\\x9b\\x8cۺlȢ\\f\\b\\xf3\\xbeж\\x01%\\x8dm\\xdab\\xad\\xfdeP,\\x06\\xe4DP\\\\Ij\\xaa\\x16\\xb9\\x96(\\n^\\x89\\xb1\\xa9[&\\xed`\\x86V\\xeb\\xa2\\x11P},\\xad\\xc9V\\x04}W\\x12+WMږYv\\x9d\\xack\\xd2o\\xa5\\\\\\x05^\\x9e\\xa6\\x88N\\xcauS\\xbf\\xb9\\xd6\\xefη\\x8a!9\\x15\\x16\\x8bk/\\xd4\\xf6z\\x9e\\xa2K\\x82\\xc8\\xc0:NSO\\xf1-!\\xabd\\x0e\\xd6\\x00\\xdf\\xea\\x9ah\\x83\\x18\\x14\\xa8'\\xbb\\x92\\x16h>\\xe6um\\x88\\x9bӐ\\x17؋G\\xbd\\xa0\\x81\\r\\xbc\\xd8t\\t|Lp\\xfb\\xfe\\xb5\\x8f>z\\xed\\xf7_s\\xaa\\xbfw\\xefm{\\xed\\xe8H\\x9a<\\xfd\\xf8\\xa7\\x9ex^\\xbc\\xe6\\xd5kOÒ\\xbd\\xfdrn\\xafo\\x8cl\\x92ϓ\\xa78\\u007f\\x84\\x0f\\xfd\\xb5\\xdaǱ\\xf4I\\xe2\\x82a\\x84\\x95xa\\xda'o~s\\xeb\\xec7~\\xe7w\\x92\\xae\\x9d<s\\xe6\\x1eRz\\xe3G\\x1f\\xf9=\\x9a\\x10\\x8eҵ\\x8f\\x9dK \\xc7\\xef\\x8f.~\\x8f^\\xb8\\xc2n\\x9dN\\xb4\\x13\\xfd\\xc4<\\xe6\\xb3ԱT\\xf4\\x88\\xa5`\\xbd\\xaa\\x8e\\x84\\xea\\xb5\\xc9\\x13\\xb4@闱b:\\x86\\xb8G\\x83\\xb0\\xbe\\xa1\\xf6\\x0fnM\\xae۶m\\xdbS\\xdbN\\xc1?9n*\\xe9\\xed\\xe3\\xbf\\xf6\\xe0\\x9dsو\\x91O\\xe6\\x02[\\x04\\\\X\\x97\\xbc\\xc95\\x03\\xd6?\\xb5\\xcd\\xd8\\xf6ͅ\\xb7n\\xd9\\xf2օ\\x85=\\x9b\\xe1\\xe7\\x1c\\xa8\\x86\\x19r\\xe3\\xad\\xdbʧ\\x9azjShiٚ \\xfa\\v\\xfc\\a\\xb6\\xb84\\x0e\\xf7<\\xf9%\\xb0\\x12\\xd17\\xb4\\x82\\xd1E\\xfd2\\xf7\\x91`\\xd8\\r\\xf6\\u0602\\x10\\xd7K\\x19yN\\n\\x02/b\\xcd\\xe4.\\xdc\\xd2p\\x9d\\x8dXFz\\xc5F\\x1c\\x14\\v؇<\\xff\\xd4\\xda\\xc7O\\xee\\x11X\\x10\\xf9\\x82\\xd8*\\xca\\x1e\\xe8\\x1dC.\\xa7\\xb2\\x15Q\\xb4\\xca{\\xb2\\xe3c\\xa9H\\x11\\xec\\xa4\\xe8V\\xf6_S\\x99]\\xfb\\x1b3iY\\xc9\\xe6}\\xa7\\x1a\\x0e\\xd5\\xd4j\\vDM{\\xd09\\xb2|\\xfa\\x88 \\xa7r\\xb3\\xc9(2\\x04\\x87\\x11\\xdd\\xf6\\xf4\\xa82\\x91NG=\\x1b\\x94\\xb2\\xeaȂ3\\xb3\\x98_<\\xb1u8\\xc8\\xfe\\x00p\\xb0g~\\xe9\\x86\\x1d\\xe5\\xaemר\\x91\\xeam\\xd9vEL3\\x83^\\x14\\x825>\\x0eog+\\xde\\xeb\\x90\\xc7j\\xb0!\\\"\\xc1A\\x88\\xa3\\xe90\\xd7\\x18\\x02\\x12j\\xf4[\\x80\\xb0\\x10UF|%|kȍ\\x17\\xb3(\\xd0\\xd1ݟ\\x92\\xc7\\xf2\\x99\\xf4\\xf6\\x0f\\x86\\x9d(W^~\\xa7\\x92\\x9b\\xc9\\x04Ji\\xef\\xce\\xd4Lը\\xeeX\\x91\\x9b\\xd3cjGn\\xf6R\\x052\\xdbb\\x9f\\xbb\\x820\\x81\\x9b\\xc7\\xdf-v\\xadڔ\\xbb\\xb7\\x98\\x9c\\xac\\xcb\\xce\\xdf٥\\x82:l[\\xeacr\\xbe\\xe6\\x8f\\xf5@M\\x05VZ67Uf΅\\xa5z\\v0\\xca{7\\x96\\xe6\\xfb\\x0fn\\x8a\\xaf\\xd7\\xc5y\\x9e<\\xcdk\\xb1$\\xdc\\xd8}\\x86&W\\xbf;b\\x1e\\x0f\\xaa\\x1f\\xb9w\\xe7bi\\xf3\\x99M\\x1f\\xf9ȱ3\\xe7\\x0e\\xbfd\\x99<\\xbdk隉Cˍ\\xe5뗖\\xcf\\x0e\\xe1yA{\\xfe}\\xf2W\\x9c\\x0f4\\x9d\\xa8%\\xa6\\x12\\xbf\\x95\\xf8J\\xe2[\\x89\\xbf\\x83\\xc3/\\x92\\b\\x05sâ\\x8dj\\\\p$d34\\x8c\\x99\\xb8P(]&\\x95m2\\xd9\\xefv\\x00\\x9cb\\xa4e\\x8b\\xd3\\xe9b\\xbb\\xc1\\x92#!\\x8e\\x9eȱ_\\xb5ї\\xfdJ\\x9f\\x81q\\x06*\\xb1\\xbd\\x1e\\xaf\\xd6m`bE\\x1cZ\\r\\x80\\x98\\a\\x83\\xd1\\xee\\xa2\\xc0e\\x17\\x8e\\x86\\x8f\\x8eƱ.\\x1a\\x8da\\x80\\a\\xc3yٯ\\xc7cI,\\x0e\\x90\\xa2X`\\x16}\\xbc8\\xde\\xda\\xe1Vǰ\\x11\\xd7jǽ\\xa1\\t\\x90y\\x922\\b\\xd3D\\xaa:\\x96\\xce\\xfe@\\xf2\\x99\\x99\\x01E`8\\xee\\xe7MU\\x05\\x99(\\xbd\\xcb\\xd44S%\\a\\xf4\\xbe\\u007f\\x1bU\\xac\\xf2\\xb2\\xc2\\x04\\xaah\\x82ha\\xc5 \\x99#$\\x95NO\\xef!4+\\x986ɱ\\x10\\xa0Y\\xdeQ\\xe0\\x87\\xd8%\\xfb\\x06w^g\\xa9\\x8aƣ\\x90(\\xa5\\x11\\xe0\\vF\\xa8S\\f\\x82ڴLD\\xaa\\x1bTPq\\x98B\\x1aLT\\xc6\\x04\\\"K\\x94\\x84\\x12F$[\\xaa\\x81)\\xd0k\\xffD\\xcc0o7e%iʻUQ\\x16\\xbbLBl\\x06(\\x18.\\xdcB\\xb2\\xa47\\xb1\\xb1\\xa0\\x1a*\\x92\\xba\\x87\\x19\\x01yJ\\x13%\\x81\\x9f\\r\\xac=\\xc1 \\x12wJ\\x8a\\xf4v\\xd5RE\\xb0\\xe9U\\x98\\xaa\\xd6{\\xb2\\xb9[\\x00tk\\xcc3\\x00\\xedH\\f\\xaeAw0j\\a:\\x9bF\\r\\x8bY\\xaa\\\"\\xeb\\x92ei\\xb2\\x81\\x05.\\f\\xc0F\\xe9\\xd3\\xf9\\x9c\\x9d\\te\\x00l\\xb2\\xa3\\xfb\\xb2\\x985\\xd0b\\xd5-\\x99\\x8e\\xa9\\x8a\\x0f\\xa6\\xb2\\xa1\\x888\\xd8b\\x8a\\xd2\\f\\xc1\\xeci\\\"\\x18\\x00\\xe8\\xc1\\x9a\\xf6D\\x95\\xa9L\\x96\\x15\\xf9\\x17\\x1d\\x0f\\xae\\x8d\\x98\\xf6A\\x19ࣔɵ\\xa9\\x8f\\xde}\\xb8&I\\x95\\x94\\xab\\x91>\\xc4\\v\\xec\\x19Y\\x03[\\xf5\\xe0HV\\xfd\\x1b\\xc8\\xd97\\xf0~l%\\n<\\xe3ʏ\\xaa\\xae\\x04feu\\x91\\xd4\\xdb]L\\xc9m\\xa2\\xf1\\xd7/\\xf7\\xfa\\x83\\xe3[\\x0f\\x9c#;\\xab\\xd3\\xe4\\xc3B\\x97hG\\x0f\\x972g\\xb7\\x1e߽\\x83< \\x90\\xd7\\x1f\\xbc\\xe7\\xd5W\\x91w\\xa83\\xf5ڬ\\xba\\xf6\\x92\\xcal\\xebVBn;\\xe9(g\\xa0\\x0f\\x85\\xa0s'8\\x87)\\xe7\\x0e\\xc4\\x12h1\\x1b\\b\\xd2\\xc1\\xf2\\x90\\xba.\\x89\\xf6\\x9e;|\\xb80\\xac95M\\x1b˥O>\\xfd\\xfc\\xf3\\xa7w\\x8d\\xcd\\xe5\\x05J\\x0e\\xe6\\x83\\xcd\\\\\\xb7\\xac\\x8f\\xcb4\\x13\\xdb\\xe2\\x91\\\"\\x1fG\\x1b&\\xa8%\\xc5\\xd4,\\x9bIc3A{\\x0f\\x95y\\x84a>\\xac\\xc2\\xf9\\x8fy\\xe0\\xc3\\x12\\x19tb\\x8acBn}\\xf3ٷ\\xef\\xa3\\bU%ISlY\\x14\\x15\\x83\\xb3\\xc2\\xd2\\x03\\xcdm\\xd7\\xfe\\x81d)\\aEM܄q\\xe7+\\x82\\xa4I\\x97\\xe6ȳO\\xder\\xf4\\xe5\\xd3q\\x9c\\n\\x18P\\x00\\x9eex\\xed\\x12\\x8f\\x87\\xdau{\\xf7\\xd4R\\xfdӊ\\xc9\\x16\\x04aJv\\xef\\x97tA\\xd8̿^\\xc2\\x1e\\x178\\xb7Q\\x90Ȣ\\x17\\x93`\\xf2'>\\r\\xf8\\xc5\\x12O\\xf1\\xf7\\x88\\u007f!倯%\\x17\\x96/<\\xf7̅S\\x99\\fN2˙\\xb5o\\x93\\v\\x17x\\x02\\xf6\\x85̅\\v\\xcb\\xef\\x81\\xcf\\xe5\\xcc\\xf2)\\xf2\\f,\\\\\\x8f\\xdb\\xfdK8ϛ@.o\\xc6x\\x97a\\x17ӗ\\x03V\\xe4E\\xef0\\xc5\\t\\x05\\xd8(\\xe3O^g9\\x84g\\xe9\\x93\\xd1\\xfaY2\\xec\\xe2\\x1e\\xf0~\\x84u\\x02\\xa6\\xee\\xb0\\x1bu\\xa3{O\\xdb\\xfb\\t[\\xf8d^U\\n\\x8d~\\u007fbv\\xa7fb;&\\xc4~SN\\xd7\\xca\\xea\\x9d\\xf0`\\u0082\\xa1MLjFAj\\x04fА\\x9e\\xef\\xbe\\x1f\\x9e\\x16\\xbc\\x8c\\xaa@\\xb4\\xf7\\n\\xdd|g\\xa68\\xa1x\\xa6fY%\\f\\xee\\\\\\xfb1\\x18\\xb6\\xea;\\x14A\\x1d\\xfb:\\x15y\\xb0\\xe7\\xfc\\xb4\\x16\\x86\\xdat]k4\\xac\\xc4\\xc619=\\x11\\x91\\xc3\\x04+\\x9b_\\xa2]\\xdbH\\xc1\\xd6\\xebb:>\\xffm\\xf9m\\x19\\xfey\\x8a\\fΰxI\\xe0\\xcb9\\x12T\\xfc\\x16\\x83\\xe5\\xf0\\xd7\\xf6e\\x1ff\\xb9c\\u0097[H\\x19j\\x93\\x80\\x05 SsXc\\x036`r\\x1bֵa\\xa6%\\xe3z\\x8cy\\x87\\xa5A\\x95ɭ\\t\\xca&h\\x9bU'\\x846\\x16\\x0eࡣ\\xadJ\\x9bO'h\\xb55A\\x1a\\x13R\\x1b\\xe9\\xbb'\\bL`y\\xa3\\xd9\\xeas\\x17G\\xb5\\xd5CK\\x86gj\\xc0\\x92V\\x1b]\\f=\\xfe\\xdboV\\xa0)ϒV\\x03\\v37{X\\x92\\xaa\\xd2\\xc3ﰸ\\x81_x[G\\xad\\xda쵛-\\\\\\x02\\x1f\\x9bAc\\xf4\\xf9\\xb7^<\\v\\xbb\\xe1\\xb2\\xcbi5\\xf1/\\xe7\\xa2n\\x85\\x9c\\x819\\x14F\\x84{՟\\x9cV\\xfbq\\x1e0\\xbaw+\\xa3\\xb8oL\\x18\\xae`\\xb6\\xd1O߅Oc\\xe7H\\x9f\\x8f\\xec\\xf1\\x13~]\\x14CQ|#\\xff|\\xcf\\f\\xf9?\\xfcp\\x9a!\\xca\\u007f\\x17n\\x8a\\xa7#& :bm\\x16\\x90\\x1eY\\xa41\\x91\\xf2\\xa5-\\xe2m`\\xf5\\xb9\\xcd\\x1b\\xe8\\x951c\\xf3g\\xfe\\xcc`\\xf4\\x18vbY\\x16\\xe8D7\\x95I\\xa7\\xbb\\x93\\xa2\\u0092\\xb6\\xc0\\xe0B\\xf3\\xeb\\xff`\\x8bK\\x8e\\x14\\x82!-\\x8aI\\f\\xcf\\xcd(Z~\\xc3\\x06\\x96_\\x1c\\v©\\xa90\\x18+\\xfa\\xdf\\x10{\\x82\\xd0\\x13\\xe3\\xcfWn=\\xc8/\\x80\\xe7\\xa9\\xc4W*\\xa0Â\\xae/\\xbct\\xfd\\xb8f\\xb4\\x1e]\\x15\\x94\\xc47\\v2_\\x1cqC\\x8f揹\\xf1ŻW\\x8d\\x16\\xacOD\\x85\\\\\\xdekt\\x02:\\xa2\\x95\\x8e\\xe7/\\x9f\\x8e\\xf0\\x03\\xb2\\xd15a\\xba\\\"\\xa5\\xeb\\xbc\\xd4\\\"9\\xb8U\\x04\\xa1(\\\"u\\a\\xa3\\xa4\\xa0\\x83\\x88,\\nLr<a\\xed\\xdf\\xf7\\x88b\\xe6)\\xf8\\xcf\\xf0\\xff\\x02\\x98\\x90mA\\xc0t9\\x8cE\\x12N\\xad\\xaf\\x10\\x9f\\x82\\xff=\\x91WtUi_.\\x8ar\\xfb$\\xd5-z\\t\\xe1\\xe2?_\\xfc\\x01\\xf9\\xbf\\xc8G\\x13*\\xe0\\xfa1\\x8e\\x80Ё\\a\\xe6,\\xc0\\xc2\\xe1@\\x1a`\\xf7e\\xeblQ\\x88\\x15\\x19\\x1fd$-\\xfb\\x8eB\\xdfV\\xebU\\xebӭ\\\\;\\xf0\\xc9+\\x99\\x94}䓏l\\xbaq\\xa17\\xab\\x829c\\xb9\\xfbm\\x85\\x9c\\xb5\\xfb\\x85;lժ\\xd6\\xeb\\x85\\xf6Ձ\\xff\\xf3\\x9aڞ?\\xf9\\xaaW\\x9d\\\\\\xb8qSZbB.U\\xee\\xd9\\n\\xe79\\xfc\\x12\\xdd\\x03\\xb2\\xf8\\xf6\\xc4K\\x13\\x8f\\x8d\\xea\\a\\xca}0\\xa491*O\\x93A@\\x03\\xfd2\\x189\\x14x\\xa4<_ƣ\\xfeg\\x04\\x1c\\x84\\x18v\\xba\\xbcL\\x91%pb$9\\xe0\\xe9i<\\x87\\x95\\x93\\x96\\xc0!a\\x19ű\\xc2\\xe1\\x80]\\x8a\\\"\\xeb\\x8d(\\x0f\\x11\\xed\\xd2A\\xf2\\x97\\xee3\\x8c\\xfb~))\\x81\\x91\\xe6>~\\x83n\\xf4\\x8f\\xb6w\\xce\\xe3s\\xef-\\x1eX\\x94u9)ضq./\\x8a\\xf9s\\x8an\\xe8B\\xd2\\xd2aEO\\x93$\\xbd1W\\xba\\xf5\\xb0\\xa1/ߺ\\xc5\\x155\\xfdӾ%k\\xb2f}@R\\x99\\x88%H\\xc8j\\xbb\\u007f\\xff\\x87ķ\\x11\\xf26\\xf1C\\xf7\\xf7\\xdb:\\xa0\\x96\\xe9\\xf6\\xb9w\\x9a\\xaf\\xa0\\xe2-\\xe6\\x8e\\x1b\\xe7v\\xdc[b\\xba&\\xe5\\xcf/\\xee\\xbc+}\\xad\\xa0Z\\x8a\\xafeK\\x8a\\xaa\\u0605'(}\\xa2`3E6\\xf2\\xa1\\xe6\\x1bI\\xf1\\xda\\xf4\\xdd;\\xb7\\x9c\\xcfK\\x9a\\u0382嫦\\x8f=\\xee\\xdd\\\"\\xd2W(\\xab\\xf7noM\\x038\\xfa5S\\xe3\\x85O*\\\"S%\\x8d\\xd7*\\x8f\\xed˧8\\xbf[\\x05\\x19D\\v4\\xbaL}*7b\\xbf\\xf5\\xb0?ġ\\x1e\\x80\\xd3}\\xb2\\xc3\\xcbY\\x8c\\xec8\\u007f\\xfa«\\xaf\\xbdf\\xebR\\xe3\\xce\\x03\\a\\x86\\xbd\\x06\\xa9wS\\xbd\\a/8\\x99\\xc8<\\xf2\\xf8\\xb5\\xa7\\x1f۶\\xd4<p\\xf7\\x81Z\\xe5\\x9e~\\xab0qrc\\xae\\nVV\\xc2Z\\x14!\\xcff\\x88K\\x93 \\x02~\\xb1\\xa9!\\xf7\\xfaՠ\\xb2>r\\x1bpӽ5lus$\\xe6#B\\x97\\xf1$ό\\x83\\xc67%\\x80Pp&\\xccLD\\x85\\xa9|T\\xf6\\xde]\\x8e\\xd6>\\x1e\\x95\\xcb\\x119\\x14\\x95\\x1f\\xcc\\x13\\xa2\\x8c\\xe5\\x1a=\\x8d\\x91ͽ\\x99\\b\\xa1n9\\x9b\\xa92\\x9a%\\xb2{\\xb0\\xbc\\x9d\\x10\\xbf^\\xd6u*\\x9b\\xfd\\xd2Ĵ_9xy\\xdf\\xf2\\v\\x95O\\x8d\\x91dn\\xa2\\x16\\xa46m\\xa6t\\x8a\\x8a\\x191\\xed\\x95\\xe0\\x12\\xb4\\x12q\\x8d\\xbc\\xa7\\xb9\\x1c\\xfb\\xe4\\xc0\\xae\\xbe\\x91|!\\xd1J,\\xa1FGb\\xb90.Z\\xd9\\xc7j\\x11\\xa0\\x8d\\xd0\\x19\\x04ȼ7\\xbaaX\\xd9\\xefz<Y\\xab\\xd9\\xf0*\\x97\\xf0;>\\x93I\\xfa\\xff\\xb2\\xf6&`r]չ\\xe8\\xd9{\\x9f\\xb3\\xf7\\x99\\xe7\\xa1檮\\xea\\xaa깫\\xbb\\xba\\xaaZR\\xab\\xbb5\\xdaH\\x1edy\\x92d[\\x96m\\xe4\\x01\\x0fxb\\x1e,lC\\f\\x01C\\x18.!\\x831SB \\xc9u\\x80Ǉ\\x81\\x80\\x13H>\\xc8\\r\\x84\\xf0.p\\xc3#\\x89C^Hr\\xc3M !\\tI\\xa0\\xf5\\xd6ڧZ\\x96\\x1d\\xee\\xbby\\xf7{RWթ3\\xec:\\xc3\\xdek\\xd8k\\xad\\xff/9\\xcc\\x1ctg\\x96CKNz\\x8e\\x9a\\xfd\\x8bf\\xc1\\\\\\xbftWe\\xb9\\xa6\\x13\\xc4\\x02\\xba\\xb9\\xfd\\xbc\\x03\\x81\\xf5\\x96\\xd9\\xfd*kN\\xc5{\\nͲ\\x10k\\xf3\\xac\\xe7Y\\x86\\xb5T\\xe9\\x8a\\x19I\\x00\\xd9hQڽlW\\xbb1\\xda\\xccj\\x01#\\xbb\\xb7>\\xf6\\xfa\\xa2\\x00\\x1d\\x10\\x91\\xd7\\x1fسtYd\\xb1 \\xbbraus\\xfc\\x8cd\\xadF\\xee\\xd7+m֏\\xb4\\t1\\x11e\\xacK.\\u007f\\xff{߷\\xf5u2\\xbcl\\xeb\\xf7&.\\xff\\x85\\xcb^K\\xca[\\u007f\\x91=J~\\xf1ѭ\\xef?\\x8a\\xfa\\x1fq!\\xffJ\\xce+\\x18\\xf0\\x8c#8\\xba\\xab\\xb5\\r\\x82\\xcfS\\xc38UwDF\\x199\\xf0-R\\xd8\\xfauB\\xb6Φ\\xe4\\xb3.q\\xd7\\xf6\\xec\\xd9\\xfa\\xfdo\\xad}\\xfd\\x8f\\xdf\\xf3\\xebg\\x95\\xb3\\x8aU \\x9f,|Ü2\\x9b\\x9b\\x9b[_\\xfa\\xe35\\x89=\\xf4\\x05\\xb2\\tvŌr\\x99\\xccQ˱\\x96\\xa0\\x0f \\u007f\\xab\\x9cK\\x94\\xe0m\\x12\\xbb\\x95J\\xa8\\x1f\\x0e^\\xd5@\\x0ei\\x89\\xfa\\xad\\x82,\\xe8\\xe1\\xd7Ep\\xa3\\ue994S\\x9dZ\\x949\\xae\\x1dh\\x97&\\x85\\xa467[#j\\x18NLM|\\x99\\xeecjCs3\\x83T*D\\\"lS\\x16\\xc5\\x01S\\xa3\\xfdo\\xd3,p\\v\\x1cD\\x99Pøf\\x17S\\xeai\\xf5հ8\\x935֗z\\x83\\\"x\\x1e\\xd9\\\\R\\xde1=\\xf4\\x1c{\\xdfA:\\xaf\\xf3d%\\f|w\\xaeʸnX\\x9a\\xae\\x97\\x1b3\\x9e)\\x848\\xa2\\x84\\n\\x85\\xfb\\xf5j\\xe8/\\x1de^\\xb9T\\xb9Jy\\xbe\\xf2\\xf7 \\xda\\x03\\xd2\\\"=ɍ\\xf9\\xeb\\xe4\\x930^\\xbeD\\xbeA\\xfe\\x023w$\\xaf%\\xda\\xc80JR\\x17\\xceb\\b\\x02\\x18\\xd3=d\\xf7\\x01\\xe1\\f\\xf6\\xcaH\\x92Jv2\\xb8|\\xc4<G\\xef0\\xe6\\x1e\\x91\\xb8\\xad4g\\x8c\\xac\\x93\\x05\\x8a\\x9c\\x93Xq\\xb9,\\xa392\\xa5d\\xd8\\x1f\\xd5h\\x8e\\xf2\\x95\\x03\\x82c\\\"\\x10\\x12\\xe9H|\\xa7\\x8e\\xbcͣ\\x95\\xe1\\xd2p\\x80\\x91\\x17i\\xa3\\xac`\\xee\\x1f\\xd6=w\\xc7\\xe6ʰ\\x0f\\xfek/\\x96@{\\x98t\\xd1\\xcfd͎\\xb4f\\xc0a\\xcd\\x04b\\xea\\x82a\\x96\\xc5\\t\\ue78e\\x8b=\\xb3\\xdcg\\xc7\\xe0'J\\xefl\\xc8d\\xbdp~\\\\\\x0eW\\x97\\xa1\\xf7\\x9c\\x8e\\xa1{\\xdaˣ\\xe5|\\xf3H\\\":\\n\\x19\\xe4i\\x8d\\x83@C<V\\xe4\\x9b\\xc1\\xf7\\x96\\xe4\\vݼ\\xb9\\xf1|\\x8e\\xec\\b=\\xb8Cx\\xd8(N\\x86y\\xc8\\f\\x13\\x80\\xb1\\x84\\f\\x1b\\x95?W'۫e\\xde\\xc8\\xca\\x00\\xb5\\vN+r\\xc9\\xe2\\\"\\u007f\\xa6\\x8f\\x90\\b\\xc8ř\\x87\\x9a\\x9a\\xc8\\x13ڕ\\xf5(r\\xe4\\xf3\\x16\\x1f\\xe5\\x90|\\x92\\xc7v\\xb9\\x8bdE\\x92\\x1c\\\"\\x93\\x95\\xd6\\xdb\\xf7~\\xb7,\\xd9l\\x8bP\\xe3\\xe0s3,hϵ\\xbeQ\\b4\\x1b\\xed\\x03V\\x05E\\x1e\\xc6\\xf6]\\x86\\x13\\x05\\xed\\x05\\xd8]Z\\f\\xe0\\xdd0p\\xdaEn<PM\\xdfh\\xd8Q(\\xd8\\xeb\\xb1D\\xc8\\xd0\\x1c\\r\\\\|.\\xbe\\xc9L[\\x15S\\xf1baj*[L\\xa2\\x82\\xaaZ`Q\\xa5\\f\\x83\\x1b\\x8e\\xe3\\xf9\\x14\\xb1#\\x02\\x8dY\\xb9\\x8f\\xc5<\\x93\\xd8zX\\xb1\\xedr\\x06\\xd6Q\\xa2\\x13\\xc6\\xd4\\x16t\\xe1\\x00\\xce\\f\\xdc\\\\M\\xcdʶ\\xedd&\\xecn\\xbah\\xe8ٺ\\x85؍\\x88\\xc0\\x81v\\x8b\\xef9\\x8e@|\\xb8d*\\t(\\xa2i\\xb8\\x8e\\xaf\\x81\\xbdb;\\x86c!^\\xa3\\xaa!\\xe4\\x19\\xd9\\xfakU\\xf3m\\x8f\\x83_̂D7\\x1c[[R\\r\\xddF\\x03\\x8b\\xc1.ŐP\\xcd+\\xa840x\\xc0\\xf9\\xfdB\\v\\xb8\\xe5Q\\xb5\\xe0\\x81\\xb3\\x1d\\nb\\x9a\\x96\\x817\\xc2\\x06\\xf3\\x86\\x10\\xf0\\xc99\\xa8\\xb5\\xa8\\xd4\\x01밮\\x05\\x8d+\\x1a\\x81\\xd6HT\\xde)E.b\\xa22\\xb8<\\x9dQ16:u\\xcf\\xe3I8%,\\xa2\\xb1ݮF\\x06Nȹq\\xf3z\\xa6q\\x1e\\xbd8\\xb2\\xb5\\xec͡c\\x1a\\xfc\\xa0N4w\\r\\xfc#KL\\xbf\\x91\\x83\\x8d鸮\\xe3.\\xc1\\xf5\\xaa&\\xdccCũ\\r\\x86\\x00$֬\\x01\\xcfN\\xb74\\x03뀐9D\\x87\\xa7iP]s\\x12n\\x12fr^\\xd0\\x1c;,[\\xba\\x19\\xcdJ\\x0eM\\r\\x8e3D\\xe20\\xac/\\x83?\\xd0\\xffT\\x04+ah;Z\\xe1i\\xae\\x9a&4\\x00'\\u007f\\x9a\\x99\\xeddʛW\\xe3X\\x9d\\x17\\xe5$\\x99\\x14\\xa2\\x14\\x96[\\xa6\\x8b\\tVzh\\xf9\\x96\\x04Ь\\xd2\\x18\\xce\\x1c\\xa3\\x87\\xb28\\x0f[\\x0fU\\xbdN\\xc3*1\\x05\\x885;\\x88u0D\\x8dX\\x10Zב\\xf4Ҥ\\xcc\\xe0\\x14\\xe1O\\xa8\\xcam=6(\\xad\\xa2\\xe5i\\xfbf\\xa4\\v\\x95\\xb9f\\xab\\x1c\\x92%^\\xc2.f\\xc3\\rgTK\\x84\\xf0\\xe0\\xfa\\x89VԈC\\fKN\\x87\\x948\\xd3謇\\xd8vp\\x99p\\xf5\\xbfb\\x16\\x8a}\\x0e=\\xbd\\xe7\\u0382O\\xb10\\x1b\\xccsAx\\xbfX0\\xf1\\x9e9\\xdcB\\xdaN\\x10\\xa9\\xd5b\\x88\\x85\\xfd\\x1e\\x12\\xabr\\xbd\\xa6\\xf2\\t\\x97\\x1b\\x9egpw\\x82\\xab5\\x9cz\\x82\\xc7\\x0e\\x0f\\x8c\\x87E'\\x85\\xf3ĩ\\x12a\\x19\\x8e\\xae\\xbe\\xb5\\x1a\\xdb\\x04\\f\\xe1\\x19:\\xbb#\\xd4\\r\\xaf\\xb7\\xe9\\xeb\\xc2\\xf37\\vzH\\xbd5w\\x96\\xce`\\r\\xb2\\x1d\\xff\\x13r\\xbd\\xe8\\xe1w\\bN'\\xc0\\v\\xfa Vb\\x9f}J\\xf9'\\xf29\\xc5Q\\xfe@\\xf9s\\xe5{\\xa0_<2\\x9e\\u0603\\x81\\xba\\xcc@\\x1d\\xe7\\\"q \\xd3\\xc90\\xae.\\xc6h`\\xe8\\x8a\\xe2\\x16\\x94\\x84cq\\xb8--\\x04ϓ\\xf3\\x9e\\xf9>\\xdeq\\xd8\\xed\\xb5:b;>\\xce\\xd3Q\\fb\\x01\\xcd\\x1ai\\xb7\\xe6H\\xacÕsN`\\x16K\\x13\\x17\\v\\x98\\\\\\xda\\xc4\\x10F\\x1eV\\xc7Ծ|I\\x9a\\xa8(\\x8f\\xc6\\xe5\\ry\\xcdv\\u007fy<\\x91=\\x8a\\xf9ؐ\\xcb\\xc1\\x17\\x12L\\x89Z\\xe9\\x8a\\x18\\xfcp\\x8cs/\\u007f\\xd5\\xd5ڥ\\xa0\\x1ap\\xaf~\\xdb/e\\x1f\\xcf<\\x90\\x13\\x04\\xe1D\\xb8-\\xa4\\x17\\x87Si\\xc4G\\xd8\\fa2\\x9a\\x93\\xe3h\\xb4\\bN\\xa0`\\xc8\\xc6$\\xe7\\xda\\xd0'\\xd18\\x06\\nA\\xb3\\xc2j\\x18\\xf0\\xd0\\xfb\\x85\\xab3\\x17F\\xa7-t\\x82\\x90\\x16R\\xa8\\xc1\\xe3U5U5\\xa9\\xe6:\\xaap,\\x92\\xce\\xceϤ0(5\\xc3f\\x92\\xc4U\\xc2^\\xc2\\u007fU#\\x9aj\\x98\\xf0\\xe8a\\x04\\xf9\\x86\\x05\\xedC\\u007f\\vMx\\xfe\\u007ft\\xff\\xfd\\xfb\\xc1\\xcaqvC\\xbfg;\\xcc\\xfd\\a)I\\x89Z\\xd9Q<\\\"p\\x9e\\xefH\\xd1!\\xa6C\\xecG,\\xe8\\x8e\\xdc\\x17HǁD\\xb4*\\x8cQ\\u0530\\\\\\ri&\\xb0\\xc6\\x03Ā\\xb6\\x89\\xa9\\xb4\\xba\\xce,\\xaaai&\\xc8P\\x18\\u0086\\xe6I\\xa2\\x0e$#\\xf6\\\\8\\x8c\\x18\\x1a\\xd3\\xd9D\\ue0e1\\vH\\x84\\xaa\\x83L\\x11XíEpj\\x94\\xd9\\xd7S]\\b\\x9d\\x1e\\xa16U\\x138\\u007f\\xaa\\xf3\\x18\\xa7\\xae\\xd0\\xfd\\xf2\\x84a2\\xe1\\xb8U\\xae[\\xc2\\x10\\xa6\\xca\\x1b\\xc1\\xeb0\\u007f\\x15\\xc4\\xc2\\xd2&\\xa8<J֦UO\\x8aq\\xbc\\x9f\\xcf\\xc5{E\\xab\\xf9' \\x92`\\r\\x8dX`]\\xc9\\xd1}>\\xa8\\xc87/k\\x152\\x8b\\x82hɢ\\xf6\\x91\\xfas\\x10C\\x86??\\xbfX\\xe1Z\\x1a\\xf4\\x9a\\xef\\xbaE\\xfa\\x009N\\x82/=-p\\x01\\x02\\x84\\xbf\\a# \\x80\\x1eE\\x96;-\\xb4\\brX\\xc0ag{\\xa2\\x01\\xf1/50\\xb7@w\\xcb|\\xa5\\x01\\xfa\\x84\\xda\\xd2\\xf9;H\\xcf\\v\\xfb\\u007f\\x93\\x83O\\x85\\x13\\x159Q\\x15\\x9an2\\x97\\f\\x99\\xa4\\xe4\\xf8\\x88\\xe5v\\xf2)\\x1a\\xd5\\xc2r\\x97n\\xbdQ\\xebV*ӌ\\\\\\xc2A\\xf6\\xea \\xca,\\x8335LB?\\xf0Akq\\x86\\x8f\\x15\\x9f\\xc2]\\xd8k@%\\t\\x94\\x9e\\f\\xb6\\xc2>\\xa8p<\\xa6\\xe9 \\xd3y\\x18M&\\xa0\\xb7b\\xd8Ht\\xednM*\\xb3DU\\x83d2\\\"O\\x85\\xf5\\x98m=ʦ\\xca\\xe5\\x8eJ\\xeecӕ\\xad\\xdbAx\\x1bK\\aO\\x9b.<S\\x13n \\x95\\x8c0\\xb6\\xd8i\\x11\\x8ep{\\xd6Na\\xeb\\x1aj=\\x03w`\\xaew\\xfa\\xe0\\x92ahx\\xb3A\\xd4i\\xf5\\xca,ǚ+>[\\xa9k\\x1cs-\\x90ۓ\\x9c\\xfd\\xc1ٯ\\x90߁{<\\x99\\xe3\\xacHf\\v0M\\xa4#\\x83\\b\\x1f\\x92\\xd0<GȪ\\xa9\\xe4ݙkٗ\\xee,;\\x8dV\\xa3^\\xecT\\x12\\x18R\\xce\\v\\x9bř\\xf5\\xc9\\t\\xee\\x1b\\xa6Q\\xbb\\xe2\\xc2KHm\\xea\\xfa\\xf9\\x85\\xa3a\\xe7\\xd4!}4\\xdf\\xe2jݪ\\xee)\\xfa\\x17\\xaf\\xdd2Sܹ4c\\xdb \\x87'\\xd6$\\xdf\\xc6S\\xe4/᷇\\xca\\x1e\\xb4\\xcb\\xf98\\r\\x11\\x1e\\x9e\\xb4\\xd6\\x06\\xcf\\xc0\\x03H\\xf8g\\x90%b\\x9c\\x86\\xdc\\x19\\xc3\\xe1\\rV\\x9e\\t\\xd5\\xc7\\xc4z\\x9f\\xe3&\\xf5\\xfal\\x9dV\\x1f4\\xe3\\xb4R\\x86\\x87\\xb5\\xb8q\\xd1p\\xae\\xb5Lm\\xbbi\\xd9Y \\xc4r\\xe9\\xf4\\x8e\\xe9\\xa8\\x1eU\\xa7\\xbe{\\x9f\\xa8\\xcd\\xd6\\xeb\\xa04\\xd2\\xeb\\xc1R\\xd8mױ'\\xd6\\xedu\\xf1\\xbc\\xde\\xf0\\xa2Ҳ&\\x02˶\\xadfF\\x97\\x9bs\\xab\\xaf\\x9a\\xaa\\xc2Q\\xd3;\\x9e\\xc5\\t9P\\x0e\\xa0\\xfd\\xffLm\\xf0`E41\\xaa\\x92l\\xb3\\xa0o;[r.M\\x96t\\x9f[\\x1b\\xe5I\\x8b\\xdby\\x89\\xfd\\bi\\xf6\\xc6IY\\xefz\\xd3\\xe9\\xe7?z\\xfa߈A\\xeee\\xaa\\x04\\xfc\\xe55\\xdd2}\\x89\\xc0#\\x8e\\xa9\\xa0\\xfba\\x85\\x0e:.I\\x17g\\xd7\\xd6f\\xff\\x1e\\xdf^\\xb6r\\xbc\\xdf?\\xber\\xe4\\x9e{\\xc8ݧ\\xdft\\xfa\\xf4\\x9b~Z}\\x9fI\\x12\\x04/z\\b\\x05\\xa8n\\xd6\\x18\\xe6\\xc8\\xf0{\\x04\\xf1A\\x10D\\xc5&td\\xa1\\xa7 \\xa1T\\xb22n\\x05\\u07b6\\x9e\\xbfr\\xec\\xb6c+\\xf7\\xbc\\xfb\\x1e\\xec#?<\\xfbM\\xf2\\x1a\\xf2^\\x19EE\\x8bXz\\xc7TF!\\xf1\\x19y\\x92R8IE\\x0f\\x89\\x1cɹ\\xadC\\x9a\\xe3\\xd5\\xf6\\xf1\\xbaa@\\x92Wk\\xd5d&\\vh\\xa0\\x97\\x82\\xa2\\x85\\xa2.xR\\a\\x1b\\x85\\x17\\x9c\\x8eӈR\\xbd\\x8c\\xabeb\\v\\x17\\xdfa!]\\x8b\\v\\xaa\\x1ezs\\x9e\\x0e\\xe6\\x06\\x05\\t\\xb9\\xd2\\xefx\\xacE\\x84>:t\\x93Eʶ\\x00\\x99\\xbc\\x96\\xe8&\\x88TM(gu\\xec\\xdf$\\xba\\xfc\\x8e7\\xe8Dɔ\\f\\xfa\\xd7_\\x93σ_\\u007f\\x93r\\x9f\\xf2\\xa4\\xf2%叔?S\\xfeF\\xf9W\\xe5\\xc7 /\\x1bd\\x19\\xa4\\xc8\\x11r\\x82\\xdc\\x02W\\xf7A\\xf2[\\xe4\\xf7\\xc8\\x1f\\x92oK\\xec@.&p\\xea\\x14c\\x02\\xeb$w\\x96\\xf3D\\xb6\\xf1ŭH:\\x98uM\\x16\\xeag2\\x14+S\\xc01\\x8b\\x95\\x91\\x9c\\x1ef\\x98\\xe2\\x9e\\xf0\\x87P\\x8eH\\x803L\\x93\\xe5\\xa1,+\\xeaʔ\\xefl(\\xf3\\xc00\\x93,/\\fF\\xfd\\x88\\xb4\\x14X}\\x84\\xed!Ȋ\\x00\\x93\\x9e\\x8f\\x93\\xe7R\\x99S\\xee\\xd2\\x04+\\x9bЛ\\xc0\\t^\\x04GI\\x13p\\xab\\xb0\\xe0ݥݸ\\x99;\\xf8\\x98R\\xd7\\x05\\x89\\x86Sd\\xa9\\xe8\\xf7\\xf2\\x14|\\xd9.\\xb8\\rK\\xa3>|\\x1b\\xad\\xc1ٴ\\xe0\\xb852\\x90F?\\xb8F\\xf1\\xb8\\x06*\\x1bq\\xac\\xa1B$\\xee4\\xeb\\xaf,'\\xbb\\b\\xb48B\\x9c-\\x99e\\x81ij\\x19B\\xb6dȊ\\xc3$~\\x81\\xe8\\b\\x04Z\\x02\\x9ffy\\t\\x93\\rѕ\\x81\\x1d\\xe2\\x1a\\x8b\\xc7h\\x11\\xcb5\\xb9'\\\\2\\xde\\x1b\\x82X\\xfdt\\x00&\\xc5\\x18\\xa9\\x98'.\\x959\\xf4\\xb2ڪB\\x13\\xa4\\xde\\xc5_\\x82s\\xd2p\\xa6o\\x9d\\x81\\x93\\x98&\\xbc\\x93\\xe5]\\x8d\\xe2Y\\xf7kd\\b\\x82\\xc4\\xd4\\xf9\\xd6\\t)u\\x19\\xa6\\x8f0s\\xa1L\\xc1\\x00\\x17\\xa4\\xe8Z\\xba\\x90\\x93\\xa3\\x946\\x98a\\x86V\\xaaY\\xd5\\xf6-5\\x11x\\xae\\x1aQLp\\xd0\\xc1\\x1c\\v\\xd0,\\x10[\\u007fYY1\\xd4\\x10D*A\\x18m\\x8c*\\x82\\xf1\\xc0nw\\xd5x\\x06\\xb45\\bjK4}#\\xf0\\x86\\xbc\\xe6\\x17J$\\bZ\\xc9\\xfcP\\x84s\\x1a\\x15\\xa2\\xe1P\\xc37)V\\x1b\\xebB\\xab\\x1c\\xac\\xef\\xf3\\x11\\xbf\\b\\xe9\\xeb\\x13\\x11b&S9\\xd4\\\\\\x84<\\xd3ȟAGO\\xab`Ph<J\\x183\\r/b\\xae\\xc6ˮM}ӧ\\xcc\\xd2\\x049\\rj\\x1cL\\x92\\xe6/~\\x8c\\n2\\xe3\\x11\\x10\\x9eӻ\\xf5\\u007f\\xd6\\r\\x84\\xb3\\x00\\xfb\\xd6S\\xb9\\x0f>,\\xbaZ\\xe0\\xebX\\x99Hw\\x10\\x0e\\xaa\\xc8E+\\b~8\\xb0\\xb3I7!\\x97kD8\\x04\\xecc\\xb0)h\\xcaA\\xbbc\\x88\\xaf\\\"\\xbe\\xafUl\\x18\\xfb\\xad\\xc8\\xf8\\x8c\\x9a\\\"\\xc0\\\\\\xa0\\xd24:\\x15k\\xc4B\\xc8\\x06\\xf4F\\x98S\\xd7)\\x97huU\\xd49\\\"p\\x02t̘ \\x8e\\x05\\xdaȚ$\\b@\\xc1\\xddp\\xc2\\xe7\\xf4\\xf3pa*\\xc6b\\xc0T\\xc2\\xff\\x84\\xb5a\\xe3L2\\x01-\\xf9\\xa6\\xf7\\xfal\\x95V\\x16\\xaf\\x02\\u007f\\xa2\\xed\\x81I\\x03\\x0f\\x04\\x9ah\\xb431QJ\\xd0ES]\\x13<\\x17ˠ\\xa2\\f\\xee\\x9fiS\\xcfS\\x93`>\\xc5\\ty4\\x876<#\\xb0\\xc0\\fT\\x91\\xce)Ӽ \\x14S\\xaf\\xec%\\x16uMn\\xbb\\x84\\xa2/\\xf1\\x90\\xdeL\\x88\\xe4F\\xb4<\\x86\\xea\\x17k\\xceN\\xfa+v\\x9c\\xaa\\\\3\\xa8w\\xd0aOO\\x16c\\xd5\\x15\\xbcT\\x8d\\vqEx]\\xb5\\xb4qr\\xd9qmp\\x1ee\\xbd\\x9e!@\\xb4\\x80\\xf8\\x9fh\\x9b\\x85\\xb0d\\x18u8Y\\xb0\\xb3R?\\x9a\\x86\\x1b\\xaf\\n\\r\\xae\\xef\\x11\\n\\xf6\\x12\\x11\\xbe\\x951\\xa6\\xbb\\xa0fA\\n\\x85\\f\\xe53\\xd8s\\xc4nh\\b^\\xadQ]歁\\x89\\x19\\xec\\x12\\xa9\\x1b\\x9b\\x9eC\\xfcŠ\\x04v*K\\b\\x88]N%\\x1d\\x97a\\xabDw|\\x18\\xf5h\\x9d\\xaaQ\\xea@\\a\\x14Ҭ\\xd3\\x04\\xe7\\x89\\xc9\\x1b)Su\\x93 ʟ\\xe0\\xcc\\xea4\\\"\\xd5\\xc0\\x94\\x04r\\xc2N0r\\xacO\\xd3Eh\\xa9l\\xb68XrF\\xdd%eMB\\xd2i\\xf0\\xe3З\\xed<Sq?E\\xffF\\xd5\\xc0\\xea\\x04w['\\xbe[wU\\x8b\\x92B\\x17\\fM\\xa2\\x05\\xd40u\\xaa\\x85\\x01\\x81Ǡ!\\xdc9\\xd1ʺ\\x84\\xb2K\\xf5\\x84ON\\x11\\x04\\x98\\xe0:<\\x1c\\r$\\u007f̀\\xc7\\xcc\\xe1\\xfa\\xa1e\\xd3s\\x89\\xa2\\xa8g\\xff\\xf6\\xecǡ\\xef`̭\\xa9\\xacK̺1\\\\\\x14\\xce0F\\xc3\\x11f\\x00\\xb8j\\x8d.Ɋ\\x98a\\x17$\\xd98;\\x18\\xf1\\x9cr\\x14o\\x10v O\\x12\\x9c\\xd9XW\\xfb\\b\\x96\\x82\\xb3K=\\x9cA!/?\\xb6x\\xc7\\x17\\xfe\\xf3\\xe2\\xb0u\\xcf\\xc6\\xc1\\xbbuN/\\xe8\\xef\\v-\\xcf@\\xbf\\x00u\\xb61\\xba\\xe1\\xc3\\xfd\\x8f\\x1a\\x83\\xd1\\xe1_]\\x9c\\xf5\\xb4\\xb8sp~\\x9a\\x81\\xf5\\x1b\\x99\\x81ǃ\\x89o\\x9b&Y\\xf8P\\xb3\\xaeŖg#\\x16\\x89\\xaai\\x168\\x1e\\x86\\xbfA\\xde6\\x84v\\xef\\xf8\\xc2ի\\xeb[?\\x8b\\xfdI\\aO\\x17,c[\\xb5\\xc2\\\"\\x19\\xbe\\x8e\\xa8\\xeb/j.L\\x1f>p$\\xee,6\\xc0\\xae3\\x04t9\\xe8\\x8aqy\\xc8\\xc0\\xc9Ȩ\\x950G\\x80w\\xcb8\\x87{ޤĘx\\xb6\\xcd\\xcc\\xc0\\x9a\\x1d\\xe6lqX\\xff\\x12K\\xa3\\x06nB^l\\xbe(\\xd91s\\x92\\xc5\\x1c\\xeb\\xb7N\\xc6y?\\xb0\\x1br\\xc2\\xfd`\\x06ܡf8_m\\xdeT\\uf5ab\\xa6\\a\\x86!\\x0f̉h\\xba\\xd2,\\x15\\x11\\u0091!\\x16(\\f\\x81Ƿ6oz\\xf3\\x9bKI\\xdcm4\\xea\\x95b\\x05Ĉih\\xba\\x16&\\xcdF\\x0f\\xd9FU\\xa1\\x83\\u007fS\\x8ag\\x9fm\\xd3W\\xb6\\xa3\\xe4\\xcfB\\x01\\xf8\\xff|\\xae\\xe7\\x99\\xfd\\x9f\\xff\\x8f\\x9f\\xf3\\xb3\\x19\\x1a\\xfe\\xa3\\xa7\\x8f5vg\\xbf\\x00\\xbe\\xc2'\\x94\\x82\\xb2\\xa0\\xecW\\xae\\x955'/F\\xd4u\\xd4f\\x18=\\x00E\\xb1\\x8c\\xbc\\xedy\\x14A\\xea\\xf8^\\xba\\x04*,F{\\x12\\x8b\\x9c\\x87]X\\x9b\\xe5\\x9c\\x02\\x18T\\x1aa\\xee\\xcb:I\\xdbyZMW\\xa6\\xa9w1\\xb1}$\\xe3LB\\xf6ʼ_\\x83\\x8e\\x14}\\x89~\\vV\\xf3hsm\\xe9\\x92\\xc5.3t\\xb2\\xb4k_\\x9fL2Q-$\\xe5i\\xf2\\xf2\\x1a%\\x8b\\x05\\xcf\\xd2\\xc3\\\"\\\\\\xf3\\xfc\\x06x\\x88[\\xff\\x97\\xc5\\x16<\\xbdKI\\x02\\xd6 ](\\xc1V\\x12\\x14ɽQ\\xa5\\x12Y\\xda\\x066\\x94`+\\xd3\\xd4I?'\\x8c]\\x17\\xba'_t\\xa1\\x10\\x97\\xa9\\xa4n\\x1d\\xb2\\x1a\\xcdB\\xa1\\xb9\\xb3\\xbbk/\\x8c_f\\x18`\\xd4\\xd0\\xd9\\x16˺\\x95\\xb8T\\xf9\\xc1\\xd2h\\xff\\xa0H-\\xa3\\x18\\x18\\x96\\xd7[>43\\xf5*\\xcb[\\xb2̹]s\\x9dtiu\\xff\\xa0\\f\\x1b\\v!\\x99\\xacv+tm\\x0f%\\x19<B:\\xdb\\x15\\xba\\x93:\\xb7\\x11\\xfd\\xba\\x17=ϻn\\xd7\\xf0\\xe0K&\\xfd\\x95\\x95\\xa0U\\x04!>\\xd1{\\x16N\\xf4\\xb2\\xa2h\\xe7\\x05G\\xb0˰\\x1c.f\\x1b\\x90|7ɓ{\\x16eR=\\xce\\n\\x90\\xb7\\x9c\\x973\\xf5-azz\\x94h\\xa6o\\x84\\xe9\\x9a9\\x01\\xbe\\xb7\\xbe4\\x85$\\xbd\\x1d{\\xae1\\xdeI\\xf6\\t\\xb2`\\x05\\x16/E?o\\x04\\xb6\\xc8ҙ\\x8b,b[5sc\\xa7Y5\\x1d\\x1anʜ\\xab?%\\x0f\\x82\\x9dZW\\x94(\\xc9\\x11\\x95\\xbc\\x1cq\\x0e:k\\x9e<\\ag*\\x13H\\xdevyz0\\x05\\x15p\\xf8\\x1a\\x8fE\\x85\\xf5\\xf0\\xee\\xa9\\xc6d7hf\\x8dir\\xc9\\x05/n\\xa8Y4\\bo\\xbf/\\x1c\\xc6\\x19M\\xdep\\xd1\\xcc\\xccb\\x9b\\x94\\xb3\\xc9tFbJ\\b\\xb0+\\xff\\x85\\xfc\\x96r\\xb9r\\xb5r\\x9dr\\xaf\\xf2R\\xe5U\\xe0\\xa1\\xfe\\x94\\xf2F\\x8c\\x1f匏\\xf0j\\x8a\\x1e\\x86\\xf3{\\x9d\\xa5\\xe6R\\x17\\u007fx\\xb42\\xe8\\xf5\\xc1\\xa3\\x19\\x8c0\\xa1$\\x86\\xdb\\xd5\\xeb\\xc7\\xe9R\\\\E\\x8c\\x9dAo\\xb8\\xd4\\x1b\\xf4\\a\\xbdu\\xb2$\\xb7\\xf7\\xb2\\xdeR\\x1a\\xf7\\xe3\\xa5^\\x1b鲠\\xcd\\r\\x92\\f\\xbaK\\x9d%h\\xb1\\a\\x9fkti\\xb0H\\x82\\r\\xda\\xf5\\x886\\x80\\xed#\\xf8\\x9a\\xe4\\x88\\xd4#\\xf8N~H\\xd4\\xebԧƱ\\xdd\\xdf\\xc2\\x12Fr\\x03\\xe8\\xa3S\\xb8p\\x04\\xdfNQ\\r\\xd6\\x10\\xb2\\xf5\\xd2\\xcb.;\\xa27\\x17&\\x16\\xaf\\xc5Ջ\\xcd'_\\xb4\\xebȵW\\x10}\\xfe\\xa1'\\x16\\x9a\\x8bӰ\\xf5\\xd8e\\xcdEr\\x11!w\\xa9lp\\x9bF_H\\xc8\\v\\xe1\\xe0C\\xe3\\x88\\xf8H\\xfe\\xc9\\u007f_^\\xb8m{%\\xa5r\\xe5\\x8d\\v\\x8b\\x8bn\\\\\\xfeb\\\\\\xfa?\\xaf]\\x19o\\xfbF9\\xde\\xfa\\xa2\\xba\\xaf\\xb90XZ\\xba\\xa6t\\xf8\\xda?\\xbe\\xa6\\x1c]S\\xbejaa\\xe1\\x9d\\v\\xd7De\\x85\\x9f\\xab\\xb1,*m\\x90\\x97G\\x95\\x1b\\xe1.+m\\xcc\\tm.\\xcaZ\\xd8q\\x02G=\\xa7\\xd2k\\x9d\\x97\\xc9!\\xc6˝\\xed\\x14\\x8fq\\xcaGN\\xc7\\xf9\\xccg\\x9e\\xf6\\xf1\\xef\\xe2{\\x9d\\x9c\\xef\\x1e\\xb4O\\x85\\xc8\\xc45\\xd08>\\x03\\x059\\xc1,\\x15\\x15e\\x03t\\xfcQ\\xb0\\x02A\\xfe3u\\x1eq%\\xd5/0V\\xaf\\xe7\\xaf\\x05\\xc6\\xde\\xdbkn\\xfdys\\xb1\\xd7$\\xd5\\xe6\\xe2\\xfa\\xf5?u\\xea\\x92]\\x0eX\\x8e\\x82\\x9b\\v;\\xfc\\xe6\\x0f.`dnFU\\xe5\\ac\\x17\\xe0\\xdf\\x1a\\xb4F(,\\xeeX\\x83\\xc6\\xf3\\xff\\x16n\\xb8\\xfa\\x99\\x86z\\xbf0\\xbc\\xe4\\x92\\xe1\\xd2!\\x9d\\x81\\x9d\\x88\\x19\\xf2je.\\xecJ٭p\\x90}/\\x82\\x9e9\\xa3\\\\(k2\\xe3\\f3\\x9c\\x06m\\xa4N\\xc8\\v\\xde;\\x98-\\x95 \\xf6\\x1e\\xef\\xe6)<\\x19&N#\\b\\tF-\\ar\\xc2\\xcfU;\\b\\x83\\xd0\\xc7\\xdc\\xefK\\xca\\xf6\\\\\\xa1H\\xbe\\xe3Y\\x95\\xc5J\\xa9\\xd4\\xed\\x16\\x93\\xda\\xdaL{U/\\x15\\xb6\\xbey\\xf1L\\xab3UH\\x1a8\\xbdn\\x81\\xfe\\x9b\\xbf\\xb8@^\\xf8\\x87\\xb3!\\b\\xf2\\xb8\\xdb4\\xbd\\x8bᘋ}\\xd7\\xf5\\xb3\\x8bE7\\x0eՏή-\\xb4.\\xbe\\x98|dj(\\x84}Ф,%*\\x1a\\xd3\\xd4^y\\xf8\\x1e\\xcb\\xca\\xd3\\xf6\\xe9\\xd9ϒϐ\\xa7\\xe0:\\\"d\\x1f\\x13AWD\\xdd`\\x14\\x059\\xe7E\\x90\\x91\\xcfl>\\xf6n\\xb2\\xf9'\\x8d\\x8d\\xeb\\xaf\\xdfh\\x90ͳʤr\\xf6\\xdak\\xcf*m\\xa2\\x9cٺV9;yV\\x19\\x8d\\x88\\x02\\x1f\\xe18oj\\x13\\xdaÌڽ\\xca\\xfd\\x98g\\xaa\\xf6A\\x17H.:\\x96`Jv\\xea\\x12L\\xc7\\x16Mp\\xf5p\\xcec\\x91̠@\\xcfZMɑ,Ɵ#I08\\u0090\\x9e\\xec\\x1e9\\xb3X\\x8e\\x88\\x95\\a\\xfbr\\xf2\\xe5\\x1c\\xa4\\xf6ŘB\\xa1\\xcaP\\x01\\xbc\\xa9`\\x83\\xaa\\xaaV\\x00\\xb3Cx\\xa6A$00SUf0\\x9diL\\x98%S{\\xd3#\\xbe\\xff\\x88?u\\xcc\\xf7\\x8f\\xf9!\\t=*t\\xbd\\xe69\\x87o=\\xecx5D\\xef\\xf2B\\\"4\\xc3\\xf3=o\\xf6\\xd0\\xecޓ\\x9e\\xe7\\xfb\\xba\\xf6Uj\\xe9\\xbaJ\\xecP\\xd3\\x17\\x1aN\\x1a\\xa5y\\x1a\\bN!\\x06\\x9cp\\xcb\\xf6\\xf8\\x1e#\\xe2\\xaeA\\x19\\xfbR\\xa3\\xb1\\xd9h<ji \\xfe]\\u007f\\xa9<\\x15\\xf7/\\xbc\\xb0\\x1fO\\x95\\x97|oΰ4\\xb3k\\x06\\x85re\\xb10s\\xc1\\xcc5\\x9b\\x85\\xc5J\\xb9\\xe4\\x99 S]x\\x12\\u007fO\\xce\\xe0\\xfcP\\xb4\\xb2H\\x06\\xfdl\\xd4O@A\\x06Ϥ\\x85\\xb1\\x16;\\x97$ֽP̿\\xf1\\xce\\xeb_\\xd7\\xc5\\f\\xcb\\xceg\\xba\\xea\\x1d\\xde\\x03D￥oP\\xb2l\\x88\\xa1\\xfe\\xb7\\u007f\\xab\\xb7U\\xb1\\xf5=\\xa1\\xb6u\\xbd\\xa3\\x8aom}\\x97\\xc4O\\xdaƺ\\xae\\xaf\\x1b\\xf6v\\xae\\xfd\\x17\\xe8,\\xe8rW\\xa9*\\xb3\\x88\\x10\\x10\\xa2\\x13|.\\xfcϑP*\\xcd!\\x96\\x90A\\x8b倣9\\xa6\\xf7(\\xdb\\x1e\\xdd\\xe7\\xc6\\xf89Yq.\\xe5\\xeb\\u07bb.\\xaf\\xd4ny\\xeb[o\\xa9U.\\xff\\xd4\\xceN5p\\x17\\xca\\x0f=\\xb6\\xe8\\xe8\\v\\x8f\\xbcg\\xf4\\x9aNӝq\\xedr\\xe3\\xc6%\\xfa\\x82)]\\x87\\xbf\\x9e|\\x97\\v\\xa4\\xfc\\xf1G\\\\\\xf13\\xb7\\xdc\\xf23\\xc2\\xddzr\\xfau\\xbb\\xfch\\xef\\xbbOV\\xf6FɢAj\\xd3\\xf6\\xd2\\xfc\\xbd\\xb3\\x9d+[3\\r\\x87\\xdcu\\xfeq\\xf9\\xc2s\\xb9\\x83\\xc7\\x1c\\xab\\xb2\\x8a\\x1a^b\\xfc\\xf9\\x8do\\xfc\\xf5\\xf6\\x1fy\\xfc\\x1b\\xdf\\xf8F\\b/\\xa9߾\\x0fǝ\\x01\\v\\r\\xecG\\x18\\xb7\\x1d9\\xaeE2FE\\xc0B0\\\\; O\\xcd\\xcd\\xcd̲\\xdad\\xadب\\xb0\\xb99r\\xe6\\xf7\\xcbYZ)\\x94\\xb3\\xb8t\\u007f\\x92e\\xc9\\u007f\\x8e\\v4\\x8e\\xfe\\xae\\x9cf\\xa5\\xf1\\xfd\\x1ec\\xb2\\xfbJ\\x19\\x9f\\xf4\\xb9\\xf9\\xac\\xbc\\xbb\\a\\xc3ј\\xbe\\x15o\\u007f\\x90/\\xa69\\x16\\xd5\\a\\xb3f6\\xf1\\xcb\\xf0\\x16\\xc7\\xf1\\x1b\\xe1cq\\f\\xde\\xfe\\aO#\\x8b\\xef\\xd6\\xf7\\x1a\\xa5\\xaf\\xe3\\xc2\\xd7\\xd9n\\xe2\\xe3\\xc2\\xd3\\xfe\\xb3\\xf1\\xe6m\\xf8E\\xa5ݗ\\x98K\\xdd\\xfe \\x1bi\\xads\\xd3~\\xad\\x81\\xe8\\x92Sw${\\x8e\\xce\\xed\\xbdg\\xe2\\x8e[o\\xdd\\xfa\\xe1a\\aZw\\x0e\\xbf\\xe7ݛ\\x93\\xc3ڞљ\\xdbn;ҝƲ\\xc5\\xe9\\xeeW\\xde\\xfdn\\xd0\\xccg\\xcf~\\x91|\\x1f\\xf4\\x86\\xaa$`\\a`}>ڂ\\x12'\\xbc;\\xea4\\xe1\\x1dG\\xef:\\xddM8\\xfa\\x1d2\\x94\\x8b\\xc1Z\\xb9\\x94 \\xfd\\xac\\xcbp\\xaage\\x84\\xb1\\xe2\\xb4ߋe\\x96hw\\xb9?\\xac\\xb1L\\x06\\xa19\\xc2Āш\\x91\\xe8QJf\\xd2J5y\\xcb̭\\xb3\\xf5\\xce\\xe4\\u0383\\awNv\\xff\\xce4\\xe7\\x9e?g\\x9a\\xbd\\x87\\xdfP,\\xae\\u007fb\\xbdP\\x9a\\x9b\\x13\\xebW\\xddt\\xe5\\x06\\x9f\\x9b\\xfb\\x86\\xd1\\xda)Ԝ\\xd0\\x1b̞ϫ\\xa2\\x94V,K\\x9d\\x84\\xf1\\xa6\\xc9\\x19\\\\\\xf2+`\\x17\\xae\\x80\\xcf\\xcb;\\x1d\\xf5Pb\\x98\\xf1\\x17j\\xb5\\x92\\xf9\\x9e\\xf9\\x83\\xed \\x98\\xbc`\\xfe=fC\\xe3Y\\xc6\\xf9|Fā\\x03\\x82\\x1c\\xa8\\xdcR!;\\xaf\\xe8\\x90Ε\\xbb`\\xf13S>\\x01ǎ\\x83\\v\\xcb\\xf8\\x00ơ\\x9d\\x04\\xe0\\xa03\\\\\\xa13\\xf1\\nUs\\x1c\\x0e\\x1e\\xf4\\x18\\xff\\xf8\\xf3Ч~[٥\\xbc@QRL{Ź(\\x89ޙgtb6,\\f\\x19X3<7~`,\\xc2\\x06\\xf8\\x9a3eH\\x93g\\x84k\\xa5.FT\\xe8\\xe5\\xc1\\nH\\xd4m\\xde\\x129\\xc9)sfr\\xcd\\xfa\\xdfcc\\xdd\\xd4=\\x87\\xb2Eƞ\\xa4\\xec\\x13\\f\\xff\\x96\\x93\\x82\\x96\\xf1j)*\\xf4\\xa2\\xe8I\\xf8\\x8b\\xe3'\\x1f\\xec\\xcd\\xdd\\xc83pc\\x8b\\xad\\x11\\xb8\\xc7Ű܌禮\\xe2\\x8c\\x15T\\xa2\\x16+\\xbdtz\\xa1\\xb3\\xa6\\xb5\\x11]\\x1e97\\xe8\\v\\xa8\\xfa5\\x06\\xef\\xf0Ǿ\\xa6\\x92\\x9a\\xee\\xb8_\\xe5\\xfc\\xab\\xe5\\xba]\\xb1\\xb2\\xaf\\xa5\\xd6\\xed\\x16\\xfc\\xa5_ˬۿT\\x9bد\\xa9qPE@~\\x90\\xd6f!\\xae\\xd47\\x19S#\\xafd\\x1a\\x9c\\x17r<re\\x93n\\x92\\x86\\xc2$\\xfb\\x00Z#\\xb2\\x92\\xa4\\x9dLȄ\\xe4L\\xc2\\xcb$\\xfd\\x91\\xfc\\x1c\\x8d\\xbf\\xe1\\x8b4\\x1a\\r\\xd2\\xd8z\\xfa\\xcc㏟\\x01\\xc9\\vo\\x9bO?\\x05\\v\\xb0\\xb8\\xb9\\xf9T\\xa3\\xf1T\\xe3̩Sg\\x1eo\\x9c\\x81\\x8fS\\xa7r\\xb9\\xa0\\x8c\\xe8C\\xe4\\x02\\xd0\\u007f\\xfb\\x95K\\xc0\\xb6\\x94\\fH\\x88s\\xd5\\xcf\\x10c\\xa2F\\xb6\\xa7\\xbc\\x06\\x18Y\\x1b\\xe5Ŭ\\x18\\xd7\\xef\\x8c\\xd33E\\x1eٓ\\x80Dr\\x02]2\\\"t\\xb7sx\\xb6\\xf1\\xb1>5\\xdf\\xdbѯ\\xcf/-\\x8d\\xc8_\\xb2\\xe9\\x8a\\xcb\\xdc\\xe8Ҷ\\x97\\xf9\\x8c\\b+\\xfdi\\xeb\\x01\\xb0<\\x10\\x17\\xefX\\xc1\\xd1La\\xa4\\xd6;\\xcc\\xd7Z2叫Ǫ\\xda\\xc4ncw\\xbbs\\x9bj-š\\x91\\xc5\\xedR\\xc12\\x99\\x9dX\\xe0|<\\xfe\\x82\\x17<~\\xef}Q\\x89g\\xc3J\\xa7k\\xa8~\\xc1\\xc3rE:%\\x84Θ\\xe3OZ\\x0e\\x98O\\x82\\x19\\xa0\\xa3\\x82I\\x9b\\xd4Z\\x82?\\x98\\x15y\\x12ͨ\\xact\\xabʹO5\\xdbTP&\\x82|x\\vyR\\xb2\\xff^\\xa2\\\\\\xa5\\x9cTnV\\xee\\x02\\x8f\\xee\\xd5\\xca\\xeb\\x94G\\x95\\xff\\xa4<\\xa6\\xfc\\x92\\xf2\\x04ܡ\\x9d\\xa4\\x86\\xa5\\xafj\\x9a\\xc1@\\xed\\xae\\xack\\xa3&N\\x18.\\xa8ݚ\\x9a\\xc5\\v\\x84\\xe4\\xf1\\x82\\xc1\\x18\\xe0M\\xddF\\xd7~\\xceg\\xfa\\xff\\xd3\\xfa\\xed<\\x8d\\xe1\\xf21\\xca\\xc3 \\x8bb\\x9bS*\\xcc \\xae\\x05\\x94\\x1bnX\\xf0\\xa8\\xc6-'2\\xa9\\x16\\x85%\\x9b\\x801\\xd7J\\x98U\\x8a\\x030dɎ\\xc6\\xde\\xdf\\xdfۘ\\xda{\\xf2\\xe4ީ\\xad\\xbf\\xf2\\v\\xfe\\xb3\\xff\\x8e\\xfdo\\xad\\x01ͳ\\xfe\\xfeua\\\\\\xfa^\\xf2\\tB\\x85\\x01\\xe7\\x12\\x12ͳl\\xce\\x04\\xd1|\\xcbG\\xca\\x06\\xd56\\x1dC\\xc0c\\xd73_u&J)%\\xaa\\x9fN\\x15\\x99\\xbek\\xebG\\x97\\x0ez\\xbd\\xc1\\xa5{\\xf7.-\\xed\\xfd\\xb8l\\xf4\\xf2\\xcc\\xf7\\xb3 \\u007f\\xbf\\xff\\u007fk\\xcd\\xfen\\xd0h\\xf8S\\xf0\\xa0\\xcds\\xba\\xc0\\x00m\\x809Z%\\xa5\\xa5,*;\\x94=\\xc8=\\x9f\\xe5\\xb5(\\x19\\xe9\\x0fZ\\xa0ܹ\\x18%\\xdd,g\\x14\\x1f\\x81\\x8a\\bj\\f\\x99q\\x93V\\xfe\\xca0\\xfb\\xb8\\x89\\xec\\xe0H\\x906\\xe8\\x0eF\\xdd\\x1c\\x00JVNaD\\v|\\xd2\\x1f\\xa2¨\\u05f6\\xfe\\xf1\\xcb\\xefxǩ\\x17N\\x1fܑ\\x10\\xdd\\u007fE\\xf6\\x9a\\x89\\xd5\\xe9\\xf4\\x91\\x03.\\xa6Q\\xec/%\\xc9\\x01\\xb2\\u007f\\xbf몓\\xae%,\\xcf7L[\\xa7QX\\fVA\\x03\\xe9[\\x8f4\\xbe\\xf6\\x8f\\x1b\\xb5\\xbf\\xf4\\xf5\\x05\\xcbԝ\\x95\\xd1\\x12\\xb9\\xd8]\\xdcy\\xe1\\xa1\\xdeD\\xad6\\xf1\\xd7V\\xb1T\\xf4n\\xa9ٵ\\x80\\x97\\xf8Ue\\xdb\\xce*\\xa6iԊsc\\xae\\xec\\xa7\\xe9*\\xe8(S\\xe9+w\\\"\\x02G\\xce\\b\\x86\\xa8GXB'\\xf3p$\\x86\\xd9\\x00i?;b!\\xe7?\\xc8s@\\xf3\\x00>\\xf4t\\xba\\x8b\\xaek\\xfd\\x11&\\xe4c\\xc5&\\xd6D\\xc0m\\x92\\xc5\\x11`\\xd2\\xcf\\x12\\x81IV\\x13\\xcd\\x05Pu\\x88\\x93\\xd1%\\xaf\\x19V]JX:\\xdd\\xf8\\\\'\\xe6\\x1a\\xf1`p\\xb2\\x85\\x93\\x97\\xae\\xd2\\xc80\\xc8\\xdc\\x0e30\\v\\x9c\\a`\\xba~F\\a\\x85\\xa4V\\xa1\\x03\\x14\\xb3\\x88\\xf3\\x8a\\xa5iW\\xe9\\x16!\\x95\\x1b\\x93z\\x80$|p-Yj\\xd9[O;\\xa1\\xa1e5X\\xb7\\xd5\\xd9\\xc9\\x17\\x9f\\xa7\\xb3\\xe8$a\\xe1\\x9c\\xfb\\x9b\\x03\\xcf\\x03\\xdf\\xc0\\x99Z\\xb3\\xaeٹ\\xd2\\x0e,!\\xe0y\\\\Xw\\\";\\x89Tr\\xd4\\xf2\\x84\\xeae\\x1e\\xa6\\x84D\\xbaA\\fM\\x8d\\x0e\\x87\\xa6\\x01\\r}3\\x82\\xaeg8\\x8e\\xa6~34\\xb7m\\x85\\xdf\\x03\\xff\\xe6\\xe3p\\xbf\\xdc\\xf1\\xdd\\xca1\\fH\\xd0\\x0f\\xa8r\\xc7E\\x17݁\\xaf-\\xe5ďa\\xe9g\\xef\\xbcs\\xeb5\\xe4\\xbb[c,r\\xe4\\xa2\\xffu\\xf0\\x01B\\xa5\\xa9\\f\\xf2|]\\xe12\\x89\\xdc&u\\x13\\xcb\\x13js\\xa0F\\x1a\\xe5i\\x16\\xc3Q^\\x02\\xdc\\x1d\\xd6\\b\\xb9w\\xed\\xa8H\\xbaSn\\xe1`\\xe3\\xf2W\\\\u\\xf9\\xe5\\xee\\xee\\xf5\\xc5;\\x0f\\x1f\\xb9kqc\\xf3\\x81\\xbd\\xf3\\x93;JZRn\\x97\\xca\\xed\\xbd\\x1drf\\xe3\\xea\\xcb\\xef2\\x8a\\xb3\\x95\\x8d\\x99;\\xaf8\\xf6\\xea\\xadp\\xc7e7O\\x1d\\xb9\\xff\\xfe#S7_\\xb6\\x83\\xd4\\xe7\\xf6L\\x0e\\xf6\\x94\\xc3r9\\xac\\xdaFy\\x17\\xca|\\xb0W\\u0382\\xbd\\xf2\\x9a1>%\\xd6\\xfde\\xa2%\\x12\\xd1m\\x89E\\x8a\\xc4\\xde\\x03,\\xa1\\x18@\\xcf\\x1f\\xd5\\xe9r\\x92y`\\xf2I\\x028,\\x92\\x8b\\xf3l\\xad\\xa4\\x83\\xf6\\x8aĔ\\x1e\\xa8\\xd0uP\\x16\\x91}\\x89^3\\xe2ԉc\\xc4\\xee2\\x12\\xf95q\\xe5W3\\x99\\x8fK\\x01\\x89\\x1c\\xc3\\x15_\\f\\x82\\x93d\\xf5\\xb1\\xd5\\xe9\\xd5 \\xd8h\\xc0\\xc2ַ\\x8f\\xbf\\xfaĉW\\x1f\\xffd\\x12\\x1b\\r\\xbdP\\xd0'\\fB\\xe3ā\\xafU=I\\x8c\\xaaA\\xe2D\\xb5C\\x12A\\x13\\x86\\xbb\\xe0\\xf7\\xfc\\xeb\\xc9\\xea\\x88̬\\xc2\\xd2\\xc6\\x04,}\\xf18\\x81㏏\\xf9\\xa5\\xff\\x82\\x9e!\\xbf\\bR\\xfcb\\xe5\\x0e\\xe5\\xb5\\xca/*\\x9fP\\xfeP\\xf9\\x1b\\xe5,(;\\x9eg\\xf4I\\xc4\\x02I\\x01 y<\\xfb\\xbd\\xe5\\xa5q\\x94\\xb1;&\\x99\\x90\\x19\\xb6c݇\\xb3s5\\xbe\\xc41\\v\\x86\\x8b4\\x92N\\xd8 \\x8fY\\xc9`\\x14\\xcfS\\xee$\\n\\x04\\xcfq(\\x92f\\xb22\\xc0Q\\x84\\x8f}$Q\\xfe2\\x89\\xeb\\xdb\\xc5\\xf9\\x16\\x99\\xb1\\x82G$XL\\x01\\xe2\\x1b-\\xbeng\\t\\x9d\\u007f\\x15\\xb3c\\xba˒\\x9au\\xb4\\x13\\xed߾\\xe4e\\xeev\\xb4\\xed\\xf0\\xd3pi\\x98\\xd5`\\x10\\xb0\\x9eH\\xf1I\\xc0\\n8g\\x9e\\xa4_k^\\xe6h\\x84\\x9a\\v\\x86\\x8130\\xe5\\xc3\\xcd\\xd6\\xeatw\\xa5\\xa6:\\xe0\\x00\\x16\\x8dj\\xc6ʆ\\x9d\\xb2J\\xb1z\\xb4@H\\xb8QN\\xa7:\\xae;I\\xc1\\xd3slD\\x12\\xd1\\x1e3\\x8b\\x04\\x14\\xc3\\xef\\xd4\\xf7\\x17\\\\\\xad\\x99\\xb4[\\xbao\\t\\x12\\xabf\\xa0\\x1f\\x8c\\x04+;n\\xff\\xbd3\\xc5\\xd4Ԉ\\x06=p\\xf7>$5.5\\xbbo\\xb1\\\"\\xbfY(E\\xa6#\\x84\\xef\\x04\\x13Q\\x14\\x18\\xa5\\xb8\\xe9\\x12W\\xc5'>U\\\"A\\xd1QC\\x03|\\xc8\\xe9\\xbfe\\x13\\x89p\\rO\\xf3\\x12*C\\xaf\\xd4v'\\xdb\\x15r\\xad\\x9a\\x06\\x1a\\x82\\x9c\\x85$+\\xc8\\xf4\\x18NUC\\xe3\\xff\\x95TèJ@\\xb1\\x1b:\\x88\\x0fM\\xbb\\x95\\x8cV\\xe2\\x15w?\\x06\\x94H\\x1c2\\xd6\\\\\\\\lk\\x18\\xd9!\\xa0\\xcd38\\xa8:\\xe7\\a\\xbaI\\xd22c\\x9d\\x9ea\\x98\\xa1홾)0W\\x81d\\xa6\\x86\\x80\\x14[\\xef!\\xad\\xb2\\xa7\\x93\\x84[.&\\xc5PU5tU\\xf3\\xb9\\x86<\\xd3?rL\\xa3\\xe4`\\x16J\\x14\\x1bF\\xb5\\x82\\xe1\\x94X\\x88\\xdb\\xfc$\\xd58\\xa8,\\xb0k}\\x17\\x83-\\x16\\x01\\xb3P'H\\xa5\\xa2\\x12\\xcd!8Mbi\\xe0\\\"\\xf3\\xd7S\\x1d\\x19\\x9e\\x11Őp\\x02&\\xde7\\xc0\\xf5\\xa6\\xc2f\\x82\\x12\\x17\\x93/\\xf0\\xfa\\x10S\\xe1\\r\\xd0^\\x9c\\xa2\\\"\\x04\\x03]әN\\xb8\\xc4\\xc8\\xff\\x97\\xb3\\u007f\\x0ev\\xe0\\xe3J\\xa6L\\x81\\xad\\xac\\xb4]\\xe6с\\x04\\xfc\\xf0\\x10\\xef\\v\\x93`\\xe3.\\xa6냻\\xd4\\rr\\xf83\\xaeɹ\\xe1\\r\\x8a\\xd08\\b\\xf1\\x95p\\xba\\x8bY\\xa6\\x01\\xee\\xf8;\\x1df\\x16\\xeb\\xa7\\xdb\\xdd\\x03\\xbb\\x93\\xf4;\\xa1n\\x9d\\x1c^\\xb4kq\\xf7\\xd6\\a\\x1aA\\xa0\\x97\\f\\xe3u7\\xc0\\x0e\\xa5\\xfa\\u0091\\x8bT\\xc9\\xd5\\xf4\\xbc\\xe1P\\xb5\\x99a\\xb7V\\x1dU\\xcfD\\x18\\\\\\xf9\\xd3u\\x8d\\xb9\\xce\\xd6\\a\\xaa\\xe4\\xddf1Y\\xdb1\\x9a\\xb9\\xc3hY\\xdcf\\xea\\xe2\\xb0%\\xf7\\r\\x96<\\xc9k\\xff\\xe3\\xb3\\u007fB\\xfe\\x0f\\xf2>%\\x80\\xb3\\xaf\\xc2\\xf9\\xcfˈ\\f\\xc8\\xe7N\\x97u\\x86\\xa3\\xf60\\xf5\\xe4\\xa4ᰣe#\\xb8\\x82\\b\\xba}7\\x02\\xd17\\\\$\\x82\\xbc3\\xb0\\xed\\xbfi\\xe9-\\xed6\\xe6X\\xc4wS\\xdd5\\u007f\\xf37\\x02\\xaan\\xfd\\xf7\\xc7n\\xf8\\x17U\\xbb\\x9f\\xa8\\x96n\\xd0\\a.\\x87\\x1b\\x1bq\\xe3\\x05'\\xc8\\x11Rw\\xfe\\xf22G\\xf5ɵnB\\xe7i\\x16L,\\xd5\\xfd)U\\x1d\\xfd\\xe0;\\x19\\xe1[\\x8fS\\xa3\\x10%\\xea\\xefl\\xfd\\x0f\\xb03wsf|M\\xfa\\xc5g\\xff\\xf5\\xec\\u007f#_ \\x1f\\x00\\xfdߖX\\xde\\x18\\x89\\xc7,\\x9eD\\\"\\xe5v\\xb7ћ\\xc0\\x0f\\xe9/\\xd3m\\xe8\\x1a\\xb8\\xe7\\xb2\\x0eM\\x8at\\x89W\\x04f\\xf9\\n\\x06\\x92\\xc6y>\\xe0\\xbbm\\xe7U\\xa0\\x88'\\x9f\\xf0<#K\\x1f\\xbf}0\\x1c\\f\\x1b\\xe9\\xed\\xa5\\xa9\\xa9\\xa9\\x87\\xe0\\x12unho\\b\\xeba;\\xadp\\xd7哅\\xb7\\xdd΄\\x15\\xb9\\xfdմ^O\\uf16d\\x9a\\xc1u\\xe4\\xa8\\xfc\\xe1\\xc6B\\xa5\\xe4Nw|\\xcf\\xf3;7\\xa7\\x8d\\xe9rok\\xcb\\x0el\\x0e\\xdb?\\x18փ\\xa5jq8*V\\x9di\\xd3\\x05\\x93\\x8a\\x19\\x86ZO`\\xb7G\\xb9aAo\\xd7Up\\xf2\\xfe=W\\xfc\\xe2O`\\x1f\\x00\\xf3\\x1d\\xeb\\x85\\xe5l:|f\\xcf,\\xef&\\xb0\\x8d܀d89%\\xce2\\xf1\\x8dո\\xfas\\xa6\\x1bW\\x9f\\x18\\u007f\\xc2*\\xf2\\xf8\\xf6\\x0eș\\xf3+\\x86O\\xaa\\xb1k\\xfe\\\\5\\xf6ǟ\\xab\\xb0\\xea9\\xbclW\\x9e\\xcf\\xff\\x86 \\xa7B\\\"\\xef\\xf4\\x97\\x05B\\xb0ʯ\\xf9l\\xd8p\\xfb+\\x1f\\xfb\\x1f\\x9ds+\\xc6B\\x18\\x8f\\xc2܉\\xfcs\\f^\\xfd>\\xd5x%x\\xa6\\xccU\\x8d5\\xdf`Tw\\x06\\x8e\\xcejX\\xb2DIA5Y\\x97i\\xb4J\\x98\\xc5t\\xa3\\xe2 .J\\vƦ^\\x8f\\x04e\\xb4(\\x98\\xb6p\\r\\xa7u\\xa6\\xab{\\f5\\x18\\xcf6\\xb8p\\xeb\\xeb \\x90\\xc4A\\x86\\x90Jl`\\xa8{1\\xfb*L6\\xaa\\xaa\\xe0\\xe1\\xc1Y_SYY\\xa8\\xda\\x01*\\xf4\\xcey\\x18\\xff\\x1eh\\xdeM\\xe8m\\x92[K{.\\x9eX\\x9e*ْ6$N\\xf1\\xd5\\xf3\\x9c\\xc6\\x0e\\x12\\x99\\x0fǰ\\x86\\xcf\\xf0\\x1d\\x0eG\\x9dT\\xa2\\xfb\\xe6\\xb5:\\x9d1\\xbcR\\xbeD6\\x9f\\x1a\\x1c><\\xc0\\xb7\\x8f\\x81$\\xd2u\\xb0\\xb9+\\x93\\xd4\\x01\\x0f륚aءO.\\xa7Dӄn\\x9af\\xa3Uo\\xfa\\xae\\xa7OY\\xa4O\\\\\\xf7Z\\xdb4\\x1d\\xc74\\xed\\xed\\xcfF\\xde\\x10\\xbe\\xfd\\x01\\xe3\\x9a\\x15\\xfd\\xf4\\t\\xddd\\a\\x99\\xca\\xc2@ \\x01\\x9ce\\xe1-n\\xb7\\x9b]\\xb8\\v7\\xfb\\x9e\\x1bh\\xb6\\x1d[\\xd6Km;\\xb2\\xac1\\xef\\xe8\\xf7\\xa5\\xcd\\xdd\\xc6z\\xaa\\xb6莆H\\xa9\\xc5\\xd9\\xf28\\xd9j\\x91h\\xa3E2f.@1\\xb7NXg@\\x8a\\xbf[\\xf9\\xf4TI\\xb34\\u007f\\xef\\xfe{\\xf7\\xbe\\xf5\\xe6\\x03;3R\\xef\\x99ߺn\\xb2زM\\xb7ל\\xff\\x93\\xf8u\\xaf\\xe8|hǍCK\\x04]\\x1f\\\\\\x8d\\xbd\\xf7\\xed\\xbb\\xf9\\xad\\xad#m\\xa7Y.\\x9b\\xd9\\xc4t\\xbb\\xa7\\xab\\xce\\xe6\\xe5\\xb7o=\\xb4~0\\xe7\\xfcz\\x8a\\xee\\x01\\x1b\\xad\\xa5\\xecT\\x0e(G\\xc6\\x11cI\\xa0\\xdb\\xc5\\xf8Zw]\\x05U\\x9b\\x03\\x1b\\xacS\\x84g`\\xe7P&R\\xd1C\\x9c'\\x9c\\x8b\\xe9c&{w\\f\\v\\x9aÃJ*\\xa0왵\\xe4;s\\v\\vs\\xa3\\xb7\\uf7b8h}\\xcaB\\xc6iK\\rKV\\xa1\\xae\\xd5\\xc2К\\xda8<\\xb1\\xfe\\xb6\\xd7_\\xffS?\\xf5\\x99\\u05ed8UJ\\xca\\xc5؏g\\xe7\\xc8]nL\\x9a\\xadxm\\xa2E\\\\\\xb0\\xa1ޜ\\u007f%WT\\x8e\\\\v\\xa42Yp\\x1a\\x15n\\xc2@/\\x97[~\\xb4\\xbc~\\xb0^\\xdc\\x19\\x04\\xc2\\xe4պS\\xd8\\xfa\\xe8\\xd5/\\xbf\\xfa\\xea݃\\xe9\\xb9\\x11Hq\\xc7\\xf2#\\xeb\\x9e\\xc8M\\xc3 \\x81\\xa6&\\xe4\\xa7\\x13\\xaaj\\x98\\x9c[\\xf9\\\\>\\xc6\\xf23㑠m!\\x89$<\\xd2\\xc7Ij^'\\xe3Q\\xf5\\x8eӇ\\xd2\\xd8}\\xccl\\x9ao?q\\xe5\\x15\\x87\\xd3й{<6\\xb6\\xfe\\xc7K\\b\\x99\\n\\x9et\\x9c_\\xbb\\xe9\\xa6i\\x0f!\\x00\\xc1\\xcbR\\xce~\\x17\\xfa\\xffK\\xff\\x97\\x18\\x8f\\n\\xd2&h#I>%)\\x14\\xb6?\\x05~\\x8e\\x12$9\\xd8 95\\xd5\\x06A\\x9a*\\xe83\\xf8-\\x83\\x17\\xae '\\x87\\x87.9\\xab,4G'\\x1aA\\xbbeT\\xddՂQ\\xae\\xaa\\x19_MXZ\\x8d\\x93\\xb5\\n)\\xceֵ\\xf2ĴޚM\\x16\\xdcW^P\\x18\\xcd\\xcfV\\xfa\\xe9\\xee\\xc1\\x91`\\xdf\\xde㤹Н\\xd3*\\xcdZ5\\xadd\\xbbZakoX\\b\\x97*^\\xa5\\xe14a@t\\x8c\\xd4X\\xb4<g\\xda\\xfd\\x05\\xbei^\\xb8\\xc3\\x1d~]=\\xa5\\xffj:\\x9f.GW[\\x1f\\xa8\\xee-\\x8d\\xe7\\\\\\xbfB\\xbe\\x02\\xe3]Sb\\x18\\xef\\xfb\\x15%\\x12\\x03t%\\xf3\\xe4\\xb54\\x93\\xf5{C\\x85\\x83\\xb5\\xb7\\xa0a\\x1c\\x80\\xc3\\xd9\\xe7Ey\\x03\\x8cj\\v\\xc4\\xfcR\\xb3t\\x89\\xaf4\\xe3?\\xde?\\x1c\\xfaīw\\x16'w^|)yM\\xcd]\\xd3A\\x81\\x80\\xfd\\x10L\\x1b\\x9d9\\xeaO\\xce\\x0ff룩\\xac\\xea\\xb9\\x1d\\x16\\x809'\\xe6b\\x9f\\xac\\u007f\\xf5\\xa1\\xe2g\\xef{\\xa5:\\xb0G\\xcd\\xee.1ԯY[;\\xb1u\\xac\\xa6\\xcdqK7\\xb9\\xc3:\\xaeWbb\\xc9\\xd8ٞYWWhyfG\\xa37cN\\x05\\x98\\xd6\\xeb\\x98k\\x91\\xef\\xe7}\\x03\\x9e\\xca\\xf7\\xc8\\x19EW\\x12\\xb0\\xa2k4\\x9bX\\xa7]\\xb0P[\\v\\xac;<6\\xffꗸ[/]\\xbe\\x98;\\xd3w\\xdfw\\xd2=e\\f\\x0e\\x1chҿ\\xe2;\\xee\\\\S/>\\xfd{|\\xfd\\xd4[.\\x9a\\xbfbc\\u07b9\\xec|\\xce_ĵQ4q~\\x12&\\xdfF\\xa1|\\xaa\\xf6օ\\xb5\\xfd7\\xde\\xf8\\xfa\\x1b\\x1b\\x9fz\\xc1\\xe1\\x8bn\\xbb\\x88\\xd4\\xdf\\u07b9\\xe9\\x8d7\\xddtp4W\\xbf\\b}\\xaf\\x1c_\\xfc\\xec\\xd9?&\\x9f\\x03\\xbf\\xf6b̉l\\xa7\\xfc\\x99\\xe0\\xab\\xc8\\xebj\\xf0\\xb6\\xe2\\x18\\xed\\xac\\xd3\\r\\xd2\\x1d/\\x12X\\xec`\\x94-E\\xacq\\x04\\x9b\\xa8Q\\xc4\\xe8\\xae!\\xd1@\\x86\\x9fH\\xb7A>\\xa3\\xb9\\uef2f:\\xae_R\\xfd\\x93>\\x03S\\xd6+i\\xfe\\n\\b?L7\\xb2\\xc4|m\\x00ˌ\\xa9\\xb69\\xef\\xcb5^Y\\xf5\\xaf\\xf3\\xe08\\xe1:&\\xf5\\xe7ݲ\\xe1\\xb8\\v\\xf5y3\\xf4\\xfe\\xedd\\xfd\\xba\\x8f\\xc0vo\\x11\\x1a\\xd1<g\\xb1\\xb1`F.\\xd3\\\\\\xa7\\x17\\x12\\xd7\\x14\\x9emR\\xefD@\\x1c\\v\\xf9¼E\\xb9\\x02ZZ\\xac\\xe3\\x01\\x98\\xf8/\\x16=ͩ\\x965\\xef\\x84ǘ\\xb3\\xa3q\\xa2.\\x9f\\x8dz\\xf6[\\xe47\\xc1\\x86A\\x8e=e\\xd4A\\x9f$\\xaf\\xd4\\xc1\\f\\xb8N4\\x1a'\\xba\\xd4(&(weBE\\xba\\xce\\x06\\xc3sQ\\xa4\\xcd5\\xf3\\xb5\\x1fy\\x89\\xb1ϜH\\x89:\\xf7\\xf2\\xd7\\u007f\\xa8[]\\x9c\\x1e\\x11Rs\\x16\\xcb\\xc4\\xf3E=\\x98j.s\\xbfQ\\x88H\\xd5Y,\\x86./\\xad\\xee\\xfd\\xe8K\\x8c\\x87?\\xb2f\\xc4\\b\\xe1\\x1ai\\xb3D\\x9d.\\x112ۙ\\x8c\\x84\\xe7\\xbb`œ\\xc2\\xcc\\x04!\\x86\\xd7\\xcc:!\\x92a\\x9b\\x0e\\x95x\\xf0\\x9f!\\x9f&\\x9f\\x87Q\\x8f\\x99\\x9dHc\\xec\\x92E\\xda\\xc9'u7\\xd0\\xfa\\xeb\\x8c\\xf9U\\xe1y\\x8c\\xc9V\\xe1\\x1d\\xa7\\x82\\x91\\x1f\\x19\\xdcS\\xb9sF\\x1e\\x98\\x13\\xfa\\xef\\xaa\\x06\\xa5\\u007f\\xc8\\xf5y\\x9d\\xff\\xac\\x10\\xd7\\xe9\\xe2\\n\\xee\\x89\\xfd\\\\\\xec\\x14\\xfcC+\\x02W\\xbf\\x87\\xeb\\xd7\\n~=\\xf7\\xf9\\x0e\\xa1\\x8be]|x\\x96\\xeb_6\\xf4_\\x98\\xe1H\\x8bI\\xc9\\xe7\\xc1A\\xe3\\xfc\\xed\\x9c\\x1f\\xe2\\xfc(\\xb7\\xf9\\x1e\\xce\\xe74\\xfe\\xcbWq>\\xc9\\xf9\\xbb\\x05\\xbf\\x90\\xf3ka\\xf5\\x88s\\xde\\xe5\\xfc\\x03p\\xd8{\\x85&\\xc7\\xf6Y\\x19\\x17\\x11JCYV\\xd6\\xcf\\xc3\\xdd\\x06=&r\\x02\\xedE2ȆٸƑKf\\x85m~\\xc3\\ued8e\\x96\\x92\\xa0\\xbfL\\xde8\\xd9o\\xb5\\xfa\\xc7\\xf6-\\xdeɖ&\\xdcJ걝7d\\xd5\\v\\xc8\\xde\\xc5\\xfa\\xa0\\xf6\\x8f\\x93e.J\\x91\\xefu\\\"5\\xe1a\\xbb\\xfc\\x0fs\\x8dx2\\x9e\\xaf7\\xc8\\x14\\x1e6\\xb9\\xbe\\xb8\\xef҉93,\\xba\\xd9\\xed]\\x97\\x9e^\\xdc[\\x1b\\xfc\\xfdJ\\x9b\\x9az\\xa7\\xe3\\xebĠ\\xcd?ژ\\x8b[I}>\\x1f3\\x9f\\x95\\xbaOQ\\xfe+\\xe6@\\xd7\\xd4X֑\\\"\\xfd\\xdd\\x1a\\x91\\x99\\x90]\\xc9\\x1b\\x85\\xde*\\xe2F\\xc9\\xf2\\xd4$'\\xda衦v\\xc9R\\x0e=\\fFXg&OR\\xed\\x80u\\x82\\xb6\\xf0\\xcape\\x00]\\x10\\r\\xe4\\xb1\\xef,\\x19\\xa8z\\xb5<\\x05\\x13\\x8b\\x95\\xb1\\x8c\\x15cŠ!\\xf3\\xa9e\\xac8\\x86\\x0e\\xd9i\\x0e\\x90\\xe6j!O\\xf3M\\xe5\\x8cԺ\\xcc}]\\a\\xe3H\\x92a\\xa4X0\\xd2C@\\x98\\x14!\\x0eP@2\\xba\\xccU\\x84\\x01\\x17\\xf0r,d\\\"\\xd2,\\x87a\\xed\\x98J\\xf40\\x12E\\x03\\\\;\\xa6s\\\"\\x182ǡ\\x8f\\xc5%#P\\x15\\xfd1*YX\\b\\xe2\\xdb\\xd1\\xed\\x1auu\\xb6]\\x8d\\xab\\x1e\\xd1}F\\x82\\x98\\n,\\x9f\\x00\\u007f\\rAX%S\\x1f\\xba\\x82\\\\V\\xbcsL\\x8b\\xcf\\xeb\\xd8UMBw\\x82=\\x15E\\xc5\\xf5\\x01\\xaf숍\\x02\\xa5\\xb59ۯ\\xfa\\x0e\\xe8ἰ]\\x03\\x1bS \\xe3\\x98ư\\x1a\\x9d\\xfd\\xf0\\x12;4\\x10fZu\\x04\\xa1\\xd4\\x02\\x13\\x12\\xeb\\xd95Y#\\xa2Q\\xa3T4\\x1a>smbtc^\\xa0\\xfa\\x8c\\x89P\\xf9f^\\xa7\\x8f/f#\\x9d\\xac\\x0e\\xd71I\\xdc\\x1a\\xc3j\\x11\\xa1[\\xb1Ɛ\\xfc\\x12\\x8eô\\xcf\\xc9Y=\\x9d\\x17\\xa6\\xbc:\\xe6\\xe8\\x88p\\x81\\x1e/#\\xa6\\xcc]\\xe5sA\\xd5\\xc0_\\xe7\\xb0\\xc7\\xe4\\x8cnk\\xd5\\xc0M}߂\\x93\\xe6\\xaa\\xc3uJ\\x8a\\x13܄㋖\\x05'G\\r\\u0382\\\"\\xbc\\xbb\\x96Au\\x89=\\x84s^\\u007f+\\xe3\\xde\\n\\xc9\\x12\\x8f\\x83+1\\xf2\\x182\\x15Q\\x10\\xa5\\xa3n\\x96\\xff_$\\xf06\\x02\\xad]\\a\\xf9\\f\\xde\\xf5\\xd3j\\xb1\\xbbz\\x04\\\\\\xf5\\x90\\xc6\\xfb\\xae[ME\\\"\\xe2\\xe3;\\xdcWy\\xbfv\\xf4\\x97\\xee\\xbb\\xf9\\xc7\\xf5W\\xbe9\\\\Z\\xf8\\xdc\\xec\\x1dv\\xa2v\\xaa\\xb6\\x00\\x8d\\x04\\x16le\\xee\\x92\\xfd\\x9d\\x82\\xadn\\x92ny\\xb2B\\x0fi\\xceB\\u007f\\u007f\\x16\\x0e\\xcdW\\x84w<\\xd09tS'\\xbc\\xe2\\xe5\\xab7\\x18A\\xdb*\\xca2.\\xe4\\x9c<\\xab\\x1c\\xa0g\\xc8\\r`u\\xd4@\\x17_\\xa2\\x9cPnP\\xeeT\\xeeWޠ|Py\\x029'sL\\xe2\\xee\\xb2DK\\xea\\xd6H;\\xce\\xc6T\\xe3Y\\xa7\\x05}\\x1fIl1\\xeb?Od\\xc8!'\\x9a\\xe8\\xdc\\xe5I>]D!\\x911Q\\x99ɐ!pL\\x8eP\\x96\\f\\xf0@d\\xc4\\xfd\\t\\xab$\\xbc\\t\\x86\\xb7d\\xa8X\\xe2\\x8f5Gr\\xc71BE\\\"\\x13(\\xce\\xdf*\\x01\\xc20f\\x8bQ\\xf1\\xd6\\x00<\\x85\\xa4E\\xcf\\xec\\xb9{_kҶO?\\xda_\\x18\\xfc\\xf8\\tx{\\xf4t\\xbb阧\\x1f]3\\fˉc\\xdfF\\x80#\\xc7\\xf1\\x1c\\xdf\\xd1=\\xf6b/\\xacE\\xfedS\\xefھo{XƷ\\x03\\x96=\\xcf\\xf6l\\u05f5w0\\xcd3hD=\\xa3\\xado\\xe8+\\xbaˢJ\\x85E\\xccջ\\xfa.,i\\xe2\\xb2\\xdc\\t\\x8b\\x80>\\xd9\\x18ֵC\\x83ٖ\\xbf\\xc4\\xe7\\x9a\\xfeR\\xa5w@#\\xe4\\xd0u\\x96irõLWG\\x02rC\\x13\\xdc6-W\\xb0\\x8bGn\\x18\\xba\\xa3Q\\x10\\xd4/t\\xfd\\x82_\\x9b\\xf5\\xdc\\v\\xcf-m즮\\xbe\\x0e\\xed;\\x86\\xb1\\xe1\\xea\\x8eFS'\\x91_\\xaf$\\xa0\\xd44\\xa4\\xe1\\xd24\\x85\\x80\\f\\xfb\\x11\\xe8\\xfd\\x87т\\x80a\\x89|\\x1a-P\\v\\xe82t\\xf3\\xe9\\x05\\xf2\\xd9\\xfdz\\xf5\\x96e\\xd3\\xd2?\\vމ\\xf8\\xee\\xcd\\x01\\x8dɛ\\xbc\\x90\\\\\\xb7\\xf5\\xdbM\\xff\\xa2\\x9eyۯB\\x8f\\xd7\\xde\\xd1\\xd0b\\xf1sZ\\xa0<+\\xc7l\\xea\\xdf{ơ\\xacFo\\\"\\xf6\\xd9\\xf9 .\\xad\\x94<\\xe6Ʊ\\xbb\\xf50\\xbe\\xbf\\xfd\\xee\\v\\xb8vɭ\\x97h'\\xc5~\\x01\\u007f'9y|{\\x1by\\xa5\\x1bo\\xbd;zu\\xe5\\xe0\\xc1\\x95\\x18\\xb7\\x8axulw?\\x05:\\xf1\\xa9<.O\\x02\\xd1\\x1ddI\\x86\\x93\\xb0\\x88fC>\\xfd\\xedo\\x1e{\\xed#\\xa7\\xafn\\x1e\\xbb\\xea8\\xa6\\x9f\\x9c9\\xf3\\xf5\\xf9\\x17\\x1d>\\xfcΝ\\x83d\\xb0\\b\\n?;\\x87\\xe3\\x8b\\xf1\\xc2\\xe0\\xdf\\xd9ԈD\\xb7\\a|\\x9c\\xe7)\\x97\\x8e\\xb3\\xc7nRnW^\\x88\\x91\\xd7n\\xbf\\x8b\\xa4?е\\x10\\x89\\x11\\xfap\\xfe\\x8eY\\x15\\xe3W6~m/k\\xc3Q\\x9f\\xc3\\t\\xf6\\x13\\x818\\x88c,D\\xd6\\xe9Np\\xc1\\xc6k5\\xf9\\xad{n\\xcf\\xf1O$\\xff\\xf6\\xe2\\xde\\xd7?\\u007f\\xcb-\\xb1\\x1b\\xbd\\x81\\xab72~\\x17\\xa57\\xdfr\\xfe?\\xe2pv\\x1ba7n\\u007f\\xff/\\xb1C\\xdanX\\x84ŭ_Vmr\\xb9n\\xde\\x1f9\\xf7\\vz\\x15\\xaci4ޣ\\x82\\xdf\\xed\\x1c\\xf4\\r\\xdbiٖe\\x1f\\b\\x82_Ӵ\\x16\\xa5\\at\\xfdV\\xcf;`\\x9a-\\xdb~\\x0f\\x96\\xd3|\\xd24۶}H\\xd7/\\xa6[\\xb7x`\\x9e\\x90\\xfb4\\xed\\xed\\x9e\\xf7I-\\xf3\\x9c\\xb6\\xe1\\xc7\\xdaQǡ\\x1ak\\x06\\x01Α\\x88\\xb3\\xbfI_F~K\\x99\\x87{v\\x17<\\x11W\\xf3\\xd0.\\xccg\\x87\\xa1\\x97\\x81\\x91\\xaeb\\x91ɨ\\xbb\\\"˽\\xd1L\\xc9b\\xd0cÜ\\x196[\\x1e\\x03\\x11\\xcb\\\"\\x8a\\x16\\xac'\\x92ԑK\\xa7v\\xb4\\x82G\\xcb\\xe9[-#?\\x13֑\\xe0\\x81h\\xccz\\xbb\\x93\\xd4V\\x1c\\xc3~\\x87\\xe5W\\xc1\\x9dN\\x06MP\\x00H\\\\\\xe7\\\"&+\\xec\\xf3\\x11\\xa1\\xba\\xb2\\x16\\x87\\x12ӧ4N(\\xb1M\\xc4F%\\x0fن^k\\xc7\\t\\x1c\\x8bJ\\x85\\n#\\xb4@\\xc2\\xeb\\x88\\x02ƐAI\\xd3\\x19y\\xb4\\xbd\\xab\\x9e\\x99\\xba6\\x11z_\\t\\xa8\\xda)G\\xc1W<\\xc3c<(\\x8c\\x9a:\\xce\\u007f\\x9a\\xa6%\\v\\xfa\\xa8\\xc9(\\x8c_\\x1dq\\xce|\\xca\\xe2\\x94\\xd2B\\x8c3\\x9b[\\x8f\\x06QX\\v\\x19\\x85#C\\xdfe ^\\xfdf\\f?i\\xa8\\x88*E\\r\\xa6\\xc3\\b\\xcd\\xe7\\xe0\\xf3::Cy\\x95\\xf2Z\\xe5Mʻ\\x94\\x0f(\\xbfA,R\\x01\\v\\x15;\\x19X\\x0eK\\xb1\\xc6E\\xd6\\xfdw\\xaf\\x96\\x80\\xdb&F?\\xf15X\\x81a\\x017>\\xfb\\x89/P7\\xcb\\xd9H\\xa4?\\xe9\\x05\\n\\a͜\\x8coGO\\xc7\\xf6\\x1aV\\x90fr^e\\xc0\\xbb\\xe7-\\x9f\\xbf>\\x03\\xb1\\xce[\\xa9\\x1c\\U000ddf08\\x1d\\xafA\\xa2\\n\\xc0\\xd2\\x02\\x19/.\\xb5$:\\x80\\xa41\\x8dEgV\\xf2P\\x8cz\\\\\\xac`\\x838Ɂ\\x1e\\tt\\rL\\xdcB\\xe2\\xb6\\xd1 o\\x16gr\\xd0\\x12\\xfaE\\r\\xb3\\xde\\xc1J\\x99cbv^\\xb7\\x9bm\\xdb/V\\xfd؏\\xe2TX)<\\x874\\xb5D\\x1aG^\\x14T\\x8a\\xbe3ٴ\\xf5\\xf9Y\\x9d\\xf5\\xfbt\\xb4J\\xf9\\xce]\\xdc\\x18\\xed2쥡\\xedN-\\xb8~\\xb9\\t\\xc2=\\n\\x02U\\r\\xfc\\xd8\\x0e\\xbcf\\xd9\\xf3\\x16\\xa6\\\\{\\xb8d\\x1b\\xbbV\\r\\xbe\\xb6\\x93\\xd3\\xd5U\\xd2?t\\xcb[o\\xbd\\xf5\\xad\\x97\\x1e\\u007f\\xe0\\xf8\\xf1\\a^\\xa9b\\xd5*3\\xa7ǟ\\xd1\\xf8\\xf3K \\x8c\\r-\\x04\\x8b\\xc0P)'\\x86\\xd0\\xd0bb\\xc4\\xc0\\xba\\aC%$\\xa4\\x9c\\x81\\x1bC|f[\\x9c\\\"1\\xa7\\x85\\xf5 &ź\\xd0uղ\\xb5\\xdby\\xc1\\x11\\xa6m\\xdb\\bfF\\xc2\\xf7yBN\\xf2\\x17\\xe38\\x8b\\xe2\\xa0^\\x0e\\xbdfóړ\\x168ü\\xd3! H4\\xb3ն\\xdcz\\xd3\\vJ\\xb50\\x8e\\xb286\\\\\\a\\f\\x12Ƣ\\xc87\\x83\\xa0V\\xf4ݹ\\xaec\\xae\\xae\\x98\\xfa\\x9e\\r\\xa1^p\\x90\\x91\\v/T\\x0f^\\xa0\\x8a\\x8d=\\xba\\xb9\\xb2j\\xd9\\xdd9\\xd7/ւ\\xd0\\xf2#\\xf0Ԅ\\x00\\xfd6\\x81\\x97{\\xcb\\xdfa\\xc8\\xe9\\xc4\\xcb0_NGsQ5\\xfd\\xf3\\x96\\xd93\\xcb\\xd6\\t\\xe6\\xdc\\x1d%bSh\\x93\\xd4f,P#\\aS%\\t<\\xac\\x80\\xe1\\x1a\\x18\\x84\\xbe\\t\\xbb\\x06\\xbaZ\\x06\\xbd\\x98T\\\\\\xd0T\\x1cq\\xa4\\x89\\x03\\xe6\\x12q\\x98i\\v\\xe1sG\\x9f8\\x1d\\xa6b\\xaf\\xadK[Plϻ\\xfcP\\xea\\x9d]\\xe8\\xc3F\\xeb,O\\x1b\\x93X\\x11\\xe3b=d\\x81\\x82\\xbe\\x03\\xaa\\xa8\\x836\\xc88\\xd1t\\x9d\\xe4{H\\xecܰ)\\xa1ȑ?\\n=Y$\\f\\x04\\v\\xf9i\\u008cԻ\\xa9a\\x1b\\xdc\\xe4\\x13\\xcd\\xe7c\\xf5\\fqC\\x970\\xdf9\\xdd\\x04\\x9b\\x0e64n\\xf2\\x13\\x83E\\x93\\xfaҒ\\x11\\x86\\x89\\xb1o\\x9f\\x91\\x84\\xa1An }Ӊ\\xcd\\xd46\\x1c8\\xb8ݨ\\xa9\\x06\\x18\\xd1\\x14g\\x03\\xc1\\xf25\\x8dZ\\xa3\\r\\xeb\\xe1\\xcfN\\xad\\xc8\\xd9\\xfa\\x94O\\xae\\xbc\\x12,\\xd0\\xf8\\xc5/\\x8ek.\\xf9\\x10\\x91\\x98\\xed6\\xf8{\\xff\\n\\xb2\\xb4\\x0f\\x16\\xd7i\\xe5>\\xe5\\x8c\\xf2k\\xe3\\xaaO\\xd1r\\x11I\\xc9eM\\x10\\xac\\f\\x86ukAH\\xc3\\u007f\\x17\\x96\\xddbf\\x1d\\xed\\xceH\\xfaZ\\x91r̦\\x87Q\\xb5AR\\xe4\\xcf\\\\\\u05fa1\\u00905\\xe1je!\\a.\\xd40\\xfa\\xdc\\xc9d\\xa178V+\\xf9\\x1d螫\\xa1\\x03\\xe1;\\x86\\x88Ͻ\\xce*\\xa9\\xa9ٲ,\\a\\xcfR\\xf2鉊\\xc5\\x1c?\\x89R7 \\xa2y\\xa8\\r\\xb7\\xc4T\\r\\x15\\xacm.\\x9fU2\\x99E\\x86,\\xcb\\xee՞?\\xd9Z\\xb9\\xb2Q0\\xb3\\x8a\\xa8=oN\\r\\xe6\\xa7{\\xde4\\xd8\\xe2f0U%\\xba\\xba\\xbf\\xbeY\\xe3$p\\xd2 \\xb4\\x1fqh]\\x85\\x9e1\\x9b\\x92\\xa9\\xb6\\n\\x86\\xf7\\fN\\xf3,rq`\\x85\\xf3\\x9d\\x17Yf\\xc5\\r6\\xd2B\\xe4\\xa3\\u007fL\\xb4$\\x00י\\v\\xc4\\u007f\\xc0\\n\\x1d'\\xa8G\\x86f\\x9a~\\x05\\xe4\\xf9\\xa3\\xd5W]\\x9buʩcb~\\xa7P3\\x93Yp\\x86\\f\\xda\\x03\\x8bl\\x85'\\xa5z\\xa3٨\\xd9w\\xf6\\xca%\\x92D\\xfftɝ\\x05\\xe1\\xfb\\x84\\x89ț\\xba&\\x9c^\\x9cn\\xe9\\x97\\n\\xc1\\xb4K\\x91\\xedV\\xd5\\xcc k\\xdd,x\\x03n0]\\x9d\\x98Cb\\xac\\x95\\x8e\\x8a\\xa2\\x1c:\\xfd\\xae}\\xce\\xe1\\xf7\\x06\\x89\\xa65\\x83\\xa8\\x90\\x14\\x83\\n\\xd7܊),O\\x98n`\\x1a\\x14\\xb3L\\x8d\\\"\\xc6\\xc2l\\xc7\\xf0\\x03SQ\\x9e\\x9b\\xa3\\xff\\\\\\xfbI\\xc3\\xea\\xc0\\xe19\\xad\\x88\\xf56\\xd96\\xad3\\xcec\\x93\\xb7E\\xa5R\\xb4\\xf5s\\xf8N.b\\xcb\\xfb\\n\\xde\\x04#qٶ\\x03\\xa3-\\xfcī\\xc1\\x9bj\\x87\\x81`qea\\xef&y\\xfc\\xdc\\xde7G\\xa5wl\\x12z\\x89a\\xa4Ac\\xc6\\xf5n]\\x05\\xc7/pJ<\\xf6\\x16\\u05cb\\xee\\xcaUG\\x95\\x9csZ9E\\x1f\\x84n9\\xa7\\\\\\xa9<\\x00z\\xa8\\xd9Y\\xa4\\v\\x14;\\xdcr\\x8dI\\xb8\\xc5\\xe1\\x06]W%O\\x04\\x8d]\\x86\\xe7\\xbeH;?q\\xb3\\xab\\xb6\\xba\\xcbi\\x9d\\xa6X\\xf0\\xadJ\\xe4F.\\x0f\\x92l\\x13\\xb0[\\xff6/S5\\x99\\x8d\\xce\\xf9\\x04z\\xa3\\xe0\\x86qOX\\x94N\\x12\\x04\\x0fa\\x13\\x068y\\xab\\xa8bMr+쬮Zɳv$m\\x82\\xa5\\xff\\xf9\\x8e#\\\"\\xf7\\xfc\\x1d\\xb9\\xa3\\x19O\\xa0P\\x06\\xf1\\xdb\\xd6|\\x01r\\xb6\\xad!\\x1cɄ\\x89-\\u008eF`\\x9c\\xf2tq7\\xa1\\x98f\\x86\\x90 \\x87\\x1d\\xc1\\xd8a\\xa2#`\\xa8\\xa6\\xdeMTS\\x17\\xb8G\\xf8?\\xdd\\xfax\\xbe\\x19\\xb6\\xf3\\x9f\\xb8\\xfd\\xd9y\\xa5\\xbe\\xb2W9\\n>\\x95\\x12J\\x10\\x1b9\\x97\\x0f\\x8e\\x1f\\x8cEI^\\x9cs$\\xe6\\x16\\x94\\x04\\x84\\x90al\\x19\\xe8I\\xe2\\xacW\\x132\\x96\\x1e=\\xb7\\x02H\\xfab砝\\u007f\\xe5\\xce\\xee\\xd4%\\xa3ɺ\\xb6\\xec\\xb0\\xf8\\xab*%\\x02\\xfa\\x1ftX\\xc6\\xe3̒\\x0e<x\\xe1\\x88V\\xc0\\xc0Mw\\x03\\x86\\x94`\\xa6\\xe9\\xf0Z\\xc8\\xc3\\xd3ϔ\\x06=\\xb1\\xf7do\\xe1\\xe1\\xeb\\x92\\xf4\\x8a\\x169Н\\x1a\\f/\\x0e\\x99\\xd3\\xd3\\x1a\\x9d\\xd1\\v]\\r\\x91Q\\x10hS\\x05\\xcd\\x17jĄ\\xf6\\xb1\\xa6\\x8f\\x13\\xcd\\v\\xe3\\x04\\x913\\xc0\\x9f\\x11́\\xb5\\xa4\\xf6\\xacʡ\\x87\\xae۳\\xb9\\xb4pݞ\\xd9\\xf6\\xd14\\x1a\\xc7\\xda\\xfeTޛEe\\xa7\\xf2 \\x8c\\b\\x0f\\xe7\\xaas\\x86\\xde\\xd6\\\"\\xce_\\xa3}\\xbfH\\x06\\x1b\\x92&X\\x92\\xf8\\xf6Av\\xe7\\xf3\\xd8`\\xaf\\xc8Hc'\\xafrJ\\xfe#\\agH\\x10,\\xf7M\\xc4xb\\t\\xf3td\\xb3\\x1b\\xb4K\\x9e\\xaa\\xd2Ī\\n#I\\xc0\\x88\\x10v\\x14\\xeb\\xa2f\\xc6\\f\\\\\\xbbت\\xe8z\\x1cٰ\\xdaJ\\\"!\\xaa\\xb8\\xfa%^\\xc9o.NL\\x9cZ\\x1c\\xa9\\xddx\\xe8\\x06\\xddn\\xe2\\xcc8\\xe9d\\xdbsGqG\\x1b\\x0ey7\\x19x^{2\\xb3g쌫\\x16ӂ\\x02'\\x93\\x8b\\xebs흺#\\xa8F\\x03\\x8d\\xc7 @\\xeb\\xf8k\\x86^\\xb1\\x13V\\xad\\xb2\\xc4.\\xeb\\\"\\x8cm]\\xfe\\x9an\\x94\\xad\\x04\\x91\\xf8\\x12y\\x12\\xb1e\\xec\\x85\\x1f\\xce&&\\x16'\\x02w\\xca\\x01K\\xcb\\xf7V\\xb2)\\x8e?\\x97.\\a^\\xab\\x93\\xba\\xd3^ܝt\\xfd\\x95\\xb8\\xcbW\\x168\\xe5\\x11WC\\x02\\x9f\\x8e\\xbe\\xb33\\xbb\\xbe\\xd8\\x12\\x85@c\\xb6ʕ\\xf3yu\\x85\\x9cq\\xdeT\\x0e\\x9d\\x97m\\f\\xf6\\x1b\\xe3\\xd1\\xf2\\b'\\x8c\\xd3(˩\\xb2\\xb6\\xdd~\\x84iZ\\ue3e4\\xd4\\xca\\xe0fK}\\x93\\u007f\\x8fd\\x14\\x18ͼw\\xc9`H\\xf1\\xc0\\x8eۣ?\\xedL\\x12\\xb2\\u007f_}\\xe3H\\x16Di\\xea\\x13\\xbayu\\xe7\\x82\\x1d\\xb1\\xce\\xd7\\fb\\xd8\\xee\\xd1^\\xb3\\xa0\\xa9\\x1ao'\\xf2\\xfb\\xfe\\xfeZ\\x99l\\x87\\x13o\\xd9sG\\x85L\\xcen}\\xdf!\\xf4S\\xbfm\\x90\\v\\xfe\\xee\\xd00\\xac5Z\\x81_ \\xbb\\x8a\\xf3u0\\x98\\b%\\xdf\\u007f\\xeb\\xf5\\xcc0\\x98\\xfc\\xb2\\xf5\\xf5\\xdaͻw,[v{6\\x1f\\x8b\\xfc\\xec\\xe7ȿ\\x90O+\\x11x~{\\xf2\\xf9pY\\x02-՟\\xa4I\\xcbjh\\xaa\\x82\\x05:\\xe6\\x02Yg\\xb8\\x12\\v\\x9d\\xf3\\xbc\\x1e\\xc1\\a\\xb2(|\\x8cT\\xd5\\xc6\\x00]\\xd6\\xecHڒ\\x05J\\xee\\xbd \\xe0\\xbb\\xcaK+\\xbb\\xfa\\x89s\\xbc0T\\xc5\\x15\\x8f\\x9f\\xa8\\xfb\\x02\\xe98&t\\x18v\\x96\\x0f\\x0fO\\xb7\\xcaC\\x95\\xec\\x00\\xb1\\xe1\\xd8\\x0e\\x88(\\xab|j6M]\\xb5\\xd2\\xdaz܈6^\\xb6l\\xc6K\\u0558\\x90b}\\xfa\\xc1\\xab\\x1b֤\\xe1i|\\xc2\\xf5\\xec\\xc5\\xeb\\x8b=B\\x8e\\xbe\\xfd\\xce+\\xe7#\\xa11c\\xf9\\x82h\\xdao6\\xaa\\xb6\\x01\\xaafI\\xdd\\x13\\xac\\x81\\x89X\\x0e\\xc0\\xfd\\t\\x9bG_:帵\\xcd3Ĭ\\x18u\\xea\\x80\\xd5i;ָ\\x9e\\xe3)e\\v\\xfc\\x0e\\x1b1\\xddG\\xc8\\xd7*\\xf15\\x82\\xd6 \\x901\\xd3]\\xe4]Wo\\x9e:|\\xe5\\xe6\\xd1Q\\xb5\\xb3|\\xac\\xfa\\xf0\\xe7\\xbfڹ\\xe5\\xe2+\\xb6\\x94\\xcf\\x13wuם\\xe7\\xe6\\xb2\\x16\\xa0\\r\\x1d\\xd1\\xfeY?\\x8b\\xfa,y\\xf0\\xeeգ'W^\\xb6\\xf9Kd\\xe6;$\\xddz\\xff\\xfb\\xc1K\\xfc\\x91\\xb2Fϐ\\xfdЯ\\x16\\xc1vۧ\\\\\\xabܢ\\xbc\\f\\x91\\x89s\\x96\\x15p\\tz-p\\fk\\b\\xc9:\\xc6\\x01iI \\x83\\xe1h9'\\xe8\\xed\\xe7\\x81O\\xc4\\xe6\\x1e%\\xf9\\x8c0B\\x96\\xadl\\x10\\t\\xad\\xd3\\xcak<p*\\b\\x0e\\xc4\\x10\\xbc\\x90\\xa8\\x8cY\\xb35\\x80\\xb1\\rC\\xbf\\x9f\\xf5G}x\\xc8/rC\\xea\\xda\\x11\\xa5%\\x87d\\x92\\x97Z\\xc5\\\"d+\\xf4D\\fc\\x8a{\\x91g\\xda^\\x85\\x83\\xfb\\xc8*w=/\\xaa\\x06\\xed\\xeaL\\xad֊\\xd34>\\x93\\x94\\x87\\x9djQ-è+\\xd5+\\xc4ɼ\\xa4Y\\x15\\xf6]:\\xd3Ԉ\\xb3~}\\x92\\xb4\\xea\\x03\\xa3@\\x9a\\x01\\r<\\x8f\\x84\\x134\\xf2\\x8a\\x9a)\\x84\\x86\\x05ۮ_\\xd2uRIw\\x80١iV˯F\\x95ɽ\\xbfrq\\u070e?\\x9cE\\x1d\\x95Z\\x85؉\\xadbrCV\\xccB\\a\\xf4Z\\xc4\\r\\xedP\\x81\\xc4ƣ\\xf7\\xdd\\xf7\\x8eR\\x94\\xe3\\xb4\\xff\\x19\\xdd$\\xef\\x81\\xd1\\xeaI\\xe6\\xb2\\xfd\\xca\\x11\\xe5\\x05\\xca+q^\\x1d\\xa7\\xc82\\xb8%\\x89\\x9c\\xa1{n\\U000541b8\\x03ا\\x91\\xefFB\\x13\\xe0\\x9d\\xceӏ\\xc7H+\\b&\\x84\\xf8\\xe7\\xfd\\x01&od2/\\x03\\xc4#\\xb2\\x1eW\\xc7w\\x14v\\u0084j\\f\\xbbg\\xf8\\xacZ\\x89\\x94\\x9dd\\xa1Z(\\\\\\x1cg\\xdc\\x16\\xe1\\xb7A\\xda7\\xa4\\xb4\\u007f\\x1a\\xa4\\xfd\\xa6m\\x1a\\xc41\\xcc\\xf5\\x88\\x04f\\xc0-\\x13\\\\\\x01-\\x01\\xb5h9\\xa6\\xeaڮ\\x06f\\xdc\\x1b\\x8bq?\\xa9:\\x89}\\xc2\\fm+\\xb4\\\"\\x16ĥ\\x8e\\xe1\\x19\\x99\\x11ߜ\\x16H1\\x9d\\xa4\\xaa\\vޞ\\xf0\\x03p\\x16F\\xa3\\x13\\x0e\\x96\\xff\\x9a\\xfc\\xbf\\x9dW\\xad\\xf8\\x06bY\\x0e1\\xad\\xab\\x8d$\\xb0\\\\BTU\\x900\\x9a\\xf2\\\"\\xceCco\\\\xd\\xd1Jp\\x96M\\xb8\\x86\\x1b脕uW\\x04\\xfeM\\x97]v\\x13w}0\\xf5%\\x1e\\xe1g\\xc9\\x1d`\\x83\\xfbp_\\x17\\x94U\\xe4\\xe2\\x12\\x15\\xb2$\\xef\\x94̢X\\x8erA!Z9\\aQ\\x9e\\xb7\\xcc\\x02W\\xc2D`\\xbd\\v\\xa6\\x17\\xffn\\x93\\x90\\xd4\\x0fSB\\x1a\\x8c\\xaa\\xaf\\xaf\\x9b\\xe6\\xf5},\\xd1\\xd6*\\xb3\\xfd:\\xa3W\\xcet\\xa7ڳ\\xaf*7M\\xaa}\\xd9鯗\\xa0\\x1f\\xee\\xb9)\\xaeń\\xbaA\\xe2E\\x15\\xf0\\x92n\\x1e\\xac-\\xbet\\tg\\xc1\\xcb\\v{\\xf7To\\x98\\x0f\\xbcx\\xebs\\xe4 [\\xdeQ\\xbep\\xb4p\\xd2\\t\\x0fu/x\\xd9\\xf31\\xe7\\xf2\\xec\\x8f`l\\xbd\\x16\\xc6\\xd5)9[\\xf5\\x1a委\\x0f+\\x9fW\\xbe\\xae\\xfc\\bl\\xf7&\\x99$]\\x10\\xed\\xe3ځ\\xe5\\xffE\\xed\\xc0O(\\x1d\\xe0\\xa3x\\\\:\\x90ȉ]\\x14\\xfa\\xdbU\\x03\\x83\\xcev\\xd1\\xc0\\xe8\\x19\\xa2:\\x8c\\xc1\\x8e\\xb0N\\x04\\a+t$\\x90\\xfc\\xb0{GNѶa\\f翐\\xc7\\xc9y\\xfe\\x13㟔\\x15\\x83i[\\x12\\n\\x9f\\u007f\\x1e\\xe8\\xe3\\xd51\\xffv\\t\\f!\\x81\\xb5C\\xfd,\\x1d\\x8cz\\x83\\x91\\xe0\\x9d\\xe7\\\\\\xcbs\\x8f\\x85\\xb5b\\xb4\\xbc\\x84I\\xc9=\\x8f\\xf4Z\\xc8B\\xd7\\x13q\\u009f\\xb3_\\x02\\x12\\xa2\\x9b\\x905\\xf0\\x97\\x19E\\xf4\\x13\\xe8A;\\xe5\\xdf\\x0eB\\x10\\x9fLЀ\\x83c\\xcaw\\xe6\\u007ft\\xb6Z\\xa7:\\xa1\\xe0\\a\\x16Ke\\x84\\x15\\xa2\\xd4\\xf7\\x84\\xe3\\xda#ƙ*\\x84!h\\xe4Jl\\x01\\x140\\x12\\xb0w\\xeb\\x1fT\\xd2f\\xaa\\x0fV\\xad\\xcfT\\xe8\\xd2\\xean\\x19hXg\\xe4R\\xb6\\x1b\\xbe\\xc9?Oe\\xb4\\xcd\\x16\\x12\\xf0\\xa4\\xf0/\\xfd*\\xecHA`\\xc1\\xdf:\\xa5m5\\xdf\\x13\\xde/\\xb3\\t\\x12\\xf9\\xc2\\xff\\x1f\\x13\\xf8\\xca\\xd6\\xc7-\\x1c&\\x17!X\\xbeD\\t\\xd6\\t\\x99 d\\xaf|\\xcf\\x17\\x10\\xb4\\r>\\xf6\\x86࿈\\xbdB\\x9dP\\xe1O\\xecE\\xa4\\xaa\\xbdr\\xa2\\f\\x11\\xf6\\xbd\\b\\xf4\\x0e\\xb1t9E6\\xcd4\\x86\\xfe\\xab\\x1bF\\bޡI\\x87\\x8b\\x81\\x9d\\xfb\\x96\\xebA\\xa8%T\\x9d\\xd3(\\xc2]QmN\\xa5\\t\\xa1\\xf4z\\x15,w2I\\x9f\\xff\\x1b\\xb0\\x00V<U/PY\\v\\x03@\\xeaI\\x18\\x06\\t}-q\\x1cR\\xa0x\\xf6\\xb4\\x80G\\x84\\x98\\x1e\\x88\\xd3 )\\xa5-\\xa2\\xc2.\\xb4\\x85G\\x8d\\x0f\\x0fT\\xf0\\xdc\\x10o\\x05\\xdef0\\xfb\\xaf\\x85۵\\x83\\xdbۇ\\x0f\\\"7&b\\xc9\\u007f\\t\\x84ħ\\x95y\\xccO\\x93\\xc8fc*\\xb1\\x9c\\xce+\\a\\xa6\\xcc%\\xdeؽZ\\xe0+\\x9dQ\\x0fY¶q^F\\x92\\x9b&ǋ\\xcd\\xc6\\x00A96\\x9aN_~\\xe2\\xe6w\\a\\xfeUG\\x1d\\xad\\\\\\xd2\\xec6'\\x9dru^U\\xb3\\fV\\x94U\\xebج*\\x05=\\xdc\\x14\\xa2\\xedۥ\\xd24#j\\x8f\\x91\\xf9\\xcdjT&ڔ\\n?B\\xd5\\xd1\\xc4\\xc02\\xdfz\\xd3\\xd1{?~\\xd3\\xebm\\xe7ŧ\\x8e\\xff\\xec\\x04w\\x0e\\x1e\\xb0\\xb5\\xa0\\xab\\xf1\\xf2\\fe\\xadJaքU\\a-\\xady\\xa5\\xee{\\xa0\\xb5\\x1dn\\xb3@[\\xbd\\xb1J\\xb5\\x9d\\xbbTV[m\\xf4\\xcc\\xc0\\\\\\x04\\xab~\\xbeH\\xd5];5ZZxޱk^\\ua62f\\xca\\xeb3\\xbeI\\x15\\xf2K\\xca\\x1aXpG\\x95\\x13\\xca=\\xa0mQ.\\xbcCy\\xbf\\xf2Q\\xe5S\\xca\\u007fQ\\xbe\\xa9|[\\xce.\\xc8\\x02S1F\\xd6\\xecHP\\xd0\\x1c$\\b!*ǌL#\\t35\\xcc\\x111s(\\x198\\xa4{\\x0erS\\xde\\xd3|\\x92\\x0fq3%\\x8cfv\\xce]͏\\xcf\\v/x\\xc6%/\\x1a\\x97+a\\x87.\\x92\\xbfu$\\xbbg\\x8eι\\xb4@\\x98\\xdc\\x03\\xcd\\xf2\\x1cq<?\\xfe\\x19\\xb4\\xa6\\x11&\\xe4\\xa7\\xd2Y\\xcaϽF\\xb7a\\xed\\xba\\xf9Y,wrI\\x14\\x93\\xf7ά\\x8c\\xe61\\x86ɩ\\xe7Ļ&t\\rL\\xa8\\x8d\\x18\\fjJ5cv\\xb0<\\x83鿆\\x1dǛM\\xd0\\x17|bW\\x9c\\xe0L\\xb1\\xfe\\x00\\a{d\\x02\\xe4\\xb8.\\x1c\\xa7\\xf7f\\xae\\x9b<-\\x80[ap]\\xe8\\x05n\\x81\\xaaɲB\\xea\\x9aH\\xe1\\f\\xcb\\v\\x19,~\\xd8\\x10\\x85L\\x80\\xd7c\\xf2\\xa4 t~\\xbd\\xef\\xd6j\\xee\\xc36\\\"\\xc04'\\xc03\\xab\\xae\\xb4M\\xd75Mњ\\xa1~\\xa1+^\\xaei\\x85\\xa8\\xd9\\x04GL8AX_\\xf6\\x1d\\xd7\\xf7<\\xefm\\xa0\\xb9\\xe8D+\\xcat-h\\x15\\r/.t\\x93\\xb9\\x164\\xebz&{U\\xa7\\\\\\ue509\\xe7Mg\\xd9\\x1c\\b\\x18pAz\\x93\\u008a\\xcbpmZ5\\xb1\\xacu\\xb8&¼\\xb94\\x9dq\\x19Ӎ\\x99\\r\\xdbJ\\xebpuZ5\\xb6\\xac}\\xf3B\\xa5G5^\\xac0]\\xe5ݡ.⿳\\xbdB\\xa2Q\\xf3\\x914\\xb5A!\\xb3Ci\\x14G z\\xa28N\\xa3\\b\\xc4N\\x1c%\\a}\\x93iY\\xe2\\xedIS\\x8d9\\x8ey\\x83\\xac4\\xb8D\\xf4'MM\\xb0JQ\\x94\\x92\\xad\\xef5\\xeb\\xf5\\t\\xc6\\xec\\x86\\x1bY\\xa1C\\x9f\\xafj\\xa5\\n\\x05/prI\\b\\xdd\\xee\\x85!!\\xf1B\\xb3\\xc19\\x1cPҙ\\x1f\\xa9\\xaa\\xfd\\x80\\x9e\\xa6\\xa63aS:Qkԃ2^ܶ\\xbf\\xfc\\x15\\xd0kO(\\\\V\\x16\\x84\\xd0[#\\xb09\\xb0ު\\xdb\\xd2D7ä8\\xb2\\xfe\\xfe\\x8b\\x8b/-^\\xf2\\xb2+\\xa6)\\xd9\\xf3X\\xfc\\xc1\\xad\\xb5\\xf81\\x93<\\xb1ո\\xec\\xb27<\\xf8\\x1bƪ\\xef\\xaf\\x1au%\\xe7<UF\\xd0\\xde\\xf3\\x94i\\xb0\\x97\\x1eT>\\xa4|F\\xf9\\x1c\\xc62\\xb3$\\x9f\\x84\\xe6\\x92>!w$\\xc1\\x03\\x90\\xf0f\\x92\\ff k\\x87\\xb9Hs\\xab\\xaa;\\x1ak\\xc1\\x9c\\x90B\\x02^\\xcb\\xf0\\xa6\\xa6-\\xf7\\xb1\\x0evw\\x9e\\xcb*\\x91\\xd1\\xf0@X܅\\x84\\x18y\\x83-\\xccL\\xcc-\\xed$\\x1eI\\xe2\\x99\\xff\\xb76\\xbby\\xa9%\\x0e\\xa4,ǘ\\xec\\f\\x93>X\\xbc\\xf4t\\xb9\\xcc\\\"\\x04\\xc2\\x13\\x8cd\\x19\\xe1\\x168\\xbf\\x11{\\xc1\\xac[\\x8b\\x9b\\xa5$\\x89\\x92*%3\\x86\\x979\\x952\\x02\\xe0!\\xfa\\xa2jl\\xfd<\\xb8\\xfa\\xa6;\\xeb\\x9a\\x02\\x0f\\x82~\\x8a\\aɖ\\x0e\\u007fo\\xd6\\xf0\\v\\xfeD\\xf9ܱ~\\xeaTKI\\xe8\\x85`Iq\\xcdxW\\xa3E\\xaf\\xe7\\xad \\xf0K\\xb5\\xac\\x95\\x90\\xf9\\x1d\\xe5\\xe2_\\xa4\\xa4BRs\\xc2.\\xc6E\\xa2\\x1a\\x861a64\\xaa5\\xcc&\\x18Y\\x85\\xb8hO̸M7s\\xd3z\\xe0\\x1a \\xe0\\xfd\\x1at\\f\\x11W\\x1c0\\xaeUD\\xfeYk\\xaa\\xc3\\xffd8zӀ\\xe3x\\xddl\\xea\\x8eY\\x88Kք\\x91A\\xc3F\\x13\\x1a\\xfe\\x88\\xb3\\xcbmZ\\xa1\\xab\\xffO\\x1b\\xd9?;!\\xec\\x96Y\\x0e\\xa3N\\xb1\\xbd\\xb07\\u007f\\xdeg\\u007f|\\xf6\\xf7\\xe8\\x83\\xe4IX\\xfe\\xbf\\x95\\x1f\\x10\\x01\\xeec\\x11\\x9e\\xf7hy\\xec顓\\x87s-i2V\\x05\\xa3srF\\x8c\\xd5\\xc3x\\xed\\xf0\\xbc-`]\\f\\xd0A\\xd9@\\xb6[\\x9a3Sa\\xa5\\x032I\\xa4ψNd\\xc8D\\xf3p8\\x1a\\xd3\\xfflϯ\\xe2\\xb4j\\x8e\\xd6-at\\x90\\x97'\\xceV\\xe4d.R\\xae\\x0e\\xfb=X\\xc0j\\a\\x97\\xc1!\\xe9\\x12\\xcaϤ7\\xe8\\x8di\\xa50Y\\x17\\xb6ah$\\xceƤ\\x0f\\xc92\\xf2Y\\xa0\\x9cԆ\\xdd\\x1eo\\xe2\\xe5\\xa19*\\x95\\x99\\xe4\\xbe&\\xe8\\b-\\xaf3\\f\\xd2,q\\x8f\\xa6\\xd2wG<\\xe0\\x85\\u007f\\x99\\x06\\x1b\\x13i\\xa75O\\xab\\xb5[e\\x8d\\x14L\\x1b\\xba\\x92\\xa5\\x970{\\u008b%\\x13clZ\\x86ka.H\\x85\\xabT\\xb5\\xd1~\\xf1=\\x13\\xf9\\xfe,0\\x81t\\x10$\\x1675\\xc3&T\\xb8\\xa6\\xae\\x1a\\xcc\\x0f\\xd6j\\x8ek\\xf9\\x17c\\x92\\x881\\xdfj\\xa8,\\x9b\\xd8qr\\xefK,s\\xd7b\\xfbBӋ0\\xa7C\\x8b\\xe7/\\xbcڷn=\\xdc\\\\B6ER\\xdf\\t\\x8f7\\x0e\\xe0\\xf1ïK\\xd3\\t\\f\\x0f䴔\\xf0\\x18\\x92\\xd8\\x00D\\x16\\x96 d\\x0e\\x91h_\\xfa$\\xb2Fd.B5\\x81\\xe9R\\u07ba\\xb7.\\xf1\\x9ctZn\\x18\\xa6\\xde|[\\xa2\\x81\\xf1\\xe6\\xa2\\x1d\\xc3P\\xcaj\\xe2\\xee\\xa2\\xc6At]S\\xa2\\x0e7\\x0e\\\\=W\\x0eb\\x89\\x1cl\\xd6'U\\x15\\\\\\x924\\x14H\\xf5X\\xcd`\\xe8:N\\xa3JT\\xdf.z\\\\\\xd5$*\\x13k\\x82\\xf0\\xd2\\xca \\x01\\xa7\\x1a5\\x1fm\\xb7\\xa8\\xe48\\x91o\\x18B\\xd3\\xdb~)\\x00!̈\\xb3^(\\x17u\\xb5]\\x9b\\xec`\\xec\\xa2Q\\x9c\\x8e\\x83Qm\\xd0,\\x94f\\xa6\\xafB\\\"\\n-@\\xdc2\\x9e\\xa8Ɖf\\x895\\x83V\\xa9\\x02\\xfd\\xbb;\\x8b Pp\\xabA\\x1c[\\x16\\x9a\\x11 \\xbd]?\\x10\\x9a\\t\\xf7\\x1e\\xef\\x81\\xee\\\\e\\xaa\\x0e\\\\\\x87\\xe1h\\x86/\\xbc\\x9d\\x81i\\x8c\\xbf\\xf0\\x82\\xf33M\\xe4\\xa6Ԉ_\\xefh\\x9a\\xfd\\x82><\\x16\\xdd/\\xea\\xa1\\xe7\\b\\xe8\\x12v\\xb8\\f\\x8fS\\x88\\x84\\xc1\\x88-b\\xe6Ox._\\x11\\xf3\\xb3\\xb8b#\\x17\\xa3E\\xfa\\xd9H\\x94IKt\\xc9\\xe9k\\x9e~\\xfa\\x89\\xde\\xea\\xd3\\x1f\\xfc\\xe0\\xf0\\xde{ə\\xad3\\xe4\\xcc\\xf1㍭\\xa7I\\xe3w\\u007fW\\xce\\xdb\\xf9g\\x9f&O\\x90\\xc7\\xd1\\xf2B\\xabc\\x03sV\\x98\\xe8\\xe2\\x94\\x1f2\\xcb|\\xb2\\xd3\\xe9|\\xa5\\xf1\\xc4\\x13\\rr\\xf4\\xc1\\a{\\xe5\\xbbJ\\x1f\\xbb\\xf6\\xda\\xef\\x1e\\xda\\xfa\\xee\\x8d7\\x92x\\xeb\\adr\\xeb[{\\xf7\\xe6uH\\xca1\\x90\\xcdSp\\x0e\\x86\\xccv-+=\\xf0k\\x9fT>\\vB[\\xca\\xfc\\xac+\\xc0<\\xc7D\\x0ed\\x15\\x1c\\xe5tCI\\x1a#\\xc6-\\xcd\\xd1oe(9\\xe3c\\x1e+\\x97b\\xa7O\\x97%\\xfaϘ|b4\\x00\\x89\\x1c7\\xe5g\\u007f\\\\\\x93\\xd8\\x1fH\\x84\\xee\\xf3\\xbe#\\x1a\\xcd3ߺ\\xe3#\\xba\\xc93\\xadtу\\x86\\xf7\\x95>\\x96\\x8f\\xc8\\xd3Co\\x18k\\x94F\\\"\\x86\\xff#\\xd1폲~\\xf7\\xf6h%\\n\\xd6\\xd7ף\\xeeu\\xeb\\xc1\\xfc|\\x10y\\xbf\\x1dN?\\xffufX\\xa8\\x14B\\xd344߮\\xd8H:m\\x81\\xb84\\x13\\xc3pu\\xdd5\\x8c\\xc44ܫM\\xa4|8b\\x16\\xcd*\\x82\\xbbi\\x1d\\x15\\x81\\xb7q\\xb2\\xc2\\xd2;\\x1c\\x11ߪf\\xc18b\\xe9\\xb0\\xd7\\xf1\\u007f d\\xcf\\x1e\\x18\\x8d\\x9c\\x93B\\x18n\\xac\\aQ\\x81dls\\x93\\x90\\u007f8\\xfe\\xc5\\x10|\\x94\\xf8\\xfd33\\x0f?|\\xd3\\xec\\xdaçN\\x9d9s\\xe6\\xfe\\xfb\\xef\\xb7\\xed\\xb6<\\x87(\\xab\\x14\\fM\\xa6\\x8b\\x18v;\\x8d\\\\\\x18l\\xaa\\x1b\\xa5a\\xbe\\xb0\\x9fXHXm\\x11nh4\\x8e\\xa9\\xc6\\n\\xae@\\x12CM !\\x02t3Am5\\xc3u\\x05\\x96\\xefa\\xf0\\xedc\\xc0^Q\\x99ʠ\\xa7\\xeb\\xa0\\xdfK\\xd3\\x0f=4]\\xe2p:2V蚗MM\\xcd*\\xdaٳ\\xca\\xcb\\xe8k\\xc8˔?W\\xbe\\xab\\xfc\\x10l\\xfc\\x92\\xac\\\"\\xf4\\bb\\r\\xb2\\xee\\xa0\\x05\\x8f\\x121R$\\xf4 F\\x84d\\xc6*N\\x0em\\x90\\x16\\x97\\x15(\\\\\\xe2\\xce\\xe3\\x8eh\\xb1v\\x91\\xc3lLዾ\\x1d:\\xa7})\\x923Lz\\xed\\xe5\\xc8G\\x98>,#hC\\xb96C\\xab\\u007f9Ů\\x90!\\x036<L\\xd1\\x03\\xfb\\x13wDvN|\\x97\\xe5\\xda\\x12\\xb5\\b\\xb3bW\\x06y\\xea\\x1d\\x1e]C\\x18I:n\\xb2N\\xfa\\xeb\\fېD\\xdb \\x87\\xe1X-g\\x1fvI\\x9b\\x8bu\\x15g\\xf8\\xd3\\x1c\\xb5u\\x81\\xba\\xac\\x82\\x016:\\x1c\\xa5\\x12\\x88\\xa9\\x83\\xd5H\\xf4\\f\\x0e~\\xb3hp\\x03\\v\\xb1b\\xa2Z\\x16\\xa7F\\xc5wc\\x95%;\\xed\\x94kajH\\xa9\\xe8\\b\\xf0Ĩ\\x87ij\\x94ڦ\\xad\\v\\x8d\\x13\\x9fp,*\\xf0\\xd5\\xc0\\x02\\xdfS\\xe5\\x18\\xaa\\xa2\\xdc-'\\x96^\\xf4\\x03\\x8a\\b\\x88`\\x9f\\x12\\x8b\\x11\\xf0⌜T\\x06\\\\\\x16OH<>\\xf8R!\\x18\\xd3\\x03\\x9f\\x96i&\\xb8z\\x1a\\x825\\xa3S,\\x82TX=\\xd7\\t\\xc1\\xc1\\xd5\\xc0\\x19\\x1655A\\xd8D\\xc7%\\xd41\\xb8cbn <l\\x9f\\xc8t9\\xac4c\\xa6\\x90\\u0601\\xdcSU\\xf3ǟ\\xe5.\\b3ձI\\xe0\\x83n\\xf1,\\x9d\\xaa!\\xc1\\xea\\x11L*d\\x86n\\xc2\\xcfh\\xb6\\xf9|\\xdfD\\x90D\\x03\\x81H\\u007fK\\x05/\\x96r0\\xd9M\\xdbV՝\\f\\x05\\x1e\\\\\\x10\\x06~\\x1cpKm\\xb8\\n\\xd54=\\xd1p\\xecR\\xc1\\xb4\\x88\\xad\\x97m\\xa7PH$\\x17/\\f\\x1c\\x15\\x94\\x85\\x1d\\\"ڟ\\xaa\\xca|\\xc1\\xc8i\\x10/i\\x82\\x10\\x86f\\x90pe\\x88\\xd1\\vC-\\x98\\x06\\x9dd\\xdc\\\"\\x96/\\x01\\xe6\\xe7\\x11\\x1d\\x92Y\\x83\\x14\\x14$\\xa3;\\x17M\\x8c>\\x82{l\\n\\xbd>\\xbf\\xdb\\xd5\\xed)υ\\xc3TN\\xda\\x19\\xd3\\xec8\\x02+\\x10\\xc3K\\x1cq\\xed\\xed%\\x81\\b\\x8b\\x9a\\x89\\xb1`\\xc4H\\xf4\\x84\\xa8\\x13D\\xabT}h!\\x82=\\xd3;G>3+Y\\x89\\xa7s\\xec\\xed\\x91o\\xe6\\xa8\\xfc\\xcc\\n\\x03c\\xbc\\xd8\\x04\\xfd\\xe50fņ\\xcf\\xe4\\x9c+;\\xfb\\x14\\xf9M\\U00094c80\\xe3d<[\\x8ai\\xb4\\xdb\\x10Z\\xcf\\xe0\\xf2.#6\\x1f\\xceΡ\\x05K>\\xed\\x8c\\xda\\xe9\\x85\\xd5\\xe5\\xbd\\xe0^Ǯ\\x1bg\\xcd\\xc5fF,/˪N\\xfb\\x88\\x99\\xed\\xa3\\xdc8\\xae\\xf3\\xacR%\\xe4\\x12?\\x02K\\xe7%A%k6\\xb3\\xaa\\xdf\\xd0`\\xd8i\\x95\\x8a\\x8e\\xf8\\xe7>\\xfc\\xfe\\xdd\\xf0\\xfb\\xe7\\xf0QF\\xad\\xa0\\x9f\\x05\\xf0\\x86/\\x10\\x9a{\\x97\\x97O\\xf7\\u007f\\xb6\\xff\\xce\\xe5W\\x93\\xbd\\x17m]D>\\x86\\xaf\\u007f\\xfegYK\\xae\\\\\\x04r~\\x1a\\x8e5\\xc65\\r\\x1b\\xca\\x05\\xca\\xcf+\\xefS>\\f\\xed\\fR\\xcc\\x1d\\xe4\\xdd\\xd1d\\xf3\\xdcEH\\x8e\\xcfQҭQd\\xffB\\xee.\\x81\\x91C\\x18\\xffte\\xb0\\x82\\xa5d0\\x84\\xc5`\\x05'\\x85\\x96\\xe5^\\x15\\xe6jXD\\xdc\\x1d\\xef\\x03\\xb6[\\x92'\\\"v\\xbay\\xf99H\\x06\\xe9ZB\\xcb\\v\\xaa\\x94\\x04\\xd9(\\x91\\xbe-\\xeb\\x83[9\\xc2!\\x98\\\"t\\x95l\\xf4-\\xe0\\fu:\\xd3È|\\xa0\\x10\\x04E\\u007f\\xe7·w\\x1e\\a\\xab\\x9b\\xe9\\\\s\\x1dKe\\x8d\\x10mpԴF#I\\xd3\\xdb\\xf1\\x1bb\\x97\\xab\\xec\\xbc\\xedFk\\x8fS\\x8a\\x92Zٲԉ$L\\fsgPr\\x85\\xccmX\\x9eN7;l{\\xef\\x1fV\\x17BF\\xc3\\xf4\\xcf\\xd3\\xf4\\x14t\\b\\xeeX!yi`ێcۯ\\xbf\\xeb\\xae\\x0f\\x96?\\xf7\\x12nK\\x8a\\a0\\x0el\\x8e0F$\\x14\\xf9\\x1a\\xcb\\n}\\x83\\x9e\\x98\\xb2\\xac)\\xe7\\x8a|/\\x03\\xc4-\\\"\\x8es\\xaa\\xe9\\x98\\x05\\x1b\\xc9\\xd55\\xb7\\xd4\\x18\\xa6\\xa9\\u007f\\xd2\\x0e\\x97\\xbc\\xa8\\xcaʅ\\xba\\xef\\v^=\\xe4W\\xd3\\xd0\\x01\\x97\\xd8#\\x9e\\x99\\xd4k\\x8c\\xe5G\\xd5\\xdc\\xc0cN\\xb7\\xb0C6-\\xed\\x06\\xc4Y{\\x19\\xf4\\x03\\rY_\\xc0^\\xe8\\x8a\\xd6D\\x1f\\x14_\\xf6\\xd8;\\x8f\\xaf\\xaf\\x1f'\\v\\xfb^x\\xcf\\xfey\\xf2\\xd4ַ\\xee\\xbf\\xff[\\xdf:6\\xd6\\xf3y\\x1c \\x90\\x99w\\xeb\\xcaQ\\xe5\\xb8r\\xabr\\x9f\\xf2\\x12Ą\\x93\\xf9\\x9b\\xe92\\x18\\xbc\\\\Vze\\xc3,\\xe9\\b\\xd4£D\\f4\\x99@*=\\xb0A\\x9e`:\\x86/I\\xa0\\xffkc\\x1f)\\x19\\x13lʤ\\x8e\\xbe\\xac\\xec\\x92\\x1e\\x14\\xce\\x18x89>FG\\xc4\\xfc\\xf2\\x14\\xfb\\xd6\\a\\x9aM\\xc36atť\\x87\\xedb\\xe2\\xccu\\xae\\x9f\\xdb:\\x9b\\x94\\x12\\xbf\\x12\\x15\\xb3R\\x16\\xc0\\xe2D\\xb9\\x10'\\x99G/'W\\xb3\\x06,V\\xd3FԮך\\xc7\\x16\\x1c\\xc3t\\xef)N\\xb6J\\xbeG\\xe6\\xba\\xd470-\\xd4Չ~\\xef\\x1cY\\xect6\\f\\x13\\xfc~^\\x88\\x1f\\x9dI\\x8di\\xe1\\xdf\\xf2\\xae]\\x93\\xe6\\xe4Ia\\x88,\\xf4R\\xb8\\x91\\x9e%L=\\t\\xb2\\xb2>c\\xcd\\x1a\\xa2dL\\xd8\\xc1d\\xa9\\xb5\\xb0\\x10\\xb9\\x9eןmOM\\xd9\\xcb\\xe6\\x97,\\xf7\\x15\\xa0\\xd53}\\xaf1\\xf1\\xaew\\xe5\\xfc\\xa5\\xd6\\xd9ϒ\\x17ýo\\xc2}\\x8bA\\x04牵\\xe3\\xfb\\xa2>s_~~\\xa2\\xb7\\xa3\\u05f8\\xe3\\xda\\xe65\\xf5+.\\x1c5\\xf0\\xcbm\\xc7.ڻ\\xff\\xd0\\x12i\\xbb\\xa9[\\xa8\\xed\\x9a:|i\\xe4\\xbcf\\xa1\\xe5\\x17\\xbcBu\\xb5}\\xf8\\xaa\\xd2\\xeb&\\x95\\xf1\\xf3}\\x9a<\\t\\xb6]\\x82\\x9c\\x86\\x91Ԛ#\\x99\\xad/\\x03dt\\xc4G\\xcb\\xf9\\xf3\\x90\\x0f⣕\\xe9~l\\x8b\\xce\\xd1\\xf2\\xe4\\xf1]\\x86\\xb3\\xf3\\xe0\\xa4\\xfb\\x8a7T\\xdaNخ\\x82\\xdf\\u007fo\\xf1\\xf8՛t\\xed\\xd2W?\\xbe\\x92\\xb9^%R\\xadp\\xa5{lun\\xf7\\x81b\\xea\\x82\\x1cq\\x15B\\xef%\\x0f\\x80L\\xbbF\\xb9G\\xf9\\x98\\xf2e\\xa2\\x90\\x1d \\x11\\xc6I(\\xb2V1gr\\x19\\x93\\xa0\\xc8\\xff\\xcdY\\xd2l!μ\\xacT_\\xe9F\\xcb}\\xc9~\\xb7\\xed\\xbbu\\x93x\\t#\\x14\\x9dAo\\\\7\\b^S\\xdcϋ\\xcaA\\xbd\\xf7\\xe2%\\xacQ\\xeb\\xe7\\xfe\\x90\\f\\xbc\\x8f\\x96QbʟLz0\\xfa\\xb1C!\\x9eC\\xb7\\x99\\xc8<|\\xe9\\x0f\\\"\\xff\\x8c\\xe4\\xe2\\x933N2\\x16\\xb8\\xcd\\xc7\\xd7\\a3t\\x8dHf\\xbdq\\xd0^\\xf0x{\\x16QKz\\xe7N\\xbd3\\x92\\xfbwǿ\\xdb̯f\\xd0YZ9\\x8f\\xcc/\\xed\\xf6\\xb2\\xde\\x06\\\"\\xdf\\x0fw\\xd1e1\\x0e<v\\x111e\\x8dd;\\xc1\\xa9\\xcb\\x19\\x1dHNG3\\xe8`)'\\x9cy\\n\\xdec\\x85\\xed\\xde\\xdbhLM\\tQ\\xa8\\xb6\\xae\\x9f\\xc0(\\x17(\\xbf\\xd9\\x1d\\xedN\\xb9\\x84ʞ\\xa8\\xa2T\\x9c\\xee6\\xaf,\\xab\\x8fqj\\xd6\\x1d\\x9c\\xc1\\xf5\\xaa\\xcd22\\tX\\xa6\\xc64I\\xb4\\x01j1HfI\\x14M\\x18\\xaa\\xa6\\x17\\v)\\xf9\\x92\\xaeR\\x01\\xca\\xdeG\\xad\\x8e\\x85\\x92\\xa0N\\xe7|\\x10Y\\xdc@Nq\\x9f\\x98v\\x10k\\x91\\xe0.\\xfb\\u007f\\x98{\\xefxˮ\\xeaL\\xf0\\xeep\\xf6>9ܓn\\x8e\\xef\\xdd\\xf3r\\xb8\\xb1\\xf4\\xea\\x85\\nR\\x05IU*U)g\\t\\xa9\\x84D\\x89 \\tQ&\\x18\\x91\\x11 \\xb2m\\x1a7i\\xdc\\xed6\\xe0\\x80\\x13\\xc6\\x18\\x0f\\x18\\x03\\xc6\\x06\\xd3\\x18{\\xda\\xe3\\x9e\\x06l\\xf3k\\xec\\x1e\\xd3\\x1e\\xda\\xe3\\xf6\\x00\\xb6_\\xcdZ\\xfb\\xdcW\\xaaBؿ\\xf9s\\xeaջ\\xef\\xdc{\\xcf\\xd9g\\x9f\\x9dV\\xd8\\xdf\\xfa\\x16\\bGڅ\\xaf\\xe1ֆ\\ue83dfJ#*b::\\\"\\x8b\\x02\\xb9u\\xa1\\x10\\x10\\xe9D\\xeaҍ@\\xfa\\xb3<\\x89\\x1d(\\x10%\\xc7\\x15\\xc22\\xf5\\xd7\\x10\\xbd\\v\\xaa\\x04\\x89\\xe0\\x9a\\xee\\fל\\x8a\\x017\\x85\\x0f@5\\xd1,\\x8d \\xbe\\xbaQ\\a\\xc3P\\xf78\\x15\\xd1\\xcb\\x04\\xf7hC\\x91\\xa60^F\\xff;\\x88g\\xd6(\\xda\\x02\\xb5%\\x0efРD\\xf0*ь\\xea娮Ʉ\\x90\\xe3`\\xe4j\\xf4k\\x1a\\x93p\\xc00\\xbb\\xc8\\xfc\\xc2\\x02<\\x97C\\x1bv\\x18\\xba%\\\\\\x0e\\xe7\\xa0\\x12f\\f\\x1a\\xf6\\xc3H\\x0eE\\r\\x82\\xd9\\x19\\x92\\xc0)JM=O\\xa8\\x99\\x0eF\\vh\\xd08*\\x17\\x05|\\xf8$3\\x89\\a\\x8fȸ\\x05&\\x1c\\x02\\x90\\xa8C^Y\\xd4i\\a\\xc6h\\x9e \\xb0\\xe1y\\x86\\xbe\\x97\\x051O\\xe3g\\xe7\\x94\\xf2/\\xa6\\xc9\\xfd\\xf0N\\xe3\\x8c\\xddv\\xabi$\\x18D\\xa1B*\\x98\\xc5\\xc1\\x84\\x14Ǐa\\x87zt\\x94\\xe7nV\\xf1\\xef\\xc5\\xc2\\\\a_\\xe1\\xd1¯\\x16\\xbe\\x05\\x92\\x12c\\x9cp\\xe4Oi\\x16\\xa2|褹\\x87\\\"E͠Nj\\fw\\x00g\\u007f\\x98g1ό\\x94ou\\x89\\xee\\x1a,%\\xd1\\xdeT\\xc9\\x139a:̎\\x8cD\\f' {C\\x1ej\\xab2+\\xa1\\xe7a=\\x89U|\\xb1\\x9ay9\\xb99R!\\xad\\xab\\x01\\x1cc:\\xb6\\xe9DJ\\xe2\\x1a\\x8d\\xd7\\xe2\\xce\\xfa\\x1e\\xee\\x05\\xd9\\xe8Օ\\xc3-\\xb2\\x96\\xa7:\\x81\\xe1\\x8f\\x05d\\x8bdM\\xe4%\\xc85t\\xa2a\\x89Z\\xef\\xe2lϱ3S\\xa71L\\xd1\\xc1\\x1a\\xcc\\xf8\\xf5\\x8b\\x99Qz\\x93\\x8b\\xe0\\x1a\\x99\\xdf\\x03\\x1ba\\xba\\x9e\\xacG\\xc9`\\xef\\xcc\\xe1+H1\\x8a%\\x18.5\\xcf'?\\r\\x83\\x8dY\\x86\\xcd]\\xe8%\\xcf\\xd7I\\xe7\\xd2\\xddͯB\\xdfϘ*\\xc1\\t\\aK\\x1c\\xf4d0\\x94\\x12P\\xba\\xa3\\f\\xbe\\xf15Jꌋ\\x18G:\\xb7%\\xfbq\\x98\\x12\\xb3\\x1ej\\x83\\x12tC\\xeaJ0\\xac\\xa8I]\\x8bښp\\xb5\\xa2k\\x80\\xba\\xeb:\\xbe\\x1dH\\xf14&\\x84\\xa0I\\xbdd\\x1bD\\xb7ʔ\\x83 \\x0f\\xbc<Շ0$y3\\xd3\\x0e\\x1eK\\u2e79j\\xe5\\x8a>-a\\xae\\x8a\\xf1\\x95\\xadn\\x1c\\v\\xd0\\x1eh\\x92\\xb6\\x9a\\xab3x\\xdf\\x15\\xb0\\xf9\\xcd\\xc0\\x8f\\x90]\\x06\\x86i\\xd1B\\xbc%\\xe8\\xcb*\\x11\\x8bN=A\\xc8?\\xcc\\xc0,\\xb5\\xc1ΰ\\x02ϬP\\x8b:\\xcc\\xd7M\\f㡘\\x11\\x19i5\\xdf|\\xc9F\\xeb\\x12\\xa3ƭ%\\ra#8au\\x95\\x83%\\xd4e\\xff\\x01\\xd4z\\xe0\\xe9n\\xd0a\\x9cz\\x9b\\x9e\\xd0\\xf9\\xc3EC\\nP\\xd0\\xe1\\vz\\xab&\\x02\\f#\\x87z\\xe0<\\xd1\\x14\\xf4\\x15}\\xf3\\xa0cHCU\\x0f&\\xa8u\\xc3/Q\\xe5\\xce\\xd9$\\xa1\\xd0J~\\\\*VЎ0\\xf3)\\u0089\\xf8\\xbf\\b\\xad\\\"i\\x87ƅ[&\\x0e\\u061d\\x9c\\xac\\x95-t\\xf3\\x83\\xb9║\\x8d\\xbcΕ=\\xc1L\\x95'S%\\xda\\xf4l/\\xc5)Gt\\x16֘\\xd0\\xd4~\\xd1gȾ\\xa9.\\x8bQ\\xd6a\\x00\\xa6;\\xd9\\xf7\\x1e\\xf5\\xef\\xb7\\uef13h\\xbb\\xaf\\xba\\xe3\\xeb_\\xbf\\xc8\\a\\xf0i\\xf2~\\xd0x\\x93B\\xfdG\\xf0\\x01\\xa8]\\xf1Q8P\\xe1\\xe8\\xe4\\xd5\\xe5n\\xb7\\xb4\\xfb\\x9b\\xf0Z\\xae~\\xea\\xfa\\x17l\\x1fz\\xe2\\x96\\xcf\\xdcC\\xde\\xdf-\\xef~\\x12\\xbf!G\\xcbݛ_\\xfb\\xda\\xc7\\x1f\\xdf\\xfd\\xeek^\\xf3h\\xceev\\x11\\x13\\xb8\\x17\\xed\\xfb#y\\x9e\\x91Ni2\\xfd%\\x1f1\\x1c\\xc7\\xd8=\\x87\\xafo\\x9d\\xfb\\xe2y\\xfcG>\\xb8\\xf7\\ty\\xb7\\xe1\\xec~\\xea\\x8b_\\x9c\\x9b;\\xa5\\xfe_\\xc2i@a\\xa5\\xe8#\\xbe\\\\>k\\xe6\\xe7\\xc9V`f)\\xcf!\\x88@\\x8c\\x1cC\\xe0_\\xee\\x80\\xfc\\xad\\xbb\\xef&ڥh\\xae\\x05]T죍\\xfa\\xa3\\xb5\\x8a\\xe0\\xfc\\xb27\\xff0\\x1e\\u007f\\xfb\\x92a\\xf3\\xb9\\xfd\\xf5\\xe9)Β\\xefm\\xe6\\xe7˲\\xbd\\xe4_\\x86\\x89\\xc4\\xd8\\f\\xc5\\xc0MF\\xed\\x00\\x93(#\\xb169\\xbb\\xfb\\xf7\\xb7ކ\\xac\\xd9Ĺ\\x15\\x0f\\xf7|\\xfa:}-9\\x0fW\\xac\\x82\\xe6\\xf0\\xfc\\xc2K\\x11=\\x16^B@+\\x93\\x8bl\\xb3\\xe3U\\xd2qY\\xfe\\x16\\x9eV\\xedw\\x83\\x98\\xd5P]\\xe8\\xaaTH\\xa8$\\xe4{Vy\\xf8\\x01\\na\\xdc\\x14W{W\\x18~\\x9fM\\xb9\\xa6\\xf7n\\x80>\\x83\\x8b\\tN\\x92\\xbd\\xac\\xee\\xff\\xc4\\xe6\\x19\\xfc\\xbf\\xa7Fk\\xc2$\\xa5ԉt\\x18\\xcd\\xf8\\x19M\\xab3\\xe4\\xff\\xd15c\\x86\\xb8I9\\xf5\\x18-\\xb7\\x9b`ʏ\\xc0\\xc0\\xaaŽZ\\x95\\xf2\\xf6\\\"HT\\xb1Q\\xfe\\xfe\\xca\\u0381\\xe5v\\x19.K\\xbb-\\xb72\\xe3׃\\xca\\xcc\\xcc\\xeb\\xc1\\x02)\\x05\\xa4\\xf3\\xfb\\x8c\\xfd>s\\xa2\\xee\\x1b\\x99!_V\\x14 \\r,J\\xdf\\b\\x13\\x16\\x06\\xf8\\xf5֓aԵ\\xb8\\xae\\xf9\\x1d\\x18\\xec\\xa1\\xeb\\xe8%\\xb7\\xdeL=\\x93.k̑\\xccde록\\xdbw\\xc2[\\x19\\xfbD}11>:[\\tj\\xc1\\xec`\\xf6\\xfb\\x01\\x96\\x8fs\\xa1\\x90\\x82\\x9e\\xfe\\x10\\x1c!c\\xf7N\\xe1l\\xe1e\\x85\\xa7\\xe1\\xd3)\\x9b\\xdal\\xbf\\x81\\x99\\xa5\\x95*\\xb8\\xcd\\xe5x\\x93\\xac\\xf0\\x05ҕ\\x1bt[\\x93\\x13TA`\\xech\\x9d.\\x1c\\xcb\\xfe\\xb8\\x8f\\x198\\x98\\xcbe7OT\\xc9\\x16xWvg\\xc7\\xc3\\x15mz\\x11\\xbfx\\x11\\xef\\b\\xb8\\x8c\\xfc\\xaf\\xff\\xf4˿\\xfcO\\xbf\\xbc\\xfbG7\\xbf릛\\xde\\xf5\\x8b\\xef\\xba)\\x9d\\xdf\\u007f\\xf4\\xf4\\x06\\x98κf\\v\\x8f\\xb9\\x14\\xd34\\xa0\\x1f\\xe1|\\xfbh\\xcbu\\xf5\\b\\x84\\xaf\\x1e\\x8a\\n3~b\\xd6\\xe0E\\xc350$C\\xf9G\\xc0\\nc\\xb3L\\x93*#\\x1e\\xd7`\\xf8\\x99<\\x9c-\\\\\\xc0o\\xf6J\\x8b4\\x0fT\\t\\x91\\x17f\\x84ܔ\\x8e(\\x8a\\x94\\x19\\xe4\\x96\\xdb_z\\xfb\\xed/}\\xde\\xf2\\x89;N,/\\x9fXI\\x97fZ\\xb1\\xfd^͐\\x8a\\n\\xf2(&\\x0e\\x90\\xd6\\x03?\\xe7\\xfb㢆\\x9c9d\\xe9\\u007f[VZ\\x13\\x18\\xf9\\xb0\\xee\\x19\\xa1W\\x05\\v\\xbb\\xe3i\\x8a\\xd1y\\xe7\\xe2\\x85苶\\xefW\\xd7qt4\\x90\\x9c{̾\\xf0E\\xf2\\x0f\\xe4\\x13\\xb0\\xbe \\xb2\\xa7\\xa0)b\\xd5gb\\xbe{\\xd9X\\xd1w+\\x1c\\xce$\\x1e\\xef\\x11\\x0fl\\x98\\xac\\xd3%䁷\\xbd\\xedKo\\x8b\\xa8\\xc1\\x93\\x85\\x9dΡ;\\x17\\x8f/\\x92\\xd9\\xd3\\x1b\\x1b\\xa77\\xaa&5\\u1af7\\x9d\\x1d\\xac0\\xbbsp\\xadq\\xe7A\\xfc\\x92|x\\x03\\xbfV\\xfc\\xec\\u007f\\v\\xfa\\xc3;\\v\\xed\\xc2r\\xe1\\n\\x955\\xe7\\xce\\xc2Cj\\u007fx\\n\\xabWLV+t/\\x1b\\x0e\\\"{\\x91\\x81s/\\xcbt\\x1ev\\xf7\\xa3\\x8f\\xb5\\xff\\x0f\\xe7P\\x1fW\\x89ێo#ݐ^\\xdb\\xea߆\\xef\\xdf2\\xb3O\\xd7\\xf7ͼ\\x93}\\x88\\xb1\\x0f\\xf2K_\\t\\xbe\\xf0\\x0f^\\xf6J\\xdeIj\\xd1\\xff\\x8cj\\xdd9J\\xab͠\\x16\\xfdCX_\\xe9vWv\\xff!e,e\\a\\x9ey\\xe5O\\xa4\\x9c\\xe3q\\xfe\\x8a\\x9f\\x80$\\xf8\\xbb\\v\\x9f\\\"O).\\xb2\\xac\\xb0U\\xb8\\x0e\\xec\\xd2'`5y'\\xb2\\x93*\\xb5\\x1f\\x9d\\x85k\\b\\t\\xd8A\\xef\\x03Co\\x01\\xa8\\xe7\\xa8#5\\xe8ĥ\\x8a\\xd6\\n\\x9d\\x81\\xdbL\\xad\\x1d\\xa1\\xd2Y\\xa4\\xa2\\xbfP&\\x89z\\x9d\\x9a\\x10}\\x95\\x9d2\\xcaS\\xb7\\xae\\xe6\\xc5NT*\\x198\\x19\\xbd\\x8b\\xca\\u0600o\\xa7\\x9fA\\xf9\\x98<\\x92$ם\\xbd\\x02\\x1a(\\x9a\\xb3\\xcc\\xf9\\xfa\\xec\\xfc\\xe9\\x13\\xce=~\\x12\\x1bDZk\\xb3\\x894\\xe3\\xd3i,\\xec\\xe4%\\xadـJ\\x03Ḟ\\a\\x8a1\\xe7r\\xeb\\x81Jt\\xd8\\x14\\tF\\xf4r\\xad\\x1dE\\xe5\\x18n[͎\\xbe\\xb1\\xdf_\\xac\\x94\\xdb\\x16\\x97V\\x83j\\xf3\\u007f\\xb8\\xe2\\xea\\xec[\\x1a\\x8d\\x87c\\u05fb\\xea\\xc8\\f%_j\\xf6@\\x94\\xbe\\xe7\\xcc0\\x9a{\\xca1\\xec[\\xaf\\x99\\x81U\\vİa\\x1ezClh6h\\x12\\x86\\xed@\\xb1\\x96({I%IM\\u007f\\xae֯\\xfb\\x93\\x03a\\xa7\\x916~\\xb6X\\x8fR\\xc7a4n\\x99&\\xe1\\xb6\\x1d\\xe8G\\xfb\\xf6\\xee\\xf7\\xbb\\xdd\\b\\x95^\\x8dڥ\\xb4\\x968d\\xd3\\xf6k\\x82\\xe92(b\\xf4\\x94\\xc1\\xa8Oa\\x86\\xb3e\\x01ڴ\\xa9k\\x8d@w\\x8c\\xdbЅXO\\x053u\\xf2S\\x06\\xafx\\xd21t\\x04nky|\\br\\xf0\\xfe\\xef\\xb0n\\xfd\\\\\\xe1(Ƣq\\x15\\x8eMAc\\xec\\xb9BN\\x90\\x85\\x12\\x15J\\fO\\xeb)Ri\\x82@\\xa6<蜥\\x98\\xee\\x15\\xccZ\\xfadډ,\\x9d\\xb9R+\\xcf8\\xf5\\xa8W\\xcb\\xc2%{$\\x16ݍ\\xf2 \\xdb\\xecR\\xc9G\\x9a1\\u007fߡ\\x1bk\\xedu\\x9f\\xf6\\x0e\\x8e\\xceN\\x98YMJZ-(v\\x8ai\\xbfB\\xfe\\x83W/\\a\\x01\\xd1\\x0e9f\\x14\\x19\\x13Xg<Q\\x92-\\x1eh%\\xc3\\xc5\\fx\\\\ܣ\\xc3,\\xb5\\xd0\\aJ\\xa9w\\xf6\\x16\\xe8\\xbfJ\\xb0\\xde\\xee\\f\\x93Ɯ{)\\xe7\\xaf[\\x88\\n-d\\x84\\x9a\\x8d\\x15\\x81b\\x9e\\x01\\r\\xec\\xc2!\\xd8ޝ\\xc9Ե\\x81βtJs\\xa3\\xf6\\xaf\\xc9\\xfeډ\\xba)\\xceB˜\\xbd\\xea\\xaa\\xeeCo{\\xf7\\xfdg\\xdf\\xf9ևoz\\xf1Kn\\x18\\u07b9\\xf1\\xc4\\xee\\xd9\\xf3\\xe7\\xcf\\nSӮ\\xe8v;\\xef{\\xfbs\\x9f\\xf7\\xf4;\\x1e|\\xe0]\\xcb/\\xbd\\xfe\\xcc\\xf9\\xfe]\\xfbo|b\\x8f\\xff(\\xaf\\x83U\\x98ǜ\\x13\\xe1%7\\x93\\xd3{i\\xc8و\\x1e\\x9aN6i\\x90\\t\\x06\\xa7w$\\xa6\\x18½\\x99TbZ%\\x10\\x9bʸ\\xfe\\u07b4\\x127Y\\xe7ϔW;\\xcd0\\xe0\\xf4N\\x91\\x95\\xea\\xf3\\x9dNy\\v\\xd9\\xdc\\x1f>p\\xb7\\x9c\\x89\\xea\\x9dZ\\xab[\\xf3\\x8d\\xb5\\xe5W\\x8a\\xfd\\xfb\\xc9'\\xde\\xf6\\xd0\\xf3\\x9e~\\xe7\\xd9\\a\\xde\\xf5\\xeb͙3/\\xb1\\x82R\\x98\\n>_\\xae\\xd1^\\xaf\\xd1IH\\xd9\\x14\\xf67\\xee\\\\Lb\\x92e$\\xee\\x94=݉\\xa3+*՛66\\v\\x97\\xb7\\xe3zaP81}\\n\\xc50\\b\\x8f\\x11\\xf6\\xb7\\xd9d\\xb8\\x9e]\\xdc^\\xefe\\xdd\\xd1`\\x13)\\xaa\\x06\\x99ʢ\\u061d\\xa4{\\xee\\xa2\\xdc&\\x979\\xe7P:\\x88\\xe1\\x81*k\\xdbW\\xf7\\xb0aۛ\\xb3\\x1dS{\\xf2v{_52k\\xb3\\xcbG\\xf5j\\x9a\\xf2\\x83\\xd6\\xf9\\xc3\\xe4\\xe4\\x1b\\xc5\\x137\\x9e۾^\\xca\\xdeF\\xa7f\\x95\\x92v\\xc8y\\xed\\b>\\xd8\\xe2\\xc9ͥ\\x14\\x9fmw+.w=\\x9d\\xec\\xeb[+\\xfeh\\xada\\x18\\xa4QovϜ\\xfft\\xb8Y\\xae\\xdd\\xf8ĝ3\\x96\\xb1`\\xaf\\x99\\x89f8\\x8d˞˂\\x15{\\xb6\\xb0qy\\xef\\x84\\xfdI6\\x1d.\\x83Qv\\xf1Y2\\x19\\xef=\\r\\x8c\\xfe4C\\x00\\xfd@\\x0e\\xf6:\\xe6\\xe1sW\\x9e>\\xb0u\\xe0\\x80ب\\xbd\\xd28\\xff\\xd1\\t;\\xf0\\x80\\xfeč\\xad\\x8d\\x85\\x86u}\\xf5\\xd0\\\\\\xbaxh\\xa7G>\\x81\\x83%\\xaf\\xf2sff\\xf6\\xedˊv\\xb6\\xaf\\xd6:s\\xfeM%Q\\x1c,ך7>\\x114\\x9b\\xe1\\xcc\\xe0&\\xf3\\x9e\\xc7/\\xabg\\xa9P\\xc3l\\x84\\xe1\\xbf4d\\xf7\\xc2g\\xbf\\xf7Ã\\xd5\\xf8\\xb5_\\xfb\\xb5\\xfc\\xbe\\x97\\x0fҷ/.\\x9eZX\\xb8d\\x9c\\xcaB\\x17Y=\\xf6\\xf0\\ua62f\\r,\\xbe\\x1c\\xb1\\xaa\\xb0\\x13\\x18p\\x98\\tX\\xac\\xd7\\x06y3\\b\\x15W\\x03}*d\\xce\\xd3\\xf3\\xbd٫FE\\xf2gV\\xb9\\x18{3함\\x97\\x95\\xf8ua8\\xb8\\xe5\\u007f\\x12\\xf9\\x923\\xc3[\\xabW\\xb7\\xaf\\\\i\\u0379k\\xce\\x1e{\\xcf\\u007f\\xac\\xae6\\xc9=A+\\r\\x96\\xeavu\\xd8\\r\\xfc\\xee\\xda=\\u05ee\\xfdd\\xa5r\\xe6%\\xfd\\x85\\xf6\\xb06\\xef\\xf3\\xd2TW\\xbd\\xa4-\\x1a`\\xa7\\x0f\\x91\\xa9\\xee\\xf2~S-\\x91\\xa3G\\xc2>\\xa2yS\\xe5\\xe7\\\\$q\\x86\\xbe6\\xaa\\x00\\x95\\xa0r\\\"D\\xf7bCa#\\xdd\\b\\xad\\xf5o\\x8e\\x1c\\x19\\x8d;\\x86'\\xb4\\xf0\\xae>3\\xcba\\xb5\\xb3\\xe3ض[{\\xa6\\xf5v\\xb7T\\xd3a\\x1b\\x92੧\\xcee^Q\\x90\\xebέ\\b\\xbbh-=u8\\x8e\\xe6\\u007f\\xa8\\x9eKS\\xa6\\xa1\\u007f\\xb9ߚ$V\\t\\xb3I&\\xb3\\xd1d8\\x9a\\xa4\\xb1\\x84\\x81\\x97MS]\\x8cd\\xfc\\xac\\x1e=\\xa1\\xb1V\\x83\\xb2\\x8d+\\x8d\\x03;\\xfb\\x0f\\xbf'&/z\\x91>7\\x9bݺ\\xfc\\xa3\\xba\\xf9?\\xb2#`\\x10\\x97j\\xbcZ;P\\\"G\\xea\\xdb\\xdbg\\x97\\xe8\\xca\\xf2\\xea\\x86\\xef\\a\\xa3\\xc5p\\xf1\\x87תRa\\xf3_\\xa9\\xad\\xdcf\\xb0\\xd8O\\xfd\\xc8P\\xe7A\\xa2H\\fV`A\\x90\\x03\\x99=\\xab\\xaa\\xbf˫35\\xb7;\\xaa\\xda\\xd5ͅd1Ӷ\\xd90\\x99\\xb1@\\xa3\\xd7\\xfa\\xa2\\xb8\\xbe\\xfe\\xa3j\\xfcs\\xf5\\x85\\xa2\\xac..&\\xed\\xfds\\xde\\xca\\xcc\\xca\\xdc\\\"\\xe8\\u007f:YZ_\\u007fv]\\x1f\\xfb\\xd7\\xea\\n_\\xa4\\x13\\\\\\xe8S\\x05\\xf3\\x80W\\xc4\\x11M\\xf7?\\x95Sr\\xefO\\xd4\\x19\\xc1\\x1c\\xc77k\\xbd\\x91\\xfat\\x95(<SN\\xdb3\\xcc/ϣ \\xb1\\x9cg=\\xe7\\xf5\\xa0\\x16k\\xe8\\xdc2L\\x1b\\x94\\xec\\x8dA\\xc8|P\\x1c\\xe0-\\x18\\xe7\\x14\\xd6#\\x01ū\\x03xOL\\x9d\\x82\\xbe0\\\\F\\x96E\\xdc\\x0515\\xa9\\xf2\\x00#\\xdd\\xe3\\x8fh\\x90\\x91&\\xcem\\x9a&=u\\xc04\\xeeud\\xb2\\x04¯u\\ah\\x03\\xd7\\x1e\\x83\\x02o\\xbe۶o\\xbe\\x81\\xc0[r\\xeb\\x15\\x86q\\xad\\x1e\\xd7$գ\\xfb\\xb8\\xb0\\xaf\\xba\\x039/5\\xed\\xd4}\\xe6\\x0f\\xad%w\\xff\\xab-\\x87\\xb93\\xa6\\xcd\\xd4Q/#l\\xa2g\\xde^\\xd68\\x98\\xcd\\x05ZY\\x1dũڿ\\x9d\\xbe\\x95}\\xe4\\x9c\\xc0M\\xa0n'B\\xb8\\x16\\xa8\\xac\\xcfj\\xb9d\\xff\\xa0\\xc8@g\\x11\\x98NV#\\x89\\xa6%D\\xe3D\\xbd\\xc4\\xc4br\\xb0貀\\x12\\x1d\\xdeq\\x91\\x9f#\\xf0+M\\x8b\\xa1\\x15\\xe9\\x11]\\x8f\\xfd\\x18_~T\\xd3\\xfda\\xba\\xa43==cY\\a6,\\xeb\\xd8\\xf5\\x96u\\xfc\\x88e\\x9d\\\\\\xb4\\xcc\\xe3\\\"\\x85v2\\xec\\xdbL\\xf3\\x8aS\\x96u\\xf8\\x06˺k\\xd9$\\xd6U\\x03˼\\xd3\\xd0E^&\\xbe侅g\\xdan\\b3\\xe4\\xc0\\xbf\\xd6z\\x97&\\xbe\\xec*\\x86\\xe2\\xe1$\\x8f\\xb0EF\\x87\\xc9\\x00y\\x9c\\xe3\\xc1\\xb3Z\\xc2\\x17\\xba.ޠ\\xe9cL\\nm?\\xc5${ü=9\\xf7\\xb1s\\xe7~ԓ\\xbdV\\x17\\x1f\\xc7\\v\\xc6`A\\xd1߰\\x18\\x17|\\xfc\\xd8\\x036\\x9d;\\xfco\\u007f\\xa8\\xbes \\xbb\\xaf\\xf8W\\xea+`BOq \\xdb$\\xed\\xa8\\xe9\\x92\\xf5R\\xb0\\xd8щ\\xf8\\xacj>\\xba\\xb1\\x90\\x18F\\xb2\\x90\\xff9\\xbaDǺ\\xa5\\xcdn\\x19\\xbe\\xb3\\xf4\\xa3\\xea\\xb9YY\\\\\\x1d\\xaf.V\\xf2?\\xb5[#\\xf7~\\xc7 +\\x0f9\\xee\\xad\\xe5\\u0094\\x83~\\at\\u0383\\x8a\\x11\\xfbD\\xe1^\\xb0\\x95\\vd \\xbb\\x93\\f\\x9b1\\xed\\xf6Fy\\xa5\\xd5\\xdeI\\x16\\x81\\x11\\x8c\\f\\x0fjK6\\x02۠?\\xc8\\xe3WP\\x10e\\x83\\x94OY\\xbd&\\xa3\\xce^\\xb8\\xc5x\\x16\\xd9}\\xf2\\x1c\\f{\\x94*\\x19f\\x93\\xa0wu\\x9e3S\\xdb\\xd2\\x10\\xc5;_o\\x111W\\xcd\\\"Ң\\xad\\xa8\\xd7X\\xa1\\xe6\\xe1bi\\xbeM;\\xfc\\xf0\\x9ao\\xcdNv?\\xbe\\\\\\xab-W\\xff\\xb1\\xe4\\xafJ\\xdf.Ww\\xef'\\xf3\\x8b\\xa2\\xcd\\xca\\xf5`a~a~f\\xb1C\\x96\\x979\\xa1\\x9f\\x1d?n\\xba\\x87<˰*\\x95P\\xe3\\xa5F\\xd90\\x13\\xebçJs3\\x86ަ\\xbc\\x9d,V\\xa2G\\xbc\\xc6Z\\xa3\\xb1Vd\\x84\\x94\\xa4\\xa5W\\xe2j\\xc9\\x0e\\xfcD\\x9fo\\xcf,\\xf4zz\\\\I\\xe2\\xaaj\\x1b\\xf7\\xc2\\u007f!\\xbf\\xa2r\\xb1^W\\xb8\\xa7\\xf0\\xe6»\\n\\x85\\x99\\xa9|\\x9e\\xe4\\x0eitF#Ih,\\xd6\\xd1\\xe6\\x01==G\\xdf!\\xb1\\x01b!\\x91\\xc2\\x00\\xa1\\x1e9C|_1\\x17\\x88t\\x9cB\\x9f\\xe3\\x89\\x19|\\xdd\\xf3\\x90\\x16 \\xcd\\x19\\x0fP\\xc3Q1\\xa6\\xd8|M\\x15\\xb3\\x92\\xef\\x1f!\\u06dd\\xfa(?\\x86W\\xb1g>\\xa7\\x9eiz֫g<\\r\\xec\\x18\\xe2\\x81]\\xe2\\xacT6_\\xbbT\\x02kY\\x9a\\x8e4\\xb5\\x94Z\\x98\\x9eÈk\\x84yNB\\xe78\\xd7}\\x91:\\xcc\\rݲ+Lc\\xf2\\xe7\\x8c\\xd7m\\xb4ER\\xe2\\xd0\\u007f\\xc7\\xe9i\\xcc!\\xc3i\\x180\\x85.c4p;\\x8c\\xf8\\xc89\\xd158\\xe7\\xe7\\xd4=\\xeb\\x96kY\\xee\\aF\\x1bk\\x99C\\x89\\xa9\\xf5\\x96\\\\\\x97\\xd0ЖAھf\\xb3V\\xf6\\xb9p\\x8aa\\xbd]\\xefL\\xd6R0gH#\\x9e)zp\\xaa\\x9d\\xe8n\\x19\\x17\\xe7R\\xa3\\xe9r^\\xba\\x13\\xd7O{V\\x03kIpX^~\\x81i\\x8c݃\\xf1Ɍ%\\x0e\\xde\\x15Lf\\xea\\x04UL\\x95\\x1d2Z\\xb5\\xf8\\xe3\\xea\\xde\\xf9^\\x9f{\\xe1\\xeb\\xd0O\\x1f\\x82\\xb5\\xe1\\x1ed\\xe1\\xce\\x11\\x92\\x11\\xf2*\\xf7\\xb7\\xf9d\\x90\\xaa\\x80T\\x91o\\xb8\\xd3\\x1d2\\xee\\xa7\\r.7\\x19B\\x1c\\xc1\\xe2UhFV\\xa31.\\x0f`\\xe6\\\"\\xc1\\xfb\\xf4\\x80\\xfc2<\\xd5\\xc1\\xf9\\xb3'\\b\\xf5\\xebi\\xa4\\a\\x9e\\x8b\\x9e\\x19R\\x1b\\xac\\x8f\\xa3f♂:a(\\xe4\\xca\\xe7W\\x99\\x9e\\x04\\xee5`\\x12\\n\\xadxe\\x00\\x86\\xe2\\x95E\\x012g\\xb5T\\xb2\\xf9J%\\xb58q\\x8e\\xf5KK\\x9a\\x1dJh\\x1eS\\xed\\x12QJf=\\x06\\x96bب-7'\\xf5\\xba-\\xaa+Ր\\xf18\\xa6ZTYyOq\\xb9Tw\\x8b\\x16X\\xbe\\xa4\\x1aE\\x15\\x9a\\b\\xab\\xe8\\xb4\\xd2a\\xf4hS\\x13e\\xcb\\xd9ٙ\\x81\\x85B\\xb7\\x1f\\xbd\\x18\\xa3K\\xaf\\x82\\xf1\\x1a\\x16\\xfa\\x85\\xab\\n\\xd7(\\x84E\\xda\\xcd\\x04\\xda8\\xd3}\\xe5\\x06\\xd1\\xc0\\x14\\x1f\\r6\\b\\xee\\xbbb\\xda\\xc3$\\xa7\\xbfPɫ\\xfbI\\x1f\\xd3\\x10\\xa1;Lteܟ\\xf4\\xba\\xf4\\xaa[\\x0e\\xbfp\\xae=\\xfb\\x9c\\xb3O}\\xe4\\xfcu\\xaf?\\xb9\\xbb|վߣ2\\fb\\xcf,\\x96+\\x86Q4\\x19?\\xf2\\xf8=\\xb7\\xbf\\xfa/\\xf4\\xb2\\x13\\x1a&\\xa7\\x9af\\x19\\x9e\\x1d뤖:\\xd6\\xd7O_\\xf1\\xe85\\x06\\xdf\\u07b6\\xcf\\x1d\\xbd\\xfe\\xd1\\xe1m\\x87\\xb3\\x83\\xfeWq\\\\ԋ\\xa5٢\\xa5$2\\xeb\\x1e;t\\xf8\\xe4\\x9d\\x04䐥\\v]e\\a}2a\\xe1\\xe5\\xf9l6An>\\x94\\xfbVgUF\\xd9=}3\\x8b\\xa1\\xde0\\xa3\\xd4\\xc2\\x1f\\xb9\\xbc\\x1b\\xf7\\a\\xb00uV\\xb4\\xe1\\x16\\xc1\\xed\\xd0\\x06R\\t\\xb0M\\xb2\\x0e\\v\\u007f\\x84\\x10g\\xb5\\x0e\\xa1\\xa4T\\xbeO\\xe4吝\\fѩ\\xb0F+\\u007f\\xadp\\xdc4\\f\\x92f\\x99n\\x1at\\xba\\xad\\xc6(n\\x8e5xP\\xa4\\x86\\xe2\\x12\\x13^\\x1aZ3\\x15ݖ\\x1am\\x14\\x93\\xa2#\\x85I\\xa9\\xc9|+\\b\\xfc\\xfbMS\\xf8\\xb3*S\\xe2\\xa3\\xd2+\\xb7y\\xcdOJ\\x94\\xa8d\\x97\\\\\\xf2G4\\x18\\xe8*\\a\\xaa\\xae\\xb0\\xa1\\x1a\\xf29/Ďx\\v\\xd55\\x10\\xb9f5\\xad\\xaa\\f\\xf0:\\xd5\\xcc\\xd0j\\xb9\\xc5er\\x15\\xe9\\xfaQ\\xde&\\x9f\\xa2\\x05\\xf2\\xe7`\\x17v\\v\\xb7\\x17\\x1eD\\xb6\\xf3\\xa9o&\\x0f\\xf2DF\\xc0i<\\xe8\\x10C?\\xe1\\xc1&\\x91bb\\x1baRެ\\xd7QLo\\xc8І\\x01H{[L\\xd3\\xeda\\xf4\\nMy\\xce\\x13\\x99!a}\\x1fg\\x83\\xf8{\\x16Z\\x83\\xba\\x9bH^\\xf1k3\\xdd?\\xb0\\x88\\xef\\xf9sg\\x87\\xa4\\xbft\\xd5l\\xa0\\x11\\x0eS\\x8b\\xb5\\x8a\\x06\\xbb\\u007f\\ue393\\xfb\\xd5^(\\xb1\\xd2:a\\x89F\\x8c\\x06,'ri\\xe3\\xed\\x8f(Fl'\\xe5D\\xab|`\\xe8z\\xc56\\xe1\\xd7S\\xd2~ \\x90\\x9cѤ3Wtt\\xb7ݞ\\xd5K\\xe9\\x8ck79\\xee4\\xb1\\xc6R\\xc3\\xe5?\\xb6\\\"\\x8a\\tc\\xb6ѩۏM\\x92٣+Ns1\\xb3H5\\x8d+%\\x93i\\xeb\\x8b\\x1a\\x97\\xfazq\\xe9!b[\\x84\\a\\x93\\x84S\\xe7C:\\xf7k\\x0em-Tf/\\x91˲\\xe0\\x15\\xd2B\\xb3\\xf0\\x9cg\\xec\\xad\\xe2Tr\\xfd\\xf0\\xfbY!\\xb3\\xf4\\xe2o'\\x9b`\\xaa\\x9fg~\\x87\\x93\\x14\\xd6\\xf0K~\\xfb\\x18\\xbf~\\xe9o$\\xb3\\xdc:\\xfb\\x89/<\\xfd\\xf4\\x17\\x9e\\xfe\\x89\\x8f\\xbf\\xeaU\\x1f\\u007f\\xd5k?\\xf6\\xf2\\x97\\u007f\\xec\\xe5\\xe4\\xad½zˏ'3i\\xb9\\xa69\\x15\\x87W+\\xe9\\xcc8\\xf1\\xb7\\xafvŉӔ\\x9e9\\xf9\\xcc\\tU\\x0e'h\\xb5r:3\\x89\\xfd\\xad\\xab\\x1dy\\xf2\\f!\\xa7\\xf7\\f\\xb9\\x0f?\\x8d\\xa5\\x93\\x9dWa\\xf1\\xbb\\u007f\\xf4r,?\\xdb;\\xd7\\x15'\\xcfL\\v\\xdb\\x0e\\xfe廝>\\x81'\\xf8ɸ\\x9bT\\xf2\\xbb\\x15TL\\xe1gH\\xa6\\xf6\\x98,\\xd5j\\x85\\x10\\xb9Xc\\x99ƫd\\x87\\xa6\\x1e\\x195\\t\\xbcL\\xee\\x99\\xe9vo\\x98\\x9f\\x8f\\x06\\x83\\xfb\\xbb337ăA<OjKK\\x8b?\\xf6\\xc7\\xcb\\xcb\\u007f\\xfc\\x85\\x8d\\x8d\\xce\\xe2\\xe2\\x12Ã/\\xfc\\xf12\\xee\\x91\\\\\\xd2\\x17\\tX\\xd7W\\x16\\xae-\\x9c.\\xdcR\\xb8\\xabp?f\\v\\xe2\\xd3\\x10\\x18:\\xf5\\xd9gИ\\x888\\x8c\\x91p*E\\xff\\xcc$\\x95*͜\\xc0Xy\\xb5\\xc4\\xf50R^9A\\xc6\\x18'\\x8f\\xb4\\xbdiw\\x85f\\xb3\\xd0yݱ\\x1c\\xa0Og\\x16\\xb9\\xaa\\xc6Z\\x92\\xc6\\xd0\\u007f\\xf0\\xf9hL\\xeeV\\xdd\\xf3\\x9eϼ\\xe1\\r\\x9fy×\\xf6-\\x17\\xbd\\xf5p\\xdf\\xcalq\\xf9ʖ\\xeb\\xecO\\xf6\\x1b\\xec\\xf4if\\xc0\\x81\\xe3\\xfe\\xd0\\a\\xb6\\xf7\\x89\\x8e^\\xa6\\xa6\\xa7\\xef~\\xb6X\\x93e]/\\xcbZ\\xb1C^S\\xd6;\\xc5\\xda\\xee7gW\\xf6-\\u007f\\xb7\\xb8\\xbcoe\\x9f\\xea$r\\xf2\\rx\\x8fG\\xe1K;beu\\xee\\xe2^\\xd1Mo\\xafh\\xae_v\\xaf\\xe1\\xf2>\\xbbU7\\x8bE(\\xed\\x85X\\xad}P\\xc5\\xd9k\\xf1v\\x9db\\x11\\xee\\xaf|\\x87\\xb8\\x87\\xfe-X\\x13>P\\xa8\\xc0\\xda\\u007f5\\xd8\\x17/+\\xbc\\x064\\x96_\\xc2<?\\x18\\x1d֛nd\\xe7aL\\xa0\\xbb\\x80n\\x92o=w{\\xdd\\xf1\\x04\\x9a\\x18\\x83\\xc1AU\\xc3?\\x98^;\\x99\\xfe\\xe9ß\\x8eT\\xb9\\xa9T\\x88e\\x822$\\x85n\\x80\\xa5\\x13ט\\x8eʧ\\x8d\\x01T\\xa3\\xed<'g\\xb2\\x97\\xb4f:\\x95\\xc6\\xd3\\xf7\\x121!\\x03(p\\x90;\\xa3\\xe0\\x1a,!\\x86\\\"p\\a\\x1e\\xd3g\\x8d\\u007f`\\x9b.\\tq\\xb1\\xc5\\xf5\\x83\\x91\\b\\xa9V+\\x8c\\xf4t\\xa7f\\xbb̰biYN\\xa0\\x17m\\\"\\x9d\\xeb\\x10\\x19n\\x17\\xf5\\xc0\\xb1,\\x19[\\x06s횣\\xf7ȼ\\xbd՞\\xeb\\xedxnhn̵\\xd7\\r\\xbbd\\x8br/\\x99\\xdb0C\\xd7\\xdb\\xe9͵\\xb7R\\xcclZ\\x9a\\xd4°\\x16.%\\xbe\\x9f\\xf8o\\xc5|eD\\xf7uRI\\x93j\\x84|\\xacNsA\\xf8-_,4\\x1dW\\xa3&\\xf9@\\xd5;\\u007f\\xaa\\x92\\x04\\xba\\xceU\\x16\\x01]\\x0f\\x92\\xca\\xe8\\xf6-\\xf3\\xc7\\xdaY8\\x0f\\xd6Q\\x04\\xd2Y\\x16\\x1dے\\x89-\\x18\\x13v\\\"-ہ\\x8f0\\xb8E\\xf0\\xf9\\xb0W\\x8e\\x82\\xe6\\x01\\xe2\\xba\\x14\\x8a)\\x914`\\xcc*\\xda%(\\x86\\x82\\xe2t\\xa0\\x19\\\\[\\u008a\\xf9!V\\xcc\\xf1\\xb1b\\x03\\xb3\\x8e)\\xf7\\xea&\\rMN\\x16\\x9b\\x98ݻ\\xb9H\\xb8\\x19\\xd2=\\x9f\\xf17\\xc8\\uf41f-\\x80\\n0\\v}\\x8a\\x19ź+\\xda*\\xc1\\x04\\x84+\\x14\\xd5\\x1d7?&\\xb9c\\x1e\\x8f\\xe1\\x955a]\\xcf\\t\\x1b\\x8b[$\\x1e\\xc5Q8\\x81\\x89\\x94\\xf6\\xb2\\x14w\\x00\\xf0\\xb7\\xa1\\t\\xb9͆Y\\x03\\xac÷2\\xb3jR;\\xe8.\\x1dY\\xe0\\vW-w\\x90v\\xcc*\\xe92J\\xa1iL\\xcem\\x12ĺQ7\\xeb=߯\\x16\\xdd\\xd84\\x03ˈ\\xab\\xa9\\x01\\xe2\\xadS\\xdaى\\x9a\\xbaތvvJ\\r\\x84\\xb9,\\x95i\\x89;U3\\xa82\\xbbQJ\\xa4\\x9fp\\xab\\xec\\xda\\xcc\\bXz55\\xe6`\\xf9\\xe9u\\x17\\x1b\\t!q;\\xcbڦŸ́(\\x8f\\x96\\x16Ze!K\\xa3\\xf9\\xaea\\xacݾ\\xbdfY\\xd1xmѱۛ\\xcbY%\\xe4<\\xb8rf\\xcd0&+d\\x05):\\x99\\xd8\\xfd\\xe3\\x95\\t\\x9c\\xd9\\xe272ka\\xfdԲ\\xe6\\xaf/O\\\"\\xaaW\\x9b\\xeb\\x83+\\xbb́1[\\xd6\\xfc\\xe1\\xf0j\\x90\\r\\xd5\\v\\x9f&?\\v\\x9a\\xc6\\xcbȻ\\xc9\\xc7\\xc8\\xe7ɟ\\x16\\ni\\x0f\\xb1\\x1b\\x93M\\x92\\rG*\\xb6\\t~z\\xa3\\x1c\\xb0\\x84\\xe17\\xdd\\x1c\\x0f\\x15a\\x18\\\"L\\b\\x84\\xce\\v\\x841)9:EF\\xc98\\a\\xaf\\xa4\\x89\\xe2\\xe9\\xcdq,\\xeat\\xa1\\xe2k\\xf2\\xe2Fx\\xf2*\\x81[\\x8d\\x10T=Tx.\\x9cs\\xbd\\x9d\\x9c\\xd5h\\xb8\\a\\xacR\\xd6En\\x14L\\xa1e*.\\x14k8\\xeae\\x97\\xfd\\xac\\x120(T\\ne\\xc5\\xf9\\x80\\xf7U\\x99GE\\x9cb\\x9c\\xbcڬ\\xe9+z;\\x84\\xa5\\xc1\\xff\\x1d\\xa2l\\x8b\\x06Q\\xe1\\x8f\\x18X\\x14\\x8bX1\\x1a\\xc4{\\xc0\\xaf< g\\x1a\\x81\\x9aW%\\x99B\\xdb\\xf6\\xe0'\\xea\\x8fz¸\\t\\r\\x93\\xc6\\xf9e\\x1eE\\xe8L\\xb4\\x9eo\\xc8+\\xe4\\xafT\\xa5#I\\x13>P\\x8c\\f\\nh\\xa5\\xbbt\\xd2\\xcb\\xe3\\xb4\\xf3\\xd4Z\\b\\x89Q\\x95\\xcfie\\x86\\xd9\\xf4\\xbb\\xe1`\\f7\\x10*\\x04\\xd4#k\\f\\x19\\xb4S\\x95\\xa1,O\\xfe\\x02:KNq\\x81_\\xb8\\xa4\\xf7\\u05f8c\\xa3\\xa0J0\\xa3\\xc0\\xd4 JC\\xe1\\xc2\\xceA[\\n\\x9fAT촮#\\x8c\\x9c \\x05Δ*6\\x876Y\\xfc\\\"ԉb\\x84\\v\\\\\\xad\\x10\\x19\\xd2tm\\xaa\\u0381\\x0f\\xa0,M\\x80ƈ\\x10x\\x0e'\\x05BW\\xe8p\\xe4\\xacA\\xa4:\\xe2\\xa9\\xf1&\\x8a\\x87VJ]\\xb1\\xb5\\\"\\x9f\\xac&A\\x13&\\x96\\x04\\x9d\\x9c\\xea\\x1c\\xdes\\xae\\\"Ą\\x8a\\x9c0-\\ri\\x10չ\\x84I\\\"\\x10[\\x8eܜ\\x8a\\xea\\x15\\xb9\\xabh^S4\\x91\\xf0>\\x98\\xda\\x1d94\\x11\\x84\\xaf\\xa2\\u007fԯ\\xb0aj@\\xe1R\\xe6e!ʄ\\xe7ej>\\x12\\xe9\\xaa\\x0f\\xa5l`q\\xc8(Ks\\xc4\\xcbq\\xf5\\x85j&C\\xcb\\xf3\\xecތ\\x900\\xceB~\\xa5\\xee\\xd2\\xf9\\xb6y\\xdcsi\\xef\\xfb\\x8b\\x8dJuV+\\x97{\\x01\\xe8\\xf6\\xa4ܝ= \\x8b\\x89\\x88\\xc0f\\xe2\\x9a\\x1fj̀\\nj\\xa9)\\x99\\xde\\xd4tx\\x05=\\xd8@&$\\x03y\\x05A'V-Ř\\xee\\t\\xb0;A\\xf9CZC\\x9b\\x99\\x86\\xe1!\\x1e\\x1e\\x01\\xf0\\x9a\\xad\\vk\\x9f`\\xc5\\n\\xf4\\x02\\xb7\\xab\\x06\\xf3\\\"\\x9f#\\xf9\\x9dmQfٙ\\x0e\\x16*5$h\\x81\\x94 /.\\x86\\x05PMǎ\\x97)\\xb6\\xa6\\xb0\\xc1\\xccd\\x98\\xf9\\xc4\\a\\xb3S\\xf5\\xbf\\x81\\xa4B\\xdc#\\xdcv8\\x12\\xea*\\x8a_\\x89\\xc9\\fq_<\\xe7\\x00V\\xe6(\\xb7\\x18a\\x11nzk\\xaeș~I\\x8e}S\\x9dl\\b\\xc5ˈ\\xbdG\\x89\\xc3\\xf3a\\xa0\\x9a\\x0e)\\x1e\\xa9J\\x95\\xa8\\xe2`0\\\"\\x81\\x80\\xb5\\xa3ȁ\\xb9\\xb4\\x130\\nt\\x84+kB\\x97\\x98\\xa1\\x06\\x03\\x04L\\xe8gW\\x17\\x82r\\xc4<\\xa1\\xc1\\x18hv\\x8c9\\xe5\\x03a\\xb8H\\xaa\\xe7\\xc7=\\xc1\\xa4\\x1e\\x86H\\x8b\\xbcL\\\\04A\\xb9\\xd6|5x\\xa4o\\xdbz\\xd42\\xf8\\xac\\x86\\xa3G0_\\x83\\xb3JPI!\\f]:M\\xd4\\xd0\\xe1c\\x8a\\x8c\\xe6W\\xb8\\xd5%\\x10\\x00\\xac\\x1co\\\\\\xfb.m_V\\xcfj\\xe5`\\xa95k\\xcb\\xf2\\xac\\x8b\\xd8}\\xe3\\u0085\\v\\x9f'\\xff\\x83\\xfcFᕅ?&Ur\\x17\\xbd\\x8b\\xbe\\x97~\\x8d\\x15\\xd95\\xe8\\xdfR\\xfe\\x8dd\\x0f~\\x8a\\xe1DSK\\x04\\x97\\x12\\x9c\\xa45\\\".[Gr\\xed\\x03ݾ\\x9dl\\x01V\\xd3\\x1c\\n{\\xe9\\x0fF\\x9a\\xf6pe\\x1b\\xc2\\xca8\\x1e\\xe1\\xefx=\\x0f$\\xbc\\xb8\\xde\\xf4\\x11\\xb4\\xba\\x9e\\xefH\\xef\\xfdL\\x91\\xa6\\x97.\\x93ӟ\\r2H\\xe0\\x92ɏ\\xf8\\x81\\xbb\\xad?s\\xebN\\x17Y\\xcc&\\xeeE\\xb8n\\x9a/\\\\\\xf9#!\\x04\\x10\\xfe'\\xf9\\x01r\\xf6!\\xccvzmW\\xd1\\xf3\\xed\\xa1m\\x91 fze<\\x851>\\x83\\x00\\xce\\xd6`a\\xc7\\a\\x9b\\xfe\\x1f^\\xf2`\\x17S\\x80dkX\\x93g=\\x91\\x82!\\xc2\\a\\r\\xa2\\xa0\\u007fË\\xa5\\x8c\\xf3C\\x96\\x178\\x1c\\xd5\\xc8:\\xdc\\x16\\xea\\n\\xbf\\xc93\\x05\\xf4ד\\xc9p\\xef^\\x83\\xf1\\x14\\xa4\\x8c\\xd9.`\\xa5^۫\\xe3\\xb4\\n{\\xc2fZ\\xefn\\xae\\x0f\\xe6\\x04B\\xd3\\bҋ\\x18F\\xfc\\\"g\\x00G\\x90\\xe6Z\\x9e\\x9fe\\x90c\\xa1\\xa3\\xbd\\x98\\xf8=a1T\\x026\\xaf*\\xbe<\\xd3\\x01\\xd9\\xc5\\xcaa\\x16\\xf3(^\\xeb\\x82\\xcc\\x02Y\\xdcQ\\x89`\\xe0g\\xb8\\xbeMֱ/\\aÑ\\xd2B\\x87\\xd0\\xf4\\xeb\\xd0\\xc3\\xe3d\\xb2\\xd6G\\xc2\\xfbI\\x1fU\\xdf(YO\\x90Ω?X\\x8bA\\x93\\x85_x\\xba\\x18F+\\xd4\\x0f\\x8bU\\xc5anV\\x90J\\x9d\\xf5!(\\xcar\\x8c8\\xcd\\xf8ҁsq\\\\G\\xb9D\\xbcl\\x9cB\\u007f\\xaf\\xa9\\xb6\\xd8D\\x87\\xdfxv:\\xfe/\\xebkг\\xb3\\xce*\\x19^>覨\\xcda\\xde\\xdb\\xdf1m\\x10\\x1d\\x0e\\xa2\\x96M\\xb7X\\x9ck6\\x8b\\f#\\x9f\\xd9\\xde\\x1a#\\xec\\xd2b\\xa5\\x89\\x19\\x91,\\xcc\\x17\\xc4uL-\\x84p\\x12b\\x81Ȱ\\xbc\\xc0Ѩ\\xef\\x8fR\\x8d\\x91\\xe9\\xcaD5\\x930\\xbb\\xd8XtL\\xd0oM\\xe4\\xf0ԩk{\\xa6\\x1d\\x87\\x81\\xabs]\\xcaEW-PH\\xf1\\x19\\xdb\\xc5R\\xd3\\x01\\xc9\\x12\\x04D\\xc0\\xb0&&3\\xe0w\\xae]*\\xc2*\\x8ai\\xa5\\x15\\x11\\x10a\\x96\\xe1D\\x95l\\xd5r`\\x9d\\xb3^\\x1c\\x96\\x89\\xa4\\xa0\\x85+(\\x90\\x05\\xd2\\xc0\\xa2\\xe8=\\x84:\\xf8\\xbe)\\r\\xf8\\xc1\\xfa(zEX\\xe1\\xcd\\xc0\\xf8-\\xccq\\x107\\rn\\xe2\\x92΅fy \\x1b\\x84\\x125\\xdc1\\x84\\x8d\\x8b.H\\x05\\xa1{\\x11?K\\x95xD9\\xcbQ\\xa8\\xa1Db\\xb9\\xb4\\xcd\\x05\\x17\\xca<\\x91å0\\xa5\\x17f\\xf5\\x11\\xae\\x84R\\x1d\\xdb\\x10\\x01ұú\\n\\xed\\x05\\x96\\x83\\xc3%\\b\\x19\\r\\xde\\v\\x81\\x98*\\xe6\\x04\\xad\\x8e\\x94\\x16\\xf7\\x83\\xa0ji\\x04\\xe4\\x8cd\\xc8\\xfe.uӶ4\\t\\xd2@\\xe6k;\\xf1\\\\\\xd7\\\"\\x92膤:\\xc8[\\x10\\x0ej\\xc1\\xcf\\x05&S\\x02W\\xbd\\xa5R`\\xd9\\x18\\xb4\\x05\\xb2\\xbb\\x97\\xeb\\v\\x9c*\\x8f\\x1fQYÔe\\xc3\\x11\\xe0\\xc5L8\\x1d\\xaf\\x17\\xf9\\xa3\\b\\x10\\xebJ\\xccbT\\x1b\\xf2L\\xc2\\xf3bc\\xe6\\xdf~R\\t{\\x1bZː\\xa0\\xa2H\\x83\\xe8TW\\x014\\x96\\xa1\\xe9\\xae/A\\x00j\\xcc1\\xf83b\\t\\a\\x00y\\x1c\\x85\\xb8\\x8dbHZNh\\x18\\xa6n\\xc2\\xc3!\\xec\\x1b9\\xff\\x18(\\xf0\\x96\\xe9\\xd9\\x1c\\xfaFź\\xe1\\xc5\\x1f\\xcf#\\x965\\xa3\\xd8lf\\x02\\xca\\x0fChTa\\xf8\\x88\\x83\\x87ưy\\xad\\xdc\\xef&\\x8e\\xa2\\x86\\xa1{\\xba\\x1364\\x86\\x0f\\x99\\xf6\\xd2A\\xc7\\x156\\xcdu\\x0e\\xab(\\x90\\x10S\\xa1\\xf1\\xedJ\\x02\\x0f[\\x89{e\\xc9M\\xa5H\\x94\\x14\\xecU\\x9a\\b\\x03$by\\xd3ql\\xcf6tǦ\\xddf\\x18\\xa4>\\x86\\x0e\\xa3\\x00\\xcfg\\x80U.\\xa6\\x1cG\\x94(\\xc2\\xf8-\\xa6\\xd4hTҨ\\x1e7-\\xacF\\xdf\\xd1\\xe1\\xa9@\\x1bC\\x8bPF\\xa1\\xe7`\\x1a\\x00\\xe8Ohu\\x13\\xd4\\x1al\\bf+g2t\\x84\\x06\\x95\\xb5\\x1c\\x81=\\xe7\\x06&+\\xa5\\x8e\\x15\\aF\\r#\\xb6\\xcdF\\xa8\\x93\\xa4\\xac\\x19A\\x00\\xd3A\\xf7-\\x1b砀b\\xb8\\xc2\\xc00\\x93\\xe9\\xd0\\xc1\\xba)\\xa5\\xe3\\x81F\\xa7[6R\\x10z6\\xdd@E\\x10i\\r4f\\x99\\xa0b\\xe1\\x1d\\xc5̻g\\x99\\x82\\xd5)0\\xaf\\x86\\xa9\\x04l\\xa8\\x00\\xd7)u\\xf2\\xbf\\fރz\\x01\\xea(\\xb2\\xf9\\xc3P\\xc7m\\xa8Pׅk(\\xfd\\x8c\\x9a\\x0eS\\x88{d\\xb0\\xc19\\x04g\\vݷq\\xec*\\xdd\\x0f\\x86\\x134\\xbe\\n5\\a\\xdd\\a#\\a\\xb8fc.h\\x8dK\\xe4\\x9aT3\\x06&\\x85\\x13\\v\\x87\\xe4}\\xe1\\xe7\\xb9\\x03\\xa1J\\x183\\xae\\xe51\\x8c\\x94\\x990\\xbcb\\x98D\\xa4\\x8c\\xa3\\x18Yo\\x18\\x8cS\\x1d\\xccZ\\xf8\\x06\\xf5f*pj\\x98\\x02\\xb3\\xb0\\xc3\\tz\\xae\\x17\\x92K\\x06\\xddt\\xe4\\xa1\\x15\\xa6O\\xf5\\xec\\xe9I\\xf9\\x99\\nhMxO[\\x12\\xa6c:\\xad\\x8a)]\\x89\\x95ǐ\\n!A'\\xc1\\xe9\\x8f\\xdd.t\\x8d\\xb9\\x91)u\\xe4\\\"\\x16\\xbaa\\v\\xd4\\xcdL\\xe9\\x97\\xc0\\x06\\xe6\\xf5\\x86fð/\\x15#K\\xe0\\x82CT\\x94\\x04\\xcc\\x0e\\xa5F2P\\xab`\\x9a\\xba\\xa1\\x05\\xfdoIG:\\n\\xa7\\xfby8\\uf4c5\\x87\\v/\\x04\\xade\\x9c\\x8e\\xd3^\\x8er\\x03+hO\\xd4\\xef\\x11\\xbf\\x8cG9\\xa8?Q\\xb9\\x1a\\xf7\\xe4\\x9c̹\\x9d\\xa7\\xd4:\\xa8\\xa0$y\\xac\\xc1v\\xbe\\x194\\x95\\x11r/\\x03\\xe5h\\x9bh\\xea\\xe2{\\x8e߱\\xb04\\xd7>\\xb4\\xc2\\xedz-\\x9d\\x9d\\x91\\xe3v\\n\\x16\\xae\\xediZ\\x9cF8[\\x82\\xb0[\\x8d\\x03aن\\xcd\\x17V\\xd7\\xdb\\xcb4H\\x89\\xe36t\\x0f\\x93oU\\xd6\\xdaM\\xd0hq*\\t⤌\\xfa\\r\\xa1\\x95\\xe7N\\xec\\u007f\\xfd\\xa4<r\\x13\\xc6\\x06\\x04Y+I\\x91\\xbc\\xea\\n\\xe8]\\x18\\x95\\x03\\xa2\\xc1\\xf2\\a\\x03 XnwZ6z^m\\x9b\\xc2\\xd475\\vF0(\\x8e\\xba\\xc9ZiJ2\\xeaשnv\\xbdv\\xb3lZ\\xc2Z^\\x183C\\xf2\\x99r\\xb1\\fJ\\x9b\\xb7\\x1az\\xee\\xdc\\xcc\\xeaf\\x18\\r\\x97\\x8fwkz\\xc7ۨ,\\xad7\\x87w\\xad\\xa1\\xaan^\\x9ao\\xae]\\x98/\\xac\\x17\\nA\\x9aa\\xda\\xf3\\x89ğD\\xe6Y!D\\xa6\\xdeNzC$\\xf1\\xfe!7\\xd1K\\xec\\u06dd\\x8as\\xbb\\xfd\\x92#\\xfb\\x8fh\\x1a\\xbc\\xc0\\a\\x95J\\xfe\\x9e\\xb1#\\xfb\\xff\\xf0\\xc1c\\xc7\\xcf\\x1e\\xff\\xe0\\xb1\\xe1\\xf0ؐ|p\\xfa\\xe1\\xa5'\\xed]\\xa4J\\t\\x8f=x\\xfc\\xf8\\xd9\\xd9!\\x9e\\x0e\\xba\\xab\\x03\\xf5\\xfb\\xbd\\x8b\\xfe\\xc6za\\xb10*\\xec\\x14\\x8e\\x17\\xce\\x14n/<TxQ\\xe1u\\x85\\xb7=\\xdb\\x17<\\xdbUA}\\xddQ7\\x1b\\x8c\\x06\\x12\\xf1H\\xf0.U9\\xb8\\xb3\\t<\\x93\\xf2\\x9f\\xec\\xfdE\\x87\\xe4\\xc5ËG{O\\xa7]~\\xb5J/0\\xe8Q\\xc5{\\x1a?s\\x1f\\xd0\\xf0v\\xc8\\xdeŹ\\xdf\\xf8\\xa7>\\xfb\\xa67}\\xf6M\\xe4\\xf5\\xef\\xbcᆵ'f\\u007f\\xfa\\xb3\\xc7ϼ\\xe3\\xe7\\xdf\\x1e\\xbd\\xbcz\\xe6\\u007fI</\\xb1i\\x9a\\xd2\\xc0p$q]\\xa2\\xdb\\xff֘\\x1e\\xca\\xf3\\x9e\\x17[$I\\xa8\\xfd\\x9dO\\xbd\\xeeu\\x9fz\\x1d9t\\xc3;\\xbf\\xf0\\xbe\\xb9\\x17\\x0fo\\xb8\\xfb\\xc8\\v\\xe3\\xf7}q\\xe7W?\\xf6\\x8au(\\xf3\\xc0cK\\xc6;\\xd2\\xc0\\x8b\\x1d^\\x82\\xa5\\xf87r\\u007f\\xf2/\\xbe\\t\\xef\\xfa\\xe9\\xee\\xea\\xe7>\\xbfr\\xfa\\x8e}\\xa5S\\xa5/|\\xe1N\\xa3X4\\xa2\\x92&J\\xd4\\x14\\x8e\\a\\x82\\xda\\x16\\xefì\\x83.\\xe3\\xae}:\\b\\x8c(մ4\\xfa\\x0f\\xaf\\xc3\\x1b\\xb6\\x9b\\x83\\xd3\\xfd\\xcf\\u007f\\xee˧\\x0f\\x9e>\\xb8{\\xe3+n9\\xb19\\bw>\\xf7\\xf9}\\xf5\\xd6-G\\x8c \\xb4\\xe2\\x92ूU\\xa8]\\xf8\\f\\xf9\\xaf\\xe43\\x85\\x9f,\\xfct\\xe1C\\x85\\x9f-\\xfc|\\xe1W\\n\\xbfQ\\xf8\\xed\\xc2g\\v_,|Ee\\x8d\\x82\\x9fx\\x85gC\\xf8\\x1d#`/\\x15\\xd0\\xd4𣾁\\xe97\\x9e\\xc8\\xdeD\\x0est6\\xa8\\x9e\\x04}\\x93\\xa0u7i&\\x9bd\\x82\\tH0\\x11\\x89B\\xf4` \\xfc\\xde\\t\\xb9\\x1f\\xa3A\\xe3,\\x91\\x19\\xa6\\x84\\x8b\\xb1\\xc0L\\x15>\\xce&H\\xf6\\x9eb,.\\x97#\\xec\\x0f\\x98\\xc0\\x13ts\\x8e\\xf1\\x10\\xe1\\xaep\\x98\\xa1\\xc3a(Q?V\\x87\\xb8\\xdf2=\\x84\\xd3c8\\x03\\xccK\\xcb\\xd24\\xe4\\x1f\\x00\\xa9\\xce,\\xaf\\x01B\\xa9ܔ\\x8d\\xa2V\\x13E#\\xac\\x18eY\\x01E\\xa7\\u00ad$K\\x83\\x8cҴ\\x18\\x11\\x90F\\x82\\xe8\\xb7j\\x1b\\xecy2X\\xf2k<n\\xb5cV\\xf3\\x97\\x8a\\xf2\\x1c\\xdf\\xe0\\xb7\\xea`F\\x82\\b\\x88\\x8a%B\\xb3\\xc0\\xab\\a\\x89\\xcd+\\x9aF+\\xb2\\xacW#=\\x14U\\xad\\xd8\\x10͊\\xedEu\\x1f#aP\\x96\\xeb\\xa0\\xd6\\\\\\xe5\\x9b\\x06\\xa9\\x10\\xe2\\t}\\xae\\x04r\\x8bUxٖ\\xb4\\xedd\\xda\\u007f\\xc7p\\xf5%W\\xd7|R\\xd6t\\v\\xac5\\xab\\xc2kT\\xcb\\xdcR\\x1c{\\xb6lP?Mj\\x825\\xfc\\x16\\xe8\\x88ss,n\\xe8=Чe[\\xc65\\xad\\xeb\\xb2Z\\xb1bhѬ\\x19\\xcdR\\xd2\\n\\xbd\\xba\\xe6wB\\xae\\xb7\\xb7j\\xfd\\xfb\\xb2;7%\\xac\\xf6\\xeb\\xe7}\\xf8w~\\x1dĆܼ3\\xbb\\xaf_\\xdbj\\xeb<\\xec\\xf8Z\\xdd\\v[\\x04\\xc9H\\xcc\\xd9H3*\\xc5\\x1as\\xbbZ-\\x86\\xb2\\xe1\\x0e=\\xbd\\x11\\xb3\\xb99\\xa7Yj\\xf9\\r&\\xeaqɣ\\ri?\\xdf\\x12\\\"X\\x8al\\xcetX\\xdc]o;\\xc8\\f\\xea]\\xcbK65\\xdf,\\x02!\\xb2\\x00\\x145ۅ\\xb5˹\\xba\\xe1\\x113\\xdbi\\x99\\xd4.\\xe5{\\xa5\\xe4§\\xc9\\x05\\xf2;\\x85n\\xe1\\x04\\xcc\\xffw!Wb\\x9c\\xbb\\xab\\xc1\\x90]!\\xc3m\\xbe\\x83{d\\xca16\\xd8 \\xeb12\\xc1\\xa2\\xf3\\x14S&!\\xbbM\\xbc\\x16\\xc5\\xddޤ\\xa3p\\r*T\\x1d\\xad;\\r\\x11\\xef\\x98\\xfb\\xc9C2\\x05\\x95`\\xa9ۑ\\xa3q\\xba\\x17\\x12\\xee\\x12\\xb6\\x9e\\xc7a\\xa0p\\x18\\xb9\\x8aG\\x01\\ue852\\x1f\\x81\\t\\xb4>H\\xae%I+I|Fm\\a\\xb4\\xba\\xc0\\xe5\\\\/\\xe9\\xe5z\\xd1=1O\\xf8\\x8bg\\x9a[K]ݸ\\xdd*z\\xb6)\\xe8\\xcc0!cP\\xb4\\x13\\x90v\\x86\\xa9\\x99\\x11H\\xd15\\xd0\\x0eiI\\xa6\\r\\xc75B\\xdbHK\\xae{\\\"#\\xfa\\v\\x8f\\x91\\xb4\\x99\\b\\xf3\\xbc\\x0f\\xa5\\v\\xd7b\\xac\\xb5\\xbd<\\x03Eٱ\\a\\xfa\\xf2\\xec8\\xa4'A\\xa8$I3%řF#\\x8d}8\\xe7\\x0e\\xb7\\x12X\\xbc\\a_\\x92WļTw\\x1c\\xc3w5\\xb7\\x14\\xd9P(%/9\\x9a\\xf8\\x9a\\xa9\\x836\\xec\\x80\\xec\\xa1O\\xb1\\xd6\\xceʌ\\x91\\x97\\xa9\\xb3\\xd9!Iɺ*\\x14\\xef\\xb8\\xfb\\x03U\\x01л\\x12\\x01\\xb5st\\xa8]\\tk7G4\\xa4d\\x85\\xf5\\xc0\\xba\\xf0M\\xf2k\\xe4g\\n\\xb6Z\\xa51\\xab\\xc9]\\x85\\xb7\\x17\\xde[\\xf8\\x18\\x18/\\xf3\\x85¬2\\xabUt\\x1f\\f\\xbe\\x1eR\\xcb\\xe7؊\\x06U\\x89\\x17D\\x1e\\xb6\\x9a\\xf5@\\x9awԙH\\xe9\\xd8\\xe9\\xc9A\\x12\\xad\\xbb\\x04SQ\\xa9P?\\x95\\xa7\\x1b\\xbb\\x99\\xe6\\fGi2\\xab -.\\x85>Ü\\x8e\\x88\\xb6\\xecmk\\x98\\xcfj\\x1dN\\x81\\xaf\\x1a,B\\x93P&Z\\x1f\\x19\\xf5p\\x8b4\\xcb\\xc95\\x14\\x1b\\xa9\\xccI\\x8cR\\x91\\xa9\\x18\\xc2\\xfe\\x9a\\n\\xb9E¤\\xf13\\x0e\\x8d<\\xce\\x103pua`\\xa0\\x18@\\xc6{uc\\xa2\\xbc\\x04{\\x86\\xe1\\n\\x919\\x8b\\\\O\\xc0\\xcc\\xebO\\xb2Q\\x1c\\r\\xb6)X\\xad\\xc3u(a}\\x84A\\x8c`\\x89\\xaf\\x8f'\\xa3\\xae \\xd7p\\xcau\\xd4\\x1f1E\\xe9>C\\xd7\\x1cT\\x9dL!8\\xf2:bR\\x10t\\a\\xa1\\xc7Kߢ\\x98\\xccJ\\x17&(\\x9d\\x92\\xfd\\th\\x95\\xb0$\\xa0\\x8a\\xcd1\\xa6o\\xaa\\xc5a\\xc0_\\t4tP\\xa3\\xfa\\xc24\\x9c\\xc1\\xd6U\\xdbC\\xb74\\xcf4\\xcf%\\x95\\xb9~\\u007fɵ-gi\\xa7\\xa3\\x1b\\x9c\\xb4\\x8c\\xd0绿\\x17\\a\\\\[\\xea1\\xda \\xadm\\xe9:\\x8a\\x88\\xb1(\\xfc}\\x9b\\xe9\\xbaO]\\at\\x96\\xda\\\"\\xf1ҫ\\x9b$yQ`\\xb8\\xde\\x15K\\x19TK\\x86:\\xb2/\\x12\\x8b\\x83\\x89\\a\\xf6^\\xc8=\\xaeyU<v@Q\\xf4@ͤ\\xee\\xb19\\xcb\\f\\xdc\\x18\\x94TP\\t\\xb5\\xb8\\x91΅65b\\x98\\x1a\\xef&2\\x9c\\x9b\\xab\\x930\\x01+\\x82TRT\\x01\\xeb_\\x16\\x06F\\xe9J02\\t\\xd4\\x0fUo\\xa4\\vG\\xee\\f4\\x1eQ\\x8b\\x16>\\x13Ȩ\\x1f\\x80\\xc6t\\x14\\xed3\\xa9\\x83\\xe5\\x84\\x0eV\\xb45\\x94\\xc7\\x15\\xcc\\x05[/1^t\\xec0m-\\xc7$^mu˜#\\x93\\xc1\\xd2`\\xb2\\xd4\\x16\\xb8\\xb4\\x17\\xbdF\\xa3+\\xa3\\xa8\\xe8SÌRk\\xa3Sj\\x04\\x8dz\\xb1\\xfa\\xa2\\x1b\\xd6\\xc1PC\\xf3\\x1c\\xe1t\\xd5q\\xfbH\\x83[\\xe1\\xbd\\xd4q-az1i\\xfae\\x173\\xf5\\x15#\\xe8$L;fYA\\x15\\x8c'\\x89\\xfe\\xc84\\xb0c\\xdbU\\xa9\\x97\\xfc\\xe5HӚe\\x87k\\x86\\x9b\\xd4\\x11\\xc3\\xe8\\u0601\\x81\\xea\\xaeD\\xcb\\xe0w\\xd0\\xea5}\\x0eZ\\x1d\\xea\\xcf\\x1e\\x98\\x9eޥ8M\\rt\\x9fLq\\x1b\\xc52\\xa3{\\x98\\xa1Q\\x86?2Ɵ\\x143\\xc0\\xef\\xbd\\xfe\\xa7N\\xbbݹ*O\\xfb\\xf9\\xd4\\xfe\\xcdJes\\u007f\\xa5\\xd2\\xeeT*\\x9dv\\xe5o;\\x9dC\\xed6\\xb1s\\x15\\xe1\\xff\\xbey\\xff-\\x9bׄ\\xe15\\x9b\\xb7\\xec\\xbf9\\x8a\\x0e\\xb6\\xdb\\a\\xa7\\xafj}uA\\xae?\\nr]\\x16\\x8a*\\xff|a/\\xdcG쭃\\xdd\\xceD\\x81Y\\x91\\x96(H\\x91\\x14\\xfe\\\"\\r\\xfaߤ\\xbe\\x9f\\xfa\\x0f\\xfb\\xa9'm\\xddڙ9\\xb4Z\\u007f\\xe8]\\xcf]\\x8eO\\xb5f\\xb6\\xba'\\x9e\\u007f\\xf2\\xe4O\\xc0W^\\x9a\\xc2i\\x96n\\xcb\\xcf\\xd6V\\x0fu\\xaf~\\xf0\\xc1\\xab\\xc9u\\xdfjww\\xbf\\xdcݚ\\x19\\x9f8\\xf1\\xc8\\t\\xc4\\x06\\x85\\xa0\\x97\\xfe\\\"襦\\xcaD\\xfb\\f\\xcdk\\x1aws~\\xc8Q*Gȡ\\xde \\xea\\xfe\\xb0*\\x83\\x86@:\\xc5F\\xb1\\xda덳7\\u007f\\xed̋_p\\xea\\x91G6\\xcf,\\x1c\\xbf\\xf1\\xd8B؎V\\x1a\\x8b\\xbfPl\\x04\\xf0]\\x96|\\x8d\\x9e?s\\xfd\\x13\\xa2\\xb7\\xb33'n\\xdbZ8\\xbe\\x00\\xff\\xd3\\xe1\\x92S)ݦ\\xe23\\u007f\\x8f|\\x1f\\xfa\\xa0\\x83\\x18d\\rn\\xbd\\xd6\\xcd\\x05\\x8c\\x12\\x15\\xdd\\x1e\\xbeG\\x98\\x1cCk\\\"\\xca!e\\xb9kM\\x1bM\\xb9yɻk7\\xb5Ƀ\\xefxǃs\\xf740%\\x1a\\xb9\\xff\\xa5I}2\\xdb9\\x98\\x90\\xfbH\\x80ӵ~ \\n[~Q\\x92^\\xb1|\\xec8\\x01i\\f\\x1d4[E\\xcf\\xca\\xf5W\\xb7\\x86\\xed\\xb6\\xef\\x94\\x03¾n٫\\x8b`\\x16\\x94\\xa4\\xeeZ~\\xd1\\xec8r\\x8b乱/\\\\\\xf8{(\\xe7-\\x85x\\x1a;T@\\x8c\\x94\\xa2\\xa2\\xedd\\x13ԅ\\xf1\\b*>\\xfdHe?L0\\xa3\\x06&\\xbd\\x1f*@\\x95De>\\xbf\\f\\f\\x9f\\xfc3\\xec\\xefL]\\xfc\\xc9\\xf7\\xd5Oo\\xd4_\\xe2ͻ\\xef\\xf5\\xea\\xf3\\xde\\xfbd\\xec\\xfe\\xbd'\\xdf_;]\\u05fdHw\\xf1\\x93\\xff\\xf3Yg\\xc8\\xff\\x9e\\x9f\\\"\\xdd\\xe9)\\x0f\\xbd\\xaf\\xbeq\\x1a\\xce\\xf1\\xde\\xeb\\xcd\\xd5\\xdd\\xf7\\xc1\\xa5\\xe7\\xbdH\\xbe\\xbf^\\xd7#Ow჻/\\xfb\\x1e\\xaf{\\xe1\\xe5'\\xa8X\\xb1\\xdf\\x06;\\xe5\\xb3\\xf0\\xac\\xad\\xc2ja\\f\\xcf{\\xa4p-Z\\x82MҠ9\\x9d\\xef*A\\xc6&\\x18\\x1a\\xe9\\x02\\xe9*2\\xe9q/͐oo\\xfa>\\x1dd T\\x16a\\x16\\xe5\\u007f&\\x1dWe\\x8d\\xe8\\t%k\\xbeT,~Zӵ⧋\\xc5\\xdf\\xd4MS?\\xa7\\xb7\\xf4\\xb0\\x9e\\x86ዛE;L\\xf0]\\xb1\\x91.X\\x86a\\xd5\\x0f\\x9b\\x86a\\xb6\\xfe\\xa2T#\\xb5r\\xbbZ\\x1d/\\x04\\xc1B@>a\\x9a\\xe7\\x98i\\x8b?\\x8b\\xcdGL\\xf3\\x11^4\\xfe\\xcc(\\xf2;\\xce6ff\\x1e\\xe8\\xf2V\\x9d\\x9c\\xedtn\\xf0\\x836\\t\\xc3^؞k\\x8fF\\xc5\\xee\\xcc̔\\x0f\\r\\xc7\\x04rQ\\x9c\\xc9#p\\xa3<1#\\x8c+\\xfc]\\x91\\xc3)\\f3\\xc5\\xedz\\x10>\\xdb$\\x9d\\x06\\x81z \\x91z\\xf9\\xab\\x1a\\x97S\\xb0\\xe1@\\xd9\\xc3\\xe4ýu\\xb3.\\rOV\\x0eo\\x95\\xcb[\\x87+Fl;\\x12נ\\xc1lcY7f\\xaa\\x8e\\x19UR\\xa1\\xaf\\xec\\xd3\\xcd\\xc0\\xaa\\xcb%\\xb2ln\\x98\\xcbdI\\xd6\\xfdD?\\xe8\\xb6\\xdaVF\\xe6\\xccN\\xcb%?\\xbe:\\xe3\\xb4N\\x86\\xe9bxd<\\xbe\\xaa\\nJT\\x14[\\x16(\\x11\\xad\\xe5n\\xbdҔܮE\\xf5\\xeec%n\\xf9z\\xfd-O\\xb5ZO\\xbd\\xa5\\x1e\\xd8N\\xf2K\\xb3\\x9d\\x17\\xbf\\xb83\\xab0P\\n\\xb7z\\bV\\x97\\x8d\\u008d\\xa0\\xc1\\x15\\xc8\\x1a.*\\x8a\\x0e\\rm\\x01\\xda\\x1f\\x80A\\x9e\\xe6{\\x86\\x98\\x84\\x02I\\xd5\\x14\\xb9 Y\\x04\\xb9\\x8d\\xe8/$-\\x84?\\xf5i6\\xe8\\xeeh\\x93!O>*b`5\\x88\\xe9\\x06.L[\\xb0\\xc5\\xc6S\\x83\\x1f\\x01\\xd6\\xe4)\\xe2:\\xb8\\x9f$M&\\xa5\\xa4\\x8f\\xf2Vx(\\xb6l[0\\xcf&\\xcc`\\xc4\\xf6\\x98\\xb0m\\xcd\\x17ڡ\\xb0Ż5\\x91\\xcc'\\xa2\\xf6\\x93\\xc2\\xd2\\x1c\\r\\x9d\\x1c\\xc8\\xfe\\x84,\\xcb\\xe4ߟ\\x99)Z\\vB.\\x1az\\xd54Μ\\xe9\\x06֢\\x14K\\x96\\xac\\x80P\\xde\\x04\\x85<@\\xc7\\f\\xac\\xdd\\xc8S\\xd1\\r\\x8b\\xf4{D\\x13A\\xc9\\xdeZ\\xc7\\r\\xc8\\xf5m\\xab\\x14\\x80`\\xfb\\x1e-\\x86\\xaf{\\xa4\\x9c\\xa6\\xe5G\\x9e4~*\\t\\xd0+\\xf7\\x1e\\n\\x95\\xa3hu\\xa8MJAϼ\\x8c{\\xe6\\x96incF\\xa7\\x97\\xbd\\\\\\xf8Ǝi\\xee\\xe0\\x1bryN\\xe8\\xfa\\xa59\\xda\\x159.&$\\xca9\\x84AC\\xe9\\xef\\xe5Z\\u007f#\\xf2D\\x99\\xc4\\x02\\x03\\xcf\\\"&\\xc2\\xe7\\x9dSgOM\\x11Io\\xd1,\\x02\\xdfg\\x83A&\\xe0\\x0e\\xa6X\\xdf\\xd9Q\\xe33\\x05\\xb9\\xf0\\xdf@.\\x048\\xebH\\xb2\\x17\\xca\\xd0\\x1b\\xe6\\xd9S\\xc1\\\"\\xc6\\x1d\\x94\\xde&\\x01\\xfd\\x06T\\xb98\\x89\\x11r\\xdc\\xc7\\x04\\xf0\\x1dW[O\\x06q\\\"#P\\xc8\\a\\xfdQo4\\x88\\x92XĠM\\x91o\\x98\\xf1o'\\xee\\x83\\xf7J+\\xf9\\x14\\xfc\\xbd\\xef\\xfdb\\x16i\\xbc\\xa8\\xe6D\\x9c\\x9c£YF4\\x10\\xf6\\x02c\\xf3\\xc0\\xe0\\x8aA#8E\\xd4\\nz \\xfcϽGF;v\\xfeg\\xf7?̀zT\\xaa\\xdetH\\xd3fW\\x1fB\\xf7\\xf2\\f\\x17:\\fN\\xca\\x1e\\xbfW\\x88\\xea2(\\x14k`\\xa8\\xe5\\xf8\\v\\x17\\xec\\x88><\\x0f\\xb4\\x1a\\xe8~\\x8b\\x041\\xfa\\xf13A\\xdaq0Q\\xe1\\xa6\\x1e!k\\x94h\\x87\\x85\\xf6\\xfc\\xa6>\\xd0\\xe1\\xffk\\xc1\\x1a\\xd3\\x18{\\xcbX2\\xed\\xe9\\xc69]'\\xdf\\xd5\\xf5ݯ\\xbc^\\x18\\xf4\\rJ~\\xff#}\\x15y]\\xc1+T\\x91'\\xe7\\x87c\\xe9ɨ+U\\xa8~:\\x01ѭ\\xe8\\xfe\\xe8\\xe9\\xb0Z\\r\\xff\\xf9\\xbf\\xe0+\\x99\\xd9\\xda\\xde\\xda\\xde\\xde\\xde\\xfa\\xfc\\x1d\\xdb[[\\xe4u\\xd5p\\xf7k\\xea\\U000d5c3a\\xfb\\xb5\\xaf\\x9d8\\xf1\\xb5\\xf3'N\\x9cg\\xe7\\x1ez\\bq\\xce{6\\xb8\\xa3\\x90X]\\x15\\xbb\\xdb\\xcdb\\xd9\\r\\x90\\xb0p2\\bH0\\x19\\x85\\x83I\\x97\\x84H%(C\\x82dY\\xacI\\x02I>p\\xf7\\xb9\\x9b\\xee\\x9b{\\xe4e7\\u07fb{\\xf8؟\\xde8<\\xb9\\xfb\\xb9\\xe1\\xa9뎷\\xc8\\xf8̩o\\xbe\\xe5ر\\x03?}\\xc7\\x0e\\xf9\\xcb\\xc6\\xc7^\\xb4\\xb3\\xdb'\\x1f\\xdd\\x1d\\x8c\\xbe\\xbf\\xfb\\xe5\\x8c|v7\\xdd\\xff\\xc0\\xa3_\\x1f\\x91\\xbf\\xd9=B>\\xb9\\xfb\\xbbd\\xeb\\xd7ϒd\\xa4b\\xe2\\x17ṯ\\x87#\\xa7p\\xb4pC\\xe1\\x1e\\xb4\\xcdB\\f\\x89ȺH\\x1a0\\x00c^eJ\\x10\\b\\xb0kP\\x17\\x16\\xed\\f'\\xbd\\x00e\\xbc\\vm=\\x1e!%\\x88T\\x19/\\x06`\\xb1\\xe7y\\x15\\\"9\\x8bʺ\\x02\\xbe\\x88\\f_e\\x86<y\\x8b\\xd3l\\x03\\x19\\x92\\xdf\\xf7\\a\\xc8%\\x0f2z\\x95\\fFʊ\\xc80\\x15\\x90\\x12{\\xb0\\x82\\xc6k\\x83\\xf1G_\\xba\\xbe\\xa0\\xa7\\xf7\\x1e\\xb7\\xb5\\xdam\\x8coQ\\xe1\\xe9\\xb5\\xdc7=\\x16E!\\xe2\\xc6\\x01y\\x88\\xdbC\\xa8\\x14\\xb7*\\xa0\\u007f\\n\\xc2|)t\\xed\\x16\\x8d\\x0f(\\xf9j\\xd8\\x10\\x14cXAq+}\\x94\\xaa0\\xefp\\x9ej\\xfe_\\x11\\xf3\\xa5f\\xe4\\x81j)\\xb5\\xc0\\x11\\x96{\\xce\\x04\\xed\\xf7\\xf5ao^wX\\xe3\\xf1\\xa5\\xc5\\x14\\xd9K7}I_@\\x96\\xfes\\xa5R\\xfa\\xc8G\\x8aŻ\\xc0\\x00\\x8eb\\xdbh3\\xa9KT!\\x0f&P\\xe9\\xd0X\\xbf6M\\a\\xcc\\x0e\\x99]+\\x16\\xa9i\\xc1#ZB˺ԝS9l\\xd1\\xcd\\xdbjS˱9w7\\xc0d\\xb8\\xb6t܍-)a\\x90\\x12\\xdb<jk\\xe2~0\\v\\xb8op\\x8dC\\xf5q\\xc7\\xe2\\x01r\\t\\xc7\\xc1\\b\\xf3 \\x13lW\\x98\\xb9\\b+R\\xce-\\x1c\\x83ʑ5@dW\\a\\xed#L\\xad\\xa0\\xb0\\xa8\\x17\\xc7-\\xeb)\\xe8W\\xb7C^Z\\x9f/\\xdd_F{\\xf5\\x96G\\x1e\\x19<\\xff\\xf9w\\xfc\\x8a\\x19\\\\\\xbf\\xb2\\xb1\\xcc\\xd9\\xca\\xda\\xf2\\x89\\xca5\\xf7\\x86\\xadp\\xf7\\xcb\\xf5\\xf9\\xf9zJ\\xba˝k&;\\x87\\xc9\\a\\xe7\\xeb\\u007f\\xa3\\xcf\\x18Ѳ\\xe34\\xc3\\xc1 l\\x06\\x8dFy\\xb5[_]\\x9e\\xe9\\x8c\\xe1\\xfc\\xf9:\\x19\\xd6\\xe7w\\xbf^l\\xb7\\x8e\\x17\\xbc\\v\\xff\\f\\xe3\\xfa\\x9fa\\\\\\xdf\\x0fc\\xe8\\xfd\\xa4K\\x9e\\x0f+\\xcfw\\xc8.\\x95\\xb4L3\\xbaNo\\xa4ϣo\\xc1\\xec)ȗ\\b֖bG\\xc0=\\xe7\\x91\\xecM\\x86\\xe3\\xf5U\\xb2\\xcd\\xd4\\x0e\\x9dT\\xb9\\b\\a\\xc8\\xf5\\x8d\\x9bѸ\\x819\\x90\\xe3\\xd4eRy{@\\x9620Ik<\\x890\\xdd\\x1f\\x92\\xd3 \\x8a\\xa6\\x8b\\xdf\\xf6\\xa4JC\\x96\\xa4\\x83^~\\xa1\\xec\\xa7\\xe3\\xae\\xec\\x8d@\\xfb\\xc3lGh;\\xd2nҟ\\xc8\\x14\\x97\\x8e\\xe9\\xdeh\\xd6Ô\\x89\\xea\\xfc\\x14n$\\x1b2\\xc5$\\xec0:\\xd1״\\xca\\x13\\xcc\\x04\\xb4@\\xa1\\x02\\xddKv\\x8a\\x91\\xdbAH(\\x1czd\\xd2\\xe9uG\\x93~\\x82\\xc9/\\x06)\\xd6j\\x92u0\\xc8m<A\\xabSfi\\xdcQ\\x9c7P\\x14\\xbe\\xdf!\\x12\\x01\\x81d\\x9b\\xe0\\xf6\\xb5\\xe8b\\xcd\\xe0\\x99D\\x96\\xca\\x15\\xd6\\x15\\x99\\xe2K\\xc8\\xd0\\xeb5T\\xbe/\\x8c\\xec\\xce\\x06\\r1F\\xa6\\xe04w\\x80a@j\\x9a\\xf5S\\x98?`\\x14\\xa3b\\x04\\xb7\\x81y\\v\\xa6\\a\\xc8މ\\x8c1>b\\x9c\\x824F(f\\x96\\xae`z#9Atf\\x86{\\xa5\\x18\\x16\\x02*I?Y\\x83\\x86L\\xf1\\x12\\xb4\\x883\\x04z\\xa2\\n\\x925\\xf48\\x83\\x1b\\x80\\xfa\\x95\\\"\\xbe\\x13\\x1e\\x05\\xb3\\xbf+w\\x9b\\xc0\\xf5\\x00}/0\\xcb{\\x93i\\f\\x06\\xe2\\x9a\\x14\\xf9\\xbd\\x88\\xa1\\r\\x05,\\x95J\\xa8\\xe3\\b\\x04Q\\x06\\xc3\\x12\\xccj\\x95\\xfe\\xa7;\\x92\\bv\\xec\\x8e\\a\\xa0\\x19(Bc\\xdc=V\\nx,UR\\xa0\\x15\\x06\\xd5T\\n\\xd1`\\rQ[\\xd8\\xe4j\\xaf@bHG\\x17c\\x85\\a\\\"g\\xc0ν\\x84\\x18\\xbc\\x81\\xe6<\\xf9k\\x8d\\n\\x06\\xb6\\xa5|\\xf5\\x9dw\\x1c:H\\\"9G\\xea\\x8cچ-,\\x1fQ)\\xc4o\\xb6yZQx\\r]\\xabS{y\\xc4\\x1c0jj\\xa2\\x94\\xb0n\\x9b\\a\\xc21=\\x83P\\xdb\\r-\\fe\\xa3\\x1a<\\xb3\\xf1\\x82H\\xb7\\xe13MⶎK\\xd3V\\xb1\\x12\\xa1\\x11O`\\x86ä\\xb5M\\x97KG\\xa6<\\xd0\\xe60%0S|3\\xbb߶\\xa8CLj\\xd9 \\xcb]\\x8b\\x99\\xb8\\xfb\\a\\x86\\xa4\\xad\\xcd'\\xab\\x15\\x97\\x04:+\\xe2RV\\xd6i*\\x89Dqi\\x80a\\xa91\\u05c8M\\x931\\xe1\\xf8\\x06\\xa8\\x14\\xc2\\xc2\\xddY$w\\\"hR3\\xdbj\\x16\\xe3\\xb9\\x16\\x02۩\\aR\\xd6\\xd1\\rDdQQ\\x94\\xdcwCnj\\x0e\\xd5)\\x89\\x10\\x01ՠ&\\t,\\xb0\\xa1-\\xb0\\xac)\\x88c\\xbao\\x83\\x99\\x8dꌛ\\xaeI\\al\\x99}\\x8e\\xcfE\\bbY+\\x16뵬\\x97z\\xa9\\xe5\\xd1\\xc0*F\\x8dp\\x89 P\\xe6U\\x86cڎ[%%?(\\xba\\xf3\\x0e\\xc7\\xec\\x0e.\\xb7]\\xd43,c5(\\xb6\\xc61\\x03\\xe3\\xd9^*\\xc9\\x06gF\\xa2\\t+\\xafp\\xd82\\x1c\\xa8\\x8e\\xc0--\\xe2[\\x9e\\x91P\\xf3\\xf8R\\x05\\xca5\\x1bM\\xdfo\\vˀ\\x85\\x14]!$4b\\xca1k\\xc2bo\\xb1\\xc6X\\xe8\\xfd\\xa3\\xb4\\x10\\xaae\\v\\xdd@*\\xaczQR\\xe4J\\xb2]\\x17.\\xf0-&B\\xca0\\x15$\\xac\\x9c\\x13\\x8e\\x1a\\x86\\xcaR\\xc6y\\xc6\\x13aٔ\\x1c!܃v\\x00i`\\\"~\\xd4ps\\xb0\\x93c\\xe1\\x1e\\xa0\\xe5h6\\xa6\\x05\\x94\\x9c\\xa3\\xe7\\x03)\\xcbu\\x9d\\xcf1Љm\\x8a\\x89\\n\\x8dVPB\\x8eO\\x01M\\x1c \\x1e\\xc94\\xd8W\\x84\\f\\x02\\xe2\\xb9\\xd6\\x1d\\xe77\\xb7n\\x83\\x1b'\\xcb]\\x85n\\xd38O\\x8aF\\xc0\\x89ѫ\\xbbBH\\x1b~\\xa5\\x8cK\\xc9r\\xd5c\\x8e\\xd4)\\x88\\x8b\\b7\\x96M\\xdc\\x1c\\x15\\x1a\\xd26\\xa1\\xe7\\xc7\\x04\\xf5>0\\x89\\xef\\x16\\xd3\\xe4M\\x8ef\\x19\\xb6\\xc9M\\xc7\\\"L\\xb7-\\xd3\\xd7#+\\xd0M\\\"\\xa5(\\x9a\\x12w\\x9f\\x89\\xe0A\\xcb6c\\xccdG\\r\\xd9j/h\\xd5\\xc0\\x920b\\x84\\xa6+\\xb0\\x1b2\\x96PV\\xb1\\x8a\\\"A>)\\x85\\xb7\\x82\\xaa\\x17\\x9bE\\x81\\xdc#<)\\xb9n\\xbd\\x06\\xc6\\x19\\xb6\\x1b4\\x03\\xd7,F\\xf6\\xf6\\xd4yLB\\xaaI\\xc7N@\\xf9\\xaa\\xcf\\xe0\\xc7\\x02\\xe9\\xac{\\xc4\\xd4lf\\xb3\\xdd_\\xb3\\x8b\\x91^\\xe5\\xa6G4ܿ\\xb6Ҕ\\xe9\\x9e)\\x82\\x1a\\f\\x9e\\xd0\\xdfL\\xa1Sd\\xbd\\x99\\x8a\\x982\\xcbe\\\"pBӂ>J\\xbc2\\xd7K\\xe5(\\x98/\\xc2M̯;m\\x16x)\\xee\\x9f:Q\\xd1\\xc7!]ug\\x96|\\x9f\\x91\\x92\\a\\xe6\\x13\\xd1\\x12\\x8f\\x97|\\xb2Ta\\x86\\x81\\x01\\xa3.\\xd7\\bR#\\x12\\x98\\x11\\xdaަ\\xa7.\\xab\\xb5\\xc4_\\\\\\x15P\\t4\\x01b\\x84\\xaa\\xa1\\xf7M\\xc0l\\xafU]\\xce}&\\xedZk\\xcd8\\x06\\xcd\\xe3\\bS#\\x0e\\xee\\xfd2G<\\xa1\\x19\\xb3\\x96\\xed\\xf9k\\x03K7\\x9d\\xb2\\xcfylKܟ\\xd5<\\x930\\xe9\\\"\\x15\\x1b\\f\\x89>\\xa3\\xae`\\xebTc\\x86/\\xa1\\xedm\\x1b\\xf9o1;)\\xdc=(\\x05\\x16R\\xc6Y\\xa9\\x88\\x04#\\xba\\x01\\xc3\\xdf2m\\x06\\xddr\\x18\\x16u\\xa2\\vX\\f\\f.\\x03˄1j*\\xd2]X>`ȡN\\x8ey\\xb0\\x1e\\x019\\xf9\\xc2\\xc2\\x1bA\\xf3\\x83U\\xbf\\xdd\\xc1%P1\\v*\\xa8e\\x06k1h\\xde]\\xfc\\x10A\\xa3\\xc8\\x14,\\x87\\xb8\\xf9\\x89\\xe8\\x19T\\xdf\\am\\x10\\x9f\\x18\\xe4\\xa7H\\x8d\\xd3)\\xe4\\t\\x14\\xaa\\xb4;\\xea\\x0f\\xfa\\xd9ڔ\\xbb,Nj*1\\x06he=\\f6R\\xe4\\xf4 A\\x16\\x89\\xe2\\xad\\a=C#\\xbb\\xbf$\\xd0{\\xf7\\xa8\\xee\\xc1\\xeb<\\x15`\\xcet\\x1ec\\xe8\\xe5Ҩl4p#\\x83)\\x80K\\xd9\\xf1&MM\\xe1&\\xce\\xe4\\xe8\\xcb5wɆǖ\\r\\xa7Xq\\\\\\x12\\x12\\xf68\\xee\\x8b@\\xb7\\v/A*x\\xe7~\\xc1~\\xd5\\x00\\xcb\\xdb@0\\xa7\\x8f4\\xa8\\xd0\\x14\\xba5\\a\\xaboě\\x860\\xeb0\\xc8D\\xf0\\xbc\\x04,.X\\xb8\\x1c\\x8d\\xd5\\\"M\\xe5}=~̊\\x1c\\x17\\xd4s\\x01u\\xb4\\xcdJ\\xc0\\x10Ug\\x99\\xe8\\xbd\\xf4\\xcd\\xf8\\xca\\xe6\\xf2fBD\\\\\\xe5e\\x91\\xb3\\xe8\\x96\\x0fd$\\x82\\x9a\\xfe>b\\xfc\\xb0\\x9b\\xe6M=\\x8dS\\xbd\\xf6\\\\\\xa8l\\xa1\\xe0\\xab|\\xe0\\x9fV\\xb6Ç\\n\\xdf!er\\x1b\\xf9\\x19\\xf2-\\xcah\\x8f\\x1e\\xa5?\\x80.\\xaa\\xb06[f\\xeb\\xa0\\xff*\\x87\\x91rO\\xcb\\xee\\n\\x1fa\\b\\x93\\xca\\xf3\\x86\\\"\\x1b$\\xf1\\x1a\\x98\\xef\\xf1\\xda6Y\\x87\\xce\\xc1\\xbdg\\xc5O\\x93\\xe5(%eC!\\xd4I.\\x10\\xcc}\\xb4A\\xa6\\xe2\\xab\\xd3\\xedM\\x14\\x81\\xdcZ\\xb4ޠ\\xaa\\xbb\\xa0X%i\\xfb\\xf1Z\\x82)\\xd4@\\xff\\xc5S\\xe8\\xfaHH\\xccÊ\\x84# \\xb7{x\\xc3L\\xf56\\x8e\\x86>\\xa2}\\x15\\\\/\\xeb\\xc0\\x85\\xebQ\\x0e\\x95\\xca#\\x90\\xc6\\x13(u\\x9c\\x1bs\\xb8\\x97>%\\xa0\\xc4*tU0,&\\xb8\\xa9\\x834\\x86A\\x02\\xea9\\x1d$\\nH\\xdd\\xd9R\\xe9\\r\\x14\\xf5\\x03:*\\xe2\\xb5إ\\x91P.|\\x90\\xeb\\xf0h\\xdb\\nݖuF\\x93)\\v\\x1e\\x1a\\xe8\\xfd\\xfc3\\x8c\\xf8\\x95]\\x84\\xcbEx\\xb0\\x90+\\xf8\\xbd\\x05\\x82HD\\xd4?g\\x05fm\\xc6\\x16@缪\\\\\\x17\\xc9\\xf9\\xa2\\x04yn\\xd6\\xe0\\xab\\x1c%8\\xec+\\xe4\\xde`Z\\xeed\\r\\x99Y\\xa1Eq\\x10+R1\\xd9\\xc90\\nVm\\x10D\\x1d\\x8cG\\xeb!Go\\x84Ю8\\x82\\x9e\\x01=\\xaf\\x87\\x80\\xef\\x1aM\\x06H-\\x88\\xf9\\xa4\\\"\\xbc\\x1f̤\\xd18C\\x02\\xc1u\\xd1\\xc1\\xfe\\x10\\xb9\\xfb\\u007f8\\x1a\\xa7{\\xa1\\xa5\\xa0H*\\xb48\\\\\\x8a\\xfaH\\x9c\\b\\xa4\\xd9\\xec\\xa9+\\xf11\\xa133x\\x9e\\xbc<\\xa8\\xcf8\\xaff\\x17U\\x1ch\\xc85h\\x02\\xc1\\xc0V\\x86\\x8b\\x17\\x9f\\x86\\xbe\\xa9\\x91\\x04ъ9Zo\\x1d\\x9a\\u007f}8\\x19.B\\xabC)X9\\x15 \\x12!ͨ\\xe8A\\x0f\\x89i\\x0e\\x1c\\xd0\\xe7:\\x91\\xf2o\\xe1iȗ\\x88M\\v\\n\\xf3_\\xfe\\t\\x88\\x1a\\xe3\\xc1\\x87(K\\xb6\\xf6\\xc1 b֗\\x84q\\xef\\xbdM\\x9d\\xd9\\x0ei\\xb5\\x88NV\\x12B\\u007f\\x8b\\n\\xc76t\\x97bl*\\xe2l\\x1b<\\x87w \\xd0I[\\x03E\\xc6\\xc7\\xe5.\\x06\\xf9\\x0fbS \\x9c\\xe5\\x93s\\xf3\\x88\\x17cY\\u05ffM!\\xb6\\x9f3|\\xfb\\xcd&\\xed\\xcdq\\xbe\\x90\\xc1r\\xb6x7\\xcb!Af\\x15VG\\xae\\xc1r\\xcc}\\xa7&\\xb8c*\\x90\\x8c\\b͜5\\x8fjm8ˈ\\xa4\\xa6\\xf0g\\xe1'\\x84i\\xe9\\x8e\\xc2_sV\\ue62cV\\xb1Mľ\\xe1\\xbf\\xc5\\x15F\\xe3\\aBԕ\\x18g\\tHI\\xd0\\x14\\f\\x9d\\v\\x90\\xd7,Ը\\x12\\xad \\xdac\\xcd@9\\xc5\\x15\\x14\\x8a\\x90\\x80\\xd1E\\xb9\\xb7u\\x82Ѳ(\\xc4\\x19G\\x17=\\xad\\xa0\\x0e@1\\xa3#Q\\x89\\xb9@\\x15LrJ?Dr\\xd0\\a\\xf1o\\x1bk\\x83!\\xe4p\\x92\\x97C\\xdblD\\x98+x\\x99\\xd6A2f\\xd4\\xec\\x98,z\\x1a/J\\x84\\u0089\\xd8\\xf2\\x88\\xe1 \\xee\\a\\xc1HR\\x81\\xc0\\t\\xed)\\xbc\\x17\\x82\\xfcH\\xb1&(uu\\x85\\x93\\xcb[\\\"\\xc2\\xc7d\\x04\\x05\\xa9\\xfc\\xb8>G\\xfe\\u007f\\xf4O\\xb5\\x9c\\x83\\xe9\\xb4\\b\\xfd\\rr\\xeb\\x037\\x81 g\\x1a\\b7\\x8b>L`(Y\\xccc\\x1c\\xa9\\xd5\\r\\x1b\\xd4\\\"\\xcen\\xa4B\\xc0\\x94\\xff\\x13D\\xfd}\\xe6e\\xd0H\\xaf\\xf8q\\x90\\x91\\x1b\\x9b\\xc4\\xe9\\xb6j\\xe8\\xd2\\xf9\\xcb*\\xa3\\xe2q\\x16\\xed\\x9bذZk\\xdf\\xde7\\x81[\\\\\\a\\xcdc\\x10Ǆ\\x0e\\xae\\n\\xecL\\x15\\x82\\xeb\\x1c\\xb6\\xd5\\xf6\\xb8\\xac\\x86\\x8a\\xb8\\xb1\\f\\xe3\\xc4RH\\xfa\\n!G\\x8eBk\\x1e\\xde\\xfa\\xb6\\xd6Ů\\xce\\x1ag~\\x8a\\xb0\\x83G\\x85\\xb8\\xfa\\xd0\\xd5\\x13բJ\\xe9%䥈\\xfbs\\xa4\\xe7\\xa2P\\x8a\\xa0㎭cvYn\\x18\\n2\\x9f\\xe8\\x14\\x86\\x8c\\x81\\xba\\x03\\x92\\xa6\\x92\\x1cwE`Lag\\xc1\\xb35\\xa4\\x19\\xb5A\\x013\\xa1\\x8700T\\xf0\\xb4\\x1ewN\\xe3ȷ0\\x00\\b\\xcew%\\xe36R\\xf1\\xf1YEȎ\\xf0)ʐ9\\x1f\\xf1s \\xacLՒ*\\x8d\\xb5\\x96\\xa7\\xb2\\x06eG\\x9bǃUN9\\x9dCBL\\xb8.\\x83\\xb1Ư\\x9a\\x06\\x12\\xe8j\\xecS_A\\xd4\\xd19\\xc6\\x10\\xe6\\x86@w\\xd4\\xc0Ԟ\\x19\\x8c\\xab\\xc1\\xf3\\x11\\x8d\\t\\x0f+\\xa9\\x968&\\xde\\x01\\xbf\\x06\\xcdP\\xe8M\\xe1\\xbe\\bKn\\xeb\\b6C\\xa6}d\\xb2\\xacE\\xf0\\xd9\\x06\\x14\\xa3\\xf9\\xae\\xd2\\xe9\\xb0E\\xf9\\xee\\x17\\xb4\\a\\xc1h\\xd0\\x11b\\x86\\b\\xc8&\\xa5MM#f\\x8f\\x92\\xc1\\xc6'1Y\\x9bU\\xc6\\x19Q\\xf1J ?\\xf9\\f\\xd3z\\x02t\\x97\\xaa\\xf8\\x82\\xa7\\xcb\\a`\\nK\\x82\\x9c\\x1a4\\xf5\\x85Y\\x88\\v\\x85\\xc2m\\xf4I\\xd2+t\\nY\\xe1\\xf6£\\x85\\x1f/\\xbc\\xa6\\xf0\\xde\\xc2_\\x16\\xbe]\\xf8'\\x92\\xc2sn\\x92\\xab\\xc9-\\xe4nr\\x8e\\xbc\\x91\\xbc\\x87|\\x94|\\x15l}\\x95\\x84(J{\\x93\\f\\x14\\x98\\x1d\\x92D`\\x1bN\\xd0>D\\u0085\\tZ\\xbc\\xe3H\\x8e3X\\x01\\xb3d\\x02\\xab\\xa0H\\xf3=\\xe3\\x15(\\r.\\x8d\\x14\\x12\\x18S\\x19\\xa3\\xf3\\tVC̙\\x98L\\x86`7\\xa2\\xe5)Ѿ\\xdf&\\x03\\xb9\\xb6C\\xc0\\xb2\\x94\\xf0\\x93\\xa2\\x0f\\x1e\\x93$\\x8dЉ<\\x1a\\xca\\xd9\\f\\x99\\x1eP\\x0e\\xf4\\xd6\\xc7\\xcaQ\\x82\\xf7\\x10\\xe98\\x1b\\xf4\\xb0\\x02\\xc8C\\x15%q\\x8e \\x8f\\x12\\x99\\xc4\\xfdI\\\"\\xc7=9\\x82\\xe2S1\\x88\\a\\xa2\\vksW\\xe5ٞ\\x80\\xfc\\x81\\xfb`4\\xddx\\xbd'\\xb7\\xa9\\xcaa6Y\\x9bĽ\\xae\\xecu\\xd1\\f\\x1e\\xad\\x8d\\xd1\\t\\x90\\x82b\\xa7T\\b\\xbe@\\xbbP\\x99\\x01\\xfcǪ\\xa9\\xe8\\xe9m\\xa4\\xc9\\xc0@>\\xb9\\xc1\\xb692u\\xadP8-\\x8d\\x91\\n\\x02ND\\xca\\f\\x89\\xdbu9[\\x0e\\xd6\\u007f\\xdc\\xeb\\x88$\\x8bS\\xf5=Bl\\x06\\x88\\x13W\\t~h<\\x1e\\x88x\\\"\\xd0\\x1f\\nR\\x05\\xb5\\x8axm\\x83nS(\\xb5\\x03rn q\\xf3m\\xefZx\\xe4Q6e\\xb5\\x19g\\xfd\\xe9\\xadcx\\xb8A\\x0e|G\\x054!\\x1b\\x1a\\xc2\\u007f-\\x81\\xack\\xe8\\xc4\\xd2)\\xe7:\\x03\\v\\x12f\\x901\\x03\\x9f\\x81\\x15\\x01\\x96o\\xa4iJ{\\xc4E\\x93)\\xb8\\xa1\\xa6\\xa65\\xd7rX\\xad\\xa6\\xe9\\x99\\xe5X\\x86\\x82-\\xc2\\xe0F\\x84\\xa1\\xae9\\x86\\xf6?\\xaa\\xed\\xfd\\xa5\\x9a\\xaeW\\xf5\\xd5\\xd5\\xdd\\x1fp0\\xb0\\x02Mgh\\x1f\\xe3*\\xac\\xe6\\x05b\\x1f-\\x18\\xb7\\xdcU\\u0084\\xe6t\\xb69\\\"Q\\xed\\x1a\\x83=\\x8d\\x11DL\\xa1)9\\x94\\v\\xc6\\x1c\\x8cW\\x18\\xb5\\xbc\\x02\\xb7_\\xc0\\x85\\x1fw\\xb0\\x15\\xdc\\x17w\\x01v\\xbfe\\x82)\\xa1i\\x86t\\xed\\xd4\\xd0-K\\xdf\\xe7\\xa6W\\xc0\\x90\\xc7hh]\\xea\\fC\\x81\\x04Sl\\xb0\\xa0S\\x82IN\\x1e\\xd8t\\xaf\\x97\\xf2\\xb8;\\x9cu?\\xed\\x97\\x1c!첟ԅ\\xacǡ\\xebu=\\xefj\\xb9 \\x97\\x961,j\\xe1\\xb8Nd\\xbb,1nE\\xe0V\\xbe\\xe5uam\\t5\\xa6D\\x93\\xc2\\xfe\\xfe\\xd7L&t\\x89\\xcaL\\xca&\\x9dg\\x8fz\\x01\\xe5EO\\x1a!\\xda/*\\x10\\x06LU\\xa1\\x18!u*\\xbf\\x82\\b\\x03h\\x1a\\x1fA\\x85\\n\\u05ccD\\r\\xc8']\\xb4`\\xee\\x17\\xcb\\xf8\\xa4`_\\xc3j!\\x14V\\\\\\x03-V\\x01KQ,\\xee-\\xf4\\xf8\\xe4\\xf8x0ݱq\\\\\\x0fĸ\\x8e\\x14<9\\xeeU/\\xf1A5Y\\xa7\\xfaI\\x9d^+\\xda-\\xed~\\xc9tC\\xe1\\x19\\xb9\\t\\x8b#F\\xeeX,\\xaf?\\xa7\\x92k\\x0ej\\xdb\\xd8-\\xc8SI%\\xea\\xda\\x1c\\xb7ƹ\\x96k\\x18\\n\\x8bΔdT\\x90T\\xe8s\\xa6@\\xb6E5\\x04@{\\x87\\x95\\xee\\x1cf\\x91\\xb6\\x85\\xaa\\xa1\\xd1\\xf2\\xea\\x86\\xe5\\xfa\\xa5\\x18[\\x9d\\xa9\\x8am\\x92\\x1c\\x15\\xa1\\xd0\\xe7~l\\x9c\\xd0c/\\u07b4\\x8aq\\\\\\xb4\\xe2z=>Y\\x83\\u007fFh\\x18\\xe1!\\xd9\\xeb\\xc9\\x1b\\x85\\xc1S\\xc5\\xdc+\\xc0\\xf4\\x04\\xf3\\r.\\xcd4\\xdeA'\\x8fĦ\\xb8θQ.\\x81\\xf2c\\\\k\\xf0L_x\\x88\\xf8\\xb6\\xa69\\xbe\\xa1\\a\\x1c;\\fo\\x86\\x1c\\x03\\xd0\\xeaP\\xd2%\\xfc\\xbaF\\xa1\\\\\\xe8\\xe6\\x1e\\xd8\\xf1\\x94\\xe9f4\\x98}\\x16\\xd3n\\x9e\\a\\xb7\\x8f萜\\xe0\\x00\\x89o\\x94\\x976\\x9d\\xa0+\\x1dt\\xcdGm[\\x04\\x01\\x99+V*\\xc5\\xdd\\xf7\\xe0\\xeb\\xf3\\xd3\\xd2\\xdaj9}`ǰlc{\\xd4j\\xbd\\xaf\\u05ee7Z=\\xbd\\xfe\\xf7\\x86~\\xc4П\\xfb\\xf3{g\\x92\\xe7\\x16+\\xbb\\xff|4h\\xfc\\xfb\\xfa\\xc3\\r\\xdbx\\x05\\xe8p\\xf5^\\xa3\\xf7\\xd8;\\x1e}\\xf4\\x1d!\\xcb9{>C\\v*n\\xbc]8Z\\xb8\\x06w\\x951\\xb1\\xf9\\x00]\\x9a0\\xe3UN\\xb2\\x9c\\xae\\x00\\xf4g\\x15y\\x83\\u07b4\\xf1d\\x85\\xa3\\xb1\\x89\\xe0;\\x8c\\xc1\\xd8\\xe3\\xf1\\xce\\xf2̈ɘ\\x19\\x14w\\x00H\\xe1\\x9b\\xdf\\xfc\\xe6$\\t7\\xb8(\\v/6+\\x94\\xda-G\\x9f/c\\xb8i\\xad|\\xb0q\\xf5\\x9f\\\\\\xd9\\x06\\xd5\\r\\xb4\\x05Y\\x8a\\r\\tB\\xbd\\x86@\\xec\\x14\\x06\\x87\\xd3vEϨ\\x8e\\xa2xk\\x81\\x14.\\xc0\\x8f\\xff\\xdd\\xef~\\x97|\\x00J\\x8c\\xa3+\\xa0@\\xe9Ef\\x85Q\\x9b\\x99\\xa2W1X/\\x8e\\xf4\\xc65/\\x87\\xf2tU^\\n\\xe5U42-\\x8f3\\x9bXڬQ\\x1d;\\xaeA^\\x89ő\\x02\\x94\\x97s\\xeb\\x18\\xf4\\xd5\\xe4|\\x81\\x17\\xbcB\\x1f\\xda\\xe0.\\xdc\\xf1J\\xe58'\\xd3D'\\xecx\\x16\\xe9\\xeeA\\x89WA%\\xa0g\\x0f\\x11\\x92\\xa0\\xf2\\xe8\\x91t\\x1a\\xf0)U^\\x9e\\x15\\x85\\x1e@sO\\xe5\\x8d\\xc7Pw\\xf5\\x8a\\x1f`\\x02 \\xc46\\xa6\\x92\\xfc,\\x8f\\xe7\\xdc?\\x8c\\x91\\xf0J\\x9a%-%7\\xdfG^\\xf0\\xab/\\xb0\\x8c\\x97p\\xcb'\\xdc\\xd4\\xe9\\xf57=}Zs\\xaf\\xbb\\xc2,j\\u007f\\xe74\\xe0\\x81\\xf4jD\\xac[\\xfa3<\\xb6\\\"\\xfe\\x18\\x8f\\xe9\\xda\\xd7\\x1f\\xe1\\xf1᭫yЎ\\xf9\\x8bx\\xc87\\x84GjƊ\\xb5\\xbd\\xaa\\x05\\x91\\x85\\x10\\xed\\x15\\xd1\\\\ߗ\\xed\\xb3\\x12\\xd3gM\\xd7Z\\xa2\\x04\\x14\\xb6\\xe2r\\u007ff\\x10J\\x87\\xc7\\x1e3\\x8c\\xaf\\xb2\\xd0rf\\xdai\\xc91\\x97\\xb4Ǵ\\xa5Ʋ(9V}Y\\xbcÏ\\x96\\xf8\\x8f\\x8b\\xa5F\\xa6\\x15=\\x97\\x17*\\xc8+F_E^Q\\x10\\x85Za\\xb6ps\\xe1\\xde\\xc2s\\v\\xef(|\\xb8\\xf0g0\\x1b\\x17\\xc8\\x16\\xb9\\x91\\xdcC^I\\xdeK~\\x9d|\\x81\\xfc5\\xbd\\x99\\xdeA\\xef\\xa3?F_K\\xdfBߝgY\\x90\\xa2\\xa7\\xe5\\xd9Qѕ\\xbc\\x97f\\xa1\\xb3\\xbe\\x96\\rwH\\x1e{\\xd3G/1\\xd8n\\x989Nefɡ\\xda\\xe8\\xabUTFSJ\\xbd.\\xc2\\xf1\\xb69C᪶;1w\\x17\\xb4n\\xba\\x8dF\\xf0\\n\\\"\\xbeF8\\x16\\xa1D\\x8c\\xd5J'\\xd0/`\\x1c\\x83\\xfe\\xd0` \\xf2F\\xe8$\\a\\x03n\\x94!/\\xc1\\x0075\\x13\\x19\\xafMr(\\xf8\\xa4#\\xe3~\\x93`\\xdc\\xf0p\\x95\\x8c:\\x98X\\xb8\\x01\\x96\\xa4J*:\\\\A\\xa0\\xd9\\x04\\x13\\xbb`\\xc7waT\\xa0'~\\x9c\\x0e\\xc7\\xeb]\\xbc!\\x1c\\x0e\\xe0\\xaep\\x98\\xe0e)\\xdct0\\x19#\\xf8|\\xa0\\xe8P\\xc0\\x94C\\xbbp\\x057\\x1eRl\\x14\\x05SD\\xa38\\xdd$\\xeb#\\x958v2Z\\x03\\xa5\\x06\\x1d\\aI,\\xd5\\x06\\xc5Dٙ\\x93\\x15\\x10f\\x93^7O\\x03\\xddS\\xa9\\xfd\\xe0\\x86\\xeb\\x9d^V'\\xd0\\xfb\\xfd4Y\\x1f\\xe1e \\xdecx\\bL/\\xaf\\x8c\\xd2u,\\xa2\\x87\\xfb\\xed\\xf0\\b2\\xf1\\b\\x88\\xf7\\xc9h\\x85\\xe4\\xd1\\xc1\\x9d\\xde\\x04L\\xd0\\x06ɹE\\xfaxj\\x86\\xba\\x8aG\\x95\\x93=\\xd9\\xc1\\fR\\xb9\\xd1/\\xb2\\xe1(\\x93p\\x98'\\x98L\\xd1\\r0\\x19\\x80J\\xd2\\xc3|dj\\xef\\\"]\\x03{\\x1d\\x11\\xc0\\xb8\\xa9\\x80;62\\xc5\\xef\\xa4:\\xea)\\x9e%\\x9c\\x0e\\xa0\\x03\\xad)\\x88\\rv\\x1bn\\x12fr\\r\\xbd\\f0\\x9f20{W)\\xcc@\\x98.B\\\"\\xdbg\\x86\\x1b\\x12\\r6\\x9b\\x8e\\aX\\xea6\\xb2d7\\x18&\\xad\\x1c\\xe5\\xfa\\x90\\xeah\\r\\xd5\\x1e\\xb5Z\\xc9$O\\xab\\x98\\x8ePk\\xec\\xf4\\xfe\\x0f\\xcb2M+!w\\xf0+\\x16\\xef\\xbd\\x19\\x15\\xe0[\\x9f\\xb3\\xb2\\x81N\\xd8\\u007f\\x87\\xdbi\\xd4\\xd0\\a/\\xf8\\xb0\\xc5P\\xe0c\\xa2A\\xdfv\\xc1\\xb0Ը\\xb4k\\xc9\\xf1+\\xaez\\xf9\\x12\\xa9=:&z\\xf9\\xf0\\xf1\\x17,\\x04\\xb6S\\x04;A\\xf8\\x16\\xe5nٶ\\f\\x05\\xe8\\xc2@Q\\xa5\\xa7\\x83\\x81#\\xf2P\\x9b\\xc0@\\xf6\\x01\\x10\\\"\\xfbp\\x8b\\x1d\\xe1\\xbd)\\x8a6\\x0e\\x16\\xd4d\\x1a\\x03A\\x15\\x1f\\xbd\\x89\\xa4\\xd1:U\\xb1\\xbf\\xca\\x12\\xa4`~\\xa3M\\xd1S\\xf6\\x16FT\\xa1j\\x0ek\\xa6\\x83\\xc2ٵT\\xfc\\x12\\xc8Ci!v/\\x0f\\f\\xc6[\\xba\\xb1\\xa31\\xd7\\x01\\vUJ\\x03\\r\\x14ak\\x8b\\x16h\\x01\\x11T\\xb8\\b\\xaa\\x97\\x85$\\xb6$,\\x82}\\xa5\\x196z\\x8c\\x99G\\\\\\xc7\\x02{G\\b\\x17\\xd4 X\\xd1Q\\x13\\x13\\xba\\xcaϥ\\x02a1l\\x19\\x04\\xba\\x8b\\xfa\\x9c\\x8b.q\\xf4\\xd21郑\\xa1\\xd3R\\x8cA'\\x94\\xe7f6Z\\xc3*<\\x06\\x14\\x91\\x84`J,\\x94\\x8e\\xa8yi\\xac\\xae#//:?U\\x92-\\xa4ӷ\\xb8#A\\xb5\\x00s\\xd8;v\\xed\\xec\\xe1\\x83q\\a\\xa3\\xba8\\x18\\x92>\\xac^\\xa1\\x95\\xee\\xd7\\x02\\xca\\xea\\x8d\\xc0\\xb5\\xef\\x86V\\x03\\xe5l.\\xb4\\x83\\x8a\\xc9t^mBI\\xa0\\xdap\\xbb=S\\xb3k3\\xdaB\\x83uh\\n\\xfd\\xc0\\x8a1\\x81\\x1a\\x85&\\xddr\\xd2*j;Ic\\x96\\x97o\\xbf\\xf1\\xf0\\xa1\\xe5k\\x16\\xd3\\xddG0C雭\\x84\\x05V\\xf5\\xe0\\xf3\\x8f\\x0fRB\\x96N<vh\\xb3OtwB<.U*9S\\x98\\a\\xa0\\xeb\\xc0.\\xe4-L\\xa8\\xc1\\xce\\x1a\\xbe\\xa7\\x1b\\xcd+]Y\\x9ec\\xe2\\x94eң\\x96\\xb6T\\xb7\\xf5\\x8f\\xebҪ2I>\\xf4\\xd8i\\xca,D\\x90Kӯ\\x99Ďʾn\\xc6\\xf3\\x86\\xf4\\xd2Z\\x14֚\\xebG\\xaf8\\xf3\\x90K\\x8dr\\xbf\\xd7\\xd8\\xfd\\x86燎\\x88\\xa4doյj]\\x1c}C\\xee\\xdc\\xd0\\xd1:\\xc3\\x1c\\x92\\x06\\xc9\\x03\\xf1`x\\x80\\r\\x06\\xcfjc\\x90r\\vz\\xdfS\\xb1E&\\xaa\\x1d\\xb4AI\\x02m\\x1d\\xab\\xb0!n\\xa8^@M\\x18\\x9a\\x90\\xe5\\xf1kBq\\\"\\x19\\xa0y\\xe9\\xb9w\\x13\\x15]u/\\xc1\\x19\\x9b\\x86\\xa530hA\\xf5^V\\xba\\x1dƒ\\xbb\\x92D\\xd4`\\x86N|\\xe6\\x1a`\\xa6\\xa2\\xa3E\\x04\\x86\\x05\\xba\\x18\\fpi`O\\n]\\xd8&?E\\xd8Dj\\xa8\\\\zu),\\xec_\\xab(\\u007f\\x8cy¢\\x9a\\xa7\\xe9\\x12l\\xde\\n\\xde\\xc64\\xf3\\xd0t\\xae:\\x8e\\x90[\\xbdY\\x15\\x85\\a\\xf7\\xb4\\x1bR\\xf7%\\x98<\\x9a\\xa8\\x98\\xe4\\x0e\\xc5^\\xccp\\x1ai*\\xc1\\t(\\x88\\xd8\\x04>j\\x94TX\\n)\\xa3\\xebt\\x01\\xda\\x00\\xec\\x03\\xcb0\\f\\xd0\\xf7\\xe1Y\\\\\\x1cm\\x1eHF\\x8c\\r\\x84Z\\xae\\x1e\\xaa\\x92٭\\x831\\x8c\\xd3\\xfa\\x16(\\xed0\\xf7\\xecE\\x18þ3c,hux\\xe6\\x92\\xd34\\xf7\\xdbŪ#\\xa4\\fK\\xb8\\xd9A\\xccF\\xbb\\xacߵ\\xe8\\xdcrĸRۏ\\x03\\x15!%\\x82O4}vQ\\xf0*\\x8d\\xc9)\\xc3\\x0fc##\\xa4\\xb9ڽ\\x0fj0\\xd7\\vl\\x8b\\xbe\\xbc\\xd9\\xdf\\xda_\\xf5\\x999w\\xea\\xc0\\x9c\\v\\xfd\\xe8~\\xc4\\xf7\\x99g\\x96\\bLwۡ\\xd4qJ\\xd0\\xe8V\\x8e\\xe3IA\\xef\\x9aW\\xb8K\\a\\xac]\\x8bdU2\\x19hU҅\\xa1\\xf4G_\\xf9r\\xeb;_\\x99\\xb4v\\x8f\\xfc\\xe4w\\xda_z\\\"#\\xf7\\xee~\\x90\\x90\\x9f\\xda}\\xff\\xdd\\x0f\\x13\\xba\\xfb<r\\xe7\\x1f \\xa6\\xa5R\\xa0\\x17>M\\x0f\\x92/\\xaa,g\\xfd\\xc2\\xc9\\xc2\\x03\\x85G\\n\\xaf.\\xbc\\xae\\xf0o\\n\\x1f/|\\xb6\\xf0\\a\\x85\\xbf(\\xfc\\xb7\\xc2\\x0f0\\xd5\\v\\xb9\\x1el\\xebW\\x92\\xbf$߇\\x81\\xe2\\xd05\\xba\\x81\\xd8A\\x95=\\x12C~&{G2\\xb7\\x81\\xc1\\x10D\\x8a-\\x04\\xc7\\xe4\\xc9\\xc9T\\xd0\\xefx \\xfby^\\x034\\x14\\a\\xf9q\\xbc\\xf77C\\x8cF\\a\\xe4\\xe9%i\\x110\\xa9\\x01Ҳ\\xc7ȍ;\\xfdZF\\x8b\\xb4\\xb3\\x93gM\\x80\\xa5<?\\xb9\\xfb\\xcc\\x05\\x8b$}\\xe6.\\xf8\\x11\\xbd\\xec.\\xcf|7H\\xf7ұ\\xfd\\vwΩ\\xdf\\xe3\\xc9^E/\\xb9N\\x95(\\ay\\x00\\xcf`\\x87` \\x00J\\f\\xe4f\\x06\\xad\\x01]\\x06(zS\\x97\\xa1\\xb8\\x9a\\xac0\\xd4\\xf6\\x14\\xd2SEE\\xe3\\x87Hͅ\\xd4f\\xe8V\\x98\\xc54\\xa0|=\\x8f!\\a\\x03_E&t;d\\xac\\x92\\xf9b(\\n\\x02\\x16\\x14E0J\\xe0\\x95\\\\Mο\\xe9)\\xe5\\x06)\\xee\\xf24N\\xf9\\xe9Ri<]\\xdc\\xd0A\\xc5\\x1b\\xe4$\\xa6\\xacS\\x99\\xcf\\xfb\\x93\\xe4b\\xce\\xf3~~\\xbf\\t^3\\x029\\x9f\\r.o;\\x82d\\xa2\\xc3\\xc1\\xc5'U\\xd41x\\xb4C\\xf3\\x86\\xedl\\xd1\\xe1~8&\\xeb\\xd0-\\xf1\\xb4\\ah<\\x1d\\rp\\xc5?R\\xb0\\xa6\\x19LR\\xb1\\xa1R#\\xeapt/#\\x01\\xfc\\x03sͶ)=\\xc9y\\x02\\xab=\\xe7\\xaeŹU\\xd3q\\xa9\\xd0\\x15\\xad\\x81\\x1b\\xd8\\x02\\xac\\xfcS\\x88x\\xe6\\xd4V\\x19\\x8a\\x88\\x05\\v\\xacmh7\\\"\\xcf\\x18\\xe7e\\xce\\xe5\\xf7(M\\xd5\\xff\\x10\\x04\\x95\\u007f\\xb5\\xe7\\x11ϳ\\xe2xE\\xa5\\x8e\\xb1,\\x14u\\xae\\xe7\\x83\\xfc\\xbe\\a>W\\xae\\xc0\\x92\\t\\xff~\\x1f+%\\x18T\\xef\\xdb\\xcb\\xcbrk_\\xb9\\xec\\xb5:\\xf7\\xf5\\x97\\xe7\\\\+\\xa4ZZ^H\\x85\\x16v\\xeb\\x95\\xd8(9\\x9e[[o\\x1e\\x9c\\x94J~\\xabs\\xef`q\\xc11C&\\x93\\xf2|\\xaais\\xc7\\a\\x96[\\xdc\\xfd\\x15\\xf4\\x05\\xe3*\\xba\\xb0\\x98V5-\\x89\\xaa\\xd5(Z\\xb9\\xa5^\\\"\\xbd8\\x99]Kk\\x9a\\x96\\x86\\x15\\xf8l\\xf9\\x96F\\x1aߐ\\xc0rk\\xcf4\\x82\\xa2&\\x05H,]\\xb4\\xe6\\x8a\\x01<\\x8f\\xaeyf\\xb9\\xdcj\\x16\\x03\\x01\\v\\xa9W\\x9ck\\xe1B\\xae\\x99R\\x1bn\\xf0+60\\x96\\x19=\\x19bf&\\xf01GM\\x10\\x95\\xcb\\xcdf\\xd1\\a\\xa1ü`fF\\x18\\xb0&K\\xf9\\b\\xfa,<\\xf4\\x05S\\x1b\\x1fS\\xc3^\\xa8]<\\xd2Us%(\\x1dB\\xb5S\\xeb\\xdbl\\xef\\xcb\\xefH.%6\\xed\\xf4\\uf61b\\xae;纶)Č\\x10\\xcaN.\\xa2$\\xd8D\\xaf8\\xc3\\x04\\xc9QX\\xe2,\\x05\\x93k?wm\\xc32D\\\\\\xdd\\x0f\\xe6\\x92\\xcd\\xf8~\\xb6P\\xef36Ή\\x94F\\xb8j\\x1fP\\x9e\\x01X\\xd0iu\\a˝s\\x873\\xb6=c\\x95\\xab\\x94T\\xab\\xf8=f϶\\xa4Uo\\xbb\\xa6\\xab>Hu\\xab1\\x98V\\xe9U\\xc1\\xdaڪ\\u007f\\xfbb\\xed\\xd8\\x11n\\xec\\x1c\\xb0P\\xbcU\\x13M+V\\\\\\x8di\\xee\\xc9mf%3Q\\xa3\\xef\\xc1)G\\x8frc\\xfb *)xF֨]\\xbf\\x9f?\\t\\xa6p\\x18`zL\\x8bw\\x1a\\x9aV\\xaeQ\\xb2}`w\\x9c\\xdd`jϼ\\u007f\\u007f)\\xe3\\\"\\r\\xab\\x96\\xe4a\\x84\\xe1\\xa9I\\x02*C\\x1d\\x19\\x0f\\xcdԣ\\xac\\xd2\\xc4\\xdd\\xcaZ\\x95\\x1b1\\xb4\\xa2\\x16\\x84\\xde\\xe2\\xf2\\xb2\\x1fE\\x84$\\xb1\\xce+u\\x90\\x8e\\x8d*\\x9cV\\x87.\\xaa\\x97\\xe1\\xac\\x18\\xe3\\xe2\\x8bw\\x93\\xa1\\xeb\\x0e\\t\\xe9[V\\x9f\\xdc8}\\\"\\x97\\xe4\\aD\\x94T\\xd3\\xec(eL5\\xd0\\xfdӎ@\\x9c\\u007f\\x19lʿ\\\"O\\xc2ʯa\\x86J2\\b\\b\\v\\xc0\\xc6Ⱥd\\xf3#\\xbb\\xdf\\xf8ȷ\\xcf]ݸ.O~\\x8c\\xbfo\\xfd\\xbb\\x139\\x8f3\\xbd\\xf0\\xe7\\xa0\\xf8}\\x10l.\\x0f\\xb3\\xd3O\\xdai\\x1b\\x16\\xa9Y\\x04*\\xe2j$\\xbb\\xa0J\\xee߿\\xfb-\\xa7*\\xc8\\xef\\a\\xe1\\xfc\\xee\\x85[\\xe0p\\xeb\\xaf\\x1e?\\xfa``\\x9d\\xad\\xb6\\x8e\\x92\\xcf\\xf8\\xd6\\xff\\xfc\\\"b:/\\xfc3\\xc8\\vF~\\xa7`c֟\\t\\xda^\\xb8K\\xa5\\x12ʎ\\xfbi\\x88\\x18\\xe9N\\xb6\\xa2m\\x93\\xf7\\xf4\\x1bun\\xfc\\x92n\\xf0Wp\\xef>\\xe1\\xf3\\uf08d\\xfe\\x8b\\x86fdq\\xd36\\x8c\\xf2\\x9f\\x8c\\u007fz\\xbf\\xee\\xea\\xff\\xa8\\x93o\\xe8\\xfan\\x03\\x0e\\x8bW/\\x1c\\x1b\\x1c\\xdd<\\xae\\xb0\\x96{\\xd8\\xd1\\x1d\\x90l.i\\xe2V`\\x9cv\\xc1`\\xf0\\xd0͈\\x04J\\xe3U\\xe4\\xb3D\\xe2\\xb7\\xe4\\x92\\xc3\\x1dd\\x1e\\xb9x(E\\x134\\xc7'aȚw\\x9b\\xa1h\\x88\\xf0!M\\x83nx(\\xb0\\xb4ẍ́\\xa96\\x04\\xad\\x88V\\x1b\\xa6%\\x16{\\x9a\\xb0\\xe6\\xaa0[&\\x0e\\xd5\\xf4\\x8d\\\"Ӭ\\xe0\\xc1{4\\xeet#X>^\\xf4\\xa0\\xe9\\\"<\\xd0\\xe1ڝRs\\x0e\\x9b\\x8c\\x9a\\xadM\\xaaI\\xfd\\xd50\\x83\\xedS\\xc7t[\\xa6\\xe71:j\\xbb\\xaa\\x99\\xd4ٔ\\x8e&1\\xf9\\x8f\\u007f\\t\\xafe\\xceFX-tU\\xbc\\x13\\xf2\\x95\\x1f\\x9ezLn.ܭ\\xbc&#\\xb0\\x84\\x10\\xf9ԍe6\\xf2H\\x17\\x8e\\xe3\\x01Ft\\xc0W\\xddl2\\x18͎`]\\x8d\\xbb\\xd9l\\x9c\\x81\\xe12\\xc9\\x18B\\x96G\\x93&\\x89\\xbb\\xf0w\\x90Nb\\xb4\\x99\\xba#\\x89od6\\xc0P\\x8f,E_\\xd0 &\\x9d\\xe6\\xb5O\\xb4\\x96\\xbb\\x93}˖U\\xb4\\x9eܷ\\xef\\xc9ۮm\\x1d\\xda\\xf7\\xa4i>\\xb9\\xfb\\x9b\\xa7Z\\xb7\\xfb\\xb7\\x91Z\\xeb6\\xef\\xb6\\xe6\\xfd˭\\x13on_\\xfbՓMx\\xd7j]\\xbb\\xda\\\\~W\\xfb\\x91\\x87\\xf7M\\x96,륭S\\xed\\xdb|rW\\xf3Ĺf\\xf3\\xdc\\x13\\xfb\\xd4\\xe5?g.C\\xa9\\xe6\\x89\\xd6r<Y6\\xad\\xe5\\xd2\\xc9\\xe6\\xed\\xde\\xed+'[\\xf0\\xda\\xdc\\xfd\\\\\\xebڣP\\xe2\\xfd\\u05f5n\\xf3o\\xbf\\x1d\\x8e\\x1en\\x9d[m-\\xbf{2yҲ\\x9e\\\\h]\\a\\xb7V\\xfc\\xae\\x17~p\\xe1w\\xa9 \\xbf\\r-t\\x04\\xed\\xfdɶ\\x96\\xe3\\v<\\x92\\xa75\\\\\\xe1\\x88p_%=\\xa2r\\xf0\\xe4\\x94\\x1c*1\\xaa\\x92\\xb8t\\xb26\\x197I\\x02*\\x97\\x1b\\xcc\\xcdl\\xeeܼ6\\x19\\xc0<\\xed3G8i\\xd6\\x19\\x86m\\xb7\\x148\\xba\\xfb\\xb0\\x8bA\\xf4NQ\\x9d\\xb3\\xbe~\\x05h\\x85\\x03<\\xa74\\x98߈;q@\\f\\xe7aw\\x86\\xebIe\\xa5\\\\\\\"Q\\xa9Rb\\xb6x\\x14\\x15^a\\x85~ĉ\\x19UcW?\\xa4\\x93#\\xf9I\\xe5(-U\\xa0\\x84G\\xe1n\\xc2.EE\\x1e4\\xeb\\xc41\\x0e\\xeayLr\\xe1\\x9d\\xf4\\xc9\\xc2ߪ1\\x90g\\xcdZ,\\xac\\x16\\x86\\x85}\\x8a\\xe3\\xfaX\\x1e\\x891\\x90\\xb3\\xe8\\x84\\x1f\\xc0$\\xc2]mLw\\a\\xef4\\xec\\xe7\\xb1\\xfa\\b\\xa6,\\x1a\\xa7T\\xc2 \\x18\\x8c\\xd7\\xe1\\x05G\\v\\\"f\\xd5_\\xbcV\\x0e@\\xf0\\x82\\x122\\xf9\\xdbd\\u007f\\xb2\\xfb\\xa77\\xf1ӿpeҽ\\u007f~\\x00ˋ\\xc9ɑ\\xed\\xb9\\xed\\xdd\\x13\\xfc\\xf6\\xafh\\xf2\\x85\\xf1\\x8bc_\\xba\\xcb\\x06h\\xc7\\xfc\\x0fOj?\\x80\\v~F\\xbb\\xed\\xf8\\xff[ח\\x00\\xcbuVg\\xdes\\xb7\\xff\\xee\\xfb\\xd2\\xeb\\xed\\xe5\\xf6\\xf2\\xfa-ݯwIOz\\x92lɖlK\\x96d\\xe3M\\x06ـm0\\xd8\\x01\\xe2\\xd8\\x06\\x1bb\\xbc\\xdb\\x03\\x04\\x1b\\x18\\x033\\x99\\x90@`\\x12L*5\\xa4\\xc0P\\xc5D\\x04\\xc8\\xc0$\\xa6(B\\x18O*\\fL\\x86*\\xa8L\\xd5L\\x80@\\bC\\x9e朿\\xfb\\xd9$\\xc3H\\xdd\\xfd\\xbaow\\xdf\\xdb\\xf7\\xbf\\xff\\xff\\x9f\\xef\\x9c\\xff\\x9c\\xef;~B\\x97\\xcf\\xfcl_\\xf7\\xdd+\\xfb\\x92ҞG\\x92W\\xf86{O\\x96\\x05j\\x90\\xcd\\x15p\\x146ݯ\\xaae\\xb5\\\\4\\x02\\x05}ع\\xaaf\\x19މi\\xe9\\xe4t\\x9ae\\x99\\xb3\\xd48)\\\\\\xf86|\\x1f~\\x9b\\xf4\\u007f\\xe7Mu\\xd8\\xecL7g\\\\\\xf4\\x9c \\xcfp\\x84\\xaf\\x86\\xb3\\x11\\xa9un\\xc30\\x83M\\x95m&\\xf1&i\\xf8\\xfd\\x1c\\xae\\x83k\\xae=|\\xa9\\bu8FtT\\xb7qO\\xf2\\xe8Q\\xa8\\xbd\\x03\\xae\\xba\\x06\\xae\\u007f\\xf9=\\xfb\\xe1m\\bk\\x00n\\x81BA|\\x1f\\xc0ɓ\\x85\\x14n݄\\xb7\\xc0\\xc1\\xb7.\\xf4\\xb6h\\xbd\\xa8\\xce[\\xf8 \\x8e\\xb03\\x14\\x91k\\xa7\\xa4\\xfd:\\xcd\\x17\\x02\\x1a\\x14(u(Ob\\xce\\x05\\xd4yF+\\xe9ds\\x1e\\xb5\\xf1b\\x03\\x8e\\x1ae\\xdc\\a\\xe2L\\xa4՛e\\\\\\x95+\\x9b\\x8dc\\x12\\xaf\\xa8\\xc1\\xb8\\xbb\\x88\\xb2\\xb2\\xb1x\\xd9\\xecP\\x9a|\\x03\\xac\\xa4\\xd0\\x14\\xaf\\xc9\\xcdU\\xfb\\xd0T\\x1c\\x0e\\xef\\xd8?\\xb7\\xc6#]\\xcd\\xe2Ćg\\xf6ܓ$\\xdb;\\xd6@\\xee<ܰ\\x11\\x948_ڳg\\xbe\\xe7\\xdcp\\xcfh\\xb4\\xe7\\xc9\\xf2J\\u007f\\xa3S*\\xad\\xf4\\xfb\\x9d\\x8f\\x1c(\\x16\\xad\\xb0\\x99\\x06\\x96\\xd7\\xf0ڹ\\xa1\\x9dx\\xaeW*\\xc4\\x1e:\\x82E\\xf7\\x8a\\xa1W(\\xac\\x85p\\xb4^\\xab\\x8d\\xb3\\xf5J\\xb3\\xf6\\xb1\\x95\\xfe\\u07bd\\xeb\\xcdl2\\xaaV\\xc7cj\\xff\\xe4\\xc2\\x05l\\xff\\xcfc\\xfb\\x9b8\\xeb\\x17\\x84\\xaa\\xd0\\x12V\\x85Ma\\x86=\\xee\\\"\\xe18\\xf6\\xb8\\x97\\tO\\b\\xef\\x12\\xdeǫ\\xb1?&|B\\xf8\\xa4\\xf0\\x19^\\x0f@e\\x13\\\\\\x87L\\x99\\f \\x8eX7!NA\\x8aG\\x12\\x1aM;8\\xeb,C,\\xbf\\xec\\xb13e\\x11I\\x12\\xcf)\\xa7\\x14'j\\xbeyΥ \\x9a\\v\\xdd2^\\xfbե\\xd7*1֫\\x94^\\xc1\\xe3ۤ\\x10M\\xf5Y\\tO\\xce&jO\\n\\x13S\\xfc\\xe7\\x97\\x1f-\\xa2\\x8cPb7\\x9cMq\\xcbß}\\b\\x1ez\\xf9\\xef\\xa75\\x80'\\xa59\\xe2\\r\\x98\\xb3\\xe6\\xf74M\\xa3\\xbcf\\x84\\x16\\x99\\xaa\\xe4\\x8cMU\\xb9\\xa9\\xa8CEjIr_\\x92\\xba \\xf5Eq\\xa2\\x0e\\xa5\\xb9\\xb4Gm\\x06\\x12l\\x1d\\x92\\xd5c\\xe2?\\xb9\\xb6\\xed6\\xb5\\xb5\\x94!\\x16\\xd1\\r\\x03ֶW=\\xdb\\xf6\\x1a\\x92\\xdaH\\x15MBD\\xa4\\xf6\\xaf\\xbcH\\xd7t\\xc9\\xd3\\xd42\\xd5f!8R\\xf4\\x99\\xa2䊲\\xa9Ђf_\\x96V\\xa4ьA\\x0f\\xa1\\x0f\\xee\\x15>\\xf4\\xf0g\\x1e\\xaa'\\x1f\\xbf\\xb1d\\x9a{\\x80i\\rY\\x9d\\x85\\xed\\xa7\\x88\\xc4\\x031UY%.\\v\\xfc\\x9eX\\x91q\\x1fr\\xaa\\xca-.u\\xb0\\xa2\\xb1H\\xd5f\\xb6\\x03\\x96\\xb1\\a\\x10'\\x86mMVn<\\xa4H\\xc7\\xf5\\xf5BQ\\x1fTk\\x88\\xda,Mw@<\\xb0\\xbe\\xa7PT\\xa5A\\xda\\x10\\xc11\\f\\xc7\\xd8\\x1e\\xef\\x01\\x91d\\xbd\\xa5ʋ\\xfb\\xaf*r\\xaeH\\b\\\\w\\xf7\\xaf)S\\xcbY\\xd5,];\\xac\\xca\\v\\x9e\\xed\\b\\xed\\xef\\xeb\\xd0\\xfeV\\xb0\\xd7\\b\\x90\\xfb\\xcbz\\xe9\\xc5\\x03\\xaf\\xa6ۂEm_s\\xb7\\xd00~\\xd9\\xe8\\xd2\\xd1(\\xcf\\xf1\\x8e\\x0e\\xe1(\\xffx>J\\xbb\\xfb.\\x19\\x8d.\\x19A|A\\xc0\\xed\\x97\\xd2\\xf3t%\\xa5\\x8f\\x14\\xf0#\\xf4\\x1e\\xaf\\xd3\\xda\\xd5\\x13L\\xb9\\x9a\\xd8@8\\x8c\\xfd\\xf3\\x97\\xe8\\x16rW\\xa4\\xc9\\xfe?\\u007f\\x15\\x8a\\x9c7\\x19/Ds8,\\x98/\\xdd;x<m4ҝ?\\xa4\\xc7\\xeff\\xd9\\xe5\\xfcvY\\x96\\xc1Ų(3C\\xde\\xfc\\xd4H6\\x18>\\xdf\\xf7\\xfc~\\xdc\\xfa\\xa1\\xdd\\xcf©\\xb4q\\xe6ˎ\\xf3eW{\\xc1u_p\\x13\\xfe|\\xe3Q\\xd7}\\xd4\\xfd\\x11~C\\x95{=Y\\xa5\\x1d\\xc0;\\xf9\\xc6]\\u074c\\xdd\\xf3)\\xa1G\\xfd\\xff\\x9eǤ\\xb3+\\n\\x90\\x8e\\xb0+S\\xb8w>\\xeb#\\xf0ƉdL\\xb3>MIl\\xccS\\x94\\xe68\\xc5/t\\xb9\\x1c)\\x13\\xe1\\x19\\xbfP\\xf0w\\x9e\\xa6\\xc7\\xc7\\xcae\\xc4\\xec\\xa6\\xf5\\x9b\\x1d70-\\x1d\\x1c\\xc6JY\\xd3ҏ\\x18\\xf5\\xc8.\\x05\\x8d\\x13z=\\x85f\\xdf\\xd56Jz1&j\\x1dMR$\\x16\\xc0\\x87v\\xf7\\x00w\\xfa\\x857\\xf9\\xb6훞\\xe4|k\\xc22\\xb0\\xd4i\\xb1\\x13 \\xdaXi]\\x99ɒ\\xa3=\\xd8z\\xb9\\x99&^\\xb1~[K\\x96\\\"ÒJN\\xd1\\xf54a\\xa9\\x83x\\x1e\\xfe\\x8e\\xd7\\xf7ĔY\\x1f\\xb9pP\\xa4$w\\x8a\\xf7\\\"2\\x9cw\\x19\\xfc\\xad\\xaa\\x1eG,\\xfbl囪z\\xe2w;\\xbf\\xff\\xb5+\\xae\\xb8⫪\\xa7^\\x86\\xf8\\xf6\\xd9\\xea_\\xe23\\xdaz?n%l)\\x18\\xe2\\x83𫈉\\xce\\xd0\\xfe(\\xbb\\x90\\x87\\xd2)@O\\xa4lq\\xa2v\\xd5\\xce|\\xbax\\x9d\\xd0K\\\"w \\x1d2\\xca\\xf4Τ1e\\x19R\\x1e\\x15Ugs\\xf9l\\x9ac\\xb88\\x81\\xf8FOt\\x9c\\xbcV\\x00\\x91\\xa5õ\\x8d\\xa1\\a\\xd1J\\xb7\\xbb\\x12\\aõ\\xf5a\\b^\\xafU\\xa9Hf\\xb1R\\xf3\\x8c`:-\\xf6\\xa2\\xaa\\xeb$!B\\x81\\xe940є\\xef|\\xb7\\xdal\\x97\\xa0Զ\\xb3\\xe8\\xbe`\\xcbr4\\xa3\\x12\\xf9\\xdef\\x12z\\xc1:\\x0e\\xff\\xdaa\\xf4S\\xea\\xb0\\x11\\xfaA<\\x10\\xa1\\xb9\\xa5H\\xeb\\x1b\\x94\\xe20\\xdaܸ\\x06\\x8a\\xb5\\xa2G-~\\xcd\\xc6\\xe6\\b\\xfd\\x95\\x95\\xb4\\xd4n\\x97\\x9c\\n\\xe558\\x17v\\xb0\\x1d?\\x00\\u007f\\\"\\xbc^\\xb8K\\xb8_\\xf8S\\xe1\\xebPD÷\\n3\\x845\\x97õ\\xf0*\\xb8\\x03ۃ\\xb8,ԥ\\xce-\\x81\\xec%\\xe5\\f\\xb6\\xc0A\\x98p\\x05!Zf[\\xfe\\x9f\\xa5D\\xc3F\\x8f#\\\"\\x8dC\\x94?K\\xf9z\\x1c\\xa5\\xb4\\xa7T\\xd49\\\"SG\\x1f\\x19\\xa53\\nu/\\xfe\\xd3!2\\x88\\xbb\\xb3EX_\\xa5!\\x85cI\\xa2\\xf1D1\\x85L\\x9aSĂG\\v\\x9a\\xddE\\xd4@\\xe5\\xf7\\xc9\\xe2I3oN\\xe7\\x1d֡\\xcc\\xf8\\tq\\xab\\xf1gt\\x9f\\xaa\\x94\\\"A=\\x9f\\xa4(g\\x8b\\x92\\x03\\x96\\xf0\\x9d\\x91ѥxF\\xa7Kҁ\\xc9\\xf2\\xbe\\x99\\x10\\xaf\\x06>ci\\x92\\x93\\xbe\\x1c/RH\\x16w\\no\\xd0ƴC\\x8at3\\xc6k\\xef\\x19\\xff\\x9d\\xbc\\x80M%\\xba\\xbcN\\xb28\\x01<bw\\xb28z\\x06s^yL\\v\\xa5\\xa3Yʗ@\\xf8\\xea\\x0f\\xe7y]\\xf4,\\xb8ˍ\\xa5\\x10\\xe1R\\xdb)\\x17+-hU\\x8a\\x15\\xbb-\\x1b\\x10J\\xb1+;\\x81\\xe3\\x8a\\xf8\\x1fLɐ\\x11\\xef\\xeb\\x96\\x1aʖ\\xe6Rn\\xb4\\n诉\\xa6\\xa9&\\x86\\x9e0\\xd0-]b\\xa0ɪ\\xech\\xa6\\x12R\\xee\\x01N\\u0086d\\x02\\xdfCR\\xc0\\xb1\\xd6N\\xad\\xb5\\xc1\\xbe\\xb6Z\\xed\\xb7\\xd4\\n\\xda\\x15\\xd1\\xeb\\x1d8R\\x92\\xfcģi;B\\u007f%\\xc2\\xefG\\xb2\\x0e\\xa6\\xa6\\xe1Q5\\xc9\\x12u\\xec\\xc5\\\"sU\\xddG\\xf7\\xc5\\x00\\xd56$E7d\\xc9PE\\xc9\\x11[a3+\\x14\\xaa\\xd0z\\xa7\\x12\\x11\\xddcZ\\x91\\x8aG\\x0e\\xf4\\\\\\xc9\\xd5\\xd1*H\\xa2jH2\\xba\\xe88w\\xa8`XL\\xf2\\r\\x95\\xea\\x00\\x80~\\x97\\xcc\\xc0\\x95\\x98f\\x82.\\x87\\x12\\xc3\\xef\\xcf\\xf3\\xa1\\b\\xfd\\xb57\\xe8x8Y\\x8b\\x1d\\xe36\\x83\\xa1\\x19D'\\xdf\\xdbh\\xb7\\xfbU\\xb5ݯ\\xbc-\\xea@;\\fW\\xbc\\xca\\xf1|\\xd8\\xc4\\xdb\\x19[\\xd4\\xe3\\x8ec\\x1aZ\\x92\\xe5\\x96\\xe1Ě\\xa4\\xb9\\xfa\\vF{\\x14k\\x95jK\\x8a\\xf5JE\\x8f\\xa5V\\xb5\\xa2ţ\\xb6\\xa1&u_\\x97u\\xd92t\\xca\\x172L\\xcdA;'j\\x94\\tG\\xc9\\xfc\\x86]\\xabٴ\\xc4\\xc1\\v\\xfc\\xd19\\xa3\\xbcylQC\\xc7#膅_\\xb5\\xf3\\xba\\x986\\x1dYlw_\\x91\\x0e\\xd6\\xec\\xc2`\\x15jF1c\\x8d(/\\x9b.\\xb1sI<)\\x0e\\x81\\xbeA\\xc9\\a\\x1a\\xe0\\x15@\\xbb\\xac\\xab\\x00\\x9aA\\xb5\\x16\\x12\\xe52\\x10\\xf1\\x97\\xc4(\\xa1\\x01\\x8fB\\xfc\\xac\\xaf\\x87\\xd40\\x03\\xf0L;\\xb1\\x17\\fh\\xa2\\xe7V\\x9aQ\\x83eE\\x03\\x1b\\x8b\\x960\\xf0\\xc3x\\x9d\\xb9&7e\\x99Hh\\x8e\\xc1\\xd0H\\xfc\\x98\\x8e\\xe0\\x8a\\xa01\\x00\\xd9\\x10eU*\\xaa\\x9d\\x96\\xb3\\xd2\\xfe\\x94\\x1c\\xb5\\xeb\\x0e\\x98\\xbd\\xd6\\xeb\\xb5U\\xcfw\\x99\\xd2\\rS\\xfb_\\xa5\\xf6Z\\xbf`\\xaf\\xfdmI\\xd7M\\x00G\\x97=\\xfbm\\x90\\xd4\\xea\\t=\\xc4\\xe1\\x86\\xe6\\xadz}C\\x16\\xbd\\xeb\\x8dV\\xcf\\x12\\xedZ7\\xe2\\xf3\\xf0\\x8e(\\xc0\\x83\\xe8SLI\\u007fo4\\x9dt\\x97l$\\x1cQ-\\xf4Y\\xa4\\xf9B\\x95\\x86l\\xf7ܑ\\x96\\x8a-$\\xc1w͙XR}/\\xb9\\xc8\\xd2bC\\xafi\\xa9UJVg\\xc7ߪ\\xcc\\xd7\\xf6\\xbf\\xe1\\x90\\x1cg\\xcd\\xf0\\x8d\\xbfw\\xe2\\xaaK\\xd6?\\f\\x03\\xe5F\\xd3Ć/Fn\\xf32Y+UK~\\x96(\\x95Zoo\\xd1\\xd0A\\xb1\\x8aa\\xef\\xfa\\xad\\xad\\x95Ҕ\\xf3\\x94\\xebh\\a\\u007f\\xca\\xfd^U0\\x04\\a\\xedD\\x82\\x161\\x13\\x84p\\xce\\xf26-\\xb6J\\xe8\\xda\\xd6\\xd0\\xf1\\n\\xd3|\\x00\\xcaA`\\x8a4\\x80\\xcaI\\xf5,<\\xc4\\x1e\\xfb\\xb7\\xf7\\xfd\\xf7\\xb3\\xf6\\xbb\\x0e\\x9cvn\\xf8\\xce\\x13\\xd7ݠ\\xc2\\xce_\\x8bo\\u007f\\x1cZOݺ\\x06\\xd9\\xed\\x0f\\xbd\\xf3\\x91\\xf7|\\xf6ﰅ?x\\xd1u\\xfa\\xce\\xcf\\xe0\\x91\\xbb\\xdf\\x18t6\\x9d\\xf7\\xf8;\\xdf\\xfd\\xcaU\\xd8&1Ω\\xcf\\xc2\\xe7\\xd1\\xd7ʈ\\v@E\\x90\\xb0\\x14\\n\\xe2\\xe0e\\x94(\\xd8\\x00K\\x12\\x02\\xf8\\xf8\\x99-M\\xbdIն\\xce\\xdc\\xf3\\xef\\xef\\xd9\\xf9Ae\\xa5WY\\x1b\\xaf\\xfd\\xf8\\xc0\\x1b\\xc3[I\\xf9\\xe7\\xd6\\xf0\\x8d\\a\\xae\\xbe瞫K\\xb9\\xa6\\xe5\\xa5z\\xbb-\\xc8h\\xab2\\xf1\\xad\\xf0J\\xe1u\\xc2=\\xc2\\xe3\\xc2;\\xd0\\xca\\xf3\\x98*\\xa5ms\\nM\\x04\\xaf)UcS\\x83s\\u0090\\xbc/\\x13\\xd4\\xe5,\\xf5<\\xffw\\x91\\x83\\xbb\\x94\\xceنE^1\\xf7L(ۛ\\x96\\xb5\\x1d\\xb1\\xbb\\xcb-\\xba-\\x91>!\\xe2\\x01\\x9c\\x15I\\x15\\x8f\\v*\\xe6\\xbb\\xd7sF\\x121\\x93&\\xfc\\x178\\xdb\\t|\\xd9\\x0e\\x9b\\x9b5\\x03\\xe6\\xe5b\\x91b\\xa8\\xe1\\xa4jT=_\\x17\\xe5t(Z\\xbaW\\xf0\\n\\xa9(\\xf6\\xf5v'\\x98\\xcdbc\\xb5\\xa3\\xbba\\xc1\\xf08\\x1b\\x9d\\x84\\x17\\xd1\\xd64\\xb7\\x04\\x89݊\\x12OUK\\xadd\\\\\\xb6\\x14\\xdd)]\\xd6:2\\x1e\\xfb\\a\\x8f\\xefﷂ\\\"\\xfe:C\\xed\\x98.\\xb8&\\xb3\\x98k\\x02KS\\xb8\\x1e\\xec\\xc4\\xd8/\\xca:\\x93\\xa2\\xb8\\x00U\\x1c\\x1d\\x1e/\\xc8\\x10ES/\\xd4\\xe5\\x92\\xedk\\x95̨\\x0f\\x12I?ډ\\x03\\xd5\\n7D\\xd09\\xd3\\x1c\\rIS\\x92Ұ\\xe8j`:\\x9bqP2Ey\\xc5\\x0f[\\xf9\\xf6fRf\\xb8\\x8f¤D\\xe2X\\xaaa\\a\\x9e\\x01&\\x11F\\x18^\\x95\\x02\\a\\xec\\x9fi\\fT9/ٶp\\xd9K\\xd5\\xcd-\\x95\\xae6\\x9a\\x85\\x17U\\x90\\xa9\\xddiݘ\\b\\xcaИDKKA\\x85\\xdf]\\a\\xba\\x8crщ\\xeeE%\\x9b\\x80&rY\\t=\\xb6YZtX\\xfa\\x13'\\xc0\\x19\\xcdƇ\\xb6\\xbdV\\xe8v\\vk\\xb6\\xf7\\x15t\\x16\\x8a)\\xb3\\xdbm\\xb9/\\x9fYK\\a#1,i}\\xb9\\x1d\\xb5\\xa5\\xd1 ]ەp8\\x98\\x94h/\\xf6\\xf3\\xa1\\xad;:\\u007f\\x90FՕ\\xf2+\\xca+Ց\\xb3\\xf6\\x8cM;)%G[\\x13\\x18\\f\\xa2^\\xea8\\x91r\\vLZZ\\x12;i/\\xde$\\xffVƱu?\\xfc\\x0e\\x8e\\xaa\\xae\\xb0%\\\\\\\"\\\\\\x85=Q 5K\\x87w\\xf21\\x9a\\xd9\\x19\\x1aj\\xc4̈\\v\\xfbڴ1%%QN@\\xb1\\xad\\xf05\\aJY\\x8f\\xf39\\xd1\\x11\\xd1\\xfa7zT\\xe8\\x9b\\xc5\\xd8!\\xd5L\\xa4X\\xcb\\x14w\\x80\\xdbokhY^l8ι˾~V\\xd5\\\"\\xbb\\xe1\\xafG%\\x9c!\\u009a\\x13\\xa1\\x85\\xba\\xb5{\\xe3\\xd5\\u05f7\\xddx\\xb8\\xbe\\xda\\xecn\\xa4\\xb1\\xf6u\\xb3\\xde*\\r\\x8a\\x8d\\x86\\xa4؆\\xc6t\\x8b\\xc9Wn\\xc5v\\x0e~\\xeca\\x9ft[\\xe0\\x85\\xfeS\\xf7\\xbdK\\xd1J\\xa5\\xdb^\\xe3\\x98\\xd2\\xf7V\\xe4\\xf5o\\xf9h\\xb1\\xbc،t\\xcb4\\\"3F\\xb0\\x94\\xf9/\\xa8\\xb2\\xbb\\xd6\\xf8\\xf5\\xd2J\\xa5\\x96\\x04nXL\\xaaͷ\\xab\\xaa\\xd2m\\x8es\\xed\\xe89J\\xde*\\x84AJ\\x9a\\xf6N5\\xf2\\xab\\x0e\\xe0\\x051\\n~-\\xf23G\\xf4uWO\\x16x\\xbc,\\xd4\\xc56\\xdc\\xc4\\xe7\\xc7c\\v\\x95\\xdc鶊\\xbd\\xa0C\\x89\\x17\\x14\\xb9$_\\x86\\x91\\xf4\\xeah\\xdcJs\\xd2\\x05ŗr\\xbb!5Z\\xf3m\\xbe\\x80\\xc3+_\\xe0\\xcf\\x17ɼK\\x82J6\\xc8d'Dg\\xb0\\x9c\\xb0\\a\\xedR\\xbb\\xb2\\xaf{}mR\\x99\\x80 ~1k\\xdf\\xda,\\x03\\x18~\\xda\\xd8\\xf9\\x01\\xfc鑝\\xeb\\xe1i\\x05\\x14C\\x01U\\x0e\\xabp\\xfa\\xd1c_\\xe5\\x84\\xe3D\\x0f\\xcd\\xd7\\r8\\xa9\\xb8,j\\xc1T1<\\xbb\\x1a\\xae{?\\x81\\xc2\\xcb\\xfd\\x9c\\xf2o\\x89\\x9d\\xf3wv\\xce\\xff;Qd\\xa1\\x17R\\x91KRy\\xd1\\xd7X\\xf4\\xfb\\xd3\\xc2\\xf5\\xc2{)V*\\xee\\x92\\xf9\\xf2\\xee;\\x80\\xa5:\\xcc|\\x81\\x95;\\xf3>筥\\x82锠 \\x95G\\xcfy\\xfeH\\x93\\xf3_\\xa9\\xc3Q\\xc25\\x1b\\x92\\xd9\\xc2\\xe5\\x1b\\x85}\\xe0Uֳ\\xeeb\\xc6\\\"\\x84\\xdf\\xec4w\\x0f\\xc4(\\xa7\\x95\\x93gqe\\xe0]:E\\x1c=\\xf0\\xa4Wm\\xa5\\x12\\x8b7\\x03J\\xa4\\x93yz<%Q\\xa1AU\\xf1\\xac\\x99\\xcd\\x06\\xa2b*\\x8al\\xcaF\\xca\\x18UP\\xcbT\\x9e\\xe6\\xdaT\\xb6\\xa6\\xe3\\xf5u(\\xadOT\\x03\\xb3\\x1cXҍ|\\xf0\\\\$\\xbafRCCQ\\x0fh\\x1f\\xaa\\x8b\\x06\\\\T\\xa9~Q\\xae\\x84\\xa2f0\\x1c\\x91`iT\\x93\\xe7\\x14\\\"#\\x1a\\x944\\xd6D\\xa4\\xcet\\xf96ُ\\x18-N#\\xb8a*\\xa7\\n\\x02\\xd12$\\xcbT\\x1d\\x991\\xafbN\\x1b\\xa2^\\xd0l\\xaa2\\xd0!\\xa5\\xa2+\\x9d\\xf2BK]32\\xf1\\x84#\\xc7*{\\x88L\\xfc\\xe8?\\xf2\\xd9`\\xe7s\\x86\\r\\xa1,\\x0eꥲ\\xb7ᘈ\\xd2(\\x97\\xcf\\xd6\\xc5\\x18O4\\x8c\\v͡UI\\x1c\\xc9g\\xb6\\x81\\xd0L\\xb1|G\\x06ݤ\\xeb&]\\xf86|\\x8e\\xe7\\xf8\\rI\\xbdiQ\\b\\xccy\\xa5\\xb69\\xaa\\x97p\\x96_\\xf2\\xef\\xf3\\xba)*\\xf3 ޫd\\xbeIiDK\\x8e\\x8f\\x85\\xda3\\xbe#\\u007f\\xa7\\xadYyVHt\\xf6\\x87\\xe5\\xc8\\xc8^\\xa6\\xa3E\\xb7TSӱ{\\\"\\x12\\xb9]w\\x06\\xb8\\xd7uC\\xef\\xf5\\xa2f,V\\xb2\\x8b^\\xadk\\xc1\\xd6p\\xbew\\xef|\\xb8\\x15\\x98\\xb7\\a\\xad\\x9a\\xeb\\x14\\x83\\xce\\xca\\xe5\\xfd\\xf6\\x86\\xe7Da\\xabu\\xaf9*^\\xf6\\xbb\\xa1\\x950\\xaa\\x9d\\xb2TO\\x82\\xffZho)\\xf2x\\xcfzo\\xcbk\\xf6/n\\x1f\\xff\\xad0\\x14G\\xa7\\xb6\\xb7O\\x8d\\xea\\u007f\\xd9n\\x89a\\xf5\\xe8\\xcb(\\x17n\\x99\\x13\\xf8'\\xc2A\\xe1R\\x1e\\xdd\\xfe7\\xc2G\\x85?\\x10>-<G\\x9e\\x8cHE/\\x84\\xe0\\x17\\xdc\\xca\\x14\\u061d\\xef\\nN\\x93\\x145\\xf5\\x1f\\xa2\\xd3J\\x17\\x15D\\v\\x1a鄻&T\\xeeOf\\x91k\\x12\\xe0\\x87\\xd5y\\xb2H\\x18d\\xb3E}\\x0f7\\xc3}1\\x1f\\xedf\\x1e\\xb2\\x88g~\\xa91\\xef\\xff\\xdd\\xe5\\xce8\\x01h2\\xdaV\\x87T\\x92\\x1d\\xf6EF=zF\\x9d\\x9bQ67\\x0f \\x8c\\xe6\\x9d\\x14>\\x1fg\\x96Z\\xbc\\xaf\\xd6\\xee\\x16(\\x1d\\xa6\\\\\\xadOd\\xe6Mr\\x1f\\xa1\\x81\\xdeI\\xe4k\\x8b\\xb2\\xd3\\xde#&\\x9e\\xe3B\\xc1\\xf4¤Ҙ\\xf4ֈ\\xb8\\xb5Ԩ\\xea\\xfa\\xeb\\x1bmD\\xeb\\x03\\xf13^\\xe2\\x97M\\xc3\\xfdJI\\x94j\\xa6\\xe9?9l\\x95\\xc5#\\xaf\\x12\\xa3hk\\x0f\\x8bm\\x90\\xec\\x82n\\x9b\\x93Û\\x8d\\xa6\\xe2\\xe0\\xd4J\\x94#Q(U\\x92\\xe6\\x91êa:\\xdd>3M\\x9d\\xc8\\xd7D\\xb0j\\xa1֒\\xbd\\xaa\\xa6\\xda&\\x83\\xd61\\xa6\\xc5R\\x1c\\x8bU\\a\\xf1\\xbd\\xba\\xd6\\xea|\\xfa\\xbfٕB\\xcc\\xda\\xcaZ\\xe9X$Ire\\x10\\xcbxq\\xab\\x9a\\xecz\\xb5\\xce\\xd6h\\xdd@\\x84+v\\xfahR\\xf7\\x95lQL\\xca\\xdbJp\\xa4Μ\\xd6\\xd0_\\xb5\\xec\\xdbE\\xcbҪյז$\\xc9\\r\\\"\\xeb\\xc3\\xe0\\x05a\\x18h\\x9f\\xabO{\\xddn\\xa0\\xd9\\xe8>Dn\\xaa+\\x89\\xef{eI\\x8a\\xae<'\\xaa\\x97]Y\\xad\\x89N\\x1d\\xfbȾ}kA\\xf7\\x84\\xacyn\\xbf\\xc3)g\\xb9\\xbe\\x82\\x11\\x82\\xa3&\\x15Ѓ,L\\x15\\v\\xc41\\x84\\xef.w\\r\\xb0\\x83(}Qӌ\\xc7M,\\xa1\\xb8Prns%\\xd9)\\xf5|\\x92\\xfa!MP\\xd2O\\x9c\\xffb4\\xa5\\x813\\xf7\\xa4;%f\\xf5\\xbe\\xb4\\x06\\xfe>iFz\\xba3h\\x99\\xa1\\xae\\x9c>\\xedFL\\x1c]~\\xb9\\x17\\xca:N'\\u007f\\xbe^\\xdb\\xf9fm}\\xbd\\x06\\xab\\xb5\\xf5;\\x87\\xe8\\xd3y\\x95\\xf0\\xd7\\xc3~Z\\xb6\\\\M\\x97\\xa7\\x8f\\xbb\\xa1\\n\\xa7u\\xcf8r\\xccrt\\x84\\x18\\xf2\\xc3/}~\\xfd\\x87{\\r\\xf0Vd5\\xb4]\\r1'\\x9e\\x97Gc\\xd9\\xc2\\xdf\\xfdG\\xf0\\xdbB,\\xac\\x91\\xfec\\x9b\\vwv\\x88\\x17\\xa9\\x06\\v\\xa6$\\xfc\\xdb%9\\xef\\u007f\\xb9=m\\xef\\xbe\\xe4lK\\xf0\\xec\\x97$M\\xfa\\x12c\\x03\\x99ɏ\\xe1\\xd3\\xc7\\xf0\\xef\\x80\\xe1\\xbf_\\xb2}\\xe7\\x99\\x177ӟ\\x8bo\\x16śeJD\\xbe\\x98\\xdfR\\xf9\\x11Yz\\xa5(\\xbeR\\xe2\\xdb\\x00p\\xdbYI:\\v\\xb0x\\xc4\\xf6\\x8e\\x11\\xb5\\xfeOx\\x80G\\x87iEj7REM\\xee7b\\xd2\\xf0\\x1eK\\x9cRc\\x1aS\\xfd@>\\x9ct\\xf2)^\\x04\\xa2_\\x87\\xf3A\\xb1\\x18\\xbc\\xef};\\x0f\\xac\\x15\\x83\\xb5r\\xfb\\x10\\x1c\\xb8n\\xed\\xe0\\xfa\\xcdO\\xae\\xbd\\xe1\\x14<P\\fv\\xbe\\x19\\x14\\xd7`\\xf5С\\xa0\\xb8s\\xbe]\\x82\\u007f\\r\\xd7nol?\\x00O\\xdc|\\xea\\r\\xdcn}\\x1b\\xde\\x0e\\x1fF\\u007f\\xe0^\\xe1A\\xaaz\\xccWU\\x84.,\\x9f\\xc7*\\x9a\\xac\\x8a\\x12vxI\\x9c#\\xf2P\\xd9l:\\xa4\\x95\\x83;J)\\xc3\\x1duɱ7\\x9b\\xef\\x93\\xf1rs>\\xc5\\tO\\xa4E\\x94<\\xcaTN\\xc9\\xe00\\x02\\xfcs^k7B\\xeb\\xf7fH\\xf5в\\x19U\\x15\\xe1\\xe4\\u007f\\a\\xda\\xf0+\\xcdf\\xd5V\\xd1\\x1b\\xd7c#,\\xabi\\xa8k\\xb6i!\\xaa\\x91\\xb4\\xc8\\xd2j\\xb3(\\xd4\\r@76u<]\\xa7\\x92\\x03\\x11\\xdd\\xc3b\\\\W\\x0e\\x83\\xcb|\\xdd\\xd140d\\xb4Ϧ\\xe3\\xfb\\xbek\\xcaR\\xb0rL\\x92\\xf5\\x1a\\x95Ҭ\\xc0~Z^\\xff\\x15JdSd\\x8d\\xd9V\\xb4\\xf3\\x85\\xca\\x10\\x8a\\xb8w\\xa6Yv9\\xd4\\xc2\\x02\\x19E\\x85\\x19\\x0e\\xb3\\x8aUtN\\xc3\\xc8]\\xeb{v\\xb0\\xa8\\xf1RÕ\\xd4UM\\xf4\\xedKh\\x8a\\x14\\x19\\xfb\\xa31\\xbb\\xe7p\\x98%>\\xb1w\\x87\\u007f\\xc3\\xcb\\x11\\x98\\xa7\\xe0\\xb5d؞\\xff\\x88c\\xa7\\x87\\b\\xe7\\xcd\\xc2c\\xc4rEL\\x89\\xb0\\f\\xabO9\\xf5ڒ\\x81g\\xf9\\x82\\xb6\\xf3\\x80<9 \\x94\\x1dB51sbGej\\x9d\\xa3\\x05\\x12\\x86\\x1a\\xa9MbF\\x85L\\x1ac#'\\xf3\\x88\\x94\\x15\\xb6\\xa5\\tZ\\x13\\x95'\\xb04Y\\x9f\\x80t7\\x8e\\xba\\xcd\\xe1\\x942\\x98\\x8f\\xd5\\xdf\\xff\\xda+\\xbda͏\\xb3j\\xaf\\xea ~M\\x1d|\\x92\\xc5~m\\xf8^\\x868\\rr\\u07fb\\xd8\\xd7[&1\\xe1m\\xed\\xfc\\x9f\\xfd\\x8e!IfK\\xf7/v\\xe3\\xc05,\\x85\\x93\\xca#|Գ\\xfc\\xe4\\xc9<c\\x9aA)$\\x92h*\\x96\\xe1\\x06\\xb1\\x15\\xe8\\xc9z\\xa2\\a\\x97\\xaek\\xd54\\xadJ%\\v~S\\x92\\xf4=F\\x1cղ(ʲȦ\\x83\\xda\\xf4,\\xcajQl\\xecy\\xab\\xe5W\\xabUϓ\\xc3KϞ0\\x1dǹ\\xef\\xd6Lv\\xfdjQ\\v\\xbdf\\xd0ӼĦԷvѶ\\x8bm2\\xe2\\xe8dXZ/hz!\\x89\\vK\\x92\\xa1\\x0fz\\x0e\\x14\\x01oj\\x05M\\xb8\\xe0^\\xf8\\xf9\\x85o\\x8b\\x0fp\\xff\\xd6\\xc5\\x19\\xeb\\xa8\\xf0\\x1a\\xe1\\t\\xe1}\\xc2'\\x85\\xbf\\x06\\x03\\x12\\u0604+\\xe0u\\xf0+h\\xdb\\xf3و*D\\x17\\x84#\\xb3\\x11C\\x98\\x8d\\xd6\\x0e\\x9b\\x1e\\xfdR\\xec\\xce]ND\\xa9\\xf6E4OT\\xff\\x9a𨝚\\xce2Q!\\xfd\\x9b\\x19\\xd5\\xd0n\\xce\\xc6$<\\xc0e!\\x16\\xbbr!\\x1a\\x12\\xdcj\\xb2h\\x18\\r\\xd3d8\\xde$(\\x90\\x10\\x84\\xe7\\xda;\\xbc\\x1a\\xa7\\x0fT\\xf5IQpĸ\\xd3\\xf92\\x1a\\xb0\\xc8\\xfd\\x99v'\\xb4\\x14\\x86\\x13\\xebt\\x93*\\x9eHÛ~\\\"v\\x9c-\\x1ck\\xb3!\\x1d\\x91\\xbbJ\\xcbcN\\x86͘E\\xe3\\x84vɩ8\\xa78\\xb0\\xa8\\xd6;\\xa7\\xed[\\xb0\\x14\\x8c`\\x9b\\xeaP\\x1ds\\xce\\xec9~&\\xe5\\a]\\xa6\\x1bu\\xd8\\xf4\\xa5\\xdfCz\\xbd3*\\x10\\x9eO7St\\xec\\xa8R\\x96\\x04>\\x12\\x9c\\xceg9/\\t\\xa6/\\rw\\u007f\\xf60\\xfa\\x97?{\\xba_\\xec\\xc3(\\xcd\\xff\\xb1\\x04\\x85'\\x89\\xe7\\x024\\xf9\\a\\xaa\\xeb\\\"\\xba\\xfb\\xf1-\\x87\\x8cάf位\\x95\\xa6\\x96\\xef\\xab\\xe9\\x154\\x90ٞfq\\x9f\\xdb\\x1ch\\x9e\\xe3ئ\\xa1\\xcb\\xf9\\xd1=\\xcd\\u007f\\xfa\\xa9\\xef\\x80O\\xfc\\x1a\\xa0\\xd7\\x03b\\x81\\xa7TY7\\xae;\\xe4\\x98\\xca\\b&\\xd5\\xc4evQ\\x02\\xb3\\x85\\xd7\\x16o{\\x98\\xe9\\xe0\\xc92Ϧ\\xba\\x13M\\xf3\\xda8̛I`k\\xa4\\x82E\\x9b,\\xdd\\xf4\\x1d\\x03a$>?\\x05\\x96\\x02\\x94\\xa7\\x02\\xae\\xa1P\\x1d\\x9e\\xa8\\xe9h\\x17\\xf5Eʭ\\xaek\\xb2\\xa8[\\xe2L\\r#\\x84\\rj\\x18\\xcb\\xf2\\xaa\\xcb\\x16\\a\\x92\\x15D\\x0f0\\xa0\\\"\\x1cߣ\\xc4K\\xcaٵ\\xd0\\xf43\\x98)A,\\x8b\\xd9\\xe2\\x170\\x1f\\u007fA\\xab\\x00\\xa5\\xffL\\vh\\x16\\xa2\\x0f\\xa3\\xa0H>\\x95߀\\\\\\xba\\xe8j',\\x9bn\\xdap\\xc0\\xcbSV\\x1c\\xee\\xdd\\xe7gۣz5\\xcaEY\\xd5t\\x13\\xc1\\x9d\\x91\\x1f<b!l&&x\\x86\\u07b8\\xeaX\\b͉\\xe6B\\x03v\\x80\\x976\\xe1\\xafЉBTW(\\x9f\\xb4\\x89\\x13W\\x8cs(\\xc0\\x88\\xe9\\xccq\\xa8\\x84\\t?$\\xf9 )*\\x1b\\x05|g\\x94+\\x8cn\\x8f\\xf6\\v\\xfb\\xda\\a\\x1a%)\\x03Qy\\xe0\\x9f\\x89DG\\xa3\\x8a*C\\x9d\\x81\\x16\\x04\\x96\\x85\\xf7*\\x97\\f\\xd8\\x03P\\xb1\\xa4EU\\xd7\\x14\\x8fߥ\\xccb\\x89\\n\\xbbБ\\x85\\x15/\\xc0\\x06\\xa9\\xee\\x1e\\x95\\x97MiK\\x9dX\\x01}>\\x01}\\xbe\\xba\\xb0\\x8fF y2\\xe4\\xe4\\xf1 P\\xf4\\xe2\\xb3\\xc5\\xd6Y\\x87<>\\n\\xc2`\\x87\\xec\\xac\\xc1l\\xd2\\xe5LR4]~\\xf3M\\xbd\\xad\\xad\\xde#\\xe8\\x8fz\\x8fE\\x11\\u007f\\U0006c7e6\\xfe\\x1fX\\xa6y,ȤÊ\\xae\\x98\\xdaݮ\\xfbD\\xa3\\x1f\\xb7\\x92\\xf7o\\x9d\\xd9J\\x9b\\xe9\\xca\\xe2O\\x14\\xddk\\rbEW\\xef\\xd5,\\xbf\\xef\\x0f\\x1a\\x1fJ\\xda\\xf1\\xe2\\xf7i\\xe8\\xb7\\xfd\\x94\\xc7+\\x1ex)J\\xd1F\\xec?\\xe9\\xb0UDJl\\xb3/qz\\x85L\\xe1Rc\\\\l\\x8b\\xe7\\xf5Ӻ\\xd6\\fq\\x049ob\\xba\\xf0\\x11hVǷYSM#N]'\\x12\\xab\\xcd4A\\xd7\\x1e\\xb7F\\x04\\x9b\\xbb\\xdbʘ\\xaa\\xcaќ~`\\x11\\xcax\\x9ba@1\\x12%Swm\\xd7qT\\xd7N\\xa3\\xb2\\xed\\xa9\\xa1\\xa4KTwGU\\xb2\\xb2(\\xbb\\x91,\\a\\xc5l(K\\x05۵\\xcd\\xd8\\xf0\\x02\\xbc\\x9eF\\xe0[\\x86H\\\"S\\xa6\\xa7{\\x90\\x06݆\\x9fR\\xaf\\bj\\x81\\x01\\xa4#\\xa7xUY\\xd2\\x18\\xe9\\x8f\\x003\\x97\\xa1\\x0f\\x1c\\x01\\x9a\\xedQ\\xaa\\xba\\xe1EU\\x1c \\x16vp{\\xb5\\x88\\x87$\\x15\\x0f)U\\x15\\x13\\x98by\\x92eg\\xcc(\\x15\\x92\\x8a\\xe3\\xe2 \\x93L_n\\f'\\x13D\\xb8\\x8a\\xa2V\\xc1E\\x8b\\vЍ\\xe6\\xdd\\x16\\xa5\\x81\\xa3\\x1b\\xe9\\xb0@tdCU\\f9qr7\\xd2@\\x13-E\\xd3\\x05\\x85\\xe7?\\x898Ow\\xb8R\\xeei\\xe1Ջե\\x84\\a\\xdbV\\xa5.YE\\xf4\\xef\\x97^\\x16\\xa1\\t\\x9a\\x85%\\xe2\\v^\\b\\x1e:r\\x8e\\x9329\\x04c\\x9ab9=\\xa6:㏬3\\xe3\\\\\\xbe\\x049\\xb92@\\xb3\\x03?1\\xb7\\xb7\\x8dZ9\\xce@L\\n\\x05\\x192\\x1c%\\xa5\\xaav\\xb0\\xad;\\x9e\\xef!\\xf8\\xd0/\\xba~\\xf3\\xe4\\xfdwŝ\\x8c\\xb9\\xd1\\xf4\\xd4\\xfa\\xa1;-\\xf4\\x17\\xadr\\xdc\\xdc\\x1f\\x8c,㘪\\x96\\xed\\xe0\\x83\\xa5b\\xf1l\\xb1Tz\\xafh9\\xa2\\xd4*\\x16sY*JJ\\u007f\\xa5>\\xfeɡ7eōj\\x04q\\x15V\\x8b\\xc9ЮFő\\xbbq\\xbc{\\xd3\\xce\\xcf\\xf5\\xac\\x97\\xf4\\xaf\\xdan\\x9f\\xd82W\\xb3\\xba\\xb7\\x11\\xf9z\\x02\\x96\\xf7\\x89\\x86\\xe34l\\x9b?\\xf6\\x10\\xe9j~\\x19M\\x99o\\xa9V\\xb2\\x02\\xed\\x05\\xfe\\xae^\\xb8\\x00\\xff\\x03\\xde.8B&l\\n\\xd7 \\x1e\\xe4\\xb4Ƥ\\t\\xbb\\x10\\x01_r\\xb9v\\x9b\\x9c\\xb1 \\x99s<\\x8e\\xa7L!\\xcd\\xd9x\\x1f\\xb4\\x17|\\x935\\x18\\xef~C\\xe2\\xb9\\x04\\xddE\\x90r\\x93\\x94yfs\\xf8\\xe8\\xea)M;\\x17\\xf2\\xa4q[\\xd3T\\x83\\xaa\\xe4\\xc4\\U0001c99d\\xbaZ3p@\\xc5\\x1b\\xab\\x15Q\\xbe;\\x01q\\xe7J\\x84_.;\\r'p\\x82r\\xe0N\\xaf\\xd3\\x05\\x9c\\xactK\\aƒ\\xa2\\t+iCU\\x8e\\xf3`\\xb9\\xf9\\x1d\\xa2\\xed\\xc19\\xc6<\\xa6*\\x8d;E[S\\x88Q\\x98*)\\x83w\\xe0\\x84\\xe8:\\xcf\\xff\\x99\\xeb貴\\xf3\\xbfW;\\xa2\\x88{\\xb1\\xa1\\\\\\x17\\xe0\\xc2\\x05\\xc4\\xef\\x9f\\xc7\\xfe\\xb1\\xb6\\\\\\xc5\\xe40}B\\xf2\\xdd\\tIY\\x93\\x1f8\\xebt\\xa7)\\xb9\\xe2\\x1d֥;%\\xbb\\xc1s\\x9a\\xf6\\x05=տ\\xa8i\\x8f\\x8d\\x14\\xdd%/\\xbfbXR00\\aQX-\\x8dX\\x16\\x8dW\\xf4\\x82\\xf6\\r\\xfc\\xd0\\x174\\xed\\x8b\\xf8\\xe7ѱQU\\xefc-\\x1b-C[\\u007fK\\xbfT\\v\\xa3\\xbe>\\x8a26\\xe9i\\x1a\\xe5\\xad,} \\x8a\\x98\\x0f\\x85\\x03\\xc2a\\xec\\xb3\\xc2<\\xe2^\\xd0\\xdco\\xf8\\xe1\\x84s\\\\\\x92\\x91\\x8e\\xb7`\\xb20\\xcf\\xd4\\x03\\xc9@O\\xf3X\\xe5\\xeb\\xca\\xf3EM\\xe0\\x94\\xaf1\\xcfs\\xbe\\xb0\\xfc\\xe3$\\f\\x93?\\xdb9\\xf4\\x8c\\x1e\\xf9\\xa6)G\\xd8=K\\be\\xe3\\xcc֣b\\r\\x9a\\xa9\\x9b\\xdao\\xab\\x94&\\x8d\\xd0K\\xddxX\\xdb|\\xbc\\xb6\\x99\\xbd\\x10\\xaf~r\\xe7\\x10\\x9c\\xbf \\x988\\n\\x89\\xe6\\xc6\\t\\xfcb\\x18z!-}9\\tzɺ\\u007f$*>90\\xa3\\x93O\\xe2?\\x8a\\xc5Z\\x17\\xfe\\x13\\xfc=\\xcem3\\xe1b\\xe1$\\xf6\\xa3\\x9b\\x85;\\x85{\\xb0mǜ\\x91wII\\x9a\\xbf\\x14\\x85\\xe5\\xf5X\\v\\x86^Z\\x94\\xe4n\\x9eJQ\\xee*\\xe0\\x84\\x98pB\\x1aN؋\\xae\\u007f\\xa7\\xebHI\\xb7\\xc9\\xc9\\xd3:l\\xcc\\x03O<\\xb0\\x8b\\xcdC\\xc4]\\xd4\\x18|\\xa1\\x13=~\\xf8\\xabbx\\xffMw=\\xfc\\xf0]7\\xdd\\x1f\\x15\\xc3;\\xaf\\xb9\\xfd׆\\xe7.\\uedb2\\x8d\\xc2d\\xc3=~\\x99\\x97\\xad\\xa7\\xd3~P\\t\\x8dӯy\\xb5,\\xb3V5\\\\+4\\xfc\\xa7\\x8bU4=qY\\x97Dg-\\\\\\v\\xc3\\xd5\\xf0MT\\x17\\\\-\\xd2C\\x0fV\\xc3R\\x13\\r\\xec\\xa1\\xce\\xf5\\x10[V\\x92\\x9a\\xd6\\xddW\\x9d}\\xf8\\xae\\xbb\\x1e>{ձ\\x13\\xbfv\\xfb\\xd1W\\xce\\xc4a\\xab\\x9bn\\xd4\\xfa\\x13\\xa8\\x95\\n\\x8d\\xc2F6\\x98\\x18a%\\x18JW\\xfc\\x95\\xd6j7ղ\\xdf(\\x1c\\xb9Q.\\xb7cM\\x8a\\nU\\xf7]\\x15-ϵʘ\\xa5\\xad\\xb2\\xac%\\xadʻ\\xcbJ5\\xef8\\xea\\x91V\\xc76\\xd3Դ\\xe3\\x04{\\x04\\xc3yl/ר/\\vma*\\xec\\xa7h\\xe6\\xae\\xed\\xa0zJqʩ5)l\\x82\\xd7_j\\xb3.^\\xf7y\\x8a\\xb7y\\x8e] \\xdb%@d\\xdd\\x11\\xad!\\x1f\\x84\\x11\\xf9Ԝ&u\\xfe\\xec\\xf7?\\xf2\\x91\\xef\\u007f\\xe4\\v\\xd7U\\xfd\\xaa\\x1f\\xe71\\xc1\\x18\\xa5\\xdd\\u007f\\xf4\\x04tt\\xb7^jkf+yS\\xfc\\x9a\\xe9\\x8dIZ\\xc1\\xb7U\\xc5;Wc\\xacVt\\xfa\\xe8\\xfd\\xe8h\\xbeS'\\xb6\\xe0C\\x0f}\\xf6\\xa1\\x87>\\xfb7\\xb0_\\x8e\\xebA\\x94G\\b\\xe3\\xf3\\xceη\\x9ek\\xb7o\\xc8\\xf3\\x1b>u\\xf5\\xf3g\\xb4n!\\xce#8poV\\xde\\xfb*@\\xe4\\x11n\\n\\x14\\xcff\\xc2Mxn\\r\\xf4\\xfd\\xcb8O\\xef\\x17.\\x11N\\x11\\x17d:\\x1f\\xf3\\x9c-\\xbc\\xb5G\\x99\\x94\\xa2\\xfb\\x8f^\\xdd4\\xe5\\xda\\xe5\\x94\\\\\\x94\\x89\\x14#\\x10\\xb9\\xca9gW\\xefƄ\\x83\\xa7ػ\\xd8,\\xa1\\xf5-\\x96\\xc7\\xfe`\\xb5\\xb7a\\xf7\\xe5\\xd2FEY\\x87\\\\\\xb6\\xeb\\xc5\\b\\xc2J\\xc506\\a\\\"\\xf3,\\xa3`Z\\xffK6C.rޟ\\x88,pl\\x80\\xfd$\\xf4\\xa8I\\xb2\\x18$1\\x9a\\xca\\xfa\\xddw\\x9f?q\\xe2ԩ\\xf3\\xa2\\x19tK\\xe5\\x154s\\xe7\\xdf#\\xaaFlG%Q\\xac\\x80Z\\xed\\x94-\\xf5\\xbc\\xac:\\xe8\\x12z\\x01U\\x90(\\xf2\\x1d\\xe8\\xe1X\\x96\\t\\x01Ո\\xee\\xda|\\x03=\\xee\\x04\\xe7ؕ%k/\\x0fr쪇\\xa48\\x88gKU\\x92t\\xb1Z\\x81C\\x19\\xba\\xbd5\\xe6\\xe7\\x85\\xc1M\\xdcv\\u007f,#\\xbd?\\xcf\\xfc\\xad\\xe1\\x81d\\xd2:\\r\\xf2z\\xc3,\\x94\\xbc\\x0f\\xfe\\x117\\xb2/|\\xedk߳\\xe8\\xfd\\x1fm\\xaf\\x96\\xfa\\xf5\\xaf\\tK>G\\xca\\x05;J#\\x11\\xb8\\xca\\x1a\\xa7\\xc2%\\xce[\\\"\\x9a\\xc99\\xed+\\x9f\\xa89\\xe1Ћ2\\x9fT\\b8\\x1emQW\\xc1i\\x86\\xf1\\x99f\\xb1\\xd8\\xde]\\xae\\xe2\\xf3\\x82\\x83N\\x97\\x87\\xddxx\\x8d'j\\xd2\\xea\\n\\xc9\\xffn\\x8b\\x19\\xc0y\\x85\\xa9\\x05\\xd3\\xce\\\\\\xa6~YS\\xdc\\xcc6\\v*S\\x14r\\xfb4Z\\xb6NLI\\xd9}\\x8b$\\xb9TD\\x8b\\b\\x03.\\x11\\xd1\\xdbF\\xff\\xda\\xd9\\xdaW\\n\\r\\xe2߸\\xe2\\xaa\\xf5J\\xd1\\x1e\\xec\\x8du\\xe3\\xe4\\xc1\\xec\\xd4Z\\x1cx\\xdb\\xe5Ӈ)H\\xec\\x04\\x9e\\a-Sy\\xee\\x17\\x0e\\xf0ϏZ\\\"J\\xb0\\x05\\x98T\\x18U\\x04\\xe1qT\\x89\\xde\\xff\\aY\\xab\\xaf\\xe0\\xe7a~w3?I9\\xee\\xd2\\xe0\\xaa\\xfdy\\x8956B\\xc7z\\xd5f\\b\\x91\\ue526f\\xde\\xe4Al\\xc5\\xe6\\x18N\\xe5\\xd7\\xf33\\xd8g\\xaf\\xe5\\xe3\\x10\\xaf\\xa4\\x94s*\\xdd\\xe9d\\xc1\\xff?\\xc5a\\x88\\x8e\\xcbp\\xa9\\fK@B]67\\xcf\\xde \\xcdӃ0\\x1dN\\x06\\xb0\\x145\\x8c)oA\\x9cS\\xbd\\xe5\\a\\x9e\\u007f\\xaa\\xd8?p\\xc5\\xcamO\\xc1\\x13T\\xd0Ee\\xeeP\\xe7\\\\kT;\\x88p\\xbbX\\x92dl\\xbeR\\xc1\\bd\\x8d\\x8a\\xb5\\xe4:\\xe7\\x97\\xe1\\xf5\\xf7\\xa5\\x03sy~\\xa0\\x04\\xcf=}k\\xef\\xf2\\x03\\xfd\\xe2\\xd3ϿYӘ\\x96$N@'\\x8f\\xfb\\xd2\\xed(\\x8e{\\xa1\\x8c̀wp\\xf5\\xb0\\x17Ǒ\\xcd%\\x02\\xb0\\xf9}7I4W\\xebm&\\x00\\xc9&\\x9e\\xaf\\x85\\xe7\\xfb38\\x8f\\xe7\\xfe\\b\\x8eM\\x85\\xf8\\x8a\\xf8\\x8c~\\x00f\\xe8\\x89\\x11\\xd5\\xd4\\xec\\xc5N3\\xa4̽]\\x11C\\xbe\\xa0D\\x13\\xba\\vKYE^P\\xda\\xe9r\\x96\\xcd|\\xa1\\u007f\\xbb`\\xb0\\xda\\xecp̓fNz\\xba\\xd4LD~\\xc5{\\xe1^\\x18o.u\\xfa\\xc8fP\\x0f{\\b\\xce\\x154p\\x1f\\xbf\\xe1\\x96\\xdf\\xe0|(z\\xc1\\xb0M\\x1b\\x98dVj\\xb2\\x82\\xcd\\xe0\\xb0,A3\\x1e\\xd6<\\xaa\\x01\\xa9\\xa7$F\\xe5z\\xeb{\\x9dR\\xadV\\xf1\\xca<)\\x80/\\xe9\\x13\\xa3\\x83\\xe8\\xfb\\xc4\\xfc\\x92FT\\x1c&\\xa5%e\\xa5\\xcd\\xd5`Eɾ\\x1aQ\\xb1]\\x81\\xa3\\xfd=\\x17\\xe9p\\xed\\xaf\\xbe\\xeb\\x16*r\\xd3T\\xe2C\\\\i\\xa2\\x1f\\x89M6pj\\x8e\\xe3\\xba\\x1e}\\\\\\xf3L\\x90S\\xcdFp[\\\\\\xb5\\xb8\\x9a\\x9f\\xd8?x\\x91\\xa7\\x84e\\x1f\\xc4\\x17\\xb9\\x11h!\\x82J8\\x89пq$\\x01\\x8a/\\xc9jt\\xf3\\n\\xb4:\\x8c(\\xbe\\x05]\\xa8\\xe3\\x9c\\xdf\\xe5s>eq\\xf6p\\xd6? \\x1c\\x17\\xce\\x10:{q柎\\xe3%BH\\xc7<x7\\xa2%\\xbd\\xcebK>\\xcd\\xd9/\\xa4\\xad\\xa2cO6a\\xbc(}U\\xf3\\x86\\x0f\\xcbD)\\x1fp\\xaa}m\\xafZ\\xedU\\xf4+\\x8f\\x87\\x8e\\x13~e\\xaf\\xf4\\xf9s\\x8e\\xe1\\x9aJ\\x12:\\xe7>c6\\xd3;\\x9aYV\\x9f?T\\xa8\\xd4+\\x05%{\\xd5\\xf6+\\xa6u\\xe3\\xc17\\xef\\xfc=Xo\\xb8\\xfb\\xcdw\\xfc\\x03\\\\\\x0ẽr\\x95v\\xf2\\xfdw\\xbe\\xf3\\x1b\\x85\\xfe\\x91\\x8f~T\\xb5|3.\\\\\\xf5\\xfe\\xa3g\\x13;5ҳg\\xcf\\xfa\\u007fQ\\xeb\\x1f\\x9aU\\xee\\xb8\\v\\xce\\xef\\xbc\\xec\\xb6[n\\xb9e\\xe7v\\xd0K\\v\\xbf\\b.|\\x1b\\xfe\\x18Ϸ&\\x1c\\xe2\\x88A\\\\\\xe8\\x05\\xe7\\x9b9\\xe77㩻\\x93\\xd9\\\"\\x14\\xdc%b1\\x84jMWl\\x12\\x859\\x8b(^pp\\x97ī\\v\\xbfA>&\\xc9C\\xc0\\xb8B\\x10\\xb3ӻ\\xf1\\xc1\\ao\\xdc\\u007f\\xdb\\xd6]\\xa2z\\xac\\x80\\xdeu\\xe1\\x98*\\xee\\x8bUQ\\xdc\\xda\\x12E5\\xbe\\x86E\\x89^-\\xa0\\x1fiu$\\xe7\\xde\\u07fbw\\xfe\\x8a\\xf9\\xa5\\xe7\\xa8\\\"\\xf0\\x88,\\x1f\\x11UI\\\\?J$ \\xbd\\x1e\\xd12\\x1e}i^%́\\x1cq\\x1a\\v)\\\"M\\x1e\\x19xCj]\\xaa\\xe7\\x17\\xf9M\\x99\\xd7\\xebp\\xc9\\x10.=\\xfa\\xf8\\xf0z\\xb8\\xee\\x92\\xe1Χ\\xedql\\x0er;(ĚVk\\xb6\\x1be\\xad\\xba\\x1f\\x8e\\r/In\\xd8{+\\xb8;\\x9f\\x1e^\\xe2wL%\\n\\xad`ȑz\\xf5j\\xecɄ\\xd3\\xdd\\v_\\x85\\x1f\\xc1\\u007f\\xc0\\x1e\\xe1\\xf2\\\\r\\xa1\\xcdR6 \\xee\\xf2\\xf1Ap\\x11|Ki7W(\\xfd\\xee\\x87Y6\\xfdRu\\xeb\\xdd\\xefު~\\xe9[w|\\xe2\\xdag\\x9e\\xb9\\xf6\\x13\\xd0_]\\xbd\\xf6\\x87\\xa3\\xd1\\x1f\\x8fG\\xefx\\xc7h|\\xc7\\xeb\\x9f\\xda\\xf9\\x8b\\xce\\xd3oy\\xfa駅\\xff\\v\\\"c\\x15\\xe9\\x00x\\x9cc`d``\\xf4:м\\\"bKZ<\\xbf\\xcdW\\x06n&\\x06\\x10\\xb8%z\\x82\\x1bJ\\v\\xfe\\u007f\\xf7\\u007f\\x1bS+\\xe3\\x03 \\x97\\x83\\x01,\\r\\x00\\x90\\x9b\\r\\xf4\\x00x\\x9cc`d``<\\xf0\\xff\\x00\\x03\\x03S\\xc3\\xffw\\xff?2\\xb52\\x00E\\x90\\x01\\xe3N\\x00\\xb9\\xc9\\b#\\x00\\x00\\x00x\\x9c\\x95T;\\x92\\x131\\x10\\x95d\\x97ǻ\\xeb5Ƌ\\xb1\\xa7\\xd6\\x14>\\x01gPBF\\xc016\\xe4\\b:\\x02\\x19)1\\x11\\xe1F\\xd4\\x1c\\x80\\x03\\x10:$C\\x14E`\\xd6Xt?\\xb54=\\xaeM\\x98\\xaa.iZ\\xad\\xfe\\xbc~-g\\xe4\\xfbd\\x8c\\xed\\x86\\xe2\\fdj#\\xfdG\\xa5\\x0ff\\x86\\xfd>\\xdb\\xd8Pב\\xf3fnCJ\\xb0[@\\xe7\\xaa\\xcf\\b\\xbb\\x89\\xf5\\xa6\\xc1?\\xd9\\xc3\\xce\\xe3\\xfc\\x02\\xb1X\\xffN\\xd9{\\xb3\\xacy\\x04蟪\\xfc\\xa6\\xb2_\\xd9\\xef\\xea?\\x9a)\\xf2\\x91\\x1a$\\x06\\xc7ܩx}M\\xbcz\\xd4Uka\\x1bZ/\\x8bM\\xf1C\\xe7+Z\\x1b:\\xbf&\\x9d%ِ\\xceJn\\x13\\xdc{LLŎ\\xd7W\\x92\\xc75\\xad7\\xb2\\x9f\\xd0\\xd9Db\\x8dK.\\x12\\xb3\\xc7ާ\\x84\\xb3\\xd8\\xfb\\x16\\\\Y.\\xe8\\xfc@\\xb5Xի\\xdaCZ\\x9d\\xb2\\xe5\\U000d7733\\xc6T\\xe2\\xcfIZ\\xfb\\r\\xff\\x8c\\xe5\\xb2\\xf8q}\\xad;\\x8a\\xd3:\\x93\\xfe\\x92\\xfe\\xd9\\x19w\\b\\xe7́\\x12O\\xf8\\xc2\\xf8\\x8f+\\x9e=\\xa7.\\x05SW\\xb8\\xa6\\xfa\\xdd߯\\x9c\\x14ߝٸPu\\a\\xd1-\\\\H\\xa7\\xc2\\x05\\x9c\\xfb\\x82C:\\xf2Y\\xe5NLQ\\xfb\\x16}\\xc6\\xee\\r\\xed\\xef\\xf8^:\\\"\\x8f{\\xf8y\\x0e\\xfb=\\xf5\\xa0瞱\\x1f\\xc5n\\xdf\\xff\\x93\\xcd\\x11}\\xcawr-\\xa5\\x17]\\xfa\\xe9\\xde\\xd2\\xfa\\xbe\\xf6w+=ii\\xbf\\xc3̘<c9\\xbf\\xf4\\x1bg\\xb0M\\aگ)\\xf7\\x1f\\x1a\\x93\\xc2\\x13\\xda7J笗~\\xeeT\\x9dQI\\xd7\\xe3\\x83|2\\xaf\\xca\\xfc,\\xf1\\x0f\\f\\xd3\\x1f\\xfb\\x99\\xb1K\\x0f\\xe7\\xb3S8\\x88\\xff\\xaf÷\\x02\\xfd\\xbe'lJ\\x1c\\xe1Ҁ/\\x011\\x1a5\\xb335+u\\xd6\\xf1v\\x18\\xd4D>\\x88w\\x1ew\\xdb\\xcaM#\\xb9Br\\x9f3\\x1f\\xaa\\xaf\\x11\\xd9/d\\xb6\\x1aY\\xaf\\xc0\\xbd@\\x18y\\xf4kj\\xbf\\x9cq\\xa2\\xf8\\xa4\\xbcr\\xcc\\xf4\\xab\\xcc\\xe0\\xff\\x8a\\xe41gq\\xafU\\xff\\xf2\\x1b\\xd4\\x0e\\xe6\\xa53\\xb7\\x83\\xff\\xbc\\xdf\\nG\\xafp'\\xc0\\xd7M\\xa9\\xbf\\xceH\\xa8\\xf6k\\xf2;\\x97\\xfc\\xb7\\x05S\\x9a\\x85\\x13\\xdd]j\\x9c\\a\\xf8y\\xb3\\xe6yd\\xde\\xf1\\xbb\\xc1\\xf6\\xf0\\x95\\xef>\\x88\\xbfM\\xedQPo@\\x14\\xfc?`N\\xf0.\\xf1\\x1b\\r]\\xceyL\\xbeo\\x85'#U\\xef\\x8c\\xf6\\xab\\xc2c\\xf4\\xd8\\xd4\\xder./\\x14\\x1f\\xb8\\x17\\r\\xa4\\xcc\\xe2\\x89\\xdeЬ\\xe7w\\xc6\\n\\xe7\\x9e\\xfc\\x03\\xb7\\xdf%+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00Z\\x00\\x8e\\x00\\xdc\\x01\\xa0\\x01\\xe8\\x02\\x14\\x02\\xda\\x03B\\x03\\xb6\\x04\\x04\\x04<\\x04x\\x04\\xec\\x05\\x10\\x058\\x05X\\x05\\xca\\x06\\n\\x06B\\x06\\x90\\x06\\xb8\\x06\\xec\\a\\x80\\a\\xb4\\a\\xd6\\b\\x04\\b@\\b\\x8e\\b\\xd0\\b\\xee\\t4\\v\\f\\vr\\v\\xe0\\f<\\f\\x88\\f\\xba\\r\\\"\\r\\xbc\\r\\xf0\\x0ef\\x0e\\x96\\x0e\\xe8\\x0fd\\x0f\\xe0\\x10\\x0e\\x10<\\x10h\\x10\\xe6\\x11p\\x11\\xbe\\x12\\x02\\x12P\\x12\\x8e\\x12\\xee\\x14\\x06\\x14\\x86\\x15\\x1e\\x15p\\x15\\xd4\\x16:\\x16\\xa8\\x17\\f\\x17.\\x18*\\x18l\\x18\\xb8\\x19x\\x1a\\x00\\x1a\\xd6\\x1b\\x80\\x1c*\\x1cP\\x1c\\x98\\x1c\\xe6\\x1d^\\x1d\\xde\\x1e\\b\\x1e\\x88\\x1e\\xf0\\x1f6\\x1f\\xb4!F\\\"\\x06$\\n$\\xf2%\\xaa&\\x1c&\\xa0'\\x04'\\xbe'\\xec)\\x10)>)\\x84)\\xde*Z+x+\\xb8,.,\\x86,\\xf4-\\x1e-^-~0\\x180b0\\xe01l1\\xbe2\\x1e2J2\\x823:3\\x9e4\\b4J4\\xb85\\xd46\\x1e6\\xfa767\\x967\\xe68\\xae9>9R9\\x909\\xaa:\\x18:\\x94:\\xd2;\\x16;8;\\xbc<2<Z<\\xd8=2=r=\\x94=\\xc6>\\x0e>j>\\xb6?D?\\xc4@0@\\xacA>A\\xd2BlB\\xb8CTC\\xa6D\\xceE\\x14EjF\\\"FnG\\x12GFG`HhH\\xdaIVJ\\x04J\\x8eJ\\xc8K\\x0eL8L\\xa4M\\x10M\\x8aNlN\\x98O\\nOnP\\x9aQ\\x0eQ~R^R\\xb8S\\x04STTjT\\xb4UFU\\xc0V\\x16V\\xa8W\\x18W~W\\xbcX\\bX:X\\xfeY\\xd2Y\\xfeZ*\\\\v\\\\\\xf8]d]\\xa2^*^R^t^\\xd2_D_\\xba_\\xdca(a\\\\a\\x80a\\xe0b\\x14b~dbd\\xa6eZe\\x8ee\\xfef`f~f\\xaag\\x16i\\xd8k(k\\\\l\\x0elLl\\xa8m m|p8p\\xc2q\\x12qrr(rtr\\xa8sZs\\xf0tTt|u\\x1euXu\\xc8u\\xe4v\\x10vJvvw\\x0ew\\x9ew\\xd4xZyPy\\xc8z`z~z\\xce{>|\\xa2}\\x00}T}\\xcc~\\x12~\\x8a\\u007f\\n\\u007fP\\u007fڀ\\n\\x80\\x82\\x80\\xe8\\x81\\x0e\\x814\\x81\\xb6\\x82\\f\\x82p\\x82\\u0383\\xf8\\x84H\\x850\\x85Z\\x85\\x96\\x85\\xb6\\x86^\\x87\\x00\\x88\\x96\\x89\\x04\\x89\\xfa\\x8aJ\\x8a\\U0010b08cF\\x8c\\xba\\x8d<\\x8d^\\x8dr\\x8e\\x18\\x8eƏ \\x90\\xa6\\x91*\\x92\\x8c\\x92\\xb4\\x93\\xac\\x95@\\x95^\\x95\\x82\\x96\\x80\\x98\\x18\\x98X\\x98v\\x99\\\\\\x99v\\x9a\\x1a\\x9aL\\x9a\\x82\\x9c\\\"\\x9d\\xbe\\x9dԞ\\x04\\x9e6\\x9e\\x84\\x9e\\x9e\\x9fJ\\xa0\\x06\\xa0B\\xa0ġ\\xa6\\xa2\\n\\xa2L\\xa2\\xae\\xa3\\x1a\\xa3n\\xa3\\xa0\\xa3\\xf4\\xa4H\\xa4\\xa2\\xa4\\xf8\\xa5\\x94\\xa62\\xa6\\x8a\\xa6\\xe0\\xa7n\\xa8B\\xa8Ʃ0\\xa9\\xba\\xaaV\\xaa\\xf0\\xab\\x1c\\xabĬ\\xc0\\xadd\\xaf\\xf6\\xb4X\\xb5\\x04\\xb5T\\xb6 \\xb7\\\\\\xb8(\\xb9̺\\f\\xbaP\\xba\\x8e\\xba\\xe2\\xbbX\\xbbȼ<\\xbc\\xe4\\xbd\\x18\\xbd\\x80\\xbd\\xac\\xbd\\xe2\\xbe(\\xbe\\xf6\\xbfN\\xc2\\xe2Þ\\xc7>ɴ\\xca\\fʎ\\xcb\\\"\\xce\\xc8\\xce\\xea\\xd1\\xc0\\xd1\\xdc\\xd2\\x02\\xd26Ҝ\\xd32Ӟ\\xd4\\x18\\xd4V\\xd4\\xd8\\xd5\\xf6\\xd6,֔\\xd7\\b\\xd70\\u05ec\\xd9\\xcc\\xda\\x18\\xdaVچ\\xdbN\\xdb\\xc6\\xdc\\\\\\xdc\\xcaݦ\\xde\\x16\\xdf0ߌ\\xdf\\xe8\\xe0&\\xe0\\xce\\xe1\\x88\\xe3V\\xe3\\xa6\\xe4\\\\\\xe4\\xf0\\xe5l\\xe5\\xb2\\xe6\\x14\\xe6\\xc0\\xe7.\\xe7\\xa0\\xe7\\xde\\xe8\\x88\\xe9\\x00\\xe9\\xba\\xea2\\xea\\x8a\\xea\\xc4\\xea\\xf2x\\x9cc`d``\\xdc\\xc9\\xecà\\xce\\x00\\x02L@\\xcc\\b\\x84\\f\\f\\x0e`>\\x03\\x00!\\x13\\x01v\\x00x\\x9c\\xb5\\x92\\xc1N\\xdb@\\x10\\x86\\xff\\xb5\\r\\x11\\xa0F\\x80\\x14\\x90P#m\\xa5\\xaaI\\xaa\\xc6\\t\\x017\\x92o\\x80\\x84zh\\x0f\\x8dP\\xd5k0&\\xb1\\x88\\xbd\\x96w!B\\xbcB\\xfb$p\\xef\\xa1\\xc7>C\\x0f\\xed\\xd3t\\xb2\\x99BS\\x81P+\\xc5+\\xdb\\xdf\\xee\\x8c\\xe7\\x9f\\u07fb\\x00\\x9e\\x8a\\x0f\\x10\\x98^[x\\xcd,P\\xc5gf\\a%|ev\\xf1\\\\<a\\xf6P\\x15\\x19\\xf3\\x02^\\x88\\x9f̋\\xd8r\\xba\\xcc\\xcbx\\xe5\\xdc0\\xaf`\\xd3]b^E\\xc5}Ǽ\\x86\\x92\\xab\\x99\\xd7Qu\\xbf0WP\\xf1\\x04\\xf3\\x06J^\\x8dԅ\\xb7D\\xb3]\\xdbɄ\\x05B\\xbcgvP\\xc65\\xb3\\x8b7\\xf8\\xc6\\xec!\\x14\\x1d\\xe6\\x05\\xbc\\x15\\x9f\\x98\\x17\\xb1\\xeb\\b\\xe6e|tz\\xcc+\\xf0\\x9d\\x1f̫x\\xe9>c^Cٍ\\x98\\xd7\\x11\\xbaW\\xcc\\x15\\xca\\xf9μ\\x81\\xb2\\xb7\\x89\\x03(\\xe4\\xb8D\\x81\\x04\\x03\\fa QG\\x84\\x06\\xbd\\x0f)\\x96ٕ=\\x8c\\x11C\\xd3<\\xa57\\x0eT~Y$\\x83\\xa1\\x91\\xf5\\xa8!\\x0fUf\\xe4\\xde8\\xd6*\\xa5\\xd8C\\x1fI\\x04t\\xef\\x93P\\x9f\\xe2'\\xb4.ѣ\\xf5\\x01\\xce1\\xa2\\xb5\\x82>\\xfd\\xa3\\x90\\f\\xe4~\\xd1\\xcfN\\xb4\\xecŃ\\xf3Q\\x9f\\xc2\\u007fe߮\\xff\\xbfb\\x932|l\\xa3C\\xcf\\xf6#\\xfa\\xcd\\xc0\\xdf\\xee\\xf8\\xedy\\x1aܡѦV\\xbaT\\xa9c\\xf7\\xe1a\\xad\\vz\\x164OlFh\\xd5\\xef\\xac4\\xa8\\xd8N\\xdb\\xef\\x06\\x1dY\\x9f\\x11\\xbd\\x88\\v\\x9d\\xa8,\\x94S7\\x8d;;\\xb3\\x02\\xc1\\x8c\\x91\\xe6}F\\xb8d0uѼuqD\\xa7h\\xd2\\xe1\\xa4\\xdc1j\\xf6?\\xa4TV[\\x1f\\xb9=o\\xbf\\vI\\xea?\\xb2\\rH\\x8a\\xc76c**\\x89\\x15\\x8d\\x11\\xce(ǐ+\\x1c\\rc9\\x8e\\x8fkZ\\xa6J\\x1b\\x99\\xab|\\\"(\\x93HeR\\xc7FR\\x1b\\xd2(5:K\\feO\\x8e\\xb2!)M?\\xa7E\\xe3\\x94}\\xf6g|\\xfaV>\\xa5tcr\\x1d\\xb6Z\\xa7\\xe4\\xac?u\\xe6G*\\xfd\\x97\\xed\\xbe\\u007f{\\xe7qn\\x1f;Hs\\xeb\\xf9\\x17P\\x96\\x02\\xf5\\x00\\x00\\x00x\\x9cuW\\x05\\x94\\xebȕ\\xfd\\xefٖL\\r\\x1ff&?0\\x13f%\\x93\\x81d\\xc2\\xcc\\xcc\\f%\\xa9,U[R\\xe9W\\x95l\\xab\\xc3\\xcc\\xcc\\xcc̼Yf\\xc6,o\\x96\\x99\\x99)\\xb9%\\u06dd\\xce\\xfe\\xbf}\\xfa\\xa8\\xc0R\\xc1\\xab\\xfb\\xee\\xbdu\\x82Ot\\u007f\\xdf\\xfcƉ\\xb3'.\\xf0G_\\xf3\\x8f\\x13LL=\\xeaӀ\\x02\\niH#\\x1aӄ\\xa6\\xb4C\\xbb\\xb4G\\xfbt\\x92N\\xd1i:C\\x17\\xd1\\xc5t\\t]\\x8b\\xceҵ\\xe9:t]\\xbaމ\\xafӥt\\x19]\\x9fn@7\\xa4\\x1bэ\\xe9&tS\\xba\\x19ݜnA\\xb7\\xa4[ѭ)\\xa2\\xdb\\xd0m\\xe9r\\xba\\x1d]AW\\xd2Ut5ݞ\\xee@\\xd7\\xd0\\x1d\\xe9Ntg\\xba\\vݕ\\xeeFw\\xa7{\\xd0=\\xe9^to\\xba\\x0fݗ\\xeeG\\xf7\\xa7\\a\\xd0\\x03\\xe9A\\xf4`z\\b=\\x94\\x1eF\\x0f\\xa7G\\xd0#\\xe9Q\\xf4hz\\f=\\x96\\x1eG\\x8f\\xa7'\\xd0\\x13\\xe9I\\xf4dz\\n=\\x95\\x9eFO\\xa7g\\x90\\xa0\\x98\\x12JIҌ2\\xcaI\\xd1\\x01ͩ\\xa0\\x92*\\xd2T\\xd392d\\xc9QC\\vZҊZ:\\xa4gҳ\\xe8\\xd9\\xf4\\x1cz.=\\x8f\\x9eO/\\xa0\\x17ҋ\\xe8\\xc5\\xf4\\x12z)\\xbd\\x8c^N\\xaf\\xa0Wҫ\\xe8\\xd5\\xf4\\x1az-\\xbd\\x8e^Oo\\xa07қ\\xe8\\xcd\\xf4\\x16z+\\xbd\\x8d\\xdeN\\xef\\xa0wһ\\xe8\\xdd\\xf4\\x1ez/\\xbd\\x8f\\xdeO\\x1f\\xa0\\x0f҇\\xe8\\xc3\\xf4\\x11\\xfa(}\\x8c>N\\x9f\\xa0Oҧ\\xe8\\xd3\\xf4\\x19\\xfa,}\\x8e>O_\\xa0/җ\\xe8\\xcb\\xf4\\x15\\xfa*}\\x17}\\x8d\\xbe\\x9b\\xbe\\x87\\xbe\\x97\\xbe\\x8f\\xbe\\x9f~\\x80~\\x90~\\x88~\\x98~\\x84~\\x94~\\x8c~\\x9c~\\x82~\\x92~\\x8a~\\x9a~\\x86~\\x96~\\x8e~\\x9e~\\x81~\\x91~\\x89\\xbeN\\xbfL\\xbfB\\xbfJ\\xbfF\\xbfN\\xbfA\\xbfI\\xbfEߠߦߡߥߣߧ?\\xa0?\\xa4?\\xa2?\\xa6?\\xa1?\\xa5?\\xa3?\\xa7\\xbf\\xa0\\xbf\\xa4\\xbf\\xa2\\xbf\\xa6\\xbf\\xa1\\xbf\\xa5\\xbf\\xa3\\xbf\\xa7\\u007f\\xa0\\u007f\\xa4\\u007f\\xa2\\u007f\\xa6\\u007f\\xa1\\u007f\\xa5\\u007f\\xa3\\u007f\\xa7\\xff\\xa0\\xff\\xa4\\xff\\xa2\\xff\\xa6\\xff\\xa1\\xff\\xa5o\\xb2\\a\\x00s\\x8f\\xfb<\\xe0\\x80C\\x1e\\xf2\\x88\\xc7<\\xe1)\\xef\\xf0.\\xef\\xf1>\\x9f\\xe4S|\\x9a\\xcf\\xf0E|1_\\xc2\\xd7\\xe2\\xb3|m\\xbe\\x0e_\\x97\\xafǗ\\xf2e|}\\xbe\\x01ߐo\\xc47\\xe6\\x9b\\xf0M\\xf9f|s\\xbe\\x05ߒoŷ\\xe6\\x88o÷\\xe5\\xcb\\xf9v|ŉ\\xcb\\xf8J\\xbe\\x8a\\xaf\\xe6\\xdb\\xf3\\x1d\\xf8\\x1a\\xbe#߉\\xef\\xccw\\xe1\\xbb\\xf2\\xdd\\xf8\\xee|\\x0f\\xbe'ߋ\\xef\\xcd\\xf7\\xe1\\xfb\\xf2\\xfd\\xf8\\xfe\\xfc\\x00~ ?\\x88\\x1f\\xcc\\x0f\\xe1\\x87\\xf2\\xc3\\xf8\\xe1\\xfc\\b~$?\\x8a\\x1f͏\\xe1\\xc7\\xf2\\xe3\\xf8\\xf1\\xfc\\x04~\\\"?\\x89\\x9f\\xccO\\xe1\\xa7\\xf2\\xd3\\xf8\\xe9\\xfc\\f\\x16\\x1cs\\xc2)K\\x9eq\\xc69+>\\xe09\\x17\\\\rŚk>ǆ-;nx\\xc1K^qˇ\\xfcL~\\x16?\\x9b\\x9f\\xc3\\xcf\\xe5\\xe7\\xf1\\xf3\\xf9\\x05\\xfcB~\\x11\\xbf\\x98_\\xc2/\\xe5\\x97\\xf1\\xcb\\xf9\\x15\\xfcJ~\\x15\\xbf\\x9a_ï\\xe5\\xd7\\xf1\\xeb\\xf9\\r\\xfcF~\\x13\\xbf\\x99\\xdf\\xc2o\\xe5\\xb7\\xf1\\xdb\\xf9\\x1d\\xfcN~\\x17\\xbf\\x9b\\xdf\\xc3\\xef\\xe5\\xf7\\xf1\\xfb\\xf9\\x03\\xfcA\\xfe\\x10\\u007f\\x98?\\xc2\\x1f\\xe5\\x8f\\xf1\\xc7\\xf9\\x13\\xfcI\\xfe\\x14\\u007f\\x9a?ß\\xe5\\xcf\\xf1\\xe7\\xf9\\v\\xfcE\\xfe\\x12\\u007fy\\xd7-\\x95s\\xd2D\\xf6\\\\#\\x8cܛ\\x89D\\xc6Z\\xcf7\\xeda\\xa1\\xaa\\xb9LU\\xb5\\x93)\\x977\\xf1\\xa6;\\xdc|5ܾ\\x1e\\xac\\u007f\\x1eժB\\xb7\\xb4n\\xff\\xa8\\xb6\\xf9\\xe4T\\xa6uVȨ.\\x1a\\xbb\\xe9\\xda9ޕM\\xb6SE\\xaa\\x1aof\\x13\\x85\\vJ\\xb1J\\xd2j\\x90\\xbb\\xb2\\xb8\\xba\\x9fX{e/vI\\xd8\\xea\\xc65\\xb1\\xec\\xafT\\x95M\\xfcc\\xbb\\xb2\\xd4\\xe8:֫]\\xebD2\\x8f\\xf4B\\x9aY\\xa1\\x97#U\\xa1#3\\xa2\\ff\\x85J\\xe6\\xa6'\\xd2j\\x14+\\x177\\xc9\\\\\\xba\\xc05e\\\\\\x98\\x9du\\xb1\\x1dj\\xa9\\xaaT/m(*\\f\\xaa\\xd2\\x01\\x16ج\\x86\\xa9Qq\\x1c\\x17r`\\xe7m-\\xc73ݘ\\xf5\\xfb\\x813\\xb2(\\xf4\\x10\\xb38U\\x8b\\x96\\x17\\xf3\\xc1R\\xaaX\\aFV\\xf8\\x1f\\xd5\\\"\\x93\\x18C\\xda\\xcd\\xe2\\xe4*\\xc9E\\x95\\xc9\\xe9B\\x95Rof\\x1d\\xd8\\x02\\xbf\\x8d\\x96ڤ5\\xc2g\\x03]\\xcb\\n\\x93\\xb7\\\"\\xd7:XG\\f\\x03\\xa6\\xa9r;\\xebb\\x1b`ۭ^6\\xb5\\xae\\xa2D\\x99\\xa4\\x90\\x93c]\\xa3\\x14s'J7\\xb6\\x9f\\xaa,۩\\x95L\\xa3Z\\xd58\\xfa\\xba\\xde=\\xd6\\xf21OMS\\x8b\\\"8к,D\\x18K,3\\x91\\xbb\\x9b\\xf2h\\xa1N\\x8ar\\xda=\\xb7\\x11\\xb3\\xb5vj֎S\\xb9P\\xa2r¸\\xb1\\xd5M\\x95&\\x85n\\xd2\\xfe\\x02{\\x0f\\x13\\x9dJ\\xechx`g*M\\x11F#cY\\x04\\xb2\\xac\\x95\\x91\\xfe\\xdc7c\\xf5P\\x9d\\xe4\\b\\x05\\x96Tɥ\\xddq\\x12sW.\\xeaB\\xca\\xe7\\xce\\x05\\xa8\\xe0\\xe0ǶP\\xa9\\xb4yw\\x00@e\\x92\\xf7[Y\\xd4\\x01\\x0e\\x00[\\xd8Bl)\\x8aB\\xba0I\\xa2\\x85\\xb2b\\ae)\\xb0r\\x93\\b\\x93N\\xd0J\\x95M<V\\xfc\\x1b\\xa2\\x94\\xab\\x11\\xca\\xf5\\b\\xbef\\x9dAh\\x82\\x02\\x9f\\xccʝu\\xb1ݲҫ\\\\[7\\xf2\\aY\\x14ʺqܴ\\x16U\\x91\\xda\\xddDW\\x95L\\x1c\\xc2!\\v]\\x0fSa\\xf3\\x04\\xa8\\x1dδ\\xc1\\xc1H\\x19\\x16RTu\\x13\\a\\xfe\\x03\\xdbNm\\xae\\x8c\\xb3\\xaa\\x8a\\x9bb>\\xb1\\xaa\\xac\\x8b6nT\\xe1\\x86\\xc0\\x9ap\\x98x\\xf2\\xed\\xb4\\xaa\\x87\\xcb\\\\8+\\xea:D\\xb0\\x13\\xad\\xaa\\xa0D\\xfa4崍\\x12]ƪ\\x12N\\x9b\\x1d];\\xa4T\\xa9+\\xbfݡ\\a\\x13\\xf6\\xec\\xa6rU\\xe3e'Sk\\x8b\\x00[<H\\xe2\\xdd.\\x0e\\x9546J\\x8a&\\xdeO\\x8c\\x04\\x90\\x17ҏ\\xe6\\xbf\\xe7,\\x1be\\xd9\\x16Z>$\\\"E4\\xfd\\x1ci\\xa5\\xe7X\\x9d\\xad\\xd4\\\\\\x9d\\xf9\\x8e\\xd6&L\\xe3Lb\\xc5\\xda\\xe7\\xdad\\x89n?\\xb9\\x88\\x96\\x81\\x153aT\\x90\\xe4F\\x972\\x9c\\x01\\x023\\xbd\\x1a`\\x95F\\x9c\\xecvZ\\xe1;\\xac\\xb5\\xd0F\\x9a\\x00\\xe1tB\\x0f\\xae\\xbe\\xfc\\xf2z\\x15\\x88R\\x1cj\\xf0\\x82n\\x0e\\x0f\\xc3u\\x06-F\\xb1O\\x9e\\xc8)9\\x9a\\xe1]\\x85\\x0f\\xect\\x93%\\xa2P\\xb2\\xea\\xcb4\\x93C`PI@\\xbe_\\xeat5\\xc5a\\xe0ץ\\xb4XB\\xaf\\xb1\\xf1\\xb46:m\\x12\\x17\\xe5M冥Zu\\xe8\\rl\\x82\\xc4O1C#\\x9d\\xd6.\\x9f\\x1cբ\\xd8\\xd3_!\\xe2\\xf1\\xb2\\x8ee\\xa6p\\xe6&\\\\\\xd6\\x18\\xb7\\xb4\\x81\\xac\\x16ʈA\\xe6Q\\x1av\\xcf(\\vp`\\xa9\\xd4;\\xebbK\\xb5\\xb6\\x125\\b\\xc1\\xedn+Q摵w\\xd4܄\\xf2۹:A\\xc0\\x80\\x04P\\x854\\x83V\\x03\\x97#\\x97\\xcbR*\\x8b\\x03:F\\xaeS\\x1f\\x8c\\xed\\x16\\x03P\\x10rpp\\xae\\xd1F\\xecΌ\\xf4\\a\\x8cU%\\xa2\\xac\\x87N\\x16ҳ\\xe40\\x06\\xe9\\xf9\\x9e>Z\\x8b\\xbet\\xb6\\xed\\xab2\\x8dC\\xb4daڡ\\al\\x82\\t'\\xb6\\xc1Bj\\xbd\\x04l\\xb0\\xfd\\xa3\\xa3*\\xa5tM\\xbd\\u007f|b\\xcf,{\\\"I@j\\n\\xa4\\x14\\xf9\\xd3\\x19\\xa2\\xddX=sC`\\tC\\x88bW\\xccf\\xaaP\\xc2\\xc9n+\\xa1(2\\x8d&\\x8e\\xdb\\xf7\\xee \\xcdL\\xbbE\\xe6\\b\\xe0Grb\\u009d\\xa3Z\\xa4\\xb4\\x1d\\xa0%\\xcdXض,%\\x80:\\x0fE\\x93\\xfa9C\\xe1yI\\xaezbi\\xc1\\xfe\\xa5\\x8e\\x0f\\x90\\x9e!t\\xc0\\xe7O\\x1fe;\\xee \\x14Kc\\xda0.t\\x96I3ڔQ\\xbc\\x1f7\\x00\\xaa\\x06a\\xf9\\xfc1N\\x8e=%\\x81F\\x10\\xc0q\\a\\x13\\x9b\\x88b[-!bӮ\\xea\\xb7\\x06^\\f\\x92\\x1a\\xb3\\x17C\\xafb>\\x1a\\xe3\\xa4q\\xae\\x903e\\xf30\\x8d\\x10\\xf1(\\x05M#\\x82m\\xaa\\xb3\\x10\\xac6\\a\\x14w@\\xd7ʉ\\\"\\xd2\\t\\xc8\\\"\\xec\\x98\\xca\\xe0=_Bzd\\x90\\xea\\x04Z\\xe9\\vp\\xe5Nj\\xc4\\xcc]\\xb1\\xf9fo+V\\x1b\\xec\\x04i+\\xb0\\x97\\xb1\\x14\\x06̢L\\n|\\x9a\\x021\\x1d\\x1f\\xe9\\xfe\\xec\\xd4Q\\xb5\\xc4IIК\\x19w8\\xebF\\x9e\\x1e\\xe5U4S\\xfb\\xc7S\\xc7o(\\xf4p\\x8am:\\xc2\\xecs#沂b\\xe1%9\\x02\\x1aS\\x9cZj'G\\xb5(\\x9bn0\\x8aU.\\x8e\\x01V\\xb4\\xd0PU{6\\x18d\\x06I\\xd8Ϛ\\xa2>uL\\f\\xb6\\x06\\x02t\\x89y\\xa3\\x1c\\x84\\x0f\\xcc\\xe5\\xda\\x1d\\b\\x13\\\"\\x18^\\x87\\x02\\xe5\\x1ah\\xedd]D\\x95v2<\\x90\\xd5\\x1cN`p\\xa0\\xc1G|`G\\aۡ\\x82\\xb9la3&s\\x98\\x03\\xeb\\x85\\v\\xa1<V\\x8f\\xe6a!:\\xec\\xf7\\xbd\\x82\\xf7\\x8bv\\xe6\\xc2\\x12z^9\\x1d\\x82v\\x018;\\\\\\xd3oT\\x0eP1nT\\xaa\\xc4h\\x8f\\xed\\x1e8$(\\xd5aS\\xa9\\x00D*\\x8d\\x0e\\x91Ҟ\\x8fC\\x9f\\x89с\\xedUu٫\\xec5\\x93\\xaa\\x01\\\\\\x9dҕZ\\r\\xbc]\\xb8\\n:V\\xccd\\x1a\\xd6\\x02\\xee\\x02*\\x8e}\\xfa\\x83\\xaf\\xe5\\xa4\\xceElT\\xe2I\\xfed\\x9dk\\x98\\x84U4C\\xeaJX\\x87\\xf9\\xc4G\\x11k\\xf7C\\x05ucs\\x99\\x06u\\xebr\\x8c\\x00:\\x8c|\\xbc=Ey\\x83a\\xe0&\\xa03)~\\xb0\\xba\\x80Fgc\\xd3\\x11\\xb5\\xe7\\x9c\\xd0W=\\x8d\\xd9$/\\xd4jb\\x81\\x9c$\\a(T5\\xb5\\xd2,\\x14\\xb2\\xd9{\\x99\\xd0*/\\x92\\xabq\\xe7^\\xa2\\x1cB\\a3 \\xc5\\\\\\xd4c\\xbcЮ\\xbd\\xdd\\xd6,\\xb4e\\xac\\v4Tw\\xa0eSH4\\x90\\xa1\\x1a\\xb3{9\\x00\\xa7ԅ\\xdcݒ\\x91\\x87\\x04b\\x0e\\xe14\\x83\\x06\\xe2\\xe1&\\x88\\xa4\\x01\\xd1b\\xca6\\x04>\\x10\\xfdt\\xd8X\\xdbT\\x95ȃ\\x85\\x10\\x90\\xb1\\xc1B\\xf9\\xf7;a\\xe8-\\xaa\\xc5\\xdeV-\\xb7\\xf6e\\x99\\x97\\x89\\xdd?\\xf2YQ'\\xb70\\x940\\x8fA\\x8b\\\\\\x94\\xab3\\xeb\\\"Z\\vQ\\x17K\\xf8\\x01\\xe1\\xd7\\xe6\\xcd\\xc1\\xd4{\\x85m\\xa37+ھ?͞\\xb6\\n\\x9eF$n*\\x1a\\xa71\\xf6L\\xad\\xa4\\xe9[\\b\\xe2`\\xd1\\xc8\\x03\\xef'\\x81ga\\x02OFN\\x0f$\\x9c\\x809\\xf9\\x1dL9+D\\xe65\\x05\\xf3B\\xe0\\xc0\\u007f\\x01\\xb6*\\x16\\\"X;\\x91Ẉ\\xec\\xc0\\xb5\\xb5\\xber\\xbc\\x96B\\xbf\\x8c\\x9dοl[CϡF6e0\\xd7\\x06s\\x8f\\x10\\xd0\\xd2C\\xd6\\xecn\\xfc\\xf3&\\x18#\\x98b\\xb8f\\x98\\xa1~\\xaej۫\\xf3zt\\xaeA\\xa6$\\xa2\\xf6nS\\xa4\\xa5\\xec\\x1f`\\x01Ǎ\\\"\\xe2y\\xfa\\xffz\\x84(n\\xcf㮝\\x8b/\\xd0\\x17\\xc9\\xe6\\x82\\xdd\\a\\xf5\\x05FH\\xcf\\xef\\xab\\xd3K.\\xd0\\xe7Y\\xe8\\xfca\\x8dD\\n\\x9e?\\x84\\x15g/\\xd0\\a\\x18 \\t.\\xfd\\u007f\\u007f\\xe9$\\xf5\\xfc9:\\vz\\xd1y݇H\\xf7\\xbe\\x8cE\\x1b\\x82aba\\xe5\\xd0;O\\x9d\\xfaL\\x8c@\\xef^\\x80`Q։\\x95A\\xf6F>G\\xba\\xdc\\xd9;&\\xefkvm\\x8a\\x04\\xc6\\xf1d&\\x90e\\xc8\\x1e\\xec\\v\\xe6\\x11\\xb6~\\xef\\xa8\\a\\x84\\x8d1\\xc6\\a\\xa0\\xa2\\xf5\\x87\\x93\\x12 \\x06\\xe9\\x1b\\b\\xdfT\\x17\\xe9\\xd17\\xfb[\\xd2\\xf0\\x10\\xc0\\x05\\xa7\\xea[\\xe8\\xd5>p\\x06J\\x02\\xe5H\\xd3!\\xfe\\xf4R\\x173\\x80\\tY\\x1d\\v\\aMA\\xdf0צ\\x8aUQ\\x8cJ\\xa1\\x8a$G\\xe6\\x80\\xfc2QC\\x0e\\x82J\\xf9;T\\xcf\\xc8\\xc5\\xd0\\xe6\\xba^\\\"*\\x935\\xca,F\\xc1\\xd5\\xd1\\xcbz\\xa2a\\xdfe\\\\\\xb4\\xbd\\xa5Z\\xf5\\xfd\\xb5i\\xbc\\xa6w#\\xaay0\\x17\\x19\\x94\\x00\\x812s\\\\\\xc0\\xaa~%\\xa1釹ʛ\\x00\\xf3\\xfb\\xd4\\xc3 \\x91'\\xb2V:uV$\\xc0\\xaa\\xedh\\xd3\\\"Y!\\x8fX\\b\\xa2\\x90\\xee$\\x9eL\\xa1ȑ\\xd1\\xe0\\x93\\x8d\\xc4F\\xb1lu\\x95\\xf6\\xe0\\xca\\xcf\\xcc\\xfc-ŶH8\\x95\\xe50\\\\\\xa0O;\\x85G\\xae\\xda\\b\\xe7\\x81H\\x9cY\\xaaC\\xa4\\x85\\x8d\\xf4,\\xf2\\x93&\\xdeeM\\\\\\x0e>\\x8b\\xfc\\x19\\xd9I\\x97\\xeb\\x12\\xbe\\xa0\\x96\\x03\\x91\\xc2\\x1b\\x8c\\xa1\\x18\\x1b\\xea\\x1du\\xa6\\xdd\\\"\\xf4\\xa7\\x13Q\\x81\\x96\\x04\\xac\\xb8\\xf0\\x94\\x01\\xe3?\\v\\xbcy\\xd0v\\f5\\x9d\\xc1K\\xe2z\\xd3K\\xf3b\\x88\\xb7\\xac\\xdf\\xc0\\xc0\\x1f\\xc2*\\xc0\\xb3k\\xa8\\xac\\x14C\\xb5v\\x1b%*\\xb0ޘ\\xa1\\u007f\\x00w\\x89\\xe0\\x83\\xa8\\n\\xd9N\\r>\\xed\\xbc\\vr\\xd4\\xdf\\x12\\x91\\xa3\\x81\\xed\\xb8\\xdc_\\xc4L\\x027$e\\xdf6\\xb0\\rM\\f\\xe6lzMm\\xfb\\x8dţ\\x15\\xa6\\n\\x842q\\x15\\x8f\\xfdIc\\x910\\xdf#8\\x01\\xe7ɧ\\x0e\\xe2f6\\x83\\x17X{u\\xef\\xfd\\x86\\xb8֘NW\\xfd\\xb5\\v\\xc6k\\f\\xff&-\\xf4>\\x01\\xa1\\xfb\\xe8\\x00\\xb7\\xa9\\xf4\\xeaЖ\\u0df6\\xbf\\x14\\x87\\x12\\xe4\\nWf¬\\xf3\\xe4n\\xd4\\xe9\\a\\xe4-\\xdfI\\xb4s .x,)\\x9a\\t\\xaeQQ\\x15\\x81'3ك\\xf3\\x1c`T\\\\\\x83\\xedRAyqy2\\xb8\\xf2\\xecm.\\fQlpO\\aW\\xc2]\\x83\\xa1;\\xe1\\xf5\\x9e\\xed\\xe41\\xb6ڰ>\\x94õ\\xdf\\x02Y\\x99\\x10\\xae\"\n\n// Assets returns go-assets FileSystem\nvar Assets = assets.NewFileSystem(map[string][]string{\"/\": []string{\"gateway.go\", \".DS_Store\", \"Makefile\", \"ipfs.go\", \"threads.go\", \"buckets.go\"}, \"/public\": []string{\".DS_Store\"}, \"/public/css\": []string{\"all.min.css\", \"style.css\"}, \"/public/html\": []string{\"unixfs.gohtml\", \"error.gohtml\", \"confirm.gohtml\", \"index.gohtml\", \"consent.gohtml\", \"404.gohtml\"}, \"/public/img\": []string{\"favicon-16x16.png\", \"hex.svg\", \"favicon.ico\", \".DS_Store\", \"android-chrome-192x192.png\", \"apple-touch-icon.png\", \"android-chrome-512x512.png\", \"site.webmanifest\", \"favicon-32x32.png\"}, \"/public/webfonts\": []string{\"fa-solid-900.ttf\", \"fa-regular-400.svg\", \"fa-regular-400.woff2\", \"fa-solid-900.eot\", \"fa-brands-400.svg\", \"fa-regular-400.woff\", \"fa-brands-400.eot\", \"fa-solid-900.svg\", \"fa-solid-900.woff\", \"fa-regular-400.ttf\", \"fa-solid-900.woff2\", \"fa-brands-400.woff2\", \"fa-brands-400.woff\", \"fa-brands-400.ttf\", \"fa-regular-400.eot\"}}, map[string]*assets.File{\n\t\"/public/html/404.gohtml\": &assets.File{\n\t\tPath:     \"/public/html/404.gohtml\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992779212230),\n\t\tData:     []byte(_Assets4bf0d0667fe4719e513a3edfeb3a25a2377cf2b7),\n\t}, \"/public/img/android-chrome-512x512.png\": &assets.File{\n\t\tPath:     \"/public/img/android-chrome-512x512.png\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992783316491),\n\t\tData:     []byte(_Assets5505a97055e70f2214132a49de39b49ea42721ef),\n\t}, \"/public/webfonts/fa-solid-900.ttf\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-solid-900.ttf\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992827653985),\n\t\tData:     []byte(_Assetsa778db74bb0610978d68bf45c1d84ed40dc5e19e),\n\t}, \"/ipfs.go\": &assets.File{\n\t\tPath:     \"/ipfs.go\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1609278599, 1609278599357970573),\n\t\tData:     []byte(_Assetsb83960ccf65b57d0332e33d148e2165646ceb9bb),\n\t}, \"/public/img/hex.svg\": &assets.File{\n\t\tPath:     \"/public/img/hex.svg\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992786821875),\n\t\tData:     []byte(_Assets747353a94cf1b19b7a2e5c9fbc50b3ea0972f088),\n\t}, \"/public/img/android-chrome-192x192.png\": &assets.File{\n\t\tPath:     \"/public/img/android-chrome-192x192.png\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992782232926),\n\t\tData:     []byte(_Assets8adebf81a81a55248a107972d373b02d60a4d498),\n\t}, \"/public/webfonts/fa-brands-400.svg\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-brands-400.svg\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992799788424),\n\t\tData:     []byte(_Assetsaeddafb109d244dccf51e6a0309f04536e6c7eb7),\n\t}, \"/public/webfonts/fa-solid-900.woff2\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-solid-900.woff2\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992832316200),\n\t\tData:     []byte(_Assetse5228f4473380f8aaf60204d3214f579490bdba3),\n\t}, \"/public/css/all.min.css\": &assets.File{\n\t\tPath:     \"/public/css/all.min.css\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992777614723),\n\t\tData:     []byte(_Assets0f3873af67026ef9adff5293b531a01d11ae6c96),\n\t}, \"/public/html/index.gohtml\": &assets.File{\n\t\tPath:     \"/public/html/index.gohtml\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992781561441),\n\t\tData:     []byte(_Assets131cd67b6dd480f64ec4b1e6dc1172c43a81c7a9),\n\t}, \"/public/img/favicon-32x32.png\": &assets.File{\n\t\tPath:     \"/public/img/favicon-32x32.png\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992784893936),\n\t\tData:     []byte(_Assets73d5f881dc044ff1def628efb1b6c854a3374148),\n\t}, \"/public/webfonts/fa-regular-400.woff2\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-regular-400.woff2\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992812652044),\n\t\tData:     []byte(_Assetsbddb83b9a8840e063a3c00a419998f20584423c9),\n\t}, \"/public/.DS_Store\": &assets.File{\n\t\tPath:     \"/public/.DS_Store\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577566128, 1577566128244292637),\n\t\tData:     []byte(_Assets8d3d84b01d8e875fa96f3fb120e5aef152ba2a3b),\n\t}, \"/public/css/style.css\": &assets.File{\n\t\tPath:     \"/public/css/style.css\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1590182432, 1590182432234715885),\n\t\tData:     []byte(_Assetsdde0973434b88ffc53b81b28400233e4fde8bb40),\n\t}, \"/public/webfonts/fa-solid-900.woff\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-solid-900.woff\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992830580650),\n\t\tData:     []byte(_Assets7f20ca1245bb8b3d9d2ba4abac70f5fb42bab011),\n\t}, \"/public/img/apple-touch-icon.png\": &assets.File{\n\t\tPath:     \"/public/img/apple-touch-icon.png\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992783985567),\n\t\tData:     []byte(_Assetsd02de8458478b9207bcc182c71f64095eebd83f2),\n\t}, \"/public/img/site.webmanifest\": &assets.File{\n\t\tPath:     \"/public/img/site.webmanifest\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992787403694),\n\t\tData:     []byte(_Assets8391991a0f9445efcc483e87a0508f7472f04dab),\n\t}, \"/public/webfonts\": &assets.File{\n\t\tPath:     \"/public/webfonts\",\n\t\tFileMode: 0x800001ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992830919408),\n\t\tData:     nil,\n\t}, \"/public\": &assets.File{\n\t\tPath:     \"/public\",\n\t\tFileMode: 0x800001ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992787562495),\n\t\tData:     nil,\n\t}, \"/public/css\": &assets.File{\n\t\tPath:     \"/public/css\",\n\t\tFileMode: 0x800001ed,\n\t\tMtime:    time.Unix(1590182432, 1590182432234425741),\n\t\tData:     nil,\n\t}, \"/public/html/confirm.gohtml\": &assets.File{\n\t\tPath:     \"/public/html/confirm.gohtml\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992779698102),\n\t\tData:     []byte(_Assets78386ead3fb287ea2e07758fc3d0fe2187e0d0ad),\n\t}, \"/public/img\": &assets.File{\n\t\tPath:     \"/public/img\",\n\t\tFileMode: 0x800001ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992787109221),\n\t\tData:     nil,\n\t}, \"/public/img/favicon.ico\": &assets.File{\n\t\tPath:     \"/public/img/favicon.ico\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992785448672),\n\t\tData:     []byte(_Assets0d77b2008fc5e76d7d489317fc8f0df507d753c5),\n\t}, \"/public/webfonts/fa-regular-400.svg\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-regular-400.svg\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992810235265),\n\t\tData:     []byte(_Assets64f30b43055dd09ec44f8eadb40269023d03229e),\n\t}, \"/public/img/.DS_Store\": &assets.File{\n\t\tPath:     \"/public/img/.DS_Store\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577572179, 1577572179973956094),\n\t\tData:     []byte(_Assetsc8a0243f5b1b2cb8a698f03d938b8a2276eb3240),\n\t}, \"/public/webfonts/fa-solid-900.eot\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-solid-900.eot\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992815475493),\n\t\tData:     []byte(_Assetsc8e5f53dbe9ae4243f36350d1e222609f6af178b),\n\t}, \"/public/webfonts/fa-solid-900.svg\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-solid-900.svg\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992822888483),\n\t\tData:     []byte(_Assets3937419623a4cdffaf5c05b0d497629e127d85b5),\n\t}, \"/gateway.go\": &assets.File{\n\t\tPath:     \"/gateway.go\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1609276829, 1609276829312253728),\n\t\tData:     []byte(_Assetsb289e24e7683deca2454781b8d3914d88103d97a),\n\t}, \"/Makefile\": &assets.File{\n\t\tPath:     \"/Makefile\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992720959638),\n\t\tData:     []byte(_Assets5e70439c4378bfd4d8fad0377484821d8d3176bb),\n\t}, \"/public/html\": &assets.File{\n\t\tPath:     \"/public/html\",\n\t\tFileMode: 0x800001ed,\n\t\tMtime:    time.Unix(1590855336, 1590855336462097125),\n\t\tData:     nil,\n\t}, \"/public/html/error.gohtml\": &assets.File{\n\t\tPath:     \"/public/html/error.gohtml\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992781049299),\n\t\tData:     []byte(_Assets86cd0824fababa1fde259c0e52ec8ca0455e8965),\n\t}, \"/public/html/consent.gohtml\": &assets.File{\n\t\tPath:     \"/public/html/consent.gohtml\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1590855336, 1590855336464350483),\n\t\tData:     []byte(_Assetsee5a7899492dd689fa51716a10baa72c11b0a277),\n\t}, \"/public/webfonts/fa-regular-400.ttf\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-regular-400.ttf\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992811238687),\n\t\tData:     []byte(_Assetsaf1761e86eb6c63bb3e05e2d74c4e2f792ae10b3),\n\t}, \"/public/webfonts/fa-brands-400.woff\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-brands-400.woff\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992804987522),\n\t\tData:     []byte(_Assets2b8ba0ba9ee6d47753727f8c81b09020b5f9249c),\n\t}, \"/public/webfonts/fa-brands-400.woff2\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-brands-400.woff2\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992807486742),\n\t\tData:     []byte(_Assets88d58097382a74c60911983bc1037b4ca4d863cc),\n\t}, \"/public/webfonts/fa-brands-400.ttf\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-brands-400.ttf\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992803191548),\n\t\tData:     []byte(_Assetsd049223eb2ab91ac66001a116d54e31249bb6996),\n\t}, \"/buckets.go\": &assets.File{\n\t\tPath:     \"/buckets.go\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1609276834, 1609276834803151826),\n\t\tData:     []byte(_Assets9af9b32d4979a14fbf6f85fef5e28a54c6ceb4d8),\n\t}, \"/\": &assets.File{\n\t\tPath:     \"/\",\n\t\tFileMode: 0x800001ed,\n\t\tMtime:    time.Unix(1609278616, 1609278616815463805),\n\t\tData:     nil,\n\t}, \"/public/html/unixfs.gohtml\": &assets.File{\n\t\tPath:     \"/public/html/unixfs.gohtml\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1590182432, 1590182432235203654),\n\t\tData:     []byte(_Assetsd05f64fbc9bda08199115722ef3368a3ded9a593),\n\t}, \"/public/img/favicon-16x16.png\": &assets.File{\n\t\tPath:     \"/public/img/favicon-16x16.png\",\n\t\tFileMode: 0x1ed,\n\t\tMtime:    time.Unix(1577812992, 1577812992784417223),\n\t\tData:     []byte(_Assetsd13d7a53abf40be3e0fd76e8a51bb4835b035bb0),\n\t}, \"/public/webfonts/fa-regular-400.woff\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-regular-400.woff\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992812007588),\n\t\tData:     []byte(_Assets9ec4cdb6b9a1b4a014c65fbde9dbb7ca62e478ab),\n\t}, \"/public/webfonts/fa-brands-400.eot\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-brands-400.eot\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992790736776),\n\t\tData:     []byte(_Assets0d82f92ba8c7e829dd63af485d6dfd5cfee1968d),\n\t}, \"/.DS_Store\": &assets.File{\n\t\tPath:     \"/.DS_Store\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577565469, 1577565469198572432),\n\t\tData:     []byte(_Assets2eaf811e78c039402383e125deb093600a999e32),\n\t}, \"/public/webfonts/fa-regular-400.eot\": &assets.File{\n\t\tPath:     \"/public/webfonts/fa-regular-400.eot\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1577812992, 1577812992808492887),\n\t\tData:     []byte(_Assetsbea737c26084085e55f9d5af779b4b5af1c1e4f2),\n\t}, \"/threads.go\": &assets.File{\n\t\tPath:     \"/threads.go\",\n\t\tFileMode: 0x1a4,\n\t\tMtime:    time.Unix(1601056177, 1601056177551998729),\n\t\tData:     []byte(_Assets20bbcb56854340073ddda797ede16b7f86c7d3a3),\n\t}}, \"\")\n"
  },
  {
    "path": "gateway/buckets.go",
    "content": "package gateway\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"net/http\"\n\t\"path\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/gin-gonic/gin\"\n\tassets \"github.com/textileio/go-assets\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\t\"github.com/textileio/textile/v2/api/bucketsd/client\"\n\tbucketsclient \"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\ttdb \"github.com/textileio/textile/v2/threaddb\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\ntype fileSystem struct {\n\t*assets.FileSystem\n}\n\nfunc (f *fileSystem) Exists(prefix, path string) bool {\n\tpth := strings.TrimPrefix(path, prefix)\n\tif pth == \"/\" {\n\t\treturn false\n\t}\n\t_, ok := f.Files[pth]\n\treturn ok\n}\n\nfunc (g *Gateway) renderBucket(c *gin.Context, ctx context.Context, threadID thread.ID, token thread.Token) {\n\trep, err := g.buckets.List(ctx)\n\tif err != nil {\n\t\trenderError(c, http.StatusBadRequest, err)\n\t\treturn\n\t}\n\tlinks := make([]link, len(rep.Roots))\n\tfor i, r := range rep.Roots {\n\t\tvar name string\n\t\tif r.Name != \"\" {\n\t\t\tname = r.Name\n\t\t} else {\n\t\t\tname = r.Key\n\t\t}\n\t\tp := path.Join(\"thread\", threadID.String(), buckets.CollectionName, r.Key)\n\t\tif token.Defined() {\n\t\t\tp += \"?token=\" + string(token)\n\t\t}\n\t\tlinks[i] = link{\n\t\t\tName:  name,\n\t\t\tPath:  p,\n\t\t\tSize:  \"\",\n\t\t\tLinks: \"\",\n\t\t}\n\t}\n\tc.HTML(http.StatusOK, \"/public/html/unixfs.gohtml\", gin.H{\n\t\t\"Title\":   \"Index of \" + path.Join(\"/thread\", threadID.String(), buckets.CollectionName),\n\t\t\"Root\":    \"/\",\n\t\t\"Path\":    \"\",\n\t\t\"Updated\": \"\",\n\t\t\"Back\":    \"\",\n\t\t\"Links\":   links,\n\t})\n}\n\nfunc (g *Gateway) renderBucketPath(c *gin.Context, ctx context.Context, threadID thread.ID, collection, id, pth string, token thread.Token) {\n\tvar buck tdb.Bucket\n\tif err := g.threads.FindByID(ctx, threadID, collection, id, &buck, db.WithTxnToken(token)); err != nil {\n\t\trender404(c)\n\t\treturn\n\t}\n\trep, err := g.buckets.ListPath(ctx, buck.Key, pth)\n\tif err != nil {\n\t\trender404(c)\n\t\treturn\n\t}\n\tif !rep.Item.IsDir {\n\t\tcontentType, r, err := getContentTypeFromPullPath(ctx, g.buckets, buck.Key, pth)\n\t\tif err != nil {\n\t\t\trender404(c)\n\t\t\treturn\n\t\t}\n\t\tc.Writer.Header().Set(\"Content-Type\", contentType)\n\t\tio.Copy(c.Writer, r)\n\t} else {\n\t\tvar base string\n\t\tif g.subdomains {\n\t\t\tbase = buckets.CollectionName\n\t\t} else {\n\t\t\tbase = path.Join(\"thread\", threadID.String(), buckets.CollectionName)\n\t\t}\n\t\tvar links []link\n\t\tfor _, item := range rep.Item.Items {\n\t\t\tpth := path.Join(base, strings.Replace(item.Path, rep.Root.Path, rep.Root.Key, 1))\n\t\t\tif token.Defined() {\n\t\t\t\tpth += \"?token=\" + string(token)\n\t\t\t}\n\t\t\tlinks = append(links, link{\n\t\t\t\tName:  item.Name,\n\t\t\t\tPath:  pth,\n\t\t\t\tSize:  util.ByteCountDecimal(item.Size),\n\t\t\t\tLinks: strconv.Itoa(len(item.Items)),\n\t\t\t})\n\t\t}\n\t\tvar name string\n\t\tif rep.Root.Name != \"\" {\n\t\t\tname = rep.Root.Name\n\t\t} else {\n\t\t\tname = rep.Root.Key\n\t\t}\n\t\troot := strings.Replace(rep.Item.Path, rep.Root.Path, name, 1)\n\t\tback := path.Dir(path.Join(base, strings.Replace(rep.Item.Path, rep.Root.Path, rep.Root.Key, 1)))\n\t\tif token.Defined() {\n\t\t\tback += \"?token=\" + string(token)\n\t\t}\n\t\tc.HTML(http.StatusOK, \"/public/html/unixfs.gohtml\", gin.H{\n\t\t\t\"Title\":   \"Index of /\" + root,\n\t\t\t\"Root\":    \"/\" + root,\n\t\t\t\"Path\":    rep.Item.Path,\n\t\t\t\"Updated\": time.Unix(0, rep.Root.UpdatedAt).String(),\n\t\t\t\"Back\":    back,\n\t\t\t\"Links\":   links,\n\t\t})\n\t}\n}\n\ntype serveBucketFS interface {\n\tGetThread(ctx context.Context, key string) (thread.ID, error)\n\tExists(ctx context.Context, bucket, pth string) (bool, string)\n\tGetPathWithContentType(ctx context.Context, bucket, pth string) (string, io.Reader, error)\n\tValidHost() string\n}\n\ntype bucketFS struct {\n\tclient  *client.Client\n\tkeys    *mdb.IPNSKeys\n\tsession string\n\thost    string\n}\n\nfunc serveBucket(fs serveBucketFS) gin.HandlerFunc {\n\treturn func(c *gin.Context) {\n\t\tkey, err := bucketFromHost(c.Request.Host, fs.ValidHost())\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\n\t\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\t\tdefer cancel()\n\t\tthreadID, err := fs.GetThread(ctx, key)\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t\tctx = common.NewThreadIDContext(ctx, threadID)\n\t\ttoken := thread.Token(c.Query(\"token\"))\n\t\tif token.Defined() {\n\t\t\tctx = thread.NewTokenContext(ctx, token)\n\t\t}\n\n\t\texists, target := fs.Exists(ctx, key, c.Request.URL.Path)\n\t\tif exists {\n\t\t\tc.Writer.WriteHeader(http.StatusOK)\n\t\t\tcontentType, r, err := fs.GetPathWithContentType(ctx, key, c.Request.URL.Path)\n\t\t\tif err != nil {\n\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t} else {\n\t\t\t\tc.Writer.Header().Set(\"Content-Type\", contentType)\n\t\t\t\tio.Copy(c.Writer, r)\n\t\t\t\tc.Abort()\n\t\t\t}\n\t\t} else if target != \"\" {\n\t\t\tcontent := path.Join(c.Request.URL.Path, target)\n\t\t\tc.Writer.WriteHeader(http.StatusOK)\n\t\t\tcontentType, r, err := fs.GetPathWithContentType(ctx, key, content)\n\t\t\tif err != nil {\n\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t} else {\n\t\t\t\tc.Writer.Header().Set(\"Content-Type\", contentType)\n\t\t\t\tio.Copy(c.Writer, r)\n\t\t\t\tc.Abort()\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc (f *bucketFS) GetThread(ctx context.Context, bkey string) (id thread.ID, err error) {\n\tkey, err := f.keys.GetByCid(ctx, bkey)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn key.ThreadID, nil\n}\n\nfunc (f *bucketFS) Exists(ctx context.Context, key, pth string) (ok bool, name string) {\n\tif key == \"\" || pth == \"/\" {\n\t\treturn\n\t}\n\tctx = common.NewSessionContext(ctx, f.session)\n\trep, err := f.client.ListPath(ctx, key, pth)\n\tif err != nil {\n\t\treturn\n\t}\n\tif rep.Item.IsDir {\n\t\tfor _, item := range rep.Item.Items {\n\t\t\tif item.Name == \"index.html\" {\n\t\t\t\treturn false, item.Name\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\treturn true, \"\"\n}\n\nfunc (f *bucketFS) GetPathWithContentType(ctx context.Context, key, pth string) (string, io.Reader, error) {\n\tctx = common.NewSessionContext(ctx, f.session)\n\tcontentType, r, err := getContentTypeFromPullPath(ctx, f.client, key, pth)\n\tif err != nil {\n\t\treturn \"\", nil, err\n\t}\n\treturn contentType, r, nil\n}\n\nfunc (f *bucketFS) ValidHost() string {\n\treturn f.host\n}\n\n// renderWWWBucket renders a bucket as a website.\nfunc (g *Gateway) renderWWWBucket(c *gin.Context, key string) {\n\tctx, cancel := context.WithTimeout(common.NewSessionContext(context.Background(), g.apiSession), handlerTimeout)\n\tdefer cancel()\n\tipnskey, err := g.collections.IPNSKeys.GetByCid(ctx, key)\n\tif err != nil {\n\t\trender404(c)\n\t\treturn\n\t}\n\tctx = common.NewThreadIDContext(ctx, ipnskey.ThreadID)\n\ttoken := thread.Token(c.Query(\"token\"))\n\tif token.Defined() {\n\t\tctx = thread.NewTokenContext(ctx, token)\n\t}\n\n\tbuck := &tdb.Bucket{}\n\tif err := g.threads.FindByID(ctx, ipnskey.ThreadID, buckets.CollectionName, key, &buck, db.WithTxnToken(token)); err != nil {\n\t\trender404(c)\n\t\treturn\n\t}\n\trep, err := g.buckets.ListPath(ctx, buck.Key, \"\")\n\tif err != nil {\n\t\trender404(c)\n\t\treturn\n\t}\n\tfor _, item := range rep.Item.Items {\n\t\tif item.Name == \"index.html\" {\n\t\t\tc.Writer.WriteHeader(http.StatusOK)\n\t\t\tcontentType, r, err := getContentTypeFromPullPath(ctx, g.buckets, buck.Key, item.Name)\n\t\t\tif err != nil {\n\t\t\t\trender404(c)\n\t\t\t}\n\t\t\tc.Writer.Header().Set(\"Content-Type\", contentType)\n\t\t\tio.Copy(c.Writer, r)\n\t\t\treturn\n\t\t}\n\t}\n\trenderError(c, http.StatusNotFound, fmt.Errorf(\"an index.html file was not found in this bucket\"))\n}\n\nfunc getContentTypeFromPullPath(ctx context.Context, client *bucketsclient.Client, buckKey, pth string) (string, io.Reader, error) {\n\tpr, pw := io.Pipe()\n\tgo func() {\n\t\tdefer pw.Close()\n\t\tif err := client.PullPath(ctx, buckKey, pth, pw); err != nil {\n\t\t\tlog.Errorf(\"pulling path: %s\", err)\n\t\t}\n\t}()\n\n\tcontentType, r, err := detectReaderContentType(pr, pth)\n\tif err != nil {\n\t\treturn \"\", nil, fmt.Errorf(\"detecting content-type: %s\", err)\n\t}\n\n\treturn contentType, r, nil\n}\n\nfunc bucketFromHost(host, valid string) (key string, err error) {\n\tparts := strings.SplitN(host, \".\", 2)\n\thostport := parts[len(parts)-1]\n\thostparts := strings.SplitN(hostport, \":\", 2)\n\tif hostparts[0] != valid || valid == \"\" {\n\t\terr = fmt.Errorf(\"invalid bucket host\")\n\t\treturn\n\t}\n\treturn parts[0], nil\n}\n"
  },
  {
    "path": "gateway/gateway.go",
    "content": "package gateway\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"html/template\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/gin-contrib/location\"\n\t\"github.com/gin-contrib/pprof\"\n\t\"github.com/gin-contrib/static\"\n\t\"github.com/gin-gonic/gin\"\n\t\"github.com/ipfs/go-cid\"\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tiface \"github.com/ipfs/interface-go-ipfs-core\"\n\tisd \"github.com/jbenet/go-is-domain\"\n\t\"github.com/libp2p/go-libp2p-core/peer\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\tmbase \"github.com/multiformats/go-multibase\"\n\t\"github.com/rs/cors\"\n\tgincors \"github.com/rs/cors/wrapper/gin\"\n\tthreadsclient \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/broadcast\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\tbucketsclient \"github.com/textileio/textile/v2/api/bucketsd/client\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"golang.org/x/time/rate\"\n\t\"google.golang.org/grpc\"\n)\n\nvar log = logging.Logger(\"gateway\")\n\nconst handlerTimeout = time.Minute\n\nfunc init() {\n\tgin.SetMode(gin.ReleaseMode)\n}\n\n// link is used for Unixfs directory templates.\ntype link struct {\n\tName  string\n\tPath  string\n\tSize  string\n\tLinks string\n}\n\n// Gateway provides HTTP-based access to Textile.\ntype Gateway struct {\n\tserver        *http.Server\n\taddr          ma.Multiaddr\n\turl           string\n\tsubdomains    bool\n\tbucketsDomain string\n\n\tcollections *mdb.Collections\n\tapiSession  string\n\tthreads     *threadsclient.Client\n\tbuckets     *bucketsclient.Client\n\thub         bool\n\n\tipfs iface.CoreAPI\n\n\temailSessionBus *broadcast.Broadcaster\n\n\tmaxEventsPerSec int\n\tmaxBurstSize    int\n}\n\n// Config defines the gateway configuration.\ntype Config struct {\n\tAddr            ma.Multiaddr\n\tURL             string\n\tSubdomains      bool\n\tBucketsDomain   string\n\tAPIAddr         ma.Multiaddr\n\tAPISession      string\n\tCollections     *mdb.Collections\n\tIPFSClient      iface.CoreAPI\n\tEmailSessionBus *broadcast.Broadcaster\n\tMaxEventsPerSec int\n\tMaxBurstSize    int\n\tHub             bool\n\tDebug           bool\n}\n\n// NewGateway returns a new gateway.\nfunc NewGateway(conf Config) (*Gateway, error) {\n\tif conf.Debug {\n\t\tif err := tutil.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"gateway\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tapiTarget, err := tutil.TCPAddrFromMultiAddr(conf.APIAddr)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\topts := []grpc.DialOption{\n\t\tgrpc.WithInsecure(),\n\t\tgrpc.WithPerRPCCredentials(common.Credentials{}),\n\t}\n\ttc, err := threadsclient.NewClient(apiTarget, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbc, err := bucketsclient.NewClient(apiTarget, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif conf.MaxEventsPerSec < 1 {\n\t\tconf.MaxEventsPerSec = 1000\n\t}\n\tif conf.MaxBurstSize < 1 {\n\t\tconf.MaxBurstSize = 20\n\t}\n\n\treturn &Gateway{\n\t\taddr:            conf.Addr,\n\t\turl:             conf.URL,\n\t\tsubdomains:      conf.Subdomains,\n\t\tbucketsDomain:   conf.BucketsDomain,\n\t\tcollections:     conf.Collections,\n\t\tapiSession:      conf.APISession,\n\t\tthreads:         tc,\n\t\tbuckets:         bc,\n\t\thub:             conf.Hub,\n\t\tipfs:            conf.IPFSClient,\n\t\temailSessionBus: conf.EmailSessionBus,\n\t\tmaxEventsPerSec: conf.MaxEventsPerSec,\n\t\tmaxBurstSize:    conf.MaxBurstSize,\n\t}, nil\n}\n\n// Start the gateway.\nfunc (g *Gateway) Start() {\n\taddr, err := tutil.TCPAddrFromMultiAddr(g.addr)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\trouter := gin.Default()\n\n\ttemp, err := loadTemplate()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\trouter.SetHTMLTemplate(temp)\n\n\trouter.Use(throttle(g.maxEventsPerSec, g.maxBurstSize))\n\trouter.Use(location.Default())\n\trouter.Use(static.Serve(\"\", &fileSystem{Assets}))\n\trouter.Use(serveBucket(&bucketFS{\n\t\tclient:  g.buckets,\n\t\tkeys:    g.collections.IPNSKeys,\n\t\tsession: g.apiSession,\n\t\thost:    g.bucketsDomain,\n\t}))\n\trouter.Use(gincors.New(cors.Options{}))\n\tpprof.Register(router)\n\n\trouter.GET(\"/health\", func(c *gin.Context) {\n\t\tc.Writer.WriteHeader(http.StatusOK)\n\t})\n\n\trouter.GET(\"/thread/:thread/:collection\", g.subdomainOptionHandler, g.collectionHandler)\n\trouter.GET(\"/thread/:thread/:collection/:id\", g.subdomainOptionHandler, g.instanceHandler)\n\trouter.GET(\"/thread/:thread/:collection/:id/*path\", g.subdomainOptionHandler, g.instanceHandler)\n\n\trouter.GET(\"/ipfs/:root\", g.subdomainOptionHandler, g.ipfsHandler)\n\trouter.GET(\"/ipfs/:root/*path\", g.subdomainOptionHandler, g.ipfsHandler)\n\trouter.GET(\"/ipns/:key\", g.subdomainOptionHandler, g.ipnsHandler)\n\trouter.GET(\"/ipns/:key/*path\", g.subdomainOptionHandler, g.ipnsHandler)\n\trouter.GET(\"/p2p/:key\", g.subdomainOptionHandler, g.p2pHandler)\n\trouter.GET(\"/ipld/:root\", g.subdomainOptionHandler, g.ipldHandler)\n\trouter.GET(\"/ipld/:root/*path\", g.subdomainOptionHandler, g.ipldHandler)\n\n\tif g.hub {\n\t\trouter.GET(\"/dashboard/:username\", g.dashboardHandler)\n\t\trouter.GET(\"/confirm/:secret\", g.confirmEmail)\n\t\trouter.GET(\"/consent/:invite\", g.consentInvite)\n\t}\n\n\trouter.NoRoute(g.subdomainHandler)\n\n\tg.server = &http.Server{\n\t\tAddr:    addr,\n\t\tHandler: router,\n\t}\n\tgo func() {\n\t\tif err := g.server.ListenAndServe(); err != nil && err != http.ErrServerClosed {\n\t\t\tlog.Fatalf(\"gateway error: %s\", err)\n\t\t}\n\t\tlog.Info(\"gateway was shutdown\")\n\t}()\n\tlog.Infof(\"gateway listening at %s\", g.server.Addr)\n}\n\n// loadTemplate loads HTML templates.\nfunc loadTemplate() (*template.Template, error) {\n\tt := template.New(\"\")\n\tfor name, file := range Assets.Files {\n\t\tif file.IsDir() || !strings.HasSuffix(name, \".gohtml\") {\n\t\t\tcontinue\n\t\t}\n\t\th, err := ioutil.ReadAll(file)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tt, err = t.New(name).Parse(string(h))\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn t, nil\n}\n\n// Addr returns the gateway's address.\nfunc (g *Gateway) Addr() string {\n\treturn g.server.Addr\n}\n\n// Stop the gateway.\nfunc (g *Gateway) Stop() error {\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second)\n\tdefer cancel()\n\tif err := g.server.Shutdown(ctx); err != nil {\n\t\treturn err\n\t}\n\tif err := g.threads.Close(); err != nil {\n\t\treturn err\n\t}\n\tif err := g.buckets.Close(); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// subdomainOptionHandler redirects valid namespaces to subdomains if the option is enabled.\nfunc (g *Gateway) subdomainOptionHandler(c *gin.Context) {\n\tif !g.subdomains {\n\t\treturn\n\t}\n\tloc, ok := g.toSubdomainURL(c.Request)\n\tif !ok {\n\t\trender404(c)\n\t\treturn\n\t}\n\n\t// See security note https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L105\n\tc.Request.Header.Set(\"Clear-Site-Data\", \"\\\"cookies\\\", \\\"storage\\\"\")\n\n\tc.Redirect(http.StatusPermanentRedirect, loc)\n}\n\n// dashboardHandler renders a dev or org dashboard.\nfunc (g *Gateway) dashboardHandler(c *gin.Context) {\n\trender404(c)\n}\n\n// confirmEmail verifies an emailed secret.\nfunc (g *Gateway) confirmEmail(c *gin.Context) {\n\tif err := g.emailSessionBus.Send(c.Param(\"secret\")); err != nil {\n\t\trenderError(c, http.StatusInternalServerError, err)\n\t\treturn\n\t}\n\tc.HTML(http.StatusOK, \"/public/html/confirm.gohtml\", nil)\n}\n\n// consentInvite marks an invite as accepted.\n// If the associated email belongs to an existing user, they will be added to the org.\nfunc (g *Gateway) consentInvite(c *gin.Context) {\n\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\tdefer cancel()\n\tinvite, err := g.collections.Invites.Get(ctx, c.Param(\"invite\"))\n\tif err != nil {\n\t\tif errors.Is(err, mongo.ErrNoDocuments) {\n\t\t\trender404(c)\n\t\t} else {\n\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t}\n\t\treturn\n\t}\n\tif !invite.Accepted {\n\t\tif time.Now().After(invite.ExpiresAt) {\n\t\t\tif err := g.collections.Invites.Delete(ctx, invite.Token); err != nil {\n\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t} else {\n\t\t\t\trenderError(c, http.StatusPreconditionFailed, fmt.Errorf(\"this invitation has expired\"))\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tdev, err := g.collections.Accounts.GetByUsernameOrEmail(ctx, invite.EmailTo)\n\t\tif err != nil {\n\t\t\tif errors.Is(err, mongo.ErrNoDocuments) {\n\t\t\t\tif err := g.collections.Invites.Accept(ctx, invite.Token); err != nil {\n\t\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t\tif dev != nil {\n\t\t\tif err := g.collections.Accounts.AddMember(ctx, invite.Org, mdb.Member{\n\t\t\t\tKey:      dev.Key,\n\t\t\t\tUsername: dev.Username,\n\t\t\t\tRole:     mdb.OrgMember,\n\t\t\t}); err != nil {\n\t\t\t\tif err == mongo.ErrNoDocuments {\n\t\t\t\t\tif err := g.collections.Invites.Delete(ctx, invite.Token); err != nil {\n\t\t\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\trenderError(c, http.StatusNotFound, fmt.Errorf(\"org not found\"))\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif err = g.collections.Invites.Delete(ctx, invite.Token); err != nil {\n\t\t\t\trenderError(c, http.StatusInternalServerError, err)\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n\tc.HTML(http.StatusOK, \"/public/html/consent.gohtml\", gin.H{\n\t\t\"Org\":   invite.Org,\n\t\t\"Email\": invite.EmailTo,\n\t})\n}\n\n// render404 renders the 404 template.\nfunc render404(c *gin.Context) {\n\tc.HTML(http.StatusNotFound, \"/public/html/404.gohtml\", nil)\n}\n\n// renderError renders the error template.\nfunc renderError(c *gin.Context, code int, err error) {\n\tc.HTML(code, \"/public/html/error.gohtml\", gin.H{\n\t\t\"Code\":  code,\n\t\t\"Error\": formatError(err),\n\t})\n}\n\n// formatError formats a go error for browser display.\nfunc formatError(err error) string {\n\twords := strings.SplitN(err.Error(), \" \", 2)\n\twords[0] = strings.Title(words[0])\n\treturn strings.Join(words, \" \") + \".\"\n}\n\n// subdomainHandler handles requests by parsing the request subdomain.\nfunc (g *Gateway) subdomainHandler(c *gin.Context) {\n\tc.Status(200)\n\n\tparts := strings.Split(c.Request.Host, \".\")\n\tkey := parts[0]\n\n\t// Render buckets if the domain matches\n\tif g.bucketsDomain != \"\" && strings.HasSuffix(c.Request.Host, g.bucketsDomain) {\n\t\tg.renderWWWBucket(c, key)\n\t\treturn\n\t}\n\n\tif len(parts) < 3 {\n\t\trender404(c)\n\t\treturn\n\t}\n\tns := parts[1]\n\tif !isSubdomainNamespace(ns) {\n\t\trender404(c)\n\t\treturn\n\t}\n\tswitch ns {\n\tcase \"ipfs\":\n\t\tg.renderIPFSPath(c, \"ipfs/\"+key, \"/ipfs/\"+key+c.Request.URL.Path)\n\tcase \"ipns\":\n\t\tg.renderIPNSKey(c, key, c.Request.URL.Path)\n\tcase \"p2p\":\n\t\tg.renderP2PKey(c, key)\n\tcase \"ipld\":\n\t\tg.renderIPLDPath(c, key+c.Request.URL.Path)\n\tcase \"thread\":\n\t\tthreadID, err := thread.Decode(key)\n\t\tif err != nil {\n\t\t\trenderError(c, http.StatusBadRequest, fmt.Errorf(\"invalid thread ID\"))\n\t\t\treturn\n\t\t}\n\t\tparts := strings.SplitN(strings.TrimSuffix(c.Request.URL.Path, \"/\"), \"/\", 4)\n\t\tswitch len(parts) {\n\t\tcase 1:\n\t\t\t// @todo: Render something at the thread root\n\t\t\trender404(c)\n\t\tcase 2:\n\t\t\tif parts[1] != \"\" {\n\t\t\t\tg.renderCollection(c, threadID, parts[1])\n\t\t\t} else {\n\t\t\t\trender404(c)\n\t\t\t}\n\t\tcase 3:\n\t\t\tg.renderInstance(c, threadID, parts[1], parts[2], \"\")\n\t\tcase 4:\n\t\t\tg.renderInstance(c, threadID, parts[1], parts[2], parts[3])\n\t\tdefault:\n\t\t\trender404(c)\n\t\t}\n\tdefault:\n\t\trender404(c)\n\t}\n}\n\n// Modified from https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L251\nfunc isSubdomainNamespace(ns string) bool {\n\tswitch ns {\n\tcase \"ipfs\", \"ipns\", \"p2p\", \"ipld\", \"thread\":\n\t\treturn true\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// Copied from https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L260\nfunc isPeerIDNamespace(ns string) bool {\n\tswitch ns {\n\tcase \"ipns\", \"p2p\":\n\t\treturn true\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// Converts a hostname/path to a subdomain-based URL, if applicable.\n// Modified from https://github.com/ipfs/go-ipfs/blob/dbfa7bf2b216bad9bec1ff66b1f3814f4faac31e/core/corehttp/hostname.go#L270\nfunc (g *Gateway) toSubdomainURL(r *http.Request) (redirURL string, ok bool) {\n\tvar ns, rootID, rest string\n\n\tquery := r.URL.RawQuery\n\tparts := strings.SplitN(r.URL.Path, \"/\", 4)\n\tsafeRedirectURL := func(in string) (out string, ok bool) {\n\t\tsafeURI, err := url.ParseRequestURI(in)\n\t\tif err != nil {\n\t\t\treturn \"\", false\n\t\t}\n\t\treturn safeURI.String(), true\n\t}\n\n\tswitch len(parts) {\n\tcase 4:\n\t\trest = parts[3]\n\t\tfallthrough\n\tcase 3:\n\t\tns = parts[1]\n\t\trootID = parts[2]\n\tdefault:\n\t\treturn \"\", false\n\t}\n\n\tif !isSubdomainNamespace(ns) {\n\t\treturn \"\", false\n\t}\n\n\t// add prefix if query is present\n\tif query != \"\" {\n\t\tquery = \"?\" + query\n\t}\n\n\t// Normalize problematic PeerIDs (eg. ed25519+identity) to CID representation\n\tif isPeerIDNamespace(ns) && !isd.IsDomain(rootID) {\n\t\tpeerID, err := peer.Decode(rootID)\n\t\t// Note: PeerID CIDv1 with protobuf multicodec will fail, but we fix it\n\t\t// in the next block\n\t\tif err == nil {\n\t\t\trootID = peer.ToCid(peerID).String()\n\t\t}\n\t}\n\n\t// If rootID is a CID, ensure it uses DNS-friendly text representation\n\tif rootCid, err := cid.Decode(rootID); err == nil {\n\t\tmulticodec := rootCid.Type()\n\n\t\t// PeerIDs represented as CIDv1 are expected to have libp2p-key\n\t\t// multicodec (https://github.com/libp2p/specs/pull/209).\n\t\t// We ease the transition by fixing multicodec on the fly:\n\t\t// https://github.com/ipfs/go-ipfs/issues/5287#issuecomment-492163929\n\t\tif isPeerIDNamespace(ns) && multicodec != cid.Libp2pKey {\n\t\t\tmulticodec = cid.Libp2pKey\n\t\t}\n\n\t\t// if object turns out to be a valid CID,\n\t\t// ensure text representation used in subdomain is CIDv1 in Base32\n\t\t// https://github.com/ipfs/in-web-browsers/issues/89\n\t\trootID, err = cid.NewCidV1(multicodec, rootCid.Hash()).StringOfBase(mbase.Base32)\n\t\tif err != nil {\n\t\t\t// should not error, but if it does, its clealy not possible to\n\t\t\t// produce a subdomain URL\n\t\t\treturn \"\", false\n\t\t}\n\t}\n\n\turlparts := strings.Split(g.url, \"://\")\n\tif len(urlparts) < 2 {\n\t\treturn \"\", false\n\t}\n\tscheme := urlparts[0]\n\thost := urlparts[1]\n\treturn safeRedirectURL(fmt.Sprintf(\"%s://%s.%s.%s/%s%s\", scheme, rootID, ns, host, rest, query))\n}\n\nfunc throttle(maxEventsPerSec int, maxBurstSize int) gin.HandlerFunc {\n\tlimiter := rate.NewLimiter(rate.Limit(maxEventsPerSec), maxBurstSize)\n\n\treturn func(context *gin.Context) {\n\t\tif limiter.Allow() {\n\t\t\tcontext.Next()\n\t\t\treturn\n\t\t}\n\n\t\tcontext.Error(errors.New(\"limit exceeded\"))\n\t\tcontext.AbortWithStatus(http.StatusTooManyRequests)\n\t}\n}\n"
  },
  {
    "path": "gateway/ipfs.go",
    "content": "package gateway\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"net/http\"\n\tgopath \"path\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/gin-gonic/gin\"\n\t\"github.com/gin-gonic/gin/render\"\n\tfiles \"github.com/ipfs/go-ipfs-files\"\n\tiface \"github.com/ipfs/interface-go-ipfs-core\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/libp2p/go-libp2p-core/peer\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\nfunc (g *Gateway) ipfsHandler(c *gin.Context) {\n\tbase := fmt.Sprintf(\"ipfs/%s\", c.Param(\"root\"))\n\tpth := fmt.Sprintf(\"/%s%s\", base, c.Param(\"path\"))\n\tg.renderIPFSPath(c, base, pth)\n}\n\nfunc (g *Gateway) renderIPFSPath(c *gin.Context, base, pth string) {\n\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\tdefer cancel()\n\tpth = strings.TrimSuffix(pth, \"/\")\n\tf, err := g.openPath(ctx, path.New(pth))\n\tif err != nil {\n\t\tif err == iface.ErrIsDir {\n\t\t\tvar root, dir, back string\n\t\t\tparts := strings.Split(pth, \"/\")\n\t\t\tif len(parts) > 2 {\n\t\t\t\troot = strings.Join(parts[:3], \"/\")\n\t\t\t\tdir = strings.Join(parts[3:], \"/\")\n\t\t\t\tback = gopath.Dir(dir)\n\t\t\t}\n\t\t\tif dir == \"\" {\n\t\t\t\tback = \"\"\n\t\t\t}\n\t\t\tif !g.subdomains {\n\t\t\t\tdir = gopath.Join(base, dir)\n\t\t\t\tif back != \"\" {\n\t\t\t\t\tback = gopath.Join(base, back)\n\t\t\t\t}\n\t\t\t}\n\t\t\tlctx, lcancel := context.WithTimeout(context.Background(), handlerTimeout)\n\t\t\tdefer lcancel()\n\t\t\tilinks, err := g.ipfs.Object().Links(lctx, path.New(pth))\n\t\t\tif err != nil {\n\t\t\t\trenderError(c, http.StatusNotFound, err)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tvar links []link\n\t\t\tfor _, l := range ilinks {\n\t\t\t\tlinks = append(links, link{\n\t\t\t\t\tName: l.Name,\n\t\t\t\t\tPath: gopath.Join(dir, l.Name),\n\t\t\t\t\tSize: util.ByteCountDecimal(int64(l.Size)),\n\t\t\t\t})\n\t\t\t}\n\t\t\tvar index string\n\t\t\tif strings.HasPrefix(base, \"ipns\") {\n\t\t\t\tindex = gopath.Join(\"/\", base, dir)\n\t\t\t} else {\n\t\t\t\tindex = gopath.Join(root, dir)\n\t\t\t}\n\t\t\tif !g.subdomains {\n\t\t\t\tdir = strings.TrimPrefix(strings.Replace(dir, base, \"\", 1), \"/\")\n\t\t\t}\n\t\t\tparams := gin.H{\n\t\t\t\t\"Title\":   \"Index of \" + index,\n\t\t\t\t\"Root\":    \"/\" + dir,\n\t\t\t\t\"Path\":    pth,\n\t\t\t\t\"Updated\": \"\",\n\t\t\t\t\"Back\":    strings.TrimPrefix(back, \"/\"),\n\t\t\t\t\"Links\":   links,\n\t\t\t}\n\t\t\tc.HTML(http.StatusOK, \"/public/html/unixfs.gohtml\", params)\n\t\t\treturn\n\t\t}\n\n\t\trenderError(c, http.StatusBadRequest, err)\n\t\treturn\n\t}\n\tdefer f.Close()\n\n\tcontentType, r, err := detectReaderContentType(f, pth)\n\tif err != nil {\n\t\trenderError(c, http.StatusInternalServerError, fmt.Errorf(\"detecting mime: %s\", err))\n\t\treturn\n\t}\n\n\tc.Writer.Header().Set(\"Content-Type\", contentType)\n\tc.Render(200, render.Reader{ContentLength: -1, Reader: r})\n}\n\n// detectReaderContentType detects the best available mime type for some bytes.\n// Note: file extension is used here due to the inability to detect some known\n// content types from content alone, those include CSS.\nfunc detectReaderContentType(r io.Reader, pth string) (string, io.Reader, error) {\n\tvar buf [512]byte\n\tn, err := io.ReadAtLeast(r, buf[:], len(buf))\n\tif err != nil && err != io.ErrUnexpectedEOF {\n\t\treturn \"\", nil, fmt.Errorf(\"reading reader: %s\", err)\n\t}\n\n\treader := io.MultiReader(bytes.NewReader(buf[:n]), r)\n\n\text := filepath.Ext(pth)\n\tswitch ext {\n\tcase \".htm\", \".html\":\n\t\treturn \"text/html\", reader, nil\n\tcase \".css\":\n\t\treturn \"text/css\", reader, nil\n\tcase \".js\":\n\t\treturn \"application/javascript\", reader, nil\n\tcase \".json\":\n\t\treturn \"application/json\", reader, nil\n\tcase \".svg\":\n\t\treturn \"image/svg+xml\", reader, nil\n\tcase \".txt\", \".md\":\n\t\treturn \"text/plain\", reader, nil\n\tdefault:\n\t\treturn http.DetectContentType(buf[:]), reader, nil\n\t}\n}\n\nfunc (g *Gateway) openPath(ctx context.Context, pth path.Path) (io.ReadCloser, error) {\n\tf, err := g.ipfs.Unixfs().Get(ctx, pth)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar file files.File\n\tswitch f := f.(type) {\n\tcase files.File:\n\t\tfile = f\n\tcase files.Directory:\n\t\treturn nil, iface.ErrIsDir\n\tdefault:\n\t\treturn nil, iface.ErrNotSupported\n\t}\n\treturn file, nil\n}\n\nfunc (g *Gateway) ipnsHandler(c *gin.Context) {\n\tg.renderIPNSKey(c, c.Param(\"key\"), c.Param(\"path\"))\n}\n\nfunc (g *Gateway) renderIPNSKey(c *gin.Context, key, pth string) {\n\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\tdefer cancel()\n\troot, err := g.ipfs.Name().Resolve(ctx, key)\n\tif err != nil {\n\t\trenderError(c, http.StatusNotFound, err)\n\t\treturn\n\t}\n\tbase := fmt.Sprintf(\"ipns/%s\", key)\n\tg.renderIPFSPath(c, base, gopath.Join(root.String(), pth))\n}\n\nfunc (g *Gateway) p2pHandler(c *gin.Context) {\n\tg.renderP2PKey(c, c.Param(\"key\"))\n}\n\nfunc (g *Gateway) renderP2PKey(c *gin.Context, key string) {\n\tpid, err := peer.Decode(key)\n\tif err != nil {\n\t\trenderError(c, http.StatusBadRequest, err)\n\t\treturn\n\t}\n\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\tdefer cancel()\n\tinfo, err := g.ipfs.Dht().FindPeer(ctx, pid)\n\tif err != nil {\n\t\trenderError(c, http.StatusNotFound, err)\n\t\treturn\n\t}\n\tc.JSON(http.StatusOK, info)\n}\n\nfunc (g *Gateway) ipldHandler(c *gin.Context) {\n\tpth := fmt.Sprintf(\"%s%s\", c.Param(\"root\"), strings.TrimSuffix(c.Param(\"path\"), \"/\"))\n\tg.renderP2PKey(c, pth)\n}\n\nfunc (g *Gateway) renderIPLDPath(c *gin.Context, pth string) {\n\tctx, cancel := context.WithTimeout(context.Background(), handlerTimeout)\n\tdefer cancel()\n\tnode, err := g.ipfs.Object().Get(ctx, path.New(pth))\n\tif err != nil {\n\t\trenderError(c, http.StatusNotFound, err)\n\t\treturn\n\t}\n\tc.JSON(http.StatusOK, node)\n}\n"
  },
  {
    "path": "gateway/public/css/style.css",
    "content": "html {\n    box-sizing: border-box;\n    margin: 0;\n    padding: 0;\n    height: 100%;\n}\n\n*, *:before, *:after {\n    box-sizing: inherit;\n}\n\nbody {\n    margin: 0;\n    padding: 2em;\n    font-family: monospace, sans-serif;\n    color: #666666;\n    background-color: #222222;\n    height: 100%;\n}\n\n.logo {\n    position: absolute;\n}\n\n.title {\n    line-height: 2em;\n    font-size: 0.9em;\n    margin-top: 5em;\n    margin-bottom: 1em;\n}\n\n.title span.yellow {\n    color: #FFCE00;\n}\n\n.updated {\n    font-size: 0.8em;\n    margin: 2em 0 1em;\n}\n\na {\n    color: #FFB6D5;\n    text-decoration: none;\n}\n\nul, li {\n    list-style: none;\n    width: 100%;\n}\n\nul {\n    margin: 0;\n    padding: 0;\n}\n\nli {\n    line-height: 2em;\n    font-size: 0.9em;\n}\n\nli span.right {\n    float: right;\n}\n\nli:nth-child(even) {\n    background: rgba(255,182,213,0.05);\n}\n\nli:nth-child(odd) {\n    background: none;\n}\n\n.aligner {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    flex-direction: column;\n    height: 100%;\n}\n\n.aligner-item {\n    max-width: 60%;\n}\n\n.aligner-item p {\n    text-align: center;\n    line-height: 1.5em;\n}\n\n.icon-big {\n    font-size: 4em;\n}\n"
  },
  {
    "path": "gateway/public/html/404.gohtml",
    "content": "{{template \"header\" \"404 Not Found\"}}\n<div class=\"aligner\">\n    <div class=\"aligner-item\">\n        <i class=\"fas fa-sad-cry icon-big\"></i>\n    </div>\n    <div class=\"aligner-item\">\n        <p>Nothing to see here!</p>\n    </div>\n</div>\n{{template \"footer\"}}\n"
  },
  {
    "path": "gateway/public/html/confirm.gohtml",
    "content": "{{template \"header\" \"Email Address Confirmed\"}}\n<div class=\"aligner\">\n    <div class=\"aligner-item\">\n        <i class=\"fas fa-grin-stars icon-big\"></i>\n    </div>\n    <div class=\"aligner-item\">\n        <p>You have been correctly authenticated. You may now close this window!</p>\n    </div>\n</div>\n{{template \"footer\"}}\n"
  },
  {
    "path": "gateway/public/html/consent.gohtml",
    "content": "{{template \"header\" \"Invite Accepted\"}}\n<div class=\"aligner\">\n    <div class=\"aligner-item\">\n        <i class=\"fas fa-laugh-beam icon-big\"></i>\n    </div>\n    <div class=\"aligner-item\">\n        <p><b>{{.Email}}</b> is now a member of the <b>{{.Org}}</b> organization.</p>\n        <p>If you haven't already, <a href=\"https://github.com/textileio/textile/releases\">download the Hub CLI</a> and initialize a new account. Check out <a href=\"https://github.com/textileio/textile\">the docs</a> for more. You may now close this window!</p>\n    </div>\n</div>\n{{template \"footer\"}}\n"
  },
  {
    "path": "gateway/public/html/error.gohtml",
    "content": "{{template \"header\" \"Oops!\"}}\n<div class=\"aligner\">\n    <div class=\"aligner-item\">\n        <i class=\"fas fa-grimace icon-big\"></i>\n    </div>\n    <div class=\"aligner-item\">\n        <p>{{.Code}} Error: {{.Error}}</p>\n    </div>\n</div>\n{{template \"footer\"}}\n"
  },
  {
    "path": "gateway/public/html/index.gohtml",
    "content": "{{define \"header\"}}\n<!doctype html>\n    <html lang=\"en\">\n        <head>\n            <meta charset=\"utf-8\">\n            <title>{{.}}</title>\n            <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/public/img/apple-touch-icon.png\">\n            <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"/public/img/favicon-32x32.png\">\n            <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"/public/img/favicon-16x16.png\">\n            <link rel=\"manifest\" href=\"/public/img/site.webmanifest\">\n            <link rel=\"stylesheet\" href=\"/public/css/all.min.css\">\n            <link rel=\"stylesheet\" href=\"/public/css/style.css\">\n        </head>\n        <body>\n            <div class=\"logo\">\n                <img src=\"/public/img/hex.svg\" height=\"40\" alt=\"textile\"/>\n            </div>\n{{end}}\n\n{{define \"footer\"}}\n        </body>\n    </html>\n{{end}}\n"
  },
  {
    "path": "gateway/public/html/unixfs.gohtml",
    "content": "{{template \"header\" .Title}}\n<div class=\"title\">\n    {{ if ne .Root \"\" }}<span class=\"yellow\">{{.Root}}:</span> {{ end }}{{.Path}}\n</div>\n<ul>\n    {{ if ne .Back \"\" }}\n        <li><a href=\"/{{.Back}}\">..</a></li>\n    {{ end }}\n    {{range .Links}}\n        <li><a href=\"/{{.Path}}\">{{.Name}}<span class=\"right\">{{.Size}}</span></a></li>\n    {{end}}\n</ul>\n{{ if ne .Updated \"\" }}\n    <div class=\"updated\">Updated {{.Updated}}</div>\n{{ end }}\n{{template \"footer\"}}\n"
  },
  {
    "path": "gateway/public/img/site.webmanifest",
    "content": "{\"name\":\"\",\"short_name\":\"\",\"icons\":[{\"src\":\"/android-chrome-192x192.png\",\"sizes\":\"192x192\",\"type\":\"image/png\"},{\"src\":\"/android-chrome-512x512.png\",\"sizes\":\"512x512\",\"type\":\"image/png\"}],\"theme_color\":\"#ffffff\",\"background_color\":\"#ffffff\",\"display\":\"standalone\"}"
  },
  {
    "path": "gateway/threads.go",
    "content": "package gateway\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"net/http\"\n\t\"strings\"\n\n\t\"github.com/gin-gonic/gin\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/buckets\"\n)\n\n// collectionHandler handles collection requests.\nfunc (g *Gateway) collectionHandler(c *gin.Context) {\n\tthreadID, err := thread.Decode(c.Param(\"thread\"))\n\tif err != nil {\n\t\trenderError(c, http.StatusBadRequest, fmt.Errorf(\"invalid thread ID\"))\n\t\treturn\n\t}\n\tg.renderCollection(c, threadID, c.Param(\"collection\"))\n}\n\n// renderCollection renders all instances in a collection.\nfunc (g *Gateway) renderCollection(c *gin.Context, threadID thread.ID, collection string) {\n\tctx, cancel := context.WithTimeout(common.NewSessionContext(context.Background(), g.apiSession), handlerTimeout)\n\tdefer cancel()\n\tctx = common.NewThreadIDContext(ctx, threadID)\n\ttoken := thread.Token(c.Query(\"token\"))\n\tif token.Defined() {\n\t\tctx = thread.NewTokenContext(ctx, token)\n\t}\n\n\tjsn := c.Query(\"json\") == \"true\"\n\tif collection == buckets.CollectionName && !jsn {\n\t\tg.renderBucket(c, ctx, threadID, token)\n\t\treturn\n\t} else {\n\t\tvar dummy interface{}\n\t\tres, err := g.threads.Find(ctx, threadID, collection, &db.Query{}, &dummy, db.WithTxnToken(token))\n\t\tif err != nil {\n\t\t\trender404(c)\n\t\t\treturn\n\t\t}\n\t\tc.JSON(http.StatusOK, res)\n\t}\n}\n\n// instanceHandler handles collection instance requests.\nfunc (g *Gateway) instanceHandler(c *gin.Context) {\n\tthreadID, err := thread.Decode(c.Param(\"thread\"))\n\tif err != nil {\n\t\trenderError(c, http.StatusBadRequest, fmt.Errorf(\"invalid thread ID\"))\n\t\treturn\n\t}\n\tg.renderInstance(c, threadID, c.Param(\"collection\"), c.Param(\"id\"), c.Param(\"path\"))\n}\n\n// renderInstance renders an instance in a collection.\n// If the collection is buckets, the built-in buckets UI in rendered instead.\n// This can be overridden with the query param json=true.\nfunc (g *Gateway) renderInstance(c *gin.Context, threadID thread.ID, collection, id, pth string) {\n\tpth = strings.TrimPrefix(pth, \"/\")\n\tjsn := c.Query(\"json\") == \"true\"\n\tif (collection != buckets.CollectionName || jsn) && pth != \"\" {\n\t\trender404(c)\n\t\treturn\n\t}\n\n\tctx, cancel := context.WithTimeout(common.NewSessionContext(context.Background(), g.apiSession), handlerTimeout)\n\tdefer cancel()\n\tctx = common.NewThreadIDContext(ctx, threadID)\n\ttoken := thread.Token(c.Query(\"token\"))\n\tif token.Defined() {\n\t\tctx = thread.NewTokenContext(ctx, token)\n\t}\n\n\tif collection == buckets.CollectionName && !jsn {\n\t\tg.renderBucketPath(c, ctx, threadID, collection, id, pth, token)\n\t\treturn\n\t} else {\n\t\tvar res interface{}\n\t\tif err := g.threads.FindByID(ctx, threadID, collection, id, &res, db.WithTxnToken(token)); err != nil {\n\t\t\trender404(c)\n\t\t\treturn\n\t\t}\n\t\tc.JSON(http.StatusOK, res)\n\t}\n}\n"
  },
  {
    "path": "go.mod",
    "content": "module github.com/textileio/textile/v2\n\ngo 1.15\n\nrequire (\n\tgithub.com/alecthomas/jsonschema v0.0.0-20191017121752-4bb6e3fae4f2\n\tgithub.com/blang/semver v3.5.1+incompatible\n\tgithub.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect\n\tgithub.com/caarlos0/spin v1.1.0\n\tgithub.com/cenkalti/backoff/v4 v4.1.1\n\tgithub.com/cheggaaa/pb/v3 v3.0.5\n\tgithub.com/cloudflare/cloudflare-go v0.11.6\n\tgithub.com/customerio/go-customerio v2.0.0+incompatible\n\tgithub.com/dustin/go-humanize v1.0.0\n\tgithub.com/filecoin-project/go-fil-markets v1.1.9\n\tgithub.com/gin-contrib/location v0.0.2\n\tgithub.com/gin-contrib/pprof v1.3.0\n\tgithub.com/gin-contrib/static v0.0.1\n\tgithub.com/gin-gonic/gin v1.7.4\n\tgithub.com/gogo/status v1.1.0\n\tgithub.com/golang-jwt/jwt v3.2.2+incompatible\n\tgithub.com/golang/protobuf v1.5.2\n\tgithub.com/google/go-cmp v0.5.5\n\tgithub.com/gosimple/slug v1.9.0\n\tgithub.com/grpc-ecosystem/go-grpc-middleware v1.3.0\n\tgithub.com/grpc-ecosystem/grpc-gateway/v2 v2.2.0\n\tgithub.com/hashicorp/go-multierror v1.1.1\n\tgithub.com/improbable-eng/grpc-web v0.14.1\n\tgithub.com/ipfs/go-blockservice v0.1.4\n\tgithub.com/ipfs/go-cid v0.0.7\n\tgithub.com/ipfs/go-datastore v0.4.5\n\tgithub.com/ipfs/go-ds-flatfs v0.4.4\n\tgithub.com/ipfs/go-ipfs-blockstore v1.0.4\n\tgithub.com/ipfs/go-ipfs-chunker v0.0.5\n\tgithub.com/ipfs/go-ipfs-ds-help v1.0.0\n\tgithub.com/ipfs/go-ipfs-exchange-offline v0.0.1\n\tgithub.com/ipfs/go-ipfs-files v0.0.8\n\tgithub.com/ipfs/go-ipfs-http-client v0.1.0\n\tgithub.com/ipfs/go-ipld-cbor v0.0.5\n\tgithub.com/ipfs/go-ipld-format v0.2.0\n\tgithub.com/ipfs/go-log/v2 v2.3.0\n\tgithub.com/ipfs/go-merkledag v0.3.2\n\tgithub.com/ipfs/go-unixfs v0.2.6\n\tgithub.com/ipfs/interface-go-ipfs-core v0.4.0\n\tgithub.com/jbenet/go-is-domain v1.0.3\n\tgithub.com/jhump/protoreflect v1.7.0\n\tgithub.com/launchdarkly/go-country-codes v0.0.0-20191008001159-776cf5214f39\n\tgithub.com/libp2p/go-libp2p-core v0.8.6\n\tgithub.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381\n\tgithub.com/manifoldco/promptui v0.7.0\n\tgithub.com/mattn/go-colorable v0.1.8 // indirect\n\tgithub.com/mitchellh/go-homedir v1.1.0\n\tgithub.com/mitchellh/mapstructure v1.3.0 // indirect\n\tgithub.com/multiformats/go-multiaddr v0.3.3\n\tgithub.com/multiformats/go-multibase v0.0.3\n\tgithub.com/multiformats/go-multihash v0.0.15\n\tgithub.com/oklog/ulid/v2 v2.0.2\n\tgithub.com/olekukonko/tablewriter v0.0.5\n\tgithub.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2\n\tgithub.com/radovskyb/watcher v1.0.7\n\tgithub.com/rhysd/go-github-selfupdate v1.2.2\n\tgithub.com/robfig/cron/v3 v3.0.1\n\tgithub.com/rs/cors v1.7.0\n\tgithub.com/russross/blackfriday/v2 v2.1.0 // indirect\n\tgithub.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06\n\tgithub.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect\n\tgithub.com/spf13/afero v1.2.2 // indirect\n\tgithub.com/spf13/cast v1.3.1 // indirect\n\tgithub.com/spf13/cobra v1.1.3\n\tgithub.com/spf13/jwalterweatherman v1.1.0 // indirect\n\tgithub.com/spf13/viper v1.7.1\n\tgithub.com/stretchr/objx v0.2.0 // indirect\n\tgithub.com/stretchr/testify v1.7.0\n\tgithub.com/stripe/stripe-go/v72 v72.10.0\n\tgithub.com/tchap/go-patricia v2.3.0+incompatible // indirect\n\tgithub.com/textileio/crypto v0.0.0-20210929130053-08edebc3361a\n\tgithub.com/textileio/dcrypto v0.0.1\n\tgithub.com/textileio/go-assets v0.0.0-20200430191519-b341e634e2b7\n\tgithub.com/textileio/go-ds-mongo v0.1.5\n\tgithub.com/textileio/go-threads v1.1.6-0.20220409162902-a715c2402413\n\tgithub.com/textileio/powergate/v2 v2.3.0\n\tgithub.com/textileio/swagger-ui v0.3.29-0.20210224180244-7d73a7a32fe7\n\tgithub.com/xakep666/mongo-migrate v0.2.1\n\tgithub.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect\n\tgo.mongodb.org/mongo-driver v1.8.1\n\tgolang.org/x/net v0.0.0-20210805182204-aaa1db679c0d\n\tgolang.org/x/sync v0.0.0-20210220032951-036812b2e83c\n\tgolang.org/x/text v0.3.6\n\tgolang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1\n\tgoogle.golang.org/genproto v0.0.0-20210207032614-bba0dbe2a9ea\n\tgoogle.golang.org/grpc v1.39.0\n\tgoogle.golang.org/protobuf v1.27.1\n\tgopkg.in/ini.v1 v1.55.0 // indirect\n\tgopkg.in/segmentio/analytics-go.v3 v3.1.0\n)\n\nreplace github.com/ipfs/go-ipns => github.com/ipfs/go-ipns v0.0.2\n\nreplace github.com/improbable-eng/grpc-web v0.14.1 => github.com/jsmouret/grpc-web v0.14.2-0.20211103063242-8c932b2237aa\n"
  },
  {
    "path": "go.sum",
    "content": "bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898/go.mod h1:Xbm+BRKSBEpa4q4hTSxohYNQpsxXPbPry4JJWOB3LB8=\ncloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.31.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.37.0/go.mod h1:TS1dMSSfndXH133OKGwekG838Om/cQT0BUHV3HcBgoo=\ncloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=\ncloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=\ncloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=\ncloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=\ncloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=\ncloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=\ncloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4=\ncloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M=\ncloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc=\ncloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk=\ncloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs=\ncloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc=\ncloud.google.com/go v0.65.0 h1:Dg9iHVQfrhq82rUNu9ZxUDrJLaxFUe/HlCVaLyRruq8=\ncloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY=\ncloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=\ncloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=\ncloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=\ncloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg=\ncloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc=\ncloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ=\ncloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=\ncloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk=\ncloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=\ncloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=\ncloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw=\ncloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA=\ncloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU=\ncloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=\ncloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos=\ncloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=\ncloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=\ncloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=\ncontrib.go.opencensus.io/exporter/jaeger v0.1.0/go.mod h1:VYianECmuFPwU37O699Vc1GOcy+y8kOsfaxHRImmjbA=\ncontrib.go.opencensus.io/exporter/prometheus v0.1.0/go.mod h1:cGFniUXGZlKRjzOyuZJ6mgB+PgBcCIa79kEKR8YCW+A=\ncontrib.go.opencensus.io/exporter/prometheus v0.2.0/go.mod h1:TYmVAyE8Tn1lyPcltF5IYYfWp2KHu7lQGIZnj8iZMys=\ndmitri.shuralyov.com/app/changes v0.0.0-20180602232624-0a106ad413e3/go.mod h1:Yl+fi1br7+Rr3LqpNJf1/uxUdtRUV+Tnj0o93V2B9MU=\ndmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=\ndmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0/go.mod h1:JLBrvjyP0v+ecvNYvCpyZgu5/xkfAUhi6wJj28eUfSU=\ndmitri.shuralyov.com/service/change v0.0.0-20181023043359-a85b471d5412/go.mod h1:a1inKt/atXimZ4Mv927x+r7UpyzRUf4emIoiiSC2TN4=\ndmitri.shuralyov.com/state v0.0.0-20180228185332-28bcc343414c/go.mod h1:0PRwlb0D6DFvNNtx+9ybjezNCa8XF0xaYcETyp6rHWU=\ngit.apache.org/thrift.git v0.0.0-20180902110319-2566ecd5d999/go.mod h1:fPE2ZNJGynbRyZ4dJvy6G277gSllfV2HJqblrnkyeyg=\ngithub.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=\ngithub.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=\ngithub.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 h1:cTp8I5+VIoKjsnZuH8vjyaysT/ses3EvZeaV/1UkF2M=\ngithub.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=\ngithub.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=\ngithub.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8=\ngithub.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=\ngithub.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=\ngithub.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=\ngithub.com/DataDog/zstd v1.4.1 h1:3oxKN3wbHibqx897utPC2LTQU4J+IHWWJO+glkAkpFM=\ngithub.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo=\ngithub.com/GeertJohan/go.incremental v1.0.0/go.mod h1:6fAjUhbVuX1KcMD3c8TEgVUqmo4seqhv0i0kdATSkM0=\ngithub.com/GeertJohan/go.rice v1.0.0 h1:KkI6O9uMaQU3VEKaj01ulavtF7o1fWT7+pk/4voiMLQ=\ngithub.com/GeertJohan/go.rice v1.0.0/go.mod h1:eH6gbSOAUv07dQuZVnBmoDP8mgsM1rtixis4Tib9if0=\ngithub.com/Gurpartap/async v0.0.0-20180927173644-4f7f499dd9ee/go.mod h1:W0GbEAA4uFNYOGG2cJpmFJ04E6SD1NLELPYZB57/7AY=\ngithub.com/Jeffail/gabs v1.4.0/go.mod h1:6xMvQMK4k33lb7GUUpaAPh6nKMmemQeg5d4gn7/bOXc=\ngithub.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0=\ngithub.com/Kubuxu/go-os-helper v0.0.1/go.mod h1:N8B+I7vPCT80IcP58r50u4+gEEcsZETFUpAzWW2ep1Y=\ngithub.com/Microsoft/go-winio v0.4.14 h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=\ngithub.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=\ngithub.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=\ngithub.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk=\ngithub.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=\ngithub.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=\ngithub.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo=\ngithub.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI=\ngithub.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d h1:G0m3OIz70MZUWq3EgK3CesDbo8upS2Vm9/P3FtgI+Jk=\ngithub.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=\ngithub.com/Stebalien/go-bitfield v0.0.0-20180330043415-076a62f9ce6e/go.mod h1:3oM7gXIttpYDAJXpVNnSCiUMYBLIZ6cb1t+Ip982MRo=\ngithub.com/Stebalien/go-bitfield v0.0.1 h1:X3kbSSPUaJK60wV2hjOPZwmpljr6VGCqdq4cBLhbQBo=\ngithub.com/Stebalien/go-bitfield v0.0.1/go.mod h1:GNjFpasyUVkHMsfEOk8EFLJ9syQ6SI+XWrX9Wf2XH0s=\ngithub.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM=\ngithub.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA=\ngithub.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g=\ngithub.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo=\ngithub.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII=\ngithub.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c=\ngithub.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412/go.mod h1:WPjqKcmVOxf0XSf3YxCJs6N6AOSrOx3obionmG7T0y0=\ngithub.com/akavel/rsrc v0.8.0/go.mod h1:uLoCtb9J+EyAqh+26kdrTgmzRBFPGOolLWKpdxkKq+c=\ngithub.com/alecthomas/jsonschema v0.0.0-20191017121752-4bb6e3fae4f2 h1:swGeCLPiUQ647AIRnFxnAHdzlg6IPpmU6QdkOPZINt8=\ngithub.com/alecthomas/jsonschema v0.0.0-20191017121752-4bb6e3fae4f2/go.mod h1:Juc2PrI3wtNfUwptSvAIeNx+HrETwHQs6nf+TkOJlOA=\ngithub.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=\ngithub.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=\ngithub.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=\ngithub.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=\ngithub.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=\ngithub.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5 h1:iW0a5ljuFxkLGPNem5Ui+KBjFJzKg4Fv2fnxe4dvzpM=\ngithub.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5/go.mod h1:Y2QMoi1vgtOIfc+6DhrMOGkLoGzqSV2rKp4Sm+opsyA=\ngithub.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=\ngithub.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=\ngithub.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=\ngithub.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=\ngithub.com/apoorvam/goterminal v0.0.0-20180523175556-614d345c47e5/go.mod h1:E7x8aDc3AQzDKjEoIZCt+XYheHk2OkP+p2UgeNjecH8=\ngithub.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=\ngithub.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=\ngithub.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=\ngithub.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=\ngithub.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=\ngithub.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A=\ngithub.com/atotto/clipboard v0.1.2/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI=\ngithub.com/awalterschulze/gographviz v0.0.0-20190522210029-fa59802746ab/go.mod h1:GEV5wmg4YquNw7v1kkyoX9etIk8yVmXj+AkDHuuETHs=\ngithub.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU=\ngithub.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo=\ngithub.com/aws/aws-sdk-go v1.29.15/go.mod h1:1KvfttTE3SPKMpo8g2c6jL3ZKfXtFvKscTgahTma5Xg=\ngithub.com/aws/aws-sdk-go v1.32.11/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0=\ngithub.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g=\ngithub.com/beevik/ntp v0.2.0/go.mod h1:hIHWr+l3+/clUnF44zdK+CWW7fO8dR5cIylAQ76NRpg=\ngithub.com/benbjohnson/clock v1.0.1/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM=\ngithub.com/benbjohnson/clock v1.0.2/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM=\ngithub.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM=\ngithub.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=\ngithub.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=\ngithub.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=\ngithub.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=\ngithub.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=\ngithub.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=\ngithub.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=\ngithub.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=\ngithub.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=\ngithub.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=\ngithub.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=\ngithub.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4=\ngithub.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g=\ngithub.com/briandowns/spinner v1.11.1/go.mod h1:QOuQk7x+EaDASo80FEXwlwiA+j/PPIcX3FScO+3/ZPQ=\ngithub.com/btcsuite/btcd v0.0.0-20190213025234-306aecffea32/go.mod h1:DrZx5ec/dmnfpw9KyYoQyYo7d0KEvTkk/5M/vbZjAr8=\ngithub.com/btcsuite/btcd v0.0.0-20190523000118-16327141da8c/go.mod h1:3J08xEfcugPacsc34/LKRU2yO7YmuT8yt28J8k2+rrI=\ngithub.com/btcsuite/btcd v0.0.0-20190605094302-a0d1e3e36d50/go.mod h1:3J08xEfcugPacsc34/LKRU2yO7YmuT8yt28J8k2+rrI=\ngithub.com/btcsuite/btcd v0.0.0-20190824003749-130ea5bddde3/go.mod h1:3J08xEfcugPacsc34/LKRU2yO7YmuT8yt28J8k2+rrI=\ngithub.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=\ngithub.com/btcsuite/btcd v0.21.0-beta h1:At9hIZdJW0s9E/fAz28nrz6AmcNlSVucCH796ZteX1M=\ngithub.com/btcsuite/btcd v0.21.0-beta/go.mod h1:ZSWyehm27aAuS9bvkATT+Xte3hjHZ+MRgMY/8NJ7K94=\ngithub.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA=\ngithub.com/btcsuite/btcutil v0.0.0-20190207003914-4c204d697803/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg=\ngithub.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg=\ngithub.com/btcsuite/btcutil v1.0.2/go.mod h1:j9HUFwoQRsZL3V4n+qG+CUnEGHOarIxfC3Le2Yhbcts=\ngithub.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg=\ngithub.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY=\ngithub.com/btcsuite/goleveldb v1.0.0/go.mod h1:QiK9vBlgftBg6rWQIj6wFzbPfRjiykIEhBH4obrXJ/I=\ngithub.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc=\ngithub.com/btcsuite/snappy-go v1.0.0/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc=\ngithub.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY=\ngithub.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs=\ngithub.com/buger/goterm v0.0.0-20200322175922-2f3e71b85129/go.mod h1:u9UyCz2eTrSGy6fbupqJ54eY5c4IC8gREQ1053dK12U=\ngithub.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s=\ngithub.com/caarlos0/spin v1.1.0 h1:EjsfGbZJejib25BPnDqf7iL2z9RUna7refvUf+AN9UE=\ngithub.com/caarlos0/spin v1.1.0/go.mod h1:HOC4pUvfhjXR2yDt+sEY9dRc2m4CCaK5z5oQYAbzXSA=\ngithub.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=\ngithub.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=\ngithub.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM=\ngithub.com/cenkalti/backoff/v3 v3.0.0 h1:ske+9nBpD9qZsTBoF41nW5L+AIuFBKMeze18XQ3eG1c=\ngithub.com/cenkalti/backoff/v3 v3.0.0/go.mod h1:cIeZDE3IrqwwJl6VUwCN6trj1oXrTS4rc0ij+ULvLYs=\ngithub.com/cenkalti/backoff/v4 v4.1.1 h1:G2HAfAmvm/GcKan2oOQpBXOd2tT2G57ZnZGWa1PxPBQ=\ngithub.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw=\ngithub.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=\ngithub.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA=\ngithub.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=\ngithub.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=\ngithub.com/cespare/xxhash/v2 v2.1.0/go.mod h1:dgIUBU3pDso/gPgZ1osOZ0iQf77oPR28Tjxl5dIMyVM=\ngithub.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=\ngithub.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=\ngithub.com/charmbracelet/bubbles v0.7.6/go.mod h1:0D4XRYK0tjo8JMvflz1obpVcOikNZSG46SFauoZj22s=\ngithub.com/charmbracelet/bubbletea v0.12.2/go.mod h1:3gZkYELUOiEUOp0bTInkxguucy/xRbGSOcbMs1geLxg=\ngithub.com/charmbracelet/bubbletea v0.12.4/go.mod h1:tp9tr9Dadh0PLhgiwchE5zZJXm5543JYjHG9oY+5qSg=\ngithub.com/cheekybits/genny v1.0.0 h1:uGGa4nei+j20rOSeDeP5Of12XVm7TGUd4dJA9RDitfE=\ngithub.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ=\ngithub.com/cheggaaa/pb/v3 v3.0.5 h1:lmZOti7CraK9RSjzExsY53+WWfub9Qv13B5m4ptEoPE=\ngithub.com/cheggaaa/pb/v3 v3.0.5/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw=\ngithub.com/chzyer/logex v1.1.10 h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=\ngithub.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=\ngithub.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=\ngithub.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=\ngithub.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=\ngithub.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=\ngithub.com/cilium/ebpf v0.2.0/go.mod h1:To2CFviqOWL/M0gIMsvSMlqe7em/l1ALkX1PyjrX2Qs=\ngithub.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE=\ngithub.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=\ngithub.com/cloudflare/cloudflare-go v0.11.6 h1:gErXaYucoS8aHdmoJnF4RMFiXJH449sk6rCtoP6EhrE=\ngithub.com/cloudflare/cloudflare-go v0.11.6/go.mod h1:lmCbgQdBeSQlMv0W0OSqoGgl8aFrgc5oXHhWMt47dh0=\ngithub.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=\ngithub.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=\ngithub.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=\ngithub.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8=\ngithub.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA=\ngithub.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI=\ngithub.com/cockroachdb/pebble v0.0.0-20200916222308-4e219a90ba5b/go.mod h1:hU7vhtrqonEphNF+xt8/lHdaBprxmV1h8BOGrd9XwmQ=\ngithub.com/cockroachdb/pebble v0.0.0-20201001221639-879f3bfeef07/go.mod h1:hU7vhtrqonEphNF+xt8/lHdaBprxmV1h8BOGrd9XwmQ=\ngithub.com/cockroachdb/redact v0.0.0-20200622112456-cd282804bbd3/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg=\ngithub.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI=\ngithub.com/containerd/cgroups v0.0.0-20201119153540-4cbc285b3327/go.mod h1:ZJeTFisyysqgcCdecO57Dj79RfL0LNeGiFUqLYQRYLE=\ngithub.com/containerd/console v1.0.1/go.mod h1:XUsP6YE/mKtz6bxc+I8UiKKTP04qjQL4qcS3XoQ5xkw=\ngithub.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y=\ngithub.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c h1:8ahmSVELW1wghbjerVAyuEYD5+Dio66RYvSS0iGfL1M=\ngithub.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c/go.mod h1:Dq467ZllaHgAtVp4p1xUQWBrFXR9s/wyoTpG8zOJGkY=\ngithub.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=\ngithub.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=\ngithub.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=\ngithub.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk=\ngithub.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=\ngithub.com/coreos/go-semver v0.2.1-0.20180108230905-e214231b295a/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=\ngithub.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=\ngithub.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=\ngithub.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/go-systemd/v22 v22.1.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk=\ngithub.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=\ngithub.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=\ngithub.com/cosiner/argv v0.1.0/go.mod h1:EusR6TucWKX+zFgtdUsKT2Cvg45K5rtpCcWz4hK06d8=\ngithub.com/cpuguy83/go-md2man v1.0.10 h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=\ngithub.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.0 h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=\ngithub.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 h1:HVTnpeuvF6Owjd5mniCL8DEXo7uYXdQEmOP4FJbV5tg=\ngithub.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3/go.mod h1:p1d6YEZWvFzEh4KLyvBcVSnrfNDDvK2zfK/4x2v/4pE=\ngithub.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=\ngithub.com/creack/pty v1.1.9 h1:uDmaGzcdjhF4i/plgjmEsriH11Y0o7RKapEf/LDaM3w=\ngithub.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=\ngithub.com/cskr/pubsub v1.0.2 h1:vlOzMhl6PFn60gRlTQQsIfVwaPB/B/8MziK8FhEPt/0=\ngithub.com/cskr/pubsub v1.0.2/go.mod h1:/8MzYXk/NJAz782G8RPkFzXTZVu63VotefPnR9TIRis=\ngithub.com/customerio/go-customerio v2.0.0+incompatible h1:7E4vuxvPwJHr3qOFHgytA441Ev0kKutk8+JCEELtyvs=\ngithub.com/customerio/go-customerio v2.0.0+incompatible/go.mod h1:TydbjoBN6jLzaYPplKhq/BU+mMdzyboIrFLYlkC9RVY=\ngithub.com/daaku/go.zipexe v1.0.0 h1:VSOgZtH418pH9L16hC/JrgSNJbbAL26pj7lmD1+CGdY=\ngithub.com/daaku/go.zipexe v1.0.0/go.mod h1:z8IiR6TsVLEYKwXAoE/I+8ys/sDkgTzSL0CLnGVd57E=\ngithub.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davidlazar/go-crypto v0.0.0-20170701192655-dcfb0a7ac018/go.mod h1:rQYf4tfk5sSwFsnDg3qYaBxSjsD9S8+59vW0dKUgme4=\ngithub.com/davidlazar/go-crypto v0.0.0-20190912175916-7055855a373f/go.mod h1:rQYf4tfk5sSwFsnDg3qYaBxSjsD9S8+59vW0dKUgme4=\ngithub.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c h1:pFUpOrbxDR6AkioZ1ySsx5yxlDQZ8stG2b88gTPxgJU=\ngithub.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c/go.mod h1:6UhI8N9EjYm1c2odKpFpAYeR8dsBeM7PtzQhRgxRr9U=\ngithub.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218=\ngithub.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe7Z5G/twsBW0KEalRQXZzf8ufSh9I=\ngithub.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f/go.mod h1:xH/i4TFMt8koVQZ6WFms69WAsDWr2XsYL3Hkl7jkoLE=\ngithub.com/detailyang/go-fallocate v0.0.0-20180908115635-432fa640bd2e/go.mod h1:3ZQK6DMPSz/QZ73jlWxBtUhNA8xZx7LzUFSq/OfP8vk=\ngithub.com/dgraph-io/badger v1.5.5-0.20190226225317-8115aed38f8f/go.mod h1:VZxzAIRPHRVNRKRo6AXrX9BJegn6il06VMTZVJYCIjQ=\ngithub.com/dgraph-io/badger v1.6.0-rc1/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4=\ngithub.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4=\ngithub.com/dgraph-io/badger v1.6.1/go.mod h1:FRmFw3uxvcpa8zG3Rxs0th+hCLIuaQg8HlNV5bjgnuU=\ngithub.com/dgraph-io/badger v1.6.2 h1:mNw0qs90GVgGGWylh0umH5iag1j6n/PeJtNvL6KY/x8=\ngithub.com/dgraph-io/badger v1.6.2/go.mod h1:JW2yswe3V058sS0kZ2h/AXeDSqFjxnZcRrVH//y2UQE=\ngithub.com/dgraph-io/badger/v2 v2.0.3/go.mod h1:3KY8+bsP8wI0OEnQJAKpd4wIJW/Mm32yw2j/9FUVnIM=\ngithub.com/dgraph-io/badger/v2 v2.2007.2 h1:EjjK0KqwaFMlPin1ajhP943VPENHJdEz1KLIegjaI3k=\ngithub.com/dgraph-io/badger/v2 v2.2007.2/go.mod h1:26P/7fbL4kUZVEVKLAKXkBXKOydDmM2p1e+NhhnBCAE=\ngithub.com/dgraph-io/badger/v3 v3.2011.1 h1:Hmyof0WMEF/QtutX5SQHzIMnJQxb/IrSzhjckV2SD6g=\ngithub.com/dgraph-io/badger/v3 v3.2011.1/go.mod h1:0rLLrQpKVQAL0or/lBLMQznhr6dWWX7h5AKnmnqx268=\ngithub.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E=\ngithub.com/dgraph-io/ristretto v0.0.2/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E=\ngithub.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E=\ngithub.com/dgraph-io/ristretto v0.0.4-0.20210122082011-bb5d392ed82d h1:eQYOG6A4td1tht0NdJB9Ls6DsXRGb2Ft6X9REU/MbbE=\ngithub.com/dgraph-io/ristretto v0.0.4-0.20210122082011-bb5d392ed82d/go.mod h1:tv2ec8nA7vRpSYX7/MbP52ihrUMXIHit54CQMq8npXQ=\ngithub.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=\ngithub.com/dgryski/go-farm v0.0.0-20190104051053-3adb47b1fb0f/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw=\ngithub.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 h1:tdlZCpZ/P9DhczCTSixgIKmwPv6+wP5DGjqLYw5SUiA=\ngithub.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw=\ngithub.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=\ngithub.com/dgtony/collections v0.1.6 h1:Qv4xLe4nXJgIeeExex6e7mDyP57tzZN3MYaGfN8uECc=\ngithub.com/dgtony/collections v0.1.6/go.mod h1:olD2FRoNisWmjMhK6LDRKv+lMnDoryOZIT+owtd/o6U=\ngithub.com/dlclark/regexp2 v1.2.0 h1:8sAhBGEM0dRWogWqWyQeIJnxjWO6oIjl8FKqREDsGfk=\ngithub.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=\ngithub.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=\ngithub.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=\ngithub.com/docker/go-units v0.4.0 h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=\ngithub.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=\ngithub.com/dop251/goja v0.0.0-20200721192441-a695b0cdd498 h1:Y9vTBSsV4hSwPSj4bacAU/eSnV3dAxVpepaghAdhGoQ=\ngithub.com/dop251/goja v0.0.0-20200721192441-a695b0cdd498/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA=\ngithub.com/drand/bls12-381 v0.3.2/go.mod h1:dtcLgPtYT38L3NO6mPDYH0nbpc5tjPassDqiniuAt4Y=\ngithub.com/drand/drand v1.2.1/go.mod h1:j0P7RGmVaY7E/OuO2yQOcQj7OgeZCuhgu2gdv0JAm+g=\ngithub.com/drand/kyber v1.0.1-0.20200110225416-8de27ed8c0e2/go.mod h1:UpXoA0Upd1N9l4TvRPHr1qAUBBERj6JQ/mnKI3BPEmw=\ngithub.com/drand/kyber v1.0.2/go.mod h1:x6KOpK7avKj0GJ4emhXFP5n7M7W7ChAPmnQh/OL6vRw=\ngithub.com/drand/kyber v1.1.4/go.mod h1:9+IgTq7kadePhZg7eRwSD7+bA+bmvqRK+8DtmoV5a3U=\ngithub.com/drand/kyber-bls12381 v0.2.0/go.mod h1:zQip/bHdeEB6HFZSU3v+d3cQE0GaBVQw9aR2E7AdoeI=\ngithub.com/drand/kyber-bls12381 v0.2.1/go.mod h1:JwWn4nHO9Mp4F5qCie5sVIPQZ0X6cw8XAeMRvc/GXBE=\ngithub.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=\ngithub.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=\ngithub.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=\ngithub.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs=\ngithub.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU=\ngithub.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I=\ngithub.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M=\ngithub.com/elastic/go-sysinfo v1.3.0/go.mod h1:i1ZYdU10oLNfRzq4vq62BEwD2fH8KaWh6eh0ikPT9F0=\ngithub.com/elastic/go-windows v1.0.0/go.mod h1:TsU0Nrp7/y3+VwE82FoZF8gC/XFg/Elz6CcloAxnPgU=\ngithub.com/elastic/gosigar v0.12.0/go.mod h1:iXRIGg2tLnu7LBdpqzyQfGDEidKCfWcCMS0WKyPWoMs=\ngithub.com/elazarl/go-bindata-assetfs v1.0.0/go.mod h1:v+YaWX3bdea5J/mo8dSETolEo7R71Vk1u8bnjau5yw4=\ngithub.com/ema/qdisc v0.0.0-20190904071900-b82c76788043/go.mod h1:ix4kG2zvdUd8kEKSW0ZTr1XLks0epFpI4j745DXxlNE=\ngithub.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g=\ngithub.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=\ngithub.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=\ngithub.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=\ngithub.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=\ngithub.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ=\ngithub.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=\ngithub.com/evanphx/json-patch v4.5.0+incompatible h1:ouOWdg56aJriqS0huScTkVXPC5IcNrDCXZ6OoTAWu7M=\ngithub.com/evanphx/json-patch v4.5.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=\ngithub.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 h1:BBso6MBKW8ncyZLv37o+KNyy0HrrHgfnOaGQC2qvN+A=\ngithub.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5/go.mod h1:JpoxHjuQauoxiFMl1ie8Xc/7TfLuMZ5eOCONd1sUBHg=\ngithub.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=\ngithub.com/fatih/color v1.8.0/go.mod h1:3l45GVGkyrnYNl9HoIjnp2NnNWvh6hLAqD8yTfGjnw8=\ngithub.com/fatih/color v1.9.0 h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s=\ngithub.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU=\ngithub.com/fd/go-nat v1.0.0/go.mod h1:BTBu/CKvMmOMUPkKVef1pngt2WFH/lg7E6yQnulfp6E=\ngithub.com/filecoin-project/filecoin-ffi v0.30.4-0.20200716204036-cddc56607e1d/go.mod h1:XE4rWG1P7zWPaC11Pkn1CVR20stqN52MnMkIrF4q6ZU=\ngithub.com/filecoin-project/filecoin-ffi v0.30.4-0.20200910194244-f640612a1a1f h1:vg/6KEAOBjICMaWj+xofJCp09HYRfpO3ZbJsnJo22pA=\ngithub.com/filecoin-project/filecoin-ffi v0.30.4-0.20200910194244-f640612a1a1f/go.mod h1:+If3s2VxyjZn+KGGZIoRXBDSFQ9xL404JBJGf4WhEj0=\ngithub.com/filecoin-project/go-address v0.0.2-0.20200218010043-eb9bb40ed5be/go.mod h1:SAOwJoakQ8EPjwNIsiakIQKsoKdkcbx8U3IapgCg9R0=\ngithub.com/filecoin-project/go-address v0.0.3/go.mod h1:jr8JxKsYx+lQlQZmF5i2U0Z+cGQ59wMIps/8YW/lDj8=\ngithub.com/filecoin-project/go-address v0.0.5 h1:SSaFT/5aLfPXycUlFyemoHYhRgdyXClXCyDdNJKPlDM=\ngithub.com/filecoin-project/go-address v0.0.5/go.mod h1:jr8JxKsYx+lQlQZmF5i2U0Z+cGQ59wMIps/8YW/lDj8=\ngithub.com/filecoin-project/go-amt-ipld/v2 v2.0.1-0.20200424220931-6263827e49f2/go.mod h1:boRtQhzmxNocrMxOXo1NYn4oUc1NGvR8tEa79wApNXg=\ngithub.com/filecoin-project/go-amt-ipld/v2 v2.1.0/go.mod h1:nfFPoGyX0CU9SkXX8EoCcSuHN1XcbN0c6KBh7yvP5fs=\ngithub.com/filecoin-project/go-amt-ipld/v2 v2.1.1-0.20201006184820-924ee87a1349 h1:pIuR0dnMD0i+as8wNnjjHyQrnhP5O5bmba/lmgQeRgU=\ngithub.com/filecoin-project/go-amt-ipld/v2 v2.1.1-0.20201006184820-924ee87a1349/go.mod h1:vgmwKBkx+ca5OIeEvstiQgzAZnb7R6QaqE1oEDSqa6g=\ngithub.com/filecoin-project/go-amt-ipld/v3 v3.0.0 h1:Ou/q82QeHGOhpkedvaxxzpBYuqTxLCcj5OChkDNx4qc=\ngithub.com/filecoin-project/go-amt-ipld/v3 v3.0.0/go.mod h1:Qa95YNAbtoVCTSVtX38aAC1ptBnJfPma1R/zZsKmx4o=\ngithub.com/filecoin-project/go-bitfield v0.0.1/go.mod h1:Ry9/iUlWSyjPUzlAvdnfy4Gtvrq4kWmWDztCU1yEgJY=\ngithub.com/filecoin-project/go-bitfield v0.2.0/go.mod h1:CNl9WG8hgR5mttCnUErjcQjGvuiZjRqK9rHVBsQF4oM=\ngithub.com/filecoin-project/go-bitfield v0.2.3/go.mod h1:CNl9WG8hgR5mttCnUErjcQjGvuiZjRqK9rHVBsQF4oM=\ngithub.com/filecoin-project/go-bitfield v0.2.4 h1:uZ7MeE+XfM5lqrHJZ93OnhQKc/rveW8p9au0C68JPgk=\ngithub.com/filecoin-project/go-bitfield v0.2.4/go.mod h1:CNl9WG8hgR5mttCnUErjcQjGvuiZjRqK9rHVBsQF4oM=\ngithub.com/filecoin-project/go-cbor-util v0.0.0-20191219014500-08c40a1e63a2 h1:av5fw6wmm58FYMgJeoB/lK9XXrgdugYiTqkdxjTy9k8=\ngithub.com/filecoin-project/go-cbor-util v0.0.0-20191219014500-08c40a1e63a2/go.mod h1:pqTiPHobNkOVM5thSRsHYjyQfq7O5QSCMhvuu9JoDlg=\ngithub.com/filecoin-project/go-commp-utils v0.0.0-20201119054358-b88f7a96a434 h1:0kHszkYP3hgApcjl5x4rpwONhN9+j7XDobf6at5XfHs=\ngithub.com/filecoin-project/go-commp-utils v0.0.0-20201119054358-b88f7a96a434/go.mod h1:6s95K91mCyHY51RPWECZieD3SGWTqIFLf1mPOes9l5U=\ngithub.com/filecoin-project/go-crypto v0.0.0-20191218222705-effae4ea9f03 h1:2pMXdBnCiXjfCYx/hLqFxccPoqsSveQFxVLvNxy9bus=\ngithub.com/filecoin-project/go-crypto v0.0.0-20191218222705-effae4ea9f03/go.mod h1:+viYnvGtUTgJRdy6oaeF4MTFKAfatX071MPDPBL11EQ=\ngithub.com/filecoin-project/go-data-transfer v1.0.1/go.mod h1:UxvfUAY9v3ub0a21BSK9u3pB2aq30Y0KMsG+w9/ysyo=\ngithub.com/filecoin-project/go-data-transfer v1.2.7 h1:WE5Cpp9eMt5BDoWOVR64QegSn6bwHQaDzyyjVU377Y0=\ngithub.com/filecoin-project/go-data-transfer v1.2.7/go.mod h1:mvjZ+C3NkBX10JP4JMu27DCjUouHFjHwUGh+Xc4yvDA=\ngithub.com/filecoin-project/go-ds-versioning v0.1.0 h1:y/X6UksYTsK8TLCI7rttCKEvl8btmWxyFMEeeWGUxIQ=\ngithub.com/filecoin-project/go-ds-versioning v0.1.0/go.mod h1:mp16rb4i2QPmxBnmanUx8i/XANp+PFCCJWiAb+VW4/s=\ngithub.com/filecoin-project/go-fil-commcid v0.0.0-20200716160307-8f644712406f/go.mod h1:Eaox7Hvus1JgPrL5+M3+h7aSPHc0cVqpSxA+TxIEpZQ=\ngithub.com/filecoin-project/go-fil-commcid v0.0.0-20201016201715-d41df56b4f6a h1:hyJ+pUm/4U4RdEZBlg6k8Ma4rDiuvqyGpoICXAxwsTg=\ngithub.com/filecoin-project/go-fil-commcid v0.0.0-20201016201715-d41df56b4f6a/go.mod h1:Eaox7Hvus1JgPrL5+M3+h7aSPHc0cVqpSxA+TxIEpZQ=\ngithub.com/filecoin-project/go-fil-markets v1.0.5-0.20201113164554-c5eba40d5335/go.mod h1:AJySOJC00JRWEZzRG2KsfUnqEf5ITXxeX09BE9N4f9c=\ngithub.com/filecoin-project/go-fil-markets v1.1.9 h1:sA0NIEOpy7brZaeXeNgdXg5pvHaBtD5OTRlraOUbI0w=\ngithub.com/filecoin-project/go-fil-markets v1.1.9/go.mod h1:0yQu5gvrjFoAIyzPSSJ+xUdCG83vjInAFbTswIB5/hk=\ngithub.com/filecoin-project/go-hamt-ipld v0.1.5 h1:uoXrKbCQZ49OHpsTCkrThPNelC4W3LPEk0OrS/ytIBM=\ngithub.com/filecoin-project/go-hamt-ipld v0.1.5/go.mod h1:6Is+ONR5Cd5R6XZoCse1CWaXZc0Hdb/JeX+EQCQzX24=\ngithub.com/filecoin-project/go-hamt-ipld/v2 v2.0.0 h1:b3UDemBYN2HNfk3KOXNuxgTTxlWi3xVvbQP0IT38fvM=\ngithub.com/filecoin-project/go-hamt-ipld/v2 v2.0.0/go.mod h1:7aWZdaQ1b16BVoQUYR+eEvrDCGJoPLxFpDynFjYfBjI=\ngithub.com/filecoin-project/go-hamt-ipld/v3 v3.0.1 h1:zbzs46G7bOctkZ+JUX3xirrj0RaEsi+27dtlsgrTNBg=\ngithub.com/filecoin-project/go-hamt-ipld/v3 v3.0.1/go.mod h1:gXpNmr3oQx8l3o7qkGyDjJjYSRX7hp/FGOStdqrWyDI=\ngithub.com/filecoin-project/go-jsonrpc v0.1.4-0.20210217175800-45ea43ac2bec h1:rGI5I7fdU4viManxmDdbk5deZO7afe6L1Wc04dAmlOM=\ngithub.com/filecoin-project/go-jsonrpc v0.1.4-0.20210217175800-45ea43ac2bec/go.mod h1:XBBpuKIMaXIIzeqzO1iucq4GvbF8CxmXRFoezRh+Cx4=\ngithub.com/filecoin-project/go-multistore v0.0.3 h1:vaRBY4YiA2UZFPK57RNuewypB8u0DzzQwqsL0XarpnI=\ngithub.com/filecoin-project/go-multistore v0.0.3/go.mod h1:kaNqCC4IhU4B1uyr7YWFHd23TL4KM32aChS0jNkyUvQ=\ngithub.com/filecoin-project/go-padreader v0.0.0-20200903213702-ed5fae088b20 h1:+/4aUeUoKr6AKfPE3mBhXA5spIV6UcKdTYDPNU2Tdmg=\ngithub.com/filecoin-project/go-padreader v0.0.0-20200903213702-ed5fae088b20/go.mod h1:mPn+LRRd5gEKNAtc+r3ScpW2JRU/pj4NBKdADYWHiak=\ngithub.com/filecoin-project/go-paramfetch v0.0.2-0.20200701152213-3e0f0afdc261/go.mod h1:fZzmf4tftbwf9S37XRifoJlz7nCjRdIrMGLR07dKLCc=\ngithub.com/filecoin-project/go-state-types v0.0.0-20200903145444-247639ffa6ad/go.mod h1:IQ0MBPnonv35CJHtWSN3YY1Hz2gkPru1Q9qoaYLxx9I=\ngithub.com/filecoin-project/go-state-types v0.0.0-20200904021452-1883f36ca2f4/go.mod h1:IQ0MBPnonv35CJHtWSN3YY1Hz2gkPru1Q9qoaYLxx9I=\ngithub.com/filecoin-project/go-state-types v0.0.0-20200928172055-2df22083d8ab/go.mod h1:ezYnPf0bNkTsDibL/psSz5dy4B5awOJ/E7P2Saeep8g=\ngithub.com/filecoin-project/go-state-types v0.0.0-20201102161440-c8033295a1fc/go.mod h1:ezYnPf0bNkTsDibL/psSz5dy4B5awOJ/E7P2Saeep8g=\ngithub.com/filecoin-project/go-state-types v0.1.0 h1:9r2HCSMMCmyMfGyMKxQtv0GKp6VT/m5GgVk8EhYbLJU=\ngithub.com/filecoin-project/go-state-types v0.1.0/go.mod h1:ezYnPf0bNkTsDibL/psSz5dy4B5awOJ/E7P2Saeep8g=\ngithub.com/filecoin-project/go-statemachine v0.0.0-20200925024713-05bd7c71fbfe h1:dF8u+LEWeIcTcfUcCf3WFVlc81Fr2JKg8zPzIbBDKDw=\ngithub.com/filecoin-project/go-statemachine v0.0.0-20200925024713-05bd7c71fbfe/go.mod h1:FGwQgZAt2Gh5mjlwJUlVB62JeYdo+if0xWxSEfBD9ig=\ngithub.com/filecoin-project/go-statestore v0.1.0 h1:t56reH59843TwXHkMcwyuayStBIiWBRilQjQ+5IiwdQ=\ngithub.com/filecoin-project/go-statestore v0.1.0/go.mod h1:LFc9hD+fRxPqiHiaqUEZOinUJB4WARkRfNl10O7kTnI=\ngithub.com/filecoin-project/go-storedcounter v0.0.0-20200421200003-1c99c62e8a5b h1:fkRZSPrYpk42PV3/lIXiL0LHetxde7vyYYvSsttQtfg=\ngithub.com/filecoin-project/go-storedcounter v0.0.0-20200421200003-1c99c62e8a5b/go.mod h1:Q0GQOBtKf1oE10eSXSlhN45kDBdGvEcVOqMiffqX+N8=\ngithub.com/filecoin-project/lotus v1.5.0 h1:LE6lALwXyvzNpo1rDXxxfy2NPNT7K54stwg1/kA2yXg=\ngithub.com/filecoin-project/lotus v1.5.0/go.mod h1:Xi7fm05RL76CBYgyXnmWXULPvoGLya9gvM4sUYgIY1o=\ngithub.com/filecoin-project/specs-actors v0.6.1/go.mod h1:dRdy3cURykh2R8O/DKqy8olScl70rmIS7GrB4hB1IDY=\ngithub.com/filecoin-project/specs-actors v0.9.4/go.mod h1:BStZQzx5x7TmCkLv0Bpa07U6cPKol6fd3w9KjMPZ6Z4=\ngithub.com/filecoin-project/specs-actors v0.9.12/go.mod h1:TS1AW/7LbG+615j4NsjMK1qlpAwaFsG9w0V2tg2gSao=\ngithub.com/filecoin-project/specs-actors v0.9.13 h1:rUEOQouefi9fuVY/2HOroROJlZbOzWYXXeIh41KF2M4=\ngithub.com/filecoin-project/specs-actors v0.9.13/go.mod h1:TS1AW/7LbG+615j4NsjMK1qlpAwaFsG9w0V2tg2gSao=\ngithub.com/filecoin-project/specs-actors/v2 v2.0.1/go.mod h1:v2NZVYinNIKA9acEMBm5wWXxqv5+frFEbekBFemYghY=\ngithub.com/filecoin-project/specs-actors/v2 v2.3.2/go.mod h1:UuJQLoTx/HPvvWeqlIFmC/ywlOLHNe8SNQ3OunFbu2Y=\ngithub.com/filecoin-project/specs-actors/v2 v2.3.4 h1:NZK2oMCcA71wNsUzDBmLQyRMzcCnX9tDGvwZ53G67j8=\ngithub.com/filecoin-project/specs-actors/v2 v2.3.4/go.mod h1:UuJQLoTx/HPvvWeqlIFmC/ywlOLHNe8SNQ3OunFbu2Y=\ngithub.com/filecoin-project/specs-actors/v3 v3.0.3 h1:bq9B1Jnq+Z0A+Yj3KnYhN3kcTpUyP6Umo3MZgai0BRE=\ngithub.com/filecoin-project/specs-actors/v3 v3.0.3/go.mod h1:oMcmEed6B7H/wHabM3RQphTIhq0ibAKsbpYs+bQ/uxQ=\ngithub.com/filecoin-project/specs-storage v0.1.1-0.20201105051918-5188d9774506 h1:Ur/l2+6qN+lQiqjozWWc5p9UDaAMDZKTlDS98oRnlIw=\ngithub.com/filecoin-project/specs-storage v0.1.1-0.20201105051918-5188d9774506/go.mod h1:nJRRM7Aa9XVvygr3W9k6xGF46RWzr2zxF/iGoAIfA/g=\ngithub.com/filecoin-project/test-vectors/schema v0.0.5/go.mod h1:iQ9QXLpYWL3m7warwvK1JC/pTri8mnfEmKygNDqqY6E=\ngithub.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=\ngithub.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6/go.mod h1:1i71OnUq3iUe1ma7Lr6yG6/rjvM3emb6yoL7xLFzcVQ=\ngithub.com/flynn/noise v1.0.0 h1:DlTHqmzmvcEiKj+4RYo/imoswx/4r6iBlCMfVtrMXpQ=\ngithub.com/flynn/noise v1.0.0/go.mod h1:xbMo+0i6+IGbYdJhF31t2eR1BIU0CYc12+BNAKwUTag=\ngithub.com/francoispqt/gojay v1.2.13 h1:d2m3sFjloqoIUQU3TsHBgj6qg/BVGlTBeHDUmyJnXKk=\ngithub.com/francoispqt/gojay v1.2.13/go.mod h1:ehT5mTG4ua4581f1++1WLG0vPdaA9HaiDsoyrBGkyDY=\ngithub.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4=\ngithub.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20=\ngithub.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=\ngithub.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=\ngithub.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=\ngithub.com/gbrlsnchs/jwt/v3 v3.0.0-beta.1 h1:EzDjxMg43q1tA2c0MV3tNbaontnHLplHyFF6M5KiVP0=\ngithub.com/gbrlsnchs/jwt/v3 v3.0.0-beta.1/go.mod h1:0eHX/BVySxPc6SE2mZRoppGq7qcEagxdmQnA3dzork8=\ngithub.com/getsentry/raven-go v0.2.0/go.mod h1:KungGk8q33+aIAZUIVWZDr2OfAEBsO49PX4NzFV5kcQ=\ngithub.com/ghemawat/stream v0.0.0-20171120220530-696b145b53b9/go.mod h1:106OIgooyS7OzLDOpUGgm9fA3bQENb/cFSyyBmMoJDs=\ngithub.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=\ngithub.com/gin-contrib/location v0.0.2 h1:QZKh1+K/LLR4KG/61eIO3b7MLuKi8tytQhV6texLgP4=\ngithub.com/gin-contrib/location v0.0.2/go.mod h1:NGoidiRlf0BlA/VKSVp+g3cuSMeTmip/63PhEjRhUAc=\ngithub.com/gin-contrib/pprof v1.3.0 h1:G9eK6HnbkSqDZBYbzG4wrjCsA4e+cvYAHUZw6W+W9K0=\ngithub.com/gin-contrib/pprof v1.3.0/go.mod h1:waMjT1H9b179t3CxuG1cV3DHpga6ybizwfBaM5OXaB0=\ngithub.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=\ngithub.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=\ngithub.com/gin-contrib/static v0.0.0-20191128031702-f81c604d8ac2/go.mod h1:VhW/Ch/3FhimwZb8Oj+qJmdMmoB8r7lmJ5auRjm50oQ=\ngithub.com/gin-contrib/static v0.0.1 h1:JVxuvHPuUfkoul12N7dtQw7KRn/pSMq7Ue1Va9Swm1U=\ngithub.com/gin-contrib/static v0.0.1/go.mod h1:CSxeF+wep05e0kCOsqWdAWbSszmc31zTIbD8TvWl7Hs=\ngithub.com/gin-gonic/gin v1.5.0/go.mod h1:Nd6IXA8m5kNZdNEHMBd93KT+mdY3+bewLgRvmCsR2Do=\ngithub.com/gin-gonic/gin v1.6.2/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M=\ngithub.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M=\ngithub.com/gin-gonic/gin v1.7.4 h1:QmUZXrvJ9qZ3GfWvQ+2wnW/1ePrTEJqPKMYEU3lD/DM=\ngithub.com/gin-gonic/gin v1.7.4/go.mod h1:jD2toBW3GZUr5UMcdrwQA10I7RuaFOl/SGeDjXkfUtY=\ngithub.com/gliderlabs/ssh v0.1.1/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0=\ngithub.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98=\ngithub.com/go-delve/delve v1.5.0/go.mod h1:c6b3a1Gry6x8a4LGCe/CWzrocrfaHvkUxCj3k4bvSUQ=\ngithub.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q=\ngithub.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=\ngithub.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=\ngithub.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=\ngithub.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=\ngithub.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=\ngithub.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o=\ngithub.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=\ngithub.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=\ngithub.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=\ngithub.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=\ngithub.com/go-mixins/swagger-ui v0.3.28/go.mod h1:6fi8WWHDpFAnKS+JUijWsG1lSCViN1M+cwemUvRbWwE=\ngithub.com/go-ole/go-ole v1.2.4 h1:nNBDSCOigTSiarFpYE9J/KtEA1IOW4CNeqT9TQDqCxI=\ngithub.com/go-ole/go-ole v1.2.4/go.mod h1:XCwSNxSkXRo4vlyPy93sltvi/qJq0jqQhjqQNIwKuxM=\ngithub.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A=\ngithub.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=\ngithub.com/go-playground/locales v0.12.1/go.mod h1:IUMDtCfWo/w/mtMfIE/IG2K+Ey3ygWanZIBtBW0W2TM=\ngithub.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q=\ngithub.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8=\ngithub.com/go-playground/universal-translator v0.16.0/go.mod h1:1AnU7NaIRDWWzGEKwgtJRd2xk99HeFyHw3yid4rvQIY=\ngithub.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no=\ngithub.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA=\ngithub.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI=\ngithub.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE=\ngithub.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4=\ngithub.com/go-sourcemap/sourcemap v2.1.3+incompatible h1:W1iEw64niKVGogNgBN3ePyLFfuisuzeidWPMPWmECqU=\ngithub.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg=\ngithub.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=\ngithub.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=\ngithub.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=\ngithub.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=\ngithub.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 h1:p104kn46Q8WdvHunIJ9dAyjPVtrBPhSr3KT2yUst43I=\ngithub.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE=\ngithub.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0=\ngithub.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY=\ngithub.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg=\ngithub.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI=\ngithub.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI=\ngithub.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs=\ngithub.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI=\ngithub.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI=\ngithub.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk=\ngithub.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28=\ngithub.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo=\ngithub.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk=\ngithub.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw=\ngithub.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360=\ngithub.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg=\ngithub.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE=\ngithub.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8=\ngithub.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc=\ngithub.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc=\ngithub.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4=\ngithub.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4=\ngithub.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ=\ngithub.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0=\ngithub.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw=\ngithub.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0=\ngithub.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo=\ngithub.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8=\ngithub.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=\ngithub.com/gobwas/ws v1.0.2 h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo=\ngithub.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM=\ngithub.com/godbus/dbus v0.0.0-20190402143921-271e53dc4968/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw=\ngithub.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=\ngithub.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s=\ngithub.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s=\ngithub.com/gogo/googleapis v1.3.1/go.mod h1:d+q1s/xVJxZGKWwC/6UfPIF33J+G1Tq4GYv9Y+Tg/EU=\ngithub.com/gogo/googleapis v1.4.0 h1:zgVt4UpGxcqVOw97aRGxT4svlcmdK35fynLNctY32zI=\ngithub.com/gogo/googleapis v1.4.0/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c=\ngithub.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=\ngithub.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=\ngithub.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=\ngithub.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o=\ngithub.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o=\ngithub.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=\ngithub.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=\ngithub.com/gogo/status v1.0.3/go.mod h1:SavQ51ycCLnc7dGyJxp8YAmudx8xqiVrRf+6IXRsugc=\ngithub.com/gogo/status v1.1.0 h1:+eIkrewn5q6b30y+g/BJINVVdi2xH7je5MPJ3ZPK3JA=\ngithub.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM=\ngithub.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=\ngithub.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=\ngithub.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=\ngithub.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=\ngithub.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY=\ngithub.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E=\ngithub.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=\ngithub.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=\ngithub.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=\ngithub.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=\ngithub.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4=\ngithub.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=\ngithub.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs=\ngithub.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0=\ngithub.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=\ngithub.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=\ngithub.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk=\ngithub.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=\ngithub.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=\ngithub.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=\ngithub.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=\ngithub.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=\ngithub.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=\ngithub.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=\ngithub.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=\ngithub.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=\ngithub.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=\ngithub.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=\ngithub.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=\ngithub.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=\ngithub.com/golang/snappy v0.0.2-0.20190904063534-ff6b7dc882cf h1:gFVkHXmVAhEbxZVDln5V9GKrLaluNoFHDbrZwAWZgws=\ngithub.com/golang/snappy v0.0.2-0.20190904063534-ff6b7dc882cf/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=\ngithub.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/flatbuffers v1.12.0 h1:/PtAHvnBY4Kqnx/xCQ3OIV9uYcSFGScBsWI3Oogeh6w=\ngithub.com/google/flatbuffers v1.12.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8=\ngithub.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=\ngithub.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=\ngithub.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=\ngithub.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=\ngithub.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-dap v0.2.0/go.mod h1:5q8aYQFnHOAZEMP+6vmq25HKYAEwE+LF5yh7JKrrhSQ=\ngithub.com/google/go-github v17.0.0+incompatible h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY=\ngithub.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ=\ngithub.com/google/go-github/v30 v30.1.0 h1:VLDx+UolQICEOKu2m4uAoMti1SxuEBAl7RSEG16L+Oo=\ngithub.com/google/go-github/v30 v30.1.0/go.mod h1:n8jBpHl45a/rlBUtRJMOG4GhNADUQFEufcolZ95JfU8=\ngithub.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=\ngithub.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=\ngithub.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=\ngithub.com/google/gopacket v1.1.17/go.mod h1:UdDNZ1OO62aGYVnPhxT1U6aI7ukYtA/kB8vaU0diBUM=\ngithub.com/google/gopacket v1.1.18/go.mod h1:UdDNZ1OO62aGYVnPhxT1U6aI7ukYtA/kB8vaU0diBUM=\ngithub.com/google/gopacket v1.1.19 h1:ves8RnFZPGiFnTS0uPQStjwru6uO6h+nlr9j6fL7kF8=\ngithub.com/google/gopacket v1.1.19/go.mod h1:iJ8V8n6KS+z2U1A8pUwu8bW5SyEMkXJB8Yo/Vo+TKTo=\ngithub.com/google/goterm v0.0.0-20190703233501-fc88cf888a3f/go.mod h1:nOFQdrUlIlx6M6ODdSpBj1NVA+VgLC6kmw60mkw34H4=\ngithub.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=\ngithub.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0=\ngithub.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=\ngithub.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=\ngithub.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=\ngithub.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=\ngithub.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=\ngithub.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=\ngithub.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=\ngithub.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=\ngithub.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=\ngithub.com/google/uuid v1.2.0 h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs=\ngithub.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=\ngithub.com/googleapis/gax-go v2.0.0+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY=\ngithub.com/googleapis/gax-go/v2 v2.0.3/go.mod h1:LLvjysVCY1JZeum8Z6l8qUty8fiNwE08qbEPm1M08qg=\ngithub.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=\ngithub.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=\ngithub.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=\ngithub.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f h1:KMlcu9X58lhTA/KrfX8Bi1LQSO4pzoVjTiL3h4Jk+Zk=\ngithub.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=\ngithub.com/gordonklaus/ineffassign v0.0.0-20200309095847-7953dde2c7bf/go.mod h1:cuNKsD1zp2v6XfE/orVX2QE1LC+i254ceGcVeDT3pTU=\ngithub.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=\ngithub.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ=\ngithub.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=\ngithub.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=\ngithub.com/gorilla/mux v1.7.4 h1:VuZ8uybHlWmqV03+zRzdwKL4tUnIp1MAQtp1mIFE1bc=\ngithub.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=\ngithub.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=\ngithub.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=\ngithub.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=\ngithub.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=\ngithub.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=\ngithub.com/gosimple/slug v1.9.0 h1:r5vDcYrFz9BmfIAMC829un9hq7hKM4cHUrsv36LbEqs=\ngithub.com/gosimple/slug v1.9.0/go.mod h1:AMZ+sOVe65uByN3kgEyf9WEBKBCSS+dJjMX9x4vDJbg=\ngithub.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.1.0/go.mod h1:f5nM7jw/oeRSadq3xCzHAvxcr8HZnzsqU6ILg/0NiiE=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.2.0/go.mod h1:mJzapYve32yjrKlk9GbyCZHuPgZsrbyIbyKhSzOpg6s=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaDEhniwNedqGo9FuLFzppDr3uwI=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.3.0 h1:+9834+KizmvFV7pXQGSXQTsaWhq2GjuNUt0aUU0YBYw=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y=\ngithub.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=\ngithub.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw=\ngithub.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=\ngithub.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=\ngithub.com/grpc-ecosystem/grpc-gateway v1.14.6/go.mod h1:zdiPV4Yse/1gnckTHtghG4GkDEdKCRJduHpTxT3/jcw=\ngithub.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo=\ngithub.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=\ngithub.com/grpc-ecosystem/grpc-gateway/v2 v2.2.0 h1:HlJcTiqGHvaWDG7/s85d68Kw7G7FqMz+9LlcyVauOAw=\ngithub.com/grpc-ecosystem/grpc-gateway/v2 v2.2.0/go.mod h1:gRq9gZWcIFvz68EgWqy2qQpRbmtn5j2qLZ4zHjqiLpg=\ngithub.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645/go.mod h1:6iZfnjpejD4L/4DwD7NryNaJyCQdzwWwH2MWhCA90Kw=\ngithub.com/gxed/go-shellwords v1.0.3/go.mod h1:N7paucT91ByIjmVJHhvoarjoQnmsi3Jd3vH7VqgtMxQ=\ngithub.com/gxed/hashland/keccakpg v0.0.1/go.mod h1:kRzw3HkwxFU1mpmPP8v1WyQzwdGfmKFJ6tItnhQ67kU=\ngithub.com/gxed/hashland/murmur3 v0.0.1/go.mod h1:KjXop02n4/ckmZSnY2+HKcLud/tcmvhST0bie/0lS48=\ngithub.com/gxed/pubsub v0.0.0-20180201040156-26ebdf44f824/go.mod h1:OiEWyHgK+CWrmOlVquHaIK1vhpUJydC9m0Je6mhaiNE=\ngithub.com/hako/durafmt v0.0.0-20200710122514-c0fb7b4da026/go.mod h1:5Scbynm8dF1XAPwIwkGPqzkM/shndPm79Jd1003hTjE=\ngithub.com/hannahhoward/cbor-gen-for v0.0.0-20200817222906-ea96cece81f1 h1:F9k+7wv5OIk1zcq23QpdiL0hfDuXPjuOmMNaC6fgQ0Q=\ngithub.com/hannahhoward/cbor-gen-for v0.0.0-20200817222906-ea96cece81f1/go.mod h1:jvfsLIxk0fY/2BKSQ1xf2406AKA5dwMmKKv0ADcOfN8=\ngithub.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e h1:3YKHER4nmd7b5qy5t0GWDTwSn4OyRgfAXSmo6VnryBY=\ngithub.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e/go.mod h1:I8h3MITA53gN9OnWGCgaMa0JWVRdXthWw4M3CPM54OY=\ngithub.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q=\ngithub.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE=\ngithub.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=\ngithub.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=\ngithub.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=\ngithub.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=\ngithub.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=\ngithub.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=\ngithub.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM=\ngithub.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=\ngithub.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA=\ngithub.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=\ngithub.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=\ngithub.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=\ngithub.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU=\ngithub.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=\ngithub.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=\ngithub.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=\ngithub.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=\ngithub.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=\ngithub.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d h1:dg1dEPuWpEqDnvIw251EVy4zlP8gWbsGj4BsUKCRpYs=\ngithub.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=\ngithub.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=\ngithub.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=\ngithub.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=\ngithub.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=\ngithub.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=\ngithub.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=\ngithub.com/hodgesds/perf-utils v0.0.8/go.mod h1:F6TfvsbtrF88i++hou29dTXlI2sfsJv+gRZDtmTJkAs=\ngithub.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=\ngithub.com/hsanjuan/ipfs-lite v1.1.21 h1:fSvy4pQM5aqvEZCHJzhTb1dSqgPkDzawn3KllRL9Njg=\ngithub.com/hsanjuan/ipfs-lite v1.1.21/go.mod h1:yQu8u9/p2dkXGlmuEpgK0q54jz+g6tLyrbv2cHIKxZM=\ngithub.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg=\ngithub.com/huin/goupnp v0.0.0-20180415215157-1395d1447324/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag=\ngithub.com/huin/goupnp v1.0.0 h1:wg75sLpL6DZqwHQN6E1Cfk6mtfzS45z8OV+ic+DtHRo=\ngithub.com/huin/goupnp v1.0.0/go.mod h1:n9v9KO1tAxYH82qOn+UTIFQDmx5n1Zxd/ClZDMX7Bnc=\ngithub.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o=\ngithub.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=\ngithub.com/improbable-eng/grpc-web v0.13.0/go.mod h1:6hRR09jOEG81ADP5wCQju1z71g6OL4eEvELdran/3cs=\ngithub.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf h1:WfD7VjIE6z8dIvMsI4/s+1qr5EL+zoIGev1BQj1eoJ8=\ngithub.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf/go.mod h1:hyb9oH7vZsitZCiBt0ZvifOrB+qc8PS5IiilCIb87rg=\ngithub.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=\ngithub.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=\ngithub.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo=\ngithub.com/ipfs/bbloom v0.0.1/go.mod h1:oqo8CVWsJFMOZqTglBG4wydCE4IQA/G2/SEofB0rjUI=\ngithub.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs=\ngithub.com/ipfs/bbloom v0.0.4/go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0=\ngithub.com/ipfs/go-bitswap v0.0.3/go.mod h1:jadAZYsP/tcRMl47ZhFxhaNuDQoXawT8iHMg+iFoQbg=\ngithub.com/ipfs/go-bitswap v0.0.9/go.mod h1:kAPf5qgn2W2DrgAcscZ3HrM9qh4pH+X8Fkk3UPrwvis=\ngithub.com/ipfs/go-bitswap v0.1.0/go.mod h1:FFJEf18E9izuCqUtHxbWEvq+reg7o4CW5wSAE1wsxj0=\ngithub.com/ipfs/go-bitswap v0.1.2/go.mod h1:qxSWS4NXGs7jQ6zQvoPY3+NmOfHHG47mhkiLzBpJQIs=\ngithub.com/ipfs/go-bitswap v0.1.3/go.mod h1:YEQlFy0kkxops5Vy+OxWdRSEZIoS7I7KDIwoa5Chkps=\ngithub.com/ipfs/go-bitswap v0.1.8/go.mod h1:TOWoxllhccevbWFUR2N7B1MTSVVge1s6XSMiCSA4MzM=\ngithub.com/ipfs/go-bitswap v0.3.2/go.mod h1:AyWWfN3moBzQX0banEtfKOfbXb3ZeoOeXnZGNPV9S6w=\ngithub.com/ipfs/go-bitswap v0.3.4 h1:AhJhRrG8xkxh6x87b4wWs+4U4y3DVB3doI8yFNqgQME=\ngithub.com/ipfs/go-bitswap v0.3.4/go.mod h1:4T7fvNv/LmOys+21tnLzGKncMeeXUYUd1nUiJ2teMvI=\ngithub.com/ipfs/go-block-format v0.0.1/go.mod h1:DK/YYcsSUIVAFNwo/KZCdIIbpN0ROH/baNLgayt4pFc=\ngithub.com/ipfs/go-block-format v0.0.2/go.mod h1:AWR46JfpcObNfg3ok2JHDUfdiHRgWhJgCQF+KIgOPJY=\ngithub.com/ipfs/go-block-format v0.0.3 h1:r8t66QstRp/pd/or4dpnbVfXT5Gt7lOqRvC+/dDTpMc=\ngithub.com/ipfs/go-block-format v0.0.3/go.mod h1:4LmD4ZUw0mhO+JSKdpWwrzATiEfM7WWgQ8H5l6P8MVk=\ngithub.com/ipfs/go-blockservice v0.0.3/go.mod h1:/NNihwTi6V2Yr6g8wBI+BSwPuURpBRMtYNGrlxZ8KuI=\ngithub.com/ipfs/go-blockservice v0.0.7/go.mod h1:EOfb9k/Y878ZTRY/CH0x5+ATtaipfbRhbvNSdgc/7So=\ngithub.com/ipfs/go-blockservice v0.1.0/go.mod h1:hzmMScl1kXHg3M2BjTymbVPjv627N7sYcvYaKbop39M=\ngithub.com/ipfs/go-blockservice v0.1.2/go.mod h1:t+411r7psEUhLueM8C7aPA7cxCclv4O3VsUVxt9kz2I=\ngithub.com/ipfs/go-blockservice v0.1.3/go.mod h1:OTZhFpkgY48kNzbgyvcexW9cHrpjBYIjSR0KoDOFOLU=\ngithub.com/ipfs/go-blockservice v0.1.4-0.20200624145336-a978cec6e834/go.mod h1:OTZhFpkgY48kNzbgyvcexW9cHrpjBYIjSR0KoDOFOLU=\ngithub.com/ipfs/go-blockservice v0.1.4 h1:Vq+MlsH8000KbbUciRyYMEw/NNP8UAGmcqKi4uWmFGA=\ngithub.com/ipfs/go-blockservice v0.1.4/go.mod h1:OTZhFpkgY48kNzbgyvcexW9cHrpjBYIjSR0KoDOFOLU=\ngithub.com/ipfs/go-cid v0.0.1/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM=\ngithub.com/ipfs/go-cid v0.0.2/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM=\ngithub.com/ipfs/go-cid v0.0.3/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM=\ngithub.com/ipfs/go-cid v0.0.4-0.20191112011718-79e75dffeb10/go.mod h1:/BYOuUoxkE+0f6tGzlzMvycuN+5l35VOR4Bpg2sCmds=\ngithub.com/ipfs/go-cid v0.0.4/go.mod h1:4LLaPOQwmk5z9LBgQnpkivrx8BJjUyGwTXCd5Xfj6+M=\ngithub.com/ipfs/go-cid v0.0.5/go.mod h1:plgt+Y5MnOey4vO4UlUazGqdbEXuFYitED67FexhXog=\ngithub.com/ipfs/go-cid v0.0.6-0.20200501230655-7c82f3b81c00/go.mod h1:plgt+Y5MnOey4vO4UlUazGqdbEXuFYitED67FexhXog=\ngithub.com/ipfs/go-cid v0.0.6/go.mod h1:6Ux9z5e+HpkQdckYoX1PG/6xqKspzlEIR5SDmgqgC/I=\ngithub.com/ipfs/go-cid v0.0.7 h1:ysQJVJA3fNDF1qigJbsSQOdjhVLsOEoPdh0+R97k3jY=\ngithub.com/ipfs/go-cid v0.0.7/go.mod h1:6Ux9z5e+HpkQdckYoX1PG/6xqKspzlEIR5SDmgqgC/I=\ngithub.com/ipfs/go-cidutil v0.0.2 h1:CNOboQf1t7Qp0nuNh8QMmhJs0+Q//bRL1axtCnIB1Yo=\ngithub.com/ipfs/go-cidutil v0.0.2/go.mod h1:ewllrvrxG6AMYStla3GD7Cqn+XYSLqjK0vc+086tB6s=\ngithub.com/ipfs/go-datastore v0.0.1/go.mod h1:d4KVXhMt913cLBEI/PXAy6ko+W7e9AhyAKBGh803qeE=\ngithub.com/ipfs/go-datastore v0.0.5/go.mod h1:d4KVXhMt913cLBEI/PXAy6ko+W7e9AhyAKBGh803qeE=\ngithub.com/ipfs/go-datastore v0.1.0/go.mod h1:d4KVXhMt913cLBEI/PXAy6ko+W7e9AhyAKBGh803qeE=\ngithub.com/ipfs/go-datastore v0.1.1/go.mod h1:w38XXW9kVFNp57Zj5knbKWM2T+KOZCGDRVNdgPHtbHw=\ngithub.com/ipfs/go-datastore v0.3.0/go.mod h1:w38XXW9kVFNp57Zj5knbKWM2T+KOZCGDRVNdgPHtbHw=\ngithub.com/ipfs/go-datastore v0.3.1/go.mod h1:w38XXW9kVFNp57Zj5knbKWM2T+KOZCGDRVNdgPHtbHw=\ngithub.com/ipfs/go-datastore v0.4.0/go.mod h1:SX/xMIKoCszPqp+z9JhPYCmoOoXTvaa13XEbGtsFUhA=\ngithub.com/ipfs/go-datastore v0.4.1/go.mod h1:SX/xMIKoCszPqp+z9JhPYCmoOoXTvaa13XEbGtsFUhA=\ngithub.com/ipfs/go-datastore v0.4.2/go.mod h1:SX/xMIKoCszPqp+z9JhPYCmoOoXTvaa13XEbGtsFUhA=\ngithub.com/ipfs/go-datastore v0.4.4/go.mod h1:SX/xMIKoCszPqp+z9JhPYCmoOoXTvaa13XEbGtsFUhA=\ngithub.com/ipfs/go-datastore v0.4.5 h1:cwOUcGMLdLPWgu3SlrCckCMznaGADbPqE0r8h768/Dg=\ngithub.com/ipfs/go-datastore v0.4.5/go.mod h1:eXTcaaiN6uOlVCLS9GjJUJtlvJfM3xk23w3fyfrmmJs=\ngithub.com/ipfs/go-detect-race v0.0.1 h1:qX/xay2W3E4Q1U7d9lNs1sU9nvguX0a7319XbyQ6cOk=\ngithub.com/ipfs/go-detect-race v0.0.1/go.mod h1:8BNT7shDZPo99Q74BpGMK+4D8Mn4j46UU0LZ723meps=\ngithub.com/ipfs/go-ds-badger v0.0.2/go.mod h1:Y3QpeSFWQf6MopLTiZD+VT6IC1yZqaGmjvRcKeSGij8=\ngithub.com/ipfs/go-ds-badger v0.0.5/go.mod h1:g5AuuCGmr7efyzQhLL8MzwqcauPojGPUaHzfGTzuE3s=\ngithub.com/ipfs/go-ds-badger v0.0.7/go.mod h1:qt0/fWzZDoPW6jpQeqUjR5kBfhDNB65jd9YlmAvpQBk=\ngithub.com/ipfs/go-ds-badger v0.2.1/go.mod h1:Tx7l3aTph3FMFrRS838dcSJh+jjA7cX9DrGVwx/NOwE=\ngithub.com/ipfs/go-ds-badger v0.2.3/go.mod h1:pEYw0rgg3FIrywKKnL+Snr+w/LjJZVMTBRn4FS6UHUk=\ngithub.com/ipfs/go-ds-badger v0.2.7 h1:ju5REfIm+v+wgVnQ19xGLYPHYHbYLR6qJfmMbCDSK1I=\ngithub.com/ipfs/go-ds-badger v0.2.7/go.mod h1:02rnztVKA4aZwDuaRPTf8mpqcKmXP7mLl6JPxd14JHA=\ngithub.com/ipfs/go-ds-badger2 v0.1.0/go.mod h1:pbR1p817OZbdId9EvLOhKBgUVTM3BMCSTan78lDDVaw=\ngithub.com/ipfs/go-ds-badger2 v0.1.1-0.20200708190120-187fc06f714e h1:Xi1nil8K2lBOorBS6Ys7+hmUCzH8fr3U9ipdL/IrcEI=\ngithub.com/ipfs/go-ds-badger2 v0.1.1-0.20200708190120-187fc06f714e/go.mod h1:lJnws7amT9Ehqzta0gwMrRsURU04caT0iRPr1W8AsOU=\ngithub.com/ipfs/go-ds-flatfs v0.4.4 h1:DmGZ4qOYQLNgu8Mltuz1DtUHpm+BjWMcVN3F3H3VJzQ=\ngithub.com/ipfs/go-ds-flatfs v0.4.4/go.mod h1:e4TesLyZoA8k1gV/yCuBTnt2PJtypn4XUlB5n8KQMZY=\ngithub.com/ipfs/go-ds-leveldb v0.0.1/go.mod h1:feO8V3kubwsEF22n0YRQCffeb79OOYIykR4L04tMOYc=\ngithub.com/ipfs/go-ds-leveldb v0.1.0/go.mod h1:hqAW8y4bwX5LWcCtku2rFNX3vjDZCy5LZCg+cSZvYb8=\ngithub.com/ipfs/go-ds-leveldb v0.4.1/go.mod h1:jpbku/YqBSsBc1qgME8BkWS4AxzF2cEu1Ii2r79Hh9s=\ngithub.com/ipfs/go-ds-leveldb v0.4.2 h1:QmQoAJ9WkPMUfBLnu1sBVy0xWWlJPg0m4kRAiJL9iaw=\ngithub.com/ipfs/go-ds-leveldb v0.4.2/go.mod h1:jpbku/YqBSsBc1qgME8BkWS4AxzF2cEu1Ii2r79Hh9s=\ngithub.com/ipfs/go-ds-measure v0.1.0/go.mod h1:1nDiFrhLlwArTME1Ees2XaBOl49OoCgd2A3f8EchMSY=\ngithub.com/ipfs/go-ds-pebble v0.0.2-0.20200921225637-ce220f8ac459/go.mod h1:oh4liWHulKcDKVhCska5NLelE3MatWl+1FwSz3tY91g=\ngithub.com/ipfs/go-filestore v1.0.0 h1:QR7ekKH+q2AGiWDc7W2Q0qHuYSRZGUJqUn0GsegEPb0=\ngithub.com/ipfs/go-filestore v1.0.0/go.mod h1:/XOCuNtIe2f1YPbiXdYvD0BKLA0JR1MgPiFOdcuu9SM=\ngithub.com/ipfs/go-fs-lock v0.0.6/go.mod h1:OTR+Rj9sHiRubJh3dRhD15Juhd/+w6VPOY28L7zESmM=\ngithub.com/ipfs/go-graphsync v0.1.0/go.mod h1:jMXfqIEDFukLPZHqDPp8tJMbHO9Rmeb9CEGevngQbmE=\ngithub.com/ipfs/go-graphsync v0.4.2/go.mod h1:/VmbZTUdUMTbNkgzAiCEucIIAU3BkLE2cZrDCVUhyi0=\ngithub.com/ipfs/go-graphsync v0.4.3/go.mod h1:mPOwDYv128gf8gxPFgXnz4fNrSYPsWyqisJ7ych+XDY=\ngithub.com/ipfs/go-graphsync v0.5.2 h1:USD+daaSC+7pLHCxROThSaF6SF7WYXF03sjrta0rCfA=\ngithub.com/ipfs/go-graphsync v0.5.2/go.mod h1:e2ZxnClqBBYAtd901g9vXMJzS47labjAtOzsWtOzKNk=\ngithub.com/ipfs/go-hamt-ipld v0.0.15-0.20200131012125-dd88a59d3f2e/go.mod h1:9aQJu/i/TaRDW6jqB5U217dLIDopn50wxLdHXM2CTfE=\ngithub.com/ipfs/go-hamt-ipld v0.1.1/go.mod h1:1EZCr2v0jlCnhpa+aZ0JZYp8Tt2w16+JJOAVz17YcDk=\ngithub.com/ipfs/go-ipfs-blockstore v0.0.1/go.mod h1:d3WClOmRQKFnJ0Jz/jj/zmksX0ma1gROTlovZKBmN08=\ngithub.com/ipfs/go-ipfs-blockstore v0.1.0/go.mod h1:5aD0AvHPi7mZc6Ci1WCAhiBQu2IsfTduLl+422H6Rqw=\ngithub.com/ipfs/go-ipfs-blockstore v0.1.4/go.mod h1:Jxm3XMVjh6R17WvxFEiyKBLUGr86HgIYJW/D/MwqeYQ=\ngithub.com/ipfs/go-ipfs-blockstore v1.0.0/go.mod h1:knLVdhVU9L7CC4T+T4nvGdeUIPAXlnd9zmXfp+9MIjU=\ngithub.com/ipfs/go-ipfs-blockstore v1.0.1/go.mod h1:MGNZlHNEnR4KGgPHM3/k8lBySIOK2Ve+0KjZubKlaOE=\ngithub.com/ipfs/go-ipfs-blockstore v1.0.3/go.mod h1:MGNZlHNEnR4KGgPHM3/k8lBySIOK2Ve+0KjZubKlaOE=\ngithub.com/ipfs/go-ipfs-blockstore v1.0.4 h1:DZdeya9Vu4ttvlGheQPGrj6kWehXnYZRFCp9EsZQ1hI=\ngithub.com/ipfs/go-ipfs-blockstore v1.0.4/go.mod h1:uL7/gTJ8QIZ3MtA3dWf+s1a0U3fJy2fcEZAsovpRp+w=\ngithub.com/ipfs/go-ipfs-blocksutil v0.0.1 h1:Eh/H4pc1hsvhzsQoMEP3Bke/aW5P5rVM1IWFJMcGIPQ=\ngithub.com/ipfs/go-ipfs-blocksutil v0.0.1/go.mod h1:Yq4M86uIOmxmGPUHv/uI7uKqZNtLb449gwKqXjIsnRk=\ngithub.com/ipfs/go-ipfs-chunker v0.0.1/go.mod h1:tWewYK0we3+rMbOh7pPFGDyypCtvGcBFymgY4rSDLAw=\ngithub.com/ipfs/go-ipfs-chunker v0.0.5 h1:ojCf7HV/m+uS2vhUGWcogIIxiO5ubl5O57Q7NapWLY8=\ngithub.com/ipfs/go-ipfs-chunker v0.0.5/go.mod h1:jhgdF8vxRHycr00k13FM8Y0E+6BoalYeobXmUyTreP8=\ngithub.com/ipfs/go-ipfs-cmds v0.1.0/go.mod h1:TiK4e7/V31tuEb8YWDF8lN3qrnDH+BS7ZqWIeYJlAs8=\ngithub.com/ipfs/go-ipfs-cmds v0.3.0 h1:mi9oYrSCox5aBhutqAYqw6/9crlyGbw4E/aJtwS4zI4=\ngithub.com/ipfs/go-ipfs-cmds v0.3.0/go.mod h1:ZgYiWVnCk43ChwoH8hAmI1IRbuVtq3GSTHwtRB/Kqhk=\ngithub.com/ipfs/go-ipfs-config v0.0.11/go.mod h1:wveA8UT5ywN26oKStByzmz1CO6cXwLKKM6Jn/Hfw08I=\ngithub.com/ipfs/go-ipfs-config v0.5.3/go.mod h1:nSLCFtlaL+2rbl3F+9D4gQZQbT1LjRKx7TJg/IHz6oM=\ngithub.com/ipfs/go-ipfs-config v0.14.0 h1:KijwGU788UycqPWv4GxzyfyN6EtfJjjDRzd/wSA86VU=\ngithub.com/ipfs/go-ipfs-config v0.14.0/go.mod h1:Ei/FLgHGTdPyqCPK0oPCwGTe8VSnsjJjx7HZqUb6Ry0=\ngithub.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod h1:8SP1YXK1M1kXuc4KJZINY3TQQ03J2rwBG9QfXmbRPrw=\ngithub.com/ipfs/go-ipfs-delay v0.0.1 h1:r/UXYyRcddO6thwOnhiznIAiSvxMECGgtv35Xs1IeRQ=\ngithub.com/ipfs/go-ipfs-delay v0.0.1/go.mod h1:8SP1YXK1M1kXuc4KJZINY3TQQ03J2rwBG9QfXmbRPrw=\ngithub.com/ipfs/go-ipfs-ds-help v0.0.1/go.mod h1:gtP9xRaZXqIQRh1HRpp595KbBEdgqWFxefeVKOV8sxo=\ngithub.com/ipfs/go-ipfs-ds-help v0.1.1/go.mod h1:SbBafGJuGsPI/QL3j9Fc5YPLeAu+SzOkI0gFwAg+mOs=\ngithub.com/ipfs/go-ipfs-ds-help v1.0.0 h1:bEQ8hMGs80h0sR8O4tfDgV6B01aaF9qeTrujrTLYV3g=\ngithub.com/ipfs/go-ipfs-ds-help v1.0.0/go.mod h1:ujAbkeIgkKAWtxxNkoZHWLCyk5JpPoKnGyCcsoF6ueE=\ngithub.com/ipfs/go-ipfs-exchange-interface v0.0.1 h1:LJXIo9W7CAmugqI+uofioIpRb6rY30GUu7G6LUfpMvM=\ngithub.com/ipfs/go-ipfs-exchange-interface v0.0.1/go.mod h1:c8MwfHjtQjPoDyiy9cFquVtVHkO9b9Ob3FG91qJnWCM=\ngithub.com/ipfs/go-ipfs-exchange-offline v0.0.1 h1:P56jYKZF7lDDOLx5SotVh5KFxoY6C81I1NSHW1FxGew=\ngithub.com/ipfs/go-ipfs-exchange-offline v0.0.1/go.mod h1:WhHSFCVYX36H/anEKQboAzpUws3x7UeEGkzQc3iNkM0=\ngithub.com/ipfs/go-ipfs-files v0.0.2/go.mod h1:INEFm0LL2LWXBhNJ2PMIIb2w45hpXgPjNoE7yA8Y1d4=\ngithub.com/ipfs/go-ipfs-files v0.0.3/go.mod h1:INEFm0LL2LWXBhNJ2PMIIb2w45hpXgPjNoE7yA8Y1d4=\ngithub.com/ipfs/go-ipfs-files v0.0.4/go.mod h1:INEFm0LL2LWXBhNJ2PMIIb2w45hpXgPjNoE7yA8Y1d4=\ngithub.com/ipfs/go-ipfs-files v0.0.8 h1:8o0oFJkJ8UkO/ABl8T6ac6tKF3+NIpj67aAB6ZpusRg=\ngithub.com/ipfs/go-ipfs-files v0.0.8/go.mod h1:wiN/jSG8FKyk7N0WyctKSvq3ljIa2NNTiZB55kpTdOs=\ngithub.com/ipfs/go-ipfs-flags v0.0.1/go.mod h1:RnXBb9WV53GSfTrSDVK61NLTFKvWc60n+K9EgCDh+rA=\ngithub.com/ipfs/go-ipfs-http-client v0.0.5/go.mod h1:8EKP9RGUrUex4Ff86WhnKU7seEBOtjdgXlY9XHYvYMw=\ngithub.com/ipfs/go-ipfs-http-client v0.1.0 h1:YrJ+/vqmZF1ignpxfHUaJEax7e4tgbaFCTLfIS5yFZY=\ngithub.com/ipfs/go-ipfs-http-client v0.1.0/go.mod h1:8e2dQbntMZKxLfny+tyXJ7bJHZFERp/2vyzZdvkeLMc=\ngithub.com/ipfs/go-ipfs-posinfo v0.0.1 h1:Esoxj+1JgSjX0+ylc0hUmJCOv6V2vFoZiETLR6OtpRs=\ngithub.com/ipfs/go-ipfs-posinfo v0.0.1/go.mod h1:SwyeVP+jCwiDu0C313l/8jg6ZxM0qqtlt2a0vILTc1A=\ngithub.com/ipfs/go-ipfs-pq v0.0.1/go.mod h1:LWIqQpqfRG3fNc5XsnIhz/wQ2XXGyugQwls7BgUmUfY=\ngithub.com/ipfs/go-ipfs-pq v0.0.2 h1:e1vOOW6MuOwG2lqxcLA+wEn93i/9laCY8sXAw76jFOY=\ngithub.com/ipfs/go-ipfs-pq v0.0.2/go.mod h1:LWIqQpqfRG3fNc5XsnIhz/wQ2XXGyugQwls7BgUmUfY=\ngithub.com/ipfs/go-ipfs-provider v0.5.1 h1:kZj72jzWLtGcorlwnMvBL6y6KJk6klO2Kb8QSeqEB0o=\ngithub.com/ipfs/go-ipfs-provider v0.5.1/go.mod h1:fem6HKSru7n35Ljap6kowWdJrUzvcWJW01uhAkqNnzo=\ngithub.com/ipfs/go-ipfs-routing v0.0.1/go.mod h1:k76lf20iKFxQTjcJokbPM9iBXVXVZhcOwc360N4nuKs=\ngithub.com/ipfs/go-ipfs-routing v0.1.0 h1:gAJTT1cEeeLj6/DlLX6t+NxD9fQe2ymTO6qWRDI/HQQ=\ngithub.com/ipfs/go-ipfs-routing v0.1.0/go.mod h1:hYoUkJLyAUKhF58tysKpids8RNDPO42BVMgK5dNsoqY=\ngithub.com/ipfs/go-ipfs-util v0.0.1/go.mod h1:spsl5z8KUnrve+73pOhSVZND1SIxPW5RyBCNzQxlJBc=\ngithub.com/ipfs/go-ipfs-util v0.0.2 h1:59Sswnk1MFaiq+VcaknX7aYEyGyGDAA73ilhEK2POp8=\ngithub.com/ipfs/go-ipfs-util v0.0.2/go.mod h1:CbPtkWJzjLdEcezDns2XYaehFVNXG9zrdrtMecczcsQ=\ngithub.com/ipfs/go-ipld-cbor v0.0.1/go.mod h1:RXHr8s4k0NE0TKhnrxqZC9M888QfsBN9rhS5NjfKzY8=\ngithub.com/ipfs/go-ipld-cbor v0.0.2/go.mod h1:wTBtrQZA3SoFKMVkp6cn6HMRteIB1VsmHA0AQFOn7Nc=\ngithub.com/ipfs/go-ipld-cbor v0.0.3/go.mod h1:wTBtrQZA3SoFKMVkp6cn6HMRteIB1VsmHA0AQFOn7Nc=\ngithub.com/ipfs/go-ipld-cbor v0.0.4/go.mod h1:BkCduEx3XBCO6t2Sfo5BaHzuok7hbhdMm9Oh8B2Ftq4=\ngithub.com/ipfs/go-ipld-cbor v0.0.5-0.20200204214505-252690b78669/go.mod h1:BkCduEx3XBCO6t2Sfo5BaHzuok7hbhdMm9Oh8B2Ftq4=\ngithub.com/ipfs/go-ipld-cbor v0.0.5 h1:ovz4CHKogtG2KB/h1zUp5U0c/IzZrL435rCh5+K/5G8=\ngithub.com/ipfs/go-ipld-cbor v0.0.5/go.mod h1:BkCduEx3XBCO6t2Sfo5BaHzuok7hbhdMm9Oh8B2Ftq4=\ngithub.com/ipfs/go-ipld-format v0.0.1/go.mod h1:kyJtbkDALmFHv3QR6et67i35QzO3S0dCDnkOJhcZkms=\ngithub.com/ipfs/go-ipld-format v0.0.2/go.mod h1:4B6+FM2u9OJ9zCV+kSbgFAZlOrv1Hqbf0INGQgiKf9k=\ngithub.com/ipfs/go-ipld-format v0.2.0 h1:xGlJKkArkmBvowr+GMCX0FEZtkro71K1AwiKnL37mwA=\ngithub.com/ipfs/go-ipld-format v0.2.0/go.mod h1:3l3C1uKoadTPbeNfrDi+xMInYKlx2Cvg1BuydPSdzQs=\ngithub.com/ipfs/go-ipns v0.0.2 h1:oq4ErrV4hNQ2Eim257RTYRgfOSV/s8BDaf9iIl4NwFs=\ngithub.com/ipfs/go-ipns v0.0.2/go.mod h1:WChil4e0/m9cIINWLxZe1Jtf77oz5L05rO2ei/uKJ5U=\ngithub.com/ipfs/go-log v0.0.1/go.mod h1:kL1d2/hzSpI0thNYjiKfjanbVNU+IIGA/WnNESY9leM=\ngithub.com/ipfs/go-log v1.0.0/go.mod h1:JO7RzlMK6rA+CIxFMLOuB6Wf5b81GDiKElL7UPSIKjA=\ngithub.com/ipfs/go-log v1.0.1/go.mod h1:HuWlQttfN6FWNHRhlY5yMk/lW7evQC0HHGOxEwMRR8I=\ngithub.com/ipfs/go-log v1.0.2/go.mod h1:1MNjMxe0u6xvJZgeqbJ8vdo2TKaGwZ1a0Bpza+sr2Sk=\ngithub.com/ipfs/go-log v1.0.3/go.mod h1:OsLySYkwIbiSUR/yBTdv1qPtcE4FW3WPWk/ewz9Ru+A=\ngithub.com/ipfs/go-log v1.0.4/go.mod h1:oDCg2FkjogeFOhqqb+N39l2RpTNPL6F/StPkB3kPgcs=\ngithub.com/ipfs/go-log v1.0.5 h1:2dOuUCB1Z7uoczMWgAyDck5JLb72zHzrMnGnCNNbvY8=\ngithub.com/ipfs/go-log v1.0.5/go.mod h1:j0b8ZoR+7+R99LD9jZ6+AJsrzkPbSXbZfGakb5JPtIo=\ngithub.com/ipfs/go-log/v2 v2.0.1/go.mod h1:O7P1lJt27vWHhOwQmcFEvlmo49ry2VY2+JfBWFaa9+0=\ngithub.com/ipfs/go-log/v2 v2.0.2/go.mod h1:O7P1lJt27vWHhOwQmcFEvlmo49ry2VY2+JfBWFaa9+0=\ngithub.com/ipfs/go-log/v2 v2.0.3/go.mod h1:O7P1lJt27vWHhOwQmcFEvlmo49ry2VY2+JfBWFaa9+0=\ngithub.com/ipfs/go-log/v2 v2.0.5/go.mod h1:eZs4Xt4ZUJQFM3DlanGhy7TkwwawCZcSByscwkWG+dw=\ngithub.com/ipfs/go-log/v2 v2.0.8/go.mod h1:eZs4Xt4ZUJQFM3DlanGhy7TkwwawCZcSByscwkWG+dw=\ngithub.com/ipfs/go-log/v2 v2.1.1/go.mod h1:2v2nsGfZsvvAJz13SyFzf9ObaqwHiHxsPLEHntrv9KM=\ngithub.com/ipfs/go-log/v2 v2.1.2-0.20200626104915-0016c0b4b3e4/go.mod h1:2v2nsGfZsvvAJz13SyFzf9ObaqwHiHxsPLEHntrv9KM=\ngithub.com/ipfs/go-log/v2 v2.1.3/go.mod h1:/8d0SH3Su5Ooc31QlL1WysJhvyOTDCjcCZ9Axpmri6g=\ngithub.com/ipfs/go-log/v2 v2.3.0 h1:31Re/cPqFHpsRHgyVwjWADPoF0otB1WrjTy8ZFYwEZU=\ngithub.com/ipfs/go-log/v2 v2.3.0/go.mod h1:QqGoj30OTpnKaG/LKTGTxoP2mmQtjVMEnK72gynbe/g=\ngithub.com/ipfs/go-merkledag v0.0.3/go.mod h1:Oc5kIXLHokkE1hWGMBHw+oxehkAaTOqtEb7Zbh6BhLA=\ngithub.com/ipfs/go-merkledag v0.0.6/go.mod h1:QYPdnlvkOg7GnQRofu9XZimC5ZW5Wi3bKys/4GQQfto=\ngithub.com/ipfs/go-merkledag v0.2.3/go.mod h1:SQiXrtSts3KGNmgOzMICy5c0POOpUNQLvB3ClKnBAlk=\ngithub.com/ipfs/go-merkledag v0.3.1/go.mod h1:fvkZNNZixVW6cKSZ/JfLlON5OlgTXNdRLz0p6QG/I2M=\ngithub.com/ipfs/go-merkledag v0.3.2 h1:MRqj40QkrWkvPswXs4EfSslhZ4RVPRbxwX11js0t1xY=\ngithub.com/ipfs/go-merkledag v0.3.2/go.mod h1:fvkZNNZixVW6cKSZ/JfLlON5OlgTXNdRLz0p6QG/I2M=\ngithub.com/ipfs/go-metrics-interface v0.0.1 h1:j+cpbjYvu4R8zbleSs36gvB7jR+wsL2fGD6n0jO4kdg=\ngithub.com/ipfs/go-metrics-interface v0.0.1/go.mod h1:6s6euYU4zowdslK0GKHmqaIZ3j/b/tL7HTWtJ4VPgWY=\ngithub.com/ipfs/go-metrics-prometheus v0.0.2/go.mod h1:ELLU99AQQNi+zX6GCGm2lAgnzdSH3u5UVlCdqSXnEks=\ngithub.com/ipfs/go-path v0.0.3/go.mod h1:zIRQUez3LuQIU25zFjC2hpBTHimWx7VK5bjZgRLbbdo=\ngithub.com/ipfs/go-path v0.0.7 h1:H06hKMquQ0aYtHiHryOMLpQC1qC3QwXwkahcEVD51Ho=\ngithub.com/ipfs/go-path v0.0.7/go.mod h1:6KTKmeRnBXgqrTvzFrPV3CamxcgvXX/4z79tfAd2Sno=\ngithub.com/ipfs/go-peertaskqueue v0.0.4/go.mod h1:03H8fhyeMfKNFWqzYEVyMbcPUeYrqP1MX6Kd+aN+rMQ=\ngithub.com/ipfs/go-peertaskqueue v0.1.0/go.mod h1:Jmk3IyCcfl1W3jTW3YpghSwSEC6IJ3Vzz/jUmWw8Z0U=\ngithub.com/ipfs/go-peertaskqueue v0.1.1/go.mod h1:Jmk3IyCcfl1W3jTW3YpghSwSEC6IJ3Vzz/jUmWw8Z0U=\ngithub.com/ipfs/go-peertaskqueue v0.2.0 h1:2cSr7exUGKYyDeUyQ7P/nHPs9P7Ht/B+ROrpN1EJOjc=\ngithub.com/ipfs/go-peertaskqueue v0.2.0/go.mod h1:5/eNrBEbtSKWCG+kQK8K8fGNixoYUnr+P7jivavs9lY=\ngithub.com/ipfs/go-todocounter v0.0.1/go.mod h1:l5aErvQc8qKE2r7NDMjmq5UNAvuZy0rC8BHOplkWvZ4=\ngithub.com/ipfs/go-unixfs v0.0.4/go.mod h1:eIo/p9ADu/MFOuyxzwU+Th8D6xoxU//r590vUpWyfz8=\ngithub.com/ipfs/go-unixfs v0.2.1/go.mod h1:IwAAgul1UQIcNZzKPYZWOCijryFBeCV79cNubPzol+k=\ngithub.com/ipfs/go-unixfs v0.2.4/go.mod h1:SUdisfUjNoSDzzhGVxvCL9QO/nKdwXdr+gbMUdqcbYw=\ngithub.com/ipfs/go-unixfs v0.2.6 h1:gq3U3T2vh8x6tXhfo3uSO3n+2z4yW0tYtNgVP/3sIyA=\ngithub.com/ipfs/go-unixfs v0.2.6/go.mod h1:GTTzQvaZsTZARdNkkdjDKFFnBhmO3e5mIM1PkH/x4p0=\ngithub.com/ipfs/go-verifcid v0.0.1 h1:m2HI7zIuR5TFyQ1b79Da5N9dnnCP1vcu2QqawmWlK2E=\ngithub.com/ipfs/go-verifcid v0.0.1/go.mod h1:5Hrva5KBeIog4A+UpqlaIU+DEstipcJYQQZc0g37pY0=\ngithub.com/ipfs/interface-go-ipfs-core v0.2.3/go.mod h1:Tihp8zxGpUeE3Tokr94L6zWZZdkRQvG5TL6i9MuNE+s=\ngithub.com/ipfs/interface-go-ipfs-core v0.4.0 h1:+mUiamyHIwedqP8ZgbCIwpy40oX7QcXUbo4CZOeJVJg=\ngithub.com/ipfs/interface-go-ipfs-core v0.4.0/go.mod h1:UJBcU6iNennuI05amq3FQ7g0JHUkibHFAfhfUIy927o=\ngithub.com/ipfs/iptb v1.4.0 h1:YFYTrCkLMRwk/35IMyC6+yjoQSHTEcNcefBStLJzgvo=\ngithub.com/ipfs/iptb v1.4.0/go.mod h1:1rzHpCYtNp87/+hTxG5TfCVn/yMY3dKnLn8tBiMfdmg=\ngithub.com/ipfs/iptb-plugins v0.2.1/go.mod h1:QXMbtIWZ+jRsW8a4h13qAKU7jcM7qaittO8wOsTP0Rs=\ngithub.com/ipfs/iptb-plugins v0.3.0 h1:C1rpq1o5lUZtaAOkLIox5akh6ba4uk/3RwWc6ttVxw0=\ngithub.com/ipfs/iptb-plugins v0.3.0/go.mod h1:5QtOvckeIw4bY86gSH4fgh3p3gCSMn3FmIKr4gaBncA=\ngithub.com/ipld/go-car v0.1.1-0.20200923150018-8cdef32e2da4/go.mod h1:xrMEcuSq+D1vEwl+YAXsg/JfA98XGpXDwnkIL4Aimqw=\ngithub.com/ipld/go-car v0.1.1-0.20201119040415-11b6074b6d4d h1:iphSzTuPqyDgH7WUVZsdqUnQNzYgIblsVr1zhVNA33U=\ngithub.com/ipld/go-car v0.1.1-0.20201119040415-11b6074b6d4d/go.mod h1:2Gys8L8MJ6zkh1gktTSXreY63t4UbyvNp5JaudTyxHQ=\ngithub.com/ipld/go-ipld-prime v0.0.2-0.20200428162820-8b59dc292b8e/go.mod h1:uVIwe/u0H4VdKv3kaN1ck7uCb6yD9cFLS9/ELyXbsw8=\ngithub.com/ipld/go-ipld-prime v0.5.1-0.20200828233916-988837377a7f/go.mod h1:0xEgdD6MKbZ1vF0GC+YcR/C4SQCAlRuOjIJ2i0HxqzM=\ngithub.com/ipld/go-ipld-prime v0.5.1-0.20201021195245-109253e8a018 h1:RbRHv8epkmvBYA5cGfz68GUSbOgx5j/7ObLIl4Rsif0=\ngithub.com/ipld/go-ipld-prime v0.5.1-0.20201021195245-109253e8a018/go.mod h1:0xEgdD6MKbZ1vF0GC+YcR/C4SQCAlRuOjIJ2i0HxqzM=\ngithub.com/ipld/go-ipld-prime-proto v0.0.0-20200428191222-c1ffdadc01e1/go.mod h1:OAV6xBmuTLsPZ+epzKkPB1e25FHk/vCtyatkdHcArLs=\ngithub.com/ipld/go-ipld-prime-proto v0.0.0-20200922192210-9a2bfd4440a6/go.mod h1:3pHYooM9Ea65jewRwrb2u5uHZCNkNTe9ABsVB+SrkH0=\ngithub.com/ipld/go-ipld-prime-proto v0.1.0 h1:j7gjqrfwbT4+gXpHwEx5iMssma3mnctC7YaCimsFP70=\ngithub.com/ipld/go-ipld-prime-proto v0.1.0/go.mod h1:11zp8f3sHVgIqtb/c9Kr5ZGqpnCLF1IVTNOez9TopzE=\ngithub.com/ipsn/go-secp256k1 v0.0.0-20180726113642-9d62b9f0bc52 h1:QG4CGBqCeuBo6aZlGAamSkxWdgWfZGeE49eUOWJPA4c=\ngithub.com/ipsn/go-secp256k1 v0.0.0-20180726113642-9d62b9f0bc52/go.mod h1:fdg+/X9Gg4AsAIzWpEHwnqd+QY3b7lajxyjE1m4hkq4=\ngithub.com/jackpal/gateway v1.0.4/go.mod h1:lTpwd4ACLXmpyiCTRtfiNyVnUmqT9RivzCDQetPfnjA=\ngithub.com/jackpal/gateway v1.0.5/go.mod h1:lTpwd4ACLXmpyiCTRtfiNyVnUmqT9RivzCDQetPfnjA=\ngithub.com/jackpal/go-nat-pmp v1.0.1/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc=\ngithub.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus=\ngithub.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc=\ngithub.com/jbenet/go-cienv v0.0.0-20150120210510-1bb1476777ec/go.mod h1:rGaEvXB4uRSZMmzKNLoXvTu1sfx+1kv/DojUlPrSZGs=\ngithub.com/jbenet/go-cienv v0.1.0 h1:Vc/s0QbQtoxX8MwwSLWWh+xNNZvM3Lw7NsTcHrvvhMc=\ngithub.com/jbenet/go-cienv v0.1.0/go.mod h1:TqNnHUmJgXau0nCzC7kXWeotg3J9W34CUv5Djy1+FlA=\ngithub.com/jbenet/go-is-domain v1.0.3 h1:FuRBJ0h79p00eseyaLckJT5KnE8RyqI+HLopvNSyNE0=\ngithub.com/jbenet/go-is-domain v1.0.3/go.mod h1:xbRLRb0S7FgzDBTJlguhDVwLYM/5yNtvktxj2Ttfy7Q=\ngithub.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c h1:uUx61FiAa1GI6ZmVd2wf2vULeQZIKG66eybjNXKYCz4=\ngithub.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c/go.mod h1:sdx1xVM9UuLw1tXnhJWN3piypTUO3vCIHYmG15KE/dU=\ngithub.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2/go.mod h1:8GXXJV31xl8whumTzdZsTt3RnUIiPqzkyf7mxToRCMs=\ngithub.com/jbenet/go-temp-err-catcher v0.1.0 h1:zpb3ZH6wIE8Shj2sKS+khgRvf7T7RABoLk/+KKHggpk=\ngithub.com/jbenet/go-temp-err-catcher v0.1.0/go.mod h1:0kJRvmDZXNMIiJirNPEYfhpPwbGVtZVWC34vc5WLsDk=\ngithub.com/jbenet/goprocess v0.0.0-20160826012719-b497e2f366b8/go.mod h1:Ly/wlsjFq/qrU3Rar62tu1gASgGw6chQbSh/XgIIXCY=\ngithub.com/jbenet/goprocess v0.1.3/go.mod h1:5yspPrukOVuOLORacaBi858NqyClJPQxYZlqdZVfqY4=\ngithub.com/jbenet/goprocess v0.1.4 h1:DRGOFReOMqqDNXwW70QkacFW0YN9QnwLV0Vqk+3oU0o=\ngithub.com/jbenet/goprocess v0.1.4/go.mod h1:5yspPrukOVuOLORacaBi858NqyClJPQxYZlqdZVfqY4=\ngithub.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod h1:E0B/fFc00Y+Rasa88328GlI/XbtyysCtTHZS8h7IrBU=\ngithub.com/jessevdk/go-assets v0.0.0-20160921144138-4f4301a06e15 h1:cW/amwGEJK5MSKntPXRjX4dxs/nGxGT8gXKIsKFmHGc=\ngithub.com/jessevdk/go-assets v0.0.0-20160921144138-4f4301a06e15/go.mod h1:Fdm/oWRW+CH8PRbLntksCNtmcCBximKPkVQYvmMl80k=\ngithub.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=\ngithub.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=\ngithub.com/jhump/protoreflect v1.7.0 h1:qJ7piXPrjP3mDrfHf5ATkxfLix8ANs226vpo0aACOn0=\ngithub.com/jhump/protoreflect v1.7.0/go.mod h1:RZkzh7Hi9J7qT/sPlWnJ/UwZqCJvciFxKDA0UCeltSM=\ngithub.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k=\ngithub.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik=\ngithub.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901/go.mod h1:Z86h9688Y0wesXCyonoVr47MasHilkuLMqGhRZ4Hpak=\ngithub.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=\ngithub.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=\ngithub.com/jonboulle/clockwork v0.1.1-0.20190114141812-62fb9bc030d1/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=\ngithub.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=\ngithub.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=\ngithub.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ=\ngithub.com/jsimonetti/rtnetlink v0.0.0-20190606172950-9527aa82566a/go.mod h1:Oz+70psSo5OFh8DBl0Zv2ACw7Esh6pPUphlvZG9x7uw=\ngithub.com/jsimonetti/rtnetlink v0.0.0-20190830100107-3784a6c7c552/go.mod h1:Oz+70psSo5OFh8DBl0Zv2ACw7Esh6pPUphlvZG9x7uw=\ngithub.com/jsimonetti/rtnetlink v0.0.0-20200117123717-f846d4f6c1f4/go.mod h1:WGuG/smIU4J/54PblvSbh+xvCZmpJnFgr3ds6Z55XMQ=\ngithub.com/jsmouret/grpc-web v0.14.2-0.20211103063242-8c932b2237aa h1:mH9i4lPP4lWbNSLjQj7GYoZ0qPzTLBZffzT4MDV1KFc=\ngithub.com/jsmouret/grpc-web v0.14.2-0.20211103063242-8c932b2237aa/go.mod h1:1sy9HKV4Jt9aEs9JSnkWlRJPuPtwNr0l57L4f878wP8=\ngithub.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=\ngithub.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=\ngithub.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=\ngithub.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=\ngithub.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=\ngithub.com/json-iterator/go v1.1.11 h1:uVUAXhF2To8cbw/3xN3pxj6kk7TYKs98NIrTqPlMWAQ=\ngithub.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=\ngithub.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=\ngithub.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk=\ngithub.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=\ngithub.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=\ngithub.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=\ngithub.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a h1:FaWFmfWdAUKbSCtOU2QjDaorUexogfaMgbipgYATUMU=\ngithub.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a/go.mod h1:UJSiEoRfvx3hP73CvoARgeLjaIOjybY9vj8PUPPFGeU=\ngithub.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=\ngithub.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=\ngithub.com/kabukky/httpscerts v0.0.0-20150320125433-617593d7dcb3/go.mod h1:BYpt4ufZiIGv2nXn4gMxnfKV306n3mWXgNu/d2TqdTU=\ngithub.com/kami-zh/go-capturer v0.0.0-20171211120116-e492ea43421d/go.mod h1:P2viExyCEfeWGU259JnaQ34Inuec4R38JCyBx2edgD0=\ngithub.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4=\ngithub.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA=\ngithub.com/kelseyhightower/envconfig v1.4.0/go.mod h1:cccZRl6mQpaq41TPp5QxidR+Sa3axMbJDNb//FQX6Gg=\ngithub.com/kilic/bls12-381 v0.0.0-20200607163746-32e1441c8a9f/go.mod h1:XXfR6YFCRSrkEXbNlIyDsgXVNJWVUV30m/ebkVy9n6s=\ngithub.com/kilic/bls12-381 v0.0.0-20200731194930-64c428e1bff5/go.mod h1:XXfR6YFCRSrkEXbNlIyDsgXVNJWVUV30m/ebkVy9n6s=\ngithub.com/kilic/bls12-381 v0.0.0-20200820230200-6b2c19996391/go.mod h1:XXfR6YFCRSrkEXbNlIyDsgXVNJWVUV30m/ebkVy9n6s=\ngithub.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=\ngithub.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=\ngithub.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4=\ngithub.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=\ngithub.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=\ngithub.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=\ngithub.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc=\ngithub.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=\ngithub.com/klauspost/cpuid/v2 v2.0.4 h1:g0I61F2K2DjRHz1cnxlkNSBIaePVoJIjjnHui8QHbiw=\ngithub.com/klauspost/cpuid/v2 v2.0.4/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/koron/go-ssdp v0.0.0-20180514024734-4a0ed625a78b/go.mod h1:5Ky9EC2xfoUKUor0Hjgi2BJhCSXJfMOFlmyYrVKGQMk=\ngithub.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d h1:68u9r4wEvL3gYg2jvAOgROwZ3H+Y3hIDk4tbbmIjcYQ=\ngithub.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d/go.mod h1:5Ky9EC2xfoUKUor0Hjgi2BJhCSXJfMOFlmyYrVKGQMk=\ngithub.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=\ngithub.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=\ngithub.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=\ngithub.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=\ngithub.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=\ngithub.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=\ngithub.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=\ngithub.com/launchdarkly/go-country-codes v0.0.0-20191008001159-776cf5214f39 h1:jPtNOkAUBQp1CzKBj2xumi1mTxBXvh0Bw0FHCXL92Es=\ngithub.com/launchdarkly/go-country-codes v0.0.0-20191008001159-776cf5214f39/go.mod h1:EDMydH9zqezFT0rvCeUdMj6JwZV5kKFxjXmpMhWvJ0A=\ngithub.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdAPozLkw=\ngithub.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y=\ngithub.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII=\ngithub.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.7.0 h1:h93mCPfUSkaul3Ka/VG8uZdmW1uMHDGxzu0NWHuJmHY=\ngithub.com/lib/pq v1.7.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=\ngithub.com/libp2p/go-addr-util v0.0.1/go.mod h1:4ac6O7n9rIAKB1dnd+s8IbbMXkt+oBpzX4/+RACcnlQ=\ngithub.com/libp2p/go-addr-util v0.0.2/go.mod h1:Ecd6Fb3yIuLzq4bD7VcywcVSBtefcAwnUISBM3WG15E=\ngithub.com/libp2p/go-addr-util v0.1.0 h1:acKsntI33w2bTU7tC9a0SaPimJGfSI0bFKC18ChxeVI=\ngithub.com/libp2p/go-addr-util v0.1.0/go.mod h1:6I3ZYuFr2O/9D+SoyM0zEw0EF3YkldtTX406BpdQMqw=\ngithub.com/libp2p/go-buffer-pool v0.0.1/go.mod h1:xtyIz9PMobb13WaxR6Zo1Pd1zXJKYg0a8KiIvDp3TzQ=\ngithub.com/libp2p/go-buffer-pool v0.0.2 h1:QNK2iAFa8gjAe1SPz6mHSMuCcjs+X1wlHzeOSqcmlfs=\ngithub.com/libp2p/go-buffer-pool v0.0.2/go.mod h1:MvaB6xw5vOrDl8rYZGLFdKAuk/hRoRZd1Vi32+RXyFM=\ngithub.com/libp2p/go-cidranger v1.1.0 h1:ewPN8EZ0dd1LSnrtuwd4709PXVcITVeuwbag38yPW7c=\ngithub.com/libp2p/go-cidranger v1.1.0/go.mod h1:KWZTfSr+r9qEo9OkI9/SIEeAtw+NNoU0dXIXt15Okic=\ngithub.com/libp2p/go-conn-security v0.0.1/go.mod h1:bGmu51N0KU9IEjX7kl2PQjgZa40JQWnayTvNMgD/vyk=\ngithub.com/libp2p/go-conn-security-multistream v0.0.1/go.mod h1:nc9vud7inQ+d6SO0I/6dSWrdMnHnzZNHeyUQqrAJulE=\ngithub.com/libp2p/go-conn-security-multistream v0.0.2/go.mod h1:nc9vud7inQ+d6SO0I/6dSWrdMnHnzZNHeyUQqrAJulE=\ngithub.com/libp2p/go-conn-security-multistream v0.1.0/go.mod h1:aw6eD7LOsHEX7+2hJkDxw1MteijaVcI+/eP2/x3J1xc=\ngithub.com/libp2p/go-conn-security-multistream v0.2.0/go.mod h1:hZN4MjlNetKD3Rq5Jb/P5ohUnFLNzEAR4DLSzpn2QLU=\ngithub.com/libp2p/go-conn-security-multistream v0.2.1 h1:ft6/POSK7F+vl/2qzegnHDaXFU0iWB4yVTYrioC6Zy0=\ngithub.com/libp2p/go-conn-security-multistream v0.2.1/go.mod h1:cR1d8gA0Hr59Fj6NhaTpFhJZrjSYuNmhpT2r25zYR70=\ngithub.com/libp2p/go-eventbus v0.0.2/go.mod h1:Hr/yGlwxA/stuLnpMiu82lpNKpvRy3EaJxPu40XYOwk=\ngithub.com/libp2p/go-eventbus v0.1.0/go.mod h1:vROgu5cs5T7cv7POWlWxBaVLxfSegC5UGQf8A2eEmx4=\ngithub.com/libp2p/go-eventbus v0.2.1 h1:VanAdErQnpTioN2TowqNcOijf6YwhuODe4pPKSDpxGc=\ngithub.com/libp2p/go-eventbus v0.2.1/go.mod h1:jc2S4SoEVPP48H9Wpzm5aiGwUCBMfGhVhhBjyhhCJs8=\ngithub.com/libp2p/go-flow-metrics v0.0.1/go.mod h1:Iv1GH0sG8DtYN3SVJ2eG221wMiNpZxBdp967ls1g+k8=\ngithub.com/libp2p/go-flow-metrics v0.0.2/go.mod h1:HeoSNUrOJVK1jEpDqVEiUOIXqhbnS27omG0uWU5slZs=\ngithub.com/libp2p/go-flow-metrics v0.0.3 h1:8tAs/hSdNvUiLgtlSy3mxwxWP4I9y/jlkPFT7epKdeM=\ngithub.com/libp2p/go-flow-metrics v0.0.3/go.mod h1:HeoSNUrOJVK1jEpDqVEiUOIXqhbnS27omG0uWU5slZs=\ngithub.com/libp2p/go-libp2p v0.0.2/go.mod h1:Qu8bWqFXiocPloabFGUcVG4kk94fLvfC8mWTDdFC9wE=\ngithub.com/libp2p/go-libp2p v0.0.30/go.mod h1:XWT8FGHlhptAv1+3V/+J5mEpzyui/5bvFsNuWYs611A=\ngithub.com/libp2p/go-libp2p v0.1.0/go.mod h1:6D/2OBauqLUoqcADOJpn9WbKqvaM07tDw68qHM0BxUM=\ngithub.com/libp2p/go-libp2p v0.1.1/go.mod h1:I00BRo1UuUSdpuc8Q2mN7yDF/oTUTRAX6JWpTiK9Rp8=\ngithub.com/libp2p/go-libp2p v0.3.1/go.mod h1:e6bwxbdYH1HqWTz8faTChKGR0BjPc8p+6SyP8GTTR7Y=\ngithub.com/libp2p/go-libp2p v0.4.0/go.mod h1:9EsEIf9p2UDuwtPd0DwJsAl0qXVxgAnuDGRvHbfATfI=\ngithub.com/libp2p/go-libp2p v0.6.0/go.mod h1:mfKWI7Soz3ABX+XEBR61lGbg+ewyMtJHVt043oWeqwg=\ngithub.com/libp2p/go-libp2p v0.6.1/go.mod h1:CTFnWXogryAHjXAKEbOf1OWY+VeAP3lDMZkfEI5sT54=\ngithub.com/libp2p/go-libp2p v0.7.0/go.mod h1:hZJf8txWeCduQRDC/WSqBGMxaTHCOYHt2xSU1ivxn0k=\ngithub.com/libp2p/go-libp2p v0.7.4/go.mod h1:oXsBlTLF1q7pxr+9w6lqzS1ILpyHsaBPniVO7zIHGMw=\ngithub.com/libp2p/go-libp2p v0.8.1/go.mod h1:QRNH9pwdbEBpx5DTJYg+qxcVaDMAz3Ee/qDKwXujH5o=\ngithub.com/libp2p/go-libp2p v0.8.3/go.mod h1:EsH1A+8yoWK+L4iKcbPYu6MPluZ+CHWI9El8cTaefiM=\ngithub.com/libp2p/go-libp2p v0.9.2/go.mod h1:cunHNLDVus66Ct9iXXcjKRLdmHdFdHVe1TAnbubJQqQ=\ngithub.com/libp2p/go-libp2p v0.10.0/go.mod h1:yBJNpb+mGJdgrwbKAKrhPU0u3ogyNFTfjJ6bdM+Q/G8=\ngithub.com/libp2p/go-libp2p v0.12.0/go.mod h1:FpHZrfC1q7nA8jitvdjKBDF31hguaC676g/nT9PgQM0=\ngithub.com/libp2p/go-libp2p v0.13.0/go.mod h1:pM0beYdACRfHO1WcJlp65WXyG2A6NqYM+t2DTVAJxMo=\ngithub.com/libp2p/go-libp2p v0.14.3/go.mod h1:d12V4PdKbpL0T1/gsUNN8DfgMuRPDX8bS2QxCZlwRH0=\ngithub.com/libp2p/go-libp2p v0.14.4 h1:QCJE+jGyqxWdrSPuS4jByXCzosgaIg4SJTLCRplJ53w=\ngithub.com/libp2p/go-libp2p v0.14.4/go.mod h1:EIRU0Of4J5S8rkockZM7eJp2S0UrCyi55m2kJVru3rM=\ngithub.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052 h1:BM7aaOF7RpmNn9+9g6uTjGJ0cTzWr5j9i9IKeun2M8U=\ngithub.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052/go.mod h1:nRMRTab+kZuk0LnKZpxhOVH/ndsdr2Nr//Zltc/vwgo=\ngithub.com/libp2p/go-libp2p-autonat v0.0.2/go.mod h1:fs71q5Xk+pdnKU014o2iq1RhMs9/PMaG5zXRFNnIIT4=\ngithub.com/libp2p/go-libp2p-autonat v0.0.6/go.mod h1:uZneLdOkZHro35xIhpbtTzLlgYturpu4J5+0cZK3MqE=\ngithub.com/libp2p/go-libp2p-autonat v0.1.0/go.mod h1:1tLf2yXxiE/oKGtDwPYWTSYG3PtvYlJmg7NeVtPRqH8=\ngithub.com/libp2p/go-libp2p-autonat v0.1.1/go.mod h1:OXqkeGOY2xJVWKAGV2inNF5aKN/djNA3fdpCWloIudE=\ngithub.com/libp2p/go-libp2p-autonat v0.2.0/go.mod h1:DX+9teU4pEEoZUqR1PiMlqliONQdNbfzE1C718tcViI=\ngithub.com/libp2p/go-libp2p-autonat v0.2.1/go.mod h1:MWtAhV5Ko1l6QBsHQNSuM6b1sRkXrpk0/LqCr+vCVxI=\ngithub.com/libp2p/go-libp2p-autonat v0.2.2/go.mod h1:HsM62HkqZmHR2k1xgX34WuWDzk/nBwNHoeyyT4IWV6A=\ngithub.com/libp2p/go-libp2p-autonat v0.2.3/go.mod h1:2U6bNWCNsAG9LEbwccBDQbjzQ8Krdjge1jLTE9rdoMM=\ngithub.com/libp2p/go-libp2p-autonat v0.4.0/go.mod h1:YxaJlpr81FhdOv3W3BTconZPfhaYivRdf53g+S2wobk=\ngithub.com/libp2p/go-libp2p-autonat v0.4.2 h1:YMp7StMi2dof+baaxkbxaizXjY1RPvU71CXfxExzcUU=\ngithub.com/libp2p/go-libp2p-autonat v0.4.2/go.mod h1:YxaJlpr81FhdOv3W3BTconZPfhaYivRdf53g+S2wobk=\ngithub.com/libp2p/go-libp2p-autonat-svc v0.1.0/go.mod h1:fqi8Obl/z3R4PFVLm8xFtZ6PBL9MlV/xumymRFkKq5A=\ngithub.com/libp2p/go-libp2p-blankhost v0.0.1/go.mod h1:Ibpbw/7cPPYwFb7PACIWdvxxv0t0XCCI10t7czjAjTc=\ngithub.com/libp2p/go-libp2p-blankhost v0.1.1/go.mod h1:pf2fvdLJPsC1FsVrNP3DUUvMzUts2dsLLBEpo1vW1ro=\ngithub.com/libp2p/go-libp2p-blankhost v0.1.3/go.mod h1:KML1//wiKR8vuuJO0y3LUd1uLv+tlkGTAr3jC0S5cLg=\ngithub.com/libp2p/go-libp2p-blankhost v0.1.4/go.mod h1:oJF0saYsAXQCSfDq254GMNmLNz6ZTHTOvtF4ZydUvwU=\ngithub.com/libp2p/go-libp2p-blankhost v0.1.6/go.mod h1:jONCAJqEP+Z8T6EQviGL4JsQcLx1LgTGtVqFNY8EMfQ=\ngithub.com/libp2p/go-libp2p-blankhost v0.2.0 h1:3EsGAi0CBGcZ33GwRuXEYJLLPoVWyXJ1bcJzAJjINkk=\ngithub.com/libp2p/go-libp2p-blankhost v0.2.0/go.mod h1:eduNKXGTioTuQAUcZ5epXi9vMl+t4d8ugUBRQ4SqaNQ=\ngithub.com/libp2p/go-libp2p-circuit v0.0.1/go.mod h1:Dqm0s/BiV63j8EEAs8hr1H5HudqvCAeXxDyic59lCwE=\ngithub.com/libp2p/go-libp2p-circuit v0.0.9/go.mod h1:uU+IBvEQzCu953/ps7bYzC/D/R0Ho2A9LfKVVCatlqU=\ngithub.com/libp2p/go-libp2p-circuit v0.1.0/go.mod h1:Ahq4cY3V9VJcHcn1SBXjr78AbFkZeIRmfunbA7pmFh8=\ngithub.com/libp2p/go-libp2p-circuit v0.1.1/go.mod h1:Ahq4cY3V9VJcHcn1SBXjr78AbFkZeIRmfunbA7pmFh8=\ngithub.com/libp2p/go-libp2p-circuit v0.1.3/go.mod h1:Xqh2TjSy8DD5iV2cCOMzdynd6h8OTBGoV1AWbWor3qM=\ngithub.com/libp2p/go-libp2p-circuit v0.1.4/go.mod h1:CY67BrEjKNDhdTk8UgBX1Y/H5c3xkAcs3gnksxY7osU=\ngithub.com/libp2p/go-libp2p-circuit v0.2.1/go.mod h1:BXPwYDN5A8z4OEY9sOfr2DUQMLQvKt/6oku45YUmjIo=\ngithub.com/libp2p/go-libp2p-circuit v0.2.2/go.mod h1:nkG3iE01tR3FoQ2nMm06IUrCpCyJp1Eo4A1xYdpjfs4=\ngithub.com/libp2p/go-libp2p-circuit v0.2.3/go.mod h1:nkG3iE01tR3FoQ2nMm06IUrCpCyJp1Eo4A1xYdpjfs4=\ngithub.com/libp2p/go-libp2p-circuit v0.4.0 h1:eqQ3sEYkGTtybWgr6JLqJY6QLtPWRErvFjFDfAOO1wc=\ngithub.com/libp2p/go-libp2p-circuit v0.4.0/go.mod h1:t/ktoFIUzM6uLQ+o1G6NuBl2ANhBKN9Bc8jRIk31MoA=\ngithub.com/libp2p/go-libp2p-connmgr v0.1.1/go.mod h1:wZxh8veAmU5qdrfJ0ZBLcU8oJe9L82ciVP/fl1VHjXk=\ngithub.com/libp2p/go-libp2p-connmgr v0.2.3/go.mod h1:Gqjg29zI8CwXX21zRxy6gOg8VYu3zVerJRt2KyktzH4=\ngithub.com/libp2p/go-libp2p-connmgr v0.2.4 h1:TMS0vc0TCBomtQJyWr7fYxcVYYhx+q/2gF++G5Jkl/w=\ngithub.com/libp2p/go-libp2p-connmgr v0.2.4/go.mod h1:YV0b/RIm8NGPnnNWM7hG9Q38OeQiQfKhHCCs1++ufn0=\ngithub.com/libp2p/go-libp2p-core v0.0.1/go.mod h1:g/VxnTZ/1ygHxH3dKok7Vno1VfpvGcGip57wjTU4fco=\ngithub.com/libp2p/go-libp2p-core v0.0.2/go.mod h1:9dAcntw/n46XycV4RnlBq3BpgrmyUi9LuoTNdPrbUco=\ngithub.com/libp2p/go-libp2p-core v0.0.3/go.mod h1:j+YQMNz9WNSkNezXOsahp9kwZBKBvxLpKD316QWSJXE=\ngithub.com/libp2p/go-libp2p-core v0.0.4/go.mod h1:jyuCQP356gzfCFtRKyvAbNkyeuxb7OlyhWZ3nls5d2I=\ngithub.com/libp2p/go-libp2p-core v0.0.6/go.mod h1:0d9xmaYAVY5qmbp/fcgxHT3ZJsLjYeYPMJAUKpaCHrE=\ngithub.com/libp2p/go-libp2p-core v0.2.0/go.mod h1:X0eyB0Gy93v0DZtSYbEM7RnMChm9Uv3j7yRXjO77xSI=\ngithub.com/libp2p/go-libp2p-core v0.2.2/go.mod h1:8fcwTbsG2B+lTgRJ1ICZtiM5GWCWZVoVrLaDRvIRng0=\ngithub.com/libp2p/go-libp2p-core v0.2.3/go.mod h1:GqhyQqyIAPsxFYXHMjfXgMv03lxsvM0mFzuYA9Ib42A=\ngithub.com/libp2p/go-libp2p-core v0.2.4/go.mod h1:STh4fdfa5vDYr0/SzYYeqnt+E6KfEV5VxfIrm0bcI0g=\ngithub.com/libp2p/go-libp2p-core v0.2.5/go.mod h1:6+5zJmKhsf7yHn1RbmYDu08qDUpIUxGdqHuEZckmZOA=\ngithub.com/libp2p/go-libp2p-core v0.3.0/go.mod h1:ACp3DmS3/N64c2jDzcV429ukDpicbL6+TrrxANBjPGw=\ngithub.com/libp2p/go-libp2p-core v0.3.1/go.mod h1:thvWy0hvaSBhnVBaW37BvzgVV68OUhgJJLAa6almrII=\ngithub.com/libp2p/go-libp2p-core v0.4.0/go.mod h1:49XGI+kc38oGVwqSBhDEwytaAxgZasHhFfQKibzTls0=\ngithub.com/libp2p/go-libp2p-core v0.5.0/go.mod h1:49XGI+kc38oGVwqSBhDEwytaAxgZasHhFfQKibzTls0=\ngithub.com/libp2p/go-libp2p-core v0.5.1/go.mod h1:uN7L2D4EvPCvzSH5SrhR72UWbnSGpt5/a35Sm4upn4Y=\ngithub.com/libp2p/go-libp2p-core v0.5.2/go.mod h1:uN7L2D4EvPCvzSH5SrhR72UWbnSGpt5/a35Sm4upn4Y=\ngithub.com/libp2p/go-libp2p-core v0.5.3/go.mod h1:uN7L2D4EvPCvzSH5SrhR72UWbnSGpt5/a35Sm4upn4Y=\ngithub.com/libp2p/go-libp2p-core v0.5.4/go.mod h1:uN7L2D4EvPCvzSH5SrhR72UWbnSGpt5/a35Sm4upn4Y=\ngithub.com/libp2p/go-libp2p-core v0.5.5/go.mod h1:vj3awlOr9+GMZJFH9s4mpt9RHHgGqeHCopzbYKZdRjM=\ngithub.com/libp2p/go-libp2p-core v0.5.6/go.mod h1:txwbVEhHEXikXn9gfC7/UDDw7rkxuX0bJvM49Ykaswo=\ngithub.com/libp2p/go-libp2p-core v0.5.7/go.mod h1:txwbVEhHEXikXn9gfC7/UDDw7rkxuX0bJvM49Ykaswo=\ngithub.com/libp2p/go-libp2p-core v0.6.0/go.mod h1:txwbVEhHEXikXn9gfC7/UDDw7rkxuX0bJvM49Ykaswo=\ngithub.com/libp2p/go-libp2p-core v0.6.1/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.7.0/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.8.0/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.8.1/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.8.2/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.8.3/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.8.5/go.mod h1:FfewUH/YpvWbEB+ZY9AQRQ4TAD8sJBt/G1rVvhz5XT8=\ngithub.com/libp2p/go-libp2p-core v0.8.6 h1:3S8g006qG6Tjpj1JdRK2S+TWc2DJQKX/RG9fdLeiLSU=\ngithub.com/libp2p/go-libp2p-core v0.8.6/go.mod h1:dgHr0l0hIKfWpGpqAMbpo19pen9wJfdCGv51mTmdpmM=\ngithub.com/libp2p/go-libp2p-crypto v0.0.1/go.mod h1:yJkNyDmO341d5wwXxDUGO0LykUVT72ImHNUqh5D/dBE=\ngithub.com/libp2p/go-libp2p-crypto v0.0.2/go.mod h1:eETI5OUfBnvARGOHrJz2eWNyTUxEGZnBxMcbUjfIj4I=\ngithub.com/libp2p/go-libp2p-crypto v0.1.0 h1:k9MFy+o2zGDNGsaoZl0MA3iZ75qXxr9OOoAZF+sD5OQ=\ngithub.com/libp2p/go-libp2p-crypto v0.1.0/go.mod h1:sPUokVISZiy+nNuTTH/TY+leRSxnFj/2GLjtOTW90hI=\ngithub.com/libp2p/go-libp2p-daemon v0.2.2/go.mod h1:kyrpsLB2JeNYR2rvXSVWyY0iZuRIMhqzWR3im9BV6NQ=\ngithub.com/libp2p/go-libp2p-discovery v0.0.1/go.mod h1:ZkkF9xIFRLA1xCc7bstYFkd80gBGK8Fc1JqGoU2i+zI=\ngithub.com/libp2p/go-libp2p-discovery v0.0.5/go.mod h1:YtF20GUxjgoKZ4zmXj8j3Nb2TUSBHFlOCetzYdbZL5I=\ngithub.com/libp2p/go-libp2p-discovery v0.1.0/go.mod h1:4F/x+aldVHjHDHuX85x1zWoFTGElt8HnoDzwkFZm29g=\ngithub.com/libp2p/go-libp2p-discovery v0.2.0/go.mod h1:s4VGaxYMbw4+4+tsoQTqh7wfxg97AEdo4GYBt6BadWg=\ngithub.com/libp2p/go-libp2p-discovery v0.3.0/go.mod h1:o03drFnz9BVAZdzC/QUQ+NeQOu38Fu7LJGEOK2gQltw=\ngithub.com/libp2p/go-libp2p-discovery v0.4.0/go.mod h1:bZ0aJSrFc/eX2llP0ryhb1kpgkPyTo23SJ5b7UQCMh4=\ngithub.com/libp2p/go-libp2p-discovery v0.5.0/go.mod h1:+srtPIU9gDaBNu//UHvcdliKBIcr4SfDcm0/PfPJLug=\ngithub.com/libp2p/go-libp2p-discovery v0.5.1 h1:CJylx+h2+4+s68GvrM4pGNyfNhOYviWBPtVv5PA7sfo=\ngithub.com/libp2p/go-libp2p-discovery v0.5.1/go.mod h1:+srtPIU9gDaBNu//UHvcdliKBIcr4SfDcm0/PfPJLug=\ngithub.com/libp2p/go-libp2p-gostream v0.3.1 h1:XlwohsPn6uopGluEWs1Csv1QCEjrTXf2ZQagzZ5paAg=\ngithub.com/libp2p/go-libp2p-gostream v0.3.1/go.mod h1:1V3b+u4Zhaq407UUY9JLCpboaeufAeVQbnvAt12LRsI=\ngithub.com/libp2p/go-libp2p-host v0.0.1/go.mod h1:qWd+H1yuU0m5CwzAkvbSjqKairayEHdR5MMl7Cwa7Go=\ngithub.com/libp2p/go-libp2p-host v0.0.3/go.mod h1:Y/qPyA6C8j2coYyos1dfRm0I8+nvd4TGrDGt4tA7JR8=\ngithub.com/libp2p/go-libp2p-interface-connmgr v0.0.1/go.mod h1:GarlRLH0LdeWcLnYM/SaBykKFl9U5JFnbBGruAk/D5k=\ngithub.com/libp2p/go-libp2p-interface-connmgr v0.0.4/go.mod h1:GarlRLH0LdeWcLnYM/SaBykKFl9U5JFnbBGruAk/D5k=\ngithub.com/libp2p/go-libp2p-interface-connmgr v0.0.5/go.mod h1:GarlRLH0LdeWcLnYM/SaBykKFl9U5JFnbBGruAk/D5k=\ngithub.com/libp2p/go-libp2p-interface-pnet v0.0.1/go.mod h1:el9jHpQAXK5dnTpKA4yfCNBZXvrzdOU75zz+C6ryp3k=\ngithub.com/libp2p/go-libp2p-kad-dht v0.2.1/go.mod h1:k7ONOlup7HKzQ68dE6lSnp07cdxdkmnRa+6B4Fh9/w0=\ngithub.com/libp2p/go-libp2p-kad-dht v0.11.0/go.mod h1:5ojtR2acDPqh/jXf5orWy8YGb8bHQDS+qeDcoscL/PI=\ngithub.com/libp2p/go-libp2p-kad-dht v0.12.2 h1:INBYK7pEPzka5TrAWB2II+PYLeEaRlu6RWIoukfEBFQ=\ngithub.com/libp2p/go-libp2p-kad-dht v0.12.2/go.mod h1:mznpWRg0Nbkr9PB2Dm9XWN24V2BChE3FT1dHmwaDVws=\ngithub.com/libp2p/go-libp2p-kbucket v0.2.1/go.mod h1:/Rtu8tqbJ4WQ2KTCOMJhggMukOLNLNPY1EtEWWLxUvc=\ngithub.com/libp2p/go-libp2p-kbucket v0.3.1/go.mod h1:oyjT5O7tS9CQurok++ERgc46YLwEpuGoFq9ubvoUOio=\ngithub.com/libp2p/go-libp2p-kbucket v0.4.7 h1:spZAcgxifvFZHBD8tErvppbnNiKA5uokDu3CV7axu70=\ngithub.com/libp2p/go-libp2p-kbucket v0.4.7/go.mod h1:XyVo99AfQH0foSf176k4jY1xUJ2+jUJIZCSDm7r2YKk=\ngithub.com/libp2p/go-libp2p-loggables v0.0.1/go.mod h1:lDipDlBNYbpyqyPX/KcoO+eq0sJYEVR2JgOexcivchg=\ngithub.com/libp2p/go-libp2p-loggables v0.1.0 h1:h3w8QFfCt2UJl/0/NW4K829HX/0S4KD31PQ7m8UXXO8=\ngithub.com/libp2p/go-libp2p-loggables v0.1.0/go.mod h1:EyumB2Y6PrYjr55Q3/tiJ/o3xoDasoRYM7nOzEpoa90=\ngithub.com/libp2p/go-libp2p-metrics v0.0.1/go.mod h1:jQJ95SXXA/K1VZi13h52WZMa9ja78zjyy5rspMsC/08=\ngithub.com/libp2p/go-libp2p-mplex v0.1.1/go.mod h1:KUQWpGkCzfV7UIpi8SKsAVxyBgz1c9R5EvxgnwLsb/I=\ngithub.com/libp2p/go-libp2p-mplex v0.2.0/go.mod h1:Ejl9IyjvXJ0T9iqUTE1jpYATQ9NM3g+OtR+EMMODbKo=\ngithub.com/libp2p/go-libp2p-mplex v0.2.1/go.mod h1:SC99Rxs8Vuzrf/6WhmH41kNn13TiYdAWNYHrwImKLnE=\ngithub.com/libp2p/go-libp2p-mplex v0.2.2/go.mod h1:74S9eum0tVQdAfFiKxAyKzNdSuLqw5oadDq7+L/FELo=\ngithub.com/libp2p/go-libp2p-mplex v0.2.3/go.mod h1:CK3p2+9qH9x+7ER/gWWDYJ3QW5ZxWDkm+dVvjfuG3ek=\ngithub.com/libp2p/go-libp2p-mplex v0.3.0/go.mod h1:l9QWxRbbb5/hQMECEb908GbS9Sm2UAR2KFZKUJEynEs=\ngithub.com/libp2p/go-libp2p-mplex v0.4.0/go.mod h1:yCyWJE2sc6TBTnFpjvLuEJgTSw/u+MamvzILKdX7asw=\ngithub.com/libp2p/go-libp2p-mplex v0.4.1 h1:/pyhkP1nLwjG3OM+VuaNJkQT/Pqq73WzB3aDN3Fx1sc=\ngithub.com/libp2p/go-libp2p-mplex v0.4.1/go.mod h1:cmy+3GfqfM1PceHTLL7zQzAAYaryDu6iPSC+CIb094g=\ngithub.com/libp2p/go-libp2p-nat v0.0.2/go.mod h1:QrjXQSD5Dj4IJOdEcjHRkWTSomyxRo6HnUkf/TfQpLQ=\ngithub.com/libp2p/go-libp2p-nat v0.0.4/go.mod h1:N9Js/zVtAXqaeT99cXgTV9e75KpnWCvVOiGzlcHmBbY=\ngithub.com/libp2p/go-libp2p-nat v0.0.5/go.mod h1:1qubaE5bTZMJE+E/uu2URroMbzdubFz1ChgiN79yKPE=\ngithub.com/libp2p/go-libp2p-nat v0.0.6 h1:wMWis3kYynCbHoyKLPBEMu4YRLltbm8Mk08HGSfvTkU=\ngithub.com/libp2p/go-libp2p-nat v0.0.6/go.mod h1:iV59LVhB3IkFvS6S6sauVTSOrNEANnINbI/fkaLimiw=\ngithub.com/libp2p/go-libp2p-net v0.0.1/go.mod h1:Yt3zgmlsHOgUWSXmt5V/Jpz9upuJBE8EgNU9DrCcR8c=\ngithub.com/libp2p/go-libp2p-net v0.0.2/go.mod h1:Yt3zgmlsHOgUWSXmt5V/Jpz9upuJBE8EgNU9DrCcR8c=\ngithub.com/libp2p/go-libp2p-netutil v0.0.1/go.mod h1:GdusFvujWZI9Vt0X5BKqwWWmZFxecf9Gt03cKxm2f/Q=\ngithub.com/libp2p/go-libp2p-netutil v0.1.0 h1:zscYDNVEcGxyUpMd0JReUZTrpMfia8PmLKcKF72EAMQ=\ngithub.com/libp2p/go-libp2p-netutil v0.1.0/go.mod h1:3Qv/aDqtMLTUyQeundkKsA+YCThNdbQD54k3TqjpbFU=\ngithub.com/libp2p/go-libp2p-noise v0.1.1/go.mod h1:QDFLdKX7nluB7DEnlVPbz7xlLHdwHFA9HiohJRr3vwM=\ngithub.com/libp2p/go-libp2p-noise v0.1.2/go.mod h1:9B10b7ueo7TIxZHHcjcDCo5Hd6kfKT2m77by82SFRfE=\ngithub.com/libp2p/go-libp2p-noise v0.2.0 h1:wmk5nhB9a2w2RxMOyvsoKjizgJOEaJdfAakr0jN8gds=\ngithub.com/libp2p/go-libp2p-noise v0.2.0/go.mod h1:IEbYhBBzGyvdLBoxxULL/SGbJARhUeqlO8lVSREYu2Q=\ngithub.com/libp2p/go-libp2p-peer v0.0.1/go.mod h1:nXQvOBbwVqoP+T5Y5nCjeH4sP9IX/J0AMzcDUVruVoo=\ngithub.com/libp2p/go-libp2p-peer v0.1.1/go.mod h1:jkF12jGB4Gk/IOo+yomm+7oLWxF278F7UnrYUQ1Q8es=\ngithub.com/libp2p/go-libp2p-peer v0.2.0 h1:EQ8kMjaCUwt/Y5uLgjT8iY2qg0mGUT0N1zUjer50DsY=\ngithub.com/libp2p/go-libp2p-peer v0.2.0/go.mod h1:RCffaCvUyW2CJmG2gAWVqwePwW7JMgxjsHm7+J5kjWY=\ngithub.com/libp2p/go-libp2p-peerstore v0.0.1/go.mod h1:RabLyPVJLuNQ+GFyoEkfi8H4Ti6k/HtZJ7YKgtSq+20=\ngithub.com/libp2p/go-libp2p-peerstore v0.0.6/go.mod h1:RabLyPVJLuNQ+GFyoEkfi8H4Ti6k/HtZJ7YKgtSq+20=\ngithub.com/libp2p/go-libp2p-peerstore v0.1.0/go.mod h1:2CeHkQsr8svp4fZ+Oi9ykN1HBb6u0MOvdJ7YIsmcwtY=\ngithub.com/libp2p/go-libp2p-peerstore v0.1.3/go.mod h1:BJ9sHlm59/80oSkpWgr1MyY1ciXAXV397W6h1GH/uKI=\ngithub.com/libp2p/go-libp2p-peerstore v0.1.4/go.mod h1:+4BDbDiiKf4PzpANZDAT+knVdLxvqh7hXOujessqdzs=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.0/go.mod h1:N2l3eVIeAitSg3Pi2ipSrJYnqhVnMNQZo9nkSCuAbnQ=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.1/go.mod h1:NQxhNjWxf1d4w6PihR8btWIRjwRLBr4TYKfNgrUkOPA=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.2/go.mod h1:NQxhNjWxf1d4w6PihR8btWIRjwRLBr4TYKfNgrUkOPA=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.3/go.mod h1:K8ljLdFn590GMttg/luh4caB/3g0vKuY01psze0upRw=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.4/go.mod h1:ss/TWTgHZTMpsU/oKVVPQCGuDHItOpf2W8RxAi50P2s=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.6/go.mod h1:ss/TWTgHZTMpsU/oKVVPQCGuDHItOpf2W8RxAi50P2s=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.7/go.mod h1:ss/TWTgHZTMpsU/oKVVPQCGuDHItOpf2W8RxAi50P2s=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.8 h1:nJghUlUkFVvyk7ccsM67oFA6kqUkwyCM1G4WPVMCWYA=\ngithub.com/libp2p/go-libp2p-peerstore v0.2.8/go.mod h1:gGiPlXdz7mIHd2vfAsHzBNAMqSDkt2UBFwgcITgw1lA=\ngithub.com/libp2p/go-libp2p-pnet v0.2.0 h1:J6htxttBipJujEjz1y0a5+eYoiPcFHhSYHH6na5f0/k=\ngithub.com/libp2p/go-libp2p-pnet v0.2.0/go.mod h1:Qqvq6JH/oMZGwqs3N1Fqhv8NVhrdYcO0BW4wssv21LA=\ngithub.com/libp2p/go-libp2p-protocol v0.0.1/go.mod h1:Af9n4PiruirSDjHycM1QuiMi/1VZNHYcK8cLgFJLZ4s=\ngithub.com/libp2p/go-libp2p-protocol v0.1.0/go.mod h1:KQPHpAabB57XQxGrXCNvbL6UEXfQqUgC/1adR2Xtflk=\ngithub.com/libp2p/go-libp2p-pubsub v0.1.1/go.mod h1:ZwlKzRSe1eGvSIdU5bD7+8RZN/Uzw0t1Bp9R1znpR/Q=\ngithub.com/libp2p/go-libp2p-pubsub v0.3.2-0.20200527132641-c0712c6e92cf/go.mod h1:TxPOBuo1FPdsTjFnv+FGZbNbWYsp74Culx+4ViQpato=\ngithub.com/libp2p/go-libp2p-pubsub v0.4.1/go.mod h1:izkeMLvz6Ht8yAISXjx60XUQZMq9ZMe5h2ih4dLIBIQ=\ngithub.com/libp2p/go-libp2p-pubsub v0.5.0/go.mod h1:MKnrsQkFgPcrQs1KVmOXy6Uz2RDQ1xO7dQo/P0Ba+ig=\ngithub.com/libp2p/go-libp2p-pubsub v0.5.4 h1:rHl9/Xok4zX3zgi0pg0XnUj9Xj2OeXO8oTu85q2+YA8=\ngithub.com/libp2p/go-libp2p-pubsub v0.5.4/go.mod h1:gVOzwebXVdSMDQBTfH8ACO5EJ4SQrvsHqCmYsCZpD0E=\ngithub.com/libp2p/go-libp2p-quic-transport v0.1.1/go.mod h1:wqG/jzhF3Pu2NrhJEvE+IE0NTHNXslOPn9JQzyCAxzU=\ngithub.com/libp2p/go-libp2p-quic-transport v0.5.0/go.mod h1:IEcuC5MLxvZ5KuHKjRu+dr3LjCT1Be3rcD/4d8JrX8M=\ngithub.com/libp2p/go-libp2p-quic-transport v0.9.0/go.mod h1:xyY+IgxL0qsW7Kiutab0+NlxM0/p9yRtrGTYsuMWf70=\ngithub.com/libp2p/go-libp2p-quic-transport v0.10.0/go.mod h1:RfJbZ8IqXIhxBRm5hqUEJqjiiY8xmEuq3HUDS993MkA=\ngithub.com/libp2p/go-libp2p-quic-transport v0.11.1/go.mod h1:yleTY9UcxoGNaw1nEBjxomPbv7hs1voOZazGjqC3+1w=\ngithub.com/libp2p/go-libp2p-quic-transport v0.11.2 h1:p1YQDZRHH4Cv2LPtHubqlQ9ggz4CKng/REZuXZbZMhM=\ngithub.com/libp2p/go-libp2p-quic-transport v0.11.2/go.mod h1:wlanzKtIh6pHrq+0U3p3DY9PJfGqxMgPaGKaK5LifwQ=\ngithub.com/libp2p/go-libp2p-record v0.0.1/go.mod h1:grzqg263Rug/sRex85QrDOLntdFAymLDLm7lxMgU79Q=\ngithub.com/libp2p/go-libp2p-record v0.1.0/go.mod h1:ujNc8iuE5dlKWVy6wuL6dd58t0n7xI4hAIl8pE6wu5Q=\ngithub.com/libp2p/go-libp2p-record v0.1.1/go.mod h1:VRgKajOyMVgP/F0L5g3kH7SVskp17vFi2xheb5uMJtg=\ngithub.com/libp2p/go-libp2p-record v0.1.2/go.mod h1:pal0eNcT5nqZaTV7UGhqeGqxFgGdsU/9W//C8dqjQDk=\ngithub.com/libp2p/go-libp2p-record v0.1.3 h1:R27hoScIhQf/A8XJZ8lYpnqh9LatJ5YbHs28kCIfql0=\ngithub.com/libp2p/go-libp2p-record v0.1.3/go.mod h1:yNUff/adKIfPnYQXgp6FQmNu3gLJ6EMg7+/vv2+9pY4=\ngithub.com/libp2p/go-libp2p-routing v0.0.1/go.mod h1:N51q3yTr4Zdr7V8Jt2JIktVU+3xBBylx1MZeVA6t1Ys=\ngithub.com/libp2p/go-libp2p-routing v0.1.0/go.mod h1:zfLhI1RI8RLEzmEaaPwzonRvXeeSHddONWkcTcB54nE=\ngithub.com/libp2p/go-libp2p-routing-helpers v0.2.3 h1:xY61alxJ6PurSi+MXbywZpelvuU4U4p/gPTxjqCqTzY=\ngithub.com/libp2p/go-libp2p-routing-helpers v0.2.3/go.mod h1:795bh+9YeoFl99rMASoiVgHdi5bjack0N1+AFAdbvBw=\ngithub.com/libp2p/go-libp2p-secio v0.0.1/go.mod h1:IdG6iQybdcYmbTzxp4J5dwtUEDTOvZrT0opIDVNPrJs=\ngithub.com/libp2p/go-libp2p-secio v0.0.3/go.mod h1:hS7HQ00MgLhRO/Wyu1bTX6ctJKhVpm+j2/S2A5UqYb0=\ngithub.com/libp2p/go-libp2p-secio v0.1.0/go.mod h1:tMJo2w7h3+wN4pgU2LSYeiKPrfqBgkOsdiKK77hE7c8=\ngithub.com/libp2p/go-libp2p-secio v0.2.0/go.mod h1:2JdZepB8J5V9mBp79BmwsaPQhRPNN2NrnB2lKQcdy6g=\ngithub.com/libp2p/go-libp2p-secio v0.2.1/go.mod h1:cWtZpILJqkqrSkiYcDBh5lA3wbT2Q+hz3rJQq3iftD8=\ngithub.com/libp2p/go-libp2p-secio v0.2.2/go.mod h1:wP3bS+m5AUnFA+OFO7Er03uO1mncHG0uVwGrwvjYlNY=\ngithub.com/libp2p/go-libp2p-swarm v0.0.1/go.mod h1:mh+KZxkbd3lQnveQ3j2q60BM1Cw2mX36XXQqwfPOShs=\ngithub.com/libp2p/go-libp2p-swarm v0.0.6/go.mod h1:s5GZvzg9xXe8sbeESuFpjt8CJPTCa8mhEusweJqyFy8=\ngithub.com/libp2p/go-libp2p-swarm v0.1.0/go.mod h1:wQVsCdjsuZoc730CgOvh5ox6K8evllckjebkdiY5ta4=\ngithub.com/libp2p/go-libp2p-swarm v0.2.1/go.mod h1:x07b4zkMFo2EvgPV2bMTlNmdQc8i+74Jjio7xGvsTgU=\ngithub.com/libp2p/go-libp2p-swarm v0.2.2/go.mod h1:fvmtQ0T1nErXym1/aa1uJEyN7JzaTNyBcHImCxRpPKU=\ngithub.com/libp2p/go-libp2p-swarm v0.2.3/go.mod h1:P2VO/EpxRyDxtChXz/VPVXyTnszHvokHKRhfkEgFKNM=\ngithub.com/libp2p/go-libp2p-swarm v0.2.4/go.mod h1:/xIpHFPPh3wmSthtxdGbkHZ0OET1h/GGZes8Wku/M5Y=\ngithub.com/libp2p/go-libp2p-swarm v0.2.7/go.mod h1:ZSJ0Q+oq/B1JgfPHJAT2HTall+xYRNYp1xs4S2FBWKA=\ngithub.com/libp2p/go-libp2p-swarm v0.2.8/go.mod h1:JQKMGSth4SMqonruY0a8yjlPVIkb0mdNSwckW7OYziM=\ngithub.com/libp2p/go-libp2p-swarm v0.3.0/go.mod h1:hdv95GWCTmzkgeJpP+GK/9D9puJegb7H57B5hWQR5Kk=\ngithub.com/libp2p/go-libp2p-swarm v0.3.1/go.mod h1:hdv95GWCTmzkgeJpP+GK/9D9puJegb7H57B5hWQR5Kk=\ngithub.com/libp2p/go-libp2p-swarm v0.4.0/go.mod h1:XVFcO52VoLoo0eitSxNQWYq4D6sydGOweTOAjJNraCw=\ngithub.com/libp2p/go-libp2p-swarm v0.4.3/go.mod h1:mmxP1pGBSc1Arw4F5DIjcpjFAmsRzA1KADuMtMuCT4g=\ngithub.com/libp2p/go-libp2p-swarm v0.5.0/go.mod h1:sU9i6BoHE0Ve5SKz3y9WfKrh8dUat6JknzUehFx8xW4=\ngithub.com/libp2p/go-libp2p-swarm v0.5.3 h1:hsYaD/y6+kZff1o1Mc56NcuwSg80lIphTS/zDk3mO4M=\ngithub.com/libp2p/go-libp2p-swarm v0.5.3/go.mod h1:NBn7eNW2lu568L7Ns9wdFrOhgRlkRnIDg0FLKbuu3i8=\ngithub.com/libp2p/go-libp2p-testing v0.0.1/go.mod h1:gvchhf3FQOtBdr+eFUABet5a4MBLK8jM3V4Zghvmi+E=\ngithub.com/libp2p/go-libp2p-testing v0.0.2/go.mod h1:gvchhf3FQOtBdr+eFUABet5a4MBLK8jM3V4Zghvmi+E=\ngithub.com/libp2p/go-libp2p-testing v0.0.3/go.mod h1:gvchhf3FQOtBdr+eFUABet5a4MBLK8jM3V4Zghvmi+E=\ngithub.com/libp2p/go-libp2p-testing v0.0.4/go.mod h1:gvchhf3FQOtBdr+eFUABet5a4MBLK8jM3V4Zghvmi+E=\ngithub.com/libp2p/go-libp2p-testing v0.1.0/go.mod h1:xaZWMJrPUM5GlDBxCeGUi7kI4eqnjVyavGroI2nxEM0=\ngithub.com/libp2p/go-libp2p-testing v0.1.1/go.mod h1:xaZWMJrPUM5GlDBxCeGUi7kI4eqnjVyavGroI2nxEM0=\ngithub.com/libp2p/go-libp2p-testing v0.1.2-0.20200422005655-8775583591d8/go.mod h1:Qy8sAncLKpwXtS2dSnDOP8ktexIAHKu+J+pnZOFZLTc=\ngithub.com/libp2p/go-libp2p-testing v0.3.0/go.mod h1:efZkql4UZ7OVsEfaxNHZPzIehtsBXMrXnCfJIgDti5g=\ngithub.com/libp2p/go-libp2p-testing v0.4.0/go.mod h1:Q+PFXYoiYFN5CAEG2w3gLPEzotlKsNSbKQ/lImlOWF0=\ngithub.com/libp2p/go-libp2p-testing v0.4.2 h1:IOiA5mMigi+eEjf4J+B7fepDhsjtsoWA9QbsCqbNp5U=\ngithub.com/libp2p/go-libp2p-testing v0.4.2/go.mod h1:Q+PFXYoiYFN5CAEG2w3gLPEzotlKsNSbKQ/lImlOWF0=\ngithub.com/libp2p/go-libp2p-tls v0.1.3 h1:twKMhMu44jQO+HgQK9X8NHO5HkeJu2QbhLzLJpa8oNM=\ngithub.com/libp2p/go-libp2p-tls v0.1.3/go.mod h1:wZfuewxOndz5RTnCAxFliGjvYSDA40sKitV4c50uI1M=\ngithub.com/libp2p/go-libp2p-transport v0.0.1/go.mod h1:UzbUs9X+PHOSw7S3ZmeOxfnwaQY5vGDzZmKPod3N3tk=\ngithub.com/libp2p/go-libp2p-transport v0.0.4/go.mod h1:StoY3sx6IqsP6XKoabsPnHCwqKXWUMWU7Rfcsubee/A=\ngithub.com/libp2p/go-libp2p-transport v0.0.5/go.mod h1:StoY3sx6IqsP6XKoabsPnHCwqKXWUMWU7Rfcsubee/A=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.0.1/go.mod h1:NJpUAgQab/8K6K0m+JmZCe5RUXG10UMEx4kWe9Ipj5c=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.0.4/go.mod h1:RGq+tupk+oj7PzL2kn/m1w6YXxcIAYJYeI90h6BGgUc=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.1.1/go.mod h1:IEtA6or8JUbsV07qPW4r01GnTenLW4oi3lOPbUMGJJA=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.2.0/go.mod h1:mQcrHj4asu6ArfSoMuyojOdjx73Q47cYD7s5+gZOlns=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.3.0/go.mod h1:i+SKzbRnvXdVbU3D1dwydnTmKRPXiAR/fyvi1dXuL4o=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.4.0/go.mod h1:J4ko0ObtZSmgn5BX5AmegP+dK3CSnU2lMCKsSq/EY0s=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.4.2/go.mod h1:NR8ne1VwfreD5VIWIU62Agt/J18ekORFU/j1i2y8zvk=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.4.6 h1:SHt3g0FslnqIkEWF25YOB8UCOCTpGAVvHRWQYJ+veiI=\ngithub.com/libp2p/go-libp2p-transport-upgrader v0.4.6/go.mod h1:JE0WQuQdy+uLZ5zOaI3Nw9dWGYJIA7mywEtP2lMvnyk=\ngithub.com/libp2p/go-libp2p-xor v0.0.0-20200501025846-71e284145d58/go.mod h1:AYjOiqJIdcmI4SXE2ouKQuFrUbE5myv8txWaB2pl4TI=\ngithub.com/libp2p/go-libp2p-yamux v0.1.2/go.mod h1:xUoV/RmYkg6BW/qGxA9XJyg+HzXFYkeXbnhjmnYzKp8=\ngithub.com/libp2p/go-libp2p-yamux v0.1.3/go.mod h1:VGSQVrqkh6y4nm0189qqxMtvyBft44MOYYPpYKXiVt4=\ngithub.com/libp2p/go-libp2p-yamux v0.2.0/go.mod h1:Db2gU+XfLpm6E4rG5uGCFX6uXA8MEXOxFcRoXUODaK8=\ngithub.com/libp2p/go-libp2p-yamux v0.2.1/go.mod h1:1FBXiHDk1VyRM1C0aez2bCfHQ4vMZKkAQzZbkSQt5fI=\ngithub.com/libp2p/go-libp2p-yamux v0.2.2/go.mod h1:lIohaR0pT6mOt0AZ0L2dFze9hds9Req3OfS+B+dv4qw=\ngithub.com/libp2p/go-libp2p-yamux v0.2.5/go.mod h1:Zpgj6arbyQrmZ3wxSZxfBmbdnWtbZ48OpsfmQVTErwA=\ngithub.com/libp2p/go-libp2p-yamux v0.2.7/go.mod h1:X28ENrBMU/nm4I3Nx4sZ4dgjZ6VhLEn0XhIoZ5viCwU=\ngithub.com/libp2p/go-libp2p-yamux v0.2.8/go.mod h1:/t6tDqeuZf0INZMTgd0WxIRbtK2EzI2h7HbFm9eAKI4=\ngithub.com/libp2p/go-libp2p-yamux v0.4.0/go.mod h1:+DWDjtFMzoAwYLVkNZftoucn7PelNoy5nm3tZ3/Zw30=\ngithub.com/libp2p/go-libp2p-yamux v0.4.1/go.mod h1:FA/NjRYRVNjqOzpGuGqcruH7jAU2mYIjtKBicVOL3dc=\ngithub.com/libp2p/go-libp2p-yamux v0.5.0/go.mod h1:AyR8k5EzyM2QN9Bbdg6X1SkVVuqLwTGf0L4DFq9g6po=\ngithub.com/libp2p/go-libp2p-yamux v0.5.1/go.mod h1:dowuvDu8CRWmr0iqySMiSxK+W0iL5cMVO9S94Y6gkv4=\ngithub.com/libp2p/go-libp2p-yamux v0.5.4 h1:/UOPtT/6DHPtr3TtKXBHa6g0Le0szYuI33Xc/Xpd7fQ=\ngithub.com/libp2p/go-libp2p-yamux v0.5.4/go.mod h1:tfrXbyaTqqSU654GTvK3ocnSZL3BuHoeTSqhcel1wsE=\ngithub.com/libp2p/go-maddr-filter v0.0.1/go.mod h1:6eT12kSQMA9x2pvFQa+xesMKUBlj9VImZbj3B9FBH/Q=\ngithub.com/libp2p/go-maddr-filter v0.0.4/go.mod h1:6eT12kSQMA9x2pvFQa+xesMKUBlj9VImZbj3B9FBH/Q=\ngithub.com/libp2p/go-maddr-filter v0.0.5/go.mod h1:Jk+36PMfIqCJhAnaASRH83bdAvfDRp/w6ENFaC9bG+M=\ngithub.com/libp2p/go-maddr-filter v0.1.0 h1:4ACqZKw8AqiuJfwFGq1CYDFugfXTOos+qQ3DETkhtCE=\ngithub.com/libp2p/go-maddr-filter v0.1.0/go.mod h1:VzZhTXkMucEGGEOSKddrwGiOv0tUhgnKqNEmIAz/bPU=\ngithub.com/libp2p/go-mplex v0.0.1/go.mod h1:pK5yMLmOoBR1pNCqDlA2GQrdAVTMkqFalaTWe7l4Yd0=\ngithub.com/libp2p/go-mplex v0.0.3/go.mod h1:pK5yMLmOoBR1pNCqDlA2GQrdAVTMkqFalaTWe7l4Yd0=\ngithub.com/libp2p/go-mplex v0.0.4/go.mod h1:pK5yMLmOoBR1pNCqDlA2GQrdAVTMkqFalaTWe7l4Yd0=\ngithub.com/libp2p/go-mplex v0.1.0/go.mod h1:SXgmdki2kwCUlCCbfGLEgHjC4pFqhTp0ZoV6aiKgxDU=\ngithub.com/libp2p/go-mplex v0.1.1/go.mod h1:Xgz2RDCi3co0LeZfgjm4OgUF15+sVR8SRcu3SFXI1lk=\ngithub.com/libp2p/go-mplex v0.1.2/go.mod h1:Xgz2RDCi3co0LeZfgjm4OgUF15+sVR8SRcu3SFXI1lk=\ngithub.com/libp2p/go-mplex v0.2.0/go.mod h1:0Oy/A9PQlwBytDRp4wSkFnzHYDKcpLot35JQ6msjvYQ=\ngithub.com/libp2p/go-mplex v0.3.0 h1:U1T+vmCYJaEoDJPV1aq31N56hS+lJgb397GsylNSgrU=\ngithub.com/libp2p/go-mplex v0.3.0/go.mod h1:0Oy/A9PQlwBytDRp4wSkFnzHYDKcpLot35JQ6msjvYQ=\ngithub.com/libp2p/go-msgio v0.0.1/go.mod h1:63lBBgOTDKQL6EWazRMCwXsEeEeK9O2Cd+0+6OOuipQ=\ngithub.com/libp2p/go-msgio v0.0.2/go.mod h1:63lBBgOTDKQL6EWazRMCwXsEeEeK9O2Cd+0+6OOuipQ=\ngithub.com/libp2p/go-msgio v0.0.3/go.mod h1:63lBBgOTDKQL6EWazRMCwXsEeEeK9O2Cd+0+6OOuipQ=\ngithub.com/libp2p/go-msgio v0.0.4/go.mod h1:63lBBgOTDKQL6EWazRMCwXsEeEeK9O2Cd+0+6OOuipQ=\ngithub.com/libp2p/go-msgio v0.0.6 h1:lQ7Uc0kS1wb1EfRxO2Eir/RJoHkHn7t6o+EiwsYIKJA=\ngithub.com/libp2p/go-msgio v0.0.6/go.mod h1:4ecVB6d9f4BDSL5fqvPiC4A3KivjWn+Venn/1ALLMWA=\ngithub.com/libp2p/go-nat v0.0.3/go.mod h1:88nUEt0k0JD45Bk93NIwDqjlhiOwOoV36GchpcVc1yI=\ngithub.com/libp2p/go-nat v0.0.4/go.mod h1:Nmw50VAvKuk38jUBcmNh6p9lUJLoODbJRvYAa/+KSDo=\ngithub.com/libp2p/go-nat v0.0.5 h1:qxnwkco8RLKqVh1NmjQ+tJ8p8khNLFxuElYG/TwqW4Q=\ngithub.com/libp2p/go-nat v0.0.5/go.mod h1:B7NxsVNPZmRLvMOwiEO1scOSyjA56zxYAGv1yQgRkEU=\ngithub.com/libp2p/go-netroute v0.1.2/go.mod h1:jZLDV+1PE8y5XxBySEBgbuVAXbhtuHSdmLPL2n9MKbk=\ngithub.com/libp2p/go-netroute v0.1.3/go.mod h1:jZLDV+1PE8y5XxBySEBgbuVAXbhtuHSdmLPL2n9MKbk=\ngithub.com/libp2p/go-netroute v0.1.5/go.mod h1:V1SR3AaECRkEQCoFFzYwVYWvYIEtlxx89+O3qcpCl4A=\ngithub.com/libp2p/go-netroute v0.1.6 h1:ruPJStbYyXVYGQ81uzEDzuvbYRLKRrLvTYd33yomC38=\ngithub.com/libp2p/go-netroute v0.1.6/go.mod h1:AqhkMh0VuWmfgtxKPp3Oc1LdU5QSWS7wl0QLhSZqXxQ=\ngithub.com/libp2p/go-openssl v0.0.2/go.mod h1:v8Zw2ijCSWBQi8Pq5GAixw6DbFfa9u6VIYDXnvOXkc0=\ngithub.com/libp2p/go-openssl v0.0.3/go.mod h1:unDrJpgy3oFr+rqXsarWifmJuNnJR4chtO1HmaZjggc=\ngithub.com/libp2p/go-openssl v0.0.4/go.mod h1:unDrJpgy3oFr+rqXsarWifmJuNnJR4chtO1HmaZjggc=\ngithub.com/libp2p/go-openssl v0.0.5/go.mod h1:unDrJpgy3oFr+rqXsarWifmJuNnJR4chtO1HmaZjggc=\ngithub.com/libp2p/go-openssl v0.0.7 h1:eCAzdLejcNVBzP/iZM9vqHnQm+XyCEbSSIheIPRGNsw=\ngithub.com/libp2p/go-openssl v0.0.7/go.mod h1:unDrJpgy3oFr+rqXsarWifmJuNnJR4chtO1HmaZjggc=\ngithub.com/libp2p/go-reuseport v0.0.1/go.mod h1:jn6RmB1ufnQwl0Q1f+YxAj8isJgDCQzaaxIFYDhcYEA=\ngithub.com/libp2p/go-reuseport v0.0.2 h1:XSG94b1FJfGA01BUrT82imejHQyTxO4jEWqheyCXYvU=\ngithub.com/libp2p/go-reuseport v0.0.2/go.mod h1:SPD+5RwGC7rcnzngoYC86GjPzjSywuQyMVAheVBD9nQ=\ngithub.com/libp2p/go-reuseport-transport v0.0.1/go.mod h1:YkbSDrvjUVDL6b8XqriyA20obEtsW9BLkuOUyQAOCbs=\ngithub.com/libp2p/go-reuseport-transport v0.0.2/go.mod h1:YkbSDrvjUVDL6b8XqriyA20obEtsW9BLkuOUyQAOCbs=\ngithub.com/libp2p/go-reuseport-transport v0.0.3/go.mod h1:Spv+MPft1exxARzP2Sruj2Wb5JSyHNncjf1Oi2dEbzM=\ngithub.com/libp2p/go-reuseport-transport v0.0.4/go.mod h1:trPa7r/7TJK/d+0hdBLOCGvpQQVOU74OXbNCIMkufGw=\ngithub.com/libp2p/go-reuseport-transport v0.0.5 h1:lJzi+vSYbyJj2faPKLxNGWEIBcaV/uJmyvsUxXy2mLw=\ngithub.com/libp2p/go-reuseport-transport v0.0.5/go.mod h1:TC62hhPc8qs5c/RoXDZG6YmjK+/YWUPC0yYmeUecbjc=\ngithub.com/libp2p/go-sockaddr v0.0.2/go.mod h1:syPvOmNs24S3dFVGJA1/mrqdeijPxLV2Le3BRLKd68k=\ngithub.com/libp2p/go-sockaddr v0.1.0/go.mod h1:syPvOmNs24S3dFVGJA1/mrqdeijPxLV2Le3BRLKd68k=\ngithub.com/libp2p/go-sockaddr v0.1.1 h1:yD80l2ZOdGksnOyHrhxDdTDFrf7Oy+v3FMVArIRgZxQ=\ngithub.com/libp2p/go-sockaddr v0.1.1/go.mod h1:syPvOmNs24S3dFVGJA1/mrqdeijPxLV2Le3BRLKd68k=\ngithub.com/libp2p/go-stream-muxer v0.0.1/go.mod h1:bAo8x7YkSpadMTbtTaxGVHWUQsR/l5MEaHbKaliuT14=\ngithub.com/libp2p/go-stream-muxer v0.1.0/go.mod h1:8JAVsjeRBCWwPoZeH0W1imLOcriqXJyFvB0mR4A04sQ=\ngithub.com/libp2p/go-stream-muxer-multistream v0.1.1/go.mod h1:zmGdfkQ1AzOECIAcccoL8L//laqawOsO03zX8Sa+eGw=\ngithub.com/libp2p/go-stream-muxer-multistream v0.2.0/go.mod h1:j9eyPol/LLRqT+GPLSxvimPhNph4sfYfMoDPd7HkzIc=\ngithub.com/libp2p/go-stream-muxer-multistream v0.3.0 h1:TqnSHPJEIqDEO7h1wZZ0p3DXdvDSiLHQidKKUGZtiOY=\ngithub.com/libp2p/go-stream-muxer-multistream v0.3.0/go.mod h1:yDh8abSIzmZtqtOt64gFJUXEryejzNb0lisTt+fAMJA=\ngithub.com/libp2p/go-tcp-transport v0.0.1/go.mod h1:mnjg0o0O5TmXUaUIanYPUqkW4+u6mK0en8rlpA6BBTs=\ngithub.com/libp2p/go-tcp-transport v0.0.4/go.mod h1:+E8HvC8ezEVOxIo3V5vCK9l1y/19K427vCzQ+xHKH/o=\ngithub.com/libp2p/go-tcp-transport v0.1.0/go.mod h1:oJ8I5VXryj493DEJ7OsBieu8fcg2nHGctwtInJVpipc=\ngithub.com/libp2p/go-tcp-transport v0.1.1/go.mod h1:3HzGvLbx6etZjnFlERyakbaYPdfjg2pWP97dFZworkY=\ngithub.com/libp2p/go-tcp-transport v0.2.0/go.mod h1:vX2U0CnWimU4h0SGSEsg++AzvBcroCGYw28kh94oLe0=\ngithub.com/libp2p/go-tcp-transport v0.2.1/go.mod h1:zskiJ70MEfWz2MKxvFB/Pv+tPIB1PpPUrHIWQ8aFw7M=\ngithub.com/libp2p/go-tcp-transport v0.2.3/go.mod h1:9dvr03yqrPyYGIEN6Dy5UvdJZjyPFvl1S/igQ5QD1SU=\ngithub.com/libp2p/go-tcp-transport v0.2.4/go.mod h1:9dvr03yqrPyYGIEN6Dy5UvdJZjyPFvl1S/igQ5QD1SU=\ngithub.com/libp2p/go-tcp-transport v0.2.7 h1:Z8Kc/Kb8tD84WiaH55xAlaEnkqzrp88jSEySCKV4+gg=\ngithub.com/libp2p/go-tcp-transport v0.2.7/go.mod h1:lue9p1b3VmZj1MhhEGB/etmvF/nBQ0X9CW2DutBT3MM=\ngithub.com/libp2p/go-testutil v0.0.1/go.mod h1:iAcJc/DKJQanJ5ws2V+u5ywdL2n12X1WbbEG+Jjy69I=\ngithub.com/libp2p/go-testutil v0.1.0/go.mod h1:81b2n5HypcVyrCg/MJx4Wgfp/VHojytjVe/gLzZ2Ehc=\ngithub.com/libp2p/go-ws-transport v0.0.1/go.mod h1:p3bKjDWHEgtuKKj+2OdPYs5dAPIjtpQGHF2tJfGz7Ww=\ngithub.com/libp2p/go-ws-transport v0.0.5/go.mod h1:Qbl4BxPfXXhhd/o0wcrgoaItHqA9tnZjoFZnxykuaXU=\ngithub.com/libp2p/go-ws-transport v0.1.0/go.mod h1:rjw1MG1LU9YDC6gzmwObkPd/Sqwhw7yT74kj3raBFuo=\ngithub.com/libp2p/go-ws-transport v0.1.2/go.mod h1:dsh2Ld8F+XNmzpkaAijmg5Is+e9l6/1tK/6VFOdN69Y=\ngithub.com/libp2p/go-ws-transport v0.2.0/go.mod h1:9BHJz/4Q5A9ludYWKoGCFC5gUElzlHoKzu0yY9p/klM=\ngithub.com/libp2p/go-ws-transport v0.3.0/go.mod h1:bpgTJmRZAvVHrgHybCVyqoBmyLQ1fiZuEaBYusP5zsk=\ngithub.com/libp2p/go-ws-transport v0.3.1/go.mod h1:bpgTJmRZAvVHrgHybCVyqoBmyLQ1fiZuEaBYusP5zsk=\ngithub.com/libp2p/go-ws-transport v0.4.0 h1:9tvtQ9xbws6cA5LvqdE6Ne3vcmGB4f1z9SByggk4s0k=\ngithub.com/libp2p/go-ws-transport v0.4.0/go.mod h1:EcIEKqf/7GDjth6ksuS/6p7R49V4CBY6/E7R/iyhYUA=\ngithub.com/libp2p/go-yamux v1.2.1/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.2.2/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.2.3/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.3.0/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.3.3/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.3.5/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.3.6/go.mod h1:FGTiPvoV/3DVdgWpX+tM0OW3tsM+W5bSE3gZwqQTcow=\ngithub.com/libp2p/go-yamux v1.3.7/go.mod h1:fr7aVgmdNGJK+N1g+b6DW6VxzbRCjCOejR/hkmpooHE=\ngithub.com/libp2p/go-yamux v1.4.0/go.mod h1:fr7aVgmdNGJK+N1g+b6DW6VxzbRCjCOejR/hkmpooHE=\ngithub.com/libp2p/go-yamux v1.4.1 h1:P1Fe9vF4th5JOxxgQvfbOHkrGqIZniTLf+ddhZp8YTI=\ngithub.com/libp2p/go-yamux v1.4.1/go.mod h1:fr7aVgmdNGJK+N1g+b6DW6VxzbRCjCOejR/hkmpooHE=\ngithub.com/libp2p/go-yamux/v2 v2.0.0/go.mod h1:NVWira5+sVUIU6tu1JWvaRn1dRnG+cawOJiflsAM+7U=\ngithub.com/libp2p/go-yamux/v2 v2.2.0 h1:RwtpYZ2/wVviZ5+3pjC8qdQ4TKnrak0/E01N1UWoAFU=\ngithub.com/libp2p/go-yamux/v2 v2.2.0/go.mod h1:3So6P6TV6r75R9jiBpiIKgU/66lOarCZjqROGxzPpPQ=\ngithub.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM=\ngithub.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4=\ngithub.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381 h1:bqDmpDG49ZRnB5PcgP0RXtQvnMSgIF14M7CBd2shtXs=\ngithub.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4=\ngithub.com/lucas-clemente/quic-go v0.11.2/go.mod h1:PpMmPfPKO9nKJ/psF49ESTAGQSdfXxlg1otPbEB2nOw=\ngithub.com/lucas-clemente/quic-go v0.16.0/go.mod h1:I0+fcNTdb9eS1ZcjQZbDVPGchJ86chcIxPALn9lEJqE=\ngithub.com/lucas-clemente/quic-go v0.18.1/go.mod h1:yXttHsSNxQi8AWijC/vLP+OJczXqzHSOcJrM5ITUlCg=\ngithub.com/lucas-clemente/quic-go v0.19.3/go.mod h1:ADXpNbTQjq1hIzCpB+y/k5iz4n4z4IwqoLb94Kh5Hu8=\ngithub.com/lucas-clemente/quic-go v0.21.1/go.mod h1:U9kFi5LKbNIlU30dkuM9vxmTxWq4Bvzee/MjBI+07UA=\ngithub.com/lucas-clemente/quic-go v0.21.2 h1:8LqqL7nBQFDUINadW0fHV/xSaCQJgmJC0Gv+qUnjd78=\ngithub.com/lucas-clemente/quic-go v0.21.2/go.mod h1:vF5M1XqhBAHgbjKcJOXY3JZz3GP0T3FQhz/uyOUS38Q=\ngithub.com/lucasb-eyer/go-colorful v1.0.3/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=\ngithub.com/lufia/iostat v1.1.0/go.mod h1:rEPNA0xXgjHQjuI5Cy05sLlS2oRcSlWHRLrvh/AQ+Pg=\ngithub.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a/go.mod h1:pHhQNgMf3btfWnGBVipUOjRYhoOsdGqdm/+2c2E2WMI=\ngithub.com/lunixbochs/vtclean v1.0.0 h1:xu2sLAri4lGiovBDQKxl5mrXyESr3gUr5m5SM5+LVb8=\ngithub.com/lunixbochs/vtclean v1.0.0/go.mod h1:pHhQNgMf3btfWnGBVipUOjRYhoOsdGqdm/+2c2E2WMI=\ngithub.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ=\ngithub.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=\ngithub.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=\ngithub.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=\ngithub.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=\ngithub.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=\ngithub.com/manifoldco/promptui v0.7.0 h1:3l11YT8tm9MnwGFQ4kETwkzpAwY2Jt9lCrumCUW4+z4=\ngithub.com/manifoldco/promptui v0.7.0/go.mod h1:n4zTdgP0vr0S3w7/O/g98U+e0gwLScEXGwov2nIKuGQ=\ngithub.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE=\ngithub.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0=\ngithub.com/marten-seemann/qpack v0.1.0/go.mod h1:LFt1NU/Ptjip0C2CPkhimBz5CGE3WGDAUWqna+CNTrI=\ngithub.com/marten-seemann/qpack v0.2.0/go.mod h1:F7Gl5L1jIgN1D11ucXefiuJS9UMVP2opoCp2jDKb7wc=\ngithub.com/marten-seemann/qpack v0.2.1/go.mod h1:F7Gl5L1jIgN1D11ucXefiuJS9UMVP2opoCp2jDKb7wc=\ngithub.com/marten-seemann/qtls v0.2.3/go.mod h1:xzjG7avBwGGbdZ8dTGxlBnLArsVKLvwmjgmPuiQEcYk=\ngithub.com/marten-seemann/qtls v0.9.1/go.mod h1:T1MmAdDPyISzxlK6kjRr0pcZFBVd1OZbBb/j3cvzHhk=\ngithub.com/marten-seemann/qtls v0.10.0/go.mod h1:UvMd1oaYDACI99/oZUYLzMCkBXQVT0aGm99sJhbT8hs=\ngithub.com/marten-seemann/qtls-go1-15 v0.1.0/go.mod h1:GyFwywLKkRt+6mfU99csTEY1joMZz5vmB1WNZH3P81I=\ngithub.com/marten-seemann/qtls-go1-15 v0.1.1/go.mod h1:GyFwywLKkRt+6mfU99csTEY1joMZz5vmB1WNZH3P81I=\ngithub.com/marten-seemann/qtls-go1-15 v0.1.4/go.mod h1:GyFwywLKkRt+6mfU99csTEY1joMZz5vmB1WNZH3P81I=\ngithub.com/marten-seemann/qtls-go1-15 v0.1.5 h1:Ci4EIUN6Rlb+D6GmLdej/bCQ4nPYNtVXQB+xjiXE1nk=\ngithub.com/marten-seemann/qtls-go1-15 v0.1.5/go.mod h1:GyFwywLKkRt+6mfU99csTEY1joMZz5vmB1WNZH3P81I=\ngithub.com/marten-seemann/qtls-go1-16 v0.1.3/go.mod h1:gNpI2Ol+lRS3WwSOtIUUtRwZEQMXjYK+dQSBFbethAk=\ngithub.com/marten-seemann/qtls-go1-16 v0.1.4 h1:xbHbOGGhrenVtII6Co8akhLEdrawwB2iHl5yhJRpnco=\ngithub.com/marten-seemann/qtls-go1-16 v0.1.4/go.mod h1:gNpI2Ol+lRS3WwSOtIUUtRwZEQMXjYK+dQSBFbethAk=\ngithub.com/marten-seemann/qtls-go1-17 v0.1.0-beta.1.2/go.mod h1:fz4HIxByo+LlWcreM4CZOYNuz3taBQ8rN2X6FqvaWo8=\ngithub.com/marten-seemann/qtls-go1-17 v0.1.0-rc.1 h1:/rpmWuGvceLwwWuaKPdjpR4JJEUH0tq64/I3hvzaNLM=\ngithub.com/marten-seemann/qtls-go1-17 v0.1.0-rc.1/go.mod h1:fz4HIxByo+LlWcreM4CZOYNuz3taBQ8rN2X6FqvaWo8=\ngithub.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd h1:br0buuQ854V8u83wA0rVZ8ttrq5CpaPZdvrK0LP2lOk=\ngithub.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd/go.mod h1:QuCEs1Nt24+FYQEqAAncTDPJIuGs+LxK1MCiFL25pMU=\ngithub.com/mattn/go-colorable v0.0.0-20170327083344-ded68f7a9561/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=\ngithub.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=\ngithub.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ=\ngithub.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=\ngithub.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=\ngithub.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=\ngithub.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8=\ngithub.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=\ngithub.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=\ngithub.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=\ngithub.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ=\ngithub.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE=\ngithub.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/mattn/go-isatty v0.0.13 h1:qdl+GuBjcsKKDco5BsxPJlId98mSWNKqYA+Co0SC1yA=\ngithub.com/mattn/go-isatty v0.0.13/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU=\ngithub.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=\ngithub.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=\ngithub.com/mattn/go-runewidth v0.0.10 h1:CoZ3S2P7pvtP45xOtBw+/mDL2z0RKI576gSkzRRpdGg=\ngithub.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=\ngithub.com/mattn/go-xmlrpc v0.0.3/go.mod h1:mqc2dz7tP5x5BKlCahN/n+hs7OSZKJkS9JsHNBRlrxA=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=\ngithub.com/mdlayher/genetlink v1.0.0/go.mod h1:0rJ0h4itni50A86M2kHcgS85ttZazNt7a8H2a2cw0Gc=\ngithub.com/mdlayher/netlink v0.0.0-20190409211403-11939a169225/go.mod h1:eQB3mZE4aiYnlUsyGGCOpPETfdQq4Jhsgf1fk3cwQaA=\ngithub.com/mdlayher/netlink v0.0.0-20190828143259-340058475d09/go.mod h1:KxeJAFOFLG6AjpyDkQ/iIhxygIUKD+vcwqcnu43w/+M=\ngithub.com/mdlayher/netlink v1.0.0/go.mod h1:KxeJAFOFLG6AjpyDkQ/iIhxygIUKD+vcwqcnu43w/+M=\ngithub.com/mdlayher/netlink v1.1.0/go.mod h1:H4WCitaheIsdF9yOYu8CFmCgQthAPIWZmcKp9uZHgmY=\ngithub.com/mdlayher/wifi v0.0.0-20190303161829-b1436901ddee/go.mod h1:Evt/EIne46u9PtQbeTx2NTcqURpr5K4SvKtGmBuDPN8=\ngithub.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE=\ngithub.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4=\ngithub.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=\ngithub.com/miekg/dns v1.1.4/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=\ngithub.com/miekg/dns v1.1.12/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=\ngithub.com/miekg/dns v1.1.28/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM=\ngithub.com/miekg/dns v1.1.31/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM=\ngithub.com/miekg/dns v1.1.41 h1:WMszZWJG0XmzbK9FEmzH2TVcqYzFesusSIB41b8KHxY=\ngithub.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI=\ngithub.com/mikioh/tcp v0.0.0-20190314235350-803a9b46060c h1:bzE/A84HN25pxAuk9Eej1Kz9OUelF97nAc82bDquQI8=\ngithub.com/mikioh/tcp v0.0.0-20190314235350-803a9b46060c/go.mod h1:0SQS9kMwD2VsyFEB++InYyBJroV/FRmBgcydeSUcJms=\ngithub.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b h1:z78hV3sbSMAUoyUMM0I83AUIT6Hu17AWfgjzIbtrYFc=\ngithub.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b/go.mod h1:lxPUiZwKoFL8DUUmalo2yJJUCxbPKtm8OKfqr2/FTNU=\ngithub.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc h1:PTfri+PuQmWDqERdnNMiD9ZejrlswWrCpBEZgWOiTrc=\ngithub.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc/go.mod h1:cGKTAVKx4SxOuR/czcZ/E2RSJ3sfHs8FpHhQ5CWMf9s=\ngithub.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 h1:lYpkrQH5ajf0OXOcUbGjvZxxijuBwbbmlSxLiuofa+g=\ngithub.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod h1:pD8RvIylQ358TN4wwqatJ8rNavkEINozVn9DtGI3dfQ=\ngithub.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16/go.mod h1:2FMWW+8GMoPweT6+pI63m9YE3Lmw4J71hV56Chs1E/U=\ngithub.com/minio/sha256-simd v0.0.0-20190328051042-05b4dd3047e5/go.mod h1:2FMWW+8GMoPweT6+pI63m9YE3Lmw4J71hV56Chs1E/U=\ngithub.com/minio/sha256-simd v0.1.0/go.mod h1:2FMWW+8GMoPweT6+pI63m9YE3Lmw4J71hV56Chs1E/U=\ngithub.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM=\ngithub.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM=\ngithub.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g=\ngithub.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM=\ngithub.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=\ngithub.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=\ngithub.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=\ngithub.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=\ngithub.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=\ngithub.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/mitchellh/mapstructure v1.3.0 h1:iDwIio/3gk2QtLLEsqU5lInaMzos0hDTz8a6lazSFVw=\ngithub.com/mitchellh/mapstructure v1.3.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=\ngithub.com/mmcloughlin/avo v0.0.0-20201105074841-5d2f697d268f/go.mod h1:6aKT4zZIrpGqB3RpFU14ByCSSyKY6LfJz4J/JJChHfI=\ngithub.com/moby/term v0.0.0-20200915141129-7f0af18e79f2 h1:SPoLlS9qUUnXcIY4pvA4CTwYjk0Is5f4UPEkeESr53k=\ngithub.com/moby/term v0.0.0-20200915141129-7f0af18e79f2/go.mod h1:TjQg8pa4iejrUrjiz0MCtMV38jdMNW4doKSiBrEvCQQ=\ngithub.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=\ngithub.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=\ngithub.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=\ngithub.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=\ngithub.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=\ngithub.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=\ngithub.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc=\ngithub.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8=\ngithub.com/mr-tron/base58 v1.1.1/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8=\ngithub.com/mr-tron/base58 v1.1.2/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc=\ngithub.com/mr-tron/base58 v1.1.3/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc=\ngithub.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o=\ngithub.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc=\ngithub.com/muesli/reflow v0.2.0/go.mod h1:qT22vjVmM9MIUeLgsVYe/Ye7eZlbv9dZjL3dVhUqLX8=\ngithub.com/muesli/reflow v0.2.1-0.20210115123740-9e1d0d53df68/go.mod h1:Xk+z4oIWdQqJzsxyjgl3P22oYZnHdZ8FFTHAQQt5BMQ=\ngithub.com/muesli/termenv v0.7.2/go.mod h1:ct2L5N2lmix82RaY3bMWwVu/jUFc9Ule0KGDCiKYPh8=\ngithub.com/muesli/termenv v0.7.4/go.mod h1:pZ7qY9l3F7e5xsAOS0zCew2tME+p7bWeBkotCEcIIcc=\ngithub.com/multiformats/go-base32 v0.0.3 h1:tw5+NhuwaOjJCC5Pp82QuXbrmLzWg7uxlMFp8Nq/kkI=\ngithub.com/multiformats/go-base32 v0.0.3/go.mod h1:pLiuGC8y0QR3Ue4Zug5UzK9LjgbkL8NSQj0zQ5Nz/AA=\ngithub.com/multiformats/go-base36 v0.1.0 h1:JR6TyF7JjGd3m6FbLU2cOxhC0Li8z8dLNGQ89tUg4F4=\ngithub.com/multiformats/go-base36 v0.1.0/go.mod h1:kFGE83c6s80PklsHO9sRn2NCoffoRdUUOENyW/Vv6sM=\ngithub.com/multiformats/go-multiaddr v0.0.1/go.mod h1:xKVEak1K9cS1VdmPZW3LSIb6lgmoS58qz/pzqmAxV44=\ngithub.com/multiformats/go-multiaddr v0.0.2/go.mod h1:xKVEak1K9cS1VdmPZW3LSIb6lgmoS58qz/pzqmAxV44=\ngithub.com/multiformats/go-multiaddr v0.0.4/go.mod h1:xKVEak1K9cS1VdmPZW3LSIb6lgmoS58qz/pzqmAxV44=\ngithub.com/multiformats/go-multiaddr v0.1.0/go.mod h1:xKVEak1K9cS1VdmPZW3LSIb6lgmoS58qz/pzqmAxV44=\ngithub.com/multiformats/go-multiaddr v0.1.1/go.mod h1:aMKBKNEYmzmDmxfX88/vz+J5IU55txyt0p4aiWVohjo=\ngithub.com/multiformats/go-multiaddr v0.2.0/go.mod h1:0nO36NvPpyV4QzvTLi/lafl2y95ncPj0vFwVF6k6wJ4=\ngithub.com/multiformats/go-multiaddr v0.2.1/go.mod h1:s/Apk6IyxfvMjDafnhJgJ3/46z7tZ04iMk5wP4QMGGE=\ngithub.com/multiformats/go-multiaddr v0.2.2/go.mod h1:NtfXiOtHvghW9KojvtySjH5y0u0xW5UouOmQQrn6a3Y=\ngithub.com/multiformats/go-multiaddr v0.3.0/go.mod h1:dF9kph9wfJ+3VLAaeBqo9Of8x4fJxp6ggJGteB8HQTI=\ngithub.com/multiformats/go-multiaddr v0.3.1/go.mod h1:uPbspcUPd5AfaP6ql3ujFY+QWzmBD8uLLL4bXW0XfGc=\ngithub.com/multiformats/go-multiaddr v0.3.3 h1:vo2OTSAqnENB2rLk79pLtr+uhj+VAzSe3uef5q0lRSs=\ngithub.com/multiformats/go-multiaddr v0.3.3/go.mod h1:lCKNGP1EQ1eZ35Za2wlqnabm9xQkib3fyB+nZXHLag0=\ngithub.com/multiformats/go-multiaddr-dns v0.0.1/go.mod h1:9kWcqw/Pj6FwxAwW38n/9403szc57zJPs45fmnznu3Q=\ngithub.com/multiformats/go-multiaddr-dns v0.0.2/go.mod h1:9kWcqw/Pj6FwxAwW38n/9403szc57zJPs45fmnznu3Q=\ngithub.com/multiformats/go-multiaddr-dns v0.0.3/go.mod h1:9kWcqw/Pj6FwxAwW38n/9403szc57zJPs45fmnznu3Q=\ngithub.com/multiformats/go-multiaddr-dns v0.1.0/go.mod h1:01k2RAqtoXIuPa3DCavAE9/6jc6nM0H3EgZyfUhN2oY=\ngithub.com/multiformats/go-multiaddr-dns v0.2.0/go.mod h1:TJ5pr5bBO7Y1B18djPuRsVkduhQH2YqYSbxWJzYGdK0=\ngithub.com/multiformats/go-multiaddr-dns v0.3.1 h1:QgQgR+LQVt3NPTjbrLLpsaT2ufAA2y0Mkk+QRVJbW3A=\ngithub.com/multiformats/go-multiaddr-dns v0.3.1/go.mod h1:G/245BRQ6FJGmryJCrOuTdB37AMA5AMOVuO6NY3JwTk=\ngithub.com/multiformats/go-multiaddr-fmt v0.0.1/go.mod h1:aBYjqL4T/7j4Qx+R73XSv/8JsgnRFlf0w2KGLCmXl3Q=\ngithub.com/multiformats/go-multiaddr-fmt v0.1.0 h1:WLEFClPycPkp4fnIzoFoV9FVd49/eQsuaL3/CWe167E=\ngithub.com/multiformats/go-multiaddr-fmt v0.1.0/go.mod h1:hGtDIW4PU4BqJ50gW2quDuPVjyWNZxToGUh/HwTZYJo=\ngithub.com/multiformats/go-multiaddr-net v0.0.1/go.mod h1:nw6HSxNmCIQH27XPGBuX+d1tnvM7ihcFwHMSstNAVUU=\ngithub.com/multiformats/go-multiaddr-net v0.1.0/go.mod h1:5JNbcfBOP4dnhoZOv10JJVkJO0pCCEf8mTnipAo2UZQ=\ngithub.com/multiformats/go-multiaddr-net v0.1.1/go.mod h1:5JNbcfBOP4dnhoZOv10JJVkJO0pCCEf8mTnipAo2UZQ=\ngithub.com/multiformats/go-multiaddr-net v0.1.2/go.mod h1:QsWt3XK/3hwvNxZJp92iMQKME1qHfpYmyIjFVsSOY6Y=\ngithub.com/multiformats/go-multiaddr-net v0.1.3/go.mod h1:ilNnaM9HbmVFqsb/qcNysjCu4PVONlrBZpHIrw/qQuA=\ngithub.com/multiformats/go-multiaddr-net v0.1.4/go.mod h1:ilNnaM9HbmVFqsb/qcNysjCu4PVONlrBZpHIrw/qQuA=\ngithub.com/multiformats/go-multiaddr-net v0.1.5/go.mod h1:ilNnaM9HbmVFqsb/qcNysjCu4PVONlrBZpHIrw/qQuA=\ngithub.com/multiformats/go-multiaddr-net v0.2.0 h1:MSXRGN0mFymt6B1yo/6BPnIRpLPEnKgQNvVfCX5VDJk=\ngithub.com/multiformats/go-multiaddr-net v0.2.0/go.mod h1:gGdH3UXny6U3cKKYCvpXI5rnK7YaOIEOPVDI9tsJbEA=\ngithub.com/multiformats/go-multibase v0.0.1/go.mod h1:bja2MqRZ3ggyXtZSEDKpl0uO/gviWFaSteVbWT51qgs=\ngithub.com/multiformats/go-multibase v0.0.2/go.mod h1:bja2MqRZ3ggyXtZSEDKpl0uO/gviWFaSteVbWT51qgs=\ngithub.com/multiformats/go-multibase v0.0.3 h1:l/B6bJDQjvQ5G52jw4QGSYeOTZoAwIO77RblWplfIqk=\ngithub.com/multiformats/go-multibase v0.0.3/go.mod h1:5+1R4eQrT3PkYZ24C3W2Ue2tPwIdYQD509ZjSb5y9Oc=\ngithub.com/multiformats/go-multihash v0.0.1/go.mod h1:w/5tugSrLEbWqlcgJabL3oHFKTwfvkofsjW2Qa1ct4U=\ngithub.com/multiformats/go-multihash v0.0.5/go.mod h1:lt/HCbqlQwlPBz7lv0sQCdtfcMtlJvakRUn/0Ual8po=\ngithub.com/multiformats/go-multihash v0.0.7/go.mod h1:XuKXPp8VHcTygube3OWZC+aZrA+H1IhmjoCDtJc7PXM=\ngithub.com/multiformats/go-multihash v0.0.8/go.mod h1:YSLudS+Pi8NHE7o6tb3D8vrpKa63epEDmG8nTduyAew=\ngithub.com/multiformats/go-multihash v0.0.9/go.mod h1:YSLudS+Pi8NHE7o6tb3D8vrpKa63epEDmG8nTduyAew=\ngithub.com/multiformats/go-multihash v0.0.10/go.mod h1:YSLudS+Pi8NHE7o6tb3D8vrpKa63epEDmG8nTduyAew=\ngithub.com/multiformats/go-multihash v0.0.13/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc=\ngithub.com/multiformats/go-multihash v0.0.14/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc=\ngithub.com/multiformats/go-multihash v0.0.15 h1:hWOPdrNqDjwHDx82vsYGSDZNyktOJJ2dzZJzFkOV1jM=\ngithub.com/multiformats/go-multihash v0.0.15/go.mod h1:D6aZrWNLFTV/ynMpKsNtB40mJzmCl4jb1alC0OvHiHg=\ngithub.com/multiformats/go-multistream v0.0.1/go.mod h1:fJTiDfXJVmItycydCnNx4+wSzZ5NwG2FEVAI30fiovg=\ngithub.com/multiformats/go-multistream v0.0.4/go.mod h1:fJTiDfXJVmItycydCnNx4+wSzZ5NwG2FEVAI30fiovg=\ngithub.com/multiformats/go-multistream v0.1.0/go.mod h1:fJTiDfXJVmItycydCnNx4+wSzZ5NwG2FEVAI30fiovg=\ngithub.com/multiformats/go-multistream v0.1.1/go.mod h1:KmHZ40hzVxiaiwlj3MEbYgK9JFk2/9UktWZAF54Du38=\ngithub.com/multiformats/go-multistream v0.2.0/go.mod h1:5GZPQZbkWOLOn3J2y4Y99vVW7vOfsAflxARk3x14o6k=\ngithub.com/multiformats/go-multistream v0.2.1/go.mod h1:5GZPQZbkWOLOn3J2y4Y99vVW7vOfsAflxARk3x14o6k=\ngithub.com/multiformats/go-multistream v0.2.2 h1:TCYu1BHTDr1F/Qm75qwYISQdzGcRdC21nFgQW7l7GBo=\ngithub.com/multiformats/go-multistream v0.2.2/go.mod h1:UIcnm7Zuo8HKG+HkWgfQsGL+/MIEhyTqbODbIUwSXKs=\ngithub.com/multiformats/go-varint v0.0.1/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE=\ngithub.com/multiformats/go-varint v0.0.2/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE=\ngithub.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE=\ngithub.com/multiformats/go-varint v0.0.6 h1:gk85QWKxh3TazbLxED/NlDVv8+q+ReFJk7Y2W/KhfNY=\ngithub.com/multiformats/go-varint v0.0.6/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE=\ngithub.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=\ngithub.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU=\ngithub.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=\ngithub.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76/go.mod h1:x5OoJHDHqxHS801UIuhqGl6QdSAEJvtausosHSdazIo=\ngithub.com/namsral/flag v1.7.4-pre/go.mod h1:OXldTctbM6SWH1K899kPZcf65KxJiD7MsceFUpB5yDo=\ngithub.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg=\ngithub.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU=\ngithub.com/nats-io/nats-server/v2 v2.1.2/go.mod h1:Afk+wRZqkMQs/p45uXdrVLuab3gwv3Z8C4HTBu8GD/k=\ngithub.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzEE/Zbp4w=\ngithub.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w=\ngithub.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w=\ngithub.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c=\ngithub.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod h1:kHJEU3ofeGjhHklVoIGuVj85JJwZ6kWPaJwCIxgnFmo=\ngithub.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod h1:Qr6/a/Q4r9LP1IltGz7tA7iOK1WonHEYhu1HRBA7ZiM=\ngithub.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=\ngithub.com/nikkolasg/hexjson v0.0.0-20181101101858-78e39397e00c/go.mod h1:7qN3Y0BvzRUf4LofcoJplQL10lsFDb4PYlePTVwrP28=\ngithub.com/nishanths/predeclared v0.0.0-20200524104333-86fad755b4d3/go.mod h1:nt3d53pc1VYcphSCIaYAJtnPYnr3Zyn8fMq2wvPGPso=\ngithub.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229/go.mod h1:0aYXnNPJ8l7uZxf45rWW1a/uME32OF0rhiYGNQ2oF2E=\ngithub.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A=\ngithub.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE=\ngithub.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU=\ngithub.com/odeke-em/go-utils v0.0.0-20170224015737-e8ebaed0777a h1:ID4uUGPTiRgDphmzLbX3+teq4mhp2d6Isw2Tb8cMuJU=\ngithub.com/odeke-em/go-utils v0.0.0-20170224015737-e8ebaed0777a/go.mod h1:I31zE0t3yGARXW3nOJIdaNT1BJ2uPHKP0xjmjfRQEVg=\ngithub.com/odeke-em/go-uuid v0.0.0-20151221120446-b211d769a9aa h1:XEhClAZN5U0GUTFRgRdPNgAKO4mP++S+zbqXH+Pr9nU=\ngithub.com/odeke-em/go-uuid v0.0.0-20151221120446-b211d769a9aa/go.mod h1:omlfAqAAOXYL53jxw8wG+G2xH7NqbkJPlDeGP9YpP6g=\ngithub.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs=\ngithub.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=\ngithub.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=\ngithub.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=\ngithub.com/oklog/ulid/v2 v2.0.2 h1:r4fFzBm+bv0wNKNh5eXTwU7i85y5x+uwkxCUTNVQqLc=\ngithub.com/oklog/ulid/v2 v2.0.2/go.mod h1:mtBL0Qe/0HAx6/a4Z30qxVIAL1eQDweXq5lxOEiwQ68=\ngithub.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo=\ngithub.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA=\ngithub.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=\ngithub.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=\ngithub.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=\ngithub.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=\ngithub.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=\ngithub.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=\ngithub.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=\ngithub.com/onsi/ginkgo v1.12.0/go.mod h1:oUhWkIvk5aDxtKvDDuw8gItl8pKl42LzjC9KZE0HfGg=\ngithub.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk=\ngithub.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY=\ngithub.com/onsi/ginkgo v1.16.2/go.mod h1:CObGmKUOKaSC0RjmoAK7tKyn4Azo5P2IWuoMnvwxz1E=\ngithub.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc=\ngithub.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0=\ngithub.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA=\ngithub.com/onsi/gomega v1.4.2/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=\ngithub.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=\ngithub.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=\ngithub.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=\ngithub.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY=\ngithub.com/onsi/gomega v1.8.1/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA=\ngithub.com/onsi/gomega v1.9.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA=\ngithub.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=\ngithub.com/onsi/gomega v1.13.0 h1:7lLHu94wT9Ij0o6EWWclhu0aOh32VxhkwEJvzuWPeak=\ngithub.com/onsi/gomega v1.13.0/go.mod h1:lRk9szgn8TxENtWd0Tp4c3wjlRfMTMH27I+3Je41yGY=\ngithub.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk=\ngithub.com/opencontainers/go-digest v1.0.0-rc1 h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=\ngithub.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s=\ngithub.com/opencontainers/image-spec v1.0.1 h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=\ngithub.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0=\ngithub.com/opencontainers/runc v1.0.0-rc9 h1:/k06BMULKF5hidyoZymkoDCzdJzltZpz/UU4LguQVtc=\ngithub.com/opencontainers/runc v1.0.0-rc9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U=\ngithub.com/opencontainers/runtime-spec v1.0.2/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=\ngithub.com/opentracing-contrib/go-grpc v0.0.0-20180928155321-4b5a12d3ff02/go.mod h1:JNdpVEzCpXBgIiv4ds+TzhN1hrtxq6ClLrTlT9OQRSc=\ngithub.com/opentracing-contrib/go-grpc v0.0.0-20191001143057-db30781987df/go.mod h1:DYR5Eij8rJl8h7gblRrOZ8g0kW1umSpKqYIBTgeDtLo=\ngithub.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis=\ngithub.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9/go.mod h1:PLldrQSroqzH70Xl+1DQcGnefIbqsKR7UDaiux3zV+w=\ngithub.com/opentracing-contrib/go-stdlib v1.0.0/go.mod h1:qtI1ogk+2JhVPIXVc6q+NHziSmy2W5GbdQZFUHADCBU=\ngithub.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74=\ngithub.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=\ngithub.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=\ngithub.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=\ngithub.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=\ngithub.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5/go.mod h1:/wsWhb9smxSfWAKL3wpBW7V8scJMt8N8gnaMCS9E/cA=\ngithub.com/openzipkin/zipkin-go v0.1.1/go.mod h1:NtoC/o8u3JlF1lSlyPNswIbeQH9bJTmOf0Erfk+hxe8=\ngithub.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw=\ngithub.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4=\ngithub.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4=\ngithub.com/ory/dockertest/v3 v3.6.3 h1:L8JWiGgR+fnj90AEOkTFIEp4j5uWAK72P3IUsYgn2cs=\ngithub.com/ory/dockertest/v3 v3.6.3/go.mod h1:EFLcVUOl8qCwp9NyDAcCDtq/QviLtYswW/VbWzUnTNE=\ngithub.com/oschwald/geoip2-golang v1.4.0 h1:5RlrjCgRyIGDz/mBmPfnAF4h8k0IAcRv9PvrpOfz+Ug=\ngithub.com/oschwald/geoip2-golang v1.4.0/go.mod h1:8QwxJvRImBH+Zl6Aa6MaIcs5YdlZSTKtzmPGzQqi9ng=\ngithub.com/oschwald/maxminddb-golang v1.6.0 h1:KAJSjdHQ8Kv45nFIbtoLGrGWqHFajOIm7skTyz/+Dls=\ngithub.com/oschwald/maxminddb-golang v1.6.0/go.mod h1:DUJFucBg2cvqx42YmDa/+xHvb0elJtOm3o4aFQ/nb/w=\ngithub.com/otiai10/copy v1.4.2/go.mod h1:XWfuS3CrI0R6IE0FbgHsEazaXO8G0LpMp9o8tos0x4E=\ngithub.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE=\ngithub.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs=\ngithub.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo=\ngithub.com/otiai10/mint v1.3.2/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc=\ngithub.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM=\ngithub.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=\ngithub.com/pborman/getopt v0.0.0-20170112200414-7148bc3a4c30/go.mod h1:85jBQOZwpVEaDAr341tbn15RS4fCAsIst0qp7i8ex1o=\ngithub.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k=\ngithub.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=\ngithub.com/pelletier/go-toml v1.4.0/go.mod h1:PN7xzY2wHTK0K9p34ErDQMlFxa51Fk0OUruD3k1mMwo=\ngithub.com/pelletier/go-toml v1.7.0 h1:7utD74fnzVc/cpcyy8sjrlFr5vYpypUixARcHIMIGuI=\ngithub.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE=\ngithub.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac=\ngithub.com/peterh/liner v0.0.0-20170317030525-88609521dc4b/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc=\ngithub.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 h1:JhzVVoYvbOACxoUmOs6V/G4D5nPVUW73rKvXxP4XUJc=\ngithub.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE=\ngithub.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc=\ngithub.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=\ngithub.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.8.1-0.20171018195549-f15c970de5b7/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=\ngithub.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992/go.mod h1:uIp+gprXxxrWSjjklXD+mN4wed/tMfjMMmN/9+JsA9o=\ngithub.com/polydawn/refmt v0.0.0-20190408063855-01bf1e26dd14/go.mod h1:uIp+gprXxxrWSjjklXD+mN4wed/tMfjMMmN/9+JsA9o=\ngithub.com/polydawn/refmt v0.0.0-20190807091052-3d65705ee9f1/go.mod h1:uIp+gprXxxrWSjjklXD+mN4wed/tMfjMMmN/9+JsA9o=\ngithub.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a h1:hjZfReYVLbqFkAtr2us7vdy04YWz3LVAirzP7reh8+M=\ngithub.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a/go.mod h1:uIp+gprXxxrWSjjklXD+mN4wed/tMfjMMmN/9+JsA9o=\ngithub.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=\ngithub.com/prometheus/client_golang v0.8.0/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=\ngithub.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=\ngithub.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM=\ngithub.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs=\ngithub.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=\ngithub.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=\ngithub.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g=\ngithub.com/prometheus/client_golang v1.2.1/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U=\ngithub.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og=\ngithub.com/prometheus/client_golang v1.4.1/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU=\ngithub.com/prometheus/client_golang v1.6.0/go.mod h1:ZLOG9ck3JLRdB5MgO8f+lLTe83AXG6ro35rLTxvnIl4=\ngithub.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M=\ngithub.com/prometheus/client_golang v1.9.0/go.mod h1:FqZLKOZnGdFAhOK4nqGHa7D66IdsO+O441Eve7ptJDU=\ngithub.com/prometheus/client_golang v1.10.0/go.mod h1:WJM3cc3yu7XKBKa/I8WeZm+V3eltZnBwfENSU7mdogU=\ngithub.com/prometheus/client_golang v1.11.0 h1:HNkLOAEQMIDv/K+04rukrLx6ch7msSRwf3/SASFAGtQ=\ngithub.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0=\ngithub.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=\ngithub.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=\ngithub.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=\ngithub.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=\ngithub.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=\ngithub.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=\ngithub.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=\ngithub.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=\ngithub.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=\ngithub.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc=\ngithub.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA=\ngithub.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4=\ngithub.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=\ngithub.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=\ngithub.com/prometheus/common v0.18.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=\ngithub.com/prometheus/common v0.26.0 h1:iMAkS2TDoNWnKM+Kopnx/8tnEStIfpYA0ur0xQzzhMQ=\ngithub.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc=\ngithub.com/prometheus/node_exporter v1.0.0-rc.0.0.20200428091818-01054558c289/go.mod h1:FGbBv5OPKjch+jNUJmEQpMZytIdyW0NdBtWFcfSKusc=\ngithub.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=\ngithub.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=\ngithub.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=\ngithub.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ=\ngithub.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ=\ngithub.com/prometheus/procfs v0.0.6/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A=\ngithub.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A=\ngithub.com/prometheus/procfs v0.0.11/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=\ngithub.com/prometheus/procfs v0.1.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=\ngithub.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=\ngithub.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=\ngithub.com/prometheus/procfs v0.3.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=\ngithub.com/prometheus/procfs v0.6.0 h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4=\ngithub.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=\ngithub.com/prometheus/statsd_exporter v0.15.0/go.mod h1:Dv8HnkoLQkeEjkIE4/2ndAA7WL1zHKK7WMqFQqu72rw=\ngithub.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=\ngithub.com/radovskyb/watcher v1.0.7 h1:AYePLih6dpmS32vlHfhCeli8127LzkIgwJGcwwe8tUE=\ngithub.com/radovskyb/watcher v1.0.7/go.mod h1:78okwvY5wPdzcb1UYnip1pvrZNIVEIh/Cm+ZuvsUYIg=\ngithub.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be h1:ta7tUOvsPHVHGom5hKW5VXNc2xZIkfCKP8iaqOyYtUQ=\ngithub.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be/go.mod h1:MIDFMn7db1kT65GmV94GzpX9Qdi7N/pQlwb+AN8wh+Q=\ngithub.com/raulk/clock v1.1.0 h1:dpb29+UKMbLqiU/jqIJptgLR1nn23HLgMY0sTCDza5Y=\ngithub.com/raulk/clock v1.1.0/go.mod h1:3MpVxdZ/ODBQDxbN+kzshf5OSZwPjtMDx6BBXBmOeY0=\ngithub.com/raulk/go-watchdog v1.0.1/go.mod h1:lzSbAl5sh4rtI8tYHU01BWIDzgzqaQLj6RcA1i4mlqI=\ngithub.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=\ngithub.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 h1:OdAsTTz6OkFY5QxjkYwrChwuRruF69c169dPK26NUlk=\ngithub.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=\ngithub.com/rhysd/go-github-selfupdate v1.2.2 h1:G+mNzkc1wEtpmM6sFS/Ghkeq+ad4Yp6EZEHyp//wGEo=\ngithub.com/rhysd/go-github-selfupdate v1.2.2/go.mod h1:khesvSyKcXDUxeySCedFh621iawCks0dS/QnHPcpCws=\ngithub.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=\ngithub.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=\ngithub.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=\ngithub.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs=\ngithub.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro=\ngithub.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=\ngithub.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=\ngithub.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/rs/cors v1.6.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU=\ngithub.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik=\ngithub.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU=\ngithub.com/russross/blackfriday v1.5.2 h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=\ngithub.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g=\ngithub.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=\ngithub.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=\ngithub.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=\ngithub.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd/go.mod h1:hPqNNc0+uJM6H+SuU8sEs5K5IQeKccPqeSjfgcKGgPk=\ngithub.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=\ngithub.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI=\ngithub.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs=\ngithub.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E=\ngithub.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=\ngithub.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 h1:ZuhckGJ10ulaKkdvJtiAqsLTiPrLaXSdnVgXJKJkTxE=\ngithub.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3/go.mod h1:9/Rh6yILuLysoQnZ2oNooD2g7aBnvM7r/fNVxRNWfBc=\ngithub.com/sercand/kuberesolver v2.1.0+incompatible/go.mod h1:lWF3GL0xptCB/vCiJPl/ZshwPsX/n4Y7u0CW9E7aQIQ=\ngithub.com/sercand/kuberesolver v2.4.0+incompatible/go.mod h1:lWF3GL0xptCB/vCiJPl/ZshwPsX/n4Y7u0CW9E7aQIQ=\ngithub.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=\ngithub.com/shirou/gopsutil v2.18.12+incompatible h1:1eaJvGomDnH74/5cF4CTmTbLHAriGFsTZppLXDX93OM=\ngithub.com/shirou/gopsutil v2.18.12+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=\ngithub.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=\ngithub.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4/go.mod h1:XhFIlyj5a1fBNx5aJTbKoIq0mNaPvOagO+HjB3EtxrY=\ngithub.com/shurcooL/events v0.0.0-20181021180414-410e4ca65f48/go.mod h1:5u70Mqkb5O5cxEA8nxTsgrgLehJeAw6Oc4Ab1c/P1HM=\ngithub.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470/go.mod h1:2dOwnU2uBioM+SGy2aZoq1f/Sd1l9OkAeAUvjSyvgU0=\ngithub.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk=\ngithub.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod h1:N5mDOmsrJOB+vfqUK+7DmDyjhSLIIBnXo9lvZJj3MWQ=\ngithub.com/shurcooL/gofontwoff v0.0.0-20180329035133-29b52fc0a18d/go.mod h1:05UtEgK5zq39gLST6uB0cf3NEHjETfB4Fgr3Gx5R9Vw=\ngithub.com/shurcooL/gopherjslib v0.0.0-20160914041154-feb6d3990c2c/go.mod h1:8d3azKNyqcHP1GaQE/c6dDgjkgSx2BZ4IoEi4F1reUI=\ngithub.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b/go.mod h1:ZpfEhSmds4ytuByIcDnOLkTHGUI6KNqRNPDLHDk+mUU=\ngithub.com/shurcooL/highlight_go v0.0.0-20181028180052-98c3abbbae20/go.mod h1:UDKB5a1T23gOMUJrI+uSuH0VRDStOiUVSjBTRDVBVag=\ngithub.com/shurcooL/home v0.0.0-20181020052607-80b7ffcb30f9/go.mod h1:+rgNQw2P9ARFAs37qieuu7ohDNQ3gds9msbT2yn85sg=\ngithub.com/shurcooL/htmlg v0.0.0-20170918183704-d01228ac9e50/go.mod h1:zPn1wHpTIePGnXSHpsVPWEktKXHr6+SS6x/IKRb7cpw=\ngithub.com/shurcooL/httperror v0.0.0-20170206035902-86b7830d14cc/go.mod h1:aYMfkZ6DWSJPJ6c4Wwz3QtW22G7mf/PEgaB9k/ik5+Y=\ngithub.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg=\ngithub.com/shurcooL/httpgzip v0.0.0-20180522190206-b1c53ac65af9/go.mod h1:919LwcH0M7/W4fcZ0/jy0qGght1GIhqyS/EgWGH2j5Q=\ngithub.com/shurcooL/issues v0.0.0-20181008053335-6292fdc1e191/go.mod h1:e2qWDig5bLteJ4fwvDAc2NHzqFEthkqn7aOZAOpj+PQ=\ngithub.com/shurcooL/issuesapp v0.0.0-20180602232740-048589ce2241/go.mod h1:NPpHK2TI7iSaM0buivtFUc9offApnI0Alt/K8hcHy0I=\ngithub.com/shurcooL/notifications v0.0.0-20181007000457-627ab5aea122/go.mod h1:b5uSkrEVM1jQUspwbixRBhaIjIzL2xazXp6kntxYle0=\ngithub.com/shurcooL/octicon v0.0.0-20181028054416-fa4f57f9efb2/go.mod h1:eWdoE5JD4R5UVWDucdOPg1g2fqQRq78IQa9zlOV1vpQ=\ngithub.com/shurcooL/reactions v0.0.0-20181006231557-f2e0b4ca5b82/go.mod h1:TCR1lToEk4d2s07G3XGfz2QrgHXg4RJBvjrOozvoWfk=\ngithub.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=\ngithub.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=\ngithub.com/shurcooL/users v0.0.0-20180125191416-49c67e49c537/go.mod h1:QJTqeLYEDaXHZDBsXlPCDqdhQuJkuw4NOtaxYe3xii4=\ngithub.com/shurcooL/webdavfs v0.0.0-20170829043945-18c3829fa133/go.mod h1:hKmq5kWdCj2z2KEozexVbfEZIWiTjhE0+UjmZgPqehw=\ngithub.com/siebenmann/go-kstat v0.0.0-20160321171754-d34789b79745/go.mod h1:G81aIFAMS9ECrwBYR9YxhlPjWgrItd+Kje78O6+uqm8=\ngithub.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc=\ngithub.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=\ngithub.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=\ngithub.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=\ngithub.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=\ngithub.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=\ngithub.com/sirupsen/logrus v1.7.0 h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM=\ngithub.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=\ngithub.com/smartystreets/assertions v1.0.0/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM=\ngithub.com/smartystreets/assertions v1.0.1 h1:voD4ITNjPL5jjBfgR/r8fPIIBrliWrWHeiJApdr3r4w=\ngithub.com/smartystreets/assertions v1.0.1/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM=\ngithub.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa/go.mod h1:2RVY1rIf+2J2o/IM9+vPq9RzmHDSseB7FoXiSNIUsoU=\ngithub.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=\ngithub.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=\ngithub.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=\ngithub.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=\ngithub.com/smola/gocompat v0.2.0/go.mod h1:1B0MlxbmoZNo3h8guHp8HztB3BSYR5itql9qtVc0ypY=\ngithub.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=\ngithub.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY=\ngithub.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a/go.mod h1:LeFCbQYJ3KJlPs/FvPz2dy1tkpxyeNESVyCNNzRXFR0=\ngithub.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d/go.mod h1:UdhH50NIW0fCiwBSr0co2m7BnFLdv4fQTgdqdJTHFeE=\ngithub.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e/go.mod h1:HuIsMU8RRBOtsCgI77wP899iHVBQpCmg4ErYMZB+2IA=\ngithub.com/spacemonkeygo/openssl v0.0.0-20181017203307-c2dcc5cca94a/go.mod h1:7AyxJNCJ7SBZ1MfVQCWD6Uqo2oubI2Eq2y2eqf+A5r0=\ngithub.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 h1:RC6RW7j+1+HkWaX/Yh71Ee5ZHaHYt7ZP4sQgUrm6cDU=\ngithub.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572/go.mod h1:w0SWMsp6j9O/dk4/ZpIhL+3CkG8ofA2vuv7k+ltqUMc=\ngithub.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=\ngithub.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI=\ngithub.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=\ngithub.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=\ngithub.com/spf13/afero v1.2.2 h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=\ngithub.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk=\ngithub.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=\ngithub.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=\ngithub.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=\ngithub.com/spf13/cobra v0.0.0-20170417170307-b6cb39589372/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=\ngithub.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=\ngithub.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=\ngithub.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU=\ngithub.com/spf13/cobra v1.1.3 h1:xghbfqPkxzxP3C/f3n5DdpAbdKLj4ZE4BWQI362l53M=\ngithub.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo=\ngithub.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=\ngithub.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=\ngithub.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo=\ngithub.com/spf13/pflag v0.0.0-20170417173400-9e4c21054fa1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=\ngithub.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=\ngithub.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=\ngithub.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=\ngithub.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk=\ngithub.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=\ngithub.com/src-d/envconfig v1.0.0/go.mod h1:Q9YQZ7BKITldTBnoxsE5gOeB5y66RyPXeue/R4aaNBc=\ngithub.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=\ngithub.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=\ngithub.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.2.0 h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=\ngithub.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\ngithub.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/stretchr/testify v1.3.1-0.20190311161405-34c6fa2dc709/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=\ngithub.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=\ngithub.com/stretchr/testify v1.6.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=\ngithub.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=\ngithub.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=\ngithub.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=\ngithub.com/stripe/stripe-go/v72 v72.10.0 h1:4Rsv7Ts4D2qii2r0gW3qZpvPXRV0W8BpagLgvh7kRjY=\ngithub.com/stripe/stripe-go/v72 v72.10.0/go.mod h1:QwqJQtduHubZht9mek5sds9CtQcKFdsykV9ZepRWwo0=\ngithub.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=\ngithub.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=\ngithub.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=\ngithub.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=\ngithub.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod h1:kDXzergiv9cbyO7IOYJZWg1U88JhDg3PB6klq9Hg2pA=\ngithub.com/tchap/go-patricia v2.3.0+incompatible h1:GkY4dP3cEfEASBPPkWd+AmjYxhmDkqO9/zg7R0lSQRs=\ngithub.com/tchap/go-patricia v2.3.0+incompatible/go.mod h1:bmLyhP68RS6kStMGxByiQ23RP/odRBOTVjwp2cDyi6I=\ngithub.com/tcnksm/go-gitconfig v0.1.2 h1:iiDhRitByXAEyjgBqsKi9QU4o2TNtv9kPP3RgPgXBPw=\ngithub.com/tcnksm/go-gitconfig v0.1.2/go.mod h1:/8EhP4H7oJZdIPyT+/UIsG87kTzrzM4UsLGSItWYCpE=\ngithub.com/textileio/crypto v0.0.0-20210928200545-9b5a55171e1b/go.mod h1:p2BwrUs69ZtGA27KXYYOiToLs1PyPV5etdUFMko3d9c=\ngithub.com/textileio/crypto v0.0.0-20210929130053-08edebc3361a h1:ECSeaC+8iE/EmAqsX3JltDebB5q2IsDWy4KQqkl5c+8=\ngithub.com/textileio/crypto v0.0.0-20210929130053-08edebc3361a/go.mod h1:p2BwrUs69ZtGA27KXYYOiToLs1PyPV5etdUFMko3d9c=\ngithub.com/textileio/dcrypto v0.0.1 h1:ftXQKd+CAM7a0XFrw+hJqizo+ux8+g5RttKjImZRc7U=\ngithub.com/textileio/dcrypto v0.0.1/go.mod h1:rDlYXuL+HQwkyrxOR230zEUouRnlTwH6O5XWoPbmfcE=\ngithub.com/textileio/dsutils v1.0.1/go.mod h1:A2RXLoDWyLTCuEmC41+WjC8jRsE7BeRy1c6s3acc3PY=\ngithub.com/textileio/go-assets v0.0.0-20200430191519-b341e634e2b7 h1:J7+UXJT/Ku8ylMqqHH4T+CiHtOSd8woUZjynG3fEwDI=\ngithub.com/textileio/go-assets v0.0.0-20200430191519-b341e634e2b7/go.mod h1:j7aKMh8sbbtvttp7V7yCOkHW/pfRtIM/6h+8qEDsLyI=\ngithub.com/textileio/go-datastore-extensions v1.0.1 h1:qIJGqJaigQ1wD4TdwS/hf73u0HChhXvvUSJuxBEKS+c=\ngithub.com/textileio/go-datastore-extensions v1.0.1/go.mod h1:Pzj9FDRkb55910dr/FX8M7WywvnS26gBgEDez1ZBuLE=\ngithub.com/textileio/go-ds-badger v0.2.7-0.20201204225019-4ee78c4a40e2 h1:VIWkccJp5k8x1hbwQsSn6Xnns4wUDEW6XdiMLiOpr7k=\ngithub.com/textileio/go-ds-badger v0.2.7-0.20201204225019-4ee78c4a40e2/go.mod h1:qEZ/z1KyoRhGS5MYEbIcWUCCPd/0HxCkFDVeJgP1RcI=\ngithub.com/textileio/go-ds-badger3 v0.0.0-20210324034212-7b7fb3be3d1c h1:iOWa9/AXFssCi7VhbEvVkpCYXqq/n3E2zKH6u+9pIfM=\ngithub.com/textileio/go-ds-badger3 v0.0.0-20210324034212-7b7fb3be3d1c/go.mod h1:VX3oCNk7szANGG+baANuhTx7dheWiEPH7lp1n69ef4M=\ngithub.com/textileio/go-ds-mongo v0.1.4/go.mod h1:Zf6JlMPiIQUUmGlFFn5Z65C9p9LAvPg7XvX+qdGmTsU=\ngithub.com/textileio/go-ds-mongo v0.1.5 h1:y4Ch0qkWdriUtNoD/kuYtmvattklIDSE5mbgRM6Lphs=\ngithub.com/textileio/go-ds-mongo v0.1.5/go.mod h1:08w4gf1jrbE1DwpFNJHFzhakMMFfZm/eQHNiuMW7GOY=\ngithub.com/textileio/go-libp2p-pubsub-rpc v0.0.5 h1:De54sqNpQocJebf7P+4RrwtuUw8s8BsQhJD7LLD+vSw=\ngithub.com/textileio/go-libp2p-pubsub-rpc v0.0.5/go.mod h1:MlOMOz3KZxexobvUuFXT/QY9Vjh9eKJpZPr48hDUdVo=\ngithub.com/textileio/go-log/v2 v2.1.3-gke-1 h1:7e3xSUXQB8hn4uUe5fp41kLThW1o9T65gSM7qjS323g=\ngithub.com/textileio/go-log/v2 v2.1.3-gke-1/go.mod h1:DwACkjFS3kjZZR/4Spx3aPfSsciyslwUe5bxV8CEU2w=\ngithub.com/textileio/go-threads v1.1.6-0.20220406044848-cdd032536e1f h1:E6Cshg8EsNVluIB6Q6XjVSL0QRm2+w5e5K5Ze1vDIhE=\ngithub.com/textileio/go-threads v1.1.6-0.20220406044848-cdd032536e1f/go.mod h1:yPnVPdm8mpCq+fEDw5AamqZy4cQ+wE9wOCaDm3BVEmQ=\ngithub.com/textileio/go-threads v1.1.6-0.20220409162902-a715c2402413 h1:Aw8sTmDHQ4we8dN3WCuR3KnUFTIkk/Tn3LOPq/cqvEs=\ngithub.com/textileio/go-threads v1.1.6-0.20220409162902-a715c2402413/go.mod h1:yPnVPdm8mpCq+fEDw5AamqZy4cQ+wE9wOCaDm3BVEmQ=\ngithub.com/textileio/powergate/v2 v2.3.0 h1:kelYh+ZWDQao1rL5YiMznQscd6CsDjgt6P/D1S5UYwQ=\ngithub.com/textileio/powergate/v2 v2.3.0/go.mod h1:2j2NL1oevaVdrI6MpKfHnfgUOy1D4L7eP3I+1czxDjw=\ngithub.com/textileio/swagger-ui v0.3.29-0.20210224180244-7d73a7a32fe7 h1:qUEurT6kJF+nFkiNjUPMJJ7hgg9OIDnb8iLn6VtBukE=\ngithub.com/textileio/swagger-ui v0.3.29-0.20210224180244-7d73a7a32fe7/go.mod h1:IG3de1dcR5Hmcz57nScHHoq5Ju1AABd8z5GnLDgDCks=\ngithub.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e/go.mod h1:XDKHRm5ThF8YJjx001LtgelzsoaEcvnA7lVWz9EeX3g=\ngithub.com/tidwall/gjson v1.10.2 h1:APbLGOM0rrEkd8WBw9C24nllro4ajFuJu0Sc9hRz8Bo=\ngithub.com/tidwall/gjson v1.10.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=\ngithub.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=\ngithub.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=\ngithub.com/tidwall/pretty v0.0.0-20190325153808-1166b9ac2b65/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=\ngithub.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=\ngithub.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=\ngithub.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=\ngithub.com/tidwall/sjson v1.2.3 h1:5+deguEhHSEjmuICXZ21uSSsXotWMA0orU783+Z7Cp8=\ngithub.com/tidwall/sjson v1.2.3/go.mod h1:5WdjKx3AQMvCJ4RG6/2UYT7dLrGvJUV1x4jdTAyGvZs=\ngithub.com/tj/go-spin v1.1.0 h1:lhdWZsvImxvZ3q1C5OIB7d72DuOwP4O2NdBg9PyzNds=\ngithub.com/tj/go-spin v1.1.0/go.mod h1:Mg1mzmePZm4dva8Qz60H2lHwmJ2loum4VIrLgVnKwh4=\ngithub.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=\ngithub.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=\ngithub.com/twitchyliquid64/golang-asm v0.15.0/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08=\ngithub.com/uber/jaeger-client-go v2.15.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=\ngithub.com/uber/jaeger-client-go v2.23.1+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=\ngithub.com/uber/jaeger-lib v1.5.1-0.20181102163054-1fc5c315e03c/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U=\ngithub.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U=\ngithub.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo=\ngithub.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw=\ngithub.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=\ngithub.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs=\ngithub.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=\ngithub.com/ulikunitz/xz v0.5.5 h1:pFrO0lVpTBXLpYw+pnLj6TbvHuyjXMfjGeCwSqCVwok=\ngithub.com/ulikunitz/xz v0.5.5/go.mod h1:2bypXElzHzzJZwzH67Y6wb67pO62Rzfn7BSiF4ABRW8=\ngithub.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=\ngithub.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=\ngithub.com/urfave/cli v1.22.2/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=\ngithub.com/urfave/cli v1.22.3 h1:FpNT6zq26xNpHZy08emi755QwzLPs6Pukqjlc7RfOMU=\ngithub.com/urfave/cli v1.22.3/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=\ngithub.com/urfave/cli/v2 v2.0.0/go.mod h1:SE9GqnLQmjVa0iPEY0f1w3ygNIYcIJ0OKPMoW2caLfQ=\ngithub.com/urfave/cli/v2 v2.1.1/go.mod h1:SE9GqnLQmjVa0iPEY0f1w3ygNIYcIJ0OKPMoW2caLfQ=\ngithub.com/urfave/cli/v2 v2.2.0 h1:JTTnM6wKzdA0Jqodd966MVj4vWbbquZykeX1sKbe2C4=\ngithub.com/urfave/cli/v2 v2.2.0/go.mod h1:SE9GqnLQmjVa0iPEY0f1w3ygNIYcIJ0OKPMoW2caLfQ=\ngithub.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=\ngithub.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8=\ngithub.com/viant/assertly v0.4.8/go.mod h1:aGifi++jvCrUaklKEKT0BU95igDNaqkvz+49uaYMPRU=\ngithub.com/viant/toolbox v0.24.0/go.mod h1:OxMCG57V0PXuIP2HNQrtJf2CjqdmbrOx5EkMILuUhzM=\ngithub.com/wangjia184/sortedset v0.0.0-20160527075905-f5d03557ba30/go.mod h1:YkocrP2K2tcw938x9gCOmT5G5eCD6jsTz0SZuyAqwIE=\ngithub.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw=\ngithub.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw=\ngithub.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a h1:G++j5e0OC488te356JvdhaM8YS6nMsjLAYF7JxCv07w=\ngithub.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw=\ngithub.com/weaveworks/common v0.0.0-20200512154658-384f10054ec5/go.mod h1:c98fKi5B9u8OsKGiWHLRKus6ToQ1Tubeow44ECO1uxY=\ngithub.com/weaveworks/promrus v1.2.0/go.mod h1:SaE82+OJ91yqjrE1rsvBWVzNZKcHYFtMUyS1+Ogs/KA=\ngithub.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc h1:BCPnHtcboadS0DvysUuJXZ4lWVv5Bh5i7+tbIyi+ck4=\ngithub.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc/go.mod h1:r45hJU7yEoA81k6MWNhpMj/kms0n14dkzkxYHoB96UM=\ngithub.com/whyrusleeping/bencher v0.0.0-20190829221104-bb6607aa8bba h1:X4n8JG2e2biEZZXdBKt9HX7DN3bYGFUqljqqy0DqgnY=\ngithub.com/whyrusleeping/bencher v0.0.0-20190829221104-bb6607aa8bba/go.mod h1:CHQnYnQUEPydYCwuy8lmTHfGmdw9TKrhWV0xLx8l0oM=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20191216205031-b047b6acb3c0/go.mod h1:xdlJQaiqipF0HW+Mzpg7XRM3fWbGvfgFlcppuvlkIvY=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158/go.mod h1:Xj/M2wWU+QdTdRbu/L/1dIZY8/Wb2K9pAhtroQuxJJI=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200402171437-3d27c146c105/go.mod h1:Xj/M2wWU+QdTdRbu/L/1dIZY8/Wb2K9pAhtroQuxJJI=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200414195334-429a0b5e922e/go.mod h1:Xj/M2wWU+QdTdRbu/L/1dIZY8/Wb2K9pAhtroQuxJJI=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200504204219-64967432584d/go.mod h1:W5MvapuoHRP8rz4vxjwCK1pDqF1aQcWsV5PZ+AHbqdg=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200710004633-5379fc63235d/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200715143311-227fab5a2377/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200723185710-6a3894a6352b/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200806213330-63aa96ca5488/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200810223238-211df3b9e24c/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200812213548-958ddffe352c/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20200826160007-0b9f6c5fb163/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20210118024343-169e9d70c0c2/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20210219115102-f37d292932f2 h1:bsUlNhdmbtlfdLVXAVfuvKQ01RnWAM09TVrJkI7NZs4=\ngithub.com/whyrusleeping/cbor-gen v0.0.0-20210219115102-f37d292932f2/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ=\ngithub.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f h1:jQa4QT2UP9WYv2nzyawpKMOCl+Z/jW7djv2/J50lj9E=\ngithub.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f/go.mod h1:p9UJB6dDgdPgMJZs7UjUOdulKyRr9fqkS+6JKAInPy8=\ngithub.com/whyrusleeping/go-ctrlnet v0.0.0-20180313164037-f564fbbdaa95/go.mod h1:SJqKCCPXRfBFCwXjfNT/skfsceF7+MBFLI2OrvuRA7g=\ngithub.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 h1:EKhdznlJHPMoKr0XTrX+IlJs1LH3lyx2nfr1dOlZ79k=\ngithub.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1/go.mod h1:8UvriyWtv5Q5EOgjHaSseUEdkQfvwFv1I/In/O2M9gc=\ngithub.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod h1:bopw91TMyo8J3tvftk8xmU2kPmlrt4nScJQZU2hE5EM=\ngithub.com/whyrusleeping/go-logging v0.0.1/go.mod h1:lDPYj54zutzG1XYfHAhcc7oNXEburHQBn+Iqd4yS4vE=\ngithub.com/whyrusleeping/go-notifier v0.0.0-20170827234753-097c5d47330f/go.mod h1:cZNvX9cFybI01GriPRMXDtczuvUhgbcYr9iCGaNlRv8=\ngithub.com/whyrusleeping/go-smux-multiplex v3.0.16+incompatible/go.mod h1:34LEDbeKFZInPUrAG+bjuJmUXONGdEFW7XL0SpTY1y4=\ngithub.com/whyrusleeping/go-smux-multistream v2.0.2+incompatible/go.mod h1:dRWHHvc4HDQSHh9gbKEBbUZ+f2Q8iZTPG3UOGYODxSQ=\ngithub.com/whyrusleeping/go-smux-yamux v2.0.8+incompatible/go.mod h1:6qHUzBXUbB9MXmw3AUdB52L8sEb/hScCqOdW2kj/wuI=\ngithub.com/whyrusleeping/go-smux-yamux v2.0.9+incompatible/go.mod h1:6qHUzBXUbB9MXmw3AUdB52L8sEb/hScCqOdW2kj/wuI=\ngithub.com/whyrusleeping/ledger-filecoin-go v0.9.1-0.20201010031517-c3dcc1bddce4/go.mod h1:K+EVq8d5QcQ2At5VECsA+SNZvWefyBXh8TnIsxo1OvQ=\ngithub.com/whyrusleeping/mafmt v1.2.8/go.mod h1:faQJFPbLSxzD9xpA02ttW/tS9vZykNvXwGvqIpk20FA=\ngithub.com/whyrusleeping/mdns v0.0.0-20180901202407-ef14215e6b30/go.mod h1:j4l84WPFclQPj320J9gp0XwNKBb3U0zt5CBqjPp22G4=\ngithub.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9 h1:Y1/FEOpaCpD21WxrmfeIYCFPuVPRCY2XZTWzTNHGw30=\ngithub.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9/go.mod h1:j4l84WPFclQPj320J9gp0XwNKBb3U0zt5CBqjPp22G4=\ngithub.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7 h1:E9S12nwJwEOXe2d6gT6qxdvqMnNq+VnSsKPgm2ZZNds=\ngithub.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7/go.mod h1:X2c0RVCI1eSUFI8eLcY3c0423ykwiUdxLJtkDvruhjI=\ngithub.com/whyrusleeping/pubsub v0.0.0-20190708150250-92bcb0691325/go.mod h1:g7ckxrjiFh8mi1AY7ox23PZD0g6QU/TxW3U3unX7I3A=\ngithub.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee h1:lYbXeSvJi5zk5GLKVuid9TVjS9a0OmLIDKTfoZBL6Ow=\ngithub.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee/go.mod h1:m2aV4LZI4Aez7dP5PMyVKEHhUyEJ/RjmPEDOpDvudHg=\ngithub.com/whyrusleeping/yamux v1.1.5/go.mod h1:E8LnQQ8HKx5KD29HZFUwM1PxCOdPRzGwur1mcYhXcD8=\ngithub.com/x-cray/logrus-prefixed-formatter v0.5.2/go.mod h1:2duySbKsL6M18s5GU7VPsoEPHyzalCE06qoARUCeBBE=\ngithub.com/xakep666/mongo-migrate v0.2.1 h1:pRK966a44ujuGMEl73MOzv4MajcH8Q6MWo+TBlxjhvs=\ngithub.com/xakep666/mongo-migrate v0.2.1/go.mod h1:pVQysP+es2wX4TaeVd7zLkRZhKMcBqcC/KRyLms6Eyk=\ngithub.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=\ngithub.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=\ngithub.com/xdg-go/scram v1.0.2 h1:akYIkZ28e6A96dkWNJQu3nmCzH3YfwMPQExUYDaRv7w=\ngithub.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs=\ngithub.com/xdg-go/stringprep v1.0.2 h1:6iq84/ryjjeRmMJwxutI51F2GIPlP5BfTvXHeYjyhBc=\ngithub.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM=\ngithub.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I=\ngithub.com/xdg/stringprep v0.0.0-20180714160509-73f8eece6fdc/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y=\ngithub.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y=\ngithub.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=\ngithub.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo=\ngithub.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=\ngithub.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=\ngithub.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=\ngithub.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=\ngithub.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=\ngithub.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=\ngithub.com/xlab/c-for-go v0.0.0-20200718154222-87b0065af829 h1:wb7xrDzfkLgPHsSEBm+VSx6aDdi64VtV0xvP0E6j8bk=\ngithub.com/xlab/c-for-go v0.0.0-20200718154222-87b0065af829/go.mod h1:h/1PEBwj7Ym/8kOuMWvO2ujZ6Lt+TMbySEXNhjjR87I=\ngithub.com/xlab/pkgconfig v0.0.0-20170226114623-cea12a0fd245 h1:Sw125DKxZhPUI4JLlWugkzsrlB50jR9v2khiD9FxuSo=\ngithub.com/xlab/pkgconfig v0.0.0-20170226114623-cea12a0fd245/go.mod h1:C+diUUz7pxhNY6KAoLgrTYARGWnt82zWTylZlxT92vk=\ngithub.com/xorcare/golden v0.6.0/go.mod h1:7T39/ZMvaSEZlBPoYfVFmsBLmUl3uz9IuzWj/U6FtvQ=\ngithub.com/xorcare/golden v0.6.1-0.20191112154924-b87f686d7542 h1:oWgZJmC1DorFZDpfMfWg7xk29yEOZiXmo/wZl+utTI8=\ngithub.com/xorcare/golden v0.6.1-0.20191112154924-b87f686d7542/go.mod h1:7T39/ZMvaSEZlBPoYfVFmsBLmUl3uz9IuzWj/U6FtvQ=\ngithub.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=\ngithub.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c h1:3lbZUMbMiGUW/LMkfsEABsc5zNT9+b1CvsJx47JzJ8g=\ngithub.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c/go.mod h1:UrdRz5enIKZ63MEE3IF9l2/ebyx59GyGgPi+tICQdmM=\ngithub.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA=\ngithub.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA=\ngithub.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=\ngithub.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=\ngithub.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=\ngithub.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=\ngithub.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=\ngithub.com/zondax/hid v0.9.0/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWpEM=\ngithub.com/zondax/ledger-go v0.12.1/go.mod h1:KatxXrVDzgWwbssUWsF5+cOJHXPvzQ09YSlzGNuhOEo=\ngo.dedis.ch/fixbuf v1.0.3/go.mod h1:yzJMt34Wa5xD37V5RTdmp38cz3QhMagdGoem9anUalw=\ngo.dedis.ch/kyber/v3 v3.0.4/go.mod h1:OzvaEnPvKlyrWyp3kGXlFdp7ap1VC6RkZDTaPikqhsQ=\ngo.dedis.ch/kyber/v3 v3.0.9/go.mod h1:rhNjUUg6ahf8HEg5HUvVBYoWY4boAafX8tYxX+PS+qg=\ngo.dedis.ch/protobuf v1.0.5/go.mod h1:eIV4wicvi6JK0q/QnfIEGeSFNG0ZeB24kzut5+HaRLo=\ngo.dedis.ch/protobuf v1.0.7/go.mod h1:pv5ysfkDX/EawiPqcW3ikOxsL5t+BqnV6xHSmE79KI4=\ngo.dedis.ch/protobuf v1.0.11/go.mod h1:97QR256dnkimeNdfmURz0wAMNVbd1VmLXhG1CrTYrJ4=\ngo.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=\ngo.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=\ngo.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=\ngo.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg=\ngo.mongodb.org/mongo-driver v1.0.2/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM=\ngo.mongodb.org/mongo-driver v1.4.0/go.mod h1:llVBH2pkj9HywK0Dtdt6lDikOjFLbceHVu/Rc0iMKLs=\ngo.mongodb.org/mongo-driver v1.7.1/go.mod h1:Q4oFMbo1+MSNqICAdYMlC/zSTrwCogR4R8NzkI+yfU8=\ngo.mongodb.org/mongo-driver v1.8.1 h1:OZE4Wni/SJlrcmSIBRYNzunX5TKxjrTS4jKSnA99oKU=\ngo.mongodb.org/mongo-driver v1.8.1/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=\ngo.opencensus.io v0.18.0/go.mod h1:vKdFvxhtzZ9onBp9VKHK8z/sRpBMnKAsufL7wlDrCOA=\ngo.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk=\ngo.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk=\ngo.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=\ngo.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=\ngo.opencensus.io v0.22.1/go.mod h1:Ap50jQcDJrx6rB6VgeeFPtuPIf3wMRvRfrfYDO6+BmA=\ngo.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=\ngo.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=\ngo.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=\ngo.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=\ngo.opencensus.io v0.22.6/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=\ngo.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=\ngo.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=\ngo.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=\ngo.starlark.net v0.0.0-20190702223751-32f345186213/go.mod h1:c1/X6cHgvdXj6pUlmWKMkuqRnW4K8x2vwt6JAaaircg=\ngo.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=\ngo.uber.org/atomic v1.5.1/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=\ngo.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=\ngo.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw=\ngo.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=\ngo.uber.org/dig v1.10.0/go.mod h1:X34SnWGr8Fyla9zQNO2GSO2D+TIuqB14OS8JhYocIyw=\ngo.uber.org/fx v1.9.0/go.mod h1:mFdUyAUuJ3w4jAckiKSKbldsxy1ojpAMJ+dVZg5Y0Aw=\ngo.uber.org/goleak v1.0.0/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A=\ngo.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0=\ngo.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A=\ngo.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=\ngo.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4=\ngo.uber.org/multierr v1.4.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4=\ngo.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=\ngo.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=\ngo.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=\ngo.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA=\ngo.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngo.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM=\ngo.uber.org/zap v1.14.1/go.mod h1:Mb2vm2krFEG5DV0W9qcHBYFtp/Wku1cvYaqPsS/WYfc=\ngo.uber.org/zap v1.15.0/go.mod h1:Mb2vm2krFEG5DV0W9qcHBYFtp/Wku1cvYaqPsS/WYfc=\ngo.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ=\ngo.uber.org/zap v1.19.0 h1:mZQZefskPPCMIBCSEH0v2/iUqqLrYtaeqwD6FUGUnFE=\ngo.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI=\ngo4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE=\ngo4.org v0.0.0-20200411211856-f5505b9728dd h1:BNJlw5kRTzdmyfh5U8F93HA2OwkP7ZGwA51eJ/0wKOU=\ngo4.org v0.0.0-20200411211856-f5505b9728dd/go.mod h1:CIiUVy99QCPfoE13bO4EZaz5GZMZXMSBGhxRdsvzbkg=\ngolang.org/x/arch v0.0.0-20190927153633-4e8777c89be4/go.mod h1:flIaEI6LNU6xOCD5PaJvn9wGP0agmIOqjrtsKGRguv4=\ngolang.org/x/arch v0.0.0-20201008161808-52c3e6f60cff/go.mod h1:flIaEI6LNU6xOCD5PaJvn9wGP0agmIOqjrtsKGRguv4=\ngolang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d/go.mod h1:OWs+y06UdEOHN4y+MfF/py+xQ/tYqIWW03b70/CG9Rw=\ngolang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20171113213409-9f005a07e0d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190225124518-7f87c0fbb88b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE=\ngolang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190618222545-ea8f1a30c443/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY=\ngolang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200423211502-4bdfaf469ed5/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200602180216-279210d13fed/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20201012173705-84dcc777aaee/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=\ngolang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=\ngolang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=\ngolang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8=\ngolang.org/x/crypto v0.0.0-20210921155107-089bfa567519 h1:7I4JAnoQBe7ZtJcBaYHi5UtiO8tQHbUSXxL+pnGRANg=\ngolang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=\ngolang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=\ngolang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=\ngolang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=\ngolang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=\ngolang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=\ngolang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=\ngolang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=\ngolang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=\ngolang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw=\ngolang.org/x/exp v0.0.0-20200513190911-00229845015e h1:rMqLP+9XLy+LdbCXHjJHAmTfXCr93W7oruWA6Hq1Alc=\ngolang.org/x/exp v0.0.0-20200513190911-00229845015e/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw=\ngolang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=\ngolang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=\ngolang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=\ngolang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs=\ngolang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=\ngolang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=\ngolang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug=\ngolang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=\ngolang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=\ngolang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=\ngolang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=\ngolang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=\ngolang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=\ngolang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=\ngolang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=\ngolang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=\ngolang.org/x/mod v0.4.2 h1:Gz96sIWK3OalVv/I/qNygP42zyoKp3xptRVCWRFEBvo=\ngolang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=\ngolang.org/x/net v0.0.0-20180524181706-dfa909b99c79/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181011144130-49bb7cea24b1/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181029044818-c44066c5c816/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181106065722-10aee1819953/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190227160552-c95aed5357e7/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190228165749-92fc7df08ae7/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190313220215-9f648a60d977/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=\ngolang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=\ngolang.org/x/net v0.0.0-20190611141213-3f473d35a33a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190921015927-1a5e07d1ff72/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20191003171128-d98b1b443823/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20191007182048-72f939374954/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200421231249-e086a090c8fd/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200519113804-d87ec0cfa476/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200602114024-627f9648deb9/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=\ngolang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=\ngolang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=\ngolang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=\ngolang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=\ngolang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=\ngolang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=\ngolang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=\ngolang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=\ngolang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=\ngolang.org/x/net v0.0.0-20210423184538-5f58ad60dda6/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk=\ngolang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk=\ngolang.org/x/net v0.0.0-20210805182204-aaa1db679c0d h1:20cMwl2fHAzkJMEA+8J4JgqBQcQGzbisXo31MIeenXI=\ngolang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=\ngolang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20210201163806-010130855d6c h1:HiAZXo96zOhVhtFHchj/ojzoxCFiPrp9/j0GtS38V3g=\ngolang.org/x/oauth2 v0.0.0-20210201163806-010130855d6c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=\ngolang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod h1:JLpeXjPJfIyPr5TlbXLkXWLhP8nz10XfvxElABhCtcw=\ngolang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=\ngolang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sys v0.0.0-20180202135801-37707fdb30a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180810173357-98c5dad5d1a0/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181029174526-d69651ed3497/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190124100055-b90733256f2e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190219092855-153ac476189d/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190228124157-a34e9553db1e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190302025703-b6889370fb10/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190316082340-a2f829d7f35f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190405154228-4b34438f7a67/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190411185658-b44545bcd369/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190524122548-abf6ff778158/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190524152521-dbbf3f1254d4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190526052359-791d8a0f4d09/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190610200419-93c9922d18ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190902133755-9109b7679e13/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191025021431-6c3a3bfe00ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191025090151-53bf42e6b339/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191113165036-4c7a9d0fe056/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191224085550-c709ea063b76/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200217220822-9197077df867/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200509044756-6aff5f38e54f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200812155832-6a926be9bd1d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200926100807-9d91bd62050c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20201020230747-6e5568b54d1a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210317225723-c4fcb01b228e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210426080607-c94f62235c83/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/sys v0.0.0-20210511113859-b0526f3d8744/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/sys v0.0.0-20210809222454-d867a43fc93e h1:WUoyKPm6nCo1BnNUvPGnFG3T5DUVem42yDJZZ4CNxMA=\ngolang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=\ngolang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=\ngolang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=\ngolang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=\ngolang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 h1:NusfzzA6yGQ+ua51ck7E3omNUX/JuqbFSaRGqU8CcLI=\ngolang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20181030000716-a0a13e073c7b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20181130052023-1c3d964395ce/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=\ngolang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191030062658-86caa796c7ab/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191127201027-ecd32218bd7f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200216192241-b320d3a0f5a2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=\ngolang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=\ngolang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8=\ngolang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20200711155855-7342f9734a7d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=\ngolang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=\ngolang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=\ngolang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=\ngolang.org/x/tools v0.0.0-20200827010519-17fd2f27a9e3/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=\ngolang.org/x/tools v0.0.0-20201105001634-bc3cf281b174/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=\ngolang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=\ngolang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=\ngolang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=\ngolang.org/x/tools v0.1.2 h1:kRBLX7v7Af8W7Gdbbc908OJcdgtK8bOz9Uaj8/F1ACA=\ngolang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=\ngolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngoogle.golang.org/api v0.0.0-20180910000450-7ca32eb868bf/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0=\ngoogle.golang.org/api v0.0.0-20181030000543-1d582fd0359e/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0=\ngoogle.golang.org/api v0.1.0/go.mod h1:UGEZY7KEX120AnNLIHFMKIo4obdJhkp2tPbaPlQx13Y=\ngoogle.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk=\ngoogle.golang.org/api v0.3.2/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk=\ngoogle.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=\ngoogle.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=\ngoogle.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=\ngoogle.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=\ngoogle.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=\ngoogle.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=\ngoogle.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=\ngoogle.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=\ngoogle.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=\ngoogle.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=\ngoogle.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=\ngoogle.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=\ngoogle.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM=\ngoogle.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc=\ngoogle.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=\ngoogle.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=\ngoogle.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=\ngoogle.golang.org/appengine v1.6.6 h1:lMO5rYAqUxkmaj76jAkRUvt5JZgFymx/+Q5Mzfivuhc=\ngoogle.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=\ngoogle.golang.org/genproto v0.0.0-20170818010345-ee236bd376b0/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20181202183823-bd91e49a0898/go.mod h1:7Ep/1NZk928CDR8SjdVbjWNpdIf6nzjE3BTgJDr2Atg=\ngoogle.golang.org/genproto v0.0.0-20190306203927-b5d61aea6440/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s=\ngoogle.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=\ngoogle.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA=\ngoogle.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=\ngoogle.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U=\ngoogle.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=\ngoogle.golang.org/genproto v0.0.0-20200608115520-7c474a2e3482/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=\ngoogle.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=\ngoogle.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=\ngoogle.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=\ngoogle.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=\ngoogle.golang.org/genproto v0.0.0-20210126160654-44e461bb6506/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=\ngoogle.golang.org/genproto v0.0.0-20210207032614-bba0dbe2a9ea h1:N98SvVh7Hdle2lgUVFuIkf0B3u29CUakMUQa7Hwz8Wc=\ngoogle.golang.org/genproto v0.0.0-20210207032614-bba0dbe2a9ea/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=\ngoogle.golang.org/grpc v1.8.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw=\ngoogle.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw=\ngoogle.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw=\ngoogle.golang.org/grpc v1.16.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio=\ngoogle.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs=\ngoogle.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=\ngoogle.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM=\ngoogle.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=\ngoogle.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=\ngoogle.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=\ngoogle.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=\ngoogle.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=\ngoogle.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=\ngoogle.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=\ngoogle.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=\ngoogle.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=\ngoogle.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=\ngoogle.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60=\ngoogle.golang.org/grpc v1.28.1/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60=\ngoogle.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=\ngoogle.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=\ngoogle.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=\ngoogle.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=\ngoogle.golang.org/grpc v1.32.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=\ngoogle.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=\ngoogle.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=\ngoogle.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=\ngoogle.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=\ngoogle.golang.org/grpc v1.39.0 h1:Klz8I9kdtkIN6EpHHUOMLCYhTn/2WAe5a0s1hcBkdTI=\ngoogle.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE=\ngoogle.golang.org/grpc/cmd/protoc-gen-go-grpc v1.0.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw=\ngoogle.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=\ngoogle.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=\ngoogle.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=\ngoogle.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=\ngoogle.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=\ngoogle.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=\ngoogle.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=\ngoogle.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=\ngoogle.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=\ngoogle.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=\ngoogle.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=\ngoogle.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=\ngoogle.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=\ngoogle.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=\ngopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U=\ngopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=\ngopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=\ngopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=\ngopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw=\ngopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw=\ngopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=\ngopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=\ngopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o=\ngopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo=\ngopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE=\ngopkg.in/go-playground/validator.v9 v9.29.1/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ=\ngopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=\ngopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=\ngopkg.in/ini.v1 v1.55.0 h1:E8yzL5unfpW3M6fz/eB7Cb5MQAYSZ7GKo4Qth+N2sgQ=\ngopkg.in/ini.v1 v1.55.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=\ngopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=\ngopkg.in/segmentio/analytics-go.v3 v3.1.0 h1:UzxH1uaGZRpMKDhJyBz0pexz6yUoBU3x8bJsRk/HV6U=\ngopkg.in/segmentio/analytics-go.v3 v3.1.0/go.mod h1:4QqqlTlSSpVlWA9/9nDcPw+FkM2yv1NQoYjUbL9/JAw=\ngopkg.in/src-d/go-cli.v0 v0.0.0-20181105080154-d492247bbc0d/go.mod h1:z+K8VcOYVYcSwSjGebuDL6176A1XskgbtNl64NSg+n8=\ngopkg.in/src-d/go-log.v1 v1.0.1/go.mod h1:GN34hKP0g305ysm2/hctJ0Y8nWP3zxXXJ8GFabTyABE=\ngopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=\ngopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=\ngopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI=\ngopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=\ngopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=\ngopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=\ngopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=\ngopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=\ngopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=\ngotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=\ngotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw=\ngotest.tools/v3 v3.0.2 h1:kG1BFyqVHuQoVQiR1bWGnfz/fmHvvuiSPIV7rvl360E=\ngotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk=\ngrpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod h1:77eQGdRu53HpSqPFJFmuJdjuHRquDANNeA4x7B8WQ9o=\nhonnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=\nhonnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=\nhonnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=\nhowett.net/plist v0.0.0-20181124034731-591f970eefbb/go.mod h1:vMygbs4qMhSZSc4lCUl2OEE+rDiIIJAIdR4m7MiMcm0=\nmodernc.org/cc v1.0.0 h1:nPibNuDEx6tvYrUAtvDTTw98rx5juGsa5zuDnKwEEQQ=\nmodernc.org/cc v1.0.0/go.mod h1:1Sk4//wdnYJiUIxnW8ddKpaOJCF37yAdqYnkxUpaYxw=\nmodernc.org/golex v1.0.0 h1:wWpDlbK8ejRfSyi0frMyhilD3JBvtcx2AdGDnU+JtsE=\nmodernc.org/golex v1.0.0/go.mod h1:b/QX9oBD/LhixY6NDh+IdGv17hgB+51fET1i2kPSmvk=\nmodernc.org/mathutil v1.1.1 h1:FeylZSVX8S+58VsyJlkEj2bcpdytmp9MmDKZkKx8OIE=\nmodernc.org/mathutil v1.1.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=\nmodernc.org/strutil v1.1.0 h1:+1/yCzZxY2pZwwrsbH+4T7BQMoLQ9QiBshRC9eicYsc=\nmodernc.org/strutil v1.1.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs=\nmodernc.org/xc v1.0.0 h1:7ccXrupWZIS3twbUGrtKmHS2DXY6xegFua+6O3xgAFU=\nmodernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I=\nnhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=\nnhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g=\nnhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=\nrsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=\nrsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=\nrsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=\nrsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=\nsigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=\nsourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU=\nsourcegraph.com/sourcegraph/go-diff v0.5.0/go.mod h1:kuch7UrkMzY0X+p9CRK03kfuPQ2zzQcaEFbx8wA8rck=\nsourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=\n"
  },
  {
    "path": "integrationtest/pg/docker-compose.yml",
    "content": "version: \"3\"\nservices:\n  powergate:\n    image: textile/powergate:v2.3.3\n    ports:\n      - \"8889:8889\"\n      - \"8888:8888\"\n      - \"6060:6060\"\n      - \"5002:5002\"\n      - \"6002:6002\"\n    depends_on:\n      - ipfs\n      - ipfsbuckets\n      - lotus\n    environment:\n      - POWD_DEVNET=true\n      - POWD_LOTUSHOST=/dns4/lotus/tcp/7777\n      - POWD_IPFSAPIADDR=/dns4/ipfs/tcp/5001\n      - POWD_FFSMINERSELECTOR=reputation\n    restart: unless-stopped\n  lotus:\n    image: textile/lotus-devnet:v1.5.2\n    environment:\n      - TEXLOTUSDEVNET_SPEED=100\n      - TEXLOTUSDEVNET_IPFSADDR=/dns4/ipfs/tcp/5001\n      - TEXLOTUSDEVNET_BIGSECTORS=false\n      - TEXLOTUSDEVNET_ONLINEMODE=${LOTUS_ONLINEMODE}\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n    environment:\n      - IPFS_PROFILE=local-discovery\n    ports:\n      - \"5022:5001\"\n  ipfsbuckets:\n    image: ipfs/go-ipfs:v0.8.0\n    environment:\n      - IPFS_PROFILE=local-discovery\n    ports:\n      - \"5011:5001\"\n  mongo:\n    image: mongo:latest\n    ports:\n      - \"27017:27017\"\n"
  },
  {
    "path": "integrationtest/pg/pg_test.go",
    "content": "package pg\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"sort\"\n\t\"strings\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/ipfs/go-cid\"\n\thttpapi \"github.com/ipfs/go-ipfs-http-client\"\n\t\"github.com/ipfs/interface-go-ipfs-core/options\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\ttc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\tc \"github.com/textileio/textile/v2/api/bucketsd/client\"\n\tpb \"github.com/textileio/textile/v2/api/bucketsd/pb\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\thc \"github.com/textileio/textile/v2/api/hubd/client\"\n\tuc \"github.com/textileio/textile/v2/api/usersd/client\"\n\tuserspb \"github.com/textileio/textile/v2/api/usersd/pb\"\n\t\"github.com/textileio/textile/v2/buckets/archive/retrieval\"\n\t\"github.com/textileio/textile/v2/buckets/archive/tracker\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc\"\n)\n\nfunc TestMain(m *testing.M) {\n\tretrieval.CITest = true\n\ttracker.CheckInterval = time.Second * 5\n\tos.Exit(m.Run())\n}\n\nfunc TestCreateBucket(t *testing.T) {\n\tpowc, _ := StartPowergate(t)\n\tctx, _, _, _, client, _, shutdown := setup(t)\n\tdefer shutdown()\n\n\t// User is now created, so it should exist after spinup.\n\tres, err := powc.Admin.Users.List(ctx)\n\trequire.NoError(t, err)\n\trequire.Equal(t, 1, len(res.Users))\n\n\t_, err = client.Create(ctx)\n\trequire.NoError(t, err)\n\n\t// No new user should be created for the bucket.\n\tres, err = powc.Admin.Users.List(ctx)\n\trequire.NoError(t, err)\n\trequire.Equal(t, 1, len(res.Users))\n}\n\nfunc TestArchiveTracker(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, _ = StartPowergate(t)\n\t\tctx, conf, _, _, client, repo, shutdown := setup(t)\n\n\t\t// Create bucket with a file.\n\t\tb, err := client.Create(ctx)\n\t\trequire.Nil(t, err)\n\t\ttime.Sleep(4 * time.Second) // Give a sec to fund the Fil address.\n\n\t\trootCid1 := addDataFileToBucket(ctx, t, client, b.Root.Key, \"Data1.txt\")\n\n\t\t// Archive it (push to PG)\n\t\terr = client.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second) // Give some time to push the archive to PG.\n\n\t\t// Force stop the Hub.\n\t\tfmt.Println(\"<<< Force stopping Hub\")\n\t\tshutdown()\n\t\tfmt.Println(\"<<< Hub stopped\")\n\n\t\t// Re-spin up Hub.\n\t\tfmt.Println(\">>> Re-spinning the Hub\")\n\t\tclient = reSetup(t, conf, repo)\n\t\ttime.Sleep(5 * time.Second) // Wait for Hub to spinup and resume archives tracking.\n\t\tfmt.Println(\">>> Hub started\")\n\n\t\t// ## Continue on as nothing \"bad\" happened and check for success...\n\n\t\t// Wait for the archive to finish.\n\t\trequire.Eventually(t, archiveFinalState(ctx, t, client, b.Root.Key), 2*time.Minute, 2*time.Second)\n\n\t\t// Verify that the current archive status is Done.\n\t\tres, err := client.Archives(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus)\n\n\t\trequire.Equal(t, rootCid1, res.Current.Cid)\n\t\trequire.Len(t, res.Current.DealInfo, 1)\n\t\tdeal := res.Current.DealInfo[0]\n\t\trequire.NotEmpty(t, deal.ProposalCid)\n\t\trequire.NotEmpty(t, deal.Miner)\n\t})\n}\n\nfunc TestArchiveBucketWorkflow(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, _ = StartPowergate(t)\n\t\tctx, _, _, usersClient, buckClient, _, shutdown := setup(t)\n\t\tdefer shutdown()\n\n\t\t// Create bucket with a file.\n\t\tb, err := buckClient.Create(ctx)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second) // Give a sec to fund the Fil address.\n\t\trootCid1 := addDataFileToBucket(ctx, t, buckClient, b.Root.Key, \"Data1.txt\")\n\n\t\t// Archive it (push to PG)\n\t\terr = buckClient.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\n\t\t// Wait for the archive to finish.\n\t\trequire.Eventually(t, archiveFinalState(ctx, t, buckClient, b.Root.Key), 2*time.Minute, 2*time.Second)\n\n\t\t// Verify that the current archive status is Done.\n\t\tres, err := buckClient.Archives(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus, res.Current.FailureMsg)\n\n\t\trequire.Equal(t, rootCid1, res.Current.Cid)\n\t\trequire.Len(t, res.Current.DealInfo, 1)\n\t\tdeal1 := res.Current.DealInfo[0]\n\t\trequire.NotEmpty(t, deal1.ProposalCid)\n\t\trequire.NotEmpty(t, deal1.Miner)\n\n\t\t// List archives.\n\t\tas, err := usersClient.ArchivesLs(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, as.Archives, 1)\n\t\trequire.Equal(t, rootCid1, as.Archives[0].Cid)\n\t\trequire.Len(t, as.Archives[0].Info, 1)\n\t\trequire.Equal(t, as.Archives[0].Info[0].DealId, deal1.DealId)\n\n\t\t// Add another file to the bucket.\n\t\trootCid2 := addDataFileToBucket(ctx, t, buckClient, b.Root.Key, \"Data2.txt\")\n\n\t\t// Archive again.\n\t\terr = buckClient.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Eventually(t, archiveFinalState(ctx, t, buckClient, b.Root.Key), 2*time.Minute, 2*time.Second)\n\t\tres, err = buckClient.Archives(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus)\n\n\t\trequire.Equal(t, rootCid2, res.Current.Cid)\n\t\trequire.Len(t, res.Current.DealInfo, 1)\n\t\tdeal2 := res.Current.DealInfo[0]\n\t\trequire.NotEmpty(t, deal2.ProposalCid)\n\t\trequire.NotEmpty(t, deal2.Miner)\n\n\t\t// List archives.\n\t\tas, err = usersClient.ArchivesLs(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, as.Archives, 1)\n\t\trequire.Equal(t, rootCid2, as.Archives[0].Cid)\n\t\trequire.Len(t, as.Archives[0].Info, 1)\n\t\trequire.Equal(t, as.Archives[0].Info[0].DealId, deal2.DealId)\n\t})\n}\n\nfunc TestArchivesLs(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, _ = StartPowergate(t)\n\t\tctx, _, _, usersClient, buckClient, _, shutdown := setup(t)\n\t\tdefer shutdown()\n\n\t\t// Create Bucket 1, and archive it.\n\t\tb, err := buckClient.Create(ctx)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second)\n\t\trootCid1 := addDataFileToBucket(ctx, t, buckClient, b.Root.Key, \"Data1.txt\")\n\t\terr = buckClient.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Eventually(t, archiveFinalState(ctx, t, buckClient, b.Root.Key), 2*time.Minute, 2*time.Second)\n\t\tres, err := buckClient.Archives(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus, res.Current.FailureMsg)\n\t\tdeal1 := res.Current.DealInfo[0]\n\n\t\t// List archives, length should be 1.\n\t\tas, err := usersClient.ArchivesLs(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, as.Archives, 1)\n\t\trequire.Equal(t, rootCid1, as.Archives[0].Cid)\n\t\trequire.Len(t, as.Archives[0].Info, 1)\n\t\trequire.Equal(t, deal1.DealId, as.Archives[0].Info[0].DealId)\n\n\t\t// Create Bucket 2, and archive it.\n\t\tb, err = buckClient.Create(ctx)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second)\n\t\trootCid2 := addDataFileToBucket(ctx, t, buckClient, b.Root.Key, \"Data2.txt\")\n\t\terr = buckClient.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Eventually(t, archiveFinalState(ctx, t, buckClient, b.Root.Key), 2*time.Minute, 2*time.Second)\n\t\tres, err = buckClient.Archives(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus, res.Current.FailureMsg)\n\t\tdeal2 := res.Current.DealInfo[0]\n\n\t\t// List archives, length should be 2.\n\t\tas, err = usersClient.ArchivesLs(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, as.Archives, 2)\n\t\tsort.Slice(as.Archives, func(i, j int) bool {\n\t\t\treturn as.Archives[i].Cid < as.Archives[j].Cid\n\t\t})\n\t\tcids := []struct {\n\t\t\tc      string\n\t\t\tdealID uint64\n\t\t}{\n\t\t\t{c: rootCid1, dealID: deal1.DealId},\n\t\t\t{c: rootCid2, dealID: deal2.DealId},\n\t\t}\n\t\tsort.Slice(cids, func(i, j int) bool {\n\t\t\treturn cids[i].c < cids[j].c\n\t\t})\n\n\t\trequire.Equal(t, cids[0].c, as.Archives[0].Cid)\n\t\trequire.Len(t, as.Archives[0].Info, 1)\n\t\trequire.Equal(t, cids[0].dealID, as.Archives[0].Info[0].DealId)\n\t\trequire.Equal(t, cids[1].c, as.Archives[1].Cid)\n\t\trequire.Len(t, as.Archives[1].Info, 1)\n\t\trequire.Equal(t, cids[1].dealID, as.Archives[1].Info[0].DealId)\n\t})\n}\n\nfunc TestArchivesImport(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, _ = StartPowergate(t)\n\t\thubClient, usersClient, threadsclient, buckClient, conf, _, shutdown := createInfra(t)\n\t\tdefer shutdown()\n\n\t\t// Create an archive for account-1.\n\t\tctxAccount1 := createAccount(t, hubClient, threadsclient, conf)\n\t\tb, err := buckClient.Create(ctxAccount1)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second) // Give a sec to fund the Fil address.\n\t\trootCid1 := addDataFileToBucket(ctxAccount1, t, buckClient, b.Root.Key, \"Data1.txt\")\n\t\tcid1, err := cid.Decode(rootCid1)\n\t\trequire.NoError(t, err)\n\t\terr = buckClient.Archive(ctxAccount1, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Eventually(t, archiveFinalState(ctxAccount1, t, buckClient, b.Root.Key), 2*time.Minute, 2*time.Second)\n\t\tres, err := buckClient.Archives(ctxAccount1, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus)\n\t\tdeal := res.Current.DealInfo[0]\n\n\t\t// Create account-2, and import the DealID\n\t\t// created by account-1.\n\t\tctxAccount2 := createAccount(t, hubClient, threadsclient, conf)\n\n\t\t// Check no archives exist for account-2\n\t\tas, err := usersClient.ArchivesLs(ctxAccount2)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, as.Archives, 0)\n\n\t\t// Import deal made by account-1.\n\t\terr = usersClient.ArchivesImport(ctxAccount2, cid1, []uint64{deal.DealId})\n\t\trequire.NoError(t, err)\n\n\t\t// Assert archives listing includes imported archive.\n\t\tas, err = usersClient.ArchivesLs(ctxAccount2)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, as.Archives, 1)\n\n\t\trequire.Equal(t, rootCid1, as.Archives[0].Cid)\n\t\trequire.Len(t, as.Archives[0].Info, 1)\n\t\trequire.Equal(t, as.Archives[0].Info[0].DealId, deal.DealId)\n\t})\n}\n\nfunc TestArchiveUnfreeze(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, ipfsPow := StartPowergate(t)\n\t\thubClient, usersClient, threadsclient, client, conf, _, shutdown := createInfra(t)\n\t\tdefer shutdown()\n\t\t// Create an archive for account-1.\n\t\tctxAccount1 := createAccount(t, hubClient, threadsclient, conf)\n\t\tbuck, err := client.Create(ctxAccount1)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second) // Give a sec to fund the Fil address.\n\t\trootCid1 := addDataFileToBucket(ctxAccount1, t, client, buck.Root.Key, \"Data1.txt\")\n\n\t\terr = client.Archive(ctxAccount1, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Eventually(t, archiveFinalState(ctxAccount1, t, client, buck.Root.Key), 2*time.Minute, 2*time.Second)\n\t\tres, err := client.Archives(ctxAccount1, buck.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS, res.Current.ArchiveStatus)\n\t\tdeal := res.Current.DealInfo[0]\n\t\tccid, err := cid.Decode(rootCid1)\n\t\trequire.NoError(t, err)\n\n\t\t// Create account-2, and import the DealID\n\t\t// created by account-1.\n\t\tctxAccount2 := createAccount(t, hubClient, threadsclient, conf)\n\n\t\t// Obvious assertion about no existing retrievals.\n\t\trs, err := usersClient.ArchiveRetrievalLs(ctxAccount2)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, rs.Retrievals, 0)\n\t\t// Import deal made by account-1.\n\t\terr = usersClient.ArchivesImport(ctxAccount2, ccid, []uint64{deal.DealId})\n\t\trequire.NoError(t, err)\n\n\t\t// Delete `ccid` from go-ipfs of Powergate, and go-ipfs of Hub.\n\t\t// We need to do this to be sure that we're unfreezing from Filecoin,\n\t\t// and not leveraging that the Cid is already in the 'network'.\n\t\t//\n\t\t// In the real world, if people unfreeze archived data from the Hub, then\n\t\t// most probably Powergate will leverage that the data is still available\n\t\t// in the Hub. But in this test we want to *force* a real unfreeze, we\n\t\t// we'll delete now the archive bucket data from both go-ipfs nodes (Hub's\n\t\t// and Powergate).\n\t\tctx := context.Background()\n\n\t\terr = ipfsPow.Dag().Remove(context.Background(), ccid)\n\t\trequire.NoError(t, err)\n\n\t\t// Delete the bucket data from Hub's go-ipfs, basically\n\t\t// force deleting the bucket. This is to avoid that go-ipfs from\n\t\t// Powergate finds the data since both are conneted.\n\t\t// We have to do an extra .Pin().Rm() call since you can't\n\t\t// simply remove pinned data without an error.\n\t\tipfsHub, err := httpapi.NewApi(conf.AddrIPFSAPI)\n\t\trequire.NoError(t, err)\n\t\terr = ipfsHub.Pin().Rm(ctx, path.IpldPath(ccid), options.Pin.RmRecursive(true))\n\t\trequire.NoError(t, err)\n\t\terr = ipfsHub.Dag().Remove(context.Background(), ccid)\n\t\trequire.NoError(t, err)\n\n\t\t// At this point, the archived bucket data was remove from\n\t\t// both go-ipfs nodes; so the only way to get this data back if it\n\t\t// comes from the miners sector.\n\t\t// This was verified anyway. If you change the code below to see\n\t\t// Powergate logs, you can doble-check this is the case (since Powergate\n\t\t// logs explain from where the data was retrieved).\n\t\t// Unfreeze to a bucket.\n\n\t\tbuck, err = client.Create(ctxAccount2, c.WithName(\"super-bucket\"), c.WithCid(ccid), c.WithUnfreeze(true))\n\t\trequire.NoError(t, err)\n\t\t// Wait for the retrieval to finish.\n\t\tvar r *userspb.ArchiveRetrievalLsItem\n\t\trequire.Eventually(t, func() bool {\n\t\t\trs, err = usersClient.ArchiveRetrievalLs(ctxAccount2)\n\t\t\trequire.NoError(t, err)\n\t\t\trequire.Len(t, rs.Retrievals, 1)\n\t\t\tr = rs.Retrievals[0]\n\t\t\trequire.NotEqual(t, userspb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_FAILED, r.Status)\n\t\t\treturn r.Status == userspb.ArchiveRetrievalStatus_ARCHIVE_RETRIEVAL_STATUS_SUCCESS\n\t\t}, 2*time.Minute, 2*time.Second)\n\t\t// Check if what we got from Filecoin is the same file that\n\t\t// account-1 saved in the archived bucket.\n\t\tlr, err := client.List(ctxAccount2)\n\t\trequire.NoError(t, err)\n\t\trequire.Len(t, lr.Roots, 1)\n\t\trequire.Equal(t, \"super-bucket\", lr.Roots[0].Name)\n\t\tbuf := bytes.NewBuffer(nil)\n\t\terr = client.PullPath(ctxAccount2, lr.Roots[0].Key, \"Data1.txt\", buf)\n\t\trequire.NoError(t, err)\n\t\tf, err := os.Open(\"testdata/Data1.txt\")\n\t\trequire.NoError(t, err)\n\t\tt.Cleanup(func() { f.Close() })\n\t\toriginalFile, err := ioutil.ReadAll(f)\n\t\trequire.NoError(t, err)\n\t\trequire.True(t, bytes.Equal(originalFile, buf.Bytes()))\n\n\t\t// Assert there're messages in the retrieval log.\n\t\tctxAccount2, cancel := context.WithCancel(ctxAccount2)\n\t\tdefer cancel()\n\t\tch := make(chan string, 100)\n\t\tgo func() {\n\t\t\terr = usersClient.ArchiveRetrievalLogs(ctxAccount2, r.Id, ch)\n\t\t\tclose(ch)\n\t\t}()\n\t\tcount := 0\n\t\tfor s := range ch {\n\t\t\trequire.NotEmpty(t, s)\n\t\t\tcount++\n\t\t\tif count > 4 {\n\t\t\t\tcancel()\n\t\t\t}\n\t\t}\n\t\trequire.NoError(t, err)\n\t\trequire.Greater(t, count, 3)\n\t})\n}\n\nfunc TestArchiveWatch(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, _ = StartPowergate(t)\n\t\tctx, _, _, _, client, _, shutdown := setup(t)\n\t\tdefer shutdown()\n\n\t\tb, err := client.Create(ctx)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second)\n\t\taddDataFileToBucket(ctx, t, client, b.Root.Key, \"Data1.txt\")\n\n\t\terr = client.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\n\t\tctx, cancel := context.WithCancel(ctx)\n\t\tdefer cancel()\n\t\tch := make(chan string, 100)\n\t\tgo func() {\n\t\t\terr = client.ArchiveWatch(ctx, b.Root.Key, ch)\n\t\t\tclose(ch)\n\t\t}()\n\t\tcount := 0\n\t\tfor s := range ch {\n\t\t\trequire.NotEmpty(t, s)\n\t\t\tcount++\n\t\t\tif count > 4 {\n\t\t\t\tcancel()\n\t\t\t}\n\t\t}\n\t\trequire.NoError(t, err)\n\t\trequire.Greater(t, count, 3)\n\t})\n}\n\nfunc TestFailingArchive(t *testing.T) {\n\tutil.RunFlaky(t, func(t *util.FlakyT) {\n\t\t_, _ = StartPowergate(t)\n\t\tctx, _, _, _, client, _, shutdown := setup(t)\n\t\tdefer shutdown()\n\n\t\tb, err := client.Create(ctx)\n\t\trequire.NoError(t, err)\n\t\ttime.Sleep(4 * time.Second)\n\t\t// Store a file that is bigger than the sector size, this\n\t\t// should lead to an error on the PG side.\n\t\taddDataFileToBucket(ctx, t, client, b.Root.Key, \"Data3.txt\")\n\n\t\terr = client.Archive(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\n\t\trequire.Eventually(t, archiveFinalState(ctx, t, client, b.Root.Key), time.Minute, 2*time.Second)\n\t\tres, err := client.Archives(ctx, b.Root.Key)\n\t\trequire.NoError(t, err)\n\t\trequire.Equal(t, pb.ArchiveStatus_ARCHIVE_STATUS_FAILED, res.Current.ArchiveStatus)\n\t\trequire.NotEmpty(t, res.Current.FailureMsg)\n\t})\n}\n\nfunc archiveFinalState(ctx context.Context, t util.TestingTWithCleanup, client *c.Client, bucketKey string) func() bool {\n\treturn func() bool {\n\t\tres, err := client.Archives(ctx, bucketKey)\n\t\trequire.NoError(t, err)\n\n\t\tif res.Current == nil {\n\t\t\treturn false\n\t\t}\n\n\t\tswitch res.Current.ArchiveStatus {\n\t\tcase pb.ArchiveStatus_ARCHIVE_STATUS_FAILED,\n\t\t\tpb.ArchiveStatus_ARCHIVE_STATUS_SUCCESS,\n\t\t\tpb.ArchiveStatus_ARCHIVE_STATUS_CANCELED:\n\t\t\treturn true\n\t\tcase pb.ArchiveStatus_ARCHIVE_STATUS_QUEUED:\n\t\tcase pb.ArchiveStatus_ARCHIVE_STATUS_EXECUTING:\n\t\tcase pb.ArchiveStatus_ARCHIVE_STATUS_UNSPECIFIED:\n\t\tdefault:\n\t\t\tt.Errorf(\"unknown archive status %v\", pb.ArchiveStatus_name[int32(res.Current.ArchiveStatus)])\n\t\t\tt.FailNow()\n\t\t}\n\n\t\treturn false\n\t}\n}\n\n// addDataFileToBucket add a file from the testdata folder, and returns the\n// new stringified root Cid of the bucket.\nfunc addDataFileToBucket(ctx context.Context, t util.TestingTWithCleanup, client *c.Client, bucketKey string, fileName string) string {\n\tq, err := client.PushPaths(ctx, bucketKey)\n\trequire.NoError(t, err)\n\terr = q.AddFile(fileName, \"testdata/\"+fileName)\n\trequire.NoError(t, err)\n\tfor q.Next() {\n\t\trequire.NoError(t, q.Err())\n\t\tassert.NotEmpty(t, q.Current.Path)\n\t\tassert.NotEmpty(t, q.Current.Root)\n\t}\n\tq.Close()\n\treturn strings.SplitN(q.Current.Root.String(), \"/\", 4)[2]\n}\n\nfunc setup(t util.TestingTWithCleanup) (context.Context, core.Config, *hc.Client, *uc.Client, *c.Client, string, func()) {\n\thubClient, usersClient, threadsclient, buckClient, conf, repo, shutdown := createInfra(t)\n\tctx := createAccount(t, hubClient, threadsclient, conf)\n\n\treturn ctx, conf, hubClient, usersClient, buckClient, repo, shutdown\n}\n\nfunc createInfra(t util.TestingTWithCleanup) (*hc.Client, *uc.Client, *tc.Client, *c.Client, core.Config, string, func()) {\n\tconf := apitest.DefaultTextileConfig(t)\n\tconf.AddrPowergateAPI = powAddr\n\tconf.ArchiveJobPollIntervalFast = time.Second * 5\n\tconf.ArchiveJobPollIntervalSlow = time.Second * 10\n\tconf.MinBucketArchiveSize = 0\n\tconf.MaxBucketArchiveSize = 500 * 1024 * 1024\n\trepo := t.TempDir()\n\tshutdown := apitest.MakeTextileWithConfig(t, conf, apitest.WithRepoPath(repo), apitest.WithoutAutoShutdown())\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\tclient, err := c.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tt.Cleanup(func() {\n\t\terr := client.Close()\n\t\trequire.NoError(t, err)\n\t})\n\thubclient, err := hc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tusersclient, err := uc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\tthreadsclient, err := tc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\n\treturn hubclient, usersclient, threadsclient, client, conf, repo, shutdown\n\n}\n\nfunc createAccount(t util.TestingTWithCleanup, hubclient *hc.Client, threadsclient *tc.Client, conf core.Config) context.Context {\n\tuser := apitest.Signup(t, hubclient, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tid := thread.NewIDV1(thread.Raw, 32)\n\tctx = common.NewThreadNameContext(ctx, \"buckets\")\n\terr := threadsclient.NewDB(ctx, id)\n\trequire.NoError(t, err)\n\n\treturn common.NewThreadIDContext(ctx, id)\n}\n\nfunc reSetup(t util.TestingTWithCleanup, conf core.Config, repo string) *c.Client {\n\tapitest.MakeTextileWithConfig(t, conf, apitest.WithRepoPath(repo))\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.Nil(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\tclient, err := c.NewClient(target, opts...)\n\trequire.Nil(t, err)\n\n\tt.Cleanup(func() {\n\t\terr := client.Close()\n\t\trequire.Nil(t, err)\n\t})\n\n\treturn client\n}\n"
  },
  {
    "path": "integrationtest/pg/pow_client_test.go",
    "content": "package pg\n\nimport (\n\t\"context\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/require\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\tfc \"github.com/textileio/textile/v2/api/filecoin/client\"\n\thc \"github.com/textileio/textile/v2/api/hubd/client\"\n\t\"github.com/textileio/textile/v2/core\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc\"\n)\n\nfunc TestPowClient(t *testing.T) {\n\t_, _ = StartPowergate(t)\n\tctx, _, client := setupPowClient(t)\n\n\tt.Run(\"Addresses\", func(t *testing.T) {\n\t\tres, err := client.Addresses(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.NotNil(t, res)\n\t})\n\n\tt.Run(\"Balance\", func(t *testing.T) {\n\t\tres0, err := client.Addresses(ctx)\n\t\trequire.NoError(t, err)\n\t\trequire.NotNil(t, res0)\n\t\trequire.GreaterOrEqual(t, len(res0.Addresses), 1)\n\n\t\tres1, err := client.Balance(ctx, res0.Addresses[0].Address)\n\t\trequire.NoError(t, err)\n\t\trequire.NotNil(t, res1)\n\t})\n\n\tt.Run(\"StorageDealRecords\", func(t *testing.T) {\n\t\tres, err := client.StorageDealRecords(ctx, &userPb.DealRecordsConfig{IncludeFinal: true})\n\t\trequire.NoError(t, err)\n\t\trequire.NotNil(t, res)\n\t})\n\n\tt.Run(\"RetrievalDealRecords\", func(t *testing.T) {\n\t\tres, err := client.RetrievalDealRecords(ctx, nil)\n\t\trequire.NoError(t, err)\n\t\trequire.NotNil(t, res)\n\t})\n}\n\nfunc setupPowClient(t util.TestingTWithCleanup) (context.Context, core.Config, *fc.Client) {\n\tconf := apitest.DefaultTextileConfig(t)\n\tconf.AddrPowergateAPI = powAddr\n\tapitest.MakeTextileWithConfig(t, conf)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\topts := []grpc.DialOption{grpc.WithInsecure(), grpc.WithPerRPCCredentials(common.Credentials{})}\n\tclient, err := fc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\thubclient, err := hc.NewClient(target, opts...)\n\trequire.NoError(t, err)\n\n\tuser := apitest.Signup(t, hubclient, conf, apitest.NewUsername(), apitest.NewEmail())\n\tctx := common.NewSessionContext(context.Background(), user.Session)\n\tt.Cleanup(func() {\n\t\terr := client.Close()\n\t\trequire.NoError(t, err)\n\t})\n\n\treturn ctx, conf, client\n}\n"
  },
  {
    "path": "integrationtest/pg/powcli/Makefile",
    "content": "up: \n\tdocker-compose -f docker-compose-pow.yml down -v --remove-orphans\n\trm -rf ~/.textile\n\trm -rf .textile\n\tdocker-compose -f docker-compose-pow.yml up --build -V\n"
  },
  {
    "path": "integrationtest/pg/powcli/docker-compose-pow.yml",
    "content": "version: \"3.7\"\n\nservices:\n  textile:\n    build:\n      context: ../../../\n      dockerfile: ./cmd/hubd/Dockerfile.dev\n    volumes:\n      - \"${REPO_PATH}/textile:/data/textile\"\n    environment:\n      - HUB_LOG_DEBUG=true\n      - HUB_ADDR_API=/ip4/0.0.0.0/tcp/3006\n      - HUB_ADDR_API_PROXY=/ip4/0.0.0.0/tcp/3007\n      - HUB_ADDR_MONGO_URI=mongodb://mongo:27017\n      - HUB_ADDR_MONGO_NAME=textile\n      - HUB_ADDR_THREADS_HOST=/ip4/0.0.0.0/tcp/4006\n      - HUB_ADDR_THREADS_MONGO_URI=mongodb://mongo:27017\n      - HUB_ADDR_THREADS_MONGO_NAME=textile_threads\n      - HUB_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8006\n      - HUB_ADDR_GATEWAY_URL\n      - HUB_ADDR_IPFS_API=/dns4/ipfsbuckets/tcp/5001\n      - HUB_ADDR_BILLING_API=\n      - HUB_ADDR_POWERGATE_API=powergate:5002\n      - HUB_GATEWAY_SUBDOMAINS\n      - HUB_BUCKETS_MAX_SIZE\n      - HUB_THREADS_MAX_NUMBER_PER_OWNER\n      - HUB_CUSTOMERIO_API_KEY\n      - HUB_EMAIL_SESSION_SECRET=hubsession\n      - HUB_SEGMENT_API_KEY\n      - HUB_SEGMENT_PREFIX\n      - HUB_ARCHIVES_JOB_POLL_INTERVAL_SLOW=5s\n      - HUB_ARCHIVES_JOB_POLL_INTERVAL_FAST=5s\n    ports:\n      - \"127.0.0.1:3006:3006\"\n      - \"127.0.0.1:3007:3007\"\n      - \"4006:4006\"\n      - \"127.0.0.1:8006:8006\"\n      - \"127.0.0.1:40000:40000\"\n    security_opt:\n      - \"seccomp:unconfined\"\n    cap_add:\n      - SYS_PTRACE\n    depends_on:\n      - ipfsbuckets\n      - mongo\n      - powergate\n      - billing\n\n  powergate:\n    image: textile/powergate:v2.0.0\n    depends_on:\n      - ipfs\n      - ipfsbuckets\n      - lotus\n    environment:\n      - POWD_DEVNET=true\n      - POWD_LOTUSHOST=/dns4/lotus/tcp/7777\n      - POWD_IPFSAPIADDR=/dns4/ipfs/tcp/5001\n    restart: unless-stopped\n\n  ipfs:\n    image: ipfs/go-ipfs:v0.8.0\n\n  ipfsbuckets:\n    image: ipfs/go-ipfs:v0.8.0\n    volumes:\n      - \"${REPO_PATH}/ipfs:/data/ipfs\"\n\n  mongo:\n    image: mongo:latest\n    command:\n      - /bin/bash\n      - -c\n      - |\n        /usr/bin/mongod --fork --logpath /var/log/mongod.log --bind_ip_all --replSet rs0\n        mongo --eval 'rs.initiate({_id: \"rs0\", version: 1, members: [{ _id: 0, host: \"mongo:27017\" }]})'\n        tail -f /var/log/mongod.log\n\n  lotus:\n    image: textile/lotus-devnet:v1.4.2\n    environment:\n      - TEXLOTUSDEVNET_SPEED=100\n      - TEXLOTUSDEVNET_IPFSADDR=/dns4/ipfs/tcp/5001\n      - TEXLOTUSDEVNET_BIGSECTORS=true\n      - TEXLOTUSDEVNET_ONLINEMODE=true\n    ports:\n      - 1234:7777\n    logging:\n      driver: none\n  billing:\n    build:\n      context: ../../../\n      dockerfile: ./api/billingd/Dockerfile.dev\n    environment:\n      - BILLING_LOG_DEBUG=true\n      - BILLING_ADDR_API=/ip4/0.0.0.0/tcp/10006\n      - BILLING_ADDR_MONGO_URI=mongodb://mongo:27017\n      - BILLING_ADDR_MONGO_NAME=textile_billing\n      - BILLING_ADDR_GATEWAY_HOST=/ip4/0.0.0.0/tcp/8010\n      - BILLING_ADDR_GATEWAY_URL\n      - BILLING_STRIPE_API_KEY\n      - BILLING_SEGMENT_API_KEY\n      - BILLING_SEGMENT_PREFIX\n    ports:\n      - \"127.0.0.1:10006:10006\"\n      - \"127.0.0.1:8010:8010\"\n      - \"127.0.0.1:40001:40000\"\n    security_opt:\n      - \"seccomp:unconfined\"\n    cap_add:\n      - SYS_PTRACE\n    depends_on:\n      - mongo\n\n"
  },
  {
    "path": "integrationtest/pg/powergate.go",
    "content": "package pg\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path\"\n\t\"runtime\"\n\t\"strconv\"\n\t\"time\"\n\n\thttpapi \"github.com/ipfs/go-ipfs-http-client\"\n\t\"github.com/stretchr/testify/require\"\n\tpc \"github.com/textileio/powergate/v2/api/client\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"google.golang.org/grpc\"\n)\n\nvar powAddr = \"127.0.0.1:5002\"\nvar ipfsAddr = \"/ip4/127.0.0.1/tcp/5022\"\n\nfunc StartPowergate(t util.TestingTWithCleanup) (*pc.Client, *httpapi.HttpApi) {\n\tos.Setenv(\"LOTUS_ONLINEMODE\", strconv.FormatBool(false))\n\t_, currentFilePath, _, _ := runtime.Caller(0)\n\tdirpath := path.Dir(currentFilePath)\n\n\tmakeDown := func() {\n\t\tcmd := exec.Command(\n\t\t\t\"docker-compose\",\n\t\t\t\"-f\",\n\t\t\tfmt.Sprintf(\"%s/docker-compose.yml\", dirpath),\n\t\t\t\"down\",\n\t\t\t\"-v\",\n\t\t\t\"--remove-orphans\",\n\t\t)\n\t\tcmd.Stdout = os.Stdout\n\t\tcmd.Stderr = os.Stderr\n\t\tif err := cmd.Run(); err != nil {\n\t\t\tt.Errorf(\"docker-compose down: %s\", err)\n\t\t\tt.FailNow()\n\t\t}\n\t}\n\tmakeDown()\n\n\tcmd := exec.Command(\n\t\t\"docker-compose\",\n\t\t\"-f\",\n\t\tfmt.Sprintf(\"%s/docker-compose.yml\", dirpath),\n\t\t\"build\",\n\t)\n\tcmd.Stdout = os.Stdout\n\tcmd.Stderr = os.Stderr\n\tif err := cmd.Run(); err != nil {\n\t\tt.Errorf(\"docker-compose build: %s\", err)\n\t\tt.FailNow()\n\t}\n\n\tcmd = exec.Command(\n\t\t\"docker-compose\",\n\t\t\"-f\",\n\t\tfmt.Sprintf(\"%s/docker-compose.yml\", dirpath),\n\t\t\"up\",\n\t\t\"-V\",\n\t)\n\n\t//cmd.Stdout = os.Stdout\n\t//cmd.Stderr = os.Stderr\n\tif err := cmd.Start(); err != nil {\n\t\tt.Errorf(\"running docker-compose: %s\", err)\n\t\tt.FailNow()\n\t}\n\tt.Cleanup(makeDown)\n\n\tvar powc *pc.Client\n\tvar err error\n\tlimit := 100\n\tretries := 0\n\trequire.Nil(t, err)\n\tfor retries < limit {\n\t\tpowc, err = pc.NewClient(powAddr, grpc.WithInsecure())\n\t\trequire.NoError(t, err)\n\t\tctx, cancel := context.WithTimeout(context.Background(), time.Second*3)\n\t\t_, err = powc.BuildInfo(ctx)\n\t\tif err == nil {\n\t\t\tcancel()\n\t\t\tbreak\n\t\t}\n\t\ttime.Sleep(time.Second)\n\t\tretries++\n\t\tcancel()\n\t}\n\tif retries == limit {\n\t\tif err != nil {\n\t\t\tt.Errorf(\"trying to confirm build info: %s\", err)\n\t\t\tt.FailNow()\n\t\t}\n\t\tt.Errorf(\"max retries to connect with Powergate\")\n\t\tt.FailNow()\n\t}\n\n\tia := util.MustParseAddr(ipfsAddr)\n\tipfs, err := httpapi.NewApi(ia)\n\trequire.NoError(t, err)\n\n\treturn powc, ipfs\n}\n"
  },
  {
    "path": "integrationtest/pg/testdata/Data1.txt",
    "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vulputate quam eget rhoncus sagittis. Suspendisse in tempor arcu, id tempor ante. Cras arcu ipsum, suscipit id elementum ut, sagittis vel ante. Donec non tellus ac urna vestibulum pellentesque et vel urna. Nulla imperdiet sit amet risus nec maximus. Donec a tortor sollicitudin, efficitur ipsum vel, auctor metus. Suspendisse tellus turpis, porttitor vel vehicula ut, iaculis non quam. Suspendisse suscipit vel arcu ut congue. Nullam vel purus sed est accumsan suscipit.\n"
  },
  {
    "path": "integrationtest/pg/testdata/Data2.txt",
    "content": "Etiam sodales auctor quam sed varius. Sed lobortis nibh nulla, venenatis lobortis neque sollicitudin pellentesque. Ut nec porta ligula. Ut hendrerit nec urna quis molestie. Pellentesque sed interdum arcu. Donec rhoncus venenatis neque, id suscipit velit gravida porttitor. Sed molestie, nisi quis porta maximus, urna risus facilisis nibh, id congue magna odio a nibh. Sed eu quam eu ipsum convallis faucibus vitae et est. Donec viverra, erat at facilisis vehicula, felis diam iaculis lacus, vel ultricies felis augue a orci. Donec ac ex ut urna mattis auctor vel non tellus. Morbi ultricies ipsum sagittis auctor tempus. Proin tortor nulla, sagittis sed augue vel, tempus semper mi. Cras id mollis nulla. Donec finibus diam quis condimentum ultrices. Aenean facilisis purus eget sem imperdiet nullam.\n"
  },
  {
    "path": "integrationtest/pg/testdata/Data3.txt",
    "content": "Quisque mattis massa sed ante vehicula euismod. Mauris lectus tortor, rhoncus at ipsum sed, faucibus semper mi. Nam eu interdum turpis, id gravida libero. Aliquam pellentesque odio a condimentum auctor. Quisque sit amet pellentesque risus, vestibulum eleifend elit. Cras in facilisis odio. Donec efficitur at velit eu pellentesque. Nunc sodales diam eget ipsum pretium pretium. Phasellus iaculis neque nulla, non vehicula dolor cursus non. Phasellus mollis sem quam, non euismod enim volutpat eget. Fusce a lobortis felis.\n\nEtiam vel felis ipsum. Pellentesque ullamcorper arcu gravida turpis pellentesque, at ornare mauris ultrices. Sed sed nisl sed odio pellentesque tincidunt. Integer lobortis eros nisl, vitae interdum felis tristique eget. Proin facilisis eget nunc eget accumsan. Aliquam ut tincidunt nisl, ac tincidunt odio. Cras in ullamcorper risus, eget posuere sem. Morbi in nunc vitae augue tempus sagittis. Donec iaculis, augue ut lacinia faucibus, augue lacus hendrerit libero, ac porttitor ex justo sed enim. Aenean pellentesque, ex sagittis molestie vehicula, mauris urna hendrerit mi, nec venenatis dui ligula sit amet purus. Ut tellus ligula, dapibus a convallis non, elementum vel tortor. Nam eget tincidunt ante, nec faucibus nunc.\n\nProin sed placerat risus. Etiam quis porttitor elit, quis feugiat ante. Ut convallis ut est at ornare. Praesent interdum, lorem luctus euismod varius, turpis augue condimentum dolor, nec posuere elit eros vulputate nulla. Pellentesque habitant integer.\nQuisque mattis massa sed ante vehicula euismod. Mauris lectus tortor, rhoncus at ipsum sed, faucibus semper mi. Nam eu interdum turpis, id gravida libero. Aliquam pellentesque odio a condimentum auctor. Quisque sit amet pellentesque risus, vestibulum eleifend elit. Cras in facilisis odio. Donec efficitur at velit eu pellentesque. Nunc sodales diam eget ipsum pretium pretium. Phasellus iaculis neque nulla, non vehicula dolor cursus non. Phasellus mollis sem quam, non euismod enim volutpat eget. Fusce a lobortis felis.\n\nEtiam vel felis ipsum. Pellentesque ullamcorper arcu gravida turpis pellentesque, at ornare mauris ultrices. Sed sed nisl sed odio pellentesque tincidunt. Integer lobortis eros nisl, vitae interdum felis tristique eget. Proin facilisis eget nunc eget accumsan. Aliquam ut tincidunt nisl, ac tincidunt odio. Cras in ullamcorper risus, eget posuere sem. Morbi in nunc vitae augue tempus sagittis. Donec iaculis, augue ut lacinia faucibus, augue lacus hendrerit libero, ac porttitor ex justo sed enim. Aenean pellentesque, ex sagittis molestie vehicula, mauris urna hendrerit mi, nec venenatis dui ligula sit amet purus. Ut tellus ligula, dapibus a convallis non, elementum vel tortor. Nam eget tincidunt ante, nec faucibus nunc.\n\nProin sed placerat risus. Etiam quis porttitor elit, quis feugiat ante. Ut convallis ut est at ornare. Praesent interdum, lorem luctus euismod varius, turpis augue condimentum dolor, nec posuere elit eros vulputate nulla. Pellentesque habitant integer.\nQuisque mattis massa sed ante vehicula euismod. Mauris lectus tortor, rhoncus at ipsum sed, faucibus semper mi. Nam eu interdum turpis, id gravida libero. Aliquam pellentesque odio a condimentum auctor. Quisque sit amet pellentesque risus, vestibulum eleifend elit. Cras in facilisis odio. Donec efficitur at velit eu pellentesque. Nunc sodales diam eget ipsum pretium pretium. Phasellus iaculis neque nulla, non vehicula dolor cursus non. Phasellus mollis sem quam, non euismod enim volutpat eget. Fusce a lobortis felis.\n\nEtiam vel felis ipsum. Pellentesque ullamcorper arcu gravida turpis pellentesque, at ornare mauris ultrices. Sed sed nisl sed odio pellentesque tincidunt. Integer lobortis eros nisl, vitae interdum felis tristique eget. Proin facilisis eget nunc eget accumsan. Aliquam ut tincidunt nisl, ac tincidunt odio. Cras in ullamcorper risus, eget posuere sem. Morbi in nunc vitae augue tempus sagittis. Donec iaculis, augue ut lacinia faucibus, augue lacus hendrerit libero, ac porttitor ex justo sed enim. Aenean pellentesque, ex sagittis molestie vehicula, mauris urna hendrerit mi, nec venenatis dui ligula sit amet purus. Ut tellus ligula, dapibus a convallis non, elementum vel tortor. Nam eget tincidunt ante, nec faucibus nunc.\n\nProin sed placerat risus. Etiam quis porttitor elit, quis feugiat ante. Ut convallis ut est at ornare. Praesent interdum, lorem luctus euismod varius, turpis augue condimentum dolor, nec posuere elit eros vulputate nulla. Pellentesque habitant integer.\n"
  },
  {
    "path": "ipns/ipns.go",
    "content": "package ipns\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"sync\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tiface \"github.com/ipfs/interface-go-ipfs-core\"\n\t\"github.com/ipfs/interface-go-ipfs-core/options\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/libp2p/go-libp2p-core/peer\"\n\tmbase \"github.com/multiformats/go-multibase\"\n\tcron \"github.com/robfig/cron/v3\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"golang.org/x/sync/errgroup\"\n)\n\nvar log = logging.Logger(\"ipns\")\n\nconst (\n\t// nameLen is the length of the random IPNS key name.\n\tnameLen = 16\n\t// publishTimeout\n\tpublishTimeout = time.Minute * 2\n\t// maxCancelPublishTries is the number of time cancelling a publish is allowed to fail.\n\tmaxCancelPublishTries = 10\n\t// list all keys timeout\n\tlistKeysTimeout = time.Hour\n)\n\n// Manager handles bucket name publishing to IPNS.\ntype Manager struct {\n\tkeys    *mdb.IPNSKeys\n\tkeyAPI  iface.KeyAPI\n\tnameAPI iface.NameAPI\n\n\tsync.Mutex\n\tkeyLocks             map[string]chan struct{}\n\tctxsLock             sync.Mutex\n\tctxs                 map[string]context.CancelFunc\n\trepublisher          *cron.Cron\n\trepublishConcurrency int\n}\n\n// NewManager returns a new IPNS manager.\nfunc NewManager(\n\tkeys *mdb.IPNSKeys,\n\tkeyAPI iface.KeyAPI,\n\tnameAPI iface.NameAPI,\n\trepublishConcurrency int,\n\tdebug bool,\n) (*Manager, error) {\n\tif debug {\n\t\tif err := tutil.SetLogLevels(map[string]logging.LogLevel{\n\t\t\t\"ipns\": logging.LevelDebug,\n\t\t}); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &Manager{\n\t\tkeys:                 keys,\n\t\tkeyAPI:               keyAPI,\n\t\tnameAPI:              nameAPI,\n\t\tctxs:                 make(map[string]context.CancelFunc),\n\t\tkeyLocks:             make(map[string]chan struct{}),\n\t\trepublisher:          cron.New(),\n\t\trepublishConcurrency: republishConcurrency,\n\t}, nil\n}\n\n// StartRepublishing initializes a key republishing cron\nfunc (m *Manager) StartRepublishing(schedule string) error {\n\tif _, err := m.republisher.AddFunc(schedule, func() {\n\t\tif err := m.republish(); err != nil {\n\t\t\tlog.Errorf(\"republishing ipns keys: %v\", err)\n\t\t}\n\t}); err != nil {\n\t\tlog.Errorf(\"republishing aborted: %v\", err)\n\t\treturn err\n\t}\n\tm.republisher.Start()\n\treturn nil\n}\n\n// CreateKey generates and saves a new IPNS key.\nfunc (m *Manager) CreateKey(ctx context.Context, dbID thread.ID, path path.Path) (keyID string, err error) {\n\tkey, err := m.keyAPI.Generate(ctx, util.MakeToken(nameLen), options.Key.Type(options.RSAKey))\n\tif err != nil {\n\t\treturn\n\t}\n\tkeyID, err = peer.ToCid(key.ID()).StringOfBase(mbase.Base32)\n\tif err != nil {\n\t\treturn\n\t}\n\tif err = m.keys.Create(ctx, key.Name(), keyID, dbID, path.String()); err != nil {\n\t\treturn\n\t}\n\treturn keyID, nil\n}\n\n// RemoveKey removes an IPNS key.\nfunc (m *Manager) RemoveKey(ctx context.Context, keyID string) error {\n\tkey, err := m.keys.GetByCid(ctx, keyID)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, err = m.keyAPI.Remove(ctx, key.Name); err != nil {\n\t\treturn err\n\t}\n\treturn m.keys.Delete(ctx, key.Name)\n}\n\n// Publish publishes a path to IPNS with key ID.\n// Publishing can take up to a minute. Pending publishes are cancelled by consecutive\n// calls with the same key ID, which results in only the most recent publish succeeding.\nfunc (m *Manager) Publish(pth path.Path, keyID string) {\n\tctx, cancel := context.WithTimeout(context.Background(), publishTimeout)\n\tdefer cancel()\n\tkey, err := m.keys.GetByCid(ctx, keyID)\n\tif err != nil {\n\t\tlog.Error(\"key not found: %s\", keyID)\n\t\treturn\n\t}\n\terr = m.keys.SetPath(ctx, pth.String(), key.Name)\n\tif err != nil {\n\t\tlog.Error(\"set path failed: %s\", keyID)\n\t\treturn\n\t}\n\tm.publish(pth, keyID)\n}\n\n// Close manager.\nfunc (m *Manager) Close() {\n\tctx := m.republisher.Stop()\n\t<-ctx.Done()\n\tlog.Info(\"republisher was shutdown\")\n\tm.cancel()\n\tlog.Info(\"all pending ipns publishes were cancelled\")\n}\n\n// cancel all pending publishes.\nfunc (m *Manager) cancel() {\n\tm.Lock()\n\tdefer m.Unlock()\n\tm.ctxsLock.Lock()\n\tdefer m.ctxsLock.Unlock()\n\tfor _, cancel := range m.ctxs {\n\t\tcancel()\n\t}\n}\n\nfunc (m *Manager) publish(pth path.Path, keyID string) {\n\tptl := m.getSemaphore(keyID)\n\ttry := 0\n\tfor {\n\t\tselect {\n\t\tcase ptl <- struct{}{}:\n\t\t\tpctx, cancel := context.WithTimeout(context.Background(), publishTimeout)\n\t\t\tm.ctxsLock.Lock()\n\t\t\tm.ctxs[keyID] = cancel\n\t\t\tm.ctxsLock.Unlock()\n\t\t\tif err := m.publishUnsafe(pctx, pth, keyID); err != nil {\n\t\t\t\tif !errors.Is(err, context.Canceled) {\n\t\t\t\t\t// The publish saturation did not meet the default level before the context expired.\n\t\t\t\t\t// In most cases, the entry can still be discovered on the network.\n\t\t\t\t\tlog.Debugf(\"error publishing path %s: %v\", pth, err)\n\t\t\t\t} else {\n\t\t\t\t\tlog.Debugf(\"publishing path %s was cancelled: %v\", pth, err)\n\t\t\t\t}\n\t\t\t}\n\t\t\tcancel()\n\t\t\tm.ctxsLock.Lock()\n\t\t\tdelete(m.ctxs, keyID)\n\t\t\tm.ctxsLock.Unlock()\n\t\t\t<-ptl\n\t\t\treturn\n\t\tdefault:\n\t\t\tm.ctxsLock.Lock()\n\t\t\tcancel, ok := m.ctxs[keyID]\n\t\t\tm.ctxsLock.Unlock()\n\t\t\tif ok {\n\t\t\t\tcancel()\n\t\t\t} else {\n\t\t\t\ttry++\n\t\t\t\tif try > maxCancelPublishTries {\n\t\t\t\t\tlog.Debugf(\"failed to publish path %s: max tries exceeded\", pth)\n\t\t\t\t\treturn\n\t\t\t\t} else {\n\t\t\t\t\tlog.Debugf(\"failed to cancel publish (%v tries remaining)\", maxCancelPublishTries-try)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\nfunc (m *Manager) publishUnsafe(ctx context.Context, pth path.Path, keyID string) error {\n\tkey, err := m.keys.GetByCid(ctx, keyID)\n\tif err != nil {\n\t\treturn err\n\t}\n\tentry, err := m.nameAPI.Publish(ctx, pth, options.Name.Key(key.Name))\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Debugf(\"published %s => %s\", entry.Value(), entry.Name())\n\treturn nil\n}\n\nfunc (m *Manager) getSemaphore(key string) chan struct{} {\n\tvar ptl chan struct{}\n\tvar ok bool\n\tm.Lock()\n\tdefer m.Unlock()\n\tif ptl, ok = m.keyLocks[key]; !ok {\n\t\tptl = make(chan struct{}, 1)\n\t\tm.keyLocks[key] = ptl\n\t}\n\treturn ptl\n}\n\nfunc (m *Manager) republish() error {\n\tctx, cancel := context.WithTimeout(context.Background(), listKeysTimeout)\n\tdefer cancel()\n\tstart := time.Now()\n\tkeys, err := m.keys.List(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\twithPath := 0\n\teg, gctx := errgroup.WithContext(context.Background())\n\tlim := make(chan struct{}, m.republishConcurrency)\n\tfor _, key := range keys {\n\t\tkey := key\n\t\tif key.Path != \"\" {\n\t\t\twithPath++\n\t\t\tlim <- struct{}{}\n\t\t\teg.Go(func() error {\n\t\t\t\tdefer func() { <-lim }()\n\t\t\t\tif gctx.Err() != nil {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\tm.publish(path.New(key.Path), key.Cid)\n\t\t\t\treturn nil\n\t\t\t})\n\t\t}\n\t}\n\tfor i := 0; i < cap(lim); i++ {\n\t\tlim <- struct{}{}\n\t}\n\tif err := eg.Wait(); err != nil {\n\t\treturn err\n\t}\n\n\tlog.Infof(\"republished %d/%d keys in %v\", withPath, len(keys), time.Since(start))\n\treturn nil\n}\n"
  },
  {
    "path": "mail/local/mail.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"encoding/base64\"\n\t\"errors\"\n\t\"os\"\n\t\"path/filepath\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/cmd\"\n)\n\nvar (\n\t// ErrNotAMailbox indicates the given path is not within a mailbox.\n\tErrNotAMailbox = errors.New(\"not a mailbox (or any of the parent directories): .textile\")\n\t// ErrMailboxExists is used during initialization to indicate the path already contains a mailbox.\n\tErrMailboxExists = errors.New(\"mailbox is already initialized\")\n\t// ErrIdentityRequired indicates the operation requires a thread Identity but none was given.\n\tErrIdentityRequired = errors.New(\"thread Identity is required\")\n\t// ErrAPIKeyRequired indicates the operation requires am API keybut none was given.\n\tErrAPIKeyRequired = errors.New(\"api key is required\")\n\n\tflags = map[string]cmd.Flag{\n\t\t\"identity\":   {Key: \"identity\", DefValue: \"\"},\n\t\t\"api_key\":    {Key: \"api_key\", DefValue: \"\"},\n\t\t\"api_secret\": {Key: \"api_secret\", DefValue: \"\"},\n\t}\n)\n\n// DefaultConfConfig returns the default ConfConfig.\nfunc DefaultConfConfig() cmd.ConfConfig {\n\treturn cmd.ConfConfig{\n\t\tDir:       \".textile\",\n\t\tName:      \"config\",\n\t\tType:      \"yaml\",\n\t\tEnvPrefix: \"MAIL\",\n\t}\n}\n\n// Mail is used to create new mailboxes based on the provided clients and config.\ntype Mail struct {\n\tconfig  cmd.ConfConfig\n\tclients *cmd.Clients\n}\n\n// NewMail creates Mail from clients and config.\nfunc NewMail(clients *cmd.Clients, config cmd.ConfConfig) *Mail {\n\treturn &Mail{clients: clients, config: config}\n}\n\n// Clients returns the underlying clients object.\nfunc (m *Mail) Clients() *cmd.Clients {\n\treturn m.clients\n}\n\n// Config contains details for a new local mailbox.\ntype Config struct {\n\t// Path is the path in which the new mailbox should be created (required).\n\tPath string\n\t// Identity is the thread.Identity of the mailbox owner (required).\n\t// It's value may be inflated from a --identity flag or {EnvPrefix}_IDENTITY env variable.\n\tIdentity thread.Identity\n\t// APIKey is hub API key (required).\n\t// It's value may be inflated from a --api-key flag or {EnvPrefix}_API_KEY env variable.\n\tAPIKey string\n\t// APISecret is hub API key secret (optional).\n\t// It's value may be inflated from a --api-secret flag or {EnvPrefix}_API_SECRET env variable.\n\tAPISecret string\n}\n\n// NewConfigFromCmd returns a config by inflating values from the given cobra command and path.\n// First, flags for \"identity\", \"api_key\", and \"api_secret\" are used if they exist.\n// If still unset, the env vars {EnvPrefix}_IDENTITY, {EnvPrefix}_API_KEY, and {EnvPrefix}_API_SECRET are used.\nfunc (m *Mail) NewConfigFromCmd(c *cobra.Command, pth string) (conf Config, err error) {\n\tconf.Path = pth\n\tid := cmd.GetFlagOrEnvValue(c, \"identity\", m.config.EnvPrefix)\n\tif id == \"\" {\n\t\treturn conf, ErrIdentityRequired\n\t}\n\tidb, err := base64.StdEncoding.DecodeString(id)\n\tif err != nil {\n\t\treturn\n\t}\n\tconf.Identity = &thread.Libp2pIdentity{}\n\tif err = conf.Identity.UnmarshalBinary(idb); err != nil {\n\t\treturn\n\t}\n\tconf.APIKey = cmd.GetFlagOrEnvValue(c, \"api_key\", m.config.EnvPrefix)\n\tif conf.APIKey == \"\" {\n\t\treturn conf, ErrAPIKeyRequired\n\t}\n\tconf.APISecret = cmd.GetFlagOrEnvValue(c, \"api_secret\", m.config.EnvPrefix)\n\treturn conf, nil\n}\n\n// NewMailbox initializes a new mailbox from the config.\nfunc (m *Mail) NewMailbox(ctx context.Context, conf Config) (box *Mailbox, err error) {\n\t// Ensure we're not going to overwrite an existing local config\n\tcwd, err := filepath.Abs(conf.Path)\n\tif err != nil {\n\t\treturn\n\t}\n\tmc, found, err := m.config.NewConfig(cwd, flags, true)\n\tif err != nil {\n\t\treturn\n\t}\n\tif found {\n\t\treturn nil, ErrMailboxExists\n\t}\n\n\t// Check config values\n\tif conf.Identity == nil {\n\t\treturn nil, ErrIdentityRequired\n\t}\n\tidb, err := conf.Identity.MarshalBinary()\n\tif err != nil {\n\t\treturn\n\t}\n\tmc.Viper.Set(\"identity\", base64.StdEncoding.EncodeToString(idb))\n\tmc.Viper.Set(\"api_key\", conf.APIKey)\n\tif conf.APIKey == \"\" {\n\t\treturn nil, ErrAPIKeyRequired\n\t}\n\tmc.Viper.Set(\"api_secret\", conf.APISecret)\n\n\tbox = &Mailbox{\n\t\tcwd:     cwd,\n\t\tconf:    mc,\n\t\tclients: m.clients,\n\t\tid:      conf.Identity,\n\t}\n\tctx, err = box.context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\tif _, err = m.clients.Users.SetupMailbox(ctx); err != nil {\n\t\treturn\n\t}\n\n\t// Write the local config to disk\n\tdir := filepath.Join(cwd, box.conf.Dir)\n\tif err = os.MkdirAll(dir, os.ModePerm); err != nil {\n\t\treturn\n\t}\n\tconfig := filepath.Join(dir, box.conf.Name+\".yml\")\n\tif err = box.conf.Viper.WriteConfigAs(config); err != nil {\n\t\treturn\n\t}\n\tcfile, err := filepath.Abs(config)\n\tif err != nil {\n\t\treturn\n\t}\n\tbox.conf.Viper.SetConfigFile(cfile)\n\n\treturn box, nil\n}\n\n// GetLocalMailbox loads and returns the mailbox at path if it exists.\nfunc (m *Mail) GetLocalMailbox(_ context.Context, pth string) (*Mailbox, error) {\n\tcwd, err := filepath.Abs(pth)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tmc, found, err := m.config.NewConfig(cwd, flags, true)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !found {\n\t\treturn nil, ErrNotAMailbox\n\t}\n\tcmd.ExpandConfigVars(mc.Viper, mc.Flags)\n\tbox := &Mailbox{\n\t\tcwd:     cwd,\n\t\tconf:    mc,\n\t\tclients: m.clients,\n\t}\n\tif err = box.loadIdentity(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn box, nil\n}\n"
  },
  {
    "path": "mail/local/mail_test.go",
    "content": "package local_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"encoding/base64\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"testing\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\ttutil \"github.com/textileio/go-threads/util\"\n\t\"github.com/textileio/textile/v2/api/apitest\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\thubpb \"github.com/textileio/textile/v2/api/hubd/pb\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t. \"github.com/textileio/textile/v2/mail/local\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = apitest.StartServices()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc TestMail_NewMailbox(t *testing.T) {\n\tmail, key, secret := setup(t)\n\n\tt.Run(\"new mailbox\", func(t *testing.T) {\n\t\tconf := getConf(t, key, secret)\n\t\tbox, err := mail.NewMailbox(context.Background(), conf)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, box)\n\n\t\treloaded, err := mail.GetLocalMailbox(context.Background(), conf.Path)\n\t\trequire.NoError(t, err)\n\t\tassert.NotEmpty(t, reloaded)\n\t})\n}\n\nfunc TestBuckets_NewConfigFromCmd(t *testing.T) {\n\tmail, key, secret := setup(t)\n\tid := createIdentity(t)\n\n\tt.Run(\"no identity\", func(t *testing.T) {\n\t\tdir := newDir(t)\n\t\tc := &cobra.Command{\n\t\t\tUse: \"init\",\n\t\t\tRun: func(c *cobra.Command, args []string) {\n\t\t\t\t_, err := mail.NewConfigFromCmd(c, dir)\n\t\t\t\trequire.Error(t, err)\n\t\t\t\tassert.Equal(t, ErrIdentityRequired, err)\n\t\t\t},\n\t\t}\n\t\terr := c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"no api key\", func(t *testing.T) {\n\t\tdir := newDir(t)\n\t\tc := &cobra.Command{\n\t\t\tUse: \"init\",\n\t\t\tRun: func(c *cobra.Command, args []string) {\n\t\t\t\t_, err := mail.NewConfigFromCmd(c, dir)\n\t\t\t\trequire.Error(t, err)\n\t\t\t\tassert.Equal(t, ErrAPIKeyRequired, err)\n\t\t\t},\n\t\t}\n\t\tc.PersistentFlags().String(\"identity\", \"\", \"\")\n\t\tidb, err := id.MarshalBinary()\n\t\trequire.NoError(t, err)\n\t\tids := base64.StdEncoding.EncodeToString(idb)\n\t\terr = c.PersistentFlags().Set(\"identity\", ids)\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with flags and set values\", func(t *testing.T) {\n\t\tc := initCmd(t, mail, id, key, secret, true, false)\n\t\tidb, err := id.MarshalBinary()\n\t\trequire.NoError(t, err)\n\t\tids := base64.StdEncoding.EncodeToString(idb)\n\t\terr = c.PersistentFlags().Set(\"identity\", ids)\n\t\trequire.NoError(t, err)\n\t\terr = c.PersistentFlags().Set(\"api_key\", key)\n\t\trequire.NoError(t, err)\n\t\terr = c.PersistentFlags().Set(\"api_secret\", secret)\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"no flags and env values\", func(t *testing.T) {\n\t\tc := initCmd(t, mail, id, key, secret, false, false)\n\t\tidb, err := id.MarshalBinary()\n\t\trequire.NoError(t, err)\n\t\tids := base64.StdEncoding.EncodeToString(idb)\n\t\terr = os.Setenv(\"MAIL_IDENTITY\", ids)\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"MAIL_API_KEY\", key)\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"MAIL_API_SECRET\", secret)\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n\n\tt.Run(\"with flags and env values\", func(t *testing.T) {\n\t\tc := initCmd(t, mail, id, key, secret, true, false)\n\t\tidb, err := id.MarshalBinary()\n\t\trequire.NoError(t, err)\n\t\tids := base64.StdEncoding.EncodeToString(idb)\n\t\terr = os.Setenv(\"MAIL_IDENTITY\", ids)\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"MAIL_API_KEY\", key)\n\t\trequire.NoError(t, err)\n\t\terr = os.Setenv(\"MAIL_API_SECRET\", secret)\n\t\trequire.NoError(t, err)\n\t\terr = c.Execute()\n\t\trequire.NoError(t, err)\n\t})\n}\n\nfunc initCmd(\n\tt *testing.T,\n\tmail *Mail,\n\tid thread.Identity,\n\tkey, secret string,\n\taddFlags,\n\tsetDefaults bool,\n) *cobra.Command {\n\tdir := newDir(t)\n\tc := &cobra.Command{\n\t\tUse: \"init\",\n\t\tRun: func(c *cobra.Command, args []string) {\n\t\t\tconf, err := mail.NewConfigFromCmd(c, dir)\n\t\t\trequire.NoError(t, err)\n\t\t\tassert.Equal(t, dir, conf.Path)\n\t\t\tassert.Equal(t, id.GetPublic().String(), conf.Identity.GetPublic().String())\n\t\t\tassert.Equal(t, key, conf.APIKey)\n\t\t\tassert.Equal(t, secret, conf.APISecret)\n\t\t},\n\t}\n\tvar did, dkey, dsecret string\n\tif setDefaults {\n\t\tidb, err := id.MarshalBinary()\n\t\trequire.NoError(t, err)\n\t\tdid = base64.StdEncoding.EncodeToString(idb)\n\t\tdkey = key\n\t\tdsecret = secret\n\t}\n\tif addFlags {\n\t\tc.PersistentFlags().String(\"identity\", did, \"\")\n\t\tc.PersistentFlags().String(\"api_key\", dkey, \"\")\n\t\tc.PersistentFlags().String(\"api_secret\", dsecret, \"\")\n\t}\n\treturn c\n}\n\nfunc setup(t *testing.T) (m *Mail, key string, secret string) {\n\tconf := apitest.MakeTextile(t)\n\ttarget, err := tutil.TCPAddrFromMultiAddr(conf.AddrAPI)\n\trequire.NoError(t, err)\n\tclients := cmd.NewClients(target, true, \"\")\n\tt.Cleanup(func() {\n\t\tclients.Close()\n\t})\n\n\tdev := apitest.Signup(t, clients.Hub, conf, apitest.NewUsername(), apitest.NewEmail())\n\tres, err := clients.Hub.CreateKey(\n\t\tcommon.NewSessionContext(context.Background(), dev.Session),\n\t\thubpb.KeyType_KEY_TYPE_USER,\n\t\ttrue,\n\t)\n\trequire.NoError(t, err)\n\treturn NewMail(clients, DefaultConfConfig()), res.KeyInfo.Key, res.KeyInfo.Secret\n}\n\nfunc getConf(t *testing.T, key, secret string) Config {\n\treturn Config{\n\t\tPath:      newDir(t),\n\t\tIdentity:  createIdentity(t),\n\t\tAPIKey:    key,\n\t\tAPISecret: secret,\n\t}\n}\n\nfunc createIdentity(t *testing.T) thread.Identity {\n\tsk, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\treturn thread.NewLibp2pIdentity(sk)\n}\n\nfunc newDir(t *testing.T) string {\n\tdir, err := ioutil.TempDir(\"\", \"\")\n\trequire.NoError(t, err)\n\tt.Cleanup(func() {\n\t\t_ = os.RemoveAll(dir)\n\t})\n\treturn dir\n}\n"
  },
  {
    "path": "mail/local/mailbox.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"encoding/base64\"\n\t\"fmt\"\n\t\"time\"\n\n\ttc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/db\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/api/usersd/client\"\n\t\"github.com/textileio/textile/v2/cmd\"\n\t\"github.com/textileio/textile/v2/mail\"\n)\n\n// Mailbox is a local-first messaging library built on ThreadDB and IPFS.\ntype Mailbox struct {\n\tcwd     string\n\tconf    *cmd.Config\n\tclients *cmd.Clients\n\tid      thread.Identity\n\ttoken   thread.Token\n}\n\n// Identity returns the mailbox's identity.\nfunc (m *Mailbox) Identity() thread.Identity {\n\treturn m.id\n}\n\n// SendMessage sends the message body to a recipient.\nfunc (m *Mailbox) SendMessage(ctx context.Context, to thread.PubKey, body []byte) (msg client.Message, err error) {\n\tctx, err = m.context(ctx)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn m.clients.Users.SendMessage(ctx, m.id, to, body)\n}\n\n// ListInboxMessages lists messages from the inbox.\n// Use options to paginate with seek and limit,\n// and filter by read status.\nfunc (m *Mailbox) ListInboxMessages(ctx context.Context, opts ...client.ListOption) ([]client.Message, error) {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn m.clients.Users.ListInboxMessages(ctx, opts...)\n}\n\n// ListSentboxMessages lists messages from the sentbox.\n// Use options to paginate with seek and limit.\nfunc (m *Mailbox) ListSentboxMessages(ctx context.Context, opts ...client.ListOption) ([]client.Message, error) {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn m.clients.Users.ListSentboxMessages(ctx, opts...)\n}\n\nconst reconnectInterval = time.Second * 5\n\n// MailboxEvent describes an event that occurred in a mailbox.\ntype MailboxEvent struct {\n\t// Type of event.\n\tType MailboxEventType\n\t// Message identifier.\n\tMessageID db.InstanceID\n\t// Message will contain the full message unless this is a delete event.\n\tMessage client.Message\n}\n\n// MailboxEventType is the type of mailbox event.\ntype MailboxEventType int\n\nconst (\n\t// NewMessage indicates the mailbox has a new message.\n\tNewMessage MailboxEventType = iota\n\t// MessageRead indicates a message was read in the mailbox.\n\tMessageRead\n\t// MessageDeleted indicates a message was deleted from the mailbox.\n\tMessageDeleted\n)\n\n// WatchInbox watches the inbox for new mailbox events.\n// If offline is true, this will keep watching during network interruptions.\n// Returns a channel of watch connectivity states.\n// Cancel context to stop watching.\nfunc (m *Mailbox) WatchInbox(ctx context.Context, mevents chan<- MailboxEvent, offline bool) (<-chan cmd.WatchState, error) {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbox, err := m.clients.Users.SetupMailbox(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !offline {\n\t\treturn m.listenWhileConnected(ctx, box, mail.InboxCollectionName, mevents)\n\t}\n\treturn cmd.Watch(ctx, func(ctx context.Context) (<-chan cmd.WatchState, error) {\n\t\treturn m.listenWhileConnected(ctx, box, mail.InboxCollectionName, mevents)\n\t}, reconnectInterval)\n}\n\n// WatchSentbox watches the sentbox for new mailbox events.\n// If offline is true, this will keep watching during network interruptions.\n// Returns a channel of watch connectivity states.\n// Cancel context to stop watching.\nfunc (m *Mailbox) WatchSentbox(ctx context.Context, mevents chan<- MailboxEvent, offline bool) (<-chan cmd.WatchState, error) {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tbox, err := m.clients.Users.SetupMailbox(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !offline {\n\t\treturn m.listenWhileConnected(ctx, box, mail.SentboxCollectionName, mevents)\n\t}\n\treturn cmd.Watch(ctx, func(ctx context.Context) (<-chan cmd.WatchState, error) {\n\t\treturn m.listenWhileConnected(ctx, box, mail.SentboxCollectionName, mevents)\n\t}, reconnectInterval)\n}\n\n// listenWhileConnected will listen until context is canceled or an error occurs.\nfunc (m *Mailbox) listenWhileConnected(ctx context.Context, boxID thread.ID, boxName string, mevents chan<- MailboxEvent) (<-chan cmd.WatchState, error) {\n\tstate := make(chan cmd.WatchState)\n\tgo func() {\n\t\tdefer close(state)\n\n\t\t// Start listening for remote changes\n\t\tevents, err := m.clients.Threads.Listen(ctx, boxID, []tc.ListenOption{{\n\t\t\tType:       tc.ListenAll,\n\t\t\tCollection: boxName,\n\t\t}})\n\t\tif err != nil {\n\t\t\tstate <- cmd.WatchState{Err: err, Aborted: !cmd.IsConnectionError(err)}\n\t\t\treturn\n\t\t}\n\t\terrs := make(chan error)\n\t\tgo func() {\n\t\t\tfor e := range events {\n\t\t\t\tif e.Err != nil {\n\t\t\t\t\terrs <- e.Err // events will close on error\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tswitch e.Action.Type {\n\t\t\t\tcase tc.ActionCreate, tc.ActionSave:\n\t\t\t\t\tvar msg client.Message\n\t\t\t\t\tif err := msg.UnmarshalInstance(e.Action.Instance); err != nil {\n\t\t\t\t\t\terrs <- err\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tvar t MailboxEventType\n\t\t\t\t\tif e.Action.Type == tc.ActionCreate {\n\t\t\t\t\t\tt = NewMessage\n\t\t\t\t\t} else {\n\t\t\t\t\t\tt = MessageRead\n\t\t\t\t\t}\n\t\t\t\t\tmevents <- MailboxEvent{\n\t\t\t\t\t\tType:      t,\n\t\t\t\t\t\tMessageID: db.InstanceID(e.Action.InstanceID),\n\t\t\t\t\t\tMessage:   msg,\n\t\t\t\t\t}\n\t\t\t\tcase tc.ActionDelete:\n\t\t\t\t\tmevents <- MailboxEvent{\n\t\t\t\t\t\tType:      MessageDeleted,\n\t\t\t\t\t\tMessageID: db.InstanceID(e.Action.InstanceID),\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}()\n\n\t\t// If we made it here, we must be online\n\t\tstate <- cmd.WatchState{State: cmd.Online}\n\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase err := <-errs:\n\t\t\t\tstate <- cmd.WatchState{Err: err, Aborted: !cmd.IsConnectionError(err)}\n\t\t\t\treturn\n\t\t\tcase <-ctx.Done():\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}()\n\treturn state, nil\n}\n\n// ReadInboxMessage marks a message as read by ID.\nfunc (m *Mailbox) ReadInboxMessage(ctx context.Context, id string) error {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn m.clients.Users.ReadInboxMessage(ctx, id)\n}\n\n// DeleteInboxMessage deletes an inbox message by ID.\nfunc (m *Mailbox) DeleteInboxMessage(ctx context.Context, id string) error {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn m.clients.Users.DeleteInboxMessage(ctx, id)\n}\n\n// DeleteSentboxMessage deletes a sent message by ID.\nfunc (m *Mailbox) DeleteSentboxMessage(ctx context.Context, id string) error {\n\tctx, err := m.context(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn m.clients.Users.DeleteSentboxMessage(ctx, id)\n}\n\n// Identity returns the mailbox's user identity.\nfunc (m *Mailbox) loadIdentity() error {\n\tids := m.conf.Viper.GetString(\"identity\")\n\tif ids == \"\" {\n\t\treturn fmt.Errorf(\"identity not found\")\n\t}\n\tidb, err := base64.StdEncoding.DecodeString(ids)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"loading identity: %v\", err)\n\t}\n\tm.id = &thread.Libp2pIdentity{}\n\tif err = m.id.UnmarshalBinary(idb); err != nil {\n\t\treturn fmt.Errorf(\"unmarshalling identity: %v\", err)\n\t}\n\treturn nil\n}\n\nfunc (m *Mailbox) context(ctx context.Context) (context.Context, error) {\n\tctx = common.NewAPIKeyContext(ctx, m.conf.Viper.GetString(\"api_key\"))\n\tsecret := m.conf.Viper.GetString(\"api_secret\")\n\tif secret != \"\" {\n\t\tvar err error\n\t\tctx, err = common.CreateAPISigContext(ctx, time.Now().Add(time.Hour), secret)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif m.token == \"\" {\n\t\ttok, err := m.clients.Threads.GetToken(ctx, m.id)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tm.token = tok\n\t}\n\tctx = thread.NewTokenContext(ctx, m.token)\n\treturn ctx, nil\n}\n"
  },
  {
    "path": "mail/local/mailbox_test.go",
    "content": "package local_test\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/textile/v2/api/usersd/client\"\n\t. \"github.com/textileio/textile/v2/mail/local\"\n)\n\nfunc TestMailbox_Identity(t *testing.T) {\n\tmail, key, secret := setup(t)\n\n\tconf := getConf(t, key, secret)\n\tbox, err := mail.NewMailbox(context.Background(), conf)\n\trequire.NoError(t, err)\n\tassert.Equal(t, conf.Identity.GetPublic(), box.Identity().GetPublic())\n}\n\nfunc TestMailbox_SendMessage(t *testing.T) {\n\tmail, key, secret := setup(t)\n\n\tconf1 := getConf(t, key, secret)\n\tbox1, err := mail.NewMailbox(context.Background(), conf1)\n\trequire.NoError(t, err)\n\tconf2 := getConf(t, key, secret)\n\tbox2, err := mail.NewMailbox(context.Background(), conf2)\n\trequire.NoError(t, err)\n\n\tm1, err := box1.SendMessage(context.Background(), box2.Identity().GetPublic(), []byte(\"howdy\"))\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, m1.ID)\n\tassert.Equal(t, box1.Identity().GetPublic(), m1.From)\n\tassert.Equal(t, box2.Identity().GetPublic(), m1.To)\n\tok, err := box1.Identity().GetPublic().Verify(m1.Body, m1.Signature)\n\trequire.NoError(t, err)\n\trequire.True(t, ok)\n\tassert.Equal(t, false, m1.IsRead())\n\tassert.NotEmpty(t, m1.CreatedAt)\n\n\tb1, err := m1.Open(context.Background(), box1.Identity())\n\trequire.NoError(t, err)\n\tassert.Equal(t, \"howdy\", string(b1))\n\n\tlist2, err := box2.ListInboxMessages(context.Background())\n\trequire.NoError(t, err)\n\tassert.Len(t, list2, 1)\n\tm2 := list2[0]\n\tb2, err := m2.Open(context.Background(), box2.Identity())\n\trequire.NoError(t, err)\n\tassert.Equal(t, \"howdy\", string(b2))\n}\n\nfunc TestMailbox_Watch(t *testing.T) {\n\tmail, key, secret := setup(t)\n\n\tconf1 := getConf(t, key, secret)\n\tbox1, err := mail.NewMailbox(context.Background(), conf1)\n\trequire.NoError(t, err)\n\tconf2 := getConf(t, key, secret)\n\tbox2, err := mail.NewMailbox(context.Background(), conf2)\n\trequire.NoError(t, err)\n\n\tvar wg sync.WaitGroup\n\tctx, cancel := context.WithCancel(context.Background())\n\tdefer cancel()\n\tevents1 := make(chan MailboxEvent)\n\tdefer close(events1)\n\tec1 := &eventCollector{}\n\tgo ec1.collect(events1)\n\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tstate, err := box1.WatchInbox(ctx, events1, true)\n\t\trequire.NoError(t, err)\n\t\tfor s := range state {\n\t\t\tfmt.Println(fmt.Sprintf(\"received inbox watch state: %s\", s.State))\n\t\t}\n\t}()\n\n\tevents2 := make(chan MailboxEvent)\n\tdefer close(events2)\n\tec2 := &eventCollector{}\n\tgo ec2.collect(events2)\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tstate, err := box2.WatchSentbox(ctx, events2, true)\n\t\trequire.NoError(t, err)\n\t\tfor s := range state {\n\t\t\tfmt.Println(fmt.Sprintf(\"received sentbox watch state: %s\", s.State))\n\t\t}\n\t}()\n\n\ttime.Sleep(time.Second) // Ensure the listener is ready\n\tsent := make([]client.Message, 3)\n\tfor i := range sent {\n\t\tsent[i], err = box2.SendMessage(context.Background(), box1.Identity().GetPublic(), []byte(\"hi\"))\n\t\trequire.NoError(t, err)\n\t}\n\terr = box1.ReadInboxMessage(context.Background(), sent[0].ID)\n\trequire.NoError(t, err)\n\terr = box1.DeleteInboxMessage(context.Background(), sent[1].ID)\n\trequire.NoError(t, err)\n\terr = box2.DeleteSentboxMessage(context.Background(), sent[2].ID)\n\trequire.NoError(t, err)\n\n\tcancel() // Stop listening\n\twg.Wait()\n\tec1.check(t, len(sent), 1, 1)\n\tec2.check(t, len(sent), 0, 1)\n}\n\ntype eventCollector struct {\n\tnew     int\n\tread    int\n\tdeleted int\n\tsync.Mutex\n}\n\nfunc (c *eventCollector) collect(events chan MailboxEvent) {\n\tfor e := range events {\n\t\tc.Lock()\n\t\tswitch e.Type {\n\t\tcase NewMessage:\n\t\t\tc.new++\n\t\tcase MessageRead:\n\t\t\tc.read++\n\t\tcase MessageDeleted:\n\t\t\tc.deleted++\n\t\t}\n\t\tc.Unlock()\n\t}\n}\n\nfunc (c *eventCollector) check(t *testing.T, numNew, numRead, numDeleted int) {\n\ttime.Sleep(5 * time.Second)\n\tc.Lock()\n\tdefer c.Unlock()\n\tassert.Equal(t, numNew, c.new)\n\tassert.Equal(t, numRead, c.read)\n\tassert.Equal(t, numDeleted, c.deleted)\n}\n"
  },
  {
    "path": "mail/mail.go",
    "content": "package mail\n\nconst (\n\t// ThreadName is the name of the threaddb used for mail.\n\tThreadName = \"hubmail\"\n\n\t// InboxCollectionName is the name of the threaddb collection used for an inbox.\n\tInboxCollectionName = \"inbox\"\n\n\t// SentbocCollectionName is the name of the threaddb collection used for a sentbox.\n\tSentboxCollectionName = \"sentbox\"\n)\n"
  },
  {
    "path": "mongodb/accounts.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"errors\"\n\t\"fmt\"\n\t\"regexp\"\n\t\"time\"\n\n\t\"github.com/gosimple/slug\"\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nvar (\n\tusernameRx *regexp.Regexp\n\n\tErrInvalidUsername = fmt.Errorf(\"username may only contain alphanumeric characters or single hyphens, \" +\n\t\t\"and cannot begin or end with a hyphen\")\n)\n\nfunc init() {\n\tusernameRx = regexp.MustCompile(`^[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)?$`)\n}\n\ntype Account struct {\n\tType      AccountType\n\tKey       thread.PubKey\n\tSecret    thread.Identity\n\tName      string\n\tUsername  string\n\tEmail     string\n\tToken     thread.Token\n\tMembers   []Member\n\tPowInfo   *PowInfo\n\tCreatedAt time.Time\n}\n\ntype AccountType int\n\nconst (\n\tDev AccountType = iota\n\tOrg\n\tUser\n)\n\ntype Member struct {\n\tKey      thread.PubKey\n\tUsername string\n\tRole     Role\n}\n\ntype Role int\n\nconst (\n\tOrgOwner Role = iota\n\tOrgMember\n)\n\nfunc (r Role) String() (s string) {\n\tswitch r {\n\tcase OrgOwner:\n\t\ts = \"owner\"\n\tcase OrgMember:\n\t\ts = \"member\"\n\t}\n\treturn\n}\n\ntype AccountCtx struct {\n\tUser *Account\n\tOrg  *Account\n}\n\nfunc NewAccountContext(ctx context.Context, user, org *Account) context.Context {\n\treturn context.WithValue(ctx, ctxKey(\"account\"), &AccountCtx{\n\t\tUser: user,\n\t\tOrg:  org,\n\t})\n}\n\nfunc AccountCtxForAccount(account *Account) *AccountCtx {\n\tactx := &AccountCtx{}\n\tif account.Type == Org {\n\t\tactx.Org = account\n\t} else {\n\t\tactx.User = account\n\t}\n\treturn actx\n}\n\nfunc AccountFromContext(ctx context.Context) (*AccountCtx, bool) {\n\tacc, ok := ctx.Value(ctxKey(\"account\")).(*AccountCtx)\n\treturn acc, ok\n}\n\nfunc (ac *AccountCtx) Owner() *Account {\n\tif ac.Org != nil {\n\t\treturn ac.Org\n\t}\n\treturn ac.User\n}\n\ntype Accounts struct {\n\tcol *mongo.Collection\n}\n\nfunc NewAccounts(ctx context.Context, db *mongo.Database) (*Accounts, error) {\n\ta := &Accounts{col: db.Collection(\"accounts\")}\n\t_, err := a.col.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"username\", Value: 1}},\n\t\t\tOptions: options.Index().\n\t\t\t\tSetUnique(true).\n\t\t\t\tSetCollation(&options.Collation{Locale: \"en\", Strength: 2}).\n\t\t\t\tSetSparse(true),\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"email\", Value: 1}},\n\t\t\tOptions: options.Index().\n\t\t\t\tSetUnique(true).\n\t\t\t\tSetSparse(true),\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"members._id\", Value: 1}},\n\t\t},\n\t})\n\treturn a, err\n}\n\nfunc (a *Accounts) CreateDev(ctx context.Context, username, email string, powInfo *PowInfo) (*Account, error) {\n\tif err := a.ValidateUsername(username); err != nil {\n\t\treturn nil, err\n\t}\n\tsk, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdoc := &Account{\n\t\tType:      Dev,\n\t\tKey:       thread.NewLibp2pPubKey(pk),\n\t\tSecret:    thread.NewLibp2pIdentity(sk),\n\t\tEmail:     email,\n\t\tUsername:  username,\n\t\tPowInfo:   powInfo,\n\t\tCreatedAt: time.Now(),\n\t}\n\tid, err := doc.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsecret, err := doc.Secret.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdata := bson.M{\n\t\t\"_id\":        id,\n\t\t\"type\":       int32(doc.Type),\n\t\t\"secret\":     secret,\n\t\t\"email\":      doc.Email,\n\t\t\"username\":   doc.Username,\n\t\t\"created_at\": doc.CreatedAt,\n\t}\n\tencodePowInfo(data, doc.PowInfo)\n\tif _, err := a.col.InsertOne(ctx, data); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (a *Accounts) CreateOrg(ctx context.Context, name string, members []Member, powInfo *PowInfo) (*Account, error) {\n\tslg, ok := util.ToValidName(name)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"name '%s' is not available\", name)\n\t}\n\tsk, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar haveOwner bool\n\tfor _, m := range members {\n\t\tif m.Role == OrgOwner {\n\t\t\thaveOwner = true\n\t\t\tbreak\n\t\t}\n\t}\n\tif !haveOwner {\n\t\treturn nil, fmt.Errorf(\"an org must have at least one owner\")\n\t}\n\tdoc := &Account{\n\t\tType:      Org,\n\t\tKey:       thread.NewLibp2pPubKey(pk),\n\t\tSecret:    thread.NewLibp2pIdentity(sk),\n\t\tName:      name,\n\t\tUsername:  slg,\n\t\tMembers:   members,\n\t\tPowInfo:   powInfo,\n\t\tCreatedAt: time.Now(),\n\t}\n\tid, err := doc.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsecret, err := doc.Secret.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\trmems := make(bson.A, len(doc.Members))\n\tfor i, m := range doc.Members {\n\t\tk, err := m.Key.MarshalBinary()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\trmems[i] = bson.M{\n\t\t\t\"_id\":      k,\n\t\t\t\"username\": m.Username,\n\t\t\t\"role\":     int32(m.Role),\n\t\t}\n\t}\n\tdata := bson.M{\n\t\t\"_id\":        id,\n\t\t\"type\":       doc.Type,\n\t\t\"secret\":     secret,\n\t\t\"name\":       doc.Name,\n\t\t\"username\":   doc.Username,\n\t\t\"members\":    rmems,\n\t\t\"created_at\": doc.CreatedAt,\n\t}\n\tencodePowInfo(data, doc.PowInfo)\n\tif _, err = a.col.InsertOne(ctx, data); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (a *Accounts) CreateUser(ctx context.Context, key thread.PubKey, powInfo *PowInfo) (*Account, error) {\n\tdoc := &Account{\n\t\tType:      User,\n\t\tKey:       key,\n\t\tPowInfo:   powInfo,\n\t\tCreatedAt: time.Now(),\n\t}\n\tid, err := doc.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdata := bson.M{\n\t\t\"_id\":        id,\n\t\t\"type\":       int32(doc.Type),\n\t\t\"created_at\": doc.CreatedAt,\n\t}\n\tencodePowInfo(data, doc.PowInfo)\n\tif _, err := a.col.InsertOne(ctx, data); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (a *Accounts) Get(ctx context.Context, key thread.PubKey) (*Account, error) {\n\tid, err := key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tres := a.col.FindOne(ctx, bson.M{\"_id\": id})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeAccount(raw)\n}\n\nfunc (a *Accounts) GetByUsername(ctx context.Context, username string) (*Account, error) {\n\tres := a.col.FindOne(ctx, bson.M{\"username\": username})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeAccount(raw)\n}\n\nfunc (a *Accounts) GetByUsernameOrEmail(ctx context.Context, usernameOrEmail string) (*Account, error) {\n\tres := a.col.FindOne(ctx, bson.D{\n\t\tprimitive.E{Key: \"$or\", Value: bson.A{\n\t\t\tbson.D{\n\t\t\t\tprimitive.E{Key: \"username\", Value: usernameOrEmail},\n\t\t\t},\n\t\t\tbson.D{\n\t\t\t\tprimitive.E{Key: \"email\", Value: usernameOrEmail},\n\t\t\t},\n\t\t}},\n\t})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeAccount(raw)\n}\n\nfunc (a *Accounts) ValidateUsername(username string) error {\n\tif !usernameRx.MatchString(username) {\n\t\treturn ErrInvalidUsername\n\t}\n\treturn nil\n}\n\nfunc (a *Accounts) IsUsernameAvailable(ctx context.Context, username string) error {\n\tif err := a.ValidateUsername(username); err != nil {\n\t\treturn err\n\t}\n\tres := a.col.FindOne(ctx, bson.M{\"username\": username})\n\tif res.Err() != nil {\n\t\tif errors.Is(res.Err(), mongo.ErrNoDocuments) {\n\t\t\treturn nil\n\t\t}\n\t\treturn res.Err()\n\t}\n\treturn fmt.Errorf(\"username '%s' is not available\", username)\n}\n\nfunc (a *Accounts) IsNameAvailable(ctx context.Context, name string) (s string, err error) {\n\ts = slug.Make(name)\n\tres := a.col.FindOne(ctx, bson.M{\"username\": s})\n\tif res.Err() != nil {\n\t\tif errors.Is(res.Err(), mongo.ErrNoDocuments) {\n\t\t\treturn\n\t\t}\n\t\terr = res.Err()\n\t\treturn\n\t}\n\treturn s, fmt.Errorf(\"the name '%s' is already taken\", name)\n}\n\nfunc (a *Accounts) SetToken(ctx context.Context, key thread.PubKey, token thread.Token) error {\n\tid, err := key.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\tres, err := a.col.UpdateOne(ctx, bson.M{\"_id\": id}, bson.M{\"$set\": bson.M{\"token\": token}})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (a *Accounts) UpdatePowInfo(ctx context.Context, key thread.PubKey, powInfo *PowInfo) (*Account, error) {\n\tid, err := key.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tupdate := bson.M{}\n\tencodePowInfo(update, powInfo)\n\tres, err := a.col.UpdateOne(\n\t\tctx,\n\t\tbson.M{\"_id\": id},\n\t\tbson.M{\"$set\": update},\n\t)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif res.ModifiedCount != 1 {\n\t\treturn nil, fmt.Errorf(\"should have modified 1 record but updated %v\", res.ModifiedCount)\n\t}\n\treturn a.Get(ctx, key)\n}\n\nfunc (a *Accounts) ListByMember(ctx context.Context, member thread.PubKey) ([]Account, error) {\n\tmid, err := member.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfilter := bson.M{\"members\": bson.M{\"$elemMatch\": bson.M{\"_id\": mid}}}\n\tcursor, err := a.col.Find(ctx, filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []Account\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeAccount(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (a *Accounts) ListByOwner(ctx context.Context, owner thread.PubKey) ([]Account, error) {\n\toid, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfilter := bson.M{\"members\": bson.M{\"$elemMatch\": bson.M{\"_id\": oid, \"role\": OrgOwner}}}\n\tcursor, err := a.col.Find(ctx, filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []Account\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeAccount(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (a *Accounts) ListMembers(ctx context.Context, members []Member) ([]Account, error) {\n\tkeys := make([][]byte, len(members))\n\tvar err error\n\tfor i, m := range members {\n\t\tkeys[i], err = m.Key.MarshalBinary()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tcursor, err := a.col.Find(ctx, bson.M{\"_id\": bson.M{\"$in\": keys}})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []Account\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeAccount(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (a *Accounts) IsOwner(ctx context.Context, username string, member thread.PubKey) (bool, error) {\n\tmid, err := member.MarshalBinary()\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tfilter := bson.M{\"username\": username, \"members\": bson.M{\"$elemMatch\": bson.M{\"_id\": mid, \"role\": OrgOwner}}}\n\tres := a.col.FindOne(ctx, filter)\n\tif res.Err() != nil {\n\t\tif errors.Is(res.Err(), mongo.ErrNoDocuments) {\n\t\t\treturn false, nil\n\t\t} else {\n\t\t\treturn false, res.Err()\n\t\t}\n\t}\n\treturn true, nil\n}\n\nfunc (a *Accounts) IsMember(ctx context.Context, username string, member thread.PubKey) (bool, error) {\n\tmid, err := member.MarshalBinary()\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tfilter := bson.M{\"username\": username, \"members\": bson.M{\"$elemMatch\": bson.M{\"_id\": mid}}}\n\tres := a.col.FindOne(ctx, filter)\n\tif res.Err() != nil {\n\t\tif errors.Is(res.Err(), mongo.ErrNoDocuments) {\n\t\t\treturn false, nil\n\t\t} else {\n\t\t\treturn false, res.Err()\n\t\t}\n\t}\n\treturn true, nil\n}\n\nfunc (a *Accounts) AddMember(ctx context.Context, username string, member Member) error {\n\tmk, err := member.Key.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\traw := bson.M{\n\t\t\"_id\":      mk,\n\t\t\"username\": member.Username,\n\t\t\"role\":     int(member.Role),\n\t}\n\t_, err = a.col.UpdateOne(ctx, bson.M{\n\t\t\"username\":    username,\n\t\t\"members._id\": bson.M{\"$ne\": mk},\n\t}, bson.M{\"$push\": bson.M{\"members\": raw}})\n\treturn err\n}\n\nfunc (a *Accounts) RemoveMember(ctx context.Context, username string, member thread.PubKey) error {\n\tisOwner, err := a.IsOwner(ctx, username, member)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif isOwner { // Ensure there will still be at least one owner left\n\t\tcursor, err := a.col.Aggregate(ctx, mongo.Pipeline{\n\t\t\tbson.D{primitive.E{Key: \"$match\", Value: bson.M{\"username\": username}}},\n\t\t\tbson.D{primitive.E{Key: \"$project\", Value: bson.M{\n\t\t\t\t\"members\": bson.M{\n\t\t\t\t\t\"$filter\": bson.M{\n\t\t\t\t\t\t\"input\": \"$members\",\n\t\t\t\t\t\t\"as\":    \"member\",\n\t\t\t\t\t\t\"cond\":  bson.M{\"$eq\": bson.A{\"$$member.role\", 0}},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}}},\n\t\t\tbson.D{primitive.E{Key: \"$count\", Value: \"members\"}},\n\t\t}, options.Aggregate().SetHint(bson.D{primitive.E{Key: \"username\", Value: 1}}))\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tdefer cursor.Close(ctx)\n\t\ttype res struct {\n\t\t\tOwners int `bson:\"members\"`\n\t\t}\n\t\tvar r res\n\t\tcursor.Next(ctx)\n\t\tif err := cursor.Decode(&r); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := cursor.Err(); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif r.Owners < 2 {\n\t\t\treturn fmt.Errorf(\"an org must have at least one owner\")\n\t\t}\n\t}\n\tmid, err := member.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\tres, err := a.col.UpdateOne(ctx, bson.M{\n\t\t\"username\": username,\n\t}, bson.M{\"$pull\": bson.M{\"members\": bson.M{\"_id\": mid}}})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (a *Accounts) Delete(ctx context.Context, key thread.PubKey) error {\n\tid, err := key.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\tres, err := a.col.DeleteOne(ctx, bson.M{\"_id\": id})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.DeletedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc decodeAccount(raw bson.M) (*Account, error) {\n\tkey := &thread.Libp2pPubKey{}\n\terr := key.UnmarshalBinary(raw[\"_id\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar username, name, email string\n\tif v, ok := raw[\"username\"]; ok {\n\t\tusername = v.(string)\n\t}\n\tif v, ok := raw[\"name\"]; ok {\n\t\tname = v.(string)\n\t}\n\tif v, ok := raw[\"email\"]; ok {\n\t\temail = v.(string)\n\t}\n\tvar secret *thread.Libp2pIdentity\n\tif v, ok := raw[\"secret\"]; ok {\n\t\tsecret = &thread.Libp2pIdentity{}\n\t\terr := secret.UnmarshalBinary(v.(primitive.Binary).Data)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tvar token thread.Token\n\tif v, ok := raw[\"token\"]; ok {\n\t\ttoken = thread.Token(v.(string))\n\t}\n\tvar mems []Member\n\tif v, ok := raw[\"members\"]; ok {\n\t\trmems := v.(bson.A)\n\t\tmems = make([]Member, len(rmems))\n\n\t\tfor i, m := range raw[\"members\"].(bson.A) {\n\t\t\tmem := m.(bson.M)\n\t\t\tk := &thread.Libp2pPubKey{}\n\t\t\terr := k.UnmarshalBinary(mem[\"_id\"].(primitive.Binary).Data)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tmems[i] = Member{\n\t\t\t\tKey:      k,\n\t\t\t\tUsername: mem[\"username\"].(string),\n\t\t\t\tRole:     Role(mem[\"role\"].(int32)),\n\t\t\t}\n\t\t}\n\t}\n\tvar created time.Time\n\tif v, ok := raw[\"created_at\"]; ok {\n\t\tcreated = v.(primitive.DateTime).Time()\n\t}\n\treturn &Account{\n\t\tType:      AccountType(raw[\"type\"].(int32)),\n\t\tKey:       key,\n\t\tSecret:    secret,\n\t\tName:      name,\n\t\tUsername:  username,\n\t\tEmail:     email,\n\t\tToken:     token,\n\t\tMembers:   mems,\n\t\tPowInfo:   decodePowInfo(raw),\n\t\tCreatedAt: created,\n\t}, nil\n}\n"
  },
  {
    "path": "mongodb/accounts_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"testing\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestAccounts_CreateDev(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", &PowInfo{ID: \"id\", Token: \"token\"})\n\trequire.NoError(t, err)\n\tassert.Equal(t, Dev, created.Type)\n\tassert.Equal(t, \"jon\", created.Username)\n\tassert.Equal(t, \"jon@doe.com\", created.Email)\n\tassert.NotEmpty(t, created.Key)\n\tassert.NotEmpty(t, created.Secret)\n\tassert.Equal(t, \"id\", created.PowInfo.ID)\n\tassert.Equal(t, \"token\", created.PowInfo.Token)\n\n\t_, err = col.CreateDev(context.Background(), \"jon\", \"jon2@doe.com\", &PowInfo{ID: \"id2\", Token: \"token2\"})\n\trequire.Error(t, err)\n\t_, err = col.CreateDev(context.Background(), \"jon2\", \"jon@doe.com\", &PowInfo{ID: \"id3\", Token: \"token3\"})\n\trequire.Error(t, err)\n\n\t_, mem, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\t_, err = col.CreateOrg(context.Background(), \"jon\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, &PowInfo{ID: \"id\", Token: \"token\"})\n\trequire.Error(t, err)\n}\n\nfunc TestAccounts_CreateOrg(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, &PowInfo{ID: \"id\", Token: \"token\"})\n\trequire.NoError(t, err)\n\tassert.Equal(t, Org, created.Type)\n\tassert.Equal(t, created.Name, \"test\")\n\tassert.NotNil(t, created.Key)\n\tassert.True(t, created.CreatedAt.Unix() > 0)\n\tassert.Equal(t, \"id\", created.PowInfo.ID)\n\tassert.Equal(t, \"token\", created.PowInfo.Token)\n\n\t_, err = col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.Error(t, err)\n\n\t_, err = col.CreateOrg(context.Background(), \"empty\", []Member{}, nil)\n\trequire.Error(t, err)\n\n\t_, err = col.CreateDev(context.Background(), \"test\", \"jon@doe.com\", nil)\n\trequire.Error(t, err)\n}\n\nfunc TestAccounts_CreateUser(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, pk, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateUser(context.Background(), thread.NewLibp2pPubKey(pk), &PowInfo{ID: \"id\", Token: \"token\"})\n\trequire.NoError(t, err)\n\tassert.Equal(t, User, created.Type)\n\tassert.NotEmpty(t, created.Key)\n\tassert.Empty(t, created.Secret)\n\tassert.Equal(t, \"id\", created.PowInfo.ID)\n\tassert.Equal(t, \"token\", created.PowInfo.Token)\n\n\t_, err = col.CreateUser(context.Background(), thread.NewLibp2pPubKey(pk), &PowInfo{ID: \"id2\", Token: \"token2\"})\n\trequire.Error(t, err)\n}\n\nfunc TestAccounts_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", &PowInfo{ID: \"id\", Token: \"token\"})\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, got.Key)\n\tassert.Equal(t, \"id\", created.PowInfo.ID)\n\tassert.Equal(t, \"token\", created.PowInfo.Token)\n}\n\nfunc TestAccounts_GetByUsernameOrEmail(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", nil)\n\trequire.NoError(t, err)\n\n\tgot, err := col.GetByUsernameOrEmail(context.Background(), \"jon\")\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, got.Key)\n\n\tgot, err = col.GetByUsernameOrEmail(context.Background(), \"jon@doe.com\")\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, got.Key)\n\n\t_, err = col.GetByUsernameOrEmail(context.Background(), \"jon2\")\n\trequire.Error(t, err)\n}\n\nfunc TestAccounts_ValidateUsername(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\ttests := map[string]bool{\n\t\t\"\":      false,\n\t\t\" \":     false,\n\t\t\"f oo\":  false,\n\t\t\"-\":     false,\n\t\t\"-foo\":  false,\n\t\t\"foo-\":  false,\n\t\t\"f-o-o\": false,\n\t\t\"fo--o\": false,\n\n\t\t\"foo\":  true,\n\t\t\"fo-o\": true,\n\t\t\"fOO\":  true,\n\t\t\"f00\":  true,\n\t}\n\n\tfor un, valid := range tests {\n\t\terr := col.ValidateUsername(un)\n\t\tassert.Equal(t, valid, err == nil)\n\t}\n}\n\nfunc TestAccounts_GetByUsername(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\tgot, err := col.GetByUsername(context.Background(), created.Username)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, got.Key)\n}\n\nfunc TestAccounts_IsUsernameAvailable(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\terr = col.IsUsernameAvailable(context.Background(), \"jon\")\n\trequire.NoError(t, err)\n\n\t_, err = col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", nil)\n\trequire.NoError(t, err)\n\n\terr = col.IsUsernameAvailable(context.Background(), \"jon\")\n\trequire.Error(t, err)\n}\n\nfunc TestAccounts_IsNameAvailable(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, err = col.IsNameAvailable(context.Background(), \"test\")\n\trequire.NoError(t, err)\n\n\t_, mem, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"Test!\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Username, \"Test\")\n\n\tname, err := col.IsNameAvailable(context.Background(), \"Test!\")\n\trequire.Error(t, err)\n\tassert.Equal(t, created.Username, name)\n}\n\nfunc TestAccounts_SetToken(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", nil)\n\trequire.NoError(t, err)\n\n\tiss, _, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\ttok, err := thread.NewToken(iss, created.Key)\n\trequire.NoError(t, err)\n\terr = col.SetToken(context.Background(), created.Key, tok)\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, got.Token)\n}\n\nfunc TestAccounts_UpdatePowInfo(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", &PowInfo{ID: \"id\", Token: \"token\"})\n\trequire.NoError(t, err)\n\tassert.Equal(t, \"id\", created.PowInfo.ID)\n\tassert.Equal(t, \"token\", created.PowInfo.Token)\n\tupdated, err := col.UpdatePowInfo(context.Background(), created.Key, &PowInfo{ID: \"id2\", Token: \"token2\"})\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, updated.Key)\n\tassert.Equal(t, \"id2\", updated.PowInfo.ID)\n\tassert.Equal(t, \"token2\", updated.PowInfo.Token)\n\tgot, err := col.Get(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, got.Key)\n\tassert.Equal(t, \"id2\", got.PowInfo.ID)\n\tassert.Equal(t, \"token2\", got.PowInfo.Token)\n}\n\nfunc TestAccounts_ListByMember(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\tlist, err := col.ListByMember(context.Background(), thread.NewLibp2pPubKey(mem))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 1, len(list))\n\tassert.Equal(t, created.Name, list[0].Name)\n}\n\nfunc TestAccounts_ListByOwner(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem1),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\tlist, err := col.ListByOwner(context.Background(), thread.NewLibp2pPubKey(mem1))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 1, len(list))\n\tassert.Equal(t, created.Name, list[0].Name)\n\n\t_, mem2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.AddMember(context.Background(), created.Username, Member{\n\t\tKey:      thread.NewLibp2pPubKey(mem2),\n\t\tUsername: \"member\",\n\t\tRole:     OrgMember,\n\t})\n\trequire.NoError(t, err)\n\tlist, err = col.ListByOwner(context.Background(), thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, len(list))\n}\n\nfunc TestAccounts_ListMembers(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tone, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", nil)\n\trequire.NoError(t, err)\n\ttwo, err := col.CreateDev(context.Background(), \"jane\", \"jane@doe.com\", nil)\n\trequire.NoError(t, err)\n\t_, err = col.CreateDev(context.Background(), \"jone\", \"jone@doe.com\", nil)\n\trequire.NoError(t, err)\n\n\tlist, err := col.ListMembers(context.Background(), []Member{{Key: one.Key}, {Key: two.Key}})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 2, len(list))\n}\n\nfunc TestAccounts_IsOwner(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem1),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\t_, mem2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.AddMember(context.Background(), created.Username, Member{\n\t\tKey:      thread.NewLibp2pPubKey(mem2),\n\t\tUsername: \"member\",\n\t\tRole:     OrgMember,\n\t})\n\trequire.NoError(t, err)\n\n\tis, err := col.IsOwner(context.Background(), created.Username, thread.NewLibp2pPubKey(mem1))\n\trequire.NoError(t, err)\n\tassert.True(t, is)\n\tis, err = col.IsOwner(context.Background(), created.Username, thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tassert.False(t, is)\n}\n\nfunc TestAccounts_IsMember(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem1),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\t_, mem2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.AddMember(context.Background(), created.Username, Member{\n\t\tKey:      thread.NewLibp2pPubKey(mem2),\n\t\tUsername: \"member\",\n\t\tRole:     OrgMember,\n\t})\n\trequire.NoError(t, err)\n\n\tis, err := col.IsMember(context.Background(), created.Username, thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tassert.True(t, is)\n\terr = col.RemoveMember(context.Background(), created.Username, thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tis, err = col.IsMember(context.Background(), created.Username, thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tassert.False(t, is)\n}\n\nfunc TestAccounts_AddMember(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem1),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\t_, mem2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.AddMember(context.Background(), created.Username, Member{\n\t\tKey:      thread.NewLibp2pPubKey(mem2),\n\t\tUsername: \"member\",\n\t\tRole:     OrgMember,\n\t})\n\trequire.NoError(t, err)\n\terr = col.AddMember(context.Background(), created.Username, Member{ // Add again should not duplicate entry\n\t\tKey:      thread.NewLibp2pPubKey(mem2),\n\t\tUsername: \"member\",\n\t\tRole:     OrgMember,\n\t})\n\trequire.NoError(t, err)\n\n\tgot, err := col.GetByUsername(context.Background(), created.Username)\n\trequire.NoError(t, err)\n\tassert.Equal(t, 2, len(got.Members))\n}\n\nfunc TestAccounts_RemoveMember(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, mem1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.CreateOrg(context.Background(), \"test\", []Member{{\n\t\tKey:      thread.NewLibp2pPubKey(mem1),\n\t\tUsername: \"test\",\n\t\tRole:     OrgOwner,\n\t}}, nil)\n\trequire.NoError(t, err)\n\n\terr = col.RemoveMember(context.Background(), created.Username, thread.NewLibp2pPubKey(mem1))\n\trequire.Error(t, err) // Can't remove the sole owner\n\n\t_, mem2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.AddMember(context.Background(), created.Username, Member{\n\t\tKey:      thread.NewLibp2pPubKey(mem2),\n\t\tUsername: \"member\",\n\t\tRole:     OrgMember,\n\t})\n\trequire.NoError(t, err)\n\n\terr = col.RemoveMember(context.Background(), created.Username, thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tlist, err := col.ListByMember(context.Background(), thread.NewLibp2pPubKey(mem2))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, len(list))\n}\n\nfunc TestAccounts_Delete(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAccounts(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tcreated, err := col.CreateDev(context.Background(), \"jon\", \"jon@doe.com\", nil)\n\trequire.NoError(t, err)\n\n\terr = col.Delete(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.Key)\n\trequire.Error(t, err)\n}\n"
  },
  {
    "path": "mongodb/apikeys.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\nconst (\n\tkeyLen    = 16\n\tsecretLen = 24\n)\n\ntype APIKeyType int\n\nconst (\n\tAccountKey APIKeyType = iota\n\tUserKey\n)\n\ntype APIKey struct {\n\tKey       string\n\tSecret    string\n\tOwner     thread.PubKey\n\tType      APIKeyType\n\tSecure    bool\n\tValid     bool\n\tCreatedAt time.Time\n}\n\nfunc NewAPIKeyContext(ctx context.Context, key *APIKey) context.Context {\n\treturn context.WithValue(ctx, ctxKey(\"apiKey\"), key)\n}\n\nfunc APIKeyFromContext(ctx context.Context) (*APIKey, bool) {\n\tkey, ok := ctx.Value(ctxKey(\"apiKey\")).(*APIKey)\n\treturn key, ok\n}\n\ntype APIKeys struct {\n\tcol *mongo.Collection\n}\n\nfunc NewAPIKeys(ctx context.Context, db *mongo.Database) (*APIKeys, error) {\n\tk := &APIKeys{col: db.Collection(\"apikeys\")}\n\t_, err := k.col.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"owner_id\", Value: 1}},\n\t\t},\n\t})\n\treturn k, err\n}\n\nfunc (k *APIKeys) Create(ctx context.Context, owner thread.PubKey, keyType APIKeyType, secure bool) (*APIKey, error) {\n\tdoc := &APIKey{\n\t\tKey:       util.MakeToken(keyLen),\n\t\tSecret:    util.MakeToken(secretLen),\n\t\tOwner:     owner,\n\t\tType:      keyType,\n\t\tSecure:    secure,\n\t\tValid:     true,\n\t\tCreatedAt: time.Now(),\n\t}\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := k.col.InsertOne(ctx, bson.M{\n\t\t\"_id\":        doc.Key,\n\t\t\"secret\":     doc.Secret,\n\t\t\"owner_id\":   ownerID,\n\t\t\"type\":       int32(doc.Type),\n\t\t\"secure\":     doc.Secure,\n\t\t\"valid\":      doc.Valid,\n\t\t\"created_at\": doc.CreatedAt,\n\t}); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (k *APIKeys) Get(ctx context.Context, key string) (*APIKey, error) {\n\tres := k.col.FindOne(ctx, bson.M{\"_id\": key})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeAPIKey(raw)\n}\n\nfunc (k *APIKeys) ListByOwner(ctx context.Context, owner thread.PubKey) ([]APIKey, error) {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tcursor, err := k.col.Find(ctx, bson.M{\"owner_id\": ownerID})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []APIKey\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeAPIKey(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (k *APIKeys) Invalidate(ctx context.Context, key string) error {\n\tres, err := k.col.UpdateOne(ctx, bson.M{\"_id\": key}, bson.M{\"$set\": bson.M{\"valid\": false}})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (k *APIKeys) DeleteByOwner(ctx context.Context, owner thread.PubKey) error {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = k.col.DeleteMany(ctx, bson.M{\"owner_id\": ownerID})\n\treturn err\n}\n\nfunc decodeAPIKey(raw bson.M) (*APIKey, error) {\n\towner := &thread.Libp2pPubKey{}\n\terr := owner.UnmarshalBinary(raw[\"owner_id\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar created time.Time\n\tif v, ok := raw[\"created_at\"]; ok {\n\t\tcreated = v.(primitive.DateTime).Time()\n\t}\n\tvar secure bool\n\tif v, ok := raw[\"secure\"]; ok {\n\t\tsecure = v.(bool)\n\t}\n\treturn &APIKey{\n\t\tKey:       raw[\"_id\"].(string),\n\t\tSecret:    raw[\"secret\"].(string),\n\t\tOwner:     owner,\n\t\tType:      APIKeyType(raw[\"type\"].(int32)),\n\t\tSecure:    secure,\n\t\tValid:     raw[\"valid\"].(bool),\n\t\tCreatedAt: created,\n\t}, nil\n}\n"
  },
  {
    "path": "mongodb/apikeys_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"testing\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestAPIKeys_Create(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAPIKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner), AccountKey, true)\n\trequire.NoError(t, err)\n\tassert.NotEmpty(t, created.Secret)\n\tassert.Equal(t, AccountKey, created.Type)\n\tassert.True(t, created.Secure)\n}\n\nfunc TestAPIKeys_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAPIKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner), UserKey, false)\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Key, got.Key)\n}\n\nfunc TestAPIKeys_ListByOwner(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAPIKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\t_, err = col.Create(context.Background(), thread.NewLibp2pPubKey(owner1), UserKey, false)\n\trequire.NoError(t, err)\n\t_, err = col.Create(context.Background(), thread.NewLibp2pPubKey(owner1), UserKey, false)\n\trequire.NoError(t, err)\n\n\tlist1, err := col.ListByOwner(context.Background(), thread.NewLibp2pPubKey(owner1))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 2, len(list1))\n\n\t_, owner2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tlist2, err := col.ListByOwner(context.Background(), thread.NewLibp2pPubKey(owner2))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, len(list2))\n}\n\nfunc TestAPIKeys_Invalidate(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAPIKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner), UserKey, false)\n\trequire.NoError(t, err)\n\n\terr = col.Invalidate(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\tgot, err := col.Get(context.Background(), created.Key)\n\trequire.NoError(t, err)\n\trequire.False(t, got.Valid)\n}\n\nfunc TestAPIKeys_DeleteByOwner(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewAPIKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner), UserKey, false)\n\trequire.NoError(t, err)\n\n\terr = col.DeleteByOwner(context.Background(), thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.Key)\n\trequire.Error(t, err)\n}\n"
  },
  {
    "path": "mongodb/archivetracking.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/buckets/archive\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\ntype TrackedJob struct {\n\tJID     string\n\tType    archive.TrackedJobType\n\tReadyAt time.Time\n\tCause   string\n\tActive  bool\n\n\t// Set by TrackedJobTypeArchive type.\n\tDbID       thread.ID\n\tDbToken    thread.Token\n\tBucketKey  string\n\tBucketRoot cid.Cid\n\tOwner      thread.PubKey\n\n\t// Set by TrackedJobTypeRetrieval type.\n\tPowToken string\n\tAccKey   string\n}\n\n// trackedJob is an internal representation for storage.\n// Any field modifications should be reflected in the cast() func.\ntype trackedJob struct {\n\tJID     string                 `bson:\"_id\"`\n\tType    archive.TrackedJobType `bson:\"type\"`\n\tReadyAt time.Time              `bson:\"ready_at\"`\n\tCause   string                 `bson:\"cause\"`\n\tActive  bool                   `bson:\"active\"`\n\n\t// Set by TrackedJobTypeArchive type.\n\tDbID       thread.ID    `bson:\"db_id\"`\n\tDbToken    thread.Token `bson:\"db_token\"`\n\tBucketKey  string       `bson:\"bucket_key\"`\n\tBucketRoot []byte       `bson:\"bucket_root\"`\n\tOwner      []byte       `bson:\"owner\"`\n\n\t// Set by TrackedJobTypeRetrieval type.\n\tPowToken string `bson:\"pow_token\"`\n\tAccKey   string\n}\n\ntype ArchiveTracking struct {\n\tcol *mongo.Collection\n}\n\nfunc NewArchiveTracking(_ context.Context, db *mongo.Database) (*ArchiveTracking, error) {\n\ts := &ArchiveTracking{\n\t\tcol: db.Collection(\"archivetrackings\"),\n\t}\n\treturn s, nil\n}\n\nfunc (at *ArchiveTracking) CreateArchive(ctx context.Context, dbID thread.ID, dbToken thread.Token, bucketKey string, jid string, bucketRoot cid.Cid, owner thread.PubKey) error {\n\townerBytes, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn fmt.Errorf(\"marshaling owner to bytes: %v\", err)\n\t}\n\tnewTA := trackedJob{\n\t\tType:       archive.TrackedJobTypeArchive,\n\t\tJID:        jid,\n\t\tDbID:       dbID,\n\t\tDbToken:    dbToken,\n\t\tBucketKey:  bucketKey,\n\t\tBucketRoot: bucketRoot.Bytes(),\n\t\tOwner:      ownerBytes,\n\t\tReadyAt:    time.Now(),\n\t\tCause:      \"\",\n\t\tActive:     true,\n\t}\n\tif _, err = at.col.InsertOne(ctx, newTA); err != nil {\n\t\treturn fmt.Errorf(\"inserting in collection: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc (at *ArchiveTracking) CreateRetrieval(ctx context.Context, accKey, jobID, powToken string) error {\n\tnewTA := trackedJob{\n\t\tType:     archive.TrackedJobTypeRetrieval,\n\t\tJID:      jobID,\n\t\tAccKey:   accKey,\n\t\tPowToken: powToken,\n\t\tReadyAt:  time.Now(),\n\t\tCause:    \"\",\n\t\tActive:   true,\n\t}\n\tif _, err := at.col.InsertOne(ctx, newTA); err != nil {\n\t\treturn fmt.Errorf(\"inserting in collection: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc (at *ArchiveTracking) GetReadyToCheck(ctx context.Context, n int64) ([]*TrackedJob, error) {\n\topts := options.Find()\n\topts.SetLimit(n)\n\tfilter := bson.M{\"ready_at\": bson.M{\"$lte\": time.Now()}, \"active\": true}\n\tcursor, err := at.col.Find(ctx, filter, opts)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"querying ready tracked archives: %s\", err)\n\t}\n\tdefer cursor.Close(ctx)\n\tvar tas []*trackedJob\n\tfor cursor.Next(ctx) {\n\t\tvar ta trackedJob\n\t\tif err := cursor.Decode(&ta); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttas = append(tas, &ta)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn castSlice(tas)\n}\n\nfunc (at *ArchiveTracking) Get(ctx context.Context, jid string) (*TrackedJob, error) {\n\tfilter := bson.M{\"_id\": jid}\n\tres := at.col.FindOne(ctx, filter)\n\tif res.Err() != nil {\n\t\treturn nil, fmt.Errorf(\"getting tracked archive: %s\", res.Err())\n\t}\n\tvar ta trackedJob\n\tif err := res.Decode(&ta); err != nil {\n\t\treturn nil, err\n\t}\n\treturn cast(&ta)\n}\n\nfunc (at *ArchiveTracking) Finalize(ctx context.Context, jid string, cause string) error {\n\tres, err := at.col.UpdateOne(ctx, bson.M{\"_id\": jid}, bson.M{\n\t\t\"$set\": bson.M{\n\t\t\t\"active\": false,\n\t\t\t\"cause\":  cause,\n\t\t},\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (at *ArchiveTracking) Reschedule(ctx context.Context, jid string, dur time.Duration, cause string) error {\n\treadyAt := time.Now().Add(dur)\n\tres, err := at.col.UpdateOne(ctx, bson.M{\"_id\": jid}, bson.M{\n\t\t\"$set\": bson.M{\n\t\t\t\"ready_at\": readyAt,\n\t\t\t\"cause\":    cause,\n\t\t},\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc cast(ta *trackedJob) (*TrackedJob, error) {\n\ttj := &TrackedJob{\n\t\tJID:       ta.JID,\n\t\tType:      ta.Type,\n\t\tDbID:      ta.DbID,\n\t\tDbToken:   ta.DbToken,\n\t\tBucketKey: ta.BucketKey,\n\t\tReadyAt:   ta.ReadyAt,\n\t\tCause:     ta.Cause,\n\t\tActive:    ta.Active,\n\t\tPowToken:  ta.PowToken,\n\t\tAccKey:    ta.AccKey,\n\t}\n\n\tvar err error\n\tif len(ta.BucketRoot) > 0 {\n\t\ttj.BucketRoot, err = cid.Cast(ta.BucketRoot)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"casting bucket root: %s\", err)\n\t\t}\n\t}\n\tif len(ta.Owner) > 0 {\n\t\towner := &thread.Libp2pPubKey{}\n\t\terr = owner.UnmarshalBinary(ta.Owner)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"unmarshaling public key: %s\", err)\n\t\t}\n\t\ttj.Owner = owner\n\t}\n\n\treturn tj, nil\n}\n\nfunc castSlice(tas []*trackedJob) ([]*TrackedJob, error) {\n\tret := make([]*TrackedJob, len(tas))\n\tfor i, ta := range tas {\n\t\tcastedTA, err := cast(ta)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"casting tracked archive slice: %s\", err)\n\t\t}\n\t\tret[i] = castedTA\n\t}\n\treturn ret, nil\n}\n"
  },
  {
    "path": "mongodb/archivetracking_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestArchiveTracking_Create(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewArchiveTracking(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tctx := context.Background()\n\tdbID := thread.NewIDV1(thread.Raw, 16)\n\tdbToken := thread.Token(\"token\")\n\tbucketKey := \"buckKey\"\n\tjid := \"jobID1\"\n\tbucketRoot, _ := cid.Decode(\"QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D\")\n\t_, key, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.CreateArchive(ctx, dbID, dbToken, bucketKey, jid, bucketRoot, thread.NewLibp2pPubKey(key))\n\trequire.NoError(t, err)\n}\n\nfunc TestArchiveTracking_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewArchiveTracking(context.Background(), db)\n\trequire.NoError(t, err)\n\tctx := context.Background()\n\n\tdbID := thread.NewIDV1(thread.Raw, 16)\n\tdbToken := thread.Token(\"token\")\n\tbucketKey := \"buckKey\"\n\tjid := \"jobID1\"\n\tbucketRoot, _ := cid.Decode(\"QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D\")\n\t_, key, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.CreateArchive(ctx, dbID, dbToken, bucketKey, jid, bucketRoot, thread.NewLibp2pPubKey(key))\n\trequire.NoError(t, err)\n\n\tta, err := col.Get(ctx, jid)\n\trequire.NoError(t, err)\n\trequire.Equal(t, jid, ta.JID)\n\trequire.Equal(t, dbID, ta.DbID)\n\trequire.Equal(t, dbToken, ta.DbToken)\n\trequire.Equal(t, bucketKey, ta.BucketKey)\n\trequire.Equal(t, bucketRoot, ta.BucketRoot)\n\trequire.Equal(t, thread.NewLibp2pPubKey(key), ta.Owner)\n\trequire.True(t, time.Since(ta.ReadyAt) > 0)\n\trequire.True(t, ta.Active)\n}\n\nfunc TestArchiveTracking_GetReadyToCheck(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewArchiveTracking(context.Background(), db)\n\trequire.NoError(t, err)\n\tctx := context.Background()\n\n\ttas, err := col.GetReadyToCheck(ctx, 10)\n\trequire.NoError(t, err)\n\trequire.Equal(t, 0, len(tas))\n\n\tdbID := thread.NewIDV1(thread.Raw, 16)\n\tdbToken := thread.Token(\"token\")\n\tbucketKey := \"buckKey\"\n\tjid := \"jobID1\"\n\tbucketRoot, _ := cid.Decode(\"QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D\")\n\t_, key, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.CreateArchive(ctx, dbID, dbToken, bucketKey, jid, bucketRoot, thread.NewLibp2pPubKey(key))\n\trequire.NoError(t, err)\n\n\ttas, err = col.GetReadyToCheck(ctx, 10)\n\trequire.NoError(t, err)\n\trequire.Equal(t, 1, len(tas))\n\trequire.Equal(t, jid, tas[0].JID)\n\trequire.Equal(t, dbID, tas[0].DbID)\n\trequire.Equal(t, dbToken, tas[0].DbToken)\n\trequire.Equal(t, bucketKey, tas[0].BucketKey)\n\trequire.Equal(t, bucketRoot, tas[0].BucketRoot)\n\trequire.Equal(t, thread.NewLibp2pPubKey(key), tas[0].Owner)\n\trequire.True(t, time.Since(tas[0].ReadyAt) > 0)\n\trequire.True(t, tas[0].Active)\n}\n\nfunc TestArchiveTracking_Finalize(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewArchiveTracking(context.Background(), db)\n\trequire.NoError(t, err)\n\tctx := context.Background()\n\tdbID := thread.NewIDV1(thread.Raw, 16)\n\tdbToken := thread.Token(\"token\")\n\tbucketKey := \"buckKey\"\n\tjid := \"jobID1\"\n\tbucketRoot, _ := cid.Decode(\"QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D\")\n\t_, key, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.CreateArchive(ctx, dbID, dbToken, bucketKey, jid, bucketRoot, thread.NewLibp2pPubKey(key))\n\trequire.NoError(t, err)\n\n\tcause := \"all good\"\n\terr = col.Finalize(ctx, jid, cause)\n\trequire.NoError(t, err)\n\n\tta, err := col.Get(ctx, jid)\n\trequire.NoError(t, err)\n\trequire.False(t, ta.Active)\n\trequire.Equal(t, cause, ta.Cause)\n\n\ttas, err := col.GetReadyToCheck(ctx, 10)\n\trequire.NoError(t, err)\n\trequire.Equal(t, 0, len(tas))\n}\n\nfunc TestArchiveTracking_Reschedule(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewArchiveTracking(context.Background(), db)\n\trequire.NoError(t, err)\n\tctx := context.Background()\n\n\tdbID := thread.NewIDV1(thread.Raw, 16)\n\tdbToken := thread.Token(\"token\")\n\tbucketKey := \"buckKey\"\n\tjid := \"jobID1\"\n\tbucketRoot, _ := cid.Decode(\"QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D\")\n\t_, key, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\terr = col.CreateArchive(ctx, dbID, dbToken, bucketKey, jid, bucketRoot, thread.NewLibp2pPubKey(key))\n\trequire.NoError(t, err)\n\n\terr = col.Reschedule(ctx, jid, time.Hour+time.Second*5, \"retry me\")\n\trequire.NoError(t, err)\n\n\tta, err := col.Get(ctx, jid)\n\trequire.NoError(t, err)\n\trequire.True(t, time.Until(ta.ReadyAt) > time.Hour)\n\trequire.True(t, ta.Active)\n\n}\n"
  },
  {
    "path": "mongodb/bucketarchives.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\ntype BucketArchive struct {\n\tBucketKey            string         `bson:\"_id\"`\n\tArchives             Archives       `bson:\"archives\"`\n\tDefaultArchiveConfig *ArchiveConfig `bson:\"default_archive_config\"`\n}\n\ntype Archives struct {\n\tCurrent Archive   `bson:\"current\"`\n\tHistory []Archive `bson:\"history\"`\n}\n\ntype Archive struct {\n\tCid        []byte     `bson:\"cid\"`\n\tJobID      string     `bson:\"job_id\"`\n\tStatus     int        `bson:\"status\"`\n\tAborted    bool       `bson:\"aborted\"`\n\tAbortedMsg string     `bson:\"aborted_msg\"`\n\tFailureMsg string     `bson:\"failure_msg\"`\n\tCreatedAt  int64      `bson:\"created_at\"`\n\tDealInfo   []DealInfo `bson:\"deal_info\"`\n}\n\ntype DealInfo struct {\n\tProposalCid string `bson:\"proposal_cid\"`\n\tStateID     uint64 `bson:\"state_id\"`\n\tStateName   string `bson:\"state_name\"`\n\tMiner       string `bson:\"miner\"`\n\n\tPieceCID string `bson:\"piece_cid\"`\n\tSize     uint64 `bson:\"size\"`\n\n\tPricePerEpoch uint64 `bson:\"price_per_epoch\"`\n\tStartEpoch    uint64 `bson:\"start_epoch\"`\n\tDuration      uint64 `bson:\"duration\"`\n\n\tDealID          uint64 `bson:\"deal_id\"`\n\tActivationEpoch int64  `bson:\"activation_epoch\"`\n\tMessage         string `bson:\"message\"`\n}\n\n// ArchiveConfig is the desired state of a Cid in the Filecoin network.\ntype ArchiveConfig struct {\n\t// RepFactor (ignored in Filecoin mainnet) indicates the desired amount of active deals\n\t// with different miners to store the data. While making deals\n\t// the other attributes of FilConfig are considered for miner selection.\n\tRepFactor int `bson:\"rep_factor\"`\n\t// DealMinDuration indicates the duration to be used when making new deals.\n\tDealMinDuration int64 `bson:\"deal_min_duration\"`\n\t// ExcludedMiners (ignored in Filecoin mainnet) is a set of miner addresses won't be ever be selected\n\t// when making new deals, even if they comply to other filters.\n\tExcludedMiners []string `bson:\"excluded_miners\"`\n\t// TrustedMiners (ignored in Filecoin mainnet) is a set of miner addresses which will be forcibly used\n\t// when making new deals. An empty/nil list disables this feature.\n\tTrustedMiners []string `bson:\"trusted_miners\"`\n\t// CountryCodes (ignored in Filecoin mainnet) indicates that new deals should select miners on specific\n\t// countries.\n\tCountryCodes []string `bson:\"country_codes\"`\n\t// Renew indicates deal-renewal configuration.\n\tRenew ArchiveRenew `bson:\"renew\"`\n\t// MaxPrice is the maximum price that will be spent to store the data\n\tMaxPrice uint64 `bson:\"max_price\"`\n\t// FastRetrieval indicates that created deals should enable the\n\t// fast retrieval feature.\n\tFastRetrieval bool `bson:\"fast_retrieval\"`\n\t// DealStartOffset indicates how many epochs in the future impose a\n\t// deadline to new deals being active on-chain. This value might influence\n\t// if miners accept deals, since they should seal fast enough to satisfy\n\t// this constraint.\n\tDealStartOffset int64 `bson:\"deal_start_offset\"`\n\t// VerifiedDeal indicates that new deals should be marked as verified,\n\t// assuming the wallet address has enough data-cap.\n\tVerifiedDeal bool `bson:\"verified_deal\"`\n}\n\n// ArchiveRenew contains renew configuration for a ArchiveConfig.\ntype ArchiveRenew struct {\n\t// Enabled indicates that deal-renewal is enabled for this Cid.\n\tEnabled bool `bson:\"enabled\"`\n\t// Threshold indicates how many epochs before expiring should trigger\n\t// deal renewal. e.g: 100 epoch before expiring.\n\tThreshold int `bson:\"threshold\"`\n}\n\ntype BucketArchives struct {\n\tcol *mongo.Collection\n}\n\nfunc NewBucketArchives(_ context.Context, db *mongo.Database) (*BucketArchives, error) {\n\ts := &BucketArchives{col: db.Collection(\"bucketarchives\")}\n\treturn s, nil\n}\n\nfunc (k *BucketArchives) Create(ctx context.Context, bucketKey string) (*BucketArchive, error) {\n\tba := &BucketArchive{\n\t\tBucketKey: bucketKey,\n\t}\n\t_, err := k.col.InsertOne(ctx, ba)\n\treturn ba, err\n}\n\nfunc (k *BucketArchives) Replace(ctx context.Context, ba *BucketArchive) error {\n\tres, err := k.col.ReplaceOne(ctx, bson.M{\"_id\": ba.BucketKey}, ba)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (k *BucketArchives) GetOrCreate(ctx context.Context, bucketKey string) (*BucketArchive, error) {\n\tres := k.col.FindOne(ctx, bson.M{\"_id\": bucketKey})\n\tif res.Err() != nil {\n\t\tif res.Err() == mongo.ErrNoDocuments {\n\t\t\treturn k.Create(ctx, bucketKey)\n\t\t} else {\n\t\t\treturn nil, res.Err()\n\t\t}\n\t}\n\tvar doc BucketArchive\n\tif err := res.Decode(&doc); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &doc, nil\n}\n"
  },
  {
    "path": "mongodb/bucketarchives_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/stretchr/testify/require\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestBucketArchives_Create(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewBucketArchives(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tres, err := col.Create(context.Background(), \"buckkey1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, \"buckkey1\", res.BucketKey)\n}\n\nfunc TestBucketArchives_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewBucketArchives(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tres, err := col.Create(context.Background(), \"buckkey1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, \"buckkey1\", res.BucketKey)\n\n\tgot, err := col.GetOrCreate(context.Background(), \"buckkey1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, \"buckkey1\", got.BucketKey)\n}\n\nfunc TestBucketArchives_Replace(t *testing.T) {\n\tctx := context.Background()\n\tdb := newDB(t)\n\tcol, err := NewBucketArchives(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tres, err := col.Create(context.Background(), \"buckkey1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, \"buckkey1\", res.BucketKey)\n\n\tba, err := col.GetOrCreate(context.Background(), \"buckkey1\")\n\trequire.NoError(t, err)\n\n\tc1, _ := cid.Decode(\"QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D\")\n\tc2, _ := cid.Decode(\"QmU7gJi6Bz3jrvbuVfB7zzXStLJrTHf6vWh8ZqkCsTGoRC\")\n\tba.Archives.Current = Archive{\n\t\tCid:       c1.Bytes(),\n\t\tJobID:     \"JobID1\",\n\t\tStatus:    123,\n\t\tCreatedAt: time.Now().Unix(),\n\t}\n\tba.Archives.History = []Archive{\n\t\t{\n\t\t\tCid:       c2.Bytes(),\n\t\t\tJobID:     \"JobID2\",\n\t\t\tStatus:    456,\n\t\t\tCreatedAt: time.Now().Add(time.Hour * -24).Unix(),\n\t\t},\n\t}\n\terr = col.Replace(ctx, ba)\n\trequire.NoError(t, err)\n\n\tba2, err := col.GetOrCreate(context.Background(), \"buckkey1\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, ba, ba2)\n}\n"
  },
  {
    "path": "mongodb/collections.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/textileio/textile/v2/mongodb/migrations\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nconst (\n\ttokenLen = 44\n\n\tDuplicateErrMsg = \"E11000 duplicate key error\"\n)\n\ntype ctxKey string\n\ntype Collections struct {\n\tm *mongo.Client\n\n\tSessions *Sessions\n\tAccounts *Accounts\n\tInvites  *Invites\n\n\tThreads         *Threads\n\tAPIKeys         *APIKeys\n\tIPNSKeys        *IPNSKeys\n\tBucketArchives  *BucketArchives\n\tArchiveTracking *ArchiveTracking\n}\n\n// NewCollections gets or create store instances for active collections.\nfunc NewCollections(ctx context.Context, uri, database string, hub bool) (*Collections, error) {\n\tclient, err := mongo.Connect(ctx, options.Client().ApplyURI(uri))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdb := client.Database(database)\n\tif err = migrations.Migrate(db); err != nil {\n\t\treturn nil, err\n\t}\n\tc := &Collections{m: client}\n\tif hub {\n\t\tc.Sessions, err = NewSessions(ctx, db)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tc.Accounts, err = NewAccounts(ctx, db)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tc.Invites, err = NewInvites(ctx, db)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tc.Threads, err = NewThreads(ctx, db)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tc.APIKeys, err = NewAPIKeys(ctx, db)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tc.ArchiveTracking, err = NewArchiveTracking(ctx, db)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tc.IPNSKeys, err = NewIPNSKeys(ctx, db)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tc.BucketArchives, err = NewBucketArchives(ctx, db)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn c, nil\n}\n\nfunc (c *Collections) Close() error {\n\tctx, cancel := context.WithTimeout(context.Background(), time.Second*5)\n\tdefer cancel()\n\treturn c.m.Disconnect(ctx)\n}\n"
  },
  {
    "path": "mongodb/collections_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"os\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-ds-mongo/test\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = test.StartMongoDB()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\nfunc newDB(t *testing.T) *mongo.Database {\n\tctx, cancel := context.WithCancel(context.Background())\n\tm, err := mongo.Connect(ctx, options.Client().ApplyURI(test.GetMongoUri()))\n\trequire.NoError(t, err)\n\tdb := m.Database(util.MakeToken(12))\n\n\tt.Cleanup(func() {\n\t\terr := db.Drop(ctx)\n\t\trequire.NoError(t, err)\n\t\terr = m.Disconnect(ctx)\n\t\trequire.NoError(t, err)\n\t\tcancel()\n\t})\n\treturn db\n}\n"
  },
  {
    "path": "mongodb/common.go",
    "content": "package mongodb\n\nimport (\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n)\n\ntype PowInfo struct {\n\tID    string\n\tToken string\n}\n\nconst (\n\tkey      = \"pow_info\"\n\tidKey    = \"id\"\n\ttokenKey = \"token\"\n)\n\nfunc encodePowInfo(data bson.M, powInfo *PowInfo) {\n\tif powInfo != nil {\n\t\tdata[key] = bson.M{\n\t\t\tidKey:    powInfo.ID,\n\t\t\ttokenKey: powInfo.Token,\n\t\t}\n\t}\n}\n\nfunc decodePowInfo(raw primitive.M) *PowInfo {\n\tvar powInfo *PowInfo\n\tif v, ok := raw[key]; ok {\n\t\tpowInfo = &PowInfo{}\n\t\traw := v.(bson.M)\n\t\tif v, ok := raw[idKey]; ok {\n\t\t\tpowInfo.ID = v.(string)\n\t\t}\n\t\tif v, ok := raw[tokenKey]; ok {\n\t\t\tpowInfo.Token = v.(string)\n\t\t}\n\t}\n\treturn powInfo\n}\n"
  },
  {
    "path": "mongodb/invites.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\nconst (\n\tinviteDur = time.Hour * 24 * 7 * 30\n)\n\ntype Invite struct {\n\tToken     string\n\tOrg       string\n\tFrom      thread.PubKey\n\tEmailTo   string\n\tAccepted  bool\n\tExpiresAt time.Time\n}\n\ntype Invites struct {\n\tcol *mongo.Collection\n}\n\nfunc NewInvites(ctx context.Context, db *mongo.Database) (*Invites, error) {\n\ti := &Invites{col: db.Collection(\"invites\")}\n\t_, err := i.col.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"org\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"from_id\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"email_to\", Value: 1}},\n\t\t},\n\t})\n\treturn i, err\n}\n\nfunc (i *Invites) Create(ctx context.Context, from thread.PubKey, org, emailTo string) (*Invite, error) {\n\tdoc := &Invite{\n\t\tToken:     util.MakeToken(tokenLen),\n\t\tOrg:       org,\n\t\tFrom:      from,\n\t\tEmailTo:   emailTo,\n\t\tAccepted:  false,\n\t\tExpiresAt: time.Now().Add(inviteDur),\n\t}\n\tfromID, err := from.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := i.col.InsertOne(ctx, bson.M{\n\t\t\"_id\":        doc.Token,\n\t\t\"org\":        doc.Org,\n\t\t\"from_id\":    fromID,\n\t\t\"email_to\":   doc.EmailTo,\n\t\t\"accepted\":   doc.Accepted,\n\t\t\"expires_at\": doc.ExpiresAt,\n\t}); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (i *Invites) Get(ctx context.Context, token string) (*Invite, error) {\n\tres := i.col.FindOne(ctx, bson.M{\"_id\": token})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeInvite(raw)\n}\n\nfunc (i *Invites) ListByEmail(ctx context.Context, email string) ([]Invite, error) {\n\tcursor, err := i.col.Find(ctx, bson.M{\"email_to\": email})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []Invite\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeInvite(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (i *Invites) Accept(ctx context.Context, token string) error {\n\tres, err := i.col.UpdateOne(ctx, bson.M{\"_id\": token}, bson.M{\"$set\": bson.M{\"accepted\": true}})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (i *Invites) Delete(ctx context.Context, token string) error {\n\tres, err := i.col.DeleteOne(ctx, bson.M{\"_id\": token})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.DeletedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (i *Invites) DeleteByFrom(ctx context.Context, from thread.PubKey) error {\n\tfromID, err := from.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = i.col.DeleteMany(ctx, bson.M{\"from_id\": fromID})\n\treturn err\n}\n\nfunc (i *Invites) DeleteByOrg(ctx context.Context, org string) error {\n\t_, err := i.col.DeleteMany(ctx, bson.M{\"org\": org})\n\treturn err\n}\n\nfunc (i *Invites) DeleteByFromAndOrg(ctx context.Context, from thread.PubKey, org string) error {\n\tfromID, err := from.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = i.col.DeleteMany(ctx, bson.M{\"from_id\": fromID, \"org\": org})\n\treturn err\n}\n\nfunc decodeInvite(raw bson.M) (*Invite, error) {\n\tfrom := &thread.Libp2pPubKey{}\n\terr := from.UnmarshalBinary(raw[\"from_id\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar expiry time.Time\n\tif v, ok := raw[\"expires_at\"]; ok {\n\t\texpiry = v.(primitive.DateTime).Time()\n\t}\n\treturn &Invite{\n\t\tToken:     raw[\"_id\"].(string),\n\t\tOrg:       raw[\"org\"].(string),\n\t\tFrom:      from,\n\t\tEmailTo:   raw[\"email_to\"].(string),\n\t\tAccepted:  raw[\"accepted\"].(bool),\n\t\tExpiresAt: expiry,\n\t}, nil\n}\n"
  },
  {
    "path": "mongodb/invites_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestInvites_Create(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\tassert.True(t, created.ExpiresAt.After(time.Now()))\n}\n\nfunc TestInvites_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(context.Background(), created.Token)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Token, got.Token)\n}\n\nfunc TestInvites_ListByEmail(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tlist, err := col.ListByEmail(context.Background(), \"jane@doe.com\")\n\trequire.NoError(t, err)\n\trequire.Empty(t, list)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\n\tlist, err = col.ListByEmail(context.Background(), \"jane@doe.com\")\n\trequire.NoError(t, err)\n\trequire.Equal(t, 1, len(list))\n\trequire.Equal(t, created.Token, list[0].Token)\n}\n\nfunc TestInvites_Accept(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\tassert.False(t, created.Accepted)\n\n\terr = col.Accept(context.Background(), created.Token)\n\trequire.NoError(t, err)\n\tgot, err := col.Get(context.Background(), created.Token)\n\trequire.NoError(t, err)\n\tassert.True(t, got.Accepted)\n}\n\nfunc TestInvites_Delete(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\n\terr = col.Delete(context.Background(), created.Token)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.Token)\n\trequire.Error(t, err)\n}\n\nfunc TestInvites_DeleteByFrom(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\n\terr = col.DeleteByFrom(context.Background(), created.From)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.Token)\n\trequire.Error(t, err)\n}\n\nfunc TestInvites_DeleteByOrg(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\n\terr = col.DeleteByOrg(context.Background(), created.Org)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.Token)\n\trequire.Error(t, err)\n}\n\nfunc TestInvites_DeleteByFromAndOrg(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewInvites(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, from, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(from), \"myorg\", \"jane@doe.com\")\n\trequire.NoError(t, err)\n\n\terr = col.DeleteByFromAndOrg(context.Background(), thread.NewLibp2pPubKey(from), created.Org)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.Token)\n\trequire.Error(t, err)\n}\n"
  },
  {
    "path": "mongodb/ipnskeys.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\ntype IPNSKey struct {\n\tName      string\n\tCid       string\n\tPath      string\n\tThreadID  thread.ID\n\tCreatedAt time.Time\n}\n\ntype IPNSKeys struct {\n\tcol *mongo.Collection\n}\n\nfunc NewIPNSKeys(ctx context.Context, db *mongo.Database) (*IPNSKeys, error) {\n\tk := &IPNSKeys{col: db.Collection(\"ipnskeys\")}\n\t_, err := k.col.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"cid\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"thread_id\", Value: 1}},\n\t\t},\n\t})\n\treturn k, err\n}\n\nfunc (k *IPNSKeys) Create(ctx context.Context, name, cid string, threadID thread.ID, pth string) error {\n\t_, err := k.col.InsertOne(ctx, bson.M{\n\t\t\"_id\":        name,\n\t\t\"cid\":        cid,\n\t\t\"path\":       pth,\n\t\t\"thread_id\":  threadID.Bytes(),\n\t\t\"created_at\": time.Now(),\n\t})\n\treturn err\n}\n\nfunc (k *IPNSKeys) Get(ctx context.Context, name string) (*IPNSKey, error) {\n\tres := k.col.FindOne(ctx, bson.M{\"_id\": name})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeIPNSKey(raw)\n}\n\nfunc (k *IPNSKeys) GetByCid(ctx context.Context, cid string) (*IPNSKey, error) {\n\tres := k.col.FindOne(ctx, bson.M{\"cid\": cid})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeIPNSKey(raw)\n}\n\nfunc (k *IPNSKeys) ListByThreadID(ctx context.Context, threadID thread.ID) ([]IPNSKey, error) {\n\tcursor, err := k.col.Find(ctx, bson.M{\"thread_id\": threadID.Bytes()})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []IPNSKey\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeIPNSKey(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (k *IPNSKeys) List(ctx context.Context) ([]IPNSKey, error) {\n\tcursor, err := k.col.Find(ctx, bson.M{})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []IPNSKey\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeIPNSKey(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\n// SetPath updates the latest path for the ipnskey\nfunc (k *IPNSKeys) SetPath(ctx context.Context, pth string, name string) error {\n\tres, err := k.col.UpdateOne(\n\t\tctx,\n\t\tbson.M{\"_id\": name},\n\t\tbson.D{{\"$set\", bson.D{{\"path\", pth}}}},\n\t)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (k *IPNSKeys) Delete(ctx context.Context, name string) error {\n\tres, err := k.col.DeleteOne(ctx, bson.M{\"_id\": name})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.DeletedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc decodeIPNSKey(raw bson.M) (*IPNSKey, error) {\n\tthreadID, err := thread.Cast(raw[\"thread_id\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar created time.Time\n\tif v, ok := raw[\"created_at\"]; ok {\n\t\tcreated = v.(primitive.DateTime).Time()\n\t}\n\treturn &IPNSKey{\n\t\tName:      raw[\"_id\"].(string),\n\t\tCid:       raw[\"cid\"].(string),\n\t\tPath:      raw[\"path\"].(string),\n\t\tThreadID:  threadID,\n\t\tCreatedAt: created,\n\t}, nil\n}\n"
  },
  {
    "path": "mongodb/ipnskeys_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestIPNSKeys_Create(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewIPNSKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\terr = col.Create(context.Background(), \"foo\", \"cid\", thread.NewIDV1(thread.Raw, 32), \"path\")\n\trequire.NoError(t, err)\n}\n\nfunc TestIPNSKeys_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewIPNSKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tthreadID := thread.NewIDV1(thread.Raw, 32)\n\terr = col.Create(context.Background(), \"foo\", \"cid\", threadID, \"path\")\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(context.Background(), \"foo\")\n\trequire.NoError(t, err)\n\tassert.Equal(t, \"cid\", got.Cid)\n\tassert.Equal(t, \"path\", got.Path)\n\tassert.Equal(t, threadID, got.ThreadID)\n}\n\nfunc TestIPNSKeys_GetByCid(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewIPNSKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tthreadID := thread.NewIDV1(thread.Raw, 32)\n\terr = col.Create(context.Background(), \"foo\", \"cid\", threadID, \"path\")\n\trequire.NoError(t, err)\n\n\tgot, err := col.GetByCid(context.Background(), \"cid\")\n\trequire.NoError(t, err)\n\tassert.Equal(t, \"foo\", got.Name)\n\tassert.Equal(t, \"path\", got.Path)\n\tassert.Equal(t, threadID, got.ThreadID)\n}\n\nfunc TestIPNSKeys_SetPath(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewIPNSKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tthreadID := thread.NewIDV1(thread.Raw, 32)\n\terr = col.Create(context.Background(), \"foo\", \"cid\", threadID, \"path\")\n\trequire.NoError(t, err)\n\n\terr = col.SetPath(context.Background(), \"path2\", \"foo\")\n\trequire.NoError(t, err)\n\n\terr = col.SetPath(context.Background(), \"path2\", \"notfoo\")\n\trequire.Error(t, err)\n\n\tgot, err := col.GetByCid(context.Background(), \"cid\")\n\trequire.NoError(t, err)\n\n\tassert.Equal(t, \"foo\", got.Name)\n\tassert.Equal(t, \"path2\", got.Path)\n\tassert.Equal(t, threadID, got.ThreadID)\n}\n\nfunc TestIPNSKeys_ListByThreadID(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewIPNSKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\tthreadID := thread.NewIDV1(thread.Raw, 32)\n\terr = col.Create(context.Background(), \"foo1\", \"cid1\", threadID, \"path1\")\n\trequire.NoError(t, err)\n\terr = col.Create(context.Background(), \"foo2\", \"cid2\", threadID, \"path2\")\n\trequire.NoError(t, err)\n\n\tlist1, err := col.ListByThreadID(context.Background(), threadID)\n\trequire.NoError(t, err)\n\tassert.Equal(t, 2, len(list1))\n\n\tlist2, err := col.ListByThreadID(context.Background(), thread.NewIDV1(thread.Raw, 32))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, len(list2))\n}\n\nfunc TestIPNSKeys_Delete(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewIPNSKeys(context.Background(), db)\n\trequire.NoError(t, err)\n\n\terr = col.Create(context.Background(), \"foo\", \"cid\", thread.NewIDV1(thread.Raw, 32), \"path\")\n\trequire.NoError(t, err)\n\n\terr = col.Delete(context.Background(), \"foo\")\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), \"foo\")\n\trequire.Error(t, err)\n}\n"
  },
  {
    "path": "mongodb/migrations/migrations.go",
    "content": "package migrations\n\nimport (\n\t\"context\"\n\t\"strings\"\n\t\"time\"\n\n\tlogging \"github.com/ipfs/go-log/v2\"\n\tmigrate \"github.com/xakep666/mongo-migrate\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nvar (\n\tlog            = logging.Logger(\"migrations\")\n\tmigrateTimeout = time.Hour\n)\n\nvar m001 = migrate.Migration{\n\tVersion:     1,\n\tDescription: \"make accounts username index sparse\",\n\tUp: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 001 up\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tcount, err := db.Collection(\"accounts\").CountDocuments(ctx, bson.M{})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif count == 0 {\n\t\t\treturn nil // namespace doesn't exist\n\t\t}\n\t\t_, err = db.Collection(\"accounts\").Indexes().DropOne(ctx, \"username_1\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = db.Collection(\"accounts\").Indexes().CreateOne(ctx, mongo.IndexModel{\n\t\t\tKeys: bson.D{{\"username\", 1}},\n\t\t\tOptions: options.Index().\n\t\t\t\tSetUnique(true).\n\t\t\t\tSetCollation(&options.Collation{Locale: \"en\", Strength: 2}).\n\t\t\t\tSetSparse(true),\n\t\t})\n\t\treturn err\n\t},\n\tDown: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 001 down\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tcount, err := db.Collection(\"accounts\").CountDocuments(ctx, bson.M{})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif count == 0 {\n\t\t\treturn nil // namespace doesn't exist\n\t\t}\n\t\t_, err = db.Collection(\"accounts\").Indexes().DropOne(ctx, \"username_1\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = db.Collection(\"accounts\").Indexes().CreateOne(ctx, mongo.IndexModel{\n\t\t\tKeys: bson.D{{\"username\", 1}},\n\t\t\tOptions: options.Index().\n\t\t\t\tSetUnique(true).\n\t\t\t\tSetCollation(&options.Collation{Locale: \"en\", Strength: 2}),\n\t\t})\n\t\treturn err\n\t},\n}\n\nvar m002 = migrate.Migration{\n\tVersion:     2,\n\tDescription: \"consolidate users and accounts\",\n\tUp: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 002 up\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tcursor, err := db.Collection(\"users\").Find(ctx, bson.M{})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tdefer cursor.Close(ctx)\n\t\tfor cursor.Next(ctx) {\n\t\t\tvar user bson.M\n\t\t\tif err := cursor.Decode(&user); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tuser[\"type\"] = 2\n\t\t\t_, err := db.Collection(\"accounts\").InsertOne(ctx, user)\n\t\t\tif err != nil {\n\t\t\t\tif !strings.Contains(err.Error(), \"E11000 duplicate key error\") {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif cursor.Err() != nil {\n\t\t\treturn cursor.Err()\n\t\t}\n\t\treturn db.Collection(\"users\").Drop(ctx)\n\t},\n\tDown: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 002 down\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tcursor, err := db.Collection(\"accounts\").Find(ctx, bson.M{})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tdefer cursor.Close(ctx)\n\t\tfor cursor.Next(ctx) {\n\t\t\tvar account bson.M\n\t\t\tif err := cursor.Decode(&account); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif v, ok := account[\"type\"]; ok && v.(int32) == 2 {\n\t\t\t\tdelete(account, \"type\")\n\t\t\t\t_, err := db.Collection(\"users\").InsertOne(ctx, account)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\t_, err = db.Collection(\"accounts\").DeleteOne(ctx, bson.M{\"_id\": account[\"_id\"]})\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn cursor.Err()\n\t},\n}\n\nvar m003 = migrate.Migration{\n\tVersion:     3,\n\tDescription: \"remove buckets_total_size from accounts\",\n\tUp: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 003 up\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\t_, err := db.Collection(\"accounts\").UpdateMany(ctx, bson.M{\n\t\t\t\"buckets_total_size\": bson.M{\"$exists\": 1},\n\t\t}, bson.M{\n\t\t\t\"$unset\": bson.M{\"buckets_total_size\": 1},\n\t\t})\n\t\treturn err\n\t},\n\tDown: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 003 down\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\t_, err := db.Collection(\"accounts\").UpdateMany(ctx, bson.M{}, bson.M{\n\t\t\t\"$set\": bson.M{\"buckets_total_size\": 0},\n\t\t})\n\t\treturn err\n\t},\n}\n\nvar m004 = migrate.Migration{\n\tVersion:     4,\n\tDescription: \"set empty path field on all ipnskeys\",\n\tUp: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 004 up\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\t_, err := db.Collection(\"ipnskeys\").UpdateMany(ctx, bson.M{}, bson.M{\n\t\t\t\"$set\": bson.M{\"path\": \"\"},\n\t\t})\n\t\treturn err\n\t},\n\tDown: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 004 down\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\t_, err := db.Collection(\"ipnskeys\").UpdateMany(ctx, bson.M{\n\t\t\t\"path\": bson.M{\"$exists\": 1},\n\t\t}, bson.M{\n\t\t\t\"$unset\": bson.M{\"path\": 1},\n\t\t})\n\t\treturn err\n\n\t},\n}\n\nvar m005 = migrate.Migration{\n\tVersion:     5,\n\tDescription: \"rename any bucket archive job_status to status\",\n\tUp: func(db *mongo.Database) error {\n\t\tlog.Info(\"migrating 005 up\")\n\t\tctx, cancel := context.WithTimeout(context.Background(), migrateTimeout)\n\t\tdefer cancel()\n\t\tif _, err := db.Collection(\"bucketarchives\").UpdateMany(ctx, bson.M{}, bson.M{\n\t\t\t\"$rename\": bson.M{\"archives.current.job_status\": \"archives.current.status\"},\n\t\t}); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif _, err := db.Collection(\"bucketarchives\").Aggregate(ctx, mongo.Pipeline{\n\t\t\tbson.D{primitive.E{Key: \"$addFields\", Value: bson.M{\n\t\t\t\t\"archives.history\": bson.M{\n\t\t\t\t\t\"$map\": bson.M{\n\t\t\t\t\t\t\"input\": \"$archives.history\",\n\t\t\t\t\t\t\"as\":    \"archive\",\n\t\t\t\t\t\t\"in\": bson.M{\n\t\t\t\t\t\t\t\"$mergeObjects\": bson.A{\n\t\t\t\t\t\t\t\tbson.M{\"status\": \"$$archive.job_status\"},\n\t\t\t\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\t\t\t\"$arrayToObject\": bson.M{\n\t\t\t\t\t\t\t\t\t\t\"$filter\": bson.M{\n\t\t\t\t\t\t\t\t\t\t\t\"input\": bson.M{\"$objectToArray\": \"$$archive\"},\n\t\t\t\t\t\t\t\t\t\t\t\"as\":    \"archive\",\n\t\t\t\t\t\t\t\t\t\t\t\"cond\":  bson.M{\"$ne\": bson.A{\"$$archive.k\", \"job_status\"}},\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}}},\n\t\t\tbson.D{\n\t\t\t\tprimitive.E{Key: \"$out\", Value: \"bucketarchives\"},\n\t\t\t},\n\t\t}); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t},\n\tDown: func(db *mongo.Database) error {\n\t\tlog.Info(\"nothing to do for 005 down\")\n\t\treturn nil\n\t},\n}\n\nfunc Migrate(db *mongo.Database) error {\n\tm := migrate.NewMigrate(\n\t\tdb,\n\t\tm001,\n\t\tm002,\n\t\tm003,\n\t\tm004,\n\t\tm005,\n\t)\n\treturn m.Up(migrate.AllAvailable)\n}\n"
  },
  {
    "path": "mongodb/migrations/migrations_test.go",
    "content": "package migrations\n\nimport (\n\t\"context\"\n\t\"os\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-ds-mongo/test\"\n\tmigrate \"github.com/xakep666/mongo-migrate\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nfunc TestMain(m *testing.M) {\n\tcleanup := func() {}\n\tif os.Getenv(\"SKIP_SERVICES\") != \"true\" {\n\t\tcleanup = test.StartMongoDB()\n\t}\n\texitVal := m.Run()\n\tcleanup()\n\tos.Exit(exitVal)\n}\n\n// Test make accounts username index sparse\nfunc TestMigrations_m001(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\t// Preload collection\n\t_, err := db.Collection(\"accounts\").Indexes().CreateOne(ctx, mongo.IndexModel{\n\t\tKeys: bson.D{{\"username\", 1}},\n\t\tOptions: options.Index().\n\t\t\tSetUnique(true).\n\t\t\tSetCollation(&options.Collation{Locale: \"en\", Strength: 2}),\n\t})\n\trequire.NoError(t, err)\n\t_, err = db.Collection(\"accounts\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\"username\": \"one\"},\n\t\tbson.M{\"username\": \"two\"},\n\t\tbson.M{\"username\": \"three\"},\n\t})\n\trequire.NoError(t, err)\n\n\t// Test that nil username causes duplicate key error\n\tusers := []interface{}{\n\t\tbson.M{\"foo\": 1}, // nil username\n\t\tbson.M{\"bar\": 1}, // nil username\n\t}\n\t_, err = db.Collection(\"accounts\").InsertMany(ctx, users)\n\trequire.Error(t, err) // Duplicate key error\n\n\t// Run up\n\terr = migrate.NewMigrate(db, m001).Up(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\t// No duplicate key error this time\n\t_, err = db.Collection(\"accounts\").InsertMany(ctx, users)\n\trequire.NoError(t, err)\n\n\t// Clean up\n\t_, err = db.Collection(\"accounts\").DeleteMany(ctx, bson.M{})\n\trequire.NoError(t, err)\n\n\t// Run down\n\terr = migrate.NewMigrate(db, m001).Down(migrate.AllAvailable)\n\trequire.NoError(t, err)\n}\n\n// Test consolidate users and accounts\nfunc TestMigrations_m002(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\t// Preload collections\n\t_, err := db.Collection(\"accounts\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\"type\": 0, \"created_at\": time.Now()},\n\t\tbson.M{\"type\": 0, \"created_at\": time.Now()},\n\t\tbson.M{\"type\": 0, \"created_at\": time.Now()},\n\t})\n\trequire.NoError(t, err)\n\t_, err = db.Collection(\"users\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\"created_at\": time.Now()},\n\t\tbson.M{\"created_at\": time.Now()},\n\t\tbson.M{\"created_at\": time.Now()},\n\t})\n\trequire.NoError(t, err)\n\n\t// Run up\n\terr = migrate.NewMigrate(db, m002).Up(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tcount, err := db.Collection(\"accounts\").CountDocuments(ctx, bson.M{})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 6, int(count))\n\tcount, err = db.Collection(\"accounts\").CountDocuments(ctx, bson.M{\"type\": 2})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 3, int(count))\n\tcount, err = db.Collection(\"users\").CountDocuments(ctx, bson.M{})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, int(count))\n\n\t// Run down\n\terr = migrate.NewMigrate(db, m002).Down(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tcount, err = db.Collection(\"accounts\").CountDocuments(ctx, bson.M{})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 3, int(count))\n\tcount, err = db.Collection(\"users\").CountDocuments(ctx, bson.M{})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 3, int(count))\n}\n\n// Test remove buckets_total_size from accounts\nfunc TestMigrations_m003(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\t// Preload collections\n\t_, err := db.Collection(\"accounts\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\"buckets_total_size\": 1024, \"created_at\": time.Now()},\n\t})\n\trequire.NoError(t, err)\n\n\t// Run up\n\terr = migrate.NewMigrate(db, m003).Up(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tres := db.Collection(\"accounts\").FindOne(ctx, bson.M{})\n\trequire.NoError(t, res.Err())\n\tvar account bson.M\n\terr = res.Decode(&account)\n\trequire.NoError(t, err)\n\tassert.Nil(t, account[\"buckets_total_size\"])\n\n\t// Run down\n\terr = migrate.NewMigrate(db, m003).Down(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tres = db.Collection(\"accounts\").FindOne(ctx, bson.M{})\n\trequire.NoError(t, res.Err())\n\tvar account2 bson.M\n\terr = res.Decode(&account2)\n\trequire.NoError(t, err)\n\tassert.NotNil(t, account2[\"buckets_total_size\"])\n}\n\n// Test remove buckets_total_size from accounts\nfunc TestMigrations_m004(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\n\t// Preload collections\n\t_, err := db.Collection(\"ipnskeys\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\"_id\": \"name\", \"cid\": \"cid\", \"created_at\": time.Now()},\n\t})\n\trequire.NoError(t, err)\n\n\t// Run up\n\terr = migrate.NewMigrate(db, m004).Up(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tres := db.Collection(\"ipnskeys\").FindOne(ctx, bson.M{})\n\trequire.NoError(t, res.Err())\n\tvar key bson.M\n\terr = res.Decode(&key)\n\trequire.NoError(t, err)\n\tassert.NotNil(t, key[\"path\"])\n\n\t// Run down\n\terr = migrate.NewMigrate(db, m004).Down(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tres = db.Collection(\"ipnskeys\").FindOne(ctx, bson.M{})\n\trequire.NoError(t, res.Err())\n\tvar key2 bson.M\n\terr = res.Decode(&key2)\n\trequire.NoError(t, err)\n\tassert.Nil(t, key2[\"path\"])\n}\n\nfunc TestMigrations_m005(t *testing.T) {\n\tctx := context.Background()\n\tdb := setup(t, ctx)\n\t_, err := db.Collection(\"bucketarchives\").InsertMany(ctx, []interface{}{\n\t\tbson.M{\n\t\t\t\"_id\": \"id1\",\n\t\t\t\"archives\": bson.M{\n\t\t\t\t\"current\": bson.M{\n\t\t\t\t\t\"job_id\":     \"job3\",\n\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t},\n\t\t\t\t\"history\": bson.A{\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job2\",\n\t\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job1\",\n\t\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"_id\": \"id2\",\n\t\t\t\"archives\": bson.M{\n\t\t\t\t\"current\": bson.M{\n\t\t\t\t\t\"job_id\":     \"job6\",\n\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t},\n\t\t\t\t\"history\": bson.A{\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job5\",\n\t\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job4\",\n\t\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"_id\": \"id3\",\n\t\t\t\"archives\": bson.M{\n\t\t\t\t\"current\": bson.M{\n\t\t\t\t\t\"job_id\":     \"job9\",\n\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t},\n\t\t\t\t\"history\": bson.A{\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job8\",\n\t\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job7\",\n\t\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"_id\": \"id4\",\n\t\t\t\"archives\": bson.M{\n\t\t\t\t\"current\": bson.M{\n\t\t\t\t\t\"job_id\":     \"job12\",\n\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t},\n\t\t\t\t\"history\": bson.A{\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job11\",\n\t\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job10\",\n\t\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"_id\": \"id5\",\n\t\t\t\"archives\": bson.M{\n\t\t\t\t\"history\": bson.A{\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job14\",\n\t\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t\tbson.M{\n\t\t\t\t\t\t\"job_id\":     \"job13\",\n\t\t\t\t\t\t\"status\":     1,\n\t\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tbson.M{\n\t\t\t\"_id\": \"id6\",\n\t\t\t\"archives\": bson.M{\n\t\t\t\t\"current\": bson.M{\n\t\t\t\t\t\"job_id\":     \"job15\",\n\t\t\t\t\t\"job_status\": 1,\n\t\t\t\t\t\"created_at\": 1000,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t})\n\trequire.NoError(t, err)\n\n\t// Run up\n\terr = migrate.NewMigrate(db, m005).Up(migrate.AllAvailable)\n\trequire.NoError(t, err)\n\n\tcount, err := db.Collection(\"bucketarchives\").CountDocuments(ctx, bson.M{})\n\trequire.NoError(t, err)\n\tassert.Equal(t, 6, int(count))\n\tcursor, err := db.Collection(\"bucketarchives\").Find(ctx, bson.M{})\n\trequire.NoError(t, err)\n\tdefer cursor.Close(ctx)\n\n\tvalidateItem := func(item bson.M) {\n\t\trequire.NotEmpty(t, item[\"job_id\"])\n\t\trequire.Contains(t, item[\"job_id\"], \"job\")\n\t\trequire.Equal(t, 1000, int(item[\"created_at\"].(int32)))\n\t\trequire.Nil(t, item[\"job_status\"])\n\t\trequire.Equal(t, 1, int(item[\"status\"].(int32)))\n\t}\n\n\tfor cursor.Next(ctx) {\n\t\tvar item bson.M\n\t\trequire.NoError(t, cursor.Decode(&item))\n\t\trequire.NotEmpty(t, item[\"_id\"])\n\t\trequire.NotEmpty(t, item[\"archives\"])\n\t\tif item[\"_id\"] == \"id1\" || item[\"_id\"] == \"id2\" || item[\"_id\"] == \"id3\" || item[\"_id\"] == \"id4\" {\n\t\t\trequire.NotNil(t, item[\"archives\"].(bson.M)[\"current\"])\n\t\t\trequire.NotNil(t, item[\"archives\"].(bson.M)[\"history\"])\n\t\t}\n\t\tif item[\"_id\"] == \"id5\" {\n\t\t\trequire.Nil(t, item[\"archives\"].(bson.M)[\"current\"])\n\t\t\trequire.NotNil(t, item[\"archives\"].(bson.M)[\"history\"])\n\t\t}\n\t\tif item[\"_id\"] == \"id6\" {\n\t\t\trequire.NotNil(t, item[\"archives\"].(bson.M)[\"current\"])\n\t\t\trequire.Nil(t, item[\"archives\"].(bson.M)[\"history\"])\n\t\t}\n\t\tif item[\"archives\"].(bson.M)[\"current\"] != nil {\n\t\t\tvalidateItem(item[\"archives\"].(bson.M)[\"current\"].(bson.M))\n\t\t}\n\t\tif item[\"archives\"].(bson.M)[\"history\"] != nil {\n\t\t\tfor _, item := range item[\"archives\"].(bson.M)[\"history\"].(bson.A) {\n\t\t\t\tvalidateItem(item.(bson.M))\n\t\t\t}\n\t\t}\n\t}\n\trequire.NoError(t, cursor.Err())\n}\n\nfunc setup(t *testing.T, ctx context.Context) *mongo.Database {\n\tclient, err := mongo.Connect(ctx, options.Client().ApplyURI(test.GetMongoUri()))\n\trequire.NoError(t, err)\n\tdb := client.Database(\"test_textile_migrations\")\n\tt.Cleanup(func() {\n\t\terr := db.Drop(ctx)\n\t\trequire.NoError(t, err)\n\t})\n\treturn db\n}\n"
  },
  {
    "path": "mongodb/sessions.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/util\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n)\n\nconst (\n\tsessionDur = time.Hour * 24 * 7 * 30 * 6\n)\n\ntype Session struct {\n\tID        string\n\tOwner     thread.PubKey\n\tExpiresAt time.Time\n}\n\nfunc NewSessionContext(ctx context.Context, session *Session) context.Context {\n\treturn context.WithValue(ctx, ctxKey(\"session\"), session)\n}\n\nfunc SessionFromContext(ctx context.Context) (*Session, bool) {\n\tsession, ok := ctx.Value(ctxKey(\"session\")).(*Session)\n\treturn session, ok\n}\n\ntype Sessions struct {\n\tcol *mongo.Collection\n}\n\nfunc NewSessions(ctx context.Context, db *mongo.Database) (*Sessions, error) {\n\ts := &Sessions{col: db.Collection(\"sessions\")}\n\t_, err := s.col.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"developer_id\", Value: 1}},\n\t\t},\n\t})\n\treturn s, err\n}\n\nfunc (s *Sessions) Create(ctx context.Context, owner thread.PubKey) (*Session, error) {\n\tdoc := &Session{\n\t\tID:        util.MakeToken(tokenLen),\n\t\tOwner:     owner,\n\t\tExpiresAt: time.Now().Add(sessionDur),\n\t}\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif _, err := s.col.InsertOne(ctx, bson.M{\n\t\t\"_id\":        doc.ID,\n\t\t\"owner_id\":   ownerID,\n\t\t\"expires_at\": doc.ExpiresAt,\n\t}); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (s *Sessions) Get(ctx context.Context, id string) (*Session, error) {\n\tres := s.col.FindOne(ctx, bson.M{\"_id\": id})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeSession(raw)\n}\n\nfunc (s *Sessions) Touch(ctx context.Context, id string) error {\n\texpiry := time.Now().Add(sessionDur)\n\tres, err := s.col.UpdateOne(ctx, bson.M{\"_id\": id}, bson.M{\"$set\": bson.M{\"expires_at\": expiry}})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.MatchedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (s *Sessions) Delete(ctx context.Context, id string) error {\n\tres, err := s.col.DeleteOne(ctx, bson.M{\"_id\": id})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.DeletedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (s *Sessions) DeleteByOwner(ctx context.Context, owner thread.PubKey) error {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = s.col.DeleteMany(ctx, bson.M{\"owner_id\": ownerID})\n\treturn err\n}\n\nfunc decodeSession(raw bson.M) (*Session, error) {\n\towner := &thread.Libp2pPubKey{}\n\terr := owner.UnmarshalBinary(raw[\"owner_id\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar expiry time.Time\n\tif v, ok := raw[\"expires_at\"]; ok {\n\t\texpiry = v.(primitive.DateTime).Time()\n\t}\n\treturn &Session{\n\t\tID:        raw[\"_id\"].(string),\n\t\tOwner:     owner,\n\t\tExpiresAt: expiry,\n\t}, nil\n}\n"
  },
  {
    "path": "mongodb/sessions_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n)\n\nfunc TestSessions_Create(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewSessions(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\tassert.True(t, created.ExpiresAt.After(time.Now()))\n}\n\nfunc TestSessions_Get(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewSessions(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(context.Background(), created.ID)\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.ID, got.ID)\n}\n\nfunc TestSessions_Touch(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewSessions(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\n\ttime.Sleep(time.Second)\n\terr = col.Touch(context.Background(), created.ID)\n\trequire.NoError(t, err)\n\tgot, err := col.Get(context.Background(), created.ID)\n\trequire.NoError(t, err)\n\tassert.True(t, got.ExpiresAt.After(created.ExpiresAt))\n}\n\nfunc TestSessions_Delete(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewSessions(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\n\terr = col.Delete(context.Background(), created.ID)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.ID)\n\trequire.Error(t, err)\n}\n\nfunc TestSessions_DeleteByOwner(t *testing.T) {\n\tdb := newDB(t)\n\tcol, err := NewSessions(context.Background(), db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(context.Background(), thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\n\terr = col.DeleteByOwner(context.Background(), created.Owner)\n\trequire.NoError(t, err)\n\t_, err = col.Get(context.Background(), created.ID)\n\trequire.Error(t, err)\n}\n"
  },
  {
    "path": "mongodb/threads.go",
    "content": "package mongodb\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"regexp\"\n\t\"time\"\n\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"go.mongodb.org/mongo-driver/bson\"\n\t\"go.mongodb.org/mongo-driver/bson/primitive\"\n\t\"go.mongodb.org/mongo-driver/mongo\"\n\t\"go.mongodb.org/mongo-driver/mongo/options\"\n)\n\nvar (\n\tthreadNameRx *regexp.Regexp\n\n\tErrInvalidThreadName = fmt.Errorf(\"name may only contain alphanumeric characters or non-consecutive hyphens, and cannot begin or end with a hyphen\")\n)\n\nfunc init() {\n\tthreadNameRx = regexp.MustCompile(`^[A-Za-z0-9]+(?:[-][A-Za-z0-9]+)*$`)\n}\n\ntype Thread struct {\n\tID        thread.ID\n\tOwner     thread.PubKey\n\tName      string\n\tKey       string\n\tIsDB      bool\n\tCreatedAt time.Time\n}\n\ntype Threads struct {\n\tcol *mongo.Collection\n}\n\nfunc NewThreads(ctx context.Context, db *mongo.Database) (*Threads, error) {\n\tt := &Threads{col: db.Collection(\"threads\")}\n\t_, err := t.col.Indexes().CreateMany(ctx, []mongo.IndexModel{\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"_id.owner\", Value: 1}, primitive.E{Key: \"name\", Value: 1}},\n\t\t\tOptions: options.Index().SetUnique(true).\n\t\t\t\tSetPartialFilterExpression(bson.D{primitive.E{Key: \"name\", Value: bson.M{\"$exists\": 1}}}).\n\t\t\t\tSetCollation(&options.Collation{Locale: \"en\", Strength: 2}),\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"_id.thread\", Value: 1}},\n\t\t},\n\t\t{\n\t\t\tKeys: bson.D{primitive.E{Key: \"key_id\", Value: 1}},\n\t\t},\n\t})\n\treturn t, err\n}\n\nfunc (t *Threads) Create(ctx context.Context, id thread.ID, owner thread.PubKey, isDB bool) (*Thread, error) {\n\tname, _ := common.ThreadNameFromContext(ctx)\n\tif name != \"\" && !threadNameRx.MatchString(name) {\n\t\treturn nil, ErrInvalidThreadName\n\t}\n\tkey, _ := common.APIKeyFromContext(ctx)\n\tdoc := &Thread{\n\t\tID:        id,\n\t\tOwner:     owner,\n\t\tName:      name,\n\t\tKey:       key,\n\t\tIsDB:      isDB,\n\t\tCreatedAt: time.Now(),\n\t}\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\traw := bson.M{\n\t\t\"_id\":        bson.D{primitive.E{Key: \"owner\", Value: ownerID}, primitive.E{Key: \"thread\", Value: id.Bytes()}},\n\t\t\"key_id\":     doc.Key,\n\t\t\"is_db\":      doc.IsDB,\n\t\t\"created_at\": doc.CreatedAt,\n\t}\n\tif doc.Name != \"\" {\n\t\traw[\"name\"] = doc.Name\n\t}\n\tif _, err := t.col.InsertOne(ctx, raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn doc, nil\n}\n\nfunc (t *Threads) Get(ctx context.Context, id thread.ID, owner thread.PubKey) (*Thread, error) {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tres := t.col.FindOne(ctx, bson.M{\"_id\": bson.D{primitive.E{Key: \"owner\", Value: ownerID}, primitive.E{Key: \"thread\", Value: id.Bytes()}}})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeThread(raw)\n}\n\nfunc (t *Threads) GetByName(ctx context.Context, name string, owner thread.PubKey) (*Thread, error) {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tres := t.col.FindOne(ctx, bson.M{\"_id.owner\": ownerID, \"name\": name})\n\tif res.Err() != nil {\n\t\treturn nil, res.Err()\n\t}\n\tvar raw bson.M\n\tif err := res.Decode(&raw); err != nil {\n\t\treturn nil, err\n\t}\n\treturn decodeThread(raw)\n}\n\nfunc (t *Threads) ListByOwner(ctx context.Context, owner thread.PubKey) ([]Thread, error) {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tcursor, err := t.col.Find(ctx, bson.M{\"_id.owner\": ownerID})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []Thread\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeThread(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (t *Threads) ListByKey(ctx context.Context, key string) ([]Thread, error) {\n\tcursor, err := t.col.Find(ctx, bson.M{\"key_id\": key})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer cursor.Close(ctx)\n\tvar docs []Thread\n\tfor cursor.Next(ctx) {\n\t\tvar raw bson.M\n\t\tif err := cursor.Decode(&raw); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdoc, err := decodeThread(raw)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tdocs = append(docs, *doc)\n\t}\n\tif err := cursor.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn docs, nil\n}\n\nfunc (t *Threads) Delete(ctx context.Context, id thread.ID, owner thread.PubKey) error {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\tres, err := t.col.DeleteOne(ctx, bson.M{\"_id\": bson.D{primitive.E{Key: \"owner\", Value: ownerID}, primitive.E{Key: \"thread\", Value: id.Bytes()}}})\n\tif err != nil {\n\t\treturn err\n\t}\n\tif res.DeletedCount == 0 {\n\t\treturn mongo.ErrNoDocuments\n\t}\n\treturn nil\n}\n\nfunc (t *Threads) DeleteByOwner(ctx context.Context, owner thread.PubKey) error {\n\townerID, err := owner.MarshalBinary()\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = t.col.DeleteMany(ctx, bson.M{\"_id.owner\": ownerID})\n\treturn err\n}\n\nfunc decodeThread(raw bson.M) (*Thread, error) {\n\trid := raw[\"_id\"].(bson.M)\n\towner := &thread.Libp2pPubKey{}\n\terr := owner.UnmarshalBinary(rid[\"owner\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tid, err := thread.Cast(rid[\"thread\"].(primitive.Binary).Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar name string\n\tif raw[\"name\"] != nil {\n\t\tname = raw[\"name\"].(string)\n\t}\n\tvar key string\n\tif raw[\"key_id\"] != nil {\n\t\tkey = raw[\"key_id\"].(string)\n\t}\n\tvar isDB bool\n\tif v, ok := raw[\"is_db\"]; ok {\n\t\tisDB = v.(bool)\n\t} else {\n\t\tisDB = true\n\t}\n\tvar created time.Time\n\tif v, ok := raw[\"created_at\"]; ok {\n\t\tcreated = v.(primitive.DateTime).Time()\n\t}\n\treturn &Thread{\n\t\tID:        id,\n\t\tOwner:     owner,\n\t\tName:      name,\n\t\tKey:       key,\n\t\tIsDB:      isDB,\n\t\tCreatedAt: created,\n\t}, nil\n}\n"
  },
  {
    "path": "mongodb/threads_test.go",
    "content": "package mongodb_test\n\nimport (\n\t\"context\"\n\t\"crypto/rand\"\n\t\"testing\"\n\n\t\"github.com/libp2p/go-libp2p-core/crypto\"\n\t\"github.com/stretchr/testify/assert\"\n\t\"github.com/stretchr/testify/require\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t. \"github.com/textileio/textile/v2/mongodb\"\n\t\"github.com/textileio/textile/v2/util\"\n)\n\nfunc TestThreads_Create(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\tid := thread.NewIDV1(thread.Raw, 32)\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated1, err := col.Create(ctx, id, thread.NewLibp2pPubKey(owner), false)\n\trequire.NoError(t, err)\n\tassert.True(t, created1.ID.Defined())\n\tassert.False(t, created1.IsDB)\n\n\t_, err = col.Create(ctx, id, thread.NewLibp2pPubKey(owner), false)\n\trequire.Error(t, err)\n\n\t_, err = col.Create(common.NewThreadNameContext(ctx, \"db1\"), thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner), true)\n\trequire.NoError(t, err)\n\t_, err = col.Create(common.NewThreadNameContext(ctx, \"db1\"), thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner), true)\n\trequire.Error(t, err)\n}\n\nfunc TestThreads_Get(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(ctx, thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner), true)\n\trequire.NoError(t, err)\n\n\tgot, err := col.Get(ctx, created.ID, thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Owner, got.Owner)\n\tassert.Equal(t, created.ID, got.ID)\n\tassert.True(t, created.IsDB)\n}\n\nfunc TestThreads_GetByName(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(common.NewThreadNameContext(ctx, \"db1\"), thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner), true)\n\trequire.NoError(t, err)\n\n\tgot, err := col.GetByName(ctx, \"db1\", thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\tassert.Equal(t, created.Owner, got.Owner)\n\tassert.Equal(t, created.ID, got.ID)\n}\n\nfunc TestThreads_ListByOwner(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\t_, owner1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\t_, err = col.Create(ctx, thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner1), true)\n\trequire.NoError(t, err)\n\t_, err = col.Create(ctx, thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner1), true)\n\trequire.NoError(t, err)\n\n\tlist1, err := col.ListByOwner(ctx, thread.NewLibp2pPubKey(owner1))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 2, len(list1))\n\n\t_, owner2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tlist2, err := col.ListByOwner(ctx, thread.NewLibp2pPubKey(owner2))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, len(list2))\n}\n\nfunc TestThreads_ListByKey(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\tkey := util.MakeToken(12)\n\t_, owner1, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\t_, err = col.Create(common.NewAPIKeyContext(ctx, key), thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner1), true)\n\trequire.NoError(t, err)\n\t_, owner2, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\t_, err = col.Create(common.NewAPIKeyContext(ctx, key), thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner2), true)\n\trequire.NoError(t, err)\n\n\tlist1, err := col.ListByKey(ctx, key)\n\trequire.NoError(t, err)\n\tassert.Equal(t, 2, len(list1))\n\n\t_, owner3, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tlist2, err := col.ListByOwner(ctx, thread.NewLibp2pPubKey(owner3))\n\trequire.NoError(t, err)\n\tassert.Equal(t, 0, len(list2))\n}\n\nfunc TestThreads_Delete(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(ctx, thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner), true)\n\trequire.NoError(t, err)\n\n\terr = col.Delete(ctx, created.ID, thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\t_, err = col.Get(ctx, created.ID, thread.NewLibp2pPubKey(owner))\n\trequire.Error(t, err)\n}\n\nfunc TestThreads_DeleteByOwner(t *testing.T) {\n\tdb := newDB(t)\n\tctx := context.Background()\n\tcol, err := NewThreads(ctx, db)\n\trequire.NoError(t, err)\n\n\t_, owner, err := crypto.GenerateEd25519Key(rand.Reader)\n\trequire.NoError(t, err)\n\tcreated, err := col.Create(ctx, thread.NewIDV1(thread.Raw, 32), thread.NewLibp2pPubKey(owner), true)\n\trequire.NoError(t, err)\n\n\terr = col.DeleteByOwner(ctx, thread.NewLibp2pPubKey(owner))\n\trequire.NoError(t, err)\n\t_, err = col.Get(ctx, created.ID, thread.NewLibp2pPubKey(owner))\n\trequire.Error(t, err)\n}\n"
  },
  {
    "path": "scripts/gen_js_protos.bash",
    "content": "#!/bin/bash\nset -eo pipefail\n\nwd=\"$(pwd -P)\"\n\njs_paths=()\nwhile IFS=  read -r -d $'\\0'; do\n  js_paths+=(\"$REPLY\")\ndone < <(find . -path \"*/pb/javascript\" ! -path \"*/node_modules/*\" -print0)\n\necho installing dependencies\nfor path in \"${js_paths[@]}\"; do\n  cd \"${path}\" && npm install >/dev/null 2>&1 && cd \"${wd}\"\ndone\n\necho generating js-protos in api/hubd/pb/javascript\n./buildtools/protoc/bin/protoc \\\n  --proto_path=. \\\n  --plugin=protoc-gen-ts=api/hubd/pb/javascript/node_modules/.bin/protoc-gen-ts \\\n  --js_out=import_style=commonjs,binary:api/hubd/pb/javascript \\\n  --ts_out=service=grpc-web:api/hubd/pb/javascript \\\n  api/billingd/pb/billingd.proto api/hubd/pb/hubd.proto\n\necho generating js-protos in api/usersd/pb/javascript\n./buildtools/protoc/bin/protoc \\\n  --proto_path=. \\\n  --plugin=protoc-gen-ts=api/usersd/pb/javascript/node_modules/.bin/protoc-gen-ts \\\n  --js_out=import_style=commonjs,binary:api/usersd/pb/javascript \\\n  --ts_out=service=grpc-web:api/usersd/pb/javascript \\\n  api/billingd/pb/billingd.proto api/usersd/pb/usersd.proto\n\necho generating js-protos in api/bucketsd/pb/javascript\n./buildtools/protoc/bin/protoc \\\n  --proto_path=. \\\n  --plugin=protoc-gen-ts=api/bucketsd/pb/javascript/node_modules/.bin/protoc-gen-ts \\\n  --js_out=import_style=commonjs,binary:api/bucketsd/pb/javascript \\\n  --ts_out=service=grpc-web:api/bucketsd/pb/javascript \\\n  api/bucketsd/pb/bucketsd.proto\n"
  },
  {
    "path": "scripts/protoc_gen_plugin.bash",
    "content": "#!/bin/bash\nset -eo pipefail\n\n# From https://github.com/bufbuild/buf/blob/master/make/go/scripts/protoc_gen_plugin.bash\n\nfail() {\n  echo \"$@\" >&2\n  exit 1\n}\n\nusage() {\n  echo \"usage: ${0} \\\n    --proto_path=path/to/one \\\n    --proto_path=path/to/two \\\n    --proto_include_path=path/to/one \\\n    --proto_include_path=path/to/two \\\n    --plugin_name=go \\\n    --plugin_out=gen/proto/go \\\n    --plugin_opt=plugins=grpc\"\n}\n\ncheck_flag_value_set() {\n  if [ -z \"${1}\" ]; then\n    usage\n    exit 1\n  fi\n}\n\nPROTO_PATHS=()\nPROTO_INCLUDE_PATHS=()\nPLUGIN_NAME=\nPLUGIN_OUT=\nPLUGIN_OPT=\nwhile test $# -gt 0; do\n  case \"${1}\" in\n    -h|--help)\n      usage\n      exit 0\n      ;;\n    --proto_path*)\n      PROTO_PATHS+=(\"$(echo ${1} | sed -e 's/^[^=]*=//g')\")\n      shift\n      ;;\n    --proto_include_path*)\n      PROTO_INCLUDE_PATHS+=(\"$(echo ${1} | sed -e 's/^[^=]*=//g')\")\n      shift\n      ;;\n    --plugin_name*)\n      PLUGIN_NAME=\"$(echo ${1} | sed -e 's/^[^=]*=//g')\"\n      shift\n      ;;\n    --plugin_out*)\n      PLUGIN_OUT=\"$(echo ${1} | sed -e 's/^[^=]*=//g')\"\n      shift\n      ;;\n    --plugin_opt*)\n      PLUGIN_OPT=\"$(echo ${1} | sed -e 's/^[^=]*=//g')\"\n      shift\n      ;;\n    *)\n      usage\n      exit 1\n      ;;\n  esac\ndone\n\ncheck_flag_value_set \"${PROTO_PATHS[@]}\"\ncheck_flag_value_set \"${PLUGIN_NAME}\"\ncheck_flag_value_set \"${PLUGIN_OUT}\"\n\nPROTOC_FLAGS=()\nfor proto_path in \"${PROTO_PATHS[@]}\"; do\n  PROTOC_FLAGS+=(\"--proto_path=${proto_path}\")\ndone\nfor proto_path in \"${PROTO_INCLUDE_PATHS[@]}\"; do\n  PROTOC_FLAGS+=(\"--proto_path=${proto_path}\")\ndone\nPROTOC_FLAGS+=(\"--${PLUGIN_NAME}_out=${PLUGIN_OUT}\")\nif [ -n \"${PLUGIN_OPT}\" ]; then\n  PROTOC_FLAGS+=(\"--${PLUGIN_NAME}_opt=${PLUGIN_OPT}\")\nfi\n\nmkdir -p \"${PLUGIN_OUT}\"\nfor proto_path in \"${PROTO_PATHS[@]}\"; do\n  for dir in $(find \"${proto_path}\" -type f ! -path './buildtools/*' ! -path '*/node_modules/*' ! -path '*/pb/google/*' ! -path '*/pb/protoc-gen-openapiv2/*' -name '*.proto' -print0  | xargs -0 -n1 dirname | sort | uniq); do\n    echo protoc \"${PROTOC_FLAGS[@]}\" \"$(find \"${dir}\" -name '*.proto' ! -path '*/node_modules/*' ! -path '*/pb/google/*' ! -path '*/pb/protoc-gen-openapiv2/*')\"\n    ./buildtools/protoc/bin/protoc \"${PROTOC_FLAGS[@]}\" \"$(find \"${dir}\" -name '*.proto' ! -path '*/node_modules/*' ! -path '*/pb/google/*' ! -path '*/pb/protoc-gen-openapiv2/*')\"\n  done\ndone\n"
  },
  {
    "path": "scripts/publish_js_protos.bash",
    "content": "#!/bin/bash\nset -eo pipefail\n\ntag=\"latest\"\n\nwhile getopts v:t:p: option\ndo\ncase \"${option}\"\nin\nv) version=${OPTARG};;\nt) token=${OPTARG};;\np)\n  if [[ \"$OPTARG\" == \"true\" ]]; \n  then\n    tag=\"next\"\n  fi\n  ;;\nesac\ndone\n\n[[ -z \"$version\" ]] && { echo \"Please specify a new version, e.g., -v v1.0.0\" ; exit 1; }\n[[ -z \"$token\" ]] && { echo \"Please specify an NPM auth token, e.g., -t mytoken\" ; exit 1; }\n\nwd=\"$(pwd -P)\"\n\njs_paths=()\nwhile IFS=  read -r -d $'\\0'; do\n  js_paths+=(\"$REPLY\")\ndone < <(find . -path \"*/pb/javascript\" ! -path \"*/node_modules/*\" -print0)\n\necho installing dependencies\nnpm install -g json >/dev/null 2>&1\n\nfor path in \"${js_paths[@]}\"; do\n  cd \"${path}\"\n  json -I -f package.json -e \"this.version=('$version').replace('v', '')\" >/dev/null 2>&1\n  echo publishing js-protos in \"${path}\" with version \"${version}\" and token \"${token}\"\n  NODE_AUTH_TOKEN=\"${token}\" npm publish --access=public --tag ${tag}\n  json -I -f package.json -e \"this.version=('0.0.0')\" >/dev/null 2>&1\n  cd \"${wd}\"\ndone\n"
  },
  {
    "path": "threaddb/buckets.go",
    "content": "package threaddb\n\nimport (\n\t\"context\"\n\t\"encoding/base64\"\n\t\"fmt\"\n\tgopath \"path\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/alecthomas/jsonschema\"\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\t\"github.com/textileio/dcrypto\"\n\tdbc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tdb \"github.com/textileio/go-threads/db\"\n\tpowc \"github.com/textileio/powergate/v2/api/client\"\n\tuserPb \"github.com/textileio/powergate/v2/api/gen/powergate/user/v1\"\n\t\"github.com/textileio/textile/v2/buckets\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n)\n\nconst Version = 1\n\nvar (\n\tbucketsSchema  *jsonschema.Schema\n\tbucketsIndexes = []db.Index{{\n\t\tPath: \"path\",\n\t}}\n\tbucketsConfig db.CollectionConfig\n)\n\n// Bucket represents the buckets threaddb collection schema.\ntype Bucket struct {\n\tKey       string              `json:\"_id\"`\n\tOwner     string              `json:\"owner\"`\n\tName      string              `json:\"name\"`\n\tVersion   int                 `json:\"version\"`\n\tLinkKey   string              `json:\"key,omitempty\"`\n\tPath      string              `json:\"path\"`\n\tMetadata  map[string]Metadata `json:\"metadata\"`\n\tArchives  Archives            `json:\"archives\"`\n\tCreatedAt int64               `json:\"created_at\"`\n\tUpdatedAt int64               `json:\"updated_at\"`\n}\n\n// Metadata contains metadata about a bucket item (a file or folder).\ntype Metadata struct {\n\tKey       string                  `json:\"key,omitempty\"`\n\tRoles     map[string]buckets.Role `json:\"roles\"`\n\tUpdatedAt int64                   `json:\"updated_at\"`\n}\n\n// NewDefaultMetadata returns the default metadata for a path.\nfunc NewDefaultMetadata(owner thread.PubKey, key []byte, ts time.Time) Metadata {\n\troles := make(map[string]buckets.Role)\n\tif owner != nil {\n\t\tif key == nil {\n\t\t\troles[\"*\"] = buckets.Reader\n\t\t}\n\t\troles[owner.String()] = buckets.Admin\n\t}\n\tmd := Metadata{\n\t\tRoles:     roles,\n\t\tUpdatedAt: ts.UnixNano(),\n\t}\n\tmd.SetFileEncryptionKey(key)\n\treturn md\n}\n\n// SetFileEncryptionKey sets the file encryption key.\nfunc (m *Metadata) SetFileEncryptionKey(key []byte) {\n\tif key != nil {\n\t\tm.Key = base64.StdEncoding.EncodeToString(key)\n\t}\n}\n\n// Archives contains info about bucket Filecoin archives.\ntype Archives struct {\n\tCurrent Archive   `json:\"current\"`\n\tHistory []Archive `json:\"history\"`\n}\n\n// Archive is a single Filecoin archive containing a list of deals.\ntype Archive struct {\n\tCid   string `json:\"cid\"`\n\tDeals []Deal `json:\"deals\"`\n}\n\n// Deal contains info about an archive's Filecoin deal.\ntype Deal struct {\n\tProposalCid string `json:\"proposal_cid\"`\n\tMiner       string `json:\"miner\"`\n}\n\n// IsPrivate returns whether or not the bucket is private.\nfunc (b *Bucket) IsPrivate() bool {\n\treturn b.LinkKey != \"\"\n}\n\n// GetLinkEncryptionKey returns the bucket encryption key as bytes if present.\n// Version 0 buckets use the link key for all files and folders.\n// Version 1 buckets only use the link for folders.\nfunc (b *Bucket) GetLinkEncryptionKey() []byte {\n\treturn keyBytes(b.LinkKey)\n}\n\n// GetFileEncryptionKeyForPath returns the encryption key for path.\n// Version 0 buckets use the link key for all paths.\n// Version 1 buckets use a different key defined in path metadata.\nfunc (b *Bucket) GetFileEncryptionKeyForPath(pth string) ([]byte, error) {\n\tif b.Version == 0 {\n\t\treturn b.GetLinkEncryptionKey(), nil\n\t}\n\n\tmd, _, ok := b.GetMetadataForPath(pth, true)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", pth)\n\t}\n\treturn keyBytes(md.Key), nil\n}\n\nfunc keyBytes(k string) []byte {\n\tif k == \"\" {\n\t\treturn nil\n\t}\n\tb, _ := base64.StdEncoding.DecodeString(k)\n\treturn b\n}\n\n// GetFileEncryptionKeysForPrefix returns a map of keys for every path under prefix.\nfunc (b *Bucket) GetFileEncryptionKeysForPrefix(pre string) (map[string][]byte, error) {\n\tif b.Version == 0 {\n\t\treturn map[string][]byte{\"\": b.GetLinkEncryptionKey()}, nil\n\t}\n\n\tkeys := make(map[string][]byte)\n\tfor p := range b.Metadata {\n\t\tif strings.HasPrefix(p, pre) {\n\t\t\tmd, _, ok := b.GetMetadataForPath(p, true)\n\t\t\tif !ok {\n\t\t\t\treturn nil, fmt.Errorf(\"could not resolve path: %s\", p)\n\t\t\t}\n\t\t\tkeys[p] = keyBytes(md.Key)\n\t\t}\n\t}\n\treturn keys, nil\n}\n\n// RotateFileEncryptionKeysForPrefix re-generates existing metadata keys for every path under prefix.\nfunc (b *Bucket) RotateFileEncryptionKeysForPrefix(pre string) error {\n\tif b.Version == 0 {\n\t\treturn nil\n\t}\n\n\tfor p, md := range b.Metadata {\n\t\tif strings.HasPrefix(p, pre) {\n\t\t\tif md.Key != \"\" {\n\t\t\t\tkey, err := dcrypto.NewKey()\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tmd.SetFileEncryptionKey(key)\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// GetMetadataForPath returns metadata for path.\n// The returned metadata could be from an exact path match or\n// the nearest parent, i.e., path was added as part of a folder.\n// If requireKey is true, metadata w/o a key is ignored and the search continues toward root.\nfunc (b *Bucket) GetMetadataForPath(pth string, requireKey bool) (md Metadata, at string, ok bool) {\n\tif b.Version == 0 {\n\t\treturn md, at, true\n\t}\n\n\t// Check for an exact match\n\tif md, ok = b.Metadata[pth]; ok {\n\t\tif !b.IsPrivate() || !requireKey || md.Key != \"\" {\n\t\t\treturn md, pth, true\n\t\t}\n\t}\n\t// Check if we can see this path via a parent\n\tparent := pth\n\tvar done bool\n\tfor {\n\t\tif done {\n\t\t\tbreak\n\t\t}\n\t\tparent = gopath.Dir(parent)\n\t\tif parent == \".\" {\n\t\t\tparent = \"\"\n\t\t\tdone = true\n\t\t}\n\t\tif md, ok = b.Metadata[parent]; ok {\n\t\t\tif !b.IsPrivate() || !requireKey || md.Key != \"\" {\n\t\t\t\treturn md, parent, true\n\t\t\t}\n\t\t}\n\t}\n\treturn md, at, false\n}\n\n// SetMetadataAtPath create new or merges existing metadata at path.\nfunc (b *Bucket) SetMetadataAtPath(pth string, md Metadata) {\n\tif b.Version == 0 {\n\t\treturn\n\t}\n\n\tx, ok := b.Metadata[pth]\n\tif ok {\n\t\tif md.Key != \"\" {\n\t\t\tx.Key = md.Key\n\t\t}\n\t\tif md.Roles != nil {\n\t\t\tx.Roles = md.Roles\n\t\t}\n\t\tx.UpdatedAt = md.UpdatedAt\n\t\tb.Metadata[pth] = x\n\t} else {\n\t\tif md.Roles == nil {\n\t\t\tmd.Roles = make(map[string]buckets.Role)\n\t\t}\n\t\tb.Metadata[pth] = md\n\t}\n}\n\n// UnsetMetadataWithPrefix removes metadata with the path prefix.\nfunc (b *Bucket) UnsetMetadataWithPrefix(pre string) {\n\tif b.Version == 0 {\n\t\treturn\n\t}\n\n\tfor p := range b.Metadata {\n\t\tif strings.HasPrefix(p, pre) {\n\t\t\tdelete(b.Metadata, p)\n\t\t}\n\t}\n}\n\n// ensureNoNulls inflates any values that are nil due to schema updates.\nfunc (b *Bucket) ensureNoNulls() {\n\tif b.Metadata == nil {\n\t\tb.Metadata = make(map[string]Metadata)\n\t}\n\tif len(b.Archives.History) == 0 {\n\t\tcurrent := b.Archives.Current\n\t\tif len(current.Deals) == 0 {\n\t\t\tb.Archives.Current = Archive{Deals: []Deal{}}\n\t\t}\n\t\tb.Archives = Archives{Current: current, History: []Archive{}}\n\t}\n}\n\nfunc (b *Bucket) Copy() *Bucket {\n\tmd := make(map[string]Metadata)\n\tfor k, v := range b.Metadata {\n\t\tmd[k] = v\n\t}\n\tar := Archives{\n\t\tCurrent: copyArchives(b.Archives.Current),\n\t\tHistory: make([]Archive, len(b.Archives.History)),\n\t}\n\tfor i, j := range b.Archives.History {\n\t\tar.History[i] = copyArchives(j)\n\t}\n\treturn &Bucket{\n\t\tKey:       b.Key,\n\t\tOwner:     b.Owner,\n\t\tName:      b.Name,\n\t\tVersion:   b.Version,\n\t\tLinkKey:   b.LinkKey,\n\t\tPath:      b.Path,\n\t\tMetadata:  md,\n\t\tArchives:  ar,\n\t\tCreatedAt: b.CreatedAt,\n\t\tUpdatedAt: b.UpdatedAt,\n\t}\n}\n\nfunc copyArchives(archive Archive) Archive {\n\ta := Archive{\n\t\tCid:   archive.Cid,\n\t\tDeals: make([]Deal, len(archive.Deals)),\n\t}\n\tfor i, j := range archive.Deals {\n\t\ta.Deals[i] = j\n\t}\n\treturn a\n}\n\n// BucketOptions defines options for interacting with buckets.\ntype BucketOptions struct {\n\tName  string\n\tKey   []byte\n\tToken thread.Token\n}\n\n// BucketOption holds a bucket option.\ntype BucketOption func(*BucketOptions)\n\n// WithNewBucketName specifies a name for a bucket.\n// Note: This is only valid when creating a new bucket.\nfunc WithNewBucketName(n string) BucketOption {\n\treturn func(args *BucketOptions) {\n\t\targs.Name = n\n\t}\n}\n\n// WithNewBucketKey sets the bucket encryption key.\nfunc WithNewBucketKey(k []byte) BucketOption {\n\treturn func(args *BucketOptions) {\n\t\targs.Key = k\n\t}\n}\n\n// WithNewBucketToken sets the threaddb token.\nfunc WithNewBucketToken(t thread.Token) BucketOption {\n\treturn func(args *BucketOptions) {\n\t\targs.Token = t\n\t}\n}\n\nfunc init() {\n\treflector := jsonschema.Reflector{ExpandedStruct: true}\n\tbucketsSchema = reflector.Reflect(&Bucket{})\n\tbucketsConfig = db.CollectionConfig{\n\t\tName:    buckets.CollectionName,\n\t\tSchema:  bucketsSchema,\n\t\tIndexes: bucketsIndexes,\n\t\tWriteValidator: `\n\t\t\tif (instance && !instance.version) {\n\t\t\t  return true\n\t\t\t}\n\t\t\tvar type = event.patch.type\n\t\t\tvar patch = event.patch.json_patch\n\t\t\tvar restricted = [\"owner\", \"name\", \"version\", \"key\", \"archives\", \"created_at\"]\n\t\t\tswitch (type) {\n\t\t\t  case \"create\":\n\t\t\t    if (patch.owner !== \"\" && writer !== patch.owner) {\n\t\t\t      return \"permission denied\" // writer must match new bucket owner\n\t\t\t    }\n\t\t\t    break\n\t\t\t  case \"save\":\n\t\t\t    if (instance.owner === \"\") {\n\t\t\t      return true\n\t\t\t    }\n\t\t\t    if (writer !== instance.owner) {\n\t\t\t      for (i = 0; i < restricted.length; i++) {\n\t\t\t        if (patch[restricted[i]]) {\n\t\t\t          return \"permission denied\"\n\t\t\t        }\n\t\t\t      }\n\t\t\t    }\n\t\t\t    if (!patch.metadata) {\n\t\t\t      if (patch.path && writer !== instance.owner) {\n\t\t\t        return \"permission denied\"\n\t\t\t      } else {\n\t\t\t        patch.metadata = {}\n\t\t\t      }\n\t\t\t    }\n\t\t\t    var keys = Object.keys(patch.metadata)\n\t\t\t    for (i = 0; i < keys.length; i++) {\n\t\t\t      var p = patch.metadata[keys[i]]\n\t\t\t      var x = instance.metadata[keys[i]]\n\t\t\t      if (x) {\n\t\t\t        if (!x.roles[writer]) {\n\t\t\t          x.roles[writer] = 0\n\t\t\t        }\n\t\t\t        if (!x.roles[\"*\"]) {\n\t\t\t          x.roles[\"*\"] = 0\n\t\t\t        }\n\t\t\t        // merge all parents, taking most privileged role\n\t\t\t        if (keys[i].length > 0) {\n\t\t\t          var parts = keys[i].split(\"/\")\n\t\t\t          parts.unshift(\"\")\n\t\t\t          var path = \"\"\n\t\t\t          for (j = 0; j < parts.length; j++) {\n\t\t\t            if (path.length > 0) {\n\t\t\t              path += \"/\"\n\t\t\t            }\n\t\t\t            path += parts[j]\n\t\t\t            var y = instance.metadata[path]\n\t\t\t            if (!y) {\n\t\t\t              continue\n\t\t\t            }\n\t\t\t            if (!y.roles[writer]) {\n\t\t\t              y.roles[writer] = 0\n\t\t\t            }\n\t\t\t            if (!y.roles[\"*\"]) {\n\t\t\t              y.roles[\"*\"] = 0\n\t\t\t            }\n\t\t\t            if (y.roles[writer] > x.roles[writer]) {\n\t\t\t              x.roles[writer] = y.roles[writer]\n\t\t\t            }\n\t\t\t            if (y.roles[\"*\"] > x.roles[\"*\"]) {\n\t\t\t              x.roles[\"*\"] = y.roles[\"*\"]\n\t\t\t            }\n\t\t\t          }\n\t\t\t        }\n\t\t\t        // check access against merged roles\n\t\t\t        if (!p) {\n\t\t\t          if (x.roles[writer] < 3) {\n\t\t\t            return \"permission denied\" // no admin access to delete items\n\t\t\t          }\n\t\t\t        } else {\n\t\t\t          if (p.roles && x.roles[writer] < 3) {\n\t\t\t            return \"permission denied\" // no admin access to edit roles\n\t\t\t          }\n\t\t\t        }\n\t\t\t        if (x.roles[writer] < 2 && x.roles[\"*\"] < 2) {\n\t\t\t          return \"permission denied\" // no write access\n\t\t\t        }\n\t\t\t      } else {\n\t\t\t        if (writer !== instance.owner) {\n\t\t\t          return \"permission denied\" // no owner access to create items\n\t\t\t        }\n\t\t\t      }\n\t\t\t    }\n\t\t\t    break\n\t\t\t  case \"delete\":\n\t\t\t    if (instance.owner !== \"\" && writer !== instance.owner) {\n\t\t\t      return \"permission denied\" // no owner access to delete instance\n\t\t\t    }\n\t\t\t    break\n\t\t\t}\n\t\t\treturn true\n\t\t`,\n\t\tReadFilter: `\n\t\t\tif (!instance.version) {\n\t\t\t  return instance\n\t\t\t}\n\t\t\tif (instance.owner === \"\") {\n\t\t\t  return instance\n\t\t\t}\n\t\t\tvar filtered = {}\n\t\t\tvar keys = Object.keys(instance.metadata)\n\t\t\touter: for (i = 0; i < keys.length; i++) {\n\t\t\t  var m = instance.metadata[keys[i]]\n\t\t\t  var parts = keys[i].split(\"/\")\n\t\t\t  if (keys[i].length > 0) {\n\t\t\t    parts.unshift(\"\")\n\t\t\t  }\n\t\t\t  var path = \"\"\n\t\t\t  for (j = 0; j < parts.length; j++) {\n\t\t\t    if (path.length > 0) {\n\t\t\t      path += \"/\"\n\t\t\t    }\n\t\t\t    path += parts[j]\n\t\t\t    var x = instance.metadata[path]\n\t\t\t    if (x && (x.roles[reader] > 0 || x.roles[\"*\"] > 0)) {\n\t\t\t      filtered[keys[i]] = m\n\t\t\t      continue outer\n\t\t\t    }\n\t\t\t  }\n\t\t\t}\n\t\t\tinstance.metadata = filtered\n\t\t\tif (Object.keys(instance.metadata).length === 0) {\n\t\t\t  delete instance.key\n\t\t\t}\n\t\t\treturn instance\n\t\t`,\n\t}\n}\n\n// Buckets is a wrapper around a threaddb collection that performs object storage on IPFS and Filecoin.\ntype Buckets struct {\n\tCollection\n\n\tbaCol    *mdb.BucketArchives\n\tpgClient *powc.Client\n\n\tctx    context.Context\n\tcancel context.CancelFunc\n\twg     sync.WaitGroup\n}\n\n// NewBuckets returns a new buckets collection mananger.\nfunc NewBuckets(tc *dbc.Client, pgc *powc.Client, col *mdb.BucketArchives) (*Buckets, error) {\n\tctx, cancel := context.WithCancel(context.Background())\n\treturn &Buckets{\n\t\tCollection: Collection{\n\t\t\tc:      tc,\n\t\t\tconfig: bucketsConfig,\n\t\t},\n\t\tbaCol:    col,\n\t\tpgClient: pgc,\n\n\t\tctx:    ctx,\n\t\tcancel: cancel,\n\t}, nil\n}\n\n// Create a bucket instance.\nfunc (b *Buckets) New(\n\tctx context.Context,\n\tdbID thread.ID,\n\tkey string,\n\tpth path.Path,\n\tnow time.Time,\n\towner thread.PubKey,\n\tmetadata map[string]Metadata, opts ...BucketOption,\n) (*Bucket, error) {\n\targs := &BucketOptions{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tvar encKey string\n\tif args.Key != nil {\n\t\tencKey = base64.StdEncoding.EncodeToString(args.Key)\n\t}\n\tif args.Token.Defined() {\n\t\ttokenOwner, err := args.Token.PubKey()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif tokenOwner != nil && owner.String() != tokenOwner.String() {\n\t\t\treturn nil, fmt.Errorf(\"creating bucket: token owner mismatch\")\n\t\t}\n\t}\n\tif metadata == nil {\n\t\tmetadata = make(map[string]Metadata)\n\t}\n\tbucket := &Bucket{\n\t\tKey:       key,\n\t\tName:      args.Name,\n\t\tVersion:   Version,\n\t\tLinkKey:   encKey,\n\t\tPath:      pth.String(),\n\t\tMetadata:  metadata,\n\t\tArchives:  Archives{Current: Archive{Deals: []Deal{}}, History: []Archive{}},\n\t\tCreatedAt: now.UnixNano(),\n\t\tUpdatedAt: now.UnixNano(),\n\t}\n\tif owner != nil {\n\t\tbucket.Owner = owner.String()\n\t}\n\tif _, err := b.Create(ctx, dbID, bucket, WithToken(args.Token)); err != nil {\n\t\treturn nil, fmt.Errorf(\"creating bucket in thread: %s\", err)\n\t}\n\tif _, err := b.baCol.Create(ctx, key); err != nil {\n\t\treturn nil, fmt.Errorf(\"creating BucketArchive data: %s\", err)\n\t}\n\tif err := b.Get(ctx, dbID, key, &bucket, WithToken(args.Token)); err != nil {\n\t\treturn nil, fmt.Errorf(\"getting bucket in thread: %s\", err)\n\t}\n\treturn bucket, nil\n}\n\n// GetSafe gets a bucket instance and inflates any values that are nil due to schema updates.\nfunc (b *Buckets) GetSafe(ctx context.Context, dbID thread.ID, key string, buck *Bucket, opts ...Option) error {\n\tif err := b.Get(ctx, dbID, key, buck, opts...); err != nil {\n\t\treturn err\n\t}\n\tbuck.ensureNoNulls()\n\treturn nil\n}\n\n// IsArchivingEnabled returns whether or not Powergate archiving is enabled.\nfunc (b *Buckets) IsArchivingEnabled() bool {\n\treturn b.pgClient != nil\n}\n\n// ArchiveStatus returns the last known archive status on Powergate. If the return status is Failed,\n// an extra string with the error message is provided.\nfunc (b *Buckets) ArchiveStatus(ctx context.Context, key string) (userPb.JobStatus, string, error) {\n\tba, err := b.baCol.GetOrCreate(ctx, key)\n\tif err != nil {\n\t\treturn userPb.JobStatus_JOB_STATUS_UNSPECIFIED, \"\",\n\t\t\tfmt.Errorf(\"getting BucketArchive data: %s\", err)\n\t}\n\n\tif ba.Archives.Current.JobID == \"\" {\n\t\treturn userPb.JobStatus_JOB_STATUS_UNSPECIFIED, \"\", buckets.ErrNoCurrentArchive\n\t}\n\tcurrent := ba.Archives.Current\n\tif current.Aborted {\n\t\treturn userPb.JobStatus_JOB_STATUS_UNSPECIFIED, \"\",\n\t\t\tfmt.Errorf(\"job status tracking was aborted: %s\", current.AbortedMsg)\n\t}\n\tif statusName, found := userPb.JobStatus_name[int32(current.Status)]; !found {\n\t\treturn userPb.JobStatus_JOB_STATUS_UNSPECIFIED, \"\",\n\t\t\tfmt.Errorf(\"unknown powergate job status: %s\", statusName)\n\t}\n\treturn userPb.JobStatus(current.Status), current.FailureMsg, nil\n}\n\n// ArchiveWatch allows to have the last log execution for the last archive, plus realtime\n// human-friendly log output of how the current archive is executing.\n// If the last archive is already done, it will simply return the log history and close the channel.\nfunc (b *Buckets) ArchiveWatch(ctx context.Context, key string, powToken string, ch chan<- string) error {\n\tba, err := b.baCol.GetOrCreate(ctx, key)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"getting BucketArchive data: %s\", err)\n\t}\n\n\tif ba.Archives.Current.JobID == \"\" {\n\t\treturn buckets.ErrNoCurrentArchive\n\t}\n\tcurrent := ba.Archives.Current\n\tif current.Aborted {\n\t\treturn fmt.Errorf(\"job status tracking was aborted: %s\", current.AbortedMsg)\n\t}\n\tc, err := cid.Cast(current.Cid)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"parsing current archive cid: %s\", err)\n\t}\n\tctx = context.WithValue(ctx, powc.AuthKey, powToken)\n\tctx, cancel := context.WithCancel(ctx)\n\tdefer cancel()\n\tlogsCh := make(chan powc.WatchLogsEvent)\n\tif err := b.pgClient.Data.WatchLogs(\n\t\tctx,\n\t\tlogsCh,\n\t\tc.String(),\n\t\tpowc.WithJobIDFilter(current.JobID),\n\t\tpowc.WithHistory(true),\n\t); err != nil {\n\t\treturn fmt.Errorf(\"watching log events in Powergate: %s\", err)\n\t}\n\tfor le := range logsCh {\n\t\tif le.Err != nil {\n\t\t\treturn le.Err\n\t\t}\n\t\ttimestamp := time.Unix(le.Res.LogEntry.Time, 0)\n\t\tch <- fmt.Sprintf(\"%s: %s\", timestamp.Format(\"2006-01-02 15:04:05\"), le.Res.LogEntry.Message)\n\t}\n\treturn nil\n}\n\nfunc (b *Buckets) Close() error {\n\tb.cancel()\n\tb.wg.Wait()\n\treturn nil\n}\n"
  },
  {
    "path": "threaddb/mail.go",
    "content": "package threaddb\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"strings\"\n\n\t\"github.com/alecthomas/jsonschema\"\n\tdbc \"github.com/textileio/go-threads/api/client\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\tdb \"github.com/textileio/go-threads/db\"\n\t\"github.com/textileio/textile/v2/api/common\"\n\t\"github.com/textileio/textile/v2/mail\"\n\tmdb \"github.com/textileio/textile/v2/mongodb\"\n)\n\nvar (\n\tinboxSchema  *jsonschema.Schema\n\tinboxIndexes = []db.Index{{\n\t\tPath: \"from\",\n\t}, {\n\t\tPath: \"to\",\n\t}, {\n\t\tPath: \"created_at\",\n\t}, {\n\t\tPath: \"read_at\",\n\t}}\n\tinboxConfig    db.CollectionConfig\n\tsentboxSchema  *jsonschema.Schema\n\tsentboxIndexes = []db.Index{{\n\t\tPath: \"from\",\n\t}, {\n\t\tPath: \"to\",\n\t}, {\n\t\tPath: \"created_at\",\n\t}}\n\tsentboxConfig db.CollectionConfig\n\n\t// ErrMailboxExists indicates that a mailbox with the same name and owner already exists.\n\tErrMailboxExists = errors.New(\"mailbox already exists\")\n)\n\n// InboxMessage represents the inbox threaddb collection schema.\ntype InboxMessage struct {\n\tID        string `json:\"_id\"`\n\tFrom      string `json:\"from\"`\n\tTo        string `json:\"to\"`\n\tBody      string `json:\"body\"`\n\tSignature string `json:\"signature\"`\n\tCreatedAt int64  `json:\"created_at\"`\n\tReadAt    int64  `json:\"read_at\"`\n}\n\n// SentboxMessage represents the sentbox threaddb collection schema.\ntype SentboxMessage struct {\n\tID        string `json:\"_id\"`\n\tFrom      string `json:\"from\"`\n\tTo        string `json:\"to\"`\n\tBody      string `json:\"body\"`\n\tSignature string `json:\"signature\"`\n\tCreatedAt int64  `json:\"created_at\"`\n}\n\nfunc init() {\n\treflector := jsonschema.Reflector{ExpandedStruct: true}\n\tinboxSchema = reflector.Reflect(&InboxMessage{})\n\tinboxConfig = db.CollectionConfig{\n\t\tName:    mail.InboxCollectionName,\n\t\tSchema:  inboxSchema,\n\t\tIndexes: inboxIndexes,\n\t}\n\tsentboxSchema = reflector.Reflect(&SentboxMessage{})\n\tsentboxConfig = db.CollectionConfig{\n\t\tName:    mail.SentboxCollectionName,\n\t\tSchema:  sentboxSchema,\n\t\tIndexes: sentboxIndexes,\n\t}\n}\n\n// Mail is a wrapper around a threaddb collection for sending mail between users.\ntype Mail struct {\n\tc       *dbc.Client\n\tInbox   Collection\n\tSentbox Collection\n}\n\n// NewMail returns a new mail collection mananger.\nfunc NewMail(tc *dbc.Client) (*Mail, error) {\n\treturn &Mail{\n\t\tc: tc,\n\t\tInbox: Collection{\n\t\t\tc:      tc,\n\t\t\tconfig: inboxConfig,\n\t\t},\n\t\tSentbox: Collection{\n\t\t\tc:      tc,\n\t\t\tconfig: sentboxConfig,\n\t\t},\n\t}, nil\n}\n\n// NewMailbox creates a new threaddb mail box.\nfunc (m *Mail) NewMailbox(ctx context.Context, opts ...Option) (thread.ID, error) {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tid := thread.NewIDV1(thread.Raw, 32)\n\tctx = common.NewThreadNameContext(ctx, mail.ThreadName)\n\terr := m.c.NewDB(\n\t\tctx,\n\t\tid,\n\t\tdb.WithNewManagedName(mail.ThreadName),\n\t\tdb.WithNewManagedCollections(inboxConfig, sentboxConfig),\n\t\tdb.WithNewManagedToken(args.Token))\n\tif err != nil && strings.Contains(err.Error(), mdb.DuplicateErrMsg) {\n\t\treturn id, ErrMailboxExists\n\t}\n\treturn id, err\n}\n"
  },
  {
    "path": "threaddb/threaddb.go",
    "content": "package threaddb\n\nimport (\n\t\"context\"\n\t\"strings\"\n\n\tdbc \"github.com/textileio/go-threads/api/client\"\n\tcoredb \"github.com/textileio/go-threads/core/db\"\n\t\"github.com/textileio/go-threads/core/thread\"\n\t\"github.com/textileio/go-threads/db\"\n)\n\n// Collection wraps a ThreadDB collection with some convenience methods.\ntype Collection struct {\n\tc      *dbc.Client\n\tconfig db.CollectionConfig\n}\n\n// Options defines options for interacting with a collection.\ntype Options struct {\n\tToken thread.Token\n}\n\n// Option holds a collection option.\ntype Option func(*Options)\n\n// WithToken sets the token.\nfunc WithToken(t thread.Token) Option {\n\treturn func(args *Options) {\n\t\targs.Token = t\n\t}\n}\n\n// Create a collection instance.\nfunc (c *Collection) Create(ctx context.Context, dbID thread.ID, instance interface{}, opts ...Option) (\n\tcoredb.InstanceID, error) {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tids, err := c.c.Create(ctx, dbID, c.config.Name, dbc.Instances{instance}, db.WithTxnToken(args.Token))\n\tif isColNotFoundErr(err) {\n\t\tif err := c.addCollection(ctx, dbID, args.Token); err != nil {\n\t\t\treturn coredb.EmptyInstanceID, err\n\t\t}\n\t\treturn c.Create(ctx, dbID, instance, opts...)\n\t}\n\tif isInvalidSchemaErr(err) {\n\t\tif err := c.updateCollection(ctx, dbID, args.Token); err != nil {\n\t\t\treturn coredb.EmptyInstanceID, err\n\t\t}\n\t\treturn c.Create(ctx, dbID, instance, opts...)\n\t}\n\tif err != nil {\n\t\treturn coredb.EmptyInstanceID, err\n\t}\n\treturn coredb.InstanceID(ids[0]), nil\n}\n\n// Get a collection instance.\nfunc (c *Collection) Get(ctx context.Context, dbID thread.ID, key string, instance interface{}, opts ...Option) error {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\terr := c.c.FindByID(ctx, dbID, c.config.Name, key, instance, db.WithTxnToken(args.Token))\n\tif isColNotFoundErr(err) {\n\t\tif err := c.addCollection(ctx, dbID, args.Token); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn c.Get(ctx, dbID, key, instance, opts...)\n\t}\n\treturn err\n}\n\n// List collection instances.\nfunc (c *Collection) List(ctx context.Context, dbID thread.ID, query *db.Query, instance interface{}, opts ...Option) (\n\tinterface{}, error) {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\tres, err := c.c.Find(ctx, dbID, c.config.Name, query, instance, db.WithTxnToken(args.Token))\n\tif isColNotFoundErr(err) {\n\t\tif err := c.addCollection(ctx, dbID, args.Token); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn c.List(ctx, dbID, query, instance, opts...)\n\t}\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn res, nil\n}\n\n// Save a collection instance.\nfunc (c *Collection) Save(ctx context.Context, dbID thread.ID, instance interface{}, opts ...Option) error {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\terr := c.c.Save(ctx, dbID, c.config.Name, dbc.Instances{instance}, db.WithTxnToken(args.Token))\n\tif isInvalidSchemaErr(err) {\n\t\tif err := c.updateCollection(ctx, dbID, args.Token); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn c.Save(ctx, dbID, instance, opts...)\n\t}\n\treturn err\n}\n\n// Verify verifies instance changes.\nfunc (c *Collection) Verify(ctx context.Context, dbID thread.ID, instance interface{}, opts ...Option) error {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\terr := c.c.Verify(ctx, dbID, c.config.Name, dbc.Instances{instance}, db.WithTxnToken(args.Token))\n\tif isInvalidSchemaErr(err) {\n\t\tif err := c.updateCollection(ctx, dbID, args.Token); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn c.Verify(ctx, dbID, instance, opts...)\n\t}\n\treturn err\n}\n\n// Delete a collection instance.\nfunc (c *Collection) Delete(ctx context.Context, dbID thread.ID, id string, opts ...Option) error {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\treturn c.c.Delete(ctx, dbID, c.config.Name, []string{id}, db.WithTxnToken(args.Token))\n}\n\n// WriteTxn wraps a write transaction in a collection.\ntype WriteTxn struct {\n\tc     *Collection\n\tt     *dbc.WriteTransaction\n\tend   dbc.EndTransactionFunc\n\tid    thread.ID\n\ttoken thread.Token\n}\n\n// WriteTxn returns a write transaction in the collection.\n// Call WriteTxn.End to commit the transaction. Using a defer statement and a named err param is the usual pattern:\n//\n// func MyFunc() (err error) {\n//   defer func() {\n//     if e := txn.End(err); err == nil {\n//       err = e\n//     }\n//   }()\n//   ...\n//   if err = txn.Save(...); err != nil {\n//     return nil, err\n//   }\n//   ...\n//   if err = txn.Save(...); err != nil {\n//     return nil, err\n//   }\n//   ...\n// }\n//\n// See WriteTxn.End for more.\nfunc (c *Collection) WriteTxn(ctx context.Context, dbID thread.ID, opts ...Option) (*WriteTxn, error) {\n\targs := &Options{}\n\tfor _, opt := range opts {\n\t\topt(args)\n\t}\n\ttxn, err := c.c.WriteTransaction(ctx, dbID, c.config.Name, db.WithTxnToken(args.Token))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tend, err := txn.Start()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &WriteTxn{\n\t\tc:     c,\n\t\tt:     txn,\n\t\tend:   end,\n\t\tid:    dbID,\n\t\ttoken: args.Token,\n\t}, nil\n}\n\n// Verify a collection instance in the transaction.\nfunc (t *WriteTxn) Verify(ctx context.Context, instance interface{}) error {\n\terr := t.t.Verify(instance)\n\tif isInvalidSchemaErr(err) {\n\t\tif err := t.c.updateCollection(ctx, t.id, t.token); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn t.t.Verify(instance)\n\t}\n\treturn err\n}\n\n// Save a collection instance in the transaction.\nfunc (t *WriteTxn) Save(ctx context.Context, instance interface{}) error {\n\terr := t.t.Save(instance)\n\tif isInvalidSchemaErr(err) {\n\t\tif err := t.c.updateCollection(ctx, t.id, t.token); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn t.t.Save(instance)\n\t}\n\treturn err\n}\n\n// Delete a collection instance in the transaction.\nfunc (t *WriteTxn) Delete(_ context.Context, id string) error {\n\treturn t.t.Delete(id)\n}\n\n// Discard the transaction.\nfunc (t *WriteTxn) Discard() {\n\t// Ignore the error, which can only arise from a network issue.\n\t// A subsequent End will also fail.\n\t_ = t.t.Discard()\n}\n\n// End ends the underlying transaction.\n// A non-nil err results in the transaction being discarded before it's ended.\nfunc (t *WriteTxn) End(err error) error {\n\tif err != nil {\n\t\tt.Discard()\n\t}\n\treturn t.end()\n}\n\nfunc (c *Collection) addCollection(ctx context.Context, dbID thread.ID, token thread.Token) error {\n\treturn c.c.NewCollection(ctx, dbID, c.config, db.WithManagedToken(token))\n}\n\nfunc (c *Collection) updateCollection(ctx context.Context, dbID thread.ID, token thread.Token) error {\n\treturn c.c.UpdateCollection(ctx, dbID, c.config, db.WithManagedToken(token))\n}\n\nfunc isColNotFoundErr(err error) bool {\n\tif err == nil {\n\t\treturn false\n\t}\n\treturn strings.Contains(err.Error(), \"collection not found\")\n}\n\nfunc isInvalidSchemaErr(err error) bool {\n\tif err == nil {\n\t\treturn false\n\t}\n\treturn strings.Contains(err.Error(), \"instance doesn't correspond to schema: (root)\")\n}\n"
  },
  {
    "path": "util/ctxutil.go",
    "content": "package util\n\nimport (\n\t\"context\"\n\t\"time\"\n)\n\n// NewClonedContext returns a context with the same Values\n// but not inherited cancelation.\nfunc NewClonedContext(ctx context.Context) context.Context {\n\treturn valueOnlyContext{Context: ctx}\n}\n\ntype valueOnlyContext struct{ context.Context }\n\nfunc (valueOnlyContext) Deadline() (deadline time.Time, ok bool) { return }\nfunc (valueOnlyContext) Done() <-chan struct{}                   { return nil }\nfunc (valueOnlyContext) Err() error                              { return nil }\n"
  },
  {
    "path": "util/flakyt.go",
    "content": "package util\n\nimport (\n\t\"runtime\"\n\t\"sync\"\n\t\"testing\"\n\n\t\"github.com/stretchr/testify/require\"\n)\n\n// TestingTWithCleanup is an augmented require.TestingT with a Cleanup function.\ntype TestingTWithCleanup interface {\n\trequire.TestingT\n\tTempDir() string\n\tCleanup(func())\n}\n\n// FlakyT provides retry mechanisms to test.\ntype FlakyT struct {\n\tt      *testing.T\n\tfailed bool\n\tcls    []func()\n}\n\n// NewFlakyT creates a new FlakyT.\nfunc NewFlakyT(t *testing.T) *FlakyT {\n\treturn &FlakyT{\n\t\tt: t,\n\t}\n}\n\nvar _ require.TestingT = (*FlakyT)(nil)\n\n// Errorf registers an error message.\nfunc (ft *FlakyT) Errorf(format string, args ...interface{}) {\n\tft.t.Logf(format, args...)\n}\n\n// FailNow indicates to fail the test.\nfunc (ft *FlakyT) FailNow() {\n\tft.failed = true\n\truntime.Goexit()\n}\n\n// TempDir returns a temporary directory for the test to use.\n// The directory is automatically removed by Cleanup when the test and\n// all its subtests complete.\nfunc (ft *FlakyT) TempDir() string {\n\treturn ft.t.TempDir()\n}\n\n// Cleanup registers a cleanup function.\nfunc (ft *FlakyT) Cleanup(cls func()) {\n\tft.cls = append([]func(){cls}, ft.cls...)\n}\n\nvar numRetries = 10\n\n// RunFlaky runs a flaky test with retries.\nfunc RunFlaky(t *testing.T, f func(ft *FlakyT)) {\n\tfor i := 0; i < numRetries; i++ {\n\t\tvar wg sync.WaitGroup\n\t\twg.Add(1)\n\t\tft := NewFlakyT(t)\n\t\tgo func() {\n\t\t\tdefer wg.Done()\n\t\t\tf(ft)\n\t\t}()\n\t\twg.Wait()\n\t\tfor _, f := range ft.cls {\n\t\t\tf()\n\t\t}\n\t\tif !ft.failed {\n\t\t\treturn\n\t\t}\n\t\tft.t.Logf(\"test %s attempt %d/%d failed, retrying...\", t.Name(), i+1, numRetries)\n\t}\n\tt.Fatalf(\"test failed after %d retries\", numRetries)\n}\n"
  },
  {
    "path": "util/util.go",
    "content": "package util\n\nimport (\n\t\"crypto/rand\"\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/gosimple/slug\"\n\t\"github.com/ipfs/go-cid\"\n\t\"github.com/ipfs/interface-go-ipfs-core/path\"\n\tma \"github.com/multiformats/go-multiaddr\"\n\tmbase \"github.com/multiformats/go-multibase\"\n)\n\nfunc init() {\n\tslug.MaxLength = 32\n\tslug.Lowercase = false\n}\n\nfunc ToValidName(str string) (name string, ok bool) {\n\tname = slug.Make(str)\n\tif len(name) == 0 {\n\t\tok = false\n\t\treturn\n\t}\n\treturn name, true\n}\n\nfunc GenerateRandomBytes(n int) []byte {\n\tb := make([]byte, n)\n\t_, err := rand.Read(b)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn b\n}\n\nfunc MakeToken(n int) string {\n\tbytes := GenerateRandomBytes(n)\n\tencoded, err := mbase.Encode(mbase.Base32, bytes)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn encoded\n}\n\nfunc MustParseAddr(str string) ma.Multiaddr {\n\taddr, err := ma.NewMultiaddr(str)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn addr\n}\n\nfunc NewResolvedPath(s string) (path.Resolved, error) {\n\tparts := strings.SplitN(s, \"/\", 3)\n\tif len(parts) != 3 {\n\t\treturn nil, fmt.Errorf(\"path is not resolvable\")\n\t}\n\tc, err := cid.Decode(parts[2])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn path.IpfsPath(c), nil\n}\n\nfunc ParsePath(p path.Path) (resolved path.Resolved, fpath string, err error) {\n\tparts := strings.SplitN(p.String(), \"/\", 4)\n\tif len(parts) < 3 {\n\t\terr = fmt.Errorf(\"path does not contain a resolvable segment\")\n\t\treturn\n\t}\n\tc, err := cid.Decode(parts[2])\n\tif err != nil {\n\t\treturn\n\t}\n\tif len(parts) > 3 {\n\t\tfpath = parts[3]\n\t}\n\treturn path.IpfsPath(c), fpath, nil\n}\n\nfunc ByteCountDecimal(b int64) string {\n\tconst unit = 1000\n\tif b < unit {\n\t\treturn fmt.Sprintf(\"%d B\", b)\n\t}\n\tdiv, exp := int64(unit), 0\n\tfor n := b / unit; n >= unit; n /= unit {\n\t\tdiv *= unit\n\t\texp++\n\t}\n\treturn fmt.Sprintf(\"%.1f %cB\", float64(b)/float64(div), \"kMGTPE\"[exp])\n}\n"
  }
]